Version Description
- 11.06.2014
- MySQL query optimizing to reduce memory consumption. Thanks to SebastiaanO.
- Extra WordPress nonce field was removed from the post at main role editor page to exclude nonce duplication.
- Minor code enhancements.
- Fixes for some missed translations.
Download this release
Release Info
Developer | shinephp |
Plugin | User Role Editor |
Version | 4.14.1 |
Comparing to | |
See all releases |
Code changes from version 4.14 to 4.14.1
- includes/class-ure-lib.php +9 -38
- includes/class-user-role-editor.php +15 -15
- js/ure-js.js +16 -16
- lang/ure-es_ES.mo +0 -0
- lang/ure-es_ES.po +254 -183
- lang/ure-fa_IR.mo +0 -0
- lang/ure-fa_IR.po +525 -471
- lang/ure-he_IL.mo +0 -0
- lang/ure-he_IL.po +304 -151
- lang/ure-id_ID.mo +0 -0
- lang/ure-id_ID.po +252 -185
- lang/ure-ru_RU.mo +0 -0
- lang/ure-ru_RU.po +257 -196
- lang/ure-tr_TR.mo +0 -0
- lang/ure-tr_TR.po +255 -187
- lang/ure.mo +0 -0
- lang/ure.pot +248 -140
- readme.txt +9 -2
- user-role-editor.php +2 -2
includes/class-ure-lib.php
CHANGED
@@ -232,10 +232,9 @@ class Ure_Lib extends Garvs_WP_Lib {
|
|
232 |
|
233 |
<div class="has-sidebar" >
|
234 |
<form id="ure_form" method="post" action="<?php echo URE_WP_ADMIN_URL . URE_PARENT.'?page=users-'.URE_PLUGIN_FILE;?>" >
|
235 |
-
<div id="ure_form_controls">
|
236 |
<?php
|
237 |
wp_nonce_field('user-role-editor', 'ure_nonce');
|
238 |
-
settings_fields('ure-options');
|
239 |
if ($this->ure_object == 'user') {
|
240 |
require_once(URE_PLUGIN_DIR . 'includes/ure-user-edit.php');
|
241 |
} else {
|
@@ -244,6 +243,7 @@ class Ure_Lib extends Garvs_WP_Lib {
|
|
244 |
require_once(URE_PLUGIN_DIR . 'includes/ure-role-edit.php');
|
245 |
}
|
246 |
?>
|
|
|
247 |
</div>
|
248 |
</form>
|
249 |
<?php
|
@@ -577,8 +577,7 @@ class Ure_Lib extends Garvs_WP_Lib {
|
|
577 |
* @param int $user_id
|
578 |
* @return boolean true
|
579 |
*/
|
580 |
-
public function user_is_admin($user_id = false)
|
581 |
-
{
|
582 |
global $current_user;
|
583 |
|
584 |
$ure_key_capability = $this->get_key_capability();
|
@@ -588,33 +587,6 @@ class Ure_Lib extends Garvs_WP_Lib {
|
|
588 |
$result = user_can($user_id, $ure_key_capability);
|
589 |
|
590 |
return $result;
|
591 |
-
/*
|
592 |
-
// Checks if user is superadmin under multi-site environment or has administrator role for the standalone WP
|
593 |
-
if (!$user_id) {
|
594 |
-
if (empty($current_user) && function_exists('get_currentuserinfo')) {
|
595 |
-
get_currentuserinfo();
|
596 |
-
}
|
597 |
-
$user_id = !empty($current_user) ? $current_user->ID : 0;
|
598 |
-
}
|
599 |
-
|
600 |
-
if (!$user_id) {
|
601 |
-
return false;
|
602 |
-
}
|
603 |
-
|
604 |
-
$user = new WP_User($user_id);
|
605 |
-
|
606 |
-
$simple_admin = $this->has_administrator_role($user_id);
|
607 |
-
|
608 |
-
if ($this->multisite) {
|
609 |
-
$super_admins = get_super_admins();
|
610 |
-
$super_admin = is_array($super_admins) && in_array($user->user_login, $super_admins);
|
611 |
-
} else {
|
612 |
-
$super_admin = false;
|
613 |
-
}
|
614 |
-
|
615 |
-
return $simple_admin || $super_admin;
|
616 |
-
*
|
617 |
-
*/
|
618 |
}
|
619 |
// end of user_is_admin()
|
620 |
|
@@ -823,7 +795,7 @@ class Ure_Lib extends Garvs_WP_Lib {
|
|
823 |
}
|
824 |
|
825 |
// check if user with such role exists
|
826 |
-
$query = "SELECT meta_value
|
827 |
FROM $table_name
|
828 |
WHERE meta_key='$meta_key' AND meta_value like '%$key%'";
|
829 |
$roles_used = $wpdb->get_results($query);
|
@@ -2228,7 +2200,7 @@ class Ure_Lib extends Garvs_WP_Lib {
|
|
2228 |
?>
|
2229 |
<h2>User Role Editor</h2>
|
2230 |
|
2231 |
-
<strong
|
2232 |
<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><br/>
|
2233 |
<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><br/>
|
2234 |
<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/download-plugin"><?php _e('Plugin download', 'ure'); ?></a><br/>
|
@@ -2340,7 +2312,7 @@ class Ure_Lib extends Garvs_WP_Lib {
|
|
2340 |
// end of user_primary_role_dropdown_list()
|
2341 |
|
2342 |
|
2343 |
-
// returns true if user
|
2344 |
// returns true if user has role with name equal $capability
|
2345 |
protected function user_can($capability) {
|
2346 |
|
@@ -2361,16 +2333,15 @@ class Ure_Lib extends Garvs_WP_Lib {
|
|
2361 |
// end of user_can()
|
2362 |
|
2363 |
|
2364 |
-
// returns true if
|
2365 |
-
// returns true if
|
2366 |
public function user_has_capability($user, $cap) {
|
2367 |
|
2368 |
global $wp_roles;
|
2369 |
|
2370 |
-
if (
|
2371 |
return false;
|
2372 |
}
|
2373 |
-
|
2374 |
if (is_multisite() && is_super_admin($user->ID)) {
|
2375 |
return true;
|
2376 |
}
|
232 |
|
233 |
<div class="has-sidebar" >
|
234 |
<form id="ure_form" method="post" action="<?php echo URE_WP_ADMIN_URL . URE_PARENT.'?page=users-'.URE_PLUGIN_FILE;?>" >
|
235 |
+
<div id="ure_form_controls">
|
236 |
<?php
|
237 |
wp_nonce_field('user-role-editor', 'ure_nonce');
|
|
|
238 |
if ($this->ure_object == 'user') {
|
239 |
require_once(URE_PLUGIN_DIR . 'includes/ure-user-edit.php');
|
240 |
} else {
|
243 |
require_once(URE_PLUGIN_DIR . 'includes/ure-role-edit.php');
|
244 |
}
|
245 |
?>
|
246 |
+
<input type="hidden" name="action" value="update" />
|
247 |
</div>
|
248 |
</form>
|
249 |
<?php
|
577 |
* @param int $user_id
|
578 |
* @return boolean true
|
579 |
*/
|
580 |
+
public function user_is_admin($user_id = false) {
|
|
|
581 |
global $current_user;
|
582 |
|
583 |
$ure_key_capability = $this->get_key_capability();
|
587 |
$result = user_can($user_id, $ure_key_capability);
|
588 |
|
589 |
return $result;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
590 |
}
|
591 |
// end of user_is_admin()
|
592 |
|
795 |
}
|
796 |
|
797 |
// check if user with such role exists
|
798 |
+
$query = "SELECT DISTINCT meta_value
|
799 |
FROM $table_name
|
800 |
WHERE meta_key='$meta_key' AND meta_value like '%$key%'";
|
801 |
$roles_used = $wpdb->get_results($query);
|
2200 |
?>
|
2201 |
<h2>User Role Editor</h2>
|
2202 |
|
2203 |
+
<strong><?php esc_html_e('Version:', 'ure');?></strong> <?php echo URE_VERSION; ?><br/><br/>
|
2204 |
<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><br/>
|
2205 |
<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><br/>
|
2206 |
<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/download-plugin"><?php _e('Plugin download', 'ure'); ?></a><br/>
|
2312 |
// end of user_primary_role_dropdown_list()
|
2313 |
|
2314 |
|
2315 |
+
// returns true if $user has $capability assigned through the roles or directly
|
2316 |
// returns true if user has role with name equal $capability
|
2317 |
protected function user_can($capability) {
|
2318 |
|
2333 |
// end of user_can()
|
2334 |
|
2335 |
|
2336 |
+
// returns true if current user has $capability assigned through the roles or directly
|
2337 |
+
// returns true if current user has role with name equal $cap
|
2338 |
public function user_has_capability($user, $cap) {
|
2339 |
|
2340 |
global $wp_roles;
|
2341 |
|
2342 |
+
if (!is_object($user) || empty($user->ID)) {
|
2343 |
return false;
|
2344 |
}
|
|
|
2345 |
if (is_multisite() && is_super_admin($user->ID)) {
|
2346 |
return true;
|
2347 |
}
|
includes/class-user-role-editor.php
CHANGED
@@ -795,22 +795,22 @@ class User_Role_Editor {
|
|
795 |
|
796 |
}
|
797 |
|
798 |
-
|
799 |
-
|
800 |
-
|
801 |
-
|
802 |
-
|
803 |
-
|
804 |
-
|
805 |
-
|
806 |
-
|
807 |
-
|
808 |
-
|
809 |
-
|
810 |
-
|
811 |
-
|
|
|
812 |
|
813 |
-
|
814 |
/**
|
815 |
* Load plugin javascript stuff
|
816 |
*
|
795 |
|
796 |
}
|
797 |
|
798 |
+
/**
|
799 |
+
* execute on plugin activation
|
800 |
+
*/
|
801 |
+
function setup() {
|
802 |
+
|
803 |
+
$this->convert_option('ure_caps_readable');
|
804 |
+
$this->convert_option('ure_show_deprecated_caps');
|
805 |
+
$this->convert_option('ure_hide_pro_banner');
|
806 |
+
$this->lib->flush_options();
|
807 |
+
|
808 |
+
$this->lib->make_roles_backup();
|
809 |
+
|
810 |
+
do_action('ure_activation');
|
811 |
+
}
|
812 |
+
// end of setup()
|
813 |
|
|
|
814 |
/**
|
815 |
* Load plugin javascript stuff
|
816 |
*
|
js/ure-js.js
CHANGED
@@ -107,9 +107,9 @@ jQuery("#ure_add_role").button({
|
|
107 |
}
|
108 |
});
|
109 |
$('.ui-dialog-buttonpane button:contains("Add Role")').attr("id", "dialog-add-role-button");
|
110 |
-
$('#dialog-
|
111 |
-
$('.ui-dialog-buttonpane button:contains("Cancel")').attr("id", "dialog-cancel-button");
|
112 |
-
$('#dialog-cancel-button').html(ui_button_text(ure_data.cancel));
|
113 |
});
|
114 |
});
|
115 |
|
@@ -137,7 +137,7 @@ jQuery("#ure_add_role").button({
|
|
137 |
$.ure_postGo(ure_data.page_url,
|
138 |
{action: 'delete-role', user_role_id: user_role_id, ure_nonce: ure_data.wp_nonce});
|
139 |
},
|
140 |
-
|
141 |
$(this).dialog('close');
|
142 |
}
|
143 |
}
|
@@ -145,8 +145,8 @@ jQuery("#ure_add_role").button({
|
|
145 |
// translate buttons caption
|
146 |
$('.ui-dialog-buttonpane button:contains("Delete Role")').attr("id", "dialog-delete-button");
|
147 |
$('#dialog-delete-button').html(ui_button_text(ure_data.delete_role));
|
148 |
-
$('.ui-dialog-buttonpane button:contains("Cancel")').attr("id", "dialog-cancel-button");
|
149 |
-
$('#dialog-cancel-button').html(ui_button_text(ure_data.cancel));
|
150 |
});
|
151 |
});
|
152 |
|
@@ -182,15 +182,15 @@ jQuery("#ure_add_role").button({
|
|
182 |
$.ure_postGo( ure_data.page_url,
|
183 |
{ action: 'add-new-capability', capability_id: capability_id, ure_nonce: ure_data.wp_nonce} );
|
184 |
},
|
185 |
-
|
186 |
$(this).dialog('close');
|
187 |
}
|
188 |
}
|
189 |
});
|
190 |
$('.ui-dialog-buttonpane button:contains("Add Capability")').attr("id", "dialog-add-capability-button");
|
191 |
-
$('#dialog-
|
192 |
-
$('.ui-dialog-buttonpane button:contains("Cancel")').attr("id", "dialog-cancel-button");
|
193 |
-
$('#dialog-cancel-button').html(ui_button_text(ure_data.cancel));
|
194 |
});
|
195 |
});
|
196 |
|
@@ -219,7 +219,7 @@ jQuery("#ure_add_role").button({
|
|
219 |
$.ure_postGo(ure_data.page_url,
|
220 |
{action: 'delete-user-capability', user_capability_id: user_capability_id, ure_nonce: ure_data.wp_nonce});
|
221 |
},
|
222 |
-
|
223 |
$(this).dialog('close');
|
224 |
}
|
225 |
}
|
@@ -227,8 +227,8 @@ jQuery("#ure_add_role").button({
|
|
227 |
// translate buttons caption
|
228 |
$('.ui-dialog-buttonpane button:contains("Delete Capability")').attr("id", "dialog-delete-capability-button");
|
229 |
$('#dialog-delete-capability-button').html(ui_button_text(ure_data.delete_capability));
|
230 |
-
$('.ui-dialog-buttonpane button:contains("Cancel")').attr("id", "dialog-cancel-button");
|
231 |
-
$('#dialog-cancel-button').html(ui_button_text(ure_data.cancel));
|
232 |
});
|
233 |
});
|
234 |
|
@@ -253,7 +253,7 @@ jQuery("#ure_add_role").button({
|
|
253 |
$.ure_postGo(ure_data.page_url,
|
254 |
{action: 'change-default-role', user_role_id: user_role_id, ure_nonce: ure_data.wp_nonce});
|
255 |
},
|
256 |
-
|
257 |
$(this).dialog('close');
|
258 |
}
|
259 |
}
|
@@ -261,8 +261,8 @@ jQuery("#ure_add_role").button({
|
|
261 |
// translate buttons caption
|
262 |
$('.ui-dialog-buttonpane button:contains("Set New Default Role")').attr("id", "dialog-default-role-button");
|
263 |
$('#dialog-default-role-button').html(ui_button_text(ure_data.set_new_default_role));
|
264 |
-
$('.ui-dialog-buttonpane button:contains("Cancel")').attr("id", "dialog-cancel-button");
|
265 |
-
$('#dialog-cancel-button').html(ui_button_text(ure_data.cancel));
|
266 |
});
|
267 |
});
|
268 |
|
107 |
}
|
108 |
});
|
109 |
$('.ui-dialog-buttonpane button:contains("Add Role")').attr("id", "dialog-add-role-button");
|
110 |
+
$('#dialog-add-role-button').html(ui_button_text(ure_data.add_role));
|
111 |
+
$('.ui-dialog-buttonpane button:contains("Cancel")').attr("id", "add-role-dialog-cancel-button");
|
112 |
+
$('#add-role-dialog-cancel-button').html(ui_button_text(ure_data.cancel));
|
113 |
});
|
114 |
});
|
115 |
|
137 |
$.ure_postGo(ure_data.page_url,
|
138 |
{action: 'delete-role', user_role_id: user_role_id, ure_nonce: ure_data.wp_nonce});
|
139 |
},
|
140 |
+
Cancel: function() {
|
141 |
$(this).dialog('close');
|
142 |
}
|
143 |
}
|
145 |
// translate buttons caption
|
146 |
$('.ui-dialog-buttonpane button:contains("Delete Role")').attr("id", "dialog-delete-button");
|
147 |
$('#dialog-delete-button').html(ui_button_text(ure_data.delete_role));
|
148 |
+
$('.ui-dialog-buttonpane button:contains("Cancel")').attr("id", "delete-role-dialog-cancel-button");
|
149 |
+
$('#delete-role-dialog-cancel-button').html(ui_button_text(ure_data.cancel));
|
150 |
});
|
151 |
});
|
152 |
|
182 |
$.ure_postGo( ure_data.page_url,
|
183 |
{ action: 'add-new-capability', capability_id: capability_id, ure_nonce: ure_data.wp_nonce} );
|
184 |
},
|
185 |
+
Cancel: function() {
|
186 |
$(this).dialog('close');
|
187 |
}
|
188 |
}
|
189 |
});
|
190 |
$('.ui-dialog-buttonpane button:contains("Add Capability")').attr("id", "dialog-add-capability-button");
|
191 |
+
$('#dialog-add-capability-button').html(ui_button_text(ure_data.add_capability));
|
192 |
+
$('.ui-dialog-buttonpane button:contains("Cancel")').attr("id", "add-capability-dialog-cancel-button");
|
193 |
+
$('#add-capability-dialog-cancel-button').html(ui_button_text(ure_data.cancel));
|
194 |
});
|
195 |
});
|
196 |
|
219 |
$.ure_postGo(ure_data.page_url,
|
220 |
{action: 'delete-user-capability', user_capability_id: user_capability_id, ure_nonce: ure_data.wp_nonce});
|
221 |
},
|
222 |
+
Cancel: function() {
|
223 |
$(this).dialog('close');
|
224 |
}
|
225 |
}
|
227 |
// translate buttons caption
|
228 |
$('.ui-dialog-buttonpane button:contains("Delete Capability")').attr("id", "dialog-delete-capability-button");
|
229 |
$('#dialog-delete-capability-button').html(ui_button_text(ure_data.delete_capability));
|
230 |
+
$('.ui-dialog-buttonpane button:contains("Cancel")').attr("id", "delete-capability-dialog-cancel-button");
|
231 |
+
$('#delete-capability-dialog-cancel-button').html(ui_button_text(ure_data.cancel));
|
232 |
});
|
233 |
});
|
234 |
|
253 |
$.ure_postGo(ure_data.page_url,
|
254 |
{action: 'change-default-role', user_role_id: user_role_id, ure_nonce: ure_data.wp_nonce});
|
255 |
},
|
256 |
+
Cancel: function() {
|
257 |
$(this).dialog('close');
|
258 |
}
|
259 |
}
|
261 |
// translate buttons caption
|
262 |
$('.ui-dialog-buttonpane button:contains("Set New Default Role")').attr("id", "dialog-default-role-button");
|
263 |
$('#dialog-default-role-button').html(ui_button_text(ure_data.set_new_default_role));
|
264 |
+
$('.ui-dialog-buttonpane button:contains("Cancel")').attr("id", "default-role-dialog-cancel-button");
|
265 |
+
$('#default-role-dialog-cancel-button').html(ui_button_text(ure_data.cancel));
|
266 |
});
|
267 |
});
|
268 |
|
lang/ure-es_ES.mo
CHANGED
Binary file
|
lang/ure-es_ES.po
CHANGED
@@ -2,7 +2,7 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: User Role Editor 2.0\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2014-
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: Vladimir Garagulya <vladimir@shinephp.com>\n"
|
8 |
"Language-Team: ShinePHP.com <vladimir@shinephp.com>\n"
|
@@ -16,18 +16,77 @@ 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 "Guardar"
|
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/class-user-role-editor.php:185
|
32 |
msgid "Change role for users without role"
|
33 |
msgstr ""
|
@@ -54,7 +113,7 @@ msgid "Settings"
|
|
54 |
msgstr "Configuración"
|
55 |
|
56 |
#: ../includes/class-user-role-editor.php:520
|
57 |
-
#: ../includes/class-ure-lib.php:
|
58 |
msgid "Changelog"
|
59 |
msgstr "Registro de cambios"
|
60 |
|
@@ -64,60 +123,61 @@ msgstr ""
|
|
64 |
|
65 |
#: ../includes/class-user-role-editor.php:551
|
66 |
#: ../includes/class-user-role-editor.php:579
|
67 |
-
#: ../includes/class-user-role-editor.php:
|
68 |
#: ../includes/class-ure-lib.php:225
|
69 |
msgid "User Role Editor"
|
70 |
msgstr "Editor de Roles"
|
71 |
|
72 |
-
#: ../includes/class-user-role-editor.php:
|
73 |
-
#: ../includes/class-user-role-editor.php:
|
|
|
74 |
msgid "User Role Editor options are updated"
|
75 |
msgstr "Opciones actualizadas"
|
76 |
|
77 |
-
#: ../includes/class-user-role-editor.php:
|
78 |
#, fuzzy
|
79 |
msgid "Default Roles are updated"
|
80 |
msgstr "Rol Predeterminado"
|
81 |
|
82 |
-
#: ../includes/class-user-role-editor.php:
|
83 |
msgid ""
|
84 |
"You do not have sufficient permissions to manage options for User Role "
|
85 |
"Editor."
|
86 |
msgstr "Permisos insuficientes para trabajar"
|
87 |
|
88 |
-
#: ../includes/class-user-role-editor.php:
|
89 |
msgid "Insufficient permissions to work with User Role Editor"
|
90 |
msgstr "Permisos insuficientes para trabajar con el Editor de Roles"
|
91 |
|
92 |
-
#: ../includes/class-user-role-editor.php:
|
93 |
msgid "Select All"
|
94 |
msgstr "Seleccionar todo"
|
95 |
|
96 |
-
#: ../includes/class-user-role-editor.php:
|
97 |
msgid "Unselect All"
|
98 |
msgstr "Deseleccionar todo"
|
99 |
|
100 |
-
#: ../includes/class-user-role-editor.php:
|
101 |
msgid "Reverse"
|
102 |
msgstr "Revertir"
|
103 |
|
104 |
-
#: ../includes/class-user-role-editor.php:
|
105 |
msgid "Update"
|
106 |
msgstr "Actualizar"
|
107 |
|
108 |
-
#: ../includes/class-user-role-editor.php:
|
109 |
msgid "Please confirm permissions update"
|
110 |
msgstr "Por favor confirma las actualizaciones de permisos"
|
111 |
|
112 |
-
#: ../includes/class-user-role-editor.php:
|
113 |
msgid "Add New Role"
|
114 |
msgstr "Agregar nuevo Rol"
|
115 |
|
116 |
-
#: ../includes/class-user-role-editor.php:
|
117 |
msgid " Role name (ID) can not be empty!"
|
118 |
msgstr "¡El nombre del Rol (ID) no puede estar vacío!"
|
119 |
|
120 |
-
#: ../includes/class-user-role-editor.php:
|
121 |
msgid ""
|
122 |
" Role name (ID) must contain latin characters, digits, hyphens or underscore "
|
123 |
"only!"
|
@@ -125,66 +185,66 @@ msgstr ""
|
|
125 |
"¡El nombre del Rol (ID) sólo debe contener caracteres alfanuméricos, guiones "
|
126 |
"altos o bajos!"
|
127 |
|
128 |
-
#: ../includes/class-user-role-editor.php:
|
129 |
msgid ""
|
130 |
" WordPress does not support numeric Role name (ID). Add latin characters to "
|
131 |
"it."
|
132 |
msgstr ""
|
133 |
|
134 |
-
#: ../includes/class-user-role-editor.php:
|
135 |
msgid "Add Role"
|
136 |
msgstr "Agregar Rol"
|
137 |
|
138 |
-
#: ../includes/class-user-role-editor.php:
|
139 |
msgid "Delete Role"
|
140 |
msgstr "Eliminar Rol"
|
141 |
|
142 |
-
#: ../includes/class-user-role-editor.php:
|
143 |
msgid "Cancel"
|
144 |
msgstr "Cancelar"
|
145 |
|
146 |
-
#: ../includes/class-user-role-editor.php:
|
147 |
msgid "Add Capability"
|
148 |
msgstr "Agregar Capacidad"
|
149 |
|
150 |
-
#: ../includes/class-user-role-editor.php:
|
151 |
-
#: ../includes/class-user-role-editor.php:
|
152 |
msgid "Delete Capability"
|
153 |
msgstr "Eliminar Capacidades"
|
154 |
|
155 |
-
#: ../includes/class-user-role-editor.php:
|
156 |
msgid "Reset"
|
157 |
msgstr "Reiniciar"
|
158 |
|
159 |
-
#: ../includes/class-user-role-editor.php:
|
160 |
msgid "DANGER! Resetting will restore default settings from WordPress Core."
|
161 |
msgstr ""
|
162 |
|
163 |
-
#: ../includes/class-user-role-editor.php:
|
164 |
msgid ""
|
165 |
"If any plugins have changed capabilities in any way upon installation (such "
|
166 |
"as S2Member, WooCommerce, and many more), those capabilities will be DELETED!"
|
167 |
msgstr ""
|
168 |
|
169 |
-
#: ../includes/class-user-role-editor.php:
|
170 |
msgid ""
|
171 |
"For more information on how to undo changes and restore plugin capabilities "
|
172 |
"go to"
|
173 |
msgstr ""
|
174 |
|
175 |
-
#: ../includes/class-user-role-editor.php:
|
176 |
msgid "Continue?"
|
177 |
msgstr ""
|
178 |
|
179 |
-
#: ../includes/class-user-role-editor.php:
|
180 |
msgid "Default Role"
|
181 |
msgstr "Rol Predeterminado"
|
182 |
|
183 |
-
#: ../includes/class-user-role-editor.php:
|
184 |
msgid "Set New Default Role"
|
185 |
msgstr "Establecer nuevo Rol"
|
186 |
|
187 |
-
#: ../includes/class-user-role-editor.php:
|
188 |
msgid ""
|
189 |
"Warning! Be careful - removing critical capability could crash some plugin "
|
190 |
"or other custom code"
|
@@ -192,11 +252,11 @@ msgstr ""
|
|
192 |
"¡Atención! Ten cuidado - Eliminar Capacidadess esenciales podría inhabilitar "
|
193 |
"algún plugin o código personalizado"
|
194 |
|
195 |
-
#: ../includes/class-user-role-editor.php:
|
196 |
msgid " Capability name (ID) can not be empty!"
|
197 |
msgstr "¡El nombre de la Capacidad (ID) no puede estar vacío!"
|
198 |
|
199 |
-
#: ../includes/class-user-role-editor.php:
|
200 |
msgid ""
|
201 |
" Capability name (ID) must contain latin characters, digits, hyphens or "
|
202 |
"underscore only!"
|
@@ -204,23 +264,73 @@ msgstr ""
|
|
204 |
"¡El nombre de la Capacidad (ID) sólo debe contener caracteres alfanuméricos, "
|
205 |
"guiones altos o bajos!"
|
206 |
|
207 |
-
#: ../includes/class-user-role-editor.php:
|
208 |
-
#: ../includes/class-user-role-editor.php:
|
209 |
msgid "Other Roles"
|
210 |
msgstr "Otros Roles"
|
211 |
|
212 |
-
#: ../includes/class-user-role-editor.php:
|
213 |
msgid "Edit"
|
214 |
msgstr "Editar"
|
215 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
216 |
#: ../includes/ure-role-edit.php:44
|
217 |
msgid "If checked, then apply action to ALL sites of this Network"
|
218 |
msgstr "Si está marcado, se aplicará la acción a TODOS los sitios de la Red"
|
219 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
220 |
#: ../includes/class-ure-lib.php:143
|
221 |
msgid "Error: wrong request"
|
222 |
msgstr "Error: Petición inválida"
|
223 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
224 |
#: ../includes/class-ure-lib.php:322
|
225 |
msgid "Error: "
|
226 |
msgstr "Error:"
|
@@ -258,15 +368,15 @@ msgid "User Roles are restored to WordPress default values. "
|
|
258 |
msgstr ""
|
259 |
"Los Roles de Usuario fueron restaurados a los predeterminados de WordPress"
|
260 |
|
261 |
-
#: ../includes/class-ure-lib.php:
|
262 |
msgid "Help"
|
263 |
msgstr "Ayuda"
|
264 |
|
265 |
-
#: ../includes/class-ure-lib.php:
|
266 |
msgid "Error is occur. Please check the log file."
|
267 |
msgstr "Un error ha ocurrido. Por favor revisa el archivo de registro."
|
268 |
|
269 |
-
#: ../includes/class-ure-lib.php:
|
270 |
msgid ""
|
271 |
"Error: Role ID must contain latin characters, digits, hyphens or underscore "
|
272 |
"only!"
|
@@ -274,364 +384,368 @@ msgstr ""
|
|
274 |
"Error: ¡La ID del Rol sólo debe contener caracteres alfanuméricos, guiones "
|
275 |
"altos o bajos!"
|
276 |
|
277 |
-
#: ../includes/class-ure-lib.php:
|
278 |
msgid ""
|
279 |
"Error: WordPress does not support numeric Role name (ID). Add latin "
|
280 |
"characters to it."
|
281 |
msgstr ""
|
282 |
|
283 |
-
#: ../includes/class-ure-lib.php:
|
284 |
#, php-format
|
285 |
msgid "Role %s exists already"
|
286 |
msgstr "El Rol %s ya existe"
|
287 |
|
288 |
-
#: ../includes/class-ure-lib.php:
|
289 |
msgid "Error is encountered during new role create operation"
|
290 |
msgstr "Un error fue encontrado durante la creación del nuevo Rol"
|
291 |
|
292 |
-
#: ../includes/class-ure-lib.php:
|
293 |
#, php-format
|
294 |
msgid "Role %s is created successfully"
|
295 |
msgstr "El Rol %s fue creado exitosamente"
|
296 |
|
297 |
-
#: ../includes/class-ure-lib.php:
|
298 |
msgid "Error encountered during role delete operation"
|
299 |
msgstr "Un error fue encontrado durante la eliminación del Rol"
|
300 |
|
301 |
-
#: ../includes/class-ure-lib.php:
|
302 |
msgid "Unused roles are deleted successfully"
|
303 |
msgstr ""
|
304 |
|
305 |
-
#: ../includes/class-ure-lib.php:
|
306 |
#, php-format
|
307 |
msgid "Role %s is deleted successfully"
|
308 |
msgstr "El Rol %s fue eliminado exitosamente"
|
309 |
|
310 |
-
#: ../includes/class-ure-lib.php:
|
311 |
msgid "Error encountered during default role change operation"
|
312 |
msgstr "Un error fue encontrado durante el cambio del Rol predeterminado"
|
313 |
|
314 |
-
#: ../includes/class-ure-lib.php:
|
315 |
#, php-format
|
316 |
msgid "Default role for new users is set to %s successfully"
|
317 |
msgstr "El Rol predeterminado para nuevos usuarios ha sido establecido a %s"
|
318 |
|
319 |
-
#: ../includes/class-ure-lib.php:
|
320 |
msgid "Editor"
|
321 |
msgstr "Editor"
|
322 |
|
323 |
-
#: ../includes/class-ure-lib.php:
|
324 |
msgid "Author"
|
325 |
msgstr "Autor"
|
326 |
|
327 |
-
#: ../includes/class-ure-lib.php:
|
328 |
msgid "Contributor"
|
329 |
msgstr "Contribuyente"
|
330 |
|
331 |
-
#: ../includes/class-ure-lib.php:
|
332 |
msgid "Subscriber"
|
333 |
msgstr "Suscriptor"
|
334 |
|
335 |
-
#: ../includes/class-ure-lib.php:
|
336 |
msgid "Switch themes"
|
337 |
msgstr "Cambiar temas (plantillas)"
|
338 |
|
339 |
-
#: ../includes/class-ure-lib.php:
|
340 |
msgid "Edit themes"
|
341 |
msgstr "Editar temas (plantillas)"
|
342 |
|
343 |
-
#: ../includes/class-ure-lib.php:
|
344 |
msgid "Activate plugins"
|
345 |
msgstr "Activar plugins"
|
346 |
|
347 |
-
#: ../includes/class-ure-lib.php:
|
348 |
msgid "Edit plugins"
|
349 |
msgstr "Editar plugins"
|
350 |
|
351 |
-
#: ../includes/class-ure-lib.php:
|
352 |
msgid "Edit users"
|
353 |
msgstr "Editar usuarios"
|
354 |
|
355 |
-
#: ../includes/class-ure-lib.php:
|
356 |
msgid "Edit files"
|
357 |
msgstr "Editar archivos"
|
358 |
|
359 |
-
#: ../includes/class-ure-lib.php:
|
360 |
msgid "Manage options"
|
361 |
msgstr "Administrar opciones"
|
362 |
|
363 |
-
#: ../includes/class-ure-lib.php:
|
364 |
msgid "Moderate comments"
|
365 |
msgstr "Moderar comentarios"
|
366 |
|
367 |
-
#: ../includes/class-ure-lib.php:
|
368 |
msgid "Manage categories"
|
369 |
msgstr "Administrar categorías"
|
370 |
|
371 |
-
#: ../includes/class-ure-lib.php:
|
372 |
msgid "Manage links"
|
373 |
msgstr "Administrar enlaces"
|
374 |
|
375 |
-
#: ../includes/class-ure-lib.php:
|
376 |
msgid "Upload files"
|
377 |
msgstr "Subir archivos"
|
378 |
|
379 |
-
#: ../includes/class-ure-lib.php:
|
380 |
msgid "Import"
|
381 |
msgstr "Importar"
|
382 |
|
383 |
-
#: ../includes/class-ure-lib.php:
|
384 |
msgid "Unfiltered html"
|
385 |
msgstr "HTML sin filtrar"
|
386 |
|
387 |
-
#: ../includes/class-ure-lib.php:
|
388 |
msgid "Edit posts"
|
389 |
msgstr "Editar entradas"
|
390 |
|
391 |
-
#: ../includes/class-ure-lib.php:
|
392 |
msgid "Edit others posts"
|
393 |
msgstr "Editar entradas ajenas"
|
394 |
|
395 |
-
#: ../includes/class-ure-lib.php:
|
396 |
msgid "Edit published posts"
|
397 |
msgstr "Editar entradas publicadas"
|
398 |
|
399 |
-
#: ../includes/class-ure-lib.php:
|
400 |
msgid "Publish posts"
|
401 |
msgstr "Publicar entradas"
|
402 |
|
403 |
-
#: ../includes/class-ure-lib.php:
|
404 |
msgid "Edit pages"
|
405 |
msgstr "Editar páginas"
|
406 |
|
407 |
-
#: ../includes/class-ure-lib.php:
|
408 |
msgid "Read"
|
409 |
msgstr "Leer"
|
410 |
|
411 |
-
#: ../includes/class-ure-lib.php:
|
412 |
msgid "Level 10"
|
413 |
msgstr "Nivel 10"
|
414 |
|
415 |
-
#: ../includes/class-ure-lib.php:
|
416 |
msgid "Level 9"
|
417 |
msgstr "Nivel 9"
|
418 |
|
419 |
-
#: ../includes/class-ure-lib.php:
|
420 |
msgid "Level 8"
|
421 |
msgstr "Nivel 8"
|
422 |
|
423 |
-
#: ../includes/class-ure-lib.php:
|
424 |
msgid "Level 7"
|
425 |
msgstr "Nivel 7"
|
426 |
|
427 |
-
#: ../includes/class-ure-lib.php:
|
428 |
msgid "Level 6"
|
429 |
msgstr "Nivel 6"
|
430 |
|
431 |
-
#: ../includes/class-ure-lib.php:
|
432 |
msgid "Level 5"
|
433 |
msgstr "Nivel 5"
|
434 |
|
435 |
-
#: ../includes/class-ure-lib.php:
|
436 |
msgid "Level 4"
|
437 |
msgstr "Nivel 4"
|
438 |
|
439 |
-
#: ../includes/class-ure-lib.php:
|
440 |
msgid "Level 3"
|
441 |
msgstr "Nivel 3"
|
442 |
|
443 |
-
#: ../includes/class-ure-lib.php:
|
444 |
msgid "Level 2"
|
445 |
msgstr "Nivel 2"
|
446 |
|
447 |
-
#: ../includes/class-ure-lib.php:
|
448 |
msgid "Level 1"
|
449 |
msgstr "Nivel 1"
|
450 |
|
451 |
-
#: ../includes/class-ure-lib.php:
|
452 |
msgid "Level 0"
|
453 |
msgstr "Nivel 0"
|
454 |
|
455 |
-
#: ../includes/class-ure-lib.php:
|
456 |
msgid "Edit others pages"
|
457 |
msgstr "Editar páginas ajenas"
|
458 |
|
459 |
-
#: ../includes/class-ure-lib.php:
|
460 |
msgid "Edit published pages"
|
461 |
msgstr "Editar páginas publicadas"
|
462 |
|
463 |
-
#: ../includes/class-ure-lib.php:
|
464 |
msgid "Publish pages"
|
465 |
msgstr "Publicar páginas"
|
466 |
|
467 |
-
#: ../includes/class-ure-lib.php:
|
468 |
msgid "Delete pages"
|
469 |
msgstr "Eliminar páginas"
|
470 |
|
471 |
-
#: ../includes/class-ure-lib.php:
|
472 |
msgid "Delete others pages"
|
473 |
msgstr "Eliminar páginas ajenas"
|
474 |
|
475 |
-
#: ../includes/class-ure-lib.php:
|
476 |
msgid "Delete published pages"
|
477 |
msgstr "Eliminar páginas publicadas"
|
478 |
|
479 |
-
#: ../includes/class-ure-lib.php:
|
480 |
msgid "Delete posts"
|
481 |
msgstr "Eliminar entradas"
|
482 |
|
483 |
-
#: ../includes/class-ure-lib.php:
|
484 |
msgid "Delete others posts"
|
485 |
msgstr "Eliminar entradas ajenas"
|
486 |
|
487 |
-
#: ../includes/class-ure-lib.php:
|
488 |
msgid "Delete published posts"
|
489 |
msgstr "Eliminar entradas publicadas"
|
490 |
|
491 |
-
#: ../includes/class-ure-lib.php:
|
492 |
msgid "Delete private posts"
|
493 |
msgstr "Eliminar entradas privadas"
|
494 |
|
495 |
-
#: ../includes/class-ure-lib.php:
|
496 |
msgid "Edit private posts"
|
497 |
msgstr "Editar entradas privadas"
|
498 |
|
499 |
-
#: ../includes/class-ure-lib.php:
|
500 |
msgid "Read private posts"
|
501 |
msgstr "Leer entradas privadas"
|
502 |
|
503 |
-
#: ../includes/class-ure-lib.php:
|
504 |
msgid "Delete private pages"
|
505 |
msgstr "Eliminar páginas privadas"
|
506 |
|
507 |
-
#: ../includes/class-ure-lib.php:
|
508 |
msgid "Edit private pages"
|
509 |
msgstr "Editar páginas privadas"
|
510 |
|
511 |
-
#: ../includes/class-ure-lib.php:
|
512 |
msgid "Read private pages"
|
513 |
msgstr "Leer páginas privadas"
|
514 |
|
515 |
-
#: ../includes/class-ure-lib.php:
|
516 |
msgid "Delete users"
|
517 |
msgstr "Eliminar usuarios"
|
518 |
|
519 |
-
#: ../includes/class-ure-lib.php:
|
520 |
msgid "Create users"
|
521 |
msgstr "Crear usuarios"
|
522 |
|
523 |
-
#: ../includes/class-ure-lib.php:
|
524 |
msgid "Unfiltered upload"
|
525 |
msgstr "Subir sin filtrado"
|
526 |
|
527 |
-
#: ../includes/class-ure-lib.php:
|
528 |
msgid "Edit dashboard"
|
529 |
msgstr "Editar escritorio"
|
530 |
|
531 |
-
#: ../includes/class-ure-lib.php:
|
532 |
msgid "Update plugins"
|
533 |
msgstr "Actualizar plugins"
|
534 |
|
535 |
-
#: ../includes/class-ure-lib.php:
|
536 |
msgid "Delete plugins"
|
537 |
msgstr "Eliminar plugins"
|
538 |
|
539 |
-
#: ../includes/class-ure-lib.php:
|
540 |
msgid "Install plugins"
|
541 |
msgstr "Instalar plugins"
|
542 |
|
543 |
-
#: ../includes/class-ure-lib.php:
|
544 |
msgid "Update themes"
|
545 |
msgstr "Actualizar temas (plantillas)"
|
546 |
|
547 |
-
#: ../includes/class-ure-lib.php:
|
548 |
msgid "Install themes"
|
549 |
msgstr "Instalar temas (plantillas)"
|
550 |
|
551 |
-
#: ../includes/class-ure-lib.php:
|
552 |
msgid "Update core"
|
553 |
msgstr "Actualizar núcleo"
|
554 |
|
555 |
-
#: ../includes/class-ure-lib.php:
|
556 |
msgid "List users"
|
557 |
msgstr "Listar usuarios"
|
558 |
|
559 |
-
#: ../includes/class-ure-lib.php:
|
560 |
msgid "Remove users"
|
561 |
msgstr "Eliminar usuarios"
|
562 |
|
563 |
-
#: ../includes/class-ure-lib.php:
|
564 |
msgid "Add users"
|
565 |
msgstr "Agregar usuarios"
|
566 |
|
567 |
-
#: ../includes/class-ure-lib.php:
|
568 |
msgid "Promote users"
|
569 |
msgstr "Promover usuarios"
|
570 |
|
571 |
-
#: ../includes/class-ure-lib.php:
|
572 |
msgid "Edit theme options"
|
573 |
msgstr "Editar opciones del tema (plantilla)"
|
574 |
|
575 |
-
#: ../includes/class-ure-lib.php:
|
576 |
msgid "Delete themes"
|
577 |
msgstr "Eliminar temas (plantillas)"
|
578 |
|
579 |
-
#: ../includes/class-ure-lib.php:
|
580 |
msgid "Export"
|
581 |
msgstr "Exportar"
|
582 |
|
583 |
-
#: ../includes/class-ure-lib.php:
|
584 |
msgid "Error: Capability name must contain latin characters and digits only!"
|
585 |
msgstr ""
|
586 |
"Error: El nombre de la Capacidad sólo debe contener caracteres alfanuméricos!"
|
587 |
|
588 |
-
#: ../includes/class-ure-lib.php:
|
589 |
#, php-format
|
590 |
msgid "Capability %s is added successfully"
|
591 |
msgstr "La Capacidad %s fue agregada exitosamente"
|
592 |
|
593 |
-
#: ../includes/class-ure-lib.php:
|
594 |
#, php-format
|
595 |
msgid "Capability %s exists already"
|
596 |
msgstr "La Capacidad %s ya existe"
|
597 |
|
598 |
-
#: ../includes/class-ure-lib.php:
|
599 |
#, php-format
|
600 |
msgid "Error! You do not have permission to delete this capability: %s!"
|
601 |
msgstr ""
|
602 |
"¡Error! No cuentas con suficientes permisos para eliminar esta Capacidad: %s!"
|
603 |
|
604 |
-
#: ../includes/class-ure-lib.php:
|
605 |
#, php-format
|
606 |
msgid "Capability %s is removed successfully"
|
607 |
msgstr "La Capacidad %s fue eliminada exitosamente"
|
608 |
|
609 |
-
#: ../includes/class-ure-lib.php:
|
|
|
|
|
|
|
|
|
610 |
msgid "Author's website"
|
611 |
msgstr "Sitio web del Autor"
|
612 |
|
613 |
-
#: ../includes/class-ure-lib.php:
|
614 |
msgid "Plugin webpage"
|
615 |
msgstr "Página web del Plugin"
|
616 |
|
617 |
-
#: ../includes/class-ure-lib.php:
|
618 |
#, fuzzy
|
619 |
msgid "Plugin download"
|
620 |
msgstr "Página web del Plugin"
|
621 |
|
622 |
-
#: ../includes/class-ure-lib.php:
|
623 |
msgid "FAQ"
|
624 |
msgstr "FAQ"
|
625 |
|
626 |
-
#: ../includes/class-ure-lib.php:
|
627 |
msgid "None"
|
628 |
msgstr "Ninguno"
|
629 |
|
630 |
-
#: ../includes/class-ure-lib.php:
|
631 |
msgid "Delete All Unused Roles"
|
632 |
msgstr ""
|
633 |
|
634 |
-
#: ../includes/class-ure-lib.php:
|
635 |
msgid "— No role for this site —"
|
636 |
msgstr ""
|
637 |
|
@@ -643,9 +757,17 @@ msgstr ""
|
|
643 |
msgid "Change capabilities for user"
|
644 |
msgstr "Cambiar Capacidades para el usuario"
|
645 |
|
646 |
-
#: ../includes/
|
647 |
-
msgid "
|
648 |
-
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
649 |
|
650 |
#: ../includes/class-ure-screen-help.php:16
|
651 |
msgid ""
|
@@ -654,11 +776,6 @@ msgid ""
|
|
654 |
"for security reasons."
|
655 |
msgstr ""
|
656 |
|
657 |
-
#: ../includes/class-ure-screen-help.php:18
|
658 |
-
#, fuzzy
|
659 |
-
msgid "Show capabilities in the human readable form"
|
660 |
-
msgstr "Mostrar Capacidades de forma legible"
|
661 |
-
|
662 |
#: ../includes/class-ure-screen-help.php:19
|
663 |
msgid ""
|
664 |
"automatically converts capability names from the technical form for internal "
|
@@ -666,10 +783,6 @@ msgid ""
|
|
666 |
"others posts\"."
|
667 |
msgstr ""
|
668 |
|
669 |
-
#: ../includes/class-ure-screen-help.php:21
|
670 |
-
msgid "Show deprecated capabilities"
|
671 |
-
msgstr "Mostrar Capacidades obsoletas"
|
672 |
-
|
673 |
#: ../includes/class-ure-screen-help.php:22
|
674 |
msgid ""
|
675 |
"Capabilities like \"level_0\", \"level_1\" are deprecated and are not used "
|
@@ -688,51 +801,9 @@ msgid ""
|
|
688 |
"multi-site. Turn this option on in order to remove this limitation."
|
689 |
msgstr ""
|
690 |
|
691 |
-
#~ msgid "Select Role and change its capabilities list"
|
692 |
-
#~ msgstr "Selecciona un rol y modifica su lista de Capacidades"
|
693 |
-
|
694 |
-
#~ msgid "Select Role:"
|
695 |
-
#~ msgstr "Seleccionar Rol:"
|
696 |
-
|
697 |
-
#~ msgid "Apply to All Sites"
|
698 |
-
#~ msgstr "Aplicar a todos los Sitios"
|
699 |
-
|
700 |
-
#~ msgid "Core capabilities:"
|
701 |
-
#~ msgstr "Capacidades del núcleo del sistema:"
|
702 |
-
|
703 |
-
#~ msgid "Quick filter:"
|
704 |
-
#~ msgstr "Filtro rápido:"
|
705 |
-
|
706 |
-
#~ msgid "Custom capabilities:"
|
707 |
-
#~ msgstr "Capacidades personalizadas:"
|
708 |
-
|
709 |
-
#~ msgid "Role name (ID): "
|
710 |
-
#~ msgstr "Nombre del Rol (ID):"
|
711 |
-
|
712 |
-
#~ msgid "Display Role Name: "
|
713 |
-
#~ msgstr "Mostrar nombre del Rol:"
|
714 |
-
|
715 |
-
#~ msgid "Make copy of: "
|
716 |
-
#~ msgstr "Hacer copia de:"
|
717 |
-
|
718 |
-
#~ msgid "Delete:"
|
719 |
-
#~ msgstr "Eliminar:"
|
720 |
-
|
721 |
-
#~ msgid "Capability name (ID): "
|
722 |
-
#~ msgstr "Nombre de la Capacidad (ID):"
|
723 |
-
|
724 |
#~ msgid "About this Plugin:"
|
725 |
#~ msgstr "Acerca de este Plugin:"
|
726 |
|
727 |
-
#~ msgid "Primary Role:"
|
728 |
-
#~ msgstr "Rol Primario:"
|
729 |
-
|
730 |
-
#~ msgid "bbPress Role:"
|
731 |
-
#~ msgstr "Rol de bbPress:"
|
732 |
-
|
733 |
-
#~ msgid "Other Roles:"
|
734 |
-
#~ msgstr "Otros Roles:"
|
735 |
-
|
736 |
#~ msgid ""
|
737 |
#~ "Reset Roles to WordPress defaults. Be careful, all changes made by you or "
|
738 |
#~ "plugins will be lost. Some plugins, e.g. S2Member, WooCommerce "
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: User Role Editor 2.0\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2014-06-11 11:20+0700\n"
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: Vladimir Garagulya <vladimir@shinephp.com>\n"
|
8 |
"Language-Team: ShinePHP.com <vladimir@shinephp.com>\n"
|
16 |
"X-Generator: Poedit 1.5.4\n"
|
17 |
"X-Poedit-SearchPath-0: ..\n"
|
18 |
|
19 |
+
#: ../includes/settings-template.php:17
|
20 |
+
#, fuzzy
|
21 |
+
msgid "User Role Editor - Options"
|
22 |
+
msgstr "Editor de Roles"
|
23 |
+
|
24 |
+
#: ../includes/settings-template.php:21
|
25 |
+
msgid "General"
|
26 |
+
msgstr ""
|
27 |
+
|
28 |
+
#: ../includes/settings-template.php:22
|
29 |
+
msgid "Additional Modules"
|
30 |
+
msgstr ""
|
31 |
+
|
32 |
+
#: ../includes/settings-template.php:23
|
33 |
+
#, fuzzy
|
34 |
+
msgid "Default Roles"
|
35 |
+
msgstr "Rol Predeterminado"
|
36 |
+
|
37 |
+
#: ../includes/settings-template.php:27
|
38 |
+
msgid "Multisite"
|
39 |
+
msgstr ""
|
40 |
+
|
41 |
+
#: ../includes/settings-template.php:31
|
42 |
+
msgid "About"
|
43 |
+
msgstr ""
|
44 |
+
|
45 |
+
#: ../includes/settings-template.php:42
|
46 |
+
#: ../includes/class-ure-screen-help.php:15
|
47 |
+
msgid "Show Administrator role at User Role Editor"
|
48 |
+
msgstr ""
|
49 |
+
|
50 |
+
#: ../includes/settings-template.php:50
|
51 |
+
#: ../includes/class-ure-screen-help.php:18
|
52 |
+
#, fuzzy
|
53 |
+
msgid "Show capabilities in the human readable form"
|
54 |
+
msgstr "Mostrar Capacidades de forma legible"
|
55 |
+
|
56 |
+
#: ../includes/settings-template.php:58 ../includes/ure-role-edit.php:40
|
57 |
+
#: ../includes/ure-user-edit.php:63 ../includes/class-ure-screen-help.php:21
|
58 |
+
msgid "Show deprecated capabilities"
|
59 |
+
msgstr "Mostrar Capacidades obsoletas"
|
60 |
+
|
61 |
+
#: ../includes/settings-template.php:69 ../includes/settings-template.php:101
|
62 |
+
#: ../includes/settings-template.php:131 ../includes/settings-template.php:160
|
63 |
msgid "Save"
|
64 |
msgstr "Guardar"
|
65 |
|
66 |
+
#: ../includes/settings-template.php:86
|
67 |
+
msgid "Count users without role"
|
68 |
+
msgstr ""
|
69 |
+
|
70 |
+
#: ../includes/settings-template.php:111
|
71 |
+
#, fuzzy
|
72 |
+
msgid "Primary default role: "
|
73 |
+
msgstr "Rol Primario:"
|
74 |
+
|
75 |
+
#: ../includes/settings-template.php:118
|
76 |
+
msgid "Other default roles for new registered user: "
|
77 |
+
msgstr ""
|
78 |
+
|
79 |
+
#: ../includes/settings-template.php:124
|
80 |
msgid ""
|
81 |
"Note for multisite environment: take into account that other default roles "
|
82 |
"should exist at the site, in order to be assigned to the new registered "
|
83 |
"users."
|
84 |
msgstr ""
|
85 |
|
86 |
+
#: ../includes/settings-template.php:147
|
87 |
+
msgid "Allow non super administrators to create, edit, and delete users"
|
88 |
+
msgstr ""
|
89 |
+
|
90 |
#: ../includes/class-user-role-editor.php:185
|
91 |
msgid "Change role for users without role"
|
92 |
msgstr ""
|
113 |
msgstr "Configuración"
|
114 |
|
115 |
#: ../includes/class-user-role-editor.php:520
|
116 |
+
#: ../includes/class-ure-lib.php:2207
|
117 |
msgid "Changelog"
|
118 |
msgstr "Registro de cambios"
|
119 |
|
123 |
|
124 |
#: ../includes/class-user-role-editor.php:551
|
125 |
#: ../includes/class-user-role-editor.php:579
|
126 |
+
#: ../includes/class-user-role-editor.php:890
|
127 |
#: ../includes/class-ure-lib.php:225
|
128 |
msgid "User Role Editor"
|
129 |
msgstr "Editor de Roles"
|
130 |
|
131 |
+
#: ../includes/class-user-role-editor.php:636
|
132 |
+
#: ../includes/class-user-role-editor.php:654
|
133 |
+
#: ../includes/class-user-role-editor.php:698
|
134 |
msgid "User Role Editor options are updated"
|
135 |
msgstr "Opciones actualizadas"
|
136 |
|
137 |
+
#: ../includes/class-user-role-editor.php:682
|
138 |
#, fuzzy
|
139 |
msgid "Default Roles are updated"
|
140 |
msgstr "Rol Predeterminado"
|
141 |
|
142 |
+
#: ../includes/class-user-role-editor.php:706
|
143 |
msgid ""
|
144 |
"You do not have sufficient permissions to manage options for User Role "
|
145 |
"Editor."
|
146 |
msgstr "Permisos insuficientes para trabajar"
|
147 |
|
148 |
+
#: ../includes/class-user-role-editor.php:781
|
149 |
msgid "Insufficient permissions to work with User Role Editor"
|
150 |
msgstr "Permisos insuficientes para trabajar con el Editor de Roles"
|
151 |
|
152 |
+
#: ../includes/class-user-role-editor.php:835
|
153 |
msgid "Select All"
|
154 |
msgstr "Seleccionar todo"
|
155 |
|
156 |
+
#: ../includes/class-user-role-editor.php:836
|
157 |
msgid "Unselect All"
|
158 |
msgstr "Deseleccionar todo"
|
159 |
|
160 |
+
#: ../includes/class-user-role-editor.php:837
|
161 |
msgid "Reverse"
|
162 |
msgstr "Revertir"
|
163 |
|
164 |
+
#: ../includes/class-user-role-editor.php:838
|
165 |
msgid "Update"
|
166 |
msgstr "Actualizar"
|
167 |
|
168 |
+
#: ../includes/class-user-role-editor.php:839
|
169 |
msgid "Please confirm permissions update"
|
170 |
msgstr "Por favor confirma las actualizaciones de permisos"
|
171 |
|
172 |
+
#: ../includes/class-user-role-editor.php:840
|
173 |
msgid "Add New Role"
|
174 |
msgstr "Agregar nuevo Rol"
|
175 |
|
176 |
+
#: ../includes/class-user-role-editor.php:841
|
177 |
msgid " Role name (ID) can not be empty!"
|
178 |
msgstr "¡El nombre del Rol (ID) no puede estar vacío!"
|
179 |
|
180 |
+
#: ../includes/class-user-role-editor.php:842
|
181 |
msgid ""
|
182 |
" Role name (ID) must contain latin characters, digits, hyphens or underscore "
|
183 |
"only!"
|
185 |
"¡El nombre del Rol (ID) sólo debe contener caracteres alfanuméricos, guiones "
|
186 |
"altos o bajos!"
|
187 |
|
188 |
+
#: ../includes/class-user-role-editor.php:843
|
189 |
msgid ""
|
190 |
" WordPress does not support numeric Role name (ID). Add latin characters to "
|
191 |
"it."
|
192 |
msgstr ""
|
193 |
|
194 |
+
#: ../includes/class-user-role-editor.php:844
|
195 |
msgid "Add Role"
|
196 |
msgstr "Agregar Rol"
|
197 |
|
198 |
+
#: ../includes/class-user-role-editor.php:845
|
199 |
msgid "Delete Role"
|
200 |
msgstr "Eliminar Rol"
|
201 |
|
202 |
+
#: ../includes/class-user-role-editor.php:846
|
203 |
msgid "Cancel"
|
204 |
msgstr "Cancelar"
|
205 |
|
206 |
+
#: ../includes/class-user-role-editor.php:847
|
207 |
msgid "Add Capability"
|
208 |
msgstr "Agregar Capacidad"
|
209 |
|
210 |
+
#: ../includes/class-user-role-editor.php:848
|
211 |
+
#: ../includes/class-user-role-editor.php:857
|
212 |
msgid "Delete Capability"
|
213 |
msgstr "Eliminar Capacidades"
|
214 |
|
215 |
+
#: ../includes/class-user-role-editor.php:849
|
216 |
msgid "Reset"
|
217 |
msgstr "Reiniciar"
|
218 |
|
219 |
+
#: ../includes/class-user-role-editor.php:850
|
220 |
msgid "DANGER! Resetting will restore default settings from WordPress Core."
|
221 |
msgstr ""
|
222 |
|
223 |
+
#: ../includes/class-user-role-editor.php:851
|
224 |
msgid ""
|
225 |
"If any plugins have changed capabilities in any way upon installation (such "
|
226 |
"as S2Member, WooCommerce, and many more), those capabilities will be DELETED!"
|
227 |
msgstr ""
|
228 |
|
229 |
+
#: ../includes/class-user-role-editor.php:852
|
230 |
msgid ""
|
231 |
"For more information on how to undo changes and restore plugin capabilities "
|
232 |
"go to"
|
233 |
msgstr ""
|
234 |
|
235 |
+
#: ../includes/class-user-role-editor.php:854
|
236 |
msgid "Continue?"
|
237 |
msgstr ""
|
238 |
|
239 |
+
#: ../includes/class-user-role-editor.php:855
|
240 |
msgid "Default Role"
|
241 |
msgstr "Rol Predeterminado"
|
242 |
|
243 |
+
#: ../includes/class-user-role-editor.php:856
|
244 |
msgid "Set New Default Role"
|
245 |
msgstr "Establecer nuevo Rol"
|
246 |
|
247 |
+
#: ../includes/class-user-role-editor.php:858
|
248 |
msgid ""
|
249 |
"Warning! Be careful - removing critical capability could crash some plugin "
|
250 |
"or other custom code"
|
252 |
"¡Atención! Ten cuidado - Eliminar Capacidadess esenciales podría inhabilitar "
|
253 |
"algún plugin o código personalizado"
|
254 |
|
255 |
+
#: ../includes/class-user-role-editor.php:859
|
256 |
msgid " Capability name (ID) can not be empty!"
|
257 |
msgstr "¡El nombre de la Capacidad (ID) no puede estar vacío!"
|
258 |
|
259 |
+
#: ../includes/class-user-role-editor.php:860
|
260 |
msgid ""
|
261 |
" Capability name (ID) must contain latin characters, digits, hyphens or "
|
262 |
"underscore only!"
|
264 |
"¡El nombre de la Capacidad (ID) sólo debe contener caracteres alfanuméricos, "
|
265 |
"guiones altos o bajos!"
|
266 |
|
267 |
+
#: ../includes/class-user-role-editor.php:893
|
268 |
+
#: ../includes/class-user-role-editor.php:922
|
269 |
msgid "Other Roles"
|
270 |
msgstr "Otros Roles"
|
271 |
|
272 |
+
#: ../includes/class-user-role-editor.php:904
|
273 |
msgid "Edit"
|
274 |
msgstr "Editar"
|
275 |
|
276 |
+
#: ../includes/ure-role-edit.php:17
|
277 |
+
#, fuzzy
|
278 |
+
msgid "Select Role and change its capabilities:"
|
279 |
+
msgstr "Selecciona un rol y modifica su lista de Capacidades"
|
280 |
+
|
281 |
+
#: ../includes/ure-role-edit.php:30 ../includes/ure-user-edit.php:53
|
282 |
+
#, fuzzy
|
283 |
+
msgid "Show capabilities in human readable form"
|
284 |
+
msgstr "Mostrar Capacidades de forma legible"
|
285 |
+
|
286 |
#: ../includes/ure-role-edit.php:44
|
287 |
msgid "If checked, then apply action to ALL sites of this Network"
|
288 |
msgstr "Si está marcado, se aplicará la acción a TODOS los sitios de la Red"
|
289 |
|
290 |
+
#: ../includes/ure-role-edit.php:56
|
291 |
+
msgid "Apply to All Sites"
|
292 |
+
msgstr "Aplicar a todos los Sitios"
|
293 |
+
|
294 |
+
#: ../includes/ure-role-edit.php:63 ../includes/ure-user-edit.php:109
|
295 |
+
msgid "Core capabilities:"
|
296 |
+
msgstr "Capacidades del núcleo del sistema:"
|
297 |
+
|
298 |
+
#: ../includes/ure-role-edit.php:65 ../includes/ure-user-edit.php:111
|
299 |
+
msgid "Quick filter:"
|
300 |
+
msgstr "Filtro rápido:"
|
301 |
+
|
302 |
+
#: ../includes/ure-role-edit.php:83 ../includes/ure-user-edit.php:130
|
303 |
+
msgid "Custom capabilities:"
|
304 |
+
msgstr "Capacidades personalizadas:"
|
305 |
+
|
306 |
#: ../includes/class-ure-lib.php:143
|
307 |
msgid "Error: wrong request"
|
308 |
msgstr "Error: Petición inválida"
|
309 |
|
310 |
+
#: ../includes/class-ure-lib.php:175
|
311 |
+
msgid "Role name (ID): "
|
312 |
+
msgstr "Nombre del Rol (ID):"
|
313 |
+
|
314 |
+
#: ../includes/class-ure-lib.php:177
|
315 |
+
msgid "Display Role Name: "
|
316 |
+
msgstr "Mostrar nombre del Rol:"
|
317 |
+
|
318 |
+
#: ../includes/class-ure-lib.php:179
|
319 |
+
msgid "Make copy of: "
|
320 |
+
msgstr "Hacer copia de:"
|
321 |
+
|
322 |
+
#: ../includes/class-ure-lib.php:186
|
323 |
+
msgid "Select Role:"
|
324 |
+
msgstr "Seleccionar Rol:"
|
325 |
+
|
326 |
+
#: ../includes/class-ure-lib.php:201
|
327 |
+
msgid "Delete:"
|
328 |
+
msgstr "Eliminar:"
|
329 |
+
|
330 |
+
#: ../includes/class-ure-lib.php:208
|
331 |
+
msgid "Capability name (ID): "
|
332 |
+
msgstr "Nombre de la Capacidad (ID):"
|
333 |
+
|
334 |
#: ../includes/class-ure-lib.php:322
|
335 |
msgid "Error: "
|
336 |
msgstr "Error:"
|
368 |
msgstr ""
|
369 |
"Los Roles de Usuario fueron restaurados a los predeterminados de WordPress"
|
370 |
|
371 |
+
#: ../includes/class-ure-lib.php:1312
|
372 |
msgid "Help"
|
373 |
msgstr "Ayuda"
|
374 |
|
375 |
+
#: ../includes/class-ure-lib.php:1662
|
376 |
msgid "Error is occur. Please check the log file."
|
377 |
msgstr "Un error ha ocurrido. Por favor revisa el archivo de registro."
|
378 |
|
379 |
+
#: ../includes/class-ure-lib.php:1705
|
380 |
msgid ""
|
381 |
"Error: Role ID must contain latin characters, digits, hyphens or underscore "
|
382 |
"only!"
|
384 |
"Error: ¡La ID del Rol sólo debe contener caracteres alfanuméricos, guiones "
|
385 |
"altos o bajos!"
|
386 |
|
387 |
+
#: ../includes/class-ure-lib.php:1709
|
388 |
msgid ""
|
389 |
"Error: WordPress does not support numeric Role name (ID). Add latin "
|
390 |
"characters to it."
|
391 |
msgstr ""
|
392 |
|
393 |
+
#: ../includes/class-ure-lib.php:1724
|
394 |
#, php-format
|
395 |
msgid "Role %s exists already"
|
396 |
msgstr "El Rol %s ya existe"
|
397 |
|
398 |
+
#: ../includes/class-ure-lib.php:1739
|
399 |
msgid "Error is encountered during new role create operation"
|
400 |
msgstr "Un error fue encontrado durante la creación del nuevo Rol"
|
401 |
|
402 |
+
#: ../includes/class-ure-lib.php:1741
|
403 |
#, php-format
|
404 |
msgid "Role %s is created successfully"
|
405 |
msgstr "El Rol %s fue creado exitosamente"
|
406 |
|
407 |
+
#: ../includes/class-ure-lib.php:1810
|
408 |
msgid "Error encountered during role delete operation"
|
409 |
msgstr "Un error fue encontrado durante la eliminación del Rol"
|
410 |
|
411 |
+
#: ../includes/class-ure-lib.php:1812
|
412 |
msgid "Unused roles are deleted successfully"
|
413 |
msgstr ""
|
414 |
|
415 |
+
#: ../includes/class-ure-lib.php:1814
|
416 |
#, php-format
|
417 |
msgid "Role %s is deleted successfully"
|
418 |
msgstr "El Rol %s fue eliminado exitosamente"
|
419 |
|
420 |
+
#: ../includes/class-ure-lib.php:1839
|
421 |
msgid "Error encountered during default role change operation"
|
422 |
msgstr "Un error fue encontrado durante el cambio del Rol predeterminado"
|
423 |
|
424 |
+
#: ../includes/class-ure-lib.php:1845
|
425 |
#, php-format
|
426 |
msgid "Default role for new users is set to %s successfully"
|
427 |
msgstr "El Rol predeterminado para nuevos usuarios ha sido establecido a %s"
|
428 |
|
429 |
+
#: ../includes/class-ure-lib.php:1864
|
430 |
msgid "Editor"
|
431 |
msgstr "Editor"
|
432 |
|
433 |
+
#: ../includes/class-ure-lib.php:1865
|
434 |
msgid "Author"
|
435 |
msgstr "Autor"
|
436 |
|
437 |
+
#: ../includes/class-ure-lib.php:1866
|
438 |
msgid "Contributor"
|
439 |
msgstr "Contribuyente"
|
440 |
|
441 |
+
#: ../includes/class-ure-lib.php:1867
|
442 |
msgid "Subscriber"
|
443 |
msgstr "Suscriptor"
|
444 |
|
445 |
+
#: ../includes/class-ure-lib.php:1869
|
446 |
msgid "Switch themes"
|
447 |
msgstr "Cambiar temas (plantillas)"
|
448 |
|
449 |
+
#: ../includes/class-ure-lib.php:1870
|
450 |
msgid "Edit themes"
|
451 |
msgstr "Editar temas (plantillas)"
|
452 |
|
453 |
+
#: ../includes/class-ure-lib.php:1871
|
454 |
msgid "Activate plugins"
|
455 |
msgstr "Activar plugins"
|
456 |
|
457 |
+
#: ../includes/class-ure-lib.php:1872
|
458 |
msgid "Edit plugins"
|
459 |
msgstr "Editar plugins"
|
460 |
|
461 |
+
#: ../includes/class-ure-lib.php:1873
|
462 |
msgid "Edit users"
|
463 |
msgstr "Editar usuarios"
|
464 |
|
465 |
+
#: ../includes/class-ure-lib.php:1874
|
466 |
msgid "Edit files"
|
467 |
msgstr "Editar archivos"
|
468 |
|
469 |
+
#: ../includes/class-ure-lib.php:1875
|
470 |
msgid "Manage options"
|
471 |
msgstr "Administrar opciones"
|
472 |
|
473 |
+
#: ../includes/class-ure-lib.php:1876
|
474 |
msgid "Moderate comments"
|
475 |
msgstr "Moderar comentarios"
|
476 |
|
477 |
+
#: ../includes/class-ure-lib.php:1877
|
478 |
msgid "Manage categories"
|
479 |
msgstr "Administrar categorías"
|
480 |
|
481 |
+
#: ../includes/class-ure-lib.php:1878
|
482 |
msgid "Manage links"
|
483 |
msgstr "Administrar enlaces"
|
484 |
|
485 |
+
#: ../includes/class-ure-lib.php:1879
|
486 |
msgid "Upload files"
|
487 |
msgstr "Subir archivos"
|
488 |
|
489 |
+
#: ../includes/class-ure-lib.php:1880
|
490 |
msgid "Import"
|
491 |
msgstr "Importar"
|
492 |
|
493 |
+
#: ../includes/class-ure-lib.php:1881
|
494 |
msgid "Unfiltered html"
|
495 |
msgstr "HTML sin filtrar"
|
496 |
|
497 |
+
#: ../includes/class-ure-lib.php:1882
|
498 |
msgid "Edit posts"
|
499 |
msgstr "Editar entradas"
|
500 |
|
501 |
+
#: ../includes/class-ure-lib.php:1883
|
502 |
msgid "Edit others posts"
|
503 |
msgstr "Editar entradas ajenas"
|
504 |
|
505 |
+
#: ../includes/class-ure-lib.php:1884
|
506 |
msgid "Edit published posts"
|
507 |
msgstr "Editar entradas publicadas"
|
508 |
|
509 |
+
#: ../includes/class-ure-lib.php:1885
|
510 |
msgid "Publish posts"
|
511 |
msgstr "Publicar entradas"
|
512 |
|
513 |
+
#: ../includes/class-ure-lib.php:1886
|
514 |
msgid "Edit pages"
|
515 |
msgstr "Editar páginas"
|
516 |
|
517 |
+
#: ../includes/class-ure-lib.php:1887
|
518 |
msgid "Read"
|
519 |
msgstr "Leer"
|
520 |
|
521 |
+
#: ../includes/class-ure-lib.php:1888
|
522 |
msgid "Level 10"
|
523 |
msgstr "Nivel 10"
|
524 |
|
525 |
+
#: ../includes/class-ure-lib.php:1889
|
526 |
msgid "Level 9"
|
527 |
msgstr "Nivel 9"
|
528 |
|
529 |
+
#: ../includes/class-ure-lib.php:1890
|
530 |
msgid "Level 8"
|
531 |
msgstr "Nivel 8"
|
532 |
|
533 |
+
#: ../includes/class-ure-lib.php:1891
|
534 |
msgid "Level 7"
|
535 |
msgstr "Nivel 7"
|
536 |
|
537 |
+
#: ../includes/class-ure-lib.php:1892
|
538 |
msgid "Level 6"
|
539 |
msgstr "Nivel 6"
|
540 |
|
541 |
+
#: ../includes/class-ure-lib.php:1893
|
542 |
msgid "Level 5"
|
543 |
msgstr "Nivel 5"
|
544 |
|
545 |
+
#: ../includes/class-ure-lib.php:1894
|
546 |
msgid "Level 4"
|
547 |
msgstr "Nivel 4"
|
548 |
|
549 |
+
#: ../includes/class-ure-lib.php:1895
|
550 |
msgid "Level 3"
|
551 |
msgstr "Nivel 3"
|
552 |
|
553 |
+
#: ../includes/class-ure-lib.php:1896
|
554 |
msgid "Level 2"
|
555 |
msgstr "Nivel 2"
|
556 |
|
557 |
+
#: ../includes/class-ure-lib.php:1897
|
558 |
msgid "Level 1"
|
559 |
msgstr "Nivel 1"
|
560 |
|
561 |
+
#: ../includes/class-ure-lib.php:1898
|
562 |
msgid "Level 0"
|
563 |
msgstr "Nivel 0"
|
564 |
|
565 |
+
#: ../includes/class-ure-lib.php:1899
|
566 |
msgid "Edit others pages"
|
567 |
msgstr "Editar páginas ajenas"
|
568 |
|
569 |
+
#: ../includes/class-ure-lib.php:1900
|
570 |
msgid "Edit published pages"
|
571 |
msgstr "Editar páginas publicadas"
|
572 |
|
573 |
+
#: ../includes/class-ure-lib.php:1901
|
574 |
msgid "Publish pages"
|
575 |
msgstr "Publicar páginas"
|
576 |
|
577 |
+
#: ../includes/class-ure-lib.php:1902
|
578 |
msgid "Delete pages"
|
579 |
msgstr "Eliminar páginas"
|
580 |
|
581 |
+
#: ../includes/class-ure-lib.php:1903
|
582 |
msgid "Delete others pages"
|
583 |
msgstr "Eliminar páginas ajenas"
|
584 |
|
585 |
+
#: ../includes/class-ure-lib.php:1904
|
586 |
msgid "Delete published pages"
|
587 |
msgstr "Eliminar páginas publicadas"
|
588 |
|
589 |
+
#: ../includes/class-ure-lib.php:1905
|
590 |
msgid "Delete posts"
|
591 |
msgstr "Eliminar entradas"
|
592 |
|
593 |
+
#: ../includes/class-ure-lib.php:1906
|
594 |
msgid "Delete others posts"
|
595 |
msgstr "Eliminar entradas ajenas"
|
596 |
|
597 |
+
#: ../includes/class-ure-lib.php:1907
|
598 |
msgid "Delete published posts"
|
599 |
msgstr "Eliminar entradas publicadas"
|
600 |
|
601 |
+
#: ../includes/class-ure-lib.php:1908
|
602 |
msgid "Delete private posts"
|
603 |
msgstr "Eliminar entradas privadas"
|
604 |
|
605 |
+
#: ../includes/class-ure-lib.php:1909
|
606 |
msgid "Edit private posts"
|
607 |
msgstr "Editar entradas privadas"
|
608 |
|
609 |
+
#: ../includes/class-ure-lib.php:1910
|
610 |
msgid "Read private posts"
|
611 |
msgstr "Leer entradas privadas"
|
612 |
|
613 |
+
#: ../includes/class-ure-lib.php:1911
|
614 |
msgid "Delete private pages"
|
615 |
msgstr "Eliminar páginas privadas"
|
616 |
|
617 |
+
#: ../includes/class-ure-lib.php:1912
|
618 |
msgid "Edit private pages"
|
619 |
msgstr "Editar páginas privadas"
|
620 |
|
621 |
+
#: ../includes/class-ure-lib.php:1913
|
622 |
msgid "Read private pages"
|
623 |
msgstr "Leer páginas privadas"
|
624 |
|
625 |
+
#: ../includes/class-ure-lib.php:1914
|
626 |
msgid "Delete users"
|
627 |
msgstr "Eliminar usuarios"
|
628 |
|
629 |
+
#: ../includes/class-ure-lib.php:1915
|
630 |
msgid "Create users"
|
631 |
msgstr "Crear usuarios"
|
632 |
|
633 |
+
#: ../includes/class-ure-lib.php:1916
|
634 |
msgid "Unfiltered upload"
|
635 |
msgstr "Subir sin filtrado"
|
636 |
|
637 |
+
#: ../includes/class-ure-lib.php:1917
|
638 |
msgid "Edit dashboard"
|
639 |
msgstr "Editar escritorio"
|
640 |
|
641 |
+
#: ../includes/class-ure-lib.php:1918
|
642 |
msgid "Update plugins"
|
643 |
msgstr "Actualizar plugins"
|
644 |
|
645 |
+
#: ../includes/class-ure-lib.php:1919
|
646 |
msgid "Delete plugins"
|
647 |
msgstr "Eliminar plugins"
|
648 |
|
649 |
+
#: ../includes/class-ure-lib.php:1920
|
650 |
msgid "Install plugins"
|
651 |
msgstr "Instalar plugins"
|
652 |
|
653 |
+
#: ../includes/class-ure-lib.php:1921
|
654 |
msgid "Update themes"
|
655 |
msgstr "Actualizar temas (plantillas)"
|
656 |
|
657 |
+
#: ../includes/class-ure-lib.php:1922
|
658 |
msgid "Install themes"
|
659 |
msgstr "Instalar temas (plantillas)"
|
660 |
|
661 |
+
#: ../includes/class-ure-lib.php:1923
|
662 |
msgid "Update core"
|
663 |
msgstr "Actualizar núcleo"
|
664 |
|
665 |
+
#: ../includes/class-ure-lib.php:1924
|
666 |
msgid "List users"
|
667 |
msgstr "Listar usuarios"
|
668 |
|
669 |
+
#: ../includes/class-ure-lib.php:1925
|
670 |
msgid "Remove users"
|
671 |
msgstr "Eliminar usuarios"
|
672 |
|
673 |
+
#: ../includes/class-ure-lib.php:1926
|
674 |
msgid "Add users"
|
675 |
msgstr "Agregar usuarios"
|
676 |
|
677 |
+
#: ../includes/class-ure-lib.php:1927
|
678 |
msgid "Promote users"
|
679 |
msgstr "Promover usuarios"
|
680 |
|
681 |
+
#: ../includes/class-ure-lib.php:1928
|
682 |
msgid "Edit theme options"
|
683 |
msgstr "Editar opciones del tema (plantilla)"
|
684 |
|
685 |
+
#: ../includes/class-ure-lib.php:1929
|
686 |
msgid "Delete themes"
|
687 |
msgstr "Eliminar temas (plantillas)"
|
688 |
|
689 |
+
#: ../includes/class-ure-lib.php:1930
|
690 |
msgid "Export"
|
691 |
msgstr "Exportar"
|
692 |
|
693 |
+
#: ../includes/class-ure-lib.php:2040
|
694 |
msgid "Error: Capability name must contain latin characters and digits only!"
|
695 |
msgstr ""
|
696 |
"Error: El nombre de la Capacidad sólo debe contener caracteres alfanuméricos!"
|
697 |
|
698 |
+
#: ../includes/class-ure-lib.php:2053
|
699 |
#, php-format
|
700 |
msgid "Capability %s is added successfully"
|
701 |
msgstr "La Capacidad %s fue agregada exitosamente"
|
702 |
|
703 |
+
#: ../includes/class-ure-lib.php:2055
|
704 |
#, php-format
|
705 |
msgid "Capability %s exists already"
|
706 |
msgstr "La Capacidad %s ya existe"
|
707 |
|
708 |
+
#: ../includes/class-ure-lib.php:2080
|
709 |
#, php-format
|
710 |
msgid "Error! You do not have permission to delete this capability: %s!"
|
711 |
msgstr ""
|
712 |
"¡Error! No cuentas con suficientes permisos para eliminar esta Capacidad: %s!"
|
713 |
|
714 |
+
#: ../includes/class-ure-lib.php:2099
|
715 |
#, php-format
|
716 |
msgid "Capability %s is removed successfully"
|
717 |
msgstr "La Capacidad %s fue eliminada exitosamente"
|
718 |
|
719 |
+
#: ../includes/class-ure-lib.php:2203
|
720 |
+
msgid "Version:"
|
721 |
+
msgstr ""
|
722 |
+
|
723 |
+
#: ../includes/class-ure-lib.php:2204
|
724 |
msgid "Author's website"
|
725 |
msgstr "Sitio web del Autor"
|
726 |
|
727 |
+
#: ../includes/class-ure-lib.php:2205
|
728 |
msgid "Plugin webpage"
|
729 |
msgstr "Página web del Plugin"
|
730 |
|
731 |
+
#: ../includes/class-ure-lib.php:2206
|
732 |
#, fuzzy
|
733 |
msgid "Plugin download"
|
734 |
msgstr "Página web del Plugin"
|
735 |
|
736 |
+
#: ../includes/class-ure-lib.php:2208
|
737 |
msgid "FAQ"
|
738 |
msgstr "FAQ"
|
739 |
|
740 |
+
#: ../includes/class-ure-lib.php:2256
|
741 |
msgid "None"
|
742 |
msgstr "Ninguno"
|
743 |
|
744 |
+
#: ../includes/class-ure-lib.php:2283
|
745 |
msgid "Delete All Unused Roles"
|
746 |
msgstr ""
|
747 |
|
748 |
+
#: ../includes/class-ure-lib.php:2307
|
749 |
msgid "— No role for this site —"
|
750 |
msgstr ""
|
751 |
|
757 |
msgid "Change capabilities for user"
|
758 |
msgstr "Cambiar Capacidades para el usuario"
|
759 |
|
760 |
+
#: ../includes/ure-user-edit.php:71
|
761 |
+
msgid "Primary Role:"
|
762 |
+
msgstr "Rol Primario:"
|
763 |
+
|
764 |
+
#: ../includes/ure-user-edit.php:81
|
765 |
+
msgid "bbPress Role:"
|
766 |
+
msgstr "Rol de bbPress:"
|
767 |
+
|
768 |
+
#: ../includes/ure-user-edit.php:91
|
769 |
+
msgid "Other Roles:"
|
770 |
+
msgstr "Otros Roles:"
|
771 |
|
772 |
#: ../includes/class-ure-screen-help.php:16
|
773 |
msgid ""
|
776 |
"for security reasons."
|
777 |
msgstr ""
|
778 |
|
|
|
|
|
|
|
|
|
|
|
779 |
#: ../includes/class-ure-screen-help.php:19
|
780 |
msgid ""
|
781 |
"automatically converts capability names from the technical form for internal "
|
783 |
"others posts\"."
|
784 |
msgstr ""
|
785 |
|
|
|
|
|
|
|
|
|
786 |
#: ../includes/class-ure-screen-help.php:22
|
787 |
msgid ""
|
788 |
"Capabilities like \"level_0\", \"level_1\" are deprecated and are not used "
|
801 |
"multi-site. Turn this option on in order to remove this limitation."
|
802 |
msgstr ""
|
803 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
804 |
#~ msgid "About this Plugin:"
|
805 |
#~ msgstr "Acerca de este Plugin:"
|
806 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
807 |
#~ msgid ""
|
808 |
#~ "Reset Roles to WordPress defaults. Be careful, all changes made by you or "
|
809 |
#~ "plugins will be lost. Some plugins, e.g. S2Member, WooCommerce "
|
lang/ure-fa_IR.mo
CHANGED
Binary file
|
lang/ure-fa_IR.po
CHANGED
@@ -2,23 +2,306 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: User Role Editor 2.0\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2014-
|
6 |
"PO-Revision-Date: \n"
|
7 |
-
"Last-Translator:
|
8 |
"Language-Team: Morteza Gholami <Morteza.Gholami@Yahoo.Com>\n"
|
|
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
-
"Language: en_RU\n"
|
13 |
"X-Poedit-SourceCharset: UTF-8\n"
|
14 |
"X-Poedit-KeywordsList: __;_e;esc_html__;esc_html_e\n"
|
15 |
"X-Poedit-Basepath: .\n"
|
16 |
"X-Generator: Poedit 1.5.4\n"
|
17 |
-
"X-Poedit-Language: Persian\n"
|
18 |
-
"X-Poedit-Country: IRAN, ISLAMIC REPUBLIC OF\n"
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
"X-Poedit-SearchPath-1: ..\n"
|
21 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
22 |
#: ../includes/class-ure-lib.php:143
|
23 |
msgid "Error: wrong request"
|
24 |
msgstr "خطا: درخواست اشتباه"
|
@@ -47,13 +330,6 @@ msgstr "حذف:"
|
|
47 |
msgid "Capability name (ID): "
|
48 |
msgstr "نام قابلیت (شناسه): "
|
49 |
|
50 |
-
#: ../includes/class-ure-lib.php:225
|
51 |
-
#: ../includes/class-user-role-editor.php:551
|
52 |
-
#: ../includes/class-user-role-editor.php:579
|
53 |
-
#: ../includes/class-user-role-editor.php:890
|
54 |
-
msgid "User Role Editor"
|
55 |
-
msgstr "ویرایشگر نقش کاربر"
|
56 |
-
|
57 |
#: ../includes/class-ure-lib.php:322
|
58 |
msgid "Error: "
|
59 |
msgstr "خطا: "
|
@@ -90,649 +366,384 @@ msgstr "خطایی در هنگام بروزرسانی کاربر رخ داد"
|
|
90 |
msgid "User Roles are restored to WordPress default values. "
|
91 |
msgstr "نقشهای کاربر به مقدار پیشفرض وردپرس ترمیم شد."
|
92 |
|
93 |
-
#: ../includes/class-ure-lib.php:
|
94 |
msgid "Help"
|
95 |
msgstr "راهنما"
|
96 |
|
97 |
-
#: ../includes/class-ure-lib.php:
|
98 |
msgid "Error is occur. Please check the log file."
|
99 |
msgstr "خطایی رخ داده است. لطفا فایل گزارش را چک کنید."
|
100 |
|
101 |
-
#: ../includes/class-ure-lib.php:
|
102 |
-
msgid "
|
103 |
-
|
|
|
|
|
|
|
104 |
|
105 |
-
#: ../includes/class-ure-lib.php:
|
106 |
-
msgid "
|
107 |
-
|
|
|
|
|
|
|
|
|
108 |
|
109 |
-
#: ../includes/class-ure-lib.php:
|
110 |
#, php-format
|
111 |
msgid "Role %s exists already"
|
112 |
msgstr "نقش %s از پیش موجود است"
|
113 |
|
114 |
-
#: ../includes/class-ure-lib.php:
|
115 |
msgid "Error is encountered during new role create operation"
|
116 |
msgstr "با خطایی در هنگام عملیات ساخت نقش جدید روبرو شدیم"
|
117 |
|
118 |
-
#: ../includes/class-ure-lib.php:
|
119 |
#, php-format
|
120 |
msgid "Role %s is created successfully"
|
121 |
msgstr "نقش %s با موفقیت ایجاد شد"
|
122 |
|
123 |
-
#: ../includes/class-ure-lib.php:
|
124 |
msgid "Error encountered during role delete operation"
|
125 |
msgstr "با خطایی در هنگام عملیات حذف نقش روبرو شدیم"
|
126 |
|
127 |
-
#: ../includes/class-ure-lib.php:
|
128 |
msgid "Unused roles are deleted successfully"
|
129 |
msgstr "نقشهای استفاده نشده با موفقیت حذف شدند"
|
130 |
|
131 |
-
#: ../includes/class-ure-lib.php:
|
132 |
#, php-format
|
133 |
msgid "Role %s is deleted successfully"
|
134 |
msgstr "نقش %s با موفقیت حذف شد"
|
135 |
|
136 |
-
#: ../includes/class-ure-lib.php:
|
137 |
msgid "Error encountered during default role change operation"
|
138 |
msgstr "با خطایی در هنگام عملیات تغییر نقش پیشفرض روبرو شدیم"
|
139 |
|
140 |
-
#: ../includes/class-ure-lib.php:
|
141 |
#, php-format
|
142 |
msgid "Default role for new users is set to %s successfully"
|
143 |
msgstr "نقش پیشفرض برای کاربران جدید با موفقیت روی %s نشانده شد"
|
144 |
|
145 |
-
#: ../includes/class-ure-lib.php:
|
146 |
msgid "Editor"
|
147 |
msgstr "ویرایشگر"
|
148 |
|
149 |
-
#: ../includes/class-ure-lib.php:
|
150 |
msgid "Author"
|
151 |
msgstr "نویسنده"
|
152 |
|
153 |
-
#: ../includes/class-ure-lib.php:
|
154 |
msgid "Contributor"
|
155 |
msgstr "مشارکتکننده"
|
156 |
|
157 |
-
#: ../includes/class-ure-lib.php:
|
158 |
msgid "Subscriber"
|
159 |
msgstr "مشترک"
|
160 |
|
161 |
-
#: ../includes/class-ure-lib.php:
|
162 |
msgid "Switch themes"
|
163 |
msgstr "تغییر پوستهها"
|
164 |
|
165 |
-
#: ../includes/class-ure-lib.php:
|
166 |
msgid "Edit themes"
|
167 |
msgstr "ویرایش پوستهها"
|
168 |
|
169 |
-
#: ../includes/class-ure-lib.php:
|
170 |
msgid "Activate plugins"
|
171 |
msgstr "فعالسازی افزونهها"
|
172 |
|
173 |
-
#: ../includes/class-ure-lib.php:
|
174 |
msgid "Edit plugins"
|
175 |
msgstr "ویرایش افزونهها"
|
176 |
|
177 |
-
#: ../includes/class-ure-lib.php:
|
178 |
msgid "Edit users"
|
179 |
msgstr "ویرایش کاربران"
|
180 |
|
181 |
-
#: ../includes/class-ure-lib.php:
|
182 |
msgid "Edit files"
|
183 |
msgstr "ویرایش فایلها"
|
184 |
|
185 |
-
#: ../includes/class-ure-lib.php:
|
186 |
msgid "Manage options"
|
187 |
msgstr "مدیریت تنظیمات"
|
188 |
|
189 |
-
#: ../includes/class-ure-lib.php:
|
190 |
msgid "Moderate comments"
|
191 |
msgstr "مدیریت دیدگاهها"
|
192 |
|
193 |
-
#: ../includes/class-ure-lib.php:
|
194 |
msgid "Manage categories"
|
195 |
msgstr "مدیریت دستهها"
|
196 |
|
197 |
-
#: ../includes/class-ure-lib.php:
|
198 |
msgid "Manage links"
|
199 |
msgstr "مدیریت پیوندها"
|
200 |
|
201 |
-
#: ../includes/class-ure-lib.php:
|
202 |
msgid "Upload files"
|
203 |
msgstr "بارگذاری فایلها"
|
204 |
|
205 |
-
#: ../includes/class-ure-lib.php:
|
206 |
msgid "Import"
|
207 |
msgstr "درونریزی"
|
208 |
|
209 |
-
#: ../includes/class-ure-lib.php:
|
210 |
msgid "Unfiltered html"
|
211 |
msgstr "اچتیامال فیلترنشده"
|
212 |
|
213 |
-
#: ../includes/class-ure-lib.php:
|
214 |
msgid "Edit posts"
|
215 |
msgstr "ویرایش نوشتهها"
|
216 |
|
217 |
-
#: ../includes/class-ure-lib.php:
|
218 |
msgid "Edit others posts"
|
219 |
msgstr "ویرایش نوشتهی دیگران"
|
220 |
|
221 |
-
#: ../includes/class-ure-lib.php:
|
222 |
msgid "Edit published posts"
|
223 |
msgstr "ویرایش نوشتههای منتشرشده"
|
224 |
|
225 |
-
#: ../includes/class-ure-lib.php:
|
226 |
msgid "Publish posts"
|
227 |
msgstr "انتشار نوشتهها"
|
228 |
|
229 |
-
#: ../includes/class-ure-lib.php:
|
230 |
msgid "Edit pages"
|
231 |
msgstr "ویرایش صفحات"
|
232 |
|
233 |
-
#: ../includes/class-ure-lib.php:
|
234 |
msgid "Read"
|
235 |
msgstr "خواندن"
|
236 |
|
237 |
-
#: ../includes/class-ure-lib.php:
|
238 |
msgid "Level 10"
|
239 |
msgstr "سطح ۱۰"
|
240 |
|
241 |
-
#: ../includes/class-ure-lib.php:
|
242 |
msgid "Level 9"
|
243 |
msgstr "سطح ۹"
|
244 |
|
245 |
-
#: ../includes/class-ure-lib.php:
|
246 |
msgid "Level 8"
|
247 |
msgstr "سطح ۸"
|
248 |
|
249 |
-
#: ../includes/class-ure-lib.php:
|
250 |
msgid "Level 7"
|
251 |
msgstr "سطح ۷"
|
252 |
|
253 |
-
#: ../includes/class-ure-lib.php:
|
254 |
msgid "Level 6"
|
255 |
msgstr "سطح ۶"
|
256 |
|
257 |
-
#: ../includes/class-ure-lib.php:
|
258 |
msgid "Level 5"
|
259 |
msgstr "سطح ۵"
|
260 |
|
261 |
-
#: ../includes/class-ure-lib.php:
|
262 |
msgid "Level 4"
|
263 |
msgstr "سطح ۴"
|
264 |
|
265 |
-
#: ../includes/class-ure-lib.php:
|
266 |
msgid "Level 3"
|
267 |
msgstr "سطح ۳"
|
268 |
|
269 |
-
#: ../includes/class-ure-lib.php:
|
270 |
msgid "Level 2"
|
271 |
msgstr "سطح ۲"
|
272 |
|
273 |
-
#: ../includes/class-ure-lib.php:
|
274 |
msgid "Level 1"
|
275 |
msgstr "سطح ۱"
|
276 |
|
277 |
-
#: ../includes/class-ure-lib.php:
|
278 |
msgid "Level 0"
|
279 |
msgstr "سطح ۰"
|
280 |
|
281 |
-
#: ../includes/class-ure-lib.php:
|
282 |
msgid "Edit others pages"
|
283 |
msgstr "ویرایش صفحات دیگران"
|
284 |
|
285 |
-
#: ../includes/class-ure-lib.php:
|
286 |
-
msgid "Edit published pages"
|
287 |
-
msgstr "ویرایش صفحات منتشرشده"
|
288 |
-
|
289 |
-
#: ../includes/class-ure-lib.php:1929
|
290 |
-
msgid "Publish pages"
|
291 |
-
msgstr "انتشار صفحات"
|
292 |
-
|
293 |
-
#: ../includes/class-ure-lib.php:1930
|
294 |
-
msgid "Delete pages"
|
295 |
-
msgstr "حذف صفحات"
|
296 |
-
|
297 |
-
#: ../includes/class-ure-lib.php:1931
|
298 |
-
msgid "Delete others pages"
|
299 |
-
msgstr "حذف صفحات دیگران"
|
300 |
-
|
301 |
-
#: ../includes/class-ure-lib.php:1932
|
302 |
-
msgid "Delete published pages"
|
303 |
-
msgstr "حذف صفحات منتشرشده"
|
304 |
-
|
305 |
-
#: ../includes/class-ure-lib.php:1933
|
306 |
-
msgid "Delete posts"
|
307 |
-
msgstr "حذف صفحات"
|
308 |
-
|
309 |
-
#: ../includes/class-ure-lib.php:1934
|
310 |
-
msgid "Delete others posts"
|
311 |
-
msgstr "حذف نوشتههای دیگران"
|
312 |
-
|
313 |
-
#: ../includes/class-ure-lib.php:1935
|
314 |
-
msgid "Delete published posts"
|
315 |
-
msgstr "حذف نوشتههای منتشرشده"
|
316 |
-
|
317 |
-
#: ../includes/class-ure-lib.php:1936
|
318 |
-
msgid "Delete private posts"
|
319 |
-
msgstr "حذف نوشتههای خصوصی"
|
320 |
-
|
321 |
-
#: ../includes/class-ure-lib.php:1937
|
322 |
-
msgid "Edit private posts"
|
323 |
-
msgstr "ویرایش نوشتههای خصوصی"
|
324 |
-
|
325 |
-
#: ../includes/class-ure-lib.php:1938
|
326 |
-
msgid "Read private posts"
|
327 |
-
msgstr "خواندن نوشتههای خصوصی"
|
328 |
-
|
329 |
-
#: ../includes/class-ure-lib.php:1939
|
330 |
-
msgid "Delete private pages"
|
331 |
-
msgstr "حذف صفحات خصوصی"
|
332 |
-
|
333 |
-
#: ../includes/class-ure-lib.php:1940
|
334 |
-
msgid "Edit private pages"
|
335 |
-
msgstr "ویرایش صفحات خصوصی"
|
336 |
-
|
337 |
-
#: ../includes/class-ure-lib.php:1941
|
338 |
-
msgid "Read private pages"
|
339 |
-
msgstr "خواندن صفحات خصوصی"
|
340 |
-
|
341 |
-
#: ../includes/class-ure-lib.php:1942
|
342 |
-
msgid "Delete users"
|
343 |
-
msgstr "حذف کاربران"
|
344 |
-
|
345 |
-
#: ../includes/class-ure-lib.php:1943
|
346 |
-
msgid "Create users"
|
347 |
-
msgstr "ایجاد کاربران"
|
348 |
-
|
349 |
-
#: ../includes/class-ure-lib.php:1944
|
350 |
-
msgid "Unfiltered upload"
|
351 |
-
msgstr "بارگذاری فیلترشده"
|
352 |
-
|
353 |
-
#: ../includes/class-ure-lib.php:1945
|
354 |
-
msgid "Edit dashboard"
|
355 |
-
msgstr "ویرایش پیشخوان"
|
356 |
-
|
357 |
-
#: ../includes/class-ure-lib.php:1946
|
358 |
-
msgid "Update plugins"
|
359 |
-
msgstr "بروزرسانی افزونهها"
|
360 |
-
|
361 |
-
#: ../includes/class-ure-lib.php:1947
|
362 |
-
msgid "Delete plugins"
|
363 |
-
msgstr "حذف افزونهها"
|
364 |
-
|
365 |
-
#: ../includes/class-ure-lib.php:1948
|
366 |
-
msgid "Install plugins"
|
367 |
-
msgstr "نصب افزونهها"
|
368 |
-
|
369 |
-
#: ../includes/class-ure-lib.php:1949
|
370 |
-
msgid "Update themes"
|
371 |
-
msgstr "بروزرسانی پوستهها"
|
372 |
-
|
373 |
-
#: ../includes/class-ure-lib.php:1950
|
374 |
-
msgid "Install themes"
|
375 |
-
msgstr "نصب پوستهها"
|
376 |
-
|
377 |
-
#: ../includes/class-ure-lib.php:1951
|
378 |
-
msgid "Update core"
|
379 |
-
msgstr "بروزرسانی هسته"
|
380 |
-
|
381 |
-
#: ../includes/class-ure-lib.php:1952
|
382 |
-
msgid "List users"
|
383 |
-
msgstr "فهرست کاربران"
|
384 |
-
|
385 |
-
#: ../includes/class-ure-lib.php:1953
|
386 |
-
msgid "Remove users"
|
387 |
-
msgstr "حذف کابران"
|
388 |
-
|
389 |
-
#: ../includes/class-ure-lib.php:1954
|
390 |
-
msgid "Add users"
|
391 |
-
msgstr "افزودن کاربران"
|
392 |
-
|
393 |
-
#: ../includes/class-ure-lib.php:1955
|
394 |
-
msgid "Promote users"
|
395 |
-
msgstr "ارتقاء کاربران"
|
396 |
-
|
397 |
-
#: ../includes/class-ure-lib.php:1956
|
398 |
-
msgid "Edit theme options"
|
399 |
-
msgstr "ویرایش تنظیمات پوسته"
|
400 |
-
|
401 |
-
#: ../includes/class-ure-lib.php:1957
|
402 |
-
msgid "Delete themes"
|
403 |
-
msgstr "حذف پوستهها"
|
404 |
-
|
405 |
-
#: ../includes/class-ure-lib.php:1958
|
406 |
-
msgid "Export"
|
407 |
-
msgstr "برونریزی"
|
408 |
-
|
409 |
-
#: ../includes/class-ure-lib.php:2068
|
410 |
-
msgid "Error: Capability name must contain latin characters and digits only!"
|
411 |
-
msgstr "خطا: نام قابلیت باید فقط شامل حروف لاتین و اعداد باشد!"
|
412 |
-
|
413 |
-
#: ../includes/class-ure-lib.php:2081
|
414 |
-
#, php-format
|
415 |
-
msgid "Capability %s is added successfully"
|
416 |
-
msgstr "قابلیت %s با موفقیت افزوده شد"
|
417 |
-
|
418 |
-
#: ../includes/class-ure-lib.php:2083
|
419 |
-
#, php-format
|
420 |
-
msgid "Capability %s exists already"
|
421 |
-
msgstr "قابلیت %s از پیش موجود است"
|
422 |
-
|
423 |
-
#: ../includes/class-ure-lib.php:2108
|
424 |
-
#, php-format
|
425 |
-
msgid "Error! You do not have permission to delete this capability: %s!"
|
426 |
-
msgstr "خطا! شما اجازهی حذف این قابلیت را ندارید: %s!"
|
427 |
-
|
428 |
-
#: ../includes/class-ure-lib.php:2127
|
429 |
-
#, php-format
|
430 |
-
msgid "Capability %s is removed successfully"
|
431 |
-
msgstr "قابلیت %s با موفقیت حذف شد"
|
432 |
-
|
433 |
-
#: ../includes/class-ure-lib.php:2232
|
434 |
-
msgid "Author's website"
|
435 |
-
msgstr "وبگاه نویسنده"
|
436 |
-
|
437 |
-
#: ../includes/class-ure-lib.php:2233
|
438 |
-
msgid "Plugin webpage"
|
439 |
-
msgstr "صفحه افزونه"
|
440 |
-
|
441 |
-
#: ../includes/class-ure-lib.php:2234
|
442 |
-
msgid "Plugin download"
|
443 |
-
msgstr "بارگیری افزونه"
|
444 |
-
|
445 |
-
#: ../includes/class-ure-lib.php:2235
|
446 |
-
#: ../includes/class-user-role-editor.php:520
|
447 |
-
msgid "Changelog"
|
448 |
-
msgstr "گزارش تغییرات"
|
449 |
-
|
450 |
-
#: ../includes/class-ure-lib.php:2236
|
451 |
-
msgid "FAQ"
|
452 |
-
msgstr "سوالات مکرر"
|
453 |
-
|
454 |
-
#: ../includes/class-ure-lib.php:2284
|
455 |
-
msgid "None"
|
456 |
-
msgstr "هیچکدام"
|
457 |
-
|
458 |
-
#: ../includes/class-ure-lib.php:2311
|
459 |
-
msgid "Delete All Unused Roles"
|
460 |
-
msgstr "حذف همهی نقشهای استفادهنشده"
|
461 |
-
|
462 |
-
#: ../includes/class-ure-lib.php:2335
|
463 |
-
msgid "— No role for this site —"
|
464 |
-
msgstr "— هیچ نقشی برای این سایت —"
|
465 |
-
|
466 |
-
#: ../includes/class-ure-screen-help.php:15
|
467 |
-
#: ../includes/settings-template.php:42
|
468 |
-
msgid "Show Administrator role at User Role Editor"
|
469 |
-
msgstr "نمایش نقش مدیر در ویرایشگر نقش کاربر"
|
470 |
-
|
471 |
-
#: ../includes/class-ure-screen-help.php:16
|
472 |
-
msgid "turn this option on in order to make the \"Administrator\" role available at the User Role Editor roles selection drop-down list. It is hidden by default for security reasons."
|
473 |
-
msgstr "روشن کردن این گزینه به منظور قابل دسترس شدن نقش \"مدیر\" در فهرست کشویی ویرایشگر نقش کاربر میباشد. این امکان به صورت پیشفرض به دلیل مسائل امنیتی مخفی میباشد."
|
474 |
-
|
475 |
-
#: ../includes/class-ure-screen-help.php:18
|
476 |
-
#: ../includes/settings-template.php:50
|
477 |
-
msgid "Show capabilities in the human readable form"
|
478 |
-
msgstr "نمایش قابلیتها در حالت قابل خواندن برای انسان"
|
479 |
-
|
480 |
-
#: ../includes/class-ure-screen-help.php:19
|
481 |
-
msgid "automatically converts capability names from the technical form for internal use like \"edit_others_posts\" to more user friendly form, e.g. \"Edit others posts\"."
|
482 |
-
msgstr "به طور خودکار نام قابلیتها را از حالت فنی به منظور استفادههای داخلی تبدیل میکند. مانند \"edit_others_posts\" به حالت کاربر پسندتر، مثلا \"ویرایش نوشتههای دیگران\"."
|
483 |
-
|
484 |
-
#: ../includes/class-ure-screen-help.php:21
|
485 |
-
#: ../includes/settings-template.php:58
|
486 |
-
msgid "Show deprecated capabilities"
|
487 |
-
msgstr "نمایش قابلیتهای بد دانسته شده"
|
488 |
-
|
489 |
-
#: ../includes/class-ure-screen-help.php:22
|
490 |
-
msgid "Capabilities like \"level_0\", \"level_1\" are deprecated and are not used by WordPress. They are left at the user roles for the compatibility purpose with the old themes and plugins code. Turning on this option will show those deprecated capabilities."
|
491 |
-
msgstr "قابلیتهایی شبیه \"سطح ۰\"، \"سطح ۱\" بد دانسته شدهاند و توسط وردپرس استفاده نمیشوند. این قابلیتها در نقشهای کاربران به منظور سازگاری با پوستههای قدیمی و کد افزونهها باقی گذاشته شدهاند. روشن کردن این گزینه، آن قابلیتهای بد دانسته شده را نمایش میدهد."
|
492 |
-
|
493 |
-
#: ../includes/class-ure-screen-help.php:27
|
494 |
-
msgid "Allow create, edit and delete users to not super-admininstrators"
|
495 |
-
msgstr "اجازهی ایجاد، ویرایش و حذف کاربران به غیر مدیران اصلی"
|
496 |
-
|
497 |
-
#: ../includes/class-ure-screen-help.php:28
|
498 |
-
msgid "Super administrator only may create, edit and delete users under WordPress multi-site. Turn this option on in order to remove this limitation."
|
499 |
-
msgstr "در وردپرس چند سایتی تنها مدیران اصلی اجازهی ایجاد، ویرایش و حذف کاربران را دارند. این "
|
500 |
-
|
501 |
-
#: ../includes/class-user-role-editor.php:185
|
502 |
-
msgid "Change role for users without role"
|
503 |
-
msgstr "تغییر نقش برای کاربران بدون نقش"
|
504 |
-
|
505 |
-
#: ../includes/class-user-role-editor.php:186
|
506 |
-
msgid "No rights"
|
507 |
-
msgstr "هیچ حقوقی"
|
508 |
-
|
509 |
-
#: ../includes/class-user-role-editor.php:187
|
510 |
-
msgid "Provide new role"
|
511 |
-
msgstr "ارائهی نقش جدید"
|
512 |
-
|
513 |
-
#: ../includes/class-user-role-editor.php:271
|
514 |
-
#: ../includes/class-user-role-editor.php:273
|
515 |
-
msgid "You do not have permission to edit this user."
|
516 |
-
msgstr "شما اجازهی ویرایش این کاربر را ندارید."
|
517 |
-
|
518 |
-
#: ../includes/class-user-role-editor.php:414
|
519 |
-
msgid "Capabilities"
|
520 |
-
msgstr "قابلیتها"
|
521 |
-
|
522 |
-
#: ../includes/class-user-role-editor.php:507
|
523 |
-
msgid "Settings"
|
524 |
-
msgstr "تنظیمات"
|
525 |
-
|
526 |
-
#: ../includes/class-user-role-editor.php:542
|
527 |
-
msgid "Overview"
|
528 |
-
msgstr "مرور کلی"
|
529 |
-
|
530 |
-
#: ../includes/class-user-role-editor.php:636
|
531 |
-
#: ../includes/class-user-role-editor.php:654
|
532 |
-
#: ../includes/class-user-role-editor.php:698
|
533 |
-
msgid "User Role Editor options are updated"
|
534 |
-
msgstr "تنظیمات ویرایشگر نقش کاربر بروز شد"
|
535 |
-
|
536 |
-
#: ../includes/class-user-role-editor.php:682
|
537 |
-
msgid "Default Roles are updated"
|
538 |
-
msgstr "نقشهای پیش فرض بروز شدند"
|
539 |
-
|
540 |
-
#: ../includes/class-user-role-editor.php:706
|
541 |
-
msgid "You do not have sufficient permissions to manage options for User Role Editor."
|
542 |
-
msgstr "شما مجوز کافی برای مدیریت تنظیمات ویرایشگر نقش کاربر را ندارید."
|
543 |
-
|
544 |
-
#: ../includes/class-user-role-editor.php:781
|
545 |
-
msgid "Insufficient permissions to work with User Role Editor"
|
546 |
-
msgstr "مجوز ناکافی برای کار با ویرایشگر نقش کاربر"
|
547 |
-
|
548 |
-
#: ../includes/class-user-role-editor.php:835
|
549 |
-
msgid "Select All"
|
550 |
-
msgstr "انتخاب همه"
|
551 |
-
|
552 |
-
#: ../includes/class-user-role-editor.php:836
|
553 |
-
msgid "Unselect All"
|
554 |
-
msgstr "عدمانتخاب همه"
|
555 |
|
556 |
-
#: ../includes/class-
|
557 |
-
msgid "
|
558 |
-
msgstr "
|
559 |
|
560 |
-
#: ../includes/class-
|
561 |
-
msgid "
|
562 |
-
msgstr "
|
563 |
|
564 |
-
#: ../includes/class-
|
565 |
-
msgid "
|
566 |
-
msgstr "
|
567 |
|
568 |
-
#: ../includes/class-
|
569 |
-
msgid "
|
570 |
-
msgstr "
|
571 |
|
572 |
-
#: ../includes/class-
|
573 |
-
msgid "
|
574 |
-
msgstr "
|
575 |
|
576 |
-
#: ../includes/class-
|
577 |
-
msgid "
|
578 |
-
msgstr "
|
579 |
|
580 |
-
#: ../includes/class-
|
581 |
-
msgid "
|
582 |
-
msgstr "
|
583 |
|
584 |
-
#: ../includes/class-
|
585 |
-
msgid "
|
586 |
-
msgstr "
|
587 |
|
588 |
-
#: ../includes/class-
|
589 |
-
msgid "
|
590 |
-
msgstr "
|
591 |
|
592 |
-
#: ../includes/class-
|
593 |
-
msgid "
|
594 |
-
msgstr "
|
595 |
|
596 |
-
#: ../includes/class-
|
597 |
-
msgid "
|
598 |
-
msgstr "
|
599 |
|
600 |
-
#: ../includes/class-
|
601 |
-
|
602 |
-
|
603 |
-
msgstr "حذف قابلیت"
|
604 |
|
605 |
-
#: ../includes/class-
|
606 |
-
msgid "
|
607 |
-
msgstr "
|
608 |
|
609 |
-
#: ../includes/class-
|
610 |
-
msgid "
|
611 |
-
msgstr "
|
612 |
|
613 |
-
#: ../includes/class-
|
614 |
-
msgid "
|
615 |
-
msgstr "
|
616 |
|
617 |
-
#: ../includes/class-
|
618 |
-
msgid "
|
619 |
-
msgstr "
|
620 |
|
621 |
-
#: ../includes/class-
|
622 |
-
msgid "
|
623 |
-
msgstr "
|
624 |
|
625 |
-
#: ../includes/class-
|
626 |
-
msgid "
|
627 |
-
msgstr "
|
628 |
|
629 |
-
#: ../includes/class-
|
630 |
-
msgid "
|
631 |
-
msgstr "
|
632 |
|
633 |
-
#: ../includes/class-
|
634 |
-
msgid "
|
635 |
-
msgstr "
|
636 |
|
637 |
-
#: ../includes/class-
|
638 |
-
msgid "
|
639 |
-
msgstr "
|
640 |
|
641 |
-
#: ../includes/class-
|
642 |
-
msgid "
|
643 |
-
msgstr "
|
644 |
|
645 |
-
#: ../includes/class-
|
646 |
-
|
647 |
-
|
648 |
-
msgstr "دیگر نقشها"
|
649 |
|
650 |
-
#: ../includes/class-
|
651 |
-
msgid "
|
652 |
-
msgstr "
|
653 |
|
654 |
-
#: ../includes/
|
655 |
-
msgid "
|
656 |
-
msgstr "
|
657 |
|
658 |
-
#: ../includes/
|
659 |
-
msgid "
|
660 |
-
msgstr "
|
661 |
|
662 |
-
#: ../includes/
|
663 |
-
msgid "
|
664 |
-
msgstr "
|
665 |
|
666 |
-
#: ../includes/
|
667 |
-
msgid "
|
668 |
-
msgstr "
|
669 |
|
670 |
-
#: ../includes/
|
671 |
-
msgid "
|
672 |
-
msgstr "
|
673 |
|
674 |
-
#: ../includes/
|
675 |
-
msgid "
|
676 |
-
msgstr "
|
677 |
|
678 |
-
#: ../includes/
|
679 |
-
|
680 |
-
|
681 |
-
#: ../includes/settings-template.php:160
|
682 |
-
msgid "Save"
|
683 |
-
msgstr "ذخیره"
|
684 |
|
685 |
-
#: ../includes/
|
686 |
-
|
687 |
-
|
|
|
688 |
|
689 |
-
#: ../includes/
|
690 |
-
|
691 |
-
|
|
|
692 |
|
693 |
-
#: ../includes/
|
694 |
-
|
695 |
-
|
|
|
696 |
|
697 |
-
#: ../includes/
|
698 |
-
|
699 |
-
|
|
|
700 |
|
701 |
-
#: ../includes/
|
702 |
-
msgid "
|
703 |
-
msgstr "
|
704 |
|
705 |
-
#: ../includes/ure-
|
706 |
-
msgid "
|
707 |
-
msgstr "
|
708 |
|
709 |
-
#: ../includes/ure-
|
710 |
-
|
711 |
-
|
712 |
-
msgstr "نمایش قابلیتها در حالت قابل خواندن برای انسان"
|
713 |
|
714 |
-
#: ../includes/ure-
|
715 |
-
msgid "
|
716 |
-
msgstr "
|
717 |
|
718 |
-
#: ../includes/ure-
|
719 |
-
msgid "
|
720 |
-
msgstr "
|
721 |
|
722 |
-
#: ../includes/ure-
|
723 |
-
|
724 |
-
|
725 |
-
msgstr "قابلیتهای هسته:"
|
726 |
|
727 |
-
#: ../includes/ure-
|
728 |
-
|
729 |
-
|
730 |
-
msgstr "فیلتر سریع:"
|
731 |
|
732 |
-
#: ../includes/ure-
|
733 |
-
|
734 |
-
|
735 |
-
msgstr "قابلیتهای سفارشی:"
|
736 |
|
737 |
#: ../includes/ure-user-edit.php:31
|
738 |
msgid "Network Super Admin"
|
@@ -754,3 +765,46 @@ msgstr "نقش بیبیپرس:"
|
|
754 |
msgid "Other Roles:"
|
755 |
msgstr "دیگر نقشها:"
|
756 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: User Role Editor 2.0\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2014-06-11 11:20+0700\n"
|
6 |
"PO-Revision-Date: \n"
|
7 |
+
"Last-Translator: Vladimir Garagulya <vladimir@shinephp.com>\n"
|
8 |
"Language-Team: Morteza Gholami <Morteza.Gholami@Yahoo.Com>\n"
|
9 |
+
"Language: en_RU\n"
|
10 |
"MIME-Version: 1.0\n"
|
11 |
"Content-Type: text/plain; charset=UTF-8\n"
|
12 |
"Content-Transfer-Encoding: 8bit\n"
|
|
|
13 |
"X-Poedit-SourceCharset: UTF-8\n"
|
14 |
"X-Poedit-KeywordsList: __;_e;esc_html__;esc_html_e\n"
|
15 |
"X-Poedit-Basepath: .\n"
|
16 |
"X-Generator: Poedit 1.5.4\n"
|
|
|
|
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
"X-Poedit-SearchPath-1: ..\n"
|
19 |
|
20 |
+
#: ../includes/settings-template.php:17
|
21 |
+
msgid "User Role Editor - Options"
|
22 |
+
msgstr "ویرایشگر نقش کاربر - تنظیمات"
|
23 |
+
|
24 |
+
#: ../includes/settings-template.php:21
|
25 |
+
msgid "General"
|
26 |
+
msgstr "عمومی"
|
27 |
+
|
28 |
+
#: ../includes/settings-template.php:22
|
29 |
+
msgid "Additional Modules"
|
30 |
+
msgstr "ماژولهای اضافی"
|
31 |
+
|
32 |
+
#: ../includes/settings-template.php:23
|
33 |
+
msgid "Default Roles"
|
34 |
+
msgstr "نقشهای پیشفرض"
|
35 |
+
|
36 |
+
#: ../includes/settings-template.php:27
|
37 |
+
msgid "Multisite"
|
38 |
+
msgstr "چندسایتی"
|
39 |
+
|
40 |
+
#: ../includes/settings-template.php:31
|
41 |
+
msgid "About"
|
42 |
+
msgstr "درباره"
|
43 |
+
|
44 |
+
#: ../includes/settings-template.php:42
|
45 |
+
#: ../includes/class-ure-screen-help.php:15
|
46 |
+
msgid "Show Administrator role at User Role Editor"
|
47 |
+
msgstr "نمایش نقش مدیر در ویرایشگر نقش کاربر"
|
48 |
+
|
49 |
+
#: ../includes/settings-template.php:50
|
50 |
+
#: ../includes/class-ure-screen-help.php:18
|
51 |
+
msgid "Show capabilities in the human readable form"
|
52 |
+
msgstr "نمایش قابلیتها در حالت قابل خواندن برای انسان"
|
53 |
+
|
54 |
+
#: ../includes/settings-template.php:58 ../includes/ure-role-edit.php:40
|
55 |
+
#: ../includes/ure-user-edit.php:63 ../includes/class-ure-screen-help.php:21
|
56 |
+
msgid "Show deprecated capabilities"
|
57 |
+
msgstr "نمایش قابلیتهای بد دانسته شده"
|
58 |
+
|
59 |
+
#: ../includes/settings-template.php:69 ../includes/settings-template.php:101
|
60 |
+
#: ../includes/settings-template.php:131 ../includes/settings-template.php:160
|
61 |
+
msgid "Save"
|
62 |
+
msgstr "ذخیره"
|
63 |
+
|
64 |
+
#: ../includes/settings-template.php:86
|
65 |
+
msgid "Count users without role"
|
66 |
+
msgstr "شمارش کاربران بدون نقش"
|
67 |
+
|
68 |
+
#: ../includes/settings-template.php:111
|
69 |
+
msgid "Primary default role: "
|
70 |
+
msgstr "نقش پیشفرض اولیه: "
|
71 |
+
|
72 |
+
#: ../includes/settings-template.php:118
|
73 |
+
msgid "Other default roles for new registered user: "
|
74 |
+
msgstr "دیگر نقشهای پیشفرض برای کاربران تازه ثبتنام شده: "
|
75 |
+
|
76 |
+
#: ../includes/settings-template.php:124
|
77 |
+
msgid ""
|
78 |
+
"Note for multisite environment: take into account that other default roles "
|
79 |
+
"should exist at the site, in order to be assigned to the new registered "
|
80 |
+
"users."
|
81 |
+
msgstr ""
|
82 |
+
"قابل توجه محیط چند سایتی: رفتن به حسابی که در سایت نقشهای پیش فرض دیگری "
|
83 |
+
"موجود است، به منظور اختصاص دادن به کاربران تازه ثبتنام شده."
|
84 |
+
|
85 |
+
#: ../includes/settings-template.php:147
|
86 |
+
msgid "Allow non super administrators to create, edit, and delete users"
|
87 |
+
msgstr "اجازه به غیر مدیران اصلی برای ایجاد، ویرایش و حذف کاربران"
|
88 |
+
|
89 |
+
#: ../includes/class-user-role-editor.php:185
|
90 |
+
msgid "Change role for users without role"
|
91 |
+
msgstr "تغییر نقش برای کاربران بدون نقش"
|
92 |
+
|
93 |
+
#: ../includes/class-user-role-editor.php:186
|
94 |
+
msgid "No rights"
|
95 |
+
msgstr "هیچ حقوقی"
|
96 |
+
|
97 |
+
#: ../includes/class-user-role-editor.php:187
|
98 |
+
msgid "Provide new role"
|
99 |
+
msgstr "ارائهی نقش جدید"
|
100 |
+
|
101 |
+
#: ../includes/class-user-role-editor.php:271
|
102 |
+
#: ../includes/class-user-role-editor.php:273
|
103 |
+
msgid "You do not have permission to edit this user."
|
104 |
+
msgstr "شما اجازهی ویرایش این کاربر را ندارید."
|
105 |
+
|
106 |
+
#: ../includes/class-user-role-editor.php:414
|
107 |
+
msgid "Capabilities"
|
108 |
+
msgstr "قابلیتها"
|
109 |
+
|
110 |
+
#: ../includes/class-user-role-editor.php:507
|
111 |
+
msgid "Settings"
|
112 |
+
msgstr "تنظیمات"
|
113 |
+
|
114 |
+
#: ../includes/class-user-role-editor.php:520
|
115 |
+
#: ../includes/class-ure-lib.php:2207
|
116 |
+
msgid "Changelog"
|
117 |
+
msgstr "گزارش تغییرات"
|
118 |
+
|
119 |
+
#: ../includes/class-user-role-editor.php:542
|
120 |
+
msgid "Overview"
|
121 |
+
msgstr "مرور کلی"
|
122 |
+
|
123 |
+
#: ../includes/class-user-role-editor.php:551
|
124 |
+
#: ../includes/class-user-role-editor.php:579
|
125 |
+
#: ../includes/class-user-role-editor.php:890
|
126 |
+
#: ../includes/class-ure-lib.php:225
|
127 |
+
msgid "User Role Editor"
|
128 |
+
msgstr "ویرایشگر نقش کاربر"
|
129 |
+
|
130 |
+
#: ../includes/class-user-role-editor.php:636
|
131 |
+
#: ../includes/class-user-role-editor.php:654
|
132 |
+
#: ../includes/class-user-role-editor.php:698
|
133 |
+
msgid "User Role Editor options are updated"
|
134 |
+
msgstr "تنظیمات ویرایشگر نقش کاربر بروز شد"
|
135 |
+
|
136 |
+
#: ../includes/class-user-role-editor.php:682
|
137 |
+
msgid "Default Roles are updated"
|
138 |
+
msgstr "نقشهای پیش فرض بروز شدند"
|
139 |
+
|
140 |
+
#: ../includes/class-user-role-editor.php:706
|
141 |
+
msgid ""
|
142 |
+
"You do not have sufficient permissions to manage options for User Role "
|
143 |
+
"Editor."
|
144 |
+
msgstr "شما مجوز کافی برای مدیریت تنظیمات ویرایشگر نقش کاربر را ندارید."
|
145 |
+
|
146 |
+
#: ../includes/class-user-role-editor.php:781
|
147 |
+
msgid "Insufficient permissions to work with User Role Editor"
|
148 |
+
msgstr "مجوز ناکافی برای کار با ویرایشگر نقش کاربر"
|
149 |
+
|
150 |
+
#: ../includes/class-user-role-editor.php:835
|
151 |
+
msgid "Select All"
|
152 |
+
msgstr "انتخاب همه"
|
153 |
+
|
154 |
+
#: ../includes/class-user-role-editor.php:836
|
155 |
+
msgid "Unselect All"
|
156 |
+
msgstr "عدمانتخاب همه"
|
157 |
+
|
158 |
+
#: ../includes/class-user-role-editor.php:837
|
159 |
+
msgid "Reverse"
|
160 |
+
msgstr "وارونه"
|
161 |
+
|
162 |
+
#: ../includes/class-user-role-editor.php:838
|
163 |
+
msgid "Update"
|
164 |
+
msgstr "بروزرسانی"
|
165 |
+
|
166 |
+
#: ../includes/class-user-role-editor.php:839
|
167 |
+
msgid "Please confirm permissions update"
|
168 |
+
msgstr "لطفا مجوز بروزرسانی را تایید کنید"
|
169 |
+
|
170 |
+
#: ../includes/class-user-role-editor.php:840
|
171 |
+
msgid "Add New Role"
|
172 |
+
msgstr "افزودن نقش جدید"
|
173 |
+
|
174 |
+
#: ../includes/class-user-role-editor.php:841
|
175 |
+
msgid " Role name (ID) can not be empty!"
|
176 |
+
msgstr " نام نقش (شناسه) نمی تواند خالی باشد!"
|
177 |
+
|
178 |
+
#: ../includes/class-user-role-editor.php:842
|
179 |
+
msgid ""
|
180 |
+
" Role name (ID) must contain latin characters, digits, hyphens or underscore "
|
181 |
+
"only!"
|
182 |
+
msgstr ""
|
183 |
+
" نام نقش (شناسه) باید فقط شامل حروف لاتین، اعداد، خط فاصله یا زیرخط باشد!"
|
184 |
+
|
185 |
+
#: ../includes/class-user-role-editor.php:843
|
186 |
+
msgid ""
|
187 |
+
" WordPress does not support numeric Role name (ID). Add latin characters to "
|
188 |
+
"it."
|
189 |
+
msgstr ""
|
190 |
+
" وردپرس از نام نقش (شناسه) عددی پشتیبانی نمیکند. حروف لاتین به آن اضافه کنید."
|
191 |
+
|
192 |
+
#: ../includes/class-user-role-editor.php:844
|
193 |
+
msgid "Add Role"
|
194 |
+
msgstr "افزودن نقش"
|
195 |
+
|
196 |
+
#: ../includes/class-user-role-editor.php:845
|
197 |
+
msgid "Delete Role"
|
198 |
+
msgstr "حذف نقش"
|
199 |
+
|
200 |
+
#: ../includes/class-user-role-editor.php:846
|
201 |
+
msgid "Cancel"
|
202 |
+
msgstr "لغو"
|
203 |
+
|
204 |
+
#: ../includes/class-user-role-editor.php:847
|
205 |
+
msgid "Add Capability"
|
206 |
+
msgstr "افزودن قابلیت"
|
207 |
+
|
208 |
+
#: ../includes/class-user-role-editor.php:848
|
209 |
+
#: ../includes/class-user-role-editor.php:857
|
210 |
+
msgid "Delete Capability"
|
211 |
+
msgstr "حذف قابلیت"
|
212 |
+
|
213 |
+
#: ../includes/class-user-role-editor.php:849
|
214 |
+
msgid "Reset"
|
215 |
+
msgstr "بازنشانی"
|
216 |
+
|
217 |
+
#: ../includes/class-user-role-editor.php:850
|
218 |
+
msgid "DANGER! Resetting will restore default settings from WordPress Core."
|
219 |
+
msgstr "خطر! بازنشانی، تنظیمات پیشفرض را از هستهی وردپرس بازمیگرداند."
|
220 |
+
|
221 |
+
#: ../includes/class-user-role-editor.php:851
|
222 |
+
msgid ""
|
223 |
+
"If any plugins have changed capabilities in any way upon installation (such "
|
224 |
+
"as S2Member, WooCommerce, and many more), those capabilities will be DELETED!"
|
225 |
+
msgstr ""
|
226 |
+
"اگر هریک از افزونهها پس از نصب به هر نحو قابلیتها را تغییر دهند (مانند "
|
227 |
+
"S2Member ، WooCommerce و بسیاری دیگر) آن قابلیتها حذف خواهند شد!"
|
228 |
+
|
229 |
+
#: ../includes/class-user-role-editor.php:852
|
230 |
+
msgid ""
|
231 |
+
"For more information on how to undo changes and restore plugin capabilities "
|
232 |
+
"go to"
|
233 |
+
msgstr ""
|
234 |
+
"برای کسب اطلاعات بیشتر درباره چگونگی خنثیسازی تغییرات و ترمیمکردن قابلیت ها "
|
235 |
+
"مراجعه کنید به"
|
236 |
+
|
237 |
+
#: ../includes/class-user-role-editor.php:854
|
238 |
+
msgid "Continue?"
|
239 |
+
msgstr "ادامه؟"
|
240 |
+
|
241 |
+
#: ../includes/class-user-role-editor.php:855
|
242 |
+
msgid "Default Role"
|
243 |
+
msgstr "نقش پیشفرض"
|
244 |
+
|
245 |
+
#: ../includes/class-user-role-editor.php:856
|
246 |
+
msgid "Set New Default Role"
|
247 |
+
msgstr "نشاندن نقش پیشفرض جدید"
|
248 |
+
|
249 |
+
#: ../includes/class-user-role-editor.php:858
|
250 |
+
msgid ""
|
251 |
+
"Warning! Be careful - removing critical capability could crash some plugin "
|
252 |
+
"or other custom code"
|
253 |
+
msgstr ""
|
254 |
+
"اخطار! مراقب باشید - حذف قابلیت مهم میتواند برخی از افزونهها یا دیگر کدهای "
|
255 |
+
"سفارشی را دچار سانحه کند"
|
256 |
+
|
257 |
+
#: ../includes/class-user-role-editor.php:859
|
258 |
+
msgid " Capability name (ID) can not be empty!"
|
259 |
+
msgstr " نام قابلیت (شناسه) نمی تواند خالی باشد!"
|
260 |
+
|
261 |
+
#: ../includes/class-user-role-editor.php:860
|
262 |
+
msgid ""
|
263 |
+
" Capability name (ID) must contain latin characters, digits, hyphens or "
|
264 |
+
"underscore only!"
|
265 |
+
msgstr ""
|
266 |
+
" نام قابلیت (شناسه) باید فقط شامل حروف لاتین، اعداد، خط فاصله یا زیرخط باشد!"
|
267 |
+
|
268 |
+
#: ../includes/class-user-role-editor.php:893
|
269 |
+
#: ../includes/class-user-role-editor.php:922
|
270 |
+
msgid "Other Roles"
|
271 |
+
msgstr "دیگر نقشها"
|
272 |
+
|
273 |
+
#: ../includes/class-user-role-editor.php:904
|
274 |
+
msgid "Edit"
|
275 |
+
msgstr "ویرایش"
|
276 |
+
|
277 |
+
#: ../includes/ure-role-edit.php:17
|
278 |
+
msgid "Select Role and change its capabilities:"
|
279 |
+
msgstr "انتخاب نقش و تغییر قابلیتهای آن:"
|
280 |
+
|
281 |
+
#: ../includes/ure-role-edit.php:30 ../includes/ure-user-edit.php:53
|
282 |
+
msgid "Show capabilities in human readable form"
|
283 |
+
msgstr "نمایش قابلیتها در حالت قابل خواندن برای انسان"
|
284 |
+
|
285 |
+
#: ../includes/ure-role-edit.php:44
|
286 |
+
msgid "If checked, then apply action to ALL sites of this Network"
|
287 |
+
msgstr "در صورت انتخاب، این عمل به تمامی سایتهای شبکه اعمال میشود"
|
288 |
+
|
289 |
+
#: ../includes/ure-role-edit.php:56
|
290 |
+
msgid "Apply to All Sites"
|
291 |
+
msgstr "اعمال به تمامی سایتها"
|
292 |
+
|
293 |
+
#: ../includes/ure-role-edit.php:63 ../includes/ure-user-edit.php:109
|
294 |
+
msgid "Core capabilities:"
|
295 |
+
msgstr "قابلیتهای هسته:"
|
296 |
+
|
297 |
+
#: ../includes/ure-role-edit.php:65 ../includes/ure-user-edit.php:111
|
298 |
+
msgid "Quick filter:"
|
299 |
+
msgstr "فیلتر سریع:"
|
300 |
+
|
301 |
+
#: ../includes/ure-role-edit.php:83 ../includes/ure-user-edit.php:130
|
302 |
+
msgid "Custom capabilities:"
|
303 |
+
msgstr "قابلیتهای سفارشی:"
|
304 |
+
|
305 |
#: ../includes/class-ure-lib.php:143
|
306 |
msgid "Error: wrong request"
|
307 |
msgstr "خطا: درخواست اشتباه"
|
330 |
msgid "Capability name (ID): "
|
331 |
msgstr "نام قابلیت (شناسه): "
|
332 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
333 |
#: ../includes/class-ure-lib.php:322
|
334 |
msgid "Error: "
|
335 |
msgstr "خطا: "
|
366 |
msgid "User Roles are restored to WordPress default values. "
|
367 |
msgstr "نقشهای کاربر به مقدار پیشفرض وردپرس ترمیم شد."
|
368 |
|
369 |
+
#: ../includes/class-ure-lib.php:1312
|
370 |
msgid "Help"
|
371 |
msgstr "راهنما"
|
372 |
|
373 |
+
#: ../includes/class-ure-lib.php:1662
|
374 |
msgid "Error is occur. Please check the log file."
|
375 |
msgstr "خطایی رخ داده است. لطفا فایل گزارش را چک کنید."
|
376 |
|
377 |
+
#: ../includes/class-ure-lib.php:1705
|
378 |
+
msgid ""
|
379 |
+
"Error: Role ID must contain latin characters, digits, hyphens or underscore "
|
380 |
+
"only!"
|
381 |
+
msgstr ""
|
382 |
+
"خطا: شناسهی نقش باید فقط شامل حروف لاتین، اعداد، خط فاصله یا زیرخط باشد!"
|
383 |
|
384 |
+
#: ../includes/class-ure-lib.php:1709
|
385 |
+
msgid ""
|
386 |
+
"Error: WordPress does not support numeric Role name (ID). Add latin "
|
387 |
+
"characters to it."
|
388 |
+
msgstr ""
|
389 |
+
"خطا: وردپرس از نام نقش (شناسه) عددی پشتیبانی نمیکند. حروف لاتین به آن اضافه "
|
390 |
+
"کنید."
|
391 |
|
392 |
+
#: ../includes/class-ure-lib.php:1724
|
393 |
#, php-format
|
394 |
msgid "Role %s exists already"
|
395 |
msgstr "نقش %s از پیش موجود است"
|
396 |
|
397 |
+
#: ../includes/class-ure-lib.php:1739
|
398 |
msgid "Error is encountered during new role create operation"
|
399 |
msgstr "با خطایی در هنگام عملیات ساخت نقش جدید روبرو شدیم"
|
400 |
|
401 |
+
#: ../includes/class-ure-lib.php:1741
|
402 |
#, php-format
|
403 |
msgid "Role %s is created successfully"
|
404 |
msgstr "نقش %s با موفقیت ایجاد شد"
|
405 |
|
406 |
+
#: ../includes/class-ure-lib.php:1810
|
407 |
msgid "Error encountered during role delete operation"
|
408 |
msgstr "با خطایی در هنگام عملیات حذف نقش روبرو شدیم"
|
409 |
|
410 |
+
#: ../includes/class-ure-lib.php:1812
|
411 |
msgid "Unused roles are deleted successfully"
|
412 |
msgstr "نقشهای استفاده نشده با موفقیت حذف شدند"
|
413 |
|
414 |
+
#: ../includes/class-ure-lib.php:1814
|
415 |
#, php-format
|
416 |
msgid "Role %s is deleted successfully"
|
417 |
msgstr "نقش %s با موفقیت حذف شد"
|
418 |
|
419 |
+
#: ../includes/class-ure-lib.php:1839
|
420 |
msgid "Error encountered during default role change operation"
|
421 |
msgstr "با خطایی در هنگام عملیات تغییر نقش پیشفرض روبرو شدیم"
|
422 |
|
423 |
+
#: ../includes/class-ure-lib.php:1845
|
424 |
#, php-format
|
425 |
msgid "Default role for new users is set to %s successfully"
|
426 |
msgstr "نقش پیشفرض برای کاربران جدید با موفقیت روی %s نشانده شد"
|
427 |
|
428 |
+
#: ../includes/class-ure-lib.php:1864
|
429 |
msgid "Editor"
|
430 |
msgstr "ویرایشگر"
|
431 |
|
432 |
+
#: ../includes/class-ure-lib.php:1865
|
433 |
msgid "Author"
|
434 |
msgstr "نویسنده"
|
435 |
|
436 |
+
#: ../includes/class-ure-lib.php:1866
|
437 |
msgid "Contributor"
|
438 |
msgstr "مشارکتکننده"
|
439 |
|
440 |
+
#: ../includes/class-ure-lib.php:1867
|
441 |
msgid "Subscriber"
|
442 |
msgstr "مشترک"
|
443 |
|
444 |
+
#: ../includes/class-ure-lib.php:1869
|
445 |
msgid "Switch themes"
|
446 |
msgstr "تغییر پوستهها"
|
447 |
|
448 |
+
#: ../includes/class-ure-lib.php:1870
|
449 |
msgid "Edit themes"
|
450 |
msgstr "ویرایش پوستهها"
|
451 |
|
452 |
+
#: ../includes/class-ure-lib.php:1871
|
453 |
msgid "Activate plugins"
|
454 |
msgstr "فعالسازی افزونهها"
|
455 |
|
456 |
+
#: ../includes/class-ure-lib.php:1872
|
457 |
msgid "Edit plugins"
|
458 |
msgstr "ویرایش افزونهها"
|
459 |
|
460 |
+
#: ../includes/class-ure-lib.php:1873
|
461 |
msgid "Edit users"
|
462 |
msgstr "ویرایش کاربران"
|
463 |
|
464 |
+
#: ../includes/class-ure-lib.php:1874
|
465 |
msgid "Edit files"
|
466 |
msgstr "ویرایش فایلها"
|
467 |
|
468 |
+
#: ../includes/class-ure-lib.php:1875
|
469 |
msgid "Manage options"
|
470 |
msgstr "مدیریت تنظیمات"
|
471 |
|
472 |
+
#: ../includes/class-ure-lib.php:1876
|
473 |
msgid "Moderate comments"
|
474 |
msgstr "مدیریت دیدگاهها"
|
475 |
|
476 |
+
#: ../includes/class-ure-lib.php:1877
|
477 |
msgid "Manage categories"
|
478 |
msgstr "مدیریت دستهها"
|
479 |
|
480 |
+
#: ../includes/class-ure-lib.php:1878
|
481 |
msgid "Manage links"
|
482 |
msgstr "مدیریت پیوندها"
|
483 |
|
484 |
+
#: ../includes/class-ure-lib.php:1879
|
485 |
msgid "Upload files"
|
486 |
msgstr "بارگذاری فایلها"
|
487 |
|
488 |
+
#: ../includes/class-ure-lib.php:1880
|
489 |
msgid "Import"
|
490 |
msgstr "درونریزی"
|
491 |
|
492 |
+
#: ../includes/class-ure-lib.php:1881
|
493 |
msgid "Unfiltered html"
|
494 |
msgstr "اچتیامال فیلترنشده"
|
495 |
|
496 |
+
#: ../includes/class-ure-lib.php:1882
|
497 |
msgid "Edit posts"
|
498 |
msgstr "ویرایش نوشتهها"
|
499 |
|
500 |
+
#: ../includes/class-ure-lib.php:1883
|
501 |
msgid "Edit others posts"
|
502 |
msgstr "ویرایش نوشتهی دیگران"
|
503 |
|
504 |
+
#: ../includes/class-ure-lib.php:1884
|
505 |
msgid "Edit published posts"
|
506 |
msgstr "ویرایش نوشتههای منتشرشده"
|
507 |
|
508 |
+
#: ../includes/class-ure-lib.php:1885
|
509 |
msgid "Publish posts"
|
510 |
msgstr "انتشار نوشتهها"
|
511 |
|
512 |
+
#: ../includes/class-ure-lib.php:1886
|
513 |
msgid "Edit pages"
|
514 |
msgstr "ویرایش صفحات"
|
515 |
|
516 |
+
#: ../includes/class-ure-lib.php:1887
|
517 |
msgid "Read"
|
518 |
msgstr "خواندن"
|
519 |
|
520 |
+
#: ../includes/class-ure-lib.php:1888
|
521 |
msgid "Level 10"
|
522 |
msgstr "سطح ۱۰"
|
523 |
|
524 |
+
#: ../includes/class-ure-lib.php:1889
|
525 |
msgid "Level 9"
|
526 |
msgstr "سطح ۹"
|
527 |
|
528 |
+
#: ../includes/class-ure-lib.php:1890
|
529 |
msgid "Level 8"
|
530 |
msgstr "سطح ۸"
|
531 |
|
532 |
+
#: ../includes/class-ure-lib.php:1891
|
533 |
msgid "Level 7"
|
534 |
msgstr "سطح ۷"
|
535 |
|
536 |
+
#: ../includes/class-ure-lib.php:1892
|
537 |
msgid "Level 6"
|
538 |
msgstr "سطح ۶"
|
539 |
|
540 |
+
#: ../includes/class-ure-lib.php:1893
|
541 |
msgid "Level 5"
|
542 |
msgstr "سطح ۵"
|
543 |
|
544 |
+
#: ../includes/class-ure-lib.php:1894
|
545 |
msgid "Level 4"
|
546 |
msgstr "سطح ۴"
|
547 |
|
548 |
+
#: ../includes/class-ure-lib.php:1895
|
549 |
msgid "Level 3"
|
550 |
msgstr "سطح ۳"
|
551 |
|
552 |
+
#: ../includes/class-ure-lib.php:1896
|
553 |
msgid "Level 2"
|
554 |
msgstr "سطح ۲"
|
555 |
|
556 |
+
#: ../includes/class-ure-lib.php:1897
|
557 |
msgid "Level 1"
|
558 |
msgstr "سطح ۱"
|
559 |
|
560 |
+
#: ../includes/class-ure-lib.php:1898
|
561 |
msgid "Level 0"
|
562 |
msgstr "سطح ۰"
|
563 |
|
564 |
+
#: ../includes/class-ure-lib.php:1899
|
565 |
msgid "Edit others pages"
|
566 |
msgstr "ویرایش صفحات دیگران"
|
567 |
|
568 |
+
#: ../includes/class-ure-lib.php:1900
|
569 |
+
msgid "Edit published pages"
|
570 |
+
msgstr "ویرایش صفحات منتشرشده"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
571 |
|
572 |
+
#: ../includes/class-ure-lib.php:1901
|
573 |
+
msgid "Publish pages"
|
574 |
+
msgstr "انتشار صفحات"
|
575 |
|
576 |
+
#: ../includes/class-ure-lib.php:1902
|
577 |
+
msgid "Delete pages"
|
578 |
+
msgstr "حذف صفحات"
|
579 |
|
580 |
+
#: ../includes/class-ure-lib.php:1903
|
581 |
+
msgid "Delete others pages"
|
582 |
+
msgstr "حذف صفحات دیگران"
|
583 |
|
584 |
+
#: ../includes/class-ure-lib.php:1904
|
585 |
+
msgid "Delete published pages"
|
586 |
+
msgstr "حذف صفحات منتشرشده"
|
587 |
|
588 |
+
#: ../includes/class-ure-lib.php:1905
|
589 |
+
msgid "Delete posts"
|
590 |
+
msgstr "حذف صفحات"
|
591 |
|
592 |
+
#: ../includes/class-ure-lib.php:1906
|
593 |
+
msgid "Delete others posts"
|
594 |
+
msgstr "حذف نوشتههای دیگران"
|
595 |
|
596 |
+
#: ../includes/class-ure-lib.php:1907
|
597 |
+
msgid "Delete published posts"
|
598 |
+
msgstr "حذف نوشتههای منتشرشده"
|
599 |
|
600 |
+
#: ../includes/class-ure-lib.php:1908
|
601 |
+
msgid "Delete private posts"
|
602 |
+
msgstr "حذف نوشتههای خصوصی"
|
603 |
|
604 |
+
#: ../includes/class-ure-lib.php:1909
|
605 |
+
msgid "Edit private posts"
|
606 |
+
msgstr "ویرایش نوشتههای خصوصی"
|
607 |
|
608 |
+
#: ../includes/class-ure-lib.php:1910
|
609 |
+
msgid "Read private posts"
|
610 |
+
msgstr "خواندن نوشتههای خصوصی"
|
611 |
|
612 |
+
#: ../includes/class-ure-lib.php:1911
|
613 |
+
msgid "Delete private pages"
|
614 |
+
msgstr "حذف صفحات خصوصی"
|
615 |
|
616 |
+
#: ../includes/class-ure-lib.php:1912
|
617 |
+
msgid "Edit private pages"
|
618 |
+
msgstr "ویرایش صفحات خصوصی"
|
|
|
619 |
|
620 |
+
#: ../includes/class-ure-lib.php:1913
|
621 |
+
msgid "Read private pages"
|
622 |
+
msgstr "خواندن صفحات خصوصی"
|
623 |
|
624 |
+
#: ../includes/class-ure-lib.php:1914
|
625 |
+
msgid "Delete users"
|
626 |
+
msgstr "حذف کاربران"
|
627 |
|
628 |
+
#: ../includes/class-ure-lib.php:1915
|
629 |
+
msgid "Create users"
|
630 |
+
msgstr "ایجاد کاربران"
|
631 |
|
632 |
+
#: ../includes/class-ure-lib.php:1916
|
633 |
+
msgid "Unfiltered upload"
|
634 |
+
msgstr "بارگذاری فیلترشده"
|
635 |
|
636 |
+
#: ../includes/class-ure-lib.php:1917
|
637 |
+
msgid "Edit dashboard"
|
638 |
+
msgstr "ویرایش پیشخوان"
|
639 |
|
640 |
+
#: ../includes/class-ure-lib.php:1918
|
641 |
+
msgid "Update plugins"
|
642 |
+
msgstr "بروزرسانی افزونهها"
|
643 |
|
644 |
+
#: ../includes/class-ure-lib.php:1919
|
645 |
+
msgid "Delete plugins"
|
646 |
+
msgstr "حذف افزونهها"
|
647 |
|
648 |
+
#: ../includes/class-ure-lib.php:1920
|
649 |
+
msgid "Install plugins"
|
650 |
+
msgstr "نصب افزونهها"
|
651 |
|
652 |
+
#: ../includes/class-ure-lib.php:1921
|
653 |
+
msgid "Update themes"
|
654 |
+
msgstr "بروزرسانی پوستهها"
|
655 |
|
656 |
+
#: ../includes/class-ure-lib.php:1922
|
657 |
+
msgid "Install themes"
|
658 |
+
msgstr "نصب پوستهها"
|
659 |
|
660 |
+
#: ../includes/class-ure-lib.php:1923
|
661 |
+
msgid "Update core"
|
662 |
+
msgstr "بروزرسانی هسته"
|
|
|
663 |
|
664 |
+
#: ../includes/class-ure-lib.php:1924
|
665 |
+
msgid "List users"
|
666 |
+
msgstr "فهرست کاربران"
|
667 |
|
668 |
+
#: ../includes/class-ure-lib.php:1925
|
669 |
+
msgid "Remove users"
|
670 |
+
msgstr "حذف کابران"
|
671 |
|
672 |
+
#: ../includes/class-ure-lib.php:1926
|
673 |
+
msgid "Add users"
|
674 |
+
msgstr "افزودن کاربران"
|
675 |
|
676 |
+
#: ../includes/class-ure-lib.php:1927
|
677 |
+
msgid "Promote users"
|
678 |
+
msgstr "ارتقاء کاربران"
|
679 |
|
680 |
+
#: ../includes/class-ure-lib.php:1928
|
681 |
+
msgid "Edit theme options"
|
682 |
+
msgstr "ویرایش تنظیمات پوسته"
|
683 |
|
684 |
+
#: ../includes/class-ure-lib.php:1929
|
685 |
+
msgid "Delete themes"
|
686 |
+
msgstr "حذف پوستهها"
|
687 |
|
688 |
+
#: ../includes/class-ure-lib.php:1930
|
689 |
+
msgid "Export"
|
690 |
+
msgstr "برونریزی"
|
691 |
|
692 |
+
#: ../includes/class-ure-lib.php:2040
|
693 |
+
msgid "Error: Capability name must contain latin characters and digits only!"
|
694 |
+
msgstr "خطا: نام قابلیت باید فقط شامل حروف لاتین و اعداد باشد!"
|
|
|
|
|
|
|
695 |
|
696 |
+
#: ../includes/class-ure-lib.php:2053
|
697 |
+
#, php-format
|
698 |
+
msgid "Capability %s is added successfully"
|
699 |
+
msgstr "قابلیت %s با موفقیت افزوده شد"
|
700 |
|
701 |
+
#: ../includes/class-ure-lib.php:2055
|
702 |
+
#, php-format
|
703 |
+
msgid "Capability %s exists already"
|
704 |
+
msgstr "قابلیت %s از پیش موجود است"
|
705 |
|
706 |
+
#: ../includes/class-ure-lib.php:2080
|
707 |
+
#, php-format
|
708 |
+
msgid "Error! You do not have permission to delete this capability: %s!"
|
709 |
+
msgstr "خطا! شما اجازهی حذف این قابلیت را ندارید: %s!"
|
710 |
|
711 |
+
#: ../includes/class-ure-lib.php:2099
|
712 |
+
#, php-format
|
713 |
+
msgid "Capability %s is removed successfully"
|
714 |
+
msgstr "قابلیت %s با موفقیت حذف شد"
|
715 |
|
716 |
+
#: ../includes/class-ure-lib.php:2203
|
717 |
+
msgid "Version:"
|
718 |
+
msgstr ""
|
719 |
|
720 |
+
#: ../includes/class-ure-lib.php:2204
|
721 |
+
msgid "Author's website"
|
722 |
+
msgstr "وبگاه نویسنده"
|
723 |
|
724 |
+
#: ../includes/class-ure-lib.php:2205
|
725 |
+
msgid "Plugin webpage"
|
726 |
+
msgstr "صفحه افزونه"
|
|
|
727 |
|
728 |
+
#: ../includes/class-ure-lib.php:2206
|
729 |
+
msgid "Plugin download"
|
730 |
+
msgstr "بارگیری افزونه"
|
731 |
|
732 |
+
#: ../includes/class-ure-lib.php:2208
|
733 |
+
msgid "FAQ"
|
734 |
+
msgstr "سوالات مکرر"
|
735 |
|
736 |
+
#: ../includes/class-ure-lib.php:2256
|
737 |
+
msgid "None"
|
738 |
+
msgstr "هیچکدام"
|
|
|
739 |
|
740 |
+
#: ../includes/class-ure-lib.php:2283
|
741 |
+
msgid "Delete All Unused Roles"
|
742 |
+
msgstr "حذف همهی نقشهای استفادهنشده"
|
|
|
743 |
|
744 |
+
#: ../includes/class-ure-lib.php:2307
|
745 |
+
msgid "— No role for this site —"
|
746 |
+
msgstr "— هیچ نقشی برای این سایت —"
|
|
|
747 |
|
748 |
#: ../includes/ure-user-edit.php:31
|
749 |
msgid "Network Super Admin"
|
765 |
msgid "Other Roles:"
|
766 |
msgstr "دیگر نقشها:"
|
767 |
|
768 |
+
#: ../includes/class-ure-screen-help.php:16
|
769 |
+
msgid ""
|
770 |
+
"turn this option on in order to make the \"Administrator\" role available at "
|
771 |
+
"the User Role Editor roles selection drop-down list. It is hidden by default "
|
772 |
+
"for security reasons."
|
773 |
+
msgstr ""
|
774 |
+
"روشن کردن این گزینه به منظور قابل دسترس شدن نقش \"مدیر\" در فهرست کشویی "
|
775 |
+
"ویرایشگر نقش کاربر میباشد. این امکان به صورت پیشفرض به دلیل مسائل امنیتی "
|
776 |
+
"مخفی میباشد."
|
777 |
+
|
778 |
+
#: ../includes/class-ure-screen-help.php:19
|
779 |
+
msgid ""
|
780 |
+
"automatically converts capability names from the technical form for internal "
|
781 |
+
"use like \"edit_others_posts\" to more user friendly form, e.g. \"Edit "
|
782 |
+
"others posts\"."
|
783 |
+
msgstr ""
|
784 |
+
"به طور خودکار نام قابلیتها را از حالت فنی به منظور استفادههای داخلی تبدیل "
|
785 |
+
"میکند. مانند \"edit_others_posts\" به حالت کاربر پسندتر، مثلا \"ویرایش "
|
786 |
+
"نوشتههای دیگران\"."
|
787 |
+
|
788 |
+
#: ../includes/class-ure-screen-help.php:22
|
789 |
+
msgid ""
|
790 |
+
"Capabilities like \"level_0\", \"level_1\" are deprecated and are not used "
|
791 |
+
"by WordPress. They are left at the user roles for the compatibility purpose "
|
792 |
+
"with the old themes and plugins code. Turning on this option will show those "
|
793 |
+
"deprecated capabilities."
|
794 |
+
msgstr ""
|
795 |
+
"قابلیتهایی شبیه \"سطح ۰\"، \"سطح ۱\" بد دانسته شدهاند و توسط وردپرس استفاده "
|
796 |
+
"نمیشوند. این قابلیتها در نقشهای کاربران به منظور سازگاری با پوستههای قدیمی و "
|
797 |
+
"کد افزونهها باقی گذاشته شدهاند. روشن کردن این گزینه، آن قابلیتهای بد دانسته "
|
798 |
+
"شده را نمایش میدهد."
|
799 |
+
|
800 |
+
#: ../includes/class-ure-screen-help.php:27
|
801 |
+
msgid "Allow create, edit and delete users to not super-admininstrators"
|
802 |
+
msgstr "اجازهی ایجاد، ویرایش و حذف کاربران به غیر مدیران اصلی"
|
803 |
+
|
804 |
+
#: ../includes/class-ure-screen-help.php:28
|
805 |
+
msgid ""
|
806 |
+
"Super administrator only may create, edit and delete users under WordPress "
|
807 |
+
"multi-site. Turn this option on in order to remove this limitation."
|
808 |
+
msgstr ""
|
809 |
+
"در وردپرس چند سایتی تنها مدیران اصلی اجازهی ایجاد، ویرایش و حذف کاربران را "
|
810 |
+
"دارند. این "
|
lang/ure-he_IL.mo
CHANGED
Binary file
|
lang/ure-he_IL.po
CHANGED
@@ -5,7 +5,7 @@ msgid ""
|
|
5 |
msgstr ""
|
6 |
"Project-Id-Version: User Role Editor\n"
|
7 |
"Report-Msgid-Bugs-To: \n"
|
8 |
-
"POT-Creation-Date: 2014-
|
9 |
"PO-Revision-Date: \n"
|
10 |
"Last-Translator: Vladimir Garagulya <vladimir@shinephp.com>\n"
|
11 |
"Language-Team: Ahrale, Atar4U.com <contact@atar4u.com>\n"
|
@@ -16,22 +16,99 @@ msgstr ""
|
|
16 |
"X-Generator: Poedit 1.5.4\n"
|
17 |
"X-Poedit-SourceCharset: UTF-8\n"
|
18 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
19 |
# <p class="submit">
|
20 |
# <input type="submit" class="button-primary" name="user_role_editor_settings_update" value="<?php _e('Save', 'ure') ?>" />
|
21 |
# </p>
|
22 |
# wpml-name: c9cc8cce247e49bae79f15173ce97354
|
23 |
-
#: ../includes/settings-template.php:
|
24 |
-
#: ../includes/settings-template.php:
|
25 |
msgid "Save"
|
26 |
msgstr "שמירה"
|
27 |
|
28 |
-
#: ../includes/settings-template.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
29 |
msgid ""
|
30 |
"Note for multisite environment: take into account that other default roles "
|
31 |
"should exist at the site, in order to be assigned to the new registered "
|
32 |
"users."
|
33 |
msgstr ""
|
34 |
|
|
|
|
|
|
|
|
|
35 |
#: ../includes/class-user-role-editor.php:185
|
36 |
msgid "Change role for users without role"
|
37 |
msgstr ""
|
@@ -74,7 +151,7 @@ msgstr "הגדרות"
|
|
74 |
# }
|
75 |
# wpml-name: c49182dc0c7a70b9cd2e10853d9ec6c7
|
76 |
#: ../includes/class-user-role-editor.php:520
|
77 |
-
#: ../includes/class-ure-lib.php:
|
78 |
msgid "Changelog"
|
79 |
msgstr "יומן שינויים"
|
80 |
|
@@ -88,7 +165,7 @@ msgstr ""
|
|
88 |
# wpml-name: c26ad3b67c7211a5872194d68cb5a8eb
|
89 |
#: ../includes/class-user-role-editor.php:551
|
90 |
#: ../includes/class-user-role-editor.php:579
|
91 |
-
#: ../includes/class-user-role-editor.php:
|
92 |
#: ../includes/class-ure-lib.php:225
|
93 |
msgid "User Role Editor"
|
94 |
msgstr "User Role Editor"
|
@@ -97,8 +174,9 @@ msgstr "User Role Editor"
|
|
97 |
# $this->lib->show_message(__('User Role Editor options are updated', 'ure'));
|
98 |
# } else { // get options from the options storage
|
99 |
# wpml-name: aef323fbbd25d577170fff17c15cf857
|
100 |
-
#: ../includes/class-user-role-editor.php:
|
101 |
-
#: ../includes/class-user-role-editor.php:
|
|
|
102 |
msgid "User Role Editor options are updated"
|
103 |
msgstr "אפשרויות עורך תפקיד משתמש עודכנו"
|
104 |
|
@@ -106,18 +184,18 @@ msgstr "אפשרויות עורך תפקיד משתמש עודכנו"
|
|
106 |
# 'default_role' => __('Default Role', 'ure'),
|
107 |
# 'set_new_default_role' => __('Set New Default Role', 'ure'),
|
108 |
# wpml-name: db135301eaf77a955b2b016f9b9d6a99
|
109 |
-
#: ../includes/class-user-role-editor.php:
|
110 |
#, fuzzy
|
111 |
msgid "Default Roles are updated"
|
112 |
msgstr "תפקיד ברירת מחדל"
|
113 |
|
114 |
-
#: ../includes/class-user-role-editor.php:
|
115 |
msgid ""
|
116 |
"You do not have sufficient permissions to manage options for User Role "
|
117 |
"Editor."
|
118 |
msgstr ""
|
119 |
|
120 |
-
#: ../includes/class-user-role-editor.php:
|
121 |
msgid "Insufficient permissions to work with User Role Editor"
|
122 |
msgstr ""
|
123 |
|
@@ -125,7 +203,7 @@ msgstr ""
|
|
125 |
# 'select_all' => __('Select All', 'ure'),
|
126 |
# 'unselect_all' => __('Unselect All', 'ure'),
|
127 |
# wpml-name: 45e96c0a422ce8a1a6ec1bd5eb9625c6
|
128 |
-
#: ../includes/class-user-role-editor.php:
|
129 |
msgid "Select All"
|
130 |
msgstr "בחירת הכל"
|
131 |
|
@@ -133,7 +211,7 @@ msgstr "בחירת הכל"
|
|
133 |
# 'unselect_all' => __('Unselect All', 'ure'),
|
134 |
# 'reverse' => __('Reverse', 'ure'),
|
135 |
# wpml-name: 016269c0d83a19a19a2ee0a4294740b4
|
136 |
-
#: ../includes/class-user-role-editor.php:
|
137 |
msgid "Unselect All"
|
138 |
msgstr "לא לבחור שום דבר"
|
139 |
|
@@ -141,7 +219,7 @@ msgstr "לא לבחור שום דבר"
|
|
141 |
# 'reverse' => __('Reverse', 'ure'),
|
142 |
# 'update' => __('Update', 'ure'),
|
143 |
# wpml-name: 67f115c1fddc4ce1aeb1c754001585bc
|
144 |
-
#: ../includes/class-user-role-editor.php:
|
145 |
msgid "Reverse"
|
146 |
msgstr "להפוך"
|
147 |
|
@@ -149,7 +227,7 @@ msgstr "להפוך"
|
|
149 |
# 'update' => __('Update', 'ure'),
|
150 |
# 'confirm_submit' => __('Please confirm permissions update', 'ure'),
|
151 |
# wpml-name: 06933067aafd48425d67bcb01bba5cb6
|
152 |
-
#: ../includes/class-user-role-editor.php:
|
153 |
msgid "Update"
|
154 |
msgstr "עדכן"
|
155 |
|
@@ -157,7 +235,7 @@ msgstr "עדכן"
|
|
157 |
# 'confirm_submit' => __('Please confirm permissions update', 'ure'),
|
158 |
# 'add_new_role_title' => __('Add New Role', 'ure'),
|
159 |
# wpml-name: 85251872440cc94c6080a90451e018c4
|
160 |
-
#: ../includes/class-user-role-editor.php:
|
161 |
msgid "Please confirm permissions update"
|
162 |
msgstr "נא לאשר את עדכון ההרשאות"
|
163 |
|
@@ -165,7 +243,7 @@ msgstr "נא לאשר את עדכון ההרשאות"
|
|
165 |
# 'add_new_role_title' => __('Add New Role', 'ure'),
|
166 |
# 'role_name_required' => __(' Role name (ID) can not be empty!', 'ure'),
|
167 |
# wpml-name: cf46e7fb1093a47a76f35fc61ab5d432
|
168 |
-
#: ../includes/class-user-role-editor.php:
|
169 |
msgid "Add New Role"
|
170 |
msgstr "הוסף סוג משתמש חדש"
|
171 |
|
@@ -173,7 +251,7 @@ msgstr "הוסף סוג משתמש חדש"
|
|
173 |
# 'role_name_required' => __(' Role name (ID) can not be empty!', 'ure'),
|
174 |
# 'role_name_valid_chars' => __(' Role name (ID) must contain latin characters, digits, hyphens or underscore only!', 'ure'),
|
175 |
# wpml-name: 1400ecabfd5a7c9527f71723da18dad0
|
176 |
-
#: ../includes/class-user-role-editor.php:
|
177 |
msgid " Role name (ID) can not be empty!"
|
178 |
msgstr " שם התפקיד (מזהה) אינו יכול להישאר ריק!"
|
179 |
|
@@ -181,14 +259,14 @@ msgstr " שם התפקיד (מזהה) אינו יכול להישאר ריק!"
|
|
181 |
# 'role_name_valid_chars' => __(' Role name (ID) must contain latin characters, digits, hyphens or underscore only!', 'ure'),
|
182 |
# 'add_role' => __('Add Role', 'ure'),
|
183 |
# wpml-name: 7b94f04285f5efc287652bd40338e730
|
184 |
-
#: ../includes/class-user-role-editor.php:
|
185 |
msgid ""
|
186 |
" Role name (ID) must contain latin characters, digits, hyphens or underscore "
|
187 |
"only!"
|
188 |
msgstr ""
|
189 |
" שם התפקיד (מזהה) חייב להכיל אותיות לטיניות, ספרות, מקפים או קו תחתון בלבד!"
|
190 |
|
191 |
-
#: ../includes/class-user-role-editor.php:
|
192 |
msgid ""
|
193 |
" WordPress does not support numeric Role name (ID). Add latin characters to "
|
194 |
"it."
|
@@ -198,7 +276,7 @@ msgstr ""
|
|
198 |
# 'add_role' => __('Add Role', 'ure'),
|
199 |
# 'delete_role' => __('Delete Role', 'ure'),
|
200 |
# wpml-name: 1453b39dcc15a372640d960c6db7db25
|
201 |
-
#: ../includes/class-user-role-editor.php:
|
202 |
msgid "Add Role"
|
203 |
msgstr "הוספת תפקיד"
|
204 |
|
@@ -206,7 +284,7 @@ msgstr "הוספת תפקיד"
|
|
206 |
# 'delete_role' => __('Delete Role', 'ure'),
|
207 |
# 'cancel' => __('Cancel', 'ure'),
|
208 |
# wpml-name: 4e2626418b461869a386850b0f3b437f
|
209 |
-
#: ../includes/class-user-role-editor.php:
|
210 |
msgid "Delete Role"
|
211 |
msgstr "מחיקת סוג משתמש"
|
212 |
|
@@ -214,7 +292,7 @@ msgstr "מחיקת סוג משתמש"
|
|
214 |
# 'cancel' => __('Cancel', 'ure'),
|
215 |
# 'add_capability' => __('Add Capability', 'ure'),
|
216 |
# wpml-name: ea4788705e6873b424c65e91c2846b19
|
217 |
-
#: ../includes/class-user-role-editor.php:
|
218 |
msgid "Cancel"
|
219 |
msgstr "ביטול"
|
220 |
|
@@ -222,7 +300,7 @@ msgstr "ביטול"
|
|
222 |
# 'add_capability' => __('Add Capability', 'ure'),
|
223 |
# 'delete_capability' => __('Delete Capability', 'ure'),
|
224 |
# wpml-name: 39cc0b416ba0d26679547346b8c5cf8d
|
225 |
-
#: ../includes/class-user-role-editor.php:
|
226 |
msgid "Add Capability"
|
227 |
msgstr "הוספת יכולת"
|
228 |
|
@@ -230,8 +308,8 @@ msgstr "הוספת יכולת"
|
|
230 |
# 'delete_capability' => __('Delete Capability', 'ure'),
|
231 |
# 'delete_capability_warning' => __('Warning! Be careful - removing critical capability could crash some plugin or other custom code', 'ure'),
|
232 |
# wpml-name: 06844dd4ec4b29fa8a354aaacbd4861a
|
233 |
-
#: ../includes/class-user-role-editor.php:
|
234 |
-
#: ../includes/class-user-role-editor.php:
|
235 |
msgid "Delete Capability"
|
236 |
msgstr "מחיקת יכולת"
|
237 |
|
@@ -239,21 +317,21 @@ msgstr "מחיקת יכולת"
|
|
239 |
# 'reset' => __('Reset', 'ure'),
|
240 |
# 'reset_warning' => __('Reset Roles to WordPress defaults. Be careful, all changes made by you or plugins will be lost. Some plugins, e.g. S2Member, WooCommerce reactivation could be needed. Continue?', 'ure'),
|
241 |
# wpml-name: 526d688f37a86d3c3f27d0c5016eb71d
|
242 |
-
#: ../includes/class-user-role-editor.php:
|
243 |
msgid "Reset"
|
244 |
msgstr "איפוס"
|
245 |
|
246 |
-
#: ../includes/class-user-role-editor.php:
|
247 |
msgid "DANGER! Resetting will restore default settings from WordPress Core."
|
248 |
msgstr ""
|
249 |
|
250 |
-
#: ../includes/class-user-role-editor.php:
|
251 |
msgid ""
|
252 |
"If any plugins have changed capabilities in any way upon installation (such "
|
253 |
"as S2Member, WooCommerce, and many more), those capabilities will be DELETED!"
|
254 |
msgstr ""
|
255 |
|
256 |
-
#: ../includes/class-user-role-editor.php:
|
257 |
msgid ""
|
258 |
"For more information on how to undo changes and restore plugin capabilities "
|
259 |
"go to"
|
@@ -263,7 +341,7 @@ msgstr ""
|
|
263 |
# __('Contributor', 'ure');
|
264 |
# __('Subscriber', 'ure');
|
265 |
# wpml-name: 23d21ad4dea7aadf907e5e601b1905e6
|
266 |
-
#: ../includes/class-user-role-editor.php:
|
267 |
msgid "Continue?"
|
268 |
msgstr ""
|
269 |
|
@@ -271,7 +349,7 @@ msgstr ""
|
|
271 |
# 'default_role' => __('Default Role', 'ure'),
|
272 |
# 'set_new_default_role' => __('Set New Default Role', 'ure'),
|
273 |
# wpml-name: db135301eaf77a955b2b016f9b9d6a99
|
274 |
-
#: ../includes/class-user-role-editor.php:
|
275 |
msgid "Default Role"
|
276 |
msgstr "תפקיד ברירת מחדל"
|
277 |
|
@@ -279,7 +357,7 @@ msgstr "תפקיד ברירת מחדל"
|
|
279 |
# 'set_new_default_role' => __('Set New Default Role', 'ure'),
|
280 |
# 'delete_capability' => __('Delete Capability', 'ure'),
|
281 |
# wpml-name: f28d52a1096a73cff427d1216dc578ad
|
282 |
-
#: ../includes/class-user-role-editor.php:
|
283 |
msgid "Set New Default Role"
|
284 |
msgstr "הגדר תפקיד ברירת מחדל חדש"
|
285 |
|
@@ -287,7 +365,7 @@ msgstr "הגדר תפקיד ברירת מחדל חדש"
|
|
287 |
# 'delete_capability_warning' => __('Warning! Be careful - removing critical capability could crash some plugin or other custom code', 'ure'),
|
288 |
# 'capability_name_required' => __(' Capability name (ID) can not be empty!', 'ure'),
|
289 |
# wpml-name: b8827a096ab461b8e26931adf82c8d85
|
290 |
-
#: ../includes/class-user-role-editor.php:
|
291 |
msgid ""
|
292 |
"Warning! Be careful - removing critical capability could crash some plugin "
|
293 |
"or other custom code"
|
@@ -299,7 +377,7 @@ msgstr ""
|
|
299 |
# 'capability_name_required' => __(' Capability name (ID) can not be empty!', 'ure'),
|
300 |
# 'capability_name_valid_chars' => __(' Capability name (ID) must contain latin characters, digits, hyphens or underscore only!', 'ure'),
|
301 |
# wpml-name: ba38256d66e3ae37b7b16052a0f94729
|
302 |
-
#: ../includes/class-user-role-editor.php:
|
303 |
msgid " Capability name (ID) can not be empty!"
|
304 |
msgstr " שם היכולת (מזהה) לא יכול להיות ריק!"
|
305 |
|
@@ -307,7 +385,7 @@ msgstr " שם היכולת (מזהה) לא יכול להיות ריק!"
|
|
307 |
# 'capability_name_valid_chars' => __(' Capability name (ID) must contain latin characters, digits, hyphens or underscore only!', 'ure'),
|
308 |
# ) );
|
309 |
# wpml-name: 6d4c115be3e7b4f1fd70112642c9a72d
|
310 |
-
#: ../includes/class-user-role-editor.php:
|
311 |
msgid ""
|
312 |
" Capability name (ID) must contain latin characters, digits, hyphens or "
|
313 |
"underscore only!"
|
@@ -318,8 +396,8 @@ msgstr ""
|
|
318 |
# <th scope="row"><?php _e('Other Roles', 'ure'); ?></th>
|
319 |
# <td>
|
320 |
# wpml-name: a5f40dc2b5f2552187d0326e77e267eb
|
321 |
-
#: ../includes/class-user-role-editor.php:
|
322 |
-
#: ../includes/class-user-role-editor.php:
|
323 |
msgid "Other Roles"
|
324 |
msgstr "תפקידים אחרים"
|
325 |
|
@@ -327,10 +405,18 @@ msgstr "תפקידים אחרים"
|
|
327 |
# echo $output . ' >> <a href="' . wp_nonce_url("users.php?page=users-".URE_PLUGIN_FILE."&object=user&user_id={$user->ID}", "ure_user_{$user->ID}") . '">' . __('Edit', 'ure') . '</a>';
|
328 |
# ?>
|
329 |
# wpml-name: 7dce122004969d56ae2e0245cb754d35
|
330 |
-
#: ../includes/class-user-role-editor.php:
|
331 |
msgid "Edit"
|
332 |
msgstr "עריכה"
|
333 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
334 |
#
|
335 |
#
|
336 |
#
|
@@ -339,6 +425,32 @@ msgstr "עריכה"
|
|
339 |
msgid "If checked, then apply action to ALL sites of this Network"
|
340 |
msgstr "אם סומן, החל פעולה על כל האתרים ברשת זאת"
|
341 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
342 |
# if (!$this->editor_init0()) {
|
343 |
# $this->show_message(__('Error: wrong request', 'URE'));
|
344 |
# return false;
|
@@ -347,6 +459,50 @@ msgstr "אם סומן, החל פעולה על כל האתרים ברשת זאת"
|
|
347 |
msgid "Error: wrong request"
|
348 |
msgstr "שגיאה: בקשה מוטעית"
|
349 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
350 |
# if (!isset($this->roles[$_POST['user_role']])) {
|
351 |
# $mess = __('Error: ', 'ure') . __('Role', 'ure') . ' <em>' . esc_html($_POST['user_role']) . '</em> ' . __('does not exist', 'ure');
|
352 |
# $this->current_role = '';
|
@@ -423,7 +579,7 @@ msgstr "תפקידי משתמש שוחזרו לערכי ברירת המחדל ש
|
|
423 |
# $link = '<a href="' . $url . '" title="read about ' . $capability . ' user capability" target="new"><img src="' . URE_PLUGIN_URL . '/images/help.png" alt="' . __('Help', 'ure') . '" /></a>';
|
424 |
# } else {
|
425 |
# wpml-name: 6a26f548831e6a8c26bfbbd9f6ec61e0
|
426 |
-
#: ../includes/class-ure-lib.php:
|
427 |
msgid "Help"
|
428 |
msgstr "עזרה"
|
429 |
|
@@ -431,7 +587,7 @@ msgstr "עזרה"
|
|
431 |
# $this->show_message('Error! ' . __('Error is occur. Please check the log file.', 'ure'));
|
432 |
# }
|
433 |
# wpml-name: 766a60ac9e13c76c28bdf714ddecaa25
|
434 |
-
#: ../includes/class-ure-lib.php:
|
435 |
msgid "Error is occur. Please check the log file."
|
436 |
msgstr "ארעה שגיאה, אנא בדוק את קובץ היומן."
|
437 |
|
@@ -439,14 +595,14 @@ msgstr "ארעה שגיאה, אנא בדוק את קובץ היומן."
|
|
439 |
# return __('Error: Role ID must contain latin characters, digits, hyphens or underscore only!', 'ure');
|
440 |
# }
|
441 |
# wpml-name: f9182094e24a9e2fbb7317b1724a69c9
|
442 |
-
#: ../includes/class-ure-lib.php:
|
443 |
msgid ""
|
444 |
"Error: Role ID must contain latin characters, digits, hyphens or underscore "
|
445 |
"only!"
|
446 |
msgstr ""
|
447 |
"שגיאה: תפקיד המשתמש חייב לכלול אותיות לטיניות, ספרות, מקפים וקו תחתון בלבד!"
|
448 |
|
449 |
-
#: ../includes/class-ure-lib.php:
|
450 |
msgid ""
|
451 |
"Error: WordPress does not support numeric Role name (ID). Add latin "
|
452 |
"characters to it."
|
@@ -456,7 +612,7 @@ msgstr ""
|
|
456 |
# return sprintf('Error! ' . __('Role %s exists already', 'ure'), $user_role_id);
|
457 |
# }
|
458 |
# wpml-name: 61b6d86154b5437be56e6565f2820391
|
459 |
-
#: ../includes/class-ure-lib.php:
|
460 |
#, php-format
|
461 |
msgid "Role %s exists already"
|
462 |
msgstr "סוג המשתמש %s כבר קיים"
|
@@ -465,7 +621,7 @@ msgstr "סוג המשתמש %s כבר קיים"
|
|
465 |
# $mess = 'Error! ' . __('Error is encountered during new role create operation', 'ure');
|
466 |
# } else {
|
467 |
# wpml-name: e0618b1a4160611a46b1b95acab0821c
|
468 |
-
#: ../includes/class-ure-lib.php:
|
469 |
msgid "Error is encountered during new role create operation"
|
470 |
msgstr "ארעה שגיאה בעת יצירת סוג המשתמש החדש"
|
471 |
|
@@ -473,7 +629,7 @@ msgstr "ארעה שגיאה בעת יצירת סוג המשתמש החדש"
|
|
473 |
# $mess = sprintf(__('Role %s is created successfully', 'ure'), $user_role_name);
|
474 |
# }
|
475 |
# wpml-name: 1613afddcbdf86bd48660e5443be00ff
|
476 |
-
#: ../includes/class-ure-lib.php:
|
477 |
#, php-format
|
478 |
msgid "Role %s is created successfully"
|
479 |
msgstr "סוג המשתמש %s נוצר בהצלחה"
|
@@ -482,7 +638,7 @@ msgstr "סוג המשתמש %s נוצר בהצלחה"
|
|
482 |
# $mess = 'Error! ' . __('Error encountered during role delete operation', 'ure');
|
483 |
# } else {
|
484 |
# wpml-name: 5ca27dda122445e597586a22e18088e6
|
485 |
-
#: ../includes/class-ure-lib.php:
|
486 |
msgid "Error encountered during role delete operation"
|
487 |
msgstr "ארעה שגיאה במהלך נסיון המחיקה של סוג המשתמש"
|
488 |
|
@@ -490,7 +646,7 @@ msgstr "ארעה שגיאה במהלך נסיון המחיקה של סוג המ
|
|
490 |
# $mess = sprintf(__('Role %s is deleted successfully', 'ure'), $role);
|
491 |
# }
|
492 |
# wpml-name: 53552ec95bc8303219e8c39375763370
|
493 |
-
#: ../includes/class-ure-lib.php:
|
494 |
msgid "Unused roles are deleted successfully"
|
495 |
msgstr ""
|
496 |
|
@@ -498,7 +654,7 @@ msgstr ""
|
|
498 |
# $mess = sprintf(__('Role %s is deleted successfully', 'ure'), $role);
|
499 |
# }
|
500 |
# wpml-name: 53552ec95bc8303219e8c39375763370
|
501 |
-
#: ../includes/class-ure-lib.php:
|
502 |
#, php-format
|
503 |
msgid "Role %s is deleted successfully"
|
504 |
msgstr "סוג המשתמש %s נמחק בהצלחה"
|
@@ -507,7 +663,7 @@ msgstr "סוג המשתמש %s נמחק בהצלחה"
|
|
507 |
# $errorMessage = 'Error! ' . __('Error encountered during default role change operation', 'ure');
|
508 |
# if (isset($wp_roles->role_objects[$user_role_id]) && $user_role_id !== 'administrator') {
|
509 |
# wpml-name: b64bfe4842bc0638b79a24687976394e
|
510 |
-
#: ../includes/class-ure-lib.php:
|
511 |
msgid "Error encountered during default role change operation"
|
512 |
msgstr "ארעה שגיאה בעת הנסיון לשנות את סוג משתמש ברירת מחדל"
|
513 |
|
@@ -515,7 +671,7 @@ msgstr "ארעה שגיאה בעת הנסיון לשנות את סוג משתמ
|
|
515 |
# $mess = sprintf(__('Default role for new users is set to %s successfully', 'ure'), $wp_roles->role_names[$user_role_id]);
|
516 |
# }
|
517 |
# wpml-name: 94978d82edc73eba0f44bc7bceb299f4
|
518 |
-
#: ../includes/class-ure-lib.php:
|
519 |
#, php-format
|
520 |
msgid "Default role for new users is set to %s successfully"
|
521 |
msgstr "סוג המשתמש %s נקבע כברירת מחדל"
|
@@ -524,7 +680,7 @@ msgstr "סוג המשתמש %s נקבע כברירת מחדל"
|
|
524 |
# __('Editor', 'ure');
|
525 |
# __('Author', 'ure');
|
526 |
# wpml-name: 344a7f427fb765610ef96eb7bce95257
|
527 |
-
#: ../includes/class-ure-lib.php:
|
528 |
msgid "Editor"
|
529 |
msgstr "עורך"
|
530 |
|
@@ -532,7 +688,7 @@ msgstr "עורך"
|
|
532 |
# __('Author', 'ure');
|
533 |
# __('Contributor', 'ure');
|
534 |
# wpml-name: a517747c3d12f99244ae598910d979c5
|
535 |
-
#: ../includes/class-ure-lib.php:
|
536 |
msgid "Author"
|
537 |
msgstr "כותב"
|
538 |
|
@@ -540,7 +696,7 @@ msgstr "כותב"
|
|
540 |
# __('Contributor', 'ure');
|
541 |
# __('Subscriber', 'ure');
|
542 |
# wpml-name: 23d21ad4dea7aadf907e5e601b1905e6
|
543 |
-
#: ../includes/class-ure-lib.php:
|
544 |
msgid "Contributor"
|
545 |
msgstr "תורם"
|
546 |
|
@@ -548,7 +704,7 @@ msgstr "תורם"
|
|
548 |
# __('Subscriber', 'ure');
|
549 |
# // Standard WordPress capabilities
|
550 |
# wpml-name: 992c4a5b4628d8ebf671cf460254ee81
|
551 |
-
#: ../includes/class-ure-lib.php:
|
552 |
msgid "Subscriber"
|
553 |
msgstr "מנוי"
|
554 |
|
@@ -556,7 +712,7 @@ msgstr "מנוי"
|
|
556 |
# __('Switch themes', 'ure');
|
557 |
# __('Edit themes', 'ure');
|
558 |
# wpml-name: 87d980c0c79638536655ce7fa0a4b85d
|
559 |
-
#: ../includes/class-ure-lib.php:
|
560 |
msgid "Switch themes"
|
561 |
msgstr "החלפת תבניות"
|
562 |
|
@@ -564,7 +720,7 @@ msgstr "החלפת תבניות"
|
|
564 |
# __('Edit themes', 'ure');
|
565 |
# __('Activate plugins', 'ure');
|
566 |
# wpml-name: 8395d1904c778ee1b2762e07a6a03878
|
567 |
-
#: ../includes/class-ure-lib.php:
|
568 |
msgid "Edit themes"
|
569 |
msgstr "עריכת תבניות"
|
570 |
|
@@ -572,7 +728,7 @@ msgstr "עריכת תבניות"
|
|
572 |
# __('Activate plugins', 'ure');
|
573 |
# __('Edit plugins', 'ure');
|
574 |
# wpml-name: c38bc47406355ef06ad3e10a98505536
|
575 |
-
#: ../includes/class-ure-lib.php:
|
576 |
msgid "Activate plugins"
|
577 |
msgstr "הפעלת תוספים"
|
578 |
|
@@ -580,7 +736,7 @@ msgstr "הפעלת תוספים"
|
|
580 |
# __('Edit plugins', 'ure');
|
581 |
# __('Edit users', 'ure');
|
582 |
# wpml-name: a6e42eb142c87e881a0d0c92acf4ef9f
|
583 |
-
#: ../includes/class-ure-lib.php:
|
584 |
msgid "Edit plugins"
|
585 |
msgstr "עריכת תוספים"
|
586 |
|
@@ -588,7 +744,7 @@ msgstr "עריכת תוספים"
|
|
588 |
# __('Edit users', 'ure');
|
589 |
# __('Edit files', 'ure');
|
590 |
# wpml-name: 70118d8574d7c13da8c0a7c2acc0f659
|
591 |
-
#: ../includes/class-ure-lib.php:
|
592 |
msgid "Edit users"
|
593 |
msgstr "עריכת משתמשים"
|
594 |
|
@@ -596,7 +752,7 @@ msgstr "עריכת משתמשים"
|
|
596 |
# __('Edit files', 'ure');
|
597 |
# __('Manage options', 'ure');
|
598 |
# wpml-name: 91c6e7a54b91cdc161f71958c597ed11
|
599 |
-
#: ../includes/class-ure-lib.php:
|
600 |
msgid "Edit files"
|
601 |
msgstr "עריכת קבצים"
|
602 |
|
@@ -604,7 +760,7 @@ msgstr "עריכת קבצים"
|
|
604 |
# __('Manage options', 'ure');
|
605 |
# __('Moderate comments', 'ure');
|
606 |
# wpml-name: 9f285ad90d3e9f5122241f2e8abd3836
|
607 |
-
#: ../includes/class-ure-lib.php:
|
608 |
msgid "Manage options"
|
609 |
msgstr "ניהול אפשרויות אתר"
|
610 |
|
@@ -612,7 +768,7 @@ msgstr "ניהול אפשרויות אתר"
|
|
612 |
# __('Moderate comments', 'ure');
|
613 |
# __('Manage categories', 'ure');
|
614 |
# wpml-name: abb293cb5d17f4acca429ea13d74c593
|
615 |
-
#: ../includes/class-ure-lib.php:
|
616 |
msgid "Moderate comments"
|
617 |
msgstr "ניהול תגובות"
|
618 |
|
@@ -620,7 +776,7 @@ msgstr "ניהול תגובות"
|
|
620 |
# __('Manage categories', 'ure');
|
621 |
# __('Manage links', 'ure');
|
622 |
# wpml-name: 74c12b9adae95b65772e8c9c9c8e5af3
|
623 |
-
#: ../includes/class-ure-lib.php:
|
624 |
msgid "Manage categories"
|
625 |
msgstr "ניהול קטגוריות"
|
626 |
|
@@ -628,7 +784,7 @@ msgstr "ניהול קטגוריות"
|
|
628 |
# __('Manage links', 'ure');
|
629 |
# __('Upload files', 'ure');
|
630 |
# wpml-name: fa1a08e2a749c9f330c9a8e60cac9cc3
|
631 |
-
#: ../includes/class-ure-lib.php:
|
632 |
msgid "Manage links"
|
633 |
msgstr "ניהול קישורים"
|
634 |
|
@@ -636,7 +792,7 @@ msgstr "ניהול קישורים"
|
|
636 |
# __('Upload files', 'ure');
|
637 |
# __('Import', 'ure');
|
638 |
# wpml-name: c7de86f69db264c3950d8ae46ed2e33f
|
639 |
-
#: ../includes/class-ure-lib.php:
|
640 |
msgid "Upload files"
|
641 |
msgstr "העלאת קבצים"
|
642 |
|
@@ -644,7 +800,7 @@ msgstr "העלאת קבצים"
|
|
644 |
# __('Import', 'ure');
|
645 |
# __('Unfiltered html', 'ure');
|
646 |
# wpml-name: 72d6d7a1885885bb55a565fd1070581a
|
647 |
-
#: ../includes/class-ure-lib.php:
|
648 |
msgid "Import"
|
649 |
msgstr "יבוא"
|
650 |
|
@@ -652,7 +808,7 @@ msgstr "יבוא"
|
|
652 |
# __('Unfiltered html', 'ure');
|
653 |
# __('Edit posts', 'ure');
|
654 |
# wpml-name: fdd95e5640d6d73230b7544ac261457a
|
655 |
-
#: ../includes/class-ure-lib.php:
|
656 |
msgid "Unfiltered html"
|
657 |
msgstr "עריכת HTML"
|
658 |
|
@@ -660,7 +816,7 @@ msgstr "עריכת HTML"
|
|
660 |
# __('Edit posts', 'ure');
|
661 |
# __('Edit others posts', 'ure');
|
662 |
# wpml-name: 9cd92b1d45220e13e5e257f185f3fec3
|
663 |
-
#: ../includes/class-ure-lib.php:
|
664 |
msgid "Edit posts"
|
665 |
msgstr "עריכת פוסטים"
|
666 |
|
@@ -668,7 +824,7 @@ msgstr "עריכת פוסטים"
|
|
668 |
# __('Edit others posts', 'ure');
|
669 |
# __('Edit published posts', 'ure');
|
670 |
# wpml-name: 5fbf3fd2d5fd1e393df2c639fa16dbc9
|
671 |
-
#: ../includes/class-ure-lib.php:
|
672 |
msgid "Edit others posts"
|
673 |
msgstr "עריכת פוסטים של אחרים"
|
674 |
|
@@ -676,7 +832,7 @@ msgstr "עריכת פוסטים של אחרים"
|
|
676 |
# __('Edit published posts', 'ure');
|
677 |
# __('Publish posts', 'ure');
|
678 |
# wpml-name: d42efc04e7900de59ed3667c971e9e9d
|
679 |
-
#: ../includes/class-ure-lib.php:
|
680 |
msgid "Edit published posts"
|
681 |
msgstr "עריכת פוסטים שפורסמו"
|
682 |
|
@@ -684,7 +840,7 @@ msgstr "עריכת פוסטים שפורסמו"
|
|
684 |
# __('Publish posts', 'ure');
|
685 |
# __('Edit pages', 'ure');
|
686 |
# wpml-name: 64a4f8f7a855c54e1ca7c910439f5e90
|
687 |
-
#: ../includes/class-ure-lib.php:
|
688 |
msgid "Publish posts"
|
689 |
msgstr "פוסטים שפורסמו"
|
690 |
|
@@ -692,7 +848,7 @@ msgstr "פוסטים שפורסמו"
|
|
692 |
# __('Edit pages', 'ure');
|
693 |
# __('Read', 'ure');
|
694 |
# wpml-name: e7a51430fa0fbb32587c083ffae4b525
|
695 |
-
#: ../includes/class-ure-lib.php:
|
696 |
msgid "Edit pages"
|
697 |
msgstr "עריכת עמודים"
|
698 |
|
@@ -700,7 +856,7 @@ msgstr "עריכת עמודים"
|
|
700 |
# __('Read', 'ure');
|
701 |
# __('Level 10', 'ure');
|
702 |
# wpml-name: 7a1a5f3e79fdc91edf2f5ead9d66abb4
|
703 |
-
#: ../includes/class-ure-lib.php:
|
704 |
msgid "Read"
|
705 |
msgstr "קורא"
|
706 |
|
@@ -708,7 +864,7 @@ msgstr "קורא"
|
|
708 |
# __('Level 10', 'ure');
|
709 |
# __('Level 9', 'ure');
|
710 |
# wpml-name: b3ef2f43e2782f8d95a4c22d577cb1bc
|
711 |
-
#: ../includes/class-ure-lib.php:
|
712 |
msgid "Level 10"
|
713 |
msgstr "דרגה 10"
|
714 |
|
@@ -716,7 +872,7 @@ msgstr "דרגה 10"
|
|
716 |
# __('Level 9', 'ure');
|
717 |
# __('Level 8', 'ure');
|
718 |
# wpml-name: d48252bc9cffec4bed5028a7c71d8196
|
719 |
-
#: ../includes/class-ure-lib.php:
|
720 |
msgid "Level 9"
|
721 |
msgstr "דרגה 9"
|
722 |
|
@@ -724,7 +880,7 @@ msgstr "דרגה 9"
|
|
724 |
# __('Level 8', 'ure');
|
725 |
# __('Level 7', 'ure');
|
726 |
# wpml-name: 625fef0c34a92b3685266a47f16c85dd
|
727 |
-
#: ../includes/class-ure-lib.php:
|
728 |
msgid "Level 8"
|
729 |
msgstr "דרגה 8"
|
730 |
|
@@ -732,7 +888,7 @@ msgstr "דרגה 8"
|
|
732 |
# __('Level 7', 'ure');
|
733 |
# __('Level 6', 'ure');
|
734 |
# wpml-name: a9acd6f427950dc61cac50b4e9ee6bc4
|
735 |
-
#: ../includes/class-ure-lib.php:
|
736 |
msgid "Level 7"
|
737 |
msgstr "דרגה 7"
|
738 |
|
@@ -740,7 +896,7 @@ msgstr "דרגה 7"
|
|
740 |
# __('Level 6', 'ure');
|
741 |
# __('Level 5', 'ure');
|
742 |
# wpml-name: b30ce92fb9295725ef29254ba5ae17e1
|
743 |
-
#: ../includes/class-ure-lib.php:
|
744 |
msgid "Level 6"
|
745 |
msgstr "דרגה 6"
|
746 |
|
@@ -748,7 +904,7 @@ msgstr "דרגה 6"
|
|
748 |
# __('Level 5', 'ure');
|
749 |
# __('Level 4', 'ure');
|
750 |
# wpml-name: 05988e43e8f2eb5efdddc2b467c4b2f3
|
751 |
-
#: ../includes/class-ure-lib.php:
|
752 |
msgid "Level 5"
|
753 |
msgstr "דרגה 5"
|
754 |
|
@@ -756,7 +912,7 @@ msgstr "דרגה 5"
|
|
756 |
# __('Level 4', 'ure');
|
757 |
# __('Level 3', 'ure');
|
758 |
# wpml-name: 309531bbe9a9d3228cd0687ec6e66bed
|
759 |
-
#: ../includes/class-ure-lib.php:
|
760 |
msgid "Level 4"
|
761 |
msgstr "דרגה 4"
|
762 |
|
@@ -764,7 +920,7 @@ msgstr "דרגה 4"
|
|
764 |
# __('Level 3', 'ure');
|
765 |
# __('Level 2', 'ure');
|
766 |
# wpml-name: 8f60a63315c55e659b1a2dd5064ceae8
|
767 |
-
#: ../includes/class-ure-lib.php:
|
768 |
msgid "Level 3"
|
769 |
msgstr "דרגה 3"
|
770 |
|
@@ -772,7 +928,7 @@ msgstr "דרגה 3"
|
|
772 |
# __('Level 2', 'ure');
|
773 |
# __('Level 1', 'ure');
|
774 |
# wpml-name: 228e9da47384bacde793a2b78d488bb0
|
775 |
-
#: ../includes/class-ure-lib.php:
|
776 |
msgid "Level 2"
|
777 |
msgstr "דרגה 2"
|
778 |
|
@@ -780,7 +936,7 @@ msgstr "דרגה 2"
|
|
780 |
# __('Level 1', 'ure');
|
781 |
# __('Level 0', 'ure');
|
782 |
# wpml-name: 5afaf1679ad0887adebaddb40e0bd3f7
|
783 |
-
#: ../includes/class-ure-lib.php:
|
784 |
msgid "Level 1"
|
785 |
msgstr "דרגה 1"
|
786 |
|
@@ -788,7 +944,7 @@ msgstr "דרגה 1"
|
|
788 |
# __('Level 0', 'ure');
|
789 |
# __('Edit others pages', 'ure');
|
790 |
# wpml-name: 057e95a59e032dbed970592dd1245092
|
791 |
-
#: ../includes/class-ure-lib.php:
|
792 |
msgid "Level 0"
|
793 |
msgstr "דרגה 0"
|
794 |
|
@@ -796,7 +952,7 @@ msgstr "דרגה 0"
|
|
796 |
# __('Edit others pages', 'ure');
|
797 |
# __('Edit published pages', 'ure');
|
798 |
# wpml-name: b10af907824940fe6a5aa0a77c62be6f
|
799 |
-
#: ../includes/class-ure-lib.php:
|
800 |
msgid "Edit others pages"
|
801 |
msgstr "עריכת דפים של אחרים"
|
802 |
|
@@ -804,7 +960,7 @@ msgstr "עריכת דפים של אחרים"
|
|
804 |
# __('Edit published pages', 'ure');
|
805 |
# __('Publish pages', 'ure');
|
806 |
# wpml-name: c5bfc24b0b891c9465134b83b2c6c259
|
807 |
-
#: ../includes/class-ure-lib.php:
|
808 |
msgid "Edit published pages"
|
809 |
msgstr "עריכת דפים שפורסמו"
|
810 |
|
@@ -812,7 +968,7 @@ msgstr "עריכת דפים שפורסמו"
|
|
812 |
# __('Publish pages', 'ure');
|
813 |
# __('Delete pages', 'ure');
|
814 |
# wpml-name: 70d789f104acf7aa83b1c5ab230f8e7c
|
815 |
-
#: ../includes/class-ure-lib.php:
|
816 |
msgid "Publish pages"
|
817 |
msgstr "פרסום דפים"
|
818 |
|
@@ -820,7 +976,7 @@ msgstr "פרסום דפים"
|
|
820 |
# __('Delete pages', 'ure');
|
821 |
# __('Delete others pages', 'ure');
|
822 |
# wpml-name: b665a2b3cb33c08decc52b8a3f3d1742
|
823 |
-
#: ../includes/class-ure-lib.php:
|
824 |
msgid "Delete pages"
|
825 |
msgstr "מחיקת דפים"
|
826 |
|
@@ -828,7 +984,7 @@ msgstr "מחיקת דפים"
|
|
828 |
# __('Delete others pages', 'ure');
|
829 |
# __('Delete published pages', 'ure');
|
830 |
# wpml-name: 23eaa8e106fde2a76d80bc907f55ab7e
|
831 |
-
#: ../includes/class-ure-lib.php:
|
832 |
msgid "Delete others pages"
|
833 |
msgstr "מחיקת דפים של אחרים"
|
834 |
|
@@ -836,7 +992,7 @@ msgstr "מחיקת דפים של אחרים"
|
|
836 |
# __('Delete published pages', 'ure');
|
837 |
# __('Delete posts', 'ure');
|
838 |
# wpml-name: 75c6bfee9157bbc48bfc4d50baab89e0
|
839 |
-
#: ../includes/class-ure-lib.php:
|
840 |
msgid "Delete published pages"
|
841 |
msgstr "מחיקת דפים שפורסמו"
|
842 |
|
@@ -844,7 +1000,7 @@ msgstr "מחיקת דפים שפורסמו"
|
|
844 |
# __('Delete posts', 'ure');
|
845 |
# __('Delete others posts', 'ure');
|
846 |
# wpml-name: 3dce6f688c85f06c63224b5c3be13919
|
847 |
-
#: ../includes/class-ure-lib.php:
|
848 |
msgid "Delete posts"
|
849 |
msgstr "מחיקת פוסטים"
|
850 |
|
@@ -852,7 +1008,7 @@ msgstr "מחיקת פוסטים"
|
|
852 |
# __('Delete others posts', 'ure');
|
853 |
# __('Delete published posts', 'ure');
|
854 |
# wpml-name: c0496287732814df690c8966027a58d6
|
855 |
-
#: ../includes/class-ure-lib.php:
|
856 |
msgid "Delete others posts"
|
857 |
msgstr "מחיקת פוסטים של אחרים"
|
858 |
|
@@ -860,7 +1016,7 @@ msgstr "מחיקת פוסטים של אחרים"
|
|
860 |
# __('Delete published posts', 'ure');
|
861 |
# __('Delete private posts', 'ure');
|
862 |
# wpml-name: b0a2d2039494d73f81f4e476bfda24da
|
863 |
-
#: ../includes/class-ure-lib.php:
|
864 |
msgid "Delete published posts"
|
865 |
msgstr "מחיקת פוסטים שפורסמו"
|
866 |
|
@@ -868,7 +1024,7 @@ msgstr "מחיקת פוסטים שפורסמו"
|
|
868 |
# __('Delete private posts', 'ure');
|
869 |
# __('Edit private posts', 'ure');
|
870 |
# wpml-name: dcd02c374764e49b36f0f959cc2917bb
|
871 |
-
#: ../includes/class-ure-lib.php:
|
872 |
msgid "Delete private posts"
|
873 |
msgstr "מחיקת פוסטים פרטיים"
|
874 |
|
@@ -876,7 +1032,7 @@ msgstr "מחיקת פוסטים פרטיים"
|
|
876 |
# __('Edit private posts', 'ure');
|
877 |
# __('Read private posts', 'ure');
|
878 |
# wpml-name: da9ee842794f7caf9fa32271073d5f7a
|
879 |
-
#: ../includes/class-ure-lib.php:
|
880 |
msgid "Edit private posts"
|
881 |
msgstr "עריכת פוסטים פרטיים"
|
882 |
|
@@ -884,7 +1040,7 @@ msgstr "עריכת פוסטים פרטיים"
|
|
884 |
# __('Read private posts', 'ure');
|
885 |
# __('Delete private pages', 'ure');
|
886 |
# wpml-name: eab0355307288f6480f8c53a0d953d79
|
887 |
-
#: ../includes/class-ure-lib.php:
|
888 |
msgid "Read private posts"
|
889 |
msgstr "קריאת פוסטים פרטיים"
|
890 |
|
@@ -892,7 +1048,7 @@ msgstr "קריאת פוסטים פרטיים"
|
|
892 |
# __('Delete private pages', 'ure');
|
893 |
# __('Edit private pages', 'ure');
|
894 |
# wpml-name: 2136c12e2beeadfe0da80a36ef967eca
|
895 |
-
#: ../includes/class-ure-lib.php:
|
896 |
msgid "Delete private pages"
|
897 |
msgstr "מחיקת עמודים פרטיים"
|
898 |
|
@@ -900,7 +1056,7 @@ msgstr "מחיקת עמודים פרטיים"
|
|
900 |
# __('Edit private pages', 'ure');
|
901 |
# __('Read private pages', 'ure');
|
902 |
# wpml-name: 4f3859ba470cb61f22a600a93c4ce11f
|
903 |
-
#: ../includes/class-ure-lib.php:
|
904 |
msgid "Edit private pages"
|
905 |
msgstr "מחיקת עמודים פרטיים"
|
906 |
|
@@ -908,7 +1064,7 @@ msgstr "מחיקת עמודים פרטיים"
|
|
908 |
# __('Read private pages', 'ure');
|
909 |
# __('Delete users', 'ure');
|
910 |
# wpml-name: 5faa3f2e9585e107dc5f23748a825882
|
911 |
-
#: ../includes/class-ure-lib.php:
|
912 |
msgid "Read private pages"
|
913 |
msgstr "קריאת עמודים פרטיים"
|
914 |
|
@@ -916,7 +1072,7 @@ msgstr "קריאת עמודים פרטיים"
|
|
916 |
# __('Delete users', 'ure');
|
917 |
# __('Create users', 'ure');
|
918 |
# wpml-name: 61c484c7f1638a9dd4237cb666b91c1f
|
919 |
-
#: ../includes/class-ure-lib.php:
|
920 |
msgid "Delete users"
|
921 |
msgstr "מחיקת משתמשים"
|
922 |
|
@@ -924,7 +1080,7 @@ msgstr "מחיקת משתמשים"
|
|
924 |
# __('Create users', 'ure');
|
925 |
# __('Unfiltered upload', 'ure');
|
926 |
# wpml-name: 6cf6d76fc00f8dd12af98a37d11f623e
|
927 |
-
#: ../includes/class-ure-lib.php:
|
928 |
msgid "Create users"
|
929 |
msgstr "יצירת משתמשים"
|
930 |
|
@@ -932,7 +1088,7 @@ msgstr "יצירת משתמשים"
|
|
932 |
# __('Unfiltered upload', 'ure');
|
933 |
# __('Edit dashboard', 'ure');
|
934 |
# wpml-name: 7110d42a34cbb3316d6d0c658fa34c86
|
935 |
-
#: ../includes/class-ure-lib.php:
|
936 |
msgid "Unfiltered upload"
|
937 |
msgstr "העלאת קבצים חופשית"
|
938 |
|
@@ -940,7 +1096,7 @@ msgstr "העלאת קבצים חופשית"
|
|
940 |
# __('Edit dashboard', 'ure');
|
941 |
# __('Update plugins', 'ure');
|
942 |
# wpml-name: b5577d27ebfdd60a3bda83ae726d574b
|
943 |
-
#: ../includes/class-ure-lib.php:
|
944 |
msgid "Edit dashboard"
|
945 |
msgstr "שינוי לוח הבקרה"
|
946 |
|
@@ -948,7 +1104,7 @@ msgstr "שינוי לוח הבקרה"
|
|
948 |
# __('Update plugins', 'ure');
|
949 |
# __('Delete plugins', 'ure');
|
950 |
# wpml-name: 23c5b17dc24e40fa47ca6588932d32f7
|
951 |
-
#: ../includes/class-ure-lib.php:
|
952 |
msgid "Update plugins"
|
953 |
msgstr "עדכון תוספים"
|
954 |
|
@@ -956,7 +1112,7 @@ msgstr "עדכון תוספים"
|
|
956 |
# __('Delete plugins', 'ure');
|
957 |
# __('Install plugins', 'ure');
|
958 |
# wpml-name: f2a839940dae3934317d8d6a6f647ebd
|
959 |
-
#: ../includes/class-ure-lib.php:
|
960 |
msgid "Delete plugins"
|
961 |
msgstr "מחיקת תוספים"
|
962 |
|
@@ -964,7 +1120,7 @@ msgstr "מחיקת תוספים"
|
|
964 |
# __('Install plugins', 'ure');
|
965 |
# __('Update themes', 'ure');
|
966 |
# wpml-name: 9d06472988c53bfc768bc7b6a788b697
|
967 |
-
#: ../includes/class-ure-lib.php:
|
968 |
msgid "Install plugins"
|
969 |
msgstr "התקנת תוספים"
|
970 |
|
@@ -972,7 +1128,7 @@ msgstr "התקנת תוספים"
|
|
972 |
# __('Update themes', 'ure');
|
973 |
# __('Install themes', 'ure');
|
974 |
# wpml-name: 504ea4a27260ac1e8822c5877ffe526b
|
975 |
-
#: ../includes/class-ure-lib.php:
|
976 |
msgid "Update themes"
|
977 |
msgstr "עדכון תבניות"
|
978 |
|
@@ -980,7 +1136,7 @@ msgstr "עדכון תבניות"
|
|
980 |
# __('Install themes', 'ure');
|
981 |
# __('Update core', 'ure');
|
982 |
# wpml-name: a7d67fb17876569a4590902d3566a6fd
|
983 |
-
#: ../includes/class-ure-lib.php:
|
984 |
msgid "Install themes"
|
985 |
msgstr "התקנת תבניות חדשות"
|
986 |
|
@@ -988,7 +1144,7 @@ msgstr "התקנת תבניות חדשות"
|
|
988 |
# __('Update core', 'ure');
|
989 |
# __('List users', 'ure');
|
990 |
# wpml-name: e56e5b87db548cd42be7a8a0f916205d
|
991 |
-
#: ../includes/class-ure-lib.php:
|
992 |
msgid "Update core"
|
993 |
msgstr "עדכון וורדפרס"
|
994 |
|
@@ -996,7 +1152,7 @@ msgstr "עדכון וורדפרס"
|
|
996 |
# __('List users', 'ure');
|
997 |
# __('Remove users', 'ure');
|
998 |
# wpml-name: f923f903857a5387d3db70494e074632
|
999 |
-
#: ../includes/class-ure-lib.php:
|
1000 |
msgid "List users"
|
1001 |
msgstr "בצפייה במשתמשים"
|
1002 |
|
@@ -1004,7 +1160,7 @@ msgstr "בצפייה במשתמשים"
|
|
1004 |
# __('Remove users', 'ure');
|
1005 |
# __('Add users', 'ure');
|
1006 |
# wpml-name: 8c7e9f2dfcd0125922dfbce36a1a4c2a
|
1007 |
-
#: ../includes/class-ure-lib.php:
|
1008 |
msgid "Remove users"
|
1009 |
msgstr "הסרת משתמשים"
|
1010 |
|
@@ -1012,7 +1168,7 @@ msgstr "הסרת משתמשים"
|
|
1012 |
# __('Add users', 'ure');
|
1013 |
# __('Promote users', 'ure');
|
1014 |
# wpml-name: 3bf6330f5f4c7c3dfddc9670cfaf4a22
|
1015 |
-
#: ../includes/class-ure-lib.php:
|
1016 |
msgid "Add users"
|
1017 |
msgstr "הוספת משתמשים"
|
1018 |
|
@@ -1020,7 +1176,7 @@ msgstr "הוספת משתמשים"
|
|
1020 |
# __('Promote users', 'ure');
|
1021 |
# __('Edit theme options', 'ure');
|
1022 |
# wpml-name: 12f4ba95cdfd04b791820b9c20887913
|
1023 |
-
#: ../includes/class-ure-lib.php:
|
1024 |
msgid "Promote users"
|
1025 |
msgstr "שינוי משתמשים"
|
1026 |
|
@@ -1028,7 +1184,7 @@ msgstr "שינוי משתמשים"
|
|
1028 |
# __('Edit theme options', 'ure');
|
1029 |
# __('Delete themes', 'ure');
|
1030 |
# wpml-name: 8841974497684dad4d55beaf2b6c52ef
|
1031 |
-
#: ../includes/class-ure-lib.php:
|
1032 |
msgid "Edit theme options"
|
1033 |
msgstr "עריכת אפשרויות התבנית"
|
1034 |
|
@@ -1036,7 +1192,7 @@ msgstr "עריכת אפשרויות התבנית"
|
|
1036 |
# __('Delete themes', 'ure');
|
1037 |
# __('Export', 'ure');
|
1038 |
# wpml-name: 335e9dea5f21dc3f591f3aceefdeed54
|
1039 |
-
#: ../includes/class-ure-lib.php:
|
1040 |
msgid "Delete themes"
|
1041 |
msgstr "מחיקת תבניות"
|
1042 |
|
@@ -1044,7 +1200,7 @@ msgstr "מחיקת תבניות"
|
|
1044 |
# __('Export', 'ure');
|
1045 |
# }
|
1046 |
# wpml-name: 0095a9fa74d1713e43e370a7d7846224
|
1047 |
-
#: ../includes/class-ure-lib.php:
|
1048 |
msgid "Export"
|
1049 |
msgstr "ייצוא תוכן"
|
1050 |
|
@@ -1052,7 +1208,7 @@ msgstr "ייצוא תוכן"
|
|
1052 |
# return 'Error! ' . __('Error: Capability name must contain latin characters and digits only!', 'ure');
|
1053 |
# ;
|
1054 |
# wpml-name: 03766b9586d3012af6fc788e85d39530
|
1055 |
-
#: ../includes/class-ure-lib.php:
|
1056 |
msgid "Error: Capability name must contain latin characters and digits only!"
|
1057 |
msgstr "שגיאה! שם יכולת חייב להכיל אותיות באנגלית וספרות בלבד"
|
1058 |
|
@@ -1060,7 +1216,7 @@ msgstr "שגיאה! שם יכולת חייב להכיל אותיות באנגל
|
|
1060 |
# $mess = sprintf(__('Capability %s is added successfully', 'ure'), $user_capability);
|
1061 |
# } else {
|
1062 |
# wpml-name: 6dcaae98207ba2673da987515b02fe31
|
1063 |
-
#: ../includes/class-ure-lib.php:
|
1064 |
#, php-format
|
1065 |
msgid "Capability %s is added successfully"
|
1066 |
msgstr "היכולת %s נוספה בהצלחה"
|
@@ -1069,7 +1225,7 @@ msgstr "היכולת %s נוספה בהצלחה"
|
|
1069 |
# $mess = sprintf('Error! ' . __('Capability %s exists already', 'ure'), $user_capability);
|
1070 |
# }
|
1071 |
# wpml-name: d5c1ec0556aadfa88cadffb62266b83d
|
1072 |
-
#: ../includes/class-ure-lib.php:
|
1073 |
#, php-format
|
1074 |
msgid "Capability %s exists already"
|
1075 |
msgstr "כבר קיימת יכולת בשם %s"
|
@@ -1078,7 +1234,7 @@ msgstr "כבר קיימת יכולת בשם %s"
|
|
1078 |
# return sprintf(__('Error! You do not have permission to delete this capability: %s!', 'ure'), $capability_id);
|
1079 |
# }
|
1080 |
# wpml-name: 0e132e68574d9609d956f9be409f7384
|
1081 |
-
#: ../includes/class-ure-lib.php:
|
1082 |
#, php-format
|
1083 |
msgid "Error! You do not have permission to delete this capability: %s!"
|
1084 |
msgstr "שגיאה! אין לך הרשאה למחוק את היכולת %s"
|
@@ -1087,16 +1243,20 @@ msgstr "שגיאה! אין לך הרשאה למחוק את היכולת %s"
|
|
1087 |
# $mess = sprintf(__('Capability %s is removed successfully', 'ure'), $capability_id);
|
1088 |
# }
|
1089 |
# wpml-name: d819128cbb44d0e2fe4eb8b8b6397871
|
1090 |
-
#: ../includes/class-ure-lib.php:
|
1091 |
#, php-format
|
1092 |
msgid "Capability %s is removed successfully"
|
1093 |
msgstr "היכולת %s הוסרה בהצלחה"
|
1094 |
|
|
|
|
|
|
|
|
|
1095 |
# ?>
|
1096 |
# <a class="ure_rsb_link" style="background-image:url(<?php echo URE_PLUGIN_URL . 'images/vladimir.png'; ?>);" target="_blank" href="http://www.shinephp.com/"><?php _e("Author's website", 'ure'); ?></a>
|
1097 |
# <a class="ure_rsb_link" style="background-image:url(<?php echo URE_PLUGIN_URL . 'images/user-role-editor-icon.png'; ?>);" target="_blank" href="http://role-editor.com"><?php _e('Plugin webpage', 'ure'); ?></a>
|
1098 |
# wpml-name: b63bc6c033363c8ee66beaf4ea4d5bc3
|
1099 |
-
#: ../includes/class-ure-lib.php:
|
1100 |
msgid "Author's website"
|
1101 |
msgstr "אתר היוצר"
|
1102 |
|
@@ -1104,7 +1264,7 @@ msgstr "אתר היוצר"
|
|
1104 |
# <a class="ure_rsb_link" style="background-image:url(<?php echo URE_PLUGIN_URL . 'images/user-role-editor-icon.png'; ?>);" target="_blank" href="http://role-editor.com"><?php _e('Plugin webpage', 'ure'); ?></a>
|
1105 |
# <a class="ure_rsb_link" style="background-image:url(<?php echo URE_PLUGIN_URL . 'images/changelog-icon.png'; ?>);" target="_blank" href="http://www.shinephp.com/user-role-editor-wordpress-plugin/#changelog"><?php _e('Changelog', 'ure'); ?></a>
|
1106 |
# wpml-name: f919d1248270e1eca5cc6a39253264f7
|
1107 |
-
#: ../includes/class-ure-lib.php:
|
1108 |
msgid "Plugin webpage"
|
1109 |
msgstr "דף התוסף"
|
1110 |
|
@@ -1112,7 +1272,7 @@ msgstr "דף התוסף"
|
|
1112 |
# <a class="ure_rsb_link" style="background-image:url(<?php echo URE_PLUGIN_URL . 'images/user-role-editor-icon.png'; ?>);" target="_blank" href="http://role-editor.com"><?php _e('Plugin webpage', 'ure'); ?></a>
|
1113 |
# <a class="ure_rsb_link" style="background-image:url(<?php echo URE_PLUGIN_URL . 'images/changelog-icon.png'; ?>);" target="_blank" href="http://www.shinephp.com/user-role-editor-wordpress-plugin/#changelog"><?php _e('Changelog', 'ure'); ?></a>
|
1114 |
# wpml-name: f919d1248270e1eca5cc6a39253264f7
|
1115 |
-
#: ../includes/class-ure-lib.php:
|
1116 |
#, fuzzy
|
1117 |
msgid "Plugin download"
|
1118 |
msgstr "דף התוסף"
|
@@ -1121,7 +1281,7 @@ msgstr "דף התוסף"
|
|
1121 |
# <a class="ure_rsb_link" style="background-image:url(<?php echo URE_PLUGIN_URL . 'images/faq-icon.png'; ?>);" target="_blank" href="http://www.shinephp.com/user-role-editor-wordpress-plugin/#faq"><?php _e('FAQ', 'ure'); ?></a>
|
1122 |
# <?php
|
1123 |
# wpml-name: 1fe917b01f9a3f87fa2d7d3b7643fac1
|
1124 |
-
#: ../includes/class-ure-lib.php:
|
1125 |
msgid "FAQ"
|
1126 |
msgstr "שאלות נפוצות"
|
1127 |
|
@@ -1129,7 +1289,7 @@ msgstr "שאלות נפוצות"
|
|
1129 |
# <option value="none" selected="selected">' . __('None', 'ure') . '</option>';
|
1130 |
# $this->role_select_html = '<select id="user_role" name="user_role" onchange="ure_role_change(this.value);">';
|
1131 |
# wpml-name: 6adf97f83acf6453d4a6a4b1070f3754
|
1132 |
-
#: ../includes/class-ure-lib.php:
|
1133 |
msgid "None"
|
1134 |
msgstr "תרום"
|
1135 |
|
@@ -1137,11 +1297,11 @@ msgstr "תרום"
|
|
1137 |
#
|
1138 |
#
|
1139 |
# wpml-name: 7aa3fd37413ab803143d28fcc65287cf
|
1140 |
-
#: ../includes/class-ure-lib.php:
|
1141 |
msgid "Delete All Unused Roles"
|
1142 |
msgstr ""
|
1143 |
|
1144 |
-
#: ../includes/class-ure-lib.php:
|
1145 |
msgid "— No role for this site —"
|
1146 |
msgstr ""
|
1147 |
|
@@ -1161,14 +1321,23 @@ msgstr "מנהל-על של רשת"
|
|
1161 |
msgid "Change capabilities for user"
|
1162 |
msgstr "שינוי יכולות המשתמש"
|
1163 |
|
1164 |
-
|
1165 |
-
|
1166 |
-
|
1167 |
-
|
1168 |
-
#: ../includes/
|
1169 |
-
msgid "
|
1170 |
msgstr ""
|
1171 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1172 |
#: ../includes/class-ure-screen-help.php:16
|
1173 |
msgid ""
|
1174 |
"turn this option on in order to make the \"Administrator\" role available at "
|
@@ -1176,14 +1345,6 @@ msgid ""
|
|
1176 |
"for security reasons."
|
1177 |
msgstr ""
|
1178 |
|
1179 |
-
# <tr>
|
1180 |
-
# <td><label for="caps_readable"><?php esc_html_e('Show capabilities in the human readable form:', 'ure'); ?></label></td>
|
1181 |
-
# <td>
|
1182 |
-
# wpml-name: a19a4f985d31bbbd3d3b6d5dbd368ef0
|
1183 |
-
#: ../includes/class-ure-screen-help.php:18
|
1184 |
-
msgid "Show capabilities in the human readable form"
|
1185 |
-
msgstr ""
|
1186 |
-
|
1187 |
#: ../includes/class-ure-screen-help.php:19
|
1188 |
msgid ""
|
1189 |
"automatically converts capability names from the technical form for internal "
|
@@ -1191,14 +1352,6 @@ msgid ""
|
|
1191 |
"others posts\"."
|
1192 |
msgstr ""
|
1193 |
|
1194 |
-
# <?php echo $checked; ?> onclick="ure_turn_deprecated_caps(<?php echo $this->user_to_edit->ID; ?>);"/>
|
1195 |
-
# <label for="ure_show_deprecated_caps"><?php _e('Show deprecated capabilities', 'ure'); ?></label>
|
1196 |
-
# </td>
|
1197 |
-
# wpml-name: 130b09deaec4b13948be95555d546f25
|
1198 |
-
#: ../includes/class-ure-screen-help.php:21
|
1199 |
-
msgid "Show deprecated capabilities"
|
1200 |
-
msgstr "הצג הרשאות לפי מספר"
|
1201 |
-
|
1202 |
#: ../includes/class-ure-screen-help.php:22
|
1203 |
msgid ""
|
1204 |
"Capabilities like \"level_0\", \"level_1\" are deprecated and are not used "
|
5 |
msgstr ""
|
6 |
"Project-Id-Version: User Role Editor\n"
|
7 |
"Report-Msgid-Bugs-To: \n"
|
8 |
+
"POT-Creation-Date: 2014-06-11 11:20+0700\n"
|
9 |
"PO-Revision-Date: \n"
|
10 |
"Last-Translator: Vladimir Garagulya <vladimir@shinephp.com>\n"
|
11 |
"Language-Team: Ahrale, Atar4U.com <contact@atar4u.com>\n"
|
16 |
"X-Generator: Poedit 1.5.4\n"
|
17 |
"X-Poedit-SourceCharset: UTF-8\n"
|
18 |
|
19 |
+
# esc_html__('User Role Editor', 'ure'),
|
20 |
+
# esc_html__('User Role Editor', 'ure'),
|
21 |
+
# $this->key_capability, 'settings-'.URE_PLUGIN_FILE, array(&$this, 'settings'));
|
22 |
+
# wpml-name: c26ad3b67c7211a5872194d68cb5a8eb
|
23 |
+
#: ../includes/settings-template.php:17
|
24 |
+
#, fuzzy
|
25 |
+
msgid "User Role Editor - Options"
|
26 |
+
msgstr "User Role Editor"
|
27 |
+
|
28 |
+
#: ../includes/settings-template.php:21
|
29 |
+
msgid "General"
|
30 |
+
msgstr ""
|
31 |
+
|
32 |
+
#: ../includes/settings-template.php:22
|
33 |
+
msgid "Additional Modules"
|
34 |
+
msgstr ""
|
35 |
+
|
36 |
+
# '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'),
|
37 |
+
# 'default_role' => __('Default Role', 'ure'),
|
38 |
+
# 'set_new_default_role' => __('Set New Default Role', 'ure'),
|
39 |
+
# wpml-name: db135301eaf77a955b2b016f9b9d6a99
|
40 |
+
#: ../includes/settings-template.php:23
|
41 |
+
#, fuzzy
|
42 |
+
msgid "Default Roles"
|
43 |
+
msgstr "תפקיד ברירת מחדל"
|
44 |
+
|
45 |
+
#: ../includes/settings-template.php:27
|
46 |
+
msgid "Multisite"
|
47 |
+
msgstr ""
|
48 |
+
|
49 |
+
#: ../includes/settings-template.php:31
|
50 |
+
msgid "About"
|
51 |
+
msgstr ""
|
52 |
+
|
53 |
+
# <tr>
|
54 |
+
# <td><label for="show_admin_role"><?php esc_html_e('Show Administrator role at User Role Editor:', 'ure'); ?></label></td>
|
55 |
+
# <td><input type="checkbox" name="show_admin_role" id="show_admin_role" value="1"
|
56 |
+
# wpml-name: 03c5b123f148104af580b68ade741c67
|
57 |
+
#: ../includes/settings-template.php:42
|
58 |
+
#: ../includes/class-ure-screen-help.php:15
|
59 |
+
msgid "Show Administrator role at User Role Editor"
|
60 |
+
msgstr ""
|
61 |
+
|
62 |
+
# <tr>
|
63 |
+
# <td><label for="caps_readable"><?php esc_html_e('Show capabilities in the human readable form:', 'ure'); ?></label></td>
|
64 |
+
# <td>
|
65 |
+
# wpml-name: a19a4f985d31bbbd3d3b6d5dbd368ef0
|
66 |
+
#: ../includes/settings-template.php:50
|
67 |
+
#: ../includes/class-ure-screen-help.php:18
|
68 |
+
msgid "Show capabilities in the human readable form"
|
69 |
+
msgstr ""
|
70 |
+
|
71 |
+
# <?php echo $checked; ?> onclick="ure_turn_deprecated_caps(<?php echo $this->user_to_edit->ID; ?>);"/>
|
72 |
+
# <label for="ure_show_deprecated_caps"><?php _e('Show deprecated capabilities', 'ure'); ?></label>
|
73 |
+
# </td>
|
74 |
+
# wpml-name: 130b09deaec4b13948be95555d546f25
|
75 |
+
#: ../includes/settings-template.php:58 ../includes/ure-role-edit.php:40
|
76 |
+
#: ../includes/ure-user-edit.php:63 ../includes/class-ure-screen-help.php:21
|
77 |
+
msgid "Show deprecated capabilities"
|
78 |
+
msgstr "הצג הרשאות לפי מספר"
|
79 |
+
|
80 |
# <p class="submit">
|
81 |
# <input type="submit" class="button-primary" name="user_role_editor_settings_update" value="<?php _e('Save', 'ure') ?>" />
|
82 |
# </p>
|
83 |
# wpml-name: c9cc8cce247e49bae79f15173ce97354
|
84 |
+
#: ../includes/settings-template.php:69 ../includes/settings-template.php:101
|
85 |
+
#: ../includes/settings-template.php:131 ../includes/settings-template.php:160
|
86 |
msgid "Save"
|
87 |
msgstr "שמירה"
|
88 |
|
89 |
+
#: ../includes/settings-template.php:86
|
90 |
+
msgid "Count users without role"
|
91 |
+
msgstr ""
|
92 |
+
|
93 |
+
#: ../includes/settings-template.php:111
|
94 |
+
msgid "Primary default role: "
|
95 |
+
msgstr ""
|
96 |
+
|
97 |
+
#: ../includes/settings-template.php:118
|
98 |
+
msgid "Other default roles for new registered user: "
|
99 |
+
msgstr ""
|
100 |
+
|
101 |
+
#: ../includes/settings-template.php:124
|
102 |
msgid ""
|
103 |
"Note for multisite environment: take into account that other default roles "
|
104 |
"should exist at the site, in order to be assigned to the new registered "
|
105 |
"users."
|
106 |
msgstr ""
|
107 |
|
108 |
+
#: ../includes/settings-template.php:147
|
109 |
+
msgid "Allow non super administrators to create, edit, and delete users"
|
110 |
+
msgstr ""
|
111 |
+
|
112 |
#: ../includes/class-user-role-editor.php:185
|
113 |
msgid "Change role for users without role"
|
114 |
msgstr ""
|
151 |
# }
|
152 |
# wpml-name: c49182dc0c7a70b9cd2e10853d9ec6c7
|
153 |
#: ../includes/class-user-role-editor.php:520
|
154 |
+
#: ../includes/class-ure-lib.php:2207
|
155 |
msgid "Changelog"
|
156 |
msgstr "יומן שינויים"
|
157 |
|
165 |
# wpml-name: c26ad3b67c7211a5872194d68cb5a8eb
|
166 |
#: ../includes/class-user-role-editor.php:551
|
167 |
#: ../includes/class-user-role-editor.php:579
|
168 |
+
#: ../includes/class-user-role-editor.php:890
|
169 |
#: ../includes/class-ure-lib.php:225
|
170 |
msgid "User Role Editor"
|
171 |
msgstr "User Role Editor"
|
174 |
# $this->lib->show_message(__('User Role Editor options are updated', 'ure'));
|
175 |
# } else { // get options from the options storage
|
176 |
# wpml-name: aef323fbbd25d577170fff17c15cf857
|
177 |
+
#: ../includes/class-user-role-editor.php:636
|
178 |
+
#: ../includes/class-user-role-editor.php:654
|
179 |
+
#: ../includes/class-user-role-editor.php:698
|
180 |
msgid "User Role Editor options are updated"
|
181 |
msgstr "אפשרויות עורך תפקיד משתמש עודכנו"
|
182 |
|
184 |
# 'default_role' => __('Default Role', 'ure'),
|
185 |
# 'set_new_default_role' => __('Set New Default Role', 'ure'),
|
186 |
# wpml-name: db135301eaf77a955b2b016f9b9d6a99
|
187 |
+
#: ../includes/class-user-role-editor.php:682
|
188 |
#, fuzzy
|
189 |
msgid "Default Roles are updated"
|
190 |
msgstr "תפקיד ברירת מחדל"
|
191 |
|
192 |
+
#: ../includes/class-user-role-editor.php:706
|
193 |
msgid ""
|
194 |
"You do not have sufficient permissions to manage options for User Role "
|
195 |
"Editor."
|
196 |
msgstr ""
|
197 |
|
198 |
+
#: ../includes/class-user-role-editor.php:781
|
199 |
msgid "Insufficient permissions to work with User Role Editor"
|
200 |
msgstr ""
|
201 |
|
203 |
# 'select_all' => __('Select All', 'ure'),
|
204 |
# 'unselect_all' => __('Unselect All', 'ure'),
|
205 |
# wpml-name: 45e96c0a422ce8a1a6ec1bd5eb9625c6
|
206 |
+
#: ../includes/class-user-role-editor.php:835
|
207 |
msgid "Select All"
|
208 |
msgstr "בחירת הכל"
|
209 |
|
211 |
# 'unselect_all' => __('Unselect All', 'ure'),
|
212 |
# 'reverse' => __('Reverse', 'ure'),
|
213 |
# wpml-name: 016269c0d83a19a19a2ee0a4294740b4
|
214 |
+
#: ../includes/class-user-role-editor.php:836
|
215 |
msgid "Unselect All"
|
216 |
msgstr "לא לבחור שום דבר"
|
217 |
|
219 |
# 'reverse' => __('Reverse', 'ure'),
|
220 |
# 'update' => __('Update', 'ure'),
|
221 |
# wpml-name: 67f115c1fddc4ce1aeb1c754001585bc
|
222 |
+
#: ../includes/class-user-role-editor.php:837
|
223 |
msgid "Reverse"
|
224 |
msgstr "להפוך"
|
225 |
|
227 |
# 'update' => __('Update', 'ure'),
|
228 |
# 'confirm_submit' => __('Please confirm permissions update', 'ure'),
|
229 |
# wpml-name: 06933067aafd48425d67bcb01bba5cb6
|
230 |
+
#: ../includes/class-user-role-editor.php:838
|
231 |
msgid "Update"
|
232 |
msgstr "עדכן"
|
233 |
|
235 |
# 'confirm_submit' => __('Please confirm permissions update', 'ure'),
|
236 |
# 'add_new_role_title' => __('Add New Role', 'ure'),
|
237 |
# wpml-name: 85251872440cc94c6080a90451e018c4
|
238 |
+
#: ../includes/class-user-role-editor.php:839
|
239 |
msgid "Please confirm permissions update"
|
240 |
msgstr "נא לאשר את עדכון ההרשאות"
|
241 |
|
243 |
# 'add_new_role_title' => __('Add New Role', 'ure'),
|
244 |
# 'role_name_required' => __(' Role name (ID) can not be empty!', 'ure'),
|
245 |
# wpml-name: cf46e7fb1093a47a76f35fc61ab5d432
|
246 |
+
#: ../includes/class-user-role-editor.php:840
|
247 |
msgid "Add New Role"
|
248 |
msgstr "הוסף סוג משתמש חדש"
|
249 |
|
251 |
# 'role_name_required' => __(' Role name (ID) can not be empty!', 'ure'),
|
252 |
# 'role_name_valid_chars' => __(' Role name (ID) must contain latin characters, digits, hyphens or underscore only!', 'ure'),
|
253 |
# wpml-name: 1400ecabfd5a7c9527f71723da18dad0
|
254 |
+
#: ../includes/class-user-role-editor.php:841
|
255 |
msgid " Role name (ID) can not be empty!"
|
256 |
msgstr " שם התפקיד (מזהה) אינו יכול להישאר ריק!"
|
257 |
|
259 |
# 'role_name_valid_chars' => __(' Role name (ID) must contain latin characters, digits, hyphens or underscore only!', 'ure'),
|
260 |
# 'add_role' => __('Add Role', 'ure'),
|
261 |
# wpml-name: 7b94f04285f5efc287652bd40338e730
|
262 |
+
#: ../includes/class-user-role-editor.php:842
|
263 |
msgid ""
|
264 |
" Role name (ID) must contain latin characters, digits, hyphens or underscore "
|
265 |
"only!"
|
266 |
msgstr ""
|
267 |
" שם התפקיד (מזהה) חייב להכיל אותיות לטיניות, ספרות, מקפים או קו תחתון בלבד!"
|
268 |
|
269 |
+
#: ../includes/class-user-role-editor.php:843
|
270 |
msgid ""
|
271 |
" WordPress does not support numeric Role name (ID). Add latin characters to "
|
272 |
"it."
|
276 |
# 'add_role' => __('Add Role', 'ure'),
|
277 |
# 'delete_role' => __('Delete Role', 'ure'),
|
278 |
# wpml-name: 1453b39dcc15a372640d960c6db7db25
|
279 |
+
#: ../includes/class-user-role-editor.php:844
|
280 |
msgid "Add Role"
|
281 |
msgstr "הוספת תפקיד"
|
282 |
|
284 |
# 'delete_role' => __('Delete Role', 'ure'),
|
285 |
# 'cancel' => __('Cancel', 'ure'),
|
286 |
# wpml-name: 4e2626418b461869a386850b0f3b437f
|
287 |
+
#: ../includes/class-user-role-editor.php:845
|
288 |
msgid "Delete Role"
|
289 |
msgstr "מחיקת סוג משתמש"
|
290 |
|
292 |
# 'cancel' => __('Cancel', 'ure'),
|
293 |
# 'add_capability' => __('Add Capability', 'ure'),
|
294 |
# wpml-name: ea4788705e6873b424c65e91c2846b19
|
295 |
+
#: ../includes/class-user-role-editor.php:846
|
296 |
msgid "Cancel"
|
297 |
msgstr "ביטול"
|
298 |
|
300 |
# 'add_capability' => __('Add Capability', 'ure'),
|
301 |
# 'delete_capability' => __('Delete Capability', 'ure'),
|
302 |
# wpml-name: 39cc0b416ba0d26679547346b8c5cf8d
|
303 |
+
#: ../includes/class-user-role-editor.php:847
|
304 |
msgid "Add Capability"
|
305 |
msgstr "הוספת יכולת"
|
306 |
|
308 |
# 'delete_capability' => __('Delete Capability', 'ure'),
|
309 |
# 'delete_capability_warning' => __('Warning! Be careful - removing critical capability could crash some plugin or other custom code', 'ure'),
|
310 |
# wpml-name: 06844dd4ec4b29fa8a354aaacbd4861a
|
311 |
+
#: ../includes/class-user-role-editor.php:848
|
312 |
+
#: ../includes/class-user-role-editor.php:857
|
313 |
msgid "Delete Capability"
|
314 |
msgstr "מחיקת יכולת"
|
315 |
|
317 |
# 'reset' => __('Reset', 'ure'),
|
318 |
# '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'),
|
319 |
# wpml-name: 526d688f37a86d3c3f27d0c5016eb71d
|
320 |
+
#: ../includes/class-user-role-editor.php:849
|
321 |
msgid "Reset"
|
322 |
msgstr "איפוס"
|
323 |
|
324 |
+
#: ../includes/class-user-role-editor.php:850
|
325 |
msgid "DANGER! Resetting will restore default settings from WordPress Core."
|
326 |
msgstr ""
|
327 |
|
328 |
+
#: ../includes/class-user-role-editor.php:851
|
329 |
msgid ""
|
330 |
"If any plugins have changed capabilities in any way upon installation (such "
|
331 |
"as S2Member, WooCommerce, and many more), those capabilities will be DELETED!"
|
332 |
msgstr ""
|
333 |
|
334 |
+
#: ../includes/class-user-role-editor.php:852
|
335 |
msgid ""
|
336 |
"For more information on how to undo changes and restore plugin capabilities "
|
337 |
"go to"
|
341 |
# __('Contributor', 'ure');
|
342 |
# __('Subscriber', 'ure');
|
343 |
# wpml-name: 23d21ad4dea7aadf907e5e601b1905e6
|
344 |
+
#: ../includes/class-user-role-editor.php:854
|
345 |
msgid "Continue?"
|
346 |
msgstr ""
|
347 |
|
349 |
# 'default_role' => __('Default Role', 'ure'),
|
350 |
# 'set_new_default_role' => __('Set New Default Role', 'ure'),
|
351 |
# wpml-name: db135301eaf77a955b2b016f9b9d6a99
|
352 |
+
#: ../includes/class-user-role-editor.php:855
|
353 |
msgid "Default Role"
|
354 |
msgstr "תפקיד ברירת מחדל"
|
355 |
|
357 |
# 'set_new_default_role' => __('Set New Default Role', 'ure'),
|
358 |
# 'delete_capability' => __('Delete Capability', 'ure'),
|
359 |
# wpml-name: f28d52a1096a73cff427d1216dc578ad
|
360 |
+
#: ../includes/class-user-role-editor.php:856
|
361 |
msgid "Set New Default Role"
|
362 |
msgstr "הגדר תפקיד ברירת מחדל חדש"
|
363 |
|
365 |
# 'delete_capability_warning' => __('Warning! Be careful - removing critical capability could crash some plugin or other custom code', 'ure'),
|
366 |
# 'capability_name_required' => __(' Capability name (ID) can not be empty!', 'ure'),
|
367 |
# wpml-name: b8827a096ab461b8e26931adf82c8d85
|
368 |
+
#: ../includes/class-user-role-editor.php:858
|
369 |
msgid ""
|
370 |
"Warning! Be careful - removing critical capability could crash some plugin "
|
371 |
"or other custom code"
|
377 |
# 'capability_name_required' => __(' Capability name (ID) can not be empty!', 'ure'),
|
378 |
# 'capability_name_valid_chars' => __(' Capability name (ID) must contain latin characters, digits, hyphens or underscore only!', 'ure'),
|
379 |
# wpml-name: ba38256d66e3ae37b7b16052a0f94729
|
380 |
+
#: ../includes/class-user-role-editor.php:859
|
381 |
msgid " Capability name (ID) can not be empty!"
|
382 |
msgstr " שם היכולת (מזהה) לא יכול להיות ריק!"
|
383 |
|
385 |
# 'capability_name_valid_chars' => __(' Capability name (ID) must contain latin characters, digits, hyphens or underscore only!', 'ure'),
|
386 |
# ) );
|
387 |
# wpml-name: 6d4c115be3e7b4f1fd70112642c9a72d
|
388 |
+
#: ../includes/class-user-role-editor.php:860
|
389 |
msgid ""
|
390 |
" Capability name (ID) must contain latin characters, digits, hyphens or "
|
391 |
"underscore only!"
|
396 |
# <th scope="row"><?php _e('Other Roles', 'ure'); ?></th>
|
397 |
# <td>
|
398 |
# wpml-name: a5f40dc2b5f2552187d0326e77e267eb
|
399 |
+
#: ../includes/class-user-role-editor.php:893
|
400 |
+
#: ../includes/class-user-role-editor.php:922
|
401 |
msgid "Other Roles"
|
402 |
msgstr "תפקידים אחרים"
|
403 |
|
405 |
# 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>';
|
406 |
# ?>
|
407 |
# wpml-name: 7dce122004969d56ae2e0245cb754d35
|
408 |
+
#: ../includes/class-user-role-editor.php:904
|
409 |
msgid "Edit"
|
410 |
msgstr "עריכה"
|
411 |
|
412 |
+
#: ../includes/ure-role-edit.php:17
|
413 |
+
msgid "Select Role and change its capabilities:"
|
414 |
+
msgstr ""
|
415 |
+
|
416 |
+
#: ../includes/ure-role-edit.php:30 ../includes/ure-user-edit.php:53
|
417 |
+
msgid "Show capabilities in human readable form"
|
418 |
+
msgstr ""
|
419 |
+
|
420 |
#
|
421 |
#
|
422 |
#
|
425 |
msgid "If checked, then apply action to ALL sites of this Network"
|
426 |
msgstr "אם סומן, החל פעולה על כל האתרים ברשת זאת"
|
427 |
|
428 |
+
#: ../includes/ure-role-edit.php:56
|
429 |
+
msgid "Apply to All Sites"
|
430 |
+
msgstr ""
|
431 |
+
|
432 |
+
# wp_nonce_url("users.php?page=users-".URE_PLUGIN_FILE."&object=user&user_id={$user->ID}", "ure_user_{$user->ID}") .
|
433 |
+
# '">' . __('Capabilities', 'ure') . '</a>';
|
434 |
+
# }
|
435 |
+
# wpml-name: 82ec2cd6fda87713f588da75c3b1d0ed
|
436 |
+
#: ../includes/ure-role-edit.php:63 ../includes/ure-user-edit.php:109
|
437 |
+
#, fuzzy
|
438 |
+
msgid "Core capabilities:"
|
439 |
+
msgstr "יכולות"
|
440 |
+
|
441 |
+
#: ../includes/ure-role-edit.php:65 ../includes/ure-user-edit.php:111
|
442 |
+
msgid "Quick filter:"
|
443 |
+
msgstr ""
|
444 |
+
|
445 |
+
# wp_nonce_url("users.php?page=users-".URE_PLUGIN_FILE."&object=user&user_id={$user->ID}", "ure_user_{$user->ID}") .
|
446 |
+
# '">' . __('Capabilities', 'ure') . '</a>';
|
447 |
+
# }
|
448 |
+
# wpml-name: 82ec2cd6fda87713f588da75c3b1d0ed
|
449 |
+
#: ../includes/ure-role-edit.php:83 ../includes/ure-user-edit.php:130
|
450 |
+
#, fuzzy
|
451 |
+
msgid "Custom capabilities:"
|
452 |
+
msgstr "יכולות"
|
453 |
+
|
454 |
# if (!$this->editor_init0()) {
|
455 |
# $this->show_message(__('Error: wrong request', 'URE'));
|
456 |
# return false;
|
459 |
msgid "Error: wrong request"
|
460 |
msgstr "שגיאה: בקשה מוטעית"
|
461 |
|
462 |
+
# 'add_new_role_title' => __('Add New Role', 'ure'),
|
463 |
+
# 'role_name_required' => __(' Role name (ID) can not be empty!', 'ure'),
|
464 |
+
# 'role_name_valid_chars' => __(' Role name (ID) must contain latin characters, digits, hyphens or underscore only!', 'ure'),
|
465 |
+
# wpml-name: 1400ecabfd5a7c9527f71723da18dad0
|
466 |
+
#: ../includes/class-ure-lib.php:175
|
467 |
+
#, fuzzy
|
468 |
+
msgid "Role name (ID): "
|
469 |
+
msgstr " שם התפקיד (מזהה) אינו יכול להישאר ריק!"
|
470 |
+
|
471 |
+
#: ../includes/class-ure-lib.php:177
|
472 |
+
msgid "Display Role Name: "
|
473 |
+
msgstr ""
|
474 |
+
|
475 |
+
#: ../includes/class-ure-lib.php:179
|
476 |
+
msgid "Make copy of: "
|
477 |
+
msgstr ""
|
478 |
+
|
479 |
+
# 'add_role' => __('Add Role', 'ure'),
|
480 |
+
# 'delete_role' => __('Delete Role', 'ure'),
|
481 |
+
# 'cancel' => __('Cancel', 'ure'),
|
482 |
+
# wpml-name: 4e2626418b461869a386850b0f3b437f
|
483 |
+
#: ../includes/class-ure-lib.php:186
|
484 |
+
#, fuzzy
|
485 |
+
msgid "Select Role:"
|
486 |
+
msgstr "מחיקת סוג משתמש"
|
487 |
+
|
488 |
+
# 'add_role' => __('Add Role', 'ure'),
|
489 |
+
# 'delete_role' => __('Delete Role', 'ure'),
|
490 |
+
# 'cancel' => __('Cancel', 'ure'),
|
491 |
+
# wpml-name: 4e2626418b461869a386850b0f3b437f
|
492 |
+
#: ../includes/class-ure-lib.php:201
|
493 |
+
#, fuzzy
|
494 |
+
msgid "Delete:"
|
495 |
+
msgstr "מחיקת סוג משתמש"
|
496 |
+
|
497 |
+
# 'delete_capability_warning' => __('Warning! Be careful - removing critical capability could crash some plugin or other custom code', 'ure'),
|
498 |
+
# 'capability_name_required' => __(' Capability name (ID) can not be empty!', 'ure'),
|
499 |
+
# 'capability_name_valid_chars' => __(' Capability name (ID) must contain latin characters, digits, hyphens or underscore only!', 'ure'),
|
500 |
+
# wpml-name: ba38256d66e3ae37b7b16052a0f94729
|
501 |
+
#: ../includes/class-ure-lib.php:208
|
502 |
+
#, fuzzy
|
503 |
+
msgid "Capability name (ID): "
|
504 |
+
msgstr " שם היכולת (מזהה) לא יכול להיות ריק!"
|
505 |
+
|
506 |
# if (!isset($this->roles[$_POST['user_role']])) {
|
507 |
# $mess = __('Error: ', 'ure') . __('Role', 'ure') . ' <em>' . esc_html($_POST['user_role']) . '</em> ' . __('does not exist', 'ure');
|
508 |
# $this->current_role = '';
|
579 |
# $link = '<a href="' . $url . '" title="read about ' . $capability . ' user capability" target="new"><img src="' . URE_PLUGIN_URL . '/images/help.png" alt="' . __('Help', 'ure') . '" /></a>';
|
580 |
# } else {
|
581 |
# wpml-name: 6a26f548831e6a8c26bfbbd9f6ec61e0
|
582 |
+
#: ../includes/class-ure-lib.php:1312
|
583 |
msgid "Help"
|
584 |
msgstr "עזרה"
|
585 |
|
587 |
# $this->show_message('Error! ' . __('Error is occur. Please check the log file.', 'ure'));
|
588 |
# }
|
589 |
# wpml-name: 766a60ac9e13c76c28bdf714ddecaa25
|
590 |
+
#: ../includes/class-ure-lib.php:1662
|
591 |
msgid "Error is occur. Please check the log file."
|
592 |
msgstr "ארעה שגיאה, אנא בדוק את קובץ היומן."
|
593 |
|
595 |
# return __('Error: Role ID must contain latin characters, digits, hyphens or underscore only!', 'ure');
|
596 |
# }
|
597 |
# wpml-name: f9182094e24a9e2fbb7317b1724a69c9
|
598 |
+
#: ../includes/class-ure-lib.php:1705
|
599 |
msgid ""
|
600 |
"Error: Role ID must contain latin characters, digits, hyphens or underscore "
|
601 |
"only!"
|
602 |
msgstr ""
|
603 |
"שגיאה: תפקיד המשתמש חייב לכלול אותיות לטיניות, ספרות, מקפים וקו תחתון בלבד!"
|
604 |
|
605 |
+
#: ../includes/class-ure-lib.php:1709
|
606 |
msgid ""
|
607 |
"Error: WordPress does not support numeric Role name (ID). Add latin "
|
608 |
"characters to it."
|
612 |
# return sprintf('Error! ' . __('Role %s exists already', 'ure'), $user_role_id);
|
613 |
# }
|
614 |
# wpml-name: 61b6d86154b5437be56e6565f2820391
|
615 |
+
#: ../includes/class-ure-lib.php:1724
|
616 |
#, php-format
|
617 |
msgid "Role %s exists already"
|
618 |
msgstr "סוג המשתמש %s כבר קיים"
|
621 |
# $mess = 'Error! ' . __('Error is encountered during new role create operation', 'ure');
|
622 |
# } else {
|
623 |
# wpml-name: e0618b1a4160611a46b1b95acab0821c
|
624 |
+
#: ../includes/class-ure-lib.php:1739
|
625 |
msgid "Error is encountered during new role create operation"
|
626 |
msgstr "ארעה שגיאה בעת יצירת סוג המשתמש החדש"
|
627 |
|
629 |
# $mess = sprintf(__('Role %s is created successfully', 'ure'), $user_role_name);
|
630 |
# }
|
631 |
# wpml-name: 1613afddcbdf86bd48660e5443be00ff
|
632 |
+
#: ../includes/class-ure-lib.php:1741
|
633 |
#, php-format
|
634 |
msgid "Role %s is created successfully"
|
635 |
msgstr "סוג המשתמש %s נוצר בהצלחה"
|
638 |
# $mess = 'Error! ' . __('Error encountered during role delete operation', 'ure');
|
639 |
# } else {
|
640 |
# wpml-name: 5ca27dda122445e597586a22e18088e6
|
641 |
+
#: ../includes/class-ure-lib.php:1810
|
642 |
msgid "Error encountered during role delete operation"
|
643 |
msgstr "ארעה שגיאה במהלך נסיון המחיקה של סוג המשתמש"
|
644 |
|
646 |
# $mess = sprintf(__('Role %s is deleted successfully', 'ure'), $role);
|
647 |
# }
|
648 |
# wpml-name: 53552ec95bc8303219e8c39375763370
|
649 |
+
#: ../includes/class-ure-lib.php:1812
|
650 |
msgid "Unused roles are deleted successfully"
|
651 |
msgstr ""
|
652 |
|
654 |
# $mess = sprintf(__('Role %s is deleted successfully', 'ure'), $role);
|
655 |
# }
|
656 |
# wpml-name: 53552ec95bc8303219e8c39375763370
|
657 |
+
#: ../includes/class-ure-lib.php:1814
|
658 |
#, php-format
|
659 |
msgid "Role %s is deleted successfully"
|
660 |
msgstr "סוג המשתמש %s נמחק בהצלחה"
|
663 |
# $errorMessage = 'Error! ' . __('Error encountered during default role change operation', 'ure');
|
664 |
# if (isset($wp_roles->role_objects[$user_role_id]) && $user_role_id !== 'administrator') {
|
665 |
# wpml-name: b64bfe4842bc0638b79a24687976394e
|
666 |
+
#: ../includes/class-ure-lib.php:1839
|
667 |
msgid "Error encountered during default role change operation"
|
668 |
msgstr "ארעה שגיאה בעת הנסיון לשנות את סוג משתמש ברירת מחדל"
|
669 |
|
671 |
# $mess = sprintf(__('Default role for new users is set to %s successfully', 'ure'), $wp_roles->role_names[$user_role_id]);
|
672 |
# }
|
673 |
# wpml-name: 94978d82edc73eba0f44bc7bceb299f4
|
674 |
+
#: ../includes/class-ure-lib.php:1845
|
675 |
#, php-format
|
676 |
msgid "Default role for new users is set to %s successfully"
|
677 |
msgstr "סוג המשתמש %s נקבע כברירת מחדל"
|
680 |
# __('Editor', 'ure');
|
681 |
# __('Author', 'ure');
|
682 |
# wpml-name: 344a7f427fb765610ef96eb7bce95257
|
683 |
+
#: ../includes/class-ure-lib.php:1864
|
684 |
msgid "Editor"
|
685 |
msgstr "עורך"
|
686 |
|
688 |
# __('Author', 'ure');
|
689 |
# __('Contributor', 'ure');
|
690 |
# wpml-name: a517747c3d12f99244ae598910d979c5
|
691 |
+
#: ../includes/class-ure-lib.php:1865
|
692 |
msgid "Author"
|
693 |
msgstr "כותב"
|
694 |
|
696 |
# __('Contributor', 'ure');
|
697 |
# __('Subscriber', 'ure');
|
698 |
# wpml-name: 23d21ad4dea7aadf907e5e601b1905e6
|
699 |
+
#: ../includes/class-ure-lib.php:1866
|
700 |
msgid "Contributor"
|
701 |
msgstr "תורם"
|
702 |
|
704 |
# __('Subscriber', 'ure');
|
705 |
# // Standard WordPress capabilities
|
706 |
# wpml-name: 992c4a5b4628d8ebf671cf460254ee81
|
707 |
+
#: ../includes/class-ure-lib.php:1867
|
708 |
msgid "Subscriber"
|
709 |
msgstr "מנוי"
|
710 |
|
712 |
# __('Switch themes', 'ure');
|
713 |
# __('Edit themes', 'ure');
|
714 |
# wpml-name: 87d980c0c79638536655ce7fa0a4b85d
|
715 |
+
#: ../includes/class-ure-lib.php:1869
|
716 |
msgid "Switch themes"
|
717 |
msgstr "החלפת תבניות"
|
718 |
|
720 |
# __('Edit themes', 'ure');
|
721 |
# __('Activate plugins', 'ure');
|
722 |
# wpml-name: 8395d1904c778ee1b2762e07a6a03878
|
723 |
+
#: ../includes/class-ure-lib.php:1870
|
724 |
msgid "Edit themes"
|
725 |
msgstr "עריכת תבניות"
|
726 |
|
728 |
# __('Activate plugins', 'ure');
|
729 |
# __('Edit plugins', 'ure');
|
730 |
# wpml-name: c38bc47406355ef06ad3e10a98505536
|
731 |
+
#: ../includes/class-ure-lib.php:1871
|
732 |
msgid "Activate plugins"
|
733 |
msgstr "הפעלת תוספים"
|
734 |
|
736 |
# __('Edit plugins', 'ure');
|
737 |
# __('Edit users', 'ure');
|
738 |
# wpml-name: a6e42eb142c87e881a0d0c92acf4ef9f
|
739 |
+
#: ../includes/class-ure-lib.php:1872
|
740 |
msgid "Edit plugins"
|
741 |
msgstr "עריכת תוספים"
|
742 |
|
744 |
# __('Edit users', 'ure');
|
745 |
# __('Edit files', 'ure');
|
746 |
# wpml-name: 70118d8574d7c13da8c0a7c2acc0f659
|
747 |
+
#: ../includes/class-ure-lib.php:1873
|
748 |
msgid "Edit users"
|
749 |
msgstr "עריכת משתמשים"
|
750 |
|
752 |
# __('Edit files', 'ure');
|
753 |
# __('Manage options', 'ure');
|
754 |
# wpml-name: 91c6e7a54b91cdc161f71958c597ed11
|
755 |
+
#: ../includes/class-ure-lib.php:1874
|
756 |
msgid "Edit files"
|
757 |
msgstr "עריכת קבצים"
|
758 |
|
760 |
# __('Manage options', 'ure');
|
761 |
# __('Moderate comments', 'ure');
|
762 |
# wpml-name: 9f285ad90d3e9f5122241f2e8abd3836
|
763 |
+
#: ../includes/class-ure-lib.php:1875
|
764 |
msgid "Manage options"
|
765 |
msgstr "ניהול אפשרויות אתר"
|
766 |
|
768 |
# __('Moderate comments', 'ure');
|
769 |
# __('Manage categories', 'ure');
|
770 |
# wpml-name: abb293cb5d17f4acca429ea13d74c593
|
771 |
+
#: ../includes/class-ure-lib.php:1876
|
772 |
msgid "Moderate comments"
|
773 |
msgstr "ניהול תגובות"
|
774 |
|
776 |
# __('Manage categories', 'ure');
|
777 |
# __('Manage links', 'ure');
|
778 |
# wpml-name: 74c12b9adae95b65772e8c9c9c8e5af3
|
779 |
+
#: ../includes/class-ure-lib.php:1877
|
780 |
msgid "Manage categories"
|
781 |
msgstr "ניהול קטגוריות"
|
782 |
|
784 |
# __('Manage links', 'ure');
|
785 |
# __('Upload files', 'ure');
|
786 |
# wpml-name: fa1a08e2a749c9f330c9a8e60cac9cc3
|
787 |
+
#: ../includes/class-ure-lib.php:1878
|
788 |
msgid "Manage links"
|
789 |
msgstr "ניהול קישורים"
|
790 |
|
792 |
# __('Upload files', 'ure');
|
793 |
# __('Import', 'ure');
|
794 |
# wpml-name: c7de86f69db264c3950d8ae46ed2e33f
|
795 |
+
#: ../includes/class-ure-lib.php:1879
|
796 |
msgid "Upload files"
|
797 |
msgstr "העלאת קבצים"
|
798 |
|
800 |
# __('Import', 'ure');
|
801 |
# __('Unfiltered html', 'ure');
|
802 |
# wpml-name: 72d6d7a1885885bb55a565fd1070581a
|
803 |
+
#: ../includes/class-ure-lib.php:1880
|
804 |
msgid "Import"
|
805 |
msgstr "יבוא"
|
806 |
|
808 |
# __('Unfiltered html', 'ure');
|
809 |
# __('Edit posts', 'ure');
|
810 |
# wpml-name: fdd95e5640d6d73230b7544ac261457a
|
811 |
+
#: ../includes/class-ure-lib.php:1881
|
812 |
msgid "Unfiltered html"
|
813 |
msgstr "עריכת HTML"
|
814 |
|
816 |
# __('Edit posts', 'ure');
|
817 |
# __('Edit others posts', 'ure');
|
818 |
# wpml-name: 9cd92b1d45220e13e5e257f185f3fec3
|
819 |
+
#: ../includes/class-ure-lib.php:1882
|
820 |
msgid "Edit posts"
|
821 |
msgstr "עריכת פוסטים"
|
822 |
|
824 |
# __('Edit others posts', 'ure');
|
825 |
# __('Edit published posts', 'ure');
|
826 |
# wpml-name: 5fbf3fd2d5fd1e393df2c639fa16dbc9
|
827 |
+
#: ../includes/class-ure-lib.php:1883
|
828 |
msgid "Edit others posts"
|
829 |
msgstr "עריכת פוסטים של אחרים"
|
830 |
|
832 |
# __('Edit published posts', 'ure');
|
833 |
# __('Publish posts', 'ure');
|
834 |
# wpml-name: d42efc04e7900de59ed3667c971e9e9d
|
835 |
+
#: ../includes/class-ure-lib.php:1884
|
836 |
msgid "Edit published posts"
|
837 |
msgstr "עריכת פוסטים שפורסמו"
|
838 |
|
840 |
# __('Publish posts', 'ure');
|
841 |
# __('Edit pages', 'ure');
|
842 |
# wpml-name: 64a4f8f7a855c54e1ca7c910439f5e90
|
843 |
+
#: ../includes/class-ure-lib.php:1885
|
844 |
msgid "Publish posts"
|
845 |
msgstr "פוסטים שפורסמו"
|
846 |
|
848 |
# __('Edit pages', 'ure');
|
849 |
# __('Read', 'ure');
|
850 |
# wpml-name: e7a51430fa0fbb32587c083ffae4b525
|
851 |
+
#: ../includes/class-ure-lib.php:1886
|
852 |
msgid "Edit pages"
|
853 |
msgstr "עריכת עמודים"
|
854 |
|
856 |
# __('Read', 'ure');
|
857 |
# __('Level 10', 'ure');
|
858 |
# wpml-name: 7a1a5f3e79fdc91edf2f5ead9d66abb4
|
859 |
+
#: ../includes/class-ure-lib.php:1887
|
860 |
msgid "Read"
|
861 |
msgstr "קורא"
|
862 |
|
864 |
# __('Level 10', 'ure');
|
865 |
# __('Level 9', 'ure');
|
866 |
# wpml-name: b3ef2f43e2782f8d95a4c22d577cb1bc
|
867 |
+
#: ../includes/class-ure-lib.php:1888
|
868 |
msgid "Level 10"
|
869 |
msgstr "דרגה 10"
|
870 |
|
872 |
# __('Level 9', 'ure');
|
873 |
# __('Level 8', 'ure');
|
874 |
# wpml-name: d48252bc9cffec4bed5028a7c71d8196
|
875 |
+
#: ../includes/class-ure-lib.php:1889
|
876 |
msgid "Level 9"
|
877 |
msgstr "דרגה 9"
|
878 |
|
880 |
# __('Level 8', 'ure');
|
881 |
# __('Level 7', 'ure');
|
882 |
# wpml-name: 625fef0c34a92b3685266a47f16c85dd
|
883 |
+
#: ../includes/class-ure-lib.php:1890
|
884 |
msgid "Level 8"
|
885 |
msgstr "דרגה 8"
|
886 |
|
888 |
# __('Level 7', 'ure');
|
889 |
# __('Level 6', 'ure');
|
890 |
# wpml-name: a9acd6f427950dc61cac50b4e9ee6bc4
|
891 |
+
#: ../includes/class-ure-lib.php:1891
|
892 |
msgid "Level 7"
|
893 |
msgstr "דרגה 7"
|
894 |
|
896 |
# __('Level 6', 'ure');
|
897 |
# __('Level 5', 'ure');
|
898 |
# wpml-name: b30ce92fb9295725ef29254ba5ae17e1
|
899 |
+
#: ../includes/class-ure-lib.php:1892
|
900 |
msgid "Level 6"
|
901 |
msgstr "דרגה 6"
|
902 |
|
904 |
# __('Level 5', 'ure');
|
905 |
# __('Level 4', 'ure');
|
906 |
# wpml-name: 05988e43e8f2eb5efdddc2b467c4b2f3
|
907 |
+
#: ../includes/class-ure-lib.php:1893
|
908 |
msgid "Level 5"
|
909 |
msgstr "דרגה 5"
|
910 |
|
912 |
# __('Level 4', 'ure');
|
913 |
# __('Level 3', 'ure');
|
914 |
# wpml-name: 309531bbe9a9d3228cd0687ec6e66bed
|
915 |
+
#: ../includes/class-ure-lib.php:1894
|
916 |
msgid "Level 4"
|
917 |
msgstr "דרגה 4"
|
918 |
|
920 |
# __('Level 3', 'ure');
|
921 |
# __('Level 2', 'ure');
|
922 |
# wpml-name: 8f60a63315c55e659b1a2dd5064ceae8
|
923 |
+
#: ../includes/class-ure-lib.php:1895
|
924 |
msgid "Level 3"
|
925 |
msgstr "דרגה 3"
|
926 |
|
928 |
# __('Level 2', 'ure');
|
929 |
# __('Level 1', 'ure');
|
930 |
# wpml-name: 228e9da47384bacde793a2b78d488bb0
|
931 |
+
#: ../includes/class-ure-lib.php:1896
|
932 |
msgid "Level 2"
|
933 |
msgstr "דרגה 2"
|
934 |
|
936 |
# __('Level 1', 'ure');
|
937 |
# __('Level 0', 'ure');
|
938 |
# wpml-name: 5afaf1679ad0887adebaddb40e0bd3f7
|
939 |
+
#: ../includes/class-ure-lib.php:1897
|
940 |
msgid "Level 1"
|
941 |
msgstr "דרגה 1"
|
942 |
|
944 |
# __('Level 0', 'ure');
|
945 |
# __('Edit others pages', 'ure');
|
946 |
# wpml-name: 057e95a59e032dbed970592dd1245092
|
947 |
+
#: ../includes/class-ure-lib.php:1898
|
948 |
msgid "Level 0"
|
949 |
msgstr "דרגה 0"
|
950 |
|
952 |
# __('Edit others pages', 'ure');
|
953 |
# __('Edit published pages', 'ure');
|
954 |
# wpml-name: b10af907824940fe6a5aa0a77c62be6f
|
955 |
+
#: ../includes/class-ure-lib.php:1899
|
956 |
msgid "Edit others pages"
|
957 |
msgstr "עריכת דפים של אחרים"
|
958 |
|
960 |
# __('Edit published pages', 'ure');
|
961 |
# __('Publish pages', 'ure');
|
962 |
# wpml-name: c5bfc24b0b891c9465134b83b2c6c259
|
963 |
+
#: ../includes/class-ure-lib.php:1900
|
964 |
msgid "Edit published pages"
|
965 |
msgstr "עריכת דפים שפורסמו"
|
966 |
|
968 |
# __('Publish pages', 'ure');
|
969 |
# __('Delete pages', 'ure');
|
970 |
# wpml-name: 70d789f104acf7aa83b1c5ab230f8e7c
|
971 |
+
#: ../includes/class-ure-lib.php:1901
|
972 |
msgid "Publish pages"
|
973 |
msgstr "פרסום דפים"
|
974 |
|
976 |
# __('Delete pages', 'ure');
|
977 |
# __('Delete others pages', 'ure');
|
978 |
# wpml-name: b665a2b3cb33c08decc52b8a3f3d1742
|
979 |
+
#: ../includes/class-ure-lib.php:1902
|
980 |
msgid "Delete pages"
|
981 |
msgstr "מחיקת דפים"
|
982 |
|
984 |
# __('Delete others pages', 'ure');
|
985 |
# __('Delete published pages', 'ure');
|
986 |
# wpml-name: 23eaa8e106fde2a76d80bc907f55ab7e
|
987 |
+
#: ../includes/class-ure-lib.php:1903
|
988 |
msgid "Delete others pages"
|
989 |
msgstr "מחיקת דפים של אחרים"
|
990 |
|
992 |
# __('Delete published pages', 'ure');
|
993 |
# __('Delete posts', 'ure');
|
994 |
# wpml-name: 75c6bfee9157bbc48bfc4d50baab89e0
|
995 |
+
#: ../includes/class-ure-lib.php:1904
|
996 |
msgid "Delete published pages"
|
997 |
msgstr "מחיקת דפים שפורסמו"
|
998 |
|
1000 |
# __('Delete posts', 'ure');
|
1001 |
# __('Delete others posts', 'ure');
|
1002 |
# wpml-name: 3dce6f688c85f06c63224b5c3be13919
|
1003 |
+
#: ../includes/class-ure-lib.php:1905
|
1004 |
msgid "Delete posts"
|
1005 |
msgstr "מחיקת פוסטים"
|
1006 |
|
1008 |
# __('Delete others posts', 'ure');
|
1009 |
# __('Delete published posts', 'ure');
|
1010 |
# wpml-name: c0496287732814df690c8966027a58d6
|
1011 |
+
#: ../includes/class-ure-lib.php:1906
|
1012 |
msgid "Delete others posts"
|
1013 |
msgstr "מחיקת פוסטים של אחרים"
|
1014 |
|
1016 |
# __('Delete published posts', 'ure');
|
1017 |
# __('Delete private posts', 'ure');
|
1018 |
# wpml-name: b0a2d2039494d73f81f4e476bfda24da
|
1019 |
+
#: ../includes/class-ure-lib.php:1907
|
1020 |
msgid "Delete published posts"
|
1021 |
msgstr "מחיקת פוסטים שפורסמו"
|
1022 |
|
1024 |
# __('Delete private posts', 'ure');
|
1025 |
# __('Edit private posts', 'ure');
|
1026 |
# wpml-name: dcd02c374764e49b36f0f959cc2917bb
|
1027 |
+
#: ../includes/class-ure-lib.php:1908
|
1028 |
msgid "Delete private posts"
|
1029 |
msgstr "מחיקת פוסטים פרטיים"
|
1030 |
|
1032 |
# __('Edit private posts', 'ure');
|
1033 |
# __('Read private posts', 'ure');
|
1034 |
# wpml-name: da9ee842794f7caf9fa32271073d5f7a
|
1035 |
+
#: ../includes/class-ure-lib.php:1909
|
1036 |
msgid "Edit private posts"
|
1037 |
msgstr "עריכת פוסטים פרטיים"
|
1038 |
|
1040 |
# __('Read private posts', 'ure');
|
1041 |
# __('Delete private pages', 'ure');
|
1042 |
# wpml-name: eab0355307288f6480f8c53a0d953d79
|
1043 |
+
#: ../includes/class-ure-lib.php:1910
|
1044 |
msgid "Read private posts"
|
1045 |
msgstr "קריאת פוסטים פרטיים"
|
1046 |
|
1048 |
# __('Delete private pages', 'ure');
|
1049 |
# __('Edit private pages', 'ure');
|
1050 |
# wpml-name: 2136c12e2beeadfe0da80a36ef967eca
|
1051 |
+
#: ../includes/class-ure-lib.php:1911
|
1052 |
msgid "Delete private pages"
|
1053 |
msgstr "מחיקת עמודים פרטיים"
|
1054 |
|
1056 |
# __('Edit private pages', 'ure');
|
1057 |
# __('Read private pages', 'ure');
|
1058 |
# wpml-name: 4f3859ba470cb61f22a600a93c4ce11f
|
1059 |
+
#: ../includes/class-ure-lib.php:1912
|
1060 |
msgid "Edit private pages"
|
1061 |
msgstr "מחיקת עמודים פרטיים"
|
1062 |
|
1064 |
# __('Read private pages', 'ure');
|
1065 |
# __('Delete users', 'ure');
|
1066 |
# wpml-name: 5faa3f2e9585e107dc5f23748a825882
|
1067 |
+
#: ../includes/class-ure-lib.php:1913
|
1068 |
msgid "Read private pages"
|
1069 |
msgstr "קריאת עמודים פרטיים"
|
1070 |
|
1072 |
# __('Delete users', 'ure');
|
1073 |
# __('Create users', 'ure');
|
1074 |
# wpml-name: 61c484c7f1638a9dd4237cb666b91c1f
|
1075 |
+
#: ../includes/class-ure-lib.php:1914
|
1076 |
msgid "Delete users"
|
1077 |
msgstr "מחיקת משתמשים"
|
1078 |
|
1080 |
# __('Create users', 'ure');
|
1081 |
# __('Unfiltered upload', 'ure');
|
1082 |
# wpml-name: 6cf6d76fc00f8dd12af98a37d11f623e
|
1083 |
+
#: ../includes/class-ure-lib.php:1915
|
1084 |
msgid "Create users"
|
1085 |
msgstr "יצירת משתמשים"
|
1086 |
|
1088 |
# __('Unfiltered upload', 'ure');
|
1089 |
# __('Edit dashboard', 'ure');
|
1090 |
# wpml-name: 7110d42a34cbb3316d6d0c658fa34c86
|
1091 |
+
#: ../includes/class-ure-lib.php:1916
|
1092 |
msgid "Unfiltered upload"
|
1093 |
msgstr "העלאת קבצים חופשית"
|
1094 |
|
1096 |
# __('Edit dashboard', 'ure');
|
1097 |
# __('Update plugins', 'ure');
|
1098 |
# wpml-name: b5577d27ebfdd60a3bda83ae726d574b
|
1099 |
+
#: ../includes/class-ure-lib.php:1917
|
1100 |
msgid "Edit dashboard"
|
1101 |
msgstr "שינוי לוח הבקרה"
|
1102 |
|
1104 |
# __('Update plugins', 'ure');
|
1105 |
# __('Delete plugins', 'ure');
|
1106 |
# wpml-name: 23c5b17dc24e40fa47ca6588932d32f7
|
1107 |
+
#: ../includes/class-ure-lib.php:1918
|
1108 |
msgid "Update plugins"
|
1109 |
msgstr "עדכון תוספים"
|
1110 |
|
1112 |
# __('Delete plugins', 'ure');
|
1113 |
# __('Install plugins', 'ure');
|
1114 |
# wpml-name: f2a839940dae3934317d8d6a6f647ebd
|
1115 |
+
#: ../includes/class-ure-lib.php:1919
|
1116 |
msgid "Delete plugins"
|
1117 |
msgstr "מחיקת תוספים"
|
1118 |
|
1120 |
# __('Install plugins', 'ure');
|
1121 |
# __('Update themes', 'ure');
|
1122 |
# wpml-name: 9d06472988c53bfc768bc7b6a788b697
|
1123 |
+
#: ../includes/class-ure-lib.php:1920
|
1124 |
msgid "Install plugins"
|
1125 |
msgstr "התקנת תוספים"
|
1126 |
|
1128 |
# __('Update themes', 'ure');
|
1129 |
# __('Install themes', 'ure');
|
1130 |
# wpml-name: 504ea4a27260ac1e8822c5877ffe526b
|
1131 |
+
#: ../includes/class-ure-lib.php:1921
|
1132 |
msgid "Update themes"
|
1133 |
msgstr "עדכון תבניות"
|
1134 |
|
1136 |
# __('Install themes', 'ure');
|
1137 |
# __('Update core', 'ure');
|
1138 |
# wpml-name: a7d67fb17876569a4590902d3566a6fd
|
1139 |
+
#: ../includes/class-ure-lib.php:1922
|
1140 |
msgid "Install themes"
|
1141 |
msgstr "התקנת תבניות חדשות"
|
1142 |
|
1144 |
# __('Update core', 'ure');
|
1145 |
# __('List users', 'ure');
|
1146 |
# wpml-name: e56e5b87db548cd42be7a8a0f916205d
|
1147 |
+
#: ../includes/class-ure-lib.php:1923
|
1148 |
msgid "Update core"
|
1149 |
msgstr "עדכון וורדפרס"
|
1150 |
|
1152 |
# __('List users', 'ure');
|
1153 |
# __('Remove users', 'ure');
|
1154 |
# wpml-name: f923f903857a5387d3db70494e074632
|
1155 |
+
#: ../includes/class-ure-lib.php:1924
|
1156 |
msgid "List users"
|
1157 |
msgstr "בצפייה במשתמשים"
|
1158 |
|
1160 |
# __('Remove users', 'ure');
|
1161 |
# __('Add users', 'ure');
|
1162 |
# wpml-name: 8c7e9f2dfcd0125922dfbce36a1a4c2a
|
1163 |
+
#: ../includes/class-ure-lib.php:1925
|
1164 |
msgid "Remove users"
|
1165 |
msgstr "הסרת משתמשים"
|
1166 |
|
1168 |
# __('Add users', 'ure');
|
1169 |
# __('Promote users', 'ure');
|
1170 |
# wpml-name: 3bf6330f5f4c7c3dfddc9670cfaf4a22
|
1171 |
+
#: ../includes/class-ure-lib.php:1926
|
1172 |
msgid "Add users"
|
1173 |
msgstr "הוספת משתמשים"
|
1174 |
|
1176 |
# __('Promote users', 'ure');
|
1177 |
# __('Edit theme options', 'ure');
|
1178 |
# wpml-name: 12f4ba95cdfd04b791820b9c20887913
|
1179 |
+
#: ../includes/class-ure-lib.php:1927
|
1180 |
msgid "Promote users"
|
1181 |
msgstr "שינוי משתמשים"
|
1182 |
|
1184 |
# __('Edit theme options', 'ure');
|
1185 |
# __('Delete themes', 'ure');
|
1186 |
# wpml-name: 8841974497684dad4d55beaf2b6c52ef
|
1187 |
+
#: ../includes/class-ure-lib.php:1928
|
1188 |
msgid "Edit theme options"
|
1189 |
msgstr "עריכת אפשרויות התבנית"
|
1190 |
|
1192 |
# __('Delete themes', 'ure');
|
1193 |
# __('Export', 'ure');
|
1194 |
# wpml-name: 335e9dea5f21dc3f591f3aceefdeed54
|
1195 |
+
#: ../includes/class-ure-lib.php:1929
|
1196 |
msgid "Delete themes"
|
1197 |
msgstr "מחיקת תבניות"
|
1198 |
|
1200 |
# __('Export', 'ure');
|
1201 |
# }
|
1202 |
# wpml-name: 0095a9fa74d1713e43e370a7d7846224
|
1203 |
+
#: ../includes/class-ure-lib.php:1930
|
1204 |
msgid "Export"
|
1205 |
msgstr "ייצוא תוכן"
|
1206 |
|
1208 |
# return 'Error! ' . __('Error: Capability name must contain latin characters and digits only!', 'ure');
|
1209 |
# ;
|
1210 |
# wpml-name: 03766b9586d3012af6fc788e85d39530
|
1211 |
+
#: ../includes/class-ure-lib.php:2040
|
1212 |
msgid "Error: Capability name must contain latin characters and digits only!"
|
1213 |
msgstr "שגיאה! שם יכולת חייב להכיל אותיות באנגלית וספרות בלבד"
|
1214 |
|
1216 |
# $mess = sprintf(__('Capability %s is added successfully', 'ure'), $user_capability);
|
1217 |
# } else {
|
1218 |
# wpml-name: 6dcaae98207ba2673da987515b02fe31
|
1219 |
+
#: ../includes/class-ure-lib.php:2053
|
1220 |
#, php-format
|
1221 |
msgid "Capability %s is added successfully"
|
1222 |
msgstr "היכולת %s נוספה בהצלחה"
|
1225 |
# $mess = sprintf('Error! ' . __('Capability %s exists already', 'ure'), $user_capability);
|
1226 |
# }
|
1227 |
# wpml-name: d5c1ec0556aadfa88cadffb62266b83d
|
1228 |
+
#: ../includes/class-ure-lib.php:2055
|
1229 |
#, php-format
|
1230 |
msgid "Capability %s exists already"
|
1231 |
msgstr "כבר קיימת יכולת בשם %s"
|
1234 |
# return sprintf(__('Error! You do not have permission to delete this capability: %s!', 'ure'), $capability_id);
|
1235 |
# }
|
1236 |
# wpml-name: 0e132e68574d9609d956f9be409f7384
|
1237 |
+
#: ../includes/class-ure-lib.php:2080
|
1238 |
#, php-format
|
1239 |
msgid "Error! You do not have permission to delete this capability: %s!"
|
1240 |
msgstr "שגיאה! אין לך הרשאה למחוק את היכולת %s"
|
1243 |
# $mess = sprintf(__('Capability %s is removed successfully', 'ure'), $capability_id);
|
1244 |
# }
|
1245 |
# wpml-name: d819128cbb44d0e2fe4eb8b8b6397871
|
1246 |
+
#: ../includes/class-ure-lib.php:2099
|
1247 |
#, php-format
|
1248 |
msgid "Capability %s is removed successfully"
|
1249 |
msgstr "היכולת %s הוסרה בהצלחה"
|
1250 |
|
1251 |
+
#: ../includes/class-ure-lib.php:2203
|
1252 |
+
msgid "Version:"
|
1253 |
+
msgstr ""
|
1254 |
+
|
1255 |
# ?>
|
1256 |
# <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>
|
1257 |
# <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>
|
1258 |
# wpml-name: b63bc6c033363c8ee66beaf4ea4d5bc3
|
1259 |
+
#: ../includes/class-ure-lib.php:2204
|
1260 |
msgid "Author's website"
|
1261 |
msgstr "אתר היוצר"
|
1262 |
|
1264 |
# <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>
|
1265 |
# <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>
|
1266 |
# wpml-name: f919d1248270e1eca5cc6a39253264f7
|
1267 |
+
#: ../includes/class-ure-lib.php:2205
|
1268 |
msgid "Plugin webpage"
|
1269 |
msgstr "דף התוסף"
|
1270 |
|
1272 |
# <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>
|
1273 |
# <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>
|
1274 |
# wpml-name: f919d1248270e1eca5cc6a39253264f7
|
1275 |
+
#: ../includes/class-ure-lib.php:2206
|
1276 |
#, fuzzy
|
1277 |
msgid "Plugin download"
|
1278 |
msgstr "דף התוסף"
|
1281 |
# <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>
|
1282 |
# <?php
|
1283 |
# wpml-name: 1fe917b01f9a3f87fa2d7d3b7643fac1
|
1284 |
+
#: ../includes/class-ure-lib.php:2208
|
1285 |
msgid "FAQ"
|
1286 |
msgstr "שאלות נפוצות"
|
1287 |
|
1289 |
# <option value="none" selected="selected">' . __('None', 'ure') . '</option>';
|
1290 |
# $this->role_select_html = '<select id="user_role" name="user_role" onchange="ure_role_change(this.value);">';
|
1291 |
# wpml-name: 6adf97f83acf6453d4a6a4b1070f3754
|
1292 |
+
#: ../includes/class-ure-lib.php:2256
|
1293 |
msgid "None"
|
1294 |
msgstr "תרום"
|
1295 |
|
1297 |
#
|
1298 |
#
|
1299 |
# wpml-name: 7aa3fd37413ab803143d28fcc65287cf
|
1300 |
+
#: ../includes/class-ure-lib.php:2283
|
1301 |
msgid "Delete All Unused Roles"
|
1302 |
msgstr ""
|
1303 |
|
1304 |
+
#: ../includes/class-ure-lib.php:2307
|
1305 |
msgid "— No role for this site —"
|
1306 |
msgstr ""
|
1307 |
|
1321 |
msgid "Change capabilities for user"
|
1322 |
msgstr "שינוי יכולות המשתמש"
|
1323 |
|
1324 |
+
#: ../includes/ure-user-edit.php:71
|
1325 |
+
msgid "Primary Role:"
|
1326 |
+
msgstr ""
|
1327 |
+
|
1328 |
+
#: ../includes/ure-user-edit.php:81
|
1329 |
+
msgid "bbPress Role:"
|
1330 |
msgstr ""
|
1331 |
|
1332 |
+
# <tr>
|
1333 |
+
# <th scope="row"><?php _e('Other Roles', 'ure'); ?></th>
|
1334 |
+
# <td>
|
1335 |
+
# wpml-name: a5f40dc2b5f2552187d0326e77e267eb
|
1336 |
+
#: ../includes/ure-user-edit.php:91
|
1337 |
+
#, fuzzy
|
1338 |
+
msgid "Other Roles:"
|
1339 |
+
msgstr "תפקידים אחרים"
|
1340 |
+
|
1341 |
#: ../includes/class-ure-screen-help.php:16
|
1342 |
msgid ""
|
1343 |
"turn this option on in order to make the \"Administrator\" role available at "
|
1345 |
"for security reasons."
|
1346 |
msgstr ""
|
1347 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1348 |
#: ../includes/class-ure-screen-help.php:19
|
1349 |
msgid ""
|
1350 |
"automatically converts capability names from the technical form for internal "
|
1352 |
"others posts\"."
|
1353 |
msgstr ""
|
1354 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1355 |
#: ../includes/class-ure-screen-help.php:22
|
1356 |
msgid ""
|
1357 |
"Capabilities like \"level_0\", \"level_1\" are deprecated and are not used "
|
lang/ure-id_ID.mo
CHANGED
Binary file
|
lang/ure-id_ID.po
CHANGED
@@ -2,7 +2,7 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: User Role Editor 2.0\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2014-
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: Vladimir Garagulya <vladimir@shinephp.com>\n"
|
8 |
"Language-Team: http://al-badar.net <nasrulhaq81@gmail.com>\n"
|
@@ -16,18 +16,76 @@ 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/class-user-role-editor.php:185
|
32 |
msgid "Change role for users without role"
|
33 |
msgstr ""
|
@@ -54,7 +112,7 @@ msgid "Settings"
|
|
54 |
msgstr "Pengaturan"
|
55 |
|
56 |
#: ../includes/class-user-role-editor.php:520
|
57 |
-
#: ../includes/class-ure-lib.php:
|
58 |
msgid "Changelog"
|
59 |
msgstr "log Perubahan"
|
60 |
|
@@ -64,22 +122,23 @@ msgstr "Ikhtisar"
|
|
64 |
|
65 |
#: ../includes/class-user-role-editor.php:551
|
66 |
#: ../includes/class-user-role-editor.php:579
|
67 |
-
#: ../includes/class-user-role-editor.php:
|
68 |
#: ../includes/class-ure-lib.php:225
|
69 |
msgid "User Role Editor"
|
70 |
msgstr "User Role Editor"
|
71 |
|
72 |
-
#: ../includes/class-user-role-editor.php:
|
73 |
-
#: ../includes/class-user-role-editor.php:
|
|
|
74 |
msgid "User Role Editor options are updated"
|
75 |
msgstr "Pilihan User Role Editor diperbarui"
|
76 |
|
77 |
-
#: ../includes/class-user-role-editor.php:
|
78 |
#, fuzzy
|
79 |
msgid "Default Roles are updated"
|
80 |
msgstr "Peran "
|
81 |
|
82 |
-
#: ../includes/class-user-role-editor.php:
|
83 |
msgid ""
|
84 |
"You do not have sufficient permissions to manage options for User Role "
|
85 |
"Editor."
|
@@ -87,39 +146,39 @@ msgstr ""
|
|
87 |
"Anda tidak memiliki izin yang memadai untuk mengelola pilihan User Role "
|
88 |
"Editor."
|
89 |
|
90 |
-
#: ../includes/class-user-role-editor.php:
|
91 |
msgid "Insufficient permissions to work with User Role Editor"
|
92 |
msgstr "Izin yang tidak sesuai untuk bekerja dengan User Role Editor"
|
93 |
|
94 |
-
#: ../includes/class-user-role-editor.php:
|
95 |
msgid "Select All"
|
96 |
msgstr "Pilih Semua"
|
97 |
|
98 |
-
#: ../includes/class-user-role-editor.php:
|
99 |
msgid "Unselect All"
|
100 |
msgstr "Batalkan Semua"
|
101 |
|
102 |
-
#: ../includes/class-user-role-editor.php:
|
103 |
msgid "Reverse"
|
104 |
msgstr "Memutar"
|
105 |
|
106 |
-
#: ../includes/class-user-role-editor.php:
|
107 |
msgid "Update"
|
108 |
msgstr "Pembaruan"
|
109 |
|
110 |
-
#: ../includes/class-user-role-editor.php:
|
111 |
msgid "Please confirm permissions update"
|
112 |
msgstr "Harap konfirmasi pembaruan izin"
|
113 |
|
114 |
-
#: ../includes/class-user-role-editor.php:
|
115 |
msgid "Add New Role"
|
116 |
msgstr "Tambah Peran Baru"
|
117 |
|
118 |
-
#: ../includes/class-user-role-editor.php:
|
119 |
msgid " Role name (ID) can not be empty!"
|
120 |
msgstr "Nama peran (ID) tidak boleh kosong!"
|
121 |
|
122 |
-
#: ../includes/class-user-role-editor.php:
|
123 |
msgid ""
|
124 |
" Role name (ID) must contain latin characters, digits, hyphens or underscore "
|
125 |
"only!"
|
@@ -127,43 +186,43 @@ msgstr ""
|
|
127 |
"Nama peran (ID) harus berisi karakter latin, angka, tanda hubung atau garis "
|
128 |
"bawah saja!"
|
129 |
|
130 |
-
#: ../includes/class-user-role-editor.php:
|
131 |
msgid ""
|
132 |
" WordPress does not support numeric Role name (ID). Add latin characters to "
|
133 |
"it."
|
134 |
msgstr ""
|
135 |
|
136 |
-
#: ../includes/class-user-role-editor.php:
|
137 |
msgid "Add Role"
|
138 |
msgstr "Tambah Peran"
|
139 |
|
140 |
-
#: ../includes/class-user-role-editor.php:
|
141 |
msgid "Delete Role"
|
142 |
msgstr "Hapus Peran"
|
143 |
|
144 |
-
#: ../includes/class-user-role-editor.php:
|
145 |
msgid "Cancel"
|
146 |
msgstr "Batalkan"
|
147 |
|
148 |
-
#: ../includes/class-user-role-editor.php:
|
149 |
msgid "Add Capability"
|
150 |
msgstr "Tambah Kemampuan"
|
151 |
|
152 |
-
#: ../includes/class-user-role-editor.php:
|
153 |
-
#: ../includes/class-user-role-editor.php:
|
154 |
msgid "Delete Capability"
|
155 |
msgstr "Hapus Kemampuan"
|
156 |
|
157 |
-
#: ../includes/class-user-role-editor.php:
|
158 |
msgid "Reset"
|
159 |
msgstr "Atur Ulang"
|
160 |
|
161 |
-
#: ../includes/class-user-role-editor.php:
|
162 |
msgid "DANGER! Resetting will restore default settings from WordPress Core."
|
163 |
msgstr ""
|
164 |
"BAHAYA! Reset akan mengembalikan pengaturan default dari WordPress Inti."
|
165 |
|
166 |
-
#: ../includes/class-user-role-editor.php:
|
167 |
msgid ""
|
168 |
"If any plugins have changed capabilities in any way upon installation (such "
|
169 |
"as S2Member, WooCommerce, and many more), those capabilities will be DELETED!"
|
@@ -172,7 +231,7 @@ msgstr ""
|
|
172 |
"(seperti S2Member, WooCommerce, dan banyak lagi), kemampuan mereka akan "
|
173 |
"DIHAPUS!"
|
174 |
|
175 |
-
#: ../includes/class-user-role-editor.php:
|
176 |
msgid ""
|
177 |
"For more information on how to undo changes and restore plugin capabilities "
|
178 |
"go to"
|
@@ -180,19 +239,19 @@ msgstr ""
|
|
180 |
"Untuk informasi lebih lanjut tentang cara membatalkan perubahan dan "
|
181 |
"mengembalikan kemampuan Plugin pergi ke"
|
182 |
|
183 |
-
#: ../includes/class-user-role-editor.php:
|
184 |
msgid "Continue?"
|
185 |
msgstr "Lanjut?"
|
186 |
|
187 |
-
#: ../includes/class-user-role-editor.php:
|
188 |
msgid "Default Role"
|
189 |
msgstr "Peran "
|
190 |
|
191 |
-
#: ../includes/class-user-role-editor.php:
|
192 |
msgid "Set New Default Role"
|
193 |
msgstr "Atur Peran Baru Default"
|
194 |
|
195 |
-
#: ../includes/class-user-role-editor.php:
|
196 |
msgid ""
|
197 |
"Warning! Be careful - removing critical capability could crash some plugin "
|
198 |
"or other custom code"
|
@@ -200,11 +259,11 @@ msgstr ""
|
|
200 |
"Peringatan! Hati-hati - menghapus kemampuan kritis dapat menyebabkan crash "
|
201 |
"beberapa Plugin atau kode kustom lainnya"
|
202 |
|
203 |
-
#: ../includes/class-user-role-editor.php:
|
204 |
msgid " Capability name (ID) can not be empty!"
|
205 |
msgstr "Nama Kemampuan (ID) tidak boleh kosong!"
|
206 |
|
207 |
-
#: ../includes/class-user-role-editor.php:
|
208 |
msgid ""
|
209 |
" Capability name (ID) must contain latin characters, digits, hyphens or "
|
210 |
"underscore only!"
|
@@ -212,24 +271,73 @@ msgstr ""
|
|
212 |
"Nama Kemampuan (ID) harus mengandung karakter latin, angka, kata penghubung "
|
213 |
"atau garis bawah saja!"
|
214 |
|
215 |
-
#: ../includes/class-user-role-editor.php:
|
216 |
-
#: ../includes/class-user-role-editor.php:
|
217 |
msgid "Other Roles"
|
218 |
msgstr "Peran Lainnya"
|
219 |
|
220 |
-
#: ../includes/class-user-role-editor.php:
|
221 |
msgid "Edit"
|
222 |
msgstr "Sunting"
|
223 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
224 |
#: ../includes/ure-role-edit.php:44
|
225 |
msgid "If checked, then apply action to ALL sites of this Network"
|
226 |
msgstr ""
|
227 |
"Jika dicentang, kemudian terapkan tindakan untuk SEMUA situs Jaringan ini"
|
228 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
229 |
#: ../includes/class-ure-lib.php:143
|
230 |
msgid "Error: wrong request"
|
231 |
msgstr "Salah: salah permintaan"
|
232 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
233 |
#: ../includes/class-ure-lib.php:322
|
234 |
msgid "Error: "
|
235 |
msgstr "Salah:"
|
@@ -266,15 +374,15 @@ msgstr "Kesalahan terjadi sepanjang pembaruan pengguna"
|
|
266 |
msgid "User Roles are restored to WordPress default values. "
|
267 |
msgstr "Peran Pengguna dikembalikan ke nilai Wordpress default."
|
268 |
|
269 |
-
#: ../includes/class-ure-lib.php:
|
270 |
msgid "Help"
|
271 |
msgstr "Bantuan"
|
272 |
|
273 |
-
#: ../includes/class-ure-lib.php:
|
274 |
msgid "Error is occur. Please check the log file."
|
275 |
msgstr "kesalahan terjadi, Harap periksa log data."
|
276 |
|
277 |
-
#: ../includes/class-ure-lib.php:
|
278 |
msgid ""
|
279 |
"Error: Role ID must contain latin characters, digits, hyphens or underscore "
|
280 |
"only!"
|
@@ -282,362 +390,366 @@ msgstr ""
|
|
282 |
"Kesalahan: ID Peran harus mengandung karakter latin, angka, kata penghubung "
|
283 |
"dan garis bawah saja!"
|
284 |
|
285 |
-
#: ../includes/class-ure-lib.php:
|
286 |
msgid ""
|
287 |
"Error: WordPress does not support numeric Role name (ID). Add latin "
|
288 |
"characters to it."
|
289 |
msgstr ""
|
290 |
|
291 |
-
#: ../includes/class-ure-lib.php:
|
292 |
#, php-format
|
293 |
msgid "Role %s exists already"
|
294 |
msgstr "Peran %s telah ada"
|
295 |
|
296 |
-
#: ../includes/class-ure-lib.php:
|
297 |
msgid "Error is encountered during new role create operation"
|
298 |
msgstr "Kesalahan ditemui selama peran baru membuat operasi"
|
299 |
|
300 |
-
#: ../includes/class-ure-lib.php:
|
301 |
#, php-format
|
302 |
msgid "Role %s is created successfully"
|
303 |
msgstr "Peran %s berhasil dibuat"
|
304 |
|
305 |
-
#: ../includes/class-ure-lib.php:
|
306 |
msgid "Error encountered during role delete operation"
|
307 |
msgstr "Kesalahan ditemui selama operasi penghapusan peran"
|
308 |
|
309 |
-
#: ../includes/class-ure-lib.php:
|
310 |
msgid "Unused roles are deleted successfully"
|
311 |
msgstr "Peran yang tidak digunakan berhasil dihapus"
|
312 |
|
313 |
-
#: ../includes/class-ure-lib.php:
|
314 |
#, php-format
|
315 |
msgid "Role %s is deleted successfully"
|
316 |
msgstr "Peran %s berhasil dihapus"
|
317 |
|
318 |
-
#: ../includes/class-ure-lib.php:
|
319 |
msgid "Error encountered during default role change operation"
|
320 |
msgstr "Kesalahan ditemui selama operasi perubahan peran standar"
|
321 |
|
322 |
-
#: ../includes/class-ure-lib.php:
|
323 |
#, php-format
|
324 |
msgid "Default role for new users is set to %s successfully"
|
325 |
msgstr "Peran standar untuk pengguna baru diatur ke %s dengan sukses"
|
326 |
|
327 |
-
#: ../includes/class-ure-lib.php:
|
328 |
msgid "Editor"
|
329 |
msgstr "Penyunting"
|
330 |
|
331 |
-
#: ../includes/class-ure-lib.php:
|
332 |
msgid "Author"
|
333 |
msgstr "Pengarang"
|
334 |
|
335 |
-
#: ../includes/class-ure-lib.php:
|
336 |
msgid "Contributor"
|
337 |
msgstr "Kontributor"
|
338 |
|
339 |
-
#: ../includes/class-ure-lib.php:
|
340 |
msgid "Subscriber"
|
341 |
msgstr "Pelanggan"
|
342 |
|
343 |
-
#: ../includes/class-ure-lib.php:
|
344 |
msgid "Switch themes"
|
345 |
msgstr "Ganti tema"
|
346 |
|
347 |
-
#: ../includes/class-ure-lib.php:
|
348 |
msgid "Edit themes"
|
349 |
msgstr "Sunting tema"
|
350 |
|
351 |
-
#: ../includes/class-ure-lib.php:
|
352 |
msgid "Activate plugins"
|
353 |
msgstr "Aktifkan plugin"
|
354 |
|
355 |
-
#: ../includes/class-ure-lib.php:
|
356 |
msgid "Edit plugins"
|
357 |
msgstr "Sunting plugin"
|
358 |
|
359 |
-
#: ../includes/class-ure-lib.php:
|
360 |
msgid "Edit users"
|
361 |
msgstr "Sunting pengguna"
|
362 |
|
363 |
-
#: ../includes/class-ure-lib.php:
|
364 |
msgid "Edit files"
|
365 |
msgstr "Sunting data"
|
366 |
|
367 |
-
#: ../includes/class-ure-lib.php:
|
368 |
msgid "Manage options"
|
369 |
msgstr "kelola pilihan"
|
370 |
|
371 |
-
#: ../includes/class-ure-lib.php:
|
372 |
msgid "Moderate comments"
|
373 |
msgstr "Moderasi komentar"
|
374 |
|
375 |
-
#: ../includes/class-ure-lib.php:
|
376 |
msgid "Manage categories"
|
377 |
msgstr "Kelola kategori"
|
378 |
|
379 |
-
#: ../includes/class-ure-lib.php:
|
380 |
msgid "Manage links"
|
381 |
msgstr "Kelola tautan"
|
382 |
|
383 |
-
#: ../includes/class-ure-lib.php:
|
384 |
msgid "Upload files"
|
385 |
msgstr "Unggah data"
|
386 |
|
387 |
-
#: ../includes/class-ure-lib.php:
|
388 |
msgid "Import"
|
389 |
msgstr "Impor"
|
390 |
|
391 |
-
#: ../includes/class-ure-lib.php:
|
392 |
msgid "Unfiltered html"
|
393 |
msgstr "HTML tidak tersaring"
|
394 |
|
395 |
-
#: ../includes/class-ure-lib.php:
|
396 |
msgid "Edit posts"
|
397 |
msgstr "Sunting posting"
|
398 |
|
399 |
-
#: ../includes/class-ure-lib.php:
|
400 |
msgid "Edit others posts"
|
401 |
msgstr "Sunting posting lainnya"
|
402 |
|
403 |
-
#: ../includes/class-ure-lib.php:
|
404 |
msgid "Edit published posts"
|
405 |
msgstr "Sunting posting terpublikasi"
|
406 |
|
407 |
-
#: ../includes/class-ure-lib.php:
|
408 |
msgid "Publish posts"
|
409 |
msgstr "Publikasi posting"
|
410 |
|
411 |
-
#: ../includes/class-ure-lib.php:
|
412 |
msgid "Edit pages"
|
413 |
msgstr "Sunting halaman"
|
414 |
|
415 |
-
#: ../includes/class-ure-lib.php:
|
416 |
msgid "Read"
|
417 |
msgstr "Baca"
|
418 |
|
419 |
-
#: ../includes/class-ure-lib.php:
|
420 |
msgid "Level 10"
|
421 |
msgstr "Tingkat 10"
|
422 |
|
423 |
-
#: ../includes/class-ure-lib.php:
|
424 |
msgid "Level 9"
|
425 |
msgstr "Tingkat 9"
|
426 |
|
427 |
-
#: ../includes/class-ure-lib.php:
|
428 |
msgid "Level 8"
|
429 |
msgstr "Tingkat 8"
|
430 |
|
431 |
-
#: ../includes/class-ure-lib.php:
|
432 |
msgid "Level 7"
|
433 |
msgstr "Tingkat 7"
|
434 |
|
435 |
-
#: ../includes/class-ure-lib.php:
|
436 |
msgid "Level 6"
|
437 |
msgstr "Tingkat 6"
|
438 |
|
439 |
-
#: ../includes/class-ure-lib.php:
|
440 |
msgid "Level 5"
|
441 |
msgstr "Tingkat 5"
|
442 |
|
443 |
-
#: ../includes/class-ure-lib.php:
|
444 |
msgid "Level 4"
|
445 |
msgstr "Tingkat 4"
|
446 |
|
447 |
-
#: ../includes/class-ure-lib.php:
|
448 |
msgid "Level 3"
|
449 |
msgstr "Tingkat 3"
|
450 |
|
451 |
-
#: ../includes/class-ure-lib.php:
|
452 |
msgid "Level 2"
|
453 |
msgstr "Tingkat 2"
|
454 |
|
455 |
-
#: ../includes/class-ure-lib.php:
|
456 |
msgid "Level 1"
|
457 |
msgstr "Tingkat 1"
|
458 |
|
459 |
-
#: ../includes/class-ure-lib.php:
|
460 |
msgid "Level 0"
|
461 |
msgstr "Tingkat 0"
|
462 |
|
463 |
-
#: ../includes/class-ure-lib.php:
|
464 |
msgid "Edit others pages"
|
465 |
msgstr "Sunting halaman lainnya"
|
466 |
|
467 |
-
#: ../includes/class-ure-lib.php:
|
468 |
msgid "Edit published pages"
|
469 |
msgstr "Sunting halaman terpublikasi"
|
470 |
|
471 |
-
#: ../includes/class-ure-lib.php:
|
472 |
msgid "Publish pages"
|
473 |
msgstr "Publikasi halaman"
|
474 |
|
475 |
-
#: ../includes/class-ure-lib.php:
|
476 |
msgid "Delete pages"
|
477 |
msgstr "Hapus halaman"
|
478 |
|
479 |
-
#: ../includes/class-ure-lib.php:
|
480 |
msgid "Delete others pages"
|
481 |
msgstr "Hapus halaman lainnya"
|
482 |
|
483 |
-
#: ../includes/class-ure-lib.php:
|
484 |
msgid "Delete published pages"
|
485 |
msgstr "Hapus halaman terpublikasi"
|
486 |
|
487 |
-
#: ../includes/class-ure-lib.php:
|
488 |
msgid "Delete posts"
|
489 |
msgstr "hapus posting"
|
490 |
|
491 |
-
#: ../includes/class-ure-lib.php:
|
492 |
msgid "Delete others posts"
|
493 |
msgstr "Hapus posting lainnya"
|
494 |
|
495 |
-
#: ../includes/class-ure-lib.php:
|
496 |
msgid "Delete published posts"
|
497 |
msgstr "Hapus posting terpublikasi"
|
498 |
|
499 |
-
#: ../includes/class-ure-lib.php:
|
500 |
msgid "Delete private posts"
|
501 |
msgstr "Hapus posting pribadi"
|
502 |
|
503 |
-
#: ../includes/class-ure-lib.php:
|
504 |
msgid "Edit private posts"
|
505 |
msgstr "Sunting posting pribadi"
|
506 |
|
507 |
-
#: ../includes/class-ure-lib.php:
|
508 |
msgid "Read private posts"
|
509 |
msgstr "Baca posting pribadi"
|
510 |
|
511 |
-
#: ../includes/class-ure-lib.php:
|
512 |
msgid "Delete private pages"
|
513 |
msgstr "Hapus halaman pribadi"
|
514 |
|
515 |
-
#: ../includes/class-ure-lib.php:
|
516 |
msgid "Edit private pages"
|
517 |
msgstr "Sunting halaman pribadi"
|
518 |
|
519 |
-
#: ../includes/class-ure-lib.php:
|
520 |
msgid "Read private pages"
|
521 |
msgstr "baca halaman pribadi"
|
522 |
|
523 |
-
#: ../includes/class-ure-lib.php:
|
524 |
msgid "Delete users"
|
525 |
msgstr "Hapus pengguna"
|
526 |
|
527 |
-
#: ../includes/class-ure-lib.php:
|
528 |
msgid "Create users"
|
529 |
msgstr "Buat pengguna"
|
530 |
|
531 |
-
#: ../includes/class-ure-lib.php:
|
532 |
msgid "Unfiltered upload"
|
533 |
msgstr "Unggahan tidak tersaring"
|
534 |
|
535 |
-
#: ../includes/class-ure-lib.php:
|
536 |
msgid "Edit dashboard"
|
537 |
msgstr "Sunting dasbor"
|
538 |
|
539 |
-
#: ../includes/class-ure-lib.php:
|
540 |
msgid "Update plugins"
|
541 |
msgstr "Perbarui plugin"
|
542 |
|
543 |
-
#: ../includes/class-ure-lib.php:
|
544 |
msgid "Delete plugins"
|
545 |
msgstr "Hapus plugin"
|
546 |
|
547 |
-
#: ../includes/class-ure-lib.php:
|
548 |
msgid "Install plugins"
|
549 |
msgstr "Pasang plugin"
|
550 |
|
551 |
-
#: ../includes/class-ure-lib.php:
|
552 |
msgid "Update themes"
|
553 |
msgstr "Perbarui tema"
|
554 |
|
555 |
-
#: ../includes/class-ure-lib.php:
|
556 |
msgid "Install themes"
|
557 |
msgstr "Pasang tema"
|
558 |
|
559 |
-
#: ../includes/class-ure-lib.php:
|
560 |
msgid "Update core"
|
561 |
msgstr "Perbarui inti"
|
562 |
|
563 |
-
#: ../includes/class-ure-lib.php:
|
564 |
msgid "List users"
|
565 |
msgstr "Daftar pengguna"
|
566 |
|
567 |
-
#: ../includes/class-ure-lib.php:
|
568 |
msgid "Remove users"
|
569 |
msgstr "Hapus pengguna"
|
570 |
|
571 |
-
#: ../includes/class-ure-lib.php:
|
572 |
msgid "Add users"
|
573 |
msgstr "Tambah pengguna"
|
574 |
|
575 |
-
#: ../includes/class-ure-lib.php:
|
576 |
msgid "Promote users"
|
577 |
msgstr "Promosi pengguna"
|
578 |
|
579 |
-
#: ../includes/class-ure-lib.php:
|
580 |
msgid "Edit theme options"
|
581 |
msgstr "Sunting pilihan tema"
|
582 |
|
583 |
-
#: ../includes/class-ure-lib.php:
|
584 |
msgid "Delete themes"
|
585 |
msgstr "Hapus tema"
|
586 |
|
587 |
-
#: ../includes/class-ure-lib.php:
|
588 |
msgid "Export"
|
589 |
msgstr "Ekspor"
|
590 |
|
591 |
-
#: ../includes/class-ure-lib.php:
|
592 |
msgid "Error: Capability name must contain latin characters and digits only!"
|
593 |
msgstr "Salah: Kemampuan nama harus mengandung karakter latin dan angka saja!"
|
594 |
|
595 |
-
#: ../includes/class-ure-lib.php:
|
596 |
#, php-format
|
597 |
msgid "Capability %s is added successfully"
|
598 |
msgstr "Kemampuan %s berhasil ditambahkan"
|
599 |
|
600 |
-
#: ../includes/class-ure-lib.php:
|
601 |
#, php-format
|
602 |
msgid "Capability %s exists already"
|
603 |
msgstr "Kemampuan %s telah ada"
|
604 |
|
605 |
-
#: ../includes/class-ure-lib.php:
|
606 |
#, php-format
|
607 |
msgid "Error! You do not have permission to delete this capability: %s!"
|
608 |
msgstr "Salah! Anda tidak memiliki izin untuk menghapus kemampuan ini: %s!"
|
609 |
|
610 |
-
#: ../includes/class-ure-lib.php:
|
611 |
#, php-format
|
612 |
msgid "Capability %s is removed successfully"
|
613 |
msgstr "Kemampuan %s berhasil dihapus"
|
614 |
|
615 |
-
#: ../includes/class-ure-lib.php:
|
|
|
|
|
|
|
|
|
616 |
msgid "Author's website"
|
617 |
msgstr "Website pengarang"
|
618 |
|
619 |
-
#: ../includes/class-ure-lib.php:
|
620 |
msgid "Plugin webpage"
|
621 |
msgstr "Halaman web Plugin"
|
622 |
|
623 |
-
#: ../includes/class-ure-lib.php:
|
624 |
#, fuzzy
|
625 |
msgid "Plugin download"
|
626 |
msgstr "Halaman web Plugin"
|
627 |
|
628 |
-
#: ../includes/class-ure-lib.php:
|
629 |
msgid "FAQ"
|
630 |
msgstr "FAQ"
|
631 |
|
632 |
-
#: ../includes/class-ure-lib.php:
|
633 |
msgid "None"
|
634 |
msgstr "Nihil"
|
635 |
|
636 |
-
#: ../includes/class-ure-lib.php:
|
637 |
msgid "Delete All Unused Roles"
|
638 |
msgstr "Hapus Peran Tidak Terpakai"
|
639 |
|
640 |
-
#: ../includes/class-ure-lib.php:
|
641 |
msgid "— No role for this site —"
|
642 |
msgstr "— Tidak ada peran untuk situs ini —"
|
643 |
|
@@ -649,9 +761,17 @@ msgstr "Jaringan Super Admin"
|
|
649 |
msgid "Change capabilities for user"
|
650 |
msgstr "Ubah kemampuan untuk pengguna"
|
651 |
|
652 |
-
#: ../includes/
|
653 |
-
msgid "
|
654 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
655 |
|
656 |
#: ../includes/class-ure-screen-help.php:16
|
657 |
msgid ""
|
@@ -663,10 +783,6 @@ msgstr ""
|
|
663 |
"daftar seleksi pilihan peran User Role Editor. Akan tersembunyi secara "
|
664 |
"default demi alasan keamanan."
|
665 |
|
666 |
-
#: ../includes/class-ure-screen-help.php:18
|
667 |
-
msgid "Show capabilities in the human readable form"
|
668 |
-
msgstr "Tampilkan kemampuan dalam bentuk yang dapat dibaca manusia"
|
669 |
-
|
670 |
#: ../includes/class-ure-screen-help.php:19
|
671 |
msgid ""
|
672 |
"automatically converts capability names from the technical form for internal "
|
@@ -677,10 +793,6 @@ msgstr ""
|
|
677 |
"penggunaan internal seperti \"edit_others_posts\" ke bentuk yang lebih user "
|
678 |
"friendly, misalnya \"Edit posting orang lain\"."
|
679 |
|
680 |
-
#: ../includes/class-ure-screen-help.php:21
|
681 |
-
msgid "Show deprecated capabilities"
|
682 |
-
msgstr "Tampilkan kemampuan usang"
|
683 |
-
|
684 |
#: ../includes/class-ure-screen-help.php:22
|
685 |
msgid ""
|
686 |
"Capabilities like \"level_0\", \"level_1\" are deprecated and are not used "
|
@@ -708,50 +820,5 @@ msgstr ""
|
|
708 |
"bawah WordPress multi-situs. Aktifkan pilihan ini dalam rangka menghapus "
|
709 |
"keterbatasan ini."
|
710 |
|
711 |
-
#~ msgid "Select Role and change its capabilities list"
|
712 |
-
#~ msgstr "Pilih Peran dan ubah daftar kemampuan"
|
713 |
-
|
714 |
-
#~ msgid "Select Role:"
|
715 |
-
#~ msgstr "Pilih Peran:"
|
716 |
-
|
717 |
-
#~ msgid "Show capabilities in human readable form"
|
718 |
-
#~ msgstr "Tampilkan kemampuan dalam bentuk yang dapat dibaca manusia"
|
719 |
-
|
720 |
-
#~ msgid "Apply to All Sites"
|
721 |
-
#~ msgstr "Terapkan ke Semua Situs"
|
722 |
-
|
723 |
-
#~ msgid "Core capabilities:"
|
724 |
-
#~ msgstr "Kemampuan inti:"
|
725 |
-
|
726 |
-
#~ msgid "Quick filter:"
|
727 |
-
#~ msgstr "Saring Cepat:"
|
728 |
-
|
729 |
-
#~ msgid "Custom capabilities:"
|
730 |
-
#~ msgstr "Kustom kemampuan:"
|
731 |
-
|
732 |
-
#~ msgid "Role name (ID): "
|
733 |
-
#~ msgstr "Nama Peran (ID):"
|
734 |
-
|
735 |
-
#~ msgid "Display Role Name: "
|
736 |
-
#~ msgstr "Tampilkan Nama Peran:"
|
737 |
-
|
738 |
-
#~ msgid "Make copy of: "
|
739 |
-
#~ msgstr "buat salinan:"
|
740 |
-
|
741 |
-
#~ msgid "Delete:"
|
742 |
-
#~ msgstr "Hapus:"
|
743 |
-
|
744 |
-
#~ msgid "Capability name (ID): "
|
745 |
-
#~ msgstr "Nama Kemampuan (ID):"
|
746 |
-
|
747 |
#~ msgid "About this Plugin:"
|
748 |
#~ msgstr "Tentang Plugin ini:"
|
749 |
-
|
750 |
-
#~ msgid "Primary Role:"
|
751 |
-
#~ msgstr "Peran Utama:"
|
752 |
-
|
753 |
-
#~ msgid "bbPress Role:"
|
754 |
-
#~ msgstr "Peran bbPress:"
|
755 |
-
|
756 |
-
#~ msgid "Other Roles:"
|
757 |
-
#~ msgstr "Peran Lain:"
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: User Role Editor 2.0\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2014-06-11 11:20+0700\n"
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: Vladimir Garagulya <vladimir@shinephp.com>\n"
|
8 |
"Language-Team: http://al-badar.net <nasrulhaq81@gmail.com>\n"
|
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 |
+
msgid "General"
|
26 |
+
msgstr ""
|
27 |
+
|
28 |
+
#: ../includes/settings-template.php:22
|
29 |
+
msgid "Additional Modules"
|
30 |
+
msgstr ""
|
31 |
+
|
32 |
+
#: ../includes/settings-template.php:23
|
33 |
+
#, fuzzy
|
34 |
+
msgid "Default Roles"
|
35 |
+
msgstr "Peran "
|
36 |
+
|
37 |
+
#: ../includes/settings-template.php:27
|
38 |
+
msgid "Multisite"
|
39 |
+
msgstr ""
|
40 |
+
|
41 |
+
#: ../includes/settings-template.php:31
|
42 |
+
msgid "About"
|
43 |
+
msgstr ""
|
44 |
+
|
45 |
+
#: ../includes/settings-template.php:42
|
46 |
+
#: ../includes/class-ure-screen-help.php:15
|
47 |
+
msgid "Show Administrator role at User Role Editor"
|
48 |
+
msgstr "Tampilkan peran Administrator di User Role Editor"
|
49 |
+
|
50 |
+
#: ../includes/settings-template.php:50
|
51 |
+
#: ../includes/class-ure-screen-help.php:18
|
52 |
+
msgid "Show capabilities in the human readable form"
|
53 |
+
msgstr "Tampilkan kemampuan dalam bentuk yang dapat dibaca manusia"
|
54 |
+
|
55 |
+
#: ../includes/settings-template.php:58 ../includes/ure-role-edit.php:40
|
56 |
+
#: ../includes/ure-user-edit.php:63 ../includes/class-ure-screen-help.php:21
|
57 |
+
msgid "Show deprecated capabilities"
|
58 |
+
msgstr "Tampilkan kemampuan usang"
|
59 |
+
|
60 |
+
#: ../includes/settings-template.php:69 ../includes/settings-template.php:101
|
61 |
+
#: ../includes/settings-template.php:131 ../includes/settings-template.php:160
|
62 |
msgid "Save"
|
63 |
msgstr "Simpan"
|
64 |
|
65 |
+
#: ../includes/settings-template.php:86
|
66 |
+
msgid "Count users without role"
|
67 |
+
msgstr ""
|
68 |
+
|
69 |
+
#: ../includes/settings-template.php:111
|
70 |
+
#, fuzzy
|
71 |
+
msgid "Primary default role: "
|
72 |
+
msgstr "Peran Utama:"
|
73 |
+
|
74 |
+
#: ../includes/settings-template.php:118
|
75 |
+
msgid "Other default roles for new registered user: "
|
76 |
+
msgstr ""
|
77 |
+
|
78 |
+
#: ../includes/settings-template.php:124
|
79 |
msgid ""
|
80 |
"Note for multisite environment: take into account that other default roles "
|
81 |
"should exist at the site, in order to be assigned to the new registered "
|
82 |
"users."
|
83 |
msgstr ""
|
84 |
|
85 |
+
#: ../includes/settings-template.php:147
|
86 |
+
msgid "Allow non super administrators to create, edit, and delete users"
|
87 |
+
msgstr ""
|
88 |
+
|
89 |
#: ../includes/class-user-role-editor.php:185
|
90 |
msgid "Change role for users without role"
|
91 |
msgstr ""
|
112 |
msgstr "Pengaturan"
|
113 |
|
114 |
#: ../includes/class-user-role-editor.php:520
|
115 |
+
#: ../includes/class-ure-lib.php:2207
|
116 |
msgid "Changelog"
|
117 |
msgstr "log Perubahan"
|
118 |
|
122 |
|
123 |
#: ../includes/class-user-role-editor.php:551
|
124 |
#: ../includes/class-user-role-editor.php:579
|
125 |
+
#: ../includes/class-user-role-editor.php:890
|
126 |
#: ../includes/class-ure-lib.php:225
|
127 |
msgid "User Role Editor"
|
128 |
msgstr "User Role Editor"
|
129 |
|
130 |
+
#: ../includes/class-user-role-editor.php:636
|
131 |
+
#: ../includes/class-user-role-editor.php:654
|
132 |
+
#: ../includes/class-user-role-editor.php:698
|
133 |
msgid "User Role Editor options are updated"
|
134 |
msgstr "Pilihan User Role Editor diperbarui"
|
135 |
|
136 |
+
#: ../includes/class-user-role-editor.php:682
|
137 |
#, fuzzy
|
138 |
msgid "Default Roles are updated"
|
139 |
msgstr "Peran "
|
140 |
|
141 |
+
#: ../includes/class-user-role-editor.php:706
|
142 |
msgid ""
|
143 |
"You do not have sufficient permissions to manage options for User Role "
|
144 |
"Editor."
|
146 |
"Anda tidak memiliki izin yang memadai untuk mengelola pilihan User Role "
|
147 |
"Editor."
|
148 |
|
149 |
+
#: ../includes/class-user-role-editor.php:781
|
150 |
msgid "Insufficient permissions to work with User Role Editor"
|
151 |
msgstr "Izin yang tidak sesuai untuk bekerja dengan User Role Editor"
|
152 |
|
153 |
+
#: ../includes/class-user-role-editor.php:835
|
154 |
msgid "Select All"
|
155 |
msgstr "Pilih Semua"
|
156 |
|
157 |
+
#: ../includes/class-user-role-editor.php:836
|
158 |
msgid "Unselect All"
|
159 |
msgstr "Batalkan Semua"
|
160 |
|
161 |
+
#: ../includes/class-user-role-editor.php:837
|
162 |
msgid "Reverse"
|
163 |
msgstr "Memutar"
|
164 |
|
165 |
+
#: ../includes/class-user-role-editor.php:838
|
166 |
msgid "Update"
|
167 |
msgstr "Pembaruan"
|
168 |
|
169 |
+
#: ../includes/class-user-role-editor.php:839
|
170 |
msgid "Please confirm permissions update"
|
171 |
msgstr "Harap konfirmasi pembaruan izin"
|
172 |
|
173 |
+
#: ../includes/class-user-role-editor.php:840
|
174 |
msgid "Add New Role"
|
175 |
msgstr "Tambah Peran Baru"
|
176 |
|
177 |
+
#: ../includes/class-user-role-editor.php:841
|
178 |
msgid " Role name (ID) can not be empty!"
|
179 |
msgstr "Nama peran (ID) tidak boleh kosong!"
|
180 |
|
181 |
+
#: ../includes/class-user-role-editor.php:842
|
182 |
msgid ""
|
183 |
" Role name (ID) must contain latin characters, digits, hyphens or underscore "
|
184 |
"only!"
|
186 |
"Nama peran (ID) harus berisi karakter latin, angka, tanda hubung atau garis "
|
187 |
"bawah saja!"
|
188 |
|
189 |
+
#: ../includes/class-user-role-editor.php:843
|
190 |
msgid ""
|
191 |
" WordPress does not support numeric Role name (ID). Add latin characters to "
|
192 |
"it."
|
193 |
msgstr ""
|
194 |
|
195 |
+
#: ../includes/class-user-role-editor.php:844
|
196 |
msgid "Add Role"
|
197 |
msgstr "Tambah Peran"
|
198 |
|
199 |
+
#: ../includes/class-user-role-editor.php:845
|
200 |
msgid "Delete Role"
|
201 |
msgstr "Hapus Peran"
|
202 |
|
203 |
+
#: ../includes/class-user-role-editor.php:846
|
204 |
msgid "Cancel"
|
205 |
msgstr "Batalkan"
|
206 |
|
207 |
+
#: ../includes/class-user-role-editor.php:847
|
208 |
msgid "Add Capability"
|
209 |
msgstr "Tambah Kemampuan"
|
210 |
|
211 |
+
#: ../includes/class-user-role-editor.php:848
|
212 |
+
#: ../includes/class-user-role-editor.php:857
|
213 |
msgid "Delete Capability"
|
214 |
msgstr "Hapus Kemampuan"
|
215 |
|
216 |
+
#: ../includes/class-user-role-editor.php:849
|
217 |
msgid "Reset"
|
218 |
msgstr "Atur Ulang"
|
219 |
|
220 |
+
#: ../includes/class-user-role-editor.php:850
|
221 |
msgid "DANGER! Resetting will restore default settings from WordPress Core."
|
222 |
msgstr ""
|
223 |
"BAHAYA! Reset akan mengembalikan pengaturan default dari WordPress Inti."
|
224 |
|
225 |
+
#: ../includes/class-user-role-editor.php:851
|
226 |
msgid ""
|
227 |
"If any plugins have changed capabilities in any way upon installation (such "
|
228 |
"as S2Member, WooCommerce, and many more), those capabilities will be DELETED!"
|
231 |
"(seperti S2Member, WooCommerce, dan banyak lagi), kemampuan mereka akan "
|
232 |
"DIHAPUS!"
|
233 |
|
234 |
+
#: ../includes/class-user-role-editor.php:852
|
235 |
msgid ""
|
236 |
"For more information on how to undo changes and restore plugin capabilities "
|
237 |
"go to"
|
239 |
"Untuk informasi lebih lanjut tentang cara membatalkan perubahan dan "
|
240 |
"mengembalikan kemampuan Plugin pergi ke"
|
241 |
|
242 |
+
#: ../includes/class-user-role-editor.php:854
|
243 |
msgid "Continue?"
|
244 |
msgstr "Lanjut?"
|
245 |
|
246 |
+
#: ../includes/class-user-role-editor.php:855
|
247 |
msgid "Default Role"
|
248 |
msgstr "Peran "
|
249 |
|
250 |
+
#: ../includes/class-user-role-editor.php:856
|
251 |
msgid "Set New Default Role"
|
252 |
msgstr "Atur Peran Baru Default"
|
253 |
|
254 |
+
#: ../includes/class-user-role-editor.php:858
|
255 |
msgid ""
|
256 |
"Warning! Be careful - removing critical capability could crash some plugin "
|
257 |
"or other custom code"
|
259 |
"Peringatan! Hati-hati - menghapus kemampuan kritis dapat menyebabkan crash "
|
260 |
"beberapa Plugin atau kode kustom lainnya"
|
261 |
|
262 |
+
#: ../includes/class-user-role-editor.php:859
|
263 |
msgid " Capability name (ID) can not be empty!"
|
264 |
msgstr "Nama Kemampuan (ID) tidak boleh kosong!"
|
265 |
|
266 |
+
#: ../includes/class-user-role-editor.php:860
|
267 |
msgid ""
|
268 |
" Capability name (ID) must contain latin characters, digits, hyphens or "
|
269 |
"underscore only!"
|
271 |
"Nama Kemampuan (ID) harus mengandung karakter latin, angka, kata penghubung "
|
272 |
"atau garis bawah saja!"
|
273 |
|
274 |
+
#: ../includes/class-user-role-editor.php:893
|
275 |
+
#: ../includes/class-user-role-editor.php:922
|
276 |
msgid "Other Roles"
|
277 |
msgstr "Peran Lainnya"
|
278 |
|
279 |
+
#: ../includes/class-user-role-editor.php:904
|
280 |
msgid "Edit"
|
281 |
msgstr "Sunting"
|
282 |
|
283 |
+
#: ../includes/ure-role-edit.php:17
|
284 |
+
#, fuzzy
|
285 |
+
msgid "Select Role and change its capabilities:"
|
286 |
+
msgstr "Pilih Peran dan ubah daftar kemampuan"
|
287 |
+
|
288 |
+
#: ../includes/ure-role-edit.php:30 ../includes/ure-user-edit.php:53
|
289 |
+
msgid "Show capabilities in human readable form"
|
290 |
+
msgstr "Tampilkan kemampuan dalam bentuk yang dapat dibaca manusia"
|
291 |
+
|
292 |
#: ../includes/ure-role-edit.php:44
|
293 |
msgid "If checked, then apply action to ALL sites of this Network"
|
294 |
msgstr ""
|
295 |
"Jika dicentang, kemudian terapkan tindakan untuk SEMUA situs Jaringan ini"
|
296 |
|
297 |
+
#: ../includes/ure-role-edit.php:56
|
298 |
+
msgid "Apply to All Sites"
|
299 |
+
msgstr "Terapkan ke Semua Situs"
|
300 |
+
|
301 |
+
#: ../includes/ure-role-edit.php:63 ../includes/ure-user-edit.php:109
|
302 |
+
msgid "Core capabilities:"
|
303 |
+
msgstr "Kemampuan inti:"
|
304 |
+
|
305 |
+
#: ../includes/ure-role-edit.php:65 ../includes/ure-user-edit.php:111
|
306 |
+
msgid "Quick filter:"
|
307 |
+
msgstr "Saring Cepat:"
|
308 |
+
|
309 |
+
#: ../includes/ure-role-edit.php:83 ../includes/ure-user-edit.php:130
|
310 |
+
msgid "Custom capabilities:"
|
311 |
+
msgstr "Kustom kemampuan:"
|
312 |
+
|
313 |
#: ../includes/class-ure-lib.php:143
|
314 |
msgid "Error: wrong request"
|
315 |
msgstr "Salah: salah permintaan"
|
316 |
|
317 |
+
#: ../includes/class-ure-lib.php:175
|
318 |
+
msgid "Role name (ID): "
|
319 |
+
msgstr "Nama Peran (ID):"
|
320 |
+
|
321 |
+
#: ../includes/class-ure-lib.php:177
|
322 |
+
msgid "Display Role Name: "
|
323 |
+
msgstr "Tampilkan Nama Peran:"
|
324 |
+
|
325 |
+
#: ../includes/class-ure-lib.php:179
|
326 |
+
msgid "Make copy of: "
|
327 |
+
msgstr "buat salinan:"
|
328 |
+
|
329 |
+
#: ../includes/class-ure-lib.php:186
|
330 |
+
msgid "Select Role:"
|
331 |
+
msgstr "Pilih Peran:"
|
332 |
+
|
333 |
+
#: ../includes/class-ure-lib.php:201
|
334 |
+
msgid "Delete:"
|
335 |
+
msgstr "Hapus:"
|
336 |
+
|
337 |
+
#: ../includes/class-ure-lib.php:208
|
338 |
+
msgid "Capability name (ID): "
|
339 |
+
msgstr "Nama Kemampuan (ID):"
|
340 |
+
|
341 |
#: ../includes/class-ure-lib.php:322
|
342 |
msgid "Error: "
|
343 |
msgstr "Salah:"
|
374 |
msgid "User Roles are restored to WordPress default values. "
|
375 |
msgstr "Peran Pengguna dikembalikan ke nilai Wordpress default."
|
376 |
|
377 |
+
#: ../includes/class-ure-lib.php:1312
|
378 |
msgid "Help"
|
379 |
msgstr "Bantuan"
|
380 |
|
381 |
+
#: ../includes/class-ure-lib.php:1662
|
382 |
msgid "Error is occur. Please check the log file."
|
383 |
msgstr "kesalahan terjadi, Harap periksa log data."
|
384 |
|
385 |
+
#: ../includes/class-ure-lib.php:1705
|
386 |
msgid ""
|
387 |
"Error: Role ID must contain latin characters, digits, hyphens or underscore "
|
388 |
"only!"
|
390 |
"Kesalahan: ID Peran harus mengandung karakter latin, angka, kata penghubung "
|
391 |
"dan garis bawah saja!"
|
392 |
|
393 |
+
#: ../includes/class-ure-lib.php:1709
|
394 |
msgid ""
|
395 |
"Error: WordPress does not support numeric Role name (ID). Add latin "
|
396 |
"characters to it."
|
397 |
msgstr ""
|
398 |
|
399 |
+
#: ../includes/class-ure-lib.php:1724
|
400 |
#, php-format
|
401 |
msgid "Role %s exists already"
|
402 |
msgstr "Peran %s telah ada"
|
403 |
|
404 |
+
#: ../includes/class-ure-lib.php:1739
|
405 |
msgid "Error is encountered during new role create operation"
|
406 |
msgstr "Kesalahan ditemui selama peran baru membuat operasi"
|
407 |
|
408 |
+
#: ../includes/class-ure-lib.php:1741
|
409 |
#, php-format
|
410 |
msgid "Role %s is created successfully"
|
411 |
msgstr "Peran %s berhasil dibuat"
|
412 |
|
413 |
+
#: ../includes/class-ure-lib.php:1810
|
414 |
msgid "Error encountered during role delete operation"
|
415 |
msgstr "Kesalahan ditemui selama operasi penghapusan peran"
|
416 |
|
417 |
+
#: ../includes/class-ure-lib.php:1812
|
418 |
msgid "Unused roles are deleted successfully"
|
419 |
msgstr "Peran yang tidak digunakan berhasil dihapus"
|
420 |
|
421 |
+
#: ../includes/class-ure-lib.php:1814
|
422 |
#, php-format
|
423 |
msgid "Role %s is deleted successfully"
|
424 |
msgstr "Peran %s berhasil dihapus"
|
425 |
|
426 |
+
#: ../includes/class-ure-lib.php:1839
|
427 |
msgid "Error encountered during default role change operation"
|
428 |
msgstr "Kesalahan ditemui selama operasi perubahan peran standar"
|
429 |
|
430 |
+
#: ../includes/class-ure-lib.php:1845
|
431 |
#, php-format
|
432 |
msgid "Default role for new users is set to %s successfully"
|
433 |
msgstr "Peran standar untuk pengguna baru diatur ke %s dengan sukses"
|
434 |
|
435 |
+
#: ../includes/class-ure-lib.php:1864
|
436 |
msgid "Editor"
|
437 |
msgstr "Penyunting"
|
438 |
|
439 |
+
#: ../includes/class-ure-lib.php:1865
|
440 |
msgid "Author"
|
441 |
msgstr "Pengarang"
|
442 |
|
443 |
+
#: ../includes/class-ure-lib.php:1866
|
444 |
msgid "Contributor"
|
445 |
msgstr "Kontributor"
|
446 |
|
447 |
+
#: ../includes/class-ure-lib.php:1867
|
448 |
msgid "Subscriber"
|
449 |
msgstr "Pelanggan"
|
450 |
|
451 |
+
#: ../includes/class-ure-lib.php:1869
|
452 |
msgid "Switch themes"
|
453 |
msgstr "Ganti tema"
|
454 |
|
455 |
+
#: ../includes/class-ure-lib.php:1870
|
456 |
msgid "Edit themes"
|
457 |
msgstr "Sunting tema"
|
458 |
|
459 |
+
#: ../includes/class-ure-lib.php:1871
|
460 |
msgid "Activate plugins"
|
461 |
msgstr "Aktifkan plugin"
|
462 |
|
463 |
+
#: ../includes/class-ure-lib.php:1872
|
464 |
msgid "Edit plugins"
|
465 |
msgstr "Sunting plugin"
|
466 |
|
467 |
+
#: ../includes/class-ure-lib.php:1873
|
468 |
msgid "Edit users"
|
469 |
msgstr "Sunting pengguna"
|
470 |
|
471 |
+
#: ../includes/class-ure-lib.php:1874
|
472 |
msgid "Edit files"
|
473 |
msgstr "Sunting data"
|
474 |
|
475 |
+
#: ../includes/class-ure-lib.php:1875
|
476 |
msgid "Manage options"
|
477 |
msgstr "kelola pilihan"
|
478 |
|
479 |
+
#: ../includes/class-ure-lib.php:1876
|
480 |
msgid "Moderate comments"
|
481 |
msgstr "Moderasi komentar"
|
482 |
|
483 |
+
#: ../includes/class-ure-lib.php:1877
|
484 |
msgid "Manage categories"
|
485 |
msgstr "Kelola kategori"
|
486 |
|
487 |
+
#: ../includes/class-ure-lib.php:1878
|
488 |
msgid "Manage links"
|
489 |
msgstr "Kelola tautan"
|
490 |
|
491 |
+
#: ../includes/class-ure-lib.php:1879
|
492 |
msgid "Upload files"
|
493 |
msgstr "Unggah data"
|
494 |
|
495 |
+
#: ../includes/class-ure-lib.php:1880
|
496 |
msgid "Import"
|
497 |
msgstr "Impor"
|
498 |
|
499 |
+
#: ../includes/class-ure-lib.php:1881
|
500 |
msgid "Unfiltered html"
|
501 |
msgstr "HTML tidak tersaring"
|
502 |
|
503 |
+
#: ../includes/class-ure-lib.php:1882
|
504 |
msgid "Edit posts"
|
505 |
msgstr "Sunting posting"
|
506 |
|
507 |
+
#: ../includes/class-ure-lib.php:1883
|
508 |
msgid "Edit others posts"
|
509 |
msgstr "Sunting posting lainnya"
|
510 |
|
511 |
+
#: ../includes/class-ure-lib.php:1884
|
512 |
msgid "Edit published posts"
|
513 |
msgstr "Sunting posting terpublikasi"
|
514 |
|
515 |
+
#: ../includes/class-ure-lib.php:1885
|
516 |
msgid "Publish posts"
|
517 |
msgstr "Publikasi posting"
|
518 |
|
519 |
+
#: ../includes/class-ure-lib.php:1886
|
520 |
msgid "Edit pages"
|
521 |
msgstr "Sunting halaman"
|
522 |
|
523 |
+
#: ../includes/class-ure-lib.php:1887
|
524 |
msgid "Read"
|
525 |
msgstr "Baca"
|
526 |
|
527 |
+
#: ../includes/class-ure-lib.php:1888
|
528 |
msgid "Level 10"
|
529 |
msgstr "Tingkat 10"
|
530 |
|
531 |
+
#: ../includes/class-ure-lib.php:1889
|
532 |
msgid "Level 9"
|
533 |
msgstr "Tingkat 9"
|
534 |
|
535 |
+
#: ../includes/class-ure-lib.php:1890
|
536 |
msgid "Level 8"
|
537 |
msgstr "Tingkat 8"
|
538 |
|
539 |
+
#: ../includes/class-ure-lib.php:1891
|
540 |
msgid "Level 7"
|
541 |
msgstr "Tingkat 7"
|
542 |
|
543 |
+
#: ../includes/class-ure-lib.php:1892
|
544 |
msgid "Level 6"
|
545 |
msgstr "Tingkat 6"
|
546 |
|
547 |
+
#: ../includes/class-ure-lib.php:1893
|
548 |
msgid "Level 5"
|
549 |
msgstr "Tingkat 5"
|
550 |
|
551 |
+
#: ../includes/class-ure-lib.php:1894
|
552 |
msgid "Level 4"
|
553 |
msgstr "Tingkat 4"
|
554 |
|
555 |
+
#: ../includes/class-ure-lib.php:1895
|
556 |
msgid "Level 3"
|
557 |
msgstr "Tingkat 3"
|
558 |
|
559 |
+
#: ../includes/class-ure-lib.php:1896
|
560 |
msgid "Level 2"
|
561 |
msgstr "Tingkat 2"
|
562 |
|
563 |
+
#: ../includes/class-ure-lib.php:1897
|
564 |
msgid "Level 1"
|
565 |
msgstr "Tingkat 1"
|
566 |
|
567 |
+
#: ../includes/class-ure-lib.php:1898
|
568 |
msgid "Level 0"
|
569 |
msgstr "Tingkat 0"
|
570 |
|
571 |
+
#: ../includes/class-ure-lib.php:1899
|
572 |
msgid "Edit others pages"
|
573 |
msgstr "Sunting halaman lainnya"
|
574 |
|
575 |
+
#: ../includes/class-ure-lib.php:1900
|
576 |
msgid "Edit published pages"
|
577 |
msgstr "Sunting halaman terpublikasi"
|
578 |
|
579 |
+
#: ../includes/class-ure-lib.php:1901
|
580 |
msgid "Publish pages"
|
581 |
msgstr "Publikasi halaman"
|
582 |
|
583 |
+
#: ../includes/class-ure-lib.php:1902
|
584 |
msgid "Delete pages"
|
585 |
msgstr "Hapus halaman"
|
586 |
|
587 |
+
#: ../includes/class-ure-lib.php:1903
|
588 |
msgid "Delete others pages"
|
589 |
msgstr "Hapus halaman lainnya"
|
590 |
|
591 |
+
#: ../includes/class-ure-lib.php:1904
|
592 |
msgid "Delete published pages"
|
593 |
msgstr "Hapus halaman terpublikasi"
|
594 |
|
595 |
+
#: ../includes/class-ure-lib.php:1905
|
596 |
msgid "Delete posts"
|
597 |
msgstr "hapus posting"
|
598 |
|
599 |
+
#: ../includes/class-ure-lib.php:1906
|
600 |
msgid "Delete others posts"
|
601 |
msgstr "Hapus posting lainnya"
|
602 |
|
603 |
+
#: ../includes/class-ure-lib.php:1907
|
604 |
msgid "Delete published posts"
|
605 |
msgstr "Hapus posting terpublikasi"
|
606 |
|
607 |
+
#: ../includes/class-ure-lib.php:1908
|
608 |
msgid "Delete private posts"
|
609 |
msgstr "Hapus posting pribadi"
|
610 |
|
611 |
+
#: ../includes/class-ure-lib.php:1909
|
612 |
msgid "Edit private posts"
|
613 |
msgstr "Sunting posting pribadi"
|
614 |
|
615 |
+
#: ../includes/class-ure-lib.php:1910
|
616 |
msgid "Read private posts"
|
617 |
msgstr "Baca posting pribadi"
|
618 |
|
619 |
+
#: ../includes/class-ure-lib.php:1911
|
620 |
msgid "Delete private pages"
|
621 |
msgstr "Hapus halaman pribadi"
|
622 |
|
623 |
+
#: ../includes/class-ure-lib.php:1912
|
624 |
msgid "Edit private pages"
|
625 |
msgstr "Sunting halaman pribadi"
|
626 |
|
627 |
+
#: ../includes/class-ure-lib.php:1913
|
628 |
msgid "Read private pages"
|
629 |
msgstr "baca halaman pribadi"
|
630 |
|
631 |
+
#: ../includes/class-ure-lib.php:1914
|
632 |
msgid "Delete users"
|
633 |
msgstr "Hapus pengguna"
|
634 |
|
635 |
+
#: ../includes/class-ure-lib.php:1915
|
636 |
msgid "Create users"
|
637 |
msgstr "Buat pengguna"
|
638 |
|
639 |
+
#: ../includes/class-ure-lib.php:1916
|
640 |
msgid "Unfiltered upload"
|
641 |
msgstr "Unggahan tidak tersaring"
|
642 |
|
643 |
+
#: ../includes/class-ure-lib.php:1917
|
644 |
msgid "Edit dashboard"
|
645 |
msgstr "Sunting dasbor"
|
646 |
|
647 |
+
#: ../includes/class-ure-lib.php:1918
|
648 |
msgid "Update plugins"
|
649 |
msgstr "Perbarui plugin"
|
650 |
|
651 |
+
#: ../includes/class-ure-lib.php:1919
|
652 |
msgid "Delete plugins"
|
653 |
msgstr "Hapus plugin"
|
654 |
|
655 |
+
#: ../includes/class-ure-lib.php:1920
|
656 |
msgid "Install plugins"
|
657 |
msgstr "Pasang plugin"
|
658 |
|
659 |
+
#: ../includes/class-ure-lib.php:1921
|
660 |
msgid "Update themes"
|
661 |
msgstr "Perbarui tema"
|
662 |
|
663 |
+
#: ../includes/class-ure-lib.php:1922
|
664 |
msgid "Install themes"
|
665 |
msgstr "Pasang tema"
|
666 |
|
667 |
+
#: ../includes/class-ure-lib.php:1923
|
668 |
msgid "Update core"
|
669 |
msgstr "Perbarui inti"
|
670 |
|
671 |
+
#: ../includes/class-ure-lib.php:1924
|
672 |
msgid "List users"
|
673 |
msgstr "Daftar pengguna"
|
674 |
|
675 |
+
#: ../includes/class-ure-lib.php:1925
|
676 |
msgid "Remove users"
|
677 |
msgstr "Hapus pengguna"
|
678 |
|
679 |
+
#: ../includes/class-ure-lib.php:1926
|
680 |
msgid "Add users"
|
681 |
msgstr "Tambah pengguna"
|
682 |
|
683 |
+
#: ../includes/class-ure-lib.php:1927
|
684 |
msgid "Promote users"
|
685 |
msgstr "Promosi pengguna"
|
686 |
|
687 |
+
#: ../includes/class-ure-lib.php:1928
|
688 |
msgid "Edit theme options"
|
689 |
msgstr "Sunting pilihan tema"
|
690 |
|
691 |
+
#: ../includes/class-ure-lib.php:1929
|
692 |
msgid "Delete themes"
|
693 |
msgstr "Hapus tema"
|
694 |
|
695 |
+
#: ../includes/class-ure-lib.php:1930
|
696 |
msgid "Export"
|
697 |
msgstr "Ekspor"
|
698 |
|
699 |
+
#: ../includes/class-ure-lib.php:2040
|
700 |
msgid "Error: Capability name must contain latin characters and digits only!"
|
701 |
msgstr "Salah: Kemampuan nama harus mengandung karakter latin dan angka saja!"
|
702 |
|
703 |
+
#: ../includes/class-ure-lib.php:2053
|
704 |
#, php-format
|
705 |
msgid "Capability %s is added successfully"
|
706 |
msgstr "Kemampuan %s berhasil ditambahkan"
|
707 |
|
708 |
+
#: ../includes/class-ure-lib.php:2055
|
709 |
#, php-format
|
710 |
msgid "Capability %s exists already"
|
711 |
msgstr "Kemampuan %s telah ada"
|
712 |
|
713 |
+
#: ../includes/class-ure-lib.php:2080
|
714 |
#, php-format
|
715 |
msgid "Error! You do not have permission to delete this capability: %s!"
|
716 |
msgstr "Salah! Anda tidak memiliki izin untuk menghapus kemampuan ini: %s!"
|
717 |
|
718 |
+
#: ../includes/class-ure-lib.php:2099
|
719 |
#, php-format
|
720 |
msgid "Capability %s is removed successfully"
|
721 |
msgstr "Kemampuan %s berhasil dihapus"
|
722 |
|
723 |
+
#: ../includes/class-ure-lib.php:2203
|
724 |
+
msgid "Version:"
|
725 |
+
msgstr ""
|
726 |
+
|
727 |
+
#: ../includes/class-ure-lib.php:2204
|
728 |
msgid "Author's website"
|
729 |
msgstr "Website pengarang"
|
730 |
|
731 |
+
#: ../includes/class-ure-lib.php:2205
|
732 |
msgid "Plugin webpage"
|
733 |
msgstr "Halaman web Plugin"
|
734 |
|
735 |
+
#: ../includes/class-ure-lib.php:2206
|
736 |
#, fuzzy
|
737 |
msgid "Plugin download"
|
738 |
msgstr "Halaman web Plugin"
|
739 |
|
740 |
+
#: ../includes/class-ure-lib.php:2208
|
741 |
msgid "FAQ"
|
742 |
msgstr "FAQ"
|
743 |
|
744 |
+
#: ../includes/class-ure-lib.php:2256
|
745 |
msgid "None"
|
746 |
msgstr "Nihil"
|
747 |
|
748 |
+
#: ../includes/class-ure-lib.php:2283
|
749 |
msgid "Delete All Unused Roles"
|
750 |
msgstr "Hapus Peran Tidak Terpakai"
|
751 |
|
752 |
+
#: ../includes/class-ure-lib.php:2307
|
753 |
msgid "— No role for this site —"
|
754 |
msgstr "— Tidak ada peran untuk situs ini —"
|
755 |
|
761 |
msgid "Change capabilities for user"
|
762 |
msgstr "Ubah kemampuan untuk pengguna"
|
763 |
|
764 |
+
#: ../includes/ure-user-edit.php:71
|
765 |
+
msgid "Primary Role:"
|
766 |
+
msgstr "Peran Utama:"
|
767 |
+
|
768 |
+
#: ../includes/ure-user-edit.php:81
|
769 |
+
msgid "bbPress Role:"
|
770 |
+
msgstr "Peran bbPress:"
|
771 |
+
|
772 |
+
#: ../includes/ure-user-edit.php:91
|
773 |
+
msgid "Other Roles:"
|
774 |
+
msgstr "Peran Lain:"
|
775 |
|
776 |
#: ../includes/class-ure-screen-help.php:16
|
777 |
msgid ""
|
783 |
"daftar seleksi pilihan peran User Role Editor. Akan tersembunyi secara "
|
784 |
"default demi alasan keamanan."
|
785 |
|
|
|
|
|
|
|
|
|
786 |
#: ../includes/class-ure-screen-help.php:19
|
787 |
msgid ""
|
788 |
"automatically converts capability names from the technical form for internal "
|
793 |
"penggunaan internal seperti \"edit_others_posts\" ke bentuk yang lebih user "
|
794 |
"friendly, misalnya \"Edit posting orang lain\"."
|
795 |
|
|
|
|
|
|
|
|
|
796 |
#: ../includes/class-ure-screen-help.php:22
|
797 |
msgid ""
|
798 |
"Capabilities like \"level_0\", \"level_1\" are deprecated and are not used "
|
820 |
"bawah WordPress multi-situs. Aktifkan pilihan ini dalam rangka menghapus "
|
821 |
"keterbatasan ini."
|
822 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
823 |
#~ msgid "About this Plugin:"
|
824 |
#~ msgstr "Tentang Plugin ini:"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
lang/ure-ru_RU.mo
CHANGED
Binary file
|
lang/ure-ru_RU.po
CHANGED
@@ -2,7 +2,7 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: User Role Editor v.2.0\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2014-
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: Vladimir Garagulya <vladimir@shinephp.com>\n"
|
8 |
"Language-Team: ShinePHP.com <vladimir@shinephp.com>\n"
|
@@ -16,12 +16,63 @@ 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 "Сохранить"
|
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 "
|
@@ -31,6 +82,11 @@ msgstr ""
|
|
31 |
"вновь зарегистрированному пользователю дополнительных ролей по-умолчанию эти "
|
32 |
"роли должны существовать на этом сайте."
|
33 |
|
|
|
|
|
|
|
|
|
|
|
34 |
#: ../includes/class-user-role-editor.php:185
|
35 |
msgid "Change role for users without role"
|
36 |
msgstr "Изменить роль для пользователей без роли"
|
@@ -57,7 +113,7 @@ msgid "Settings"
|
|
57 |
msgstr "Установки"
|
58 |
|
59 |
#: ../includes/class-user-role-editor.php:520
|
60 |
-
#: ../includes/class-ure-lib.php:
|
61 |
msgid "Changelog"
|
62 |
msgstr "Журнал изменений"
|
63 |
|
@@ -67,59 +123,60 @@ msgstr "Обзор"
|
|
67 |
|
68 |
#: ../includes/class-user-role-editor.php:551
|
69 |
#: ../includes/class-user-role-editor.php:579
|
70 |
-
#: ../includes/class-user-role-editor.php:
|
71 |
#: ../includes/class-ure-lib.php:225
|
72 |
msgid "User Role Editor"
|
73 |
msgstr "Редактор ролей пользователей"
|
74 |
|
75 |
-
#: ../includes/class-user-role-editor.php:
|
76 |
-
#: ../includes/class-user-role-editor.php:
|
|
|
77 |
msgid "User Role Editor options are updated"
|
78 |
msgstr "Изменения в настройках Редактора ролей пользователей сохранены"
|
79 |
|
80 |
-
#: ../includes/class-user-role-editor.php:
|
81 |
msgid "Default Roles are updated"
|
82 |
msgstr "Изменения в роли по-умолчанию сохранены"
|
83 |
|
84 |
-
#: ../includes/class-user-role-editor.php:
|
85 |
msgid ""
|
86 |
"You do not have sufficient permissions to manage options for User Role "
|
87 |
"Editor."
|
88 |
msgstr "У вас нет прав на изменение настроек плагина"
|
89 |
|
90 |
-
#: ../includes/class-user-role-editor.php:
|
91 |
msgid "Insufficient permissions to work with User Role Editor"
|
92 |
msgstr "Не достаточно прав для работы с User Role Editor"
|
93 |
|
94 |
-
#: ../includes/class-user-role-editor.php:
|
95 |
msgid "Select All"
|
96 |
-
msgstr "Выбрать
|
97 |
|
98 |
-
#: ../includes/class-user-role-editor.php:
|
99 |
msgid "Unselect All"
|
100 |
msgstr "Исключить все"
|
101 |
|
102 |
-
#: ../includes/class-user-role-editor.php:
|
103 |
msgid "Reverse"
|
104 |
msgstr "Обратить"
|
105 |
|
106 |
-
#: ../includes/class-user-role-editor.php:
|
107 |
msgid "Update"
|
108 |
msgstr "Сохранить"
|
109 |
|
110 |
-
#: ../includes/class-user-role-editor.php:
|
111 |
msgid "Please confirm permissions update"
|
112 |
msgstr "Пожалуйста, подтвердите продолжение "
|
113 |
|
114 |
-
#: ../includes/class-user-role-editor.php:
|
115 |
msgid "Add New Role"
|
116 |
-
msgstr "Добавить новую
|
117 |
|
118 |
-
#: ../includes/class-user-role-editor.php:
|
119 |
msgid " Role name (ID) can not be empty!"
|
120 |
msgstr "Идентификатор роли (ID) не может быть пустым!"
|
121 |
|
122 |
-
#: ../includes/class-user-role-editor.php:
|
123 |
msgid ""
|
124 |
" Role name (ID) must contain latin characters, digits, hyphens or underscore "
|
125 |
"only!"
|
@@ -127,7 +184,7 @@ msgstr ""
|
|
127 |
"Ошибка: идентификатор роли может содержать только латинские буквы, цифры, "
|
128 |
"тире и знак подчеркивания"
|
129 |
|
130 |
-
#: ../includes/class-user-role-editor.php:
|
131 |
msgid ""
|
132 |
" WordPress does not support numeric Role name (ID). Add latin characters to "
|
133 |
"it."
|
@@ -135,38 +192,38 @@ msgstr ""
|
|
135 |
"WordPress не поддерживает цифровые идентификаторы ролей. Начните имя роли с "
|
136 |
"латинских символов."
|
137 |
|
138 |
-
#: ../includes/class-user-role-editor.php:
|
139 |
msgid "Add Role"
|
140 |
-
msgstr "Добавить
|
141 |
|
142 |
-
#: ../includes/class-user-role-editor.php:
|
143 |
msgid "Delete Role"
|
144 |
-
msgstr "Удалить
|
145 |
|
146 |
-
#: ../includes/class-user-role-editor.php:
|
147 |
msgid "Cancel"
|
148 |
msgstr "Отмена"
|
149 |
|
150 |
-
#: ../includes/class-user-role-editor.php:
|
151 |
msgid "Add Capability"
|
152 |
-
msgstr "
|
153 |
|
154 |
-
#: ../includes/class-user-role-editor.php:
|
155 |
-
#: ../includes/class-user-role-editor.php:
|
156 |
msgid "Delete Capability"
|
157 |
-
msgstr "Удалить
|
158 |
|
159 |
-
#: ../includes/class-user-role-editor.php:
|
160 |
msgid "Reset"
|
161 |
msgstr "Сброс"
|
162 |
|
163 |
-
#: ../includes/class-user-role-editor.php:
|
164 |
msgid "DANGER! Resetting will restore default settings from WordPress Core."
|
165 |
msgstr ""
|
166 |
"ВНИМАНИЕ! Очистка восстановит роли по состоянию на момент установки "
|
167 |
"WordPress."
|
168 |
|
169 |
-
#: ../includes/class-user-role-editor.php:
|
170 |
msgid ""
|
171 |
"If any plugins have changed capabilities in any way upon installation (such "
|
172 |
"as S2Member, WooCommerce, and many more), those capabilities will be DELETED!"
|
@@ -174,7 +231,7 @@ msgstr ""
|
|
174 |
"Если плагины изменяли пользовательские права после установки WordPress "
|
175 |
"(S2Member, WooCommerce и др.), права, созданные плагинами будут УДАЛЕНЫ!"
|
176 |
|
177 |
-
#: ../includes/class-user-role-editor.php:
|
178 |
msgid ""
|
179 |
"For more information on how to undo changes and restore plugin capabilities "
|
180 |
"go to"
|
@@ -182,19 +239,19 @@ msgstr ""
|
|
182 |
"Подробнее о том, как откатить сделанные изменения и восстановить разрешения "
|
183 |
"для плагинов, можно узнать здесь"
|
184 |
|
185 |
-
#: ../includes/class-user-role-editor.php:
|
186 |
msgid "Continue?"
|
187 |
msgstr "Продолжить?"
|
188 |
|
189 |
-
#: ../includes/class-user-role-editor.php:
|
190 |
msgid "Default Role"
|
191 |
msgstr "Роль по-умолчанию"
|
192 |
|
193 |
-
#: ../includes/class-user-role-editor.php:
|
194 |
msgid "Set New Default Role"
|
195 |
-
msgstr "Установить
|
196 |
|
197 |
-
#: ../includes/class-user-role-editor.php:
|
198 |
msgid ""
|
199 |
"Warning! Be careful - removing critical capability could crash some plugin "
|
200 |
"or other custom code"
|
@@ -202,11 +259,11 @@ msgstr ""
|
|
202 |
"Внимание! Будьте осторожны - удаление критичной возможности может привести к "
|
203 |
"прекращеню работы одного из плагинов или другого кода."
|
204 |
|
205 |
-
#: ../includes/class-user-role-editor.php:
|
206 |
msgid " Capability name (ID) can not be empty!"
|
207 |
msgstr "Идентификатор возможности (ID) не может быть пустым!"
|
208 |
|
209 |
-
#: ../includes/class-user-role-editor.php:
|
210 |
msgid ""
|
211 |
" Capability name (ID) must contain latin characters, digits, hyphens or "
|
212 |
"underscore only!"
|
@@ -214,23 +271,71 @@ msgstr ""
|
|
214 |
"Ошибка: Наименование возможности должно содержать только латинские буквы и "
|
215 |
"цифры, знаки подчеркивания"
|
216 |
|
217 |
-
#: ../includes/class-user-role-editor.php:
|
218 |
-
#: ../includes/class-user-role-editor.php:
|
219 |
msgid "Other Roles"
|
220 |
-
msgstr "Другие
|
221 |
|
222 |
-
#: ../includes/class-user-role-editor.php:
|
223 |
msgid "Edit"
|
224 |
msgstr "Редактор"
|
225 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
226 |
#: ../includes/ure-role-edit.php:44
|
227 |
msgid "If checked, then apply action to ALL sites of this Network"
|
228 |
msgstr "Если включено, применить ко всем сайтам этой Сети"
|
229 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
230 |
#: ../includes/class-ure-lib.php:143
|
231 |
msgid "Error: wrong request"
|
232 |
msgstr "Ошибка: неверный запрос"
|
233 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
234 |
#: ../includes/class-ure-lib.php:322
|
235 |
msgid "Error: "
|
236 |
msgstr "Ошибка:"
|
@@ -267,15 +372,15 @@ msgstr "При изменении прав пользователя произо
|
|
267 |
msgid "User Roles are restored to WordPress default values. "
|
268 |
msgstr "Роли возвращены к начальному состоянию"
|
269 |
|
270 |
-
#: ../includes/class-ure-lib.php:
|
271 |
msgid "Help"
|
272 |
msgstr "Помощь"
|
273 |
|
274 |
-
#: ../includes/class-ure-lib.php:
|
275 |
msgid "Error is occur. Please check the log file."
|
276 |
msgstr "Произошла ошибка. Проверьте лог-файл."
|
277 |
|
278 |
-
#: ../includes/class-ure-lib.php:
|
279 |
msgid ""
|
280 |
"Error: Role ID must contain latin characters, digits, hyphens or underscore "
|
281 |
"only!"
|
@@ -283,7 +388,7 @@ msgstr ""
|
|
283 |
"Ошибка: идентификатор роли (ID) должен содержать только латинские буквы, "
|
284 |
"цифры, знак подчеркивания и дефис."
|
285 |
|
286 |
-
#: ../includes/class-ure-lib.php:
|
287 |
msgid ""
|
288 |
"Error: WordPress does not support numeric Role name (ID). Add latin "
|
289 |
"characters to it."
|
@@ -291,355 +396,359 @@ msgstr ""
|
|
291 |
"Ошибка: WordPress не поддерживает цифровые идентификаторы ролей. Начните имя "
|
292 |
"роли с латинских символов."
|
293 |
|
294 |
-
#: ../includes/class-ure-lib.php:
|
295 |
#, php-format
|
296 |
msgid "Role %s exists already"
|
297 |
msgstr "Роль %s уже существует"
|
298 |
|
299 |
-
#: ../includes/class-ure-lib.php:
|
300 |
msgid "Error is encountered during new role create operation"
|
301 |
msgstr "Произошла ошибка при создании новой роли"
|
302 |
|
303 |
-
#: ../includes/class-ure-lib.php:
|
304 |
#, php-format
|
305 |
msgid "Role %s is created successfully"
|
306 |
msgstr "Роль %s создана успешно"
|
307 |
|
308 |
-
#: ../includes/class-ure-lib.php:
|
309 |
msgid "Error encountered during role delete operation"
|
310 |
msgstr "Произошла ошибка при удалении роли"
|
311 |
|
312 |
-
#: ../includes/class-ure-lib.php:
|
313 |
msgid "Unused roles are deleted successfully"
|
314 |
msgstr "Неиспользуемые роли удалены успешно"
|
315 |
|
316 |
-
#: ../includes/class-ure-lib.php:
|
317 |
#, php-format
|
318 |
msgid "Role %s is deleted successfully"
|
319 |
msgstr "Роль %s удалена успешно"
|
320 |
|
321 |
-
#: ../includes/class-ure-lib.php:
|
322 |
msgid "Error encountered during default role change operation"
|
323 |
msgstr "Произошла ошибка при изменении роли по-умолчанию"
|
324 |
|
325 |
-
#: ../includes/class-ure-lib.php:
|
326 |
#, php-format
|
327 |
msgid "Default role for new users is set to %s successfully"
|
328 |
msgstr "Роль по-умолчанию для новых пользователй изменена на %s успешно."
|
329 |
|
330 |
-
#: ../includes/class-ure-lib.php:
|
331 |
msgid "Editor"
|
332 |
msgstr "Редактор"
|
333 |
|
334 |
-
#: ../includes/class-ure-lib.php:
|
335 |
msgid "Author"
|
336 |
msgstr "Автор"
|
337 |
|
338 |
-
#: ../includes/class-ure-lib.php:
|
339 |
msgid "Contributor"
|
340 |
msgstr "Участник"
|
341 |
|
342 |
-
#: ../includes/class-ure-lib.php:
|
343 |
msgid "Subscriber"
|
344 |
msgstr "Подписчик"
|
345 |
|
346 |
-
#: ../includes/class-ure-lib.php:
|
347 |
msgid "Switch themes"
|
348 |
msgstr "Менять темы"
|
349 |
|
350 |
-
#: ../includes/class-ure-lib.php:
|
351 |
msgid "Edit themes"
|
352 |
msgstr "Изменять темы"
|
353 |
|
354 |
-
#: ../includes/class-ure-lib.php:
|
355 |
msgid "Activate plugins"
|
356 |
msgstr "Активировать плагины"
|
357 |
|
358 |
-
#: ../includes/class-ure-lib.php:
|
359 |
msgid "Edit plugins"
|
360 |
msgstr "Редактировать плагины"
|
361 |
|
362 |
-
#: ../includes/class-ure-lib.php:
|
363 |
msgid "Edit users"
|
364 |
msgstr "Изменять пользователей"
|
365 |
|
366 |
-
#: ../includes/class-ure-lib.php:
|
367 |
msgid "Edit files"
|
368 |
msgstr "Изменять файлы"
|
369 |
|
370 |
-
#: ../includes/class-ure-lib.php:
|
371 |
msgid "Manage options"
|
372 |
msgstr "Управлять установками"
|
373 |
|
374 |
-
#: ../includes/class-ure-lib.php:
|
375 |
msgid "Moderate comments"
|
376 |
msgstr "Модерировать комментарии"
|
377 |
|
378 |
-
#: ../includes/class-ure-lib.php:
|
379 |
msgid "Manage categories"
|
380 |
msgstr "Управлять категориями"
|
381 |
|
382 |
-
#: ../includes/class-ure-lib.php:
|
383 |
msgid "Manage links"
|
384 |
msgstr "Управлять ссылками"
|
385 |
|
386 |
-
#: ../includes/class-ure-lib.php:
|
387 |
msgid "Upload files"
|
388 |
msgstr "Загружать файлы"
|
389 |
|
390 |
-
#: ../includes/class-ure-lib.php:
|
391 |
msgid "Import"
|
392 |
msgstr "Импорт"
|
393 |
|
394 |
-
#: ../includes/class-ure-lib.php:
|
395 |
msgid "Unfiltered html"
|
396 |
msgstr "html без фильтра"
|
397 |
|
398 |
-
#: ../includes/class-ure-lib.php:
|
399 |
msgid "Edit posts"
|
400 |
msgstr "Изменять статьи"
|
401 |
|
402 |
-
#: ../includes/class-ure-lib.php:
|
403 |
msgid "Edit others posts"
|
404 |
msgstr "Изменять чужие статьи"
|
405 |
|
406 |
-
#: ../includes/class-ure-lib.php:
|
407 |
msgid "Edit published posts"
|
408 |
msgstr "Редактировать опубликованные статьи"
|
409 |
|
410 |
-
#: ../includes/class-ure-lib.php:
|
411 |
msgid "Publish posts"
|
412 |
msgstr "Публиковать статьи"
|
413 |
|
414 |
-
#: ../includes/class-ure-lib.php:
|
415 |
msgid "Edit pages"
|
416 |
msgstr "Изменять страницы"
|
417 |
|
418 |
-
#: ../includes/class-ure-lib.php:
|
419 |
msgid "Read"
|
420 |
msgstr "Чтение"
|
421 |
|
422 |
-
#: ../includes/class-ure-lib.php:
|
423 |
msgid "Level 10"
|
424 |
msgstr "Уровень 10"
|
425 |
|
426 |
-
#: ../includes/class-ure-lib.php:
|
427 |
msgid "Level 9"
|
428 |
msgstr "Уровень 9"
|
429 |
|
430 |
-
#: ../includes/class-ure-lib.php:
|
431 |
msgid "Level 8"
|
432 |
msgstr "Уровень 9"
|
433 |
|
434 |
-
#: ../includes/class-ure-lib.php:
|
435 |
msgid "Level 7"
|
436 |
msgstr "Уровень 7"
|
437 |
|
438 |
-
#: ../includes/class-ure-lib.php:
|
439 |
msgid "Level 6"
|
440 |
msgstr "Уровень 6"
|
441 |
|
442 |
-
#: ../includes/class-ure-lib.php:
|
443 |
msgid "Level 5"
|
444 |
msgstr "Уровень 5"
|
445 |
|
446 |
-
#: ../includes/class-ure-lib.php:
|
447 |
msgid "Level 4"
|
448 |
msgstr "Уровень 4"
|
449 |
|
450 |
-
#: ../includes/class-ure-lib.php:
|
451 |
msgid "Level 3"
|
452 |
msgstr "Уровень 3"
|
453 |
|
454 |
-
#: ../includes/class-ure-lib.php:
|
455 |
msgid "Level 2"
|
456 |
msgstr "Уровень 2"
|
457 |
|
458 |
-
#: ../includes/class-ure-lib.php:
|
459 |
msgid "Level 1"
|
460 |
msgstr "Уровень 1"
|
461 |
|
462 |
-
#: ../includes/class-ure-lib.php:
|
463 |
msgid "Level 0"
|
464 |
msgstr "Уровень 0"
|
465 |
|
466 |
-
#: ../includes/class-ure-lib.php:
|
467 |
msgid "Edit others pages"
|
468 |
msgstr "Редактировать чужие страницы"
|
469 |
|
470 |
-
#: ../includes/class-ure-lib.php:
|
471 |
msgid "Edit published pages"
|
472 |
msgstr "Редактировать опубликованные страницы"
|
473 |
|
474 |
-
#: ../includes/class-ure-lib.php:
|
475 |
msgid "Publish pages"
|
476 |
msgstr "Публиковать страницы"
|
477 |
|
478 |
-
#: ../includes/class-ure-lib.php:
|
479 |
msgid "Delete pages"
|
480 |
msgstr "Удалять страницы"
|
481 |
|
482 |
-
#: ../includes/class-ure-lib.php:
|
483 |
msgid "Delete others pages"
|
484 |
msgstr "Удалить чужие страницы"
|
485 |
|
486 |
-
#: ../includes/class-ure-lib.php:
|
487 |
msgid "Delete published pages"
|
488 |
msgstr "Удалять опубликованные страницы"
|
489 |
|
490 |
-
#: ../includes/class-ure-lib.php:
|
491 |
msgid "Delete posts"
|
492 |
msgstr "Удалять статьи"
|
493 |
|
494 |
-
#: ../includes/class-ure-lib.php:
|
495 |
msgid "Delete others posts"
|
496 |
msgstr "Удалять чужие статьи"
|
497 |
|
498 |
-
#: ../includes/class-ure-lib.php:
|
499 |
msgid "Delete published posts"
|
500 |
msgstr "Удалять опубликованные статьи"
|
501 |
|
502 |
-
#: ../includes/class-ure-lib.php:
|
503 |
msgid "Delete private posts"
|
504 |
msgstr "Удалять частные статьи"
|
505 |
|
506 |
-
#: ../includes/class-ure-lib.php:
|
507 |
msgid "Edit private posts"
|
508 |
msgstr "Редактировать частные статьи"
|
509 |
|
510 |
-
#: ../includes/class-ure-lib.php:
|
511 |
msgid "Read private posts"
|
512 |
msgstr "Читать частные статьи"
|
513 |
|
514 |
-
#: ../includes/class-ure-lib.php:
|
515 |
msgid "Delete private pages"
|
516 |
msgstr "Удалять частные страницы"
|
517 |
|
518 |
-
#: ../includes/class-ure-lib.php:
|
519 |
msgid "Edit private pages"
|
520 |
msgstr "Редактировать частные страницы"
|
521 |
|
522 |
-
#: ../includes/class-ure-lib.php:
|
523 |
msgid "Read private pages"
|
524 |
msgstr "Читать частные страницы"
|
525 |
|
526 |
-
#: ../includes/class-ure-lib.php:
|
527 |
msgid "Delete users"
|
528 |
msgstr "Удалять пользователей"
|
529 |
|
530 |
-
#: ../includes/class-ure-lib.php:
|
531 |
msgid "Create users"
|
532 |
msgstr "Создавать пользователей"
|
533 |
|
534 |
-
#: ../includes/class-ure-lib.php:
|
535 |
msgid "Unfiltered upload"
|
536 |
msgstr "Загрузка без фильтра"
|
537 |
|
538 |
-
#: ../includes/class-ure-lib.php:
|
539 |
msgid "Edit dashboard"
|
540 |
msgstr "Изменять панель администратора"
|
541 |
|
542 |
-
#: ../includes/class-ure-lib.php:
|
543 |
msgid "Update plugins"
|
544 |
msgstr "Обновлять плагины"
|
545 |
|
546 |
-
#: ../includes/class-ure-lib.php:
|
547 |
msgid "Delete plugins"
|
548 |
msgstr "Удалять плагины"
|
549 |
|
550 |
-
#: ../includes/class-ure-lib.php:
|
551 |
msgid "Install plugins"
|
552 |
msgstr "Устанавливать плагины"
|
553 |
|
554 |
-
#: ../includes/class-ure-lib.php:
|
555 |
msgid "Update themes"
|
556 |
msgstr "Обновлять темы"
|
557 |
|
558 |
-
#: ../includes/class-ure-lib.php:
|
559 |
msgid "Install themes"
|
560 |
msgstr "Устанавливать темы"
|
561 |
|
562 |
-
#: ../includes/class-ure-lib.php:
|
563 |
msgid "Update core"
|
564 |
msgstr "Обновлять ядро"
|
565 |
|
566 |
-
#: ../includes/class-ure-lib.php:
|
567 |
msgid "List users"
|
568 |
msgstr "Список пользователей"
|
569 |
|
570 |
-
#: ../includes/class-ure-lib.php:
|
571 |
msgid "Remove users"
|
572 |
msgstr "Удалять пользователей"
|
573 |
|
574 |
-
#: ../includes/class-ure-lib.php:
|
575 |
msgid "Add users"
|
576 |
msgstr "Добавлять пользователей"
|
577 |
|
578 |
-
#: ../includes/class-ure-lib.php:
|
579 |
msgid "Promote users"
|
580 |
msgstr "Продвигать пользователей"
|
581 |
|
582 |
-
#: ../includes/class-ure-lib.php:
|
583 |
msgid "Edit theme options"
|
584 |
msgstr "Изменять настройки темы"
|
585 |
|
586 |
-
#: ../includes/class-ure-lib.php:
|
587 |
msgid "Delete themes"
|
588 |
msgstr "Удалять темы"
|
589 |
|
590 |
-
#: ../includes/class-ure-lib.php:
|
591 |
msgid "Export"
|
592 |
msgstr "Экспорт"
|
593 |
|
594 |
-
#: ../includes/class-ure-lib.php:
|
595 |
msgid "Error: Capability name must contain latin characters and digits only!"
|
596 |
msgstr "Ошибка: Имя должно содержать только латинские буквы и цифры"
|
597 |
|
598 |
-
#: ../includes/class-ure-lib.php:
|
599 |
#, php-format
|
600 |
msgid "Capability %s is added successfully"
|
601 |
msgstr "Возможность %s добавлена успешно"
|
602 |
|
603 |
-
#: ../includes/class-ure-lib.php:
|
604 |
#, php-format
|
605 |
msgid "Capability %s exists already"
|
606 |
msgstr "Возможность %s уже существует"
|
607 |
|
608 |
-
#: ../includes/class-ure-lib.php:
|
609 |
#, php-format
|
610 |
msgid "Error! You do not have permission to delete this capability: %s!"
|
611 |
msgstr "Ошибка! Вам запрещено удалять эту возможность: %s!"
|
612 |
|
613 |
-
#: ../includes/class-ure-lib.php:
|
614 |
#, php-format
|
615 |
msgid "Capability %s is removed successfully"
|
616 |
msgstr "Возможность %s удалена успешно"
|
617 |
|
618 |
-
#: ../includes/class-ure-lib.php:
|
|
|
|
|
|
|
|
|
619 |
msgid "Author's website"
|
620 |
msgstr "Вебсайт автора"
|
621 |
|
622 |
-
#: ../includes/class-ure-lib.php:
|
623 |
msgid "Plugin webpage"
|
624 |
msgstr "Страница плагина"
|
625 |
|
626 |
-
#: ../includes/class-ure-lib.php:
|
627 |
msgid "Plugin download"
|
628 |
msgstr "Загрузить плагин"
|
629 |
|
630 |
-
#: ../includes/class-ure-lib.php:
|
631 |
msgid "FAQ"
|
632 |
msgstr "Часто задаваемые вопросы"
|
633 |
|
634 |
-
#: ../includes/class-ure-lib.php:
|
635 |
msgid "None"
|
636 |
msgstr "Нет"
|
637 |
|
638 |
-
#: ../includes/class-ure-lib.php:
|
639 |
msgid "Delete All Unused Roles"
|
640 |
msgstr "Удалить все неиспользуемые роли"
|
641 |
|
642 |
-
#: ../includes/class-ure-lib.php:
|
643 |
msgid "— No role for this site —"
|
644 |
msgstr "— Нет роли для этого сайта —"
|
645 |
|
@@ -651,9 +760,17 @@ msgstr "Суперадминистратор сети"
|
|
651 |
msgid "Change capabilities for user"
|
652 |
msgstr "Изменить возможности для пользователя"
|
653 |
|
654 |
-
#: ../includes/
|
655 |
-
msgid "
|
656 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
657 |
|
658 |
#: ../includes/class-ure-screen-help.php:16
|
659 |
msgid ""
|
@@ -665,10 +782,6 @@ msgstr ""
|
|
665 |
"Редакторе Ролей пользователей. Из соображений безопасности по-умолчанию она "
|
666 |
"скрыта."
|
667 |
|
668 |
-
#: ../includes/class-ure-screen-help.php:18
|
669 |
-
msgid "Show capabilities in the human readable form"
|
670 |
-
msgstr "Показ прав доступа в читабельной форме"
|
671 |
-
|
672 |
#: ../includes/class-ure-screen-help.php:19
|
673 |
msgid ""
|
674 |
"automatically converts capability names from the technical form for internal "
|
@@ -679,10 +792,6 @@ msgstr ""
|
|
679 |
"формы для внутреннего пользования (\"edit_other_posts\") в более читабельную "
|
680 |
"(\"Edit other posts\")."
|
681 |
|
682 |
-
#: ../includes/class-ure-screen-help.php:21
|
683 |
-
msgid "Show deprecated capabilities"
|
684 |
-
msgstr "Показать устаревшие разрешения"
|
685 |
-
|
686 |
#: ../includes/class-ure-screen-help.php:22
|
687 |
msgid ""
|
688 |
"Capabilities like \"level_0\", \"level_1\" are deprecated and are not used "
|
@@ -710,54 +819,9 @@ msgstr ""
|
|
710 |
"в многосайтовой сети WordPress. Включите эту опцию, чтобы отменить это "
|
711 |
"ограничение"
|
712 |
|
713 |
-
#~ msgid "Select Role and change its capabilities list"
|
714 |
-
#~ msgstr "Выбери Роль и измени список разрешённых операций"
|
715 |
-
|
716 |
-
#~ msgid "Select Role:"
|
717 |
-
#~ msgstr "Выбери Роль:"
|
718 |
-
|
719 |
-
#~ msgid "Show capabilities in human readable form"
|
720 |
-
#~ msgstr "Показ возможностей в читабельной форме"
|
721 |
-
|
722 |
-
#~ msgid "Apply to All Sites"
|
723 |
-
#~ msgstr "Применить ко всем сайтам"
|
724 |
-
|
725 |
-
#~ msgid "Core capabilities:"
|
726 |
-
#~ msgstr "Возможности ядра:"
|
727 |
-
|
728 |
-
#~ msgid "Quick filter:"
|
729 |
-
#~ msgstr "Фильтр:"
|
730 |
-
|
731 |
-
#~ msgid "Custom capabilities:"
|
732 |
-
#~ msgstr "Дополнительные возможности :"
|
733 |
-
|
734 |
-
#~ msgid "Role name (ID): "
|
735 |
-
#~ msgstr "Идентификатор роли (ID):"
|
736 |
-
|
737 |
-
#~ msgid "Display Role Name: "
|
738 |
-
#~ msgstr "Наименование роли:"
|
739 |
-
|
740 |
-
#~ msgid "Make copy of: "
|
741 |
-
#~ msgstr "Создать копию из:"
|
742 |
-
|
743 |
-
#~ msgid "Delete:"
|
744 |
-
#~ msgstr "Удалить"
|
745 |
-
|
746 |
-
#~ msgid "Capability name (ID): "
|
747 |
-
#~ msgstr "Идентификатор возможности (ID):"
|
748 |
-
|
749 |
#~ msgid "About this Plugin:"
|
750 |
#~ msgstr "Об этом плагине"
|
751 |
|
752 |
-
#~ msgid "Primary Role:"
|
753 |
-
#~ msgstr "Первичаная роль:"
|
754 |
-
|
755 |
-
#~ msgid "bbPress Role:"
|
756 |
-
#~ msgstr "Роль bbPress:"
|
757 |
-
|
758 |
-
#~ msgid "Other Roles:"
|
759 |
-
#~ msgstr "Другие Роли:"
|
760 |
-
|
761 |
#~ msgid ""
|
762 |
#~ "Reset Roles to WordPress defaults. Be careful, all changes made by you or "
|
763 |
#~ "plugins will be lost. Some plugins, e.g. S2Member, WooCommerce "
|
@@ -1098,9 +1162,6 @@ msgstr ""
|
|
1098 |
#~ msgid "Thank You"
|
1099 |
#~ msgstr "Спасибо"
|
1100 |
|
1101 |
-
#~ msgid "Additional Documentation"
|
1102 |
-
#~ msgstr "Дополнительная документация"
|
1103 |
-
|
1104 |
#~ msgid "operation is prohibited"
|
1105 |
#~ msgstr "операция запрещена"
|
1106 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: User Role Editor v.2.0\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2014-06-11 11:20+0700\n"
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: Vladimir Garagulya <vladimir@shinephp.com>\n"
|
8 |
"Language-Team: ShinePHP.com <vladimir@shinephp.com>\n"
|
16 |
"X-Generator: Poedit 1.5.4\n"
|
17 |
"X-Poedit-SearchPath-0: ..\n"
|
18 |
|
19 |
+
#: ../includes/settings-template.php:17
|
20 |
+
msgid "User Role Editor - Options"
|
21 |
+
msgstr "Редактор ролей пользователей - Опции"
|
22 |
+
|
23 |
+
#: ../includes/settings-template.php:21
|
24 |
+
msgid "General"
|
25 |
+
msgstr "Общие"
|
26 |
+
|
27 |
+
#: ../includes/settings-template.php:22
|
28 |
+
msgid "Additional Modules"
|
29 |
+
msgstr "Дополнительные модули"
|
30 |
+
|
31 |
+
#: ../includes/settings-template.php:23
|
32 |
+
msgid "Default Roles"
|
33 |
+
msgstr "Роли по-умолчанию"
|
34 |
+
|
35 |
+
#: ../includes/settings-template.php:27
|
36 |
+
msgid "Multisite"
|
37 |
+
msgstr "Многосайтовые"
|
38 |
+
|
39 |
+
#: ../includes/settings-template.php:31
|
40 |
+
msgid "About"
|
41 |
+
msgstr "О плагине"
|
42 |
+
|
43 |
+
#: ../includes/settings-template.php:42
|
44 |
+
#: ../includes/class-ure-screen-help.php:15
|
45 |
+
msgid "Show Administrator role at User Role Editor"
|
46 |
+
msgstr "Отобразить роль Администратор в Редакторе ролей пользователей"
|
47 |
+
|
48 |
+
#: ../includes/settings-template.php:50
|
49 |
+
#: ../includes/class-ure-screen-help.php:18
|
50 |
+
msgid "Show capabilities in the human readable form"
|
51 |
+
msgstr "Показ прав доступа в читабельной форме"
|
52 |
+
|
53 |
+
#: ../includes/settings-template.php:58 ../includes/ure-role-edit.php:40
|
54 |
+
#: ../includes/ure-user-edit.php:63 ../includes/class-ure-screen-help.php:21
|
55 |
+
msgid "Show deprecated capabilities"
|
56 |
+
msgstr "Показать устаревшие разрешения"
|
57 |
+
|
58 |
+
#: ../includes/settings-template.php:69 ../includes/settings-template.php:101
|
59 |
+
#: ../includes/settings-template.php:131 ../includes/settings-template.php:160
|
60 |
msgid "Save"
|
61 |
msgstr "Сохранить"
|
62 |
|
63 |
+
#: ../includes/settings-template.php:86
|
64 |
+
msgid "Count users without role"
|
65 |
+
msgstr "Подсчёт пользователей без роли"
|
66 |
+
|
67 |
+
#: ../includes/settings-template.php:111
|
68 |
+
msgid "Primary default role: "
|
69 |
+
msgstr "Основная роль по-умолчанию:"
|
70 |
+
|
71 |
+
#: ../includes/settings-template.php:118
|
72 |
+
msgid "Other default roles for new registered user: "
|
73 |
+
msgstr "Другие роли по-умолчанию для вновь зарегистрированного пользователя:"
|
74 |
+
|
75 |
+
#: ../includes/settings-template.php:124
|
76 |
msgid ""
|
77 |
"Note for multisite environment: take into account that other default roles "
|
78 |
"should exist at the site, in order to be assigned to the new registered "
|
82 |
"вновь зарегистрированному пользователю дополнительных ролей по-умолчанию эти "
|
83 |
"роли должны существовать на этом сайте."
|
84 |
|
85 |
+
#: ../includes/settings-template.php:147
|
86 |
+
msgid "Allow non super administrators to create, edit, and delete users"
|
87 |
+
msgstr ""
|
88 |
+
"Разрешить простым администраторам создавать, изменять, удалять пользователей"
|
89 |
+
|
90 |
#: ../includes/class-user-role-editor.php:185
|
91 |
msgid "Change role for users without role"
|
92 |
msgstr "Изменить роль для пользователей без роли"
|
113 |
msgstr "Установки"
|
114 |
|
115 |
#: ../includes/class-user-role-editor.php:520
|
116 |
+
#: ../includes/class-ure-lib.php:2207
|
117 |
msgid "Changelog"
|
118 |
msgstr "Журнал изменений"
|
119 |
|
123 |
|
124 |
#: ../includes/class-user-role-editor.php:551
|
125 |
#: ../includes/class-user-role-editor.php:579
|
126 |
+
#: ../includes/class-user-role-editor.php:890
|
127 |
#: ../includes/class-ure-lib.php:225
|
128 |
msgid "User Role Editor"
|
129 |
msgstr "Редактор ролей пользователей"
|
130 |
|
131 |
+
#: ../includes/class-user-role-editor.php:636
|
132 |
+
#: ../includes/class-user-role-editor.php:654
|
133 |
+
#: ../includes/class-user-role-editor.php:698
|
134 |
msgid "User Role Editor options are updated"
|
135 |
msgstr "Изменения в настройках Редактора ролей пользователей сохранены"
|
136 |
|
137 |
+
#: ../includes/class-user-role-editor.php:682
|
138 |
msgid "Default Roles are updated"
|
139 |
msgstr "Изменения в роли по-умолчанию сохранены"
|
140 |
|
141 |
+
#: ../includes/class-user-role-editor.php:706
|
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:781
|
148 |
msgid "Insufficient permissions to work with User Role Editor"
|
149 |
msgstr "Не достаточно прав для работы с User Role Editor"
|
150 |
|
151 |
+
#: ../includes/class-user-role-editor.php:835
|
152 |
msgid "Select All"
|
153 |
+
msgstr "Выбрать все"
|
154 |
|
155 |
+
#: ../includes/class-user-role-editor.php:836
|
156 |
msgid "Unselect All"
|
157 |
msgstr "Исключить все"
|
158 |
|
159 |
+
#: ../includes/class-user-role-editor.php:837
|
160 |
msgid "Reverse"
|
161 |
msgstr "Обратить"
|
162 |
|
163 |
+
#: ../includes/class-user-role-editor.php:838
|
164 |
msgid "Update"
|
165 |
msgstr "Сохранить"
|
166 |
|
167 |
+
#: ../includes/class-user-role-editor.php:839
|
168 |
msgid "Please confirm permissions update"
|
169 |
msgstr "Пожалуйста, подтвердите продолжение "
|
170 |
|
171 |
+
#: ../includes/class-user-role-editor.php:840
|
172 |
msgid "Add New Role"
|
173 |
+
msgstr "Добавить новую роль"
|
174 |
|
175 |
+
#: ../includes/class-user-role-editor.php:841
|
176 |
msgid " Role name (ID) can not be empty!"
|
177 |
msgstr "Идентификатор роли (ID) не может быть пустым!"
|
178 |
|
179 |
+
#: ../includes/class-user-role-editor.php:842
|
180 |
msgid ""
|
181 |
" Role name (ID) must contain latin characters, digits, hyphens or underscore "
|
182 |
"only!"
|
184 |
"Ошибка: идентификатор роли может содержать только латинские буквы, цифры, "
|
185 |
"тире и знак подчеркивания"
|
186 |
|
187 |
+
#: ../includes/class-user-role-editor.php:843
|
188 |
msgid ""
|
189 |
" WordPress does not support numeric Role name (ID). Add latin characters to "
|
190 |
"it."
|
192 |
"WordPress не поддерживает цифровые идентификаторы ролей. Начните имя роли с "
|
193 |
"латинских символов."
|
194 |
|
195 |
+
#: ../includes/class-user-role-editor.php:844
|
196 |
msgid "Add Role"
|
197 |
+
msgstr "Добавить роль"
|
198 |
|
199 |
+
#: ../includes/class-user-role-editor.php:845
|
200 |
msgid "Delete Role"
|
201 |
+
msgstr "Удалить роль"
|
202 |
|
203 |
+
#: ../includes/class-user-role-editor.php:846
|
204 |
msgid "Cancel"
|
205 |
msgstr "Отмена"
|
206 |
|
207 |
+
#: ../includes/class-user-role-editor.php:847
|
208 |
msgid "Add Capability"
|
209 |
+
msgstr "Новая возм."
|
210 |
|
211 |
+
#: ../includes/class-user-role-editor.php:848
|
212 |
+
#: ../includes/class-user-role-editor.php:857
|
213 |
msgid "Delete Capability"
|
214 |
+
msgstr "Удалить возм."
|
215 |
|
216 |
+
#: ../includes/class-user-role-editor.php:849
|
217 |
msgid "Reset"
|
218 |
msgstr "Сброс"
|
219 |
|
220 |
+
#: ../includes/class-user-role-editor.php:850
|
221 |
msgid "DANGER! Resetting will restore default settings from WordPress Core."
|
222 |
msgstr ""
|
223 |
"ВНИМАНИЕ! Очистка восстановит роли по состоянию на момент установки "
|
224 |
"WordPress."
|
225 |
|
226 |
+
#: ../includes/class-user-role-editor.php:851
|
227 |
msgid ""
|
228 |
"If any plugins have changed capabilities in any way upon installation (such "
|
229 |
"as S2Member, WooCommerce, and many more), those capabilities will be DELETED!"
|
231 |
"Если плагины изменяли пользовательские права после установки WordPress "
|
232 |
"(S2Member, WooCommerce и др.), права, созданные плагинами будут УДАЛЕНЫ!"
|
233 |
|
234 |
+
#: ../includes/class-user-role-editor.php:852
|
235 |
msgid ""
|
236 |
"For more information on how to undo changes and restore plugin capabilities "
|
237 |
"go to"
|
239 |
"Подробнее о том, как откатить сделанные изменения и восстановить разрешения "
|
240 |
"для плагинов, можно узнать здесь"
|
241 |
|
242 |
+
#: ../includes/class-user-role-editor.php:854
|
243 |
msgid "Continue?"
|
244 |
msgstr "Продолжить?"
|
245 |
|
246 |
+
#: ../includes/class-user-role-editor.php:855
|
247 |
msgid "Default Role"
|
248 |
msgstr "Роль по-умолчанию"
|
249 |
|
250 |
+
#: ../includes/class-user-role-editor.php:856
|
251 |
msgid "Set New Default Role"
|
252 |
+
msgstr "Установить"
|
253 |
|
254 |
+
#: ../includes/class-user-role-editor.php:858
|
255 |
msgid ""
|
256 |
"Warning! Be careful - removing critical capability could crash some plugin "
|
257 |
"or other custom code"
|
259 |
"Внимание! Будьте осторожны - удаление критичной возможности может привести к "
|
260 |
"прекращеню работы одного из плагинов или другого кода."
|
261 |
|
262 |
+
#: ../includes/class-user-role-editor.php:859
|
263 |
msgid " Capability name (ID) can not be empty!"
|
264 |
msgstr "Идентификатор возможности (ID) не может быть пустым!"
|
265 |
|
266 |
+
#: ../includes/class-user-role-editor.php:860
|
267 |
msgid ""
|
268 |
" Capability name (ID) must contain latin characters, digits, hyphens or "
|
269 |
"underscore only!"
|
271 |
"Ошибка: Наименование возможности должно содержать только латинские буквы и "
|
272 |
"цифры, знаки подчеркивания"
|
273 |
|
274 |
+
#: ../includes/class-user-role-editor.php:893
|
275 |
+
#: ../includes/class-user-role-editor.php:922
|
276 |
msgid "Other Roles"
|
277 |
+
msgstr "Другие роли"
|
278 |
|
279 |
+
#: ../includes/class-user-role-editor.php:904
|
280 |
msgid "Edit"
|
281 |
msgstr "Редактор"
|
282 |
|
283 |
+
#: ../includes/ure-role-edit.php:17
|
284 |
+
msgid "Select Role and change its capabilities:"
|
285 |
+
msgstr "Выбери роль и измени права доступа"
|
286 |
+
|
287 |
+
#: ../includes/ure-role-edit.php:30 ../includes/ure-user-edit.php:53
|
288 |
+
msgid "Show capabilities in human readable form"
|
289 |
+
msgstr "Показ возможностей в читабельной форме"
|
290 |
+
|
291 |
#: ../includes/ure-role-edit.php:44
|
292 |
msgid "If checked, then apply action to ALL sites of this Network"
|
293 |
msgstr "Если включено, применить ко всем сайтам этой Сети"
|
294 |
|
295 |
+
#: ../includes/ure-role-edit.php:56
|
296 |
+
msgid "Apply to All Sites"
|
297 |
+
msgstr "Применить ко всем сайтам"
|
298 |
+
|
299 |
+
#: ../includes/ure-role-edit.php:63 ../includes/ure-user-edit.php:109
|
300 |
+
msgid "Core capabilities:"
|
301 |
+
msgstr "Возможности ядра:"
|
302 |
+
|
303 |
+
#: ../includes/ure-role-edit.php:65 ../includes/ure-user-edit.php:111
|
304 |
+
msgid "Quick filter:"
|
305 |
+
msgstr "Фильтр:"
|
306 |
+
|
307 |
+
#: ../includes/ure-role-edit.php:83 ../includes/ure-user-edit.php:130
|
308 |
+
msgid "Custom capabilities:"
|
309 |
+
msgstr "Дополнительные возможности :"
|
310 |
+
|
311 |
#: ../includes/class-ure-lib.php:143
|
312 |
msgid "Error: wrong request"
|
313 |
msgstr "Ошибка: неверный запрос"
|
314 |
|
315 |
+
#: ../includes/class-ure-lib.php:175
|
316 |
+
msgid "Role name (ID): "
|
317 |
+
msgstr "Идентификатор роли (ID):"
|
318 |
+
|
319 |
+
#: ../includes/class-ure-lib.php:177
|
320 |
+
msgid "Display Role Name: "
|
321 |
+
msgstr "Наименование роли:"
|
322 |
+
|
323 |
+
#: ../includes/class-ure-lib.php:179
|
324 |
+
msgid "Make copy of: "
|
325 |
+
msgstr "Создать копию из:"
|
326 |
+
|
327 |
+
#: ../includes/class-ure-lib.php:186
|
328 |
+
msgid "Select Role:"
|
329 |
+
msgstr "Выбери Роль:"
|
330 |
+
|
331 |
+
#: ../includes/class-ure-lib.php:201
|
332 |
+
msgid "Delete:"
|
333 |
+
msgstr "Удалить"
|
334 |
+
|
335 |
+
#: ../includes/class-ure-lib.php:208
|
336 |
+
msgid "Capability name (ID): "
|
337 |
+
msgstr "Идентификатор (ID):"
|
338 |
+
|
339 |
#: ../includes/class-ure-lib.php:322
|
340 |
msgid "Error: "
|
341 |
msgstr "Ошибка:"
|
372 |
msgid "User Roles are restored to WordPress default values. "
|
373 |
msgstr "Роли возвращены к начальному состоянию"
|
374 |
|
375 |
+
#: ../includes/class-ure-lib.php:1312
|
376 |
msgid "Help"
|
377 |
msgstr "Помощь"
|
378 |
|
379 |
+
#: ../includes/class-ure-lib.php:1662
|
380 |
msgid "Error is occur. Please check the log file."
|
381 |
msgstr "Произошла ошибка. Проверьте лог-файл."
|
382 |
|
383 |
+
#: ../includes/class-ure-lib.php:1705
|
384 |
msgid ""
|
385 |
"Error: Role ID must contain latin characters, digits, hyphens or underscore "
|
386 |
"only!"
|
388 |
"Ошибка: идентификатор роли (ID) должен содержать только латинские буквы, "
|
389 |
"цифры, знак подчеркивания и дефис."
|
390 |
|
391 |
+
#: ../includes/class-ure-lib.php:1709
|
392 |
msgid ""
|
393 |
"Error: WordPress does not support numeric Role name (ID). Add latin "
|
394 |
"characters to it."
|
396 |
"Ошибка: WordPress не поддерживает цифровые идентификаторы ролей. Начните имя "
|
397 |
"роли с латинских символов."
|
398 |
|
399 |
+
#: ../includes/class-ure-lib.php:1724
|
400 |
#, php-format
|
401 |
msgid "Role %s exists already"
|
402 |
msgstr "Роль %s уже существует"
|
403 |
|
404 |
+
#: ../includes/class-ure-lib.php:1739
|
405 |
msgid "Error is encountered during new role create operation"
|
406 |
msgstr "Произошла ошибка при создании новой роли"
|
407 |
|
408 |
+
#: ../includes/class-ure-lib.php:1741
|
409 |
#, php-format
|
410 |
msgid "Role %s is created successfully"
|
411 |
msgstr "Роль %s создана успешно"
|
412 |
|
413 |
+
#: ../includes/class-ure-lib.php:1810
|
414 |
msgid "Error encountered during role delete operation"
|
415 |
msgstr "Произошла ошибка при удалении роли"
|
416 |
|
417 |
+
#: ../includes/class-ure-lib.php:1812
|
418 |
msgid "Unused roles are deleted successfully"
|
419 |
msgstr "Неиспользуемые роли удалены успешно"
|
420 |
|
421 |
+
#: ../includes/class-ure-lib.php:1814
|
422 |
#, php-format
|
423 |
msgid "Role %s is deleted successfully"
|
424 |
msgstr "Роль %s удалена успешно"
|
425 |
|
426 |
+
#: ../includes/class-ure-lib.php:1839
|
427 |
msgid "Error encountered during default role change operation"
|
428 |
msgstr "Произошла ошибка при изменении роли по-умолчанию"
|
429 |
|
430 |
+
#: ../includes/class-ure-lib.php:1845
|
431 |
#, php-format
|
432 |
msgid "Default role for new users is set to %s successfully"
|
433 |
msgstr "Роль по-умолчанию для новых пользователй изменена на %s успешно."
|
434 |
|
435 |
+
#: ../includes/class-ure-lib.php:1864
|
436 |
msgid "Editor"
|
437 |
msgstr "Редактор"
|
438 |
|
439 |
+
#: ../includes/class-ure-lib.php:1865
|
440 |
msgid "Author"
|
441 |
msgstr "Автор"
|
442 |
|
443 |
+
#: ../includes/class-ure-lib.php:1866
|
444 |
msgid "Contributor"
|
445 |
msgstr "Участник"
|
446 |
|
447 |
+
#: ../includes/class-ure-lib.php:1867
|
448 |
msgid "Subscriber"
|
449 |
msgstr "Подписчик"
|
450 |
|
451 |
+
#: ../includes/class-ure-lib.php:1869
|
452 |
msgid "Switch themes"
|
453 |
msgstr "Менять темы"
|
454 |
|
455 |
+
#: ../includes/class-ure-lib.php:1870
|
456 |
msgid "Edit themes"
|
457 |
msgstr "Изменять темы"
|
458 |
|
459 |
+
#: ../includes/class-ure-lib.php:1871
|
460 |
msgid "Activate plugins"
|
461 |
msgstr "Активировать плагины"
|
462 |
|
463 |
+
#: ../includes/class-ure-lib.php:1872
|
464 |
msgid "Edit plugins"
|
465 |
msgstr "Редактировать плагины"
|
466 |
|
467 |
+
#: ../includes/class-ure-lib.php:1873
|
468 |
msgid "Edit users"
|
469 |
msgstr "Изменять пользователей"
|
470 |
|
471 |
+
#: ../includes/class-ure-lib.php:1874
|
472 |
msgid "Edit files"
|
473 |
msgstr "Изменять файлы"
|
474 |
|
475 |
+
#: ../includes/class-ure-lib.php:1875
|
476 |
msgid "Manage options"
|
477 |
msgstr "Управлять установками"
|
478 |
|
479 |
+
#: ../includes/class-ure-lib.php:1876
|
480 |
msgid "Moderate comments"
|
481 |
msgstr "Модерировать комментарии"
|
482 |
|
483 |
+
#: ../includes/class-ure-lib.php:1877
|
484 |
msgid "Manage categories"
|
485 |
msgstr "Управлять категориями"
|
486 |
|
487 |
+
#: ../includes/class-ure-lib.php:1878
|
488 |
msgid "Manage links"
|
489 |
msgstr "Управлять ссылками"
|
490 |
|
491 |
+
#: ../includes/class-ure-lib.php:1879
|
492 |
msgid "Upload files"
|
493 |
msgstr "Загружать файлы"
|
494 |
|
495 |
+
#: ../includes/class-ure-lib.php:1880
|
496 |
msgid "Import"
|
497 |
msgstr "Импорт"
|
498 |
|
499 |
+
#: ../includes/class-ure-lib.php:1881
|
500 |
msgid "Unfiltered html"
|
501 |
msgstr "html без фильтра"
|
502 |
|
503 |
+
#: ../includes/class-ure-lib.php:1882
|
504 |
msgid "Edit posts"
|
505 |
msgstr "Изменять статьи"
|
506 |
|
507 |
+
#: ../includes/class-ure-lib.php:1883
|
508 |
msgid "Edit others posts"
|
509 |
msgstr "Изменять чужие статьи"
|
510 |
|
511 |
+
#: ../includes/class-ure-lib.php:1884
|
512 |
msgid "Edit published posts"
|
513 |
msgstr "Редактировать опубликованные статьи"
|
514 |
|
515 |
+
#: ../includes/class-ure-lib.php:1885
|
516 |
msgid "Publish posts"
|
517 |
msgstr "Публиковать статьи"
|
518 |
|
519 |
+
#: ../includes/class-ure-lib.php:1886
|
520 |
msgid "Edit pages"
|
521 |
msgstr "Изменять страницы"
|
522 |
|
523 |
+
#: ../includes/class-ure-lib.php:1887
|
524 |
msgid "Read"
|
525 |
msgstr "Чтение"
|
526 |
|
527 |
+
#: ../includes/class-ure-lib.php:1888
|
528 |
msgid "Level 10"
|
529 |
msgstr "Уровень 10"
|
530 |
|
531 |
+
#: ../includes/class-ure-lib.php:1889
|
532 |
msgid "Level 9"
|
533 |
msgstr "Уровень 9"
|
534 |
|
535 |
+
#: ../includes/class-ure-lib.php:1890
|
536 |
msgid "Level 8"
|
537 |
msgstr "Уровень 9"
|
538 |
|
539 |
+
#: ../includes/class-ure-lib.php:1891
|
540 |
msgid "Level 7"
|
541 |
msgstr "Уровень 7"
|
542 |
|
543 |
+
#: ../includes/class-ure-lib.php:1892
|
544 |
msgid "Level 6"
|
545 |
msgstr "Уровень 6"
|
546 |
|
547 |
+
#: ../includes/class-ure-lib.php:1893
|
548 |
msgid "Level 5"
|
549 |
msgstr "Уровень 5"
|
550 |
|
551 |
+
#: ../includes/class-ure-lib.php:1894
|
552 |
msgid "Level 4"
|
553 |
msgstr "Уровень 4"
|
554 |
|
555 |
+
#: ../includes/class-ure-lib.php:1895
|
556 |
msgid "Level 3"
|
557 |
msgstr "Уровень 3"
|
558 |
|
559 |
+
#: ../includes/class-ure-lib.php:1896
|
560 |
msgid "Level 2"
|
561 |
msgstr "Уровень 2"
|
562 |
|
563 |
+
#: ../includes/class-ure-lib.php:1897
|
564 |
msgid "Level 1"
|
565 |
msgstr "Уровень 1"
|
566 |
|
567 |
+
#: ../includes/class-ure-lib.php:1898
|
568 |
msgid "Level 0"
|
569 |
msgstr "Уровень 0"
|
570 |
|
571 |
+
#: ../includes/class-ure-lib.php:1899
|
572 |
msgid "Edit others pages"
|
573 |
msgstr "Редактировать чужие страницы"
|
574 |
|
575 |
+
#: ../includes/class-ure-lib.php:1900
|
576 |
msgid "Edit published pages"
|
577 |
msgstr "Редактировать опубликованные страницы"
|
578 |
|
579 |
+
#: ../includes/class-ure-lib.php:1901
|
580 |
msgid "Publish pages"
|
581 |
msgstr "Публиковать страницы"
|
582 |
|
583 |
+
#: ../includes/class-ure-lib.php:1902
|
584 |
msgid "Delete pages"
|
585 |
msgstr "Удалять страницы"
|
586 |
|
587 |
+
#: ../includes/class-ure-lib.php:1903
|
588 |
msgid "Delete others pages"
|
589 |
msgstr "Удалить чужие страницы"
|
590 |
|
591 |
+
#: ../includes/class-ure-lib.php:1904
|
592 |
msgid "Delete published pages"
|
593 |
msgstr "Удалять опубликованные страницы"
|
594 |
|
595 |
+
#: ../includes/class-ure-lib.php:1905
|
596 |
msgid "Delete posts"
|
597 |
msgstr "Удалять статьи"
|
598 |
|
599 |
+
#: ../includes/class-ure-lib.php:1906
|
600 |
msgid "Delete others posts"
|
601 |
msgstr "Удалять чужие статьи"
|
602 |
|
603 |
+
#: ../includes/class-ure-lib.php:1907
|
604 |
msgid "Delete published posts"
|
605 |
msgstr "Удалять опубликованные статьи"
|
606 |
|
607 |
+
#: ../includes/class-ure-lib.php:1908
|
608 |
msgid "Delete private posts"
|
609 |
msgstr "Удалять частные статьи"
|
610 |
|
611 |
+
#: ../includes/class-ure-lib.php:1909
|
612 |
msgid "Edit private posts"
|
613 |
msgstr "Редактировать частные статьи"
|
614 |
|
615 |
+
#: ../includes/class-ure-lib.php:1910
|
616 |
msgid "Read private posts"
|
617 |
msgstr "Читать частные статьи"
|
618 |
|
619 |
+
#: ../includes/class-ure-lib.php:1911
|
620 |
msgid "Delete private pages"
|
621 |
msgstr "Удалять частные страницы"
|
622 |
|
623 |
+
#: ../includes/class-ure-lib.php:1912
|
624 |
msgid "Edit private pages"
|
625 |
msgstr "Редактировать частные страницы"
|
626 |
|
627 |
+
#: ../includes/class-ure-lib.php:1913
|
628 |
msgid "Read private pages"
|
629 |
msgstr "Читать частные страницы"
|
630 |
|
631 |
+
#: ../includes/class-ure-lib.php:1914
|
632 |
msgid "Delete users"
|
633 |
msgstr "Удалять пользователей"
|
634 |
|
635 |
+
#: ../includes/class-ure-lib.php:1915
|
636 |
msgid "Create users"
|
637 |
msgstr "Создавать пользователей"
|
638 |
|
639 |
+
#: ../includes/class-ure-lib.php:1916
|
640 |
msgid "Unfiltered upload"
|
641 |
msgstr "Загрузка без фильтра"
|
642 |
|
643 |
+
#: ../includes/class-ure-lib.php:1917
|
644 |
msgid "Edit dashboard"
|
645 |
msgstr "Изменять панель администратора"
|
646 |
|
647 |
+
#: ../includes/class-ure-lib.php:1918
|
648 |
msgid "Update plugins"
|
649 |
msgstr "Обновлять плагины"
|
650 |
|
651 |
+
#: ../includes/class-ure-lib.php:1919
|
652 |
msgid "Delete plugins"
|
653 |
msgstr "Удалять плагины"
|
654 |
|
655 |
+
#: ../includes/class-ure-lib.php:1920
|
656 |
msgid "Install plugins"
|
657 |
msgstr "Устанавливать плагины"
|
658 |
|
659 |
+
#: ../includes/class-ure-lib.php:1921
|
660 |
msgid "Update themes"
|
661 |
msgstr "Обновлять темы"
|
662 |
|
663 |
+
#: ../includes/class-ure-lib.php:1922
|
664 |
msgid "Install themes"
|
665 |
msgstr "Устанавливать темы"
|
666 |
|
667 |
+
#: ../includes/class-ure-lib.php:1923
|
668 |
msgid "Update core"
|
669 |
msgstr "Обновлять ядро"
|
670 |
|
671 |
+
#: ../includes/class-ure-lib.php:1924
|
672 |
msgid "List users"
|
673 |
msgstr "Список пользователей"
|
674 |
|
675 |
+
#: ../includes/class-ure-lib.php:1925
|
676 |
msgid "Remove users"
|
677 |
msgstr "Удалять пользователей"
|
678 |
|
679 |
+
#: ../includes/class-ure-lib.php:1926
|
680 |
msgid "Add users"
|
681 |
msgstr "Добавлять пользователей"
|
682 |
|
683 |
+
#: ../includes/class-ure-lib.php:1927
|
684 |
msgid "Promote users"
|
685 |
msgstr "Продвигать пользователей"
|
686 |
|
687 |
+
#: ../includes/class-ure-lib.php:1928
|
688 |
msgid "Edit theme options"
|
689 |
msgstr "Изменять настройки темы"
|
690 |
|
691 |
+
#: ../includes/class-ure-lib.php:1929
|
692 |
msgid "Delete themes"
|
693 |
msgstr "Удалять темы"
|
694 |
|
695 |
+
#: ../includes/class-ure-lib.php:1930
|
696 |
msgid "Export"
|
697 |
msgstr "Экспорт"
|
698 |
|
699 |
+
#: ../includes/class-ure-lib.php:2040
|
700 |
msgid "Error: Capability name must contain latin characters and digits only!"
|
701 |
msgstr "Ошибка: Имя должно содержать только латинские буквы и цифры"
|
702 |
|
703 |
+
#: ../includes/class-ure-lib.php:2053
|
704 |
#, php-format
|
705 |
msgid "Capability %s is added successfully"
|
706 |
msgstr "Возможность %s добавлена успешно"
|
707 |
|
708 |
+
#: ../includes/class-ure-lib.php:2055
|
709 |
#, php-format
|
710 |
msgid "Capability %s exists already"
|
711 |
msgstr "Возможность %s уже существует"
|
712 |
|
713 |
+
#: ../includes/class-ure-lib.php:2080
|
714 |
#, php-format
|
715 |
msgid "Error! You do not have permission to delete this capability: %s!"
|
716 |
msgstr "Ошибка! Вам запрещено удалять эту возможность: %s!"
|
717 |
|
718 |
+
#: ../includes/class-ure-lib.php:2099
|
719 |
#, php-format
|
720 |
msgid "Capability %s is removed successfully"
|
721 |
msgstr "Возможность %s удалена успешно"
|
722 |
|
723 |
+
#: ../includes/class-ure-lib.php:2203
|
724 |
+
msgid "Version:"
|
725 |
+
msgstr "Версия:"
|
726 |
+
|
727 |
+
#: ../includes/class-ure-lib.php:2204
|
728 |
msgid "Author's website"
|
729 |
msgstr "Вебсайт автора"
|
730 |
|
731 |
+
#: ../includes/class-ure-lib.php:2205
|
732 |
msgid "Plugin webpage"
|
733 |
msgstr "Страница плагина"
|
734 |
|
735 |
+
#: ../includes/class-ure-lib.php:2206
|
736 |
msgid "Plugin download"
|
737 |
msgstr "Загрузить плагин"
|
738 |
|
739 |
+
#: ../includes/class-ure-lib.php:2208
|
740 |
msgid "FAQ"
|
741 |
msgstr "Часто задаваемые вопросы"
|
742 |
|
743 |
+
#: ../includes/class-ure-lib.php:2256
|
744 |
msgid "None"
|
745 |
msgstr "Нет"
|
746 |
|
747 |
+
#: ../includes/class-ure-lib.php:2283
|
748 |
msgid "Delete All Unused Roles"
|
749 |
msgstr "Удалить все неиспользуемые роли"
|
750 |
|
751 |
+
#: ../includes/class-ure-lib.php:2307
|
752 |
msgid "— No role for this site —"
|
753 |
msgstr "— Нет роли для этого сайта —"
|
754 |
|
760 |
msgid "Change capabilities for user"
|
761 |
msgstr "Изменить возможности для пользователя"
|
762 |
|
763 |
+
#: ../includes/ure-user-edit.php:71
|
764 |
+
msgid "Primary Role:"
|
765 |
+
msgstr "Первичаная роль:"
|
766 |
+
|
767 |
+
#: ../includes/ure-user-edit.php:81
|
768 |
+
msgid "bbPress Role:"
|
769 |
+
msgstr "Роль bbPress:"
|
770 |
+
|
771 |
+
#: ../includes/ure-user-edit.php:91
|
772 |
+
msgid "Other Roles:"
|
773 |
+
msgstr "Другие Роли:"
|
774 |
|
775 |
#: ../includes/class-ure-screen-help.php:16
|
776 |
msgid ""
|
782 |
"Редакторе Ролей пользователей. Из соображений безопасности по-умолчанию она "
|
783 |
"скрыта."
|
784 |
|
|
|
|
|
|
|
|
|
785 |
#: ../includes/class-ure-screen-help.php:19
|
786 |
msgid ""
|
787 |
"automatically converts capability names from the technical form for internal "
|
792 |
"формы для внутреннего пользования (\"edit_other_posts\") в более читабельную "
|
793 |
"(\"Edit other posts\")."
|
794 |
|
|
|
|
|
|
|
|
|
795 |
#: ../includes/class-ure-screen-help.php:22
|
796 |
msgid ""
|
797 |
"Capabilities like \"level_0\", \"level_1\" are deprecated and are not used "
|
819 |
"в многосайтовой сети WordPress. Включите эту опцию, чтобы отменить это "
|
820 |
"ограничение"
|
821 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
822 |
#~ msgid "About this Plugin:"
|
823 |
#~ msgstr "Об этом плагине"
|
824 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
825 |
#~ msgid ""
|
826 |
#~ "Reset Roles to WordPress defaults. Be careful, all changes made by you or "
|
827 |
#~ "plugins will be lost. Some plugins, e.g. S2Member, WooCommerce "
|
1162 |
#~ msgid "Thank You"
|
1163 |
#~ msgstr "Спасибо"
|
1164 |
|
|
|
|
|
|
|
1165 |
#~ msgid "operation is prohibited"
|
1166 |
#~ msgstr "операция запрещена"
|
1167 |
|
lang/ure-tr_TR.mo
CHANGED
Binary file
|
lang/ure-tr_TR.po
CHANGED
@@ -2,7 +2,7 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: user-role-editor\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2014-
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: Vladimir Garagulya <vladimir@shinephp.com>\n"
|
8 |
"Language-Team: \n"
|
@@ -16,18 +16,79 @@ 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 ""
|
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/class-user-role-editor.php:185
|
32 |
#, fuzzy
|
33 |
msgid "Change role for users without role"
|
@@ -55,7 +116,7 @@ msgid "Settings"
|
|
55 |
msgstr "Ayarlar"
|
56 |
|
57 |
#: ../includes/class-user-role-editor.php:520
|
58 |
-
#: ../includes/class-ure-lib.php:
|
59 |
msgid "Changelog"
|
60 |
msgstr "Changelog"
|
61 |
|
@@ -65,60 +126,61 @@ msgstr ""
|
|
65 |
|
66 |
#: ../includes/class-user-role-editor.php:551
|
67 |
#: ../includes/class-user-role-editor.php:579
|
68 |
-
#: ../includes/class-user-role-editor.php:
|
69 |
#: ../includes/class-ure-lib.php:225
|
70 |
msgid "User Role Editor"
|
71 |
msgstr "Kullanıcı Rol Editörü"
|
72 |
|
73 |
-
#: ../includes/class-user-role-editor.php:
|
74 |
-
#: ../includes/class-user-role-editor.php:
|
|
|
75 |
msgid "User Role Editor options are updated"
|
76 |
msgstr ""
|
77 |
|
78 |
-
#: ../includes/class-user-role-editor.php:
|
79 |
#, fuzzy
|
80 |
msgid "Default Roles are updated"
|
81 |
msgstr "Yeni Kullanıcılar için Varsayılan Rol"
|
82 |
|
83 |
-
#: ../includes/class-user-role-editor.php:
|
84 |
msgid ""
|
85 |
"You do not have sufficient permissions to manage options for User Role "
|
86 |
"Editor."
|
87 |
msgstr ""
|
88 |
|
89 |
-
#: ../includes/class-user-role-editor.php:
|
90 |
msgid "Insufficient permissions to work with User Role Editor"
|
91 |
msgstr ""
|
92 |
|
93 |
-
#: ../includes/class-user-role-editor.php:
|
94 |
msgid "Select All"
|
95 |
msgstr "Tümünü Seç"
|
96 |
|
97 |
-
#: ../includes/class-user-role-editor.php:
|
98 |
msgid "Unselect All"
|
99 |
msgstr "Seçimi Kaldır"
|
100 |
|
101 |
-
#: ../includes/class-user-role-editor.php:
|
102 |
msgid "Reverse"
|
103 |
msgstr "Seçimi Tersine Çevir"
|
104 |
|
105 |
-
#: ../includes/class-user-role-editor.php:
|
106 |
msgid "Update"
|
107 |
msgstr "Güncelle"
|
108 |
|
109 |
-
#: ../includes/class-user-role-editor.php:
|
110 |
msgid "Please confirm permissions update"
|
111 |
msgstr "İzinleri güncelleştirmek için lütfen onaylayın"
|
112 |
|
113 |
-
#: ../includes/class-user-role-editor.php:
|
114 |
msgid "Add New Role"
|
115 |
msgstr "Yeni Rol Ekle"
|
116 |
|
117 |
-
#: ../includes/class-user-role-editor.php:
|
118 |
msgid " Role name (ID) can not be empty!"
|
119 |
msgstr "Ad (ID) boş bırakılamaz!"
|
120 |
|
121 |
-
#: ../includes/class-user-role-editor.php:
|
122 |
msgid ""
|
123 |
" Role name (ID) must contain latin characters, digits, hyphens or underscore "
|
124 |
"only!"
|
@@ -126,66 +188,66 @@ msgstr ""
|
|
126 |
"Rol adı (ID) yalnızca latin karakterleri, sayılar, tire veya altçizgiden "
|
127 |
"oluşabilir."
|
128 |
|
129 |
-
#: ../includes/class-user-role-editor.php:
|
130 |
msgid ""
|
131 |
" WordPress does not support numeric Role name (ID). Add latin characters to "
|
132 |
"it."
|
133 |
msgstr ""
|
134 |
|
135 |
-
#: ../includes/class-user-role-editor.php:
|
136 |
msgid "Add Role"
|
137 |
msgstr "Rol Ekle"
|
138 |
|
139 |
-
#: ../includes/class-user-role-editor.php:
|
140 |
msgid "Delete Role"
|
141 |
msgstr "Rolü Sil"
|
142 |
|
143 |
-
#: ../includes/class-user-role-editor.php:
|
144 |
msgid "Cancel"
|
145 |
msgstr "İptal"
|
146 |
|
147 |
-
#: ../includes/class-user-role-editor.php:
|
148 |
msgid "Add Capability"
|
149 |
msgstr "Kabiliyet Ekle"
|
150 |
|
151 |
-
#: ../includes/class-user-role-editor.php:
|
152 |
-
#: ../includes/class-user-role-editor.php:
|
153 |
msgid "Delete Capability"
|
154 |
msgstr "Kabiliyeti kaldır"
|
155 |
|
156 |
-
#: ../includes/class-user-role-editor.php:
|
157 |
msgid "Reset"
|
158 |
msgstr "Geri al"
|
159 |
|
160 |
-
#: ../includes/class-user-role-editor.php:
|
161 |
msgid "DANGER! Resetting will restore default settings from WordPress Core."
|
162 |
msgstr ""
|
163 |
|
164 |
-
#: ../includes/class-user-role-editor.php:
|
165 |
msgid ""
|
166 |
"If any plugins have changed capabilities in any way upon installation (such "
|
167 |
"as S2Member, WooCommerce, and many more), those capabilities will be DELETED!"
|
168 |
msgstr ""
|
169 |
|
170 |
-
#: ../includes/class-user-role-editor.php:
|
171 |
msgid ""
|
172 |
"For more information on how to undo changes and restore plugin capabilities "
|
173 |
"go to"
|
174 |
msgstr ""
|
175 |
|
176 |
-
#: ../includes/class-user-role-editor.php:
|
177 |
msgid "Continue?"
|
178 |
msgstr ""
|
179 |
|
180 |
-
#: ../includes/class-user-role-editor.php:
|
181 |
msgid "Default Role"
|
182 |
msgstr "Öntanımlı Rol"
|
183 |
|
184 |
-
#: ../includes/class-user-role-editor.php:
|
185 |
msgid "Set New Default Role"
|
186 |
msgstr "Yeni Öntanımlı Rol Seç"
|
187 |
|
188 |
-
#: ../includes/class-user-role-editor.php:
|
189 |
msgid ""
|
190 |
"Warning! Be careful - removing critical capability could crash some plugin "
|
191 |
"or other custom code"
|
@@ -193,11 +255,11 @@ msgstr ""
|
|
193 |
"Uyarı! Dikkatli olun - önemli kabiliyetleri kaldırmak bazı eklentileri veya "
|
194 |
"başka özel kodların bozulmasına sebep olabilir"
|
195 |
|
196 |
-
#: ../includes/class-user-role-editor.php:
|
197 |
msgid " Capability name (ID) can not be empty!"
|
198 |
msgstr "Ad (ID) boş bırakılamaz!"
|
199 |
|
200 |
-
#: ../includes/class-user-role-editor.php:
|
201 |
msgid ""
|
202 |
" Capability name (ID) must contain latin characters, digits, hyphens or "
|
203 |
"underscore only!"
|
@@ -205,23 +267,72 @@ msgstr ""
|
|
205 |
"Kabiliyet adı (ID) yalnızca latin karakterleri, sayılar, tire veya "
|
206 |
"altçizgiden oluşabilir."
|
207 |
|
208 |
-
#: ../includes/class-user-role-editor.php:
|
209 |
-
#: ../includes/class-user-role-editor.php:
|
210 |
msgid "Other Roles"
|
211 |
msgstr "Diğer Roller"
|
212 |
|
213 |
-
#: ../includes/class-user-role-editor.php:
|
214 |
msgid "Edit"
|
215 |
msgstr "Düzenle"
|
216 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
217 |
#: ../includes/ure-role-edit.php:44
|
218 |
msgid "If checked, then apply action to ALL sites of this Network"
|
219 |
msgstr "Eğer seçilirse, bu ağdaki tüm siteler için uygulanır"
|
220 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
221 |
#: ../includes/class-ure-lib.php:143
|
222 |
msgid "Error: wrong request"
|
223 |
msgstr ""
|
224 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
225 |
#: ../includes/class-ure-lib.php:322
|
226 |
msgid "Error: "
|
227 |
msgstr "Hata:"
|
@@ -258,15 +369,15 @@ msgstr ""
|
|
258 |
msgid "User Roles are restored to WordPress default values. "
|
259 |
msgstr "Rol yetkileri WordPress öntanımlılarına geri yüklendi."
|
260 |
|
261 |
-
#: ../includes/class-ure-lib.php:
|
262 |
msgid "Help"
|
263 |
msgstr "Yardım"
|
264 |
|
265 |
-
#: ../includes/class-ure-lib.php:
|
266 |
msgid "Error is occur. Please check the log file."
|
267 |
msgstr "Bir hata oluştu. Lütfen günlük dosyasını kontrol edin."
|
268 |
|
269 |
-
#: ../includes/class-ure-lib.php:
|
270 |
msgid ""
|
271 |
"Error: Role ID must contain latin characters, digits, hyphens or underscore "
|
272 |
"only!"
|
@@ -274,363 +385,367 @@ msgstr ""
|
|
274 |
"Hata: Rol ID yalnızca latin karakterleri, sayılar, tire veya altçizgiden "
|
275 |
"oluşabilir."
|
276 |
|
277 |
-
#: ../includes/class-ure-lib.php:
|
278 |
msgid ""
|
279 |
"Error: WordPress does not support numeric Role name (ID). Add latin "
|
280 |
"characters to it."
|
281 |
msgstr ""
|
282 |
|
283 |
-
#: ../includes/class-ure-lib.php:
|
284 |
#, php-format
|
285 |
msgid "Role %s exists already"
|
286 |
msgstr "%s rolü zaten mevcut"
|
287 |
|
288 |
-
#: ../includes/class-ure-lib.php:
|
289 |
msgid "Error is encountered during new role create operation"
|
290 |
msgstr "Yeni rol oluşturma işlemi sırasında hata"
|
291 |
|
292 |
-
#: ../includes/class-ure-lib.php:
|
293 |
#, php-format
|
294 |
msgid "Role %s is created successfully"
|
295 |
msgstr "%s rolü başarıyla oluşturuldu"
|
296 |
|
297 |
-
#: ../includes/class-ure-lib.php:
|
298 |
msgid "Error encountered during role delete operation"
|
299 |
msgstr "Rol silme işlemi sırasında hata"
|
300 |
|
301 |
-
#: ../includes/class-ure-lib.php:
|
302 |
msgid "Unused roles are deleted successfully"
|
303 |
msgstr ""
|
304 |
|
305 |
-
#: ../includes/class-ure-lib.php:
|
306 |
#, php-format
|
307 |
msgid "Role %s is deleted successfully"
|
308 |
msgstr "%s rolü başarıyla silindi"
|
309 |
|
310 |
-
#: ../includes/class-ure-lib.php:
|
311 |
msgid "Error encountered during default role change operation"
|
312 |
msgstr "Varsayılan rolü değiştirme işlemi sırasında hata"
|
313 |
|
314 |
-
#: ../includes/class-ure-lib.php:
|
315 |
#, php-format
|
316 |
msgid "Default role for new users is set to %s successfully"
|
317 |
msgstr "Yeni kullanıcılar için varsayılan rol %s olarak başarıyla değiştirildi"
|
318 |
|
319 |
-
#: ../includes/class-ure-lib.php:
|
320 |
msgid "Editor"
|
321 |
msgstr "Editör"
|
322 |
|
323 |
-
#: ../includes/class-ure-lib.php:
|
324 |
msgid "Author"
|
325 |
msgstr "Yazar"
|
326 |
|
327 |
-
#: ../includes/class-ure-lib.php:
|
328 |
msgid "Contributor"
|
329 |
msgstr "İçerik Sağlayıcı"
|
330 |
|
331 |
-
#: ../includes/class-ure-lib.php:
|
332 |
msgid "Subscriber"
|
333 |
msgstr "Üye"
|
334 |
|
335 |
-
#: ../includes/class-ure-lib.php:
|
336 |
msgid "Switch themes"
|
337 |
msgstr "Temaları değiştir"
|
338 |
|
339 |
-
#: ../includes/class-ure-lib.php:
|
340 |
msgid "Edit themes"
|
341 |
msgstr "Temaları düzenle"
|
342 |
|
343 |
-
#: ../includes/class-ure-lib.php:
|
344 |
msgid "Activate plugins"
|
345 |
msgstr "Eklentileri aktive et"
|
346 |
|
347 |
-
#: ../includes/class-ure-lib.php:
|
348 |
msgid "Edit plugins"
|
349 |
msgstr "Eklentileri düzenlemek"
|
350 |
|
351 |
-
#: ../includes/class-ure-lib.php:
|
352 |
msgid "Edit users"
|
353 |
msgstr "Kullanıcıları düzenlemek"
|
354 |
|
355 |
-
#: ../includes/class-ure-lib.php:
|
356 |
msgid "Edit files"
|
357 |
msgstr "Dosyaları düzenlemek"
|
358 |
|
359 |
-
#: ../includes/class-ure-lib.php:
|
360 |
msgid "Manage options"
|
361 |
msgstr "Seçenekleri yönetmek"
|
362 |
|
363 |
-
#: ../includes/class-ure-lib.php:
|
364 |
msgid "Moderate comments"
|
365 |
msgstr "Yorumları yönetmek"
|
366 |
|
367 |
-
#: ../includes/class-ure-lib.php:
|
368 |
msgid "Manage categories"
|
369 |
msgstr "Kategorileri yönetmek"
|
370 |
|
371 |
-
#: ../includes/class-ure-lib.php:
|
372 |
msgid "Manage links"
|
373 |
msgstr "Linkleri yönetmek"
|
374 |
|
375 |
-
#: ../includes/class-ure-lib.php:
|
376 |
msgid "Upload files"
|
377 |
msgstr "Dosya yüklemek"
|
378 |
|
379 |
-
#: ../includes/class-ure-lib.php:
|
380 |
msgid "Import"
|
381 |
msgstr "İçeri aktarmak"
|
382 |
|
383 |
-
#: ../includes/class-ure-lib.php:
|
384 |
msgid "Unfiltered html"
|
385 |
msgstr "Filtrelenmemiş HTML"
|
386 |
|
387 |
-
#: ../includes/class-ure-lib.php:
|
388 |
msgid "Edit posts"
|
389 |
msgstr "Yazıları düzenlemek"
|
390 |
|
391 |
-
#: ../includes/class-ure-lib.php:
|
392 |
msgid "Edit others posts"
|
393 |
msgstr "Başkalarının yazılarını düzenlemek"
|
394 |
|
395 |
-
#: ../includes/class-ure-lib.php:
|
396 |
msgid "Edit published posts"
|
397 |
msgstr "Yayınlanmış yazıları düzenlemek"
|
398 |
|
399 |
-
#: ../includes/class-ure-lib.php:
|
400 |
msgid "Publish posts"
|
401 |
msgstr "Yazıları yayınlamak"
|
402 |
|
403 |
-
#: ../includes/class-ure-lib.php:
|
404 |
msgid "Edit pages"
|
405 |
msgstr "Sayfaları düzenlemek"
|
406 |
|
407 |
-
#: ../includes/class-ure-lib.php:
|
408 |
msgid "Read"
|
409 |
msgstr "Okumak"
|
410 |
|
411 |
-
#: ../includes/class-ure-lib.php:
|
412 |
msgid "Level 10"
|
413 |
msgstr "Seviye 10"
|
414 |
|
415 |
-
#: ../includes/class-ure-lib.php:
|
416 |
msgid "Level 9"
|
417 |
msgstr "Seviye 9"
|
418 |
|
419 |
-
#: ../includes/class-ure-lib.php:
|
420 |
msgid "Level 8"
|
421 |
msgstr "Seviye 8"
|
422 |
|
423 |
-
#: ../includes/class-ure-lib.php:
|
424 |
msgid "Level 7"
|
425 |
msgstr "Seviye 7"
|
426 |
|
427 |
-
#: ../includes/class-ure-lib.php:
|
428 |
msgid "Level 6"
|
429 |
msgstr "Seviye 6"
|
430 |
|
431 |
-
#: ../includes/class-ure-lib.php:
|
432 |
msgid "Level 5"
|
433 |
msgstr "Seviye 5"
|
434 |
|
435 |
-
#: ../includes/class-ure-lib.php:
|
436 |
msgid "Level 4"
|
437 |
msgstr "Seviye 4"
|
438 |
|
439 |
-
#: ../includes/class-ure-lib.php:
|
440 |
msgid "Level 3"
|
441 |
msgstr "Seviye 3"
|
442 |
|
443 |
-
#: ../includes/class-ure-lib.php:
|
444 |
msgid "Level 2"
|
445 |
msgstr "Seviye 2"
|
446 |
|
447 |
-
#: ../includes/class-ure-lib.php:
|
448 |
msgid "Level 1"
|
449 |
msgstr "Seviye 1"
|
450 |
|
451 |
-
#: ../includes/class-ure-lib.php:
|
452 |
msgid "Level 0"
|
453 |
msgstr "Seviye 0"
|
454 |
|
455 |
-
#: ../includes/class-ure-lib.php:
|
456 |
msgid "Edit others pages"
|
457 |
msgstr "Başkalarının sayfalarını düzenlemek"
|
458 |
|
459 |
-
#: ../includes/class-ure-lib.php:
|
460 |
msgid "Edit published pages"
|
461 |
msgstr "Yayınlanmış sayfaları düzenlemek"
|
462 |
|
463 |
-
#: ../includes/class-ure-lib.php:
|
464 |
msgid "Publish pages"
|
465 |
msgstr "Sayfaları yayınlamak"
|
466 |
|
467 |
-
#: ../includes/class-ure-lib.php:
|
468 |
msgid "Delete pages"
|
469 |
msgstr "Sayfaları silmek"
|
470 |
|
471 |
-
#: ../includes/class-ure-lib.php:
|
472 |
msgid "Delete others pages"
|
473 |
msgstr "Başkalarının sayfalarını silmek"
|
474 |
|
475 |
-
#: ../includes/class-ure-lib.php:
|
476 |
msgid "Delete published pages"
|
477 |
msgstr "Yayınlanmış sayfaları silmek"
|
478 |
|
479 |
-
#: ../includes/class-ure-lib.php:
|
480 |
msgid "Delete posts"
|
481 |
msgstr "Yazıları silmek"
|
482 |
|
483 |
-
#: ../includes/class-ure-lib.php:
|
484 |
msgid "Delete others posts"
|
485 |
msgstr "Başkalarının yazılarını silmek"
|
486 |
|
487 |
-
#: ../includes/class-ure-lib.php:
|
488 |
msgid "Delete published posts"
|
489 |
msgstr "Yayınlanmış yazıları silmek"
|
490 |
|
491 |
-
#: ../includes/class-ure-lib.php:
|
492 |
msgid "Delete private posts"
|
493 |
msgstr "Özel yazıları silmek"
|
494 |
|
495 |
-
#: ../includes/class-ure-lib.php:
|
496 |
msgid "Edit private posts"
|
497 |
msgstr "Özel yazıları düzenlemek"
|
498 |
|
499 |
-
#: ../includes/class-ure-lib.php:
|
500 |
msgid "Read private posts"
|
501 |
msgstr "Özel yazıları okumak"
|
502 |
|
503 |
-
#: ../includes/class-ure-lib.php:
|
504 |
msgid "Delete private pages"
|
505 |
msgstr "Özel sayfaları silmek"
|
506 |
|
507 |
-
#: ../includes/class-ure-lib.php:
|
508 |
msgid "Edit private pages"
|
509 |
msgstr "Özel sayfaları düzenlemek"
|
510 |
|
511 |
-
#: ../includes/class-ure-lib.php:
|
512 |
msgid "Read private pages"
|
513 |
msgstr "Özel yazıları okumak"
|
514 |
|
515 |
-
#: ../includes/class-ure-lib.php:
|
516 |
msgid "Delete users"
|
517 |
msgstr "Kullanıcı silmek"
|
518 |
|
519 |
-
#: ../includes/class-ure-lib.php:
|
520 |
msgid "Create users"
|
521 |
msgstr "Kullanıcı oluşturmak"
|
522 |
|
523 |
-
#: ../includes/class-ure-lib.php:
|
524 |
msgid "Unfiltered upload"
|
525 |
msgstr "Filtrelenmemiş dosya yüklemek"
|
526 |
|
527 |
-
#: ../includes/class-ure-lib.php:
|
528 |
msgid "Edit dashboard"
|
529 |
msgstr "Paneli düzenlemek"
|
530 |
|
531 |
-
#: ../includes/class-ure-lib.php:
|
532 |
msgid "Update plugins"
|
533 |
msgstr "Eklentileri güncellemek"
|
534 |
|
535 |
-
#: ../includes/class-ure-lib.php:
|
536 |
msgid "Delete plugins"
|
537 |
msgstr "Eklenti silmek"
|
538 |
|
539 |
-
#: ../includes/class-ure-lib.php:
|
540 |
msgid "Install plugins"
|
541 |
msgstr "Eklenti yüklemek"
|
542 |
|
543 |
-
#: ../includes/class-ure-lib.php:
|
544 |
msgid "Update themes"
|
545 |
msgstr "Temaları güncellemek"
|
546 |
|
547 |
-
#: ../includes/class-ure-lib.php:
|
548 |
msgid "Install themes"
|
549 |
msgstr "Tema yüklemek"
|
550 |
|
551 |
-
#: ../includes/class-ure-lib.php:
|
552 |
msgid "Update core"
|
553 |
msgstr "Güncelle"
|
554 |
|
555 |
-
#: ../includes/class-ure-lib.php:
|
556 |
msgid "List users"
|
557 |
msgstr "Kullanıcıları listelemek"
|
558 |
|
559 |
-
#: ../includes/class-ure-lib.php:
|
560 |
msgid "Remove users"
|
561 |
msgstr "Kullanıcı silmek"
|
562 |
|
563 |
-
#: ../includes/class-ure-lib.php:
|
564 |
msgid "Add users"
|
565 |
msgstr "Kullanıcıları eklemek"
|
566 |
|
567 |
-
#: ../includes/class-ure-lib.php:
|
568 |
msgid "Promote users"
|
569 |
msgstr "Kullanıcı yükseltmek"
|
570 |
|
571 |
-
#: ../includes/class-ure-lib.php:
|
572 |
msgid "Edit theme options"
|
573 |
msgstr "Tema ayarlarını düzenlemek"
|
574 |
|
575 |
-
#: ../includes/class-ure-lib.php:
|
576 |
msgid "Delete themes"
|
577 |
msgstr "Temaları silmek"
|
578 |
|
579 |
-
#: ../includes/class-ure-lib.php:
|
580 |
msgid "Export"
|
581 |
msgstr "Dışa aktarmak"
|
582 |
|
583 |
-
#: ../includes/class-ure-lib.php:
|
584 |
msgid "Error: Capability name must contain latin characters and digits only!"
|
585 |
msgstr ""
|
586 |
"Hata: Kabiliyet adı yalnızca latin karakterleri ve sayılardan oluşabilir."
|
587 |
|
588 |
-
#: ../includes/class-ure-lib.php:
|
589 |
#, php-format
|
590 |
msgid "Capability %s is added successfully"
|
591 |
msgstr "%s kabiliyeti başarıyla eklendi"
|
592 |
|
593 |
-
#: ../includes/class-ure-lib.php:
|
594 |
#, php-format
|
595 |
msgid "Capability %s exists already"
|
596 |
msgstr "%s kabiliyeti zaten mevcut"
|
597 |
|
598 |
-
#: ../includes/class-ure-lib.php:
|
599 |
#, php-format
|
600 |
msgid "Error! You do not have permission to delete this capability: %s!"
|
601 |
msgstr "Hata! Bu kabiliyeti değiştirmek için yetkiniz yok: %s!"
|
602 |
|
603 |
-
#: ../includes/class-ure-lib.php:
|
604 |
#, php-format
|
605 |
msgid "Capability %s is removed successfully"
|
606 |
msgstr "%s kabiliyeti başarıyla oluşturuldu"
|
607 |
|
608 |
-
#: ../includes/class-ure-lib.php:
|
|
|
|
|
|
|
|
|
609 |
msgid "Author's website"
|
610 |
msgstr "Hazırlayanın websitesi"
|
611 |
|
612 |
-
#: ../includes/class-ure-lib.php:
|
613 |
msgid "Plugin webpage"
|
614 |
msgstr "Eklentinin websitesi"
|
615 |
|
616 |
-
#: ../includes/class-ure-lib.php:
|
617 |
#, fuzzy
|
618 |
msgid "Plugin download"
|
619 |
msgstr "Başkalarının sayfalarını silmek"
|
620 |
|
621 |
-
#: ../includes/class-ure-lib.php:
|
622 |
msgid "FAQ"
|
623 |
msgstr "SSS"
|
624 |
|
625 |
-
#: ../includes/class-ure-lib.php:
|
626 |
msgid "None"
|
627 |
msgstr "Hiçbiri"
|
628 |
|
629 |
-
#: ../includes/class-ure-lib.php:
|
630 |
msgid "Delete All Unused Roles"
|
631 |
msgstr ""
|
632 |
|
633 |
-
#: ../includes/class-ure-lib.php:
|
634 |
msgid "— No role for this site —"
|
635 |
msgstr ""
|
636 |
|
@@ -642,9 +757,17 @@ msgstr ""
|
|
642 |
msgid "Change capabilities for user"
|
643 |
msgstr "Kullanıcının kabiliyetlerini değiştir: "
|
644 |
|
645 |
-
#: ../includes/
|
646 |
-
msgid "
|
647 |
-
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
648 |
|
649 |
#: ../includes/class-ure-screen-help.php:16
|
650 |
msgid ""
|
@@ -653,11 +776,6 @@ msgid ""
|
|
653 |
"for security reasons."
|
654 |
msgstr ""
|
655 |
|
656 |
-
#: ../includes/class-ure-screen-help.php:18
|
657 |
-
#, fuzzy
|
658 |
-
msgid "Show capabilities in the human readable form"
|
659 |
-
msgstr "Yetkileri insan tarafından okunabilir biçimde göster"
|
660 |
-
|
661 |
#: ../includes/class-ure-screen-help.php:19
|
662 |
msgid ""
|
663 |
"automatically converts capability names from the technical form for internal "
|
@@ -665,10 +783,6 @@ msgid ""
|
|
665 |
"others posts\"."
|
666 |
msgstr ""
|
667 |
|
668 |
-
#: ../includes/class-ure-screen-help.php:21
|
669 |
-
msgid "Show deprecated capabilities"
|
670 |
-
msgstr "Önerilmeyen yetenekleri göster"
|
671 |
-
|
672 |
#: ../includes/class-ure-screen-help.php:22
|
673 |
msgid ""
|
674 |
"Capabilities like \"level_0\", \"level_1\" are deprecated and are not used "
|
@@ -687,51 +801,9 @@ msgid ""
|
|
687 |
"multi-site. Turn this option on in order to remove this limitation."
|
688 |
msgstr ""
|
689 |
|
690 |
-
#~ msgid "Select Role and change its capabilities list"
|
691 |
-
#~ msgstr "Rolü seçin ve rolün yetki listesini değiştirin"
|
692 |
-
|
693 |
-
#~ msgid "Select Role:"
|
694 |
-
#~ msgstr "Rolü Seçin:"
|
695 |
-
|
696 |
-
#~ msgid "Show capabilities in human readable form"
|
697 |
-
#~ msgstr "Yetkileri insan tarafından okunabilir biçimde göster"
|
698 |
-
|
699 |
-
#~ msgid "Apply to All Sites"
|
700 |
-
#~ msgstr "Tüm sitelere uygula"
|
701 |
-
|
702 |
-
#~ msgid "Core capabilities:"
|
703 |
-
#~ msgstr "Çekirdek Kabiliyetleri:"
|
704 |
-
|
705 |
-
#~ msgid "Custom capabilities:"
|
706 |
-
#~ msgstr "Özel Kabiliyetler:"
|
707 |
-
|
708 |
-
#~ msgid "Role name (ID): "
|
709 |
-
#~ msgstr "Rol adı (ID):"
|
710 |
-
|
711 |
-
#~ msgid "Display Role Name: "
|
712 |
-
#~ msgstr "Görünecek Rol Adı:"
|
713 |
-
|
714 |
-
#~ msgid "Make copy of: "
|
715 |
-
#~ msgstr "Bundan kopyala:"
|
716 |
-
|
717 |
-
#~ msgid "Delete:"
|
718 |
-
#~ msgstr "Sil:"
|
719 |
-
|
720 |
-
#~ msgid "Capability name (ID): "
|
721 |
-
#~ msgstr "Yetenek adı (ID): "
|
722 |
-
|
723 |
#~ msgid "About this Plugin:"
|
724 |
#~ msgstr "Bu eklenti hakkında:"
|
725 |
|
726 |
-
#~ msgid "Primary Role:"
|
727 |
-
#~ msgstr "Birincil rol:"
|
728 |
-
|
729 |
-
#~ msgid "bbPress Role:"
|
730 |
-
#~ msgstr "bbPress rolü: "
|
731 |
-
|
732 |
-
#~ msgid "Other Roles:"
|
733 |
-
#~ msgstr "Diğer Roller:"
|
734 |
-
|
735 |
#~ msgid ""
|
736 |
#~ "Reset Roles to WordPress defaults. Be careful, all changes made by you or "
|
737 |
#~ "plugins will be lost. Some plugins, e.g. S2Member, WooCommerce "
|
@@ -1150,10 +1222,6 @@ msgstr ""
|
|
1150 |
#~ msgid "Image link:"
|
1151 |
#~ msgstr "Linkleri yönetmek"
|
1152 |
|
1153 |
-
#, fuzzy
|
1154 |
-
#~ msgid "General Options"
|
1155 |
-
#~ msgstr "Seçenekleri yönetmek"
|
1156 |
-
|
1157 |
#, fuzzy
|
1158 |
#~ msgid "Download Categories"
|
1159 |
#~ msgstr "Kategorileri yönetmek"
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: user-role-editor\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2014-06-11 11:20+0700\n"
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: Vladimir Garagulya <vladimir@shinephp.com>\n"
|
8 |
"Language-Team: \n"
|
16 |
"X-Generator: Poedit 1.5.4\n"
|
17 |
"X-Poedit-SearchPath-0: ..\n"
|
18 |
|
19 |
+
#: ../includes/settings-template.php:17
|
20 |
+
#, fuzzy
|
21 |
+
msgid "User Role Editor - Options"
|
22 |
+
msgstr "Kullanıcı Rol Editörü"
|
23 |
+
|
24 |
+
#: ../includes/settings-template.php:21
|
25 |
+
#, fuzzy
|
26 |
+
msgid "General"
|
27 |
+
msgstr "Seçenekleri yönetmek"
|
28 |
+
|
29 |
+
#: ../includes/settings-template.php:22
|
30 |
+
msgid "Additional Modules"
|
31 |
+
msgstr ""
|
32 |
+
|
33 |
+
#: ../includes/settings-template.php:23
|
34 |
+
#, fuzzy
|
35 |
+
msgid "Default Roles"
|
36 |
+
msgstr "Öntanımlı Rol"
|
37 |
+
|
38 |
+
#: ../includes/settings-template.php:27
|
39 |
+
msgid "Multisite"
|
40 |
+
msgstr ""
|
41 |
+
|
42 |
+
#: ../includes/settings-template.php:31
|
43 |
+
msgid "About"
|
44 |
+
msgstr ""
|
45 |
+
|
46 |
+
#: ../includes/settings-template.php:42
|
47 |
+
#: ../includes/class-ure-screen-help.php:15
|
48 |
+
msgid "Show Administrator role at User Role Editor"
|
49 |
+
msgstr ""
|
50 |
+
|
51 |
+
#: ../includes/settings-template.php:50
|
52 |
+
#: ../includes/class-ure-screen-help.php:18
|
53 |
+
#, fuzzy
|
54 |
+
msgid "Show capabilities in the human readable form"
|
55 |
+
msgstr "Yetkileri insan tarafından okunabilir biçimde göster"
|
56 |
+
|
57 |
+
#: ../includes/settings-template.php:58 ../includes/ure-role-edit.php:40
|
58 |
+
#: ../includes/ure-user-edit.php:63 ../includes/class-ure-screen-help.php:21
|
59 |
+
msgid "Show deprecated capabilities"
|
60 |
+
msgstr "Önerilmeyen yetenekleri göster"
|
61 |
+
|
62 |
+
#: ../includes/settings-template.php:69 ../includes/settings-template.php:101
|
63 |
+
#: ../includes/settings-template.php:131 ../includes/settings-template.php:160
|
64 |
msgid "Save"
|
65 |
msgstr ""
|
66 |
|
67 |
+
#: ../includes/settings-template.php:86
|
68 |
+
#, fuzzy
|
69 |
+
msgid "Count users without role"
|
70 |
+
msgstr "Varsayılan Rolü Değiştir"
|
71 |
+
|
72 |
+
#: ../includes/settings-template.php:111
|
73 |
+
#, fuzzy
|
74 |
+
msgid "Primary default role: "
|
75 |
+
msgstr "Birincil rol:"
|
76 |
+
|
77 |
+
#: ../includes/settings-template.php:118
|
78 |
+
msgid "Other default roles for new registered user: "
|
79 |
+
msgstr ""
|
80 |
+
|
81 |
+
#: ../includes/settings-template.php:124
|
82 |
msgid ""
|
83 |
"Note for multisite environment: take into account that other default roles "
|
84 |
"should exist at the site, in order to be assigned to the new registered "
|
85 |
"users."
|
86 |
msgstr ""
|
87 |
|
88 |
+
#: ../includes/settings-template.php:147
|
89 |
+
msgid "Allow non super administrators to create, edit, and delete users"
|
90 |
+
msgstr ""
|
91 |
+
|
92 |
#: ../includes/class-user-role-editor.php:185
|
93 |
#, fuzzy
|
94 |
msgid "Change role for users without role"
|
116 |
msgstr "Ayarlar"
|
117 |
|
118 |
#: ../includes/class-user-role-editor.php:520
|
119 |
+
#: ../includes/class-ure-lib.php:2207
|
120 |
msgid "Changelog"
|
121 |
msgstr "Changelog"
|
122 |
|
126 |
|
127 |
#: ../includes/class-user-role-editor.php:551
|
128 |
#: ../includes/class-user-role-editor.php:579
|
129 |
+
#: ../includes/class-user-role-editor.php:890
|
130 |
#: ../includes/class-ure-lib.php:225
|
131 |
msgid "User Role Editor"
|
132 |
msgstr "Kullanıcı Rol Editörü"
|
133 |
|
134 |
+
#: ../includes/class-user-role-editor.php:636
|
135 |
+
#: ../includes/class-user-role-editor.php:654
|
136 |
+
#: ../includes/class-user-role-editor.php:698
|
137 |
msgid "User Role Editor options are updated"
|
138 |
msgstr ""
|
139 |
|
140 |
+
#: ../includes/class-user-role-editor.php:682
|
141 |
#, fuzzy
|
142 |
msgid "Default Roles are updated"
|
143 |
msgstr "Yeni Kullanıcılar için Varsayılan Rol"
|
144 |
|
145 |
+
#: ../includes/class-user-role-editor.php:706
|
146 |
msgid ""
|
147 |
"You do not have sufficient permissions to manage options for User Role "
|
148 |
"Editor."
|
149 |
msgstr ""
|
150 |
|
151 |
+
#: ../includes/class-user-role-editor.php:781
|
152 |
msgid "Insufficient permissions to work with User Role Editor"
|
153 |
msgstr ""
|
154 |
|
155 |
+
#: ../includes/class-user-role-editor.php:835
|
156 |
msgid "Select All"
|
157 |
msgstr "Tümünü Seç"
|
158 |
|
159 |
+
#: ../includes/class-user-role-editor.php:836
|
160 |
msgid "Unselect All"
|
161 |
msgstr "Seçimi Kaldır"
|
162 |
|
163 |
+
#: ../includes/class-user-role-editor.php:837
|
164 |
msgid "Reverse"
|
165 |
msgstr "Seçimi Tersine Çevir"
|
166 |
|
167 |
+
#: ../includes/class-user-role-editor.php:838
|
168 |
msgid "Update"
|
169 |
msgstr "Güncelle"
|
170 |
|
171 |
+
#: ../includes/class-user-role-editor.php:839
|
172 |
msgid "Please confirm permissions update"
|
173 |
msgstr "İzinleri güncelleştirmek için lütfen onaylayın"
|
174 |
|
175 |
+
#: ../includes/class-user-role-editor.php:840
|
176 |
msgid "Add New Role"
|
177 |
msgstr "Yeni Rol Ekle"
|
178 |
|
179 |
+
#: ../includes/class-user-role-editor.php:841
|
180 |
msgid " Role name (ID) can not be empty!"
|
181 |
msgstr "Ad (ID) boş bırakılamaz!"
|
182 |
|
183 |
+
#: ../includes/class-user-role-editor.php:842
|
184 |
msgid ""
|
185 |
" Role name (ID) must contain latin characters, digits, hyphens or underscore "
|
186 |
"only!"
|
188 |
"Rol adı (ID) yalnızca latin karakterleri, sayılar, tire veya altçizgiden "
|
189 |
"oluşabilir."
|
190 |
|
191 |
+
#: ../includes/class-user-role-editor.php:843
|
192 |
msgid ""
|
193 |
" WordPress does not support numeric Role name (ID). Add latin characters to "
|
194 |
"it."
|
195 |
msgstr ""
|
196 |
|
197 |
+
#: ../includes/class-user-role-editor.php:844
|
198 |
msgid "Add Role"
|
199 |
msgstr "Rol Ekle"
|
200 |
|
201 |
+
#: ../includes/class-user-role-editor.php:845
|
202 |
msgid "Delete Role"
|
203 |
msgstr "Rolü Sil"
|
204 |
|
205 |
+
#: ../includes/class-user-role-editor.php:846
|
206 |
msgid "Cancel"
|
207 |
msgstr "İptal"
|
208 |
|
209 |
+
#: ../includes/class-user-role-editor.php:847
|
210 |
msgid "Add Capability"
|
211 |
msgstr "Kabiliyet Ekle"
|
212 |
|
213 |
+
#: ../includes/class-user-role-editor.php:848
|
214 |
+
#: ../includes/class-user-role-editor.php:857
|
215 |
msgid "Delete Capability"
|
216 |
msgstr "Kabiliyeti kaldır"
|
217 |
|
218 |
+
#: ../includes/class-user-role-editor.php:849
|
219 |
msgid "Reset"
|
220 |
msgstr "Geri al"
|
221 |
|
222 |
+
#: ../includes/class-user-role-editor.php:850
|
223 |
msgid "DANGER! Resetting will restore default settings from WordPress Core."
|
224 |
msgstr ""
|
225 |
|
226 |
+
#: ../includes/class-user-role-editor.php:851
|
227 |
msgid ""
|
228 |
"If any plugins have changed capabilities in any way upon installation (such "
|
229 |
"as S2Member, WooCommerce, and many more), those capabilities will be DELETED!"
|
230 |
msgstr ""
|
231 |
|
232 |
+
#: ../includes/class-user-role-editor.php:852
|
233 |
msgid ""
|
234 |
"For more information on how to undo changes and restore plugin capabilities "
|
235 |
"go to"
|
236 |
msgstr ""
|
237 |
|
238 |
+
#: ../includes/class-user-role-editor.php:854
|
239 |
msgid "Continue?"
|
240 |
msgstr ""
|
241 |
|
242 |
+
#: ../includes/class-user-role-editor.php:855
|
243 |
msgid "Default Role"
|
244 |
msgstr "Öntanımlı Rol"
|
245 |
|
246 |
+
#: ../includes/class-user-role-editor.php:856
|
247 |
msgid "Set New Default Role"
|
248 |
msgstr "Yeni Öntanımlı Rol Seç"
|
249 |
|
250 |
+
#: ../includes/class-user-role-editor.php:858
|
251 |
msgid ""
|
252 |
"Warning! Be careful - removing critical capability could crash some plugin "
|
253 |
"or other custom code"
|
255 |
"Uyarı! Dikkatli olun - önemli kabiliyetleri kaldırmak bazı eklentileri veya "
|
256 |
"başka özel kodların bozulmasına sebep olabilir"
|
257 |
|
258 |
+
#: ../includes/class-user-role-editor.php:859
|
259 |
msgid " Capability name (ID) can not be empty!"
|
260 |
msgstr "Ad (ID) boş bırakılamaz!"
|
261 |
|
262 |
+
#: ../includes/class-user-role-editor.php:860
|
263 |
msgid ""
|
264 |
" Capability name (ID) must contain latin characters, digits, hyphens or "
|
265 |
"underscore only!"
|
267 |
"Kabiliyet adı (ID) yalnızca latin karakterleri, sayılar, tire veya "
|
268 |
"altçizgiden oluşabilir."
|
269 |
|
270 |
+
#: ../includes/class-user-role-editor.php:893
|
271 |
+
#: ../includes/class-user-role-editor.php:922
|
272 |
msgid "Other Roles"
|
273 |
msgstr "Diğer Roller"
|
274 |
|
275 |
+
#: ../includes/class-user-role-editor.php:904
|
276 |
msgid "Edit"
|
277 |
msgstr "Düzenle"
|
278 |
|
279 |
+
#: ../includes/ure-role-edit.php:17
|
280 |
+
#, fuzzy
|
281 |
+
msgid "Select Role and change its capabilities:"
|
282 |
+
msgstr "Rolü seçin ve rolün yetki listesini değiştirin"
|
283 |
+
|
284 |
+
#: ../includes/ure-role-edit.php:30 ../includes/ure-user-edit.php:53
|
285 |
+
msgid "Show capabilities in human readable form"
|
286 |
+
msgstr "Yetkileri insan tarafından okunabilir biçimde göster"
|
287 |
+
|
288 |
#: ../includes/ure-role-edit.php:44
|
289 |
msgid "If checked, then apply action to ALL sites of this Network"
|
290 |
msgstr "Eğer seçilirse, bu ağdaki tüm siteler için uygulanır"
|
291 |
|
292 |
+
#: ../includes/ure-role-edit.php:56
|
293 |
+
msgid "Apply to All Sites"
|
294 |
+
msgstr "Tüm sitelere uygula"
|
295 |
+
|
296 |
+
#: ../includes/ure-role-edit.php:63 ../includes/ure-user-edit.php:109
|
297 |
+
msgid "Core capabilities:"
|
298 |
+
msgstr "Çekirdek Kabiliyetleri:"
|
299 |
+
|
300 |
+
#: ../includes/ure-role-edit.php:65 ../includes/ure-user-edit.php:111
|
301 |
+
msgid "Quick filter:"
|
302 |
+
msgstr ""
|
303 |
+
|
304 |
+
#: ../includes/ure-role-edit.php:83 ../includes/ure-user-edit.php:130
|
305 |
+
msgid "Custom capabilities:"
|
306 |
+
msgstr "Özel Kabiliyetler:"
|
307 |
+
|
308 |
#: ../includes/class-ure-lib.php:143
|
309 |
msgid "Error: wrong request"
|
310 |
msgstr ""
|
311 |
|
312 |
+
#: ../includes/class-ure-lib.php:175
|
313 |
+
msgid "Role name (ID): "
|
314 |
+
msgstr "Rol adı (ID):"
|
315 |
+
|
316 |
+
#: ../includes/class-ure-lib.php:177
|
317 |
+
msgid "Display Role Name: "
|
318 |
+
msgstr "Görünecek Rol Adı:"
|
319 |
+
|
320 |
+
#: ../includes/class-ure-lib.php:179
|
321 |
+
msgid "Make copy of: "
|
322 |
+
msgstr "Bundan kopyala:"
|
323 |
+
|
324 |
+
#: ../includes/class-ure-lib.php:186
|
325 |
+
msgid "Select Role:"
|
326 |
+
msgstr "Rolü Seçin:"
|
327 |
+
|
328 |
+
#: ../includes/class-ure-lib.php:201
|
329 |
+
msgid "Delete:"
|
330 |
+
msgstr "Sil:"
|
331 |
+
|
332 |
+
#: ../includes/class-ure-lib.php:208
|
333 |
+
msgid "Capability name (ID): "
|
334 |
+
msgstr "Yetenek adı (ID): "
|
335 |
+
|
336 |
#: ../includes/class-ure-lib.php:322
|
337 |
msgid "Error: "
|
338 |
msgstr "Hata:"
|
369 |
msgid "User Roles are restored to WordPress default values. "
|
370 |
msgstr "Rol yetkileri WordPress öntanımlılarına geri yüklendi."
|
371 |
|
372 |
+
#: ../includes/class-ure-lib.php:1312
|
373 |
msgid "Help"
|
374 |
msgstr "Yardım"
|
375 |
|
376 |
+
#: ../includes/class-ure-lib.php:1662
|
377 |
msgid "Error is occur. Please check the log file."
|
378 |
msgstr "Bir hata oluştu. Lütfen günlük dosyasını kontrol edin."
|
379 |
|
380 |
+
#: ../includes/class-ure-lib.php:1705
|
381 |
msgid ""
|
382 |
"Error: Role ID must contain latin characters, digits, hyphens or underscore "
|
383 |
"only!"
|
385 |
"Hata: Rol ID yalnızca latin karakterleri, sayılar, tire veya altçizgiden "
|
386 |
"oluşabilir."
|
387 |
|
388 |
+
#: ../includes/class-ure-lib.php:1709
|
389 |
msgid ""
|
390 |
"Error: WordPress does not support numeric Role name (ID). Add latin "
|
391 |
"characters to it."
|
392 |
msgstr ""
|
393 |
|
394 |
+
#: ../includes/class-ure-lib.php:1724
|
395 |
#, php-format
|
396 |
msgid "Role %s exists already"
|
397 |
msgstr "%s rolü zaten mevcut"
|
398 |
|
399 |
+
#: ../includes/class-ure-lib.php:1739
|
400 |
msgid "Error is encountered during new role create operation"
|
401 |
msgstr "Yeni rol oluşturma işlemi sırasında hata"
|
402 |
|
403 |
+
#: ../includes/class-ure-lib.php:1741
|
404 |
#, php-format
|
405 |
msgid "Role %s is created successfully"
|
406 |
msgstr "%s rolü başarıyla oluşturuldu"
|
407 |
|
408 |
+
#: ../includes/class-ure-lib.php:1810
|
409 |
msgid "Error encountered during role delete operation"
|
410 |
msgstr "Rol silme işlemi sırasında hata"
|
411 |
|
412 |
+
#: ../includes/class-ure-lib.php:1812
|
413 |
msgid "Unused roles are deleted successfully"
|
414 |
msgstr ""
|
415 |
|
416 |
+
#: ../includes/class-ure-lib.php:1814
|
417 |
#, php-format
|
418 |
msgid "Role %s is deleted successfully"
|
419 |
msgstr "%s rolü başarıyla silindi"
|
420 |
|
421 |
+
#: ../includes/class-ure-lib.php:1839
|
422 |
msgid "Error encountered during default role change operation"
|
423 |
msgstr "Varsayılan rolü değiştirme işlemi sırasında hata"
|
424 |
|
425 |
+
#: ../includes/class-ure-lib.php:1845
|
426 |
#, php-format
|
427 |
msgid "Default role for new users is set to %s successfully"
|
428 |
msgstr "Yeni kullanıcılar için varsayılan rol %s olarak başarıyla değiştirildi"
|
429 |
|
430 |
+
#: ../includes/class-ure-lib.php:1864
|
431 |
msgid "Editor"
|
432 |
msgstr "Editör"
|
433 |
|
434 |
+
#: ../includes/class-ure-lib.php:1865
|
435 |
msgid "Author"
|
436 |
msgstr "Yazar"
|
437 |
|
438 |
+
#: ../includes/class-ure-lib.php:1866
|
439 |
msgid "Contributor"
|
440 |
msgstr "İçerik Sağlayıcı"
|
441 |
|
442 |
+
#: ../includes/class-ure-lib.php:1867
|
443 |
msgid "Subscriber"
|
444 |
msgstr "Üye"
|
445 |
|
446 |
+
#: ../includes/class-ure-lib.php:1869
|
447 |
msgid "Switch themes"
|
448 |
msgstr "Temaları değiştir"
|
449 |
|
450 |
+
#: ../includes/class-ure-lib.php:1870
|
451 |
msgid "Edit themes"
|
452 |
msgstr "Temaları düzenle"
|
453 |
|
454 |
+
#: ../includes/class-ure-lib.php:1871
|
455 |
msgid "Activate plugins"
|
456 |
msgstr "Eklentileri aktive et"
|
457 |
|
458 |
+
#: ../includes/class-ure-lib.php:1872
|
459 |
msgid "Edit plugins"
|
460 |
msgstr "Eklentileri düzenlemek"
|
461 |
|
462 |
+
#: ../includes/class-ure-lib.php:1873
|
463 |
msgid "Edit users"
|
464 |
msgstr "Kullanıcıları düzenlemek"
|
465 |
|
466 |
+
#: ../includes/class-ure-lib.php:1874
|
467 |
msgid "Edit files"
|
468 |
msgstr "Dosyaları düzenlemek"
|
469 |
|
470 |
+
#: ../includes/class-ure-lib.php:1875
|
471 |
msgid "Manage options"
|
472 |
msgstr "Seçenekleri yönetmek"
|
473 |
|
474 |
+
#: ../includes/class-ure-lib.php:1876
|
475 |
msgid "Moderate comments"
|
476 |
msgstr "Yorumları yönetmek"
|
477 |
|
478 |
+
#: ../includes/class-ure-lib.php:1877
|
479 |
msgid "Manage categories"
|
480 |
msgstr "Kategorileri yönetmek"
|
481 |
|
482 |
+
#: ../includes/class-ure-lib.php:1878
|
483 |
msgid "Manage links"
|
484 |
msgstr "Linkleri yönetmek"
|
485 |
|
486 |
+
#: ../includes/class-ure-lib.php:1879
|
487 |
msgid "Upload files"
|
488 |
msgstr "Dosya yüklemek"
|
489 |
|
490 |
+
#: ../includes/class-ure-lib.php:1880
|
491 |
msgid "Import"
|
492 |
msgstr "İçeri aktarmak"
|
493 |
|
494 |
+
#: ../includes/class-ure-lib.php:1881
|
495 |
msgid "Unfiltered html"
|
496 |
msgstr "Filtrelenmemiş HTML"
|
497 |
|
498 |
+
#: ../includes/class-ure-lib.php:1882
|
499 |
msgid "Edit posts"
|
500 |
msgstr "Yazıları düzenlemek"
|
501 |
|
502 |
+
#: ../includes/class-ure-lib.php:1883
|
503 |
msgid "Edit others posts"
|
504 |
msgstr "Başkalarının yazılarını düzenlemek"
|
505 |
|
506 |
+
#: ../includes/class-ure-lib.php:1884
|
507 |
msgid "Edit published posts"
|
508 |
msgstr "Yayınlanmış yazıları düzenlemek"
|
509 |
|
510 |
+
#: ../includes/class-ure-lib.php:1885
|
511 |
msgid "Publish posts"
|
512 |
msgstr "Yazıları yayınlamak"
|
513 |
|
514 |
+
#: ../includes/class-ure-lib.php:1886
|
515 |
msgid "Edit pages"
|
516 |
msgstr "Sayfaları düzenlemek"
|
517 |
|
518 |
+
#: ../includes/class-ure-lib.php:1887
|
519 |
msgid "Read"
|
520 |
msgstr "Okumak"
|
521 |
|
522 |
+
#: ../includes/class-ure-lib.php:1888
|
523 |
msgid "Level 10"
|
524 |
msgstr "Seviye 10"
|
525 |
|
526 |
+
#: ../includes/class-ure-lib.php:1889
|
527 |
msgid "Level 9"
|
528 |
msgstr "Seviye 9"
|
529 |
|
530 |
+
#: ../includes/class-ure-lib.php:1890
|
531 |
msgid "Level 8"
|
532 |
msgstr "Seviye 8"
|
533 |
|
534 |
+
#: ../includes/class-ure-lib.php:1891
|
535 |
msgid "Level 7"
|
536 |
msgstr "Seviye 7"
|
537 |
|
538 |
+
#: ../includes/class-ure-lib.php:1892
|
539 |
msgid "Level 6"
|
540 |
msgstr "Seviye 6"
|
541 |
|
542 |
+
#: ../includes/class-ure-lib.php:1893
|
543 |
msgid "Level 5"
|
544 |
msgstr "Seviye 5"
|
545 |
|
546 |
+
#: ../includes/class-ure-lib.php:1894
|
547 |
msgid "Level 4"
|
548 |
msgstr "Seviye 4"
|
549 |
|
550 |
+
#: ../includes/class-ure-lib.php:1895
|
551 |
msgid "Level 3"
|
552 |
msgstr "Seviye 3"
|
553 |
|
554 |
+
#: ../includes/class-ure-lib.php:1896
|
555 |
msgid "Level 2"
|
556 |
msgstr "Seviye 2"
|
557 |
|
558 |
+
#: ../includes/class-ure-lib.php:1897
|
559 |
msgid "Level 1"
|
560 |
msgstr "Seviye 1"
|
561 |
|
562 |
+
#: ../includes/class-ure-lib.php:1898
|
563 |
msgid "Level 0"
|
564 |
msgstr "Seviye 0"
|
565 |
|
566 |
+
#: ../includes/class-ure-lib.php:1899
|
567 |
msgid "Edit others pages"
|
568 |
msgstr "Başkalarının sayfalarını düzenlemek"
|
569 |
|
570 |
+
#: ../includes/class-ure-lib.php:1900
|
571 |
msgid "Edit published pages"
|
572 |
msgstr "Yayınlanmış sayfaları düzenlemek"
|
573 |
|
574 |
+
#: ../includes/class-ure-lib.php:1901
|
575 |
msgid "Publish pages"
|
576 |
msgstr "Sayfaları yayınlamak"
|
577 |
|
578 |
+
#: ../includes/class-ure-lib.php:1902
|
579 |
msgid "Delete pages"
|
580 |
msgstr "Sayfaları silmek"
|
581 |
|
582 |
+
#: ../includes/class-ure-lib.php:1903
|
583 |
msgid "Delete others pages"
|
584 |
msgstr "Başkalarının sayfalarını silmek"
|
585 |
|
586 |
+
#: ../includes/class-ure-lib.php:1904
|
587 |
msgid "Delete published pages"
|
588 |
msgstr "Yayınlanmış sayfaları silmek"
|
589 |
|
590 |
+
#: ../includes/class-ure-lib.php:1905
|
591 |
msgid "Delete posts"
|
592 |
msgstr "Yazıları silmek"
|
593 |
|
594 |
+
#: ../includes/class-ure-lib.php:1906
|
595 |
msgid "Delete others posts"
|
596 |
msgstr "Başkalarının yazılarını silmek"
|
597 |
|
598 |
+
#: ../includes/class-ure-lib.php:1907
|
599 |
msgid "Delete published posts"
|
600 |
msgstr "Yayınlanmış yazıları silmek"
|
601 |
|
602 |
+
#: ../includes/class-ure-lib.php:1908
|
603 |
msgid "Delete private posts"
|
604 |
msgstr "Özel yazıları silmek"
|
605 |
|
606 |
+
#: ../includes/class-ure-lib.php:1909
|
607 |
msgid "Edit private posts"
|
608 |
msgstr "Özel yazıları düzenlemek"
|
609 |
|
610 |
+
#: ../includes/class-ure-lib.php:1910
|
611 |
msgid "Read private posts"
|
612 |
msgstr "Özel yazıları okumak"
|
613 |
|
614 |
+
#: ../includes/class-ure-lib.php:1911
|
615 |
msgid "Delete private pages"
|
616 |
msgstr "Özel sayfaları silmek"
|
617 |
|
618 |
+
#: ../includes/class-ure-lib.php:1912
|
619 |
msgid "Edit private pages"
|
620 |
msgstr "Özel sayfaları düzenlemek"
|
621 |
|
622 |
+
#: ../includes/class-ure-lib.php:1913
|
623 |
msgid "Read private pages"
|
624 |
msgstr "Özel yazıları okumak"
|
625 |
|
626 |
+
#: ../includes/class-ure-lib.php:1914
|
627 |
msgid "Delete users"
|
628 |
msgstr "Kullanıcı silmek"
|
629 |
|
630 |
+
#: ../includes/class-ure-lib.php:1915
|
631 |
msgid "Create users"
|
632 |
msgstr "Kullanıcı oluşturmak"
|
633 |
|
634 |
+
#: ../includes/class-ure-lib.php:1916
|
635 |
msgid "Unfiltered upload"
|
636 |
msgstr "Filtrelenmemiş dosya yüklemek"
|
637 |
|
638 |
+
#: ../includes/class-ure-lib.php:1917
|
639 |
msgid "Edit dashboard"
|
640 |
msgstr "Paneli düzenlemek"
|
641 |
|
642 |
+
#: ../includes/class-ure-lib.php:1918
|
643 |
msgid "Update plugins"
|
644 |
msgstr "Eklentileri güncellemek"
|
645 |
|
646 |
+
#: ../includes/class-ure-lib.php:1919
|
647 |
msgid "Delete plugins"
|
648 |
msgstr "Eklenti silmek"
|
649 |
|
650 |
+
#: ../includes/class-ure-lib.php:1920
|
651 |
msgid "Install plugins"
|
652 |
msgstr "Eklenti yüklemek"
|
653 |
|
654 |
+
#: ../includes/class-ure-lib.php:1921
|
655 |
msgid "Update themes"
|
656 |
msgstr "Temaları güncellemek"
|
657 |
|
658 |
+
#: ../includes/class-ure-lib.php:1922
|
659 |
msgid "Install themes"
|
660 |
msgstr "Tema yüklemek"
|
661 |
|
662 |
+
#: ../includes/class-ure-lib.php:1923
|
663 |
msgid "Update core"
|
664 |
msgstr "Güncelle"
|
665 |
|
666 |
+
#: ../includes/class-ure-lib.php:1924
|
667 |
msgid "List users"
|
668 |
msgstr "Kullanıcıları listelemek"
|
669 |
|
670 |
+
#: ../includes/class-ure-lib.php:1925
|
671 |
msgid "Remove users"
|
672 |
msgstr "Kullanıcı silmek"
|
673 |
|
674 |
+
#: ../includes/class-ure-lib.php:1926
|
675 |
msgid "Add users"
|
676 |
msgstr "Kullanıcıları eklemek"
|
677 |
|
678 |
+
#: ../includes/class-ure-lib.php:1927
|
679 |
msgid "Promote users"
|
680 |
msgstr "Kullanıcı yükseltmek"
|
681 |
|
682 |
+
#: ../includes/class-ure-lib.php:1928
|
683 |
msgid "Edit theme options"
|
684 |
msgstr "Tema ayarlarını düzenlemek"
|
685 |
|
686 |
+
#: ../includes/class-ure-lib.php:1929
|
687 |
msgid "Delete themes"
|
688 |
msgstr "Temaları silmek"
|
689 |
|
690 |
+
#: ../includes/class-ure-lib.php:1930
|
691 |
msgid "Export"
|
692 |
msgstr "Dışa aktarmak"
|
693 |
|
694 |
+
#: ../includes/class-ure-lib.php:2040
|
695 |
msgid "Error: Capability name must contain latin characters and digits only!"
|
696 |
msgstr ""
|
697 |
"Hata: Kabiliyet adı yalnızca latin karakterleri ve sayılardan oluşabilir."
|
698 |
|
699 |
+
#: ../includes/class-ure-lib.php:2053
|
700 |
#, php-format
|
701 |
msgid "Capability %s is added successfully"
|
702 |
msgstr "%s kabiliyeti başarıyla eklendi"
|
703 |
|
704 |
+
#: ../includes/class-ure-lib.php:2055
|
705 |
#, php-format
|
706 |
msgid "Capability %s exists already"
|
707 |
msgstr "%s kabiliyeti zaten mevcut"
|
708 |
|
709 |
+
#: ../includes/class-ure-lib.php:2080
|
710 |
#, php-format
|
711 |
msgid "Error! You do not have permission to delete this capability: %s!"
|
712 |
msgstr "Hata! Bu kabiliyeti değiştirmek için yetkiniz yok: %s!"
|
713 |
|
714 |
+
#: ../includes/class-ure-lib.php:2099
|
715 |
#, php-format
|
716 |
msgid "Capability %s is removed successfully"
|
717 |
msgstr "%s kabiliyeti başarıyla oluşturuldu"
|
718 |
|
719 |
+
#: ../includes/class-ure-lib.php:2203
|
720 |
+
msgid "Version:"
|
721 |
+
msgstr ""
|
722 |
+
|
723 |
+
#: ../includes/class-ure-lib.php:2204
|
724 |
msgid "Author's website"
|
725 |
msgstr "Hazırlayanın websitesi"
|
726 |
|
727 |
+
#: ../includes/class-ure-lib.php:2205
|
728 |
msgid "Plugin webpage"
|
729 |
msgstr "Eklentinin websitesi"
|
730 |
|
731 |
+
#: ../includes/class-ure-lib.php:2206
|
732 |
#, fuzzy
|
733 |
msgid "Plugin download"
|
734 |
msgstr "Başkalarının sayfalarını silmek"
|
735 |
|
736 |
+
#: ../includes/class-ure-lib.php:2208
|
737 |
msgid "FAQ"
|
738 |
msgstr "SSS"
|
739 |
|
740 |
+
#: ../includes/class-ure-lib.php:2256
|
741 |
msgid "None"
|
742 |
msgstr "Hiçbiri"
|
743 |
|
744 |
+
#: ../includes/class-ure-lib.php:2283
|
745 |
msgid "Delete All Unused Roles"
|
746 |
msgstr ""
|
747 |
|
748 |
+
#: ../includes/class-ure-lib.php:2307
|
749 |
msgid "— No role for this site —"
|
750 |
msgstr ""
|
751 |
|
757 |
msgid "Change capabilities for user"
|
758 |
msgstr "Kullanıcının kabiliyetlerini değiştir: "
|
759 |
|
760 |
+
#: ../includes/ure-user-edit.php:71
|
761 |
+
msgid "Primary Role:"
|
762 |
+
msgstr "Birincil rol:"
|
763 |
+
|
764 |
+
#: ../includes/ure-user-edit.php:81
|
765 |
+
msgid "bbPress Role:"
|
766 |
+
msgstr "bbPress rolü: "
|
767 |
+
|
768 |
+
#: ../includes/ure-user-edit.php:91
|
769 |
+
msgid "Other Roles:"
|
770 |
+
msgstr "Diğer Roller:"
|
771 |
|
772 |
#: ../includes/class-ure-screen-help.php:16
|
773 |
msgid ""
|
776 |
"for security reasons."
|
777 |
msgstr ""
|
778 |
|
|
|
|
|
|
|
|
|
|
|
779 |
#: ../includes/class-ure-screen-help.php:19
|
780 |
msgid ""
|
781 |
"automatically converts capability names from the technical form for internal "
|
783 |
"others posts\"."
|
784 |
msgstr ""
|
785 |
|
|
|
|
|
|
|
|
|
786 |
#: ../includes/class-ure-screen-help.php:22
|
787 |
msgid ""
|
788 |
"Capabilities like \"level_0\", \"level_1\" are deprecated and are not used "
|
801 |
"multi-site. Turn this option on in order to remove this limitation."
|
802 |
msgstr ""
|
803 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
804 |
#~ msgid "About this Plugin:"
|
805 |
#~ msgstr "Bu eklenti hakkında:"
|
806 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
807 |
#~ msgid ""
|
808 |
#~ "Reset Roles to WordPress defaults. Be careful, all changes made by you or "
|
809 |
#~ "plugins will be lost. Some plugins, e.g. S2Member, WooCommerce "
|
1222 |
#~ msgid "Image link:"
|
1223 |
#~ msgstr "Linkleri yönetmek"
|
1224 |
|
|
|
|
|
|
|
|
|
1225 |
#, fuzzy
|
1226 |
#~ msgid "Download Categories"
|
1227 |
#~ msgstr "Kategorileri yönetmek"
|
lang/ure.mo
CHANGED
Binary file
|
lang/ure.pot
CHANGED
@@ -2,7 +2,7 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: User Role Editor 2.0\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2014-
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: Vladimir Garagulya <vladimir@shinephp.com>\n"
|
8 |
"Language-Team: ShinePHP.com <vladimir@shinephp.com>\n"
|
@@ -11,23 +11,78 @@ msgstr ""
|
|
11 |
"Content-Type: text/plain; charset=UTF-8\n"
|
12 |
"Content-Transfer-Encoding: 8bit\n"
|
13 |
"X-Poedit-SourceCharset: UTF-8\n"
|
14 |
-
"X-Poedit-KeywordsList: __;_e;esc_html__\n"
|
15 |
"X-Poedit-Basepath: .\n"
|
16 |
"X-Generator: Poedit 1.5.4\n"
|
17 |
"X-Poedit-SearchPath-0: ..\n"
|
18 |
|
19 |
-
#: ../includes/settings-template.php:
|
20 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
21 |
msgid "Save"
|
22 |
msgstr ""
|
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/class-user-role-editor.php:185
|
32 |
msgid "Change role for users without role"
|
33 |
msgstr ""
|
@@ -54,7 +109,7 @@ msgid "Settings"
|
|
54 |
msgstr ""
|
55 |
|
56 |
#: ../includes/class-user-role-editor.php:520
|
57 |
-
#: ../includes/class-ure-lib.php:
|
58 |
msgid "Changelog"
|
59 |
msgstr ""
|
60 |
|
@@ -64,156 +119,205 @@ msgstr ""
|
|
64 |
|
65 |
#: ../includes/class-user-role-editor.php:551
|
66 |
#: ../includes/class-user-role-editor.php:579
|
67 |
-
#: ../includes/class-user-role-editor.php:
|
68 |
#: ../includes/class-ure-lib.php:225
|
69 |
msgid "User Role Editor"
|
70 |
msgstr ""
|
71 |
|
72 |
-
#: ../includes/class-user-role-editor.php:
|
73 |
-
#: ../includes/class-user-role-editor.php:
|
|
|
74 |
msgid "User Role Editor options are updated"
|
75 |
msgstr ""
|
76 |
|
77 |
-
#: ../includes/class-user-role-editor.php:
|
78 |
msgid "Default Roles are updated"
|
79 |
msgstr ""
|
80 |
|
81 |
-
#: ../includes/class-user-role-editor.php:
|
82 |
msgid ""
|
83 |
"You do not have sufficient permissions to manage options for User Role "
|
84 |
"Editor."
|
85 |
msgstr ""
|
86 |
|
87 |
-
#: ../includes/class-user-role-editor.php:
|
88 |
msgid "Insufficient permissions to work with User Role Editor"
|
89 |
msgstr ""
|
90 |
|
91 |
-
#: ../includes/class-user-role-editor.php:
|
92 |
msgid "Select All"
|
93 |
msgstr ""
|
94 |
|
95 |
-
#: ../includes/class-user-role-editor.php:
|
96 |
msgid "Unselect All"
|
97 |
msgstr ""
|
98 |
|
99 |
-
#: ../includes/class-user-role-editor.php:
|
100 |
msgid "Reverse"
|
101 |
msgstr ""
|
102 |
|
103 |
-
#: ../includes/class-user-role-editor.php:
|
104 |
msgid "Update"
|
105 |
msgstr ""
|
106 |
|
107 |
-
#: ../includes/class-user-role-editor.php:
|
108 |
msgid "Please confirm permissions update"
|
109 |
msgstr ""
|
110 |
|
111 |
-
#: ../includes/class-user-role-editor.php:
|
112 |
msgid "Add New Role"
|
113 |
msgstr ""
|
114 |
|
115 |
-
#: ../includes/class-user-role-editor.php:
|
116 |
msgid " Role name (ID) can not be empty!"
|
117 |
msgstr ""
|
118 |
|
119 |
-
#: ../includes/class-user-role-editor.php:
|
120 |
msgid ""
|
121 |
" Role name (ID) must contain latin characters, digits, hyphens or underscore "
|
122 |
"only!"
|
123 |
msgstr ""
|
124 |
|
125 |
-
#: ../includes/class-user-role-editor.php:
|
126 |
msgid ""
|
127 |
" WordPress does not support numeric Role name (ID). Add latin characters to "
|
128 |
"it."
|
129 |
msgstr ""
|
130 |
|
131 |
-
#: ../includes/class-user-role-editor.php:
|
132 |
msgid "Add Role"
|
133 |
msgstr ""
|
134 |
|
135 |
-
#: ../includes/class-user-role-editor.php:
|
136 |
msgid "Delete Role"
|
137 |
msgstr ""
|
138 |
|
139 |
-
#: ../includes/class-user-role-editor.php:
|
140 |
msgid "Cancel"
|
141 |
msgstr ""
|
142 |
|
143 |
-
#: ../includes/class-user-role-editor.php:
|
144 |
msgid "Add Capability"
|
145 |
msgstr ""
|
146 |
|
147 |
-
#: ../includes/class-user-role-editor.php:
|
148 |
-
#: ../includes/class-user-role-editor.php:
|
149 |
msgid "Delete Capability"
|
150 |
msgstr ""
|
151 |
|
152 |
-
#: ../includes/class-user-role-editor.php:
|
153 |
msgid "Reset"
|
154 |
msgstr ""
|
155 |
|
156 |
-
#: ../includes/class-user-role-editor.php:
|
157 |
msgid "DANGER! Resetting will restore default settings from WordPress Core."
|
158 |
msgstr ""
|
159 |
|
160 |
-
#: ../includes/class-user-role-editor.php:
|
161 |
msgid ""
|
162 |
"If any plugins have changed capabilities in any way upon installation (such "
|
163 |
"as S2Member, WooCommerce, and many more), those capabilities will be DELETED!"
|
164 |
msgstr ""
|
165 |
|
166 |
-
#: ../includes/class-user-role-editor.php:
|
167 |
msgid ""
|
168 |
"For more information on how to undo changes and restore plugin capabilities "
|
169 |
"go to"
|
170 |
msgstr ""
|
171 |
|
172 |
-
#: ../includes/class-user-role-editor.php:
|
173 |
msgid "Continue?"
|
174 |
msgstr ""
|
175 |
|
176 |
-
#: ../includes/class-user-role-editor.php:
|
177 |
msgid "Default Role"
|
178 |
msgstr ""
|
179 |
|
180 |
-
#: ../includes/class-user-role-editor.php:
|
181 |
msgid "Set New Default Role"
|
182 |
msgstr ""
|
183 |
|
184 |
-
#: ../includes/class-user-role-editor.php:
|
185 |
msgid ""
|
186 |
"Warning! Be careful - removing critical capability could crash some plugin "
|
187 |
"or other custom code"
|
188 |
msgstr ""
|
189 |
|
190 |
-
#: ../includes/class-user-role-editor.php:
|
191 |
msgid " Capability name (ID) can not be empty!"
|
192 |
msgstr ""
|
193 |
|
194 |
-
#: ../includes/class-user-role-editor.php:
|
195 |
msgid ""
|
196 |
" Capability name (ID) must contain latin characters, digits, hyphens or "
|
197 |
"underscore only!"
|
198 |
msgstr ""
|
199 |
|
200 |
-
#: ../includes/class-user-role-editor.php:
|
201 |
-
#: ../includes/class-user-role-editor.php:
|
202 |
msgid "Other Roles"
|
203 |
msgstr ""
|
204 |
|
205 |
-
#: ../includes/class-user-role-editor.php:
|
206 |
msgid "Edit"
|
207 |
msgstr ""
|
208 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
209 |
#: ../includes/ure-role-edit.php:44
|
210 |
msgid "If checked, then apply action to ALL sites of this Network"
|
211 |
msgstr ""
|
212 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
213 |
#: ../includes/class-ure-lib.php:143
|
214 |
msgid "Error: wrong request"
|
215 |
msgstr ""
|
216 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
217 |
#: ../includes/class-ure-lib.php:322
|
218 |
msgid "Error: "
|
219 |
msgstr ""
|
@@ -250,375 +354,379 @@ msgstr ""
|
|
250 |
msgid "User Roles are restored to WordPress default values. "
|
251 |
msgstr ""
|
252 |
|
253 |
-
#: ../includes/class-ure-lib.php:
|
254 |
msgid "Help"
|
255 |
msgstr ""
|
256 |
|
257 |
-
#: ../includes/class-ure-lib.php:
|
258 |
msgid "Error is occur. Please check the log file."
|
259 |
msgstr ""
|
260 |
|
261 |
-
#: ../includes/class-ure-lib.php:
|
262 |
msgid ""
|
263 |
"Error: Role ID must contain latin characters, digits, hyphens or underscore "
|
264 |
"only!"
|
265 |
msgstr ""
|
266 |
|
267 |
-
#: ../includes/class-ure-lib.php:
|
268 |
msgid ""
|
269 |
"Error: WordPress does not support numeric Role name (ID). Add latin "
|
270 |
"characters to it."
|
271 |
msgstr ""
|
272 |
|
273 |
-
#: ../includes/class-ure-lib.php:
|
274 |
#, php-format
|
275 |
msgid "Role %s exists already"
|
276 |
msgstr ""
|
277 |
|
278 |
-
#: ../includes/class-ure-lib.php:
|
279 |
msgid "Error is encountered during new role create operation"
|
280 |
msgstr ""
|
281 |
|
282 |
-
#: ../includes/class-ure-lib.php:
|
283 |
#, php-format
|
284 |
msgid "Role %s is created successfully"
|
285 |
msgstr ""
|
286 |
|
287 |
-
#: ../includes/class-ure-lib.php:
|
288 |
msgid "Error encountered during role delete operation"
|
289 |
msgstr ""
|
290 |
|
291 |
-
#: ../includes/class-ure-lib.php:
|
292 |
msgid "Unused roles are deleted successfully"
|
293 |
msgstr ""
|
294 |
|
295 |
-
#: ../includes/class-ure-lib.php:
|
296 |
#, php-format
|
297 |
msgid "Role %s is deleted successfully"
|
298 |
msgstr ""
|
299 |
|
300 |
-
#: ../includes/class-ure-lib.php:
|
301 |
msgid "Error encountered during default role change operation"
|
302 |
msgstr ""
|
303 |
|
304 |
-
#: ../includes/class-ure-lib.php:
|
305 |
#, php-format
|
306 |
msgid "Default role for new users is set to %s successfully"
|
307 |
msgstr ""
|
308 |
|
309 |
-
#: ../includes/class-ure-lib.php:
|
310 |
msgid "Editor"
|
311 |
msgstr ""
|
312 |
|
313 |
-
#: ../includes/class-ure-lib.php:
|
314 |
msgid "Author"
|
315 |
msgstr ""
|
316 |
|
317 |
-
#: ../includes/class-ure-lib.php:
|
318 |
msgid "Contributor"
|
319 |
msgstr ""
|
320 |
|
321 |
-
#: ../includes/class-ure-lib.php:
|
322 |
msgid "Subscriber"
|
323 |
msgstr ""
|
324 |
|
325 |
-
#: ../includes/class-ure-lib.php:
|
326 |
msgid "Switch themes"
|
327 |
msgstr ""
|
328 |
|
329 |
-
#: ../includes/class-ure-lib.php:
|
330 |
msgid "Edit themes"
|
331 |
msgstr ""
|
332 |
|
333 |
-
#: ../includes/class-ure-lib.php:
|
334 |
msgid "Activate plugins"
|
335 |
msgstr ""
|
336 |
|
337 |
-
#: ../includes/class-ure-lib.php:
|
338 |
msgid "Edit plugins"
|
339 |
msgstr ""
|
340 |
|
341 |
-
#: ../includes/class-ure-lib.php:
|
342 |
msgid "Edit users"
|
343 |
msgstr ""
|
344 |
|
345 |
-
#: ../includes/class-ure-lib.php:
|
346 |
msgid "Edit files"
|
347 |
msgstr ""
|
348 |
|
349 |
-
#: ../includes/class-ure-lib.php:
|
350 |
msgid "Manage options"
|
351 |
msgstr ""
|
352 |
|
353 |
-
#: ../includes/class-ure-lib.php:
|
354 |
msgid "Moderate comments"
|
355 |
msgstr ""
|
356 |
|
357 |
-
#: ../includes/class-ure-lib.php:
|
358 |
msgid "Manage categories"
|
359 |
msgstr ""
|
360 |
|
361 |
-
#: ../includes/class-ure-lib.php:
|
362 |
msgid "Manage links"
|
363 |
msgstr ""
|
364 |
|
365 |
-
#: ../includes/class-ure-lib.php:
|
366 |
msgid "Upload files"
|
367 |
msgstr ""
|
368 |
|
369 |
-
#: ../includes/class-ure-lib.php:
|
370 |
msgid "Import"
|
371 |
msgstr ""
|
372 |
|
373 |
-
#: ../includes/class-ure-lib.php:
|
374 |
msgid "Unfiltered html"
|
375 |
msgstr ""
|
376 |
|
377 |
-
#: ../includes/class-ure-lib.php:
|
378 |
msgid "Edit posts"
|
379 |
msgstr ""
|
380 |
|
381 |
-
#: ../includes/class-ure-lib.php:
|
382 |
msgid "Edit others posts"
|
383 |
msgstr ""
|
384 |
|
385 |
-
#: ../includes/class-ure-lib.php:
|
386 |
msgid "Edit published posts"
|
387 |
msgstr ""
|
388 |
|
389 |
-
#: ../includes/class-ure-lib.php:
|
390 |
msgid "Publish posts"
|
391 |
msgstr ""
|
392 |
|
393 |
-
#: ../includes/class-ure-lib.php:
|
394 |
msgid "Edit pages"
|
395 |
msgstr ""
|
396 |
|
397 |
-
#: ../includes/class-ure-lib.php:
|
398 |
msgid "Read"
|
399 |
msgstr ""
|
400 |
|
401 |
-
#: ../includes/class-ure-lib.php:
|
402 |
msgid "Level 10"
|
403 |
msgstr ""
|
404 |
|
405 |
-
#: ../includes/class-ure-lib.php:
|
406 |
msgid "Level 9"
|
407 |
msgstr ""
|
408 |
|
409 |
-
#: ../includes/class-ure-lib.php:
|
410 |
msgid "Level 8"
|
411 |
msgstr ""
|
412 |
|
413 |
-
#: ../includes/class-ure-lib.php:
|
414 |
msgid "Level 7"
|
415 |
msgstr ""
|
416 |
|
417 |
-
#: ../includes/class-ure-lib.php:
|
418 |
msgid "Level 6"
|
419 |
msgstr ""
|
420 |
|
421 |
-
#: ../includes/class-ure-lib.php:
|
422 |
msgid "Level 5"
|
423 |
msgstr ""
|
424 |
|
425 |
-
#: ../includes/class-ure-lib.php:
|
426 |
msgid "Level 4"
|
427 |
msgstr ""
|
428 |
|
429 |
-
#: ../includes/class-ure-lib.php:
|
430 |
msgid "Level 3"
|
431 |
msgstr ""
|
432 |
|
433 |
-
#: ../includes/class-ure-lib.php:
|
434 |
msgid "Level 2"
|
435 |
msgstr ""
|
436 |
|
437 |
-
#: ../includes/class-ure-lib.php:
|
438 |
msgid "Level 1"
|
439 |
msgstr ""
|
440 |
|
441 |
-
#: ../includes/class-ure-lib.php:
|
442 |
msgid "Level 0"
|
443 |
msgstr ""
|
444 |
|
445 |
-
#: ../includes/class-ure-lib.php:
|
446 |
msgid "Edit others pages"
|
447 |
msgstr ""
|
448 |
|
449 |
-
#: ../includes/class-ure-lib.php:
|
450 |
msgid "Edit published pages"
|
451 |
msgstr ""
|
452 |
|
453 |
-
#: ../includes/class-ure-lib.php:
|
454 |
msgid "Publish pages"
|
455 |
msgstr ""
|
456 |
|
457 |
-
#: ../includes/class-ure-lib.php:
|
458 |
msgid "Delete pages"
|
459 |
msgstr ""
|
460 |
|
461 |
-
#: ../includes/class-ure-lib.php:
|
462 |
msgid "Delete others pages"
|
463 |
msgstr ""
|
464 |
|
465 |
-
#: ../includes/class-ure-lib.php:
|
466 |
msgid "Delete published pages"
|
467 |
msgstr ""
|
468 |
|
469 |
-
#: ../includes/class-ure-lib.php:
|
470 |
msgid "Delete posts"
|
471 |
msgstr ""
|
472 |
|
473 |
-
#: ../includes/class-ure-lib.php:
|
474 |
msgid "Delete others posts"
|
475 |
msgstr ""
|
476 |
|
477 |
-
#: ../includes/class-ure-lib.php:
|
478 |
msgid "Delete published posts"
|
479 |
msgstr ""
|
480 |
|
481 |
-
#: ../includes/class-ure-lib.php:
|
482 |
msgid "Delete private posts"
|
483 |
msgstr ""
|
484 |
|
485 |
-
#: ../includes/class-ure-lib.php:
|
486 |
msgid "Edit private posts"
|
487 |
msgstr ""
|
488 |
|
489 |
-
#: ../includes/class-ure-lib.php:
|
490 |
msgid "Read private posts"
|
491 |
msgstr ""
|
492 |
|
493 |
-
#: ../includes/class-ure-lib.php:
|
494 |
msgid "Delete private pages"
|
495 |
msgstr ""
|
496 |
|
497 |
-
#: ../includes/class-ure-lib.php:
|
498 |
msgid "Edit private pages"
|
499 |
msgstr ""
|
500 |
|
501 |
-
#: ../includes/class-ure-lib.php:
|
502 |
msgid "Read private pages"
|
503 |
msgstr ""
|
504 |
|
505 |
-
#: ../includes/class-ure-lib.php:
|
506 |
msgid "Delete users"
|
507 |
msgstr ""
|
508 |
|
509 |
-
#: ../includes/class-ure-lib.php:
|
510 |
msgid "Create users"
|
511 |
msgstr ""
|
512 |
|
513 |
-
#: ../includes/class-ure-lib.php:
|
514 |
msgid "Unfiltered upload"
|
515 |
msgstr ""
|
516 |
|
517 |
-
#: ../includes/class-ure-lib.php:
|
518 |
msgid "Edit dashboard"
|
519 |
msgstr ""
|
520 |
|
521 |
-
#: ../includes/class-ure-lib.php:
|
522 |
msgid "Update plugins"
|
523 |
msgstr ""
|
524 |
|
525 |
-
#: ../includes/class-ure-lib.php:
|
526 |
msgid "Delete plugins"
|
527 |
msgstr ""
|
528 |
|
529 |
-
#: ../includes/class-ure-lib.php:
|
530 |
msgid "Install plugins"
|
531 |
msgstr ""
|
532 |
|
533 |
-
#: ../includes/class-ure-lib.php:
|
534 |
msgid "Update themes"
|
535 |
msgstr ""
|
536 |
|
537 |
-
#: ../includes/class-ure-lib.php:
|
538 |
msgid "Install themes"
|
539 |
msgstr ""
|
540 |
|
541 |
-
#: ../includes/class-ure-lib.php:
|
542 |
msgid "Update core"
|
543 |
msgstr ""
|
544 |
|
545 |
-
#: ../includes/class-ure-lib.php:
|
546 |
msgid "List users"
|
547 |
msgstr ""
|
548 |
|
549 |
-
#: ../includes/class-ure-lib.php:
|
550 |
msgid "Remove users"
|
551 |
msgstr ""
|
552 |
|
553 |
-
#: ../includes/class-ure-lib.php:
|
554 |
msgid "Add users"
|
555 |
msgstr ""
|
556 |
|
557 |
-
#: ../includes/class-ure-lib.php:
|
558 |
msgid "Promote users"
|
559 |
msgstr ""
|
560 |
|
561 |
-
#: ../includes/class-ure-lib.php:
|
562 |
msgid "Edit theme options"
|
563 |
msgstr ""
|
564 |
|
565 |
-
#: ../includes/class-ure-lib.php:
|
566 |
msgid "Delete themes"
|
567 |
msgstr ""
|
568 |
|
569 |
-
#: ../includes/class-ure-lib.php:
|
570 |
msgid "Export"
|
571 |
msgstr ""
|
572 |
|
573 |
-
#: ../includes/class-ure-lib.php:
|
574 |
msgid "Error: Capability name must contain latin characters and digits only!"
|
575 |
msgstr ""
|
576 |
|
577 |
-
#: ../includes/class-ure-lib.php:
|
578 |
#, php-format
|
579 |
msgid "Capability %s is added successfully"
|
580 |
msgstr ""
|
581 |
|
582 |
-
#: ../includes/class-ure-lib.php:
|
583 |
#, php-format
|
584 |
msgid "Capability %s exists already"
|
585 |
msgstr ""
|
586 |
|
587 |
-
#: ../includes/class-ure-lib.php:
|
588 |
#, php-format
|
589 |
msgid "Error! You do not have permission to delete this capability: %s!"
|
590 |
msgstr ""
|
591 |
|
592 |
-
#: ../includes/class-ure-lib.php:
|
593 |
#, php-format
|
594 |
msgid "Capability %s is removed successfully"
|
595 |
msgstr ""
|
596 |
|
597 |
-
#: ../includes/class-ure-lib.php:
|
|
|
|
|
|
|
|
|
598 |
msgid "Author's website"
|
599 |
msgstr ""
|
600 |
|
601 |
-
#: ../includes/class-ure-lib.php:
|
602 |
msgid "Plugin webpage"
|
603 |
msgstr ""
|
604 |
|
605 |
-
#: ../includes/class-ure-lib.php:
|
606 |
msgid "Plugin download"
|
607 |
msgstr ""
|
608 |
|
609 |
-
#: ../includes/class-ure-lib.php:
|
610 |
msgid "FAQ"
|
611 |
msgstr ""
|
612 |
|
613 |
-
#: ../includes/class-ure-lib.php:
|
614 |
msgid "None"
|
615 |
msgstr ""
|
616 |
|
617 |
-
#: ../includes/class-ure-lib.php:
|
618 |
msgid "Delete All Unused Roles"
|
619 |
msgstr ""
|
620 |
|
621 |
-
#: ../includes/class-ure-lib.php:
|
622 |
msgid "— No role for this site —"
|
623 |
msgstr ""
|
624 |
|
@@ -630,8 +738,16 @@ msgstr ""
|
|
630 |
msgid "Change capabilities for user"
|
631 |
msgstr ""
|
632 |
|
633 |
-
#: ../includes/
|
634 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
635 |
msgstr ""
|
636 |
|
637 |
#: ../includes/class-ure-screen-help.php:16
|
@@ -641,10 +757,6 @@ msgid ""
|
|
641 |
"for security reasons."
|
642 |
msgstr ""
|
643 |
|
644 |
-
#: ../includes/class-ure-screen-help.php:18
|
645 |
-
msgid "Show capabilities in the human readable form"
|
646 |
-
msgstr ""
|
647 |
-
|
648 |
#: ../includes/class-ure-screen-help.php:19
|
649 |
msgid ""
|
650 |
"automatically converts capability names from the technical form for internal "
|
@@ -652,10 +764,6 @@ msgid ""
|
|
652 |
"others posts\"."
|
653 |
msgstr ""
|
654 |
|
655 |
-
#: ../includes/class-ure-screen-help.php:21
|
656 |
-
msgid "Show deprecated capabilities"
|
657 |
-
msgstr ""
|
658 |
-
|
659 |
#: ../includes/class-ure-screen-help.php:22
|
660 |
msgid ""
|
661 |
"Capabilities like \"level_0\", \"level_1\" are deprecated and are not used "
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: User Role Editor 2.0\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2014-06-11 11:20+0700\n"
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: Vladimir Garagulya <vladimir@shinephp.com>\n"
|
8 |
"Language-Team: ShinePHP.com <vladimir@shinephp.com>\n"
|
11 |
"Content-Type: text/plain; charset=UTF-8\n"
|
12 |
"Content-Transfer-Encoding: 8bit\n"
|
13 |
"X-Poedit-SourceCharset: UTF-8\n"
|
14 |
+
"X-Poedit-KeywordsList: __;_e;esc_html__;esc_html_e\n"
|
15 |
"X-Poedit-Basepath: .\n"
|
16 |
"X-Generator: Poedit 1.5.4\n"
|
17 |
"X-Poedit-SearchPath-0: ..\n"
|
18 |
|
19 |
+
#: ../includes/settings-template.php:17
|
20 |
+
msgid "User Role Editor - Options"
|
21 |
+
msgstr ""
|
22 |
+
|
23 |
+
#: ../includes/settings-template.php:21
|
24 |
+
msgid "General"
|
25 |
+
msgstr ""
|
26 |
+
|
27 |
+
#: ../includes/settings-template.php:22
|
28 |
+
msgid "Additional Modules"
|
29 |
+
msgstr ""
|
30 |
+
|
31 |
+
#: ../includes/settings-template.php:23
|
32 |
+
msgid "Default Roles"
|
33 |
+
msgstr ""
|
34 |
+
|
35 |
+
#: ../includes/settings-template.php:27
|
36 |
+
msgid "Multisite"
|
37 |
+
msgstr ""
|
38 |
+
|
39 |
+
#: ../includes/settings-template.php:31
|
40 |
+
msgid "About"
|
41 |
+
msgstr ""
|
42 |
+
|
43 |
+
#: ../includes/settings-template.php:42
|
44 |
+
#: ../includes/class-ure-screen-help.php:15
|
45 |
+
msgid "Show Administrator role at User Role Editor"
|
46 |
+
msgstr ""
|
47 |
+
|
48 |
+
#: ../includes/settings-template.php:50
|
49 |
+
#: ../includes/class-ure-screen-help.php:18
|
50 |
+
msgid "Show capabilities in the human readable form"
|
51 |
+
msgstr ""
|
52 |
+
|
53 |
+
#: ../includes/settings-template.php:58 ../includes/ure-role-edit.php:40
|
54 |
+
#: ../includes/ure-user-edit.php:63 ../includes/class-ure-screen-help.php:21
|
55 |
+
msgid "Show deprecated capabilities"
|
56 |
+
msgstr ""
|
57 |
+
|
58 |
+
#: ../includes/settings-template.php:69 ../includes/settings-template.php:101
|
59 |
+
#: ../includes/settings-template.php:131 ../includes/settings-template.php:160
|
60 |
msgid "Save"
|
61 |
msgstr ""
|
62 |
|
63 |
+
#: ../includes/settings-template.php:86
|
64 |
+
msgid "Count users without role"
|
65 |
+
msgstr ""
|
66 |
+
|
67 |
+
#: ../includes/settings-template.php:111
|
68 |
+
msgid "Primary default role: "
|
69 |
+
msgstr ""
|
70 |
+
|
71 |
+
#: ../includes/settings-template.php:118
|
72 |
+
msgid "Other default roles for new registered user: "
|
73 |
+
msgstr ""
|
74 |
+
|
75 |
+
#: ../includes/settings-template.php:124
|
76 |
msgid ""
|
77 |
"Note for multisite environment: take into account that other default roles "
|
78 |
"should exist at the site, in order to be assigned to the new registered "
|
79 |
"users."
|
80 |
msgstr ""
|
81 |
|
82 |
+
#: ../includes/settings-template.php:147
|
83 |
+
msgid "Allow non super administrators to create, edit, and delete users"
|
84 |
+
msgstr ""
|
85 |
+
|
86 |
#: ../includes/class-user-role-editor.php:185
|
87 |
msgid "Change role for users without role"
|
88 |
msgstr ""
|
109 |
msgstr ""
|
110 |
|
111 |
#: ../includes/class-user-role-editor.php:520
|
112 |
+
#: ../includes/class-ure-lib.php:2207
|
113 |
msgid "Changelog"
|
114 |
msgstr ""
|
115 |
|
119 |
|
120 |
#: ../includes/class-user-role-editor.php:551
|
121 |
#: ../includes/class-user-role-editor.php:579
|
122 |
+
#: ../includes/class-user-role-editor.php:890
|
123 |
#: ../includes/class-ure-lib.php:225
|
124 |
msgid "User Role Editor"
|
125 |
msgstr ""
|
126 |
|
127 |
+
#: ../includes/class-user-role-editor.php:636
|
128 |
+
#: ../includes/class-user-role-editor.php:654
|
129 |
+
#: ../includes/class-user-role-editor.php:698
|
130 |
msgid "User Role Editor options are updated"
|
131 |
msgstr ""
|
132 |
|
133 |
+
#: ../includes/class-user-role-editor.php:682
|
134 |
msgid "Default Roles are updated"
|
135 |
msgstr ""
|
136 |
|
137 |
+
#: ../includes/class-user-role-editor.php:706
|
138 |
msgid ""
|
139 |
"You do not have sufficient permissions to manage options for User Role "
|
140 |
"Editor."
|
141 |
msgstr ""
|
142 |
|
143 |
+
#: ../includes/class-user-role-editor.php:781
|
144 |
msgid "Insufficient permissions to work with User Role Editor"
|
145 |
msgstr ""
|
146 |
|
147 |
+
#: ../includes/class-user-role-editor.php:835
|
148 |
msgid "Select All"
|
149 |
msgstr ""
|
150 |
|
151 |
+
#: ../includes/class-user-role-editor.php:836
|
152 |
msgid "Unselect All"
|
153 |
msgstr ""
|
154 |
|
155 |
+
#: ../includes/class-user-role-editor.php:837
|
156 |
msgid "Reverse"
|
157 |
msgstr ""
|
158 |
|
159 |
+
#: ../includes/class-user-role-editor.php:838
|
160 |
msgid "Update"
|
161 |
msgstr ""
|
162 |
|
163 |
+
#: ../includes/class-user-role-editor.php:839
|
164 |
msgid "Please confirm permissions update"
|
165 |
msgstr ""
|
166 |
|
167 |
+
#: ../includes/class-user-role-editor.php:840
|
168 |
msgid "Add New Role"
|
169 |
msgstr ""
|
170 |
|
171 |
+
#: ../includes/class-user-role-editor.php:841
|
172 |
msgid " Role name (ID) can not be empty!"
|
173 |
msgstr ""
|
174 |
|
175 |
+
#: ../includes/class-user-role-editor.php:842
|
176 |
msgid ""
|
177 |
" Role name (ID) must contain latin characters, digits, hyphens or underscore "
|
178 |
"only!"
|
179 |
msgstr ""
|
180 |
|
181 |
+
#: ../includes/class-user-role-editor.php:843
|
182 |
msgid ""
|
183 |
" WordPress does not support numeric Role name (ID). Add latin characters to "
|
184 |
"it."
|
185 |
msgstr ""
|
186 |
|
187 |
+
#: ../includes/class-user-role-editor.php:844
|
188 |
msgid "Add Role"
|
189 |
msgstr ""
|
190 |
|
191 |
+
#: ../includes/class-user-role-editor.php:845
|
192 |
msgid "Delete Role"
|
193 |
msgstr ""
|
194 |
|
195 |
+
#: ../includes/class-user-role-editor.php:846
|
196 |
msgid "Cancel"
|
197 |
msgstr ""
|
198 |
|
199 |
+
#: ../includes/class-user-role-editor.php:847
|
200 |
msgid "Add Capability"
|
201 |
msgstr ""
|
202 |
|
203 |
+
#: ../includes/class-user-role-editor.php:848
|
204 |
+
#: ../includes/class-user-role-editor.php:857
|
205 |
msgid "Delete Capability"
|
206 |
msgstr ""
|
207 |
|
208 |
+
#: ../includes/class-user-role-editor.php:849
|
209 |
msgid "Reset"
|
210 |
msgstr ""
|
211 |
|
212 |
+
#: ../includes/class-user-role-editor.php:850
|
213 |
msgid "DANGER! Resetting will restore default settings from WordPress Core."
|
214 |
msgstr ""
|
215 |
|
216 |
+
#: ../includes/class-user-role-editor.php:851
|
217 |
msgid ""
|
218 |
"If any plugins have changed capabilities in any way upon installation (such "
|
219 |
"as S2Member, WooCommerce, and many more), those capabilities will be DELETED!"
|
220 |
msgstr ""
|
221 |
|
222 |
+
#: ../includes/class-user-role-editor.php:852
|
223 |
msgid ""
|
224 |
"For more information on how to undo changes and restore plugin capabilities "
|
225 |
"go to"
|
226 |
msgstr ""
|
227 |
|
228 |
+
#: ../includes/class-user-role-editor.php:854
|
229 |
msgid "Continue?"
|
230 |
msgstr ""
|
231 |
|
232 |
+
#: ../includes/class-user-role-editor.php:855
|
233 |
msgid "Default Role"
|
234 |
msgstr ""
|
235 |
|
236 |
+
#: ../includes/class-user-role-editor.php:856
|
237 |
msgid "Set New Default Role"
|
238 |
msgstr ""
|
239 |
|
240 |
+
#: ../includes/class-user-role-editor.php:858
|
241 |
msgid ""
|
242 |
"Warning! Be careful - removing critical capability could crash some plugin "
|
243 |
"or other custom code"
|
244 |
msgstr ""
|
245 |
|
246 |
+
#: ../includes/class-user-role-editor.php:859
|
247 |
msgid " Capability name (ID) can not be empty!"
|
248 |
msgstr ""
|
249 |
|
250 |
+
#: ../includes/class-user-role-editor.php:860
|
251 |
msgid ""
|
252 |
" Capability name (ID) must contain latin characters, digits, hyphens or "
|
253 |
"underscore only!"
|
254 |
msgstr ""
|
255 |
|
256 |
+
#: ../includes/class-user-role-editor.php:893
|
257 |
+
#: ../includes/class-user-role-editor.php:922
|
258 |
msgid "Other Roles"
|
259 |
msgstr ""
|
260 |
|
261 |
+
#: ../includes/class-user-role-editor.php:904
|
262 |
msgid "Edit"
|
263 |
msgstr ""
|
264 |
|
265 |
+
#: ../includes/ure-role-edit.php:17
|
266 |
+
msgid "Select Role and change its capabilities:"
|
267 |
+
msgstr ""
|
268 |
+
|
269 |
+
#: ../includes/ure-role-edit.php:30 ../includes/ure-user-edit.php:53
|
270 |
+
msgid "Show capabilities in human readable form"
|
271 |
+
msgstr ""
|
272 |
+
|
273 |
#: ../includes/ure-role-edit.php:44
|
274 |
msgid "If checked, then apply action to ALL sites of this Network"
|
275 |
msgstr ""
|
276 |
|
277 |
+
#: ../includes/ure-role-edit.php:56
|
278 |
+
msgid "Apply to All Sites"
|
279 |
+
msgstr ""
|
280 |
+
|
281 |
+
#: ../includes/ure-role-edit.php:63 ../includes/ure-user-edit.php:109
|
282 |
+
msgid "Core capabilities:"
|
283 |
+
msgstr ""
|
284 |
+
|
285 |
+
#: ../includes/ure-role-edit.php:65 ../includes/ure-user-edit.php:111
|
286 |
+
msgid "Quick filter:"
|
287 |
+
msgstr ""
|
288 |
+
|
289 |
+
#: ../includes/ure-role-edit.php:83 ../includes/ure-user-edit.php:130
|
290 |
+
msgid "Custom capabilities:"
|
291 |
+
msgstr ""
|
292 |
+
|
293 |
#: ../includes/class-ure-lib.php:143
|
294 |
msgid "Error: wrong request"
|
295 |
msgstr ""
|
296 |
|
297 |
+
#: ../includes/class-ure-lib.php:175
|
298 |
+
msgid "Role name (ID): "
|
299 |
+
msgstr ""
|
300 |
+
|
301 |
+
#: ../includes/class-ure-lib.php:177
|
302 |
+
msgid "Display Role Name: "
|
303 |
+
msgstr ""
|
304 |
+
|
305 |
+
#: ../includes/class-ure-lib.php:179
|
306 |
+
msgid "Make copy of: "
|
307 |
+
msgstr ""
|
308 |
+
|
309 |
+
#: ../includes/class-ure-lib.php:186
|
310 |
+
msgid "Select Role:"
|
311 |
+
msgstr ""
|
312 |
+
|
313 |
+
#: ../includes/class-ure-lib.php:201
|
314 |
+
msgid "Delete:"
|
315 |
+
msgstr ""
|
316 |
+
|
317 |
+
#: ../includes/class-ure-lib.php:208
|
318 |
+
msgid "Capability name (ID): "
|
319 |
+
msgstr ""
|
320 |
+
|
321 |
#: ../includes/class-ure-lib.php:322
|
322 |
msgid "Error: "
|
323 |
msgstr ""
|
354 |
msgid "User Roles are restored to WordPress default values. "
|
355 |
msgstr ""
|
356 |
|
357 |
+
#: ../includes/class-ure-lib.php:1312
|
358 |
msgid "Help"
|
359 |
msgstr ""
|
360 |
|
361 |
+
#: ../includes/class-ure-lib.php:1662
|
362 |
msgid "Error is occur. Please check the log file."
|
363 |
msgstr ""
|
364 |
|
365 |
+
#: ../includes/class-ure-lib.php:1705
|
366 |
msgid ""
|
367 |
"Error: Role ID must contain latin characters, digits, hyphens or underscore "
|
368 |
"only!"
|
369 |
msgstr ""
|
370 |
|
371 |
+
#: ../includes/class-ure-lib.php:1709
|
372 |
msgid ""
|
373 |
"Error: WordPress does not support numeric Role name (ID). Add latin "
|
374 |
"characters to it."
|
375 |
msgstr ""
|
376 |
|
377 |
+
#: ../includes/class-ure-lib.php:1724
|
378 |
#, php-format
|
379 |
msgid "Role %s exists already"
|
380 |
msgstr ""
|
381 |
|
382 |
+
#: ../includes/class-ure-lib.php:1739
|
383 |
msgid "Error is encountered during new role create operation"
|
384 |
msgstr ""
|
385 |
|
386 |
+
#: ../includes/class-ure-lib.php:1741
|
387 |
#, php-format
|
388 |
msgid "Role %s is created successfully"
|
389 |
msgstr ""
|
390 |
|
391 |
+
#: ../includes/class-ure-lib.php:1810
|
392 |
msgid "Error encountered during role delete operation"
|
393 |
msgstr ""
|
394 |
|
395 |
+
#: ../includes/class-ure-lib.php:1812
|
396 |
msgid "Unused roles are deleted successfully"
|
397 |
msgstr ""
|
398 |
|
399 |
+
#: ../includes/class-ure-lib.php:1814
|
400 |
#, php-format
|
401 |
msgid "Role %s is deleted successfully"
|
402 |
msgstr ""
|
403 |
|
404 |
+
#: ../includes/class-ure-lib.php:1839
|
405 |
msgid "Error encountered during default role change operation"
|
406 |
msgstr ""
|
407 |
|
408 |
+
#: ../includes/class-ure-lib.php:1845
|
409 |
#, php-format
|
410 |
msgid "Default role for new users is set to %s successfully"
|
411 |
msgstr ""
|
412 |
|
413 |
+
#: ../includes/class-ure-lib.php:1864
|
414 |
msgid "Editor"
|
415 |
msgstr ""
|
416 |
|
417 |
+
#: ../includes/class-ure-lib.php:1865
|
418 |
msgid "Author"
|
419 |
msgstr ""
|
420 |
|
421 |
+
#: ../includes/class-ure-lib.php:1866
|
422 |
msgid "Contributor"
|
423 |
msgstr ""
|
424 |
|
425 |
+
#: ../includes/class-ure-lib.php:1867
|
426 |
msgid "Subscriber"
|
427 |
msgstr ""
|
428 |
|
429 |
+
#: ../includes/class-ure-lib.php:1869
|
430 |
msgid "Switch themes"
|
431 |
msgstr ""
|
432 |
|
433 |
+
#: ../includes/class-ure-lib.php:1870
|
434 |
msgid "Edit themes"
|
435 |
msgstr ""
|
436 |
|
437 |
+
#: ../includes/class-ure-lib.php:1871
|
438 |
msgid "Activate plugins"
|
439 |
msgstr ""
|
440 |
|
441 |
+
#: ../includes/class-ure-lib.php:1872
|
442 |
msgid "Edit plugins"
|
443 |
msgstr ""
|
444 |
|
445 |
+
#: ../includes/class-ure-lib.php:1873
|
446 |
msgid "Edit users"
|
447 |
msgstr ""
|
448 |
|
449 |
+
#: ../includes/class-ure-lib.php:1874
|
450 |
msgid "Edit files"
|
451 |
msgstr ""
|
452 |
|
453 |
+
#: ../includes/class-ure-lib.php:1875
|
454 |
msgid "Manage options"
|
455 |
msgstr ""
|
456 |
|
457 |
+
#: ../includes/class-ure-lib.php:1876
|
458 |
msgid "Moderate comments"
|
459 |
msgstr ""
|
460 |
|
461 |
+
#: ../includes/class-ure-lib.php:1877
|
462 |
msgid "Manage categories"
|
463 |
msgstr ""
|
464 |
|
465 |
+
#: ../includes/class-ure-lib.php:1878
|
466 |
msgid "Manage links"
|
467 |
msgstr ""
|
468 |
|
469 |
+
#: ../includes/class-ure-lib.php:1879
|
470 |
msgid "Upload files"
|
471 |
msgstr ""
|
472 |
|
473 |
+
#: ../includes/class-ure-lib.php:1880
|
474 |
msgid "Import"
|
475 |
msgstr ""
|
476 |
|
477 |
+
#: ../includes/class-ure-lib.php:1881
|
478 |
msgid "Unfiltered html"
|
479 |
msgstr ""
|
480 |
|
481 |
+
#: ../includes/class-ure-lib.php:1882
|
482 |
msgid "Edit posts"
|
483 |
msgstr ""
|
484 |
|
485 |
+
#: ../includes/class-ure-lib.php:1883
|
486 |
msgid "Edit others posts"
|
487 |
msgstr ""
|
488 |
|
489 |
+
#: ../includes/class-ure-lib.php:1884
|
490 |
msgid "Edit published posts"
|
491 |
msgstr ""
|
492 |
|
493 |
+
#: ../includes/class-ure-lib.php:1885
|
494 |
msgid "Publish posts"
|
495 |
msgstr ""
|
496 |
|
497 |
+
#: ../includes/class-ure-lib.php:1886
|
498 |
msgid "Edit pages"
|
499 |
msgstr ""
|
500 |
|
501 |
+
#: ../includes/class-ure-lib.php:1887
|
502 |
msgid "Read"
|
503 |
msgstr ""
|
504 |
|
505 |
+
#: ../includes/class-ure-lib.php:1888
|
506 |
msgid "Level 10"
|
507 |
msgstr ""
|
508 |
|
509 |
+
#: ../includes/class-ure-lib.php:1889
|
510 |
msgid "Level 9"
|
511 |
msgstr ""
|
512 |
|
513 |
+
#: ../includes/class-ure-lib.php:1890
|
514 |
msgid "Level 8"
|
515 |
msgstr ""
|
516 |
|
517 |
+
#: ../includes/class-ure-lib.php:1891
|
518 |
msgid "Level 7"
|
519 |
msgstr ""
|
520 |
|
521 |
+
#: ../includes/class-ure-lib.php:1892
|
522 |
msgid "Level 6"
|
523 |
msgstr ""
|
524 |
|
525 |
+
#: ../includes/class-ure-lib.php:1893
|
526 |
msgid "Level 5"
|
527 |
msgstr ""
|
528 |
|
529 |
+
#: ../includes/class-ure-lib.php:1894
|
530 |
msgid "Level 4"
|
531 |
msgstr ""
|
532 |
|
533 |
+
#: ../includes/class-ure-lib.php:1895
|
534 |
msgid "Level 3"
|
535 |
msgstr ""
|
536 |
|
537 |
+
#: ../includes/class-ure-lib.php:1896
|
538 |
msgid "Level 2"
|
539 |
msgstr ""
|
540 |
|
541 |
+
#: ../includes/class-ure-lib.php:1897
|
542 |
msgid "Level 1"
|
543 |
msgstr ""
|
544 |
|
545 |
+
#: ../includes/class-ure-lib.php:1898
|
546 |
msgid "Level 0"
|
547 |
msgstr ""
|
548 |
|
549 |
+
#: ../includes/class-ure-lib.php:1899
|
550 |
msgid "Edit others pages"
|
551 |
msgstr ""
|
552 |
|
553 |
+
#: ../includes/class-ure-lib.php:1900
|
554 |
msgid "Edit published pages"
|
555 |
msgstr ""
|
556 |
|
557 |
+
#: ../includes/class-ure-lib.php:1901
|
558 |
msgid "Publish pages"
|
559 |
msgstr ""
|
560 |
|
561 |
+
#: ../includes/class-ure-lib.php:1902
|
562 |
msgid "Delete pages"
|
563 |
msgstr ""
|
564 |
|
565 |
+
#: ../includes/class-ure-lib.php:1903
|
566 |
msgid "Delete others pages"
|
567 |
msgstr ""
|
568 |
|
569 |
+
#: ../includes/class-ure-lib.php:1904
|
570 |
msgid "Delete published pages"
|
571 |
msgstr ""
|
572 |
|
573 |
+
#: ../includes/class-ure-lib.php:1905
|
574 |
msgid "Delete posts"
|
575 |
msgstr ""
|
576 |
|
577 |
+
#: ../includes/class-ure-lib.php:1906
|
578 |
msgid "Delete others posts"
|
579 |
msgstr ""
|
580 |
|
581 |
+
#: ../includes/class-ure-lib.php:1907
|
582 |
msgid "Delete published posts"
|
583 |
msgstr ""
|
584 |
|
585 |
+
#: ../includes/class-ure-lib.php:1908
|
586 |
msgid "Delete private posts"
|
587 |
msgstr ""
|
588 |
|
589 |
+
#: ../includes/class-ure-lib.php:1909
|
590 |
msgid "Edit private posts"
|
591 |
msgstr ""
|
592 |
|
593 |
+
#: ../includes/class-ure-lib.php:1910
|
594 |
msgid "Read private posts"
|
595 |
msgstr ""
|
596 |
|
597 |
+
#: ../includes/class-ure-lib.php:1911
|
598 |
msgid "Delete private pages"
|
599 |
msgstr ""
|
600 |
|
601 |
+
#: ../includes/class-ure-lib.php:1912
|
602 |
msgid "Edit private pages"
|
603 |
msgstr ""
|
604 |
|
605 |
+
#: ../includes/class-ure-lib.php:1913
|
606 |
msgid "Read private pages"
|
607 |
msgstr ""
|
608 |
|
609 |
+
#: ../includes/class-ure-lib.php:1914
|
610 |
msgid "Delete users"
|
611 |
msgstr ""
|
612 |
|
613 |
+
#: ../includes/class-ure-lib.php:1915
|
614 |
msgid "Create users"
|
615 |
msgstr ""
|
616 |
|
617 |
+
#: ../includes/class-ure-lib.php:1916
|
618 |
msgid "Unfiltered upload"
|
619 |
msgstr ""
|
620 |
|
621 |
+
#: ../includes/class-ure-lib.php:1917
|
622 |
msgid "Edit dashboard"
|
623 |
msgstr ""
|
624 |
|
625 |
+
#: ../includes/class-ure-lib.php:1918
|
626 |
msgid "Update plugins"
|
627 |
msgstr ""
|
628 |
|
629 |
+
#: ../includes/class-ure-lib.php:1919
|
630 |
msgid "Delete plugins"
|
631 |
msgstr ""
|
632 |
|
633 |
+
#: ../includes/class-ure-lib.php:1920
|
634 |
msgid "Install plugins"
|
635 |
msgstr ""
|
636 |
|
637 |
+
#: ../includes/class-ure-lib.php:1921
|
638 |
msgid "Update themes"
|
639 |
msgstr ""
|
640 |
|
641 |
+
#: ../includes/class-ure-lib.php:1922
|
642 |
msgid "Install themes"
|
643 |
msgstr ""
|
644 |
|
645 |
+
#: ../includes/class-ure-lib.php:1923
|
646 |
msgid "Update core"
|
647 |
msgstr ""
|
648 |
|
649 |
+
#: ../includes/class-ure-lib.php:1924
|
650 |
msgid "List users"
|
651 |
msgstr ""
|
652 |
|
653 |
+
#: ../includes/class-ure-lib.php:1925
|
654 |
msgid "Remove users"
|
655 |
msgstr ""
|
656 |
|
657 |
+
#: ../includes/class-ure-lib.php:1926
|
658 |
msgid "Add users"
|
659 |
msgstr ""
|
660 |
|
661 |
+
#: ../includes/class-ure-lib.php:1927
|
662 |
msgid "Promote users"
|
663 |
msgstr ""
|
664 |
|
665 |
+
#: ../includes/class-ure-lib.php:1928
|
666 |
msgid "Edit theme options"
|
667 |
msgstr ""
|
668 |
|
669 |
+
#: ../includes/class-ure-lib.php:1929
|
670 |
msgid "Delete themes"
|
671 |
msgstr ""
|
672 |
|
673 |
+
#: ../includes/class-ure-lib.php:1930
|
674 |
msgid "Export"
|
675 |
msgstr ""
|
676 |
|
677 |
+
#: ../includes/class-ure-lib.php:2040
|
678 |
msgid "Error: Capability name must contain latin characters and digits only!"
|
679 |
msgstr ""
|
680 |
|
681 |
+
#: ../includes/class-ure-lib.php:2053
|
682 |
#, php-format
|
683 |
msgid "Capability %s is added successfully"
|
684 |
msgstr ""
|
685 |
|
686 |
+
#: ../includes/class-ure-lib.php:2055
|
687 |
#, php-format
|
688 |
msgid "Capability %s exists already"
|
689 |
msgstr ""
|
690 |
|
691 |
+
#: ../includes/class-ure-lib.php:2080
|
692 |
#, php-format
|
693 |
msgid "Error! You do not have permission to delete this capability: %s!"
|
694 |
msgstr ""
|
695 |
|
696 |
+
#: ../includes/class-ure-lib.php:2099
|
697 |
#, php-format
|
698 |
msgid "Capability %s is removed successfully"
|
699 |
msgstr ""
|
700 |
|
701 |
+
#: ../includes/class-ure-lib.php:2203
|
702 |
+
msgid "Version:"
|
703 |
+
msgstr ""
|
704 |
+
|
705 |
+
#: ../includes/class-ure-lib.php:2204
|
706 |
msgid "Author's website"
|
707 |
msgstr ""
|
708 |
|
709 |
+
#: ../includes/class-ure-lib.php:2205
|
710 |
msgid "Plugin webpage"
|
711 |
msgstr ""
|
712 |
|
713 |
+
#: ../includes/class-ure-lib.php:2206
|
714 |
msgid "Plugin download"
|
715 |
msgstr ""
|
716 |
|
717 |
+
#: ../includes/class-ure-lib.php:2208
|
718 |
msgid "FAQ"
|
719 |
msgstr ""
|
720 |
|
721 |
+
#: ../includes/class-ure-lib.php:2256
|
722 |
msgid "None"
|
723 |
msgstr ""
|
724 |
|
725 |
+
#: ../includes/class-ure-lib.php:2283
|
726 |
msgid "Delete All Unused Roles"
|
727 |
msgstr ""
|
728 |
|
729 |
+
#: ../includes/class-ure-lib.php:2307
|
730 |
msgid "— No role for this site —"
|
731 |
msgstr ""
|
732 |
|
738 |
msgid "Change capabilities for user"
|
739 |
msgstr ""
|
740 |
|
741 |
+
#: ../includes/ure-user-edit.php:71
|
742 |
+
msgid "Primary Role:"
|
743 |
+
msgstr ""
|
744 |
+
|
745 |
+
#: ../includes/ure-user-edit.php:81
|
746 |
+
msgid "bbPress Role:"
|
747 |
+
msgstr ""
|
748 |
+
|
749 |
+
#: ../includes/ure-user-edit.php:91
|
750 |
+
msgid "Other Roles:"
|
751 |
msgstr ""
|
752 |
|
753 |
#: ../includes/class-ure-screen-help.php:16
|
757 |
"for security reasons."
|
758 |
msgstr ""
|
759 |
|
|
|
|
|
|
|
|
|
760 |
#: ../includes/class-ure-screen-help.php:19
|
761 |
msgid ""
|
762 |
"automatically converts capability names from the technical form for internal "
|
764 |
"others posts\"."
|
765 |
msgstr ""
|
766 |
|
|
|
|
|
|
|
|
|
767 |
#: ../includes/class-ure-screen-help.php:22
|
768 |
msgid ""
|
769 |
"Capabilities like \"level_0\", \"level_1\" are deprecated and are not used "
|
readme.txt
CHANGED
@@ -70,11 +70,11 @@ To read more about 'User Role Editor' visit [this page](http://www.shinephp.com/
|
|
70 |
* Hebrew: [atar4u](http://atar4u.com)
|
71 |
* Korean: [Taek Yoon](http://www.ajinsys.com)
|
72 |
* Persian: Morteza
|
|
|
73 |
* Spanish: [Dario Ferrer](http://darioferrer.com/);
|
74 |
* Turkish: [Muhammed YILDIRIM](http://ben.muhammed.im);
|
75 |
|
76 |
-
|
77 |
-
Information for translators: All translations are outdated a little and need update.
|
78 |
|
79 |
Dear plugin User!
|
80 |
If you wish to help me with this plugin translation I very appreciate it. Please send your language .po and .mo files to vladimir[at-sign]shinephp.com email. Do not forget include you site link in order I can show it with greetings for the translation help at shinephp.com, plugin settings page and in this readme.txt file.
|
@@ -83,6 +83,13 @@ Share with me new ideas about plugin further development and link to your site w
|
|
83 |
|
84 |
|
85 |
== Changelog ==
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
86 |
= 4.14 =
|
87 |
* 16.05.2014
|
88 |
* Persian translation was added. Thanks to Morteza.
|
70 |
* Hebrew: [atar4u](http://atar4u.com)
|
71 |
* Korean: [Taek Yoon](http://www.ajinsys.com)
|
72 |
* Persian: Morteza
|
73 |
+
* Russian: [Vladimir Garagulya](http://role-editor.com)
|
74 |
* Spanish: [Dario Ferrer](http://darioferrer.com/);
|
75 |
* Turkish: [Muhammed YILDIRIM](http://ben.muhammed.im);
|
76 |
|
77 |
+
Information for translators: All translations (except Russian) are outdated and need update for new added text.
|
|
|
78 |
|
79 |
Dear plugin User!
|
80 |
If you wish to help me with this plugin translation I very appreciate it. Please send your language .po and .mo files to vladimir[at-sign]shinephp.com email. Do not forget include you site link in order I can show it with greetings for the translation help at shinephp.com, plugin settings page and in this readme.txt file.
|
83 |
|
84 |
|
85 |
== Changelog ==
|
86 |
+
= 4.14.1 =
|
87 |
+
* 11.06.2014
|
88 |
+
* MySQL query optimizing to reduce memory consumption. Thanks to [SebastiaanO](http://wordpress.org/support/topic/allowed-memory-size-exhausted-fixed).
|
89 |
+
* Extra WordPress nonce field was removed from the post at main role editor page to exclude nonce duplication.
|
90 |
+
* Minor code enhancements.
|
91 |
+
* Fixes for some missed translations.
|
92 |
+
|
93 |
= 4.14 =
|
94 |
* 16.05.2014
|
95 |
* Persian translation was added. Thanks to Morteza.
|
user-role-editor.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: User Role Editor
|
4 |
Plugin URI: http://role-editor.com
|
5 |
Description: Change/add/delete WordPress user roles and capabilities.
|
6 |
-
Version: 4.
|
7 |
Author: Vladimir Garagulya
|
8 |
Author URI: http://www.shinephp.com
|
9 |
Text Domain: ure
|
@@ -23,7 +23,7 @@ if (defined('URE_PLUGIN_URL')) {
|
|
23 |
wp_die('It seems that other version of User Role Editor is active. Please deactivate it before use this version');
|
24 |
}
|
25 |
|
26 |
-
define('URE_VERSION', '4.
|
27 |
define('URE_PLUGIN_URL', plugin_dir_url(__FILE__));
|
28 |
define('URE_PLUGIN_DIR', plugin_dir_path(__FILE__));
|
29 |
define('URE_PLUGIN_FILE', basename(__FILE__));
|
3 |
Plugin Name: User Role Editor
|
4 |
Plugin URI: http://role-editor.com
|
5 |
Description: Change/add/delete WordPress user roles and capabilities.
|
6 |
+
Version: 4.14.1
|
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.14.1');
|
27 |
define('URE_PLUGIN_URL', plugin_dir_url(__FILE__));
|
28 |
define('URE_PLUGIN_DIR', plugin_dir_path(__FILE__));
|
29 |
define('URE_PLUGIN_FILE', basename(__FILE__));
|