Version Description
- 12.08.2013
- Pro version only: "User Role Editor" is available under the "Users" submenu of "Network Admin" for multisite installation. It provides the central point for users roles management of the whole network. Your changes are applied to the main site by default. The click on "Network Update" button replicates roles from the main site to the whole network at once.
- Multisite update: roles from the main (1st) blog are copied to the new added blog automatically, even new site is added from front-end after new user registration, e.g. Gravity Forms "Register User" addon does. Earlier this feature worked for administrator back-end operations only.
- Bug prevented to apply role changes to all sites of the network is fixed. In case when one of the sites have exactly the same roles as applied from the main site, MySQL returned 0 rows affected. URE recognized that as error and stopped further network updated. It is fixed now.
- Bug prevented to save empty (without capabilities) role is fixed.
- User interface bug with options 'Show capabilities in human readable form' and 'Show deprecated capabilities' fixed. Now this checkboxes work this way: It takes global values from the User Role Editor Settings 1st. If you change it at Roles/User editor form plugin, it remembers your change temporally for 10 minutes. After that this value will be returned to the URE global settings. If you wish to make permanent change make it at URE settings page.
Download this release
Release Info
Developer | shinephp |
Plugin | User Role Editor |
Version | 4.3 |
Comparing to | |
See all releases |
Code changes from version 4.2 to 4.3
- css/ure-admin.css +1 -1
- includes/class-ure-lib.php +219 -136
- includes/class-user-role-editor.php +20 -15
- includes/define-constants.php +1 -1
- includes/ure-role-edit.php +2 -2
- includes/ure-user-edit.php +7 -3
- js/ure-js.js +1 -0
- lang/ure-ar.mo +0 -0
- lang/ure-ar.po +0 -768
- lang/ure-be_BY.mo +0 -0
- lang/ure-be_BY.po +0 -1236
- lang/ure-de_DE.mo +0 -0
- lang/ure-de_DE.po +0 -842
- lang/ure-es_ES.mo +0 -0
- lang/ure-es_ES.po +0 -857
- lang/ure-fa_IR.mo +0 -0
- lang/ure-fa_IR.po +0 -795
- lang/ure-fi.mo +0 -0
- lang/ure-fi.po +0 -767
- lang/ure-fr_FR.mo +0 -0
- lang/ure-fr_FR.po +0 -782
- lang/ure-he.mo +0 -0
- lang/ure-he.po +0 -754
- lang/ure-he_IL.mo +0 -0
- lang/ure-he_IL.po +0 -768
- lang/ure-hi_IN.mo +0 -0
- lang/ure-hi_IN.po +0 -783
- lang/ure-hu_HU.mo +0 -0
- lang/ure-hu_HU.po +0 -746
- lang/ure-id_ID.mo +0 -0
- lang/ure-id_ID.po +0 -614
- lang/ure-it_IT.mo +0 -0
- lang/ure-it_IT.po +0 -755
- lang/ure-ja.mo +0 -0
- lang/ure-ja.po +0 -766
- lang/ure-lt_LT.mo +0 -0
- lang/ure-lt_LT.po +0 -752
- lang/ure-nl_BE.mo +0 -0
- lang/ure-nl_BE.po +0 -749
- lang/ure-nl_NL.mo +0 -0
- lang/ure-nl_NL.po +0 -750
- lang/ure-pl_PL.mo +0 -0
- lang/ure-pl_PL.po +0 -795
- lang/ure-pt_BR.mo +0 -0
- lang/ure-pt_BR.po +0 -813
- lang/ure-ru_RU.mo +0 -0
- lang/ure-ru_RU.po +209 -173
- lang/ure-sr_RS.mo +0 -0
- lang/ure-sr_RS.po +0 -790
- lang/ure-sv_SE.mo +0 -0
- lang/ure-sv_SE.po +0 -780
- lang/ure-zh_CN.mo +0 -0
- lang/ure-zh_CN.po +0 -717
- lang/ure-zh_TW.mo +0 -0
- lang/ure-zh_TW.po +0 -788
- lang/ure.mo +0 -0
- lang/ure.pot +260 -251
- readme.txt +16 -3
- screenshot-1.png +0 -0
- screenshot-4.png +0 -0
- user-role-editor.php +1 -6
css/ure-admin.css
CHANGED
@@ -86,7 +86,7 @@ input.warning:hover, a.warning:hover {
|
|
86 |
}
|
87 |
|
88 |
#ure_toolbar {
|
89 |
-
float:
|
90 |
margin-left: 5px;
|
91 |
border: 1px solid #dfdfdf;
|
92 |
-webkit-box-shadow: inset 0 1px 0 #fff;
|
86 |
}
|
87 |
|
88 |
#ure_toolbar {
|
89 |
+
float: right;
|
90 |
margin-left: 5px;
|
91 |
border: 1px solid #dfdfdf;
|
92 |
-webkit-box-shadow: inset 0 1px 0 #fff;
|
includes/class-ure-lib.php
CHANGED
@@ -17,27 +17,26 @@ class Ure_Lib extends Garvs_WP_Lib {
|
|
17 |
public $notification = ''; // notification message to show on page
|
18 |
public $apply_to_all = 0;
|
19 |
public $user_to_check = array(); // cached list of user IDs, who has Administrator role
|
|
|
20 |
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
-
|
27 |
-
|
28 |
-
|
29 |
-
|
30 |
-
|
31 |
-
|
32 |
-
|
33 |
-
|
34 |
-
|
35 |
-
|
36 |
-
|
37 |
-
|
38 |
-
|
39 |
-
public $multisite = false;
|
40 |
-
private $main_blog_id = 0;
|
41 |
|
42 |
|
43 |
/** class constructor
|
@@ -52,8 +51,7 @@ class Ure_Lib extends Garvs_WP_Lib {
|
|
52 |
$this->multisite = function_exists('is_multisite') && is_multisite();
|
53 |
if ($this->multisite) {
|
54 |
// get Id of 1st (main) blog
|
55 |
-
$
|
56 |
-
$this->main_blog_id = $blog_ids[0];
|
57 |
}
|
58 |
|
59 |
$this->init_options('user_role_editor');
|
@@ -114,6 +112,13 @@ class Ure_Lib extends Garvs_WP_Lib {
|
|
114 |
}
|
115 |
// end of flush_options()
|
116 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
117 |
|
118 |
/**
|
119 |
* return key capability to have access to User Role Editor Plugin
|
@@ -155,7 +160,7 @@ class Ure_Lib extends Garvs_WP_Lib {
|
|
155 |
// end of editor()
|
156 |
|
157 |
|
158 |
-
|
159 |
|
160 |
if (!class_exists('User_Role_Editor_Pro')) {
|
161 |
$this->advert = new ure_Advertisement();
|
@@ -165,7 +170,7 @@ class Ure_Lib extends Garvs_WP_Lib {
|
|
165 |
// end of advertisement()
|
166 |
|
167 |
|
168 |
-
|
169 |
?>
|
170 |
<script language="javascript" type="text/javascript">
|
171 |
|
@@ -220,7 +225,7 @@ class Ure_Lib extends Garvs_WP_Lib {
|
|
220 |
// end of output_role_edit_dialogs()
|
221 |
|
222 |
|
223 |
-
|
224 |
|
225 |
$this->show_message($this->notification);
|
226 |
?>
|
@@ -236,7 +241,7 @@ class Ure_Lib extends Garvs_WP_Lib {
|
|
236 |
</div>
|
237 |
|
238 |
<div class="has-sidebar" >
|
239 |
-
<form id="ure_form" method="post" action="<?php echo URE_PARENT.'?page=users-'.URE_PLUGIN_FILE;?>" >
|
240 |
<div id="ure_form_controls">
|
241 |
<?php
|
242 |
wp_nonce_field('user-role-editor', 'ure_nonce');
|
@@ -268,7 +273,7 @@ class Ure_Lib extends Garvs_WP_Lib {
|
|
268 |
|
269 |
|
270 |
// content of User Role Editor Pro advertisement slot - for direct call
|
271 |
-
|
272 |
if (class_exists('User_Role_Editor_Pro')) {
|
273 |
return;
|
274 |
}
|
@@ -297,7 +302,7 @@ class Ure_Lib extends Garvs_WP_Lib {
|
|
297 |
|
298 |
|
299 |
// validate information about user we intend to edit
|
300 |
-
|
301 |
|
302 |
if ($this->ure_object == 'user') {
|
303 |
if (!isset($_REQUEST['user_id'])) {
|
@@ -321,7 +326,7 @@ class Ure_Lib extends Garvs_WP_Lib {
|
|
321 |
// end of check_user_to_edit()
|
322 |
|
323 |
|
324 |
-
|
325 |
|
326 |
if (!isset($this->roles[$_POST['user_role']])) {
|
327 |
$mess = __('Error: ', 'ure') . __('Role', 'ure') . ' <em>' . esc_html($_POST['user_role']) . '</em> ' . __('does not exist', 'ure');
|
@@ -342,7 +347,7 @@ class Ure_Lib extends Garvs_WP_Lib {
|
|
342 |
/**
|
343 |
* prepare capabilities from user input to save at the database
|
344 |
*/
|
345 |
-
|
346 |
$this->capabilities_to_save = array();
|
347 |
foreach ($this->full_capabilities as $available_capability) {
|
348 |
$cap_id = str_replace(' ', URE_SPACE_REPLACER, $available_capability['inner']);
|
@@ -359,30 +364,30 @@ class Ure_Lib extends Garvs_WP_Lib {
|
|
359 |
* @param string $mess - notification message to the user
|
360 |
* @return string - notification message to the user
|
361 |
*/
|
362 |
-
|
363 |
|
364 |
if ($this->ure_object == 'role') { // save role changes to database
|
365 |
-
if (
|
366 |
-
if ($
|
367 |
-
|
368 |
-
|
369 |
-
|
370 |
-
$mess = __('Role
|
371 |
-
__('is updated successfully', 'ure');
|
372 |
} else {
|
373 |
-
|
374 |
-
|
375 |
-
|
376 |
-
|
|
|
377 |
}
|
|
|
378 |
}
|
379 |
} else {
|
380 |
if ($this->update_user($this->user_to_edit)) {
|
381 |
if ($mess) {
|
382 |
$mess .= '<br/>';
|
383 |
}
|
384 |
-
$mess = __('User', 'ure')
|
385 |
-
__('capabilities are updated successfully', 'ure');
|
386 |
} else {
|
387 |
if ($mess) {
|
388 |
$mess .= '<br/>';
|
@@ -398,7 +403,7 @@ class Ure_Lib extends Garvs_WP_Lib {
|
|
398 |
/**
|
399 |
* Process user request
|
400 |
*/
|
401 |
-
|
402 |
|
403 |
$this->notification = '';
|
404 |
if (isset($_POST['action'])) {
|
@@ -421,16 +426,18 @@ class Ure_Lib extends Garvs_WP_Lib {
|
|
421 |
$this->notification = $this->change_default_role();
|
422 |
} else if ($action == 'caps-readable') {
|
423 |
if ($this->caps_readable) {
|
424 |
-
$this->caps_readable = 0;
|
425 |
} else {
|
426 |
$this->caps_readable = 1;
|
427 |
}
|
|
|
428 |
} else if ($action == 'show-deprecated-caps') {
|
429 |
if ($this->show_deprecated_caps) {
|
430 |
$this->show_deprecated_caps = 0;
|
431 |
} else {
|
432 |
$this->show_deprecated_caps = 1;
|
433 |
}
|
|
|
434 |
} else if ($action == 'hide-pro-banner') {
|
435 |
$this->hide_pro_banner = 1;
|
436 |
$this->put_option('ure_hide_pro_banner', 1);
|
@@ -457,11 +464,30 @@ class Ure_Lib extends Garvs_WP_Lib {
|
|
457 |
}
|
458 |
// end of process_user_request()
|
459 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
460 |
|
461 |
-
|
462 |
-
$this->caps_readable =
|
463 |
-
|
464 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
465 |
$this->wp_default_role = get_option('default_role');
|
466 |
|
467 |
// could be sent as by POST, as by GET
|
@@ -473,19 +499,15 @@ class Ure_Lib extends Garvs_WP_Lib {
|
|
473 |
} else {
|
474 |
$this->ure_object = 'role';
|
475 |
}
|
476 |
-
|
477 |
-
|
478 |
-
|
479 |
-
} else {
|
480 |
-
$this->apply_to_all = 0;
|
481 |
-
}
|
482 |
-
|
483 |
return true;
|
484 |
}
|
485 |
// end of editor_init0()
|
486 |
-
|
487 |
-
|
488 |
-
|
489 |
|
490 |
if (!isset($this->roles) || !$this->roles) {
|
491 |
// get roles data from database
|
@@ -506,7 +528,7 @@ class Ure_Lib extends Garvs_WP_Lib {
|
|
506 |
* return id of role last in the list of sorted roles
|
507 |
*
|
508 |
*/
|
509 |
-
|
510 |
|
511 |
// get the key of the last element in roles array
|
512 |
$keys = array_keys($this->roles);
|
@@ -647,7 +669,7 @@ class Ure_Lib extends Garvs_WP_Lib {
|
|
647 |
|
648 |
/*
|
649 |
// restores User Roles from the backup record
|
650 |
-
|
651 |
{
|
652 |
global $wpdb, $wp_roles;
|
653 |
|
@@ -695,7 +717,7 @@ class Ure_Lib extends Garvs_WP_Lib {
|
|
695 |
// end of restore_user_roles()
|
696 |
*/
|
697 |
|
698 |
-
|
699 |
{
|
700 |
|
701 |
$caps_name = str_replace('_', ' ', $caps_name);
|
@@ -745,7 +767,7 @@ class Ure_Lib extends Garvs_WP_Lib {
|
|
745 |
* @global wpdb $wpdb - WP database object
|
746 |
* @return array
|
747 |
*/
|
748 |
-
|
749 |
{
|
750 |
global $wpdb;
|
751 |
|
@@ -876,7 +898,7 @@ class Ure_Lib extends Garvs_WP_Lib {
|
|
876 |
* @global wpdb $wpdb
|
877 |
* @return array
|
878 |
*/
|
879 |
-
|
880 |
{
|
881 |
global $wp_roles;
|
882 |
|
@@ -924,7 +946,7 @@ class Ure_Lib extends Garvs_WP_Lib {
|
|
924 |
*
|
925 |
* @return string
|
926 |
*/
|
927 |
-
|
928 |
|
929 |
$caps_to_remove = $this->get_caps_to_remove();
|
930 |
if (!empty($caps_to_remove) && is_array($caps_to_remove) && count($caps_to_remove) > 0) {
|
@@ -947,7 +969,7 @@ class Ure_Lib extends Garvs_WP_Lib {
|
|
947 |
*
|
948 |
* @return array
|
949 |
*/
|
950 |
-
|
951 |
{
|
952 |
|
953 |
$dep_caps = array(
|
@@ -974,7 +996,7 @@ class Ure_Lib extends Garvs_WP_Lib {
|
|
974 |
* @param boolean $core - if true, then show WordPress core capabilities, else custom (plugins and themes created)
|
975 |
* @param boolean $for_role - if true, it is role capabilities list, else - user specific capabilities list
|
976 |
*/
|
977 |
-
|
978 |
|
979 |
$onclick_for_admin = '';
|
980 |
if (!( $this->multisite && is_super_admin() )) { // do not limit SuperAdmin for multi-site
|
@@ -1059,7 +1081,7 @@ class Ure_Lib extends Garvs_WP_Lib {
|
|
1059 |
* @param boolean $role_delete
|
1060 |
* @param boolean $capability_remove
|
1061 |
*/
|
1062 |
-
|
1063 |
|
1064 |
?>
|
1065 |
<div id="ure_toolbar" >
|
@@ -1077,7 +1099,11 @@ class Ure_Lib extends Garvs_WP_Lib {
|
|
1077 |
|
1078 |
<hr />
|
1079 |
<div id="ure_update">
|
1080 |
-
<button id="ure_update_role" class="ure_toolbar_button button-primary">Update</button>
|
|
|
|
|
|
|
|
|
1081 |
</div>
|
1082 |
<hr />
|
1083 |
<button id="ure_add_role" class="ure_toolbar_button">Add New Role</button>
|
@@ -1099,9 +1125,15 @@ class Ure_Lib extends Garvs_WP_Lib {
|
|
1099 |
<hr />
|
1100 |
<div id="ure_service_tools">
|
1101 |
<?php
|
1102 |
-
do_action('
|
|
|
|
|
|
|
1103 |
?>
|
1104 |
-
<button id="ure_reset_roles" class="ure_toolbar_button" title="Reset Roles to its original state">Reset</button>
|
|
|
|
|
|
|
1105 |
</div>
|
1106 |
<?php
|
1107 |
} else {
|
@@ -1127,7 +1159,7 @@ class Ure_Lib extends Garvs_WP_Lib {
|
|
1127 |
* @param string $capability
|
1128 |
* @return string
|
1129 |
*/
|
1130 |
-
|
1131 |
|
1132 |
if (empty($capability)) {
|
1133 |
return '';
|
@@ -1147,8 +1179,8 @@ class Ure_Lib extends Garvs_WP_Lib {
|
|
1147 |
case 'delete_others_posts':
|
1148 |
case 'delete_pages':
|
1149 |
case 'delete_posts':
|
1150 |
-
case '
|
1151 |
-
case '
|
1152 |
case 'delete_published_pages':
|
1153 |
case 'delete_published_posts':
|
1154 |
$url = 'http://www.shinephp.com/delete-posts-and-pages-wordpress-user-capabilities-set/';
|
@@ -1199,7 +1231,7 @@ class Ure_Lib extends Garvs_WP_Lib {
|
|
1199 |
* Go through all users and if user has non-existing role lower him to Subscriber role
|
1200 |
*
|
1201 |
*/
|
1202 |
-
|
1203 |
|
1204 |
global $wp_roles;
|
1205 |
|
@@ -1243,7 +1275,7 @@ class Ure_Lib extends Garvs_WP_Lib {
|
|
1243 |
// end of validate_user_roles()
|
1244 |
|
1245 |
|
1246 |
-
|
1247 |
$cap = array();
|
1248 |
$cap['inner'] = $cap_id;
|
1249 |
$cap['human'] = __($this->convert_caps_to_readable($cap_id), 'ure');
|
@@ -1260,7 +1292,7 @@ class Ure_Lib extends Garvs_WP_Lib {
|
|
1260 |
// end of build_capability()
|
1261 |
|
1262 |
|
1263 |
-
|
1264 |
$this->built_in_wp_caps = $this->get_built_in_wp_caps();
|
1265 |
$this->full_capabilities = array();
|
1266 |
foreach ($this->roles as $role) {
|
@@ -1287,7 +1319,7 @@ class Ure_Lib extends Garvs_WP_Lib {
|
|
1287 |
/**
|
1288 |
* reset user roles to WordPress default roles
|
1289 |
*/
|
1290 |
-
|
1291 |
global $wp_roles;
|
1292 |
|
1293 |
//$active_plugins = ure_deactivate_plugins(); // deactivate all plugins
|
@@ -1308,6 +1340,14 @@ class Ure_Lib extends Garvs_WP_Lib {
|
|
1308 |
}
|
1309 |
//$this->validate_user_roles(); // if user has non-existing role lower him to Subscriber role
|
1310 |
*/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1311 |
$reload_link = wp_get_referer();
|
1312 |
$reload_link = remove_query_arg('action', $reload_link);
|
1313 |
|
@@ -1322,8 +1362,23 @@ class Ure_Lib extends Garvs_WP_Lib {
|
|
1322 |
// end of reset_user_roles()
|
1323 |
|
1324 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1325 |
// Save Roles to database
|
1326 |
-
|
1327 |
global $wpdb;
|
1328 |
|
1329 |
if (!isset($this->roles[$this->current_role])) {
|
@@ -1332,20 +1387,29 @@ class Ure_Lib extends Garvs_WP_Lib {
|
|
1332 |
$this->roles[$this->current_role]['capabilities'] = $this->capabilities_to_save;
|
1333 |
$option_name = $wpdb->prefix . 'user_roles';
|
1334 |
|
1335 |
-
|
1336 |
|
1337 |
-
return
|
1338 |
}
|
1339 |
// end of save_roles()
|
1340 |
|
1341 |
|
1342 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1343 |
global $wpdb;
|
1344 |
|
1345 |
-
if (!
|
1346 |
-
$this->roles[$this->current_role]
|
|
|
|
|
|
|
1347 |
}
|
1348 |
-
$this->roles[$this->current_role]['capabilities'] = $this->capabilities_to_save;
|
1349 |
$serialized_roles = serialize($this->roles);
|
1350 |
foreach ($blog_ids as $blog_id) {
|
1351 |
$prefix = $wpdb->get_blog_prefix($blog_id);
|
@@ -1355,59 +1419,74 @@ class Ure_Lib extends Garvs_WP_Lib {
|
|
1355 |
set option_value='$serialized_roles'
|
1356 |
where option_name='$option_name'
|
1357 |
limit 1";
|
1358 |
-
$
|
1359 |
if ($wpdb->last_error) {
|
1360 |
$this->log_event($wpdb->last_error, true);
|
1361 |
return false;
|
1362 |
}
|
1363 |
-
if ($record == 0) {
|
1364 |
-
return false;
|
1365 |
-
}
|
1366 |
}
|
1367 |
}
|
1368 |
-
// end of
|
1369 |
-
|
1370 |
|
|
|
1371 |
/**
|
1372 |
-
*
|
1373 |
*
|
1374 |
-
* @global wpdb $wpdb
|
1375 |
* @return boolean
|
1376 |
*/
|
1377 |
-
|
1378 |
-
global $wpdb;
|
1379 |
|
1380 |
-
|
1381 |
-
|
1382 |
-
|
1383 |
-
|
|
|
1384 |
|
1385 |
-
|
1386 |
-
|
1387 |
-
|
1388 |
-
|
1389 |
-
|
1390 |
-
|
1391 |
-
|
1392 |
-
|
|
|
|
|
|
|
|
|
1393 |
$this->roles = $this->get_user_roles();
|
1394 |
-
|
1395 |
-
echo '<div class="error fade below-h2">' . URE_ERROR . '</div>';
|
1396 |
-
switch_to_blog($old_blog);
|
1397 |
-
$this->roles = $this->get_user_roles();
|
1398 |
-
return false;
|
1399 |
-
}
|
1400 |
-
if (!isset($this->roles[$this->current_role])) { // add new role to this blog
|
1401 |
-
$this->roles[$this->current_role] = array('name' => $this->current_role_name, 'capabilities' => array('read' => 1));
|
1402 |
-
}
|
1403 |
-
$this->save_roles();
|
1404 |
}
|
1405 |
-
|
1406 |
-
|
|
|
|
|
1407 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1408 |
|
1409 |
-
|
1410 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1411 |
}
|
1412 |
} else {
|
1413 |
if (!$this->save_roles()) {
|
@@ -1427,7 +1506,7 @@ class Ure_Lib extends Garvs_WP_Lib {
|
|
1427 |
* @param string $message
|
1428 |
* @param boolean $show_message
|
1429 |
*/
|
1430 |
-
|
1431 |
global $wp_version;
|
1432 |
|
1433 |
$file_name = URE_PLUGIN_DIR . 'user-role-editor.log';
|
@@ -1454,7 +1533,7 @@ class Ure_Lib extends Garvs_WP_Lib {
|
|
1454 |
* @return string - message about operation result
|
1455 |
*
|
1456 |
*/
|
1457 |
-
|
1458 |
|
1459 |
global $wp_roles;
|
1460 |
|
@@ -1506,7 +1585,7 @@ class Ure_Lib extends Garvs_WP_Lib {
|
|
1506 |
// end of newRoleCreate()
|
1507 |
|
1508 |
|
1509 |
-
|
1510 |
global $wp_roles;
|
1511 |
|
1512 |
$mess = '';
|
@@ -1543,7 +1622,7 @@ class Ure_Lib extends Garvs_WP_Lib {
|
|
1543 |
* @global WP_Roles $wp_roles
|
1544 |
* @return string
|
1545 |
*/
|
1546 |
-
|
1547 |
global $wp_roles;
|
1548 |
|
1549 |
$mess = '';
|
@@ -1574,7 +1653,7 @@ class Ure_Lib extends Garvs_WP_Lib {
|
|
1574 |
/**
|
1575 |
* Not really used in the plugin - just storage for the translation strings
|
1576 |
*/
|
1577 |
-
|
1578 |
// for the translation purpose
|
1579 |
if (false) {
|
1580 |
// Standard WordPress roles
|
@@ -1657,7 +1736,7 @@ class Ure_Lib extends Garvs_WP_Lib {
|
|
1657 |
* @param WP_User $user
|
1658 |
* @return boolean
|
1659 |
*/
|
1660 |
-
|
1661 |
global $wp_roles;
|
1662 |
|
1663 |
$values = array_values($user->roles);
|
@@ -1715,7 +1794,7 @@ class Ure_Lib extends Garvs_WP_Lib {
|
|
1715 |
* @global WP_Roles $wp_roles
|
1716 |
* @return string
|
1717 |
*/
|
1718 |
-
|
1719 |
global $wp_roles;
|
1720 |
|
1721 |
$mess = '';
|
@@ -1756,7 +1835,7 @@ class Ure_Lib extends Garvs_WP_Lib {
|
|
1756 |
* @global WP_Roles $wp_roles
|
1757 |
* @return string - information message
|
1758 |
*/
|
1759 |
-
|
1760 |
global $wpdb, $wp_roles;
|
1761 |
|
1762 |
$mess = '';
|
@@ -1857,7 +1936,7 @@ class Ure_Lib extends Garvs_WP_Lib {
|
|
1857 |
* @param string $title
|
1858 |
* @param string $style
|
1859 |
*/
|
1860 |
-
|
1861 |
?>
|
1862 |
<div class="postbox" style="float: left; <?php echo $style; ?>">
|
1863 |
<h3 style="cursor:default;"><span><?php echo $title ?></span></h3>
|
@@ -1879,7 +1958,7 @@ class Ure_Lib extends Garvs_WP_Lib {
|
|
1879 |
// end of display_box_end()
|
1880 |
|
1881 |
|
1882 |
-
|
1883 |
$this->display_box_start(__('About this Plugin:', 'ure'));
|
1884 |
?>
|
1885 |
<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>
|
@@ -1906,7 +1985,7 @@ class Ure_Lib extends Garvs_WP_Lib {
|
|
1906 |
// end of about()
|
1907 |
|
1908 |
|
1909 |
-
|
1910 |
if (!isset($this->current_role) || !$this->current_role) {
|
1911 |
if (isset($_REQUEST['user_role']) && $_REQUEST['user_role'] && isset($this->roles[$_REQUEST['user_role']])) {
|
1912 |
$this->current_role = $_REQUEST['user_role'];
|
@@ -1919,7 +1998,7 @@ class Ure_Lib extends Garvs_WP_Lib {
|
|
1919 |
// end of set_current_role()
|
1920 |
|
1921 |
|
1922 |
-
|
1923 |
|
1924 |
$show_admin_role = $this->get_option('show_admin_role', 0);
|
1925 |
$you_are_admin = ((defined('URE_SHOW_ADMIN_ROLE') && URE_SHOW_ADMIN_ROLE==1) || $show_admin_role==1) && $this->user_is_admin();
|
@@ -1962,13 +2041,17 @@ class Ure_Lib extends Garvs_WP_Lib {
|
|
1962 |
// end of role_edit_prepare_html()
|
1963 |
|
1964 |
|
1965 |
-
//
|
1966 |
-
|
|
|
1967 |
|
1968 |
if (isset($this->user_to_edit->caps[$capability])) {
|
1969 |
return true;
|
1970 |
}
|
1971 |
foreach ($this->user_to_edit->roles as $role) {
|
|
|
|
|
|
|
1972 |
if (!empty($this->roles[$role]['capabilities'][$capability])) {
|
1973 |
return true;
|
1974 |
}
|
17 |
public $notification = ''; // notification message to show on page
|
18 |
public $apply_to_all = 0;
|
19 |
public $user_to_check = array(); // cached list of user IDs, who has Administrator role
|
20 |
+
public $multisite = false;
|
21 |
|
22 |
+
protected $capabilities_to_save = null;
|
23 |
+
protected $current_role = '';
|
24 |
+
protected $wp_default_role = '';
|
25 |
+
protected $current_role_name = '';
|
26 |
+
protected $user_to_edit = '';
|
27 |
+
protected $show_deprecated_caps = false;
|
28 |
+
protected $caps_readable = false;
|
29 |
+
protected $hide_pro_banner = false;
|
30 |
+
protected $full_capabilities = false;
|
31 |
+
protected $ure_object = 'role'; // what to process, 'role' or 'user'
|
32 |
+
protected $role_default_html = '';
|
33 |
+
protected $role_to_copy_html = '';
|
34 |
+
protected $role_select_html = '';
|
35 |
+
protected $role_delete_html = '';
|
36 |
+
protected $capability_remove_html = '';
|
37 |
+
protected $integrate_with_gravity_forms = false;
|
38 |
+
protected $advert = null;
|
39 |
+
protected $main_blog_id = 0;
|
|
|
|
|
40 |
|
41 |
|
42 |
/** class constructor
|
51 |
$this->multisite = function_exists('is_multisite') && is_multisite();
|
52 |
if ($this->multisite) {
|
53 |
// get Id of 1st (main) blog
|
54 |
+
$this->main_blog_id = $wpdb->get_var("SELECT blog_id FROM $wpdb->blogs order by blog_id asc limit 0, 1");
|
|
|
55 |
}
|
56 |
|
57 |
$this->init_options('user_role_editor');
|
112 |
}
|
113 |
// end of flush_options()
|
114 |
|
115 |
+
|
116 |
+
public function get_main_blog_id() {
|
117 |
+
|
118 |
+
return $this->main_blog_id;
|
119 |
+
|
120 |
+
}
|
121 |
+
|
122 |
|
123 |
/**
|
124 |
* return key capability to have access to User Role Editor Plugin
|
160 |
// end of editor()
|
161 |
|
162 |
|
163 |
+
protected function advertisement() {
|
164 |
|
165 |
if (!class_exists('User_Role_Editor_Pro')) {
|
166 |
$this->advert = new ure_Advertisement();
|
170 |
// end of advertisement()
|
171 |
|
172 |
|
173 |
+
protected function output_role_edit_dialogs() {
|
174 |
?>
|
175 |
<script language="javascript" type="text/javascript">
|
176 |
|
225 |
// end of output_role_edit_dialogs()
|
226 |
|
227 |
|
228 |
+
protected function show_editor() {
|
229 |
|
230 |
$this->show_message($this->notification);
|
231 |
?>
|
241 |
</div>
|
242 |
|
243 |
<div class="has-sidebar" >
|
244 |
+
<form id="ure_form" method="post" action="<?php echo URE_WP_ADMIN_URL . URE_PARENT.'?page=users-'.URE_PLUGIN_FILE;?>" >
|
245 |
<div id="ure_form_controls">
|
246 |
<?php
|
247 |
wp_nonce_field('user-role-editor', 'ure_nonce');
|
273 |
|
274 |
|
275 |
// content of User Role Editor Pro advertisement slot - for direct call
|
276 |
+
protected function advertise_pro_version() {
|
277 |
if (class_exists('User_Role_Editor_Pro')) {
|
278 |
return;
|
279 |
}
|
302 |
|
303 |
|
304 |
// validate information about user we intend to edit
|
305 |
+
protected function check_user_to_edit() {
|
306 |
|
307 |
if ($this->ure_object == 'user') {
|
308 |
if (!isset($_REQUEST['user_id'])) {
|
326 |
// end of check_user_to_edit()
|
327 |
|
328 |
|
329 |
+
protected function init_current_role_name() {
|
330 |
|
331 |
if (!isset($this->roles[$_POST['user_role']])) {
|
332 |
$mess = __('Error: ', 'ure') . __('Role', 'ure') . ' <em>' . esc_html($_POST['user_role']) . '</em> ' . __('does not exist', 'ure');
|
347 |
/**
|
348 |
* prepare capabilities from user input to save at the database
|
349 |
*/
|
350 |
+
protected function prepare_capabilities_to_save() {
|
351 |
$this->capabilities_to_save = array();
|
352 |
foreach ($this->full_capabilities as $available_capability) {
|
353 |
$cap_id = str_replace(' ', URE_SPACE_REPLACER, $available_capability['inner']);
|
364 |
* @param string $mess - notification message to the user
|
365 |
* @return string - notification message to the user
|
366 |
*/
|
367 |
+
protected function permissions_object_update($mess) {
|
368 |
|
369 |
if ($this->ure_object == 'role') { // save role changes to database
|
370 |
+
if ($this->update_roles()) {
|
371 |
+
if ($mess) {
|
372 |
+
$mess .= '<br/>';
|
373 |
+
}
|
374 |
+
if (!$this->apply_to_all) {
|
375 |
+
$mess = __('Role is updated successfully', 'ure');
|
|
|
376 |
} else {
|
377 |
+
$mess = __('Roles are updated for all network', 'ure');
|
378 |
+
}
|
379 |
+
} else {
|
380 |
+
if ($mess) {
|
381 |
+
$mess .= '<br/>';
|
382 |
}
|
383 |
+
$mess = __('Error occured during role(s) update', 'ure');
|
384 |
}
|
385 |
} else {
|
386 |
if ($this->update_user($this->user_to_edit)) {
|
387 |
if ($mess) {
|
388 |
$mess .= '<br/>';
|
389 |
}
|
390 |
+
$mess = __('User capabilities are updated successfully', 'ure');
|
|
|
391 |
} else {
|
392 |
if ($mess) {
|
393 |
$mess .= '<br/>';
|
403 |
/**
|
404 |
* Process user request
|
405 |
*/
|
406 |
+
protected function process_user_request() {
|
407 |
|
408 |
$this->notification = '';
|
409 |
if (isset($_POST['action'])) {
|
426 |
$this->notification = $this->change_default_role();
|
427 |
} else if ($action == 'caps-readable') {
|
428 |
if ($this->caps_readable) {
|
429 |
+
$this->caps_readable = 0;
|
430 |
} else {
|
431 |
$this->caps_readable = 1;
|
432 |
}
|
433 |
+
set_site_transient( 'ure_caps_readable', $this->caps_readable, 600 );
|
434 |
} else if ($action == 'show-deprecated-caps') {
|
435 |
if ($this->show_deprecated_caps) {
|
436 |
$this->show_deprecated_caps = 0;
|
437 |
} else {
|
438 |
$this->show_deprecated_caps = 1;
|
439 |
}
|
440 |
+
set_site_transient( 'ure_show_deprecated_caps', $this->show_deprecated_caps, 600 );
|
441 |
} else if ($action == 'hide-pro-banner') {
|
442 |
$this->hide_pro_banner = 1;
|
443 |
$this->put_option('ure_hide_pro_banner', 1);
|
464 |
}
|
465 |
// end of process_user_request()
|
466 |
|
467 |
+
|
468 |
+
protected function set_apply_to_all() {
|
469 |
+
if (isset($_POST['ure_apply_to_all'])) {
|
470 |
+
$this->apply_to_all = 1;
|
471 |
+
} else {
|
472 |
+
$this->apply_to_all = 0;
|
473 |
+
}
|
474 |
+
}
|
475 |
+
// end of set_apply_to_all()
|
476 |
+
|
477 |
|
478 |
+
protected function editor_init0() {
|
479 |
+
$this->caps_readable = get_site_transient('ure_caps_readable');
|
480 |
+
if (false === $this->caps_readable) {
|
481 |
+
$this->caps_readable = $this->get_option('ure_caps_readable');
|
482 |
+
set_site_transient('ure_caps_readable', $this->caps_readable, 600);
|
483 |
+
}
|
484 |
+
$this->show_deprecated_caps = get_site_transient('ure_show_deprecated_caps');
|
485 |
+
if (false === $this->show_deprecated_caps) {
|
486 |
+
$this->show_deprecated_caps = $this->get_option('ure_show_deprecated_caps');
|
487 |
+
set_site_transient('ure_caps_readable', $this->caps_readable, 600);
|
488 |
+
}
|
489 |
+
|
490 |
+
$this->hide_pro_banner = $this->get_option('ure_hide_pro_banner', 0);
|
491 |
$this->wp_default_role = get_option('default_role');
|
492 |
|
493 |
// could be sent as by POST, as by GET
|
499 |
} else {
|
500 |
$this->ure_object = 'role';
|
501 |
}
|
502 |
+
|
503 |
+
$this->set_apply_to_all();
|
504 |
+
|
|
|
|
|
|
|
|
|
505 |
return true;
|
506 |
}
|
507 |
// end of editor_init0()
|
508 |
+
|
509 |
+
|
510 |
+
protected function editor_init1() {
|
511 |
|
512 |
if (!isset($this->roles) || !$this->roles) {
|
513 |
// get roles data from database
|
528 |
* return id of role last in the list of sorted roles
|
529 |
*
|
530 |
*/
|
531 |
+
protected function get_last_role_id() {
|
532 |
|
533 |
// get the key of the last element in roles array
|
534 |
$keys = array_keys($this->roles);
|
669 |
|
670 |
/*
|
671 |
// restores User Roles from the backup record
|
672 |
+
protected function restore_user_roles()
|
673 |
{
|
674 |
global $wpdb, $wp_roles;
|
675 |
|
717 |
// end of restore_user_roles()
|
718 |
*/
|
719 |
|
720 |
+
protected function convert_caps_to_readable($caps_name)
|
721 |
{
|
722 |
|
723 |
$caps_name = str_replace('_', ' ', $caps_name);
|
767 |
* @global wpdb $wpdb - WP database object
|
768 |
* @return array
|
769 |
*/
|
770 |
+
protected function get_roles_can_delete()
|
771 |
{
|
772 |
global $wpdb;
|
773 |
|
898 |
* @global wpdb $wpdb
|
899 |
* @return array
|
900 |
*/
|
901 |
+
protected function get_caps_to_remove()
|
902 |
{
|
903 |
global $wp_roles;
|
904 |
|
946 |
*
|
947 |
* @return string
|
948 |
*/
|
949 |
+
protected function get_caps_to_remove_html() {
|
950 |
|
951 |
$caps_to_remove = $this->get_caps_to_remove();
|
952 |
if (!empty($caps_to_remove) && is_array($caps_to_remove) && count($caps_to_remove) > 0) {
|
969 |
*
|
970 |
* @return array
|
971 |
*/
|
972 |
+
protected function get_deprecated_caps()
|
973 |
{
|
974 |
|
975 |
$dep_caps = array(
|
996 |
* @param boolean $core - if true, then show WordPress core capabilities, else custom (plugins and themes created)
|
997 |
* @param boolean $for_role - if true, it is role capabilities list, else - user specific capabilities list
|
998 |
*/
|
999 |
+
protected function show_capabilities($core = true, $for_role = true) {
|
1000 |
|
1001 |
$onclick_for_admin = '';
|
1002 |
if (!( $this->multisite && is_super_admin() )) { // do not limit SuperAdmin for multi-site
|
1081 |
* @param boolean $role_delete
|
1082 |
* @param boolean $capability_remove
|
1083 |
*/
|
1084 |
+
protected function toolbar($role_delete = false, $capability_remove = false) {
|
1085 |
|
1086 |
?>
|
1087 |
<div id="ure_toolbar" >
|
1099 |
|
1100 |
<hr />
|
1101 |
<div id="ure_update">
|
1102 |
+
<button id="ure_update_role" class="ure_toolbar_button button-primary" >Update</button>
|
1103 |
+
<?php
|
1104 |
+
do_action('ure_role_edit_toolbar_update');
|
1105 |
+
?>
|
1106 |
+
|
1107 |
</div>
|
1108 |
<hr />
|
1109 |
<button id="ure_add_role" class="ure_toolbar_button">Add New Role</button>
|
1125 |
<hr />
|
1126 |
<div id="ure_service_tools">
|
1127 |
<?php
|
1128 |
+
do_action('ure_role_edit_toolbar_service');
|
1129 |
+
if (!is_multisite() ||
|
1130 |
+
(is_main_site( get_current_blog_id()) || (is_network_admin() && is_super_admin()))
|
1131 |
+
) {
|
1132 |
?>
|
1133 |
+
<button id="ure_reset_roles" class="ure_toolbar_button" style="color: red;" title="Reset Roles to its original state">Reset</button>
|
1134 |
+
<?php
|
1135 |
+
}
|
1136 |
+
?>
|
1137 |
</div>
|
1138 |
<?php
|
1139 |
} else {
|
1159 |
* @param string $capability
|
1160 |
* @return string
|
1161 |
*/
|
1162 |
+
protected function capability_help_link($capability) {
|
1163 |
|
1164 |
if (empty($capability)) {
|
1165 |
return '';
|
1179 |
case 'delete_others_posts':
|
1180 |
case 'delete_pages':
|
1181 |
case 'delete_posts':
|
1182 |
+
case 'delete_protected_pages':
|
1183 |
+
case 'delete_protected_posts':
|
1184 |
case 'delete_published_pages':
|
1185 |
case 'delete_published_posts':
|
1186 |
$url = 'http://www.shinephp.com/delete-posts-and-pages-wordpress-user-capabilities-set/';
|
1231 |
* Go through all users and if user has non-existing role lower him to Subscriber role
|
1232 |
*
|
1233 |
*/
|
1234 |
+
protected function validate_user_roles() {
|
1235 |
|
1236 |
global $wp_roles;
|
1237 |
|
1275 |
// end of validate_user_roles()
|
1276 |
|
1277 |
|
1278 |
+
protected function add_capability_to_full_caps_list($cap_id) {
|
1279 |
$cap = array();
|
1280 |
$cap['inner'] = $cap_id;
|
1281 |
$cap['human'] = __($this->convert_caps_to_readable($cap_id), 'ure');
|
1292 |
// end of build_capability()
|
1293 |
|
1294 |
|
1295 |
+
protected function init_full_capabilities() {
|
1296 |
$this->built_in_wp_caps = $this->get_built_in_wp_caps();
|
1297 |
$this->full_capabilities = array();
|
1298 |
foreach ($this->roles as $role) {
|
1319 |
/**
|
1320 |
* reset user roles to WordPress default roles
|
1321 |
*/
|
1322 |
+
protected function reset_user_roles() {
|
1323 |
global $wp_roles;
|
1324 |
|
1325 |
//$active_plugins = ure_deactivate_plugins(); // deactivate all plugins
|
1340 |
}
|
1341 |
//$this->validate_user_roles(); // if user has non-existing role lower him to Subscriber role
|
1342 |
*/
|
1343 |
+
|
1344 |
+
if ($this->is_full_network_synch() || $this->apply_to_all) {
|
1345 |
+
$this->current_role = '';
|
1346 |
+
// Get all blog ids
|
1347 |
+
$blog_ids = $wpdb->get_col("SELECT blog_id FROM $wpdb->blogs where blog_id!={$this->main_blog_id}");
|
1348 |
+
$this->direct_network_roles_update($blog_ids);
|
1349 |
+
}
|
1350 |
+
|
1351 |
$reload_link = wp_get_referer();
|
1352 |
$reload_link = remove_query_arg('action', $reload_link);
|
1353 |
|
1362 |
// end of reset_user_roles()
|
1363 |
|
1364 |
|
1365 |
+
/**
|
1366 |
+
* if returns true - make full syncronization of roles for all sites with roles from the main site
|
1367 |
+
* else - only currently selected role update is replicated
|
1368 |
+
*
|
1369 |
+
* @return boolean
|
1370 |
+
*/
|
1371 |
+
public function is_full_network_synch() {
|
1372 |
+
|
1373 |
+
$result = defined('URE_MULTISITE_DIRECT_UPDATE') && URE_MULTISITE_DIRECT_UPDATE == 1;
|
1374 |
+
|
1375 |
+
return $result;
|
1376 |
+
}
|
1377 |
+
// end of is_full_network_synch()
|
1378 |
+
|
1379 |
+
|
1380 |
// Save Roles to database
|
1381 |
+
protected function save_roles() {
|
1382 |
global $wpdb;
|
1383 |
|
1384 |
if (!isset($this->roles[$this->current_role])) {
|
1387 |
$this->roles[$this->current_role]['capabilities'] = $this->capabilities_to_save;
|
1388 |
$option_name = $wpdb->prefix . 'user_roles';
|
1389 |
|
1390 |
+
update_option($option_name, $this->roles);
|
1391 |
|
1392 |
+
return true;
|
1393 |
}
|
1394 |
// end of save_roles()
|
1395 |
|
1396 |
|
1397 |
+
/**
|
1398 |
+
* Update roles for all network using direct database access - quicker in several times
|
1399 |
+
*
|
1400 |
+
* @global wpdb $wpdb
|
1401 |
+
* @param type $blog_ids
|
1402 |
+
* @return boolean
|
1403 |
+
*/
|
1404 |
+
function direct_network_roles_update($blog_ids) {
|
1405 |
global $wpdb;
|
1406 |
|
1407 |
+
if (!empty($this->current_role)) {
|
1408 |
+
if (!isset($this->roles[$this->current_role])) {
|
1409 |
+
$this->roles[$this->current_role]['name'] = $this->current_role_name;
|
1410 |
+
}
|
1411 |
+
$this->roles[$this->current_role]['capabilities'] = $this->capabilities_to_save;
|
1412 |
}
|
|
|
1413 |
$serialized_roles = serialize($this->roles);
|
1414 |
foreach ($blog_ids as $blog_id) {
|
1415 |
$prefix = $wpdb->get_blog_prefix($blog_id);
|
1419 |
set option_value='$serialized_roles'
|
1420 |
where option_name='$option_name'
|
1421 |
limit 1";
|
1422 |
+
$wpdb->query($query);
|
1423 |
if ($wpdb->last_error) {
|
1424 |
$this->log_event($wpdb->last_error, true);
|
1425 |
return false;
|
1426 |
}
|
|
|
|
|
|
|
1427 |
}
|
1428 |
}
|
1429 |
+
// end of direct_network_roles_update()
|
|
|
1430 |
|
1431 |
+
|
1432 |
/**
|
1433 |
+
* Update role for all network using WordPress API
|
1434 |
*
|
|
|
1435 |
* @return boolean
|
1436 |
*/
|
1437 |
+
protected function multisite_update_roles() {
|
|
|
1438 |
|
1439 |
+
global $wpdb;
|
1440 |
+
|
1441 |
+
if (defined('URE_DEBUG') && URE_DEBUG) {
|
1442 |
+
$time_shot = microtime();
|
1443 |
+
}
|
1444 |
|
1445 |
+
$old_blog = $wpdb->blogid;
|
1446 |
+
// Get all blog ids
|
1447 |
+
$blogIds = $wpdb->get_col("SELECT blog_id FROM $wpdb->blogs");
|
1448 |
+
if ($this->is_full_network_synch()) {
|
1449 |
+
$this->direct_network_roles_update($blogIds);
|
1450 |
+
} else {
|
1451 |
+
foreach ($blogIds as $blog_id) {
|
1452 |
+
switch_to_blog($blog_id);
|
1453 |
+
$this->roles = $this->get_user_roles();
|
1454 |
+
if (!$this->roles) {
|
1455 |
+
echo '<div class="error fade below-h2">' . URE_ERROR . '</div>';
|
1456 |
+
switch_to_blog($old_blog);
|
1457 |
$this->roles = $this->get_user_roles();
|
1458 |
+
return false;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1459 |
}
|
1460 |
+
if (!isset($this->roles[$this->current_role])) { // add new role to this blog
|
1461 |
+
$this->roles[$this->current_role] = array('name' => $this->current_role_name, 'capabilities' => array('read' => 1));
|
1462 |
+
}
|
1463 |
+
$this->save_roles();
|
1464 |
}
|
1465 |
+
switch_to_blog($old_blog);
|
1466 |
+
$this->roles = $this->get_user_roles();
|
1467 |
+
}
|
1468 |
+
|
1469 |
+
if (defined('URE_DEBUG') && URE_DEBUG) {
|
1470 |
+
echo '<div class="updated fade below-h2">Roles updated for ' . ( microtime() - $time_shot ) . ' milliseconds</div>';
|
1471 |
+
}
|
1472 |
+
|
1473 |
+
return true;
|
1474 |
+
}
|
1475 |
+
// end of multisite_update_roles()
|
1476 |
|
1477 |
+
|
1478 |
+
/**
|
1479 |
+
* Process user request on update roles
|
1480 |
+
*
|
1481 |
+
* @global wpdb $wpdb
|
1482 |
+
* @return boolean
|
1483 |
+
*/
|
1484 |
+
protected function update_roles() {
|
1485 |
+
global $wpdb;
|
1486 |
+
|
1487 |
+
if ($this->multisite && is_super_admin() && $this->apply_to_all) { // update Role for the all blogs/sites in the network (permitted to superadmin only)
|
1488 |
+
if (!$this->multisite_update_roles()) {
|
1489 |
+
return false;
|
1490 |
}
|
1491 |
} else {
|
1492 |
if (!$this->save_roles()) {
|
1506 |
* @param string $message
|
1507 |
* @param boolean $show_message
|
1508 |
*/
|
1509 |
+
protected function log_event($message, $show_message = false) {
|
1510 |
global $wp_version;
|
1511 |
|
1512 |
$file_name = URE_PLUGIN_DIR . 'user-role-editor.log';
|
1533 |
* @return string - message about operation result
|
1534 |
*
|
1535 |
*/
|
1536 |
+
protected function new_role_create() {
|
1537 |
|
1538 |
global $wp_roles;
|
1539 |
|
1585 |
// end of newRoleCreate()
|
1586 |
|
1587 |
|
1588 |
+
protected function delete_role() {
|
1589 |
global $wp_roles;
|
1590 |
|
1591 |
$mess = '';
|
1622 |
* @global WP_Roles $wp_roles
|
1623 |
* @return string
|
1624 |
*/
|
1625 |
+
protected function change_default_role() {
|
1626 |
global $wp_roles;
|
1627 |
|
1628 |
$mess = '';
|
1653 |
/**
|
1654 |
* Not really used in the plugin - just storage for the translation strings
|
1655 |
*/
|
1656 |
+
protected function translation_data() {
|
1657 |
// for the translation purpose
|
1658 |
if (false) {
|
1659 |
// Standard WordPress roles
|
1736 |
* @param WP_User $user
|
1737 |
* @return boolean
|
1738 |
*/
|
1739 |
+
protected function update_user($user) {
|
1740 |
global $wp_roles;
|
1741 |
|
1742 |
$values = array_values($user->roles);
|
1794 |
* @global WP_Roles $wp_roles
|
1795 |
* @return string
|
1796 |
*/
|
1797 |
+
protected function add_new_capability() {
|
1798 |
global $wp_roles;
|
1799 |
|
1800 |
$mess = '';
|
1835 |
* @global WP_Roles $wp_roles
|
1836 |
* @return string - information message
|
1837 |
*/
|
1838 |
+
protected function delete_capability() {
|
1839 |
global $wpdb, $wp_roles;
|
1840 |
|
1841 |
$mess = '';
|
1936 |
* @param string $title
|
1937 |
* @param string $style
|
1938 |
*/
|
1939 |
+
protected function display_box_start($title, $style = '') {
|
1940 |
?>
|
1941 |
<div class="postbox" style="float: left; <?php echo $style; ?>">
|
1942 |
<h3 style="cursor:default;"><span><?php echo $title ?></span></h3>
|
1958 |
// end of display_box_end()
|
1959 |
|
1960 |
|
1961 |
+
protected function about() {
|
1962 |
$this->display_box_start(__('About this Plugin:', 'ure'));
|
1963 |
?>
|
1964 |
<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>
|
1985 |
// end of about()
|
1986 |
|
1987 |
|
1988 |
+
protected function set_current_role() {
|
1989 |
if (!isset($this->current_role) || !$this->current_role) {
|
1990 |
if (isset($_REQUEST['user_role']) && $_REQUEST['user_role'] && isset($this->roles[$_REQUEST['user_role']])) {
|
1991 |
$this->current_role = $_REQUEST['user_role'];
|
1998 |
// end of set_current_role()
|
1999 |
|
2000 |
|
2001 |
+
protected function role_edit_prepare_html() {
|
2002 |
|
2003 |
$show_admin_role = $this->get_option('show_admin_role', 0);
|
2004 |
$you_are_admin = ((defined('URE_SHOW_ADMIN_ROLE') && URE_SHOW_ADMIN_ROLE==1) || $show_admin_role==1) && $this->user_is_admin();
|
2041 |
// end of role_edit_prepare_html()
|
2042 |
|
2043 |
|
2044 |
+
// returns true if $user has $capability assigned through the roles or directly
|
2045 |
+
// returns true if user has role with name equal $capability
|
2046 |
+
protected function user_can($capability) {
|
2047 |
|
2048 |
if (isset($this->user_to_edit->caps[$capability])) {
|
2049 |
return true;
|
2050 |
}
|
2051 |
foreach ($this->user_to_edit->roles as $role) {
|
2052 |
+
if ($role===$capability) {
|
2053 |
+
return true;
|
2054 |
+
}
|
2055 |
if (!empty($this->roles[$role]['capabilities'][$capability])) {
|
2056 |
return true;
|
2057 |
}
|
includes/class-user-role-editor.php
CHANGED
@@ -19,11 +19,7 @@ class User_Role_Editor {
|
|
19 |
*/
|
20 |
function __construct($library)
|
21 |
{
|
22 |
-
|
23 |
-
if (!is_admin()) {
|
24 |
-
return false;
|
25 |
-
}
|
26 |
-
|
27 |
// activation action
|
28 |
register_activation_hook(URE_PLUGIN_FULL_PATH, array(&$this, 'setup'));
|
29 |
|
@@ -33,10 +29,20 @@ class User_Role_Editor {
|
|
33 |
// get plugin specific library object
|
34 |
$this->lib = $library;
|
35 |
|
36 |
-
|
37 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
38 |
|
39 |
-
|
40 |
|
41 |
// Add the translation function after the plugins loaded hook.
|
42 |
add_action('plugins_loaded', array(&$this, 'load_translation'));
|
@@ -86,16 +92,15 @@ class User_Role_Editor {
|
|
86 |
add_filter('views_users', array( &$this, 'exclude_admins_view' ) );
|
87 |
}
|
88 |
|
89 |
-
add_action('admin_enqueue_scripts', array( &$this, 'admin_load_js' ) );
|
90 |
add_action( 'user_row_actions', array( &$this, 'user_row'), 10, 2 );
|
91 |
-
add_action( 'edit_user_profile', array(&$this, 'edit_user_profile'), 10, 2);
|
92 |
add_filter( 'manage_users_columns', array(&$this, 'user_role_column'), 10, 5 );
|
93 |
add_filter( 'manage_users_custom_column', array(&$this, 'user_role_row'), 10, 3 );
|
94 |
add_action( 'profile_update', array(&$this, 'user_profile_update'), 10 );
|
95 |
|
96 |
|
97 |
if ($this->lib->multisite) {
|
98 |
-
add_action( 'wpmu_new_blog', array( &$this, 'duplicate_roles_for_new_blog'), 10, 2 );
|
99 |
add_filter( 'all_plugins', array( &$this, 'exclude_from_plugins_list' ) );
|
100 |
$allow_edit_users_to_not_super_admin = $this->lib->get_option('allow_edit_users_to_not_super_admin', 0);
|
101 |
if ($allow_edit_users_to_not_super_admin) {
|
@@ -322,18 +327,18 @@ class User_Role_Editor {
|
|
322 |
* @param int $user_id
|
323 |
*
|
324 |
*/
|
325 |
-
public function duplicate_roles_for_new_blog($blog_id
|
326 |
{
|
327 |
|
328 |
global $wpdb, $wp_roles;
|
329 |
|
330 |
// get Id of 1st (main) blog
|
331 |
-
$
|
332 |
-
if (
|
333 |
return;
|
334 |
}
|
335 |
$current_blog = $wpdb->blogid;
|
336 |
-
switch_to_blog($
|
337 |
$main_roles = new WP_Roles(); // get roles from primary blog
|
338 |
$default_role = get_option('default_role'); // get default role from primary blog
|
339 |
switch_to_blog($blog_id); // switch to the new created blog
|
19 |
*/
|
20 |
function __construct($library)
|
21 |
{
|
22 |
+
|
|
|
|
|
|
|
|
|
23 |
// activation action
|
24 |
register_activation_hook(URE_PLUGIN_FULL_PATH, array(&$this, 'setup'));
|
25 |
|
29 |
// get plugin specific library object
|
30 |
$this->lib = $library;
|
31 |
|
32 |
+
// Who may use this plugin
|
33 |
+
$this->key_capability = $this->lib->get_key_capability();
|
34 |
+
|
35 |
+
if ($this->lib->multisite) {
|
36 |
+
// new blog may be registered not at admin back-end only but automatically after new user registration, e.g.
|
37 |
+
// Gravity Forms User Registration Addon does
|
38 |
+
add_action( 'wpmu_new_blog', array( &$this, 'duplicate_roles_for_new_blog'), 10, 2 );
|
39 |
+
}
|
40 |
+
|
41 |
+
if (!is_admin()) {
|
42 |
+
return;
|
43 |
+
}
|
44 |
|
45 |
+
add_action('admin_init', array(&$this, 'plugin_init'), 1);
|
46 |
|
47 |
// Add the translation function after the plugins loaded hook.
|
48 |
add_action('plugins_loaded', array(&$this, 'load_translation'));
|
92 |
add_filter('views_users', array( &$this, 'exclude_admins_view' ) );
|
93 |
}
|
94 |
|
95 |
+
add_action( 'admin_enqueue_scripts', array( &$this, 'admin_load_js' ) );
|
96 |
add_action( 'user_row_actions', array( &$this, 'user_row'), 10, 2 );
|
97 |
+
add_action( 'edit_user_profile', array(&$this, 'edit_user_profile'), 10, 2 );
|
98 |
add_filter( 'manage_users_columns', array(&$this, 'user_role_column'), 10, 5 );
|
99 |
add_filter( 'manage_users_custom_column', array(&$this, 'user_role_row'), 10, 3 );
|
100 |
add_action( 'profile_update', array(&$this, 'user_profile_update'), 10 );
|
101 |
|
102 |
|
103 |
if ($this->lib->multisite) {
|
|
|
104 |
add_filter( 'all_plugins', array( &$this, 'exclude_from_plugins_list' ) );
|
105 |
$allow_edit_users_to_not_super_admin = $this->lib->get_option('allow_edit_users_to_not_super_admin', 0);
|
106 |
if ($allow_edit_users_to_not_super_admin) {
|
327 |
* @param int $user_id
|
328 |
*
|
329 |
*/
|
330 |
+
public function duplicate_roles_for_new_blog($blog_id)
|
331 |
{
|
332 |
|
333 |
global $wpdb, $wp_roles;
|
334 |
|
335 |
// get Id of 1st (main) blog
|
336 |
+
$main_blog_id = $this->lib->get_main_blog_id();
|
337 |
+
if ( empty($main_blog_id) ) {
|
338 |
return;
|
339 |
}
|
340 |
$current_blog = $wpdb->blogid;
|
341 |
+
switch_to_blog( $main_blog_id );
|
342 |
$main_roles = new WP_Roles(); // get roles from primary blog
|
343 |
$default_role = get_option('default_role'); // get default role from primary blog
|
344 |
switch_to_blog($blog_id); // switch to the new created blog
|
includes/define-constants.php
CHANGED
@@ -16,5 +16,5 @@ define('URE_ERROR', 'Error is encountered');
|
|
16 |
define('URE_PRO_VERSION', 0);
|
17 |
|
18 |
define('URE_SPACE_REPLACER', '_URE-SR_');
|
19 |
-
define('URE_PARENT', 'users.php');
|
20 |
define('URE_KEY_CAPABILITY', 'administrator');
|
16 |
define('URE_PRO_VERSION', 0);
|
17 |
|
18 |
define('URE_SPACE_REPLACER', '_URE-SR_');
|
19 |
+
define('URE_PARENT', is_network_admin() ? 'network/users.php':'users.php');
|
20 |
define('URE_KEY_CAPABILITY', 'administrator');
|
includes/ure-role-edit.php
CHANGED
@@ -14,7 +14,7 @@ if (!defined('URE_PLUGIN_URL')) {
|
|
14 |
|
15 |
<div class="has-sidebar-content">
|
16 |
<?php
|
17 |
-
$this->display_box_start(__('Select Role and change its capabilities list', 'ure'), 'min-width:
|
18 |
?>
|
19 |
<div style="float: left;"><?php echo __('Select Role:', 'ure').' '.$this->role_select_html; ?></div>
|
20 |
<?php
|
@@ -41,7 +41,7 @@ if (!defined('URE_PLUGIN_URL')) {
|
|
41 |
</div>
|
42 |
|
43 |
<?php
|
44 |
-
if (is_multisite() && is_main_site( get_current_blog_id() ) && is_super_admin()) {
|
45 |
$hint = __('If checked, then apply action to ALL sites of this Network');
|
46 |
if ($this->apply_to_all) {
|
47 |
$checked = 'checked="checked"';
|
14 |
|
15 |
<div class="has-sidebar-content">
|
16 |
<?php
|
17 |
+
$this->display_box_start(__('Select Role and change its capabilities list', 'ure'), 'min-width:800px;');
|
18 |
?>
|
19 |
<div style="float: left;"><?php echo __('Select Role:', 'ure').' '.$this->role_select_html; ?></div>
|
20 |
<?php
|
41 |
</div>
|
42 |
|
43 |
<?php
|
44 |
+
if (is_multisite() && !is_network_admin() && is_main_site( get_current_blog_id() ) && is_super_admin()) {
|
45 |
$hint = __('If checked, then apply action to ALL sites of this Network');
|
46 |
if ($this->apply_to_all) {
|
47 |
$checked = 'checked="checked"';
|
includes/ure-user-edit.php
CHANGED
@@ -27,7 +27,11 @@ if (!defined('URE_PLUGIN_URL')) {
|
|
27 |
$user_info .= ' ('.$this->user_to_edit->display_name.')';
|
28 |
}
|
29 |
$user_info .= $anchor_end.'</span>';
|
30 |
-
|
|
|
|
|
|
|
|
|
31 |
|
32 |
?>
|
33 |
<table cellpadding="0" cellspacing="0">
|
@@ -86,7 +90,7 @@ if (function_exists('bbp_filter_blog_editable_roles') ) { // bbPress plugin is
|
|
86 |
$you_are_admin = ((defined('URE_SHOW_ADMIN_ROLE') && URE_SHOW_ADMIN_ROLE==1) || $show_admin_role==1) && $this->user_is_admin();
|
87 |
foreach ($this->roles as $role_id => $role) {
|
88 |
if ( ($you_are_admin || $role_id!='administrator') && ($role_id!==$primary_role) ) {
|
89 |
-
if (
|
90 |
$checked = 'checked="checked"';
|
91 |
} else {
|
92 |
$checked = '';
|
@@ -96,7 +100,7 @@ if (function_exists('bbp_filter_blog_editable_roles') ) { // bbPress plugin is
|
|
96 |
__($role['name'], 'ure') . '</label><br />';
|
97 |
}
|
98 |
}
|
99 |
-
?>
|
100 |
</td>
|
101 |
<td style="padding-left: 5px; padding-top: 5px; border-top: 1px solid #ccc;">
|
102 |
<span style="font-weight: bold;"><?php _e('Core capabilities:', 'ure'); ?></span>
|
27 |
$user_info .= ' ('.$this->user_to_edit->display_name.')';
|
28 |
}
|
29 |
$user_info .= $anchor_end.'</span>';
|
30 |
+
if (is_multisite() && is_super_admin($this->user_to_edit->ID)) {
|
31 |
+
$user_info .= ' <span style="font-weight: bold; color:red;">'. esc_html__('Network Super Admin', 'ure') .'</span>';
|
32 |
+
}
|
33 |
+
|
34 |
+
$this->display_box_start(__('Change capabilities for user', 'ure').$user_info, 'min-width:830px;');
|
35 |
|
36 |
?>
|
37 |
<table cellpadding="0" cellspacing="0">
|
90 |
$you_are_admin = ((defined('URE_SHOW_ADMIN_ROLE') && URE_SHOW_ADMIN_ROLE==1) || $show_admin_role==1) && $this->user_is_admin();
|
91 |
foreach ($this->roles as $role_id => $role) {
|
92 |
if ( ($you_are_admin || $role_id!='administrator') && ($role_id!==$primary_role) ) {
|
93 |
+
if ( $this->user_can( $role_id ) ) {
|
94 |
$checked = 'checked="checked"';
|
95 |
} else {
|
96 |
$checked = '';
|
100 |
__($role['name'], 'ure') . '</label><br />';
|
101 |
}
|
102 |
}
|
103 |
+
?>
|
104 |
</td>
|
105 |
<td style="padding-left: 5px; padding-top: 5px; border-top: 1px solid #ccc;">
|
106 |
<span style="font-weight: bold;"><?php _e('Core capabilities:', 'ure'); ?></span>
|
js/ure-js.js
CHANGED
@@ -260,6 +260,7 @@ jQuery("#ure_add_role").button({
|
|
260 |
jQuery("#ure_reset_roles").button({
|
261 |
label: ure_data.reset
|
262 |
}).click(function(){
|
|
|
263 |
if (!confirm( ure_data.reset_warning )) {
|
264 |
return false;
|
265 |
}
|
260 |
jQuery("#ure_reset_roles").button({
|
261 |
label: ure_data.reset
|
262 |
}).click(function(){
|
263 |
+
event.preventDefault();
|
264 |
if (!confirm( ure_data.reset_warning )) {
|
265 |
return false;
|
266 |
}
|
lang/ure-ar.mo
DELETED
Binary file
|
lang/ure-ar.po
DELETED
@@ -1,768 +0,0 @@
|
|
1 |
-
msgid ""
|
2 |
-
msgstr ""
|
3 |
-
"Project-Id-Version: User Role Editor 2.0\n"
|
4 |
-
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2012-09-01 08:44+0700\n"
|
6 |
-
"PO-Revision-Date: \n"
|
7 |
-
"Last-Translator: Yaser Maadan | Englize.com <yaser@englize.com>\n"
|
8 |
-
"Language-Team: Yaser Maadan | Englize.com <yaser@englize.com>\n"
|
9 |
-
"Language: Arabic\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\n"
|
15 |
-
"X-Poedit-Basepath: .\n"
|
16 |
-
"X-Generator: Poedit 1.5.4\n"
|
17 |
-
"X-Poedit-SearchPath-0: ..\n"
|
18 |
-
|
19 |
-
#: ../user-role-editor.php:35
|
20 |
-
msgid "User Role Editor requires WordPress 3.0 or newer."
|
21 |
-
msgstr "هذه الإضافة تتطلب نسخة ووردبريس 3.0 أو احدث"
|
22 |
-
|
23 |
-
#: ../user-role-editor.php:35 ../user-role-editor.php:40
|
24 |
-
msgid "Please update!"
|
25 |
-
msgstr "الرجاء التحديث!"
|
26 |
-
|
27 |
-
#: ../user-role-editor.php:40
|
28 |
-
msgid "User Role Editor requires PHP 5.0 or newer."
|
29 |
-
msgstr "هذه الإضافة تتطلب استخدام بي اتش بي 5.0 أو احدث."
|
30 |
-
|
31 |
-
#: ../user-role-editor.php:76
|
32 |
-
msgid "Only"
|
33 |
-
msgstr "فقط"
|
34 |
-
|
35 |
-
#: ../user-role-editor.php:76
|
36 |
-
msgid "is allowed to use"
|
37 |
-
msgstr "مسموح للأستخدام"
|
38 |
-
|
39 |
-
#: ../user-role-editor.php:82 ../user-role-editor.php:251
|
40 |
-
msgid "User Role Editor"
|
41 |
-
msgstr "محرر دور المستخدم"
|
42 |
-
|
43 |
-
#: ../user-role-editor.php:223
|
44 |
-
msgid "Settings"
|
45 |
-
msgstr "الإعدادات"
|
46 |
-
|
47 |
-
#: ../user-role-editor.php:233 ../includes/ure-options.php:235
|
48 |
-
msgid "Changelog"
|
49 |
-
msgstr "سجل التغييرات"
|
50 |
-
|
51 |
-
#: ../user-role-editor.php:280
|
52 |
-
msgid "Capabilities"
|
53 |
-
msgstr "الامكانيات"
|
54 |
-
|
55 |
-
#: ../includes/ure-lib.php:34
|
56 |
-
msgid "Error is occur. Please check the log file."
|
57 |
-
msgstr "حدث خطأ. الرجاء فحص ملف السجل."
|
58 |
-
|
59 |
-
#: ../includes/ure-lib.php:144
|
60 |
-
msgid "Database operation error. Check log file."
|
61 |
-
msgstr "خطأ في عمليات قاعدة البيانات. الرجاء افحص ملف السجل."
|
62 |
-
|
63 |
-
#: ../includes/ure-lib.php:177
|
64 |
-
msgid ""
|
65 |
-
"No backup data. It is created automatically before the first role data "
|
66 |
-
"update."
|
67 |
-
msgstr "لا نسخ احتياطية متوفرة. لقد انشئت تلقائياً قبل التحديث الأول للدور."
|
68 |
-
|
69 |
-
#: ../includes/ure-lib.php:215
|
70 |
-
msgid "Backup record is created for the current role capabilities"
|
71 |
-
msgstr "سجل النسخة الاحتياطية تم انشاءه لقدرات الدور الحالية"
|
72 |
-
|
73 |
-
#: ../includes/ure-lib.php:329
|
74 |
-
msgid "Error: Role name must contain latin characters and digits only!"
|
75 |
-
msgstr "خطأ: اسم الدور يجب أن يحتوي على حروف لاتينية وأرقام فقط!"
|
76 |
-
|
77 |
-
#: ../includes/ure-lib.php:336
|
78 |
-
#, php-format
|
79 |
-
msgid "Role %s exists already"
|
80 |
-
msgstr "الدور %s موجود أصلاً"
|
81 |
-
|
82 |
-
#: ../includes/ure-lib.php:349
|
83 |
-
msgid "Error is encountered during new role create operation"
|
84 |
-
msgstr "حدث خطأ اثناء عملية إنشاء دور جديد"
|
85 |
-
|
86 |
-
#: ../includes/ure-lib.php:351
|
87 |
-
#, php-format
|
88 |
-
msgid "Role %s is created successfully"
|
89 |
-
msgstr "الدور %s تم انشاءه بنجاح"
|
90 |
-
|
91 |
-
#: ../includes/ure-lib.php:435
|
92 |
-
msgid "Error encountered during role delete operation"
|
93 |
-
msgstr "حدث خطأ اثناء عملية حذف الدور"
|
94 |
-
|
95 |
-
#: ../includes/ure-lib.php:437
|
96 |
-
#, php-format
|
97 |
-
msgid "Role %s is deleted successfully"
|
98 |
-
msgstr "الدور %s تم حذفه بنجاح"
|
99 |
-
|
100 |
-
#: ../includes/ure-lib.php:455
|
101 |
-
msgid "Error encountered during default role change operation"
|
102 |
-
msgstr "هناك خطأ اثناء محاولة وضع الدور الافتراضي"
|
103 |
-
|
104 |
-
#: ../includes/ure-lib.php:461
|
105 |
-
#, php-format
|
106 |
-
msgid "Default role for new users is set to %s successfully"
|
107 |
-
msgstr "الدور الافتراضي للمستخدمين الجدد تم وضعه على %s بنجاح"
|
108 |
-
|
109 |
-
#: ../includes/ure-lib.php:489
|
110 |
-
msgid "Editor"
|
111 |
-
msgstr "محرر"
|
112 |
-
|
113 |
-
#: ../includes/ure-lib.php:490
|
114 |
-
msgid "Author"
|
115 |
-
msgstr "كاتب"
|
116 |
-
|
117 |
-
#: ../includes/ure-lib.php:491
|
118 |
-
msgid "Contributor"
|
119 |
-
msgstr "مساهم"
|
120 |
-
|
121 |
-
#: ../includes/ure-lib.php:492
|
122 |
-
msgid "Subscriber"
|
123 |
-
msgstr "مشترك"
|
124 |
-
|
125 |
-
#: ../includes/ure-lib.php:494
|
126 |
-
msgid "Switch themes"
|
127 |
-
msgstr "تبديل القوالب"
|
128 |
-
|
129 |
-
#: ../includes/ure-lib.php:495
|
130 |
-
msgid "Edit themes"
|
131 |
-
msgstr "تحرير القوالب"
|
132 |
-
|
133 |
-
#: ../includes/ure-lib.php:496
|
134 |
-
msgid "Activate plugins"
|
135 |
-
msgstr "تنشيط الإضافات"
|
136 |
-
|
137 |
-
#: ../includes/ure-lib.php:497
|
138 |
-
msgid "Edit plugins"
|
139 |
-
msgstr "تحرير الاضافات"
|
140 |
-
|
141 |
-
#: ../includes/ure-lib.php:498
|
142 |
-
msgid "Edit users"
|
143 |
-
msgstr "تحرير المستخدمين"
|
144 |
-
|
145 |
-
#: ../includes/ure-lib.php:499
|
146 |
-
msgid "Edit files"
|
147 |
-
msgstr "تحرير الملفات"
|
148 |
-
|
149 |
-
#: ../includes/ure-lib.php:500
|
150 |
-
msgid "Manage options"
|
151 |
-
msgstr "إدارة الخيارات"
|
152 |
-
|
153 |
-
#: ../includes/ure-lib.php:501
|
154 |
-
msgid "Moderate comments"
|
155 |
-
msgstr "ادارة التعليقات"
|
156 |
-
|
157 |
-
#: ../includes/ure-lib.php:502
|
158 |
-
msgid "Manage categories"
|
159 |
-
msgstr "ادارة الأقسام"
|
160 |
-
|
161 |
-
#: ../includes/ure-lib.php:503
|
162 |
-
msgid "Manage links"
|
163 |
-
msgstr "ادارة الروابط"
|
164 |
-
|
165 |
-
#: ../includes/ure-lib.php:504
|
166 |
-
msgid "Upload files"
|
167 |
-
msgstr "رفع الملفات"
|
168 |
-
|
169 |
-
#: ../includes/ure-lib.php:505
|
170 |
-
msgid "Import"
|
171 |
-
msgstr "استيراد"
|
172 |
-
|
173 |
-
#: ../includes/ure-lib.php:506
|
174 |
-
msgid "Unfiltered html"
|
175 |
-
msgstr "هتمل غير مفلتر"
|
176 |
-
|
177 |
-
#: ../includes/ure-lib.php:507
|
178 |
-
msgid "Edit posts"
|
179 |
-
msgstr "تحرير التدوينات"
|
180 |
-
|
181 |
-
#: ../includes/ure-lib.php:508
|
182 |
-
msgid "Edit others posts"
|
183 |
-
msgstr "تحرير تدوينات الغير"
|
184 |
-
|
185 |
-
#: ../includes/ure-lib.php:509
|
186 |
-
msgid "Edit published posts"
|
187 |
-
msgstr "تحرير التدوينات المنشورة"
|
188 |
-
|
189 |
-
#: ../includes/ure-lib.php:510
|
190 |
-
msgid "Publish posts"
|
191 |
-
msgstr "نشر التدوينات"
|
192 |
-
|
193 |
-
#: ../includes/ure-lib.php:511
|
194 |
-
msgid "Edit pages"
|
195 |
-
msgstr "تحرير الصفحات"
|
196 |
-
|
197 |
-
#: ../includes/ure-lib.php:512
|
198 |
-
msgid "Read"
|
199 |
-
msgstr "قراءة"
|
200 |
-
|
201 |
-
#: ../includes/ure-lib.php:513
|
202 |
-
msgid "Level 10"
|
203 |
-
msgstr "المستوى 10"
|
204 |
-
|
205 |
-
#: ../includes/ure-lib.php:514
|
206 |
-
msgid "Level 9"
|
207 |
-
msgstr "مستوى 9"
|
208 |
-
|
209 |
-
#: ../includes/ure-lib.php:515
|
210 |
-
msgid "Level 8"
|
211 |
-
msgstr "مستوى 8"
|
212 |
-
|
213 |
-
#: ../includes/ure-lib.php:516
|
214 |
-
msgid "Level 7"
|
215 |
-
msgstr "مستوى 7"
|
216 |
-
|
217 |
-
#: ../includes/ure-lib.php:517
|
218 |
-
msgid "Level 6"
|
219 |
-
msgstr "مستوى 6"
|
220 |
-
|
221 |
-
#: ../includes/ure-lib.php:518
|
222 |
-
msgid "Level 5"
|
223 |
-
msgstr "مستوى 5"
|
224 |
-
|
225 |
-
#: ../includes/ure-lib.php:519
|
226 |
-
msgid "Level 4"
|
227 |
-
msgstr "مستوى 4"
|
228 |
-
|
229 |
-
#: ../includes/ure-lib.php:520
|
230 |
-
msgid "Level 3"
|
231 |
-
msgstr "مستوى 3"
|
232 |
-
|
233 |
-
#: ../includes/ure-lib.php:521
|
234 |
-
msgid "Level 2"
|
235 |
-
msgstr "مستوى 2"
|
236 |
-
|
237 |
-
#: ../includes/ure-lib.php:522
|
238 |
-
msgid "Level 1"
|
239 |
-
msgstr "مستوى 1"
|
240 |
-
|
241 |
-
#: ../includes/ure-lib.php:523
|
242 |
-
msgid "Level 0"
|
243 |
-
msgstr "مستوى 0"
|
244 |
-
|
245 |
-
#: ../includes/ure-lib.php:524
|
246 |
-
msgid "Edit others pages"
|
247 |
-
msgstr "تحرير صفحات الغير"
|
248 |
-
|
249 |
-
#: ../includes/ure-lib.php:525
|
250 |
-
msgid "Edit published pages"
|
251 |
-
msgstr "تحرير الصفحات المنشورة"
|
252 |
-
|
253 |
-
#: ../includes/ure-lib.php:526
|
254 |
-
msgid "Publish pages"
|
255 |
-
msgstr "نشر الصفحات"
|
256 |
-
|
257 |
-
#: ../includes/ure-lib.php:527
|
258 |
-
msgid "Delete pages"
|
259 |
-
msgstr "حذف الصفحات"
|
260 |
-
|
261 |
-
#: ../includes/ure-lib.php:528
|
262 |
-
msgid "Delete others pages"
|
263 |
-
msgstr "حذف صفحات الغير"
|
264 |
-
|
265 |
-
#: ../includes/ure-lib.php:529
|
266 |
-
msgid "Delete published pages"
|
267 |
-
msgstr "حذف الصفحات المنشورة"
|
268 |
-
|
269 |
-
#: ../includes/ure-lib.php:530
|
270 |
-
msgid "Delete posts"
|
271 |
-
msgstr "حذف التدوينات"
|
272 |
-
|
273 |
-
#: ../includes/ure-lib.php:531
|
274 |
-
msgid "Delete others posts"
|
275 |
-
msgstr "حذف تدوينات الغير"
|
276 |
-
|
277 |
-
#: ../includes/ure-lib.php:532
|
278 |
-
msgid "Delete published posts"
|
279 |
-
msgstr "حذف التدوينات المنشورة"
|
280 |
-
|
281 |
-
#: ../includes/ure-lib.php:533
|
282 |
-
msgid "Delete private posts"
|
283 |
-
msgstr "حذف التدوينات الخاصة"
|
284 |
-
|
285 |
-
#: ../includes/ure-lib.php:534
|
286 |
-
msgid "Edit private posts"
|
287 |
-
msgstr "تحرير التدوينات الخاصة"
|
288 |
-
|
289 |
-
#: ../includes/ure-lib.php:535
|
290 |
-
msgid "Read private posts"
|
291 |
-
msgstr "قراءة التدوينات الخاصة"
|
292 |
-
|
293 |
-
#: ../includes/ure-lib.php:536
|
294 |
-
msgid "Delete private pages"
|
295 |
-
msgstr "حذف الصفحات الخاصة"
|
296 |
-
|
297 |
-
#: ../includes/ure-lib.php:537
|
298 |
-
msgid "Edit private pages"
|
299 |
-
msgstr "تحرير الصفحات الخاصة"
|
300 |
-
|
301 |
-
#: ../includes/ure-lib.php:538
|
302 |
-
msgid "Read private pages"
|
303 |
-
msgstr "قراءة الصفحات الخاصة"
|
304 |
-
|
305 |
-
#: ../includes/ure-lib.php:539
|
306 |
-
msgid "Delete users"
|
307 |
-
msgstr "حذف المستخدمين"
|
308 |
-
|
309 |
-
#: ../includes/ure-lib.php:540
|
310 |
-
msgid "Create users"
|
311 |
-
msgstr "إنشاء المستخدمين"
|
312 |
-
|
313 |
-
#: ../includes/ure-lib.php:541
|
314 |
-
msgid "Unfiltered upload"
|
315 |
-
msgstr "الرفع غير المفلتر"
|
316 |
-
|
317 |
-
#: ../includes/ure-lib.php:542
|
318 |
-
msgid "Edit dashboard"
|
319 |
-
msgstr "تحرير واجهة لوحة التحكم"
|
320 |
-
|
321 |
-
#: ../includes/ure-lib.php:543
|
322 |
-
msgid "Update plugins"
|
323 |
-
msgstr "تحديث الإضافات"
|
324 |
-
|
325 |
-
#: ../includes/ure-lib.php:544
|
326 |
-
msgid "Delete plugins"
|
327 |
-
msgstr "حذف الإضافات"
|
328 |
-
|
329 |
-
#: ../includes/ure-lib.php:545
|
330 |
-
msgid "Install plugins"
|
331 |
-
msgstr "تنصيب الإضافات"
|
332 |
-
|
333 |
-
#: ../includes/ure-lib.php:546
|
334 |
-
msgid "Update themes"
|
335 |
-
msgstr "تحديث القوالب"
|
336 |
-
|
337 |
-
#: ../includes/ure-lib.php:547
|
338 |
-
msgid "Install themes"
|
339 |
-
msgstr "تنصيب القوالب"
|
340 |
-
|
341 |
-
#: ../includes/ure-lib.php:548
|
342 |
-
msgid "Update core"
|
343 |
-
msgstr "تحديث ووردبريس"
|
344 |
-
|
345 |
-
#: ../includes/ure-lib.php:549
|
346 |
-
msgid "List users"
|
347 |
-
msgstr "قائمة المستخدمين"
|
348 |
-
|
349 |
-
#: ../includes/ure-lib.php:550
|
350 |
-
msgid "Remove users"
|
351 |
-
msgstr "إزالة المستخدمين"
|
352 |
-
|
353 |
-
#: ../includes/ure-lib.php:551
|
354 |
-
msgid "Add users"
|
355 |
-
msgstr "إضافة مستخدمين"
|
356 |
-
|
357 |
-
#: ../includes/ure-lib.php:552
|
358 |
-
msgid "Promote users"
|
359 |
-
msgstr "ترقيّة مستخدمين"
|
360 |
-
|
361 |
-
#: ../includes/ure-lib.php:553
|
362 |
-
msgid "Edit theme options"
|
363 |
-
msgstr "تحرير خيارات القالب"
|
364 |
-
|
365 |
-
#: ../includes/ure-lib.php:554
|
366 |
-
msgid "Delete themes"
|
367 |
-
msgstr "حذف القوالب"
|
368 |
-
|
369 |
-
#: ../includes/ure-lib.php:555
|
370 |
-
msgid "Export"
|
371 |
-
msgstr "تصدير"
|
372 |
-
|
373 |
-
#: ../includes/ure-lib.php:639
|
374 |
-
msgid "Error: Capability name must contain latin characters and digits only!"
|
375 |
-
msgstr "خطأ: الإسم يجب أن يحتوي على أحرف لاتينية وأرقام فقط!"
|
376 |
-
|
377 |
-
#: ../includes/ure-lib.php:651
|
378 |
-
#, php-format
|
379 |
-
msgid "Capability %s is added successfully"
|
380 |
-
msgstr "القدرة %s تمت اضافتها بنجاح"
|
381 |
-
|
382 |
-
#: ../includes/ure-lib.php:653
|
383 |
-
#, php-format
|
384 |
-
msgid "Capability %s exists already"
|
385 |
-
msgstr "القدرة %s موجودة أصلاً"
|
386 |
-
|
387 |
-
#: ../includes/ure-lib.php:802
|
388 |
-
#, php-format
|
389 |
-
msgid "Error! You do not have permission to delete this capability: %s!"
|
390 |
-
msgstr "خطأ! ليست لديك الصلاحيّة لحذف هذه القدرة: %s!"
|
391 |
-
|
392 |
-
#: ../includes/ure-lib.php:824
|
393 |
-
#, php-format
|
394 |
-
msgid "Capability %s is removed successfully"
|
395 |
-
msgstr "القدرة %s تم حذفها بنجاح"
|
396 |
-
|
397 |
-
#: ../includes/ure-lib.php:889
|
398 |
-
msgid "Help"
|
399 |
-
msgstr "مساعدة"
|
400 |
-
|
401 |
-
#: ../includes/ure-role-edit.php:29
|
402 |
-
msgid "None"
|
403 |
-
msgstr "لا شيء"
|
404 |
-
|
405 |
-
#: ../includes/ure-role-edit.php:101
|
406 |
-
msgid " Name can not be empty!"
|
407 |
-
msgstr "الإسم لا يمكن أن يكون فارغاً!"
|
408 |
-
|
409 |
-
#: ../includes/ure-role-edit.php:105
|
410 |
-
msgid " Name must contain latin characters and digits only!"
|
411 |
-
msgstr "الإسم يجب أن يحتوي على أحرف لاتينية وأرقام فقط!"
|
412 |
-
|
413 |
-
#: ../includes/ure-role-edit.php:110 ../includes/ure-role-edit.php:367
|
414 |
-
msgid "Delete Role"
|
415 |
-
msgstr "حذف الدور"
|
416 |
-
|
417 |
-
#: ../includes/ure-role-edit.php:112
|
418 |
-
msgid "Change Default Role"
|
419 |
-
msgstr "تغيير الدور الافتراضي"
|
420 |
-
|
421 |
-
#: ../includes/ure-role-edit.php:114
|
422 |
-
msgid ""
|
423 |
-
"Restore Roles from backup copy. Be careful, backup was created when you "
|
424 |
-
"started URE 1st time. All changes you made after that will be lost"
|
425 |
-
msgstr ""
|
426 |
-
"استعادة الأدوار من نسخة احتياطية. كن حذراً، النسخة الإحتياطية تم إنشاؤها "
|
427 |
-
"عندما بدأت بإستخدام الإضافة لأول مرة. كل التغييرات التي حصلت بعد هذا سوف تضيع"
|
428 |
-
|
429 |
-
#: ../includes/ure-role-edit.php:116
|
430 |
-
msgid ""
|
431 |
-
"Warning! Be careful - removing critical capability could crash some plugin "
|
432 |
-
"or other custom code"
|
433 |
-
msgstr ""
|
434 |
-
"تحذير! كن حذراً - إزالة القدرات المهمة قد تدمر بعض الخصائص والأكواد الإضافية"
|
435 |
-
|
436 |
-
#: ../includes/ure-role-edit.php:118
|
437 |
-
msgid "Please confirm to continue"
|
438 |
-
msgstr "الرجاء التأكيد لإكمال العملية"
|
439 |
-
|
440 |
-
#: ../includes/ure-role-edit.php:155
|
441 |
-
#, php-format
|
442 |
-
msgid "Role \"%s\" update: please confirm to continue"
|
443 |
-
msgstr "تحديث الدور \"%s\" : الرجاء التأكيد لإكمال العملية"
|
444 |
-
|
445 |
-
#: ../includes/ure-role-edit.php:163
|
446 |
-
msgid "Select Role and change its capabilities list"
|
447 |
-
msgstr "اختر الدور و غيّر قائمة قدراته"
|
448 |
-
|
449 |
-
#: ../includes/ure-role-edit.php:165
|
450 |
-
msgid "Select Role:"
|
451 |
-
msgstr "احتر الدور:"
|
452 |
-
|
453 |
-
#: ../includes/ure-role-edit.php:175 ../includes/ure-user-edit.php:91
|
454 |
-
msgid "Show capabilities in human readable form"
|
455 |
-
msgstr "عرض القدرات بطريقة سهلة القراءة للمستخدمين"
|
456 |
-
|
457 |
-
#: ../includes/ure-role-edit.php:184 ../includes/ure-user-edit.php:100
|
458 |
-
msgid "Show deprecated capabilities"
|
459 |
-
msgstr "عرض القدرات المنتقصة"
|
460 |
-
|
461 |
-
#: ../includes/ure-role-edit.php:188
|
462 |
-
msgid "If checked, then apply action to ALL sites of this Network"
|
463 |
-
msgstr "اذا أخترت، إذن طبق العملية على كل المواقع في الشبكة"
|
464 |
-
|
465 |
-
#: ../includes/ure-role-edit.php:198
|
466 |
-
msgid "Apply to All Sites"
|
467 |
-
msgstr "طبق على كل المواقع"
|
468 |
-
|
469 |
-
#: ../includes/ure-role-edit.php:205 ../includes/ure-user-edit.php:105
|
470 |
-
msgid "Core capabilities:"
|
471 |
-
msgstr "قدرات اساسية:"
|
472 |
-
|
473 |
-
#: ../includes/ure-role-edit.php:268 ../includes/ure-user-edit.php:167
|
474 |
-
msgid "Custom capabilities:"
|
475 |
-
msgstr "قدرات مخصصة:"
|
476 |
-
|
477 |
-
#: ../includes/ure-role-edit.php:319 ../includes/ure-user-edit.php:222
|
478 |
-
msgid "Update"
|
479 |
-
msgstr "تحديث"
|
480 |
-
|
481 |
-
#: ../includes/ure-role-edit.php:319 ../includes/ure-user-edit.php:222
|
482 |
-
msgid "Save Changes"
|
483 |
-
msgstr "حفظ التغييرات"
|
484 |
-
|
485 |
-
#: ../includes/ure-role-edit.php:320 ../includes/ure-user-edit.php:223
|
486 |
-
msgid "Cancel"
|
487 |
-
msgstr "إلغاء"
|
488 |
-
|
489 |
-
#: ../includes/ure-role-edit.php:320 ../includes/ure-user-edit.php:223
|
490 |
-
msgid "Cancel not saved changes"
|
491 |
-
msgstr "إلغاء التغييرات غير المحفوظة"
|
492 |
-
|
493 |
-
#: ../includes/ure-role-edit.php:323
|
494 |
-
msgid "Select All"
|
495 |
-
msgstr "اختر الكل"
|
496 |
-
|
497 |
-
#: ../includes/ure-role-edit.php:323
|
498 |
-
msgid "Select All Capabilities"
|
499 |
-
msgstr "اختر كافة القدرات"
|
500 |
-
|
501 |
-
#: ../includes/ure-role-edit.php:327
|
502 |
-
msgid "Unselect All"
|
503 |
-
msgstr "إلغاء اختيار الكل"
|
504 |
-
|
505 |
-
#: ../includes/ure-role-edit.php:327
|
506 |
-
msgid "Unselect All Capabilities"
|
507 |
-
msgstr "إلغاء اختيار كافة القدرات"
|
508 |
-
|
509 |
-
#: ../includes/ure-role-edit.php:328
|
510 |
-
msgid "Reverse"
|
511 |
-
msgstr "عكس"
|
512 |
-
|
513 |
-
#: ../includes/ure-role-edit.php:328
|
514 |
-
msgid "Turn checked capabilities off and vise versa"
|
515 |
-
msgstr "إقلب القدرات المُختارة العكس بالعكس"
|
516 |
-
|
517 |
-
#: ../includes/ure-role-edit.php:334
|
518 |
-
msgid "Reset"
|
519 |
-
msgstr "إعادة"
|
520 |
-
|
521 |
-
#: ../includes/ure-role-edit.php:334
|
522 |
-
msgid "Restore Roles from backup copy"
|
523 |
-
msgstr "استعادة الادوار من نسخة احتياطية"
|
524 |
-
|
525 |
-
#: ../includes/ure-role-edit.php:344
|
526 |
-
msgid "Add New Role"
|
527 |
-
msgstr "اضف دور جديد"
|
528 |
-
|
529 |
-
#: ../includes/ure-role-edit.php:346
|
530 |
-
msgid "Name: "
|
531 |
-
msgstr "الاسم:"
|
532 |
-
|
533 |
-
#: ../includes/ure-role-edit.php:350
|
534 |
-
msgid "Make copy of: "
|
535 |
-
msgstr "خذ نسخة من:"
|
536 |
-
|
537 |
-
#: ../includes/ure-role-edit.php:353 ../includes/ure-role-edit.php:382
|
538 |
-
msgid "Add"
|
539 |
-
msgstr "اضف"
|
540 |
-
|
541 |
-
#: ../includes/ure-role-edit.php:353
|
542 |
-
msgid "Add New User Role"
|
543 |
-
msgstr "اضافة دور لمستخدم جديد"
|
544 |
-
|
545 |
-
#: ../includes/ure-role-edit.php:357
|
546 |
-
msgid "Default Role for New User"
|
547 |
-
msgstr "الدور الافتراضي للمستخدم الجديد"
|
548 |
-
|
549 |
-
#: ../includes/ure-role-edit.php:362
|
550 |
-
msgid "Change"
|
551 |
-
msgstr "تغيير"
|
552 |
-
|
553 |
-
#: ../includes/ure-role-edit.php:362
|
554 |
-
msgid "Set as Default User Role"
|
555 |
-
msgstr "اجعله كـدور افتراضي للمستخدم"
|
556 |
-
|
557 |
-
#: ../includes/ure-role-edit.php:372
|
558 |
-
msgid "Delete"
|
559 |
-
msgstr "حذف"
|
560 |
-
|
561 |
-
#: ../includes/ure-role-edit.php:372
|
562 |
-
msgid "Delete User Role"
|
563 |
-
msgstr "حذف دور المستخدم"
|
564 |
-
|
565 |
-
#: ../includes/ure-role-edit.php:377 ../includes/ure-role-edit.php:382
|
566 |
-
msgid "Add New Capability"
|
567 |
-
msgstr "إضافة قدرة جديدة"
|
568 |
-
|
569 |
-
#: ../includes/ure-role-edit.php:387
|
570 |
-
msgid "Remove Capability"
|
571 |
-
msgstr "أزالة القدرات"
|
572 |
-
|
573 |
-
#: ../includes/ure-role-edit.php:392
|
574 |
-
msgid "Remove"
|
575 |
-
msgstr "إزالة"
|
576 |
-
|
577 |
-
#: ../includes/ure-role-edit.php:392
|
578 |
-
msgid "Remove User Capability"
|
579 |
-
msgstr "إزالة قدرات المستخدم"
|
580 |
-
|
581 |
-
#: ../includes/ure-user-edit.php:67
|
582 |
-
#, php-format
|
583 |
-
msgid "User \"%s\" update: please confirm to continue"
|
584 |
-
msgstr "تحديث \"%s\" المستخدم: الرجاء التأكيد لإكمال العملية"
|
585 |
-
|
586 |
-
#: ../includes/ure-user-edit.php:79
|
587 |
-
msgid "Change capabilities for user"
|
588 |
-
msgstr "تغيير القدرات لهذا المستخدم"
|
589 |
-
|
590 |
-
#: ../includes/ure-user-edit.php:82
|
591 |
-
msgid "Role:"
|
592 |
-
msgstr "دور:"
|
593 |
-
|
594 |
-
#: ../includes/ure-user-edit.php:104
|
595 |
-
msgid "Add capabilities to this user:"
|
596 |
-
msgstr "أضف قدرات الى هذا المستخدم:"
|
597 |
-
|
598 |
-
#: ../includes/ure-options.php:59
|
599 |
-
msgid "User Roles are restored from the backup data. "
|
600 |
-
msgstr "أدوار المستخدمين ام استعادتها من النسخة الاحتياطية."
|
601 |
-
|
602 |
-
#: ../includes/ure-options.php:130
|
603 |
-
msgid "Error: "
|
604 |
-
msgstr "خطأ"
|
605 |
-
|
606 |
-
#: ../includes/ure-options.php:130 ../includes/ure-options.php:146
|
607 |
-
msgid "Role"
|
608 |
-
msgstr "دور"
|
609 |
-
|
610 |
-
#: ../includes/ure-options.php:130
|
611 |
-
msgid "does not exist"
|
612 |
-
msgstr "غير موجود"
|
613 |
-
|
614 |
-
#: ../includes/ure-options.php:146
|
615 |
-
msgid "is updated successfully"
|
616 |
-
msgstr "تم تحديثه بنجاح"
|
617 |
-
|
618 |
-
#: ../includes/ure-options.php:154
|
619 |
-
msgid "User"
|
620 |
-
msgstr "مستخدم"
|
621 |
-
|
622 |
-
#: ../includes/ure-options.php:154
|
623 |
-
msgid "capabilities are updated successfully"
|
624 |
-
msgstr "تم تحديث القدرات بنجاح"
|
625 |
-
|
626 |
-
#: ../includes/ure-options.php:232
|
627 |
-
msgid "About this Plugin:"
|
628 |
-
msgstr "عن الإضافة:"
|
629 |
-
|
630 |
-
#: ../includes/ure-options.php:233
|
631 |
-
msgid "Author's website"
|
632 |
-
msgstr "موقع المؤلف"
|
633 |
-
|
634 |
-
#: ../includes/ure-options.php:234
|
635 |
-
msgid "Plugin webpage"
|
636 |
-
msgstr "صفحة الإضافة"
|
637 |
-
|
638 |
-
#: ../includes/ure-options.php:236
|
639 |
-
msgid "FAQ"
|
640 |
-
msgstr "الأسئلة الشائعة"
|
641 |
-
|
642 |
-
#: ../includes/ure-options.php:237
|
643 |
-
msgid "Greetings"
|
644 |
-
msgstr "التحيات"
|
645 |
-
|
646 |
-
#: ../includes/ure-options.php:259
|
647 |
-
msgid "Greetings:"
|
648 |
-
msgstr "التحيات:"
|
649 |
-
|
650 |
-
#: ../includes/ure-options.php:260
|
651 |
-
msgid "It's me, the author"
|
652 |
-
msgstr "هذا أنا، المؤلف"
|
653 |
-
|
654 |
-
# لا توجد جدوى من ترجمة هذه العبارة والأفضل جعلها كما هي لتفيد غير المتحدثين باللغة العربية نحو لغات أخرى.
|
655 |
-
#: ../includes/ure-options.php:261
|
656 |
-
msgid "For the help with Belorussian translation"
|
657 |
-
msgstr "For the help with Belorussian translation"
|
658 |
-
|
659 |
-
# لا توجد جدوى من ترجمة هذه العبارة والأفضل جعلها كما هي لتفيد غير المتحدثين باللغة العربية نحو لغات أخرى.
|
660 |
-
#: ../includes/ure-options.php:262
|
661 |
-
msgid "For the help with Brasilian translation"
|
662 |
-
msgstr "For the help with Brasilian translation"
|
663 |
-
|
664 |
-
# لا توجد جدوى من ترجمة هذه العبارة والأفضل جعلها كما هي لتفيد غير المتحدثين باللغة العربية نحو لغات أخرى.
|
665 |
-
#: ../includes/ure-options.php:263
|
666 |
-
msgid "For the help with Brasilian Portuguese translation"
|
667 |
-
msgstr "For the help with Brasilian Portuguese translation"
|
668 |
-
|
669 |
-
# لا توجد جدوى من ترجمة هذه العبارة والأفضل جعلها كما هي لتفيد غير المتحدثين باللغة العربية نحو لغات أخرى.
|
670 |
-
#: ../includes/ure-options.php:264
|
671 |
-
msgid "For the help with Chinese translation"
|
672 |
-
msgstr "For the help with Chinese translation"
|
673 |
-
|
674 |
-
# لا توجد جدوى من ترجمة هذه العبارة والأفضل جعلها كما هي لتفيد غير المتحدثين باللغة العربية نحو لغات أخرى.
|
675 |
-
#: ../includes/ure-options.php:265
|
676 |
-
msgid "For the help with Dutch translation"
|
677 |
-
msgstr "For the help with Dutch translation"
|
678 |
-
|
679 |
-
# لا توجد جدوى من ترجمة هذه العبارة والأفضل جعلها كما هي لتفيد غير المتحدثين باللغة العربية نحو لغات أخرى.
|
680 |
-
#: ../includes/ure-options.php:266
|
681 |
-
msgid "For the help with Finnish translation"
|
682 |
-
msgstr "For the help with Finnish translation"
|
683 |
-
|
684 |
-
# لا توجد جدوى من ترجمة هذه العبارة والأفضل جعلها كما هي لتفيد غير المتحدثين باللغة العربية نحو لغات أخرى.
|
685 |
-
#: ../includes/ure-options.php:267 ../includes/ure-options.php:268
|
686 |
-
msgid "For the help with French translation"
|
687 |
-
msgstr "For the help with French translation"
|
688 |
-
|
689 |
-
# لا توجد جدوى من ترجمة هذه العبارة والأفضل جعلها كما هي لتفيد غير المتحدثين باللغة العربية نحو لغات أخرى.
|
690 |
-
#: ../includes/ure-options.php:269
|
691 |
-
msgid "For the help with German translation"
|
692 |
-
msgstr "For the help with German translation"
|
693 |
-
|
694 |
-
# لا توجد جدوى من ترجمة هذه العبارة والأفضل جعلها كما هي لتفيد غير المتحدثين باللغة العربية نحو لغات أخرى.
|
695 |
-
#: ../includes/ure-options.php:270 ../includes/ure-options.php:271
|
696 |
-
msgid "For the help with Hebrew translation"
|
697 |
-
msgstr "For the help with Hebrew translation"
|
698 |
-
|
699 |
-
# لا توجد جدوى من ترجمة هذه العبارة والأفضل جعلها كما هي لتفيد غير المتحدثين باللغة العربية نحو لغات أخرى.
|
700 |
-
#: ../includes/ure-options.php:272
|
701 |
-
msgid "For the help with Hindi translation"
|
702 |
-
msgstr "For the help with Hindi translation"
|
703 |
-
|
704 |
-
# لا توجد جدوى من ترجمة هذه العبارة والأفضل جعلها كما هي لتفيد غير المتحدثين باللغة العربية نحو لغات أخرى.
|
705 |
-
#: ../includes/ure-options.php:273
|
706 |
-
msgid "For the help with Hungarian translation"
|
707 |
-
msgstr "For the help with Hungarian translation"
|
708 |
-
|
709 |
-
# لا توجد جدوى من ترجمة هذه العبارة والأفضل جعلها كما هي لتفيد غير المتحدثين باللغة العربية نحو لغات أخرى.
|
710 |
-
#: ../includes/ure-options.php:274 ../includes/ure-options.php:275
|
711 |
-
msgid "For the help with Italian translation"
|
712 |
-
msgstr "For the help with Italian translation"
|
713 |
-
|
714 |
-
# لا توجد جدوى من ترجمة هذه العبارة والأفضل جعلها كما هي لتفيد غير المتحدثين باللغة العربية نحو لغات أخرى.
|
715 |
-
#: ../includes/ure-options.php:276
|
716 |
-
msgid "For the help with Japanese translation"
|
717 |
-
msgstr "For the help with Japanese translation"
|
718 |
-
|
719 |
-
# لا توجد جدوى من ترجمة هذه العبارة والأفضل جعلها كما هي لتفيد غير المتحدثين باللغة العربية نحو لغات أخرى.
|
720 |
-
#: ../includes/ure-options.php:277
|
721 |
-
msgid "For the help with Lithuanian translation"
|
722 |
-
msgstr "For the help with Lithuanian translation"
|
723 |
-
|
724 |
-
# لا توجد جدوى من ترجمة هذه العبارة والأفضل جعلها كما هي لتفيد غير المتحدثين باللغة العربية نحو لغات أخرى.
|
725 |
-
#: ../includes/ure-options.php:278 ../includes/ure-options.php:279
|
726 |
-
#: ../includes/ure-options.php:280
|
727 |
-
msgid "For the help with Persian translation"
|
728 |
-
msgstr "For the help with Persian translation"
|
729 |
-
|
730 |
-
# لا توجد جدوى من ترجمة هذه العبارة والأفضل جعلها كما هي لتفيد غير المتحدثين باللغة العربية نحو لغات أخرى.
|
731 |
-
#: ../includes/ure-options.php:281 ../includes/ure-options.php:282
|
732 |
-
msgid "For the help with Polish translation"
|
733 |
-
msgstr "For the help with Polish translation"
|
734 |
-
|
735 |
-
# لا توجد جدوى من ترجمة هذه العبارة والأفضل جعلها كما هي لتفيد غير المتحدثين باللغة العربية نحو لغات أخرى.
|
736 |
-
#: ../includes/ure-options.php:283 ../includes/ure-options.php:284
|
737 |
-
msgid "For the help with Spanish translation"
|
738 |
-
msgstr "For the help with Spanish translation"
|
739 |
-
|
740 |
-
# لا توجد جدوى من ترجمة هذه العبارة والأفضل جعلها كما هي لتفيد غير المتحدثين باللغة العربية نحو لغات أخرى.
|
741 |
-
#: ../includes/ure-options.php:285
|
742 |
-
msgid "For the updated Swedish translation"
|
743 |
-
msgstr "For the updated Swedish translation"
|
744 |
-
|
745 |
-
# لا توجد جدوى من ترجمة هذه العبارة والأفضل جعلها كما هي لتفيد غير المتحدثين باللغة العربية نحو لغات أخرى.
|
746 |
-
#: ../includes/ure-options.php:286
|
747 |
-
msgid "For the help with Swedish translation"
|
748 |
-
msgstr "For the help with Swedish translation"
|
749 |
-
|
750 |
-
#: ../includes/ure-options.php:287
|
751 |
-
msgid "For the help with Turkish translation"
|
752 |
-
msgstr "For the help with Turkish translation"
|
753 |
-
|
754 |
-
#: ../includes/ure-options.php:289
|
755 |
-
msgid "For the code to hide administrator role"
|
756 |
-
msgstr "إخفاء دور المدير"
|
757 |
-
|
758 |
-
#: ../includes/ure-options.php:290
|
759 |
-
msgid "For the code enhancement suggestion"
|
760 |
-
msgstr "الإقتراحات التعزيزية"
|
761 |
-
|
762 |
-
#: ../includes/ure-options.php:292
|
763 |
-
msgid ""
|
764 |
-
"Do you wish to see your name with link to your site here? You are welcome! "
|
765 |
-
"Your help with translation and new ideas are very appreciated."
|
766 |
-
msgstr ""
|
767 |
-
"خل تتمنى أن ترى أسمك ورابط موقعك هنا؟ مرحباً بك! مساعدتك في الترجمة أو "
|
768 |
-
"الأفكار الجديدة مقدّرة."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
lang/ure-be_BY.mo
DELETED
Binary file
|
lang/ure-be_BY.po
DELETED
@@ -1,1236 +0,0 @@
|
|
1 |
-
msgid ""
|
2 |
-
msgstr ""
|
3 |
-
"Project-Id-Version: User Role Editor v.2.0\n"
|
4 |
-
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2013-05-17 11:12+0700\n"
|
6 |
-
"PO-Revision-Date: \n"
|
7 |
-
"Last-Translator: Vladimir Garagulya <vladimir@shinephp.com>\n"
|
8 |
-
"Language-Team: ShinePHP.com <by.marcis@gmail.com>\n"
|
9 |
-
"Language: \n"
|
10 |
-
"MIME-Version: 1.0\n"
|
11 |
-
"Content-Type: text/plain; charset=UTF-8\n"
|
12 |
-
"Content-Transfer-Encoding: 8bit\n"
|
13 |
-
"X-Poedit-Language: Belarusian\n"
|
14 |
-
"X-Poedit-Country: BELARUS\n"
|
15 |
-
"X-Poedit-SourceCharset: utf-8\n"
|
16 |
-
"X-Poedit-KeywordsList: __;_e\n"
|
17 |
-
"X-Poedit-Basepath: .\n"
|
18 |
-
"X-Poedit-SearchPath-0: ..\n"
|
19 |
-
|
20 |
-
#: ../user-role-editor.php:34
|
21 |
-
#, fuzzy, php-format
|
22 |
-
msgid "User Role Editor requires PHP %s or newer."
|
23 |
-
msgstr "Рэдактар роляў карыстачоў патрабуе PHP 5.0 ці вышэй."
|
24 |
-
|
25 |
-
#: ../user-role-editor.php:35
|
26 |
-
#: ../user-role-editor.php:107
|
27 |
-
msgid "Please update!"
|
28 |
-
msgstr "Калі ласка, абновіце!"
|
29 |
-
|
30 |
-
#: ../user-role-editor.php:80
|
31 |
-
msgid "Only"
|
32 |
-
msgstr ""
|
33 |
-
|
34 |
-
#: ../user-role-editor.php:80
|
35 |
-
msgid "is allowed to use"
|
36 |
-
msgstr ""
|
37 |
-
|
38 |
-
#: ../user-role-editor.php:86
|
39 |
-
#: ../user-role-editor.php:312
|
40 |
-
#: ../user-role-editor.php:368
|
41 |
-
msgid "User Role Editor"
|
42 |
-
msgstr "Рэдактар роляў карыстачоў"
|
43 |
-
|
44 |
-
#: ../user-role-editor.php:106
|
45 |
-
#, fuzzy, php-format
|
46 |
-
msgid "User Role Editor requires WordPress %s or newer."
|
47 |
-
msgstr "Рэдактар роляў карыстачоў патрабуе WordPress 3.0 ці вышэй."
|
48 |
-
|
49 |
-
#: ../user-role-editor.php:139
|
50 |
-
#, fuzzy
|
51 |
-
msgid "Select All"
|
52 |
-
msgstr "Абяры Ролю:"
|
53 |
-
|
54 |
-
#: ../user-role-editor.php:140
|
55 |
-
msgid "Unselect All"
|
56 |
-
msgstr ""
|
57 |
-
|
58 |
-
#: ../user-role-editor.php:141
|
59 |
-
msgid "Reverse"
|
60 |
-
msgstr ""
|
61 |
-
|
62 |
-
#: ../user-role-editor.php:142
|
63 |
-
msgid "Update"
|
64 |
-
msgstr "Захаваць"
|
65 |
-
|
66 |
-
#: ../user-role-editor.php:143
|
67 |
-
#, fuzzy
|
68 |
-
msgid "Please confirm permissions update"
|
69 |
-
msgstr "Калі ласка, пацвердзіце працяг "
|
70 |
-
|
71 |
-
#: ../user-role-editor.php:144
|
72 |
-
msgid "Add New Role"
|
73 |
-
msgstr "Дадаць новую Ролю"
|
74 |
-
|
75 |
-
#: ../user-role-editor.php:145
|
76 |
-
#, fuzzy
|
77 |
-
msgid " Role name (ID) can not be empty!"
|
78 |
-
msgstr "Найменне ролі не можа быць пустым!"
|
79 |
-
|
80 |
-
#: ../user-role-editor.php:146
|
81 |
-
#, fuzzy
|
82 |
-
msgid " Role name (ID) must contain latin characters, digits, hyphens or underscore only!"
|
83 |
-
msgstr "Памылка: павінна ўтрымоўваць толькі лацінскія літары і лічбы"
|
84 |
-
|
85 |
-
#: ../user-role-editor.php:147
|
86 |
-
#, fuzzy
|
87 |
-
msgid "Add Role"
|
88 |
-
msgstr "Дадаць новую Ролю"
|
89 |
-
|
90 |
-
#: ../user-role-editor.php:148
|
91 |
-
msgid "Delete Role"
|
92 |
-
msgstr "Выдаліць Ролю"
|
93 |
-
|
94 |
-
#: ../user-role-editor.php:149
|
95 |
-
msgid "Cancel"
|
96 |
-
msgstr "Адмена"
|
97 |
-
|
98 |
-
#: ../user-role-editor.php:150
|
99 |
-
#, fuzzy
|
100 |
-
msgid "Add Capability"
|
101 |
-
msgstr "Дадаць новую Ролю"
|
102 |
-
|
103 |
-
#: ../user-role-editor.php:151
|
104 |
-
#: ../user-role-editor.php:156
|
105 |
-
#, fuzzy
|
106 |
-
msgid "Delete Capability"
|
107 |
-
msgstr "Дадаць новую Ролю"
|
108 |
-
|
109 |
-
#: ../user-role-editor.php:152
|
110 |
-
msgid "Reset"
|
111 |
-
msgstr "Скід"
|
112 |
-
|
113 |
-
#: ../user-role-editor.php:153
|
114 |
-
msgid "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?"
|
115 |
-
msgstr ""
|
116 |
-
|
117 |
-
#: ../user-role-editor.php:154
|
118 |
-
#, fuzzy
|
119 |
-
msgid "Default Role"
|
120 |
-
msgstr "Выдаліць Ролю"
|
121 |
-
|
122 |
-
#: ../user-role-editor.php:155
|
123 |
-
#, fuzzy
|
124 |
-
msgid "Set New Default Role"
|
125 |
-
msgstr "Усталяваць як роля па-змаўчанню"
|
126 |
-
|
127 |
-
#: ../user-role-editor.php:157
|
128 |
-
msgid "Warning! Be careful - removing critical capability could crash some plugin or other custom code"
|
129 |
-
msgstr ""
|
130 |
-
|
131 |
-
#: ../user-role-editor.php:158
|
132 |
-
#, fuzzy
|
133 |
-
msgid " Capability name (ID) can not be empty!"
|
134 |
-
msgstr "Найменне ролі не можа быць пустым!"
|
135 |
-
|
136 |
-
#: ../user-role-editor.php:159
|
137 |
-
#, fuzzy
|
138 |
-
msgid " Capability name (ID) must contain latin characters, digits, hyphens or underscore only!"
|
139 |
-
msgstr "Памылка: павінна ўтрымоўваць толькі лацінскія літары і лічбы"
|
140 |
-
|
141 |
-
#: ../user-role-editor.php:284
|
142 |
-
msgid "Settings"
|
143 |
-
msgstr "Усталёўкі"
|
144 |
-
|
145 |
-
#: ../user-role-editor.php:294
|
146 |
-
#: ../includes/ure-options.php:209
|
147 |
-
msgid "Changelog"
|
148 |
-
msgstr "Часопіс змен"
|
149 |
-
|
150 |
-
#: ../user-role-editor.php:342
|
151 |
-
msgid "Capabilities"
|
152 |
-
msgstr ""
|
153 |
-
|
154 |
-
#: ../user-role-editor.php:371
|
155 |
-
#: ../user-role-editor.php:407
|
156 |
-
#, fuzzy
|
157 |
-
msgid "Other Roles"
|
158 |
-
msgstr "Выдаліць Ролю"
|
159 |
-
|
160 |
-
#: ../user-role-editor.php:381
|
161 |
-
#, fuzzy
|
162 |
-
msgid "Edit"
|
163 |
-
msgstr "Рэдактар"
|
164 |
-
|
165 |
-
#: ../includes/ure-lib.php:35
|
166 |
-
msgid "Error is occur. Please check the log file."
|
167 |
-
msgstr "Адбылася памылка. Праверце лог-файл."
|
168 |
-
|
169 |
-
#: ../includes/ure-lib.php:364
|
170 |
-
msgid "Backup record is created for the current role capabilities"
|
171 |
-
msgstr "Для бягучага размеркавання магчымасцяў па ролях створана рэзервовая копія"
|
172 |
-
|
173 |
-
#: ../includes/ure-lib.php:481
|
174 |
-
#, fuzzy
|
175 |
-
msgid "Error: Role ID must contain latin characters, digits, hyphens or underscore only!"
|
176 |
-
msgstr "Памылка: павінна ўтрымоўваць толькі лацінскія літары і лічбы"
|
177 |
-
|
178 |
-
#: ../includes/ure-lib.php:496
|
179 |
-
#, php-format
|
180 |
-
msgid "Role %s exists already"
|
181 |
-
msgstr ""
|
182 |
-
|
183 |
-
#: ../includes/ure-lib.php:511
|
184 |
-
msgid "Error is encountered during new role create operation"
|
185 |
-
msgstr "Адбылася памылка пры стварэнні новай ролі"
|
186 |
-
|
187 |
-
#: ../includes/ure-lib.php:513
|
188 |
-
#, php-format
|
189 |
-
msgid "Role %s is created successfully"
|
190 |
-
msgstr "Роля %s створана паспяхова"
|
191 |
-
|
192 |
-
#: ../includes/ure-lib.php:597
|
193 |
-
msgid "Error encountered during role delete operation"
|
194 |
-
msgstr "Адбылася памылка пры выдаленні ролі"
|
195 |
-
|
196 |
-
#: ../includes/ure-lib.php:599
|
197 |
-
#, php-format
|
198 |
-
msgid "Role %s is deleted successfully"
|
199 |
-
msgstr "Роля %s выдалена паспяхова"
|
200 |
-
|
201 |
-
#: ../includes/ure-lib.php:619
|
202 |
-
msgid "Error encountered during default role change operation"
|
203 |
-
msgstr "Адбылася памылка пры змене ролі па-змаўчанню"
|
204 |
-
|
205 |
-
#: ../includes/ure-lib.php:625
|
206 |
-
#, php-format
|
207 |
-
msgid "Default role for new users is set to %s successfully"
|
208 |
-
msgstr "Роля па-змаўчанню для новых пользователй зменена на %s паспяхова."
|
209 |
-
|
210 |
-
#: ../includes/ure-lib.php:652
|
211 |
-
msgid "Editor"
|
212 |
-
msgstr "Рэдактар"
|
213 |
-
|
214 |
-
#: ../includes/ure-lib.php:653
|
215 |
-
msgid "Author"
|
216 |
-
msgstr "Аўтар"
|
217 |
-
|
218 |
-
#: ../includes/ure-lib.php:654
|
219 |
-
msgid "Contributor"
|
220 |
-
msgstr "Асістэнт"
|
221 |
-
|
222 |
-
#: ../includes/ure-lib.php:655
|
223 |
-
msgid "Subscriber"
|
224 |
-
msgstr "Падпісант"
|
225 |
-
|
226 |
-
#: ../includes/ure-lib.php:657
|
227 |
-
msgid "Switch themes"
|
228 |
-
msgstr "Змяняць тэмы"
|
229 |
-
|
230 |
-
#: ../includes/ure-lib.php:658
|
231 |
-
msgid "Edit themes"
|
232 |
-
msgstr "Змяняць тэмы"
|
233 |
-
|
234 |
-
#: ../includes/ure-lib.php:659
|
235 |
-
msgid "Activate plugins"
|
236 |
-
msgstr "Актываваць убудовы"
|
237 |
-
|
238 |
-
#: ../includes/ure-lib.php:660
|
239 |
-
msgid "Edit plugins"
|
240 |
-
msgstr "Рэдагаваць убудовы"
|
241 |
-
|
242 |
-
#: ../includes/ure-lib.php:661
|
243 |
-
msgid "Edit users"
|
244 |
-
msgstr "Змяняць карыстачоў"
|
245 |
-
|
246 |
-
#: ../includes/ure-lib.php:662
|
247 |
-
msgid "Edit files"
|
248 |
-
msgstr "Змяняць файлы"
|
249 |
-
|
250 |
-
#: ../includes/ure-lib.php:663
|
251 |
-
msgid "Manage options"
|
252 |
-
msgstr "Кіраваць усталёўкамі"
|
253 |
-
|
254 |
-
#: ../includes/ure-lib.php:664
|
255 |
-
msgid "Moderate comments"
|
256 |
-
msgstr "Мадэраваць каментары"
|
257 |
-
|
258 |
-
#: ../includes/ure-lib.php:665
|
259 |
-
msgid "Manage categories"
|
260 |
-
msgstr "Кіраваць катэгорыямі"
|
261 |
-
|
262 |
-
#: ../includes/ure-lib.php:666
|
263 |
-
msgid "Manage links"
|
264 |
-
msgstr "Кіраваць спасылкамі"
|
265 |
-
|
266 |
-
#: ../includes/ure-lib.php:667
|
267 |
-
msgid "Upload files"
|
268 |
-
msgstr "Загружаць файлы"
|
269 |
-
|
270 |
-
#: ../includes/ure-lib.php:668
|
271 |
-
msgid "Import"
|
272 |
-
msgstr "Імпарт"
|
273 |
-
|
274 |
-
#: ../includes/ure-lib.php:669
|
275 |
-
msgid "Unfiltered html"
|
276 |
-
msgstr "html без фільтра"
|
277 |
-
|
278 |
-
#: ../includes/ure-lib.php:670
|
279 |
-
msgid "Edit posts"
|
280 |
-
msgstr "Змяняць артыкулы"
|
281 |
-
|
282 |
-
#: ../includes/ure-lib.php:671
|
283 |
-
msgid "Edit others posts"
|
284 |
-
msgstr "Змяняць чужыя артыкулы"
|
285 |
-
|
286 |
-
#: ../includes/ure-lib.php:672
|
287 |
-
msgid "Edit published posts"
|
288 |
-
msgstr "Рэдагаваць апублікаваныя артыкулы"
|
289 |
-
|
290 |
-
#: ../includes/ure-lib.php:673
|
291 |
-
msgid "Publish posts"
|
292 |
-
msgstr "Публікаваць артыкулы"
|
293 |
-
|
294 |
-
#: ../includes/ure-lib.php:674
|
295 |
-
msgid "Edit pages"
|
296 |
-
msgstr "Змяняць старонкі"
|
297 |
-
|
298 |
-
#: ../includes/ure-lib.php:675
|
299 |
-
msgid "Read"
|
300 |
-
msgstr "Чытанне"
|
301 |
-
|
302 |
-
#: ../includes/ure-lib.php:676
|
303 |
-
msgid "Level 10"
|
304 |
-
msgstr "Узровень 10"
|
305 |
-
|
306 |
-
#: ../includes/ure-lib.php:677
|
307 |
-
msgid "Level 9"
|
308 |
-
msgstr "Узровень 9"
|
309 |
-
|
310 |
-
#: ../includes/ure-lib.php:678
|
311 |
-
msgid "Level 8"
|
312 |
-
msgstr "Узровень 9"
|
313 |
-
|
314 |
-
#: ../includes/ure-lib.php:679
|
315 |
-
msgid "Level 7"
|
316 |
-
msgstr "Узровень 7"
|
317 |
-
|
318 |
-
#: ../includes/ure-lib.php:680
|
319 |
-
msgid "Level 6"
|
320 |
-
msgstr "Узровень 6"
|
321 |
-
|
322 |
-
#: ../includes/ure-lib.php:681
|
323 |
-
msgid "Level 5"
|
324 |
-
msgstr "Узровень 5"
|
325 |
-
|
326 |
-
#: ../includes/ure-lib.php:682
|
327 |
-
msgid "Level 4"
|
328 |
-
msgstr "Узровень 4"
|
329 |
-
|
330 |
-
#: ../includes/ure-lib.php:683
|
331 |
-
msgid "Level 3"
|
332 |
-
msgstr "Узровень 3"
|
333 |
-
|
334 |
-
#: ../includes/ure-lib.php:684
|
335 |
-
msgid "Level 2"
|
336 |
-
msgstr "Узровень 2"
|
337 |
-
|
338 |
-
#: ../includes/ure-lib.php:685
|
339 |
-
msgid "Level 1"
|
340 |
-
msgstr "Узровень 1"
|
341 |
-
|
342 |
-
#: ../includes/ure-lib.php:686
|
343 |
-
msgid "Level 0"
|
344 |
-
msgstr "Узровень 0"
|
345 |
-
|
346 |
-
#: ../includes/ure-lib.php:687
|
347 |
-
msgid "Edit others pages"
|
348 |
-
msgstr "Рэдагаваць чужыя старонкі"
|
349 |
-
|
350 |
-
#: ../includes/ure-lib.php:688
|
351 |
-
msgid "Edit published pages"
|
352 |
-
msgstr "Рэдагаваць апублікаваныя старонкі"
|
353 |
-
|
354 |
-
#: ../includes/ure-lib.php:689
|
355 |
-
msgid "Publish pages"
|
356 |
-
msgstr "Публікаваць старонкі"
|
357 |
-
|
358 |
-
#: ../includes/ure-lib.php:690
|
359 |
-
msgid "Delete pages"
|
360 |
-
msgstr "Выдаляць старонкі"
|
361 |
-
|
362 |
-
#: ../includes/ure-lib.php:691
|
363 |
-
msgid "Delete others pages"
|
364 |
-
msgstr "Выдаліць чужыя старонкі"
|
365 |
-
|
366 |
-
#: ../includes/ure-lib.php:692
|
367 |
-
msgid "Delete published pages"
|
368 |
-
msgstr "Выдаляць апублікаваныя старонкі"
|
369 |
-
|
370 |
-
#: ../includes/ure-lib.php:693
|
371 |
-
msgid "Delete posts"
|
372 |
-
msgstr "Выдаляць артыкулы"
|
373 |
-
|
374 |
-
#: ../includes/ure-lib.php:694
|
375 |
-
msgid "Delete others posts"
|
376 |
-
msgstr "Выдаляць чужыя артыкулы"
|
377 |
-
|
378 |
-
#: ../includes/ure-lib.php:695
|
379 |
-
msgid "Delete published posts"
|
380 |
-
msgstr "Выдаляць апублікаваныя артыкулы"
|
381 |
-
|
382 |
-
#: ../includes/ure-lib.php:696
|
383 |
-
msgid "Delete private posts"
|
384 |
-
msgstr "Выдаляць прыватныя артыкулы"
|
385 |
-
|
386 |
-
#: ../includes/ure-lib.php:697
|
387 |
-
msgid "Edit private posts"
|
388 |
-
msgstr "Рэдагаваць прыватныя артыкулы"
|
389 |
-
|
390 |
-
#: ../includes/ure-lib.php:698
|
391 |
-
msgid "Read private posts"
|
392 |
-
msgstr "Чытаць прыватныя артыкулы"
|
393 |
-
|
394 |
-
#: ../includes/ure-lib.php:699
|
395 |
-
msgid "Delete private pages"
|
396 |
-
msgstr "Выдаляць прыватныя старонкі"
|
397 |
-
|
398 |
-
#: ../includes/ure-lib.php:700
|
399 |
-
msgid "Edit private pages"
|
400 |
-
msgstr "Рэдагаваць прыватныя старонкі"
|
401 |
-
|
402 |
-
#: ../includes/ure-lib.php:701
|
403 |
-
msgid "Read private pages"
|
404 |
-
msgstr "Чытаць прыватныя старонкі"
|
405 |
-
|
406 |
-
#: ../includes/ure-lib.php:702
|
407 |
-
msgid "Delete users"
|
408 |
-
msgstr "Выдаляць карыстачоў"
|
409 |
-
|
410 |
-
#: ../includes/ure-lib.php:703
|
411 |
-
msgid "Create users"
|
412 |
-
msgstr "Ствараць карыстачоў"
|
413 |
-
|
414 |
-
#: ../includes/ure-lib.php:704
|
415 |
-
msgid "Unfiltered upload"
|
416 |
-
msgstr "Загрузка без фільтра"
|
417 |
-
|
418 |
-
#: ../includes/ure-lib.php:705
|
419 |
-
msgid "Edit dashboard"
|
420 |
-
msgstr "Змяняць панэль адміністратара"
|
421 |
-
|
422 |
-
#: ../includes/ure-lib.php:706
|
423 |
-
msgid "Update plugins"
|
424 |
-
msgstr "Абнаўляць убудовы"
|
425 |
-
|
426 |
-
#: ../includes/ure-lib.php:707
|
427 |
-
msgid "Delete plugins"
|
428 |
-
msgstr "Выдаляць убудовы"
|
429 |
-
|
430 |
-
#: ../includes/ure-lib.php:708
|
431 |
-
msgid "Install plugins"
|
432 |
-
msgstr "Усталёўваць убудовы"
|
433 |
-
|
434 |
-
#: ../includes/ure-lib.php:709
|
435 |
-
msgid "Update themes"
|
436 |
-
msgstr "Абнаўляць тэмы"
|
437 |
-
|
438 |
-
#: ../includes/ure-lib.php:710
|
439 |
-
msgid "Install themes"
|
440 |
-
msgstr "Усталёўваць тэмы"
|
441 |
-
|
442 |
-
#: ../includes/ure-lib.php:711
|
443 |
-
msgid "Update core"
|
444 |
-
msgstr ""
|
445 |
-
|
446 |
-
#: ../includes/ure-lib.php:712
|
447 |
-
msgid "List users"
|
448 |
-
msgstr ""
|
449 |
-
|
450 |
-
#: ../includes/ure-lib.php:713
|
451 |
-
msgid "Remove users"
|
452 |
-
msgstr ""
|
453 |
-
|
454 |
-
#: ../includes/ure-lib.php:714
|
455 |
-
msgid "Add users"
|
456 |
-
msgstr ""
|
457 |
-
|
458 |
-
#: ../includes/ure-lib.php:715
|
459 |
-
msgid "Promote users"
|
460 |
-
msgstr ""
|
461 |
-
|
462 |
-
#: ../includes/ure-lib.php:716
|
463 |
-
msgid "Edit theme options"
|
464 |
-
msgstr ""
|
465 |
-
|
466 |
-
#: ../includes/ure-lib.php:717
|
467 |
-
msgid "Delete themes"
|
468 |
-
msgstr ""
|
469 |
-
|
470 |
-
#: ../includes/ure-lib.php:718
|
471 |
-
msgid "Export"
|
472 |
-
msgstr ""
|
473 |
-
|
474 |
-
#: ../includes/ure-lib.php:834
|
475 |
-
msgid "Error: Capability name must contain latin characters and digits only!"
|
476 |
-
msgstr "Памылка: павінна ўтрымоўваць толькі лацінскія літары і лічбы"
|
477 |
-
|
478 |
-
#: ../includes/ure-lib.php:846
|
479 |
-
#, php-format
|
480 |
-
msgid "Capability %s is added successfully"
|
481 |
-
msgstr "Роля %s створана паспяхова"
|
482 |
-
|
483 |
-
#: ../includes/ure-lib.php:848
|
484 |
-
#, php-format
|
485 |
-
msgid "Capability %s exists already"
|
486 |
-
msgstr ""
|
487 |
-
|
488 |
-
#: ../includes/ure-lib.php:997
|
489 |
-
#, php-format
|
490 |
-
msgid "Error! You do not have permission to delete this capability: %s!"
|
491 |
-
msgstr ""
|
492 |
-
|
493 |
-
#: ../includes/ure-lib.php:1016
|
494 |
-
#, php-format
|
495 |
-
msgid "Capability %s is removed successfully"
|
496 |
-
msgstr ""
|
497 |
-
|
498 |
-
#: ../includes/ure-lib.php:1083
|
499 |
-
msgid "Help"
|
500 |
-
msgstr ""
|
501 |
-
|
502 |
-
#: ../includes/ure-role-edit.php:29
|
503 |
-
msgid "None"
|
504 |
-
msgstr "Не"
|
505 |
-
|
506 |
-
#: ../includes/ure-role-edit.php:67
|
507 |
-
msgid "Select Role and change its capabilities list"
|
508 |
-
msgstr "Абяры Ролю і змяні спіс дазволеных аперацый"
|
509 |
-
|
510 |
-
#: ../includes/ure-role-edit.php:69
|
511 |
-
#: ../includes/ure-role-edit.php:166
|
512 |
-
msgid "Select Role:"
|
513 |
-
msgstr "Абяры Ролю:"
|
514 |
-
|
515 |
-
#: ../includes/ure-role-edit.php:79
|
516 |
-
#: ../includes/ure-user-edit.php:38
|
517 |
-
msgid "Show capabilities in human readable form"
|
518 |
-
msgstr "Паказ магчымасцяў у чытэльнай форме"
|
519 |
-
|
520 |
-
#: ../includes/ure-role-edit.php:88
|
521 |
-
#: ../includes/ure-user-edit.php:47
|
522 |
-
msgid "Show deprecated capabilities"
|
523 |
-
msgstr ""
|
524 |
-
|
525 |
-
#: ../includes/ure-role-edit.php:92
|
526 |
-
msgid "If checked, then apply action to ALL sites of this Network"
|
527 |
-
msgstr ""
|
528 |
-
|
529 |
-
#: ../includes/ure-role-edit.php:102
|
530 |
-
msgid "Apply to All Sites"
|
531 |
-
msgstr ""
|
532 |
-
|
533 |
-
#: ../includes/ure-role-edit.php:109
|
534 |
-
#: ../includes/ure-user-edit.php:88
|
535 |
-
msgid "Core capabilities:"
|
536 |
-
msgstr ""
|
537 |
-
|
538 |
-
#: ../includes/ure-role-edit.php:124
|
539 |
-
#: ../includes/ure-user-edit.php:103
|
540 |
-
msgid "Custom capabilities:"
|
541 |
-
msgstr ""
|
542 |
-
|
543 |
-
#: ../includes/ure-role-edit.php:155
|
544 |
-
msgid "Role name (ID): "
|
545 |
-
msgstr ""
|
546 |
-
|
547 |
-
#: ../includes/ure-role-edit.php:157
|
548 |
-
msgid "Display Role Name: "
|
549 |
-
msgstr ""
|
550 |
-
|
551 |
-
#: ../includes/ure-role-edit.php:159
|
552 |
-
msgid "Make copy of: "
|
553 |
-
msgstr ""
|
554 |
-
|
555 |
-
#: ../includes/ure-role-edit.php:181
|
556 |
-
#, fuzzy
|
557 |
-
msgid "Delete:"
|
558 |
-
msgstr "Выдаліць"
|
559 |
-
|
560 |
-
#: ../includes/ure-role-edit.php:188
|
561 |
-
msgid "Capability name (ID): "
|
562 |
-
msgstr ""
|
563 |
-
|
564 |
-
#: ../includes/ure-user-edit.php:22
|
565 |
-
msgid "Change capabilities for user"
|
566 |
-
msgstr ""
|
567 |
-
|
568 |
-
#: ../includes/ure-user-edit.php:52
|
569 |
-
msgid "Primary Role:"
|
570 |
-
msgstr ""
|
571 |
-
|
572 |
-
#: ../includes/ure-user-edit.php:62
|
573 |
-
msgid "bbPress Role:"
|
574 |
-
msgstr ""
|
575 |
-
|
576 |
-
#: ../includes/ure-user-edit.php:72
|
577 |
-
#, fuzzy
|
578 |
-
msgid "Other Roles:"
|
579 |
-
msgstr "Выдаліць Ролю"
|
580 |
-
|
581 |
-
#: ../includes/ure-options.php:65
|
582 |
-
#, fuzzy
|
583 |
-
msgid "User Roles are restored to WordPress default values. "
|
584 |
-
msgstr "Ролі адноўлены з рэзервовай копіі"
|
585 |
-
|
586 |
-
#: ../includes/ure-options.php:136
|
587 |
-
msgid "Error: "
|
588 |
-
msgstr ""
|
589 |
-
|
590 |
-
#: ../includes/ure-options.php:136
|
591 |
-
#: ../includes/ure-options.php:156
|
592 |
-
msgid "Role"
|
593 |
-
msgstr "Роля"
|
594 |
-
|
595 |
-
#: ../includes/ure-options.php:136
|
596 |
-
msgid "does not exist"
|
597 |
-
msgstr ""
|
598 |
-
|
599 |
-
#: ../includes/ure-options.php:156
|
600 |
-
msgid "is updated successfully"
|
601 |
-
msgstr "зменена паспяхова"
|
602 |
-
|
603 |
-
#: ../includes/ure-options.php:161
|
604 |
-
#: ../includes/ure-options.php:174
|
605 |
-
#, fuzzy
|
606 |
-
msgid "Error occured during role update"
|
607 |
-
msgstr "Адбылася памылка пры выдаленні ролі"
|
608 |
-
|
609 |
-
#: ../includes/ure-options.php:169
|
610 |
-
msgid "User"
|
611 |
-
msgstr ""
|
612 |
-
|
613 |
-
#: ../includes/ure-options.php:169
|
614 |
-
msgid "capabilities are updated successfully"
|
615 |
-
msgstr "зменена паспяхова"
|
616 |
-
|
617 |
-
#: ../includes/ure-options.php:206
|
618 |
-
msgid "About this Plugin:"
|
619 |
-
msgstr "Пра гэту ўбудову"
|
620 |
-
|
621 |
-
#: ../includes/ure-options.php:207
|
622 |
-
msgid "Author's website"
|
623 |
-
msgstr "Вэбсайт аўтара"
|
624 |
-
|
625 |
-
#: ../includes/ure-options.php:208
|
626 |
-
msgid "Plugin webpage"
|
627 |
-
msgstr "Старонка ўбудовы"
|
628 |
-
|
629 |
-
#: ../includes/ure-options.php:210
|
630 |
-
msgid "FAQ"
|
631 |
-
msgstr "Часта задаваныя пытанні"
|
632 |
-
|
633 |
-
#~ msgid "Database operation error. Check log file."
|
634 |
-
#~ msgstr "Памылка працы з базай дадзеных. Праверце лог-файл."
|
635 |
-
|
636 |
-
#~ msgid ""
|
637 |
-
#~ "No backup data. It is created automatically before the first role data "
|
638 |
-
#~ "update."
|
639 |
-
#~ msgstr ""
|
640 |
-
#~ "Няма рэзервовай копіі. Яна ствараецца аўтаматычна перад першай зменай "
|
641 |
-
#~ "роляў."
|
642 |
-
|
643 |
-
#~ msgid " Name must contain latin characters and digits only!"
|
644 |
-
#~ msgstr "Найменне ролі павінна ўтрымоўваць толькі лацінскія літары і лічбы."
|
645 |
-
|
646 |
-
#~ msgid "Change Default Role"
|
647 |
-
#~ msgstr "Усталяваць як роля па-змаўчанню"
|
648 |
-
|
649 |
-
#~ msgid "Role \"%s\" update: please confirm to continue"
|
650 |
-
#~ msgstr "Змена ролі \"%s\": калі ласка, пацвердзіце працяг "
|
651 |
-
|
652 |
-
#~ msgid "Save Changes"
|
653 |
-
#~ msgstr "Захаваць змены"
|
654 |
-
|
655 |
-
#~ msgid "Cancel not saved changes"
|
656 |
-
#~ msgstr "Адмова ад захавання змен"
|
657 |
-
|
658 |
-
#~ msgid "Restore Roles from backup copy"
|
659 |
-
#~ msgstr "Аднавіць Ролі з рэзервовай копіі"
|
660 |
-
|
661 |
-
#~ msgid "Add"
|
662 |
-
#~ msgstr "Дадаць"
|
663 |
-
|
664 |
-
#~ msgid "Add New User Role"
|
665 |
-
#~ msgstr "Дадаць новую Ролю карыстача"
|
666 |
-
|
667 |
-
#~ msgid "Default Role for New User"
|
668 |
-
#~ msgstr "Роля па-змаўчанню"
|
669 |
-
|
670 |
-
#~ msgid "Change"
|
671 |
-
#~ msgstr "Змяніць"
|
672 |
-
|
673 |
-
#~ msgid "Delete User Role"
|
674 |
-
#~ msgstr "Выдаліць Ролю карыстача"
|
675 |
-
|
676 |
-
#~ msgid "Role:"
|
677 |
-
#~ msgstr "Роля:"
|
678 |
-
|
679 |
-
#~ msgid "Greetings"
|
680 |
-
#~ msgstr "Прывітанні"
|
681 |
-
|
682 |
-
#~ msgid "Greetings:"
|
683 |
-
#~ msgstr "Прывітанні"
|
684 |
-
|
685 |
-
#~ msgid "It's me, the author"
|
686 |
-
#~ msgstr "Гэта я, аўтар"
|
687 |
-
|
688 |
-
#~ msgid "For the help with Belorussian translation"
|
689 |
-
#~ msgstr "за дапамогу з беларускім перакладам"
|
690 |
-
|
691 |
-
#~ msgid "For the help with Brasilian Portuguese translation"
|
692 |
-
#~ msgstr "за дапамогу з бразильскім перакладам"
|
693 |
-
|
694 |
-
#~ msgid "For the help with Chinese translation"
|
695 |
-
#~ msgstr "за дапамогу з китайскім перакладам"
|
696 |
-
|
697 |
-
#~ msgid "For the help with Dutch translation"
|
698 |
-
#~ msgstr "за дапамогу з датскім перакладам"
|
699 |
-
|
700 |
-
#~ msgid "For the help with French translation"
|
701 |
-
#~ msgstr "за дапамогу з французскім перакладам"
|
702 |
-
|
703 |
-
#~ msgid "For the help with German translation"
|
704 |
-
#~ msgstr "за дапамогу з нямецкім перакладам"
|
705 |
-
|
706 |
-
#~ msgid "For the help with Hebrew translation"
|
707 |
-
#~ msgstr "за дапамогу з івріт перакладам"
|
708 |
-
|
709 |
-
#~ msgid "For the help with Hindi translation"
|
710 |
-
#~ msgstr "за дапамогу з индийским перакладам"
|
711 |
-
|
712 |
-
#~ msgid "For the help with Hungarian translation"
|
713 |
-
#~ msgstr "за дапамогу з hungary перакладам"
|
714 |
-
|
715 |
-
#~ msgid "For the help with Italian translation"
|
716 |
-
#~ msgstr "за дапамогу з італьянскім перакладам"
|
717 |
-
|
718 |
-
#~ msgid "For the help with Japanese translation"
|
719 |
-
#~ msgstr "за дапамогу з японскім перакладам"
|
720 |
-
|
721 |
-
#~ msgid "For the help with Lithuanian translation"
|
722 |
-
#~ msgstr "за дапамогу з літовскім перакладам"
|
723 |
-
|
724 |
-
#~ msgid "For the help with Polish translation"
|
725 |
-
#~ msgstr "за дапамогу з польскім перакладам"
|
726 |
-
|
727 |
-
#~ msgid "For the help with Spanish translation"
|
728 |
-
#~ msgstr "за дапамогу з іспанскім перакладам"
|
729 |
-
|
730 |
-
#~ msgid "For the updated Swedish translation"
|
731 |
-
#~ msgstr "за дапамогу з шведскім перакладам"
|
732 |
-
|
733 |
-
#~ msgid "For the help with Turkish translation"
|
734 |
-
#~ msgstr "за дапамогу з турецким перакладам"
|
735 |
-
|
736 |
-
#~ msgid "For the code to hide administrator role"
|
737 |
-
#~ msgstr "За код, які хавае роля адміністратара"
|
738 |
-
|
739 |
-
#~ msgid ""
|
740 |
-
#~ "Do you wish to see your name with link to your site here? You are "
|
741 |
-
#~ "welcome! Your help with translation and new ideas are very appreciated."
|
742 |
-
#~ msgstr ""
|
743 |
-
#~ "Жадаеце ўбачыць сваё імя і спасылку на Ваш сайт тут? Сардэчна запрашаем! "
|
744 |
-
#~ "Ваша дапамога з перакладам і новыя ідэі вітаюцца."
|
745 |
-
|
746 |
-
#~ msgid "Donate"
|
747 |
-
#~ msgstr "Падтрымаць"
|
748 |
-
|
749 |
-
#~ msgid "Roles list reading error is encountered"
|
750 |
-
#~ msgstr "Памылка чытання спісу роляў!"
|
751 |
-
|
752 |
-
#~ msgid "Return to default WordPress user role capabilities"
|
753 |
-
#~ msgstr "Вярнуцца да зыходнага стану роляў WordPress"
|
754 |
-
|
755 |
-
#~ msgid "Role Name must be just a single word without special characters!"
|
756 |
-
#~ msgstr "Найменне ролі - адно слова без адмысловых знакаў! "
|
757 |
-
|
758 |
-
#~ msgid "action"
|
759 |
-
#~ msgstr "аперацыі"
|
760 |
-
|
761 |
-
#~ msgid "Please confirm to continue role \""
|
762 |
-
#~ msgstr "Калі ласка пацвердзіце працяг для ролі"
|
763 |
-
|
764 |
-
#~ msgid "Silence Is Golden Guard Plugin"
|
765 |
-
#~ msgstr "Silence Is Golden Guard убудова"
|
766 |
-
|
767 |
-
#~ msgid "file open error"
|
768 |
-
#~ msgstr "памылка адкрыцця файла"
|
769 |
-
|
770 |
-
#~ msgid "file read error"
|
771 |
-
#~ msgstr "памылка чытання файла"
|
772 |
-
|
773 |
-
#~ msgid "file close error"
|
774 |
-
#~ msgstr "памылка пры зачыненні файла"
|
775 |
-
|
776 |
-
#~ msgid "file backup copy error"
|
777 |
-
#~ msgstr "памылка пры стварэнні рэзервовай копіі файла"
|
778 |
-
|
779 |
-
#~ msgid "file permissions change error"
|
780 |
-
#~ msgstr "памылка пры змене мае рацыю на файл"
|
781 |
-
|
782 |
-
#~ msgid "file write error"
|
783 |
-
#~ msgstr "памылка запісу ў файл"
|
784 |
-
|
785 |
-
#~ msgid "is modified"
|
786 |
-
#~ msgstr "зменены"
|
787 |
-
|
788 |
-
#~ msgid "file create error"
|
789 |
-
#~ msgstr "памылка стварэння файла"
|
790 |
-
|
791 |
-
#~ msgid "permissions change error"
|
792 |
-
#~ msgstr "памылка пры змене мае рацыю"
|
793 |
-
|
794 |
-
#~ msgid "file is created"
|
795 |
-
#~ msgstr "файл створаны"
|
796 |
-
|
797 |
-
#~ msgid "\"Silence is Golden\" Scan is finished: "
|
798 |
-
#~ msgstr "\"Silence is Golden\" сканаванне завершана: "
|
799 |
-
|
800 |
-
#~ msgid "Does not create index.php file in the checked folders"
|
801 |
-
#~ msgstr "Не ствараць index.php файл у адзначаных каталогах"
|
802 |
-
|
803 |
-
#~ msgid "Exclude Folders for index.php"
|
804 |
-
#~ msgstr "Выключыць Каталогі для index.php"
|
805 |
-
|
806 |
-
#~ msgid "Modify Apache .htaccess"
|
807 |
-
#~ msgstr "Змяніць Apache .htaccess"
|
808 |
-
|
809 |
-
#~ msgid ""
|
810 |
-
#~ "Modify Apache .htaccess file in the site root folder. Add \"Options -"
|
811 |
-
#~ "Indexes\" line to prevent directory listing by Apache Web server.\n"
|
812 |
-
#~ " If it is turned on (+Indexes) or absent, then if a "
|
813 |
-
#~ "URL which maps to a directory is requested, and there is no "
|
814 |
-
#~ "DirectoryIndex (e.g., index.html or index.php) file in that directory, "
|
815 |
-
#~ "then Web server will return a formatted listing of the directory."
|
816 |
-
#~ msgstr ""
|
817 |
-
#~ "Змяніць файл Apache .htaccess у каранёвым каталогу сайта. Дадаць радок "
|
818 |
-
#~ "\"Options -Indexes\", каб выключыць лістынг змесціва катлогов Web "
|
819 |
-
#~ "серверам Apache.\n"
|
820 |
-
#~ "Калі опцыя ўключана (+Indexes) ці адсутнічае, тады, калі запроашивается "
|
821 |
-
#~ "адрас URL, адпаведны каталогу, і ў гэтым каталогу отстутсвует файл тыпу "
|
822 |
-
#~ "DirectoryIndex (г.зн. index.html ці index.php), тады Web сервер верне "
|
823 |
-
#~ "адфарматаваны листин гэтага каталога."
|
824 |
-
|
825 |
-
#~ msgid "Check folders state automatically with specified period"
|
826 |
-
#~ msgstr "Правяраць стан каталогаў аўтаматычна з зададзеным перыядам"
|
827 |
-
|
828 |
-
#~ msgid "Auto Monitor"
|
829 |
-
#~ msgstr "Аўта Маніторынг"
|
830 |
-
|
831 |
-
#~ msgid "Scan Now"
|
832 |
-
#~ msgstr "Сканаваць Цяпер"
|
833 |
-
|
834 |
-
#~ msgid "Scan and Fix directories listing related problems Now"
|
835 |
-
#~ msgstr ""
|
836 |
-
#~ "Сканаваць і Выпраўляць праблемы, злучаныя з лістынгам змесціва каталогаў"
|
837 |
-
|
838 |
-
#~ msgid ""
|
839 |
-
#~ "Every time a new visitor clicks the \"Thank you\" button, one point is "
|
840 |
-
#~ "added to the total \"thanks\" counter for this post."
|
841 |
-
#~ msgstr ""
|
842 |
-
#~ "Кожны раз, калі новы наведвальнік пстрыкае па кнопцы \"Дзякуй\", адзінка "
|
843 |
-
#~ "дадаецца да лічыльніка падазяк для дадзенага артыкула."
|
844 |
-
|
845 |
-
#~ msgid "Thank You Counter Button Plugin"
|
846 |
-
#~ msgstr "Усталёўкі для ўбудовы: Кнопка падліку падазяк"
|
847 |
-
|
848 |
-
#~ msgid "Statistics"
|
849 |
-
#~ msgstr "Статыстыка"
|
850 |
-
|
851 |
-
#~ msgid "You left “Thanks” already for this post"
|
852 |
-
#~ msgstr "Вы ўжо пакінулі падзяку за гэты артыкул"
|
853 |
-
|
854 |
-
#~ msgid "Click to left “Thanks” for this post"
|
855 |
-
#~ msgstr "Пстрыкніце мышшу, каб пакінуць падзяку за гэты артыкул"
|
856 |
-
|
857 |
-
#~ msgid "View statistics details for \"%s\""
|
858 |
-
#~ msgstr "Прагляд дэталізаванай статыстыкі для \"%s\""
|
859 |
-
|
860 |
-
#~ msgid "Hide these shortcuts"
|
861 |
-
#~ msgstr "Схаваць спасылкі доступу да ўсталёвак і статыстыцы ўбудовы"
|
862 |
-
|
863 |
-
#~ msgid "Do you really want to hide these shortcuts?"
|
864 |
-
#~ msgstr "Вы сапраўды жадаеце схаваць гэтыя спасылкі?"
|
865 |
-
|
866 |
-
#~ msgid "Thank You"
|
867 |
-
#~ msgstr "Дзякуй"
|
868 |
-
|
869 |
-
#~ msgid "Additional Documentation"
|
870 |
-
#~ msgstr "Дадатковая дакументацыя"
|
871 |
-
|
872 |
-
#~ msgid "operation is prohibited"
|
873 |
-
#~ msgstr "аперацыя забаронена"
|
874 |
-
|
875 |
-
#~ msgid "Default Settings are restored"
|
876 |
-
#~ msgstr "Усталёўкі па-змаўчанню адноўлены"
|
877 |
-
|
878 |
-
#~ msgid "All Thanks Counters are cleared"
|
879 |
-
#~ msgstr "Усе лічыльнікі благодраностей абнулены"
|
880 |
-
|
881 |
-
#~ msgid "Additional documentation"
|
882 |
-
#~ msgstr "Дадатковая дакументацыя"
|
883 |
-
|
884 |
-
#~ msgid ""
|
885 |
-
#~ "for the help with Spanish translation, ideas and new versions testing"
|
886 |
-
#~ msgstr "за дапамогу з іспанскім перакладам, ідэі і тэставанне новых версій"
|
887 |
-
|
888 |
-
#~ msgid "for the excelent JQuery color picker"
|
889 |
-
#~ msgstr "за выдатны JQuery-убудова для працы з каляровай палітрай"
|
890 |
-
|
891 |
-
#~ msgid ""
|
892 |
-
#~ "for the help with French translation, ideas, source code contributions "
|
893 |
-
#~ "and new versions testing"
|
894 |
-
#~ msgstr ""
|
895 |
-
#~ "за дапамогу з французскім перакладам, ідэі, унёсак у распрацоўку і "
|
896 |
-
#~ "тэставанне новых версій"
|
897 |
-
|
898 |
-
#~ msgid "for setting page layout idea and html markup examples"
|
899 |
-
#~ msgstr "за ідэю па кампаноўцы экрана з опцыямі і прыклады HTML разметкі"
|
900 |
-
|
901 |
-
#~ msgid "for the form input slider code"
|
902 |
-
#~ msgstr "за код слайдара для тэкставага поля input HTML формы"
|
903 |
-
|
904 |
-
#~ msgid "for the cute online button image generator"
|
905 |
-
#~ msgstr "за выдатны анлайнавы генератар малюнкаў кнопак"
|
906 |
-
|
907 |
-
#~ msgid ""
|
908 |
-
#~ "All settings for TYCB plugin will be return to the default values, "
|
909 |
-
#~ "Continue?"
|
910 |
-
#~ msgstr ""
|
911 |
-
#~ "Усім усталёўкам для TYCB убудовы будуць вернутыя значэнні па-змаўчанню, "
|
912 |
-
#~ "Працягнуць?"
|
913 |
-
|
914 |
-
#~ msgid ""
|
915 |
-
#~ "All thanks counters for all posts will be set to 0,\\n all thanks click "
|
916 |
-
#~ "history will be cleared, Continue?"
|
917 |
-
#~ msgstr ""
|
918 |
-
#~ "Усе лічыльнікі падазяк для ўсіх артыкулаў будуць абнулены,\\n уся "
|
919 |
-
#~ "гісторыя клікаў па кнопках падзякі будзе абнулена, Працягнуць?"
|
920 |
-
|
921 |
-
#~ msgid "Display"
|
922 |
-
#~ msgstr "Адлюстраванне"
|
923 |
-
|
924 |
-
#~ msgid "Display button at Pages"
|
925 |
-
#~ msgstr "Адлюстроўваць на Старонках"
|
926 |
-
|
927 |
-
#~ msgid "Display button at Home page, Categories/Tags archive pages"
|
928 |
-
#~ msgstr "Адлюстроўваць на Хатняй старонцы, архівах катэгорый/тэгаў"
|
929 |
-
|
930 |
-
#~ msgid "Do not show button for selected categories"
|
931 |
-
#~ msgstr "Не адлюстроўваць кнопку для адзначаных катэгорый"
|
932 |
-
|
933 |
-
#~ msgid "Position in the Post text"
|
934 |
-
#~ msgstr "Размяшчэнне ў артыкуле"
|
935 |
-
|
936 |
-
#~ msgid "Before"
|
937 |
-
#~ msgstr "Да"
|
938 |
-
|
939 |
-
#~ msgid "At first page of multipaged posts only"
|
940 |
-
#~ msgstr "Толькі на першай старонцы шматстаронкавых артыкулаў "
|
941 |
-
|
942 |
-
#~ msgid "After"
|
943 |
-
#~ msgstr "Пасля"
|
944 |
-
|
945 |
-
#~ msgid "At last page of multipaged posts only"
|
946 |
-
#~ msgstr "Толькі на апошняй старонцы шматстаронкавых артыкулаў"
|
947 |
-
|
948 |
-
#~ msgid "Shortcode [thankyou]"
|
949 |
-
#~ msgstr "Абрэвіятура [thankyou]"
|
950 |
-
|
951 |
-
#~ msgid "Manual"
|
952 |
-
#~ msgstr "Уручную"
|
953 |
-
|
954 |
-
#~ msgid "Button Caption"
|
955 |
-
#~ msgstr "Надпіс на кнопцы"
|
956 |
-
|
957 |
-
#~ msgid "Button Styling"
|
958 |
-
#~ msgstr "Стыль для Кнопкі"
|
959 |
-
|
960 |
-
#~ msgid "Add style to the div:"
|
961 |
-
#~ msgstr "Cтиль для div"
|
962 |
-
|
963 |
-
#~ msgid "e.g.,"
|
964 |
-
#~ msgstr ", напрыклад, "
|
965 |
-
|
966 |
-
#~ msgid "to the Caption font:"
|
967 |
-
#~ msgstr "для шрыфта:"
|
968 |
-
|
969 |
-
#~ msgid "font color: "
|
970 |
-
#~ msgstr "колер шрыфта:"
|
971 |
-
|
972 |
-
#~ msgid "Size"
|
973 |
-
#~ msgstr "Памер"
|
974 |
-
|
975 |
-
#~ msgid "Normal"
|
976 |
-
#~ msgstr "Звычайны"
|
977 |
-
|
978 |
-
#~ msgid "Compact"
|
979 |
-
#~ msgstr "Кампактны памер"
|
980 |
-
|
981 |
-
#~ msgid "Form and Color"
|
982 |
-
#~ msgstr "Форма і Колер"
|
983 |
-
|
984 |
-
#~ msgid "Custom button image URL"
|
985 |
-
#~ msgstr "URL малюнкі ўласнай кнопкі"
|
986 |
-
|
987 |
-
#~ msgid "Width, px"
|
988 |
-
#~ msgstr "Шырыня, px"
|
989 |
-
|
990 |
-
#~ msgid "Height, px"
|
991 |
-
#~ msgstr "Вышыня, px"
|
992 |
-
|
993 |
-
#~ msgid "Misc"
|
994 |
-
#~ msgstr "Рознае"
|
995 |
-
|
996 |
-
#~ msgid "Check IP-address"
|
997 |
-
#~ msgstr "Кантраляваць IP-адрас"
|
998 |
-
|
999 |
-
#~ msgid "Only one Thanks for post for one IP-address limit"
|
1000 |
-
#~ msgstr "Толькі адно Дзякуй на артыкул з аднаго IP-адрасы"
|
1001 |
-
|
1002 |
-
#~ msgid "Time limit:"
|
1003 |
-
#~ msgstr "Абмежаванне па часе:"
|
1004 |
-
|
1005 |
-
#~ msgid "Forever"
|
1006 |
-
#~ msgstr "Назаўжды"
|
1007 |
-
|
1008 |
-
#~ msgid "Only for this period"
|
1009 |
-
#~ msgstr "Толькі на дадзены прамежак"
|
1010 |
-
|
1011 |
-
#~ msgid "seconds"
|
1012 |
-
#~ msgstr "секунд"
|
1013 |
-
|
1014 |
-
#~ msgid "Display settings shortcuts"
|
1015 |
-
#~ msgstr "Выснова службовых спасылак"
|
1016 |
-
|
1017 |
-
#~ msgid "Add shortcuts next to the buttons for settings quick access"
|
1018 |
-
#~ msgstr ""
|
1019 |
-
#~ "Адлюстраваць службовыя спасылкі справа ад кнопак для хуткага доступу да "
|
1020 |
-
#~ "частцы налад"
|
1021 |
-
|
1022 |
-
#~ msgid "Return to Defaults"
|
1023 |
-
#~ msgstr "Вярнуць значэнні па-змаўчанню"
|
1024 |
-
|
1025 |
-
#~ msgid "Restore the default values for all settings"
|
1026 |
-
#~ msgstr "Аднавіць значэнні па-змаўчанню для ўсіх усталёвак"
|
1027 |
-
|
1028 |
-
#~ msgid "Reset Counters"
|
1029 |
-
#~ msgstr "Абнуліць Лічыльнікі"
|
1030 |
-
|
1031 |
-
#~ msgid "Reset all thanks counters for the all posts"
|
1032 |
-
#~ msgstr "Скінуць усе лічыльнікі падазяк для ўсіх артыкулаў"
|
1033 |
-
|
1034 |
-
#~ msgid "Button DIV Style Preview"
|
1035 |
-
#~ msgstr "Стыль для часткі Кнопкі"
|
1036 |
-
|
1037 |
-
#~ msgid "Post Title"
|
1038 |
-
#~ msgstr "Загаловак артыкула"
|
1039 |
-
|
1040 |
-
#~ msgid "Back to main statistics"
|
1041 |
-
#~ msgstr "Вярнуцца да асноўнай статыстыкі"
|
1042 |
-
|
1043 |
-
#~ msgid "Not available"
|
1044 |
-
#~ msgstr "Не даступны"
|
1045 |
-
|
1046 |
-
#~ msgid "Details for “%s”"
|
1047 |
-
#~ msgstr "Падрабязнасці для “%s”"
|
1048 |
-
|
1049 |
-
#~ msgid "Post Id"
|
1050 |
-
#~ msgstr "Id артыкулы"
|
1051 |
-
|
1052 |
-
#~ msgid "Thanks Quant"
|
1053 |
-
#~ msgstr "Колькасць падазяк"
|
1054 |
-
|
1055 |
-
#~ msgid "View Post"
|
1056 |
-
#~ msgstr "Прагляд артыкула"
|
1057 |
-
|
1058 |
-
#~ msgid "View \"%s\""
|
1059 |
-
#~ msgstr "Прагляд \"%s\""
|
1060 |
-
|
1061 |
-
#~ msgid "Reset this post counter"
|
1062 |
-
#~ msgstr "Абнуліць лічыльнік для гэтага артыкула"
|
1063 |
-
|
1064 |
-
#~ msgid ""
|
1065 |
-
#~ "You are about to reset this post '%s' thanks counter. Click 'Cancel' to "
|
1066 |
-
#~ "do nothing, 'OK' to reset it."
|
1067 |
-
#~ msgstr ""
|
1068 |
-
#~ "Вы збіраецеся абнуліць лічыльнік гэтага артыкула '%s'.\n"
|
1069 |
-
#~ " Выкарыстоўвайце 'Адмена' каб адмовіцца, 'OK' каб вырабіць абнуленне."
|
1070 |
-
|
1071 |
-
#~ msgid "Reset Counter"
|
1072 |
-
#~ msgstr "Абнуліць Лічыльнік"
|
1073 |
-
|
1074 |
-
#~ msgid "Displaying %s–%s of %s"
|
1075 |
-
#~ msgstr "Выснова %s–%s з %s"
|
1076 |
-
|
1077 |
-
#~ msgid "IP address"
|
1078 |
-
#~ msgstr "IP-адрас"
|
1079 |
-
|
1080 |
-
#~ msgid "Last Thank Date"
|
1081 |
-
#~ msgstr "Дата апошняй падзякі"
|
1082 |
-
|
1083 |
-
#~ msgid "Look up IP country"
|
1084 |
-
#~ msgstr "Знайсці краіну па IP адрасу"
|
1085 |
-
|
1086 |
-
#~ msgid "Show all post dates"
|
1087 |
-
#~ msgstr "Паказаць артыкулы за ўсе даты"
|
1088 |
-
|
1089 |
-
#~ msgid "Show Posts without Thanks"
|
1090 |
-
#~ msgstr "Паказаць артыкулы без падазяк"
|
1091 |
-
|
1092 |
-
#~ msgid "Rows per page: "
|
1093 |
-
#~ msgstr "Радкоў на старонку:"
|
1094 |
-
|
1095 |
-
#~ msgid "Refresh"
|
1096 |
-
#~ msgstr "Абнавіць"
|
1097 |
-
|
1098 |
-
#~ msgid "descending"
|
1099 |
-
#~ msgstr "змяншальным"
|
1100 |
-
|
1101 |
-
#~ msgid "Ascending order"
|
1102 |
-
#~ msgstr "Нарастальны парадак"
|
1103 |
-
|
1104 |
-
#~ msgid "ascending"
|
1105 |
-
#~ msgstr "нарастальным"
|
1106 |
-
|
1107 |
-
#~ msgid "Descending order"
|
1108 |
-
#~ msgstr "Змяншальны парадак"
|
1109 |
-
|
1110 |
-
#~ msgid "Click to sort in %s order"
|
1111 |
-
#~ msgstr "Пстрыкні для сартавання ў %s парадку"
|
1112 |
-
|
1113 |
-
#~ msgid "View details"
|
1114 |
-
#~ msgstr "Прагляд дэталяў"
|
1115 |
-
|
1116 |
-
#~ msgid ""
|
1117 |
-
#~ "You are about to reset this post '%s' thanks counter.\n"
|
1118 |
-
#~ " Click 'Cancel' to do nothing, 'OK' to reset it."
|
1119 |
-
#~ msgstr ""
|
1120 |
-
#~ "Вы збіраецеся абнуліць лічыльнік гэтага артыкула '%s'.\n"
|
1121 |
-
#~ " Выкарыстоўвайце 'Адмена' каб адмовіцца, 'OK' каб вырабіць абнуленне."
|
1122 |
-
|
1123 |
-
#~ msgid "No posts with thanks found"
|
1124 |
-
#~ msgstr "Артыкулы c падзякамі не знойдзены"
|
1125 |
-
|
1126 |
-
#~ msgid "the latest or the most thanked post titles with total thanks quant"
|
1127 |
-
#~ msgstr ""
|
1128 |
-
#~ "Отблагдаренные пооследними артыкулы з агульнай колькасцю падазяк ці "
|
1129 |
-
#~ "артыкулы з найвялікай колькасцю падазяк"
|
1130 |
-
|
1131 |
-
#~ msgid "Thanks Stat"
|
1132 |
-
#~ msgstr "Статыстыка падазяк"
|
1133 |
-
|
1134 |
-
#~ msgid "Total quant of thanks: "
|
1135 |
-
#~ msgstr "Агульная колькасць падазяк:"
|
1136 |
-
|
1137 |
-
#~ msgid "Title:"
|
1138 |
-
#~ msgstr "Загаловак артыкула"
|
1139 |
-
|
1140 |
-
#~ msgid "Number of posts to show:"
|
1141 |
-
#~ msgstr "Колькасць артыкулаў для паказу:"
|
1142 |
-
|
1143 |
-
#~ msgid "What posts to show:"
|
1144 |
-
#~ msgstr "Якія артыкулы паказваць:"
|
1145 |
-
|
1146 |
-
#~ msgid "Latest thanked"
|
1147 |
-
#~ msgstr "Апошнія падзякі"
|
1148 |
-
|
1149 |
-
#~ msgid "Most thanked"
|
1150 |
-
#~ msgstr "Максімум падазяк"
|
1151 |
-
|
1152 |
-
#~ msgid "Total quant of thanks"
|
1153 |
-
#~ msgstr "Агульная колькасць падазяк:"
|
1154 |
-
|
1155 |
-
#~ msgid "Display total quant of thanks"
|
1156 |
-
#~ msgstr "Паказаць агульную колькасць падазяк"
|
1157 |
-
|
1158 |
-
#~ msgid "Check Full Statistics"
|
1159 |
-
#~ msgstr "Прагляд поўнай статыстыкі"
|
1160 |
-
|
1161 |
-
#~ msgid "Plugin author home page"
|
1162 |
-
#~ msgstr "Сайт аўтара ўбудовы"
|
1163 |
-
|
1164 |
-
#~ msgid "No thanks yet"
|
1165 |
-
#~ msgstr "Пакуль падазяк няма"
|
1166 |
-
|
1167 |
-
#~ msgid "Posts number to show:"
|
1168 |
-
#~ msgstr "Колькасць артыкулаў для паказу:"
|
1169 |
-
|
1170 |
-
#~ msgid "Display Full Statistics link"
|
1171 |
-
#~ msgstr "Прагляд поўнай статыстыкі"
|
1172 |
-
|
1173 |
-
#~ msgid "Display plugin author link"
|
1174 |
-
#~ msgstr "Паказаць спасылку на сайт аўтара ўбудовы"
|
1175 |
-
|
1176 |
-
#~ msgid "Latest Thanks"
|
1177 |
-
#~ msgstr "Апошнія падзякі"
|
1178 |
-
|
1179 |
-
#~ msgid "Most Thanked"
|
1180 |
-
#~ msgstr "Максімум падазяк"
|
1181 |
-
|
1182 |
-
#~ msgid "Unknown Post!"
|
1183 |
-
#~ msgstr "Невядомы артыкул!"
|
1184 |
-
|
1185 |
-
#~ msgid "Submit"
|
1186 |
-
#~ msgstr "Адправіць"
|
1187 |
-
|
1188 |
-
#~ msgid "Show total quant of thanks"
|
1189 |
-
#~ msgstr "Паказаць агульную колькасць падазяк"
|
1190 |
-
|
1191 |
-
#~ msgid ""
|
1192 |
-
#~ "This plugin installs the Thank You Counter Button for each of your blog "
|
1193 |
-
#~ "post.\n"
|
1194 |
-
#~ " It can have custom style in your blog posts."
|
1195 |
-
#~ msgstr ""
|
1196 |
-
#~ "Гэта ўбудова дадае кнопку падліку падазяк да кожнага артыкула Вашага "
|
1197 |
-
#~ "блога.\n"
|
1198 |
-
#~ " Стыль і размяшчэнне кнопкі могуць быць адаптаваны да "
|
1199 |
-
#~ "стылю вашага блога."
|
1200 |
-
|
1201 |
-
#~ msgid ""
|
1202 |
-
#~ "To exclude Thank You button from particular post use shortcode "
|
1203 |
-
#~ "[nothankyou] there"
|
1204 |
-
#~ msgstr ""
|
1205 |
-
#~ "Каб не паказваць кнопку Дзякуй для конкректной артыкулы, устаўце ў яе "
|
1206 |
-
#~ "тэкст код [notthankyou]"
|
1207 |
-
|
1208 |
-
#~ msgid "(at most 15)"
|
1209 |
-
#~ msgstr "(да 15)"
|
1210 |
-
|
1211 |
-
#~ msgid "Before and After"
|
1212 |
-
#~ msgstr "Да і Пасля"
|
1213 |
-
|
1214 |
-
#~ msgid "Filter"
|
1215 |
-
#~ msgstr "Фільтр"
|
1216 |
-
|
1217 |
-
#~ msgid "Position"
|
1218 |
-
#~ msgstr "Размяшчэнне"
|
1219 |
-
|
1220 |
-
#~ msgid "Add style to the Thank You button's div, e.g.,"
|
1221 |
-
#~ msgstr "Дадаць стыль у частку div кнопкі Дзякуй"
|
1222 |
-
|
1223 |
-
#~ msgid "Color"
|
1224 |
-
#~ msgstr "Колер"
|
1225 |
-
|
1226 |
-
#~ msgid "Blue"
|
1227 |
-
#~ msgstr "Сіні"
|
1228 |
-
|
1229 |
-
#~ msgid "Green"
|
1230 |
-
#~ msgstr "Зялёны"
|
1231 |
-
|
1232 |
-
#~ msgid "Grey"
|
1233 |
-
#~ msgstr "Шэры"
|
1234 |
-
|
1235 |
-
#~ msgid "Black"
|
1236 |
-
#~ msgstr "Чорны"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
lang/ure-de_DE.mo
DELETED
Binary file
|
lang/ure-de_DE.po
DELETED
@@ -1,842 +0,0 @@
|
|
1 |
-
msgid ""
|
2 |
-
msgstr ""
|
3 |
-
"Project-Id-Version: User Role Editor v. 3.7.5\n"
|
4 |
-
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2013-05-17 11:13+0700\n"
|
6 |
-
"PO-Revision-Date: 2013-05-17 11:13+0700\n"
|
7 |
-
"Last-Translator: Vladimir Garagulya <vladimir@shinephp.com>\n"
|
8 |
-
"Language-Team: Peter Becker-Heidmann <peter@becker-heidmann.de>\n"
|
9 |
-
"Language: \n"
|
10 |
-
"MIME-Version: 1.0\n"
|
11 |
-
"Content-Type: text/plain; charset=UTF-8\n"
|
12 |
-
"Content-Transfer-Encoding: 8bit\n"
|
13 |
-
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
14 |
-
"X-Poedit-Language: German\n"
|
15 |
-
"X-Poedit-Country: GERMANY\n"
|
16 |
-
"X-Poedit-SourceCharset: utf-8\n"
|
17 |
-
"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n"
|
18 |
-
"X-Poedit-Basepath: ../\n"
|
19 |
-
"X-Textdomain-Support: yes\n"
|
20 |
-
"X-Poedit-SearchPath-0: .\n"
|
21 |
-
|
22 |
-
# @ ure
|
23 |
-
#: user-role-editor.php:34
|
24 |
-
#, fuzzy, php-format
|
25 |
-
msgid "User Role Editor requires PHP %s or newer."
|
26 |
-
msgstr "User Role Editor benötigt PHP 5.0 oder aktueller"
|
27 |
-
|
28 |
-
# @ ure
|
29 |
-
#: user-role-editor.php:35
|
30 |
-
#: user-role-editor.php:107
|
31 |
-
msgid "Please update!"
|
32 |
-
msgstr "Bitte aktualisieren!"
|
33 |
-
|
34 |
-
#: user-role-editor.php:80
|
35 |
-
msgid "Only"
|
36 |
-
msgstr "Nur"
|
37 |
-
|
38 |
-
#: user-role-editor.php:80
|
39 |
-
msgid "is allowed to use"
|
40 |
-
msgstr "ist gestattet zu benutzen"
|
41 |
-
|
42 |
-
# @ ure
|
43 |
-
#: user-role-editor.php:86
|
44 |
-
#: user-role-editor.php:312
|
45 |
-
#: user-role-editor.php:368
|
46 |
-
msgid "User Role Editor"
|
47 |
-
msgstr "User Role Editor"
|
48 |
-
|
49 |
-
# @ ure
|
50 |
-
#: user-role-editor.php:106
|
51 |
-
#, fuzzy, php-format
|
52 |
-
msgid "User Role Editor requires WordPress %s or newer."
|
53 |
-
msgstr "User Role Editor benötigt Wordpress 3.0 oder aktueller"
|
54 |
-
|
55 |
-
# @ ure
|
56 |
-
#: user-role-editor.php:139
|
57 |
-
msgid "Select All"
|
58 |
-
msgstr "Wähle alle aus"
|
59 |
-
|
60 |
-
#: user-role-editor.php:140
|
61 |
-
msgid "Unselect All"
|
62 |
-
msgstr "Wähle alle ab"
|
63 |
-
|
64 |
-
#: user-role-editor.php:141
|
65 |
-
msgid "Reverse"
|
66 |
-
msgstr "Rückgängig"
|
67 |
-
|
68 |
-
# @ ure
|
69 |
-
#: user-role-editor.php:142
|
70 |
-
msgid "Update"
|
71 |
-
msgstr "Aktualisieren"
|
72 |
-
|
73 |
-
# @ ure
|
74 |
-
#: user-role-editor.php:143
|
75 |
-
#, fuzzy
|
76 |
-
msgid "Please confirm permissions update"
|
77 |
-
msgstr "Bestätigen Sie bitte, um fortzufahren"
|
78 |
-
|
79 |
-
# @ ure
|
80 |
-
#: user-role-editor.php:144
|
81 |
-
msgid "Add New Role"
|
82 |
-
msgstr "Neue Rolle hinzufügen"
|
83 |
-
|
84 |
-
# @ ure
|
85 |
-
#: user-role-editor.php:145
|
86 |
-
#, fuzzy
|
87 |
-
msgid " Role name (ID) can not be empty!"
|
88 |
-
msgstr "Name darf nicht leer sein!"
|
89 |
-
|
90 |
-
# @ ure
|
91 |
-
#: user-role-editor.php:146
|
92 |
-
#, fuzzy
|
93 |
-
msgid " Role name (ID) must contain latin characters, digits, hyphens or underscore only!"
|
94 |
-
msgstr "Fehler: Der Rollen-Name darf nur Buchstaben und Ziffern enthalten!"
|
95 |
-
|
96 |
-
# @ ure
|
97 |
-
#: user-role-editor.php:147
|
98 |
-
#, fuzzy
|
99 |
-
msgid "Add Role"
|
100 |
-
msgstr "Neue Rolle hinzufügen"
|
101 |
-
|
102 |
-
# @ ure
|
103 |
-
#: user-role-editor.php:148
|
104 |
-
msgid "Delete Role"
|
105 |
-
msgstr "Löschen der Rolle"
|
106 |
-
|
107 |
-
# @ ure
|
108 |
-
#: user-role-editor.php:149
|
109 |
-
msgid "Cancel"
|
110 |
-
msgstr "Abbrechen"
|
111 |
-
|
112 |
-
# @ ure
|
113 |
-
#: user-role-editor.php:150
|
114 |
-
#, fuzzy
|
115 |
-
msgid "Add Capability"
|
116 |
-
msgstr "Füge neues Recht hinzu"
|
117 |
-
|
118 |
-
#: user-role-editor.php:151
|
119 |
-
#: user-role-editor.php:156
|
120 |
-
#, fuzzy
|
121 |
-
msgid "Delete Capability"
|
122 |
-
msgstr "Entferne Recht"
|
123 |
-
|
124 |
-
# @ ure
|
125 |
-
#: user-role-editor.php:152
|
126 |
-
msgid "Reset"
|
127 |
-
msgstr "Zurücksetzen"
|
128 |
-
|
129 |
-
#: user-role-editor.php:153
|
130 |
-
msgid "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?"
|
131 |
-
msgstr ""
|
132 |
-
|
133 |
-
# @ ure
|
134 |
-
#: user-role-editor.php:154
|
135 |
-
#, fuzzy
|
136 |
-
msgid "Default Role"
|
137 |
-
msgstr "Löschen der Rolle"
|
138 |
-
|
139 |
-
# @ ure
|
140 |
-
#: user-role-editor.php:155
|
141 |
-
#, fuzzy
|
142 |
-
msgid "Set New Default Role"
|
143 |
-
msgstr "Als Standard-Benutzer-Rolle setzen"
|
144 |
-
|
145 |
-
#: user-role-editor.php:157
|
146 |
-
msgid "Warning! Be careful - removing critical capability could crash some plugin or other custom code"
|
147 |
-
msgstr "Achtung! Seien Sie vorsichtig - das Löschen kritischer Rechte könnte Plugin- oder angepassten Code zerstören."
|
148 |
-
|
149 |
-
# @ ure
|
150 |
-
#: user-role-editor.php:158
|
151 |
-
#, fuzzy
|
152 |
-
msgid " Capability name (ID) can not be empty!"
|
153 |
-
msgstr "Name darf nicht leer sein!"
|
154 |
-
|
155 |
-
# @ ure
|
156 |
-
#: user-role-editor.php:159
|
157 |
-
#, fuzzy
|
158 |
-
msgid " Capability name (ID) must contain latin characters, digits, hyphens or underscore only!"
|
159 |
-
msgstr "Fehler: Der Name des Rechts darf nur Buchstaben und Ziffern enthalten!"
|
160 |
-
|
161 |
-
# @ ure
|
162 |
-
#: user-role-editor.php:284
|
163 |
-
msgid "Settings"
|
164 |
-
msgstr "Einstellungen"
|
165 |
-
|
166 |
-
# @ ure
|
167 |
-
#: user-role-editor.php:294
|
168 |
-
#: includes/ure-options.php:209
|
169 |
-
msgid "Changelog"
|
170 |
-
msgstr "Änderungen"
|
171 |
-
|
172 |
-
#: user-role-editor.php:342
|
173 |
-
msgid "Capabilities"
|
174 |
-
msgstr "Rechte"
|
175 |
-
|
176 |
-
# @ ure
|
177 |
-
#: user-role-editor.php:371
|
178 |
-
#: user-role-editor.php:407
|
179 |
-
#, fuzzy
|
180 |
-
msgid "Other Roles"
|
181 |
-
msgstr "Löschen der Rolle"
|
182 |
-
|
183 |
-
# @ ure
|
184 |
-
#: user-role-editor.php:381
|
185 |
-
#, fuzzy
|
186 |
-
msgid "Edit"
|
187 |
-
msgstr "Redakteur"
|
188 |
-
|
189 |
-
# @ ure
|
190 |
-
#: includes/ure-lib.php:35
|
191 |
-
msgid "Error is occur. Please check the log file."
|
192 |
-
msgstr "Ein Fehler ist aufgetreten. Bitte überprüfen Sie die Log-Datei."
|
193 |
-
|
194 |
-
# @ ure
|
195 |
-
#: includes/ure-lib.php:364
|
196 |
-
msgid "Backup record is created for the current role capabilities"
|
197 |
-
msgstr "Sicherheitskopie der aktuellen Rollenbefugnisse wird erstellt"
|
198 |
-
|
199 |
-
# @ ure
|
200 |
-
#: includes/ure-lib.php:481
|
201 |
-
#, fuzzy
|
202 |
-
msgid "Error: Role ID must contain latin characters, digits, hyphens or underscore only!"
|
203 |
-
msgstr "Fehler: Der Rollen-Name darf nur Buchstaben und Ziffern enthalten!"
|
204 |
-
|
205 |
-
# @ ure
|
206 |
-
#: includes/ure-lib.php:496
|
207 |
-
#, php-format
|
208 |
-
msgid "Role %s exists already"
|
209 |
-
msgstr "Rolle %s existiert bereits"
|
210 |
-
|
211 |
-
# @ ure
|
212 |
-
#: includes/ure-lib.php:511
|
213 |
-
msgid "Error is encountered during new role create operation"
|
214 |
-
msgstr "Ein Fehler ist beim Erstellen der neuen Rolle aufgetreten"
|
215 |
-
|
216 |
-
# @ ure
|
217 |
-
#: includes/ure-lib.php:513
|
218 |
-
#, php-format
|
219 |
-
msgid "Role %s is created successfully"
|
220 |
-
msgstr "Rolle %s wurde erfolgreich erstellt"
|
221 |
-
|
222 |
-
# @ ure
|
223 |
-
#: includes/ure-lib.php:597
|
224 |
-
msgid "Error encountered during role delete operation"
|
225 |
-
msgstr "Ein Fehler ist während des Löschvorgangs der Rolle aufgetreten"
|
226 |
-
|
227 |
-
# @ ure
|
228 |
-
#: includes/ure-lib.php:599
|
229 |
-
#, php-format
|
230 |
-
msgid "Role %s is deleted successfully"
|
231 |
-
msgstr "Rolle %s wurde erfolgreich gelöscht"
|
232 |
-
|
233 |
-
# @ ure
|
234 |
-
#: includes/ure-lib.php:619
|
235 |
-
msgid "Error encountered during default role change operation"
|
236 |
-
msgstr "Ein Fehler ist während Änderung der Standard-Rolle aufgetreten"
|
237 |
-
|
238 |
-
# @ ure
|
239 |
-
#: includes/ure-lib.php:625
|
240 |
-
#, php-format
|
241 |
-
msgid "Default role for new users is set to %s successfully"
|
242 |
-
msgstr "Standard-Rolle für neue Benutzer erfolgreich auf %s gesetzt"
|
243 |
-
|
244 |
-
# @ ure
|
245 |
-
#: includes/ure-lib.php:652
|
246 |
-
msgid "Editor"
|
247 |
-
msgstr "Redakteur"
|
248 |
-
|
249 |
-
# @ ure
|
250 |
-
#: includes/ure-lib.php:653
|
251 |
-
msgid "Author"
|
252 |
-
msgstr "Autor"
|
253 |
-
|
254 |
-
# @ ure
|
255 |
-
#: includes/ure-lib.php:654
|
256 |
-
msgid "Contributor"
|
257 |
-
msgstr "Mitarbeiter"
|
258 |
-
|
259 |
-
# @ ure
|
260 |
-
#: includes/ure-lib.php:655
|
261 |
-
msgid "Subscriber"
|
262 |
-
msgstr "Abonnent"
|
263 |
-
|
264 |
-
# @ ure
|
265 |
-
#: includes/ure-lib.php:657
|
266 |
-
msgid "Switch themes"
|
267 |
-
msgstr "Design auswählen"
|
268 |
-
|
269 |
-
# @ ure
|
270 |
-
#: includes/ure-lib.php:658
|
271 |
-
msgid "Edit themes"
|
272 |
-
msgstr "Design bearbeiten"
|
273 |
-
|
274 |
-
# @ ure
|
275 |
-
#: includes/ure-lib.php:659
|
276 |
-
msgid "Activate plugins"
|
277 |
-
msgstr "Plugins aktivieren"
|
278 |
-
|
279 |
-
# @ ure
|
280 |
-
#: includes/ure-lib.php:660
|
281 |
-
msgid "Edit plugins"
|
282 |
-
msgstr "Plugins bearbeiten"
|
283 |
-
|
284 |
-
# @ ure
|
285 |
-
#: includes/ure-lib.php:661
|
286 |
-
msgid "Edit users"
|
287 |
-
msgstr "Benutzer bearbeiten"
|
288 |
-
|
289 |
-
# @ ure
|
290 |
-
#: includes/ure-lib.php:662
|
291 |
-
msgid "Edit files"
|
292 |
-
msgstr "Dateien bearbeiten"
|
293 |
-
|
294 |
-
# @ ure
|
295 |
-
#: includes/ure-lib.php:663
|
296 |
-
msgid "Manage options"
|
297 |
-
msgstr "Eigenschaften verwalten"
|
298 |
-
|
299 |
-
# @ ure
|
300 |
-
#: includes/ure-lib.php:664
|
301 |
-
msgid "Moderate comments"
|
302 |
-
msgstr "Kommentare moderieren"
|
303 |
-
|
304 |
-
# @ ure
|
305 |
-
#: includes/ure-lib.php:665
|
306 |
-
msgid "Manage categories"
|
307 |
-
msgstr "Kategorien verwalten"
|
308 |
-
|
309 |
-
# @ ure
|
310 |
-
#: includes/ure-lib.php:666
|
311 |
-
msgid "Manage links"
|
312 |
-
msgstr "Links verwalten"
|
313 |
-
|
314 |
-
# @ ure
|
315 |
-
#: includes/ure-lib.php:667
|
316 |
-
msgid "Upload files"
|
317 |
-
msgstr "Dateien hochladen"
|
318 |
-
|
319 |
-
# @ ure
|
320 |
-
#: includes/ure-lib.php:668
|
321 |
-
msgid "Import"
|
322 |
-
msgstr "Import"
|
323 |
-
|
324 |
-
# @ ure
|
325 |
-
#: includes/ure-lib.php:669
|
326 |
-
msgid "Unfiltered html"
|
327 |
-
msgstr "Ungefiltertes Html"
|
328 |
-
|
329 |
-
# @ ure
|
330 |
-
#: includes/ure-lib.php:670
|
331 |
-
msgid "Edit posts"
|
332 |
-
msgstr "Artikel verwalten"
|
333 |
-
|
334 |
-
# @ ure
|
335 |
-
#: includes/ure-lib.php:671
|
336 |
-
msgid "Edit others posts"
|
337 |
-
msgstr "Artikel anderer Benutzer verwalten"
|
338 |
-
|
339 |
-
# @ ure
|
340 |
-
#: includes/ure-lib.php:672
|
341 |
-
msgid "Edit published posts"
|
342 |
-
msgstr "Veröffentlichte Artikel bearbeiten"
|
343 |
-
|
344 |
-
# @ ure
|
345 |
-
#: includes/ure-lib.php:673
|
346 |
-
msgid "Publish posts"
|
347 |
-
msgstr "Artikel veröffentlichen"
|
348 |
-
|
349 |
-
# @ ure
|
350 |
-
#: includes/ure-lib.php:674
|
351 |
-
msgid "Edit pages"
|
352 |
-
msgstr "Seiten bearbeiten"
|
353 |
-
|
354 |
-
# @ ure
|
355 |
-
#: includes/ure-lib.php:675
|
356 |
-
msgid "Read"
|
357 |
-
msgstr "Lesen"
|
358 |
-
|
359 |
-
# @ ure
|
360 |
-
#: includes/ure-lib.php:676
|
361 |
-
msgid "Level 10"
|
362 |
-
msgstr ""
|
363 |
-
|
364 |
-
# @ ure
|
365 |
-
#: includes/ure-lib.php:677
|
366 |
-
msgid "Level 9"
|
367 |
-
msgstr ""
|
368 |
-
|
369 |
-
# @ ure
|
370 |
-
#: includes/ure-lib.php:678
|
371 |
-
msgid "Level 8"
|
372 |
-
msgstr ""
|
373 |
-
|
374 |
-
# @ ure
|
375 |
-
#: includes/ure-lib.php:679
|
376 |
-
msgid "Level 7"
|
377 |
-
msgstr ""
|
378 |
-
|
379 |
-
# @ ure
|
380 |
-
#: includes/ure-lib.php:680
|
381 |
-
msgid "Level 6"
|
382 |
-
msgstr ""
|
383 |
-
|
384 |
-
# @ ure
|
385 |
-
#: includes/ure-lib.php:681
|
386 |
-
msgid "Level 5"
|
387 |
-
msgstr ""
|
388 |
-
|
389 |
-
# @ ure
|
390 |
-
#: includes/ure-lib.php:682
|
391 |
-
msgid "Level 4"
|
392 |
-
msgstr ""
|
393 |
-
|
394 |
-
# @ ure
|
395 |
-
#: includes/ure-lib.php:683
|
396 |
-
msgid "Level 3"
|
397 |
-
msgstr ""
|
398 |
-
|
399 |
-
# @ ure
|
400 |
-
#: includes/ure-lib.php:684
|
401 |
-
msgid "Level 2"
|
402 |
-
msgstr ""
|
403 |
-
|
404 |
-
# @ ure
|
405 |
-
#: includes/ure-lib.php:685
|
406 |
-
msgid "Level 1"
|
407 |
-
msgstr ""
|
408 |
-
|
409 |
-
# @ ure
|
410 |
-
#: includes/ure-lib.php:686
|
411 |
-
msgid "Level 0"
|
412 |
-
msgstr ""
|
413 |
-
|
414 |
-
# @ ure
|
415 |
-
#: includes/ure-lib.php:687
|
416 |
-
msgid "Edit others pages"
|
417 |
-
msgstr "Seiten anderer Benutzer bearbeiten"
|
418 |
-
|
419 |
-
# @ ure
|
420 |
-
#: includes/ure-lib.php:688
|
421 |
-
msgid "Edit published pages"
|
422 |
-
msgstr "Veröffentlichte Seiten bearbeiten"
|
423 |
-
|
424 |
-
# @ ure
|
425 |
-
#: includes/ure-lib.php:689
|
426 |
-
msgid "Publish pages"
|
427 |
-
msgstr "Seiten veröffentlichen"
|
428 |
-
|
429 |
-
# @ ure
|
430 |
-
#: includes/ure-lib.php:690
|
431 |
-
msgid "Delete pages"
|
432 |
-
msgstr "Seiten löschen"
|
433 |
-
|
434 |
-
# @ ure
|
435 |
-
#: includes/ure-lib.php:691
|
436 |
-
msgid "Delete others pages"
|
437 |
-
msgstr "Seiten anderer Benutzer löschen"
|
438 |
-
|
439 |
-
# @ ure
|
440 |
-
#: includes/ure-lib.php:692
|
441 |
-
msgid "Delete published pages"
|
442 |
-
msgstr "Veröffentlichte Seiten löschen"
|
443 |
-
|
444 |
-
# @ ure
|
445 |
-
#: includes/ure-lib.php:693
|
446 |
-
msgid "Delete posts"
|
447 |
-
msgstr "Artikel löschen"
|
448 |
-
|
449 |
-
# @ ure
|
450 |
-
#: includes/ure-lib.php:694
|
451 |
-
msgid "Delete others posts"
|
452 |
-
msgstr "Artikel anderer Benutzer löschen"
|
453 |
-
|
454 |
-
# @ ure
|
455 |
-
#: includes/ure-lib.php:695
|
456 |
-
msgid "Delete published posts"
|
457 |
-
msgstr "Veröffentlichte Artikel löschen"
|
458 |
-
|
459 |
-
# @ ure
|
460 |
-
#: includes/ure-lib.php:696
|
461 |
-
msgid "Delete private posts"
|
462 |
-
msgstr "Private Artikel löschen"
|
463 |
-
|
464 |
-
# @ ure
|
465 |
-
#: includes/ure-lib.php:697
|
466 |
-
msgid "Edit private posts"
|
467 |
-
msgstr "Private Artikel bearbeiten"
|
468 |
-
|
469 |
-
# @ ure
|
470 |
-
#: includes/ure-lib.php:698
|
471 |
-
msgid "Read private posts"
|
472 |
-
msgstr "Private Artikel lesen"
|
473 |
-
|
474 |
-
# @ ure
|
475 |
-
#: includes/ure-lib.php:699
|
476 |
-
msgid "Delete private pages"
|
477 |
-
msgstr "Private Artikel löschen"
|
478 |
-
|
479 |
-
# @ ure
|
480 |
-
#: includes/ure-lib.php:700
|
481 |
-
msgid "Edit private pages"
|
482 |
-
msgstr "Private Seiten bearbeiten"
|
483 |
-
|
484 |
-
# @ ure
|
485 |
-
#: includes/ure-lib.php:701
|
486 |
-
msgid "Read private pages"
|
487 |
-
msgstr "Private Seiten lesen"
|
488 |
-
|
489 |
-
# @ ure
|
490 |
-
#: includes/ure-lib.php:702
|
491 |
-
msgid "Delete users"
|
492 |
-
msgstr "Benutzer löschen"
|
493 |
-
|
494 |
-
# @ ure
|
495 |
-
#: includes/ure-lib.php:703
|
496 |
-
msgid "Create users"
|
497 |
-
msgstr "Benutzer erstellen"
|
498 |
-
|
499 |
-
# @ ure
|
500 |
-
#: includes/ure-lib.php:704
|
501 |
-
msgid "Unfiltered upload"
|
502 |
-
msgstr "Ungefiltertes Hochladen"
|
503 |
-
|
504 |
-
# @ ure
|
505 |
-
#: includes/ure-lib.php:705
|
506 |
-
msgid "Edit dashboard"
|
507 |
-
msgstr "Dashboard bearbeiten"
|
508 |
-
|
509 |
-
# @ ure
|
510 |
-
#: includes/ure-lib.php:706
|
511 |
-
msgid "Update plugins"
|
512 |
-
msgstr "Plugins aktualisieren"
|
513 |
-
|
514 |
-
# @ ure
|
515 |
-
#: includes/ure-lib.php:707
|
516 |
-
msgid "Delete plugins"
|
517 |
-
msgstr "Plugins löschen"
|
518 |
-
|
519 |
-
# @ ure
|
520 |
-
#: includes/ure-lib.php:708
|
521 |
-
msgid "Install plugins"
|
522 |
-
msgstr "Plugins installieren"
|
523 |
-
|
524 |
-
# @ ure
|
525 |
-
#: includes/ure-lib.php:709
|
526 |
-
msgid "Update themes"
|
527 |
-
msgstr "Designs aktualisieren"
|
528 |
-
|
529 |
-
# @ ure
|
530 |
-
#: includes/ure-lib.php:710
|
531 |
-
msgid "Install themes"
|
532 |
-
msgstr "Designs installieren"
|
533 |
-
|
534 |
-
# @ ure
|
535 |
-
#: includes/ure-lib.php:711
|
536 |
-
msgid "Update core"
|
537 |
-
msgstr "Wordpress aktualisieren"
|
538 |
-
|
539 |
-
# @ ure
|
540 |
-
#: includes/ure-lib.php:712
|
541 |
-
msgid "List users"
|
542 |
-
msgstr "Benutzer auflisten"
|
543 |
-
|
544 |
-
# @ ure
|
545 |
-
#: includes/ure-lib.php:713
|
546 |
-
msgid "Remove users"
|
547 |
-
msgstr "Benutzer entfernen"
|
548 |
-
|
549 |
-
# @ ure
|
550 |
-
#: includes/ure-lib.php:714
|
551 |
-
msgid "Add users"
|
552 |
-
msgstr "Benutzer hinzufügen"
|
553 |
-
|
554 |
-
# @ ure
|
555 |
-
#: includes/ure-lib.php:715
|
556 |
-
msgid "Promote users"
|
557 |
-
msgstr "Benutzer vorschlagen"
|
558 |
-
|
559 |
-
# @ ure
|
560 |
-
#: includes/ure-lib.php:716
|
561 |
-
msgid "Edit theme options"
|
562 |
-
msgstr "Design-Eigenschaften bearbeiten"
|
563 |
-
|
564 |
-
# @ ure
|
565 |
-
#: includes/ure-lib.php:717
|
566 |
-
msgid "Delete themes"
|
567 |
-
msgstr "Designs löschen"
|
568 |
-
|
569 |
-
# @ ure
|
570 |
-
#: includes/ure-lib.php:718
|
571 |
-
msgid "Export"
|
572 |
-
msgstr "Export"
|
573 |
-
|
574 |
-
# @ ure
|
575 |
-
#: includes/ure-lib.php:834
|
576 |
-
msgid "Error: Capability name must contain latin characters and digits only!"
|
577 |
-
msgstr "Fehler: Der Name des Rechts darf nur Buchstaben und Ziffern enthalten!"
|
578 |
-
|
579 |
-
# @ ure
|
580 |
-
#: includes/ure-lib.php:846
|
581 |
-
#, php-format
|
582 |
-
msgid "Capability %s is added successfully"
|
583 |
-
msgstr "Recht %s wurde erfolgreich hinzugefügt"
|
584 |
-
|
585 |
-
#: includes/ure-lib.php:848
|
586 |
-
#, php-format
|
587 |
-
msgid "Capability %s exists already"
|
588 |
-
msgstr "Recht %s existiert bereits"
|
589 |
-
|
590 |
-
#: includes/ure-lib.php:997
|
591 |
-
#, php-format
|
592 |
-
msgid "Error! You do not have permission to delete this capability: %s!"
|
593 |
-
msgstr "Fehler: Sie haben nicht die Erlaubnis, dieses Recht zu löschen: %s!"
|
594 |
-
|
595 |
-
# @ ure
|
596 |
-
#: includes/ure-lib.php:1016
|
597 |
-
#, php-format
|
598 |
-
msgid "Capability %s is removed successfully"
|
599 |
-
msgstr "Das Recht %s wurde erfogreich entfernt"
|
600 |
-
|
601 |
-
#: includes/ure-lib.php:1083
|
602 |
-
msgid "Help"
|
603 |
-
msgstr "Hilfe"
|
604 |
-
|
605 |
-
# @ ure
|
606 |
-
#: includes/ure-role-edit.php:29
|
607 |
-
msgid "None"
|
608 |
-
msgstr "Nichts"
|
609 |
-
|
610 |
-
# @ ure
|
611 |
-
#: includes/ure-role-edit.php:67
|
612 |
-
msgid "Select Role and change its capabilities list"
|
613 |
-
msgstr "Eine Rolle auswählen und ihre Rechte ändern"
|
614 |
-
|
615 |
-
# @ ure
|
616 |
-
#: includes/ure-role-edit.php:69
|
617 |
-
#: includes/ure-role-edit.php:166
|
618 |
-
msgid "Select Role:"
|
619 |
-
msgstr "Eine Rolle auswählen:"
|
620 |
-
|
621 |
-
# @ ure
|
622 |
-
#: includes/ure-role-edit.php:79
|
623 |
-
#: includes/ure-user-edit.php:38
|
624 |
-
msgid "Show capabilities in human readable form"
|
625 |
-
msgstr "Anzeige der Rechte in allgemeinverständlicher Form"
|
626 |
-
|
627 |
-
#: includes/ure-role-edit.php:88
|
628 |
-
#: includes/ure-user-edit.php:47
|
629 |
-
msgid "Show deprecated capabilities"
|
630 |
-
msgstr "Zeige herabgesetzte Rechte"
|
631 |
-
|
632 |
-
#: includes/ure-role-edit.php:92
|
633 |
-
msgid "If checked, then apply action to ALL sites of this Network"
|
634 |
-
msgstr "Fall aktiviert, wende die Aktion auf ALLE Webpräsenzen"
|
635 |
-
|
636 |
-
#: includes/ure-role-edit.php:102
|
637 |
-
msgid "Apply to All Sites"
|
638 |
-
msgstr "Wende auf alle Webpräsenzen an"
|
639 |
-
|
640 |
-
#: includes/ure-role-edit.php:109
|
641 |
-
#: includes/ure-user-edit.php:88
|
642 |
-
msgid "Core capabilities:"
|
643 |
-
msgstr "Rechte WordPress:"
|
644 |
-
|
645 |
-
#: includes/ure-role-edit.php:124
|
646 |
-
#: includes/ure-user-edit.php:103
|
647 |
-
#, fuzzy
|
648 |
-
msgid "Custom capabilities:"
|
649 |
-
msgstr "Rechte:"
|
650 |
-
|
651 |
-
#: includes/ure-role-edit.php:155
|
652 |
-
msgid "Role name (ID): "
|
653 |
-
msgstr ""
|
654 |
-
|
655 |
-
#: includes/ure-role-edit.php:157
|
656 |
-
msgid "Display Role Name: "
|
657 |
-
msgstr ""
|
658 |
-
|
659 |
-
#: includes/ure-role-edit.php:159
|
660 |
-
msgid "Make copy of: "
|
661 |
-
msgstr "Erstelle Kopie von:"
|
662 |
-
|
663 |
-
# @ ure
|
664 |
-
#: includes/ure-role-edit.php:181
|
665 |
-
#, fuzzy
|
666 |
-
msgid "Delete:"
|
667 |
-
msgstr "Löschen"
|
668 |
-
|
669 |
-
#: includes/ure-role-edit.php:188
|
670 |
-
msgid "Capability name (ID): "
|
671 |
-
msgstr ""
|
672 |
-
|
673 |
-
#: includes/ure-user-edit.php:22
|
674 |
-
msgid "Change capabilities for user"
|
675 |
-
msgstr "Ändere Rechte für Benutzer"
|
676 |
-
|
677 |
-
#: includes/ure-user-edit.php:52
|
678 |
-
msgid "Primary Role:"
|
679 |
-
msgstr ""
|
680 |
-
|
681 |
-
#: includes/ure-user-edit.php:62
|
682 |
-
msgid "bbPress Role:"
|
683 |
-
msgstr ""
|
684 |
-
|
685 |
-
# @ ure
|
686 |
-
#: includes/ure-user-edit.php:72
|
687 |
-
#, fuzzy
|
688 |
-
msgid "Other Roles:"
|
689 |
-
msgstr "Löschen der Rolle"
|
690 |
-
|
691 |
-
# @ ure
|
692 |
-
#: includes/ure-options.php:65
|
693 |
-
#, fuzzy
|
694 |
-
msgid "User Roles are restored to WordPress default values. "
|
695 |
-
msgstr "Rollenbefugnisse werden von der Sicherheitskopie wiederhergestellt."
|
696 |
-
|
697 |
-
#: includes/ure-options.php:136
|
698 |
-
msgid "Error: "
|
699 |
-
msgstr "Fehler:"
|
700 |
-
|
701 |
-
# @ ure
|
702 |
-
#: includes/ure-options.php:136
|
703 |
-
#: includes/ure-options.php:156
|
704 |
-
msgid "Role"
|
705 |
-
msgstr "Rolle"
|
706 |
-
|
707 |
-
#: includes/ure-options.php:136
|
708 |
-
msgid "does not exist"
|
709 |
-
msgstr "existiert nicht"
|
710 |
-
|
711 |
-
# @ ure
|
712 |
-
#: includes/ure-options.php:156
|
713 |
-
msgid "is updated successfully"
|
714 |
-
msgstr "wurde erfolgreich aktualisiert"
|
715 |
-
|
716 |
-
# @ ure
|
717 |
-
#: includes/ure-options.php:161
|
718 |
-
#: includes/ure-options.php:174
|
719 |
-
#, fuzzy
|
720 |
-
msgid "Error occured during role update"
|
721 |
-
msgstr "Ein Fehler ist während des Löschvorgangs der Rolle aufgetreten"
|
722 |
-
|
723 |
-
#: includes/ure-options.php:169
|
724 |
-
msgid "User"
|
725 |
-
msgstr "Benutzer"
|
726 |
-
|
727 |
-
# @ ure
|
728 |
-
#: includes/ure-options.php:169
|
729 |
-
msgid "capabilities are updated successfully"
|
730 |
-
msgstr "Rechte wurden erfolgreich aktualisiert"
|
731 |
-
|
732 |
-
# @ ure
|
733 |
-
#: includes/ure-options.php:206
|
734 |
-
msgid "About this Plugin:"
|
735 |
-
msgstr "Über dieses Plugin:"
|
736 |
-
|
737 |
-
# @ ure
|
738 |
-
#: includes/ure-options.php:207
|
739 |
-
msgid "Author's website"
|
740 |
-
msgstr "Webseite des Autors"
|
741 |
-
|
742 |
-
# @ ure
|
743 |
-
#: includes/ure-options.php:208
|
744 |
-
msgid "Plugin webpage"
|
745 |
-
msgstr "Webseite des Plugins"
|
746 |
-
|
747 |
-
# @ ure
|
748 |
-
#: includes/ure-options.php:210
|
749 |
-
msgid "FAQ"
|
750 |
-
msgstr "FAQ"
|
751 |
-
|
752 |
-
# @ ure
|
753 |
-
#~ msgid "Database operation error. Check log file."
|
754 |
-
#~ msgstr "Datenbankfehler. Überprüfen Sie die Protokolldatei."
|
755 |
-
# @ ure
|
756 |
-
#~ msgid ""
|
757 |
-
#~ "No backup data. It is created automatically before the first role data "
|
758 |
-
#~ "update."
|
759 |
-
#~ msgstr ""
|
760 |
-
#~ "Keine Sicherungskopie vorhanden. Sie wird automatisch vor der ersten "
|
761 |
-
#~ "Aktualisierung von Rollen-Daten erstellt."
|
762 |
-
# @ ure
|
763 |
-
#~ msgid " Name must contain latin characters and digits only!"
|
764 |
-
#~ msgstr "Der Name darf nur Buchstaben und Ziffern enthalten!"
|
765 |
-
# @ ure
|
766 |
-
#~ msgid "Change Default Role"
|
767 |
-
#~ msgstr "Ändern der Standard-Rolle"
|
768 |
-
#~ msgid ""
|
769 |
-
#~ "Restore Roles from backup copy. Be careful, backup was created when you "
|
770 |
-
#~ "started URE 1st time. All changes you made after that will be lost"
|
771 |
-
#~ msgstr ""
|
772 |
-
#~ "Wiederherstellung der Rollen von der Sicherungskopie. Seien Sie "
|
773 |
-
#~ "vorsichtig, die Sicherung wurde bei Ihrer ersten Benutzung von URE "
|
774 |
-
#~ "erstellt. Alle Änderungen, die Sie danach vorgenommen haben, gehen "
|
775 |
-
#~ "verloren"
|
776 |
-
# @ ure
|
777 |
-
#~ msgid "Role \"%s\" update: please confirm to continue"
|
778 |
-
#~ msgstr "Aktualisierung der Rolle \"%s\": Zum Fortfahren bitte bestätigen"
|
779 |
-
# @ ure
|
780 |
-
#~ msgid "Save Changes"
|
781 |
-
#~ msgstr "Änderungen sichern"
|
782 |
-
# @ ure
|
783 |
-
#~ msgid "Cancel not saved changes"
|
784 |
-
#~ msgstr "Ungesicherte Änderungen verwerfen"
|
785 |
-
#~ msgid "Select All Capabilities"
|
786 |
-
#~ msgstr "Wähle alle Rechte"
|
787 |
-
#~ msgid "Unselect All Capabilities"
|
788 |
-
#~ msgstr "Wähle alle Rechte ab"
|
789 |
-
#~ msgid "Turn checked capabilities off and vise versa"
|
790 |
-
#~ msgstr "Schalte alle markierten Rechte ab und umgekehrt"
|
791 |
-
# @ ure
|
792 |
-
#~ msgid "Restore Roles from backup copy"
|
793 |
-
#~ msgstr "Wiederherstellung der Rollen von der Sicherheitskopie"
|
794 |
-
#~ msgid "Name: "
|
795 |
-
#~ msgstr "Name:"
|
796 |
-
# @ ure
|
797 |
-
#~ msgid "Add"
|
798 |
-
#~ msgstr "Hinzufügen"
|
799 |
-
# @ ure
|
800 |
-
#~ msgid "Add New User Role"
|
801 |
-
#~ msgstr "Neue Benutzer-Rolle hinzufügen"
|
802 |
-
# @ ure
|
803 |
-
#~ msgid "Default Role for New User"
|
804 |
-
#~ msgstr "Standard-Rolle für neuen Benutzer"
|
805 |
-
# @ ure
|
806 |
-
#~ msgid "Change"
|
807 |
-
#~ msgstr "Ändern"
|
808 |
-
# @ ure
|
809 |
-
#~ msgid "Delete User Role"
|
810 |
-
#~ msgstr "Löschen der Benutzer-Rolle"
|
811 |
-
# @ ure
|
812 |
-
#~ msgid "Remove"
|
813 |
-
#~ msgstr "Entferne"
|
814 |
-
#~ msgid "Remove User Capability"
|
815 |
-
#~ msgstr "Entferne Benutzerrecht"
|
816 |
-
# @ ure
|
817 |
-
#~ msgid "User \"%s\" update: please confirm to continue"
|
818 |
-
#~ msgstr "Benutzer \"%s\" Aktualisierung: Bitte bestätigen, um fortzufahren"
|
819 |
-
# @ ure
|
820 |
-
#~ msgid "Role:"
|
821 |
-
#~ msgstr "Rolle:"
|
822 |
-
#~ msgid "Add capabilities to this user:"
|
823 |
-
#~ msgstr "Füge Rechte für diesen Benutzer hinzu:"
|
824 |
-
# @ ure
|
825 |
-
#~ msgid "Greetings"
|
826 |
-
#~ msgstr "Mitarbeiter:"
|
827 |
-
# @ ure
|
828 |
-
#~ msgid "Greetings:"
|
829 |
-
#~ msgstr "Mitarbeiter:"
|
830 |
-
# @ ure
|
831 |
-
#~ msgid "It's me, the author"
|
832 |
-
#~ msgstr "Der Autor"
|
833 |
-
# @ ure
|
834 |
-
#~ msgid "For the help with Belorussian translation"
|
835 |
-
#~ msgstr "Für die Hilfe bei der Übersetzung ins Weißrussische"
|
836 |
-
# @ ure
|
837 |
-
#~ msgid "For the help with Brasilian translation"
|
838 |
-
#~ msgstr "Für die Hilfe bei der Übersetzung ins Brasilianische"
|
839 |
-
# @ ure
|
840 |
-
#, fuzzy
|
841 |
-
#~ msgid "For the help with Brasilian Portuguese translation"
|
842 |
-
#~ msgstr "Für die Hilfe bei der Übersetzung ins Brasilianische"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
lang/ure-es_ES.mo
DELETED
Binary file
|
lang/ure-es_ES.po
DELETED
@@ -1,857 +0,0 @@
|
|
1 |
-
msgid ""
|
2 |
-
msgstr ""
|
3 |
-
"Project-Id-Version: User Role Editor v. 2.0\n"
|
4 |
-
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2013-05-17 11:13+0700\n"
|
6 |
-
"PO-Revision-Date: \n"
|
7 |
-
"Last-Translator: Vladimir Garagulya <vladimir@shinephp.com>\n"
|
8 |
-
"Language-Team: ShinePHP.com <vladimir@shinephp.com>\n"
|
9 |
-
"Language: \n"
|
10 |
-
"MIME-Version: 1.0\n"
|
11 |
-
"Content-Type: text/plain; charset=UTF-8\n"
|
12 |
-
"Content-Transfer-Encoding: 8bit\n"
|
13 |
-
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
14 |
-
"X-Poedit-Language: Spanish\n"
|
15 |
-
"X-Poedit-Country: RUSSIAN FEDERATION\n"
|
16 |
-
"X-Poedit-SourceCharset: utf-8\n"
|
17 |
-
"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n"
|
18 |
-
"X-Poedit-Basepath: ../../\n"
|
19 |
-
"X-Textdomain-Support: yes\n"
|
20 |
-
"X-Poedit-SearchPath-0: user-role-editor\n"
|
21 |
-
|
22 |
-
# @ ure
|
23 |
-
#: user-role-editor/user-role-editor.php:34
|
24 |
-
#, fuzzy, php-format
|
25 |
-
msgid "User Role Editor requires PHP %s or newer."
|
26 |
-
msgstr "User Role Editor requiere PHP 5.0 o superior"
|
27 |
-
|
28 |
-
# @ ure
|
29 |
-
#: user-role-editor/user-role-editor.php:35
|
30 |
-
#: user-role-editor/user-role-editor.php:107
|
31 |
-
msgid "Please update!"
|
32 |
-
msgstr "¡Por favor actualiza!"
|
33 |
-
|
34 |
-
# @ ure
|
35 |
-
#: user-role-editor/user-role-editor.php:80
|
36 |
-
msgid "Only"
|
37 |
-
msgstr "Sólo"
|
38 |
-
|
39 |
-
# @ ure
|
40 |
-
#: user-role-editor/user-role-editor.php:80
|
41 |
-
msgid "is allowed to use"
|
42 |
-
msgstr "se permite el uso"
|
43 |
-
|
44 |
-
# @ ure
|
45 |
-
# @ default
|
46 |
-
#: user-role-editor/user-role-editor.php:86
|
47 |
-
#: user-role-editor/user-role-editor.php:312
|
48 |
-
#: user-role-editor/user-role-editor.php:368
|
49 |
-
msgid "User Role Editor"
|
50 |
-
msgstr "User Role Editor"
|
51 |
-
|
52 |
-
# @ ure
|
53 |
-
#: user-role-editor/user-role-editor.php:106
|
54 |
-
#, fuzzy, php-format
|
55 |
-
msgid "User Role Editor requires WordPress %s or newer."
|
56 |
-
msgstr "User Role Editor requiere Wordpress 3.0 o más actualizado"
|
57 |
-
|
58 |
-
# @ ure
|
59 |
-
#: user-role-editor/user-role-editor.php:139
|
60 |
-
msgid "Select All"
|
61 |
-
msgstr ""
|
62 |
-
|
63 |
-
#: user-role-editor/user-role-editor.php:140
|
64 |
-
msgid "Unselect All"
|
65 |
-
msgstr ""
|
66 |
-
|
67 |
-
#: user-role-editor/user-role-editor.php:141
|
68 |
-
msgid "Reverse"
|
69 |
-
msgstr ""
|
70 |
-
|
71 |
-
# @ ure
|
72 |
-
#: user-role-editor/user-role-editor.php:142
|
73 |
-
msgid "Update"
|
74 |
-
msgstr "Actualizar"
|
75 |
-
|
76 |
-
# @ ure
|
77 |
-
#: user-role-editor/user-role-editor.php:143
|
78 |
-
#, fuzzy
|
79 |
-
msgid "Please confirm permissions update"
|
80 |
-
msgstr "Por favor confirma para continuar"
|
81 |
-
|
82 |
-
# @ ure
|
83 |
-
#: user-role-editor/user-role-editor.php:144
|
84 |
-
msgid "Add New Role"
|
85 |
-
msgstr "Agregar nuevo Rol"
|
86 |
-
|
87 |
-
# @ ure
|
88 |
-
#: user-role-editor/user-role-editor.php:145
|
89 |
-
#, fuzzy
|
90 |
-
msgid " Role name (ID) can not be empty!"
|
91 |
-
msgstr "¡El nombre no puede estar vacío!"
|
92 |
-
|
93 |
-
# @ ure
|
94 |
-
#: user-role-editor/user-role-editor.php:146
|
95 |
-
#, fuzzy
|
96 |
-
msgid " Role name (ID) must contain latin characters, digits, hyphens or underscore only!"
|
97 |
-
msgstr "Error: el nombre del Rol sólo debe contener caracteres latinos y dígitos."
|
98 |
-
|
99 |
-
# @ ure
|
100 |
-
#: user-role-editor/user-role-editor.php:147
|
101 |
-
#, fuzzy
|
102 |
-
msgid "Add Role"
|
103 |
-
msgstr "Agregar nuevo Rol"
|
104 |
-
|
105 |
-
# @ ure
|
106 |
-
#: user-role-editor/user-role-editor.php:148
|
107 |
-
msgid "Delete Role"
|
108 |
-
msgstr "Eliminar Rol"
|
109 |
-
|
110 |
-
# @ ure
|
111 |
-
#: user-role-editor/user-role-editor.php:149
|
112 |
-
msgid "Cancel"
|
113 |
-
msgstr "Cancelar"
|
114 |
-
|
115 |
-
# @ ure
|
116 |
-
#: user-role-editor/user-role-editor.php:150
|
117 |
-
#, fuzzy
|
118 |
-
msgid "Add Capability"
|
119 |
-
msgstr "Agregar nuevo Privilegio"
|
120 |
-
|
121 |
-
# @ ure
|
122 |
-
#: user-role-editor/user-role-editor.php:151
|
123 |
-
#: user-role-editor/user-role-editor.php:156
|
124 |
-
#, fuzzy
|
125 |
-
msgid "Delete Capability"
|
126 |
-
msgstr "Eliminar Privilegio"
|
127 |
-
|
128 |
-
# @ ure
|
129 |
-
#: user-role-editor/user-role-editor.php:152
|
130 |
-
msgid "Reset"
|
131 |
-
msgstr "Reiniciar"
|
132 |
-
|
133 |
-
#: user-role-editor/user-role-editor.php:153
|
134 |
-
msgid "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?"
|
135 |
-
msgstr ""
|
136 |
-
|
137 |
-
# @ ure
|
138 |
-
#: user-role-editor/user-role-editor.php:154
|
139 |
-
#, fuzzy
|
140 |
-
msgid "Default Role"
|
141 |
-
msgstr "Eliminar Rol"
|
142 |
-
|
143 |
-
# @ ure
|
144 |
-
#: user-role-editor/user-role-editor.php:155
|
145 |
-
#, fuzzy
|
146 |
-
msgid "Set New Default Role"
|
147 |
-
msgstr "Asignar como Rol predeterminado de Usuario"
|
148 |
-
|
149 |
-
# @ ure
|
150 |
-
#: user-role-editor/user-role-editor.php:157
|
151 |
-
msgid "Warning! Be careful - removing critical capability could crash some plugin or other custom code"
|
152 |
-
msgstr "¡Advertencia! Ten cuidado. Remover Privilegios críticos podría inutilizar algún plugin o algún otro código personalizado."
|
153 |
-
|
154 |
-
# @ ure
|
155 |
-
#: user-role-editor/user-role-editor.php:158
|
156 |
-
#, fuzzy
|
157 |
-
msgid " Capability name (ID) can not be empty!"
|
158 |
-
msgstr "¡El nombre no puede estar vacío!"
|
159 |
-
|
160 |
-
# @ ure
|
161 |
-
#: user-role-editor/user-role-editor.php:159
|
162 |
-
#, fuzzy
|
163 |
-
msgid " Capability name (ID) must contain latin characters, digits, hyphens or underscore only!"
|
164 |
-
msgstr "Error: el nombre del Privilegio sólo debe contener caracteres latinos y dígitos."
|
165 |
-
|
166 |
-
# @ ure
|
167 |
-
#: user-role-editor/user-role-editor.php:284
|
168 |
-
msgid "Settings"
|
169 |
-
msgstr "Opciones"
|
170 |
-
|
171 |
-
# @ ure
|
172 |
-
#: user-role-editor/user-role-editor.php:294
|
173 |
-
#: user-role-editor/includes/ure-options.php:209
|
174 |
-
msgid "Changelog"
|
175 |
-
msgstr "Registro de cambios"
|
176 |
-
|
177 |
-
# @ ure
|
178 |
-
#: user-role-editor/user-role-editor.php:342
|
179 |
-
msgid "Capabilities"
|
180 |
-
msgstr "Privilegios"
|
181 |
-
|
182 |
-
# @ ure
|
183 |
-
#: user-role-editor/user-role-editor.php:371
|
184 |
-
#: user-role-editor/user-role-editor.php:407
|
185 |
-
#, fuzzy
|
186 |
-
msgid "Other Roles"
|
187 |
-
msgstr "Eliminar Rol"
|
188 |
-
|
189 |
-
# @ ure
|
190 |
-
#: user-role-editor/user-role-editor.php:381
|
191 |
-
#, fuzzy
|
192 |
-
msgid "Edit"
|
193 |
-
msgstr "Editor"
|
194 |
-
|
195 |
-
# ure
|
196 |
-
#: user-role-editor/includes/ure-lib.php:35
|
197 |
-
msgid "Error is occur. Please check the log file."
|
198 |
-
msgstr "Un error ha ocurrido. Por favor revisa el archivo de registros."
|
199 |
-
|
200 |
-
# @ ure
|
201 |
-
#: user-role-editor/includes/ure-lib.php:364
|
202 |
-
msgid "Backup record is created for the current role capabilities"
|
203 |
-
msgstr "Ha sido creada una grabación de respaldo para este Rol y sus privilegios"
|
204 |
-
|
205 |
-
# @ ure
|
206 |
-
#: user-role-editor/includes/ure-lib.php:481
|
207 |
-
#, fuzzy
|
208 |
-
msgid "Error: Role ID must contain latin characters, digits, hyphens or underscore only!"
|
209 |
-
msgstr "Error: el nombre del Rol sólo debe contener caracteres latinos y dígitos."
|
210 |
-
|
211 |
-
# @ ure
|
212 |
-
#: user-role-editor/includes/ure-lib.php:496
|
213 |
-
#, php-format
|
214 |
-
msgid "Role %s exists already"
|
215 |
-
msgstr "Rol %s ya existe"
|
216 |
-
|
217 |
-
# @ ure
|
218 |
-
#: user-role-editor/includes/ure-lib.php:511
|
219 |
-
msgid "Error is encountered during new role create operation"
|
220 |
-
msgstr "Error encontrado durante la creación de un nuevo Rol"
|
221 |
-
|
222 |
-
# @ ure
|
223 |
-
#: user-role-editor/includes/ure-lib.php:513
|
224 |
-
#, php-format
|
225 |
-
msgid "Role %s is created successfully"
|
226 |
-
msgstr "Rol %s se ha creado exitosamente"
|
227 |
-
|
228 |
-
# @ ure
|
229 |
-
#: user-role-editor/includes/ure-lib.php:597
|
230 |
-
msgid "Error encountered during role delete operation"
|
231 |
-
msgstr "Error encontrado durante la eliminación del Rol"
|
232 |
-
|
233 |
-
# @ ure
|
234 |
-
#: user-role-editor/includes/ure-lib.php:599
|
235 |
-
#, php-format
|
236 |
-
msgid "Role %s is deleted successfully"
|
237 |
-
msgstr "Rol %s se ha eliminado exitosamente"
|
238 |
-
|
239 |
-
# @ ure
|
240 |
-
#: user-role-editor/includes/ure-lib.php:619
|
241 |
-
msgid "Error encountered during default role change operation"
|
242 |
-
msgstr "Error encontrado durante el cambio de Rol predeterminado"
|
243 |
-
|
244 |
-
# @ ure
|
245 |
-
#: user-role-editor/includes/ure-lib.php:625
|
246 |
-
#, php-format
|
247 |
-
msgid "Default role for new users is set to %s successfully"
|
248 |
-
msgstr "El Rol predeterminado para nuevos usuarios se ha configurado exitosamente para %s"
|
249 |
-
|
250 |
-
# @ ure
|
251 |
-
#: user-role-editor/includes/ure-lib.php:652
|
252 |
-
msgid "Editor"
|
253 |
-
msgstr "Editor"
|
254 |
-
|
255 |
-
# @ ure
|
256 |
-
#: user-role-editor/includes/ure-lib.php:653
|
257 |
-
msgid "Author"
|
258 |
-
msgstr "Autor"
|
259 |
-
|
260 |
-
# @ ure
|
261 |
-
#: user-role-editor/includes/ure-lib.php:654
|
262 |
-
msgid "Contributor"
|
263 |
-
msgstr "Colaborador"
|
264 |
-
|
265 |
-
# @ ure
|
266 |
-
#: user-role-editor/includes/ure-lib.php:655
|
267 |
-
msgid "Subscriber"
|
268 |
-
msgstr "Suscriptor"
|
269 |
-
|
270 |
-
# @ ure
|
271 |
-
#: user-role-editor/includes/ure-lib.php:657
|
272 |
-
msgid "Switch themes"
|
273 |
-
msgstr "Cambiar plantillas"
|
274 |
-
|
275 |
-
# @ ure
|
276 |
-
#: user-role-editor/includes/ure-lib.php:658
|
277 |
-
msgid "Edit themes"
|
278 |
-
msgstr "Editar plantillas"
|
279 |
-
|
280 |
-
# @ ure
|
281 |
-
#: user-role-editor/includes/ure-lib.php:659
|
282 |
-
msgid "Activate plugins"
|
283 |
-
msgstr "Activar plugins"
|
284 |
-
|
285 |
-
# @ ure
|
286 |
-
#: user-role-editor/includes/ure-lib.php:660
|
287 |
-
msgid "Edit plugins"
|
288 |
-
msgstr "Editar plugins"
|
289 |
-
|
290 |
-
# @ ure
|
291 |
-
#: user-role-editor/includes/ure-lib.php:661
|
292 |
-
msgid "Edit users"
|
293 |
-
msgstr "Editar usuarios"
|
294 |
-
|
295 |
-
# @ ure
|
296 |
-
#: user-role-editor/includes/ure-lib.php:662
|
297 |
-
msgid "Edit files"
|
298 |
-
msgstr "Editar archivos"
|
299 |
-
|
300 |
-
# @ ure
|
301 |
-
#: user-role-editor/includes/ure-lib.php:663
|
302 |
-
msgid "Manage options"
|
303 |
-
msgstr "Administrar opciones"
|
304 |
-
|
305 |
-
# @ ure
|
306 |
-
#: user-role-editor/includes/ure-lib.php:664
|
307 |
-
msgid "Moderate comments"
|
308 |
-
msgstr "Moderar comentarios"
|
309 |
-
|
310 |
-
# @ ure
|
311 |
-
#: user-role-editor/includes/ure-lib.php:665
|
312 |
-
msgid "Manage categories"
|
313 |
-
msgstr "Administrar categorías"
|
314 |
-
|
315 |
-
# @ ure
|
316 |
-
#: user-role-editor/includes/ure-lib.php:666
|
317 |
-
msgid "Manage links"
|
318 |
-
msgstr "Administrar enlaces"
|
319 |
-
|
320 |
-
# @ ure
|
321 |
-
#: user-role-editor/includes/ure-lib.php:667
|
322 |
-
msgid "Upload files"
|
323 |
-
msgstr "Subir archivos"
|
324 |
-
|
325 |
-
# @ ure
|
326 |
-
#: user-role-editor/includes/ure-lib.php:668
|
327 |
-
msgid "Import"
|
328 |
-
msgstr "Importar"
|
329 |
-
|
330 |
-
# @ ure
|
331 |
-
#: user-role-editor/includes/ure-lib.php:669
|
332 |
-
msgid "Unfiltered html"
|
333 |
-
msgstr "Omitir filtrado de HTML"
|
334 |
-
|
335 |
-
# @ ure
|
336 |
-
#: user-role-editor/includes/ure-lib.php:670
|
337 |
-
msgid "Edit posts"
|
338 |
-
msgstr "Editar entradas"
|
339 |
-
|
340 |
-
# @ ure
|
341 |
-
#: user-role-editor/includes/ure-lib.php:671
|
342 |
-
msgid "Edit others posts"
|
343 |
-
msgstr "Editar entradas de otros"
|
344 |
-
|
345 |
-
# @ ure
|
346 |
-
#: user-role-editor/includes/ure-lib.php:672
|
347 |
-
msgid "Edit published posts"
|
348 |
-
msgstr "Editar entradas publicadas"
|
349 |
-
|
350 |
-
# @ ure
|
351 |
-
#: user-role-editor/includes/ure-lib.php:673
|
352 |
-
msgid "Publish posts"
|
353 |
-
msgstr "Publicar entradas"
|
354 |
-
|
355 |
-
# @ ure
|
356 |
-
#: user-role-editor/includes/ure-lib.php:674
|
357 |
-
msgid "Edit pages"
|
358 |
-
msgstr "Editar páginas"
|
359 |
-
|
360 |
-
# @ ure
|
361 |
-
#: user-role-editor/includes/ure-lib.php:675
|
362 |
-
msgid "Read"
|
363 |
-
msgstr "Leer"
|
364 |
-
|
365 |
-
# @ ure
|
366 |
-
#: user-role-editor/includes/ure-lib.php:676
|
367 |
-
msgid "Level 10"
|
368 |
-
msgstr "Nivel 10"
|
369 |
-
|
370 |
-
# @ ure
|
371 |
-
#: user-role-editor/includes/ure-lib.php:677
|
372 |
-
msgid "Level 9"
|
373 |
-
msgstr "Nivel 9"
|
374 |
-
|
375 |
-
# @ ure
|
376 |
-
#: user-role-editor/includes/ure-lib.php:678
|
377 |
-
msgid "Level 8"
|
378 |
-
msgstr "Nivel 8"
|
379 |
-
|
380 |
-
# @ ure
|
381 |
-
#: user-role-editor/includes/ure-lib.php:679
|
382 |
-
msgid "Level 7"
|
383 |
-
msgstr "Nivel 7"
|
384 |
-
|
385 |
-
# @ ure
|
386 |
-
#: user-role-editor/includes/ure-lib.php:680
|
387 |
-
msgid "Level 6"
|
388 |
-
msgstr "Nivel 6"
|
389 |
-
|
390 |
-
# @ ure
|
391 |
-
#: user-role-editor/includes/ure-lib.php:681
|
392 |
-
msgid "Level 5"
|
393 |
-
msgstr "Nivel 5"
|
394 |
-
|
395 |
-
# @ ure
|
396 |
-
#: user-role-editor/includes/ure-lib.php:682
|
397 |
-
msgid "Level 4"
|
398 |
-
msgstr "Nivel 4"
|
399 |
-
|
400 |
-
# @ ure
|
401 |
-
#: user-role-editor/includes/ure-lib.php:683
|
402 |
-
msgid "Level 3"
|
403 |
-
msgstr "Nivel 3"
|
404 |
-
|
405 |
-
# @ ure
|
406 |
-
#: user-role-editor/includes/ure-lib.php:684
|
407 |
-
msgid "Level 2"
|
408 |
-
msgstr "Nivel 2"
|
409 |
-
|
410 |
-
# @ ure
|
411 |
-
#: user-role-editor/includes/ure-lib.php:685
|
412 |
-
msgid "Level 1"
|
413 |
-
msgstr "Nivel 1"
|
414 |
-
|
415 |
-
# @ ure
|
416 |
-
#: user-role-editor/includes/ure-lib.php:686
|
417 |
-
msgid "Level 0"
|
418 |
-
msgstr "Nivel 0"
|
419 |
-
|
420 |
-
# @ ure
|
421 |
-
#: user-role-editor/includes/ure-lib.php:687
|
422 |
-
msgid "Edit others pages"
|
423 |
-
msgstr "Editar páginas de otros"
|
424 |
-
|
425 |
-
# @ ure
|
426 |
-
#: user-role-editor/includes/ure-lib.php:688
|
427 |
-
msgid "Edit published pages"
|
428 |
-
msgstr "Editar páginas publicadas"
|
429 |
-
|
430 |
-
# @ ure
|
431 |
-
#: user-role-editor/includes/ure-lib.php:689
|
432 |
-
msgid "Publish pages"
|
433 |
-
msgstr "Publicar páginas"
|
434 |
-
|
435 |
-
# @ ure
|
436 |
-
#: user-role-editor/includes/ure-lib.php:690
|
437 |
-
msgid "Delete pages"
|
438 |
-
msgstr "Eliminar páginas"
|
439 |
-
|
440 |
-
# ure
|
441 |
-
#: user-role-editor/includes/ure-lib.php:691
|
442 |
-
msgid "Delete others pages"
|
443 |
-
msgstr "Eliminar páginas de otros"
|
444 |
-
|
445 |
-
# @ ure
|
446 |
-
#: user-role-editor/includes/ure-lib.php:692
|
447 |
-
msgid "Delete published pages"
|
448 |
-
msgstr "Eliminar páginas publicadas"
|
449 |
-
|
450 |
-
# ure
|
451 |
-
#: user-role-editor/includes/ure-lib.php:693
|
452 |
-
msgid "Delete posts"
|
453 |
-
msgstr "Eliminar entradas"
|
454 |
-
|
455 |
-
# @ ure
|
456 |
-
#: user-role-editor/includes/ure-lib.php:694
|
457 |
-
msgid "Delete others posts"
|
458 |
-
msgstr "Eliminar entradas de otros"
|
459 |
-
|
460 |
-
# ure
|
461 |
-
#: user-role-editor/includes/ure-lib.php:695
|
462 |
-
msgid "Delete published posts"
|
463 |
-
msgstr "Eliminar entradas publicadas"
|
464 |
-
|
465 |
-
# ure
|
466 |
-
#: user-role-editor/includes/ure-lib.php:696
|
467 |
-
msgid "Delete private posts"
|
468 |
-
msgstr "Eliminar entradas privadas"
|
469 |
-
|
470 |
-
# @ ure
|
471 |
-
#: user-role-editor/includes/ure-lib.php:697
|
472 |
-
msgid "Edit private posts"
|
473 |
-
msgstr "Editar entradas privadas"
|
474 |
-
|
475 |
-
# @ ure
|
476 |
-
#: user-role-editor/includes/ure-lib.php:698
|
477 |
-
msgid "Read private posts"
|
478 |
-
msgstr "Leer entradas privadas"
|
479 |
-
|
480 |
-
# @ ure
|
481 |
-
#: user-role-editor/includes/ure-lib.php:699
|
482 |
-
msgid "Delete private pages"
|
483 |
-
msgstr "Eliminar páginas privadas"
|
484 |
-
|
485 |
-
# @ ure
|
486 |
-
#: user-role-editor/includes/ure-lib.php:700
|
487 |
-
msgid "Edit private pages"
|
488 |
-
msgstr "Editar páginas privadas"
|
489 |
-
|
490 |
-
# @ ure
|
491 |
-
#: user-role-editor/includes/ure-lib.php:701
|
492 |
-
msgid "Read private pages"
|
493 |
-
msgstr "Leer páginas privadas"
|
494 |
-
|
495 |
-
# @ ure
|
496 |
-
#: user-role-editor/includes/ure-lib.php:702
|
497 |
-
msgid "Delete users"
|
498 |
-
msgstr "Eliminar usuarios"
|
499 |
-
|
500 |
-
# @ ure
|
501 |
-
#: user-role-editor/includes/ure-lib.php:703
|
502 |
-
msgid "Create users"
|
503 |
-
msgstr "Crear usuarios"
|
504 |
-
|
505 |
-
# @ ure
|
506 |
-
#: user-role-editor/includes/ure-lib.php:704
|
507 |
-
msgid "Unfiltered upload"
|
508 |
-
msgstr "Omitir filtrado de subidas"
|
509 |
-
|
510 |
-
# @ ure
|
511 |
-
#: user-role-editor/includes/ure-lib.php:705
|
512 |
-
msgid "Edit dashboard"
|
513 |
-
msgstr "Editar escritorio"
|
514 |
-
|
515 |
-
# @ ure
|
516 |
-
#: user-role-editor/includes/ure-lib.php:706
|
517 |
-
msgid "Update plugins"
|
518 |
-
msgstr "Actualizar plugins"
|
519 |
-
|
520 |
-
# @ ure
|
521 |
-
#: user-role-editor/includes/ure-lib.php:707
|
522 |
-
msgid "Delete plugins"
|
523 |
-
msgstr "Eliminar plugins"
|
524 |
-
|
525 |
-
# @ ure
|
526 |
-
#: user-role-editor/includes/ure-lib.php:708
|
527 |
-
msgid "Install plugins"
|
528 |
-
msgstr "Instalar plugins"
|
529 |
-
|
530 |
-
# @ ure
|
531 |
-
#: user-role-editor/includes/ure-lib.php:709
|
532 |
-
msgid "Update themes"
|
533 |
-
msgstr "Actualizar plantillas"
|
534 |
-
|
535 |
-
# @ ure
|
536 |
-
#: user-role-editor/includes/ure-lib.php:710
|
537 |
-
msgid "Install themes"
|
538 |
-
msgstr "Instalar plantillas"
|
539 |
-
|
540 |
-
# @ ure
|
541 |
-
#: user-role-editor/includes/ure-lib.php:711
|
542 |
-
msgid "Update core"
|
543 |
-
msgstr "Actualizar núcleo"
|
544 |
-
|
545 |
-
# @ ure
|
546 |
-
#: user-role-editor/includes/ure-lib.php:712
|
547 |
-
msgid "List users"
|
548 |
-
msgstr "Listar usuarios"
|
549 |
-
|
550 |
-
# @ ure
|
551 |
-
#: user-role-editor/includes/ure-lib.php:713
|
552 |
-
msgid "Remove users"
|
553 |
-
msgstr "Eliminar usuarios"
|
554 |
-
|
555 |
-
# @ ure
|
556 |
-
#: user-role-editor/includes/ure-lib.php:714
|
557 |
-
msgid "Add users"
|
558 |
-
msgstr "Agregar usuarios"
|
559 |
-
|
560 |
-
# @ ure
|
561 |
-
#: user-role-editor/includes/ure-lib.php:715
|
562 |
-
msgid "Promote users"
|
563 |
-
msgstr "Promover usuarios"
|
564 |
-
|
565 |
-
# @ ure
|
566 |
-
#: user-role-editor/includes/ure-lib.php:716
|
567 |
-
msgid "Edit theme options"
|
568 |
-
msgstr "Editar opciones de plantilla"
|
569 |
-
|
570 |
-
# @ ure
|
571 |
-
#: user-role-editor/includes/ure-lib.php:717
|
572 |
-
msgid "Delete themes"
|
573 |
-
msgstr "Eliminar plantillas"
|
574 |
-
|
575 |
-
# @ ure
|
576 |
-
#: user-role-editor/includes/ure-lib.php:718
|
577 |
-
msgid "Export"
|
578 |
-
msgstr "Exportar"
|
579 |
-
|
580 |
-
# @ ure
|
581 |
-
#: user-role-editor/includes/ure-lib.php:834
|
582 |
-
msgid "Error: Capability name must contain latin characters and digits only!"
|
583 |
-
msgstr "Error: el nombre del Privilegio sólo debe contener caracteres latinos y dígitos."
|
584 |
-
|
585 |
-
# @ ure
|
586 |
-
#: user-role-editor/includes/ure-lib.php:846
|
587 |
-
#, php-format
|
588 |
-
msgid "Capability %s is added successfully"
|
589 |
-
msgstr "Privilegio %s se ha creado exitosamente"
|
590 |
-
|
591 |
-
# @ ure
|
592 |
-
#: user-role-editor/includes/ure-lib.php:848
|
593 |
-
#, php-format
|
594 |
-
msgid "Capability %s exists already"
|
595 |
-
msgstr "Ya existe el Privilegio %s"
|
596 |
-
|
597 |
-
# @ ure
|
598 |
-
#: user-role-editor/includes/ure-lib.php:997
|
599 |
-
#, php-format
|
600 |
-
msgid "Error! You do not have permission to delete this capability: %s!"
|
601 |
-
msgstr "¡Error! No tienes permisos para eliminar este Privilegio: %s!"
|
602 |
-
|
603 |
-
# @ ure
|
604 |
-
#: user-role-editor/includes/ure-lib.php:1016
|
605 |
-
#, php-format
|
606 |
-
msgid "Capability %s is removed successfully"
|
607 |
-
msgstr "Privilegio %s se ha eliminado exitosamente"
|
608 |
-
|
609 |
-
# @ ure
|
610 |
-
#: user-role-editor/includes/ure-lib.php:1083
|
611 |
-
msgid "Help"
|
612 |
-
msgstr "Ayuda"
|
613 |
-
|
614 |
-
# @ ure
|
615 |
-
#: user-role-editor/includes/ure-role-edit.php:29
|
616 |
-
msgid "None"
|
617 |
-
msgstr "Нет"
|
618 |
-
|
619 |
-
# @ ure
|
620 |
-
#: user-role-editor/includes/ure-role-edit.php:67
|
621 |
-
msgid "Select Role and change its capabilities list"
|
622 |
-
msgstr "Selecciona el Rol para cambiar su lista de Privilegios"
|
623 |
-
|
624 |
-
# @ ure
|
625 |
-
#: user-role-editor/includes/ure-role-edit.php:69
|
626 |
-
#: user-role-editor/includes/ure-role-edit.php:166
|
627 |
-
msgid "Select Role:"
|
628 |
-
msgstr "Selecciona el Rol:"
|
629 |
-
|
630 |
-
# @ ure
|
631 |
-
#: user-role-editor/includes/ure-role-edit.php:79
|
632 |
-
#: user-role-editor/includes/ure-user-edit.php:38
|
633 |
-
msgid "Show capabilities in human readable form"
|
634 |
-
msgstr "Mostrar Privilegios de forma legible"
|
635 |
-
|
636 |
-
# @ ure
|
637 |
-
#: user-role-editor/includes/ure-role-edit.php:88
|
638 |
-
#: user-role-editor/includes/ure-user-edit.php:47
|
639 |
-
msgid "Show deprecated capabilities"
|
640 |
-
msgstr "Mostrar privilegios obsoletos"
|
641 |
-
|
642 |
-
# @ default
|
643 |
-
#: user-role-editor/includes/ure-role-edit.php:92
|
644 |
-
msgid "If checked, then apply action to ALL sites of this Network"
|
645 |
-
msgstr "Si está marcado se aplicará la acción a TODOS los sitios de esta red"
|
646 |
-
|
647 |
-
# @ ure
|
648 |
-
#: user-role-editor/includes/ure-role-edit.php:102
|
649 |
-
msgid "Apply to All Sites"
|
650 |
-
msgstr "Aplicar a todos los sitios"
|
651 |
-
|
652 |
-
# @ ure
|
653 |
-
#: user-role-editor/includes/ure-role-edit.php:109
|
654 |
-
#: user-role-editor/includes/ure-user-edit.php:88
|
655 |
-
#, fuzzy
|
656 |
-
msgid "Core capabilities:"
|
657 |
-
msgstr "Privilegios"
|
658 |
-
|
659 |
-
# @ ure
|
660 |
-
#: user-role-editor/includes/ure-role-edit.php:124
|
661 |
-
#: user-role-editor/includes/ure-user-edit.php:103
|
662 |
-
#, fuzzy
|
663 |
-
msgid "Custom capabilities:"
|
664 |
-
msgstr "Privilegios"
|
665 |
-
|
666 |
-
#: user-role-editor/includes/ure-role-edit.php:155
|
667 |
-
msgid "Role name (ID): "
|
668 |
-
msgstr ""
|
669 |
-
|
670 |
-
#: user-role-editor/includes/ure-role-edit.php:157
|
671 |
-
msgid "Display Role Name: "
|
672 |
-
msgstr ""
|
673 |
-
|
674 |
-
# @ ure
|
675 |
-
#: user-role-editor/includes/ure-role-edit.php:159
|
676 |
-
msgid "Make copy of: "
|
677 |
-
msgstr "Hacer copia de:"
|
678 |
-
|
679 |
-
# @ ure
|
680 |
-
#: user-role-editor/includes/ure-role-edit.php:181
|
681 |
-
#, fuzzy
|
682 |
-
msgid "Delete:"
|
683 |
-
msgstr "Eliminar"
|
684 |
-
|
685 |
-
#: user-role-editor/includes/ure-role-edit.php:188
|
686 |
-
msgid "Capability name (ID): "
|
687 |
-
msgstr ""
|
688 |
-
|
689 |
-
# @ ure
|
690 |
-
#: user-role-editor/includes/ure-user-edit.php:22
|
691 |
-
msgid "Change capabilities for user"
|
692 |
-
msgstr "Cambiar Privilegios de usuario"
|
693 |
-
|
694 |
-
#: user-role-editor/includes/ure-user-edit.php:52
|
695 |
-
msgid "Primary Role:"
|
696 |
-
msgstr ""
|
697 |
-
|
698 |
-
#: user-role-editor/includes/ure-user-edit.php:62
|
699 |
-
msgid "bbPress Role:"
|
700 |
-
msgstr ""
|
701 |
-
|
702 |
-
# @ ure
|
703 |
-
#: user-role-editor/includes/ure-user-edit.php:72
|
704 |
-
#, fuzzy
|
705 |
-
msgid "Other Roles:"
|
706 |
-
msgstr "Eliminar Rol"
|
707 |
-
|
708 |
-
# @ ure
|
709 |
-
#: user-role-editor/includes/ure-options.php:65
|
710 |
-
#, fuzzy
|
711 |
-
msgid "User Roles are restored to WordPress default values. "
|
712 |
-
msgstr "Los roles de usuario han sido restaurados desde los datos de respaldo"
|
713 |
-
|
714 |
-
# @ ure
|
715 |
-
#: user-role-editor/includes/ure-options.php:136
|
716 |
-
msgid "Error: "
|
717 |
-
msgstr "Error:"
|
718 |
-
|
719 |
-
# @ ure
|
720 |
-
#: user-role-editor/includes/ure-options.php:136
|
721 |
-
#: user-role-editor/includes/ure-options.php:156
|
722 |
-
msgid "Role"
|
723 |
-
msgstr "Rol"
|
724 |
-
|
725 |
-
# @ ure
|
726 |
-
#: user-role-editor/includes/ure-options.php:136
|
727 |
-
msgid "does not exist"
|
728 |
-
msgstr "no existe"
|
729 |
-
|
730 |
-
# @ ure
|
731 |
-
#: user-role-editor/includes/ure-options.php:156
|
732 |
-
msgid "is updated successfully"
|
733 |
-
msgstr "se ha actualizado exitosamente"
|
734 |
-
|
735 |
-
# @ ure
|
736 |
-
#: user-role-editor/includes/ure-options.php:161
|
737 |
-
#: user-role-editor/includes/ure-options.php:174
|
738 |
-
#, fuzzy
|
739 |
-
msgid "Error occured during role update"
|
740 |
-
msgstr "Error encontrado durante la eliminación del Rol"
|
741 |
-
|
742 |
-
# @ ure
|
743 |
-
#: user-role-editor/includes/ure-options.php:169
|
744 |
-
msgid "User"
|
745 |
-
msgstr "Usuario"
|
746 |
-
|
747 |
-
# @ ure
|
748 |
-
#: user-role-editor/includes/ure-options.php:169
|
749 |
-
msgid "capabilities are updated successfully"
|
750 |
-
msgstr "privilegios se han actualizado exitosamente"
|
751 |
-
|
752 |
-
# @ ure
|
753 |
-
#: user-role-editor/includes/ure-options.php:206
|
754 |
-
msgid "About this Plugin:"
|
755 |
-
msgstr "Acerca de este plugin:"
|
756 |
-
|
757 |
-
# @ ure
|
758 |
-
#: user-role-editor/includes/ure-options.php:207
|
759 |
-
msgid "Author's website"
|
760 |
-
msgstr "Sitio web del autor"
|
761 |
-
|
762 |
-
# @ ure
|
763 |
-
#: user-role-editor/includes/ure-options.php:208
|
764 |
-
msgid "Plugin webpage"
|
765 |
-
msgstr "Página web del plugin"
|
766 |
-
|
767 |
-
# @ ure
|
768 |
-
#: user-role-editor/includes/ure-options.php:210
|
769 |
-
msgid "FAQ"
|
770 |
-
msgstr "FAQ"
|
771 |
-
|
772 |
-
# @ ure
|
773 |
-
#~ msgid "Database operation error. Check log file."
|
774 |
-
#~ msgstr ""
|
775 |
-
#~ "Operación errónea de la base de datos. Revisar el archivo de registros."
|
776 |
-
# @ ure
|
777 |
-
#~ msgid ""
|
778 |
-
#~ "No backup data. It is created automatically before the first role data "
|
779 |
-
#~ "update."
|
780 |
-
#~ msgstr ""
|
781 |
-
#~ "Ningunos datos de reserva. Se crea automáticamente antes de la primera "
|
782 |
-
#~ "actualización de los datos del papel."
|
783 |
-
# @ ure
|
784 |
-
#~ msgid " Name must contain latin characters and digits only!"
|
785 |
-
#~ msgstr "El nombre sólo debe contener caracteres latinos y dígitos."
|
786 |
-
# @ ure
|
787 |
-
#~ msgid "Change Default Role"
|
788 |
-
#~ msgstr "Cambiar el Rol predeterminado"
|
789 |
-
# @ ure
|
790 |
-
#~ msgid ""
|
791 |
-
#~ "Restore Roles from backup copy. Be careful, backup was created when you "
|
792 |
-
#~ "started URE 1st time. All changes you made after that will be lost"
|
793 |
-
#~ msgstr ""
|
794 |
-
#~ "Restaurar Roles desde copia de respaldo. Ten cuidado, el respaldo se creó "
|
795 |
-
#~ "cuando iniciaste URE por primera vez. Todos los cambios posteriores serán "
|
796 |
-
#~ "eliminados."
|
797 |
-
# @ ure
|
798 |
-
#~ msgid "Role \"%s\" update: please confirm to continue"
|
799 |
-
#~ msgstr "Actualizar Rol \"%s\": Por favor confirma para continuar"
|
800 |
-
# @ ure
|
801 |
-
#~ msgid "Save Changes"
|
802 |
-
#~ msgstr "Guardar Cambios"
|
803 |
-
# @ ure
|
804 |
-
#~ msgid "Cancel not saved changes"
|
805 |
-
#~ msgstr "Cancelar cambios no guardados"
|
806 |
-
# @ ure
|
807 |
-
#~ msgid "Restore Roles from backup copy"
|
808 |
-
#~ msgstr "Restaurar Roles desde la copia de respaldo"
|
809 |
-
# @ ure
|
810 |
-
#~ msgid "Name: "
|
811 |
-
#~ msgstr "Nombre:"
|
812 |
-
# @ ure
|
813 |
-
#~ msgid "Add"
|
814 |
-
#~ msgstr "Agregar"
|
815 |
-
# @ ure
|
816 |
-
#~ msgid "Add New User Role"
|
817 |
-
#~ msgstr "Agregar nuevo Rol de Usuario"
|
818 |
-
# @ ure
|
819 |
-
#~ msgid "Default Role for New User"
|
820 |
-
#~ msgstr "Rol predeterminado para Nuevo Usuario"
|
821 |
-
# @ ure
|
822 |
-
#~ msgid "Change"
|
823 |
-
#~ msgstr "Cambiar"
|
824 |
-
# @ ure
|
825 |
-
#~ msgid "Delete User Role"
|
826 |
-
#~ msgstr "Eliminar Rol de Usuario"
|
827 |
-
# @ ure
|
828 |
-
#~ msgid "Remove"
|
829 |
-
#~ msgstr "Eliminar"
|
830 |
-
# @ ure
|
831 |
-
#~ msgid "Remove User Capability"
|
832 |
-
#~ msgstr "Eliminar Privilegio de usuario"
|
833 |
-
# @ ure
|
834 |
-
#~ msgid "User \"%s\" update: please confirm to continue"
|
835 |
-
#~ msgstr "Actualizar usuario \"%s\": Por favor confirma para continuar"
|
836 |
-
# @ ure
|
837 |
-
#~ msgid "Role:"
|
838 |
-
#~ msgstr "Rol"
|
839 |
-
# @ ure
|
840 |
-
#~ msgid "Add capabilities to this user:"
|
841 |
-
#~ msgstr "Agregar Privilegios a este usuario"
|
842 |
-
# @ ure
|
843 |
-
#~ msgid "Greetings:"
|
844 |
-
#~ msgstr "Agradecimientos:"
|
845 |
-
# @ ure
|
846 |
-
#~ msgid "It's me, the author"
|
847 |
-
#~ msgstr "Soy yo, el autor"
|
848 |
-
# @ ure
|
849 |
-
#~ msgid "For the help with Belorussian translation"
|
850 |
-
#~ msgstr "Por la ayuda con la traducción al Bielorruso"
|
851 |
-
# @ ure
|
852 |
-
#~ msgid "For the help with Brasilian translation"
|
853 |
-
#~ msgstr "Por la ayuda con la traducción al Portugués Brasilero"
|
854 |
-
# @ ure
|
855 |
-
#, fuzzy
|
856 |
-
#~ msgid "For the help with Brasilian Portuguese translation"
|
857 |
-
#~ msgstr "Por la ayuda con la traducción al Portugués Brasilero"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
lang/ure-fa_IR.mo
DELETED
Binary file
|
lang/ure-fa_IR.po
DELETED
@@ -1,795 +0,0 @@
|
|
1 |
-
msgid ""
|
2 |
-
msgstr ""
|
3 |
-
"Project-Id-Version: User Role Editor\n"
|
4 |
-
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2013-05-17 11:14+0700\n"
|
6 |
-
"PO-Revision-Date: \n"
|
7 |
-
"Last-Translator: Vladimir Garagulya <vladimir@shinephp.com>\n"
|
8 |
-
"Language-Team: Parsa <i@parsa.ws>\n"
|
9 |
-
"Language: \n"
|
10 |
-
"MIME-Version: 1.0\n"
|
11 |
-
"Content-Type: text/plain; charset=UTF-8\n"
|
12 |
-
"Content-Transfer-Encoding: 8bit\n"
|
13 |
-
"X-Poedit-Language: Persian\n"
|
14 |
-
"X-Poedit-Country: IRAN, ISLAMIC REPUBLIC OF\n"
|
15 |
-
"X-Poedit-SourceCharset: utf-8\n"
|
16 |
-
"X-Poedit-KeywordsList: __;_e\n"
|
17 |
-
"X-Poedit-Basepath: .\n"
|
18 |
-
"Plural-Forms: www.parsa.ws\n"
|
19 |
-
"X-Poedit-SearchPath-0: ..\n"
|
20 |
-
|
21 |
-
#: ../user-role-editor.php:34
|
22 |
-
#, fuzzy, php-format
|
23 |
-
msgid "User Role Editor requires PHP %s or newer."
|
24 |
-
msgstr "ویرایشگر نقش کاربر به پیاچپی 5.0 یا جدیدتر احتیاج دارد"
|
25 |
-
|
26 |
-
#: ../user-role-editor.php:35
|
27 |
-
#: ../user-role-editor.php:107
|
28 |
-
msgid "Please update!"
|
29 |
-
msgstr "! لطفا بروزرسانی شود"
|
30 |
-
|
31 |
-
#: ../user-role-editor.php:80
|
32 |
-
msgid "Only"
|
33 |
-
msgstr "فقط"
|
34 |
-
|
35 |
-
#: ../user-role-editor.php:80
|
36 |
-
msgid "is allowed to use"
|
37 |
-
msgstr "مجاز به استفاده از"
|
38 |
-
|
39 |
-
#: ../user-role-editor.php:86
|
40 |
-
#: ../user-role-editor.php:312
|
41 |
-
#: ../user-role-editor.php:368
|
42 |
-
msgid "User Role Editor"
|
43 |
-
msgstr "ویرایش نقش کاربر"
|
44 |
-
|
45 |
-
#: ../user-role-editor.php:106
|
46 |
-
#, fuzzy, php-format
|
47 |
-
msgid "User Role Editor requires WordPress %s or newer."
|
48 |
-
msgstr "ویرایشگر نقش کاربر به وردپرس 3.0 یا جدیدتر احتیاج دارد"
|
49 |
-
|
50 |
-
#: ../user-role-editor.php:139
|
51 |
-
msgid "Select All"
|
52 |
-
msgstr "انتخاب همه"
|
53 |
-
|
54 |
-
#: ../user-role-editor.php:140
|
55 |
-
msgid "Unselect All"
|
56 |
-
msgstr "همه را از حالت انتخاب خارج کن"
|
57 |
-
|
58 |
-
#: ../user-role-editor.php:141
|
59 |
-
msgid "Reverse"
|
60 |
-
msgstr "بازگرداندن"
|
61 |
-
|
62 |
-
#: ../user-role-editor.php:142
|
63 |
-
msgid "Update"
|
64 |
-
msgstr "بروزرسانی"
|
65 |
-
|
66 |
-
#: ../user-role-editor.php:143
|
67 |
-
#, fuzzy
|
68 |
-
msgid "Please confirm permissions update"
|
69 |
-
msgstr "برای ادامه دادن تأیید کنید"
|
70 |
-
|
71 |
-
#: ../user-role-editor.php:144
|
72 |
-
msgid "Add New Role"
|
73 |
-
msgstr "اضافه کردن نقش جدید"
|
74 |
-
|
75 |
-
#: ../user-role-editor.php:145
|
76 |
-
#, fuzzy
|
77 |
-
msgid " Role name (ID) can not be empty!"
|
78 |
-
msgstr "نام نقش نمی تواند خالی باشد"
|
79 |
-
|
80 |
-
#: ../user-role-editor.php:146
|
81 |
-
#, fuzzy
|
82 |
-
msgid " Role name (ID) must contain latin characters, digits, hyphens or underscore only!"
|
83 |
-
msgstr "مشکل: نام نقش باید فقط شامل کاراکترهای لاتین و اعداد باشد"
|
84 |
-
|
85 |
-
#: ../user-role-editor.php:147
|
86 |
-
#, fuzzy
|
87 |
-
msgid "Add Role"
|
88 |
-
msgstr "اضافه کردن نقش جدید"
|
89 |
-
|
90 |
-
#: ../user-role-editor.php:148
|
91 |
-
msgid "Delete Role"
|
92 |
-
msgstr "حذف نقش"
|
93 |
-
|
94 |
-
#: ../user-role-editor.php:149
|
95 |
-
msgid "Cancel"
|
96 |
-
msgstr "لغو"
|
97 |
-
|
98 |
-
#: ../user-role-editor.php:150
|
99 |
-
#, fuzzy
|
100 |
-
msgid "Add Capability"
|
101 |
-
msgstr "اضافه کردن نقش جدید"
|
102 |
-
|
103 |
-
#: ../user-role-editor.php:151
|
104 |
-
#: ../user-role-editor.php:156
|
105 |
-
#, fuzzy
|
106 |
-
msgid "Delete Capability"
|
107 |
-
msgstr "حذف قابلیت"
|
108 |
-
|
109 |
-
#: ../user-role-editor.php:152
|
110 |
-
msgid "Reset"
|
111 |
-
msgstr "تنظیم مجدد"
|
112 |
-
|
113 |
-
#: ../user-role-editor.php:153
|
114 |
-
msgid "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?"
|
115 |
-
msgstr ""
|
116 |
-
|
117 |
-
#: ../user-role-editor.php:154
|
118 |
-
#, fuzzy
|
119 |
-
msgid "Default Role"
|
120 |
-
msgstr "حذف نقش"
|
121 |
-
|
122 |
-
#: ../user-role-editor.php:155
|
123 |
-
#, fuzzy
|
124 |
-
msgid "Set New Default Role"
|
125 |
-
msgstr "تنظیم به عنوان نقش پیش فرض کاربر"
|
126 |
-
|
127 |
-
#: ../user-role-editor.php:157
|
128 |
-
msgid "Warning! Be careful - removing critical capability could crash some plugin or other custom code"
|
129 |
-
msgstr "هشدار! با دقت - حذف قابلیتهای بحرانی باعث از کار افتادن افزونهها و دیگر حالتها خواهد شد"
|
130 |
-
|
131 |
-
#: ../user-role-editor.php:158
|
132 |
-
#, fuzzy
|
133 |
-
msgid " Capability name (ID) can not be empty!"
|
134 |
-
msgstr "نام نقش نمی تواند خالی باشد"
|
135 |
-
|
136 |
-
#: ../user-role-editor.php:159
|
137 |
-
#, fuzzy
|
138 |
-
msgid " Capability name (ID) must contain latin characters, digits, hyphens or underscore only!"
|
139 |
-
msgstr "مشکل: نام نقش باید فقط شامل کاراکترهای لاتین و اعداد باشد"
|
140 |
-
|
141 |
-
#: ../user-role-editor.php:284
|
142 |
-
msgid "Settings"
|
143 |
-
msgstr "تنظیمات"
|
144 |
-
|
145 |
-
#: ../user-role-editor.php:294
|
146 |
-
#: ../includes/ure-options.php:209
|
147 |
-
msgid "Changelog"
|
148 |
-
msgstr "تاریخ تغییرات"
|
149 |
-
|
150 |
-
#: ../user-role-editor.php:342
|
151 |
-
msgid "Capabilities"
|
152 |
-
msgstr "توانمندیها"
|
153 |
-
|
154 |
-
#: ../user-role-editor.php:371
|
155 |
-
#: ../user-role-editor.php:407
|
156 |
-
#, fuzzy
|
157 |
-
msgid "Other Roles"
|
158 |
-
msgstr "حذف نقش"
|
159 |
-
|
160 |
-
#: ../user-role-editor.php:381
|
161 |
-
#, fuzzy
|
162 |
-
msgid "Edit"
|
163 |
-
msgstr "ویرایشگر"
|
164 |
-
|
165 |
-
#: ../includes/ure-lib.php:35
|
166 |
-
msgid "Error is occur. Please check the log file."
|
167 |
-
msgstr "اشکالی رخ داده، لطفاً لاگ عملیات را ببینید"
|
168 |
-
|
169 |
-
#: ../includes/ure-lib.php:364
|
170 |
-
msgid "Backup record is created for the current role capabilities"
|
171 |
-
msgstr "اطلاعات پشتیبان برای تنظیمات نقش فعلی ذخیره شد"
|
172 |
-
|
173 |
-
#: ../includes/ure-lib.php:481
|
174 |
-
#, fuzzy
|
175 |
-
msgid "Error: Role ID must contain latin characters, digits, hyphens or underscore only!"
|
176 |
-
msgstr "مشکل: نام نقش باید فقط شامل کاراکترهای لاتین و اعداد باشد"
|
177 |
-
|
178 |
-
#: ../includes/ure-lib.php:496
|
179 |
-
#, php-format
|
180 |
-
msgid "Role %s exists already"
|
181 |
-
msgstr "نقش %s وجود دارد"
|
182 |
-
|
183 |
-
#: ../includes/ure-lib.php:511
|
184 |
-
msgid "Error is encountered during new role create operation"
|
185 |
-
msgstr "در زمان ساخت نقش جدید مشکلی بوجود آمد"
|
186 |
-
|
187 |
-
#: ../includes/ure-lib.php:513
|
188 |
-
#, php-format
|
189 |
-
msgid "Role %s is created successfully"
|
190 |
-
msgstr "نقش %s با موفقیت ساخته شد"
|
191 |
-
|
192 |
-
#: ../includes/ure-lib.php:597
|
193 |
-
msgid "Error encountered during role delete operation"
|
194 |
-
msgstr "اشکال در پاک کردن نقش"
|
195 |
-
|
196 |
-
#: ../includes/ure-lib.php:599
|
197 |
-
#, php-format
|
198 |
-
msgid "Role %s is deleted successfully"
|
199 |
-
msgstr "نقش %s با موفقیت پاک شد "
|
200 |
-
|
201 |
-
#: ../includes/ure-lib.php:619
|
202 |
-
msgid "Error encountered during default role change operation"
|
203 |
-
msgstr "اشکال در عملیات تغییر نقش پیش فرض"
|
204 |
-
|
205 |
-
#: ../includes/ure-lib.php:625
|
206 |
-
#, php-format
|
207 |
-
msgid "Default role for new users is set to %s successfully"
|
208 |
-
msgstr "نقش پیش فرض برای کاربران %s با موفقیت تنظیم شد "
|
209 |
-
|
210 |
-
#: ../includes/ure-lib.php:652
|
211 |
-
msgid "Editor"
|
212 |
-
msgstr "ویرایشگر"
|
213 |
-
|
214 |
-
#: ../includes/ure-lib.php:653
|
215 |
-
msgid "Author"
|
216 |
-
msgstr "نویسنده"
|
217 |
-
|
218 |
-
#: ../includes/ure-lib.php:654
|
219 |
-
msgid "Contributor"
|
220 |
-
msgstr "مشارکت کننده"
|
221 |
-
|
222 |
-
#: ../includes/ure-lib.php:655
|
223 |
-
msgid "Subscriber"
|
224 |
-
msgstr "مشترک"
|
225 |
-
|
226 |
-
#: ../includes/ure-lib.php:657
|
227 |
-
msgid "Switch themes"
|
228 |
-
msgstr "تغییر پوسته"
|
229 |
-
|
230 |
-
#: ../includes/ure-lib.php:658
|
231 |
-
msgid "Edit themes"
|
232 |
-
msgstr "ویرایش پوسته"
|
233 |
-
|
234 |
-
#: ../includes/ure-lib.php:659
|
235 |
-
msgid "Activate plugins"
|
236 |
-
msgstr "فعال سازی افزونه"
|
237 |
-
|
238 |
-
#: ../includes/ure-lib.php:660
|
239 |
-
msgid "Edit plugins"
|
240 |
-
msgstr "ویرایش افزونه"
|
241 |
-
|
242 |
-
#: ../includes/ure-lib.php:661
|
243 |
-
msgid "Edit users"
|
244 |
-
msgstr "ویرایش کاربران"
|
245 |
-
|
246 |
-
#: ../includes/ure-lib.php:662
|
247 |
-
msgid "Edit files"
|
248 |
-
msgstr "ویرایش فایلها"
|
249 |
-
|
250 |
-
#: ../includes/ure-lib.php:663
|
251 |
-
msgid "Manage options"
|
252 |
-
msgstr "مدیریت تنظیمات"
|
253 |
-
|
254 |
-
#: ../includes/ure-lib.php:664
|
255 |
-
msgid "Moderate comments"
|
256 |
-
msgstr "مدیریت نظرات"
|
257 |
-
|
258 |
-
#: ../includes/ure-lib.php:665
|
259 |
-
msgid "Manage categories"
|
260 |
-
msgstr "مدیریت دسته ها"
|
261 |
-
|
262 |
-
#: ../includes/ure-lib.php:666
|
263 |
-
msgid "Manage links"
|
264 |
-
msgstr "مدیریت لینکها"
|
265 |
-
|
266 |
-
#: ../includes/ure-lib.php:667
|
267 |
-
msgid "Upload files"
|
268 |
-
msgstr "آپلود فایل"
|
269 |
-
|
270 |
-
#: ../includes/ure-lib.php:668
|
271 |
-
msgid "Import"
|
272 |
-
msgstr "درون ریزی"
|
273 |
-
|
274 |
-
#: ../includes/ure-lib.php:669
|
275 |
-
msgid "Unfiltered html"
|
276 |
-
msgstr "بدون فیلتر html "
|
277 |
-
|
278 |
-
#: ../includes/ure-lib.php:670
|
279 |
-
msgid "Edit posts"
|
280 |
-
msgstr "ویرایش پستها"
|
281 |
-
|
282 |
-
#: ../includes/ure-lib.php:671
|
283 |
-
msgid "Edit others posts"
|
284 |
-
msgstr "ویرایش نوشته های دیگران"
|
285 |
-
|
286 |
-
#: ../includes/ure-lib.php:672
|
287 |
-
msgid "Edit published posts"
|
288 |
-
msgstr "ویرایش پستهای دیگران"
|
289 |
-
|
290 |
-
#: ../includes/ure-lib.php:673
|
291 |
-
msgid "Publish posts"
|
292 |
-
msgstr "انتشار نوشته"
|
293 |
-
|
294 |
-
#: ../includes/ure-lib.php:674
|
295 |
-
msgid "Edit pages"
|
296 |
-
msgstr "ویرایش برگه"
|
297 |
-
|
298 |
-
#: ../includes/ure-lib.php:675
|
299 |
-
msgid "Read"
|
300 |
-
msgstr "خواندن"
|
301 |
-
|
302 |
-
#: ../includes/ure-lib.php:676
|
303 |
-
msgid "Level 10"
|
304 |
-
msgstr "سطح 10"
|
305 |
-
|
306 |
-
#: ../includes/ure-lib.php:677
|
307 |
-
msgid "Level 9"
|
308 |
-
msgstr "سطح 9"
|
309 |
-
|
310 |
-
#: ../includes/ure-lib.php:678
|
311 |
-
msgid "Level 8"
|
312 |
-
msgstr "سطح 8"
|
313 |
-
|
314 |
-
#: ../includes/ure-lib.php:679
|
315 |
-
msgid "Level 7"
|
316 |
-
msgstr "سطح 7"
|
317 |
-
|
318 |
-
#: ../includes/ure-lib.php:680
|
319 |
-
msgid "Level 6"
|
320 |
-
msgstr "سطح 6"
|
321 |
-
|
322 |
-
#: ../includes/ure-lib.php:681
|
323 |
-
msgid "Level 5"
|
324 |
-
msgstr "سطح 5"
|
325 |
-
|
326 |
-
#: ../includes/ure-lib.php:682
|
327 |
-
msgid "Level 4"
|
328 |
-
msgstr "سطح 4"
|
329 |
-
|
330 |
-
#: ../includes/ure-lib.php:683
|
331 |
-
msgid "Level 3"
|
332 |
-
msgstr "سطح 3"
|
333 |
-
|
334 |
-
#: ../includes/ure-lib.php:684
|
335 |
-
msgid "Level 2"
|
336 |
-
msgstr "سطح 2"
|
337 |
-
|
338 |
-
#: ../includes/ure-lib.php:685
|
339 |
-
msgid "Level 1"
|
340 |
-
msgstr "سطح 1"
|
341 |
-
|
342 |
-
#: ../includes/ure-lib.php:686
|
343 |
-
msgid "Level 0"
|
344 |
-
msgstr "سطح 0"
|
345 |
-
|
346 |
-
#: ../includes/ure-lib.php:687
|
347 |
-
msgid "Edit others pages"
|
348 |
-
msgstr "ویرایش برگه های دیگران"
|
349 |
-
|
350 |
-
#: ../includes/ure-lib.php:688
|
351 |
-
msgid "Edit published pages"
|
352 |
-
msgstr "ویرایش برگه های منتشر شده"
|
353 |
-
|
354 |
-
#: ../includes/ure-lib.php:689
|
355 |
-
msgid "Publish pages"
|
356 |
-
msgstr "انتشار برگه"
|
357 |
-
|
358 |
-
#: ../includes/ure-lib.php:690
|
359 |
-
msgid "Delete pages"
|
360 |
-
msgstr "حذف برگه"
|
361 |
-
|
362 |
-
#: ../includes/ure-lib.php:691
|
363 |
-
msgid "Delete others pages"
|
364 |
-
msgstr "حذف برگه های دیگران"
|
365 |
-
|
366 |
-
#: ../includes/ure-lib.php:692
|
367 |
-
msgid "Delete published pages"
|
368 |
-
msgstr "حذف برگه های منتشر شده"
|
369 |
-
|
370 |
-
#: ../includes/ure-lib.php:693
|
371 |
-
msgid "Delete posts"
|
372 |
-
msgstr "حذف نوشته ها"
|
373 |
-
|
374 |
-
#: ../includes/ure-lib.php:694
|
375 |
-
msgid "Delete others posts"
|
376 |
-
msgstr "حذف نوشته های دیگران"
|
377 |
-
|
378 |
-
#: ../includes/ure-lib.php:695
|
379 |
-
msgid "Delete published posts"
|
380 |
-
msgstr "حذف نوشته های منتشر شده"
|
381 |
-
|
382 |
-
#: ../includes/ure-lib.php:696
|
383 |
-
msgid "Delete private posts"
|
384 |
-
msgstr "حذف نوشته های خصوصی"
|
385 |
-
|
386 |
-
#: ../includes/ure-lib.php:697
|
387 |
-
msgid "Edit private posts"
|
388 |
-
msgstr "ویرایش نوشته های خصوصی"
|
389 |
-
|
390 |
-
#: ../includes/ure-lib.php:698
|
391 |
-
msgid "Read private posts"
|
392 |
-
msgstr "خواندن نوشته های خصوصی"
|
393 |
-
|
394 |
-
#: ../includes/ure-lib.php:699
|
395 |
-
msgid "Delete private pages"
|
396 |
-
msgstr "حذف برگه های خصوصی"
|
397 |
-
|
398 |
-
#: ../includes/ure-lib.php:700
|
399 |
-
msgid "Edit private pages"
|
400 |
-
msgstr "ویرایش برگه های خصوصی"
|
401 |
-
|
402 |
-
#: ../includes/ure-lib.php:701
|
403 |
-
msgid "Read private pages"
|
404 |
-
msgstr "خواندن برگه های خصوصی"
|
405 |
-
|
406 |
-
#: ../includes/ure-lib.php:702
|
407 |
-
msgid "Delete users"
|
408 |
-
msgstr "حذف کاربران"
|
409 |
-
|
410 |
-
#: ../includes/ure-lib.php:703
|
411 |
-
msgid "Create users"
|
412 |
-
msgstr "ایجاد کاربر"
|
413 |
-
|
414 |
-
#: ../includes/ure-lib.php:704
|
415 |
-
msgid "Unfiltered upload"
|
416 |
-
msgstr "آپلود بدون محدودیت"
|
417 |
-
|
418 |
-
#: ../includes/ure-lib.php:705
|
419 |
-
msgid "Edit dashboard"
|
420 |
-
msgstr "ویرایش پیش خوان"
|
421 |
-
|
422 |
-
#: ../includes/ure-lib.php:706
|
423 |
-
msgid "Update plugins"
|
424 |
-
msgstr "بروز رسانی افزونه ها"
|
425 |
-
|
426 |
-
#: ../includes/ure-lib.php:707
|
427 |
-
msgid "Delete plugins"
|
428 |
-
msgstr "حذف افزونه ها"
|
429 |
-
|
430 |
-
#: ../includes/ure-lib.php:708
|
431 |
-
msgid "Install plugins"
|
432 |
-
msgstr "نصب افزونه ها"
|
433 |
-
|
434 |
-
#: ../includes/ure-lib.php:709
|
435 |
-
msgid "Update themes"
|
436 |
-
msgstr "بروز رسانی پوسته ها"
|
437 |
-
|
438 |
-
#: ../includes/ure-lib.php:710
|
439 |
-
msgid "Install themes"
|
440 |
-
msgstr "نصب پوسته"
|
441 |
-
|
442 |
-
#: ../includes/ure-lib.php:711
|
443 |
-
msgid "Update core"
|
444 |
-
msgstr "بروزرسانی وردپرس"
|
445 |
-
|
446 |
-
#: ../includes/ure-lib.php:712
|
447 |
-
msgid "List users"
|
448 |
-
msgstr "لیست کاربران"
|
449 |
-
|
450 |
-
#: ../includes/ure-lib.php:713
|
451 |
-
msgid "Remove users"
|
452 |
-
msgstr "حذف کاربران"
|
453 |
-
|
454 |
-
#: ../includes/ure-lib.php:714
|
455 |
-
msgid "Add users"
|
456 |
-
msgstr "افزودن کاربر"
|
457 |
-
|
458 |
-
#: ../includes/ure-lib.php:715
|
459 |
-
msgid "Promote users"
|
460 |
-
msgstr "ترفیع کاربران"
|
461 |
-
|
462 |
-
#: ../includes/ure-lib.php:716
|
463 |
-
msgid "Edit theme options"
|
464 |
-
msgstr "ویرایش تنظیمات پوشته"
|
465 |
-
|
466 |
-
#: ../includes/ure-lib.php:717
|
467 |
-
msgid "Delete themes"
|
468 |
-
msgstr "حذف پوسته ها"
|
469 |
-
|
470 |
-
#: ../includes/ure-lib.php:718
|
471 |
-
msgid "Export"
|
472 |
-
msgstr "برون ریزی"
|
473 |
-
|
474 |
-
#: ../includes/ure-lib.php:834
|
475 |
-
msgid "Error: Capability name must contain latin characters and digits only!"
|
476 |
-
msgstr "مشکل: نام نقش باید فقط شامل کاراکترهای لاتین و اعداد باشد"
|
477 |
-
|
478 |
-
#: ../includes/ure-lib.php:846
|
479 |
-
#, php-format
|
480 |
-
msgid "Capability %s is added successfully"
|
481 |
-
msgstr "نقش %s با موفقیت ساخته شد"
|
482 |
-
|
483 |
-
#: ../includes/ure-lib.php:848
|
484 |
-
#, php-format
|
485 |
-
msgid "Capability %s exists already"
|
486 |
-
msgstr "قابلیت %s در حال حاضر وجود دارد"
|
487 |
-
|
488 |
-
#: ../includes/ure-lib.php:997
|
489 |
-
#, php-format
|
490 |
-
msgid "Error! You do not have permission to delete this capability: %s!"
|
491 |
-
msgstr "خطا! شما مجوز حذف این قابلیت را ندارید: %s!"
|
492 |
-
|
493 |
-
#: ../includes/ure-lib.php:1016
|
494 |
-
#, php-format
|
495 |
-
msgid "Capability %s is removed successfully"
|
496 |
-
msgstr "نقش %s با موفقیت ساخته شد"
|
497 |
-
|
498 |
-
#: ../includes/ure-lib.php:1083
|
499 |
-
msgid "Help"
|
500 |
-
msgstr "راهنما"
|
501 |
-
|
502 |
-
#: ../includes/ure-role-edit.php:29
|
503 |
-
msgid "None"
|
504 |
-
msgstr "هیچ"
|
505 |
-
|
506 |
-
#: ../includes/ure-role-edit.php:67
|
507 |
-
msgid "Select Role and change its capabilities list"
|
508 |
-
msgstr "نقشی را انتخاب کنید و دسترسیهایش را درلیست زیر تغییر دهید"
|
509 |
-
|
510 |
-
#: ../includes/ure-role-edit.php:69
|
511 |
-
#: ../includes/ure-role-edit.php:166
|
512 |
-
msgid "Select Role:"
|
513 |
-
msgstr "انتخاب نقش:"
|
514 |
-
|
515 |
-
#: ../includes/ure-role-edit.php:79
|
516 |
-
#: ../includes/ure-user-edit.php:38
|
517 |
-
msgid "Show capabilities in human readable form"
|
518 |
-
msgstr "نمایش دسترسیها به فرم قابل درک"
|
519 |
-
|
520 |
-
#: ../includes/ure-role-edit.php:88
|
521 |
-
#: ../includes/ure-user-edit.php:47
|
522 |
-
msgid "Show deprecated capabilities"
|
523 |
-
msgstr "نمایش قابلیت های بیهوده"
|
524 |
-
|
525 |
-
#: ../includes/ure-role-edit.php:92
|
526 |
-
msgid "If checked, then apply action to ALL sites of this Network"
|
527 |
-
msgstr "در صورت انتخاب، و سپس اعمال به همه سایت های این شبکه اعمال می شود"
|
528 |
-
|
529 |
-
#: ../includes/ure-role-edit.php:102
|
530 |
-
msgid "Apply to All Sites"
|
531 |
-
msgstr "اعمال به تمام سایتها"
|
532 |
-
|
533 |
-
#: ../includes/ure-role-edit.php:109
|
534 |
-
#: ../includes/ure-user-edit.php:88
|
535 |
-
#, fuzzy
|
536 |
-
msgid "Core capabilities:"
|
537 |
-
msgstr "توانمندیها"
|
538 |
-
|
539 |
-
#: ../includes/ure-role-edit.php:124
|
540 |
-
#: ../includes/ure-user-edit.php:103
|
541 |
-
#, fuzzy
|
542 |
-
msgid "Custom capabilities:"
|
543 |
-
msgstr "توانمندیها"
|
544 |
-
|
545 |
-
#: ../includes/ure-role-edit.php:155
|
546 |
-
msgid "Role name (ID): "
|
547 |
-
msgstr ""
|
548 |
-
|
549 |
-
#: ../includes/ure-role-edit.php:157
|
550 |
-
msgid "Display Role Name: "
|
551 |
-
msgstr ""
|
552 |
-
|
553 |
-
#: ../includes/ure-role-edit.php:159
|
554 |
-
msgid "Make copy of: "
|
555 |
-
msgstr "ساخت کپی از:"
|
556 |
-
|
557 |
-
#: ../includes/ure-role-edit.php:181
|
558 |
-
#, fuzzy
|
559 |
-
msgid "Delete:"
|
560 |
-
msgstr "حذف"
|
561 |
-
|
562 |
-
#: ../includes/ure-role-edit.php:188
|
563 |
-
msgid "Capability name (ID): "
|
564 |
-
msgstr ""
|
565 |
-
|
566 |
-
#: ../includes/ure-user-edit.php:22
|
567 |
-
msgid "Change capabilities for user"
|
568 |
-
msgstr "تغییر قابلیتهای برای کاربر"
|
569 |
-
|
570 |
-
#: ../includes/ure-user-edit.php:52
|
571 |
-
msgid "Primary Role:"
|
572 |
-
msgstr ""
|
573 |
-
|
574 |
-
#: ../includes/ure-user-edit.php:62
|
575 |
-
msgid "bbPress Role:"
|
576 |
-
msgstr ""
|
577 |
-
|
578 |
-
#: ../includes/ure-user-edit.php:72
|
579 |
-
#, fuzzy
|
580 |
-
msgid "Other Roles:"
|
581 |
-
msgstr "حذف نقش"
|
582 |
-
|
583 |
-
#: ../includes/ure-options.php:65
|
584 |
-
#, fuzzy
|
585 |
-
msgid "User Roles are restored to WordPress default values. "
|
586 |
-
msgstr "دسترسیهای نقش از اطلاعات پشتیبان بازیابی شدند"
|
587 |
-
|
588 |
-
#: ../includes/ure-options.php:136
|
589 |
-
msgid "Error: "
|
590 |
-
msgstr "خطا:"
|
591 |
-
|
592 |
-
#: ../includes/ure-options.php:136
|
593 |
-
#: ../includes/ure-options.php:156
|
594 |
-
msgid "Role"
|
595 |
-
msgstr "نقش"
|
596 |
-
|
597 |
-
#: ../includes/ure-options.php:136
|
598 |
-
msgid "does not exist"
|
599 |
-
msgstr "پیدا نشد"
|
600 |
-
|
601 |
-
#: ../includes/ure-options.php:156
|
602 |
-
msgid "is updated successfully"
|
603 |
-
msgstr "با موفقیت بروزرسانی شد"
|
604 |
-
|
605 |
-
#: ../includes/ure-options.php:161
|
606 |
-
#: ../includes/ure-options.php:174
|
607 |
-
#, fuzzy
|
608 |
-
msgid "Error occured during role update"
|
609 |
-
msgstr "اشکال در پاک کردن نقش"
|
610 |
-
|
611 |
-
#: ../includes/ure-options.php:169
|
612 |
-
msgid "User"
|
613 |
-
msgstr "کاربر"
|
614 |
-
|
615 |
-
#: ../includes/ure-options.php:169
|
616 |
-
msgid "capabilities are updated successfully"
|
617 |
-
msgstr "با موفقیت بروزرسانی شد"
|
618 |
-
|
619 |
-
#: ../includes/ure-options.php:206
|
620 |
-
msgid "About this Plugin:"
|
621 |
-
msgstr "در مورد افزونه"
|
622 |
-
|
623 |
-
#: ../includes/ure-options.php:207
|
624 |
-
msgid "Author's website"
|
625 |
-
msgstr "سایت نویسنده"
|
626 |
-
|
627 |
-
#: ../includes/ure-options.php:208
|
628 |
-
msgid "Plugin webpage"
|
629 |
-
msgstr "وبسایت افزونه"
|
630 |
-
|
631 |
-
#: ../includes/ure-options.php:210
|
632 |
-
msgid "FAQ"
|
633 |
-
msgstr "سؤالات"
|
634 |
-
|
635 |
-
#~ msgid "Database operation error. Check log file."
|
636 |
-
#~ msgstr "مشکل با دیتابیس. لطفاً لاگ عملیات را ببینید"
|
637 |
-
|
638 |
-
#~ msgid ""
|
639 |
-
#~ "No backup data. It is created automatically before the first role data "
|
640 |
-
#~ "update."
|
641 |
-
#~ msgstr ""
|
642 |
-
#~ "اطلاعات پشتیبانی وجود ندارد. این پشتیبان به طور خودکار قبل از اولین "
|
643 |
-
#~ "بروزرسانی نقش ایجاد می شود"
|
644 |
-
|
645 |
-
#~ msgid " Name must contain latin characters and digits only!"
|
646 |
-
#~ msgstr "نام نقش باید فقط شامل کاراکترهای لاتین و اعداد باشد"
|
647 |
-
|
648 |
-
#~ msgid "Change Default Role"
|
649 |
-
#~ msgstr "تغییر نقش پیش فرض"
|
650 |
-
|
651 |
-
#~ msgid ""
|
652 |
-
#~ "Restore Roles from backup copy. Be careful, backup was created when you "
|
653 |
-
#~ "started URE 1st time. All changes you made after that will be lost"
|
654 |
-
#~ msgstr ""
|
655 |
-
#~ "بازگردانی نقشها از بکآپ. با دقت، بکآپ هنگام اولین اجرای افزونه ایجاد "
|
656 |
-
#~ "میشود و تمام تغییرات به حالت اول برگردانده خواهد شد."
|
657 |
-
|
658 |
-
#~ msgid "Role \"%s\" update: please confirm to continue"
|
659 |
-
#~ msgstr "برای تأیید کلیک کنید \"%s\" بروز رسانی نقش "
|
660 |
-
|
661 |
-
#~ msgid "Save Changes"
|
662 |
-
#~ msgstr "ذخیرۀ تغییرات"
|
663 |
-
|
664 |
-
#~ msgid "Cancel not saved changes"
|
665 |
-
#~ msgstr "لغو تغییرات اعمال نشده"
|
666 |
-
|
667 |
-
#~ msgid "Select All Capabilities"
|
668 |
-
#~ msgstr "انتخاب تمام قابلیتها"
|
669 |
-
|
670 |
-
#~ msgid "Unselect All Capabilities"
|
671 |
-
#~ msgstr "همه قابلیتها را از حالت انتخاب خارج کن"
|
672 |
-
|
673 |
-
#~ msgid "Turn checked capabilities off and vise versa"
|
674 |
-
#~ msgstr "ویژگی های خاموش را روشن کن و بالعکس"
|
675 |
-
|
676 |
-
#~ msgid "Restore Roles from backup copy"
|
677 |
-
#~ msgstr "بازیابی نقش ها از نسخۀ پشتیبان"
|
678 |
-
|
679 |
-
#~ msgid "Name: "
|
680 |
-
#~ msgstr "نام:"
|
681 |
-
|
682 |
-
#~ msgid "Add"
|
683 |
-
#~ msgstr "اضافه"
|
684 |
-
|
685 |
-
#~ msgid "Add New User Role"
|
686 |
-
#~ msgstr "اضافه کردن نقش کاربری جدید"
|
687 |
-
|
688 |
-
#~ msgid "Default Role for New User"
|
689 |
-
#~ msgstr "نقش پیش فرض برای کاربر جدید"
|
690 |
-
|
691 |
-
#~ msgid "Change"
|
692 |
-
#~ msgstr "تغییر"
|
693 |
-
|
694 |
-
#~ msgid "Delete User Role"
|
695 |
-
#~ msgstr "حذف نقش کاربری"
|
696 |
-
|
697 |
-
#~ msgid "Remove"
|
698 |
-
#~ msgstr "حذف"
|
699 |
-
|
700 |
-
#~ msgid "Remove User Capability"
|
701 |
-
#~ msgstr "حذف قابلیت کاربر"
|
702 |
-
|
703 |
-
#~ msgid "User \"%s\" update: please confirm to continue"
|
704 |
-
#~ msgstr "برای تأیید کلیک کنید \"%s\" بروز رسانی نقش "
|
705 |
-
|
706 |
-
#~ msgid "Role:"
|
707 |
-
#~ msgstr "نقش:"
|
708 |
-
|
709 |
-
#~ msgid "Add capabilities to this user:"
|
710 |
-
#~ msgstr "افزودن قابلیت برای این کاربر:"
|
711 |
-
|
712 |
-
#~ msgid "Greetings"
|
713 |
-
#~ msgstr "خوشامدگویی ها"
|
714 |
-
|
715 |
-
#~ msgid "Greetings:"
|
716 |
-
#~ msgstr "تشکر از:"
|
717 |
-
|
718 |
-
#~ msgid "It's me, the author"
|
719 |
-
#~ msgstr "منم، نویسنده!"
|
720 |
-
|
721 |
-
#~ msgid "For the help with Belorussian translation"
|
722 |
-
#~ msgstr "برای ترجمه به زبان بلاروسی"
|
723 |
-
|
724 |
-
#~ msgid "For the help with Brasilian translation"
|
725 |
-
#~ msgstr "برای ترجمه به زبان برزیلی"
|
726 |
-
|
727 |
-
#, fuzzy
|
728 |
-
#~ msgid "For the help with Brasilian Portuguese translation"
|
729 |
-
#~ msgstr "برای ترجمه به زبان برزیلی"
|
730 |
-
|
731 |
-
#~ msgid "For the help with Chinese translation"
|
732 |
-
#~ msgstr "برای ترجمه به زبان چینی"
|
733 |
-
|
734 |
-
#~ msgid "For the help with Dutch translation"
|
735 |
-
#~ msgstr "برای ترجمه به زبان هلندی"
|
736 |
-
|
737 |
-
#~ msgid "For the help with Finnish translation"
|
738 |
-
#~ msgstr "برای ترجمه به زبان فنلاندی"
|
739 |
-
|
740 |
-
#~ msgid "For the help with French translation"
|
741 |
-
#~ msgstr "برای ترجمه به زبان فرانسوی"
|
742 |
-
|
743 |
-
#~ msgid "For the help with German translation"
|
744 |
-
#~ msgstr "برای ترجمه به زبان آلمانی"
|
745 |
-
|
746 |
-
#~ msgid "For the help with Hebrew translation"
|
747 |
-
#~ msgstr "برای کمک ترجمه عبری"
|
748 |
-
|
749 |
-
#~ msgid "For the help with Hindi translation"
|
750 |
-
#~ msgstr "برای کمک ترجمه هندی"
|
751 |
-
|
752 |
-
#~ msgid "For the help with Hungarian translation"
|
753 |
-
#~ msgstr "برای ترجمه به زبان مجارستانی"
|
754 |
-
|
755 |
-
#~ msgid "For the help with Italian translation"
|
756 |
-
#~ msgstr "برای ترجمه به زبان ایتالیایی"
|
757 |
-
|
758 |
-
#~ msgid "For the help with Japanese translation"
|
759 |
-
#~ msgstr "برای ترجمه به زبان ژاپنی"
|
760 |
-
|
761 |
-
#~ msgid "For the help with Lithuanian translation"
|
762 |
-
#~ msgstr "برای کمک ترجمه لیتوانیایی"
|
763 |
-
|
764 |
-
#~ msgid "For the help with Persian translation"
|
765 |
-
#~ msgstr "برای ترجمه به زبان فارسی"
|
766 |
-
|
767 |
-
#~ msgid "For the help with Polish translation"
|
768 |
-
#~ msgstr "برای ترجمه به زبان لهستانی"
|
769 |
-
|
770 |
-
#~ msgid "For the help with Spanish translation"
|
771 |
-
#~ msgstr "برای ترجمه به زبان اسپانیایی"
|
772 |
-
|
773 |
-
#~ msgid "For the updated Swedish translation"
|
774 |
-
#~ msgstr "برای ترجمه به زبان سوئدی"
|
775 |
-
|
776 |
-
#~ msgid "For the help with Swedish translation"
|
777 |
-
#~ msgstr "برای ترجمه به زبان سوئدی"
|
778 |
-
|
779 |
-
#~ msgid "For the help with Turkish translation"
|
780 |
-
#~ msgstr "برای ترجمه به زبان ترکی"
|
781 |
-
|
782 |
-
#~ msgid "For the code to hide administrator role"
|
783 |
-
#~ msgstr "برای کد مخفی کنندۀ نقش مدیر"
|
784 |
-
|
785 |
-
#~ msgid "For the code enhancement suggestion"
|
786 |
-
#~ msgstr "برای کد افزایش پیشنهاد"
|
787 |
-
|
788 |
-
#~ msgid ""
|
789 |
-
#~ "Do you wish to see your name with link to your site here? You are "
|
790 |
-
#~ "welcome! Your help with translation and new ideas are very appreciated."
|
791 |
-
#~ msgstr ""
|
792 |
-
#~ "میخوایین اسم و لینک سایتتون رو اینجا ببینید؟ در ترجمه و ایده دهی کمک کنید"
|
793 |
-
|
794 |
-
#~ msgid "Roles list reading error is encountered"
|
795 |
-
#~ msgstr "اشکال در خواندن لیست دسترسیهای نقش"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
lang/ure-fi.mo
DELETED
Binary file
|
lang/ure-fi.po
DELETED
@@ -1,767 +0,0 @@
|
|
1 |
-
msgid ""
|
2 |
-
msgstr ""
|
3 |
-
"Project-Id-Version: User Role Editor 2.0\n"
|
4 |
-
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2013-05-17 11:14+0700\n"
|
6 |
-
"PO-Revision-Date: \n"
|
7 |
-
"Last-Translator: Vladimir Garagulya <vladimir@shinephp.com>\n"
|
8 |
-
"Language-Team: Lauri Merisaari <lauri@viidakkorumpu.fi>\n"
|
9 |
-
"Language: \n"
|
10 |
-
"MIME-Version: 1.0\n"
|
11 |
-
"Content-Type: text/plain; charset=UTF-8\n"
|
12 |
-
"Content-Transfer-Encoding: 8bit\n"
|
13 |
-
"X-Poedit-SourceCharset: utf-8\n"
|
14 |
-
"X-Poedit-KeywordsList: __;_e\n"
|
15 |
-
"X-Poedit-Basepath: .\n"
|
16 |
-
"X-Poedit-Language: Finnish\n"
|
17 |
-
"X-Poedit-Country: FINLAND\n"
|
18 |
-
"X-Poedit-SearchPath-0: ..\n"
|
19 |
-
|
20 |
-
#: ../user-role-editor.php:34
|
21 |
-
#, fuzzy, php-format
|
22 |
-
msgid "User Role Editor requires PHP %s or newer."
|
23 |
-
msgstr "User Role Editor tarvitsee PHP 5.0:n tai uudemman."
|
24 |
-
|
25 |
-
#: ../user-role-editor.php:35
|
26 |
-
#: ../user-role-editor.php:107
|
27 |
-
msgid "Please update!"
|
28 |
-
msgstr "Ole hyvä ja päivitä!"
|
29 |
-
|
30 |
-
#: ../user-role-editor.php:80
|
31 |
-
msgid "Only"
|
32 |
-
msgstr "Vain"
|
33 |
-
|
34 |
-
#: ../user-role-editor.php:80
|
35 |
-
msgid "is allowed to use"
|
36 |
-
msgstr "sallitaan käyttää"
|
37 |
-
|
38 |
-
#: ../user-role-editor.php:86
|
39 |
-
#: ../user-role-editor.php:312
|
40 |
-
#: ../user-role-editor.php:368
|
41 |
-
msgid "User Role Editor"
|
42 |
-
msgstr "User Role Editor"
|
43 |
-
|
44 |
-
#: ../user-role-editor.php:106
|
45 |
-
#, fuzzy, php-format
|
46 |
-
msgid "User Role Editor requires WordPress %s or newer."
|
47 |
-
msgstr "User Role Editor tarvitsee Wordpress 3.0 tai uudemman."
|
48 |
-
|
49 |
-
#: ../user-role-editor.php:139
|
50 |
-
msgid "Select All"
|
51 |
-
msgstr ""
|
52 |
-
|
53 |
-
#: ../user-role-editor.php:140
|
54 |
-
msgid "Unselect All"
|
55 |
-
msgstr ""
|
56 |
-
|
57 |
-
#: ../user-role-editor.php:141
|
58 |
-
msgid "Reverse"
|
59 |
-
msgstr ""
|
60 |
-
|
61 |
-
#: ../user-role-editor.php:142
|
62 |
-
msgid "Update"
|
63 |
-
msgstr "Päivitä"
|
64 |
-
|
65 |
-
#: ../user-role-editor.php:143
|
66 |
-
#, fuzzy
|
67 |
-
msgid "Please confirm permissions update"
|
68 |
-
msgstr "Varmista jatkaaksesi"
|
69 |
-
|
70 |
-
#: ../user-role-editor.php:144
|
71 |
-
msgid "Add New Role"
|
72 |
-
msgstr "Lisää uusi rooli"
|
73 |
-
|
74 |
-
#: ../user-role-editor.php:145
|
75 |
-
#, fuzzy
|
76 |
-
msgid " Role name (ID) can not be empty!"
|
77 |
-
msgstr " Roolin nimi ei voi olla tyhjä!"
|
78 |
-
|
79 |
-
#: ../user-role-editor.php:146
|
80 |
-
#, fuzzy
|
81 |
-
msgid " Role name (ID) must contain latin characters, digits, hyphens or underscore only!"
|
82 |
-
msgstr "Virhe: Roolin nimi saa sisältää vain latinalaisia aakkosia ja numeroita!"
|
83 |
-
|
84 |
-
#: ../user-role-editor.php:147
|
85 |
-
#, fuzzy
|
86 |
-
msgid "Add Role"
|
87 |
-
msgstr "Lisää uusi rooli"
|
88 |
-
|
89 |
-
#: ../user-role-editor.php:148
|
90 |
-
msgid "Delete Role"
|
91 |
-
msgstr "Poista rooli"
|
92 |
-
|
93 |
-
#: ../user-role-editor.php:149
|
94 |
-
msgid "Cancel"
|
95 |
-
msgstr "Peruuta"
|
96 |
-
|
97 |
-
#: ../user-role-editor.php:150
|
98 |
-
#, fuzzy
|
99 |
-
msgid "Add Capability"
|
100 |
-
msgstr "Lisää uusi oikeus"
|
101 |
-
|
102 |
-
#: ../user-role-editor.php:151
|
103 |
-
#: ../user-role-editor.php:156
|
104 |
-
#, fuzzy
|
105 |
-
msgid "Delete Capability"
|
106 |
-
msgstr "Poista oikeus"
|
107 |
-
|
108 |
-
#: ../user-role-editor.php:152
|
109 |
-
msgid "Reset"
|
110 |
-
msgstr "Palauta"
|
111 |
-
|
112 |
-
#: ../user-role-editor.php:153
|
113 |
-
msgid "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?"
|
114 |
-
msgstr ""
|
115 |
-
|
116 |
-
#: ../user-role-editor.php:154
|
117 |
-
#, fuzzy
|
118 |
-
msgid "Default Role"
|
119 |
-
msgstr "Poista rooli"
|
120 |
-
|
121 |
-
#: ../user-role-editor.php:155
|
122 |
-
#, fuzzy
|
123 |
-
msgid "Set New Default Role"
|
124 |
-
msgstr "Muuta oletus rooliksi"
|
125 |
-
|
126 |
-
#: ../user-role-editor.php:157
|
127 |
-
msgid "Warning! Be careful - removing critical capability could crash some plugin or other custom code"
|
128 |
-
msgstr "Varoitus! Ole varovainen - kriittisen oikeuden poistaminen voi rikkoa jonkun lisäosan tai muun muokatun koodin"
|
129 |
-
|
130 |
-
#: ../user-role-editor.php:158
|
131 |
-
#, fuzzy
|
132 |
-
msgid " Capability name (ID) can not be empty!"
|
133 |
-
msgstr " Roolin nimi ei voi olla tyhjä!"
|
134 |
-
|
135 |
-
#: ../user-role-editor.php:159
|
136 |
-
#, fuzzy
|
137 |
-
msgid " Capability name (ID) must contain latin characters, digits, hyphens or underscore only!"
|
138 |
-
msgstr "Virhe: Oikeuden nimi saa sisältää vain latinalaisia aakkosia ja numeroita!"
|
139 |
-
|
140 |
-
#: ../user-role-editor.php:284
|
141 |
-
msgid "Settings"
|
142 |
-
msgstr "Asetukset"
|
143 |
-
|
144 |
-
#: ../user-role-editor.php:294
|
145 |
-
#: ../includes/ure-options.php:209
|
146 |
-
msgid "Changelog"
|
147 |
-
msgstr "Muutos loki"
|
148 |
-
|
149 |
-
#: ../user-role-editor.php:342
|
150 |
-
msgid "Capabilities"
|
151 |
-
msgstr "Oikeudet"
|
152 |
-
|
153 |
-
#: ../user-role-editor.php:371
|
154 |
-
#: ../user-role-editor.php:407
|
155 |
-
#, fuzzy
|
156 |
-
msgid "Other Roles"
|
157 |
-
msgstr "Poista rooli"
|
158 |
-
|
159 |
-
#: ../user-role-editor.php:381
|
160 |
-
#, fuzzy
|
161 |
-
msgid "Edit"
|
162 |
-
msgstr "Päätoimittaja"
|
163 |
-
|
164 |
-
#: ../includes/ure-lib.php:35
|
165 |
-
msgid "Error is occur. Please check the log file."
|
166 |
-
msgstr "Sattui virhe. Ole hyvä ja tarkista loki tiedosto."
|
167 |
-
|
168 |
-
#: ../includes/ure-lib.php:364
|
169 |
-
msgid "Backup record is created for the current role capabilities"
|
170 |
-
msgstr "Varmuuskopio luodaan nykyisiä rooli oikeuksia varten"
|
171 |
-
|
172 |
-
#: ../includes/ure-lib.php:481
|
173 |
-
#, fuzzy
|
174 |
-
msgid "Error: Role ID must contain latin characters, digits, hyphens or underscore only!"
|
175 |
-
msgstr "Virhe: Roolin nimi saa sisältää vain latinalaisia aakkosia ja numeroita!"
|
176 |
-
|
177 |
-
#: ../includes/ure-lib.php:496
|
178 |
-
#, php-format
|
179 |
-
msgid "Role %s exists already"
|
180 |
-
msgstr "Rooli %s on jo olemassa"
|
181 |
-
|
182 |
-
#: ../includes/ure-lib.php:511
|
183 |
-
msgid "Error is encountered during new role create operation"
|
184 |
-
msgstr "Virhe sattui roolia luotaessa"
|
185 |
-
|
186 |
-
#: ../includes/ure-lib.php:513
|
187 |
-
#, php-format
|
188 |
-
msgid "Role %s is created successfully"
|
189 |
-
msgstr "Rooli %s luotiin onnistuneesti"
|
190 |
-
|
191 |
-
#: ../includes/ure-lib.php:597
|
192 |
-
msgid "Error encountered during role delete operation"
|
193 |
-
msgstr "Sattui virhe rooli poistettaessa"
|
194 |
-
|
195 |
-
#: ../includes/ure-lib.php:599
|
196 |
-
#, php-format
|
197 |
-
msgid "Role %s is deleted successfully"
|
198 |
-
msgstr "Rooli %s on poistettu onnistuneesti"
|
199 |
-
|
200 |
-
#: ../includes/ure-lib.php:619
|
201 |
-
msgid "Error encountered during default role change operation"
|
202 |
-
msgstr "Sattui virhe oletusroolia muutettaessa"
|
203 |
-
|
204 |
-
#: ../includes/ure-lib.php:625
|
205 |
-
#, php-format
|
206 |
-
msgid "Default role for new users is set to %s successfully"
|
207 |
-
msgstr "Oletusrooli uusille käyttäjille asetettiin %s onnistuneesti"
|
208 |
-
|
209 |
-
#: ../includes/ure-lib.php:652
|
210 |
-
msgid "Editor"
|
211 |
-
msgstr "Päätoimittaja"
|
212 |
-
|
213 |
-
#: ../includes/ure-lib.php:653
|
214 |
-
msgid "Author"
|
215 |
-
msgstr "Kirjoittaja"
|
216 |
-
|
217 |
-
#: ../includes/ure-lib.php:654
|
218 |
-
msgid "Contributor"
|
219 |
-
msgstr "Avustaja"
|
220 |
-
|
221 |
-
#: ../includes/ure-lib.php:655
|
222 |
-
msgid "Subscriber"
|
223 |
-
msgstr "Tilaaja"
|
224 |
-
|
225 |
-
#: ../includes/ure-lib.php:657
|
226 |
-
msgid "Switch themes"
|
227 |
-
msgstr "Vaihda teema"
|
228 |
-
|
229 |
-
#: ../includes/ure-lib.php:658
|
230 |
-
msgid "Edit themes"
|
231 |
-
msgstr "Muokkaa teemoja"
|
232 |
-
|
233 |
-
#: ../includes/ure-lib.php:659
|
234 |
-
msgid "Activate plugins"
|
235 |
-
msgstr "Aktivoi lisäosia"
|
236 |
-
|
237 |
-
#: ../includes/ure-lib.php:660
|
238 |
-
msgid "Edit plugins"
|
239 |
-
msgstr "Muokkaa lisäosia"
|
240 |
-
|
241 |
-
#: ../includes/ure-lib.php:661
|
242 |
-
msgid "Edit users"
|
243 |
-
msgstr "Muokkaa käyttäjiä"
|
244 |
-
|
245 |
-
#: ../includes/ure-lib.php:662
|
246 |
-
msgid "Edit files"
|
247 |
-
msgstr "Muokkaa tiedostoja"
|
248 |
-
|
249 |
-
#: ../includes/ure-lib.php:663
|
250 |
-
msgid "Manage options"
|
251 |
-
msgstr "Hallitse asetuksia"
|
252 |
-
|
253 |
-
#: ../includes/ure-lib.php:664
|
254 |
-
msgid "Moderate comments"
|
255 |
-
msgstr "Suodata kommentteja"
|
256 |
-
|
257 |
-
#: ../includes/ure-lib.php:665
|
258 |
-
msgid "Manage categories"
|
259 |
-
msgstr "Hallitse kategorioita"
|
260 |
-
|
261 |
-
#: ../includes/ure-lib.php:666
|
262 |
-
msgid "Manage links"
|
263 |
-
msgstr "Hallitse linkkejä"
|
264 |
-
|
265 |
-
#: ../includes/ure-lib.php:667
|
266 |
-
msgid "Upload files"
|
267 |
-
msgstr "Lisää tiedostoja"
|
268 |
-
|
269 |
-
#: ../includes/ure-lib.php:668
|
270 |
-
msgid "Import"
|
271 |
-
msgstr "Tuo"
|
272 |
-
|
273 |
-
#: ../includes/ure-lib.php:669
|
274 |
-
msgid "Unfiltered html"
|
275 |
-
msgstr "Suodattamaton html"
|
276 |
-
|
277 |
-
#: ../includes/ure-lib.php:670
|
278 |
-
msgid "Edit posts"
|
279 |
-
msgstr "Muokkaa artikkeleja"
|
280 |
-
|
281 |
-
#: ../includes/ure-lib.php:671
|
282 |
-
msgid "Edit others posts"
|
283 |
-
msgstr "Muokkaa toisten artikkeleja"
|
284 |
-
|
285 |
-
#: ../includes/ure-lib.php:672
|
286 |
-
msgid "Edit published posts"
|
287 |
-
msgstr "Muokkaa julkaistuja artikkeleja"
|
288 |
-
|
289 |
-
#: ../includes/ure-lib.php:673
|
290 |
-
msgid "Publish posts"
|
291 |
-
msgstr "Julkaise artikkeleja"
|
292 |
-
|
293 |
-
#: ../includes/ure-lib.php:674
|
294 |
-
msgid "Edit pages"
|
295 |
-
msgstr "Muokkaa sivuja"
|
296 |
-
|
297 |
-
#: ../includes/ure-lib.php:675
|
298 |
-
msgid "Read"
|
299 |
-
msgstr "Lue"
|
300 |
-
|
301 |
-
#: ../includes/ure-lib.php:676
|
302 |
-
msgid "Level 10"
|
303 |
-
msgstr "Taso 10"
|
304 |
-
|
305 |
-
#: ../includes/ure-lib.php:677
|
306 |
-
msgid "Level 9"
|
307 |
-
msgstr "Taso 9"
|
308 |
-
|
309 |
-
#: ../includes/ure-lib.php:678
|
310 |
-
msgid "Level 8"
|
311 |
-
msgstr "Taso 8"
|
312 |
-
|
313 |
-
#: ../includes/ure-lib.php:679
|
314 |
-
msgid "Level 7"
|
315 |
-
msgstr "Taso 7"
|
316 |
-
|
317 |
-
#: ../includes/ure-lib.php:680
|
318 |
-
msgid "Level 6"
|
319 |
-
msgstr "Taso 6"
|
320 |
-
|
321 |
-
#: ../includes/ure-lib.php:681
|
322 |
-
msgid "Level 5"
|
323 |
-
msgstr "Taso 5"
|
324 |
-
|
325 |
-
#: ../includes/ure-lib.php:682
|
326 |
-
msgid "Level 4"
|
327 |
-
msgstr "Taso 4"
|
328 |
-
|
329 |
-
#: ../includes/ure-lib.php:683
|
330 |
-
msgid "Level 3"
|
331 |
-
msgstr "Taso 3"
|
332 |
-
|
333 |
-
#: ../includes/ure-lib.php:684
|
334 |
-
msgid "Level 2"
|
335 |
-
msgstr "Taso 2"
|
336 |
-
|
337 |
-
#: ../includes/ure-lib.php:685
|
338 |
-
msgid "Level 1"
|
339 |
-
msgstr "Taso 1"
|
340 |
-
|
341 |
-
#: ../includes/ure-lib.php:686
|
342 |
-
msgid "Level 0"
|
343 |
-
msgstr "Taso 0"
|
344 |
-
|
345 |
-
#: ../includes/ure-lib.php:687
|
346 |
-
msgid "Edit others pages"
|
347 |
-
msgstr "Muokkaa toisten sivuja"
|
348 |
-
|
349 |
-
#: ../includes/ure-lib.php:688
|
350 |
-
msgid "Edit published pages"
|
351 |
-
msgstr "Muokkaa julkaistuja sivuja"
|
352 |
-
|
353 |
-
#: ../includes/ure-lib.php:689
|
354 |
-
msgid "Publish pages"
|
355 |
-
msgstr "Julkaise sivuja"
|
356 |
-
|
357 |
-
#: ../includes/ure-lib.php:690
|
358 |
-
msgid "Delete pages"
|
359 |
-
msgstr "Poista sivuja"
|
360 |
-
|
361 |
-
#: ../includes/ure-lib.php:691
|
362 |
-
msgid "Delete others pages"
|
363 |
-
msgstr "Poista toisten sivuja"
|
364 |
-
|
365 |
-
#: ../includes/ure-lib.php:692
|
366 |
-
msgid "Delete published pages"
|
367 |
-
msgstr "Poista julkaistuja sivuja"
|
368 |
-
|
369 |
-
#: ../includes/ure-lib.php:693
|
370 |
-
msgid "Delete posts"
|
371 |
-
msgstr "Poista artikkeleja"
|
372 |
-
|
373 |
-
#: ../includes/ure-lib.php:694
|
374 |
-
msgid "Delete others posts"
|
375 |
-
msgstr "Poista toisten artikkeleja"
|
376 |
-
|
377 |
-
#: ../includes/ure-lib.php:695
|
378 |
-
msgid "Delete published posts"
|
379 |
-
msgstr "Poista julkaistuja artikkeleja"
|
380 |
-
|
381 |
-
#: ../includes/ure-lib.php:696
|
382 |
-
msgid "Delete private posts"
|
383 |
-
msgstr "Poista yksityisiä artikkeleja"
|
384 |
-
|
385 |
-
#: ../includes/ure-lib.php:697
|
386 |
-
msgid "Edit private posts"
|
387 |
-
msgstr "Muokkaa yksityisiä artikkeleja"
|
388 |
-
|
389 |
-
#: ../includes/ure-lib.php:698
|
390 |
-
msgid "Read private posts"
|
391 |
-
msgstr "Lue yksityisiä artikkeleja"
|
392 |
-
|
393 |
-
#: ../includes/ure-lib.php:699
|
394 |
-
msgid "Delete private pages"
|
395 |
-
msgstr "Poista yksityisiä sivuja"
|
396 |
-
|
397 |
-
#: ../includes/ure-lib.php:700
|
398 |
-
msgid "Edit private pages"
|
399 |
-
msgstr "Muokkaa yksityisiä sivuja"
|
400 |
-
|
401 |
-
#: ../includes/ure-lib.php:701
|
402 |
-
msgid "Read private pages"
|
403 |
-
msgstr "Lue yksityisiä sivuja"
|
404 |
-
|
405 |
-
#: ../includes/ure-lib.php:702
|
406 |
-
msgid "Delete users"
|
407 |
-
msgstr "Poista käyttäjiä"
|
408 |
-
|
409 |
-
#: ../includes/ure-lib.php:703
|
410 |
-
msgid "Create users"
|
411 |
-
msgstr "Luo käyttäjiä"
|
412 |
-
|
413 |
-
#: ../includes/ure-lib.php:704
|
414 |
-
msgid "Unfiltered upload"
|
415 |
-
msgstr "Suodattamaton tiedostojen lisäys"
|
416 |
-
|
417 |
-
#: ../includes/ure-lib.php:705
|
418 |
-
msgid "Edit dashboard"
|
419 |
-
msgstr "Muokkaa ohjausnäkymää"
|
420 |
-
|
421 |
-
#: ../includes/ure-lib.php:706
|
422 |
-
msgid "Update plugins"
|
423 |
-
msgstr "Päivitä lisäosia"
|
424 |
-
|
425 |
-
#: ../includes/ure-lib.php:707
|
426 |
-
msgid "Delete plugins"
|
427 |
-
msgstr "Poista lisäosia"
|
428 |
-
|
429 |
-
#: ../includes/ure-lib.php:708
|
430 |
-
msgid "Install plugins"
|
431 |
-
msgstr "Asenna lisäosia"
|
432 |
-
|
433 |
-
#: ../includes/ure-lib.php:709
|
434 |
-
msgid "Update themes"
|
435 |
-
msgstr "Päivitä teemoja"
|
436 |
-
|
437 |
-
#: ../includes/ure-lib.php:710
|
438 |
-
msgid "Install themes"
|
439 |
-
msgstr "Asenna teemoja"
|
440 |
-
|
441 |
-
#: ../includes/ure-lib.php:711
|
442 |
-
msgid "Update core"
|
443 |
-
msgstr "Päivitä ydin"
|
444 |
-
|
445 |
-
#: ../includes/ure-lib.php:712
|
446 |
-
msgid "List users"
|
447 |
-
msgstr "Listaa käyttäjät"
|
448 |
-
|
449 |
-
#: ../includes/ure-lib.php:713
|
450 |
-
msgid "Remove users"
|
451 |
-
msgstr "Poista käyttäjiä"
|
452 |
-
|
453 |
-
#: ../includes/ure-lib.php:714
|
454 |
-
msgid "Add users"
|
455 |
-
msgstr "Lisää käyttäjiä"
|
456 |
-
|
457 |
-
#: ../includes/ure-lib.php:715
|
458 |
-
msgid "Promote users"
|
459 |
-
msgstr "Ylennä käyttäjiä"
|
460 |
-
|
461 |
-
#: ../includes/ure-lib.php:716
|
462 |
-
msgid "Edit theme options"
|
463 |
-
msgstr "Muokkaa teeman asetuksia"
|
464 |
-
|
465 |
-
#: ../includes/ure-lib.php:717
|
466 |
-
msgid "Delete themes"
|
467 |
-
msgstr "Poista teemoja"
|
468 |
-
|
469 |
-
#: ../includes/ure-lib.php:718
|
470 |
-
msgid "Export"
|
471 |
-
msgstr "Vie"
|
472 |
-
|
473 |
-
#: ../includes/ure-lib.php:834
|
474 |
-
msgid "Error: Capability name must contain latin characters and digits only!"
|
475 |
-
msgstr "Virhe: Oikeuden nimi saa sisältää vain latinalaisia aakkosia ja numeroita!"
|
476 |
-
|
477 |
-
#: ../includes/ure-lib.php:846
|
478 |
-
#, php-format
|
479 |
-
msgid "Capability %s is added successfully"
|
480 |
-
msgstr "Rooli %s luotiin onnistuneesti"
|
481 |
-
|
482 |
-
#: ../includes/ure-lib.php:848
|
483 |
-
#, php-format
|
484 |
-
msgid "Capability %s exists already"
|
485 |
-
msgstr "Oikeus %s on jo määritelty"
|
486 |
-
|
487 |
-
#: ../includes/ure-lib.php:997
|
488 |
-
#, php-format
|
489 |
-
msgid "Error! You do not have permission to delete this capability: %s!"
|
490 |
-
msgstr "Virhe! Sinulla ei ole lupaa poistaa tätä oikeutta: %s!"
|
491 |
-
|
492 |
-
#: ../includes/ure-lib.php:1016
|
493 |
-
#, php-format
|
494 |
-
msgid "Capability %s is removed successfully"
|
495 |
-
msgstr "Rooli %s poistettiin onnistuneesti"
|
496 |
-
|
497 |
-
#: ../includes/ure-lib.php:1083
|
498 |
-
msgid "Help"
|
499 |
-
msgstr ""
|
500 |
-
|
501 |
-
#: ../includes/ure-role-edit.php:29
|
502 |
-
msgid "None"
|
503 |
-
msgstr ""
|
504 |
-
|
505 |
-
#: ../includes/ure-role-edit.php:67
|
506 |
-
msgid "Select Role and change its capabilities list"
|
507 |
-
msgstr "Valitse rooli ja muuta sen oikeuksia"
|
508 |
-
|
509 |
-
#: ../includes/ure-role-edit.php:69
|
510 |
-
#: ../includes/ure-role-edit.php:166
|
511 |
-
msgid "Select Role:"
|
512 |
-
msgstr "Valitse rooli:"
|
513 |
-
|
514 |
-
#: ../includes/ure-role-edit.php:79
|
515 |
-
#: ../includes/ure-user-edit.php:38
|
516 |
-
msgid "Show capabilities in human readable form"
|
517 |
-
msgstr "Näytä oikeudet helpommin luettavassa muodossa suomeksi"
|
518 |
-
|
519 |
-
#: ../includes/ure-role-edit.php:88
|
520 |
-
#: ../includes/ure-user-edit.php:47
|
521 |
-
msgid "Show deprecated capabilities"
|
522 |
-
msgstr ""
|
523 |
-
|
524 |
-
#: ../includes/ure-role-edit.php:92
|
525 |
-
msgid "If checked, then apply action to ALL sites of this Network"
|
526 |
-
msgstr "Jos valittu, muutos toteutetaan KAIKILLA sivustoilla tässä verkossa"
|
527 |
-
|
528 |
-
#: ../includes/ure-role-edit.php:102
|
529 |
-
msgid "Apply to All Sites"
|
530 |
-
msgstr "Tee muutos kaikille sivustoille"
|
531 |
-
|
532 |
-
#: ../includes/ure-role-edit.php:109
|
533 |
-
#: ../includes/ure-user-edit.php:88
|
534 |
-
#, fuzzy
|
535 |
-
msgid "Core capabilities:"
|
536 |
-
msgstr "Oikeudet"
|
537 |
-
|
538 |
-
#: ../includes/ure-role-edit.php:124
|
539 |
-
#: ../includes/ure-user-edit.php:103
|
540 |
-
#, fuzzy
|
541 |
-
msgid "Custom capabilities:"
|
542 |
-
msgstr "Oikeudet"
|
543 |
-
|
544 |
-
#: ../includes/ure-role-edit.php:155
|
545 |
-
msgid "Role name (ID): "
|
546 |
-
msgstr ""
|
547 |
-
|
548 |
-
#: ../includes/ure-role-edit.php:157
|
549 |
-
msgid "Display Role Name: "
|
550 |
-
msgstr ""
|
551 |
-
|
552 |
-
#: ../includes/ure-role-edit.php:159
|
553 |
-
msgid "Make copy of: "
|
554 |
-
msgstr ""
|
555 |
-
|
556 |
-
#: ../includes/ure-role-edit.php:181
|
557 |
-
#, fuzzy
|
558 |
-
msgid "Delete:"
|
559 |
-
msgstr "Poista"
|
560 |
-
|
561 |
-
#: ../includes/ure-role-edit.php:188
|
562 |
-
msgid "Capability name (ID): "
|
563 |
-
msgstr ""
|
564 |
-
|
565 |
-
#: ../includes/ure-user-edit.php:22
|
566 |
-
msgid "Change capabilities for user"
|
567 |
-
msgstr "Muuta käyttäjän oikeuksia"
|
568 |
-
|
569 |
-
#: ../includes/ure-user-edit.php:52
|
570 |
-
msgid "Primary Role:"
|
571 |
-
msgstr ""
|
572 |
-
|
573 |
-
#: ../includes/ure-user-edit.php:62
|
574 |
-
msgid "bbPress Role:"
|
575 |
-
msgstr ""
|
576 |
-
|
577 |
-
#: ../includes/ure-user-edit.php:72
|
578 |
-
#, fuzzy
|
579 |
-
msgid "Other Roles:"
|
580 |
-
msgstr "Poista rooli"
|
581 |
-
|
582 |
-
#: ../includes/ure-options.php:65
|
583 |
-
msgid "User Roles are restored to WordPress default values. "
|
584 |
-
msgstr ""
|
585 |
-
|
586 |
-
#: ../includes/ure-options.php:136
|
587 |
-
msgid "Error: "
|
588 |
-
msgstr ""
|
589 |
-
|
590 |
-
#: ../includes/ure-options.php:136
|
591 |
-
#: ../includes/ure-options.php:156
|
592 |
-
msgid "Role"
|
593 |
-
msgstr "Rooli"
|
594 |
-
|
595 |
-
#: ../includes/ure-options.php:136
|
596 |
-
msgid "does not exist"
|
597 |
-
msgstr ""
|
598 |
-
|
599 |
-
#: ../includes/ure-options.php:156
|
600 |
-
msgid "is updated successfully"
|
601 |
-
msgstr "on päivitetty onnistuneesti"
|
602 |
-
|
603 |
-
#: ../includes/ure-options.php:161
|
604 |
-
#: ../includes/ure-options.php:174
|
605 |
-
#, fuzzy
|
606 |
-
msgid "Error occured during role update"
|
607 |
-
msgstr "Sattui virhe rooli poistettaessa"
|
608 |
-
|
609 |
-
#: ../includes/ure-options.php:169
|
610 |
-
msgid "User"
|
611 |
-
msgstr "Käyttäjä"
|
612 |
-
|
613 |
-
#: ../includes/ure-options.php:169
|
614 |
-
msgid "capabilities are updated successfully"
|
615 |
-
msgstr "Oikeudet on päivitetty onnistuneesti"
|
616 |
-
|
617 |
-
#: ../includes/ure-options.php:206
|
618 |
-
msgid "About this Plugin:"
|
619 |
-
msgstr "Tietoja lisäosasta:"
|
620 |
-
|
621 |
-
#: ../includes/ure-options.php:207
|
622 |
-
msgid "Author's website"
|
623 |
-
msgstr "Tekijän kotisivu"
|
624 |
-
|
625 |
-
#: ../includes/ure-options.php:208
|
626 |
-
msgid "Plugin webpage"
|
627 |
-
msgstr "Lisäosan kotisivu"
|
628 |
-
|
629 |
-
#: ../includes/ure-options.php:210
|
630 |
-
msgid "FAQ"
|
631 |
-
msgstr "Usein kysytyt kysymykset"
|
632 |
-
|
633 |
-
#~ msgid "Database operation error. Check log file."
|
634 |
-
#~ msgstr "Tietokanta virhe. Tarkista loki tiedosto."
|
635 |
-
|
636 |
-
#~ msgid ""
|
637 |
-
#~ "No backup data. It is created automatically before the first role data "
|
638 |
-
#~ "update."
|
639 |
-
#~ msgstr ""
|
640 |
-
#~ "Ei varmuuskopio tietoja. Tiedot luodaan automaattisesti ennen ensimmäistä "
|
641 |
-
#~ "roolitietojen päivitystä."
|
642 |
-
|
643 |
-
#~ msgid " Name must contain latin characters and digits only!"
|
644 |
-
#~ msgstr " Nimi saa sisältää vain latinalaisia aakkosia ja numeroita!"
|
645 |
-
|
646 |
-
#~ msgid "Change Default Role"
|
647 |
-
#~ msgstr "Muuta oletus rooli"
|
648 |
-
|
649 |
-
#~ msgid "Role \"%s\" update: please confirm to continue"
|
650 |
-
#~ msgstr "Roolin \"%s\" päivitys: varmista jatkaaksesi"
|
651 |
-
|
652 |
-
#~ msgid "Save Changes"
|
653 |
-
#~ msgstr "Tallenna muutokset"
|
654 |
-
|
655 |
-
#~ msgid "Cancel not saved changes"
|
656 |
-
#~ msgstr "Peruuta"
|
657 |
-
|
658 |
-
#~ msgid "Restore Roles from backup copy"
|
659 |
-
#~ msgstr "Palauta rooli varmuuskopiosta"
|
660 |
-
|
661 |
-
#~ msgid "Add"
|
662 |
-
#~ msgstr "Lisää"
|
663 |
-
|
664 |
-
#~ msgid "Add New User Role"
|
665 |
-
#~ msgstr "Lisää uusi käyttäjä rooli"
|
666 |
-
|
667 |
-
#~ msgid "Default Role for New User"
|
668 |
-
#~ msgstr "Oletus rooli uusille käyttäjille"
|
669 |
-
|
670 |
-
#~ msgid "Change"
|
671 |
-
#~ msgstr "Muuta"
|
672 |
-
|
673 |
-
#~ msgid "Delete User Role"
|
674 |
-
#~ msgstr "Poista käyttäjän rooli"
|
675 |
-
|
676 |
-
#~ msgid "Remove"
|
677 |
-
#~ msgstr "Poista"
|
678 |
-
|
679 |
-
#~ msgid "Remove User Capability"
|
680 |
-
#~ msgstr "Poista käyttäjän oikeudet"
|
681 |
-
|
682 |
-
#~ msgid "User \"%s\" update: please confirm to continue"
|
683 |
-
#~ msgstr "Roolin \"%s\" päivitys: varmista jatkaaksesi"
|
684 |
-
|
685 |
-
#~ msgid "Role:"
|
686 |
-
#~ msgstr "Rooli:"
|
687 |
-
|
688 |
-
#~ msgid "Add capabilities to this user:"
|
689 |
-
#~ msgstr "Lisää oikeudet käyttäjälle:"
|
690 |
-
|
691 |
-
#~ msgid "Greetings:"
|
692 |
-
#~ msgstr "Tervehdys:"
|
693 |
-
|
694 |
-
#~ msgid "It's me, the author"
|
695 |
-
#~ msgstr "Se olen minä tekijä"
|
696 |
-
|
697 |
-
#~ msgid "For the help with Belorussian translation"
|
698 |
-
#~ msgstr "Apua Valkovenäjän kieliseen käännökseen"
|
699 |
-
|
700 |
-
#~ msgid "For the help with Brasilian translation"
|
701 |
-
#~ msgstr "Apua Brasilian kieliseen käännökseen"
|
702 |
-
|
703 |
-
#, fuzzy
|
704 |
-
#~ msgid "For the help with Brasilian Portuguese translation"
|
705 |
-
#~ msgstr "Apua Brasilian kieliseen käännökseen"
|
706 |
-
|
707 |
-
#~ msgid "For the help with Chinese translation"
|
708 |
-
#~ msgstr "Apua Kiinan kieliseen käännökseen"
|
709 |
-
|
710 |
-
#~ msgid "For the help with Dutch translation"
|
711 |
-
#~ msgstr "Apua Hollannin kieliseen käännökseen"
|
712 |
-
|
713 |
-
#~ msgid "For the help with Finnish translation"
|
714 |
-
#~ msgstr "Apua suomen kieliseen käännökseen"
|
715 |
-
|
716 |
-
#~ msgid "For the help with French translation"
|
717 |
-
#~ msgstr "Apua Ranskan kieliseen käännökseen"
|
718 |
-
|
719 |
-
#~ msgid "For the help with German translation"
|
720 |
-
#~ msgstr "Apua Saksan kieliseen käännökseen"
|
721 |
-
|
722 |
-
#~ msgid "For the help with Hungarian translation"
|
723 |
-
#~ msgstr "Apua Unkarin kieliseen käännökseen"
|
724 |
-
|
725 |
-
#~ msgid "For the help with Italian translation"
|
726 |
-
#~ msgstr "Apua Italian kieliseen käännökseen"
|
727 |
-
|
728 |
-
#~ msgid "For the help with Japanese translation"
|
729 |
-
#~ msgstr "Apua Japanin kieliseen käännökseen"
|
730 |
-
|
731 |
-
#~ msgid "For the help with Persian translation"
|
732 |
-
#~ msgstr "Apua Persialaiseen käännökseen"
|
733 |
-
|
734 |
-
#~ msgid "For the help with Polish translation"
|
735 |
-
#~ msgstr "Apua Puolalaiseen käännökseen"
|
736 |
-
|
737 |
-
#~ msgid "For the help with Spanish translation"
|
738 |
-
#~ msgstr "Apua Espanian kieliseen käännökseen"
|
739 |
-
|
740 |
-
#~ msgid "For the help with Swedish translation"
|
741 |
-
#~ msgstr "Apua Swedish kieliseen käännökseen"
|
742 |
-
|
743 |
-
#~ msgid "For the help with Turkish translation"
|
744 |
-
#~ msgstr "Apua Turkin kieliseen käännökseen"
|
745 |
-
|
746 |
-
#~ msgid "For the code to hide administrator role"
|
747 |
-
#~ msgstr "Koodi Pääkäyttäjän roolin piilottamiseen"
|
748 |
-
|
749 |
-
#~ msgid ""
|
750 |
-
#~ "Do you wish to see your name with link to your site here? You are "
|
751 |
-
#~ "welcome! Your help with translation and new ideas are very appreciated."
|
752 |
-
#~ msgstr ""
|
753 |
-
#~ "Haluatko nähdä nimesi sekä linkin sivuillesi tässä? Olet tervetullut "
|
754 |
-
#~ "auttamaan käännöksen kanssa. Myös kaikista uusista ideoista ollaan "
|
755 |
-
#~ "kiitollisia."
|
756 |
-
|
757 |
-
#~ msgid "Roles list reading error is encountered"
|
758 |
-
#~ msgstr "Virhe: Rooleja ei pystytty lukemaan"
|
759 |
-
|
760 |
-
#~ msgid "More plugins from"
|
761 |
-
#~ msgstr "Lisää lisäosia tekijältä"
|
762 |
-
|
763 |
-
#~ msgid "No items found."
|
764 |
-
#~ msgstr "Osia ei löytynyt."
|
765 |
-
|
766 |
-
#~ msgid "Recent Posts:"
|
767 |
-
#~ msgstr "Uusimmat artikkelit:"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
lang/ure-fr_FR.mo
DELETED
Binary file
|
lang/ure-fr_FR.po
DELETED
@@ -1,782 +0,0 @@
|
|
1 |
-
msgid ""
|
2 |
-
msgstr ""
|
3 |
-
"Project-Id-Version: User Role Editor Plugin 3.5.2\n"
|
4 |
-
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2013-05-17 11:12+0700\n"
|
6 |
-
"PO-Revision-Date: \n"
|
7 |
-
"Last-Translator: Vladimir Garagulya <vladimir@shinephp.com>\n"
|
8 |
-
"Language-Team: Presse et Multimedia <presseetmultimedia@gmail.com>\n"
|
9 |
-
"Language: \n"
|
10 |
-
"MIME-Version: 1.0\n"
|
11 |
-
"Content-Type: text/plain; charset=UTF-8\n"
|
12 |
-
"Content-Transfer-Encoding: 8bit\n"
|
13 |
-
"X-Poedit-Language: French\n"
|
14 |
-
"X-Poedit-Country: FRANCE\n"
|
15 |
-
"Plural-Forms: nplurals=2;plural=n>2\n"
|
16 |
-
"X-Poedit-SourceCharset: utf-8\n"
|
17 |
-
|
18 |
-
#: ../user-role-editor.php:34
|
19 |
-
#, fuzzy, php-format
|
20 |
-
msgid "User Role Editor requires PHP %s or newer."
|
21 |
-
msgstr "User Role Editor nécessite PHP 5.0 ou plus récent."
|
22 |
-
|
23 |
-
#: ../user-role-editor.php:35
|
24 |
-
#: ../user-role-editor.php:107
|
25 |
-
msgid "Please update!"
|
26 |
-
msgstr "Veuillez mettre à jour !"
|
27 |
-
|
28 |
-
#: ../user-role-editor.php:80
|
29 |
-
msgid "Only"
|
30 |
-
msgstr "Seulement"
|
31 |
-
|
32 |
-
#: ../user-role-editor.php:80
|
33 |
-
msgid "is allowed to use"
|
34 |
-
msgstr "est autorisé à utiliser"
|
35 |
-
|
36 |
-
#: ../user-role-editor.php:86
|
37 |
-
#: ../user-role-editor.php:312
|
38 |
-
#: ../user-role-editor.php:368
|
39 |
-
msgid "User Role Editor"
|
40 |
-
msgstr "Extension \"User Role Editor\""
|
41 |
-
|
42 |
-
#: ../user-role-editor.php:106
|
43 |
-
#, fuzzy, php-format
|
44 |
-
msgid "User Role Editor requires WordPress %s or newer."
|
45 |
-
msgstr "User Role Editor nécessite WordPress 3.0 ou plus récent.."
|
46 |
-
|
47 |
-
#: ../user-role-editor.php:139
|
48 |
-
msgid "Select All"
|
49 |
-
msgstr ""
|
50 |
-
|
51 |
-
#: ../user-role-editor.php:140
|
52 |
-
msgid "Unselect All"
|
53 |
-
msgstr ""
|
54 |
-
|
55 |
-
#: ../user-role-editor.php:141
|
56 |
-
msgid "Reverse"
|
57 |
-
msgstr ""
|
58 |
-
|
59 |
-
#: ../user-role-editor.php:142
|
60 |
-
msgid "Update"
|
61 |
-
msgstr "Mettre à jour"
|
62 |
-
|
63 |
-
#: ../user-role-editor.php:143
|
64 |
-
#, fuzzy
|
65 |
-
msgid "Please confirm permissions update"
|
66 |
-
msgstr "Confirmez pour continuer"
|
67 |
-
|
68 |
-
#: ../user-role-editor.php:144
|
69 |
-
msgid "Add New Role"
|
70 |
-
msgstr "Ajouter un nouveau rôle"
|
71 |
-
|
72 |
-
#: ../user-role-editor.php:145
|
73 |
-
#, fuzzy
|
74 |
-
msgid " Role name (ID) can not be empty!"
|
75 |
-
msgstr "Le nom ne peut pas être vide !"
|
76 |
-
|
77 |
-
#: ../user-role-editor.php:146
|
78 |
-
#, fuzzy
|
79 |
-
msgid " Role name (ID) must contain latin characters, digits, hyphens or underscore only!"
|
80 |
-
msgstr "Erreur : le nom de rôle doit seulement contenir des caractères latins et chiffres !"
|
81 |
-
|
82 |
-
#: ../user-role-editor.php:147
|
83 |
-
#, fuzzy
|
84 |
-
msgid "Add Role"
|
85 |
-
msgstr "Ajouter un nouveau rôle"
|
86 |
-
|
87 |
-
#: ../user-role-editor.php:148
|
88 |
-
msgid "Delete Role"
|
89 |
-
msgstr "Supprimer le rôle"
|
90 |
-
|
91 |
-
#: ../user-role-editor.php:149
|
92 |
-
msgid "Cancel"
|
93 |
-
msgstr "Annuler"
|
94 |
-
|
95 |
-
#: ../user-role-editor.php:150
|
96 |
-
#, fuzzy
|
97 |
-
msgid "Add Capability"
|
98 |
-
msgstr "Ajouter une nouvelle capacité"
|
99 |
-
|
100 |
-
#: ../user-role-editor.php:151
|
101 |
-
#: ../user-role-editor.php:156
|
102 |
-
#, fuzzy
|
103 |
-
msgid "Delete Capability"
|
104 |
-
msgstr "Supprimer Capacité"
|
105 |
-
|
106 |
-
#: ../user-role-editor.php:152
|
107 |
-
msgid "Reset"
|
108 |
-
msgstr "Réinitialiser"
|
109 |
-
|
110 |
-
#: ../user-role-editor.php:153
|
111 |
-
msgid "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?"
|
112 |
-
msgstr ""
|
113 |
-
|
114 |
-
#: ../user-role-editor.php:154
|
115 |
-
#, fuzzy
|
116 |
-
msgid "Default Role"
|
117 |
-
msgstr "Supprimer le rôle"
|
118 |
-
|
119 |
-
#: ../user-role-editor.php:155
|
120 |
-
#, fuzzy
|
121 |
-
msgid "Set New Default Role"
|
122 |
-
msgstr "Définir comme rôle d'utilisateur par défaut"
|
123 |
-
|
124 |
-
#: ../user-role-editor.php:157
|
125 |
-
msgid "Warning! Be careful - removing critical capability could crash some plugin or other custom code"
|
126 |
-
msgstr "Attention ! Soyez prudent - supprimer une capacité critique peut crasher des extensions ou du code personnalisé"
|
127 |
-
|
128 |
-
#: ../user-role-editor.php:158
|
129 |
-
#, fuzzy
|
130 |
-
msgid " Capability name (ID) can not be empty!"
|
131 |
-
msgstr "Le nom ne peut pas être vide !"
|
132 |
-
|
133 |
-
#: ../user-role-editor.php:159
|
134 |
-
#, fuzzy
|
135 |
-
msgid " Capability name (ID) must contain latin characters, digits, hyphens or underscore only!"
|
136 |
-
msgstr "Erreur : le nom de la capacité doit seulement contenir des caractères latins et chiffres !"
|
137 |
-
|
138 |
-
#: ../user-role-editor.php:284
|
139 |
-
msgid "Settings"
|
140 |
-
msgstr "Réglages"
|
141 |
-
|
142 |
-
#: ../user-role-editor.php:294
|
143 |
-
#: ../includes/ure-options.php:209
|
144 |
-
msgid "Changelog"
|
145 |
-
msgstr "Changelog"
|
146 |
-
|
147 |
-
#: ../user-role-editor.php:342
|
148 |
-
msgid "Capabilities"
|
149 |
-
msgstr "Capacités"
|
150 |
-
|
151 |
-
#: ../user-role-editor.php:371
|
152 |
-
#: ../user-role-editor.php:407
|
153 |
-
#, fuzzy
|
154 |
-
msgid "Other Roles"
|
155 |
-
msgstr "Supprimer le rôle"
|
156 |
-
|
157 |
-
#: ../user-role-editor.php:381
|
158 |
-
#, fuzzy
|
159 |
-
msgid "Edit"
|
160 |
-
msgstr "Editeur"
|
161 |
-
|
162 |
-
#: ../includes/ure-lib.php:35
|
163 |
-
msgid "Error is occur. Please check the log file."
|
164 |
-
msgstr "Une erreur s'est produite. Vérifiez le fichier journal."
|
165 |
-
|
166 |
-
#: ../includes/ure-lib.php:364
|
167 |
-
msgid "Backup record is created for the current role capabilities"
|
168 |
-
msgstr "L'enregistrement de sauvegarde a été créé pour les capacités du rôle actuel"
|
169 |
-
|
170 |
-
#: ../includes/ure-lib.php:481
|
171 |
-
#, fuzzy
|
172 |
-
msgid "Error: Role ID must contain latin characters, digits, hyphens or underscore only!"
|
173 |
-
msgstr "Erreur : le nom de rôle doit seulement contenir des caractères latins et chiffres !"
|
174 |
-
|
175 |
-
#: ../includes/ure-lib.php:496
|
176 |
-
#, php-format
|
177 |
-
msgid "Role %s exists already"
|
178 |
-
msgstr "Rôle %s existe déjà"
|
179 |
-
|
180 |
-
#: ../includes/ure-lib.php:511
|
181 |
-
msgid "Error is encountered during new role create operation"
|
182 |
-
msgstr "Une erreur s'est produite lors de la création du nouveau rôle"
|
183 |
-
|
184 |
-
#: ../includes/ure-lib.php:513
|
185 |
-
#, php-format
|
186 |
-
msgid "Role %s is created successfully"
|
187 |
-
msgstr "Rôle %s a été créé avec succès"
|
188 |
-
|
189 |
-
#: ../includes/ure-lib.php:597
|
190 |
-
msgid "Error encountered during role delete operation"
|
191 |
-
msgstr "Une erreur s'est produite lors de la suppression du rôle"
|
192 |
-
|
193 |
-
#: ../includes/ure-lib.php:599
|
194 |
-
#, php-format
|
195 |
-
msgid "Role %s is deleted successfully"
|
196 |
-
msgstr "Rôle %s supprimé avec succès"
|
197 |
-
|
198 |
-
#: ../includes/ure-lib.php:619
|
199 |
-
msgid "Error encountered during default role change operation"
|
200 |
-
msgstr "Une erreur s'est produite pendant le changement du rôle par défaut"
|
201 |
-
|
202 |
-
#: ../includes/ure-lib.php:625
|
203 |
-
#, php-format
|
204 |
-
msgid "Default role for new users is set to %s successfully"
|
205 |
-
msgstr "Rôle par défaut pour les nouveaux utilisateurs fixé à %s avec succès"
|
206 |
-
|
207 |
-
#: ../includes/ure-lib.php:652
|
208 |
-
msgid "Editor"
|
209 |
-
msgstr "Editeur"
|
210 |
-
|
211 |
-
#: ../includes/ure-lib.php:653
|
212 |
-
msgid "Author"
|
213 |
-
msgstr "Auteur"
|
214 |
-
|
215 |
-
#: ../includes/ure-lib.php:654
|
216 |
-
msgid "Contributor"
|
217 |
-
msgstr "Contributeur"
|
218 |
-
|
219 |
-
#: ../includes/ure-lib.php:655
|
220 |
-
msgid "Subscriber"
|
221 |
-
msgstr "Abonné"
|
222 |
-
|
223 |
-
#: ../includes/ure-lib.php:657
|
224 |
-
msgid "Switch themes"
|
225 |
-
msgstr "Changer de thème"
|
226 |
-
|
227 |
-
#: ../includes/ure-lib.php:658
|
228 |
-
msgid "Edit themes"
|
229 |
-
msgstr "Editer les thèmes"
|
230 |
-
|
231 |
-
#: ../includes/ure-lib.php:659
|
232 |
-
msgid "Activate plugins"
|
233 |
-
msgstr "Activer les extensions"
|
234 |
-
|
235 |
-
#: ../includes/ure-lib.php:660
|
236 |
-
msgid "Edit plugins"
|
237 |
-
msgstr "Editer les extensions"
|
238 |
-
|
239 |
-
#: ../includes/ure-lib.php:661
|
240 |
-
msgid "Edit users"
|
241 |
-
msgstr "Editer les utilisateurs"
|
242 |
-
|
243 |
-
#: ../includes/ure-lib.php:662
|
244 |
-
msgid "Edit files"
|
245 |
-
msgstr "Editer les fichiers"
|
246 |
-
|
247 |
-
#: ../includes/ure-lib.php:663
|
248 |
-
msgid "Manage options"
|
249 |
-
msgstr "Gérer les options"
|
250 |
-
|
251 |
-
#: ../includes/ure-lib.php:664
|
252 |
-
msgid "Moderate comments"
|
253 |
-
msgstr "Modérer les commentaires"
|
254 |
-
|
255 |
-
#: ../includes/ure-lib.php:665
|
256 |
-
msgid "Manage categories"
|
257 |
-
msgstr "Gérer les catégories"
|
258 |
-
|
259 |
-
#: ../includes/ure-lib.php:666
|
260 |
-
msgid "Manage links"
|
261 |
-
msgstr "Gérer les liens"
|
262 |
-
|
263 |
-
#: ../includes/ure-lib.php:667
|
264 |
-
msgid "Upload files"
|
265 |
-
msgstr "Transmettre des fichiers"
|
266 |
-
|
267 |
-
#: ../includes/ure-lib.php:668
|
268 |
-
msgid "Import"
|
269 |
-
msgstr "Importer"
|
270 |
-
|
271 |
-
#: ../includes/ure-lib.php:669
|
272 |
-
msgid "Unfiltered html"
|
273 |
-
msgstr "HTML non filtré"
|
274 |
-
|
275 |
-
#: ../includes/ure-lib.php:670
|
276 |
-
msgid "Edit posts"
|
277 |
-
msgstr "Editer les articles"
|
278 |
-
|
279 |
-
#: ../includes/ure-lib.php:671
|
280 |
-
msgid "Edit others posts"
|
281 |
-
msgstr "Editer les articles des autres"
|
282 |
-
|
283 |
-
#: ../includes/ure-lib.php:672
|
284 |
-
msgid "Edit published posts"
|
285 |
-
msgstr "Editer les articles publiés"
|
286 |
-
|
287 |
-
#: ../includes/ure-lib.php:673
|
288 |
-
msgid "Publish posts"
|
289 |
-
msgstr "Editer les articles"
|
290 |
-
|
291 |
-
#: ../includes/ure-lib.php:674
|
292 |
-
msgid "Edit pages"
|
293 |
-
msgstr "Editer les pages"
|
294 |
-
|
295 |
-
#: ../includes/ure-lib.php:675
|
296 |
-
msgid "Read"
|
297 |
-
msgstr "Lire"
|
298 |
-
|
299 |
-
#: ../includes/ure-lib.php:676
|
300 |
-
msgid "Level 10"
|
301 |
-
msgstr "Niveau 10"
|
302 |
-
|
303 |
-
#: ../includes/ure-lib.php:677
|
304 |
-
msgid "Level 9"
|
305 |
-
msgstr "Niveau 9"
|
306 |
-
|
307 |
-
#: ../includes/ure-lib.php:678
|
308 |
-
msgid "Level 8"
|
309 |
-
msgstr "Niveau 8"
|
310 |
-
|
311 |
-
#: ../includes/ure-lib.php:679
|
312 |
-
msgid "Level 7"
|
313 |
-
msgstr "Niveau 7"
|
314 |
-
|
315 |
-
#: ../includes/ure-lib.php:680
|
316 |
-
msgid "Level 6"
|
317 |
-
msgstr "Niveau 6"
|
318 |
-
|
319 |
-
#: ../includes/ure-lib.php:681
|
320 |
-
msgid "Level 5"
|
321 |
-
msgstr "Niveau 5"
|
322 |
-
|
323 |
-
#: ../includes/ure-lib.php:682
|
324 |
-
msgid "Level 4"
|
325 |
-
msgstr "Niveau 4"
|
326 |
-
|
327 |
-
#: ../includes/ure-lib.php:683
|
328 |
-
msgid "Level 3"
|
329 |
-
msgstr "Niveau 3"
|
330 |
-
|
331 |
-
#: ../includes/ure-lib.php:684
|
332 |
-
msgid "Level 2"
|
333 |
-
msgstr "Niveau 2"
|
334 |
-
|
335 |
-
#: ../includes/ure-lib.php:685
|
336 |
-
msgid "Level 1"
|
337 |
-
msgstr "Niveau 1"
|
338 |
-
|
339 |
-
#: ../includes/ure-lib.php:686
|
340 |
-
msgid "Level 0"
|
341 |
-
msgstr "Niveau 0"
|
342 |
-
|
343 |
-
#: ../includes/ure-lib.php:687
|
344 |
-
msgid "Edit others pages"
|
345 |
-
msgstr "Editer les pages des autres"
|
346 |
-
|
347 |
-
#: ../includes/ure-lib.php:688
|
348 |
-
msgid "Edit published pages"
|
349 |
-
msgstr "Editer les pages publiées"
|
350 |
-
|
351 |
-
#: ../includes/ure-lib.php:689
|
352 |
-
msgid "Publish pages"
|
353 |
-
msgstr "Publier des pages"
|
354 |
-
|
355 |
-
#: ../includes/ure-lib.php:690
|
356 |
-
msgid "Delete pages"
|
357 |
-
msgstr "Supprimer des pages"
|
358 |
-
|
359 |
-
#: ../includes/ure-lib.php:691
|
360 |
-
msgid "Delete others pages"
|
361 |
-
msgstr "Supprimer des pages des autres"
|
362 |
-
|
363 |
-
#: ../includes/ure-lib.php:692
|
364 |
-
msgid "Delete published pages"
|
365 |
-
msgstr "Supprimer des pages publiées"
|
366 |
-
|
367 |
-
#: ../includes/ure-lib.php:693
|
368 |
-
msgid "Delete posts"
|
369 |
-
msgstr "Supprimer des articles"
|
370 |
-
|
371 |
-
#: ../includes/ure-lib.php:694
|
372 |
-
msgid "Delete others posts"
|
373 |
-
msgstr "Supprimer des articles des autres"
|
374 |
-
|
375 |
-
#: ../includes/ure-lib.php:695
|
376 |
-
msgid "Delete published posts"
|
377 |
-
msgstr "Supprimer des articles publiés"
|
378 |
-
|
379 |
-
#: ../includes/ure-lib.php:696
|
380 |
-
msgid "Delete private posts"
|
381 |
-
msgstr "Supprimer des articles privés"
|
382 |
-
|
383 |
-
#: ../includes/ure-lib.php:697
|
384 |
-
msgid "Edit private posts"
|
385 |
-
msgstr "Editer des articles privés"
|
386 |
-
|
387 |
-
#: ../includes/ure-lib.php:698
|
388 |
-
msgid "Read private posts"
|
389 |
-
msgstr "Lire des articles privés"
|
390 |
-
|
391 |
-
#: ../includes/ure-lib.php:699
|
392 |
-
msgid "Delete private pages"
|
393 |
-
msgstr "Supprimer des pages privées"
|
394 |
-
|
395 |
-
#: ../includes/ure-lib.php:700
|
396 |
-
msgid "Edit private pages"
|
397 |
-
msgstr "Editer des pages privées"
|
398 |
-
|
399 |
-
#: ../includes/ure-lib.php:701
|
400 |
-
msgid "Read private pages"
|
401 |
-
msgstr "Lire des pages privées"
|
402 |
-
|
403 |
-
#: ../includes/ure-lib.php:702
|
404 |
-
msgid "Delete users"
|
405 |
-
msgstr "Supprimer des utilisateurs"
|
406 |
-
|
407 |
-
#: ../includes/ure-lib.php:703
|
408 |
-
msgid "Create users"
|
409 |
-
msgstr "Créer des utilisateurs"
|
410 |
-
|
411 |
-
#: ../includes/ure-lib.php:704
|
412 |
-
msgid "Unfiltered upload"
|
413 |
-
msgstr "Transmissions non filtrées"
|
414 |
-
|
415 |
-
#: ../includes/ure-lib.php:705
|
416 |
-
msgid "Edit dashboard"
|
417 |
-
msgstr "Editer le tableau de bord"
|
418 |
-
|
419 |
-
#: ../includes/ure-lib.php:706
|
420 |
-
msgid "Update plugins"
|
421 |
-
msgstr "Mettre à jour les extensions"
|
422 |
-
|
423 |
-
#: ../includes/ure-lib.php:707
|
424 |
-
msgid "Delete plugins"
|
425 |
-
msgstr "Supprimer des extensions"
|
426 |
-
|
427 |
-
#: ../includes/ure-lib.php:708
|
428 |
-
msgid "Install plugins"
|
429 |
-
msgstr "Installer des extensions"
|
430 |
-
|
431 |
-
#: ../includes/ure-lib.php:709
|
432 |
-
msgid "Update themes"
|
433 |
-
msgstr "Mettre à jour les thèmes"
|
434 |
-
|
435 |
-
#: ../includes/ure-lib.php:710
|
436 |
-
msgid "Install themes"
|
437 |
-
msgstr "Installer des thèmes"
|
438 |
-
|
439 |
-
#: ../includes/ure-lib.php:711
|
440 |
-
msgid "Update core"
|
441 |
-
msgstr "Mettre à jour le noyau"
|
442 |
-
|
443 |
-
#: ../includes/ure-lib.php:712
|
444 |
-
msgid "List users"
|
445 |
-
msgstr "Lister les utilisateurs"
|
446 |
-
|
447 |
-
#: ../includes/ure-lib.php:713
|
448 |
-
msgid "Remove users"
|
449 |
-
msgstr "Supprimer des utilisateurs"
|
450 |
-
|
451 |
-
#: ../includes/ure-lib.php:714
|
452 |
-
msgid "Add users"
|
453 |
-
msgstr "Ajouter des utilisateurs"
|
454 |
-
|
455 |
-
#: ../includes/ure-lib.php:715
|
456 |
-
msgid "Promote users"
|
457 |
-
msgstr "Promouvoir des utilisateurs"
|
458 |
-
|
459 |
-
#: ../includes/ure-lib.php:716
|
460 |
-
msgid "Edit theme options"
|
461 |
-
msgstr "Editer les options du thème"
|
462 |
-
|
463 |
-
#: ../includes/ure-lib.php:717
|
464 |
-
msgid "Delete themes"
|
465 |
-
msgstr "Supprimer des thèmes"
|
466 |
-
|
467 |
-
#: ../includes/ure-lib.php:718
|
468 |
-
msgid "Export"
|
469 |
-
msgstr "Exporter"
|
470 |
-
|
471 |
-
#: ../includes/ure-lib.php:834
|
472 |
-
msgid "Error: Capability name must contain latin characters and digits only!"
|
473 |
-
msgstr "Erreur : le nom de la capacité doit seulement contenir des caractères latins et chiffres !"
|
474 |
-
|
475 |
-
#: ../includes/ure-lib.php:846
|
476 |
-
#, php-format
|
477 |
-
msgid "Capability %s is added successfully"
|
478 |
-
msgstr "Capacité %s a été ajoutée avec succès"
|
479 |
-
|
480 |
-
#: ../includes/ure-lib.php:848
|
481 |
-
#, php-format
|
482 |
-
msgid "Capability %s exists already"
|
483 |
-
msgstr "La capacité %s existe déjà"
|
484 |
-
|
485 |
-
#: ../includes/ure-lib.php:997
|
486 |
-
#, php-format
|
487 |
-
msgid "Error! You do not have permission to delete this capability: %s!"
|
488 |
-
msgstr "Erreur ! Vous n'avez pas la permission de supprimer cette capacité : %s !"
|
489 |
-
|
490 |
-
#: ../includes/ure-lib.php:1016
|
491 |
-
#, php-format
|
492 |
-
msgid "Capability %s is removed successfully"
|
493 |
-
msgstr "Capacité %s a été supprimée avec succès"
|
494 |
-
|
495 |
-
#: ../includes/ure-lib.php:1083
|
496 |
-
msgid "Help"
|
497 |
-
msgstr "Aide"
|
498 |
-
|
499 |
-
#: ../includes/ure-role-edit.php:29
|
500 |
-
msgid "None"
|
501 |
-
msgstr "Aucun"
|
502 |
-
|
503 |
-
#: ../includes/ure-role-edit.php:67
|
504 |
-
msgid "Select Role and change its capabilities list"
|
505 |
-
msgstr "Sélectionnez un Rôle et changez sa liste de capacités"
|
506 |
-
|
507 |
-
#: ../includes/ure-role-edit.php:69
|
508 |
-
#: ../includes/ure-role-edit.php:166
|
509 |
-
msgid "Select Role:"
|
510 |
-
msgstr "Sélectionnez un rôle :"
|
511 |
-
|
512 |
-
#: ../includes/ure-role-edit.php:79
|
513 |
-
#: ../includes/ure-user-edit.php:38
|
514 |
-
msgid "Show capabilities in human readable form"
|
515 |
-
msgstr "Afficher les capacités en langage humain"
|
516 |
-
|
517 |
-
#: ../includes/ure-role-edit.php:88
|
518 |
-
#: ../includes/ure-user-edit.php:47
|
519 |
-
msgid "Show deprecated capabilities"
|
520 |
-
msgstr "Montrer les capacités obsolètes"
|
521 |
-
|
522 |
-
#: ../includes/ure-role-edit.php:92
|
523 |
-
msgid "If checked, then apply action to ALL sites of this Network"
|
524 |
-
msgstr "Si coché, alors l'action affecte TOUS les sites de ce réseau"
|
525 |
-
|
526 |
-
#: ../includes/ure-role-edit.php:102
|
527 |
-
msgid "Apply to All Sites"
|
528 |
-
msgstr "Appliquer à tous les sites"
|
529 |
-
|
530 |
-
#: ../includes/ure-role-edit.php:109
|
531 |
-
#: ../includes/ure-user-edit.php:88
|
532 |
-
#, fuzzy
|
533 |
-
msgid "Core capabilities:"
|
534 |
-
msgstr "WordPress Capacités:"
|
535 |
-
|
536 |
-
#: ../includes/ure-role-edit.php:124
|
537 |
-
#: ../includes/ure-user-edit.php:103
|
538 |
-
#, fuzzy
|
539 |
-
msgid "Custom capabilities:"
|
540 |
-
msgstr "Capacités:"
|
541 |
-
|
542 |
-
#: ../includes/ure-role-edit.php:155
|
543 |
-
msgid "Role name (ID): "
|
544 |
-
msgstr ""
|
545 |
-
|
546 |
-
#: ../includes/ure-role-edit.php:157
|
547 |
-
msgid "Display Role Name: "
|
548 |
-
msgstr ""
|
549 |
-
|
550 |
-
#: ../includes/ure-role-edit.php:159
|
551 |
-
msgid "Make copy of: "
|
552 |
-
msgstr "Faire une copie de :"
|
553 |
-
|
554 |
-
#: ../includes/ure-role-edit.php:181
|
555 |
-
#, fuzzy
|
556 |
-
msgid "Delete:"
|
557 |
-
msgstr "Effacer"
|
558 |
-
|
559 |
-
#: ../includes/ure-role-edit.php:188
|
560 |
-
msgid "Capability name (ID): "
|
561 |
-
msgstr ""
|
562 |
-
|
563 |
-
#: ../includes/ure-user-edit.php:22
|
564 |
-
msgid "Change capabilities for user"
|
565 |
-
msgstr "Modifier les capacités de l'utilisateur"
|
566 |
-
|
567 |
-
#: ../includes/ure-user-edit.php:52
|
568 |
-
msgid "Primary Role:"
|
569 |
-
msgstr ""
|
570 |
-
|
571 |
-
#: ../includes/ure-user-edit.php:62
|
572 |
-
msgid "bbPress Role:"
|
573 |
-
msgstr ""
|
574 |
-
|
575 |
-
#: ../includes/ure-user-edit.php:72
|
576 |
-
#, fuzzy
|
577 |
-
msgid "Other Roles:"
|
578 |
-
msgstr "Supprimer le rôle"
|
579 |
-
|
580 |
-
#: ../includes/ure-options.php:65
|
581 |
-
#, fuzzy
|
582 |
-
msgid "User Roles are restored to WordPress default values. "
|
583 |
-
msgstr "Les rôles des utilisateurs sont restaurés depuis les données de sauvegarde."
|
584 |
-
|
585 |
-
#: ../includes/ure-options.php:136
|
586 |
-
msgid "Error: "
|
587 |
-
msgstr "Erreur :"
|
588 |
-
|
589 |
-
#: ../includes/ure-options.php:136
|
590 |
-
#: ../includes/ure-options.php:156
|
591 |
-
msgid "Role"
|
592 |
-
msgstr "Rôle "
|
593 |
-
|
594 |
-
#: ../includes/ure-options.php:136
|
595 |
-
msgid "does not exist"
|
596 |
-
msgstr "n'existe pas"
|
597 |
-
|
598 |
-
#: ../includes/ure-options.php:156
|
599 |
-
msgid "is updated successfully"
|
600 |
-
msgstr "a été correctement mis à jour"
|
601 |
-
|
602 |
-
#: ../includes/ure-options.php:161
|
603 |
-
#: ../includes/ure-options.php:174
|
604 |
-
#, fuzzy
|
605 |
-
msgid "Error occured during role update"
|
606 |
-
msgstr "Une erreur s'est produite lors de la suppression du rôle"
|
607 |
-
|
608 |
-
#: ../includes/ure-options.php:169
|
609 |
-
msgid "User"
|
610 |
-
msgstr "Utilisateur"
|
611 |
-
|
612 |
-
#: ../includes/ure-options.php:169
|
613 |
-
msgid "capabilities are updated successfully"
|
614 |
-
msgstr "capacités ont été correctement mises à jour"
|
615 |
-
|
616 |
-
#: ../includes/ure-options.php:206
|
617 |
-
msgid "About this Plugin:"
|
618 |
-
msgstr "A propos de cette extension :"
|
619 |
-
|
620 |
-
#: ../includes/ure-options.php:207
|
621 |
-
msgid "Author's website"
|
622 |
-
msgstr "Site Web de l'auteur"
|
623 |
-
|
624 |
-
#: ../includes/ure-options.php:208
|
625 |
-
msgid "Plugin webpage"
|
626 |
-
msgstr "Page Web de l'extension"
|
627 |
-
|
628 |
-
#: ../includes/ure-options.php:210
|
629 |
-
msgid "FAQ"
|
630 |
-
msgstr "FAQ"
|
631 |
-
|
632 |
-
#~ msgid "Database operation error. Check log file."
|
633 |
-
#~ msgstr "Erreur d'opération de base de données. Vérifiez le fichier journal."
|
634 |
-
|
635 |
-
#~ msgid ""
|
636 |
-
#~ "No backup data. It is created automatically before the first role data "
|
637 |
-
#~ "update."
|
638 |
-
#~ msgstr ""
|
639 |
-
#~ "Aucune donnée sauvegardée. La sauvegarde est automatique avant la "
|
640 |
-
#~ "première mise à jour des rôles."
|
641 |
-
|
642 |
-
#~ msgid " Name must contain latin characters and digits only!"
|
643 |
-
#~ msgstr ""
|
644 |
-
#~ "Le nom doit uniquement contenir que des caractères latins et des "
|
645 |
-
#~ "chiffres !"
|
646 |
-
|
647 |
-
#~ msgid "Change Default Role"
|
648 |
-
#~ msgstr "Changer le rôle par défaut"
|
649 |
-
|
650 |
-
#~ msgid ""
|
651 |
-
#~ "Restore Roles from backup copy. Be careful, backup was created when you "
|
652 |
-
#~ "started URE 1st time. All changes you made after that will be lost"
|
653 |
-
#~ msgstr ""
|
654 |
-
#~ "Restaurer les rôles depuis une sauvegarde. Attention, cette sauvegarde a "
|
655 |
-
#~ "été créée quand vous avez lancé URE pour le 1re fois. Toutes les "
|
656 |
-
#~ "modifications que vous avez effectuées depuis seront perdues"
|
657 |
-
|
658 |
-
#~ msgid "Role \"%s\" update: please confirm to continue"
|
659 |
-
#~ msgstr "Mise à jour du Rôle \"%s\" : Veuillez confirmer pour continuer"
|
660 |
-
|
661 |
-
#~ msgid "Save Changes"
|
662 |
-
#~ msgstr "Enregistrer les modifications"
|
663 |
-
|
664 |
-
#~ msgid "Cancel not saved changes"
|
665 |
-
#~ msgstr "Annuler les changements"
|
666 |
-
|
667 |
-
#~ msgid "Restore Roles from backup copy"
|
668 |
-
#~ msgstr "Restaurer les Rôles à partir de la copie de sauvegarde"
|
669 |
-
|
670 |
-
#~ msgid "Name: "
|
671 |
-
#~ msgstr "Nom :"
|
672 |
-
|
673 |
-
#~ msgid "Add"
|
674 |
-
#~ msgstr "Ajouter"
|
675 |
-
|
676 |
-
#~ msgid "Add New User Role"
|
677 |
-
#~ msgstr "Ajouter un nouveau rôle utilisateur"
|
678 |
-
|
679 |
-
#~ msgid "Default Role for New User"
|
680 |
-
#~ msgstr "Rôle par défaut pour les nouveaux utilisateurs"
|
681 |
-
|
682 |
-
#~ msgid "Change"
|
683 |
-
#~ msgstr "Modifier"
|
684 |
-
|
685 |
-
#~ msgid "Delete User Role"
|
686 |
-
#~ msgstr "Supprimer un rôle utilisateur"
|
687 |
-
|
688 |
-
#~ msgid "Remove"
|
689 |
-
#~ msgstr "Supprimer"
|
690 |
-
|
691 |
-
#~ msgid "Remove User Capability"
|
692 |
-
#~ msgstr "Supprimer Capacité de l'Utilisateur"
|
693 |
-
|
694 |
-
#~ msgid "User \"%s\" update: please confirm to continue"
|
695 |
-
#~ msgstr ""
|
696 |
-
#~ "Mise à jour de l'utilisateur \"%s\" : Veuillez confirmer pour continuer"
|
697 |
-
|
698 |
-
#~ msgid "Role:"
|
699 |
-
#~ msgstr "Rôle :"
|
700 |
-
|
701 |
-
#~ msgid "Add capabilities to this user:"
|
702 |
-
#~ msgstr "Ajouter des capacités à cet utilisateur :"
|
703 |
-
|
704 |
-
#~ msgid "Greetings:"
|
705 |
-
#~ msgstr "Remerciements :"
|
706 |
-
|
707 |
-
#~ msgid "It's me, the author"
|
708 |
-
#~ msgstr "C'est moi, l'auteur"
|
709 |
-
|
710 |
-
#~ msgid "For the help with Belorussian translation"
|
711 |
-
#~ msgstr "Pour l'aide avec la traduction biélorusse"
|
712 |
-
|
713 |
-
#~ msgid "For the help with Brasilian translation"
|
714 |
-
#~ msgstr "Pour l'aide avec la traduction brésilenne"
|
715 |
-
|
716 |
-
#~ msgid "For the help with Brasilian Portuguese translation"
|
717 |
-
#~ msgstr "Pour l'aide avec la traduction brésilenne"
|
718 |
-
|
719 |
-
#~ msgid "For the help with Chinese translation"
|
720 |
-
#~ msgstr "Pour l'aide avec la traduction chinese"
|
721 |
-
|
722 |
-
#~ msgid "For the help with Dutch translation"
|
723 |
-
#~ msgstr "Pour l'aide avec la traduction Dutch"
|
724 |
-
|
725 |
-
#~ msgid "For the help with Finnish translation"
|
726 |
-
#~ msgstr "Pour l'aide avec la traduction finlandaise"
|
727 |
-
|
728 |
-
#~ msgid "For the help with French translation"
|
729 |
-
#~ msgstr "Pour l'aide avec la traduction française"
|
730 |
-
|
731 |
-
#~ msgid "For the help with German translation"
|
732 |
-
#~ msgstr "Pour l'aide avec la traduction allemande"
|
733 |
-
|
734 |
-
#~ msgid "For the help with Hebrew translation"
|
735 |
-
#~ msgstr "Pour l'aide avec la traduction"
|
736 |
-
|
737 |
-
#~ msgid "For the help with Hungarian translation"
|
738 |
-
#~ msgstr "Pour l'aide avec la traduction Hungarian"
|
739 |
-
|
740 |
-
#~ msgid "For the help with Italian translation"
|
741 |
-
#~ msgstr "Pour l'aide avec la traduction italien"
|
742 |
-
|
743 |
-
#~ msgid "For the help with Japanese translation"
|
744 |
-
#~ msgstr "Pour l'aide avec la traduction italien"
|
745 |
-
|
746 |
-
#~ msgid "For the help with Persian translation"
|
747 |
-
#~ msgstr "Pour l'aide avec la traduction perse"
|
748 |
-
|
749 |
-
#~ msgid "For the help with Polish translation"
|
750 |
-
#~ msgstr "Pour l'aide avec la traduction polonais"
|
751 |
-
|
752 |
-
#~ msgid "For the help with Spanish translation"
|
753 |
-
#~ msgstr "Pour l'aide avec la traduction polonais"
|
754 |
-
|
755 |
-
#~ msgid "For the updated Swedish translation"
|
756 |
-
#~ msgstr "Pour l'aide avec la traduction suédoise"
|
757 |
-
|
758 |
-
#~ msgid "For the help with Swedish translation"
|
759 |
-
#~ msgstr "Pour l'aide avec la traduction suédoise"
|
760 |
-
|
761 |
-
#~ msgid "For the help with Turkish translation"
|
762 |
-
#~ msgstr "Pour l'aide avec la traduction turque"
|
763 |
-
|
764 |
-
#~ msgid "For the code to hide administrator role"
|
765 |
-
#~ msgstr "Pour le code qui cache le rôle d'administrateur"
|
766 |
-
|
767 |
-
#~ msgid "For the code enhancement suggestion"
|
768 |
-
#~ msgstr "Pour les suggestions d'évolution du code"
|
769 |
-
|
770 |
-
#~ msgid ""
|
771 |
-
#~ "Do you wish to see your name with link to your site here? You are "
|
772 |
-
#~ "welcome! Your help with translation and new ideas are very appreciated."
|
773 |
-
#~ msgstr ""
|
774 |
-
#~ "Vous souhaitez voir votre nom avec votre lien vers votre site Web ici ? "
|
775 |
-
#~ "Avec plaisir ! Votre aide avec la traduction ou de nouvelles idées seront "
|
776 |
-
#~ "très appréciées."
|
777 |
-
|
778 |
-
#~ msgid "Roles list reading error is encountered"
|
779 |
-
#~ msgstr "Erreur lors de la lecture des rôles"
|
780 |
-
|
781 |
-
#~ msgid "Return to default WordPress user role capabilities"
|
782 |
-
#~ msgstr "Remettre les capacités des utilisateurs par défaut de WordPress"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
lang/ure-he.mo
DELETED
Binary file
|
lang/ure-he.po
DELETED
@@ -1,754 +0,0 @@
|
|
1 |
-
msgid ""
|
2 |
-
msgstr ""
|
3 |
-
"Project-Id-Version: User Role Editor 2.0\n"
|
4 |
-
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2013-05-17 11:14+0700\n"
|
6 |
-
"PO-Revision-Date: \n"
|
7 |
-
"Last-Translator: Vladimir Garagulya <vladimir@shinephp.com>\n"
|
8 |
-
"Language-Team: ShinePHP.com <vladimir@shinephp.com>\n"
|
9 |
-
"Language: \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-Language: English\n"
|
14 |
-
"X-Poedit-Country: RUSSIAN FEDERATION\n"
|
15 |
-
"X-Poedit-SourceCharset: utf-8\n"
|
16 |
-
"X-Poedit-KeywordsList: __;_e\n"
|
17 |
-
"X-Poedit-Basepath: .\n"
|
18 |
-
"X-Poedit-SearchPath-0: ..\n"
|
19 |
-
|
20 |
-
#: ../user-role-editor.php:34
|
21 |
-
#, fuzzy, php-format
|
22 |
-
msgid "User Role Editor requires PHP %s or newer."
|
23 |
-
msgstr "התוסף User Role Editor מחייב אחסון עם PHP 5.0 ומעלה"
|
24 |
-
|
25 |
-
#: ../user-role-editor.php:35
|
26 |
-
#: ../user-role-editor.php:107
|
27 |
-
msgid "Please update!"
|
28 |
-
msgstr "אנא עדכן!"
|
29 |
-
|
30 |
-
#: ../user-role-editor.php:80
|
31 |
-
msgid "Only"
|
32 |
-
msgstr "רק"
|
33 |
-
|
34 |
-
#: ../user-role-editor.php:80
|
35 |
-
msgid "is allowed to use"
|
36 |
-
msgstr "מותר לשימוש"
|
37 |
-
|
38 |
-
#: ../user-role-editor.php:86
|
39 |
-
#: ../user-role-editor.php:312
|
40 |
-
#: ../user-role-editor.php:368
|
41 |
-
msgid "User Role Editor"
|
42 |
-
msgstr "User Role Editor"
|
43 |
-
|
44 |
-
#: ../user-role-editor.php:106
|
45 |
-
#, fuzzy, php-format
|
46 |
-
msgid "User Role Editor requires WordPress %s or newer."
|
47 |
-
msgstr "התוסף User Role Editor מתאים לאתרי וורדפרס בגרסה 3.0 ומעלה"
|
48 |
-
|
49 |
-
#: ../user-role-editor.php:139
|
50 |
-
msgid "Select All"
|
51 |
-
msgstr ""
|
52 |
-
|
53 |
-
#: ../user-role-editor.php:140
|
54 |
-
msgid "Unselect All"
|
55 |
-
msgstr ""
|
56 |
-
|
57 |
-
#: ../user-role-editor.php:141
|
58 |
-
msgid "Reverse"
|
59 |
-
msgstr ""
|
60 |
-
|
61 |
-
#: ../user-role-editor.php:142
|
62 |
-
msgid "Update"
|
63 |
-
msgstr "עדכן"
|
64 |
-
|
65 |
-
#: ../user-role-editor.php:143
|
66 |
-
#, fuzzy
|
67 |
-
msgid "Please confirm permissions update"
|
68 |
-
msgstr "אשר את הפעולה והמשך"
|
69 |
-
|
70 |
-
#: ../user-role-editor.php:144
|
71 |
-
msgid "Add New Role"
|
72 |
-
msgstr "הוסף סוג משתמש חדש"
|
73 |
-
|
74 |
-
#: ../user-role-editor.php:145
|
75 |
-
#, fuzzy
|
76 |
-
msgid " Role name (ID) can not be empty!"
|
77 |
-
msgstr "שם לא יכול להשאר ריק!"
|
78 |
-
|
79 |
-
#: ../user-role-editor.php:146
|
80 |
-
#, fuzzy
|
81 |
-
msgid " Role name (ID) must contain latin characters, digits, hyphens or underscore only!"
|
82 |
-
msgstr "שגיאה! השם של סוג המשתמש חייב להיות מורכב מאותיות באנגלית וספרות בלבד"
|
83 |
-
|
84 |
-
#: ../user-role-editor.php:147
|
85 |
-
#, fuzzy
|
86 |
-
msgid "Add Role"
|
87 |
-
msgstr "הוסף סוג משתמש חדש"
|
88 |
-
|
89 |
-
#: ../user-role-editor.php:148
|
90 |
-
msgid "Delete Role"
|
91 |
-
msgstr "מחיקת סוג משתמש"
|
92 |
-
|
93 |
-
#: ../user-role-editor.php:149
|
94 |
-
msgid "Cancel"
|
95 |
-
msgstr "ביטול"
|
96 |
-
|
97 |
-
#: ../user-role-editor.php:150
|
98 |
-
#, fuzzy
|
99 |
-
msgid "Add Capability"
|
100 |
-
msgstr "הוסף יכולת חדשה"
|
101 |
-
|
102 |
-
#: ../user-role-editor.php:151
|
103 |
-
#: ../user-role-editor.php:156
|
104 |
-
#, fuzzy
|
105 |
-
msgid "Delete Capability"
|
106 |
-
msgstr "הסר יכולת"
|
107 |
-
|
108 |
-
#: ../user-role-editor.php:152
|
109 |
-
msgid "Reset"
|
110 |
-
msgstr "איפוס"
|
111 |
-
|
112 |
-
#: ../user-role-editor.php:153
|
113 |
-
msgid "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?"
|
114 |
-
msgstr ""
|
115 |
-
|
116 |
-
#: ../user-role-editor.php:154
|
117 |
-
#, fuzzy
|
118 |
-
msgid "Default Role"
|
119 |
-
msgstr "מחיקת סוג משתמש"
|
120 |
-
|
121 |
-
#: ../user-role-editor.php:155
|
122 |
-
#, fuzzy
|
123 |
-
msgid "Set New Default Role"
|
124 |
-
msgstr "קבע כסוג משתמש ברירת מחדל"
|
125 |
-
|
126 |
-
#: ../user-role-editor.php:157
|
127 |
-
msgid "Warning! Be careful - removing critical capability could crash some plugin or other custom code"
|
128 |
-
msgstr "זהירות! הסרה של אפשרויות קריטיות עשוי לגרום לתוספים מסוים או קוד נסמך שלא לעבוד כשורה"
|
129 |
-
|
130 |
-
#: ../user-role-editor.php:158
|
131 |
-
#, fuzzy
|
132 |
-
msgid " Capability name (ID) can not be empty!"
|
133 |
-
msgstr "שם לא יכול להשאר ריק!"
|
134 |
-
|
135 |
-
#: ../user-role-editor.php:159
|
136 |
-
#, fuzzy
|
137 |
-
msgid " Capability name (ID) must contain latin characters, digits, hyphens or underscore only!"
|
138 |
-
msgstr "שגיאה! שם יכולת חייב להכיל אותיות באנגלית וספרות בלבד"
|
139 |
-
|
140 |
-
#: ../user-role-editor.php:284
|
141 |
-
msgid "Settings"
|
142 |
-
msgstr "הגדרות"
|
143 |
-
|
144 |
-
#: ../user-role-editor.php:294
|
145 |
-
#: ../includes/ure-options.php:209
|
146 |
-
msgid "Changelog"
|
147 |
-
msgstr "יומן שינויים"
|
148 |
-
|
149 |
-
#: ../user-role-editor.php:342
|
150 |
-
msgid "Capabilities"
|
151 |
-
msgstr "יכולות"
|
152 |
-
|
153 |
-
#: ../user-role-editor.php:371
|
154 |
-
#: ../user-role-editor.php:407
|
155 |
-
#, fuzzy
|
156 |
-
msgid "Other Roles"
|
157 |
-
msgstr "מחיקת סוג משתמש"
|
158 |
-
|
159 |
-
#: ../user-role-editor.php:381
|
160 |
-
#, fuzzy
|
161 |
-
msgid "Edit"
|
162 |
-
msgstr "עורך"
|
163 |
-
|
164 |
-
#: ../includes/ure-lib.php:35
|
165 |
-
msgid "Error is occur. Please check the log file."
|
166 |
-
msgstr "ארעה שגיאה, אנא בדוק את קובץ היומן."
|
167 |
-
|
168 |
-
#: ../includes/ure-lib.php:364
|
169 |
-
msgid "Backup record is created for the current role capabilities"
|
170 |
-
msgstr "גיבוי נוצר עבור יכולות סוגי המשתמשים הנוכחיים"
|
171 |
-
|
172 |
-
#: ../includes/ure-lib.php:481
|
173 |
-
#, fuzzy
|
174 |
-
msgid "Error: Role ID must contain latin characters, digits, hyphens or underscore only!"
|
175 |
-
msgstr "שגיאה! השם של סוג המשתמש חייב להיות מורכב מאותיות באנגלית וספרות בלבד"
|
176 |
-
|
177 |
-
#: ../includes/ure-lib.php:496
|
178 |
-
#, php-format
|
179 |
-
msgid "Role %s exists already"
|
180 |
-
msgstr "סוג המשתמש %s כבר קיים"
|
181 |
-
|
182 |
-
#: ../includes/ure-lib.php:511
|
183 |
-
msgid "Error is encountered during new role create operation"
|
184 |
-
msgstr "ארעה שגיאה בעת יצירת סוג המשתמש החדש"
|
185 |
-
|
186 |
-
#: ../includes/ure-lib.php:513
|
187 |
-
#, php-format
|
188 |
-
msgid "Role %s is created successfully"
|
189 |
-
msgstr "סוג המשתמש %s נוצר בהצלחה"
|
190 |
-
|
191 |
-
#: ../includes/ure-lib.php:597
|
192 |
-
msgid "Error encountered during role delete operation"
|
193 |
-
msgstr "ארעה שגיאה במהלך נסיון המחיקה של סוג המשתמש"
|
194 |
-
|
195 |
-
#: ../includes/ure-lib.php:599
|
196 |
-
#, php-format
|
197 |
-
msgid "Role %s is deleted successfully"
|
198 |
-
msgstr "סוג המשתמש %s נמחק בהצלחה"
|
199 |
-
|
200 |
-
#: ../includes/ure-lib.php:619
|
201 |
-
msgid "Error encountered during default role change operation"
|
202 |
-
msgstr "ארעה שגיאה בעת הנסיון לשנות את סוג משתמש ברירת מחדל"
|
203 |
-
|
204 |
-
#: ../includes/ure-lib.php:625
|
205 |
-
#, php-format
|
206 |
-
msgid "Default role for new users is set to %s successfully"
|
207 |
-
msgstr "סוג המשתמש %s נקבע כברירת מחדל"
|
208 |
-
|
209 |
-
#: ../includes/ure-lib.php:652
|
210 |
-
msgid "Editor"
|
211 |
-
msgstr "עורך"
|
212 |
-
|
213 |
-
#: ../includes/ure-lib.php:653
|
214 |
-
msgid "Author"
|
215 |
-
msgstr "כותב"
|
216 |
-
|
217 |
-
#: ../includes/ure-lib.php:654
|
218 |
-
msgid "Contributor"
|
219 |
-
msgstr "תורם"
|
220 |
-
|
221 |
-
#: ../includes/ure-lib.php:655
|
222 |
-
msgid "Subscriber"
|
223 |
-
msgstr "מנוי"
|
224 |
-
|
225 |
-
#: ../includes/ure-lib.php:657
|
226 |
-
msgid "Switch themes"
|
227 |
-
msgstr "החלפת תבניות"
|
228 |
-
|
229 |
-
#: ../includes/ure-lib.php:658
|
230 |
-
msgid "Edit themes"
|
231 |
-
msgstr "עריכת תבניות"
|
232 |
-
|
233 |
-
#: ../includes/ure-lib.php:659
|
234 |
-
msgid "Activate plugins"
|
235 |
-
msgstr "הפעלת תוספים"
|
236 |
-
|
237 |
-
#: ../includes/ure-lib.php:660
|
238 |
-
msgid "Edit plugins"
|
239 |
-
msgstr "עריכת תוספים"
|
240 |
-
|
241 |
-
#: ../includes/ure-lib.php:661
|
242 |
-
msgid "Edit users"
|
243 |
-
msgstr "עריכת משתמשים"
|
244 |
-
|
245 |
-
#: ../includes/ure-lib.php:662
|
246 |
-
msgid "Edit files"
|
247 |
-
msgstr "עריכת קבצים"
|
248 |
-
|
249 |
-
#: ../includes/ure-lib.php:663
|
250 |
-
msgid "Manage options"
|
251 |
-
msgstr "ניהול אפשרויות אתר"
|
252 |
-
|
253 |
-
#: ../includes/ure-lib.php:664
|
254 |
-
msgid "Moderate comments"
|
255 |
-
msgstr "ניהול תגובות"
|
256 |
-
|
257 |
-
#: ../includes/ure-lib.php:665
|
258 |
-
msgid "Manage categories"
|
259 |
-
msgstr "ניהול קטגוריות"
|
260 |
-
|
261 |
-
#: ../includes/ure-lib.php:666
|
262 |
-
msgid "Manage links"
|
263 |
-
msgstr "ניהול קישורים"
|
264 |
-
|
265 |
-
#: ../includes/ure-lib.php:667
|
266 |
-
msgid "Upload files"
|
267 |
-
msgstr "העלאת קבצים"
|
268 |
-
|
269 |
-
#: ../includes/ure-lib.php:668
|
270 |
-
msgid "Import"
|
271 |
-
msgstr "יבוא"
|
272 |
-
|
273 |
-
#: ../includes/ure-lib.php:669
|
274 |
-
msgid "Unfiltered html"
|
275 |
-
msgstr "עריכת HTML"
|
276 |
-
|
277 |
-
#: ../includes/ure-lib.php:670
|
278 |
-
msgid "Edit posts"
|
279 |
-
msgstr "עריכת פוסטים"
|
280 |
-
|
281 |
-
#: ../includes/ure-lib.php:671
|
282 |
-
msgid "Edit others posts"
|
283 |
-
msgstr "עריכת פוסטים של אחרים"
|
284 |
-
|
285 |
-
#: ../includes/ure-lib.php:672
|
286 |
-
msgid "Edit published posts"
|
287 |
-
msgstr "עריכת פוסטים שפורסמו"
|
288 |
-
|
289 |
-
#: ../includes/ure-lib.php:673
|
290 |
-
msgid "Publish posts"
|
291 |
-
msgstr "פוסטים שפורסמו"
|
292 |
-
|
293 |
-
#: ../includes/ure-lib.php:674
|
294 |
-
msgid "Edit pages"
|
295 |
-
msgstr "עריכת עמודים"
|
296 |
-
|
297 |
-
#: ../includes/ure-lib.php:675
|
298 |
-
msgid "Read"
|
299 |
-
msgstr "קורא"
|
300 |
-
|
301 |
-
#: ../includes/ure-lib.php:676
|
302 |
-
msgid "Level 10"
|
303 |
-
msgstr "דרגה 10"
|
304 |
-
|
305 |
-
#: ../includes/ure-lib.php:677
|
306 |
-
msgid "Level 9"
|
307 |
-
msgstr "דרגה 9"
|
308 |
-
|
309 |
-
#: ../includes/ure-lib.php:678
|
310 |
-
msgid "Level 8"
|
311 |
-
msgstr "דרגה 8"
|
312 |
-
|
313 |
-
#: ../includes/ure-lib.php:679
|
314 |
-
msgid "Level 7"
|
315 |
-
msgstr "דרגה 7"
|
316 |
-
|
317 |
-
#: ../includes/ure-lib.php:680
|
318 |
-
msgid "Level 6"
|
319 |
-
msgstr "דרגה 6"
|
320 |
-
|
321 |
-
#: ../includes/ure-lib.php:681
|
322 |
-
msgid "Level 5"
|
323 |
-
msgstr "דרגה 5"
|
324 |
-
|
325 |
-
#: ../includes/ure-lib.php:682
|
326 |
-
msgid "Level 4"
|
327 |
-
msgstr "דרגה 4"
|
328 |
-
|
329 |
-
#: ../includes/ure-lib.php:683
|
330 |
-
msgid "Level 3"
|
331 |
-
msgstr "דרגה 3"
|
332 |
-
|
333 |
-
#: ../includes/ure-lib.php:684
|
334 |
-
msgid "Level 2"
|
335 |
-
msgstr "דרגה 2"
|
336 |
-
|
337 |
-
#: ../includes/ure-lib.php:685
|
338 |
-
msgid "Level 1"
|
339 |
-
msgstr "דרגה 1"
|
340 |
-
|
341 |
-
#: ../includes/ure-lib.php:686
|
342 |
-
msgid "Level 0"
|
343 |
-
msgstr "דרגה 0"
|
344 |
-
|
345 |
-
#: ../includes/ure-lib.php:687
|
346 |
-
msgid "Edit others pages"
|
347 |
-
msgstr "עריכת דפים של אחרים"
|
348 |
-
|
349 |
-
#: ../includes/ure-lib.php:688
|
350 |
-
msgid "Edit published pages"
|
351 |
-
msgstr "עריכת דפים שפורסמו"
|
352 |
-
|
353 |
-
#: ../includes/ure-lib.php:689
|
354 |
-
msgid "Publish pages"
|
355 |
-
msgstr "פרסום דפים"
|
356 |
-
|
357 |
-
#: ../includes/ure-lib.php:690
|
358 |
-
msgid "Delete pages"
|
359 |
-
msgstr "מחיקת דפים"
|
360 |
-
|
361 |
-
#: ../includes/ure-lib.php:691
|
362 |
-
msgid "Delete others pages"
|
363 |
-
msgstr "מחיקת דפים של אחרים"
|
364 |
-
|
365 |
-
#: ../includes/ure-lib.php:692
|
366 |
-
msgid "Delete published pages"
|
367 |
-
msgstr "מחיקת דפים שפורסמו"
|
368 |
-
|
369 |
-
#: ../includes/ure-lib.php:693
|
370 |
-
msgid "Delete posts"
|
371 |
-
msgstr "מחיקת פוסטים"
|
372 |
-
|
373 |
-
#: ../includes/ure-lib.php:694
|
374 |
-
msgid "Delete others posts"
|
375 |
-
msgstr "מחיקת פוסטים של אחרים"
|
376 |
-
|
377 |
-
#: ../includes/ure-lib.php:695
|
378 |
-
msgid "Delete published posts"
|
379 |
-
msgstr "מחיקת פוסטים שפורסמו"
|
380 |
-
|
381 |
-
#: ../includes/ure-lib.php:696
|
382 |
-
msgid "Delete private posts"
|
383 |
-
msgstr "מחיקת פוסטים פרטיים"
|
384 |
-
|
385 |
-
#: ../includes/ure-lib.php:697
|
386 |
-
msgid "Edit private posts"
|
387 |
-
msgstr "עריכת פוסטים פרטיים"
|
388 |
-
|
389 |
-
#: ../includes/ure-lib.php:698
|
390 |
-
msgid "Read private posts"
|
391 |
-
msgstr "קריאת פוסטים פרטיים"
|
392 |
-
|
393 |
-
#: ../includes/ure-lib.php:699
|
394 |
-
msgid "Delete private pages"
|
395 |
-
msgstr "מחיקת עמודים פרטיים"
|
396 |
-
|
397 |
-
#: ../includes/ure-lib.php:700
|
398 |
-
msgid "Edit private pages"
|
399 |
-
msgstr "מחיקת עמודים פרטיים"
|
400 |
-
|
401 |
-
#: ../includes/ure-lib.php:701
|
402 |
-
msgid "Read private pages"
|
403 |
-
msgstr "קריאת עמודים פרטיים"
|
404 |
-
|
405 |
-
#: ../includes/ure-lib.php:702
|
406 |
-
msgid "Delete users"
|
407 |
-
msgstr "מחיקת משתמשים"
|
408 |
-
|
409 |
-
#: ../includes/ure-lib.php:703
|
410 |
-
msgid "Create users"
|
411 |
-
msgstr "יצירת משתמשים"
|
412 |
-
|
413 |
-
#: ../includes/ure-lib.php:704
|
414 |
-
msgid "Unfiltered upload"
|
415 |
-
msgstr "העלאת קבצים חופשית"
|
416 |
-
|
417 |
-
#: ../includes/ure-lib.php:705
|
418 |
-
msgid "Edit dashboard"
|
419 |
-
msgstr "שינוי לוח הבקרה"
|
420 |
-
|
421 |
-
#: ../includes/ure-lib.php:706
|
422 |
-
msgid "Update plugins"
|
423 |
-
msgstr "עדכון תוספים"
|
424 |
-
|
425 |
-
#: ../includes/ure-lib.php:707
|
426 |
-
msgid "Delete plugins"
|
427 |
-
msgstr "מחיקת תוספים"
|
428 |
-
|
429 |
-
#: ../includes/ure-lib.php:708
|
430 |
-
msgid "Install plugins"
|
431 |
-
msgstr "התקנת תוספים"
|
432 |
-
|
433 |
-
#: ../includes/ure-lib.php:709
|
434 |
-
msgid "Update themes"
|
435 |
-
msgstr "עדכון תבניות"
|
436 |
-
|
437 |
-
#: ../includes/ure-lib.php:710
|
438 |
-
msgid "Install themes"
|
439 |
-
msgstr "התקנת תבניות חדשות"
|
440 |
-
|
441 |
-
#: ../includes/ure-lib.php:711
|
442 |
-
msgid "Update core"
|
443 |
-
msgstr "עדכון וורדפרס"
|
444 |
-
|
445 |
-
#: ../includes/ure-lib.php:712
|
446 |
-
msgid "List users"
|
447 |
-
msgstr "בצפייה במשתמשים"
|
448 |
-
|
449 |
-
#: ../includes/ure-lib.php:713
|
450 |
-
msgid "Remove users"
|
451 |
-
msgstr "הסרת משתמשים"
|
452 |
-
|
453 |
-
#: ../includes/ure-lib.php:714
|
454 |
-
msgid "Add users"
|
455 |
-
msgstr "הוספת משתמשים"
|
456 |
-
|
457 |
-
#: ../includes/ure-lib.php:715
|
458 |
-
msgid "Promote users"
|
459 |
-
msgstr "שינוי משתמשים"
|
460 |
-
|
461 |
-
#: ../includes/ure-lib.php:716
|
462 |
-
msgid "Edit theme options"
|
463 |
-
msgstr "עריכת אפשרויות התבנית"
|
464 |
-
|
465 |
-
#: ../includes/ure-lib.php:717
|
466 |
-
msgid "Delete themes"
|
467 |
-
msgstr "מחיקת תבניות"
|
468 |
-
|
469 |
-
#: ../includes/ure-lib.php:718
|
470 |
-
msgid "Export"
|
471 |
-
msgstr "ייצוא תוכן"
|
472 |
-
|
473 |
-
#: ../includes/ure-lib.php:834
|
474 |
-
msgid "Error: Capability name must contain latin characters and digits only!"
|
475 |
-
msgstr "שגיאה! שם יכולת חייב להכיל אותיות באנגלית וספרות בלבד"
|
476 |
-
|
477 |
-
#: ../includes/ure-lib.php:846
|
478 |
-
#, php-format
|
479 |
-
msgid "Capability %s is added successfully"
|
480 |
-
msgstr "היכולת %s נוספה בהצלחה"
|
481 |
-
|
482 |
-
#: ../includes/ure-lib.php:848
|
483 |
-
#, php-format
|
484 |
-
msgid "Capability %s exists already"
|
485 |
-
msgstr "כבר קיימת יכולת בשם %s"
|
486 |
-
|
487 |
-
#: ../includes/ure-lib.php:997
|
488 |
-
#, php-format
|
489 |
-
msgid "Error! You do not have permission to delete this capability: %s!"
|
490 |
-
msgstr "שגיאה! אין לך הרשאה למחוק את היכולת %s"
|
491 |
-
|
492 |
-
#: ../includes/ure-lib.php:1016
|
493 |
-
#, php-format
|
494 |
-
msgid "Capability %s is removed successfully"
|
495 |
-
msgstr "היכולת %s הוסרה בהצלחה"
|
496 |
-
|
497 |
-
#: ../includes/ure-lib.php:1083
|
498 |
-
msgid "Help"
|
499 |
-
msgstr ""
|
500 |
-
|
501 |
-
#: ../includes/ure-role-edit.php:29
|
502 |
-
msgid "None"
|
503 |
-
msgstr ""
|
504 |
-
|
505 |
-
#: ../includes/ure-role-edit.php:67
|
506 |
-
msgid "Select Role and change its capabilities list"
|
507 |
-
msgstr "בחר סוג משתמש ושנה את היכולות שלו"
|
508 |
-
|
509 |
-
#: ../includes/ure-role-edit.php:69
|
510 |
-
#: ../includes/ure-role-edit.php:166
|
511 |
-
msgid "Select Role:"
|
512 |
-
msgstr "בחר סוג משתמש"
|
513 |
-
|
514 |
-
#: ../includes/ure-role-edit.php:79
|
515 |
-
#: ../includes/ure-user-edit.php:38
|
516 |
-
msgid "Show capabilities in human readable form"
|
517 |
-
msgstr "הראה יכולות משתמשים בשפה קריאה"
|
518 |
-
|
519 |
-
#: ../includes/ure-role-edit.php:88
|
520 |
-
#: ../includes/ure-user-edit.php:47
|
521 |
-
msgid "Show deprecated capabilities"
|
522 |
-
msgstr ""
|
523 |
-
|
524 |
-
#: ../includes/ure-role-edit.php:92
|
525 |
-
msgid "If checked, then apply action to ALL sites of this Network"
|
526 |
-
msgstr "אם סומן, החל פעולה על כל האתרים ברשת זאת"
|
527 |
-
|
528 |
-
#: ../includes/ure-role-edit.php:102
|
529 |
-
msgid "Apply to All Sites"
|
530 |
-
msgstr "החל לכל האתרים"
|
531 |
-
|
532 |
-
#: ../includes/ure-role-edit.php:109
|
533 |
-
#: ../includes/ure-user-edit.php:88
|
534 |
-
#, fuzzy
|
535 |
-
msgid "Core capabilities:"
|
536 |
-
msgstr "יכולות"
|
537 |
-
|
538 |
-
#: ../includes/ure-role-edit.php:124
|
539 |
-
#: ../includes/ure-user-edit.php:103
|
540 |
-
#, fuzzy
|
541 |
-
msgid "Custom capabilities:"
|
542 |
-
msgstr "יכולות"
|
543 |
-
|
544 |
-
#: ../includes/ure-role-edit.php:155
|
545 |
-
msgid "Role name (ID): "
|
546 |
-
msgstr ""
|
547 |
-
|
548 |
-
#: ../includes/ure-role-edit.php:157
|
549 |
-
msgid "Display Role Name: "
|
550 |
-
msgstr ""
|
551 |
-
|
552 |
-
#: ../includes/ure-role-edit.php:159
|
553 |
-
msgid "Make copy of: "
|
554 |
-
msgstr ""
|
555 |
-
|
556 |
-
#: ../includes/ure-role-edit.php:181
|
557 |
-
#, fuzzy
|
558 |
-
msgid "Delete:"
|
559 |
-
msgstr "למחוק"
|
560 |
-
|
561 |
-
#: ../includes/ure-role-edit.php:188
|
562 |
-
msgid "Capability name (ID): "
|
563 |
-
msgstr ""
|
564 |
-
|
565 |
-
#: ../includes/ure-user-edit.php:22
|
566 |
-
msgid "Change capabilities for user"
|
567 |
-
msgstr "שינוי יכולות המשתמש"
|
568 |
-
|
569 |
-
#: ../includes/ure-user-edit.php:52
|
570 |
-
msgid "Primary Role:"
|
571 |
-
msgstr ""
|
572 |
-
|
573 |
-
#: ../includes/ure-user-edit.php:62
|
574 |
-
msgid "bbPress Role:"
|
575 |
-
msgstr ""
|
576 |
-
|
577 |
-
#: ../includes/ure-user-edit.php:72
|
578 |
-
#, fuzzy
|
579 |
-
msgid "Other Roles:"
|
580 |
-
msgstr "מחיקת סוג משתמש"
|
581 |
-
|
582 |
-
#: ../includes/ure-options.php:65
|
583 |
-
msgid "User Roles are restored to WordPress default values. "
|
584 |
-
msgstr ""
|
585 |
-
|
586 |
-
#: ../includes/ure-options.php:136
|
587 |
-
msgid "Error: "
|
588 |
-
msgstr ""
|
589 |
-
|
590 |
-
#: ../includes/ure-options.php:136
|
591 |
-
#: ../includes/ure-options.php:156
|
592 |
-
msgid "Role"
|
593 |
-
msgstr "סוג משתמש:"
|
594 |
-
|
595 |
-
#: ../includes/ure-options.php:136
|
596 |
-
msgid "does not exist"
|
597 |
-
msgstr ""
|
598 |
-
|
599 |
-
#: ../includes/ure-options.php:156
|
600 |
-
msgid "is updated successfully"
|
601 |
-
msgstr "עודכן בהצלחה"
|
602 |
-
|
603 |
-
#: ../includes/ure-options.php:161
|
604 |
-
#: ../includes/ure-options.php:174
|
605 |
-
#, fuzzy
|
606 |
-
msgid "Error occured during role update"
|
607 |
-
msgstr "ארעה שגיאה במהלך נסיון המחיקה של סוג המשתמש"
|
608 |
-
|
609 |
-
#: ../includes/ure-options.php:169
|
610 |
-
msgid "User"
|
611 |
-
msgstr "משתמש"
|
612 |
-
|
613 |
-
#: ../includes/ure-options.php:169
|
614 |
-
msgid "capabilities are updated successfully"
|
615 |
-
msgstr "היכולות עודכנו בהצלחה"
|
616 |
-
|
617 |
-
#: ../includes/ure-options.php:206
|
618 |
-
msgid "About this Plugin:"
|
619 |
-
msgstr "אודות תוסף זה:"
|
620 |
-
|
621 |
-
#: ../includes/ure-options.php:207
|
622 |
-
msgid "Author's website"
|
623 |
-
msgstr "אתר היוצר"
|
624 |
-
|
625 |
-
#: ../includes/ure-options.php:208
|
626 |
-
msgid "Plugin webpage"
|
627 |
-
msgstr "דף התוסף"
|
628 |
-
|
629 |
-
#: ../includes/ure-options.php:210
|
630 |
-
msgid "FAQ"
|
631 |
-
msgstr "שאלות נפוצות"
|
632 |
-
|
633 |
-
#~ msgid "Database operation error. Check log file."
|
634 |
-
#~ msgstr "שגיאת מסד נתונים, אנא בדוק את קובץ היומן."
|
635 |
-
|
636 |
-
#~ msgid ""
|
637 |
-
#~ "No backup data. It is created automatically before the first role data "
|
638 |
-
#~ "update."
|
639 |
-
#~ msgstr ""
|
640 |
-
#~ "אין קובץ גיבוי. מידע זה נוצר באופן אוטומטי לפני השינוי הראשון שאתם עושים "
|
641 |
-
#~ "בהגדרות סוגי המשתמשים."
|
642 |
-
|
643 |
-
#~ msgid " Name must contain latin characters and digits only!"
|
644 |
-
#~ msgstr "שם חייב להכיל אותיות באנגלית וספרות בלבד!"
|
645 |
-
|
646 |
-
#~ msgid "Change Default Role"
|
647 |
-
#~ msgstr "שנה את סוג משתמש המוגדר כברירת מחדל"
|
648 |
-
|
649 |
-
#~ msgid "Role \"%s\" update: please confirm to continue"
|
650 |
-
#~ msgstr "סוג המשתמש \"%s\" עודכן: אנא אשר והמשך"
|
651 |
-
|
652 |
-
#~ msgid "Save Changes"
|
653 |
-
#~ msgstr "שמור שינויים"
|
654 |
-
|
655 |
-
#~ msgid "Cancel not saved changes"
|
656 |
-
#~ msgstr "בטל שינויים שלא נשמרו"
|
657 |
-
|
658 |
-
#~ msgid "Restore Roles from backup copy"
|
659 |
-
#~ msgstr "שחזר סוגי משתמשים מהעתק הגיבוי"
|
660 |
-
|
661 |
-
#~ msgid "Add"
|
662 |
-
#~ msgstr "הוסף"
|
663 |
-
|
664 |
-
#~ msgid "Add New User Role"
|
665 |
-
#~ msgstr "הוסף סוג משתמש חדש"
|
666 |
-
|
667 |
-
#~ msgid "Default Role for New User"
|
668 |
-
#~ msgstr "סוג משתמש ברירת מחדל למשתמשים חדשים"
|
669 |
-
|
670 |
-
#~ msgid "Change"
|
671 |
-
#~ msgstr "שנה"
|
672 |
-
|
673 |
-
#~ msgid "Delete User Role"
|
674 |
-
#~ msgstr "מחק סוג משתמש"
|
675 |
-
|
676 |
-
#~ msgid "Remove"
|
677 |
-
#~ msgstr "הסר"
|
678 |
-
|
679 |
-
#~ msgid "Remove User Capability"
|
680 |
-
#~ msgstr "הסר יכולת משתמש"
|
681 |
-
|
682 |
-
#~ msgid "User \"%s\" update: please confirm to continue"
|
683 |
-
#~ msgstr "עדכון המשתמש \"%s\" : אנא אשר והמשך"
|
684 |
-
|
685 |
-
#~ msgid "Role:"
|
686 |
-
#~ msgstr "סוג משתמש"
|
687 |
-
|
688 |
-
#~ msgid "Add capabilities to this user:"
|
689 |
-
#~ msgstr "הוסף יכולות למשתמש זה:"
|
690 |
-
|
691 |
-
#~ msgid "Greetings:"
|
692 |
-
#~ msgstr "ברכות:"
|
693 |
-
|
694 |
-
#~ msgid "It's me, the author"
|
695 |
-
#~ msgstr "זה אני, יוצר התוסף"
|
696 |
-
|
697 |
-
#~ msgid "For the help with Belorussian translation"
|
698 |
-
#~ msgstr "לעזרה עם תרגום לבלרוסית"
|
699 |
-
|
700 |
-
#~ msgid "For the help with Brasilian translation"
|
701 |
-
#~ msgstr "לעזרה עם תרגום לברזילאית"
|
702 |
-
|
703 |
-
#, fuzzy
|
704 |
-
#~ msgid "For the help with Brasilian Portuguese translation"
|
705 |
-
#~ msgstr "לעזרה עם תרגום לברזילאית"
|
706 |
-
|
707 |
-
#~ msgid "For the help with Chinese translation"
|
708 |
-
#~ msgstr "לעזרה עם תרגום לסינית"
|
709 |
-
|
710 |
-
#~ msgid "For the help with Dutch translation"
|
711 |
-
#~ msgstr "לעזרה עם תרגום להולנדית"
|
712 |
-
|
713 |
-
#~ msgid "For the help with Finnish translation"
|
714 |
-
#~ msgstr "לעזרה עם תרגום לפינית"
|
715 |
-
|
716 |
-
#~ msgid "For the help with French translation"
|
717 |
-
#~ msgstr "לעזרה עם תרגום לצרפתית"
|
718 |
-
|
719 |
-
#~ msgid "For the help with German translation"
|
720 |
-
#~ msgstr "לעזרה עם תרגום לגרמנית"
|
721 |
-
|
722 |
-
#~ msgid "For the help with Hungarian translation"
|
723 |
-
#~ msgstr "לעזרה עם תרגום להונגרית"
|
724 |
-
|
725 |
-
#~ msgid "For the help with Italian translation"
|
726 |
-
#~ msgstr "לעזרה עם תרגום לאילטקית"
|
727 |
-
|
728 |
-
#~ msgid "For the help with Japanese translation"
|
729 |
-
#~ msgstr "לעזרה עם תרגום ליפנית"
|
730 |
-
|
731 |
-
#~ msgid "For the help with Persian translation"
|
732 |
-
#~ msgstr "לעזרה עם תרגום לפרסית"
|
733 |
-
|
734 |
-
#~ msgid "For the help with Polish translation"
|
735 |
-
#~ msgstr "לעזרה עם תרגום לפולנית"
|
736 |
-
|
737 |
-
#~ msgid "For the help with Spanish translation"
|
738 |
-
#~ msgstr "לעזרה עם תרגום לספרדית"
|
739 |
-
|
740 |
-
#~ msgid "For the help with Swedish translation"
|
741 |
-
#~ msgstr "לעזרה עם תרגום לשוודית"
|
742 |
-
|
743 |
-
#~ msgid "For the help with Turkish translation"
|
744 |
-
#~ msgstr "לעזרה עם תרגום לטורקית"
|
745 |
-
|
746 |
-
#~ msgid "For the code to hide administrator role"
|
747 |
-
#~ msgstr "עבור קוד כדי להחביא את סוג משתמש מנהל"
|
748 |
-
|
749 |
-
#~ msgid ""
|
750 |
-
#~ "Do you wish to see your name with link to your site here? You are "
|
751 |
-
#~ "welcome! Your help with translation and new ideas are very appreciated."
|
752 |
-
#~ msgstr ""
|
753 |
-
#~ "רוצה לראות את השם שלך עם קישור אל האתר שלך כאן? אתה מוזמן לעזור עם התרגום "
|
754 |
-
#~ "ועם רעיונות ושיפורים חדשים"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
lang/ure-he_IL.mo
DELETED
Binary file
|
lang/ure-he_IL.po
DELETED
@@ -1,768 +0,0 @@
|
|
1 |
-
msgid ""
|
2 |
-
msgstr ""
|
3 |
-
"Project-Id-Version: User Role Editor\n"
|
4 |
-
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2013-05-17 11:15+0700\n"
|
6 |
-
"PO-Revision-Date: \n"
|
7 |
-
"Last-Translator: Vladimir Garagulya <vladimir@shinephp.com>\n"
|
8 |
-
"Language-Team: ShinePHP.com <vladimir@shinephp.com>\n"
|
9 |
-
"Language: \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-Language: English\n"
|
14 |
-
"X-Poedit-Country: RUSSIAN FEDERATION\n"
|
15 |
-
"X-Poedit-SourceCharset: utf-8\n"
|
16 |
-
"X-Poedit-KeywordsList: __;_e\n"
|
17 |
-
"X-Poedit-Basepath: .\n"
|
18 |
-
"X-Poedit-SearchPath-0: ..\n"
|
19 |
-
|
20 |
-
#: ../user-role-editor.php:34
|
21 |
-
#, fuzzy, php-format
|
22 |
-
msgid "User Role Editor requires PHP %s or newer."
|
23 |
-
msgstr "התוסף User Role Editor מחייב אחסון עם PHP 5.0 ומעלה"
|
24 |
-
|
25 |
-
#: ../user-role-editor.php:35
|
26 |
-
#: ../user-role-editor.php:107
|
27 |
-
msgid "Please update!"
|
28 |
-
msgstr "אנא עדכן!"
|
29 |
-
|
30 |
-
#: ../user-role-editor.php:80
|
31 |
-
msgid "Only"
|
32 |
-
msgstr "רק"
|
33 |
-
|
34 |
-
#: ../user-role-editor.php:80
|
35 |
-
msgid "is allowed to use"
|
36 |
-
msgstr "מותר לשימוש"
|
37 |
-
|
38 |
-
#: ../user-role-editor.php:86
|
39 |
-
#: ../user-role-editor.php:312
|
40 |
-
#: ../user-role-editor.php:368
|
41 |
-
msgid "User Role Editor"
|
42 |
-
msgstr "User Role Editor"
|
43 |
-
|
44 |
-
#: ../user-role-editor.php:106
|
45 |
-
#, fuzzy, php-format
|
46 |
-
msgid "User Role Editor requires WordPress %s or newer."
|
47 |
-
msgstr "התוסף User Role Editor מתאים לאתרי וורדפרס בגרסה 3.0 ומעלה"
|
48 |
-
|
49 |
-
#: ../user-role-editor.php:139
|
50 |
-
msgid "Select All"
|
51 |
-
msgstr ""
|
52 |
-
|
53 |
-
#: ../user-role-editor.php:140
|
54 |
-
msgid "Unselect All"
|
55 |
-
msgstr ""
|
56 |
-
|
57 |
-
#: ../user-role-editor.php:141
|
58 |
-
msgid "Reverse"
|
59 |
-
msgstr ""
|
60 |
-
|
61 |
-
#: ../user-role-editor.php:142
|
62 |
-
msgid "Update"
|
63 |
-
msgstr "עדכן"
|
64 |
-
|
65 |
-
#: ../user-role-editor.php:143
|
66 |
-
#, fuzzy
|
67 |
-
msgid "Please confirm permissions update"
|
68 |
-
msgstr "אשר את הפעולה והמשך"
|
69 |
-
|
70 |
-
#: ../user-role-editor.php:144
|
71 |
-
msgid "Add New Role"
|
72 |
-
msgstr "הוסף סוג משתמש חדש"
|
73 |
-
|
74 |
-
#: ../user-role-editor.php:145
|
75 |
-
#, fuzzy
|
76 |
-
msgid " Role name (ID) can not be empty!"
|
77 |
-
msgstr "שם לא יכול להשאר ריק!"
|
78 |
-
|
79 |
-
#: ../user-role-editor.php:146
|
80 |
-
#, fuzzy
|
81 |
-
msgid " Role name (ID) must contain latin characters, digits, hyphens or underscore only!"
|
82 |
-
msgstr "שגיאה! השם של סוג המשתמש חייב להיות מורכב מאותיות באנגלית וספרות בלבד"
|
83 |
-
|
84 |
-
#: ../user-role-editor.php:147
|
85 |
-
#, fuzzy
|
86 |
-
msgid "Add Role"
|
87 |
-
msgstr "הוסף סוג משתמש חדש"
|
88 |
-
|
89 |
-
#: ../user-role-editor.php:148
|
90 |
-
msgid "Delete Role"
|
91 |
-
msgstr "מחיקת סוג משתמש"
|
92 |
-
|
93 |
-
#: ../user-role-editor.php:149
|
94 |
-
msgid "Cancel"
|
95 |
-
msgstr "ביטול"
|
96 |
-
|
97 |
-
#: ../user-role-editor.php:150
|
98 |
-
#, fuzzy
|
99 |
-
msgid "Add Capability"
|
100 |
-
msgstr "הוסף יכולת חדשה"
|
101 |
-
|
102 |
-
#: ../user-role-editor.php:151
|
103 |
-
#: ../user-role-editor.php:156
|
104 |
-
#, fuzzy
|
105 |
-
msgid "Delete Capability"
|
106 |
-
msgstr "הסר יכולת"
|
107 |
-
|
108 |
-
#: ../user-role-editor.php:152
|
109 |
-
msgid "Reset"
|
110 |
-
msgstr "איפוס"
|
111 |
-
|
112 |
-
#: ../user-role-editor.php:153
|
113 |
-
msgid "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?"
|
114 |
-
msgstr ""
|
115 |
-
|
116 |
-
#: ../user-role-editor.php:154
|
117 |
-
#, fuzzy
|
118 |
-
msgid "Default Role"
|
119 |
-
msgstr "מחיקת סוג משתמש"
|
120 |
-
|
121 |
-
#: ../user-role-editor.php:155
|
122 |
-
#, fuzzy
|
123 |
-
msgid "Set New Default Role"
|
124 |
-
msgstr "קבע כסוג משתמש ברירת מחדל"
|
125 |
-
|
126 |
-
#: ../user-role-editor.php:157
|
127 |
-
msgid "Warning! Be careful - removing critical capability could crash some plugin or other custom code"
|
128 |
-
msgstr "זהירות! הסרה של אפשרויות קריטיות עשוי לגרום לתוספים מסוים או קוד נסמך שלא לעבוד כשורה"
|
129 |
-
|
130 |
-
#: ../user-role-editor.php:158
|
131 |
-
#, fuzzy
|
132 |
-
msgid " Capability name (ID) can not be empty!"
|
133 |
-
msgstr "שם לא יכול להשאר ריק!"
|
134 |
-
|
135 |
-
#: ../user-role-editor.php:159
|
136 |
-
#, fuzzy
|
137 |
-
msgid " Capability name (ID) must contain latin characters, digits, hyphens or underscore only!"
|
138 |
-
msgstr "שגיאה! שם יכולת חייב להכיל אותיות באנגלית וספרות בלבד"
|
139 |
-
|
140 |
-
#: ../user-role-editor.php:284
|
141 |
-
msgid "Settings"
|
142 |
-
msgstr "הגדרות"
|
143 |
-
|
144 |
-
#: ../user-role-editor.php:294
|
145 |
-
#: ../includes/ure-options.php:209
|
146 |
-
msgid "Changelog"
|
147 |
-
msgstr "יומן שינויים"
|
148 |
-
|
149 |
-
#: ../user-role-editor.php:342
|
150 |
-
msgid "Capabilities"
|
151 |
-
msgstr "יכולות"
|
152 |
-
|
153 |
-
#: ../user-role-editor.php:371
|
154 |
-
#: ../user-role-editor.php:407
|
155 |
-
#, fuzzy
|
156 |
-
msgid "Other Roles"
|
157 |
-
msgstr "מחיקת סוג משתמש"
|
158 |
-
|
159 |
-
#: ../user-role-editor.php:381
|
160 |
-
#, fuzzy
|
161 |
-
msgid "Edit"
|
162 |
-
msgstr "עורך"
|
163 |
-
|
164 |
-
#: ../includes/ure-lib.php:35
|
165 |
-
msgid "Error is occur. Please check the log file."
|
166 |
-
msgstr "ארעה שגיאה, אנא בדוק את קובץ היומן."
|
167 |
-
|
168 |
-
#: ../includes/ure-lib.php:364
|
169 |
-
msgid "Backup record is created for the current role capabilities"
|
170 |
-
msgstr "גיבוי נוצר עבור יכולות סוגי המשתמשים הנוכחיים"
|
171 |
-
|
172 |
-
#: ../includes/ure-lib.php:481
|
173 |
-
#, fuzzy
|
174 |
-
msgid "Error: Role ID must contain latin characters, digits, hyphens or underscore only!"
|
175 |
-
msgstr "שגיאה! השם של סוג המשתמש חייב להיות מורכב מאותיות באנגלית וספרות בלבד"
|
176 |
-
|
177 |
-
#: ../includes/ure-lib.php:496
|
178 |
-
#, php-format
|
179 |
-
msgid "Role %s exists already"
|
180 |
-
msgstr "סוג המשתמש %s כבר קיים"
|
181 |
-
|
182 |
-
#: ../includes/ure-lib.php:511
|
183 |
-
msgid "Error is encountered during new role create operation"
|
184 |
-
msgstr "ארעה שגיאה בעת יצירת סוג המשתמש החדש"
|
185 |
-
|
186 |
-
#: ../includes/ure-lib.php:513
|
187 |
-
#, php-format
|
188 |
-
msgid "Role %s is created successfully"
|
189 |
-
msgstr "סוג המשתמש %s נוצר בהצלחה"
|
190 |
-
|
191 |
-
#: ../includes/ure-lib.php:597
|
192 |
-
msgid "Error encountered during role delete operation"
|
193 |
-
msgstr "ארעה שגיאה במהלך נסיון המחיקה של סוג המשתמש"
|
194 |
-
|
195 |
-
#: ../includes/ure-lib.php:599
|
196 |
-
#, php-format
|
197 |
-
msgid "Role %s is deleted successfully"
|
198 |
-
msgstr "סוג המשתמש %s נמחק בהצלחה"
|
199 |
-
|
200 |
-
#: ../includes/ure-lib.php:619
|
201 |
-
msgid "Error encountered during default role change operation"
|
202 |
-
msgstr "ארעה שגיאה בעת הנסיון לשנות את סוג משתמש ברירת מחדל"
|
203 |
-
|
204 |
-
#: ../includes/ure-lib.php:625
|
205 |
-
#, php-format
|
206 |
-
msgid "Default role for new users is set to %s successfully"
|
207 |
-
msgstr "סוג המשתמש %s נקבע כברירת מחדל"
|
208 |
-
|
209 |
-
#: ../includes/ure-lib.php:652
|
210 |
-
msgid "Editor"
|
211 |
-
msgstr "עורך"
|
212 |
-
|
213 |
-
#: ../includes/ure-lib.php:653
|
214 |
-
msgid "Author"
|
215 |
-
msgstr "כותב"
|
216 |
-
|
217 |
-
#: ../includes/ure-lib.php:654
|
218 |
-
msgid "Contributor"
|
219 |
-
msgstr "תורם"
|
220 |
-
|
221 |
-
#: ../includes/ure-lib.php:655
|
222 |
-
msgid "Subscriber"
|
223 |
-
msgstr "מנוי"
|
224 |
-
|
225 |
-
#: ../includes/ure-lib.php:657
|
226 |
-
msgid "Switch themes"
|
227 |
-
msgstr "החלפת תבניות"
|
228 |
-
|
229 |
-
#: ../includes/ure-lib.php:658
|
230 |
-
msgid "Edit themes"
|
231 |
-
msgstr "עריכת תבניות"
|
232 |
-
|
233 |
-
#: ../includes/ure-lib.php:659
|
234 |
-
msgid "Activate plugins"
|
235 |
-
msgstr "הפעלת תוספים"
|
236 |
-
|
237 |
-
#: ../includes/ure-lib.php:660
|
238 |
-
msgid "Edit plugins"
|
239 |
-
msgstr "עריכת תוספים"
|
240 |
-
|
241 |
-
#: ../includes/ure-lib.php:661
|
242 |
-
msgid "Edit users"
|
243 |
-
msgstr "עריכת משתמשים"
|
244 |
-
|
245 |
-
#: ../includes/ure-lib.php:662
|
246 |
-
msgid "Edit files"
|
247 |
-
msgstr "עריכת קבצים"
|
248 |
-
|
249 |
-
#: ../includes/ure-lib.php:663
|
250 |
-
msgid "Manage options"
|
251 |
-
msgstr "ניהול אפשרויות אתר"
|
252 |
-
|
253 |
-
#: ../includes/ure-lib.php:664
|
254 |
-
msgid "Moderate comments"
|
255 |
-
msgstr "ניהול תגובות"
|
256 |
-
|
257 |
-
#: ../includes/ure-lib.php:665
|
258 |
-
msgid "Manage categories"
|
259 |
-
msgstr "ניהול קטגוריות"
|
260 |
-
|
261 |
-
#: ../includes/ure-lib.php:666
|
262 |
-
msgid "Manage links"
|
263 |
-
msgstr "ניהול קישורים"
|
264 |
-
|
265 |
-
#: ../includes/ure-lib.php:667
|
266 |
-
msgid "Upload files"
|
267 |
-
msgstr "העלאת קבצים"
|
268 |
-
|
269 |
-
#: ../includes/ure-lib.php:668
|
270 |
-
msgid "Import"
|
271 |
-
msgstr "יבוא"
|
272 |
-
|
273 |
-
#: ../includes/ure-lib.php:669
|
274 |
-
msgid "Unfiltered html"
|
275 |
-
msgstr "עריכת HTML"
|
276 |
-
|
277 |
-
#: ../includes/ure-lib.php:670
|
278 |
-
msgid "Edit posts"
|
279 |
-
msgstr "עריכת פוסטים"
|
280 |
-
|
281 |
-
#: ../includes/ure-lib.php:671
|
282 |
-
msgid "Edit others posts"
|
283 |
-
msgstr "עריכת פוסטים של אחרים"
|
284 |
-
|
285 |
-
#: ../includes/ure-lib.php:672
|
286 |
-
msgid "Edit published posts"
|
287 |
-
msgstr "עריכת פוסטים שפורסמו"
|
288 |
-
|
289 |
-
#: ../includes/ure-lib.php:673
|
290 |
-
msgid "Publish posts"
|
291 |
-
msgstr "פוסטים שפורסמו"
|
292 |
-
|
293 |
-
#: ../includes/ure-lib.php:674
|
294 |
-
msgid "Edit pages"
|
295 |
-
msgstr "עריכת עמודים"
|
296 |
-
|
297 |
-
#: ../includes/ure-lib.php:675
|
298 |
-
msgid "Read"
|
299 |
-
msgstr "קורא"
|
300 |
-
|
301 |
-
#: ../includes/ure-lib.php:676
|
302 |
-
msgid "Level 10"
|
303 |
-
msgstr "דרגה 10"
|
304 |
-
|
305 |
-
#: ../includes/ure-lib.php:677
|
306 |
-
msgid "Level 9"
|
307 |
-
msgstr "דרגה 9"
|
308 |
-
|
309 |
-
#: ../includes/ure-lib.php:678
|
310 |
-
msgid "Level 8"
|
311 |
-
msgstr "דרגה 8"
|
312 |
-
|
313 |
-
#: ../includes/ure-lib.php:679
|
314 |
-
msgid "Level 7"
|
315 |
-
msgstr "דרגה 7"
|
316 |
-
|
317 |
-
#: ../includes/ure-lib.php:680
|
318 |
-
msgid "Level 6"
|
319 |
-
msgstr "דרגה 6"
|
320 |
-
|
321 |
-
#: ../includes/ure-lib.php:681
|
322 |
-
msgid "Level 5"
|
323 |
-
msgstr "דרגה 5"
|
324 |
-
|
325 |
-
#: ../includes/ure-lib.php:682
|
326 |
-
msgid "Level 4"
|
327 |
-
msgstr "דרגה 4"
|
328 |
-
|
329 |
-
#: ../includes/ure-lib.php:683
|
330 |
-
msgid "Level 3"
|
331 |
-
msgstr "דרגה 3"
|
332 |
-
|
333 |
-
#: ../includes/ure-lib.php:684
|
334 |
-
msgid "Level 2"
|
335 |
-
msgstr "דרגה 2"
|
336 |
-
|
337 |
-
#: ../includes/ure-lib.php:685
|
338 |
-
msgid "Level 1"
|
339 |
-
msgstr "דרגה 1"
|
340 |
-
|
341 |
-
#: ../includes/ure-lib.php:686
|
342 |
-
msgid "Level 0"
|
343 |
-
msgstr "דרגה 0"
|
344 |
-
|
345 |
-
#: ../includes/ure-lib.php:687
|
346 |
-
msgid "Edit others pages"
|
347 |
-
msgstr "עריכת דפים של אחרים"
|
348 |
-
|
349 |
-
#: ../includes/ure-lib.php:688
|
350 |
-
msgid "Edit published pages"
|
351 |
-
msgstr "עריכת דפים שפורסמו"
|
352 |
-
|
353 |
-
#: ../includes/ure-lib.php:689
|
354 |
-
msgid "Publish pages"
|
355 |
-
msgstr "פרסום דפים"
|
356 |
-
|
357 |
-
#: ../includes/ure-lib.php:690
|
358 |
-
msgid "Delete pages"
|
359 |
-
msgstr "מחיקת דפים"
|
360 |
-
|
361 |
-
#: ../includes/ure-lib.php:691
|
362 |
-
msgid "Delete others pages"
|
363 |
-
msgstr "מחיקת דפים של אחרים"
|
364 |
-
|
365 |
-
#: ../includes/ure-lib.php:692
|
366 |
-
msgid "Delete published pages"
|
367 |
-
msgstr "מחיקת דפים שפורסמו"
|
368 |
-
|
369 |
-
#: ../includes/ure-lib.php:693
|
370 |
-
msgid "Delete posts"
|
371 |
-
msgstr "מחיקת פוסטים"
|
372 |
-
|
373 |
-
#: ../includes/ure-lib.php:694
|
374 |
-
msgid "Delete others posts"
|
375 |
-
msgstr "מחיקת פוסטים של אחרים"
|
376 |
-
|
377 |
-
#: ../includes/ure-lib.php:695
|
378 |
-
msgid "Delete published posts"
|
379 |
-
msgstr "מחיקת פוסטים שפורסמו"
|
380 |
-
|
381 |
-
#: ../includes/ure-lib.php:696
|
382 |
-
msgid "Delete private posts"
|
383 |
-
msgstr "מחיקת פוסטים פרטיים"
|
384 |
-
|
385 |
-
#: ../includes/ure-lib.php:697
|
386 |
-
msgid "Edit private posts"
|
387 |
-
msgstr "עריכת פוסטים פרטיים"
|
388 |
-
|
389 |
-
#: ../includes/ure-lib.php:698
|
390 |
-
msgid "Read private posts"
|
391 |
-
msgstr "קריאת פוסטים פרטיים"
|
392 |
-
|
393 |
-
#: ../includes/ure-lib.php:699
|
394 |
-
msgid "Delete private pages"
|
395 |
-
msgstr "מחיקת עמודים פרטיים"
|
396 |
-
|
397 |
-
#: ../includes/ure-lib.php:700
|
398 |
-
msgid "Edit private pages"
|
399 |
-
msgstr "מחיקת עמודים פרטיים"
|
400 |
-
|
401 |
-
#: ../includes/ure-lib.php:701
|
402 |
-
msgid "Read private pages"
|
403 |
-
msgstr "קריאת עמודים פרטיים"
|
404 |
-
|
405 |
-
#: ../includes/ure-lib.php:702
|
406 |
-
msgid "Delete users"
|
407 |
-
msgstr "מחיקת משתמשים"
|
408 |
-
|
409 |
-
#: ../includes/ure-lib.php:703
|
410 |
-
msgid "Create users"
|
411 |
-
msgstr "יצירת משתמשים"
|
412 |
-
|
413 |
-
#: ../includes/ure-lib.php:704
|
414 |
-
msgid "Unfiltered upload"
|
415 |
-
msgstr "העלאת קבצים חופשית"
|
416 |
-
|
417 |
-
#: ../includes/ure-lib.php:705
|
418 |
-
msgid "Edit dashboard"
|
419 |
-
msgstr "שינוי לוח הבקרה"
|
420 |
-
|
421 |
-
#: ../includes/ure-lib.php:706
|
422 |
-
msgid "Update plugins"
|
423 |
-
msgstr "עדכון תוספים"
|
424 |
-
|
425 |
-
#: ../includes/ure-lib.php:707
|
426 |
-
msgid "Delete plugins"
|
427 |
-
msgstr "מחיקת תוספים"
|
428 |
-
|
429 |
-
#: ../includes/ure-lib.php:708
|
430 |
-
msgid "Install plugins"
|
431 |
-
msgstr "התקנת תוספים"
|
432 |
-
|
433 |
-
#: ../includes/ure-lib.php:709
|
434 |
-
msgid "Update themes"
|
435 |
-
msgstr "עדכון תבניות"
|
436 |
-
|
437 |
-
#: ../includes/ure-lib.php:710
|
438 |
-
msgid "Install themes"
|
439 |
-
msgstr "התקנת תבניות חדשות"
|
440 |
-
|
441 |
-
#: ../includes/ure-lib.php:711
|
442 |
-
msgid "Update core"
|
443 |
-
msgstr "עדכון וורדפרס"
|
444 |
-
|
445 |
-
#: ../includes/ure-lib.php:712
|
446 |
-
msgid "List users"
|
447 |
-
msgstr "בצפייה במשתמשים"
|
448 |
-
|
449 |
-
#: ../includes/ure-lib.php:713
|
450 |
-
msgid "Remove users"
|
451 |
-
msgstr "הסרת משתמשים"
|
452 |
-
|
453 |
-
#: ../includes/ure-lib.php:714
|
454 |
-
msgid "Add users"
|
455 |
-
msgstr "הוספת משתמשים"
|
456 |
-
|
457 |
-
#: ../includes/ure-lib.php:715
|
458 |
-
msgid "Promote users"
|
459 |
-
msgstr "שינוי משתמשים"
|
460 |
-
|
461 |
-
#: ../includes/ure-lib.php:716
|
462 |
-
msgid "Edit theme options"
|
463 |
-
msgstr "עריכת אפשרויות התבנית"
|
464 |
-
|
465 |
-
#: ../includes/ure-lib.php:717
|
466 |
-
msgid "Delete themes"
|
467 |
-
msgstr "מחיקת תבניות"
|
468 |
-
|
469 |
-
#: ../includes/ure-lib.php:718
|
470 |
-
msgid "Export"
|
471 |
-
msgstr "ייצוא תוכן"
|
472 |
-
|
473 |
-
#: ../includes/ure-lib.php:834
|
474 |
-
msgid "Error: Capability name must contain latin characters and digits only!"
|
475 |
-
msgstr "שגיאה! שם יכולת חייב להכיל אותיות באנגלית וספרות בלבד"
|
476 |
-
|
477 |
-
#: ../includes/ure-lib.php:846
|
478 |
-
#, php-format
|
479 |
-
msgid "Capability %s is added successfully"
|
480 |
-
msgstr "היכולת %s נוספה בהצלחה"
|
481 |
-
|
482 |
-
#: ../includes/ure-lib.php:848
|
483 |
-
#, php-format
|
484 |
-
msgid "Capability %s exists already"
|
485 |
-
msgstr "כבר קיימת יכולת בשם %s"
|
486 |
-
|
487 |
-
#: ../includes/ure-lib.php:997
|
488 |
-
#, php-format
|
489 |
-
msgid "Error! You do not have permission to delete this capability: %s!"
|
490 |
-
msgstr "שגיאה! אין לך הרשאה למחוק את היכולת %s"
|
491 |
-
|
492 |
-
#: ../includes/ure-lib.php:1016
|
493 |
-
#, php-format
|
494 |
-
msgid "Capability %s is removed successfully"
|
495 |
-
msgstr "היכולת %s הוסרה בהצלחה"
|
496 |
-
|
497 |
-
#: ../includes/ure-lib.php:1083
|
498 |
-
msgid "Help"
|
499 |
-
msgstr "עזרה"
|
500 |
-
|
501 |
-
#: ../includes/ure-role-edit.php:29
|
502 |
-
msgid "None"
|
503 |
-
msgstr "תרום"
|
504 |
-
|
505 |
-
#: ../includes/ure-role-edit.php:67
|
506 |
-
msgid "Select Role and change its capabilities list"
|
507 |
-
msgstr "בחר סוג משתמש ושנה את היכולות שלו"
|
508 |
-
|
509 |
-
#: ../includes/ure-role-edit.php:69
|
510 |
-
#: ../includes/ure-role-edit.php:166
|
511 |
-
msgid "Select Role:"
|
512 |
-
msgstr "בחר סוג משתמש"
|
513 |
-
|
514 |
-
#: ../includes/ure-role-edit.php:79
|
515 |
-
#: ../includes/ure-user-edit.php:38
|
516 |
-
msgid "Show capabilities in human readable form"
|
517 |
-
msgstr "הראה יכולות משתמשים בשפה קריאה"
|
518 |
-
|
519 |
-
#: ../includes/ure-role-edit.php:88
|
520 |
-
#: ../includes/ure-user-edit.php:47
|
521 |
-
msgid "Show deprecated capabilities"
|
522 |
-
msgstr "הצג הרשאות לפי מספר"
|
523 |
-
|
524 |
-
#: ../includes/ure-role-edit.php:92
|
525 |
-
msgid "If checked, then apply action to ALL sites of this Network"
|
526 |
-
msgstr "אם סומן, החל פעולה על כל האתרים ברשת זאת"
|
527 |
-
|
528 |
-
#: ../includes/ure-role-edit.php:102
|
529 |
-
msgid "Apply to All Sites"
|
530 |
-
msgstr "החל על כל האתרים"
|
531 |
-
|
532 |
-
#: ../includes/ure-role-edit.php:109
|
533 |
-
#: ../includes/ure-user-edit.php:88
|
534 |
-
#, fuzzy
|
535 |
-
msgid "Core capabilities:"
|
536 |
-
msgstr "יכולות"
|
537 |
-
|
538 |
-
#: ../includes/ure-role-edit.php:124
|
539 |
-
#: ../includes/ure-user-edit.php:103
|
540 |
-
#, fuzzy
|
541 |
-
msgid "Custom capabilities:"
|
542 |
-
msgstr "יכולות"
|
543 |
-
|
544 |
-
#: ../includes/ure-role-edit.php:155
|
545 |
-
msgid "Role name (ID): "
|
546 |
-
msgstr ""
|
547 |
-
|
548 |
-
#: ../includes/ure-role-edit.php:157
|
549 |
-
msgid "Display Role Name: "
|
550 |
-
msgstr ""
|
551 |
-
|
552 |
-
#: ../includes/ure-role-edit.php:159
|
553 |
-
msgid "Make copy of: "
|
554 |
-
msgstr "העתק:"
|
555 |
-
|
556 |
-
#: ../includes/ure-role-edit.php:181
|
557 |
-
#, fuzzy
|
558 |
-
msgid "Delete:"
|
559 |
-
msgstr "למחוק"
|
560 |
-
|
561 |
-
#: ../includes/ure-role-edit.php:188
|
562 |
-
msgid "Capability name (ID): "
|
563 |
-
msgstr ""
|
564 |
-
|
565 |
-
#: ../includes/ure-user-edit.php:22
|
566 |
-
msgid "Change capabilities for user"
|
567 |
-
msgstr "שינוי יכולות המשתמש"
|
568 |
-
|
569 |
-
#: ../includes/ure-user-edit.php:52
|
570 |
-
msgid "Primary Role:"
|
571 |
-
msgstr ""
|
572 |
-
|
573 |
-
#: ../includes/ure-user-edit.php:62
|
574 |
-
msgid "bbPress Role:"
|
575 |
-
msgstr ""
|
576 |
-
|
577 |
-
#: ../includes/ure-user-edit.php:72
|
578 |
-
#, fuzzy
|
579 |
-
msgid "Other Roles:"
|
580 |
-
msgstr "מחיקת סוג משתמש"
|
581 |
-
|
582 |
-
#: ../includes/ure-options.php:65
|
583 |
-
#, fuzzy
|
584 |
-
msgid "User Roles are restored to WordPress default values. "
|
585 |
-
msgstr "יכולות סוגי המשתמשים שוחזרו מקובץ הגיבוי"
|
586 |
-
|
587 |
-
#: ../includes/ure-options.php:136
|
588 |
-
msgid "Error: "
|
589 |
-
msgstr "שגיאה:"
|
590 |
-
|
591 |
-
#: ../includes/ure-options.php:136
|
592 |
-
#: ../includes/ure-options.php:156
|
593 |
-
msgid "Role"
|
594 |
-
msgstr "סוג משתמש:"
|
595 |
-
|
596 |
-
#: ../includes/ure-options.php:136
|
597 |
-
msgid "does not exist"
|
598 |
-
msgstr "לא נמצא"
|
599 |
-
|
600 |
-
#: ../includes/ure-options.php:156
|
601 |
-
msgid "is updated successfully"
|
602 |
-
msgstr "עודכן בהצלחה"
|
603 |
-
|
604 |
-
#: ../includes/ure-options.php:161
|
605 |
-
#: ../includes/ure-options.php:174
|
606 |
-
#, fuzzy
|
607 |
-
msgid "Error occured during role update"
|
608 |
-
msgstr "ארעה שגיאה במהלך נסיון המחיקה של סוג המשתמש"
|
609 |
-
|
610 |
-
#: ../includes/ure-options.php:169
|
611 |
-
msgid "User"
|
612 |
-
msgstr "משתמש"
|
613 |
-
|
614 |
-
#: ../includes/ure-options.php:169
|
615 |
-
msgid "capabilities are updated successfully"
|
616 |
-
msgstr "היכולות עודכנו בהצלחה"
|
617 |
-
|
618 |
-
#: ../includes/ure-options.php:206
|
619 |
-
msgid "About this Plugin:"
|
620 |
-
msgstr "אודות תוסף זה:"
|
621 |
-
|
622 |
-
#: ../includes/ure-options.php:207
|
623 |
-
msgid "Author's website"
|
624 |
-
msgstr "אתר היוצר"
|
625 |
-
|
626 |
-
#: ../includes/ure-options.php:208
|
627 |
-
msgid "Plugin webpage"
|
628 |
-
msgstr "דף התוסף"
|
629 |
-
|
630 |
-
#: ../includes/ure-options.php:210
|
631 |
-
msgid "FAQ"
|
632 |
-
msgstr "שאלות נפוצות"
|
633 |
-
|
634 |
-
#~ msgid "Database operation error. Check log file."
|
635 |
-
#~ msgstr "שגיאת מסד נתונים, אנא בדוק את קובץ היומן."
|
636 |
-
|
637 |
-
#~ msgid ""
|
638 |
-
#~ "No backup data. It is created automatically before the first role data "
|
639 |
-
#~ "update."
|
640 |
-
#~ msgstr ""
|
641 |
-
#~ "אין קובץ גיבוי. מידע זה נוצר באופן אוטומטי לפני השינוי הראשון שאתם עושים "
|
642 |
-
#~ "בהגדרות סוגי המשתמשים."
|
643 |
-
|
644 |
-
#~ msgid " Name must contain latin characters and digits only!"
|
645 |
-
#~ msgstr "שם חייב להכיל אותיות באנגלית וספרות בלבד!"
|
646 |
-
|
647 |
-
#~ msgid "Change Default Role"
|
648 |
-
#~ msgstr "שנה את סוג משתמש המוגדר כברירת מחדל"
|
649 |
-
|
650 |
-
#~ msgid ""
|
651 |
-
#~ "Restore Roles from backup copy. Be careful, backup was created when you "
|
652 |
-
#~ "started URE 1st time. All changes you made after that will be lost"
|
653 |
-
#~ msgstr ""
|
654 |
-
#~ "שחזור עותק גיבוי של תפקידים. שים לב: הגיבוי נוצר מתי שהתחלת להשתמש בתוסף "
|
655 |
-
#~ "בפעם הראשונה, כל השינויים שביצעת לאחר מכן יאבדו."
|
656 |
-
|
657 |
-
#~ msgid "Role \"%s\" update: please confirm to continue"
|
658 |
-
#~ msgstr "סוג המשתמש \"%s\" עודכן: אנא אשר והמשך"
|
659 |
-
|
660 |
-
#~ msgid "Save Changes"
|
661 |
-
#~ msgstr "שמור שינויים"
|
662 |
-
|
663 |
-
#~ msgid "Cancel not saved changes"
|
664 |
-
#~ msgstr "בטל שינויים שלא נשמרו"
|
665 |
-
|
666 |
-
#~ msgid "Restore Roles from backup copy"
|
667 |
-
#~ msgstr "שחזר סוגי משתמשים מהעתק הגיבוי"
|
668 |
-
|
669 |
-
#~ msgid "Name: "
|
670 |
-
#~ msgstr "שם:"
|
671 |
-
|
672 |
-
#~ msgid "Add"
|
673 |
-
#~ msgstr "הוסף"
|
674 |
-
|
675 |
-
#~ msgid "Add New User Role"
|
676 |
-
#~ msgstr "הוסף סוג משתמש חדש"
|
677 |
-
|
678 |
-
#~ msgid "Default Role for New User"
|
679 |
-
#~ msgstr "סוג משתמש ברירת מחדל למשתמשים חדשים"
|
680 |
-
|
681 |
-
#~ msgid "Change"
|
682 |
-
#~ msgstr "שנה"
|
683 |
-
|
684 |
-
#~ msgid "Delete User Role"
|
685 |
-
#~ msgstr "מחק סוג משתמש"
|
686 |
-
|
687 |
-
#~ msgid "Remove"
|
688 |
-
#~ msgstr "הסר"
|
689 |
-
|
690 |
-
#~ msgid "Remove User Capability"
|
691 |
-
#~ msgstr "הסר יכולת משתמש"
|
692 |
-
|
693 |
-
#~ msgid "User \"%s\" update: please confirm to continue"
|
694 |
-
#~ msgstr "עדכון המשתמש \"%s\" : אנא אשר והמשך"
|
695 |
-
|
696 |
-
#~ msgid "Role:"
|
697 |
-
#~ msgstr "סוג משתמש"
|
698 |
-
|
699 |
-
#~ msgid "Add capabilities to this user:"
|
700 |
-
#~ msgstr "הוסף יכולות למשתמש זה:"
|
701 |
-
|
702 |
-
#~ msgid "Greetings:"
|
703 |
-
#~ msgstr "ברכות:"
|
704 |
-
|
705 |
-
#~ msgid "It's me, the author"
|
706 |
-
#~ msgstr "זה אני, יוצר התוסף"
|
707 |
-
|
708 |
-
#~ msgid "For the help with Belorussian translation"
|
709 |
-
#~ msgstr "לעזרה עם תרגום לבלרוסית"
|
710 |
-
|
711 |
-
#~ msgid "For the help with Brasilian translation"
|
712 |
-
#~ msgstr "לעזרה עם תרגום לברזילאית"
|
713 |
-
|
714 |
-
#, fuzzy
|
715 |
-
#~ msgid "For the help with Brasilian Portuguese translation"
|
716 |
-
#~ msgstr "לעזרה עם תרגום לברזילאית"
|
717 |
-
|
718 |
-
#~ msgid "For the help with Chinese translation"
|
719 |
-
#~ msgstr "לעזרה עם תרגום לסינית"
|
720 |
-
|
721 |
-
#~ msgid "For the help with Dutch translation"
|
722 |
-
#~ msgstr "לעזרה עם תרגום להולנדית"
|
723 |
-
|
724 |
-
#~ msgid "For the help with Finnish translation"
|
725 |
-
#~ msgstr "לעזרה עם תרגום לפינית"
|
726 |
-
|
727 |
-
#~ msgid "For the help with French translation"
|
728 |
-
#~ msgstr "לעזרה עם תרגום לצרפתית"
|
729 |
-
|
730 |
-
#~ msgid "For the help with German translation"
|
731 |
-
#~ msgstr "לעזרה עם תרגום לגרמנית"
|
732 |
-
|
733 |
-
#~ msgid "For the help with Hungarian translation"
|
734 |
-
#~ msgstr "לעזרה עם תרגום להונגרית"
|
735 |
-
|
736 |
-
#~ msgid "For the help with Italian translation"
|
737 |
-
#~ msgstr "לעזרה עם תרגום לאילטקית"
|
738 |
-
|
739 |
-
#~ msgid "For the help with Japanese translation"
|
740 |
-
#~ msgstr "לעזרה עם תרגום ליפנית"
|
741 |
-
|
742 |
-
#~ msgid "For the help with Persian translation"
|
743 |
-
#~ msgstr "לעזרה עם תרגום לפרסית"
|
744 |
-
|
745 |
-
#~ msgid "For the help with Polish translation"
|
746 |
-
#~ msgstr "לעזרה עם תרגום לפולנית"
|
747 |
-
|
748 |
-
#~ msgid "For the help with Spanish translation"
|
749 |
-
#~ msgstr "לעזרה עם תרגום לספרדית"
|
750 |
-
|
751 |
-
#~ msgid "For the help with Swedish translation"
|
752 |
-
#~ msgstr "לעזרה עם תרגום לשוודית"
|
753 |
-
|
754 |
-
#~ msgid "For the help with Turkish translation"
|
755 |
-
#~ msgstr "לעזרה עם תרגום לטורקית"
|
756 |
-
|
757 |
-
#~ msgid "For the code to hide administrator role"
|
758 |
-
#~ msgstr "עבור קוד כדי להחביא את סוג משתמש מנהל"
|
759 |
-
|
760 |
-
#~ msgid "For the code enhancement suggestion"
|
761 |
-
#~ msgstr "הצעות לשיפור קוד"
|
762 |
-
|
763 |
-
#~ msgid ""
|
764 |
-
#~ "Do you wish to see your name with link to your site here? You are "
|
765 |
-
#~ "welcome! Your help with translation and new ideas are very appreciated."
|
766 |
-
#~ msgstr ""
|
767 |
-
#~ "רוצה לראות את השם שלך עם קישור אל האתר שלך כאן? אתה מוזמן לעזור עם התרגום "
|
768 |
-
#~ "ועם רעיונות ושיפורים חדשים"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
lang/ure-hi_IN.mo
DELETED
Binary file
|
lang/ure-hi_IN.po
DELETED
@@ -1,783 +0,0 @@
|
|
1 |
-
msgid ""
|
2 |
-
msgstr ""
|
3 |
-
"Project-Id-Version: User Role Editor\n"
|
4 |
-
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2013-05-17 11:15+0700\n"
|
6 |
-
"PO-Revision-Date: \n"
|
7 |
-
"Last-Translator: Vladimir Garagulya <vladimir@shinephp.com>\n"
|
8 |
-
"Language-Team: Team Outshine <ash.pr@outshinesolutions.com>\n"
|
9 |
-
"Language: \n"
|
10 |
-
"MIME-Version: 1.0\n"
|
11 |
-
"Content-Type: text/plain; charset=UTF-8\n"
|
12 |
-
"Content-Transfer-Encoding: 8bit\n"
|
13 |
-
"X-Poedit-Language: Hindi\n"
|
14 |
-
"X-Poedit-Country: INDIA\n"
|
15 |
-
"X-Poedit-SourceCharset: utf-8\n"
|
16 |
-
"X-Poedit-KeywordsList: __;_e\n"
|
17 |
-
"X-Poedit-Basepath: .\n"
|
18 |
-
"X-Poedit-SearchPath-0: ..\n"
|
19 |
-
|
20 |
-
#: ../user-role-editor.php:34
|
21 |
-
#, fuzzy, php-format
|
22 |
-
msgid "User Role Editor requires PHP %s or newer."
|
23 |
-
msgstr "उपयोगकर्ता भूमिका संपादक PHP 5.0 या नए की आवश्यकता है.s"
|
24 |
-
|
25 |
-
#: ../user-role-editor.php:35
|
26 |
-
#: ../user-role-editor.php:107
|
27 |
-
msgid "Please update!"
|
28 |
-
msgstr "अपडेट करें!"
|
29 |
-
|
30 |
-
#: ../user-role-editor.php:80
|
31 |
-
msgid "Only"
|
32 |
-
msgstr "केवल"
|
33 |
-
|
34 |
-
#: ../user-role-editor.php:80
|
35 |
-
msgid "is allowed to use"
|
36 |
-
msgstr "उपयोग करने की अनुमति दी"
|
37 |
-
|
38 |
-
#: ../user-role-editor.php:86
|
39 |
-
#: ../user-role-editor.php:312
|
40 |
-
#: ../user-role-editor.php:368
|
41 |
-
msgid "User Role Editor"
|
42 |
-
msgstr "उपयोगकर्ता भूमिका संपादक"
|
43 |
-
|
44 |
-
#: ../user-role-editor.php:106
|
45 |
-
#, fuzzy, php-format
|
46 |
-
msgid "User Role Editor requires WordPress %s or newer."
|
47 |
-
msgstr "उपयोगकर्ता भूमिका संपादक 3.0 WordPress के या नए की आवश्यकता है."
|
48 |
-
|
49 |
-
#: ../user-role-editor.php:139
|
50 |
-
msgid "Select All"
|
51 |
-
msgstr ""
|
52 |
-
|
53 |
-
#: ../user-role-editor.php:140
|
54 |
-
msgid "Unselect All"
|
55 |
-
msgstr ""
|
56 |
-
|
57 |
-
#: ../user-role-editor.php:141
|
58 |
-
msgid "Reverse"
|
59 |
-
msgstr ""
|
60 |
-
|
61 |
-
#: ../user-role-editor.php:142
|
62 |
-
msgid "Update"
|
63 |
-
msgstr "अपडेट"
|
64 |
-
|
65 |
-
#: ../user-role-editor.php:143
|
66 |
-
#, fuzzy
|
67 |
-
msgid "Please confirm permissions update"
|
68 |
-
msgstr "जारी रखने के लिए पुष्टि करें."
|
69 |
-
|
70 |
-
#: ../user-role-editor.php:144
|
71 |
-
msgid "Add New Role"
|
72 |
-
msgstr "नई भूमिका में जोड़ें"
|
73 |
-
|
74 |
-
#: ../user-role-editor.php:145
|
75 |
-
#, fuzzy
|
76 |
-
msgid " Role name (ID) can not be empty!"
|
77 |
-
msgstr "नाम खाली नहीं हो सकता!"
|
78 |
-
|
79 |
-
#: ../user-role-editor.php:146
|
80 |
-
#, fuzzy
|
81 |
-
msgid " Role name (ID) must contain latin characters, digits, hyphens or underscore only!"
|
82 |
-
msgstr "त्रुटि: भूमिका नाम लैटिन अक्षर और अंक ही होना चाहिए!"
|
83 |
-
|
84 |
-
#: ../user-role-editor.php:147
|
85 |
-
#, fuzzy
|
86 |
-
msgid "Add Role"
|
87 |
-
msgstr "नई भूमिका में जोड़ें"
|
88 |
-
|
89 |
-
#: ../user-role-editor.php:148
|
90 |
-
msgid "Delete Role"
|
91 |
-
msgstr "भूमिका हटाएँ"
|
92 |
-
|
93 |
-
#: ../user-role-editor.php:149
|
94 |
-
msgid "Cancel"
|
95 |
-
msgstr "रद्द करना"
|
96 |
-
|
97 |
-
#: ../user-role-editor.php:150
|
98 |
-
#, fuzzy
|
99 |
-
msgid "Add Capability"
|
100 |
-
msgstr "नई क्षमता जोड़ें"
|
101 |
-
|
102 |
-
#: ../user-role-editor.php:151
|
103 |
-
#: ../user-role-editor.php:156
|
104 |
-
#, fuzzy
|
105 |
-
msgid "Delete Capability"
|
106 |
-
msgstr "क्षमता निकालें"
|
107 |
-
|
108 |
-
#: ../user-role-editor.php:152
|
109 |
-
msgid "Reset"
|
110 |
-
msgstr "रीसेट करें"
|
111 |
-
|
112 |
-
#: ../user-role-editor.php:153
|
113 |
-
msgid "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?"
|
114 |
-
msgstr ""
|
115 |
-
|
116 |
-
#: ../user-role-editor.php:154
|
117 |
-
#, fuzzy
|
118 |
-
msgid "Default Role"
|
119 |
-
msgstr "भूमिका हटाएँ"
|
120 |
-
|
121 |
-
#: ../user-role-editor.php:155
|
122 |
-
#, fuzzy
|
123 |
-
msgid "Set New Default Role"
|
124 |
-
msgstr "डिफ़ॉल्ट उपयोगकर्ता भूमिका के रूप में सेट करें"
|
125 |
-
|
126 |
-
#: ../user-role-editor.php:157
|
127 |
-
msgid "Warning! Be careful - removing critical capability could crash some plugin or other custom code"
|
128 |
-
msgstr "चेतावनी!सावधान रहो - महत्वपूर्ण क्षमता को हटाने के लिए कुछ प्लगइन या अन्य कस्टम कोड दुर्घटना सकता है"
|
129 |
-
|
130 |
-
#: ../user-role-editor.php:158
|
131 |
-
#, fuzzy
|
132 |
-
msgid " Capability name (ID) can not be empty!"
|
133 |
-
msgstr "नाम खाली नहीं हो सकता!"
|
134 |
-
|
135 |
-
#: ../user-role-editor.php:159
|
136 |
-
#, fuzzy
|
137 |
-
msgid " Capability name (ID) must contain latin characters, digits, hyphens or underscore only!"
|
138 |
-
msgstr "त्रुटि: क्षमता के नाम लैटिन अक्षर और अंक ही होना चाहिए!"
|
139 |
-
|
140 |
-
#: ../user-role-editor.php:284
|
141 |
-
msgid "Settings"
|
142 |
-
msgstr "सेटिंग्स"
|
143 |
-
|
144 |
-
#: ../user-role-editor.php:294
|
145 |
-
#: ../includes/ure-options.php:209
|
146 |
-
msgid "Changelog"
|
147 |
-
msgstr "Changelog"
|
148 |
-
|
149 |
-
#: ../user-role-editor.php:342
|
150 |
-
msgid "Capabilities"
|
151 |
-
msgstr "क्षमताएं"
|
152 |
-
|
153 |
-
#: ../user-role-editor.php:371
|
154 |
-
#: ../user-role-editor.php:407
|
155 |
-
#, fuzzy
|
156 |
-
msgid "Other Roles"
|
157 |
-
msgstr "भूमिका हटाएँ"
|
158 |
-
|
159 |
-
#: ../user-role-editor.php:381
|
160 |
-
#, fuzzy
|
161 |
-
msgid "Edit"
|
162 |
-
msgstr "संपादक"
|
163 |
-
|
164 |
-
#: ../includes/ure-lib.php:35
|
165 |
-
msgid "Error is occur. Please check the log file."
|
166 |
-
msgstr "त्रुटि हुई है. लॉग फ़ाइल की जाँच करें."
|
167 |
-
|
168 |
-
#: ../includes/ure-lib.php:364
|
169 |
-
msgid "Backup record is created for the current role capabilities"
|
170 |
-
msgstr "बैकअप रिकॉर्ड वर्तमान भूमिका क्षमताओं के लिए बनाया जाता है"
|
171 |
-
|
172 |
-
#: ../includes/ure-lib.php:481
|
173 |
-
#, fuzzy
|
174 |
-
msgid "Error: Role ID must contain latin characters, digits, hyphens or underscore only!"
|
175 |
-
msgstr "त्रुटि: भूमिका नाम लैटिन अक्षर और अंक ही होना चाहिए!"
|
176 |
-
|
177 |
-
#: ../includes/ure-lib.php:496
|
178 |
-
#, php-format
|
179 |
-
msgid "Role %s exists already"
|
180 |
-
msgstr "भूमिका %s पहले से मौजूद है"
|
181 |
-
|
182 |
-
#: ../includes/ure-lib.php:511
|
183 |
-
msgid "Error is encountered during new role create operation"
|
184 |
-
msgstr "त्रुटि आपरेशन बनाते नई भूमिका के दौरान सामना करना पड़ा है"
|
185 |
-
|
186 |
-
#: ../includes/ure-lib.php:513
|
187 |
-
#, php-format
|
188 |
-
msgid "Role %s is created successfully"
|
189 |
-
msgstr "भूमिका सफलतापूर्वक बनाई गई है %s"
|
190 |
-
|
191 |
-
#: ../includes/ure-lib.php:597
|
192 |
-
msgid "Error encountered during role delete operation"
|
193 |
-
msgstr "भूमिका हटा आपरेशन के दौरान त्रुटि का सामना करना पड़ा"
|
194 |
-
|
195 |
-
#: ../includes/ure-lib.php:599
|
196 |
-
#, php-format
|
197 |
-
msgid "Role %s is deleted successfully"
|
198 |
-
msgstr "भूमिका%s को सफलतापूर्वक नष्ट कर दिया है"
|
199 |
-
|
200 |
-
#: ../includes/ure-lib.php:619
|
201 |
-
msgid "Error encountered during default role change operation"
|
202 |
-
msgstr "डिफ़ॉल्ट भूमिका बदलने के ऑपरेशन के दौरान त्रुटि का सामना करना पड़ा"
|
203 |
-
|
204 |
-
#: ../includes/ure-lib.php:625
|
205 |
-
#, php-format
|
206 |
-
msgid "Default role for new users is set to %s successfully"
|
207 |
-
msgstr "नए उपयोगकर्ताओं के लिए डिफ़ॉल्ट भूमिका%s करने के लिए सेट कर दिया जाता है "
|
208 |
-
|
209 |
-
#: ../includes/ure-lib.php:652
|
210 |
-
msgid "Editor"
|
211 |
-
msgstr "संपादक"
|
212 |
-
|
213 |
-
#: ../includes/ure-lib.php:653
|
214 |
-
msgid "Author"
|
215 |
-
msgstr "लेखक"
|
216 |
-
|
217 |
-
#: ../includes/ure-lib.php:654
|
218 |
-
msgid "Contributor"
|
219 |
-
msgstr "Contributor"
|
220 |
-
|
221 |
-
#: ../includes/ure-lib.php:655
|
222 |
-
msgid "Subscriber"
|
223 |
-
msgstr "ग्राहक"
|
224 |
-
|
225 |
-
#: ../includes/ure-lib.php:657
|
226 |
-
msgid "Switch themes"
|
227 |
-
msgstr "विषय स्विच करें"
|
228 |
-
|
229 |
-
#: ../includes/ure-lib.php:658
|
230 |
-
msgid "Edit themes"
|
231 |
-
msgstr "संपादन विषय"
|
232 |
-
|
233 |
-
#: ../includes/ure-lib.php:659
|
234 |
-
msgid "Activate plugins"
|
235 |
-
msgstr "प्लगिन सक्रिय करें"
|
236 |
-
|
237 |
-
#: ../includes/ure-lib.php:660
|
238 |
-
msgid "Edit plugins"
|
239 |
-
msgstr "संपादित करें प्लगिन"
|
240 |
-
|
241 |
-
#: ../includes/ure-lib.php:661
|
242 |
-
msgid "Edit users"
|
243 |
-
msgstr "उपयोगकर्ताओं को संपादित करें"
|
244 |
-
|
245 |
-
#: ../includes/ure-lib.php:662
|
246 |
-
msgid "Edit files"
|
247 |
-
msgstr "फ़ाइलों को संपादित करें"
|
248 |
-
|
249 |
-
#: ../includes/ure-lib.php:663
|
250 |
-
msgid "Manage options"
|
251 |
-
msgstr "विकल्पों को शासन"
|
252 |
-
|
253 |
-
#: ../includes/ure-lib.php:664
|
254 |
-
msgid "Moderate comments"
|
255 |
-
msgstr "मध्यम टिप्पणी"
|
256 |
-
|
257 |
-
#: ../includes/ure-lib.php:665
|
258 |
-
msgid "Manage categories"
|
259 |
-
msgstr "श्रेणियां प्रबंधित करें"
|
260 |
-
|
261 |
-
#: ../includes/ure-lib.php:666
|
262 |
-
msgid "Manage links"
|
263 |
-
msgstr "लिंक प्रबंधित करें"
|
264 |
-
|
265 |
-
#: ../includes/ure-lib.php:667
|
266 |
-
msgid "Upload files"
|
267 |
-
msgstr "फ़ाइलें अपलोड करें"
|
268 |
-
|
269 |
-
#: ../includes/ure-lib.php:668
|
270 |
-
msgid "Import"
|
271 |
-
msgstr "आयात"
|
272 |
-
|
273 |
-
#: ../includes/ure-lib.php:669
|
274 |
-
msgid "Unfiltered html"
|
275 |
-
msgstr "अनफ़िल्टर्ड एचटीएमएल"
|
276 |
-
|
277 |
-
#: ../includes/ure-lib.php:670
|
278 |
-
msgid "Edit posts"
|
279 |
-
msgstr "प्रविष्टियाँ संपादित करें"
|
280 |
-
|
281 |
-
#: ../includes/ure-lib.php:671
|
282 |
-
msgid "Edit others posts"
|
283 |
-
msgstr "दूसरों की प्रविष्टियाँ संपादित करें"
|
284 |
-
|
285 |
-
#: ../includes/ure-lib.php:672
|
286 |
-
msgid "Edit published posts"
|
287 |
-
msgstr "प्रकाशित पोस्ट को संपादित करें"
|
288 |
-
|
289 |
-
#: ../includes/ure-lib.php:673
|
290 |
-
msgid "Publish posts"
|
291 |
-
msgstr "पोस्ट प्रकाशित करें"
|
292 |
-
|
293 |
-
#: ../includes/ure-lib.php:674
|
294 |
-
msgid "Edit pages"
|
295 |
-
msgstr "पृष्ठों को संपादित"
|
296 |
-
|
297 |
-
#: ../includes/ure-lib.php:675
|
298 |
-
msgid "Read"
|
299 |
-
msgstr "पढ़ना"
|
300 |
-
|
301 |
-
#: ../includes/ure-lib.php:676
|
302 |
-
msgid "Level 10"
|
303 |
-
msgstr " स्तर 10"
|
304 |
-
|
305 |
-
#: ../includes/ure-lib.php:677
|
306 |
-
msgid "Level 9"
|
307 |
-
msgstr " स्तर 9"
|
308 |
-
|
309 |
-
#: ../includes/ure-lib.php:678
|
310 |
-
msgid "Level 8"
|
311 |
-
msgstr " स्तर 8"
|
312 |
-
|
313 |
-
#: ../includes/ure-lib.php:679
|
314 |
-
msgid "Level 7"
|
315 |
-
msgstr " स्तर 7"
|
316 |
-
|
317 |
-
#: ../includes/ure-lib.php:680
|
318 |
-
msgid "Level 6"
|
319 |
-
msgstr " स्तर 6"
|
320 |
-
|
321 |
-
#: ../includes/ure-lib.php:681
|
322 |
-
msgid "Level 5"
|
323 |
-
msgstr " स्तर 5"
|
324 |
-
|
325 |
-
#: ../includes/ure-lib.php:682
|
326 |
-
msgid "Level 4"
|
327 |
-
msgstr " स्तर 4"
|
328 |
-
|
329 |
-
#: ../includes/ure-lib.php:683
|
330 |
-
msgid "Level 3"
|
331 |
-
msgstr " स्तर 3"
|
332 |
-
|
333 |
-
#: ../includes/ure-lib.php:684
|
334 |
-
msgid "Level 2"
|
335 |
-
msgstr " स्तर 2"
|
336 |
-
|
337 |
-
#: ../includes/ure-lib.php:685
|
338 |
-
msgid "Level 1"
|
339 |
-
msgstr " स्तर 1"
|
340 |
-
|
341 |
-
#: ../includes/ure-lib.php:686
|
342 |
-
msgid "Level 0"
|
343 |
-
msgstr " स्तर 0"
|
344 |
-
|
345 |
-
#: ../includes/ure-lib.php:687
|
346 |
-
msgid "Edit others pages"
|
347 |
-
msgstr "दूसरों के पृष्ठों को संपादित करें"
|
348 |
-
|
349 |
-
#: ../includes/ure-lib.php:688
|
350 |
-
msgid "Edit published pages"
|
351 |
-
msgstr "प्रकाशित पृष्ठों को संपादित करें"
|
352 |
-
|
353 |
-
#: ../includes/ure-lib.php:689
|
354 |
-
msgid "Publish pages"
|
355 |
-
msgstr "पृष्ठों को प्रकाशित"
|
356 |
-
|
357 |
-
#: ../includes/ure-lib.php:690
|
358 |
-
msgid "Delete pages"
|
359 |
-
msgstr "पृष्ठों को हटा"
|
360 |
-
|
361 |
-
#: ../includes/ure-lib.php:691
|
362 |
-
msgid "Delete others pages"
|
363 |
-
msgstr "दूसरों के पृष्ठों को हटाएँ"
|
364 |
-
|
365 |
-
#: ../includes/ure-lib.php:692
|
366 |
-
msgid "Delete published pages"
|
367 |
-
msgstr "प्रकाशित पृष्ठों को हटाएँ"
|
368 |
-
|
369 |
-
#: ../includes/ure-lib.php:693
|
370 |
-
msgid "Delete posts"
|
371 |
-
msgstr "प्रविष्टियाँ हटाएँ"
|
372 |
-
|
373 |
-
#: ../includes/ure-lib.php:694
|
374 |
-
msgid "Delete others posts"
|
375 |
-
msgstr "दूसरों की प्रविष्टियाँ हटाएँ"
|
376 |
-
|
377 |
-
#: ../includes/ure-lib.php:695
|
378 |
-
msgid "Delete published posts"
|
379 |
-
msgstr "प्रकाशित पोस्ट हटाएँ"
|
380 |
-
|
381 |
-
#: ../includes/ure-lib.php:696
|
382 |
-
msgid "Delete private posts"
|
383 |
-
msgstr "निजी पोस्ट हटाएँ"
|
384 |
-
|
385 |
-
#: ../includes/ure-lib.php:697
|
386 |
-
msgid "Edit private posts"
|
387 |
-
msgstr "निजी पोस्ट को संपादित करें"
|
388 |
-
|
389 |
-
#: ../includes/ure-lib.php:698
|
390 |
-
msgid "Read private posts"
|
391 |
-
msgstr "निजी पोस्ट पढ़ें"
|
392 |
-
|
393 |
-
#: ../includes/ure-lib.php:699
|
394 |
-
msgid "Delete private pages"
|
395 |
-
msgstr "निजी पृष्ठों को हटाएँ"
|
396 |
-
|
397 |
-
#: ../includes/ure-lib.php:700
|
398 |
-
msgid "Edit private pages"
|
399 |
-
msgstr "निजी पृष्ठों को संपादित करें"
|
400 |
-
|
401 |
-
#: ../includes/ure-lib.php:701
|
402 |
-
msgid "Read private pages"
|
403 |
-
msgstr "निजी पृष्ठों पढ़ें"
|
404 |
-
|
405 |
-
#: ../includes/ure-lib.php:702
|
406 |
-
msgid "Delete users"
|
407 |
-
msgstr "उपयोगकर्ताओं को हटाएँ"
|
408 |
-
|
409 |
-
#: ../includes/ure-lib.php:703
|
410 |
-
msgid "Create users"
|
411 |
-
msgstr "उपयोगकर्ता बनाएँ"
|
412 |
-
|
413 |
-
#: ../includes/ure-lib.php:704
|
414 |
-
msgid "Unfiltered upload"
|
415 |
-
msgstr "अपलोड अनफ़िल्टर्ड"
|
416 |
-
|
417 |
-
#: ../includes/ure-lib.php:705
|
418 |
-
msgid "Edit dashboard"
|
419 |
-
msgstr "संपादन डैशबोर्ड"
|
420 |
-
|
421 |
-
#: ../includes/ure-lib.php:706
|
422 |
-
msgid "Update plugins"
|
423 |
-
msgstr "अपडेट प्लगिन"
|
424 |
-
|
425 |
-
#: ../includes/ure-lib.php:707
|
426 |
-
msgid "Delete plugins"
|
427 |
-
msgstr "प्लगिन हटाएँ"
|
428 |
-
|
429 |
-
#: ../includes/ure-lib.php:708
|
430 |
-
msgid "Install plugins"
|
431 |
-
msgstr "plugins स्थापित"
|
432 |
-
|
433 |
-
#: ../includes/ure-lib.php:709
|
434 |
-
msgid "Update themes"
|
435 |
-
msgstr "अपडेट विषय"
|
436 |
-
|
437 |
-
#: ../includes/ure-lib.php:710
|
438 |
-
msgid "Install themes"
|
439 |
-
msgstr "विषय स्थापित"
|
440 |
-
|
441 |
-
#: ../includes/ure-lib.php:711
|
442 |
-
msgid "Update core"
|
443 |
-
msgstr "कोर अपडेट"
|
444 |
-
|
445 |
-
#: ../includes/ure-lib.php:712
|
446 |
-
msgid "List users"
|
447 |
-
msgstr "उपयोगकर्ताओं की सूची"
|
448 |
-
|
449 |
-
#: ../includes/ure-lib.php:713
|
450 |
-
msgid "Remove users"
|
451 |
-
msgstr "उपयोगकर्ताओं को निकालना"
|
452 |
-
|
453 |
-
#: ../includes/ure-lib.php:714
|
454 |
-
msgid "Add users"
|
455 |
-
msgstr "उपयोगकर्ता जोड़ें"
|
456 |
-
|
457 |
-
#: ../includes/ure-lib.php:715
|
458 |
-
msgid "Promote users"
|
459 |
-
msgstr "उपयोगकर्ता को बढ़ावा देना"
|
460 |
-
|
461 |
-
#: ../includes/ure-lib.php:716
|
462 |
-
msgid "Edit theme options"
|
463 |
-
msgstr "विषय विकल्प संपादित करें"
|
464 |
-
|
465 |
-
#: ../includes/ure-lib.php:717
|
466 |
-
msgid "Delete themes"
|
467 |
-
msgstr "विषय हटाएँ"
|
468 |
-
|
469 |
-
#: ../includes/ure-lib.php:718
|
470 |
-
msgid "Export"
|
471 |
-
msgstr "निर्यात"
|
472 |
-
|
473 |
-
#: ../includes/ure-lib.php:834
|
474 |
-
msgid "Error: Capability name must contain latin characters and digits only!"
|
475 |
-
msgstr "त्रुटि: क्षमता के नाम लैटिन अक्षर और अंक ही होना चाहिए!"
|
476 |
-
|
477 |
-
#: ../includes/ure-lib.php:846
|
478 |
-
#, php-format
|
479 |
-
msgid "Capability %s is added successfully"
|
480 |
-
msgstr "क्षमता%s सफलतापूर्वक जोड़ा जाता है"
|
481 |
-
|
482 |
-
#: ../includes/ure-lib.php:848
|
483 |
-
#, php-format
|
484 |
-
msgid "Capability %s exists already"
|
485 |
-
msgstr "क्षमता%s पहले से मौजूद है"
|
486 |
-
|
487 |
-
#: ../includes/ure-lib.php:997
|
488 |
-
#, php-format
|
489 |
-
msgid "Error! You do not have permission to delete this capability: %s!"
|
490 |
-
msgstr "रुटि!आपको इस क्षमता को नष्ट करने की अनुमति नहीं है: %s!"
|
491 |
-
|
492 |
-
#: ../includes/ure-lib.php:1016
|
493 |
-
#, php-format
|
494 |
-
msgid "Capability %s is removed successfully"
|
495 |
-
msgstr "क्षमता%s सफलतापूर्वक निकाल दिया जाता है"
|
496 |
-
|
497 |
-
#: ../includes/ure-lib.php:1083
|
498 |
-
msgid "Help"
|
499 |
-
msgstr "मदद"
|
500 |
-
|
501 |
-
#: ../includes/ure-role-edit.php:29
|
502 |
-
msgid "None"
|
503 |
-
msgstr "कोई नहीं"
|
504 |
-
|
505 |
-
#: ../includes/ure-role-edit.php:67
|
506 |
-
msgid "Select Role and change its capabilities list"
|
507 |
-
msgstr "भूमिका का चयन करें और अपनी क्षमताओं की सूची परिवर्तन"
|
508 |
-
|
509 |
-
#: ../includes/ure-role-edit.php:69
|
510 |
-
#: ../includes/ure-role-edit.php:166
|
511 |
-
msgid "Select Role:"
|
512 |
-
msgstr "भूमिका का चयन करें:"
|
513 |
-
|
514 |
-
#: ../includes/ure-role-edit.php:79
|
515 |
-
#: ../includes/ure-user-edit.php:38
|
516 |
-
msgid "Show capabilities in human readable form"
|
517 |
-
msgstr "मानव पठनीय रूप में क्षमताओं दिखाएँ"
|
518 |
-
|
519 |
-
#: ../includes/ure-role-edit.php:88
|
520 |
-
#: ../includes/ure-user-edit.php:47
|
521 |
-
msgid "Show deprecated capabilities"
|
522 |
-
msgstr "पदावनत क्षमताओं दिखाएँ"
|
523 |
-
|
524 |
-
#: ../includes/ure-role-edit.php:92
|
525 |
-
msgid "If checked, then apply action to ALL sites of this Network"
|
526 |
-
msgstr "यदि जाँच की, तो इस नेटवर्क के सभी साइटों के लिए कार्रवाई लागू"
|
527 |
-
|
528 |
-
#: ../includes/ure-role-edit.php:102
|
529 |
-
msgid "Apply to All Sites"
|
530 |
-
msgstr "सभी साइटों के लिए लागू"
|
531 |
-
|
532 |
-
#: ../includes/ure-role-edit.php:109
|
533 |
-
#: ../includes/ure-user-edit.php:88
|
534 |
-
#, fuzzy
|
535 |
-
msgid "Core capabilities:"
|
536 |
-
msgstr "क्षमताएं"
|
537 |
-
|
538 |
-
#: ../includes/ure-role-edit.php:124
|
539 |
-
#: ../includes/ure-user-edit.php:103
|
540 |
-
#, fuzzy
|
541 |
-
msgid "Custom capabilities:"
|
542 |
-
msgstr "क्षमताएं"
|
543 |
-
|
544 |
-
#: ../includes/ure-role-edit.php:155
|
545 |
-
msgid "Role name (ID): "
|
546 |
-
msgstr ""
|
547 |
-
|
548 |
-
#: ../includes/ure-role-edit.php:157
|
549 |
-
msgid "Display Role Name: "
|
550 |
-
msgstr ""
|
551 |
-
|
552 |
-
#: ../includes/ure-role-edit.php:159
|
553 |
-
msgid "Make copy of: "
|
554 |
-
msgstr "प्रतिलिपि बनाएँ:"
|
555 |
-
|
556 |
-
#: ../includes/ure-role-edit.php:181
|
557 |
-
#, fuzzy
|
558 |
-
msgid "Delete:"
|
559 |
-
msgstr "हटाना"
|
560 |
-
|
561 |
-
#: ../includes/ure-role-edit.php:188
|
562 |
-
msgid "Capability name (ID): "
|
563 |
-
msgstr ""
|
564 |
-
|
565 |
-
#: ../includes/ure-user-edit.php:22
|
566 |
-
msgid "Change capabilities for user"
|
567 |
-
msgstr "उपयोगकर्ता के लिए क्षमताओं को बदलें"
|
568 |
-
|
569 |
-
#: ../includes/ure-user-edit.php:52
|
570 |
-
msgid "Primary Role:"
|
571 |
-
msgstr ""
|
572 |
-
|
573 |
-
#: ../includes/ure-user-edit.php:62
|
574 |
-
msgid "bbPress Role:"
|
575 |
-
msgstr ""
|
576 |
-
|
577 |
-
#: ../includes/ure-user-edit.php:72
|
578 |
-
#, fuzzy
|
579 |
-
msgid "Other Roles:"
|
580 |
-
msgstr "भूमिका हटाएँ"
|
581 |
-
|
582 |
-
#: ../includes/ure-options.php:65
|
583 |
-
#, fuzzy
|
584 |
-
msgid "User Roles are restored to WordPress default values. "
|
585 |
-
msgstr "उपयोगकर्ता भूमिकाएँ डेटा बैकअप से बहाल कर रहे हैं."
|
586 |
-
|
587 |
-
#: ../includes/ure-options.php:136
|
588 |
-
msgid "Error: "
|
589 |
-
msgstr "त्रुटि:"
|
590 |
-
|
591 |
-
#: ../includes/ure-options.php:136
|
592 |
-
#: ../includes/ure-options.php:156
|
593 |
-
msgid "Role"
|
594 |
-
msgstr "भूमिका"
|
595 |
-
|
596 |
-
#: ../includes/ure-options.php:136
|
597 |
-
msgid "does not exist"
|
598 |
-
msgstr "मौजूद नहीं है"
|
599 |
-
|
600 |
-
#: ../includes/ure-options.php:156
|
601 |
-
msgid "is updated successfully"
|
602 |
-
msgstr "सफलतापूर्वक अपडेट किया"
|
603 |
-
|
604 |
-
#: ../includes/ure-options.php:161
|
605 |
-
#: ../includes/ure-options.php:174
|
606 |
-
#, fuzzy
|
607 |
-
msgid "Error occured during role update"
|
608 |
-
msgstr "भूमिका हटा आपरेशन के दौरान त्रुटि का सामना करना पड़ा"
|
609 |
-
|
610 |
-
#: ../includes/ure-options.php:169
|
611 |
-
msgid "User"
|
612 |
-
msgstr "उपयोगकर्ता"
|
613 |
-
|
614 |
-
#: ../includes/ure-options.php:169
|
615 |
-
msgid "capabilities are updated successfully"
|
616 |
-
msgstr "क्षमताओं को सफलतापूर्वक नवीनीकृत कर रहे हैं"
|
617 |
-
|
618 |
-
#: ../includes/ure-options.php:206
|
619 |
-
msgid "About this Plugin:"
|
620 |
-
msgstr "इस प्लगइन के बारे में:"
|
621 |
-
|
622 |
-
#: ../includes/ure-options.php:207
|
623 |
-
msgid "Author's website"
|
624 |
-
msgstr "लेखक की वेबसाइट"
|
625 |
-
|
626 |
-
#: ../includes/ure-options.php:208
|
627 |
-
msgid "Plugin webpage"
|
628 |
-
msgstr "प्लगइन वेबपेज"
|
629 |
-
|
630 |
-
#: ../includes/ure-options.php:210
|
631 |
-
msgid "FAQ"
|
632 |
-
msgstr "अक्सर पूछे जाने वाले प्रश्न"
|
633 |
-
|
634 |
-
#~ msgid "Database operation error. Check log file."
|
635 |
-
#~ msgstr "डेटाबेस आपरेशन त्रुटि. लॉग फ़ाइल की जाँच करें."
|
636 |
-
|
637 |
-
#~ msgid ""
|
638 |
-
#~ "No backup data. It is created automatically before the first role data "
|
639 |
-
#~ "update."
|
640 |
-
#~ msgstr ""
|
641 |
-
#~ "बैकअप डेटानहीं है. यह पहली भूमिका डेटा अद्यतन करने से पहले स्वचालित रूप से बनाया जाता "
|
642 |
-
#~ "है."
|
643 |
-
|
644 |
-
#~ msgid " Name must contain latin characters and digits only!"
|
645 |
-
#~ msgstr "नाम लैटिन अक्षर और अंक ही होना चाहिए!"
|
646 |
-
|
647 |
-
#~ msgid "Change Default Role"
|
648 |
-
#~ msgstr "डिफ़ॉल्ट भूमिका बदलें"
|
649 |
-
|
650 |
-
#~ msgid ""
|
651 |
-
#~ "Restore Roles from backup copy. Be careful, backup was created when you "
|
652 |
-
#~ "started URE 1st time. All changes you made after that will be lost"
|
653 |
-
#~ msgstr ""
|
654 |
-
#~ "बैकअप प्रतिलिपि से भूमिकाओं को पुनर्स्थापित करें. सावधान रहो, बैकअप बनाया गया था जब "
|
655 |
-
#~ "आप ure 1 बार शुरू कर दिया. आपने जो परिवर्तन किए के बाद कि खो जाएगा"
|
656 |
-
|
657 |
-
#~ msgid "Role \"%s\" update: please confirm to continue"
|
658 |
-
#~ msgstr "भूमिका \"%s\" अद्यतन: जारी रखने के लिए कृपया पुष्टि करें."
|
659 |
-
|
660 |
-
#~ msgid "Save Changes"
|
661 |
-
#~ msgstr "परिवर्तन सहेजें"
|
662 |
-
|
663 |
-
#~ msgid "Cancel not saved changes"
|
664 |
-
#~ msgstr "सहेजे गए परिवर्तन रद्दनहीं करें"
|
665 |
-
|
666 |
-
#~ msgid "Restore Roles from backup copy"
|
667 |
-
#~ msgstr "बैकअप प्रतिलिपि से भूमिकाओं को पुनर्स्थापित करें"
|
668 |
-
|
669 |
-
#~ msgid "Name: "
|
670 |
-
#~ msgstr "नाम:"
|
671 |
-
|
672 |
-
#~ msgid "Add"
|
673 |
-
#~ msgstr "जोड़ना"
|
674 |
-
|
675 |
-
#~ msgid "Add New User Role"
|
676 |
-
#~ msgstr "नये उपयोगकर्ता भूमिका जोड़ें"
|
677 |
-
|
678 |
-
#~ msgid "Default Role for New User"
|
679 |
-
#~ msgstr "नया उपयोगकर्ता के लिए डिफ़ॉल्ट भूमिका"
|
680 |
-
|
681 |
-
#~ msgid "Change"
|
682 |
-
#~ msgstr "परिवर्तन"
|
683 |
-
|
684 |
-
#~ msgid "Delete User Role"
|
685 |
-
#~ msgstr "उपयोगकर्ता भूमिका को हटाएँ"
|
686 |
-
|
687 |
-
#~ msgid "Remove"
|
688 |
-
#~ msgstr "हटाना"
|
689 |
-
|
690 |
-
#~ msgid "Remove User Capability"
|
691 |
-
#~ msgstr "उपयोगकर्ता क्षमता निकालें"
|
692 |
-
|
693 |
-
#~ msgid "User \"%s\" update: please confirm to continue"
|
694 |
-
#~ msgstr "प्रयोक्ता \"%s\" अद्यतन: की पुष्टि जारी रखने के लिए कृपया"
|
695 |
-
|
696 |
-
#~ msgid "Role:"
|
697 |
-
#~ msgstr "भूमिका"
|
698 |
-
|
699 |
-
#~ msgid "Add capabilities to this user:"
|
700 |
-
#~ msgstr "इस उपयोगकर्ता के लिए क्षमताओं जोड़ें:"
|
701 |
-
|
702 |
-
#~ msgid "Greetings"
|
703 |
-
#~ msgstr "बधाई"
|
704 |
-
|
705 |
-
#~ msgid "Greetings:"
|
706 |
-
#~ msgstr "नमस्ते:"
|
707 |
-
|
708 |
-
#~ msgid "It's me, the author"
|
709 |
-
#~ msgstr "यह मेरे लिए है, लेखक"
|
710 |
-
|
711 |
-
#~ msgid "For the help with Belorussian translation"
|
712 |
-
#~ msgstr "बेलोरूसि अनुवाद के साथ मदद के लिए"
|
713 |
-
|
714 |
-
#~ msgid "For the help with Brasilian translation"
|
715 |
-
#~ msgstr "ब्राजील के अनुवाद के साथ मदद के लिए"
|
716 |
-
|
717 |
-
#, fuzzy
|
718 |
-
#~ msgid "For the help with Brasilian Portuguese translation"
|
719 |
-
#~ msgstr "ब्राजील के अनुवाद के साथ मदद के लिए"
|
720 |
-
|
721 |
-
#~ msgid "For the help with Chinese translation"
|
722 |
-
#~ msgstr "चीनी अनुवाद के साथ मदद के लिए"
|
723 |
-
|
724 |
-
#~ msgid "For the help with Dutch translation"
|
725 |
-
#~ msgstr "डच अनुवाद के साथ मदद के लिए"
|
726 |
-
|
727 |
-
#~ msgid "For the help with Finnish translation"
|
728 |
-
#~ msgstr "फिनिश अनुवाद के साथ मदद के लिए"
|
729 |
-
|
730 |
-
#~ msgid "For the help with French translation"
|
731 |
-
#~ msgstr "फ्रेंच अनुवाद के साथ मदद के लिए"
|
732 |
-
|
733 |
-
#~ msgid "For the help with German translation"
|
734 |
-
#~ msgstr "जर्मन अनुवाद के साथ मदद के लिए"
|
735 |
-
|
736 |
-
#~ msgid "For the help with Hebrew translation"
|
737 |
-
#~ msgstr "हिब्रू अनुवाद के साथ मदद के लिए"
|
738 |
-
|
739 |
-
#~ msgid "For the help with Hungarian translation"
|
740 |
-
#~ msgstr "For the help with Hungarian translation"
|
741 |
-
|
742 |
-
#~ msgid "For the help with Italian translation"
|
743 |
-
#~ msgstr "इतालवी अनुवाद के साथ मदद के लिए"
|
744 |
-
|
745 |
-
#~ msgid "For the help with Japanese translation"
|
746 |
-
#~ msgstr "जापानी अनुवाद के साथ मदद के लिए"
|
747 |
-
|
748 |
-
#~ msgid "For the help with Lithuanian translation"
|
749 |
-
#~ msgstr "लिथुआनियाई अनुवाद के साथ मदद के लिए"
|
750 |
-
|
751 |
-
#~ msgid "For the help with Persian translation"
|
752 |
-
#~ msgstr "फारसी अनुवाद के साथ मदद के लिए"
|
753 |
-
|
754 |
-
#~ msgid "For the help with Polish translation"
|
755 |
-
#~ msgstr "पोलिश अनुवाद के साथ मदद के लिए"
|
756 |
-
|
757 |
-
#~ msgid "For the help with Spanish translation"
|
758 |
-
#~ msgstr "स्पेनिश अनुवाद के साथ मदद के लिए"
|
759 |
-
|
760 |
-
#~ msgid "For the updated Swedish translation"
|
761 |
-
#~ msgstr "अपडेट स्वीडिश अनुवाद के लिए"
|
762 |
-
|
763 |
-
#~ msgid "For the help with Swedish translation"
|
764 |
-
#~ msgstr "स्वीडिश अनुवाद के साथ मदद के लिए"
|
765 |
-
|
766 |
-
#~ msgid "For the help with Turkish translation"
|
767 |
-
#~ msgstr "तुर्की अनुवाद के साथ मदद के लिए"
|
768 |
-
|
769 |
-
#~ msgid "For the code to hide administrator role"
|
770 |
-
#~ msgstr "प्रशासक भूमिका को छुपाने के लिए कोड "
|
771 |
-
|
772 |
-
#~ msgid "For the code enhancement suggestion"
|
773 |
-
#~ msgstr "कोड वृद्धि सुझाव के लिए"
|
774 |
-
|
775 |
-
#~ msgid ""
|
776 |
-
#~ "Do you wish to see your name with link to your site here? You are "
|
777 |
-
#~ "welcome! Your help with translation and new ideas are very appreciated."
|
778 |
-
#~ msgstr ""
|
779 |
-
#~ "क्या आप अपनी साइट के लिए यहाँ के लिंक के साथ अपना नाम देखना चाहते हैं? आपका स्वागत "
|
780 |
-
#~ "है! अनुवाद और नए विचारों के साथ तुम्हारी मदद की बहुत सराहना की है."
|
781 |
-
|
782 |
-
#~ msgid "Roles list reading error is encountered"
|
783 |
-
#~ msgstr "اشکال در خواندن لیست دسترسیهای نقش"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
lang/ure-hu_HU.mo
DELETED
Binary file
|
lang/ure-hu_HU.po
DELETED
@@ -1,746 +0,0 @@
|
|
1 |
-
msgid ""
|
2 |
-
msgstr ""
|
3 |
-
"Project-Id-Version: User Role Editor\n"
|
4 |
-
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2013-05-17 11:15+0700\n"
|
6 |
-
"PO-Revision-Date: 2013-05-17 11:15+0700\n"
|
7 |
-
"Last-Translator: Vladimir Garagulya <vladimir@shinephp.com>\n"
|
8 |
-
"Language-Team: shinephp.com <vladimir@shinephp.com>\n"
|
9 |
-
"Language: \n"
|
10 |
-
"MIME-Version: 1.0\n"
|
11 |
-
"Content-Type: text/plain; charset=UTF-8\n"
|
12 |
-
"Content-Transfer-Encoding: 8bit\n"
|
13 |
-
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
14 |
-
"X-Poedit-Language: Hungarian\n"
|
15 |
-
"X-Poedit-Country: HUNGARY\n"
|
16 |
-
"X-Poedit-SourceCharset: utf-8\n"
|
17 |
-
"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n"
|
18 |
-
"X-Poedit-Basepath: ../\n"
|
19 |
-
"X-Textdomain-Support: yes\n"
|
20 |
-
"X-Poedit-SearchPath-0: .\n"
|
21 |
-
|
22 |
-
#: user-role-editor.php:34
|
23 |
-
#, fuzzy, php-format
|
24 |
-
msgid "User Role Editor requires PHP %s or newer."
|
25 |
-
msgstr "A User Role Editor- plugin működéséhez a WordPress 3.0, vagy frissebb verziója kell"
|
26 |
-
|
27 |
-
#: user-role-editor.php:35
|
28 |
-
#: user-role-editor.php:107
|
29 |
-
msgid "Please update!"
|
30 |
-
msgstr "Kérem frissítsen!"
|
31 |
-
|
32 |
-
#: user-role-editor.php:80
|
33 |
-
msgid "Only"
|
34 |
-
msgstr ""
|
35 |
-
|
36 |
-
#: user-role-editor.php:80
|
37 |
-
msgid "is allowed to use"
|
38 |
-
msgstr ""
|
39 |
-
|
40 |
-
#: user-role-editor.php:86
|
41 |
-
#: user-role-editor.php:312
|
42 |
-
#: user-role-editor.php:368
|
43 |
-
msgid "User Role Editor"
|
44 |
-
msgstr "Felhasználó Szerepkör Szerkesztő"
|
45 |
-
|
46 |
-
#: user-role-editor.php:106
|
47 |
-
#, fuzzy, php-format
|
48 |
-
msgid "User Role Editor requires WordPress %s or newer."
|
49 |
-
msgstr "A User Role Editor- plugin működéséhez a WordPress 3.0, vagy frissebb verziója kell"
|
50 |
-
|
51 |
-
#: user-role-editor.php:139
|
52 |
-
msgid "Select All"
|
53 |
-
msgstr ""
|
54 |
-
|
55 |
-
#: user-role-editor.php:140
|
56 |
-
msgid "Unselect All"
|
57 |
-
msgstr ""
|
58 |
-
|
59 |
-
#: user-role-editor.php:141
|
60 |
-
msgid "Reverse"
|
61 |
-
msgstr ""
|
62 |
-
|
63 |
-
#: user-role-editor.php:142
|
64 |
-
msgid "Update"
|
65 |
-
msgstr "Frissítés"
|
66 |
-
|
67 |
-
#: user-role-editor.php:143
|
68 |
-
#, fuzzy
|
69 |
-
msgid "Please confirm permissions update"
|
70 |
-
msgstr "A folytatás előtt, kérem hagyja jóva a műveletet"
|
71 |
-
|
72 |
-
#: user-role-editor.php:144
|
73 |
-
msgid "Add New Role"
|
74 |
-
msgstr "Új szerepkör"
|
75 |
-
|
76 |
-
#: user-role-editor.php:145
|
77 |
-
msgid " Role name (ID) can not be empty!"
|
78 |
-
msgstr ""
|
79 |
-
|
80 |
-
#: user-role-editor.php:146
|
81 |
-
#, fuzzy
|
82 |
-
msgid " Role name (ID) must contain latin characters, digits, hyphens or underscore only!"
|
83 |
-
msgstr "Hiba: a szerepkör neve csak a latin ABC betűit és számokat tartalmazhat!"
|
84 |
-
|
85 |
-
#: user-role-editor.php:147
|
86 |
-
#, fuzzy
|
87 |
-
msgid "Add Role"
|
88 |
-
msgstr "Új szerepkör"
|
89 |
-
|
90 |
-
#: user-role-editor.php:148
|
91 |
-
msgid "Delete Role"
|
92 |
-
msgstr "Szerepkör törlése"
|
93 |
-
|
94 |
-
#: user-role-editor.php:149
|
95 |
-
msgid "Cancel"
|
96 |
-
msgstr "Mégsem"
|
97 |
-
|
98 |
-
#: user-role-editor.php:150
|
99 |
-
msgid "Add Capability"
|
100 |
-
msgstr ""
|
101 |
-
|
102 |
-
#: user-role-editor.php:151
|
103 |
-
#: user-role-editor.php:156
|
104 |
-
#, fuzzy
|
105 |
-
msgid "Delete Capability"
|
106 |
-
msgstr "Pluginok törlése"
|
107 |
-
|
108 |
-
#: user-role-editor.php:152
|
109 |
-
msgid "Reset"
|
110 |
-
msgstr "Reset"
|
111 |
-
|
112 |
-
#: user-role-editor.php:153
|
113 |
-
msgid "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?"
|
114 |
-
msgstr ""
|
115 |
-
|
116 |
-
#: user-role-editor.php:154
|
117 |
-
#, fuzzy
|
118 |
-
msgid "Default Role"
|
119 |
-
msgstr "Szerepkör törlése"
|
120 |
-
|
121 |
-
#: user-role-editor.php:155
|
122 |
-
#, fuzzy
|
123 |
-
msgid "Set New Default Role"
|
124 |
-
msgstr "Alapértelmezett szerepkörként beállít"
|
125 |
-
|
126 |
-
#: user-role-editor.php:157
|
127 |
-
msgid "Warning! Be careful - removing critical capability could crash some plugin or other custom code"
|
128 |
-
msgstr ""
|
129 |
-
|
130 |
-
#: user-role-editor.php:158
|
131 |
-
msgid " Capability name (ID) can not be empty!"
|
132 |
-
msgstr ""
|
133 |
-
|
134 |
-
#: user-role-editor.php:159
|
135 |
-
#, fuzzy
|
136 |
-
msgid " Capability name (ID) must contain latin characters, digits, hyphens or underscore only!"
|
137 |
-
msgstr "Hiba: a szerepkör neve csak a latin ABC betűit és számokat tartalmazhat!"
|
138 |
-
|
139 |
-
#: user-role-editor.php:284
|
140 |
-
msgid "Settings"
|
141 |
-
msgstr "Beállítások"
|
142 |
-
|
143 |
-
#: user-role-editor.php:294
|
144 |
-
#: includes/ure-options.php:209
|
145 |
-
msgid "Changelog"
|
146 |
-
msgstr "Changelog"
|
147 |
-
|
148 |
-
#: user-role-editor.php:342
|
149 |
-
msgid "Capabilities"
|
150 |
-
msgstr ""
|
151 |
-
|
152 |
-
#: user-role-editor.php:371
|
153 |
-
#: user-role-editor.php:407
|
154 |
-
#, fuzzy
|
155 |
-
msgid "Other Roles"
|
156 |
-
msgstr "Szerepkör törlése"
|
157 |
-
|
158 |
-
#: user-role-editor.php:381
|
159 |
-
#, fuzzy
|
160 |
-
msgid "Edit"
|
161 |
-
msgstr "Szerkesztő"
|
162 |
-
|
163 |
-
#: includes/ure-lib.php:35
|
164 |
-
msgid "Error is occur. Please check the log file."
|
165 |
-
msgstr "Hiba lépett fel! Nézd meg a log fájlt."
|
166 |
-
|
167 |
-
#: includes/ure-lib.php:364
|
168 |
-
msgid "Backup record is created for the current role capabilities"
|
169 |
-
msgstr "A biztonsági mentés elkészült a jelenlegi szerpkörhöz tartozó beállításokról"
|
170 |
-
|
171 |
-
#: includes/ure-lib.php:481
|
172 |
-
#, fuzzy
|
173 |
-
msgid "Error: Role ID must contain latin characters, digits, hyphens or underscore only!"
|
174 |
-
msgstr "Hiba: a szerepkör neve csak a latin ABC betűit és számokat tartalmazhat!"
|
175 |
-
|
176 |
-
#: includes/ure-lib.php:496
|
177 |
-
#, php-format
|
178 |
-
msgid "Role %s exists already"
|
179 |
-
msgstr ""
|
180 |
-
|
181 |
-
#: includes/ure-lib.php:511
|
182 |
-
msgid "Error is encountered during new role create operation"
|
183 |
-
msgstr "Hiba lépett fel az új szerepkör létrehozása közben!"
|
184 |
-
|
185 |
-
#: includes/ure-lib.php:513
|
186 |
-
#, php-format
|
187 |
-
msgid "Role %s is created successfully"
|
188 |
-
msgstr "A szerepkör: %s sikeresen létrehozva"
|
189 |
-
|
190 |
-
#: includes/ure-lib.php:597
|
191 |
-
msgid "Error encountered during role delete operation"
|
192 |
-
msgstr "Hiba lépett fel az új szerepkör törlése közben!"
|
193 |
-
|
194 |
-
#: includes/ure-lib.php:599
|
195 |
-
#, php-format
|
196 |
-
msgid "Role %s is deleted successfully"
|
197 |
-
msgstr "A szerepkör: %s sikeresen törölve"
|
198 |
-
|
199 |
-
#: includes/ure-lib.php:619
|
200 |
-
msgid "Error encountered during default role change operation"
|
201 |
-
msgstr "Hiba lépett fel az alapértelmezett szerepkör megváltoztatása közben"
|
202 |
-
|
203 |
-
#: includes/ure-lib.php:625
|
204 |
-
#, php-format
|
205 |
-
msgid "Default role for new users is set to %s successfully"
|
206 |
-
msgstr "Az alapértelmezett szerepkör az új feliratkozók számára sikeresen beállítva erre: %s"
|
207 |
-
|
208 |
-
#: includes/ure-lib.php:652
|
209 |
-
msgid "Editor"
|
210 |
-
msgstr "Szerkesztő"
|
211 |
-
|
212 |
-
#: includes/ure-lib.php:653
|
213 |
-
msgid "Author"
|
214 |
-
msgstr "Szerző"
|
215 |
-
|
216 |
-
#: includes/ure-lib.php:654
|
217 |
-
msgid "Contributor"
|
218 |
-
msgstr "Közreműködő"
|
219 |
-
|
220 |
-
#: includes/ure-lib.php:655
|
221 |
-
msgid "Subscriber"
|
222 |
-
msgstr "Feliratkozó"
|
223 |
-
|
224 |
-
#: includes/ure-lib.php:657
|
225 |
-
msgid "Switch themes"
|
226 |
-
msgstr "Sablon váltás"
|
227 |
-
|
228 |
-
#: includes/ure-lib.php:658
|
229 |
-
msgid "Edit themes"
|
230 |
-
msgstr "Sablon szerkesztés"
|
231 |
-
|
232 |
-
#: includes/ure-lib.php:659
|
233 |
-
msgid "Activate plugins"
|
234 |
-
msgstr "Plugin aktiválása"
|
235 |
-
|
236 |
-
#: includes/ure-lib.php:660
|
237 |
-
msgid "Edit plugins"
|
238 |
-
msgstr "Pluginok szerkesztése"
|
239 |
-
|
240 |
-
#: includes/ure-lib.php:661
|
241 |
-
msgid "Edit users"
|
242 |
-
msgstr "Felhasználók szerkesztése"
|
243 |
-
|
244 |
-
#: includes/ure-lib.php:662
|
245 |
-
msgid "Edit files"
|
246 |
-
msgstr "Fájlok szerkesztése"
|
247 |
-
|
248 |
-
#: includes/ure-lib.php:663
|
249 |
-
msgid "Manage options"
|
250 |
-
msgstr "Beállítások módosítása"
|
251 |
-
|
252 |
-
#: includes/ure-lib.php:664
|
253 |
-
msgid "Moderate comments"
|
254 |
-
msgstr "Kommentek moderálása"
|
255 |
-
|
256 |
-
#: includes/ure-lib.php:665
|
257 |
-
msgid "Manage categories"
|
258 |
-
msgstr "Kategóriák kezelése"
|
259 |
-
|
260 |
-
#: includes/ure-lib.php:666
|
261 |
-
msgid "Manage links"
|
262 |
-
msgstr "Linkek szerkesztése"
|
263 |
-
|
264 |
-
#: includes/ure-lib.php:667
|
265 |
-
msgid "Upload files"
|
266 |
-
msgstr "Fájlok feltöltése"
|
267 |
-
|
268 |
-
#: includes/ure-lib.php:668
|
269 |
-
msgid "Import"
|
270 |
-
msgstr "Importálás"
|
271 |
-
|
272 |
-
#: includes/ure-lib.php:669
|
273 |
-
msgid "Unfiltered html"
|
274 |
-
msgstr "Szűretlen HTML"
|
275 |
-
|
276 |
-
#: includes/ure-lib.php:670
|
277 |
-
msgid "Edit posts"
|
278 |
-
msgstr "Bejegyzések szerkesztése"
|
279 |
-
|
280 |
-
#: includes/ure-lib.php:671
|
281 |
-
msgid "Edit others posts"
|
282 |
-
msgstr "Mások bejegyzéseinek szerksztése"
|
283 |
-
|
284 |
-
#: includes/ure-lib.php:672
|
285 |
-
msgid "Edit published posts"
|
286 |
-
msgstr "Publikált bejegyzések szerkesztése"
|
287 |
-
|
288 |
-
#: includes/ure-lib.php:673
|
289 |
-
msgid "Publish posts"
|
290 |
-
msgstr "Bejegyzések közzététele"
|
291 |
-
|
292 |
-
#: includes/ure-lib.php:674
|
293 |
-
msgid "Edit pages"
|
294 |
-
msgstr "Oldalak szerkesztése"
|
295 |
-
|
296 |
-
#: includes/ure-lib.php:675
|
297 |
-
msgid "Read"
|
298 |
-
msgstr "Olvasás"
|
299 |
-
|
300 |
-
#: includes/ure-lib.php:676
|
301 |
-
msgid "Level 10"
|
302 |
-
msgstr "10. szint"
|
303 |
-
|
304 |
-
#: includes/ure-lib.php:677
|
305 |
-
msgid "Level 9"
|
306 |
-
msgstr "9. szint"
|
307 |
-
|
308 |
-
#: includes/ure-lib.php:678
|
309 |
-
msgid "Level 8"
|
310 |
-
msgstr "8. szint"
|
311 |
-
|
312 |
-
#: includes/ure-lib.php:679
|
313 |
-
msgid "Level 7"
|
314 |
-
msgstr "7. szint"
|
315 |
-
|
316 |
-
#: includes/ure-lib.php:680
|
317 |
-
msgid "Level 6"
|
318 |
-
msgstr "6. szint"
|
319 |
-
|
320 |
-
#: includes/ure-lib.php:681
|
321 |
-
msgid "Level 5"
|
322 |
-
msgstr "5. szint"
|
323 |
-
|
324 |
-
#: includes/ure-lib.php:682
|
325 |
-
msgid "Level 4"
|
326 |
-
msgstr "4. szint"
|
327 |
-
|
328 |
-
#: includes/ure-lib.php:683
|
329 |
-
msgid "Level 3"
|
330 |
-
msgstr "3. szint"
|
331 |
-
|
332 |
-
#: includes/ure-lib.php:684
|
333 |
-
msgid "Level 2"
|
334 |
-
msgstr "2. szint"
|
335 |
-
|
336 |
-
#: includes/ure-lib.php:685
|
337 |
-
msgid "Level 1"
|
338 |
-
msgstr "1. szint"
|
339 |
-
|
340 |
-
#: includes/ure-lib.php:686
|
341 |
-
msgid "Level 0"
|
342 |
-
msgstr "0. szint"
|
343 |
-
|
344 |
-
#: includes/ure-lib.php:687
|
345 |
-
msgid "Edit others pages"
|
346 |
-
msgstr "Mások oldalainak szerkesztése"
|
347 |
-
|
348 |
-
#: includes/ure-lib.php:688
|
349 |
-
msgid "Edit published pages"
|
350 |
-
msgstr "Közzétett oldalak szerkesztése"
|
351 |
-
|
352 |
-
#: includes/ure-lib.php:689
|
353 |
-
msgid "Publish pages"
|
354 |
-
msgstr "Oldalak közzététele"
|
355 |
-
|
356 |
-
#: includes/ure-lib.php:690
|
357 |
-
msgid "Delete pages"
|
358 |
-
msgstr "Oldalak törlése"
|
359 |
-
|
360 |
-
#: includes/ure-lib.php:691
|
361 |
-
msgid "Delete others pages"
|
362 |
-
msgstr "Mások oldalainak törlése"
|
363 |
-
|
364 |
-
#: includes/ure-lib.php:692
|
365 |
-
msgid "Delete published pages"
|
366 |
-
msgstr "Közzétett oldalak törlése"
|
367 |
-
|
368 |
-
#: includes/ure-lib.php:693
|
369 |
-
msgid "Delete posts"
|
370 |
-
msgstr "Bejgyzések törlése"
|
371 |
-
|
372 |
-
#: includes/ure-lib.php:694
|
373 |
-
msgid "Delete others posts"
|
374 |
-
msgstr "Mások bejegyzéseinek törlése"
|
375 |
-
|
376 |
-
#: includes/ure-lib.php:695
|
377 |
-
msgid "Delete published posts"
|
378 |
-
msgstr "Közzétett bejegyzések törlése"
|
379 |
-
|
380 |
-
#: includes/ure-lib.php:696
|
381 |
-
msgid "Delete private posts"
|
382 |
-
msgstr "Privát bejegyzések törlése"
|
383 |
-
|
384 |
-
#: includes/ure-lib.php:697
|
385 |
-
msgid "Edit private posts"
|
386 |
-
msgstr "Privát bejegyzések szerkesztése"
|
387 |
-
|
388 |
-
#: includes/ure-lib.php:698
|
389 |
-
msgid "Read private posts"
|
390 |
-
msgstr "Privát bejegyzések megtekintése"
|
391 |
-
|
392 |
-
#: includes/ure-lib.php:699
|
393 |
-
msgid "Delete private pages"
|
394 |
-
msgstr "Privát oldalak törlése"
|
395 |
-
|
396 |
-
#: includes/ure-lib.php:700
|
397 |
-
msgid "Edit private pages"
|
398 |
-
msgstr "Privát oldalak szerkesztése"
|
399 |
-
|
400 |
-
#: includes/ure-lib.php:701
|
401 |
-
msgid "Read private pages"
|
402 |
-
msgstr "Privát oldalak megtekintése"
|
403 |
-
|
404 |
-
#: includes/ure-lib.php:702
|
405 |
-
msgid "Delete users"
|
406 |
-
msgstr "Felhasználók törlése"
|
407 |
-
|
408 |
-
#: includes/ure-lib.php:703
|
409 |
-
msgid "Create users"
|
410 |
-
msgstr "Felhasználók létrehozása"
|
411 |
-
|
412 |
-
#: includes/ure-lib.php:704
|
413 |
-
msgid "Unfiltered upload"
|
414 |
-
msgstr "Ellenőrizetlen feltöltés"
|
415 |
-
|
416 |
-
#: includes/ure-lib.php:705
|
417 |
-
msgid "Edit dashboard"
|
418 |
-
msgstr "Dashboard szerkesztése"
|
419 |
-
|
420 |
-
#: includes/ure-lib.php:706
|
421 |
-
msgid "Update plugins"
|
422 |
-
msgstr "Pluginok frissítése"
|
423 |
-
|
424 |
-
#: includes/ure-lib.php:707
|
425 |
-
msgid "Delete plugins"
|
426 |
-
msgstr "Pluginok törlése"
|
427 |
-
|
428 |
-
#: includes/ure-lib.php:708
|
429 |
-
msgid "Install plugins"
|
430 |
-
msgstr "Pluginok telepítése"
|
431 |
-
|
432 |
-
#: includes/ure-lib.php:709
|
433 |
-
msgid "Update themes"
|
434 |
-
msgstr "Sablonok frissítése"
|
435 |
-
|
436 |
-
#: includes/ure-lib.php:710
|
437 |
-
msgid "Install themes"
|
438 |
-
msgstr "Sablonok telepítése"
|
439 |
-
|
440 |
-
#: includes/ure-lib.php:711
|
441 |
-
msgid "Update core"
|
442 |
-
msgstr ""
|
443 |
-
|
444 |
-
#: includes/ure-lib.php:712
|
445 |
-
msgid "List users"
|
446 |
-
msgstr ""
|
447 |
-
|
448 |
-
#: includes/ure-lib.php:713
|
449 |
-
msgid "Remove users"
|
450 |
-
msgstr ""
|
451 |
-
|
452 |
-
#: includes/ure-lib.php:714
|
453 |
-
msgid "Add users"
|
454 |
-
msgstr ""
|
455 |
-
|
456 |
-
#: includes/ure-lib.php:715
|
457 |
-
msgid "Promote users"
|
458 |
-
msgstr ""
|
459 |
-
|
460 |
-
#: includes/ure-lib.php:716
|
461 |
-
msgid "Edit theme options"
|
462 |
-
msgstr ""
|
463 |
-
|
464 |
-
#: includes/ure-lib.php:717
|
465 |
-
msgid "Delete themes"
|
466 |
-
msgstr ""
|
467 |
-
|
468 |
-
#: includes/ure-lib.php:718
|
469 |
-
msgid "Export"
|
470 |
-
msgstr ""
|
471 |
-
|
472 |
-
#: includes/ure-lib.php:834
|
473 |
-
#, fuzzy
|
474 |
-
msgid "Error: Capability name must contain latin characters and digits only!"
|
475 |
-
msgstr "Hiba: a szerepkör neve csak a latin ABC betűit és számokat tartalmazhat!"
|
476 |
-
|
477 |
-
#: includes/ure-lib.php:846
|
478 |
-
#, php-format
|
479 |
-
msgid "Capability %s is added successfully"
|
480 |
-
msgstr ""
|
481 |
-
|
482 |
-
#: includes/ure-lib.php:848
|
483 |
-
#, php-format
|
484 |
-
msgid "Capability %s exists already"
|
485 |
-
msgstr ""
|
486 |
-
|
487 |
-
#: includes/ure-lib.php:997
|
488 |
-
#, php-format
|
489 |
-
msgid "Error! You do not have permission to delete this capability: %s!"
|
490 |
-
msgstr ""
|
491 |
-
|
492 |
-
#: includes/ure-lib.php:1016
|
493 |
-
#, php-format
|
494 |
-
msgid "Capability %s is removed successfully"
|
495 |
-
msgstr ""
|
496 |
-
|
497 |
-
#: includes/ure-lib.php:1083
|
498 |
-
msgid "Help"
|
499 |
-
msgstr ""
|
500 |
-
|
501 |
-
#: includes/ure-role-edit.php:29
|
502 |
-
msgid "None"
|
503 |
-
msgstr ""
|
504 |
-
|
505 |
-
#: includes/ure-role-edit.php:67
|
506 |
-
msgid "Select Role and change its capabilities list"
|
507 |
-
msgstr "Szerepkör kiválasztása és lehetőségek módosítása"
|
508 |
-
|
509 |
-
#: includes/ure-role-edit.php:69
|
510 |
-
#: includes/ure-role-edit.php:166
|
511 |
-
msgid "Select Role:"
|
512 |
-
msgstr "Szerepkör kiválasztása:"
|
513 |
-
|
514 |
-
#: includes/ure-role-edit.php:79
|
515 |
-
#: includes/ure-user-edit.php:38
|
516 |
-
msgid "Show capabilities in human readable form"
|
517 |
-
msgstr "Mutasd a beállításokat emberi olvasható formában"
|
518 |
-
|
519 |
-
#: includes/ure-role-edit.php:88
|
520 |
-
#: includes/ure-user-edit.php:47
|
521 |
-
msgid "Show deprecated capabilities"
|
522 |
-
msgstr ""
|
523 |
-
|
524 |
-
#: includes/ure-role-edit.php:92
|
525 |
-
msgid "If checked, then apply action to ALL sites of this Network"
|
526 |
-
msgstr ""
|
527 |
-
|
528 |
-
#: includes/ure-role-edit.php:102
|
529 |
-
msgid "Apply to All Sites"
|
530 |
-
msgstr ""
|
531 |
-
|
532 |
-
#: includes/ure-role-edit.php:109
|
533 |
-
#: includes/ure-user-edit.php:88
|
534 |
-
msgid "Core capabilities:"
|
535 |
-
msgstr ""
|
536 |
-
|
537 |
-
#: includes/ure-role-edit.php:124
|
538 |
-
#: includes/ure-user-edit.php:103
|
539 |
-
msgid "Custom capabilities:"
|
540 |
-
msgstr ""
|
541 |
-
|
542 |
-
#: includes/ure-role-edit.php:155
|
543 |
-
msgid "Role name (ID): "
|
544 |
-
msgstr ""
|
545 |
-
|
546 |
-
#: includes/ure-role-edit.php:157
|
547 |
-
msgid "Display Role Name: "
|
548 |
-
msgstr ""
|
549 |
-
|
550 |
-
#: includes/ure-role-edit.php:159
|
551 |
-
msgid "Make copy of: "
|
552 |
-
msgstr ""
|
553 |
-
|
554 |
-
#: includes/ure-role-edit.php:181
|
555 |
-
#, fuzzy
|
556 |
-
msgid "Delete:"
|
557 |
-
msgstr "Törlés"
|
558 |
-
|
559 |
-
#: includes/ure-role-edit.php:188
|
560 |
-
msgid "Capability name (ID): "
|
561 |
-
msgstr ""
|
562 |
-
|
563 |
-
#: includes/ure-user-edit.php:22
|
564 |
-
msgid "Change capabilities for user"
|
565 |
-
msgstr ""
|
566 |
-
|
567 |
-
#: includes/ure-user-edit.php:52
|
568 |
-
msgid "Primary Role:"
|
569 |
-
msgstr ""
|
570 |
-
|
571 |
-
#: includes/ure-user-edit.php:62
|
572 |
-
msgid "bbPress Role:"
|
573 |
-
msgstr ""
|
574 |
-
|
575 |
-
#: includes/ure-user-edit.php:72
|
576 |
-
#, fuzzy
|
577 |
-
msgid "Other Roles:"
|
578 |
-
msgstr "Szerepkör törlése"
|
579 |
-
|
580 |
-
#: includes/ure-options.php:65
|
581 |
-
#, fuzzy
|
582 |
-
msgid "User Roles are restored to WordPress default values. "
|
583 |
-
msgstr "A szerephez tartozó jogosultások visszaállítva a biztonásgi mentésből."
|
584 |
-
|
585 |
-
#: includes/ure-options.php:136
|
586 |
-
msgid "Error: "
|
587 |
-
msgstr ""
|
588 |
-
|
589 |
-
#: includes/ure-options.php:136
|
590 |
-
#: includes/ure-options.php:156
|
591 |
-
msgid "Role"
|
592 |
-
msgstr "Szerepkör"
|
593 |
-
|
594 |
-
#: includes/ure-options.php:136
|
595 |
-
msgid "does not exist"
|
596 |
-
msgstr ""
|
597 |
-
|
598 |
-
#: includes/ure-options.php:156
|
599 |
-
msgid "is updated successfully"
|
600 |
-
msgstr "sikeresen frissítve"
|
601 |
-
|
602 |
-
#: includes/ure-options.php:161
|
603 |
-
#: includes/ure-options.php:174
|
604 |
-
#, fuzzy
|
605 |
-
msgid "Error occured during role update"
|
606 |
-
msgstr "Hiba lépett fel az új szerepkör törlése közben!"
|
607 |
-
|
608 |
-
#: includes/ure-options.php:169
|
609 |
-
msgid "User"
|
610 |
-
msgstr ""
|
611 |
-
|
612 |
-
#: includes/ure-options.php:169
|
613 |
-
#, fuzzy
|
614 |
-
msgid "capabilities are updated successfully"
|
615 |
-
msgstr "sikeresen frissítve"
|
616 |
-
|
617 |
-
#: includes/ure-options.php:206
|
618 |
-
msgid "About this Plugin:"
|
619 |
-
msgstr "A Pluginról:"
|
620 |
-
|
621 |
-
#: includes/ure-options.php:207
|
622 |
-
msgid "Author's website"
|
623 |
-
msgstr "A készítő weblapja"
|
624 |
-
|
625 |
-
#: includes/ure-options.php:208
|
626 |
-
msgid "Plugin webpage"
|
627 |
-
msgstr "A plugin weblapja"
|
628 |
-
|
629 |
-
#: includes/ure-options.php:210
|
630 |
-
msgid "FAQ"
|
631 |
-
msgstr "GYIK"
|
632 |
-
|
633 |
-
#~ msgid "Database operation error. Check log file."
|
634 |
-
#~ msgstr "Adatbázis műveleti hiba! Nézd meg a log fájlt."
|
635 |
-
|
636 |
-
#~ msgid ""
|
637 |
-
#~ "No backup data. It is created automatically before the first role data "
|
638 |
-
#~ "update."
|
639 |
-
#~ msgstr ""
|
640 |
-
#~ "Nincs biztonsági mentés! Ez automatikusan létrejön az első szerepkör "
|
641 |
-
#~ "frissítés előtt."
|
642 |
-
|
643 |
-
#, fuzzy
|
644 |
-
#~ msgid " Name must contain latin characters and digits only!"
|
645 |
-
#~ msgstr "A szerepkör neve csak a latin ABC betűit és számokat tartalmazhat!"
|
646 |
-
|
647 |
-
#~ msgid "Change Default Role"
|
648 |
-
#~ msgstr "Alapértelmezett szerepkör megváltoztatása"
|
649 |
-
|
650 |
-
#~ msgid "Role \"%s\" update: please confirm to continue"
|
651 |
-
#~ msgstr "Szerepkör frissítése \"%s\": kérem hagyja jóvá a folytatáshoz"
|
652 |
-
|
653 |
-
#~ msgid "Save Changes"
|
654 |
-
#~ msgstr "Beálltások mentése"
|
655 |
-
|
656 |
-
#~ msgid "Cancel not saved changes"
|
657 |
-
#~ msgstr "A nem mentett beállítások elvetése"
|
658 |
-
|
659 |
-
#~ msgid "Restore Roles from backup copy"
|
660 |
-
#~ msgstr "Szerepkör visszaállítása biztonsági mentésből"
|
661 |
-
|
662 |
-
#~ msgid "Add"
|
663 |
-
#~ msgstr "Hozzáad"
|
664 |
-
|
665 |
-
#~ msgid "Add New User Role"
|
666 |
-
#~ msgstr "Új felhasználói szerepkör hozzáadása"
|
667 |
-
|
668 |
-
#~ msgid "Default Role for New User"
|
669 |
-
#~ msgstr "Új felhasználó alapértelmezett szerepköre"
|
670 |
-
|
671 |
-
#~ msgid "Change"
|
672 |
-
#~ msgstr "Változtat"
|
673 |
-
|
674 |
-
#~ msgid "Delete User Role"
|
675 |
-
#~ msgstr "Felhasználói szerepkör törlése"
|
676 |
-
|
677 |
-
#, fuzzy
|
678 |
-
#~ msgid "User \"%s\" update: please confirm to continue"
|
679 |
-
#~ msgstr "Szerepkör frissítése \"%s\": kérem hagyja jóvá a folytatáshoz"
|
680 |
-
|
681 |
-
#, fuzzy
|
682 |
-
#~ msgid "Role:"
|
683 |
-
#~ msgstr "Szerepkör"
|
684 |
-
|
685 |
-
#~ msgid "Greetings:"
|
686 |
-
#~ msgstr "Üdvözlet:"
|
687 |
-
|
688 |
-
#~ msgid "It's me, the author"
|
689 |
-
#~ msgstr "A készítő"
|
690 |
-
|
691 |
-
#~ msgid "For the help with Belorussian translation"
|
692 |
-
#~ msgstr "A Belorusz fordításért"
|
693 |
-
|
694 |
-
#, fuzzy
|
695 |
-
#~ msgid "For the help with Brasilian Portuguese translation"
|
696 |
-
#~ msgstr "A japán fordításért"
|
697 |
-
|
698 |
-
#~ msgid "For the help with Chinese translation"
|
699 |
-
#~ msgstr "A Chinese fordításért"
|
700 |
-
|
701 |
-
#~ msgid "For the help with Dutch translation"
|
702 |
-
#~ msgstr "A Dutch fordításért"
|
703 |
-
|
704 |
-
#~ msgid "For the help with Finnish translation"
|
705 |
-
#~ msgstr "A Finnish fordításért"
|
706 |
-
|
707 |
-
#~ msgid "For the help with French translation"
|
708 |
-
#~ msgstr "A francia fordításért"
|
709 |
-
|
710 |
-
#~ msgid "For the help with German translation"
|
711 |
-
#~ msgstr "A német fordításért"
|
712 |
-
|
713 |
-
#~ msgid "For the help with Hungarian translation"
|
714 |
-
#~ msgstr "A magyar fordításért"
|
715 |
-
|
716 |
-
#~ msgid "For the help with Italian translation"
|
717 |
-
#~ msgstr "Az olasz fordításért"
|
718 |
-
|
719 |
-
#~ msgid "For the help with Japanese translation"
|
720 |
-
#~ msgstr "A japán fordításért"
|
721 |
-
|
722 |
-
#~ msgid "For the help with Polish translation"
|
723 |
-
#~ msgstr "A lenygel fordításért"
|
724 |
-
|
725 |
-
#~ msgid "For the help with Spanish translation"
|
726 |
-
#~ msgstr "A spanyol fordításért"
|
727 |
-
|
728 |
-
#, fuzzy
|
729 |
-
#~ msgid "For the updated Swedish translation"
|
730 |
-
#~ msgstr "A Swedish fordításért"
|
731 |
-
|
732 |
-
#~ msgid "For the help with Swedish translation"
|
733 |
-
#~ msgstr "A Swedish fordításért"
|
734 |
-
|
735 |
-
#~ msgid "For the code to hide administrator role"
|
736 |
-
#~ msgstr "Az adminisztrátori szerepkör elrejtésére szolgáló kódért"
|
737 |
-
|
738 |
-
#~ msgid ""
|
739 |
-
#~ "Do you wish to see your name with link to your site here? You are "
|
740 |
-
#~ "welcome! Your help with translation and new ideas are very appreciated."
|
741 |
-
#~ msgstr ""
|
742 |
-
#~ "Szeretnéd itt látni a neved egy hivatkozással a weblapodra? Megoldható! "
|
743 |
-
#~ "Így háláljuk meg a fordításban nyújtott segítséged, és új ötleteidet."
|
744 |
-
|
745 |
-
#~ msgid "Roles list reading error is encountered"
|
746 |
-
#~ msgstr "Szerepkör lista olvasási hiba!"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
lang/ure-id_ID.mo
DELETED
Binary file
|
lang/ure-id_ID.po
DELETED
@@ -1,614 +0,0 @@
|
|
1 |
-
msgid ""
|
2 |
-
msgstr ""
|
3 |
-
"Project-Id-Version: User Role Editor 2.0\n"
|
4 |
-
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2013-05-17 11:16+0700\n"
|
6 |
-
"PO-Revision-Date: \n"
|
7 |
-
"Last-Translator: Vladimir Garagulya <vladimir@shinephp.com>\n"
|
8 |
-
"Language-Team: ShinePHP.com <vladimir@shinephp.com>\n"
|
9 |
-
"Language: \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-Language: English\n"
|
14 |
-
"X-Poedit-Country: RUSSIAN FEDERATION\n"
|
15 |
-
"X-Poedit-SourceCharset: utf-8\n"
|
16 |
-
"X-Poedit-KeywordsList: __;_e\n"
|
17 |
-
"X-Poedit-Basepath: .\n"
|
18 |
-
"X-Poedit-SearchPath-0: ..\n"
|
19 |
-
|
20 |
-
#: ../user-role-editor.php:34
|
21 |
-
#, php-format
|
22 |
-
msgid "User Role Editor requires PHP %s or newer."
|
23 |
-
msgstr ""
|
24 |
-
|
25 |
-
#: ../user-role-editor.php:35
|
26 |
-
#: ../user-role-editor.php:107
|
27 |
-
msgid "Please update!"
|
28 |
-
msgstr ""
|
29 |
-
|
30 |
-
#: ../user-role-editor.php:80
|
31 |
-
msgid "Only"
|
32 |
-
msgstr ""
|
33 |
-
|
34 |
-
#: ../user-role-editor.php:80
|
35 |
-
msgid "is allowed to use"
|
36 |
-
msgstr ""
|
37 |
-
|
38 |
-
#: ../user-role-editor.php:86
|
39 |
-
#: ../user-role-editor.php:312
|
40 |
-
#: ../user-role-editor.php:368
|
41 |
-
msgid "User Role Editor"
|
42 |
-
msgstr ""
|
43 |
-
|
44 |
-
#: ../user-role-editor.php:106
|
45 |
-
#, php-format
|
46 |
-
msgid "User Role Editor requires WordPress %s or newer."
|
47 |
-
msgstr ""
|
48 |
-
|
49 |
-
#: ../user-role-editor.php:139
|
50 |
-
msgid "Select All"
|
51 |
-
msgstr ""
|
52 |
-
|
53 |
-
#: ../user-role-editor.php:140
|
54 |
-
msgid "Unselect All"
|
55 |
-
msgstr ""
|
56 |
-
|
57 |
-
#: ../user-role-editor.php:141
|
58 |
-
msgid "Reverse"
|
59 |
-
msgstr ""
|
60 |
-
|
61 |
-
#: ../user-role-editor.php:142
|
62 |
-
msgid "Update"
|
63 |
-
msgstr ""
|
64 |
-
|
65 |
-
#: ../user-role-editor.php:143
|
66 |
-
msgid "Please confirm permissions update"
|
67 |
-
msgstr ""
|
68 |
-
|
69 |
-
#: ../user-role-editor.php:144
|
70 |
-
msgid "Add New Role"
|
71 |
-
msgstr ""
|
72 |
-
|
73 |
-
#: ../user-role-editor.php:145
|
74 |
-
msgid " Role name (ID) can not be empty!"
|
75 |
-
msgstr ""
|
76 |
-
|
77 |
-
#: ../user-role-editor.php:146
|
78 |
-
msgid " Role name (ID) must contain latin characters, digits, hyphens or underscore only!"
|
79 |
-
msgstr ""
|
80 |
-
|
81 |
-
#: ../user-role-editor.php:147
|
82 |
-
msgid "Add Role"
|
83 |
-
msgstr ""
|
84 |
-
|
85 |
-
#: ../user-role-editor.php:148
|
86 |
-
msgid "Delete Role"
|
87 |
-
msgstr ""
|
88 |
-
|
89 |
-
#: ../user-role-editor.php:149
|
90 |
-
msgid "Cancel"
|
91 |
-
msgstr ""
|
92 |
-
|
93 |
-
#: ../user-role-editor.php:150
|
94 |
-
msgid "Add Capability"
|
95 |
-
msgstr ""
|
96 |
-
|
97 |
-
#: ../user-role-editor.php:151
|
98 |
-
#: ../user-role-editor.php:156
|
99 |
-
msgid "Delete Capability"
|
100 |
-
msgstr ""
|
101 |
-
|
102 |
-
#: ../user-role-editor.php:152
|
103 |
-
msgid "Reset"
|
104 |
-
msgstr ""
|
105 |
-
|
106 |
-
#: ../user-role-editor.php:153
|
107 |
-
msgid "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?"
|
108 |
-
msgstr ""
|
109 |
-
|
110 |
-
#: ../user-role-editor.php:154
|
111 |
-
msgid "Default Role"
|
112 |
-
msgstr ""
|
113 |
-
|
114 |
-
#: ../user-role-editor.php:155
|
115 |
-
msgid "Set New Default Role"
|
116 |
-
msgstr ""
|
117 |
-
|
118 |
-
#: ../user-role-editor.php:157
|
119 |
-
msgid "Warning! Be careful - removing critical capability could crash some plugin or other custom code"
|
120 |
-
msgstr ""
|
121 |
-
|
122 |
-
#: ../user-role-editor.php:158
|
123 |
-
msgid " Capability name (ID) can not be empty!"
|
124 |
-
msgstr ""
|
125 |
-
|
126 |
-
#: ../user-role-editor.php:159
|
127 |
-
msgid " Capability name (ID) must contain latin characters, digits, hyphens or underscore only!"
|
128 |
-
msgstr ""
|
129 |
-
|
130 |
-
#: ../user-role-editor.php:284
|
131 |
-
msgid "Settings"
|
132 |
-
msgstr ""
|
133 |
-
|
134 |
-
#: ../user-role-editor.php:294
|
135 |
-
#: ../includes/ure-options.php:209
|
136 |
-
msgid "Changelog"
|
137 |
-
msgstr ""
|
138 |
-
|
139 |
-
#: ../user-role-editor.php:342
|
140 |
-
msgid "Capabilities"
|
141 |
-
msgstr ""
|
142 |
-
|
143 |
-
#: ../user-role-editor.php:371
|
144 |
-
#: ../user-role-editor.php:407
|
145 |
-
msgid "Other Roles"
|
146 |
-
msgstr ""
|
147 |
-
|
148 |
-
#: ../user-role-editor.php:381
|
149 |
-
msgid "Edit"
|
150 |
-
msgstr ""
|
151 |
-
|
152 |
-
#: ../includes/ure-lib.php:35
|
153 |
-
msgid "Error is occur. Please check the log file."
|
154 |
-
msgstr ""
|
155 |
-
|
156 |
-
#: ../includes/ure-lib.php:364
|
157 |
-
msgid "Backup record is created for the current role capabilities"
|
158 |
-
msgstr ""
|
159 |
-
|
160 |
-
#: ../includes/ure-lib.php:481
|
161 |
-
msgid "Error: Role ID must contain latin characters, digits, hyphens or underscore only!"
|
162 |
-
msgstr ""
|
163 |
-
|
164 |
-
#: ../includes/ure-lib.php:496
|
165 |
-
#, php-format
|
166 |
-
msgid "Role %s exists already"
|
167 |
-
msgstr ""
|
168 |
-
|
169 |
-
#: ../includes/ure-lib.php:511
|
170 |
-
msgid "Error is encountered during new role create operation"
|
171 |
-
msgstr ""
|
172 |
-
|
173 |
-
#: ../includes/ure-lib.php:513
|
174 |
-
#, php-format
|
175 |
-
msgid "Role %s is created successfully"
|
176 |
-
msgstr ""
|
177 |
-
|
178 |
-
#: ../includes/ure-lib.php:597
|
179 |
-
msgid "Error encountered during role delete operation"
|
180 |
-
msgstr ""
|
181 |
-
|
182 |
-
#: ../includes/ure-lib.php:599
|
183 |
-
#, php-format
|
184 |
-
msgid "Role %s is deleted successfully"
|
185 |
-
msgstr ""
|
186 |
-
|
187 |
-
#: ../includes/ure-lib.php:619
|
188 |
-
msgid "Error encountered during default role change operation"
|
189 |
-
msgstr ""
|
190 |
-
|
191 |
-
#: ../includes/ure-lib.php:625
|
192 |
-
#, php-format
|
193 |
-
msgid "Default role for new users is set to %s successfully"
|
194 |
-
msgstr ""
|
195 |
-
|
196 |
-
#: ../includes/ure-lib.php:652
|
197 |
-
msgid "Editor"
|
198 |
-
msgstr ""
|
199 |
-
|
200 |
-
#: ../includes/ure-lib.php:653
|
201 |
-
msgid "Author"
|
202 |
-
msgstr ""
|
203 |
-
|
204 |
-
#: ../includes/ure-lib.php:654
|
205 |
-
msgid "Contributor"
|
206 |
-
msgstr ""
|
207 |
-
|
208 |
-
#: ../includes/ure-lib.php:655
|
209 |
-
msgid "Subscriber"
|
210 |
-
msgstr ""
|
211 |
-
|
212 |
-
#: ../includes/ure-lib.php:657
|
213 |
-
msgid "Switch themes"
|
214 |
-
msgstr ""
|
215 |
-
|
216 |
-
#: ../includes/ure-lib.php:658
|
217 |
-
msgid "Edit themes"
|
218 |
-
msgstr ""
|
219 |
-
|
220 |
-
#: ../includes/ure-lib.php:659
|
221 |
-
msgid "Activate plugins"
|
222 |
-
msgstr ""
|
223 |
-
|
224 |
-
#: ../includes/ure-lib.php:660
|
225 |
-
msgid "Edit plugins"
|
226 |
-
msgstr ""
|
227 |
-
|
228 |
-
#: ../includes/ure-lib.php:661
|
229 |
-
msgid "Edit users"
|
230 |
-
msgstr ""
|
231 |
-
|
232 |
-
#: ../includes/ure-lib.php:662
|
233 |
-
msgid "Edit files"
|
234 |
-
msgstr ""
|
235 |
-
|
236 |
-
#: ../includes/ure-lib.php:663
|
237 |
-
msgid "Manage options"
|
238 |
-
msgstr ""
|
239 |
-
|
240 |
-
#: ../includes/ure-lib.php:664
|
241 |
-
msgid "Moderate comments"
|
242 |
-
msgstr ""
|
243 |
-
|
244 |
-
#: ../includes/ure-lib.php:665
|
245 |
-
msgid "Manage categories"
|
246 |
-
msgstr ""
|
247 |
-
|
248 |
-
#: ../includes/ure-lib.php:666
|
249 |
-
msgid "Manage links"
|
250 |
-
msgstr ""
|
251 |
-
|
252 |
-
#: ../includes/ure-lib.php:667
|
253 |
-
msgid "Upload files"
|
254 |
-
msgstr ""
|
255 |
-
|
256 |
-
#: ../includes/ure-lib.php:668
|
257 |
-
msgid "Import"
|
258 |
-
msgstr ""
|
259 |
-
|
260 |
-
#: ../includes/ure-lib.php:669
|
261 |
-
msgid "Unfiltered html"
|
262 |
-
msgstr ""
|
263 |
-
|
264 |
-
#: ../includes/ure-lib.php:670
|
265 |
-
msgid "Edit posts"
|
266 |
-
msgstr ""
|
267 |
-
|
268 |
-
#: ../includes/ure-lib.php:671
|
269 |
-
msgid "Edit others posts"
|
270 |
-
msgstr ""
|
271 |
-
|
272 |
-
#: ../includes/ure-lib.php:672
|
273 |
-
msgid "Edit published posts"
|
274 |
-
msgstr ""
|
275 |
-
|
276 |
-
#: ../includes/ure-lib.php:673
|
277 |
-
msgid "Publish posts"
|
278 |
-
msgstr ""
|
279 |
-
|
280 |
-
#: ../includes/ure-lib.php:674
|
281 |
-
msgid "Edit pages"
|
282 |
-
msgstr ""
|
283 |
-
|
284 |
-
#: ../includes/ure-lib.php:675
|
285 |
-
msgid "Read"
|
286 |
-
msgstr ""
|
287 |
-
|
288 |
-
#: ../includes/ure-lib.php:676
|
289 |
-
msgid "Level 10"
|
290 |
-
msgstr ""
|
291 |
-
|
292 |
-
#: ../includes/ure-lib.php:677
|
293 |
-
msgid "Level 9"
|
294 |
-
msgstr ""
|
295 |
-
|
296 |
-
#: ../includes/ure-lib.php:678
|
297 |
-
msgid "Level 8"
|
298 |
-
msgstr ""
|
299 |
-
|
300 |
-
#: ../includes/ure-lib.php:679
|
301 |
-
msgid "Level 7"
|
302 |
-
msgstr ""
|
303 |
-
|
304 |
-
#: ../includes/ure-lib.php:680
|
305 |
-
msgid "Level 6"
|
306 |
-
msgstr ""
|
307 |
-
|
308 |
-
#: ../includes/ure-lib.php:681
|
309 |
-
msgid "Level 5"
|
310 |
-
msgstr ""
|
311 |
-
|
312 |
-
#: ../includes/ure-lib.php:682
|
313 |
-
msgid "Level 4"
|
314 |
-
msgstr ""
|
315 |
-
|
316 |
-
#: ../includes/ure-lib.php:683
|
317 |
-
msgid "Level 3"
|
318 |
-
msgstr ""
|
319 |
-
|
320 |
-
#: ../includes/ure-lib.php:684
|
321 |
-
msgid "Level 2"
|
322 |
-
msgstr ""
|
323 |
-
|
324 |
-
#: ../includes/ure-lib.php:685
|
325 |
-
msgid "Level 1"
|
326 |
-
msgstr ""
|
327 |
-
|
328 |
-
#: ../includes/ure-lib.php:686
|
329 |
-
msgid "Level 0"
|
330 |
-
msgstr ""
|
331 |
-
|
332 |
-
#: ../includes/ure-lib.php:687
|
333 |
-
msgid "Edit others pages"
|
334 |
-
msgstr ""
|
335 |
-
|
336 |
-
#: ../includes/ure-lib.php:688
|
337 |
-
msgid "Edit published pages"
|
338 |
-
msgstr ""
|
339 |
-
|
340 |
-
#: ../includes/ure-lib.php:689
|
341 |
-
msgid "Publish pages"
|
342 |
-
msgstr ""
|
343 |
-
|
344 |
-
#: ../includes/ure-lib.php:690
|
345 |
-
msgid "Delete pages"
|
346 |
-
msgstr ""
|
347 |
-
|
348 |
-
#: ../includes/ure-lib.php:691
|
349 |
-
msgid "Delete others pages"
|
350 |
-
msgstr ""
|
351 |
-
|
352 |
-
#: ../includes/ure-lib.php:692
|
353 |
-
msgid "Delete published pages"
|
354 |
-
msgstr ""
|
355 |
-
|
356 |
-
#: ../includes/ure-lib.php:693
|
357 |
-
msgid "Delete posts"
|
358 |
-
msgstr ""
|
359 |
-
|
360 |
-
#: ../includes/ure-lib.php:694
|
361 |
-
msgid "Delete others posts"
|
362 |
-
msgstr ""
|
363 |
-
|
364 |
-
#: ../includes/ure-lib.php:695
|
365 |
-
msgid "Delete published posts"
|
366 |
-
msgstr ""
|
367 |
-
|
368 |
-
#: ../includes/ure-lib.php:696
|
369 |
-
msgid "Delete private posts"
|
370 |
-
msgstr ""
|
371 |
-
|
372 |
-
#: ../includes/ure-lib.php:697
|
373 |
-
msgid "Edit private posts"
|
374 |
-
msgstr ""
|
375 |
-
|
376 |
-
#: ../includes/ure-lib.php:698
|
377 |
-
msgid "Read private posts"
|
378 |
-
msgstr ""
|
379 |
-
|
380 |
-
#: ../includes/ure-lib.php:699
|
381 |
-
msgid "Delete private pages"
|
382 |
-
msgstr ""
|
383 |
-
|
384 |
-
#: ../includes/ure-lib.php:700
|
385 |
-
msgid "Edit private pages"
|
386 |
-
msgstr ""
|
387 |
-
|
388 |
-
#: ../includes/ure-lib.php:701
|
389 |
-
msgid "Read private pages"
|
390 |
-
msgstr ""
|
391 |
-
|
392 |
-
#: ../includes/ure-lib.php:702
|
393 |
-
msgid "Delete users"
|
394 |
-
msgstr ""
|
395 |
-
|
396 |
-
#: ../includes/ure-lib.php:703
|
397 |
-
msgid "Create users"
|
398 |
-
msgstr ""
|
399 |
-
|
400 |
-
#: ../includes/ure-lib.php:704
|
401 |
-
msgid "Unfiltered upload"
|
402 |
-
msgstr ""
|
403 |
-
|
404 |
-
#: ../includes/ure-lib.php:705
|
405 |
-
msgid "Edit dashboard"
|
406 |
-
msgstr ""
|
407 |
-
|
408 |
-
#: ../includes/ure-lib.php:706
|
409 |
-
msgid "Update plugins"
|
410 |
-
msgstr ""
|
411 |
-
|
412 |
-
#: ../includes/ure-lib.php:707
|
413 |
-
msgid "Delete plugins"
|
414 |
-
msgstr ""
|
415 |
-
|
416 |
-
#: ../includes/ure-lib.php:708
|
417 |
-
msgid "Install plugins"
|
418 |
-
msgstr ""
|
419 |
-
|
420 |
-
#: ../includes/ure-lib.php:709
|
421 |
-
msgid "Update themes"
|
422 |
-
msgstr ""
|
423 |
-
|
424 |
-
#: ../includes/ure-lib.php:710
|
425 |
-
msgid "Install themes"
|
426 |
-
msgstr ""
|
427 |
-
|
428 |
-
#: ../includes/ure-lib.php:711
|
429 |
-
msgid "Update core"
|
430 |
-
msgstr ""
|
431 |
-
|
432 |
-
#: ../includes/ure-lib.php:712
|
433 |
-
msgid "List users"
|
434 |
-
msgstr ""
|
435 |
-
|
436 |
-
#: ../includes/ure-lib.php:713
|
437 |
-
msgid "Remove users"
|
438 |
-
msgstr ""
|
439 |
-
|
440 |
-
#: ../includes/ure-lib.php:714
|
441 |
-
msgid "Add users"
|
442 |
-
msgstr ""
|
443 |
-
|
444 |
-
#: ../includes/ure-lib.php:715
|
445 |
-
msgid "Promote users"
|
446 |
-
msgstr ""
|
447 |
-
|
448 |
-
#: ../includes/ure-lib.php:716
|
449 |
-
msgid "Edit theme options"
|
450 |
-
msgstr ""
|
451 |
-
|
452 |
-
#: ../includes/ure-lib.php:717
|
453 |
-
msgid "Delete themes"
|
454 |
-
msgstr ""
|
455 |
-
|
456 |
-
#: ../includes/ure-lib.php:718
|
457 |
-
msgid "Export"
|
458 |
-
msgstr ""
|
459 |
-
|
460 |
-
#: ../includes/ure-lib.php:834
|
461 |
-
msgid "Error: Capability name must contain latin characters and digits only!"
|
462 |
-
msgstr ""
|
463 |
-
|
464 |
-
#: ../includes/ure-lib.php:846
|
465 |
-
#, php-format
|
466 |
-
msgid "Capability %s is added successfully"
|
467 |
-
msgstr ""
|
468 |
-
|
469 |
-
#: ../includes/ure-lib.php:848
|
470 |
-
#, php-format
|
471 |
-
msgid "Capability %s exists already"
|
472 |
-
msgstr ""
|
473 |
-
|
474 |
-
#: ../includes/ure-lib.php:997
|
475 |
-
#, php-format
|
476 |
-
msgid "Error! You do not have permission to delete this capability: %s!"
|
477 |
-
msgstr ""
|
478 |
-
|
479 |
-
#: ../includes/ure-lib.php:1016
|
480 |
-
#, php-format
|
481 |
-
msgid "Capability %s is removed successfully"
|
482 |
-
msgstr ""
|
483 |
-
|
484 |
-
#: ../includes/ure-lib.php:1083
|
485 |
-
msgid "Help"
|
486 |
-
msgstr ""
|
487 |
-
|
488 |
-
#: ../includes/ure-role-edit.php:29
|
489 |
-
msgid "None"
|
490 |
-
msgstr ""
|
491 |
-
|
492 |
-
#: ../includes/ure-role-edit.php:67
|
493 |
-
msgid "Select Role and change its capabilities list"
|
494 |
-
msgstr ""
|
495 |
-
|
496 |
-
#: ../includes/ure-role-edit.php:69
|
497 |
-
#: ../includes/ure-role-edit.php:166
|
498 |
-
msgid "Select Role:"
|
499 |
-
msgstr ""
|
500 |
-
|
501 |
-
#: ../includes/ure-role-edit.php:79
|
502 |
-
#: ../includes/ure-user-edit.php:38
|
503 |
-
msgid "Show capabilities in human readable form"
|
504 |
-
msgstr ""
|
505 |
-
|
506 |
-
#: ../includes/ure-role-edit.php:88
|
507 |
-
#: ../includes/ure-user-edit.php:47
|
508 |
-
msgid "Show deprecated capabilities"
|
509 |
-
msgstr ""
|
510 |
-
|
511 |
-
#: ../includes/ure-role-edit.php:92
|
512 |
-
msgid "If checked, then apply action to ALL sites of this Network"
|
513 |
-
msgstr ""
|
514 |
-
|
515 |
-
#: ../includes/ure-role-edit.php:102
|
516 |
-
msgid "Apply to All Sites"
|
517 |
-
msgstr ""
|
518 |
-
|
519 |
-
#: ../includes/ure-role-edit.php:109
|
520 |
-
#: ../includes/ure-user-edit.php:88
|
521 |
-
msgid "Core capabilities:"
|
522 |
-
msgstr ""
|
523 |
-
|
524 |
-
#: ../includes/ure-role-edit.php:124
|
525 |
-
#: ../includes/ure-user-edit.php:103
|
526 |
-
msgid "Custom capabilities:"
|
527 |
-
msgstr ""
|
528 |
-
|
529 |
-
#: ../includes/ure-role-edit.php:155
|
530 |
-
msgid "Role name (ID): "
|
531 |
-
msgstr ""
|
532 |
-
|
533 |
-
#: ../includes/ure-role-edit.php:157
|
534 |
-
msgid "Display Role Name: "
|
535 |
-
msgstr ""
|
536 |
-
|
537 |
-
#: ../includes/ure-role-edit.php:159
|
538 |
-
msgid "Make copy of: "
|
539 |
-
msgstr ""
|
540 |
-
|
541 |
-
#: ../includes/ure-role-edit.php:181
|
542 |
-
msgid "Delete:"
|
543 |
-
msgstr ""
|
544 |
-
|
545 |
-
#: ../includes/ure-role-edit.php:188
|
546 |
-
msgid "Capability name (ID): "
|
547 |
-
msgstr ""
|
548 |
-
|
549 |
-
#: ../includes/ure-user-edit.php:22
|
550 |
-
msgid "Change capabilities for user"
|
551 |
-
msgstr ""
|
552 |
-
|
553 |
-
#: ../includes/ure-user-edit.php:52
|
554 |
-
msgid "Primary Role:"
|
555 |
-
msgstr ""
|
556 |
-
|
557 |
-
#: ../includes/ure-user-edit.php:62
|
558 |
-
msgid "bbPress Role:"
|
559 |
-
msgstr ""
|
560 |
-
|
561 |
-
#: ../includes/ure-user-edit.php:72
|
562 |
-
msgid "Other Roles:"
|
563 |
-
msgstr ""
|
564 |
-
|
565 |
-
#: ../includes/ure-options.php:65
|
566 |
-
msgid "User Roles are restored to WordPress default values. "
|
567 |
-
msgstr ""
|
568 |
-
|
569 |
-
#: ../includes/ure-options.php:136
|
570 |
-
msgid "Error: "
|
571 |
-
msgstr ""
|
572 |
-
|
573 |
-
#: ../includes/ure-options.php:136
|
574 |
-
#: ../includes/ure-options.php:156
|
575 |
-
msgid "Role"
|
576 |
-
msgstr ""
|
577 |
-
|
578 |
-
#: ../includes/ure-options.php:136
|
579 |
-
msgid "does not exist"
|
580 |
-
msgstr ""
|
581 |
-
|
582 |
-
#: ../includes/ure-options.php:156
|
583 |
-
msgid "is updated successfully"
|
584 |
-
msgstr ""
|
585 |
-
|
586 |
-
#: ../includes/ure-options.php:161
|
587 |
-
#: ../includes/ure-options.php:174
|
588 |
-
msgid "Error occured during role update"
|
589 |
-
msgstr ""
|
590 |
-
|
591 |
-
#: ../includes/ure-options.php:169
|
592 |
-
msgid "User"
|
593 |
-
msgstr ""
|
594 |
-
|
595 |
-
#: ../includes/ure-options.php:169
|
596 |
-
msgid "capabilities are updated successfully"
|
597 |
-
msgstr ""
|
598 |
-
|
599 |
-
#: ../includes/ure-options.php:206
|
600 |
-
msgid "About this Plugin:"
|
601 |
-
msgstr ""
|
602 |
-
|
603 |
-
#: ../includes/ure-options.php:207
|
604 |
-
msgid "Author's website"
|
605 |
-
msgstr ""
|
606 |
-
|
607 |
-
#: ../includes/ure-options.php:208
|
608 |
-
msgid "Plugin webpage"
|
609 |
-
msgstr ""
|
610 |
-
|
611 |
-
#: ../includes/ure-options.php:210
|
612 |
-
msgid "FAQ"
|
613 |
-
msgstr ""
|
614 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
lang/ure-it_IT.mo
DELETED
Binary file
|
lang/ure-it_IT.po
DELETED
@@ -1,755 +0,0 @@
|
|
1 |
-
msgid ""
|
2 |
-
msgstr ""
|
3 |
-
"Project-Id-Version: User Role Editor 2.0\n"
|
4 |
-
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2013-05-17 11:16+0700\n"
|
6 |
-
"PO-Revision-Date: 2013-05-17 11:16+0700\n"
|
7 |
-
"Last-Translator: Vladimir Garagulya <vladimir@shinephp.com>\n"
|
8 |
-
"Language-Team: w3b.it <web@w3b.it>\n"
|
9 |
-
"Language: \n"
|
10 |
-
"MIME-Version: 1.0\n"
|
11 |
-
"Content-Type: text/plain; charset=UTF-8\n"
|
12 |
-
"Content-Transfer-Encoding: 8bit\n"
|
13 |
-
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
14 |
-
"X-Poedit-Language: Italian\n"
|
15 |
-
"X-Poedit-Country: ITALY\n"
|
16 |
-
"X-Poedit-SourceCharset: utf-8\n"
|
17 |
-
"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n"
|
18 |
-
"X-Poedit-Basepath: .\n"
|
19 |
-
"X-Textdomain-Support: yes\n"
|
20 |
-
"X-Poedit-SearchPath-0: ..\n"
|
21 |
-
|
22 |
-
# @ ure
|
23 |
-
#: ../user-role-editor.php:34
|
24 |
-
#, fuzzy, php-format
|
25 |
-
msgid "User Role Editor requires PHP %s or newer."
|
26 |
-
msgstr "User Role Editor richiede PHP 5.0 o superiori."
|
27 |
-
|
28 |
-
# @ ure
|
29 |
-
#: ../user-role-editor.php:35
|
30 |
-
#: ../user-role-editor.php:107
|
31 |
-
msgid "Please update!"
|
32 |
-
msgstr "Per favore aggiorna!"
|
33 |
-
|
34 |
-
#: ../user-role-editor.php:80
|
35 |
-
msgid "Only"
|
36 |
-
msgstr "Solo"
|
37 |
-
|
38 |
-
#: ../user-role-editor.php:80
|
39 |
-
msgid "is allowed to use"
|
40 |
-
msgstr "ha il permesso di usare"
|
41 |
-
|
42 |
-
# @ ure
|
43 |
-
# @ default
|
44 |
-
#: ../user-role-editor.php:86
|
45 |
-
#: ../user-role-editor.php:312
|
46 |
-
#: ../user-role-editor.php:368
|
47 |
-
msgid "User Role Editor"
|
48 |
-
msgstr "Editor Ruoli Utente"
|
49 |
-
|
50 |
-
# @ ure
|
51 |
-
#: ../user-role-editor.php:106
|
52 |
-
#, fuzzy, php-format
|
53 |
-
msgid "User Role Editor requires WordPress %s or newer."
|
54 |
-
msgstr "User Role Editor richiede WordPress 3.0 o superiori."
|
55 |
-
|
56 |
-
# @ ure
|
57 |
-
#: ../user-role-editor.php:139
|
58 |
-
msgid "Select All"
|
59 |
-
msgstr ""
|
60 |
-
|
61 |
-
#: ../user-role-editor.php:140
|
62 |
-
msgid "Unselect All"
|
63 |
-
msgstr ""
|
64 |
-
|
65 |
-
#: ../user-role-editor.php:141
|
66 |
-
msgid "Reverse"
|
67 |
-
msgstr ""
|
68 |
-
|
69 |
-
# @ ure
|
70 |
-
#: ../user-role-editor.php:142
|
71 |
-
msgid "Update"
|
72 |
-
msgstr "Aggiorna"
|
73 |
-
|
74 |
-
# @ ure
|
75 |
-
#: ../user-role-editor.php:143
|
76 |
-
#, fuzzy
|
77 |
-
msgid "Please confirm permissions update"
|
78 |
-
msgstr "Conferma per continuare"
|
79 |
-
|
80 |
-
# @ ure
|
81 |
-
#: ../user-role-editor.php:144
|
82 |
-
msgid "Add New Role"
|
83 |
-
msgstr "Aggiungi nuovo ruolo"
|
84 |
-
|
85 |
-
# @ ure
|
86 |
-
#: ../user-role-editor.php:145
|
87 |
-
#, fuzzy
|
88 |
-
msgid " Role name (ID) can not be empty!"
|
89 |
-
msgstr "Il nome non può essere vuoto!"
|
90 |
-
|
91 |
-
# @ ure
|
92 |
-
#: ../user-role-editor.php:146
|
93 |
-
#, fuzzy
|
94 |
-
msgid " Role name (ID) must contain latin characters, digits, hyphens or underscore only!"
|
95 |
-
msgstr "Errore: il nome del ruolo deve contenere solo numeri e caratteri latini!"
|
96 |
-
|
97 |
-
# @ ure
|
98 |
-
#: ../user-role-editor.php:147
|
99 |
-
#, fuzzy
|
100 |
-
msgid "Add Role"
|
101 |
-
msgstr "Aggiungi nuovo ruolo"
|
102 |
-
|
103 |
-
# @ ure
|
104 |
-
#: ../user-role-editor.php:148
|
105 |
-
msgid "Delete Role"
|
106 |
-
msgstr "Elimina ruolo"
|
107 |
-
|
108 |
-
# @ ure
|
109 |
-
#: ../user-role-editor.php:149
|
110 |
-
msgid "Cancel"
|
111 |
-
msgstr "Annulla"
|
112 |
-
|
113 |
-
# @ ure
|
114 |
-
#: ../user-role-editor.php:150
|
115 |
-
#, fuzzy
|
116 |
-
msgid "Add Capability"
|
117 |
-
msgstr "Aggiungi nuovo permesso"
|
118 |
-
|
119 |
-
#: ../user-role-editor.php:151
|
120 |
-
#: ../user-role-editor.php:156
|
121 |
-
#, fuzzy
|
122 |
-
msgid "Delete Capability"
|
123 |
-
msgstr "Rimuovi il permesso"
|
124 |
-
|
125 |
-
# @ ure
|
126 |
-
#: ../user-role-editor.php:152
|
127 |
-
msgid "Reset"
|
128 |
-
msgstr "Ripristina"
|
129 |
-
|
130 |
-
#: ../user-role-editor.php:153
|
131 |
-
msgid "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?"
|
132 |
-
msgstr ""
|
133 |
-
|
134 |
-
# @ ure
|
135 |
-
#: ../user-role-editor.php:154
|
136 |
-
#, fuzzy
|
137 |
-
msgid "Default Role"
|
138 |
-
msgstr "Elimina ruolo"
|
139 |
-
|
140 |
-
# @ ure
|
141 |
-
#: ../user-role-editor.php:155
|
142 |
-
#, fuzzy
|
143 |
-
msgid "Set New Default Role"
|
144 |
-
msgstr "Imposta come ruolo Utente predefinito"
|
145 |
-
|
146 |
-
#: ../user-role-editor.php:157
|
147 |
-
msgid "Warning! Be careful - removing critical capability could crash some plugin or other custom code"
|
148 |
-
msgstr "Attenzione! rimuovere permessi critici potrebbe causare malfunzionamenti in alcuni plugin o in altro codice personalizzato"
|
149 |
-
|
150 |
-
# @ ure
|
151 |
-
#: ../user-role-editor.php:158
|
152 |
-
#, fuzzy
|
153 |
-
msgid " Capability name (ID) can not be empty!"
|
154 |
-
msgstr "Il nome non può essere vuoto!"
|
155 |
-
|
156 |
-
# @ ure
|
157 |
-
#: ../user-role-editor.php:159
|
158 |
-
#, fuzzy
|
159 |
-
msgid " Capability name (ID) must contain latin characters, digits, hyphens or underscore only!"
|
160 |
-
msgstr "Errore: il nome del permesso deve contenere solo numeri e caratteri latini!"
|
161 |
-
|
162 |
-
# @ ure
|
163 |
-
#: ../user-role-editor.php:284
|
164 |
-
msgid "Settings"
|
165 |
-
msgstr "Impostazioni"
|
166 |
-
|
167 |
-
# @ ure
|
168 |
-
#: ../user-role-editor.php:294
|
169 |
-
#: ../includes/ure-options.php:209
|
170 |
-
msgid "Changelog"
|
171 |
-
msgstr "Storico degli Aggiornamenti"
|
172 |
-
|
173 |
-
#: ../user-role-editor.php:342
|
174 |
-
msgid "Capabilities"
|
175 |
-
msgstr "Permessi"
|
176 |
-
|
177 |
-
# @ ure
|
178 |
-
#: ../user-role-editor.php:371
|
179 |
-
#: ../user-role-editor.php:407
|
180 |
-
#, fuzzy
|
181 |
-
msgid "Other Roles"
|
182 |
-
msgstr "Elimina ruolo"
|
183 |
-
|
184 |
-
# @ ure
|
185 |
-
#: ../user-role-editor.php:381
|
186 |
-
#, fuzzy
|
187 |
-
msgid "Edit"
|
188 |
-
msgstr "Editore"
|
189 |
-
|
190 |
-
# @ ure
|
191 |
-
#: ../includes/ure-lib.php:35
|
192 |
-
msgid "Error is occur. Please check the log file."
|
193 |
-
msgstr "Si è verificato un errore. Controllare il log."
|
194 |
-
|
195 |
-
# @ ure
|
196 |
-
#: ../includes/ure-lib.php:364
|
197 |
-
msgid "Backup record is created for the current role capabilities"
|
198 |
-
msgstr "Backup creato per i permessi attuali dei ruoli."
|
199 |
-
|
200 |
-
# @ ure
|
201 |
-
#: ../includes/ure-lib.php:481
|
202 |
-
#, fuzzy
|
203 |
-
msgid "Error: Role ID must contain latin characters, digits, hyphens or underscore only!"
|
204 |
-
msgstr "Errore: il nome del ruolo deve contenere solo numeri e caratteri latini!"
|
205 |
-
|
206 |
-
# @ ure
|
207 |
-
#: ../includes/ure-lib.php:496
|
208 |
-
#, php-format
|
209 |
-
msgid "Role %s exists already"
|
210 |
-
msgstr "Il ruolo %s esiste già"
|
211 |
-
|
212 |
-
# @ ure
|
213 |
-
#: ../includes/ure-lib.php:511
|
214 |
-
msgid "Error is encountered during new role create operation"
|
215 |
-
msgstr "Si è verificato un errore nella creazione di un nuovo ruolo"
|
216 |
-
|
217 |
-
# @ ure
|
218 |
-
#: ../includes/ure-lib.php:513
|
219 |
-
#, php-format
|
220 |
-
msgid "Role %s is created successfully"
|
221 |
-
msgstr "Il ruolo %s è stato creato con successo."
|
222 |
-
|
223 |
-
# @ ure
|
224 |
-
#: ../includes/ure-lib.php:597
|
225 |
-
msgid "Error encountered during role delete operation"
|
226 |
-
msgstr "Si è verificato un errore nella cancellazione del ruolo"
|
227 |
-
|
228 |
-
# @ ure
|
229 |
-
#: ../includes/ure-lib.php:599
|
230 |
-
#, php-format
|
231 |
-
msgid "Role %s is deleted successfully"
|
232 |
-
msgstr "Ruolo %s cancellato con successo."
|
233 |
-
|
234 |
-
# @ ure
|
235 |
-
#: ../includes/ure-lib.php:619
|
236 |
-
msgid "Error encountered during default role change operation"
|
237 |
-
msgstr "Si è verificato un errore nella modifica del ruolo di default."
|
238 |
-
|
239 |
-
# @ ure
|
240 |
-
#: ../includes/ure-lib.php:625
|
241 |
-
#, php-format
|
242 |
-
msgid "Default role for new users is set to %s successfully"
|
243 |
-
msgstr "Il ruolo di default per i nuovi utenti è stato impostato con successo su %s"
|
244 |
-
|
245 |
-
# @ ure
|
246 |
-
#: ../includes/ure-lib.php:652
|
247 |
-
msgid "Editor"
|
248 |
-
msgstr "Editore"
|
249 |
-
|
250 |
-
# @ ure
|
251 |
-
#: ../includes/ure-lib.php:653
|
252 |
-
msgid "Author"
|
253 |
-
msgstr "Autore"
|
254 |
-
|
255 |
-
# @ ure
|
256 |
-
#: ../includes/ure-lib.php:654
|
257 |
-
msgid "Contributor"
|
258 |
-
msgstr "Collaboratore"
|
259 |
-
|
260 |
-
# @ ure
|
261 |
-
#: ../includes/ure-lib.php:655
|
262 |
-
msgid "Subscriber"
|
263 |
-
msgstr "Sottoscrittore"
|
264 |
-
|
265 |
-
# @ ure
|
266 |
-
#: ../includes/ure-lib.php:657
|
267 |
-
msgid "Switch themes"
|
268 |
-
msgstr "Cambiare tema"
|
269 |
-
|
270 |
-
# @ ure
|
271 |
-
#: ../includes/ure-lib.php:658
|
272 |
-
msgid "Edit themes"
|
273 |
-
msgstr "Modificare temi"
|
274 |
-
|
275 |
-
# @ ure
|
276 |
-
#: ../includes/ure-lib.php:659
|
277 |
-
msgid "Activate plugins"
|
278 |
-
msgstr "Attivare plugins"
|
279 |
-
|
280 |
-
# @ ure
|
281 |
-
#: ../includes/ure-lib.php:660
|
282 |
-
msgid "Edit plugins"
|
283 |
-
msgstr "Modificare plugins"
|
284 |
-
|
285 |
-
# @ ure
|
286 |
-
#: ../includes/ure-lib.php:661
|
287 |
-
msgid "Edit users"
|
288 |
-
msgstr "Modificare Utenti"
|
289 |
-
|
290 |
-
# @ ure
|
291 |
-
#: ../includes/ure-lib.php:662
|
292 |
-
msgid "Edit files"
|
293 |
-
msgstr "Modificare file"
|
294 |
-
|
295 |
-
# @ ure
|
296 |
-
#: ../includes/ure-lib.php:663
|
297 |
-
msgid "Manage options"
|
298 |
-
msgstr "Gestire le opzioni"
|
299 |
-
|
300 |
-
# @ ure
|
301 |
-
#: ../includes/ure-lib.php:664
|
302 |
-
msgid "Moderate comments"
|
303 |
-
msgstr "Moderare i commenti"
|
304 |
-
|
305 |
-
# @ ure
|
306 |
-
#: ../includes/ure-lib.php:665
|
307 |
-
msgid "Manage categories"
|
308 |
-
msgstr "Gestire le categorie"
|
309 |
-
|
310 |
-
# @ ure
|
311 |
-
#: ../includes/ure-lib.php:666
|
312 |
-
msgid "Manage links"
|
313 |
-
msgstr "Gestire i link"
|
314 |
-
|
315 |
-
# @ ure
|
316 |
-
#: ../includes/ure-lib.php:667
|
317 |
-
msgid "Upload files"
|
318 |
-
msgstr "Caricare file"
|
319 |
-
|
320 |
-
# @ ure
|
321 |
-
#: ../includes/ure-lib.php:668
|
322 |
-
msgid "Import"
|
323 |
-
msgstr "Importare"
|
324 |
-
|
325 |
-
# @ ure
|
326 |
-
#: ../includes/ure-lib.php:669
|
327 |
-
msgid "Unfiltered html"
|
328 |
-
msgstr "html non filtrato"
|
329 |
-
|
330 |
-
# @ ure
|
331 |
-
#: ../includes/ure-lib.php:670
|
332 |
-
msgid "Edit posts"
|
333 |
-
msgstr "Modificare articoli"
|
334 |
-
|
335 |
-
# @ ure
|
336 |
-
#: ../includes/ure-lib.php:671
|
337 |
-
msgid "Edit others posts"
|
338 |
-
msgstr "Modificare articoli di altri Utenti"
|
339 |
-
|
340 |
-
# @ ure
|
341 |
-
#: ../includes/ure-lib.php:672
|
342 |
-
msgid "Edit published posts"
|
343 |
-
msgstr "Modificare articoli pubblicati"
|
344 |
-
|
345 |
-
# @ ure
|
346 |
-
#: ../includes/ure-lib.php:673
|
347 |
-
msgid "Publish posts"
|
348 |
-
msgstr "Pubblicare articolo"
|
349 |
-
|
350 |
-
# @ ure
|
351 |
-
#: ../includes/ure-lib.php:674
|
352 |
-
msgid "Edit pages"
|
353 |
-
msgstr "Modificare pagine"
|
354 |
-
|
355 |
-
# @ ure
|
356 |
-
#: ../includes/ure-lib.php:675
|
357 |
-
msgid "Read"
|
358 |
-
msgstr "Leggere"
|
359 |
-
|
360 |
-
# @ ure
|
361 |
-
#: ../includes/ure-lib.php:676
|
362 |
-
msgid "Level 10"
|
363 |
-
msgstr "Livello 10"
|
364 |
-
|
365 |
-
# @ ure
|
366 |
-
#: ../includes/ure-lib.php:677
|
367 |
-
msgid "Level 9"
|
368 |
-
msgstr "Livello 9"
|
369 |
-
|
370 |
-
# @ ure
|
371 |
-
#: ../includes/ure-lib.php:678
|
372 |
-
msgid "Level 8"
|
373 |
-
msgstr "Livello 8"
|
374 |
-
|
375 |
-
# @ ure
|
376 |
-
#: ../includes/ure-lib.php:679
|
377 |
-
msgid "Level 7"
|
378 |
-
msgstr "Livello 7"
|
379 |
-
|
380 |
-
# @ ure
|
381 |
-
#: ../includes/ure-lib.php:680
|
382 |
-
msgid "Level 6"
|
383 |
-
msgstr "Livello 6"
|
384 |
-
|
385 |
-
# @ ure
|
386 |
-
#: ../includes/ure-lib.php:681
|
387 |
-
msgid "Level 5"
|
388 |
-
msgstr "Livello 5"
|
389 |
-
|
390 |
-
# @ ure
|
391 |
-
#: ../includes/ure-lib.php:682
|
392 |
-
msgid "Level 4"
|
393 |
-
msgstr "Livello 4"
|
394 |
-
|
395 |
-
# @ ure
|
396 |
-
#: ../includes/ure-lib.php:683
|
397 |
-
msgid "Level 3"
|
398 |
-
msgstr "Livello 3"
|
399 |
-
|
400 |
-
# @ ure
|
401 |
-
#: ../includes/ure-lib.php:684
|
402 |
-
msgid "Level 2"
|
403 |
-
msgstr "Livello 2"
|
404 |
-
|
405 |
-
# @ ure
|
406 |
-
#: ../includes/ure-lib.php:685
|
407 |
-
msgid "Level 1"
|
408 |
-
msgstr "Livello 1"
|
409 |
-
|
410 |
-
# @ ure
|
411 |
-
#: ../includes/ure-lib.php:686
|
412 |
-
msgid "Level 0"
|
413 |
-
msgstr "Livello 0"
|
414 |
-
|
415 |
-
# @ ure
|
416 |
-
#: ../includes/ure-lib.php:687
|
417 |
-
msgid "Edit others pages"
|
418 |
-
msgstr "Modificare pagine di altri Utenti"
|
419 |
-
|
420 |
-
# @ ure
|
421 |
-
#: ../includes/ure-lib.php:688
|
422 |
-
msgid "Edit published pages"
|
423 |
-
msgstr "Modificare pagine pubblicate"
|
424 |
-
|
425 |
-
# @ ure
|
426 |
-
#: ../includes/ure-lib.php:689
|
427 |
-
msgid "Publish pages"
|
428 |
-
msgstr "Pubblicare pagine"
|
429 |
-
|
430 |
-
# @ ure
|
431 |
-
#: ../includes/ure-lib.php:690
|
432 |
-
msgid "Delete pages"
|
433 |
-
msgstr "Cancellare pagine"
|
434 |
-
|
435 |
-
# @ ure
|
436 |
-
#: ../includes/ure-lib.php:691
|
437 |
-
msgid "Delete others pages"
|
438 |
-
msgstr "Cancellare pagine di altri Utenti"
|
439 |
-
|
440 |
-
# @ ure
|
441 |
-
#: ../includes/ure-lib.php:692
|
442 |
-
msgid "Delete published pages"
|
443 |
-
msgstr "Cancellare pagine pubblicate"
|
444 |
-
|
445 |
-
# @ ure
|
446 |
-
#: ../includes/ure-lib.php:693
|
447 |
-
msgid "Delete posts"
|
448 |
-
msgstr "Cancellare articoli"
|
449 |
-
|
450 |
-
# @ ure
|
451 |
-
#: ../includes/ure-lib.php:694
|
452 |
-
msgid "Delete others posts"
|
453 |
-
msgstr "Cancellare articoli di altri Utenti"
|
454 |
-
|
455 |
-
# @ ure
|
456 |
-
#: ../includes/ure-lib.php:695
|
457 |
-
msgid "Delete published posts"
|
458 |
-
msgstr "Cancellare articoli pubblicati"
|
459 |
-
|
460 |
-
# @ ure
|
461 |
-
#: ../includes/ure-lib.php:696
|
462 |
-
msgid "Delete private posts"
|
463 |
-
msgstr "Cancellare articoli privati"
|
464 |
-
|
465 |
-
# @ ure
|
466 |
-
#: ../includes/ure-lib.php:697
|
467 |
-
msgid "Edit private posts"
|
468 |
-
msgstr "Modificare articoli privati"
|
469 |
-
|
470 |
-
# @ ure
|
471 |
-
#: ../includes/ure-lib.php:698
|
472 |
-
msgid "Read private posts"
|
473 |
-
msgstr "Leggere articoli privati"
|
474 |
-
|
475 |
-
# @ ure
|
476 |
-
#: ../includes/ure-lib.php:699
|
477 |
-
msgid "Delete private pages"
|
478 |
-
msgstr "Cancellare pagine private"
|
479 |
-
|
480 |
-
# @ ure
|
481 |
-
#: ../includes/ure-lib.php:700
|
482 |
-
msgid "Edit private pages"
|
483 |
-
msgstr "Modificare pagine private"
|
484 |
-
|
485 |
-
# @ ure
|
486 |
-
#: ../includes/ure-lib.php:701
|
487 |
-
msgid "Read private pages"
|
488 |
-
msgstr "Leggere pagine private"
|
489 |
-
|
490 |
-
# @ ure
|
491 |
-
#: ../includes/ure-lib.php:702
|
492 |
-
msgid "Delete users"
|
493 |
-
msgstr "Cancellare Utenti"
|
494 |
-
|
495 |
-
# @ ure
|
496 |
-
#: ../includes/ure-lib.php:703
|
497 |
-
msgid "Create users"
|
498 |
-
msgstr "Creare Utenti"
|
499 |
-
|
500 |
-
# @ ure
|
501 |
-
#: ../includes/ure-lib.php:704
|
502 |
-
msgid "Unfiltered upload"
|
503 |
-
msgstr "Upload non filtrato"
|
504 |
-
|
505 |
-
# @ ure
|
506 |
-
#: ../includes/ure-lib.php:705
|
507 |
-
msgid "Edit dashboard"
|
508 |
-
msgstr "Modificare bacheca"
|
509 |
-
|
510 |
-
# @ ure
|
511 |
-
#: ../includes/ure-lib.php:706
|
512 |
-
msgid "Update plugins"
|
513 |
-
msgstr "Aggiornare plugin"
|
514 |
-
|
515 |
-
# @ ure
|
516 |
-
#: ../includes/ure-lib.php:707
|
517 |
-
msgid "Delete plugins"
|
518 |
-
msgstr "Cancellare plugin"
|
519 |
-
|
520 |
-
# @ ure
|
521 |
-
#: ../includes/ure-lib.php:708
|
522 |
-
msgid "Install plugins"
|
523 |
-
msgstr "Installare plugin"
|
524 |
-
|
525 |
-
# @ ure
|
526 |
-
#: ../includes/ure-lib.php:709
|
527 |
-
msgid "Update themes"
|
528 |
-
msgstr "Aggiornare temi"
|
529 |
-
|
530 |
-
# @ ure
|
531 |
-
#: ../includes/ure-lib.php:710
|
532 |
-
msgid "Install themes"
|
533 |
-
msgstr "Installare temi"
|
534 |
-
|
535 |
-
# @ ure
|
536 |
-
#: ../includes/ure-lib.php:711
|
537 |
-
msgid "Update core"
|
538 |
-
msgstr "Aggiornare il core"
|
539 |
-
|
540 |
-
# @ ure
|
541 |
-
#: ../includes/ure-lib.php:712
|
542 |
-
msgid "List users"
|
543 |
-
msgstr "Lista Utenti"
|
544 |
-
|
545 |
-
# @ ure
|
546 |
-
#: ../includes/ure-lib.php:713
|
547 |
-
msgid "Remove users"
|
548 |
-
msgstr "Rimuovere Utenti"
|
549 |
-
|
550 |
-
# @ ure
|
551 |
-
#: ../includes/ure-lib.php:714
|
552 |
-
msgid "Add users"
|
553 |
-
msgstr "Aggiungere Utenti"
|
554 |
-
|
555 |
-
# @ ure
|
556 |
-
#: ../includes/ure-lib.php:715
|
557 |
-
msgid "Promote users"
|
558 |
-
msgstr "Promuovere Utenti"
|
559 |
-
|
560 |
-
# @ ure
|
561 |
-
#: ../includes/ure-lib.php:716
|
562 |
-
msgid "Edit theme options"
|
563 |
-
msgstr "Modificare le opzioni del tema"
|
564 |
-
|
565 |
-
# @ ure
|
566 |
-
#: ../includes/ure-lib.php:717
|
567 |
-
msgid "Delete themes"
|
568 |
-
msgstr "Eliminare temi"
|
569 |
-
|
570 |
-
# @ ure
|
571 |
-
#: ../includes/ure-lib.php:718
|
572 |
-
msgid "Export"
|
573 |
-
msgstr "Esportare"
|
574 |
-
|
575 |
-
# @ ure
|
576 |
-
#: ../includes/ure-lib.php:834
|
577 |
-
msgid "Error: Capability name must contain latin characters and digits only!"
|
578 |
-
msgstr "Errore: il nome del permesso deve contenere solo numeri e caratteri latini!"
|
579 |
-
|
580 |
-
# @ ure
|
581 |
-
#: ../includes/ure-lib.php:846
|
582 |
-
#, php-format
|
583 |
-
msgid "Capability %s is added successfully"
|
584 |
-
msgstr "Il permesso %s è stato creato con successo."
|
585 |
-
|
586 |
-
#: ../includes/ure-lib.php:848
|
587 |
-
#, php-format
|
588 |
-
msgid "Capability %s exists already"
|
589 |
-
msgstr "Il permesso %s esiste già"
|
590 |
-
|
591 |
-
#: ../includes/ure-lib.php:997
|
592 |
-
#, php-format
|
593 |
-
msgid "Error! You do not have permission to delete this capability: %s!"
|
594 |
-
msgstr "Errore! non hai l'autorizzazione di rimuovere questo permesso: %s!"
|
595 |
-
|
596 |
-
# @ ure
|
597 |
-
#: ../includes/ure-lib.php:1016
|
598 |
-
#, php-format
|
599 |
-
msgid "Capability %s is removed successfully"
|
600 |
-
msgstr "Il permesso %s è stato rimosso"
|
601 |
-
|
602 |
-
#: ../includes/ure-lib.php:1083
|
603 |
-
msgid "Help"
|
604 |
-
msgstr "Aiuto"
|
605 |
-
|
606 |
-
# @ ure
|
607 |
-
#: ../includes/ure-role-edit.php:29
|
608 |
-
msgid "None"
|
609 |
-
msgstr "Nessuno"
|
610 |
-
|
611 |
-
# @ ure
|
612 |
-
#: ../includes/ure-role-edit.php:67
|
613 |
-
msgid "Select Role and change its capabilities list"
|
614 |
-
msgstr "Seleziona ruolo e modifica la lista dei suoi permessi"
|
615 |
-
|
616 |
-
# @ ure
|
617 |
-
#: ../includes/ure-role-edit.php:69
|
618 |
-
#: ../includes/ure-role-edit.php:166
|
619 |
-
msgid "Select Role:"
|
620 |
-
msgstr "Seleziona ruolo:"
|
621 |
-
|
622 |
-
# @ ure
|
623 |
-
#: ../includes/ure-role-edit.php:79
|
624 |
-
#: ../includes/ure-user-edit.php:38
|
625 |
-
msgid "Show capabilities in human readable form"
|
626 |
-
msgstr "Mostra permessi in forma leggibile per un uomo"
|
627 |
-
|
628 |
-
#: ../includes/ure-role-edit.php:88
|
629 |
-
#: ../includes/ure-user-edit.php:47
|
630 |
-
msgid "Show deprecated capabilities"
|
631 |
-
msgstr "Mostra permessi deprecati"
|
632 |
-
|
633 |
-
# @ default
|
634 |
-
#: ../includes/ure-role-edit.php:92
|
635 |
-
msgid "If checked, then apply action to ALL sites of this Network"
|
636 |
-
msgstr "Se selezionato, applica l'impostazione a TUTTI i siti di questo Network"
|
637 |
-
|
638 |
-
# @ ure
|
639 |
-
#: ../includes/ure-role-edit.php:102
|
640 |
-
msgid "Apply to All Sites"
|
641 |
-
msgstr "Applica a tutti i Siti"
|
642 |
-
|
643 |
-
#: ../includes/ure-role-edit.php:109
|
644 |
-
#: ../includes/ure-user-edit.php:88
|
645 |
-
#, fuzzy
|
646 |
-
msgid "Core capabilities:"
|
647 |
-
msgstr "WordPress Permessi:"
|
648 |
-
|
649 |
-
#: ../includes/ure-role-edit.php:124
|
650 |
-
#: ../includes/ure-user-edit.php:103
|
651 |
-
#, fuzzy
|
652 |
-
msgid "Custom capabilities:"
|
653 |
-
msgstr "Permessi:"
|
654 |
-
|
655 |
-
#: ../includes/ure-role-edit.php:155
|
656 |
-
msgid "Role name (ID): "
|
657 |
-
msgstr ""
|
658 |
-
|
659 |
-
#: ../includes/ure-role-edit.php:157
|
660 |
-
msgid "Display Role Name: "
|
661 |
-
msgstr ""
|
662 |
-
|
663 |
-
#: ../includes/ure-role-edit.php:159
|
664 |
-
msgid "Make copy of: "
|
665 |
-
msgstr "Fai una copia di:"
|
666 |
-
|
667 |
-
# @ ure
|
668 |
-
#: ../includes/ure-role-edit.php:181
|
669 |
-
#, fuzzy
|
670 |
-
msgid "Delete:"
|
671 |
-
msgstr "Elimina"
|
672 |
-
|
673 |
-
#: ../includes/ure-role-edit.php:188
|
674 |
-
msgid "Capability name (ID): "
|
675 |
-
msgstr ""
|
676 |
-
|
677 |
-
#: ../includes/ure-user-edit.php:22
|
678 |
-
msgid "Change capabilities for user"
|
679 |
-
msgstr "Cambia i permessi per l'Utente"
|
680 |
-
|
681 |
-
#: ../includes/ure-user-edit.php:52
|
682 |
-
msgid "Primary Role:"
|
683 |
-
msgstr ""
|
684 |
-
|
685 |
-
#: ../includes/ure-user-edit.php:62
|
686 |
-
msgid "bbPress Role:"
|
687 |
-
msgstr ""
|
688 |
-
|
689 |
-
# @ ure
|
690 |
-
#: ../includes/ure-user-edit.php:72
|
691 |
-
#, fuzzy
|
692 |
-
msgid "Other Roles:"
|
693 |
-
msgstr "Elimina ruolo"
|
694 |
-
|
695 |
-
# @ ure
|
696 |
-
#: ../includes/ure-options.php:65
|
697 |
-
#, fuzzy
|
698 |
-
msgid "User Roles are restored to WordPress default values. "
|
699 |
-
msgstr "I Ruoli Utente sono stati ripristinati dai dati di backup."
|
700 |
-
|
701 |
-
#: ../includes/ure-options.php:136
|
702 |
-
msgid "Error: "
|
703 |
-
msgstr "Errore:"
|
704 |
-
|
705 |
-
# @ ure
|
706 |
-
#: ../includes/ure-options.php:136
|
707 |
-
#: ../includes/ure-options.php:156
|
708 |
-
msgid "Role"
|
709 |
-
msgstr "Ruolo"
|
710 |
-
|
711 |
-
#: ../includes/ure-options.php:136
|
712 |
-
msgid "does not exist"
|
713 |
-
msgstr "non esiste"
|
714 |
-
|
715 |
-
# @ ure
|
716 |
-
#: ../includes/ure-options.php:156
|
717 |
-
msgid "is updated successfully"
|
718 |
-
msgstr "è stato aggiornato con successo"
|
719 |
-
|
720 |
-
# @ ure
|
721 |
-
#: ../includes/ure-options.php:161
|
722 |
-
#: ../includes/ure-options.php:174
|
723 |
-
#, fuzzy
|
724 |
-
msgid "Error occured during role update"
|
725 |
-
msgstr "Si è verificato un errore nella cancellazione del ruolo"
|
726 |
-
|
727 |
-
#: ../includes/ure-options.php:169
|
728 |
-
msgid "User"
|
729 |
-
msgstr "Utente"
|
730 |
-
|
731 |
-
# @ ure
|
732 |
-
#: ../includes/ure-options.php:169
|
733 |
-
msgid "capabilities are updated successfully"
|
734 |
-
msgstr "i permessi sono stati aggiornati"
|
735 |
-
|
736 |
-
# @ ure
|
737 |
-
#: ../includes/ure-options.php:206
|
738 |
-
msgid "About this Plugin:"
|
739 |
-
msgstr "Info su questo plugin:"
|
740 |
-
|
741 |
-
# @ ure
|
742 |
-
#: ../includes/ure-options.php:207
|
743 |
-
msgid "Author's website"
|
744 |
-
msgstr "Sito Web dell'Autore"
|
745 |
-
|
746 |
-
# @ ure
|
747 |
-
#: ../includes/ure-options.php:208
|
748 |
-
msgid "Plugin webpage"
|
749 |
-
msgstr "Pagina Web del plugin"
|
750 |
-
|
751 |
-
# @ ure
|
752 |
-
#: ../includes/ure-options.php:210
|
753 |
-
msgid "FAQ"
|
754 |
-
msgstr "FAQ"
|
755 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
lang/ure-ja.mo
DELETED
Binary file
|
lang/ure-ja.po
DELETED
@@ -1,766 +0,0 @@
|
|
1 |
-
msgid ""
|
2 |
-
msgstr ""
|
3 |
-
"Project-Id-Version: User Role Editor\n"
|
4 |
-
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2013-05-17 11:16+0700\n"
|
6 |
-
"PO-Revision-Date: 2013-05-17 11:16+0700\n"
|
7 |
-
"Last-Translator: Vladimir Garagulya <vladimir@shinephp.com>\n"
|
8 |
-
"Language-Team: \n"
|
9 |
-
"Language: \n"
|
10 |
-
"MIME-Version: 1.0\n"
|
11 |
-
"Content-Type: text/plain; charset=UTF-8\n"
|
12 |
-
"Content-Transfer-Encoding: 8bit\n"
|
13 |
-
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
14 |
-
"X-Poedit-Language: Japanese\n"
|
15 |
-
"X-Poedit-Country: JAPAN\n"
|
16 |
-
"X-Poedit-SourceCharset: utf-8\n"
|
17 |
-
"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n"
|
18 |
-
"X-Poedit-Basepath: ../\n"
|
19 |
-
"X-Textdomain-Support: yes\n"
|
20 |
-
"X-Poedit-SearchPath-0: .\n"
|
21 |
-
|
22 |
-
#: user-role-editor.php:34
|
23 |
-
#, fuzzy, php-format
|
24 |
-
msgid "User Role Editor requires PHP %s or newer."
|
25 |
-
msgstr "User Role Editor はPHP5.0以上の環境を必要とします。"
|
26 |
-
|
27 |
-
#: user-role-editor.php:35
|
28 |
-
#: user-role-editor.php:107
|
29 |
-
msgid "Please update!"
|
30 |
-
msgstr "アップデートしてください!"
|
31 |
-
|
32 |
-
#: user-role-editor.php:80
|
33 |
-
msgid "Only"
|
34 |
-
msgstr "のみ"
|
35 |
-
|
36 |
-
#: user-role-editor.php:80
|
37 |
-
msgid "is allowed to use"
|
38 |
-
msgstr "使用が許可されています。"
|
39 |
-
|
40 |
-
#: user-role-editor.php:86
|
41 |
-
#: user-role-editor.php:312
|
42 |
-
#: user-role-editor.php:368
|
43 |
-
msgid "User Role Editor"
|
44 |
-
msgstr "User Role Editor"
|
45 |
-
|
46 |
-
#: user-role-editor.php:106
|
47 |
-
#, fuzzy, php-format
|
48 |
-
msgid "User Role Editor requires WordPress %s or newer."
|
49 |
-
msgstr "User Role Editor はWordpress 3.0 以上の環境を必要とします。"
|
50 |
-
|
51 |
-
#: user-role-editor.php:139
|
52 |
-
msgid "Select All"
|
53 |
-
msgstr ""
|
54 |
-
|
55 |
-
#: user-role-editor.php:140
|
56 |
-
msgid "Unselect All"
|
57 |
-
msgstr ""
|
58 |
-
|
59 |
-
#: user-role-editor.php:141
|
60 |
-
msgid "Reverse"
|
61 |
-
msgstr ""
|
62 |
-
|
63 |
-
#: user-role-editor.php:142
|
64 |
-
msgid "Update"
|
65 |
-
msgstr "保存"
|
66 |
-
|
67 |
-
#: user-role-editor.php:143
|
68 |
-
#, fuzzy
|
69 |
-
msgid "Please confirm permissions update"
|
70 |
-
msgstr "更新してもよろしいですか?"
|
71 |
-
|
72 |
-
#: user-role-editor.php:144
|
73 |
-
msgid "Add New Role"
|
74 |
-
msgstr "新しいロールの追加"
|
75 |
-
|
76 |
-
#: user-role-editor.php:145
|
77 |
-
#, fuzzy
|
78 |
-
msgid " Role name (ID) can not be empty!"
|
79 |
-
msgstr "名前を入力してください!"
|
80 |
-
|
81 |
-
#: user-role-editor.php:146
|
82 |
-
#, fuzzy
|
83 |
-
msgid " Role name (ID) must contain latin characters, digits, hyphens or underscore only!"
|
84 |
-
msgstr "エラー:ロール名には半角英数字のみご入力ください!"
|
85 |
-
|
86 |
-
#: user-role-editor.php:147
|
87 |
-
#, fuzzy
|
88 |
-
msgid "Add Role"
|
89 |
-
msgstr "新しいロールの追加"
|
90 |
-
|
91 |
-
#: user-role-editor.php:148
|
92 |
-
msgid "Delete Role"
|
93 |
-
msgstr "ロール削除"
|
94 |
-
|
95 |
-
#: user-role-editor.php:149
|
96 |
-
msgid "Cancel"
|
97 |
-
msgstr "キャンセル"
|
98 |
-
|
99 |
-
#: user-role-editor.php:150
|
100 |
-
#, fuzzy
|
101 |
-
msgid "Add Capability"
|
102 |
-
msgstr "新しい権限の追加"
|
103 |
-
|
104 |
-
#: user-role-editor.php:151
|
105 |
-
#: user-role-editor.php:156
|
106 |
-
#, fuzzy
|
107 |
-
msgid "Delete Capability"
|
108 |
-
msgstr "権限の削除"
|
109 |
-
|
110 |
-
#: user-role-editor.php:152
|
111 |
-
msgid "Reset"
|
112 |
-
msgstr "リセット"
|
113 |
-
|
114 |
-
#: user-role-editor.php:153
|
115 |
-
msgid "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?"
|
116 |
-
msgstr ""
|
117 |
-
|
118 |
-
#: user-role-editor.php:154
|
119 |
-
#, fuzzy
|
120 |
-
msgid "Default Role"
|
121 |
-
msgstr "ロール削除"
|
122 |
-
|
123 |
-
#: user-role-editor.php:155
|
124 |
-
#, fuzzy
|
125 |
-
msgid "Set New Default Role"
|
126 |
-
msgstr "デフォルトロールとして設定"
|
127 |
-
|
128 |
-
#: user-role-editor.php:157
|
129 |
-
msgid "Warning! Be careful - removing critical capability could crash some plugin or other custom code"
|
130 |
-
msgstr "警告:重要な権限の削除はプラグインやその他のカスタムコードを破損させる可能性がありますので、ご注意ください!"
|
131 |
-
|
132 |
-
#: user-role-editor.php:158
|
133 |
-
#, fuzzy
|
134 |
-
msgid " Capability name (ID) can not be empty!"
|
135 |
-
msgstr "名前を入力してください!"
|
136 |
-
|
137 |
-
#: user-role-editor.php:159
|
138 |
-
#, fuzzy
|
139 |
-
msgid " Capability name (ID) must contain latin characters, digits, hyphens or underscore only!"
|
140 |
-
msgstr "エラー:権限名には半角英数字のみご入力ください!"
|
141 |
-
|
142 |
-
#: user-role-editor.php:284
|
143 |
-
msgid "Settings"
|
144 |
-
msgstr "設定"
|
145 |
-
|
146 |
-
#: user-role-editor.php:294
|
147 |
-
#: includes/ure-options.php:209
|
148 |
-
msgid "Changelog"
|
149 |
-
msgstr "変更ログ"
|
150 |
-
|
151 |
-
#: user-role-editor.php:342
|
152 |
-
msgid "Capabilities"
|
153 |
-
msgstr "権限"
|
154 |
-
|
155 |
-
#: user-role-editor.php:371
|
156 |
-
#: user-role-editor.php:407
|
157 |
-
#, fuzzy
|
158 |
-
msgid "Other Roles"
|
159 |
-
msgstr "ロール削除"
|
160 |
-
|
161 |
-
#: user-role-editor.php:381
|
162 |
-
#, fuzzy
|
163 |
-
msgid "Edit"
|
164 |
-
msgstr "編集者"
|
165 |
-
|
166 |
-
#: includes/ure-lib.php:35
|
167 |
-
msgid "Error is occur. Please check the log file."
|
168 |
-
msgstr "エラーが発生しました。ログファイルを確認してください。"
|
169 |
-
|
170 |
-
#: includes/ure-lib.php:364
|
171 |
-
msgid "Backup record is created for the current role capabilities"
|
172 |
-
msgstr "現在のロール権限によってバックアップレコードが作成されました。"
|
173 |
-
|
174 |
-
#: includes/ure-lib.php:481
|
175 |
-
#, fuzzy
|
176 |
-
msgid "Error: Role ID must contain latin characters, digits, hyphens or underscore only!"
|
177 |
-
msgstr "エラー:ロール名には半角英数字のみご入力ください!"
|
178 |
-
|
179 |
-
#: includes/ure-lib.php:496
|
180 |
-
#, php-format
|
181 |
-
msgid "Role %s exists already"
|
182 |
-
msgstr "ロール「%s」は既に存在します。"
|
183 |
-
|
184 |
-
#: includes/ure-lib.php:511
|
185 |
-
msgid "Error is encountered during new role create operation"
|
186 |
-
msgstr "新規ロール作成の際にエラーが発生しました。"
|
187 |
-
|
188 |
-
#: includes/ure-lib.php:513
|
189 |
-
#, php-format
|
190 |
-
msgid "Role %s is created successfully"
|
191 |
-
msgstr "%sが正常に作成されました。"
|
192 |
-
|
193 |
-
#: includes/ure-lib.php:597
|
194 |
-
msgid "Error encountered during role delete operation"
|
195 |
-
msgstr "ロール削除の際にエラーが発生しました。"
|
196 |
-
|
197 |
-
#: includes/ure-lib.php:599
|
198 |
-
#, php-format
|
199 |
-
msgid "Role %s is deleted successfully"
|
200 |
-
msgstr "%sが正常に削除されました。"
|
201 |
-
|
202 |
-
#: includes/ure-lib.php:619
|
203 |
-
msgid "Error encountered during default role change operation"
|
204 |
-
msgstr "デフォルトロール変更の際にエラーが発生しました。"
|
205 |
-
|
206 |
-
#: includes/ure-lib.php:625
|
207 |
-
#, php-format
|
208 |
-
msgid "Default role for new users is set to %s successfully"
|
209 |
-
msgstr "新規ユーザのデフォルトロールが%sに設定されました。"
|
210 |
-
|
211 |
-
#: includes/ure-lib.php:652
|
212 |
-
msgid "Editor"
|
213 |
-
msgstr "編集者"
|
214 |
-
|
215 |
-
#: includes/ure-lib.php:653
|
216 |
-
msgid "Author"
|
217 |
-
msgstr "投稿者"
|
218 |
-
|
219 |
-
#: includes/ure-lib.php:654
|
220 |
-
msgid "Contributor"
|
221 |
-
msgstr "寄稿者"
|
222 |
-
|
223 |
-
#: includes/ure-lib.php:655
|
224 |
-
msgid "Subscriber"
|
225 |
-
msgstr "購読者"
|
226 |
-
|
227 |
-
#: includes/ure-lib.php:657
|
228 |
-
msgid "Switch themes"
|
229 |
-
msgstr "テーマの切替"
|
230 |
-
|
231 |
-
#: includes/ure-lib.php:658
|
232 |
-
msgid "Edit themes"
|
233 |
-
msgstr "テーマの編集"
|
234 |
-
|
235 |
-
#: includes/ure-lib.php:659
|
236 |
-
msgid "Activate plugins"
|
237 |
-
msgstr "プラグインの有効化"
|
238 |
-
|
239 |
-
#: includes/ure-lib.php:660
|
240 |
-
msgid "Edit plugins"
|
241 |
-
msgstr "プラグインの編集"
|
242 |
-
|
243 |
-
#: includes/ure-lib.php:661
|
244 |
-
msgid "Edit users"
|
245 |
-
msgstr "ユーザの編集"
|
246 |
-
|
247 |
-
#: includes/ure-lib.php:662
|
248 |
-
msgid "Edit files"
|
249 |
-
msgstr "ファイルの編集"
|
250 |
-
|
251 |
-
#: includes/ure-lib.php:663
|
252 |
-
msgid "Manage options"
|
253 |
-
msgstr "オプション管理"
|
254 |
-
|
255 |
-
#: includes/ure-lib.php:664
|
256 |
-
msgid "Moderate comments"
|
257 |
-
msgstr "コメントの変更"
|
258 |
-
|
259 |
-
#: includes/ure-lib.php:665
|
260 |
-
msgid "Manage categories"
|
261 |
-
msgstr "カテゴリの管理"
|
262 |
-
|
263 |
-
#: includes/ure-lib.php:666
|
264 |
-
msgid "Manage links"
|
265 |
-
msgstr "リンクの管理"
|
266 |
-
|
267 |
-
#: includes/ure-lib.php:667
|
268 |
-
msgid "Upload files"
|
269 |
-
msgstr "ファイルのアップロード"
|
270 |
-
|
271 |
-
#: includes/ure-lib.php:668
|
272 |
-
msgid "Import"
|
273 |
-
msgstr "インポート"
|
274 |
-
|
275 |
-
#: includes/ure-lib.php:669
|
276 |
-
msgid "Unfiltered html"
|
277 |
-
msgstr "フィルタなしのHTML"
|
278 |
-
|
279 |
-
#: includes/ure-lib.php:670
|
280 |
-
msgid "Edit posts"
|
281 |
-
msgstr "投稿の編集"
|
282 |
-
|
283 |
-
#: includes/ure-lib.php:671
|
284 |
-
msgid "Edit others posts"
|
285 |
-
msgstr "他者投稿の編集"
|
286 |
-
|
287 |
-
#: includes/ure-lib.php:672
|
288 |
-
msgid "Edit published posts"
|
289 |
-
msgstr "公開済み投稿の編集"
|
290 |
-
|
291 |
-
#: includes/ure-lib.php:673
|
292 |
-
msgid "Publish posts"
|
293 |
-
msgstr "投稿の公開"
|
294 |
-
|
295 |
-
#: includes/ure-lib.php:674
|
296 |
-
msgid "Edit pages"
|
297 |
-
msgstr "ページの編集"
|
298 |
-
|
299 |
-
#: includes/ure-lib.php:675
|
300 |
-
msgid "Read"
|
301 |
-
msgstr "参照"
|
302 |
-
|
303 |
-
#: includes/ure-lib.php:676
|
304 |
-
msgid "Level 10"
|
305 |
-
msgstr "レベル10"
|
306 |
-
|
307 |
-
#: includes/ure-lib.php:677
|
308 |
-
msgid "Level 9"
|
309 |
-
msgstr "レベル9"
|
310 |
-
|
311 |
-
#: includes/ure-lib.php:678
|
312 |
-
msgid "Level 8"
|
313 |
-
msgstr "レベル8"
|
314 |
-
|
315 |
-
#: includes/ure-lib.php:679
|
316 |
-
msgid "Level 7"
|
317 |
-
msgstr "レベル7"
|
318 |
-
|
319 |
-
#: includes/ure-lib.php:680
|
320 |
-
msgid "Level 6"
|
321 |
-
msgstr "レベル6"
|
322 |
-
|
323 |
-
#: includes/ure-lib.php:681
|
324 |
-
msgid "Level 5"
|
325 |
-
msgstr "レベル5"
|
326 |
-
|
327 |
-
#: includes/ure-lib.php:682
|
328 |
-
msgid "Level 4"
|
329 |
-
msgstr "レベル4"
|
330 |
-
|
331 |
-
#: includes/ure-lib.php:683
|
332 |
-
msgid "Level 3"
|
333 |
-
msgstr "レベル3"
|
334 |
-
|
335 |
-
#: includes/ure-lib.php:684
|
336 |
-
msgid "Level 2"
|
337 |
-
msgstr "レベル2"
|
338 |
-
|
339 |
-
#: includes/ure-lib.php:685
|
340 |
-
msgid "Level 1"
|
341 |
-
msgstr "レベル1"
|
342 |
-
|
343 |
-
#: includes/ure-lib.php:686
|
344 |
-
msgid "Level 0"
|
345 |
-
msgstr "レベル0"
|
346 |
-
|
347 |
-
#: includes/ure-lib.php:687
|
348 |
-
msgid "Edit others pages"
|
349 |
-
msgstr "他者ページの編集"
|
350 |
-
|
351 |
-
#: includes/ure-lib.php:688
|
352 |
-
msgid "Edit published pages"
|
353 |
-
msgstr "公開済みページの編集"
|
354 |
-
|
355 |
-
#: includes/ure-lib.php:689
|
356 |
-
msgid "Publish pages"
|
357 |
-
msgstr "ページの公開"
|
358 |
-
|
359 |
-
#: includes/ure-lib.php:690
|
360 |
-
msgid "Delete pages"
|
361 |
-
msgstr "ページの削除"
|
362 |
-
|
363 |
-
#: includes/ure-lib.php:691
|
364 |
-
msgid "Delete others pages"
|
365 |
-
msgstr "他者ページの削除"
|
366 |
-
|
367 |
-
#: includes/ure-lib.php:692
|
368 |
-
msgid "Delete published pages"
|
369 |
-
msgstr "公開済みページの削除"
|
370 |
-
|
371 |
-
#: includes/ure-lib.php:693
|
372 |
-
msgid "Delete posts"
|
373 |
-
msgstr "投稿の削除"
|
374 |
-
|
375 |
-
#: includes/ure-lib.php:694
|
376 |
-
msgid "Delete others posts"
|
377 |
-
msgstr "他者投稿の削除"
|
378 |
-
|
379 |
-
#: includes/ure-lib.php:695
|
380 |
-
msgid "Delete published posts"
|
381 |
-
msgstr "公開済み投稿の削除"
|
382 |
-
|
383 |
-
#: includes/ure-lib.php:696
|
384 |
-
msgid "Delete private posts"
|
385 |
-
msgstr "プライベート投稿の削除"
|
386 |
-
|
387 |
-
#: includes/ure-lib.php:697
|
388 |
-
msgid "Edit private posts"
|
389 |
-
msgstr "プライベート投稿の編集"
|
390 |
-
|
391 |
-
#: includes/ure-lib.php:698
|
392 |
-
msgid "Read private posts"
|
393 |
-
msgstr "プライベート投稿の参照"
|
394 |
-
|
395 |
-
#: includes/ure-lib.php:699
|
396 |
-
msgid "Delete private pages"
|
397 |
-
msgstr "プライベートページの削除"
|
398 |
-
|
399 |
-
#: includes/ure-lib.php:700
|
400 |
-
msgid "Edit private pages"
|
401 |
-
msgstr "プライベートページの編集"
|
402 |
-
|
403 |
-
#: includes/ure-lib.php:701
|
404 |
-
msgid "Read private pages"
|
405 |
-
msgstr "プライベートページの参照"
|
406 |
-
|
407 |
-
#: includes/ure-lib.php:702
|
408 |
-
msgid "Delete users"
|
409 |
-
msgstr "ユーザの削除"
|
410 |
-
|
411 |
-
#: includes/ure-lib.php:703
|
412 |
-
msgid "Create users"
|
413 |
-
msgstr "ユーザ作成"
|
414 |
-
|
415 |
-
#: includes/ure-lib.php:704
|
416 |
-
msgid "Unfiltered upload"
|
417 |
-
msgstr "フィルタなしのアップロード"
|
418 |
-
|
419 |
-
#: includes/ure-lib.php:705
|
420 |
-
msgid "Edit dashboard"
|
421 |
-
msgstr "ダッシュボードの編集"
|
422 |
-
|
423 |
-
#: includes/ure-lib.php:706
|
424 |
-
msgid "Update plugins"
|
425 |
-
msgstr "プラグインのアップデート"
|
426 |
-
|
427 |
-
#: includes/ure-lib.php:707
|
428 |
-
msgid "Delete plugins"
|
429 |
-
msgstr "プラグインの削除"
|
430 |
-
|
431 |
-
#: includes/ure-lib.php:708
|
432 |
-
msgid "Install plugins"
|
433 |
-
msgstr "プラグインのインストール"
|
434 |
-
|
435 |
-
#: includes/ure-lib.php:709
|
436 |
-
msgid "Update themes"
|
437 |
-
msgstr "テーマのアップデート"
|
438 |
-
|
439 |
-
#: includes/ure-lib.php:710
|
440 |
-
msgid "Install themes"
|
441 |
-
msgstr "テーマのインストール"
|
442 |
-
|
443 |
-
#: includes/ure-lib.php:711
|
444 |
-
msgid "Update core"
|
445 |
-
msgstr "コアアップデート"
|
446 |
-
|
447 |
-
#: includes/ure-lib.php:712
|
448 |
-
msgid "List users"
|
449 |
-
msgstr "ユーザ一覧"
|
450 |
-
|
451 |
-
#: includes/ure-lib.php:713
|
452 |
-
msgid "Remove users"
|
453 |
-
msgstr "ユーザの削除"
|
454 |
-
|
455 |
-
#: includes/ure-lib.php:714
|
456 |
-
msgid "Add users"
|
457 |
-
msgstr "ユーザの追加"
|
458 |
-
|
459 |
-
#: includes/ure-lib.php:715
|
460 |
-
msgid "Promote users"
|
461 |
-
msgstr "ユーザの昇格"
|
462 |
-
|
463 |
-
#: includes/ure-lib.php:716
|
464 |
-
msgid "Edit theme options"
|
465 |
-
msgstr "テーマオプションの編集"
|
466 |
-
|
467 |
-
#: includes/ure-lib.php:717
|
468 |
-
msgid "Delete themes"
|
469 |
-
msgstr "テーマの削除"
|
470 |
-
|
471 |
-
#: includes/ure-lib.php:718
|
472 |
-
msgid "Export"
|
473 |
-
msgstr "エクスポート"
|
474 |
-
|
475 |
-
#: includes/ure-lib.php:834
|
476 |
-
msgid "Error: Capability name must contain latin characters and digits only!"
|
477 |
-
msgstr "エラー:権限名には半角英数字のみご入力ください!"
|
478 |
-
|
479 |
-
#: includes/ure-lib.php:846
|
480 |
-
#, php-format
|
481 |
-
msgid "Capability %s is added successfully"
|
482 |
-
msgstr "権限「%s」が正常に追加されました。"
|
483 |
-
|
484 |
-
#: includes/ure-lib.php:848
|
485 |
-
#, php-format
|
486 |
-
msgid "Capability %s exists already"
|
487 |
-
msgstr "権限「%s」は既に存在します。"
|
488 |
-
|
489 |
-
#: includes/ure-lib.php:997
|
490 |
-
#, php-format
|
491 |
-
msgid "Error! You do not have permission to delete this capability: %s!"
|
492 |
-
msgstr "エラー!権限「%s」を削除する権限がありません。"
|
493 |
-
|
494 |
-
#: includes/ure-lib.php:1016
|
495 |
-
#, php-format
|
496 |
-
msgid "Capability %s is removed successfully"
|
497 |
-
msgstr "権限「%s」が正常に削除されました。"
|
498 |
-
|
499 |
-
#: includes/ure-lib.php:1083
|
500 |
-
msgid "Help"
|
501 |
-
msgstr ""
|
502 |
-
|
503 |
-
#: includes/ure-role-edit.php:29
|
504 |
-
msgid "None"
|
505 |
-
msgstr ""
|
506 |
-
|
507 |
-
#: includes/ure-role-edit.php:67
|
508 |
-
msgid "Select Role and change its capabilities list"
|
509 |
-
msgstr "ロールを選択し、権限を変更してください。"
|
510 |
-
|
511 |
-
#: includes/ure-role-edit.php:69
|
512 |
-
#: includes/ure-role-edit.php:166
|
513 |
-
msgid "Select Role:"
|
514 |
-
msgstr "ロール選択:"
|
515 |
-
|
516 |
-
#: includes/ure-role-edit.php:79
|
517 |
-
#: includes/ure-user-edit.php:38
|
518 |
-
msgid "Show capabilities in human readable form"
|
519 |
-
msgstr "各権限を概説で表示する"
|
520 |
-
|
521 |
-
#: includes/ure-role-edit.php:88
|
522 |
-
#: includes/ure-user-edit.php:47
|
523 |
-
msgid "Show deprecated capabilities"
|
524 |
-
msgstr ""
|
525 |
-
|
526 |
-
#: includes/ure-role-edit.php:92
|
527 |
-
msgid "If checked, then apply action to ALL sites of this Network"
|
528 |
-
msgstr "チェックされた場合は、ネットワーク上のすべてのサイトに適用してください。"
|
529 |
-
|
530 |
-
#: includes/ure-role-edit.php:102
|
531 |
-
msgid "Apply to All Sites"
|
532 |
-
msgstr "すべてのサイトに適用"
|
533 |
-
|
534 |
-
#: includes/ure-role-edit.php:109
|
535 |
-
#: includes/ure-user-edit.php:88
|
536 |
-
#, fuzzy
|
537 |
-
msgid "Core capabilities:"
|
538 |
-
msgstr "権限"
|
539 |
-
|
540 |
-
#: includes/ure-role-edit.php:124
|
541 |
-
#: includes/ure-user-edit.php:103
|
542 |
-
#, fuzzy
|
543 |
-
msgid "Custom capabilities:"
|
544 |
-
msgstr "権限"
|
545 |
-
|
546 |
-
#: includes/ure-role-edit.php:155
|
547 |
-
msgid "Role name (ID): "
|
548 |
-
msgstr ""
|
549 |
-
|
550 |
-
#: includes/ure-role-edit.php:157
|
551 |
-
msgid "Display Role Name: "
|
552 |
-
msgstr ""
|
553 |
-
|
554 |
-
#: includes/ure-role-edit.php:159
|
555 |
-
msgid "Make copy of: "
|
556 |
-
msgstr ""
|
557 |
-
|
558 |
-
#: includes/ure-role-edit.php:181
|
559 |
-
#, fuzzy
|
560 |
-
msgid "Delete:"
|
561 |
-
msgstr "削除"
|
562 |
-
|
563 |
-
#: includes/ure-role-edit.php:188
|
564 |
-
msgid "Capability name (ID): "
|
565 |
-
msgstr ""
|
566 |
-
|
567 |
-
#: includes/ure-user-edit.php:22
|
568 |
-
msgid "Change capabilities for user"
|
569 |
-
msgstr "ユーザ権限を変更"
|
570 |
-
|
571 |
-
#: includes/ure-user-edit.php:52
|
572 |
-
msgid "Primary Role:"
|
573 |
-
msgstr ""
|
574 |
-
|
575 |
-
#: includes/ure-user-edit.php:62
|
576 |
-
msgid "bbPress Role:"
|
577 |
-
msgstr ""
|
578 |
-
|
579 |
-
#: includes/ure-user-edit.php:72
|
580 |
-
#, fuzzy
|
581 |
-
msgid "Other Roles:"
|
582 |
-
msgstr "ロール削除"
|
583 |
-
|
584 |
-
#: includes/ure-options.php:65
|
585 |
-
msgid "User Roles are restored to WordPress default values. "
|
586 |
-
msgstr ""
|
587 |
-
|
588 |
-
#: includes/ure-options.php:136
|
589 |
-
msgid "Error: "
|
590 |
-
msgstr ""
|
591 |
-
|
592 |
-
#: includes/ure-options.php:136
|
593 |
-
#: includes/ure-options.php:156
|
594 |
-
msgid "Role"
|
595 |
-
msgstr "ロール"
|
596 |
-
|
597 |
-
#: includes/ure-options.php:136
|
598 |
-
msgid "does not exist"
|
599 |
-
msgstr ""
|
600 |
-
|
601 |
-
#: includes/ure-options.php:156
|
602 |
-
msgid "is updated successfully"
|
603 |
-
msgstr "正常に更新されました。"
|
604 |
-
|
605 |
-
#: includes/ure-options.php:161
|
606 |
-
#: includes/ure-options.php:174
|
607 |
-
#, fuzzy
|
608 |
-
msgid "Error occured during role update"
|
609 |
-
msgstr "ロール削除の際にエラーが発生しました。"
|
610 |
-
|
611 |
-
#: includes/ure-options.php:169
|
612 |
-
msgid "User"
|
613 |
-
msgstr "ユーザ"
|
614 |
-
|
615 |
-
#: includes/ure-options.php:169
|
616 |
-
msgid "capabilities are updated successfully"
|
617 |
-
msgstr "権限は正常に更新されました。"
|
618 |
-
|
619 |
-
#: includes/ure-options.php:206
|
620 |
-
msgid "About this Plugin:"
|
621 |
-
msgstr "本プラグインについて:"
|
622 |
-
|
623 |
-
#: includes/ure-options.php:207
|
624 |
-
msgid "Author's website"
|
625 |
-
msgstr "作成者サイト"
|
626 |
-
|
627 |
-
#: includes/ure-options.php:208
|
628 |
-
msgid "Plugin webpage"
|
629 |
-
msgstr "プラグインサイト"
|
630 |
-
|
631 |
-
#: includes/ure-options.php:210
|
632 |
-
msgid "FAQ"
|
633 |
-
msgstr "FAQ"
|
634 |
-
|
635 |
-
#~ msgid "Database operation error. Check log file."
|
636 |
-
#~ msgstr "データベースエラーが発生しました。ログファイルを確認してください。"
|
637 |
-
|
638 |
-
#~ msgid ""
|
639 |
-
#~ "No backup data. It is created automatically before the first role data "
|
640 |
-
#~ "update."
|
641 |
-
#~ msgstr ""
|
642 |
-
#~ "バックアップデータが存在しません。最初にロールデータが更新する前に自動生成"
|
643 |
-
#~ "されます。"
|
644 |
-
|
645 |
-
#~ msgid " Name must contain latin characters and digits only!"
|
646 |
-
#~ msgstr "名前には半角英数字のみを入力してください!"
|
647 |
-
|
648 |
-
#~ msgid "Change Default Role"
|
649 |
-
#~ msgstr "デフォルトロールの変更"
|
650 |
-
|
651 |
-
#~ msgid "Role \"%s\" update: please confirm to continue"
|
652 |
-
#~ msgstr "\"%s\"の権限を更新してもよろしいですか?"
|
653 |
-
|
654 |
-
#~ msgid "Save Changes"
|
655 |
-
#~ msgstr "変更を保存"
|
656 |
-
|
657 |
-
#~ msgid "Cancel not saved changes"
|
658 |
-
#~ msgstr "変更を保存せずにキャンセルする。"
|
659 |
-
|
660 |
-
#~ msgid "Restore Roles from backup copy"
|
661 |
-
#~ msgstr "バックアップからロールを読み込む"
|
662 |
-
|
663 |
-
#~ msgid "Add"
|
664 |
-
#~ msgstr "追加"
|
665 |
-
|
666 |
-
#~ msgid "Add New User Role"
|
667 |
-
#~ msgstr "新しいユーザロールの追加"
|
668 |
-
|
669 |
-
#~ msgid "Default Role for New User"
|
670 |
-
#~ msgstr "新規ユーザのデフォルトロール"
|
671 |
-
|
672 |
-
#~ msgid "Change"
|
673 |
-
#~ msgstr "変更"
|
674 |
-
|
675 |
-
#~ msgid "Delete User Role"
|
676 |
-
#~ msgstr "ロール削除"
|
677 |
-
|
678 |
-
#~ msgid "Remove"
|
679 |
-
#~ msgstr "削除"
|
680 |
-
|
681 |
-
#~ msgid "Remove User Capability"
|
682 |
-
#~ msgstr "ユーザ権限の削除"
|
683 |
-
|
684 |
-
#~ msgid "User \"%s\" update: please confirm to continue"
|
685 |
-
#~ msgstr "ユーザ「%s」の更新:続行してもよろしいでしょうか?"
|
686 |
-
|
687 |
-
#~ msgid "Role:"
|
688 |
-
#~ msgstr "ロール:"
|
689 |
-
|
690 |
-
#~ msgid "Add capabilities to this user:"
|
691 |
-
#~ msgstr "このユーザに権限を追加:"
|
692 |
-
|
693 |
-
#~ msgid "Greetings:"
|
694 |
-
#~ msgstr "ごあいさつ:"
|
695 |
-
|
696 |
-
#~ msgid "It's me, the author"
|
697 |
-
#~ msgstr "作成者"
|
698 |
-
|
699 |
-
#~ msgid "For the help with Belorussian translation"
|
700 |
-
#~ msgstr "ベラルーシ語翻訳"
|
701 |
-
|
702 |
-
#~ msgid "For the help with Brasilian translation"
|
703 |
-
#~ msgstr "ポルトガル語翻訳"
|
704 |
-
|
705 |
-
#, fuzzy
|
706 |
-
#~ msgid "For the help with Brasilian Portuguese translation"
|
707 |
-
#~ msgstr "ポルトガル語翻訳"
|
708 |
-
|
709 |
-
#~ msgid "For the help with Chinese translation"
|
710 |
-
#~ msgstr "中国語翻訳"
|
711 |
-
|
712 |
-
#~ msgid "For the help with Dutch translation"
|
713 |
-
#~ msgstr "オランダ語翻訳"
|
714 |
-
|
715 |
-
#~ msgid "For the help with Finnish translation"
|
716 |
-
#~ msgstr "フィンランド語翻訳"
|
717 |
-
|
718 |
-
#~ msgid "For the help with French translation"
|
719 |
-
#~ msgstr "フランス語翻訳"
|
720 |
-
|
721 |
-
#~ msgid "For the help with German translation"
|
722 |
-
#~ msgstr "ドイツ語翻訳"
|
723 |
-
|
724 |
-
#~ msgid "For the help with Hungarian translation"
|
725 |
-
#~ msgstr "ハンガリー語翻訳"
|
726 |
-
|
727 |
-
#~ msgid "For the help with Italian translation"
|
728 |
-
#~ msgstr "イタリア語翻訳"
|
729 |
-
|
730 |
-
#~ msgid "For the help with Japanese translation"
|
731 |
-
#~ msgstr "日本語翻訳"
|
732 |
-
|
733 |
-
#~ msgid "For the help with Persian translation"
|
734 |
-
#~ msgstr "ペルシャ語翻訳"
|
735 |
-
|
736 |
-
#~ msgid "For the help with Polish translation"
|
737 |
-
#~ msgstr "ポーランド語翻訳"
|
738 |
-
|
739 |
-
#~ msgid "For the help with Spanish translation"
|
740 |
-
#~ msgstr "スペイン語翻訳"
|
741 |
-
|
742 |
-
#, fuzzy
|
743 |
-
#~ msgid "For the updated Swedish translation"
|
744 |
-
#~ msgstr "スウェーデン語翻訳"
|
745 |
-
|
746 |
-
#~ msgid "For the help with Swedish translation"
|
747 |
-
#~ msgstr "スウェーデン語翻訳"
|
748 |
-
|
749 |
-
#~ msgid "For the help with Turkish translation"
|
750 |
-
#~ msgstr "トルコ語翻訳"
|
751 |
-
|
752 |
-
#~ msgid "For the code to hide administrator role"
|
753 |
-
#~ msgstr "管理者ロールを非表示にする方法"
|
754 |
-
|
755 |
-
#~ msgid "For the code enhancement suggestion"
|
756 |
-
#~ msgstr "コード向上提案"
|
757 |
-
|
758 |
-
#~ msgid ""
|
759 |
-
#~ "Do you wish to see your name with link to your site here? You are "
|
760 |
-
#~ "welcome! Your help with translation and new ideas are very appreciated."
|
761 |
-
#~ msgstr ""
|
762 |
-
#~ "<hr />あなたの名前を表示し、サイトへのリンクを張りますか?翻訳のお手伝いお"
|
763 |
-
#~ "よび新しいアイディアのご提供に感謝致します。"
|
764 |
-
|
765 |
-
#~ msgid "Roles list reading error is encountered"
|
766 |
-
#~ msgstr "ロールリストの読込中にエラーが発生しました。"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
lang/ure-lt_LT.mo
DELETED
Binary file
|
lang/ure-lt_LT.po
DELETED
@@ -1,752 +0,0 @@
|
|
1 |
-
msgid ""
|
2 |
-
msgstr ""
|
3 |
-
"Project-Id-Version: User Role Editor v. 2.1.9\n"
|
4 |
-
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2013-05-17 11:16+0700\n"
|
6 |
-
"PO-Revision-Date: 2013-05-17 11:16+0700\n"
|
7 |
-
"Last-Translator: Vladimir Garagulya <vladimir@shinephp.com>\n"
|
8 |
-
"Language-Team: \n"
|
9 |
-
"Language: \n"
|
10 |
-
"MIME-Version: 1.0\n"
|
11 |
-
"Content-Type: text/plain; charset=UTF-8\n"
|
12 |
-
"Content-Transfer-Encoding: 8bit\n"
|
13 |
-
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
14 |
-
"X-Poedit-Language: German\n"
|
15 |
-
"X-Poedit-Country: GERMANY\n"
|
16 |
-
"X-Poedit-SourceCharset: utf-8\n"
|
17 |
-
"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n"
|
18 |
-
"X-Poedit-Basepath: ../\n"
|
19 |
-
"X-Textdomain-Support: yes\n"
|
20 |
-
"X-Poedit-SearchPath-0: .\n"
|
21 |
-
|
22 |
-
# @ ure
|
23 |
-
#: user-role-editor.php:34
|
24 |
-
#, fuzzy, php-format
|
25 |
-
msgid "User Role Editor requires PHP %s or newer."
|
26 |
-
msgstr "User Role Editor reikalauja PHP 5.0 arba naujesnio."
|
27 |
-
|
28 |
-
# @ ure
|
29 |
-
#: user-role-editor.php:35
|
30 |
-
#: user-role-editor.php:107
|
31 |
-
msgid "Please update!"
|
32 |
-
msgstr "Prašome Atnaujinti!"
|
33 |
-
|
34 |
-
#: user-role-editor.php:80
|
35 |
-
msgid "Only"
|
36 |
-
msgstr "Tik"
|
37 |
-
|
38 |
-
#: user-role-editor.php:80
|
39 |
-
msgid "is allowed to use"
|
40 |
-
msgstr "gali naudoti"
|
41 |
-
|
42 |
-
# @ ure
|
43 |
-
#: user-role-editor.php:86
|
44 |
-
#: user-role-editor.php:312
|
45 |
-
#: user-role-editor.php:368
|
46 |
-
msgid "User Role Editor"
|
47 |
-
msgstr "User Role Editor"
|
48 |
-
|
49 |
-
# @ ure
|
50 |
-
#: user-role-editor.php:106
|
51 |
-
#, fuzzy, php-format
|
52 |
-
msgid "User Role Editor requires WordPress %s or newer."
|
53 |
-
msgstr "User Role Editor reikalauja WordPress 3.0 arba naujesnio."
|
54 |
-
|
55 |
-
# @ ure
|
56 |
-
#: user-role-editor.php:139
|
57 |
-
msgid "Select All"
|
58 |
-
msgstr ""
|
59 |
-
|
60 |
-
#: user-role-editor.php:140
|
61 |
-
msgid "Unselect All"
|
62 |
-
msgstr ""
|
63 |
-
|
64 |
-
#: user-role-editor.php:141
|
65 |
-
msgid "Reverse"
|
66 |
-
msgstr ""
|
67 |
-
|
68 |
-
# @ ure
|
69 |
-
#: user-role-editor.php:142
|
70 |
-
msgid "Update"
|
71 |
-
msgstr "Atnaujinti"
|
72 |
-
|
73 |
-
# @ ure
|
74 |
-
#: user-role-editor.php:143
|
75 |
-
#, fuzzy
|
76 |
-
msgid "Please confirm permissions update"
|
77 |
-
msgstr "Prašome patvirtinti, kad galėtumėte tęsti"
|
78 |
-
|
79 |
-
# @ ure
|
80 |
-
#: user-role-editor.php:144
|
81 |
-
msgid "Add New Role"
|
82 |
-
msgstr "Pridėti Naują Funkciją"
|
83 |
-
|
84 |
-
# @ ure
|
85 |
-
#: user-role-editor.php:145
|
86 |
-
#, fuzzy
|
87 |
-
msgid " Role name (ID) can not be empty!"
|
88 |
-
msgstr "Vardo laukelis negali būti tuščias!"
|
89 |
-
|
90 |
-
# @ ure
|
91 |
-
#: user-role-editor.php:146
|
92 |
-
#, fuzzy
|
93 |
-
msgid " Role name (ID) must contain latin characters, digits, hyphens or underscore only!"
|
94 |
-
msgstr "Klaida: Funkcijos vardas turi būti sudarytas tik iš lotyniškų simbolių bei skaičių!"
|
95 |
-
|
96 |
-
# @ ure
|
97 |
-
#: user-role-editor.php:147
|
98 |
-
#, fuzzy
|
99 |
-
msgid "Add Role"
|
100 |
-
msgstr "Pridėti Naują Funkciją"
|
101 |
-
|
102 |
-
# @ ure
|
103 |
-
#: user-role-editor.php:148
|
104 |
-
msgid "Delete Role"
|
105 |
-
msgstr "Ištrinti Funkciją"
|
106 |
-
|
107 |
-
# @ ure
|
108 |
-
#: user-role-editor.php:149
|
109 |
-
msgid "Cancel"
|
110 |
-
msgstr "Atšaukti"
|
111 |
-
|
112 |
-
# @ ure
|
113 |
-
#: user-role-editor.php:150
|
114 |
-
#, fuzzy
|
115 |
-
msgid "Add Capability"
|
116 |
-
msgstr "Pridėti Naują Gebą"
|
117 |
-
|
118 |
-
#: user-role-editor.php:151
|
119 |
-
#: user-role-editor.php:156
|
120 |
-
#, fuzzy
|
121 |
-
msgid "Delete Capability"
|
122 |
-
msgstr "Pašalinti Gebą"
|
123 |
-
|
124 |
-
# @ ure
|
125 |
-
#: user-role-editor.php:152
|
126 |
-
msgid "Reset"
|
127 |
-
msgstr "Atkurti"
|
128 |
-
|
129 |
-
#: user-role-editor.php:153
|
130 |
-
msgid "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?"
|
131 |
-
msgstr ""
|
132 |
-
|
133 |
-
# @ ure
|
134 |
-
#: user-role-editor.php:154
|
135 |
-
#, fuzzy
|
136 |
-
msgid "Default Role"
|
137 |
-
msgstr "Ištrinti Funkciją"
|
138 |
-
|
139 |
-
# @ ure
|
140 |
-
#: user-role-editor.php:155
|
141 |
-
#, fuzzy
|
142 |
-
msgid "Set New Default Role"
|
143 |
-
msgstr "Nustatyti kaip Numatytąją Vartotojo Funkciją"
|
144 |
-
|
145 |
-
#: user-role-editor.php:157
|
146 |
-
msgid "Warning! Be careful - removing critical capability could crash some plugin or other custom code"
|
147 |
-
msgstr "Dėmesio! Būkite atsargus - kritinės gebos pašalinimas gali nulemti kai kurių papildinių ar kitų individualizuotų kodų užstrigimą"
|
148 |
-
|
149 |
-
# @ ure
|
150 |
-
#: user-role-editor.php:158
|
151 |
-
#, fuzzy
|
152 |
-
msgid " Capability name (ID) can not be empty!"
|
153 |
-
msgstr "Vardo laukelis negali būti tuščias!"
|
154 |
-
|
155 |
-
# @ ure
|
156 |
-
#: user-role-editor.php:159
|
157 |
-
#, fuzzy
|
158 |
-
msgid " Capability name (ID) must contain latin characters, digits, hyphens or underscore only!"
|
159 |
-
msgstr "Klaida: Gebos pavadinimas turi susidaryti tik iš lotyniškų simbolių bei skaičių!"
|
160 |
-
|
161 |
-
# @ ure
|
162 |
-
#: user-role-editor.php:284
|
163 |
-
msgid "Settings"
|
164 |
-
msgstr "Nuostatos"
|
165 |
-
|
166 |
-
# @ ure
|
167 |
-
#: user-role-editor.php:294
|
168 |
-
#: includes/ure-options.php:209
|
169 |
-
msgid "Changelog"
|
170 |
-
msgstr "Pasikeitimų žurnalas"
|
171 |
-
|
172 |
-
#: user-role-editor.php:342
|
173 |
-
msgid "Capabilities"
|
174 |
-
msgstr "Gebos"
|
175 |
-
|
176 |
-
# @ ure
|
177 |
-
#: user-role-editor.php:371
|
178 |
-
#: user-role-editor.php:407
|
179 |
-
#, fuzzy
|
180 |
-
msgid "Other Roles"
|
181 |
-
msgstr "Ištrinti Funkciją"
|
182 |
-
|
183 |
-
# @ ure
|
184 |
-
#: user-role-editor.php:381
|
185 |
-
#, fuzzy
|
186 |
-
msgid "Edit"
|
187 |
-
msgstr "Redaktorius"
|
188 |
-
|
189 |
-
# @ ure
|
190 |
-
#: includes/ure-lib.php:35
|
191 |
-
msgid "Error is occur. Please check the log file."
|
192 |
-
msgstr "Įvyko klaida. Prašome patikrinti žurnalo rinkmeną."
|
193 |
-
|
194 |
-
# @ ure
|
195 |
-
#: includes/ure-lib.php:364
|
196 |
-
msgid "Backup record is created for the current role capabilities"
|
197 |
-
msgstr "Atsarginės kopijos įrašas sukurtas pagal dabartinės funkcijų gebas"
|
198 |
-
|
199 |
-
# @ ure
|
200 |
-
#: includes/ure-lib.php:481
|
201 |
-
#, fuzzy
|
202 |
-
msgid "Error: Role ID must contain latin characters, digits, hyphens or underscore only!"
|
203 |
-
msgstr "Klaida: Funkcijos vardas turi būti sudarytas tik iš lotyniškų simbolių bei skaičių!"
|
204 |
-
|
205 |
-
# @ ure
|
206 |
-
#: includes/ure-lib.php:496
|
207 |
-
#, php-format
|
208 |
-
msgid "Role %s exists already"
|
209 |
-
msgstr "Funkcija %s jau egzistuoja"
|
210 |
-
|
211 |
-
# @ ure
|
212 |
-
#: includes/ure-lib.php:511
|
213 |
-
msgid "Error is encountered during new role create operation"
|
214 |
-
msgstr "Naujos funkcijos sukūrimo metu įvyko klaida"
|
215 |
-
|
216 |
-
# @ ure
|
217 |
-
#: includes/ure-lib.php:513
|
218 |
-
#, php-format
|
219 |
-
msgid "Role %s is created successfully"
|
220 |
-
msgstr "Funkcija %s sėkmingai sukurta"
|
221 |
-
|
222 |
-
# @ ure
|
223 |
-
#: includes/ure-lib.php:597
|
224 |
-
msgid "Error encountered during role delete operation"
|
225 |
-
msgstr "Funkcijos ištrynimo metu įvyko klaida"
|
226 |
-
|
227 |
-
# @ ure
|
228 |
-
#: includes/ure-lib.php:599
|
229 |
-
#, php-format
|
230 |
-
msgid "Role %s is deleted successfully"
|
231 |
-
msgstr "Funkcija %s sėkmingai ištrinta"
|
232 |
-
|
233 |
-
# @ ure
|
234 |
-
#: includes/ure-lib.php:619
|
235 |
-
msgid "Error encountered during default role change operation"
|
236 |
-
msgstr "Numatytosios funkcijos keitimo metu įvyko klaida"
|
237 |
-
|
238 |
-
# @ ure
|
239 |
-
#: includes/ure-lib.php:625
|
240 |
-
#, php-format
|
241 |
-
msgid "Default role for new users is set to %s successfully"
|
242 |
-
msgstr "Numatytoji funkcija naujiems vartotojams sėkmingai nustatyta kaip %s"
|
243 |
-
|
244 |
-
# @ ure
|
245 |
-
#: includes/ure-lib.php:652
|
246 |
-
msgid "Editor"
|
247 |
-
msgstr "Redaktorius"
|
248 |
-
|
249 |
-
# @ ure
|
250 |
-
#: includes/ure-lib.php:653
|
251 |
-
msgid "Author"
|
252 |
-
msgstr "Autorius"
|
253 |
-
|
254 |
-
# @ ure
|
255 |
-
#: includes/ure-lib.php:654
|
256 |
-
msgid "Contributor"
|
257 |
-
msgstr "Bendradarbis"
|
258 |
-
|
259 |
-
# @ ure
|
260 |
-
#: includes/ure-lib.php:655
|
261 |
-
msgid "Subscriber"
|
262 |
-
msgstr "Prenumeratorius"
|
263 |
-
|
264 |
-
# @ ure
|
265 |
-
#: includes/ure-lib.php:657
|
266 |
-
msgid "Switch themes"
|
267 |
-
msgstr "Pakeisti apipavidalinimus"
|
268 |
-
|
269 |
-
# @ ure
|
270 |
-
#: includes/ure-lib.php:658
|
271 |
-
msgid "Edit themes"
|
272 |
-
msgstr "Redaguoti apipavidalinimus"
|
273 |
-
|
274 |
-
# @ ure
|
275 |
-
#: includes/ure-lib.php:659
|
276 |
-
msgid "Activate plugins"
|
277 |
-
msgstr "Suaktyvinti papildinius"
|
278 |
-
|
279 |
-
# @ ure
|
280 |
-
#: includes/ure-lib.php:660
|
281 |
-
msgid "Edit plugins"
|
282 |
-
msgstr "Redaguoti papildinius"
|
283 |
-
|
284 |
-
# @ ure
|
285 |
-
#: includes/ure-lib.php:661
|
286 |
-
msgid "Edit users"
|
287 |
-
msgstr "Redaguoti vartotojus"
|
288 |
-
|
289 |
-
# @ ure
|
290 |
-
#: includes/ure-lib.php:662
|
291 |
-
msgid "Edit files"
|
292 |
-
msgstr "Redaguoti rinkmenas"
|
293 |
-
|
294 |
-
# @ ure
|
295 |
-
#: includes/ure-lib.php:663
|
296 |
-
msgid "Manage options"
|
297 |
-
msgstr "Valdyti parinktis"
|
298 |
-
|
299 |
-
# @ ure
|
300 |
-
#: includes/ure-lib.php:664
|
301 |
-
msgid "Moderate comments"
|
302 |
-
msgstr "Prižiūrėti komentarus"
|
303 |
-
|
304 |
-
# @ ure
|
305 |
-
#: includes/ure-lib.php:665
|
306 |
-
msgid "Manage categories"
|
307 |
-
msgstr "Valdyti kategorijas"
|
308 |
-
|
309 |
-
# @ ure
|
310 |
-
#: includes/ure-lib.php:666
|
311 |
-
msgid "Manage links"
|
312 |
-
msgstr "Valdyti nuorodas"
|
313 |
-
|
314 |
-
# @ ure
|
315 |
-
#: includes/ure-lib.php:667
|
316 |
-
msgid "Upload files"
|
317 |
-
msgstr "Išsiųsti rinkmenas"
|
318 |
-
|
319 |
-
# @ ure
|
320 |
-
#: includes/ure-lib.php:668
|
321 |
-
msgid "Import"
|
322 |
-
msgstr "Importuoti"
|
323 |
-
|
324 |
-
# @ ure
|
325 |
-
#: includes/ure-lib.php:669
|
326 |
-
msgid "Unfiltered html"
|
327 |
-
msgstr "Nefiltruotas html"
|
328 |
-
|
329 |
-
# @ ure
|
330 |
-
#: includes/ure-lib.php:670
|
331 |
-
msgid "Edit posts"
|
332 |
-
msgstr "Redaguoti įrašus"
|
333 |
-
|
334 |
-
# @ ure
|
335 |
-
#: includes/ure-lib.php:671
|
336 |
-
msgid "Edit others posts"
|
337 |
-
msgstr "Redaguoti kitų įrašus"
|
338 |
-
|
339 |
-
# @ ure
|
340 |
-
#: includes/ure-lib.php:672
|
341 |
-
msgid "Edit published posts"
|
342 |
-
msgstr "Redaguoti paskelbtus įrašus"
|
343 |
-
|
344 |
-
# @ ure
|
345 |
-
#: includes/ure-lib.php:673
|
346 |
-
msgid "Publish posts"
|
347 |
-
msgstr "Paskelbti įrašus"
|
348 |
-
|
349 |
-
# @ ure
|
350 |
-
#: includes/ure-lib.php:674
|
351 |
-
msgid "Edit pages"
|
352 |
-
msgstr "Redaguoti puslapius"
|
353 |
-
|
354 |
-
# @ ure
|
355 |
-
#: includes/ure-lib.php:675
|
356 |
-
msgid "Read"
|
357 |
-
msgstr "Skaityti"
|
358 |
-
|
359 |
-
# @ ure
|
360 |
-
#: includes/ure-lib.php:676
|
361 |
-
msgid "Level 10"
|
362 |
-
msgstr "10 lygis"
|
363 |
-
|
364 |
-
# @ ure
|
365 |
-
#: includes/ure-lib.php:677
|
366 |
-
msgid "Level 9"
|
367 |
-
msgstr "9 lygis"
|
368 |
-
|
369 |
-
# @ ure
|
370 |
-
#: includes/ure-lib.php:678
|
371 |
-
msgid "Level 8"
|
372 |
-
msgstr "8 lygis"
|
373 |
-
|
374 |
-
# @ ure
|
375 |
-
#: includes/ure-lib.php:679
|
376 |
-
msgid "Level 7"
|
377 |
-
msgstr "7 lygis"
|
378 |
-
|
379 |
-
# @ ure
|
380 |
-
#: includes/ure-lib.php:680
|
381 |
-
msgid "Level 6"
|
382 |
-
msgstr "6 lygis"
|
383 |
-
|
384 |
-
# @ ure
|
385 |
-
#: includes/ure-lib.php:681
|
386 |
-
msgid "Level 5"
|
387 |
-
msgstr "5 lygis"
|
388 |
-
|
389 |
-
# @ ure
|
390 |
-
#: includes/ure-lib.php:682
|
391 |
-
msgid "Level 4"
|
392 |
-
msgstr "4 lygis"
|
393 |
-
|
394 |
-
# @ ure
|
395 |
-
#: includes/ure-lib.php:683
|
396 |
-
msgid "Level 3"
|
397 |
-
msgstr "3 lygis"
|
398 |
-
|
399 |
-
# @ ure
|
400 |
-
#: includes/ure-lib.php:684
|
401 |
-
msgid "Level 2"
|
402 |
-
msgstr "2 lygis"
|
403 |
-
|
404 |
-
# @ ure
|
405 |
-
#: includes/ure-lib.php:685
|
406 |
-
msgid "Level 1"
|
407 |
-
msgstr "1 lygis"
|
408 |
-
|
409 |
-
# @ ure
|
410 |
-
#: includes/ure-lib.php:686
|
411 |
-
msgid "Level 0"
|
412 |
-
msgstr "0 lygis"
|
413 |
-
|
414 |
-
# @ ure
|
415 |
-
#: includes/ure-lib.php:687
|
416 |
-
msgid "Edit others pages"
|
417 |
-
msgstr "Redaguoti kitų puslapius"
|
418 |
-
|
419 |
-
# @ ure
|
420 |
-
#: includes/ure-lib.php:688
|
421 |
-
msgid "Edit published pages"
|
422 |
-
msgstr "Redaguoti paskelbtus puslapius"
|
423 |
-
|
424 |
-
# @ ure
|
425 |
-
#: includes/ure-lib.php:689
|
426 |
-
msgid "Publish pages"
|
427 |
-
msgstr "Paskelbti puslapius"
|
428 |
-
|
429 |
-
# @ ure
|
430 |
-
#: includes/ure-lib.php:690
|
431 |
-
msgid "Delete pages"
|
432 |
-
msgstr "Ištrinti puslapius"
|
433 |
-
|
434 |
-
# @ ure
|
435 |
-
#: includes/ure-lib.php:691
|
436 |
-
msgid "Delete others pages"
|
437 |
-
msgstr "Ištrinti kitų puslapius"
|
438 |
-
|
439 |
-
# @ ure
|
440 |
-
#: includes/ure-lib.php:692
|
441 |
-
msgid "Delete published pages"
|
442 |
-
msgstr "Ištrinti paskelbtus puslapius"
|
443 |
-
|
444 |
-
# @ ure
|
445 |
-
#: includes/ure-lib.php:693
|
446 |
-
msgid "Delete posts"
|
447 |
-
msgstr "Ištrinti įrašus"
|
448 |
-
|
449 |
-
# @ ure
|
450 |
-
#: includes/ure-lib.php:694
|
451 |
-
msgid "Delete others posts"
|
452 |
-
msgstr "Ištrinti kitų įrašus"
|
453 |
-
|
454 |
-
# @ ure
|
455 |
-
#: includes/ure-lib.php:695
|
456 |
-
msgid "Delete published posts"
|
457 |
-
msgstr "Ištrinti paskelbtus įrašus"
|
458 |
-
|
459 |
-
# @ ure
|
460 |
-
#: includes/ure-lib.php:696
|
461 |
-
msgid "Delete private posts"
|
462 |
-
msgstr "Ištrinti privačius įrašus"
|
463 |
-
|
464 |
-
# @ ure
|
465 |
-
#: includes/ure-lib.php:697
|
466 |
-
msgid "Edit private posts"
|
467 |
-
msgstr "Redaguoti privačius įrašus"
|
468 |
-
|
469 |
-
# @ ure
|
470 |
-
#: includes/ure-lib.php:698
|
471 |
-
msgid "Read private posts"
|
472 |
-
msgstr "Skaityti privačius įrašus"
|
473 |
-
|
474 |
-
# @ ure
|
475 |
-
#: includes/ure-lib.php:699
|
476 |
-
msgid "Delete private pages"
|
477 |
-
msgstr "Ištrinti privačius puslapius"
|
478 |
-
|
479 |
-
# @ ure
|
480 |
-
#: includes/ure-lib.php:700
|
481 |
-
msgid "Edit private pages"
|
482 |
-
msgstr "Redaguoti privačius puslapius"
|
483 |
-
|
484 |
-
# @ ure
|
485 |
-
#: includes/ure-lib.php:701
|
486 |
-
msgid "Read private pages"
|
487 |
-
msgstr "Skaityti privačius puslapius"
|
488 |
-
|
489 |
-
# @ ure
|
490 |
-
#: includes/ure-lib.php:702
|
491 |
-
msgid "Delete users"
|
492 |
-
msgstr "Trinti vartotojus"
|
493 |
-
|
494 |
-
# @ ure
|
495 |
-
#: includes/ure-lib.php:703
|
496 |
-
msgid "Create users"
|
497 |
-
msgstr "Sukurti vartotojus"
|
498 |
-
|
499 |
-
# @ ure
|
500 |
-
#: includes/ure-lib.php:704
|
501 |
-
msgid "Unfiltered upload"
|
502 |
-
msgstr "Nefiltruojamas išsiuntimas"
|
503 |
-
|
504 |
-
# @ ure
|
505 |
-
#: includes/ure-lib.php:705
|
506 |
-
msgid "Edit dashboard"
|
507 |
-
msgstr "Redaguoti prietaisų skydelį"
|
508 |
-
|
509 |
-
# @ ure
|
510 |
-
#: includes/ure-lib.php:706
|
511 |
-
msgid "Update plugins"
|
512 |
-
msgstr "Atnaujinti papildinius"
|
513 |
-
|
514 |
-
# @ ure
|
515 |
-
#: includes/ure-lib.php:707
|
516 |
-
msgid "Delete plugins"
|
517 |
-
msgstr "Ištrinti papildinius"
|
518 |
-
|
519 |
-
# @ ure
|
520 |
-
#: includes/ure-lib.php:708
|
521 |
-
msgid "Install plugins"
|
522 |
-
msgstr "Įdiegti papildinius"
|
523 |
-
|
524 |
-
# @ ure
|
525 |
-
#: includes/ure-lib.php:709
|
526 |
-
msgid "Update themes"
|
527 |
-
msgstr "Atnaujinti apipavidalinimus"
|
528 |
-
|
529 |
-
# @ ure
|
530 |
-
#: includes/ure-lib.php:710
|
531 |
-
msgid "Install themes"
|
532 |
-
msgstr "Įdiegti apipavidalinimus"
|
533 |
-
|
534 |
-
# @ ure
|
535 |
-
#: includes/ure-lib.php:711
|
536 |
-
msgid "Update core"
|
537 |
-
msgstr "Atnaujinti branduolį"
|
538 |
-
|
539 |
-
# @ ure
|
540 |
-
#: includes/ure-lib.php:712
|
541 |
-
msgid "List users"
|
542 |
-
msgstr "Rodyti vartotojus"
|
543 |
-
|
544 |
-
# @ ure
|
545 |
-
#: includes/ure-lib.php:713
|
546 |
-
msgid "Remove users"
|
547 |
-
msgstr "Šalinti vartotojus"
|
548 |
-
|
549 |
-
# @ ure
|
550 |
-
#: includes/ure-lib.php:714
|
551 |
-
msgid "Add users"
|
552 |
-
msgstr "Pridėti vartotojus"
|
553 |
-
|
554 |
-
# @ ure
|
555 |
-
#: includes/ure-lib.php:715
|
556 |
-
msgid "Promote users"
|
557 |
-
msgstr "Paaukštinti vartotojus"
|
558 |
-
|
559 |
-
# @ ure
|
560 |
-
#: includes/ure-lib.php:716
|
561 |
-
msgid "Edit theme options"
|
562 |
-
msgstr "Redaguoti apipavidalinimo parinktis"
|
563 |
-
|
564 |
-
# @ ure
|
565 |
-
#: includes/ure-lib.php:717
|
566 |
-
msgid "Delete themes"
|
567 |
-
msgstr "Ištrinti apipavidalinimus"
|
568 |
-
|
569 |
-
# @ ure
|
570 |
-
#: includes/ure-lib.php:718
|
571 |
-
msgid "Export"
|
572 |
-
msgstr "Eksportuoti"
|
573 |
-
|
574 |
-
# @ ure
|
575 |
-
#: includes/ure-lib.php:834
|
576 |
-
msgid "Error: Capability name must contain latin characters and digits only!"
|
577 |
-
msgstr "Klaida: Gebos pavadinimas turi susidaryti tik iš lotyniškų simbolių bei skaičių!"
|
578 |
-
|
579 |
-
# @ ure
|
580 |
-
#: includes/ure-lib.php:846
|
581 |
-
#, php-format
|
582 |
-
msgid "Capability %s is added successfully"
|
583 |
-
msgstr "Geba %s sėkmingai pridėta"
|
584 |
-
|
585 |
-
#: includes/ure-lib.php:848
|
586 |
-
#, php-format
|
587 |
-
msgid "Capability %s exists already"
|
588 |
-
msgstr "Geba %s jau egzistuoja"
|
589 |
-
|
590 |
-
#: includes/ure-lib.php:997
|
591 |
-
#, php-format
|
592 |
-
msgid "Error! You do not have permission to delete this capability: %s!"
|
593 |
-
msgstr "Klaida! Jūs neturite leidimo ištrinti šią gebą: %s!"
|
594 |
-
|
595 |
-
# @ ure
|
596 |
-
#: includes/ure-lib.php:1016
|
597 |
-
#, php-format
|
598 |
-
msgid "Capability %s is removed successfully"
|
599 |
-
msgstr "Geba %s sėkmingai pašalinta"
|
600 |
-
|
601 |
-
#: includes/ure-lib.php:1083
|
602 |
-
msgid "Help"
|
603 |
-
msgstr "Pagalba"
|
604 |
-
|
605 |
-
# @ ure
|
606 |
-
#: includes/ure-role-edit.php:29
|
607 |
-
msgid "None"
|
608 |
-
msgstr "Nieko"
|
609 |
-
|
610 |
-
# @ ure
|
611 |
-
#: includes/ure-role-edit.php:67
|
612 |
-
msgid "Select Role and change its capabilities list"
|
613 |
-
msgstr "Pasirinkti funkciją ir pakeisti jai priskirtų gebų sąrašą"
|
614 |
-
|
615 |
-
# @ ure
|
616 |
-
#: includes/ure-role-edit.php:69
|
617 |
-
#: includes/ure-role-edit.php:166
|
618 |
-
msgid "Select Role:"
|
619 |
-
msgstr "Pasirinkite Funkciją:"
|
620 |
-
|
621 |
-
# @ ure
|
622 |
-
#: includes/ure-role-edit.php:79
|
623 |
-
#: includes/ure-user-edit.php:38
|
624 |
-
msgid "Show capabilities in human readable form"
|
625 |
-
msgstr "Rodyti gebas žmogui suprantama forma"
|
626 |
-
|
627 |
-
#: includes/ure-role-edit.php:88
|
628 |
-
#: includes/ure-user-edit.php:47
|
629 |
-
msgid "Show deprecated capabilities"
|
630 |
-
msgstr "Rodyti prieštaraujančias gebas"
|
631 |
-
|
632 |
-
#: includes/ure-role-edit.php:92
|
633 |
-
msgid "If checked, then apply action to ALL sites of this Network"
|
634 |
-
msgstr "Jeigu pažymėta, tuomet veiksmas pritaikomas VISIEMS šio Tinklo puslapiams"
|
635 |
-
|
636 |
-
#: includes/ure-role-edit.php:102
|
637 |
-
msgid "Apply to All Sites"
|
638 |
-
msgstr "Pritaikyti Visiems Puslapiams"
|
639 |
-
|
640 |
-
#: includes/ure-role-edit.php:109
|
641 |
-
#: includes/ure-user-edit.php:88
|
642 |
-
#, fuzzy
|
643 |
-
msgid "Core capabilities:"
|
644 |
-
msgstr "WordPress Gebos:"
|
645 |
-
|
646 |
-
#: includes/ure-role-edit.php:124
|
647 |
-
#: includes/ure-user-edit.php:103
|
648 |
-
#, fuzzy
|
649 |
-
msgid "Custom capabilities:"
|
650 |
-
msgstr "Gebos:"
|
651 |
-
|
652 |
-
#: includes/ure-role-edit.php:155
|
653 |
-
msgid "Role name (ID): "
|
654 |
-
msgstr ""
|
655 |
-
|
656 |
-
#: includes/ure-role-edit.php:157
|
657 |
-
msgid "Display Role Name: "
|
658 |
-
msgstr ""
|
659 |
-
|
660 |
-
#: includes/ure-role-edit.php:159
|
661 |
-
msgid "Make copy of: "
|
662 |
-
msgstr "Padaryti kopiją:"
|
663 |
-
|
664 |
-
# @ ure
|
665 |
-
#: includes/ure-role-edit.php:181
|
666 |
-
#, fuzzy
|
667 |
-
msgid "Delete:"
|
668 |
-
msgstr "Ištrinti"
|
669 |
-
|
670 |
-
#: includes/ure-role-edit.php:188
|
671 |
-
msgid "Capability name (ID): "
|
672 |
-
msgstr ""
|
673 |
-
|
674 |
-
#: includes/ure-user-edit.php:22
|
675 |
-
msgid "Change capabilities for user"
|
676 |
-
msgstr "Pakeisti šio vartotojo gebas"
|
677 |
-
|
678 |
-
#: includes/ure-user-edit.php:52
|
679 |
-
msgid "Primary Role:"
|
680 |
-
msgstr ""
|
681 |
-
|
682 |
-
#: includes/ure-user-edit.php:62
|
683 |
-
msgid "bbPress Role:"
|
684 |
-
msgstr ""
|
685 |
-
|
686 |
-
# @ ure
|
687 |
-
#: includes/ure-user-edit.php:72
|
688 |
-
#, fuzzy
|
689 |
-
msgid "Other Roles:"
|
690 |
-
msgstr "Ištrinti Funkciją"
|
691 |
-
|
692 |
-
# @ ure
|
693 |
-
#: includes/ure-options.php:65
|
694 |
-
#, fuzzy
|
695 |
-
msgid "User Roles are restored to WordPress default values. "
|
696 |
-
msgstr "Vartotojo Funkcijos atkurtos pagal atsarginės kopijos duomenis."
|
697 |
-
|
698 |
-
#: includes/ure-options.php:136
|
699 |
-
msgid "Error: "
|
700 |
-
msgstr "Klaida:"
|
701 |
-
|
702 |
-
# @ ure
|
703 |
-
#: includes/ure-options.php:136
|
704 |
-
#: includes/ure-options.php:156
|
705 |
-
msgid "Role"
|
706 |
-
msgstr "Funkcija"
|
707 |
-
|
708 |
-
#: includes/ure-options.php:136
|
709 |
-
msgid "does not exist"
|
710 |
-
msgstr "neegzistuoja"
|
711 |
-
|
712 |
-
# @ ure
|
713 |
-
#: includes/ure-options.php:156
|
714 |
-
msgid "is updated successfully"
|
715 |
-
msgstr "yra sėkmingai atnaujinta"
|
716 |
-
|
717 |
-
# @ ure
|
718 |
-
#: includes/ure-options.php:161
|
719 |
-
#: includes/ure-options.php:174
|
720 |
-
#, fuzzy
|
721 |
-
msgid "Error occured during role update"
|
722 |
-
msgstr "Funkcijos ištrynimo metu įvyko klaida"
|
723 |
-
|
724 |
-
#: includes/ure-options.php:169
|
725 |
-
msgid "User"
|
726 |
-
msgstr "Vartotojas"
|
727 |
-
|
728 |
-
# @ ure
|
729 |
-
#: includes/ure-options.php:169
|
730 |
-
msgid "capabilities are updated successfully"
|
731 |
-
msgstr "Gebos sėkmingai atnaujintos"
|
732 |
-
|
733 |
-
# @ ure
|
734 |
-
#: includes/ure-options.php:206
|
735 |
-
msgid "About this Plugin:"
|
736 |
-
msgstr "Apie šį Papildinį:"
|
737 |
-
|
738 |
-
# @ ure
|
739 |
-
#: includes/ure-options.php:207
|
740 |
-
msgid "Author's website"
|
741 |
-
msgstr "Autoriaus svetainė"
|
742 |
-
|
743 |
-
# @ ure
|
744 |
-
#: includes/ure-options.php:208
|
745 |
-
msgid "Plugin webpage"
|
746 |
-
msgstr "Papildinio puslapis"
|
747 |
-
|
748 |
-
# @ ure
|
749 |
-
#: includes/ure-options.php:210
|
750 |
-
msgid "FAQ"
|
751 |
-
msgstr "DUK"
|
752 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
lang/ure-nl_BE.mo
DELETED
Binary file
|
lang/ure-nl_BE.po
DELETED
@@ -1,749 +0,0 @@
|
|
1 |
-
msgid ""
|
2 |
-
msgstr ""
|
3 |
-
"Project-Id-Version: User Role Editor 2.0\n"
|
4 |
-
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2013-05-17 11:16+0700\n"
|
6 |
-
"PO-Revision-Date: \n"
|
7 |
-
"Last-Translator: Vladimir Garagulya <vladimir@shinephp.com>\n"
|
8 |
-
"Language-Team: ShinePHP.com <vladimir@shinephp.com>\n"
|
9 |
-
"Language: \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-Language: English\n"
|
14 |
-
"X-Poedit-Country: RUSSIAN FEDERATION\n"
|
15 |
-
"X-Poedit-SourceCharset: utf-8\n"
|
16 |
-
"X-Poedit-KeywordsList: __;_e\n"
|
17 |
-
"X-Poedit-Basepath: .\n"
|
18 |
-
"X-Poedit-SearchPath-0: ..\n"
|
19 |
-
|
20 |
-
#: ../user-role-editor.php:34
|
21 |
-
#, fuzzy, php-format
|
22 |
-
msgid "User Role Editor requires PHP %s or newer."
|
23 |
-
msgstr "User Role Editor vereist WordPress 3.0 of nieuwer."
|
24 |
-
|
25 |
-
#: ../user-role-editor.php:35
|
26 |
-
#: ../user-role-editor.php:107
|
27 |
-
msgid "Please update!"
|
28 |
-
msgstr "Gelieve te Updaten"
|
29 |
-
|
30 |
-
#: ../user-role-editor.php:80
|
31 |
-
msgid "Only"
|
32 |
-
msgstr ""
|
33 |
-
|
34 |
-
#: ../user-role-editor.php:80
|
35 |
-
msgid "is allowed to use"
|
36 |
-
msgstr ""
|
37 |
-
|
38 |
-
#: ../user-role-editor.php:86
|
39 |
-
#: ../user-role-editor.php:312
|
40 |
-
#: ../user-role-editor.php:368
|
41 |
-
msgid "User Role Editor"
|
42 |
-
msgstr "User Role Editor"
|
43 |
-
|
44 |
-
#: ../user-role-editor.php:106
|
45 |
-
#, fuzzy, php-format
|
46 |
-
msgid "User Role Editor requires WordPress %s or newer."
|
47 |
-
msgstr "User Role Editor vereist WordPress 3.0 of nieuwer."
|
48 |
-
|
49 |
-
#: ../user-role-editor.php:139
|
50 |
-
#, fuzzy
|
51 |
-
msgid "Select All"
|
52 |
-
msgstr "Selecteer de Rol"
|
53 |
-
|
54 |
-
#: ../user-role-editor.php:140
|
55 |
-
msgid "Unselect All"
|
56 |
-
msgstr ""
|
57 |
-
|
58 |
-
#: ../user-role-editor.php:141
|
59 |
-
msgid "Reverse"
|
60 |
-
msgstr ""
|
61 |
-
|
62 |
-
#: ../user-role-editor.php:142
|
63 |
-
msgid "Update"
|
64 |
-
msgstr "Vernieuw"
|
65 |
-
|
66 |
-
#: ../user-role-editor.php:143
|
67 |
-
#, fuzzy
|
68 |
-
msgid "Please confirm permissions update"
|
69 |
-
msgstr "Bevestig om verder te gaan"
|
70 |
-
|
71 |
-
#: ../user-role-editor.php:144
|
72 |
-
msgid "Add New Role"
|
73 |
-
msgstr "Voeg nieuwe rol toe"
|
74 |
-
|
75 |
-
#: ../user-role-editor.php:145
|
76 |
-
#, fuzzy
|
77 |
-
msgid " Role name (ID) can not be empty!"
|
78 |
-
msgstr "Rol Naam mag niet leeg zijn!"
|
79 |
-
|
80 |
-
#: ../user-role-editor.php:146
|
81 |
-
#, fuzzy
|
82 |
-
msgid " Role name (ID) must contain latin characters, digits, hyphens or underscore only!"
|
83 |
-
msgstr "Fout: Rol Naam mag enkel latijnse letters en cijfers bevatten!"
|
84 |
-
|
85 |
-
#: ../user-role-editor.php:147
|
86 |
-
#, fuzzy
|
87 |
-
msgid "Add Role"
|
88 |
-
msgstr "Voeg nieuwe rol toe"
|
89 |
-
|
90 |
-
#: ../user-role-editor.php:148
|
91 |
-
msgid "Delete Role"
|
92 |
-
msgstr "Verwijder Rol"
|
93 |
-
|
94 |
-
#: ../user-role-editor.php:149
|
95 |
-
msgid "Cancel"
|
96 |
-
msgstr "Annuleer"
|
97 |
-
|
98 |
-
#: ../user-role-editor.php:150
|
99 |
-
#, fuzzy
|
100 |
-
msgid "Add Capability"
|
101 |
-
msgstr "Voeg nieuwe rol toe"
|
102 |
-
|
103 |
-
#: ../user-role-editor.php:151
|
104 |
-
#: ../user-role-editor.php:156
|
105 |
-
#, fuzzy
|
106 |
-
msgid "Delete Capability"
|
107 |
-
msgstr "Voeg nieuwe rol toe"
|
108 |
-
|
109 |
-
#: ../user-role-editor.php:152
|
110 |
-
msgid "Reset"
|
111 |
-
msgstr "herstel"
|
112 |
-
|
113 |
-
#: ../user-role-editor.php:153
|
114 |
-
msgid "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?"
|
115 |
-
msgstr ""
|
116 |
-
|
117 |
-
#: ../user-role-editor.php:154
|
118 |
-
#, fuzzy
|
119 |
-
msgid "Default Role"
|
120 |
-
msgstr "Verwijder Rol"
|
121 |
-
|
122 |
-
#: ../user-role-editor.php:155
|
123 |
-
#, fuzzy
|
124 |
-
msgid "Set New Default Role"
|
125 |
-
msgstr "Stel in als Standaard Gebruikers Rol"
|
126 |
-
|
127 |
-
#: ../user-role-editor.php:157
|
128 |
-
msgid "Warning! Be careful - removing critical capability could crash some plugin or other custom code"
|
129 |
-
msgstr ""
|
130 |
-
|
131 |
-
#: ../user-role-editor.php:158
|
132 |
-
#, fuzzy
|
133 |
-
msgid " Capability name (ID) can not be empty!"
|
134 |
-
msgstr "Rol Naam mag niet leeg zijn!"
|
135 |
-
|
136 |
-
#: ../user-role-editor.php:159
|
137 |
-
#, fuzzy
|
138 |
-
msgid " Capability name (ID) must contain latin characters, digits, hyphens or underscore only!"
|
139 |
-
msgstr "Fout: Rol Naam mag enkel latijnse letters en cijfers bevatten!"
|
140 |
-
|
141 |
-
#: ../user-role-editor.php:284
|
142 |
-
msgid "Settings"
|
143 |
-
msgstr "Instellingen"
|
144 |
-
|
145 |
-
#: ../user-role-editor.php:294
|
146 |
-
#: ../includes/ure-options.php:209
|
147 |
-
msgid "Changelog"
|
148 |
-
msgstr "Changelog"
|
149 |
-
|
150 |
-
#: ../user-role-editor.php:342
|
151 |
-
msgid "Capabilities"
|
152 |
-
msgstr ""
|
153 |
-
|
154 |
-
#: ../user-role-editor.php:371
|
155 |
-
#: ../user-role-editor.php:407
|
156 |
-
#, fuzzy
|
157 |
-
msgid "Other Roles"
|
158 |
-
msgstr "Verwijder Rol"
|
159 |
-
|
160 |
-
#: ../user-role-editor.php:381
|
161 |
-
#, fuzzy
|
162 |
-
msgid "Edit"
|
163 |
-
msgstr "Editor"
|
164 |
-
|
165 |
-
#: ../includes/ure-lib.php:35
|
166 |
-
msgid "Error is occur. Please check the log file."
|
167 |
-
msgstr "Er heeft zich een fout voorgedaan. Gelieve het logbestand na te zien."
|
168 |
-
|
169 |
-
#: ../includes/ure-lib.php:364
|
170 |
-
msgid "Backup record is created for the current role capabilities"
|
171 |
-
msgstr "De reservekopie is aangemaakt voor de huidige rol mogelijkheden"
|
172 |
-
|
173 |
-
#: ../includes/ure-lib.php:481
|
174 |
-
#, fuzzy
|
175 |
-
msgid "Error: Role ID must contain latin characters, digits, hyphens or underscore only!"
|
176 |
-
msgstr "Fout: Rol Naam mag enkel latijnse letters en cijfers bevatten!"
|
177 |
-
|
178 |
-
#: ../includes/ure-lib.php:496
|
179 |
-
#, fuzzy, php-format
|
180 |
-
msgid "Role %s exists already"
|
181 |
-
msgstr "Rol %s is successvol aangemaakt"
|
182 |
-
|
183 |
-
#: ../includes/ure-lib.php:511
|
184 |
-
msgid "Error is encountered during new role create operation"
|
185 |
-
msgstr "Er heeft zich een fout voorgedaan tijdens het aanmaken van een nieuwe rol."
|
186 |
-
|
187 |
-
#: ../includes/ure-lib.php:513
|
188 |
-
#, php-format
|
189 |
-
msgid "Role %s is created successfully"
|
190 |
-
msgstr "Rol %s is successvol aangemaakt"
|
191 |
-
|
192 |
-
#: ../includes/ure-lib.php:597
|
193 |
-
msgid "Error encountered during role delete operation"
|
194 |
-
msgstr "Er heeft zich een fout voorgedaan tijdens het verwijderen van de rol"
|
195 |
-
|
196 |
-
#: ../includes/ure-lib.php:599
|
197 |
-
#, php-format
|
198 |
-
msgid "Role %s is deleted successfully"
|
199 |
-
msgstr "Rol %s is successvol verwijderd."
|
200 |
-
|
201 |
-
#: ../includes/ure-lib.php:619
|
202 |
-
msgid "Error encountered during default role change operation"
|
203 |
-
msgstr "Er heeft zich een fout voorgedaan tijdens het aanpassen van de standaard rol"
|
204 |
-
|
205 |
-
#: ../includes/ure-lib.php:625
|
206 |
-
#, php-format
|
207 |
-
msgid "Default role for new users is set to %s successfully"
|
208 |
-
msgstr "De standaard rol voor nieuwe gebruikers is successvol ingesteld op %s"
|
209 |
-
|
210 |
-
#: ../includes/ure-lib.php:652
|
211 |
-
msgid "Editor"
|
212 |
-
msgstr "Editor"
|
213 |
-
|
214 |
-
#: ../includes/ure-lib.php:653
|
215 |
-
msgid "Author"
|
216 |
-
msgstr "Autheur"
|
217 |
-
|
218 |
-
#: ../includes/ure-lib.php:654
|
219 |
-
msgid "Contributor"
|
220 |
-
msgstr "Medewerker"
|
221 |
-
|
222 |
-
#: ../includes/ure-lib.php:655
|
223 |
-
msgid "Subscriber"
|
224 |
-
msgstr "Lid"
|
225 |
-
|
226 |
-
#: ../includes/ure-lib.php:657
|
227 |
-
msgid "Switch themes"
|
228 |
-
msgstr "Wissel Thema"
|
229 |
-
|
230 |
-
#: ../includes/ure-lib.php:658
|
231 |
-
msgid "Edit themes"
|
232 |
-
msgstr "Bewerk Thema"
|
233 |
-
|
234 |
-
#: ../includes/ure-lib.php:659
|
235 |
-
msgid "Activate plugins"
|
236 |
-
msgstr "Activeer Plugin"
|
237 |
-
|
238 |
-
#: ../includes/ure-lib.php:660
|
239 |
-
msgid "Edit plugins"
|
240 |
-
msgstr "Bewerk Plugin"
|
241 |
-
|
242 |
-
#: ../includes/ure-lib.php:661
|
243 |
-
msgid "Edit users"
|
244 |
-
msgstr "Bewerk gebruiker"
|
245 |
-
|
246 |
-
#: ../includes/ure-lib.php:662
|
247 |
-
msgid "Edit files"
|
248 |
-
msgstr "Bewerk bestanden"
|
249 |
-
|
250 |
-
#: ../includes/ure-lib.php:663
|
251 |
-
msgid "Manage options"
|
252 |
-
msgstr "Beheer Opties"
|
253 |
-
|
254 |
-
#: ../includes/ure-lib.php:664
|
255 |
-
msgid "Moderate comments"
|
256 |
-
msgstr "Beheer commentaar"
|
257 |
-
|
258 |
-
#: ../includes/ure-lib.php:665
|
259 |
-
msgid "Manage categories"
|
260 |
-
msgstr "Beheer Categorien"
|
261 |
-
|
262 |
-
#: ../includes/ure-lib.php:666
|
263 |
-
msgid "Manage links"
|
264 |
-
msgstr "Beheer HyperLinks"
|
265 |
-
|
266 |
-
#: ../includes/ure-lib.php:667
|
267 |
-
msgid "Upload files"
|
268 |
-
msgstr "Upload Bestanden"
|
269 |
-
|
270 |
-
#: ../includes/ure-lib.php:668
|
271 |
-
msgid "Import"
|
272 |
-
msgstr "Importeer"
|
273 |
-
|
274 |
-
#: ../includes/ure-lib.php:669
|
275 |
-
msgid "Unfiltered html"
|
276 |
-
msgstr "Ongefilterde HTML"
|
277 |
-
|
278 |
-
#: ../includes/ure-lib.php:670
|
279 |
-
msgid "Edit posts"
|
280 |
-
msgstr "Bewerk posts"
|
281 |
-
|
282 |
-
#: ../includes/ure-lib.php:671
|
283 |
-
msgid "Edit others posts"
|
284 |
-
msgstr "Bewerk Andere Posts"
|
285 |
-
|
286 |
-
#: ../includes/ure-lib.php:672
|
287 |
-
msgid "Edit published posts"
|
288 |
-
msgstr "Bewerk gepubliceerde Posts"
|
289 |
-
|
290 |
-
#: ../includes/ure-lib.php:673
|
291 |
-
msgid "Publish posts"
|
292 |
-
msgstr "Publiceer Posts"
|
293 |
-
|
294 |
-
#: ../includes/ure-lib.php:674
|
295 |
-
msgid "Edit pages"
|
296 |
-
msgstr "Bewerk Pagina's"
|
297 |
-
|
298 |
-
#: ../includes/ure-lib.php:675
|
299 |
-
msgid "Read"
|
300 |
-
msgstr "Lees"
|
301 |
-
|
302 |
-
#: ../includes/ure-lib.php:676
|
303 |
-
msgid "Level 10"
|
304 |
-
msgstr "Niveau1"
|
305 |
-
|
306 |
-
#: ../includes/ure-lib.php:677
|
307 |
-
msgid "Level 9"
|
308 |
-
msgstr "Niveau 9"
|
309 |
-
|
310 |
-
#: ../includes/ure-lib.php:678
|
311 |
-
msgid "Level 8"
|
312 |
-
msgstr "Niveau 8"
|
313 |
-
|
314 |
-
#: ../includes/ure-lib.php:679
|
315 |
-
msgid "Level 7"
|
316 |
-
msgstr "Niveau 7"
|
317 |
-
|
318 |
-
#: ../includes/ure-lib.php:680
|
319 |
-
msgid "Level 6"
|
320 |
-
msgstr "Niveau 6"
|
321 |
-
|
322 |
-
#: ../includes/ure-lib.php:681
|
323 |
-
msgid "Level 5"
|
324 |
-
msgstr "Niveau 5"
|
325 |
-
|
326 |
-
#: ../includes/ure-lib.php:682
|
327 |
-
msgid "Level 4"
|
328 |
-
msgstr "Niveau 4"
|
329 |
-
|
330 |
-
#: ../includes/ure-lib.php:683
|
331 |
-
msgid "Level 3"
|
332 |
-
msgstr "Niveau 3"
|
333 |
-
|
334 |
-
#: ../includes/ure-lib.php:684
|
335 |
-
msgid "Level 2"
|
336 |
-
msgstr "Niveau 2"
|
337 |
-
|
338 |
-
#: ../includes/ure-lib.php:685
|
339 |
-
msgid "Level 1"
|
340 |
-
msgstr "Niveau 1"
|
341 |
-
|
342 |
-
#: ../includes/ure-lib.php:686
|
343 |
-
msgid "Level 0"
|
344 |
-
msgstr "Niveau 0"
|
345 |
-
|
346 |
-
#: ../includes/ure-lib.php:687
|
347 |
-
msgid "Edit others pages"
|
348 |
-
msgstr "Bewerk Andere Pagina's"
|
349 |
-
|
350 |
-
#: ../includes/ure-lib.php:688
|
351 |
-
msgid "Edit published pages"
|
352 |
-
msgstr "Bewerk Gepubliceerde Pagina's"
|
353 |
-
|
354 |
-
#: ../includes/ure-lib.php:689
|
355 |
-
msgid "Publish pages"
|
356 |
-
msgstr "Publiceer Pagina's"
|
357 |
-
|
358 |
-
#: ../includes/ure-lib.php:690
|
359 |
-
msgid "Delete pages"
|
360 |
-
msgstr "Verwijder Pagina's"
|
361 |
-
|
362 |
-
#: ../includes/ure-lib.php:691
|
363 |
-
msgid "Delete others pages"
|
364 |
-
msgstr "Verwijder Andere Pagina's"
|
365 |
-
|
366 |
-
#: ../includes/ure-lib.php:692
|
367 |
-
msgid "Delete published pages"
|
368 |
-
msgstr "Verwijder Gepubliceerde Pagina's"
|
369 |
-
|
370 |
-
#: ../includes/ure-lib.php:693
|
371 |
-
msgid "Delete posts"
|
372 |
-
msgstr "Verwijder Posts"
|
373 |
-
|
374 |
-
#: ../includes/ure-lib.php:694
|
375 |
-
msgid "Delete others posts"
|
376 |
-
msgstr "Verwijder Andere Posts"
|
377 |
-
|
378 |
-
#: ../includes/ure-lib.php:695
|
379 |
-
msgid "Delete published posts"
|
380 |
-
msgstr "Verwijder Gepubliceerde Posts"
|
381 |
-
|
382 |
-
#: ../includes/ure-lib.php:696
|
383 |
-
msgid "Delete private posts"
|
384 |
-
msgstr "Verwijder private Posts"
|
385 |
-
|
386 |
-
#: ../includes/ure-lib.php:697
|
387 |
-
msgid "Edit private posts"
|
388 |
-
msgstr "Bewerk Private Posts"
|
389 |
-
|
390 |
-
#: ../includes/ure-lib.php:698
|
391 |
-
msgid "Read private posts"
|
392 |
-
msgstr "Lees Private posts"
|
393 |
-
|
394 |
-
#: ../includes/ure-lib.php:699
|
395 |
-
msgid "Delete private pages"
|
396 |
-
msgstr "Verwijder Private Pagina's"
|
397 |
-
|
398 |
-
#: ../includes/ure-lib.php:700
|
399 |
-
msgid "Edit private pages"
|
400 |
-
msgstr "Bewerk Private Pagina's"
|
401 |
-
|
402 |
-
#: ../includes/ure-lib.php:701
|
403 |
-
msgid "Read private pages"
|
404 |
-
msgstr "Lees Private Pagina's"
|
405 |
-
|
406 |
-
#: ../includes/ure-lib.php:702
|
407 |
-
msgid "Delete users"
|
408 |
-
msgstr "Verwijder Gebruikers"
|
409 |
-
|
410 |
-
#: ../includes/ure-lib.php:703
|
411 |
-
msgid "Create users"
|
412 |
-
msgstr "Maak Gebruiker"
|
413 |
-
|
414 |
-
#: ../includes/ure-lib.php:704
|
415 |
-
msgid "Unfiltered upload"
|
416 |
-
msgstr "Ongefilterde Upload"
|
417 |
-
|
418 |
-
#: ../includes/ure-lib.php:705
|
419 |
-
msgid "Edit dashboard"
|
420 |
-
msgstr "Bewerk Dashboard"
|
421 |
-
|
422 |
-
#: ../includes/ure-lib.php:706
|
423 |
-
msgid "Update plugins"
|
424 |
-
msgstr "Vernieuw Plugins"
|
425 |
-
|
426 |
-
#: ../includes/ure-lib.php:707
|
427 |
-
msgid "Delete plugins"
|
428 |
-
msgstr "Verwijder Plugins"
|
429 |
-
|
430 |
-
#: ../includes/ure-lib.php:708
|
431 |
-
msgid "Install plugins"
|
432 |
-
msgstr "Installeer Plugins"
|
433 |
-
|
434 |
-
#: ../includes/ure-lib.php:709
|
435 |
-
msgid "Update themes"
|
436 |
-
msgstr "Vernieuw Thema's"
|
437 |
-
|
438 |
-
#: ../includes/ure-lib.php:710
|
439 |
-
msgid "Install themes"
|
440 |
-
msgstr "Installeer Thema's"
|
441 |
-
|
442 |
-
#: ../includes/ure-lib.php:711
|
443 |
-
msgid "Update core"
|
444 |
-
msgstr ""
|
445 |
-
|
446 |
-
#: ../includes/ure-lib.php:712
|
447 |
-
msgid "List users"
|
448 |
-
msgstr ""
|
449 |
-
|
450 |
-
#: ../includes/ure-lib.php:713
|
451 |
-
msgid "Remove users"
|
452 |
-
msgstr ""
|
453 |
-
|
454 |
-
#: ../includes/ure-lib.php:714
|
455 |
-
msgid "Add users"
|
456 |
-
msgstr ""
|
457 |
-
|
458 |
-
#: ../includes/ure-lib.php:715
|
459 |
-
msgid "Promote users"
|
460 |
-
msgstr ""
|
461 |
-
|
462 |
-
#: ../includes/ure-lib.php:716
|
463 |
-
msgid "Edit theme options"
|
464 |
-
msgstr ""
|
465 |
-
|
466 |
-
#: ../includes/ure-lib.php:717
|
467 |
-
msgid "Delete themes"
|
468 |
-
msgstr ""
|
469 |
-
|
470 |
-
#: ../includes/ure-lib.php:718
|
471 |
-
msgid "Export"
|
472 |
-
msgstr ""
|
473 |
-
|
474 |
-
#: ../includes/ure-lib.php:834
|
475 |
-
#, fuzzy
|
476 |
-
msgid "Error: Capability name must contain latin characters and digits only!"
|
477 |
-
msgstr "Fout: Rol Naam mag enkel latijnse letters en cijfers bevatten!"
|
478 |
-
|
479 |
-
#: ../includes/ure-lib.php:846
|
480 |
-
#, fuzzy, php-format
|
481 |
-
msgid "Capability %s is added successfully"
|
482 |
-
msgstr "Rol %s is successvol aangemaakt"
|
483 |
-
|
484 |
-
#: ../includes/ure-lib.php:848
|
485 |
-
#, php-format
|
486 |
-
msgid "Capability %s exists already"
|
487 |
-
msgstr ""
|
488 |
-
|
489 |
-
#: ../includes/ure-lib.php:997
|
490 |
-
#, php-format
|
491 |
-
msgid "Error! You do not have permission to delete this capability: %s!"
|
492 |
-
msgstr ""
|
493 |
-
|
494 |
-
#: ../includes/ure-lib.php:1016
|
495 |
-
#, fuzzy, php-format
|
496 |
-
msgid "Capability %s is removed successfully"
|
497 |
-
msgstr "Rol %s is successvol aangemaakt"
|
498 |
-
|
499 |
-
#: ../includes/ure-lib.php:1083
|
500 |
-
msgid "Help"
|
501 |
-
msgstr ""
|
502 |
-
|
503 |
-
#: ../includes/ure-role-edit.php:29
|
504 |
-
#, fuzzy
|
505 |
-
msgid "None"
|
506 |
-
msgstr "Doneer"
|
507 |
-
|
508 |
-
#: ../includes/ure-role-edit.php:67
|
509 |
-
msgid "Select Role and change its capabilities list"
|
510 |
-
msgstr "Selecteer de rol en pas de mogelijkheden lijst aan"
|
511 |
-
|
512 |
-
#: ../includes/ure-role-edit.php:69
|
513 |
-
#: ../includes/ure-role-edit.php:166
|
514 |
-
msgid "Select Role:"
|
515 |
-
msgstr "Selecteer de Rol"
|
516 |
-
|
517 |
-
#: ../includes/ure-role-edit.php:79
|
518 |
-
#: ../includes/ure-user-edit.php:38
|
519 |
-
msgid "Show capabilities in human readable form"
|
520 |
-
msgstr "Toon de mogelijkheden in menselijke taal"
|
521 |
-
|
522 |
-
#: ../includes/ure-role-edit.php:88
|
523 |
-
#: ../includes/ure-user-edit.php:47
|
524 |
-
msgid "Show deprecated capabilities"
|
525 |
-
msgstr ""
|
526 |
-
|
527 |
-
#: ../includes/ure-role-edit.php:92
|
528 |
-
msgid "If checked, then apply action to ALL sites of this Network"
|
529 |
-
msgstr ""
|
530 |
-
|
531 |
-
#: ../includes/ure-role-edit.php:102
|
532 |
-
msgid "Apply to All Sites"
|
533 |
-
msgstr ""
|
534 |
-
|
535 |
-
#: ../includes/ure-role-edit.php:109
|
536 |
-
#: ../includes/ure-user-edit.php:88
|
537 |
-
msgid "Core capabilities:"
|
538 |
-
msgstr ""
|
539 |
-
|
540 |
-
#: ../includes/ure-role-edit.php:124
|
541 |
-
#: ../includes/ure-user-edit.php:103
|
542 |
-
msgid "Custom capabilities:"
|
543 |
-
msgstr ""
|
544 |
-
|
545 |
-
#: ../includes/ure-role-edit.php:155
|
546 |
-
msgid "Role name (ID): "
|
547 |
-
msgstr ""
|
548 |
-
|
549 |
-
#: ../includes/ure-role-edit.php:157
|
550 |
-
msgid "Display Role Name: "
|
551 |
-
msgstr ""
|
552 |
-
|
553 |
-
#: ../includes/ure-role-edit.php:159
|
554 |
-
msgid "Make copy of: "
|
555 |
-
msgstr ""
|
556 |
-
|
557 |
-
#: ../includes/ure-role-edit.php:181
|
558 |
-
#, fuzzy
|
559 |
-
msgid "Delete:"
|
560 |
-
msgstr "Verwijder"
|
561 |
-
|
562 |
-
#: ../includes/ure-role-edit.php:188
|
563 |
-
msgid "Capability name (ID): "
|
564 |
-
msgstr ""
|
565 |
-
|
566 |
-
#: ../includes/ure-user-edit.php:22
|
567 |
-
msgid "Change capabilities for user"
|
568 |
-
msgstr ""
|
569 |
-
|
570 |
-
#: ../includes/ure-user-edit.php:52
|
571 |
-
msgid "Primary Role:"
|
572 |
-
msgstr ""
|
573 |
-
|
574 |
-
#: ../includes/ure-user-edit.php:62
|
575 |
-
msgid "bbPress Role:"
|
576 |
-
msgstr ""
|
577 |
-
|
578 |
-
#: ../includes/ure-user-edit.php:72
|
579 |
-
#, fuzzy
|
580 |
-
msgid "Other Roles:"
|
581 |
-
msgstr "Verwijder Rol"
|
582 |
-
|
583 |
-
#: ../includes/ure-options.php:65
|
584 |
-
#, fuzzy
|
585 |
-
msgid "User Roles are restored to WordPress default values. "
|
586 |
-
msgstr "Rol mogelijkheden zijn hersteld vanaf de reservekopie."
|
587 |
-
|
588 |
-
#: ../includes/ure-options.php:136
|
589 |
-
msgid "Error: "
|
590 |
-
msgstr ""
|
591 |
-
|
592 |
-
#: ../includes/ure-options.php:136
|
593 |
-
#: ../includes/ure-options.php:156
|
594 |
-
msgid "Role"
|
595 |
-
msgstr "Rol"
|
596 |
-
|
597 |
-
#: ../includes/ure-options.php:136
|
598 |
-
msgid "does not exist"
|
599 |
-
msgstr ""
|
600 |
-
|
601 |
-
#: ../includes/ure-options.php:156
|
602 |
-
msgid "is updated successfully"
|
603 |
-
msgstr "is successvol vernieuwd."
|
604 |
-
|
605 |
-
#: ../includes/ure-options.php:161
|
606 |
-
#: ../includes/ure-options.php:174
|
607 |
-
#, fuzzy
|
608 |
-
msgid "Error occured during role update"
|
609 |
-
msgstr "Er heeft zich een fout voorgedaan tijdens het verwijderen van de rol"
|
610 |
-
|
611 |
-
#: ../includes/ure-options.php:169
|
612 |
-
msgid "User"
|
613 |
-
msgstr ""
|
614 |
-
|
615 |
-
#: ../includes/ure-options.php:169
|
616 |
-
#, fuzzy
|
617 |
-
msgid "capabilities are updated successfully"
|
618 |
-
msgstr "is successvol vernieuwd."
|
619 |
-
|
620 |
-
#: ../includes/ure-options.php:206
|
621 |
-
msgid "About this Plugin:"
|
622 |
-
msgstr "Over deze Plugin:"
|
623 |
-
|
624 |
-
#: ../includes/ure-options.php:207
|
625 |
-
msgid "Author's website"
|
626 |
-
msgstr "site van de auteur"
|
627 |
-
|
628 |
-
#: ../includes/ure-options.php:208
|
629 |
-
msgid "Plugin webpage"
|
630 |
-
msgstr "Plugin Webpagina"
|
631 |
-
|
632 |
-
#: ../includes/ure-options.php:210
|
633 |
-
msgid "FAQ"
|
634 |
-
msgstr "FAQ"
|
635 |
-
|
636 |
-
#~ msgid "Database operation error. Check log file."
|
637 |
-
#~ msgstr "Database operatie fout. Gelieve het logbestand na te zien."
|
638 |
-
|
639 |
-
#~ msgid ""
|
640 |
-
#~ "No backup data. It is created automatically before the first role data "
|
641 |
-
#~ "update."
|
642 |
-
#~ msgstr ""
|
643 |
-
#~ "Er is geen reserve kopie. Een reserve kopie wordt automatisch aangemaakt "
|
644 |
-
#~ "voordat de eerste rol aangepast wordt."
|
645 |
-
|
646 |
-
#, fuzzy
|
647 |
-
#~ msgid " Name must contain latin characters and digits only!"
|
648 |
-
#~ msgstr "Rol Naam mag enkel latijnse letters en cijfers bevatten!"
|
649 |
-
|
650 |
-
#~ msgid "Change Default Role"
|
651 |
-
#~ msgstr "Pas de standaard rol aan"
|
652 |
-
|
653 |
-
#~ msgid "Role \"%s\" update: please confirm to continue"
|
654 |
-
#~ msgstr "Rol \"%s\" update: Gelieve te bevestigen om verder te gaan."
|
655 |
-
|
656 |
-
#~ msgid "Save Changes"
|
657 |
-
#~ msgstr "Opslaa"
|
658 |
-
|
659 |
-
#~ msgid "Cancel not saved changes"
|
660 |
-
#~ msgstr "Annuleer zonder op te slaan"
|
661 |
-
|
662 |
-
#~ msgid "Restore Roles from backup copy"
|
663 |
-
#~ msgstr "Herstel rollen vanaf herstelkopie."
|
664 |
-
|
665 |
-
#~ msgid "Add"
|
666 |
-
#~ msgstr "Voeg Toe"
|
667 |
-
|
668 |
-
#~ msgid "Add New User Role"
|
669 |
-
#~ msgstr "Voeg Nieuwe Gebruikersrol Toe"
|
670 |
-
|
671 |
-
#~ msgid "Default Role for New User"
|
672 |
-
#~ msgstr "Standaard rol voor nieuwe gebruiker"
|
673 |
-
|
674 |
-
#~ msgid "Change"
|
675 |
-
#~ msgstr "Pas Aan"
|
676 |
-
|
677 |
-
#~ msgid "Delete User Role"
|
678 |
-
#~ msgstr "Verwijder Gebruikersrol"
|
679 |
-
|
680 |
-
#, fuzzy
|
681 |
-
#~ msgid "User \"%s\" update: please confirm to continue"
|
682 |
-
#~ msgstr "Rol \"%s\" update: Gelieve te bevestigen om verder te gaan."
|
683 |
-
|
684 |
-
#, fuzzy
|
685 |
-
#~ msgid "Role:"
|
686 |
-
#~ msgstr "Rol"
|
687 |
-
|
688 |
-
#~ msgid "Greetings:"
|
689 |
-
#~ msgstr "Begroetingen:"
|
690 |
-
|
691 |
-
#~ msgid "It's me, the author"
|
692 |
-
#~ msgstr "Dit ben Ik, De Auteur."
|
693 |
-
|
694 |
-
#~ msgid "For the help with Belorussian translation"
|
695 |
-
#~ msgstr "voor hulp met de Belorussische vertaling"
|
696 |
-
|
697 |
-
#, fuzzy
|
698 |
-
#~ msgid "For the help with Brasilian Portuguese translation"
|
699 |
-
#~ msgstr "voor hulp met de Japanse vertaling"
|
700 |
-
|
701 |
-
#~ msgid "For the help with Chinese translation"
|
702 |
-
#~ msgstr "voor hulp met de Chinese vertaling"
|
703 |
-
|
704 |
-
#~ msgid "For the help with Dutch translation"
|
705 |
-
#~ msgstr "voor het vertalen naar het Nederlands en een nuttig idee"
|
706 |
-
|
707 |
-
#~ msgid "For the help with Finnish translation"
|
708 |
-
#~ msgstr "Voor hulp met de Finnish vertaling"
|
709 |
-
|
710 |
-
#~ msgid "For the help with French translation"
|
711 |
-
#~ msgstr "voor hulp met de Franse vertaling"
|
712 |
-
|
713 |
-
#~ msgid "For the help with German translation"
|
714 |
-
#~ msgstr "voor hulp met de Duitse vertaling"
|
715 |
-
|
716 |
-
#~ msgid "For the help with Hungarian translation"
|
717 |
-
#~ msgstr "voor hulp met de Honghaarse vertaling"
|
718 |
-
|
719 |
-
#~ msgid "For the help with Italian translation"
|
720 |
-
#~ msgstr "voor hulp met de Italiaanse vertaling"
|
721 |
-
|
722 |
-
#~ msgid "For the help with Japanese translation"
|
723 |
-
#~ msgstr "voor hulp met de Japanse vertaling"
|
724 |
-
|
725 |
-
#~ msgid "For the help with Polish translation"
|
726 |
-
#~ msgstr "voor hulp met de Poolse vertaling"
|
727 |
-
|
728 |
-
#~ msgid "For the help with Spanish translation"
|
729 |
-
#~ msgstr "Voor hulp met de Spaanse vertaling"
|
730 |
-
|
731 |
-
#, fuzzy
|
732 |
-
#~ msgid "For the updated Swedish translation"
|
733 |
-
#~ msgstr "Voor hulp met de Swedish vertaling"
|
734 |
-
|
735 |
-
#~ msgid "For the help with Swedish translation"
|
736 |
-
#~ msgstr "Voor hulp met de Swedish vertaling"
|
737 |
-
|
738 |
-
#~ msgid "For the code to hide administrator role"
|
739 |
-
#~ msgstr "voor de code om de administratie rol te verbergen"
|
740 |
-
|
741 |
-
#~ msgid ""
|
742 |
-
#~ "Do you wish to see your name with link to your site here? You are "
|
743 |
-
#~ "welcome! Your help with translation and new ideas are very appreciated."
|
744 |
-
#~ msgstr ""
|
745 |
-
#~ "Wenst u uw naam met link naar uw website hier te zien? Geen probleem! Uw "
|
746 |
-
#~ "hulp met het vertalen en nieuwe ideen wordt sterk geappricieerd."
|
747 |
-
|
748 |
-
#~ msgid "Roles list reading error is encountered"
|
749 |
-
#~ msgstr "Leesfout in de rollen lijst aangetroffen."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
lang/ure-nl_NL.mo
DELETED
Binary file
|
lang/ure-nl_NL.po
DELETED
@@ -1,750 +0,0 @@
|
|
1 |
-
msgid ""
|
2 |
-
msgstr ""
|
3 |
-
"Project-Id-Version: User Role Editor 2.0\n"
|
4 |
-
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2013-05-17 11:17+0700\n"
|
6 |
-
"PO-Revision-Date: \n"
|
7 |
-
"Last-Translator: Vladimir Garagulya <vladimir@shinephp.com>\n"
|
8 |
-
"Language-Team: ShinePHP.com <vladimir@shinephp.com>\n"
|
9 |
-
"Language: \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-Language: English\n"
|
14 |
-
"X-Poedit-Country: RUSSIAN FEDERATION\n"
|
15 |
-
"X-Poedit-SourceCharset: utf-8\n"
|
16 |
-
"X-Poedit-KeywordsList: __;_e\n"
|
17 |
-
"X-Poedit-Basepath: .\n"
|
18 |
-
"X-Poedit-SearchPath-0: ..\n"
|
19 |
-
|
20 |
-
#: ../user-role-editor.php:34
|
21 |
-
#, fuzzy, php-format
|
22 |
-
msgid "User Role Editor requires PHP %s or newer."
|
23 |
-
msgstr "User Role Editor vereist WordPress 3.0 of nieuwer."
|
24 |
-
|
25 |
-
#: ../user-role-editor.php:35
|
26 |
-
#: ../user-role-editor.php:107
|
27 |
-
msgid "Please update!"
|
28 |
-
msgstr "Gelieve te Updaten"
|
29 |
-
|
30 |
-
#: ../user-role-editor.php:80
|
31 |
-
msgid "Only"
|
32 |
-
msgstr ""
|
33 |
-
|
34 |
-
#: ../user-role-editor.php:80
|
35 |
-
msgid "is allowed to use"
|
36 |
-
msgstr ""
|
37 |
-
|
38 |
-
#: ../user-role-editor.php:86
|
39 |
-
#: ../user-role-editor.php:312
|
40 |
-
#: ../user-role-editor.php:368
|
41 |
-
msgid "User Role Editor"
|
42 |
-
msgstr "User Role Editor"
|
43 |
-
|
44 |
-
#: ../user-role-editor.php:106
|
45 |
-
#, fuzzy, php-format
|
46 |
-
msgid "User Role Editor requires WordPress %s or newer."
|
47 |
-
msgstr "User Role Editor vereist WordPress 3.0 of nieuwer."
|
48 |
-
|
49 |
-
#: ../user-role-editor.php:139
|
50 |
-
msgid "Select All"
|
51 |
-
msgstr ""
|
52 |
-
|
53 |
-
#: ../user-role-editor.php:140
|
54 |
-
msgid "Unselect All"
|
55 |
-
msgstr ""
|
56 |
-
|
57 |
-
#: ../user-role-editor.php:141
|
58 |
-
msgid "Reverse"
|
59 |
-
msgstr ""
|
60 |
-
|
61 |
-
#: ../user-role-editor.php:142
|
62 |
-
msgid "Update"
|
63 |
-
msgstr "Wijzig"
|
64 |
-
|
65 |
-
#: ../user-role-editor.php:143
|
66 |
-
#, fuzzy
|
67 |
-
msgid "Please confirm permissions update"
|
68 |
-
msgstr "Bevestig om verder te gaan"
|
69 |
-
|
70 |
-
#: ../user-role-editor.php:144
|
71 |
-
msgid "Add New Role"
|
72 |
-
msgstr "Voeg nieuwe rol toe"
|
73 |
-
|
74 |
-
#: ../user-role-editor.php:145
|
75 |
-
#, fuzzy
|
76 |
-
msgid " Role name (ID) can not be empty!"
|
77 |
-
msgstr "Rol Naam mag niet leeg zijn!"
|
78 |
-
|
79 |
-
#: ../user-role-editor.php:146
|
80 |
-
#, fuzzy
|
81 |
-
msgid " Role name (ID) must contain latin characters, digits, hyphens or underscore only!"
|
82 |
-
msgstr "Fout: Rol Naam mag enkel latijnse letters en cijfers bevatten!"
|
83 |
-
|
84 |
-
#: ../user-role-editor.php:147
|
85 |
-
#, fuzzy
|
86 |
-
msgid "Add Role"
|
87 |
-
msgstr "Voeg nieuwe rol toe"
|
88 |
-
|
89 |
-
#: ../user-role-editor.php:148
|
90 |
-
msgid "Delete Role"
|
91 |
-
msgstr "Verwijder Rol"
|
92 |
-
|
93 |
-
#: ../user-role-editor.php:149
|
94 |
-
msgid "Cancel"
|
95 |
-
msgstr "Annuleer"
|
96 |
-
|
97 |
-
#: ../user-role-editor.php:150
|
98 |
-
#, fuzzy
|
99 |
-
msgid "Add Capability"
|
100 |
-
msgstr "Voeg nieuwe rol toe"
|
101 |
-
|
102 |
-
#: ../user-role-editor.php:151
|
103 |
-
#: ../user-role-editor.php:156
|
104 |
-
#, fuzzy
|
105 |
-
msgid "Delete Capability"
|
106 |
-
msgstr "Voeg nieuwe rol toe"
|
107 |
-
|
108 |
-
#: ../user-role-editor.php:152
|
109 |
-
msgid "Reset"
|
110 |
-
msgstr "Herstel"
|
111 |
-
|
112 |
-
#: ../user-role-editor.php:153
|
113 |
-
msgid "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?"
|
114 |
-
msgstr ""
|
115 |
-
|
116 |
-
#: ../user-role-editor.php:154
|
117 |
-
#, fuzzy
|
118 |
-
msgid "Default Role"
|
119 |
-
msgstr "Verwijder Rol"
|
120 |
-
|
121 |
-
#: ../user-role-editor.php:155
|
122 |
-
#, fuzzy
|
123 |
-
msgid "Set New Default Role"
|
124 |
-
msgstr "Stel in als Standaard Gebruikers Rol"
|
125 |
-
|
126 |
-
#: ../user-role-editor.php:157
|
127 |
-
msgid "Warning! Be careful - removing critical capability could crash some plugin or other custom code"
|
128 |
-
msgstr ""
|
129 |
-
|
130 |
-
#: ../user-role-editor.php:158
|
131 |
-
#, fuzzy
|
132 |
-
msgid " Capability name (ID) can not be empty!"
|
133 |
-
msgstr "Rol Naam mag niet leeg zijn!"
|
134 |
-
|
135 |
-
#: ../user-role-editor.php:159
|
136 |
-
#, fuzzy
|
137 |
-
msgid " Capability name (ID) must contain latin characters, digits, hyphens or underscore only!"
|
138 |
-
msgstr "Fout: Rol Naam mag enkel latijnse letters en cijfers bevatten!"
|
139 |
-
|
140 |
-
#: ../user-role-editor.php:284
|
141 |
-
msgid "Settings"
|
142 |
-
msgstr "Instellingen"
|
143 |
-
|
144 |
-
#: ../user-role-editor.php:294
|
145 |
-
#: ../includes/ure-options.php:209
|
146 |
-
msgid "Changelog"
|
147 |
-
msgstr "Changelog"
|
148 |
-
|
149 |
-
#: ../user-role-editor.php:342
|
150 |
-
msgid "Capabilities"
|
151 |
-
msgstr ""
|
152 |
-
|
153 |
-
#: ../user-role-editor.php:371
|
154 |
-
#: ../user-role-editor.php:407
|
155 |
-
#, fuzzy
|
156 |
-
msgid "Other Roles"
|
157 |
-
msgstr "Verwijder Rol"
|
158 |
-
|
159 |
-
#: ../user-role-editor.php:381
|
160 |
-
#, fuzzy
|
161 |
-
msgid "Edit"
|
162 |
-
msgstr "Redacteur"
|
163 |
-
|
164 |
-
#: ../includes/ure-lib.php:35
|
165 |
-
msgid "Error is occur. Please check the log file."
|
166 |
-
msgstr "Er heeft zich een fout voorgedaan. Gelieve het logbestand na te zien."
|
167 |
-
|
168 |
-
#: ../includes/ure-lib.php:364
|
169 |
-
msgid "Backup record is created for the current role capabilities"
|
170 |
-
msgstr "De reservekopie is aangemaakt voor de huidige rol mogelijkheden"
|
171 |
-
|
172 |
-
#: ../includes/ure-lib.php:481
|
173 |
-
#, fuzzy
|
174 |
-
msgid "Error: Role ID must contain latin characters, digits, hyphens or underscore only!"
|
175 |
-
msgstr "Fout: Rol Naam mag enkel latijnse letters en cijfers bevatten!"
|
176 |
-
|
177 |
-
#: ../includes/ure-lib.php:496
|
178 |
-
#, fuzzy, php-format
|
179 |
-
msgid "Role %s exists already"
|
180 |
-
msgstr "Rol %s is successvol aangemaakt"
|
181 |
-
|
182 |
-
#: ../includes/ure-lib.php:511
|
183 |
-
msgid "Error is encountered during new role create operation"
|
184 |
-
msgstr "Er heeft zich een fout voorgedaan tijdens het aanmaken van een nieuwe rol."
|
185 |
-
|
186 |
-
#: ../includes/ure-lib.php:513
|
187 |
-
#, php-format
|
188 |
-
msgid "Role %s is created successfully"
|
189 |
-
msgstr "Rol %s is successvol aangemaakt"
|
190 |
-
|
191 |
-
#: ../includes/ure-lib.php:597
|
192 |
-
msgid "Error encountered during role delete operation"
|
193 |
-
msgstr "Er heeft zich een fout voorgedaan tijdens het verwijderen van de rol"
|
194 |
-
|
195 |
-
#: ../includes/ure-lib.php:599
|
196 |
-
#, php-format
|
197 |
-
msgid "Role %s is deleted successfully"
|
198 |
-
msgstr "Rol %s is successvol verwijderd."
|
199 |
-
|
200 |
-
#: ../includes/ure-lib.php:619
|
201 |
-
msgid "Error encountered during default role change operation"
|
202 |
-
msgstr "Er heeft zich een fout voorgedaan tijdens het aanpassen van de standaard rol"
|
203 |
-
|
204 |
-
#: ../includes/ure-lib.php:625
|
205 |
-
#, php-format
|
206 |
-
msgid "Default role for new users is set to %s successfully"
|
207 |
-
msgstr "De standaard rol voor nieuwe gebruikers is successvol ingesteld op %s"
|
208 |
-
|
209 |
-
#: ../includes/ure-lib.php:652
|
210 |
-
msgid "Editor"
|
211 |
-
msgstr "Redacteur"
|
212 |
-
|
213 |
-
#: ../includes/ure-lib.php:653
|
214 |
-
msgid "Author"
|
215 |
-
msgstr "Auteur"
|
216 |
-
|
217 |
-
#: ../includes/ure-lib.php:654
|
218 |
-
msgid "Contributor"
|
219 |
-
msgstr "Schrijver"
|
220 |
-
|
221 |
-
#: ../includes/ure-lib.php:655
|
222 |
-
msgid "Subscriber"
|
223 |
-
msgstr "Abonnee"
|
224 |
-
|
225 |
-
#: ../includes/ure-lib.php:657
|
226 |
-
msgid "Switch themes"
|
227 |
-
msgstr "Wissel Thema"
|
228 |
-
|
229 |
-
#: ../includes/ure-lib.php:658
|
230 |
-
msgid "Edit themes"
|
231 |
-
msgstr "Bewerk Thema"
|
232 |
-
|
233 |
-
#: ../includes/ure-lib.php:659
|
234 |
-
msgid "Activate plugins"
|
235 |
-
msgstr "Activeer Plugin"
|
236 |
-
|
237 |
-
#: ../includes/ure-lib.php:660
|
238 |
-
msgid "Edit plugins"
|
239 |
-
msgstr "Bewerk Plugin"
|
240 |
-
|
241 |
-
#: ../includes/ure-lib.php:661
|
242 |
-
msgid "Edit users"
|
243 |
-
msgstr "Bewerk gebruiker"
|
244 |
-
|
245 |
-
#: ../includes/ure-lib.php:662
|
246 |
-
msgid "Edit files"
|
247 |
-
msgstr "Bewerk bestanden"
|
248 |
-
|
249 |
-
#: ../includes/ure-lib.php:663
|
250 |
-
msgid "Manage options"
|
251 |
-
msgstr "Beheer Opties"
|
252 |
-
|
253 |
-
#: ../includes/ure-lib.php:664
|
254 |
-
msgid "Moderate comments"
|
255 |
-
msgstr "Beheer commentaar"
|
256 |
-
|
257 |
-
#: ../includes/ure-lib.php:665
|
258 |
-
msgid "Manage categories"
|
259 |
-
msgstr "Beheer Categorien"
|
260 |
-
|
261 |
-
#: ../includes/ure-lib.php:666
|
262 |
-
msgid "Manage links"
|
263 |
-
msgstr "Beheer HyperLinks"
|
264 |
-
|
265 |
-
#: ../includes/ure-lib.php:667
|
266 |
-
msgid "Upload files"
|
267 |
-
msgstr "Upload Bestanden"
|
268 |
-
|
269 |
-
#: ../includes/ure-lib.php:668
|
270 |
-
msgid "Import"
|
271 |
-
msgstr "Importeer"
|
272 |
-
|
273 |
-
#: ../includes/ure-lib.php:669
|
274 |
-
msgid "Unfiltered html"
|
275 |
-
msgstr "Ongefilterde HTML"
|
276 |
-
|
277 |
-
#: ../includes/ure-lib.php:670
|
278 |
-
msgid "Edit posts"
|
279 |
-
msgstr "Bewerk posts"
|
280 |
-
|
281 |
-
#: ../includes/ure-lib.php:671
|
282 |
-
msgid "Edit others posts"
|
283 |
-
msgstr "Bewerk Andere Posts"
|
284 |
-
|
285 |
-
#: ../includes/ure-lib.php:672
|
286 |
-
msgid "Edit published posts"
|
287 |
-
msgstr "Bewerk gepubliceerde Posts"
|
288 |
-
|
289 |
-
#: ../includes/ure-lib.php:673
|
290 |
-
msgid "Publish posts"
|
291 |
-
msgstr "Publiceer Posts"
|
292 |
-
|
293 |
-
#: ../includes/ure-lib.php:674
|
294 |
-
msgid "Edit pages"
|
295 |
-
msgstr "Bewerk Pagina's"
|
296 |
-
|
297 |
-
#: ../includes/ure-lib.php:675
|
298 |
-
msgid "Read"
|
299 |
-
msgstr "Lees"
|
300 |
-
|
301 |
-
#: ../includes/ure-lib.php:676
|
302 |
-
msgid "Level 10"
|
303 |
-
msgstr "Niveau1"
|
304 |
-
|
305 |
-
#: ../includes/ure-lib.php:677
|
306 |
-
msgid "Level 9"
|
307 |
-
msgstr "Niveau 9"
|
308 |
-
|
309 |
-
#: ../includes/ure-lib.php:678
|
310 |
-
msgid "Level 8"
|
311 |
-
msgstr "Niveau 8"
|
312 |
-
|
313 |
-
#: ../includes/ure-lib.php:679
|
314 |
-
msgid "Level 7"
|
315 |
-
msgstr "Niveau 7"
|
316 |
-
|
317 |
-
#: ../includes/ure-lib.php:680
|
318 |
-
msgid "Level 6"
|
319 |
-
msgstr "Niveau 6"
|
320 |
-
|
321 |
-
#: ../includes/ure-lib.php:681
|
322 |
-
msgid "Level 5"
|
323 |
-
msgstr "Niveau 5"
|
324 |
-
|
325 |
-
#: ../includes/ure-lib.php:682
|
326 |
-
msgid "Level 4"
|
327 |
-
msgstr "Niveau 4"
|
328 |
-
|
329 |
-
#: ../includes/ure-lib.php:683
|
330 |
-
msgid "Level 3"
|
331 |
-
msgstr "Niveau 3"
|
332 |
-
|
333 |
-
#: ../includes/ure-lib.php:684
|
334 |
-
msgid "Level 2"
|
335 |
-
msgstr "Niveau 2"
|
336 |
-
|
337 |
-
#: ../includes/ure-lib.php:685
|
338 |
-
msgid "Level 1"
|
339 |
-
msgstr "Niveau 1"
|
340 |
-
|
341 |
-
#: ../includes/ure-lib.php:686
|
342 |
-
msgid "Level 0"
|
343 |
-
msgstr "Niveau 0"
|
344 |
-
|
345 |
-
#: ../includes/ure-lib.php:687
|
346 |
-
msgid "Edit others pages"
|
347 |
-
msgstr "Bewerk Andere Pagina's"
|
348 |
-
|
349 |
-
#: ../includes/ure-lib.php:688
|
350 |
-
msgid "Edit published pages"
|
351 |
-
msgstr "Bewerk Gepubliceerde Pagina's"
|
352 |
-
|
353 |
-
#: ../includes/ure-lib.php:689
|
354 |
-
msgid "Publish pages"
|
355 |
-
msgstr "Publiceer Pagina's"
|
356 |
-
|
357 |
-
#: ../includes/ure-lib.php:690
|
358 |
-
msgid "Delete pages"
|
359 |
-
msgstr "Verwijder Pagina's"
|
360 |
-
|
361 |
-
#: ../includes/ure-lib.php:691
|
362 |
-
msgid "Delete others pages"
|
363 |
-
msgstr "Verwijder Andere Pagina's"
|
364 |
-
|
365 |
-
#: ../includes/ure-lib.php:692
|
366 |
-
msgid "Delete published pages"
|
367 |
-
msgstr "Verwijder Gepubliceerde Pagina's"
|
368 |
-
|
369 |
-
#: ../includes/ure-lib.php:693
|
370 |
-
msgid "Delete posts"
|
371 |
-
msgstr "Verwijder Posts"
|
372 |
-
|
373 |
-
#: ../includes/ure-lib.php:694
|
374 |
-
msgid "Delete others posts"
|
375 |
-
msgstr "Verwijder Andere Posts"
|
376 |
-
|
377 |
-
#: ../includes/ure-lib.php:695
|
378 |
-
msgid "Delete published posts"
|
379 |
-
msgstr "Verwijder Gepubliceerde Posts"
|
380 |
-
|
381 |
-
#: ../includes/ure-lib.php:696
|
382 |
-
msgid "Delete private posts"
|
383 |
-
msgstr "Verwijder private Posts"
|
384 |
-
|
385 |
-
#: ../includes/ure-lib.php:697
|
386 |
-
msgid "Edit private posts"
|
387 |
-
msgstr "Bewerk Private Posts"
|
388 |
-
|
389 |
-
#: ../includes/ure-lib.php:698
|
390 |
-
msgid "Read private posts"
|
391 |
-
msgstr "Lees Private posts"
|
392 |
-
|
393 |
-
#: ../includes/ure-lib.php:699
|
394 |
-
msgid "Delete private pages"
|
395 |
-
msgstr "Verwijder Private Pagina's"
|
396 |
-
|
397 |
-
#: ../includes/ure-lib.php:700
|
398 |
-
msgid "Edit private pages"
|
399 |
-
msgstr "Bewerk Private Pagina's"
|
400 |
-
|
401 |
-
#: ../includes/ure-lib.php:701
|
402 |
-
msgid "Read private pages"
|
403 |
-
msgstr "Lees Private Pagina's"
|
404 |
-
|
405 |
-
#: ../includes/ure-lib.php:702
|
406 |
-
msgid "Delete users"
|
407 |
-
msgstr "Verwijder Gebruikers"
|
408 |
-
|
409 |
-
#: ../includes/ure-lib.php:703
|
410 |
-
msgid "Create users"
|
411 |
-
msgstr "Maak Gebruiker"
|
412 |
-
|
413 |
-
#: ../includes/ure-lib.php:704
|
414 |
-
msgid "Unfiltered upload"
|
415 |
-
msgstr "Ongefilterde Upload"
|
416 |
-
|
417 |
-
#: ../includes/ure-lib.php:705
|
418 |
-
msgid "Edit dashboard"
|
419 |
-
msgstr "Bewerk Dashboard"
|
420 |
-
|
421 |
-
#: ../includes/ure-lib.php:706
|
422 |
-
msgid "Update plugins"
|
423 |
-
msgstr "Vernieuw Plugins"
|
424 |
-
|
425 |
-
#: ../includes/ure-lib.php:707
|
426 |
-
msgid "Delete plugins"
|
427 |
-
msgstr "Verwijder Plugins"
|
428 |
-
|
429 |
-
#: ../includes/ure-lib.php:708
|
430 |
-
msgid "Install plugins"
|
431 |
-
msgstr "Installeer Plugins"
|
432 |
-
|
433 |
-
#: ../includes/ure-lib.php:709
|
434 |
-
msgid "Update themes"
|
435 |
-
msgstr "Vernieuw Thema's"
|
436 |
-
|
437 |
-
#: ../includes/ure-lib.php:710
|
438 |
-
msgid "Install themes"
|
439 |
-
msgstr "Installeer Thema's"
|
440 |
-
|
441 |
-
#: ../includes/ure-lib.php:711
|
442 |
-
msgid "Update core"
|
443 |
-
msgstr ""
|
444 |
-
|
445 |
-
#: ../includes/ure-lib.php:712
|
446 |
-
msgid "List users"
|
447 |
-
msgstr ""
|
448 |
-
|
449 |
-
#: ../includes/ure-lib.php:713
|
450 |
-
msgid "Remove users"
|
451 |
-
msgstr ""
|
452 |
-
|
453 |
-
#: ../includes/ure-lib.php:714
|
454 |
-
msgid "Add users"
|
455 |
-
msgstr ""
|
456 |
-
|
457 |
-
#: ../includes/ure-lib.php:715
|
458 |
-
msgid "Promote users"
|
459 |
-
msgstr ""
|
460 |
-
|
461 |
-
#: ../includes/ure-lib.php:716
|
462 |
-
msgid "Edit theme options"
|
463 |
-
msgstr ""
|
464 |
-
|
465 |
-
#: ../includes/ure-lib.php:717
|
466 |
-
msgid "Delete themes"
|
467 |
-
msgstr ""
|
468 |
-
|
469 |
-
#: ../includes/ure-lib.php:718
|
470 |
-
msgid "Export"
|
471 |
-
msgstr ""
|
472 |
-
|
473 |
-
#: ../includes/ure-lib.php:834
|
474 |
-
#, fuzzy
|
475 |
-
msgid "Error: Capability name must contain latin characters and digits only!"
|
476 |
-
msgstr "Fout: Rol Naam mag enkel latijnse letters en cijfers bevatten!"
|
477 |
-
|
478 |
-
#: ../includes/ure-lib.php:846
|
479 |
-
#, fuzzy, php-format
|
480 |
-
msgid "Capability %s is added successfully"
|
481 |
-
msgstr "Rol %s is successvol aangemaakt"
|
482 |
-
|
483 |
-
#: ../includes/ure-lib.php:848
|
484 |
-
#, php-format
|
485 |
-
msgid "Capability %s exists already"
|
486 |
-
msgstr ""
|
487 |
-
|
488 |
-
#: ../includes/ure-lib.php:997
|
489 |
-
#, php-format
|
490 |
-
msgid "Error! You do not have permission to delete this capability: %s!"
|
491 |
-
msgstr ""
|
492 |
-
|
493 |
-
#: ../includes/ure-lib.php:1016
|
494 |
-
#, php-format
|
495 |
-
msgid "Capability %s is removed successfully"
|
496 |
-
msgstr ""
|
497 |
-
|
498 |
-
#: ../includes/ure-lib.php:1083
|
499 |
-
msgid "Help"
|
500 |
-
msgstr ""
|
501 |
-
|
502 |
-
#: ../includes/ure-role-edit.php:29
|
503 |
-
msgid "None"
|
504 |
-
msgstr ""
|
505 |
-
|
506 |
-
#: ../includes/ure-role-edit.php:67
|
507 |
-
msgid "Select Role and change its capabilities list"
|
508 |
-
msgstr "Selecteer de rol en pas de mogelijkheden lijst aan"
|
509 |
-
|
510 |
-
#: ../includes/ure-role-edit.php:69
|
511 |
-
#: ../includes/ure-role-edit.php:166
|
512 |
-
msgid "Select Role:"
|
513 |
-
msgstr "Selecteer de Rol"
|
514 |
-
|
515 |
-
#: ../includes/ure-role-edit.php:79
|
516 |
-
#: ../includes/ure-user-edit.php:38
|
517 |
-
msgid "Show capabilities in human readable form"
|
518 |
-
msgstr "Toon de mogelijkheden in menselijke taal"
|
519 |
-
|
520 |
-
#: ../includes/ure-role-edit.php:88
|
521 |
-
#: ../includes/ure-user-edit.php:47
|
522 |
-
msgid "Show deprecated capabilities"
|
523 |
-
msgstr ""
|
524 |
-
|
525 |
-
#: ../includes/ure-role-edit.php:92
|
526 |
-
msgid "If checked, then apply action to ALL sites of this Network"
|
527 |
-
msgstr ""
|
528 |
-
|
529 |
-
#: ../includes/ure-role-edit.php:102
|
530 |
-
msgid "Apply to All Sites"
|
531 |
-
msgstr ""
|
532 |
-
|
533 |
-
#: ../includes/ure-role-edit.php:109
|
534 |
-
#: ../includes/ure-user-edit.php:88
|
535 |
-
msgid "Core capabilities:"
|
536 |
-
msgstr ""
|
537 |
-
|
538 |
-
#: ../includes/ure-role-edit.php:124
|
539 |
-
#: ../includes/ure-user-edit.php:103
|
540 |
-
msgid "Custom capabilities:"
|
541 |
-
msgstr ""
|
542 |
-
|
543 |
-
#: ../includes/ure-role-edit.php:155
|
544 |
-
msgid "Role name (ID): "
|
545 |
-
msgstr ""
|
546 |
-
|
547 |
-
#: ../includes/ure-role-edit.php:157
|
548 |
-
msgid "Display Role Name: "
|
549 |
-
msgstr ""
|
550 |
-
|
551 |
-
#: ../includes/ure-role-edit.php:159
|
552 |
-
msgid "Make copy of: "
|
553 |
-
msgstr ""
|
554 |
-
|
555 |
-
#: ../includes/ure-role-edit.php:181
|
556 |
-
#, fuzzy
|
557 |
-
msgid "Delete:"
|
558 |
-
msgstr "Verwijder"
|
559 |
-
|
560 |
-
#: ../includes/ure-role-edit.php:188
|
561 |
-
msgid "Capability name (ID): "
|
562 |
-
msgstr ""
|
563 |
-
|
564 |
-
#: ../includes/ure-user-edit.php:22
|
565 |
-
msgid "Change capabilities for user"
|
566 |
-
msgstr ""
|
567 |
-
|
568 |
-
#: ../includes/ure-user-edit.php:52
|
569 |
-
msgid "Primary Role:"
|
570 |
-
msgstr ""
|
571 |
-
|
572 |
-
#: ../includes/ure-user-edit.php:62
|
573 |
-
msgid "bbPress Role:"
|
574 |
-
msgstr ""
|
575 |
-
|
576 |
-
#: ../includes/ure-user-edit.php:72
|
577 |
-
#, fuzzy
|
578 |
-
msgid "Other Roles:"
|
579 |
-
msgstr "Verwijder Rol"
|
580 |
-
|
581 |
-
#: ../includes/ure-options.php:65
|
582 |
-
#, fuzzy
|
583 |
-
msgid "User Roles are restored to WordPress default values. "
|
584 |
-
msgstr "Rol mogelijkheden zijn hersteld vanaf de reservekopie."
|
585 |
-
|
586 |
-
#: ../includes/ure-options.php:136
|
587 |
-
msgid "Error: "
|
588 |
-
msgstr ""
|
589 |
-
|
590 |
-
#: ../includes/ure-options.php:136
|
591 |
-
#: ../includes/ure-options.php:156
|
592 |
-
msgid "Role"
|
593 |
-
msgstr "Rol"
|
594 |
-
|
595 |
-
#: ../includes/ure-options.php:136
|
596 |
-
msgid "does not exist"
|
597 |
-
msgstr ""
|
598 |
-
|
599 |
-
#: ../includes/ure-options.php:156
|
600 |
-
msgid "is updated successfully"
|
601 |
-
msgstr "is successvol gewijzigd."
|
602 |
-
|
603 |
-
#: ../includes/ure-options.php:161
|
604 |
-
#: ../includes/ure-options.php:174
|
605 |
-
#, fuzzy
|
606 |
-
msgid "Error occured during role update"
|
607 |
-
msgstr "Er heeft zich een fout voorgedaan tijdens het verwijderen van de rol"
|
608 |
-
|
609 |
-
#: ../includes/ure-options.php:169
|
610 |
-
msgid "User"
|
611 |
-
msgstr ""
|
612 |
-
|
613 |
-
#: ../includes/ure-options.php:169
|
614 |
-
#, fuzzy
|
615 |
-
msgid "capabilities are updated successfully"
|
616 |
-
msgstr "is successvol vernieuwd."
|
617 |
-
|
618 |
-
#: ../includes/ure-options.php:206
|
619 |
-
msgid "About this Plugin:"
|
620 |
-
msgstr "Over deze Plugin:"
|
621 |
-
|
622 |
-
#: ../includes/ure-options.php:207
|
623 |
-
msgid "Author's website"
|
624 |
-
msgstr "Site van de auteur"
|
625 |
-
|
626 |
-
#: ../includes/ure-options.php:208
|
627 |
-
msgid "Plugin webpage"
|
628 |
-
msgstr "Plugin Webpagina"
|
629 |
-
|
630 |
-
#: ../includes/ure-options.php:210
|
631 |
-
msgid "FAQ"
|
632 |
-
msgstr "FAQ"
|
633 |
-
|
634 |
-
#~ msgid "Database operation error. Check log file."
|
635 |
-
#~ msgstr "Database operatie fout. Gelieve het logbestand na te zien."
|
636 |
-
|
637 |
-
#~ msgid ""
|
638 |
-
#~ "No backup data. It is created automatically before the first role data "
|
639 |
-
#~ "update."
|
640 |
-
#~ msgstr ""
|
641 |
-
#~ "Er is geen reserve kopie. Een reserve kopie wordt automatisch aangemaakt "
|
642 |
-
#~ "voordat de eerste rol aangepast wordt."
|
643 |
-
|
644 |
-
#, fuzzy
|
645 |
-
#~ msgid " Name must contain latin characters and digits only!"
|
646 |
-
#~ msgstr "Rol Naam mag enkel latijnse letters en cijfers bevatten!"
|
647 |
-
|
648 |
-
#~ msgid "Change Default Role"
|
649 |
-
#~ msgstr "Pas de standaard rol aan"
|
650 |
-
|
651 |
-
#~ msgid "Role \"%s\" update: please confirm to continue"
|
652 |
-
#~ msgstr "Rol \"%s\" update: Gelieve te bevestigen om verder te gaan."
|
653 |
-
|
654 |
-
#~ msgid "Save Changes"
|
655 |
-
#~ msgstr "Wijzigingen opslaan"
|
656 |
-
|
657 |
-
#~ msgid "Cancel not saved changes"
|
658 |
-
#~ msgstr "Annuleer zonder op te slaan"
|
659 |
-
|
660 |
-
#~ msgid "Restore Roles from backup copy"
|
661 |
-
#~ msgstr "Herstel rollen vanaf herstelkopie."
|
662 |
-
|
663 |
-
#~ msgid "Add"
|
664 |
-
#~ msgstr "Voeg Toe"
|
665 |
-
|
666 |
-
#~ msgid "Add New User Role"
|
667 |
-
#~ msgstr "Voeg Nieuwe Gebruikersrol Toe"
|
668 |
-
|
669 |
-
#~ msgid "Default Role for New User"
|
670 |
-
#~ msgstr "Standaard rol voor nieuwe gebruiker"
|
671 |
-
|
672 |
-
#~ msgid "Change"
|
673 |
-
#~ msgstr "Pas Aan"
|
674 |
-
|
675 |
-
#~ msgid "Delete User Role"
|
676 |
-
#~ msgstr "Verwijder Gebruikersrol"
|
677 |
-
|
678 |
-
#, fuzzy
|
679 |
-
#~ msgid "User \"%s\" update: please confirm to continue"
|
680 |
-
#~ msgstr "Rol \"%s\" update: Gelieve te bevestigen om verder te gaan."
|
681 |
-
|
682 |
-
#, fuzzy
|
683 |
-
#~ msgid "Role:"
|
684 |
-
#~ msgstr "Rol"
|
685 |
-
|
686 |
-
#, fuzzy
|
687 |
-
#~ msgid "Greetings"
|
688 |
-
#~ msgstr "Begroetingen:"
|
689 |
-
|
690 |
-
#~ msgid "Greetings:"
|
691 |
-
#~ msgstr "Begroetingen:"
|
692 |
-
|
693 |
-
#~ msgid "It's me, the author"
|
694 |
-
#~ msgstr "Dit ben ik, de auteur."
|
695 |
-
|
696 |
-
#~ msgid "For the help with Belorussian translation"
|
697 |
-
#~ msgstr "voor hulp met de Belorussische vertaling"
|
698 |
-
|
699 |
-
#~ msgid "For the help with Chinese translation"
|
700 |
-
#~ msgstr "voor hulp met de Chinese vertaling"
|
701 |
-
|
702 |
-
#~ msgid "For the help with Dutch translation"
|
703 |
-
#~ msgstr "voor het vertalen naar het Nederlands en een nuttig idee"
|
704 |
-
|
705 |
-
#~ msgid "For the help with Finnish translation"
|
706 |
-
#~ msgstr "Voor hulp met de Finnish vertaling"
|
707 |
-
|
708 |
-
#~ msgid "For the help with French translation"
|
709 |
-
#~ msgstr "voor hulp met de Franse vertaling"
|
710 |
-
|
711 |
-
#~ msgid "For the help with German translation"
|
712 |
-
#~ msgstr "voor hulp met de Duitse vertaling"
|
713 |
-
|
714 |
-
#~ msgid "For the help with Hungarian translation"
|
715 |
-
#~ msgstr "voor hulp met de Honghaarse vertaling"
|
716 |
-
|
717 |
-
#~ msgid "For the help with Italian translation"
|
718 |
-
#~ msgstr "voor hulp met de Italiaanse vertaling"
|
719 |
-
|
720 |
-
#~ msgid "For the help with Japanese translation"
|
721 |
-
#~ msgstr "voor hulp met de Japanse vertaling"
|
722 |
-
|
723 |
-
#~ msgid "For the help with Polish translation"
|
724 |
-
#~ msgstr "voor hulp met de Poolse vertaling"
|
725 |
-
|
726 |
-
#~ msgid "For the help with Spanish translation"
|
727 |
-
#~ msgstr "Voor hulp met de Spaanse vertaling"
|
728 |
-
|
729 |
-
#, fuzzy
|
730 |
-
#~ msgid "For the updated Swedish translation"
|
731 |
-
#~ msgstr "Voor hulp met de Swedish vertaling"
|
732 |
-
|
733 |
-
#~ msgid "For the help with Swedish translation"
|
734 |
-
#~ msgstr "Voor hulp met de Swedish vertaling"
|
735 |
-
|
736 |
-
#~ msgid "For the help with Turkish translation"
|
737 |
-
#~ msgstr "voor hulp met de Turkish vertaling"
|
738 |
-
|
739 |
-
#~ msgid "For the code to hide administrator role"
|
740 |
-
#~ msgstr "voor de code om de administratie rol te verbergen"
|
741 |
-
|
742 |
-
#~ msgid ""
|
743 |
-
#~ "Do you wish to see your name with link to your site here? You are "
|
744 |
-
#~ "welcome! Your help with translation and new ideas are very appreciated."
|
745 |
-
#~ msgstr ""
|
746 |
-
#~ "Wenst u uw naam met link naar uw website hier te zien? Geen probleem! Uw "
|
747 |
-
#~ "hulp met het vertalen en nieuwe ideen wordt sterk geappricieerd."
|
748 |
-
|
749 |
-
#~ msgid "Roles list reading error is encountered"
|
750 |
-
#~ msgstr "Leesfout in de rollen lijst aangetroffen."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
lang/ure-pl_PL.mo
DELETED
Binary file
|
lang/ure-pl_PL.po
DELETED
@@ -1,795 +0,0 @@
|
|
1 |
-
msgid ""
|
2 |
-
msgstr ""
|
3 |
-
"Project-Id-Version: User Role Editor 2.0\n"
|
4 |
-
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2013-05-17 11:17+0700\n"
|
6 |
-
"PO-Revision-Date: \n"
|
7 |
-
"Last-Translator: Vladimir Garagulya <vladimir@shinephp.com>\n"
|
8 |
-
"Language-Team: Daywalker <dol_kryku@interia.pl>\n"
|
9 |
-
"Language: \n"
|
10 |
-
"MIME-Version: 1.0\n"
|
11 |
-
"Content-Type: text/plain; charset=UTF-8\n"
|
12 |
-
"Content-Transfer-Encoding: 8bit\n"
|
13 |
-
"X-Poedit-SourceCharset: utf-8\n"
|
14 |
-
"X-Poedit-KeywordsList: __;_e\n"
|
15 |
-
"X-Poedit-Basepath: .\n"
|
16 |
-
"X-Poedit-Language: Polish\n"
|
17 |
-
"X-Poedit-Country: POLAND\n"
|
18 |
-
"X-Poedit-SearchPath-0: ..\n"
|
19 |
-
|
20 |
-
#: ../user-role-editor.php:34
|
21 |
-
#, fuzzy, php-format
|
22 |
-
msgid "User Role Editor requires PHP %s or newer."
|
23 |
-
msgstr "Uprawnienia wymagają PHP 5.0 lub nowszej."
|
24 |
-
|
25 |
-
#: ../user-role-editor.php:35
|
26 |
-
#: ../user-role-editor.php:107
|
27 |
-
msgid "Please update!"
|
28 |
-
msgstr "Prosze zaaktualizować wtyczkę!"
|
29 |
-
|
30 |
-
#: ../user-role-editor.php:80
|
31 |
-
msgid "Only"
|
32 |
-
msgstr "Tylko"
|
33 |
-
|
34 |
-
#: ../user-role-editor.php:80
|
35 |
-
msgid "is allowed to use"
|
36 |
-
msgstr "jest uprawniony do"
|
37 |
-
|
38 |
-
#: ../user-role-editor.php:86
|
39 |
-
#: ../user-role-editor.php:312
|
40 |
-
#: ../user-role-editor.php:368
|
41 |
-
msgid "User Role Editor"
|
42 |
-
msgstr "Uprawnienia"
|
43 |
-
|
44 |
-
#: ../user-role-editor.php:106
|
45 |
-
#, fuzzy, php-format
|
46 |
-
msgid "User Role Editor requires WordPress %s or newer."
|
47 |
-
msgstr "Uprawnienia wymagają WordPress'a w wersji 3.0 bądz nowszej."
|
48 |
-
|
49 |
-
#: ../user-role-editor.php:139
|
50 |
-
msgid "Select All"
|
51 |
-
msgstr "Zaznacz wszystkie"
|
52 |
-
|
53 |
-
#: ../user-role-editor.php:140
|
54 |
-
msgid "Unselect All"
|
55 |
-
msgstr "Odznacz wszystkie"
|
56 |
-
|
57 |
-
#: ../user-role-editor.php:141
|
58 |
-
msgid "Reverse"
|
59 |
-
msgstr "Odwróć"
|
60 |
-
|
61 |
-
#: ../user-role-editor.php:142
|
62 |
-
msgid "Update"
|
63 |
-
msgstr "Aktualizuj"
|
64 |
-
|
65 |
-
#: ../user-role-editor.php:143
|
66 |
-
#, fuzzy
|
67 |
-
msgid "Please confirm permissions update"
|
68 |
-
msgstr "Potwierdź by kontynuować"
|
69 |
-
|
70 |
-
#: ../user-role-editor.php:144
|
71 |
-
msgid "Add New Role"
|
72 |
-
msgstr "Dodaj nową rolę"
|
73 |
-
|
74 |
-
#: ../user-role-editor.php:145
|
75 |
-
#, fuzzy
|
76 |
-
msgid " Role name (ID) can not be empty!"
|
77 |
-
msgstr "Nazwa nie może być pusta!"
|
78 |
-
|
79 |
-
#: ../user-role-editor.php:146
|
80 |
-
#, fuzzy
|
81 |
-
msgid " Role name (ID) must contain latin characters, digits, hyphens or underscore only!"
|
82 |
-
msgstr "Błąd: Nazwa roli może zawierać tylko litery i cyfry"
|
83 |
-
|
84 |
-
#: ../user-role-editor.php:147
|
85 |
-
#, fuzzy
|
86 |
-
msgid "Add Role"
|
87 |
-
msgstr "Dodaj nową rolę"
|
88 |
-
|
89 |
-
#: ../user-role-editor.php:148
|
90 |
-
msgid "Delete Role"
|
91 |
-
msgstr "Usuń rolę"
|
92 |
-
|
93 |
-
#: ../user-role-editor.php:149
|
94 |
-
msgid "Cancel"
|
95 |
-
msgstr "Anuluj"
|
96 |
-
|
97 |
-
#: ../user-role-editor.php:150
|
98 |
-
#, fuzzy
|
99 |
-
msgid "Add Capability"
|
100 |
-
msgstr "Dodaj nowe uprawnienie"
|
101 |
-
|
102 |
-
#: ../user-role-editor.php:151
|
103 |
-
#: ../user-role-editor.php:156
|
104 |
-
#, fuzzy
|
105 |
-
msgid "Delete Capability"
|
106 |
-
msgstr "Usuń uprawnienie"
|
107 |
-
|
108 |
-
#: ../user-role-editor.php:152
|
109 |
-
msgid "Reset"
|
110 |
-
msgstr "Resetuj"
|
111 |
-
|
112 |
-
#: ../user-role-editor.php:153
|
113 |
-
msgid "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?"
|
114 |
-
msgstr ""
|
115 |
-
|
116 |
-
#: ../user-role-editor.php:154
|
117 |
-
#, fuzzy
|
118 |
-
msgid "Default Role"
|
119 |
-
msgstr "Usuń rolę"
|
120 |
-
|
121 |
-
#: ../user-role-editor.php:155
|
122 |
-
#, fuzzy
|
123 |
-
msgid "Set New Default Role"
|
124 |
-
msgstr "Ustaw jako rolę domyślną"
|
125 |
-
|
126 |
-
#: ../user-role-editor.php:157
|
127 |
-
msgid "Warning! Be careful - removing critical capability could crash some plugin or other custom code"
|
128 |
-
msgstr "Uwaga! Bądź ostrożny - usunięcie krytycznego uprawnienia może spowodować, że jakieś wtyczki przestaną działać"
|
129 |
-
|
130 |
-
#: ../user-role-editor.php:158
|
131 |
-
#, fuzzy
|
132 |
-
msgid " Capability name (ID) can not be empty!"
|
133 |
-
msgstr "Nazwa nie może być pusta!"
|
134 |
-
|
135 |
-
#: ../user-role-editor.php:159
|
136 |
-
#, fuzzy
|
137 |
-
msgid " Capability name (ID) must contain latin characters, digits, hyphens or underscore only!"
|
138 |
-
msgstr "Błąd: Nazwa uprawnienia może zawierać tylko litery i cyfry!"
|
139 |
-
|
140 |
-
#: ../user-role-editor.php:284
|
141 |
-
msgid "Settings"
|
142 |
-
msgstr "Ustawnienia"
|
143 |
-
|
144 |
-
#: ../user-role-editor.php:294
|
145 |
-
#: ../includes/ure-options.php:209
|
146 |
-
msgid "Changelog"
|
147 |
-
msgstr "Lista zmian"
|
148 |
-
|
149 |
-
#: ../user-role-editor.php:342
|
150 |
-
msgid "Capabilities"
|
151 |
-
msgstr "Uprawnienia"
|
152 |
-
|
153 |
-
#: ../user-role-editor.php:371
|
154 |
-
#: ../user-role-editor.php:407
|
155 |
-
#, fuzzy
|
156 |
-
msgid "Other Roles"
|
157 |
-
msgstr "Usuń rolę"
|
158 |
-
|
159 |
-
#: ../user-role-editor.php:381
|
160 |
-
#, fuzzy
|
161 |
-
msgid "Edit"
|
162 |
-
msgstr "Redaktor"
|
163 |
-
|
164 |
-
#: ../includes/ure-lib.php:35
|
165 |
-
msgid "Error is occur. Please check the log file."
|
166 |
-
msgstr "Wystąpił błąd. Sprawdź logi."
|
167 |
-
|
168 |
-
#: ../includes/ure-lib.php:364
|
169 |
-
msgid "Backup record is created for the current role capabilities"
|
170 |
-
msgstr "Kopia zapasowa dla tej grupy została utworzona"
|
171 |
-
|
172 |
-
#: ../includes/ure-lib.php:481
|
173 |
-
#, fuzzy
|
174 |
-
msgid "Error: Role ID must contain latin characters, digits, hyphens or underscore only!"
|
175 |
-
msgstr "Błąd: Nazwa roli może zawierać tylko litery i cyfry"
|
176 |
-
|
177 |
-
#: ../includes/ure-lib.php:496
|
178 |
-
#, php-format
|
179 |
-
msgid "Role %s exists already"
|
180 |
-
msgstr "Rola %s już istnieje"
|
181 |
-
|
182 |
-
#: ../includes/ure-lib.php:511
|
183 |
-
msgid "Error is encountered during new role create operation"
|
184 |
-
msgstr "Wystąpił błąd podczas tworzenia nowej roli"
|
185 |
-
|
186 |
-
#: ../includes/ure-lib.php:513
|
187 |
-
#, php-format
|
188 |
-
msgid "Role %s is created successfully"
|
189 |
-
msgstr "Rola %s zastała utworzona "
|
190 |
-
|
191 |
-
#: ../includes/ure-lib.php:597
|
192 |
-
msgid "Error encountered during role delete operation"
|
193 |
-
msgstr "Wystąpił błąd podczas usuwania roli"
|
194 |
-
|
195 |
-
#: ../includes/ure-lib.php:599
|
196 |
-
#, php-format
|
197 |
-
msgid "Role %s is deleted successfully"
|
198 |
-
msgstr "Rola %s została usunięta"
|
199 |
-
|
200 |
-
#: ../includes/ure-lib.php:619
|
201 |
-
msgid "Error encountered during default role change operation"
|
202 |
-
msgstr "Bład podczas zmiany domyślnej roli"
|
203 |
-
|
204 |
-
#: ../includes/ure-lib.php:625
|
205 |
-
#, php-format
|
206 |
-
msgid "Default role for new users is set to %s successfully"
|
207 |
-
msgstr "Domyślna rola dla nowych użytkowników została zmieniona na %s"
|
208 |
-
|
209 |
-
#: ../includes/ure-lib.php:652
|
210 |
-
msgid "Editor"
|
211 |
-
msgstr "Redaktor"
|
212 |
-
|
213 |
-
#: ../includes/ure-lib.php:653
|
214 |
-
msgid "Author"
|
215 |
-
msgstr "Autor"
|
216 |
-
|
217 |
-
#: ../includes/ure-lib.php:654
|
218 |
-
msgid "Contributor"
|
219 |
-
msgstr "Współpracownik"
|
220 |
-
|
221 |
-
#: ../includes/ure-lib.php:655
|
222 |
-
msgid "Subscriber"
|
223 |
-
msgstr "Subskrybent"
|
224 |
-
|
225 |
-
#: ../includes/ure-lib.php:657
|
226 |
-
msgid "Switch themes"
|
227 |
-
msgstr "Zmienianie motywów"
|
228 |
-
|
229 |
-
#: ../includes/ure-lib.php:658
|
230 |
-
msgid "Edit themes"
|
231 |
-
msgstr "Edytowanie motywów"
|
232 |
-
|
233 |
-
#: ../includes/ure-lib.php:659
|
234 |
-
msgid "Activate plugins"
|
235 |
-
msgstr "Włączanie wtyczki"
|
236 |
-
|
237 |
-
#: ../includes/ure-lib.php:660
|
238 |
-
msgid "Edit plugins"
|
239 |
-
msgstr "Edytowanie wtyczek"
|
240 |
-
|
241 |
-
#: ../includes/ure-lib.php:661
|
242 |
-
msgid "Edit users"
|
243 |
-
msgstr "Edytowanie użytkowników"
|
244 |
-
|
245 |
-
#: ../includes/ure-lib.php:662
|
246 |
-
msgid "Edit files"
|
247 |
-
msgstr "Edytowanie plików"
|
248 |
-
|
249 |
-
#: ../includes/ure-lib.php:663
|
250 |
-
msgid "Manage options"
|
251 |
-
msgstr "Zarządzanie opcjami"
|
252 |
-
|
253 |
-
#: ../includes/ure-lib.php:664
|
254 |
-
msgid "Moderate comments"
|
255 |
-
msgstr "Edytowanie komentarzy"
|
256 |
-
|
257 |
-
#: ../includes/ure-lib.php:665
|
258 |
-
msgid "Manage categories"
|
259 |
-
msgstr "Zarządzanie kategoriami"
|
260 |
-
|
261 |
-
#: ../includes/ure-lib.php:666
|
262 |
-
msgid "Manage links"
|
263 |
-
msgstr "Zarządzanie linkami"
|
264 |
-
|
265 |
-
#: ../includes/ure-lib.php:667
|
266 |
-
msgid "Upload files"
|
267 |
-
msgstr "Wczytywanie plików"
|
268 |
-
|
269 |
-
#: ../includes/ure-lib.php:668
|
270 |
-
msgid "Import"
|
271 |
-
msgstr "Import"
|
272 |
-
|
273 |
-
#: ../includes/ure-lib.php:669
|
274 |
-
msgid "Unfiltered html"
|
275 |
-
msgstr "Niefiltrowany html"
|
276 |
-
|
277 |
-
#: ../includes/ure-lib.php:670
|
278 |
-
msgid "Edit posts"
|
279 |
-
msgstr "Edytowanie wpisów"
|
280 |
-
|
281 |
-
#: ../includes/ure-lib.php:671
|
282 |
-
msgid "Edit others posts"
|
283 |
-
msgstr "Edytowanie wpisów innych użytkowników"
|
284 |
-
|
285 |
-
#: ../includes/ure-lib.php:672
|
286 |
-
msgid "Edit published posts"
|
287 |
-
msgstr "Edytowanie opublikowanych wpisów"
|
288 |
-
|
289 |
-
#: ../includes/ure-lib.php:673
|
290 |
-
msgid "Publish posts"
|
291 |
-
msgstr "Publikowanie wpisów"
|
292 |
-
|
293 |
-
#: ../includes/ure-lib.php:674
|
294 |
-
msgid "Edit pages"
|
295 |
-
msgstr "Edytowanie stron"
|
296 |
-
|
297 |
-
#: ../includes/ure-lib.php:675
|
298 |
-
msgid "Read"
|
299 |
-
msgstr "Czytanie"
|
300 |
-
|
301 |
-
#: ../includes/ure-lib.php:676
|
302 |
-
msgid "Level 10"
|
303 |
-
msgstr "Poziom 10"
|
304 |
-
|
305 |
-
#: ../includes/ure-lib.php:677
|
306 |
-
msgid "Level 9"
|
307 |
-
msgstr "Poziom 9"
|
308 |
-
|
309 |
-
#: ../includes/ure-lib.php:678
|
310 |
-
msgid "Level 8"
|
311 |
-
msgstr "Poziom 8"
|
312 |
-
|
313 |
-
#: ../includes/ure-lib.php:679
|
314 |
-
msgid "Level 7"
|
315 |
-
msgstr "Poziom 7"
|
316 |
-
|
317 |
-
#: ../includes/ure-lib.php:680
|
318 |
-
msgid "Level 6"
|
319 |
-
msgstr "Poziom 6"
|
320 |
-
|
321 |
-
#: ../includes/ure-lib.php:681
|
322 |
-
msgid "Level 5"
|
323 |
-
msgstr "Poziom 5"
|
324 |
-
|
325 |
-
#: ../includes/ure-lib.php:682
|
326 |
-
msgid "Level 4"
|
327 |
-
msgstr "Poziom 4"
|
328 |
-
|
329 |
-
#: ../includes/ure-lib.php:683
|
330 |
-
msgid "Level 3"
|
331 |
-
msgstr "Poziom 3"
|
332 |
-
|
333 |
-
#: ../includes/ure-lib.php:684
|
334 |
-
msgid "Level 2"
|
335 |
-
msgstr "Poziom 2"
|
336 |
-
|
337 |
-
#: ../includes/ure-lib.php:685
|
338 |
-
msgid "Level 1"
|
339 |
-
msgstr "Poziom 1"
|
340 |
-
|
341 |
-
#: ../includes/ure-lib.php:686
|
342 |
-
msgid "Level 0"
|
343 |
-
msgstr "Poziom 0"
|
344 |
-
|
345 |
-
#: ../includes/ure-lib.php:687
|
346 |
-
msgid "Edit others pages"
|
347 |
-
msgstr "Edytowanie stron innych użytkowników"
|
348 |
-
|
349 |
-
#: ../includes/ure-lib.php:688
|
350 |
-
msgid "Edit published pages"
|
351 |
-
msgstr "Edytowanie opublikowanych stron"
|
352 |
-
|
353 |
-
#: ../includes/ure-lib.php:689
|
354 |
-
msgid "Publish pages"
|
355 |
-
msgstr "Publikowanie stron"
|
356 |
-
|
357 |
-
#: ../includes/ure-lib.php:690
|
358 |
-
msgid "Delete pages"
|
359 |
-
msgstr "Usuwanie stron"
|
360 |
-
|
361 |
-
#: ../includes/ure-lib.php:691
|
362 |
-
msgid "Delete others pages"
|
363 |
-
msgstr "Usuwanie stron innych użytkowników"
|
364 |
-
|
365 |
-
#: ../includes/ure-lib.php:692
|
366 |
-
msgid "Delete published pages"
|
367 |
-
msgstr "Usuwanie opublikowanych stron"
|
368 |
-
|
369 |
-
#: ../includes/ure-lib.php:693
|
370 |
-
msgid "Delete posts"
|
371 |
-
msgstr "Usuwanie wpisów"
|
372 |
-
|
373 |
-
#: ../includes/ure-lib.php:694
|
374 |
-
msgid "Delete others posts"
|
375 |
-
msgstr "Usuwanie wpisów innych użytkowników"
|
376 |
-
|
377 |
-
#: ../includes/ure-lib.php:695
|
378 |
-
msgid "Delete published posts"
|
379 |
-
msgstr "Usuwanie opublikowanych wpisów"
|
380 |
-
|
381 |
-
#: ../includes/ure-lib.php:696
|
382 |
-
msgid "Delete private posts"
|
383 |
-
msgstr "Usuwanie wpisów prywatnych"
|
384 |
-
|
385 |
-
#: ../includes/ure-lib.php:697
|
386 |
-
msgid "Edit private posts"
|
387 |
-
msgstr "Edytowanie wpisów prywatnych"
|
388 |
-
|
389 |
-
#: ../includes/ure-lib.php:698
|
390 |
-
msgid "Read private posts"
|
391 |
-
msgstr "Czytanie wpisów prywatnych"
|
392 |
-
|
393 |
-
#: ../includes/ure-lib.php:699
|
394 |
-
msgid "Delete private pages"
|
395 |
-
msgstr "Usuwanie stron prywatnych"
|
396 |
-
|
397 |
-
#: ../includes/ure-lib.php:700
|
398 |
-
msgid "Edit private pages"
|
399 |
-
msgstr "Edytowanie stron prywatnych"
|
400 |
-
|
401 |
-
#: ../includes/ure-lib.php:701
|
402 |
-
msgid "Read private pages"
|
403 |
-
msgstr "Czytanie stron prywatnych"
|
404 |
-
|
405 |
-
#: ../includes/ure-lib.php:702
|
406 |
-
msgid "Delete users"
|
407 |
-
msgstr "Usuwanie użytkowników"
|
408 |
-
|
409 |
-
#: ../includes/ure-lib.php:703
|
410 |
-
msgid "Create users"
|
411 |
-
msgstr "Tworzenie użytkowników"
|
412 |
-
|
413 |
-
#: ../includes/ure-lib.php:704
|
414 |
-
msgid "Unfiltered upload"
|
415 |
-
msgstr "Niefiltrowane wczytywanie plików"
|
416 |
-
|
417 |
-
#: ../includes/ure-lib.php:705
|
418 |
-
msgid "Edit dashboard"
|
419 |
-
msgstr "Edytowanie kokpitu"
|
420 |
-
|
421 |
-
#: ../includes/ure-lib.php:706
|
422 |
-
msgid "Update plugins"
|
423 |
-
msgstr "Aktualizowanie wtyczek"
|
424 |
-
|
425 |
-
#: ../includes/ure-lib.php:707
|
426 |
-
msgid "Delete plugins"
|
427 |
-
msgstr "Usuwanie wtyczek"
|
428 |
-
|
429 |
-
#: ../includes/ure-lib.php:708
|
430 |
-
msgid "Install plugins"
|
431 |
-
msgstr "Instalowanie wtyczek"
|
432 |
-
|
433 |
-
#: ../includes/ure-lib.php:709
|
434 |
-
msgid "Update themes"
|
435 |
-
msgstr "Aktualizowanie motywów"
|
436 |
-
|
437 |
-
#: ../includes/ure-lib.php:710
|
438 |
-
msgid "Install themes"
|
439 |
-
msgstr "Instalowanie motywów"
|
440 |
-
|
441 |
-
#: ../includes/ure-lib.php:711
|
442 |
-
msgid "Update core"
|
443 |
-
msgstr "Aktualizuj"
|
444 |
-
|
445 |
-
#: ../includes/ure-lib.php:712
|
446 |
-
msgid "List users"
|
447 |
-
msgstr "Wyświetlanie listy użytkowników"
|
448 |
-
|
449 |
-
#: ../includes/ure-lib.php:713
|
450 |
-
msgid "Remove users"
|
451 |
-
msgstr "Usuwanie użytkowników"
|
452 |
-
|
453 |
-
#: ../includes/ure-lib.php:714
|
454 |
-
msgid "Add users"
|
455 |
-
msgstr "Dodawanie użytkowników"
|
456 |
-
|
457 |
-
#: ../includes/ure-lib.php:715
|
458 |
-
msgid "Promote users"
|
459 |
-
msgstr "Promowanie użytkowników"
|
460 |
-
|
461 |
-
#: ../includes/ure-lib.php:716
|
462 |
-
msgid "Edit theme options"
|
463 |
-
msgstr "Edytowanie opcji motywu"
|
464 |
-
|
465 |
-
#: ../includes/ure-lib.php:717
|
466 |
-
msgid "Delete themes"
|
467 |
-
msgstr "Usuwanie motywów"
|
468 |
-
|
469 |
-
#: ../includes/ure-lib.php:718
|
470 |
-
msgid "Export"
|
471 |
-
msgstr "Eksport"
|
472 |
-
|
473 |
-
#: ../includes/ure-lib.php:834
|
474 |
-
msgid "Error: Capability name must contain latin characters and digits only!"
|
475 |
-
msgstr "Błąd: Nazwa uprawnienia może zawierać tylko litery i cyfry!"
|
476 |
-
|
477 |
-
#: ../includes/ure-lib.php:846
|
478 |
-
#, php-format
|
479 |
-
msgid "Capability %s is added successfully"
|
480 |
-
msgstr "Uprawnienie %s zastało utworzone"
|
481 |
-
|
482 |
-
#: ../includes/ure-lib.php:848
|
483 |
-
#, php-format
|
484 |
-
msgid "Capability %s exists already"
|
485 |
-
msgstr "Uprawnienie %s już istnieje"
|
486 |
-
|
487 |
-
#: ../includes/ure-lib.php:997
|
488 |
-
#, php-format
|
489 |
-
msgid "Error! You do not have permission to delete this capability: %s!"
|
490 |
-
msgstr "Błąd! Nie masz wystarczających uprawnień aby usąć to uprawnienie: %s!"
|
491 |
-
|
492 |
-
#: ../includes/ure-lib.php:1016
|
493 |
-
#, php-format
|
494 |
-
msgid "Capability %s is removed successfully"
|
495 |
-
msgstr "Uprawnieni %s zastało usunięte"
|
496 |
-
|
497 |
-
#: ../includes/ure-lib.php:1083
|
498 |
-
msgid "Help"
|
499 |
-
msgstr "Pomoc"
|
500 |
-
|
501 |
-
#: ../includes/ure-role-edit.php:29
|
502 |
-
msgid "None"
|
503 |
-
msgstr "Brak"
|
504 |
-
|
505 |
-
#: ../includes/ure-role-edit.php:67
|
506 |
-
msgid "Select Role and change its capabilities list"
|
507 |
-
msgstr "Wybierz rolę by edytować jej uprawnienia"
|
508 |
-
|
509 |
-
#: ../includes/ure-role-edit.php:69
|
510 |
-
#: ../includes/ure-role-edit.php:166
|
511 |
-
msgid "Select Role:"
|
512 |
-
msgstr "Wybierz rolę:"
|
513 |
-
|
514 |
-
#: ../includes/ure-role-edit.php:79
|
515 |
-
#: ../includes/ure-user-edit.php:38
|
516 |
-
msgid "Show capabilities in human readable form"
|
517 |
-
msgstr "Pokaż uprawnienia w łatwiej do przeczytania formie"
|
518 |
-
|
519 |
-
#: ../includes/ure-role-edit.php:88
|
520 |
-
#: ../includes/ure-user-edit.php:47
|
521 |
-
msgid "Show deprecated capabilities"
|
522 |
-
msgstr "Pokaż wycofywane uprawnienia"
|
523 |
-
|
524 |
-
#: ../includes/ure-role-edit.php:92
|
525 |
-
msgid "If checked, then apply action to ALL sites of this Network"
|
526 |
-
msgstr "Jeśli jest zaznaczone, wówczas to działanie obejmie wszystkie strony w tej sieci"
|
527 |
-
|
528 |
-
#: ../includes/ure-role-edit.php:102
|
529 |
-
msgid "Apply to All Sites"
|
530 |
-
msgstr "Zastosuj do wszystkich stron"
|
531 |
-
|
532 |
-
#: ../includes/ure-role-edit.php:109
|
533 |
-
#: ../includes/ure-user-edit.php:88
|
534 |
-
#, fuzzy
|
535 |
-
msgid "Core capabilities:"
|
536 |
-
msgstr "WordPress Uprawnienia:"
|
537 |
-
|
538 |
-
#: ../includes/ure-role-edit.php:124
|
539 |
-
#: ../includes/ure-user-edit.php:103
|
540 |
-
#, fuzzy
|
541 |
-
msgid "Custom capabilities:"
|
542 |
-
msgstr "Uprawnienia:"
|
543 |
-
|
544 |
-
#: ../includes/ure-role-edit.php:155
|
545 |
-
msgid "Role name (ID): "
|
546 |
-
msgstr ""
|
547 |
-
|
548 |
-
#: ../includes/ure-role-edit.php:157
|
549 |
-
msgid "Display Role Name: "
|
550 |
-
msgstr ""
|
551 |
-
|
552 |
-
#: ../includes/ure-role-edit.php:159
|
553 |
-
msgid "Make copy of: "
|
554 |
-
msgstr "Zrób kopię dla:"
|
555 |
-
|
556 |
-
#: ../includes/ure-role-edit.php:181
|
557 |
-
#, fuzzy
|
558 |
-
msgid "Delete:"
|
559 |
-
msgstr "Usuń"
|
560 |
-
|
561 |
-
#: ../includes/ure-role-edit.php:188
|
562 |
-
msgid "Capability name (ID): "
|
563 |
-
msgstr ""
|
564 |
-
|
565 |
-
#: ../includes/ure-user-edit.php:22
|
566 |
-
msgid "Change capabilities for user"
|
567 |
-
msgstr "Zmień uprawnienia użytkownika"
|
568 |
-
|
569 |
-
#: ../includes/ure-user-edit.php:52
|
570 |
-
msgid "Primary Role:"
|
571 |
-
msgstr ""
|
572 |
-
|
573 |
-
#: ../includes/ure-user-edit.php:62
|
574 |
-
msgid "bbPress Role:"
|
575 |
-
msgstr ""
|
576 |
-
|
577 |
-
#: ../includes/ure-user-edit.php:72
|
578 |
-
#, fuzzy
|
579 |
-
msgid "Other Roles:"
|
580 |
-
msgstr "Usuń rolę"
|
581 |
-
|
582 |
-
#: ../includes/ure-options.php:65
|
583 |
-
#, fuzzy
|
584 |
-
msgid "User Roles are restored to WordPress default values. "
|
585 |
-
msgstr "Uprawnienia zostały przywrócone z kopii zapasowej."
|
586 |
-
|
587 |
-
#: ../includes/ure-options.php:136
|
588 |
-
msgid "Error: "
|
589 |
-
msgstr "Błąd:"
|
590 |
-
|
591 |
-
#: ../includes/ure-options.php:136
|
592 |
-
#: ../includes/ure-options.php:156
|
593 |
-
msgid "Role"
|
594 |
-
msgstr "Rola"
|
595 |
-
|
596 |
-
#: ../includes/ure-options.php:136
|
597 |
-
msgid "does not exist"
|
598 |
-
msgstr "nie istnieje"
|
599 |
-
|
600 |
-
#: ../includes/ure-options.php:156
|
601 |
-
msgid "is updated successfully"
|
602 |
-
msgstr "została zaaktualizowana"
|
603 |
-
|
604 |
-
#: ../includes/ure-options.php:161
|
605 |
-
#: ../includes/ure-options.php:174
|
606 |
-
#, fuzzy
|
607 |
-
msgid "Error occured during role update"
|
608 |
-
msgstr "Wystąpił błąd podczas usuwania roli"
|
609 |
-
|
610 |
-
#: ../includes/ure-options.php:169
|
611 |
-
msgid "User"
|
612 |
-
msgstr "Użytkownik"
|
613 |
-
|
614 |
-
#: ../includes/ure-options.php:169
|
615 |
-
msgid "capabilities are updated successfully"
|
616 |
-
msgstr "uprawnienia zostały zaktualizowane"
|
617 |
-
|
618 |
-
#: ../includes/ure-options.php:206
|
619 |
-
msgid "About this Plugin:"
|
620 |
-
msgstr "O wtyczce:"
|
621 |
-
|
622 |
-
#: ../includes/ure-options.php:207
|
623 |
-
msgid "Author's website"
|
624 |
-
msgstr "Strona domowa autora"
|
625 |
-
|
626 |
-
#: ../includes/ure-options.php:208
|
627 |
-
msgid "Plugin webpage"
|
628 |
-
msgstr "Strona domowa wtyczki"
|
629 |
-
|
630 |
-
#: ../includes/ure-options.php:210
|
631 |
-
msgid "FAQ"
|
632 |
-
msgstr "FAQ"
|
633 |
-
|
634 |
-
#~ msgid "Database operation error. Check log file."
|
635 |
-
#~ msgstr "Błąd bazy danych. Sprawdź logi."
|
636 |
-
|
637 |
-
#~ msgid ""
|
638 |
-
#~ "No backup data. It is created automatically before the first role data "
|
639 |
-
#~ "update."
|
640 |
-
#~ msgstr ""
|
641 |
-
#~ "Brak kopii zapasowej. Zostanie ona utworzona automatycznie przed pierwszą "
|
642 |
-
#~ "uktualizacją uprawnień."
|
643 |
-
|
644 |
-
#~ msgid " Name must contain latin characters and digits only!"
|
645 |
-
#~ msgstr "Nazwa może zawierać tylko litery i cyfry!"
|
646 |
-
|
647 |
-
#~ msgid "Change Default Role"
|
648 |
-
#~ msgstr "Zmień domyślną rolę"
|
649 |
-
|
650 |
-
#~ msgid ""
|
651 |
-
#~ "Restore Roles from backup copy. Be careful, backup was created when you "
|
652 |
-
#~ "started URE 1st time. All changes you made after that will be lost"
|
653 |
-
#~ msgstr ""
|
654 |
-
#~ "Przywróć role z kopii zapasowej. Bądź ostrożny, kopia została utworzona "
|
655 |
-
#~ "kiedy pierwszy raz użyłeś Uprawnień. Wszystkie zmiany, które od tego "
|
656 |
-
#~ "czasu zrobiłeś zostały utracone."
|
657 |
-
|
658 |
-
#~ msgid "Role \"%s\" update: please confirm to continue"
|
659 |
-
#~ msgstr "Aktualizacja roli \"%s\": potwierdź by kontynuować"
|
660 |
-
|
661 |
-
#~ msgid "Save Changes"
|
662 |
-
#~ msgstr "Zapisz zmiany"
|
663 |
-
|
664 |
-
#~ msgid "Cancel not saved changes"
|
665 |
-
#~ msgstr "Anuluj niezpisane zmiany"
|
666 |
-
|
667 |
-
#~ msgid "Select All Capabilities"
|
668 |
-
#~ msgstr "Zaznacz wszystkie uprawnienia"
|
669 |
-
|
670 |
-
#~ msgid "Unselect All Capabilities"
|
671 |
-
#~ msgstr "Odznacz wszystkie uprawnienia"
|
672 |
-
|
673 |
-
#~ msgid "Turn checked capabilities off and vise versa"
|
674 |
-
#~ msgstr "Wyłącz zaznaczone uprawnienia i odwrotnie"
|
675 |
-
|
676 |
-
#~ msgid "Restore Roles from backup copy"
|
677 |
-
#~ msgstr "Przywróć role z kopii zapasowej"
|
678 |
-
|
679 |
-
#~ msgid "Name: "
|
680 |
-
#~ msgstr "Imię:"
|
681 |
-
|
682 |
-
#~ msgid "Add"
|
683 |
-
#~ msgstr "Dodaj"
|
684 |
-
|
685 |
-
#~ msgid "Add New User Role"
|
686 |
-
#~ msgstr "Dodaj nową rolę"
|
687 |
-
|
688 |
-
#~ msgid "Default Role for New User"
|
689 |
-
#~ msgstr "Domyślna rola nowych użytkowników"
|
690 |
-
|
691 |
-
#~ msgid "Change"
|
692 |
-
#~ msgstr "Zmień"
|
693 |
-
|
694 |
-
#~ msgid "Delete User Role"
|
695 |
-
#~ msgstr "Usuń rolę"
|
696 |
-
|
697 |
-
#~ msgid "Remove"
|
698 |
-
#~ msgstr "Usuń"
|
699 |
-
|
700 |
-
#~ msgid "Remove User Capability"
|
701 |
-
#~ msgstr "Usuń uprawnienie użytkownika"
|
702 |
-
|
703 |
-
#~ msgid "User \"%s\" update: please confirm to continue"
|
704 |
-
#~ msgstr "Aktualizacja użytkownika \"%s\": potwierdź by kontynuować"
|
705 |
-
|
706 |
-
#~ msgid "Role:"
|
707 |
-
#~ msgstr "Rola:"
|
708 |
-
|
709 |
-
#~ msgid "Add capabilities to this user:"
|
710 |
-
#~ msgstr "Dodaj uprawnienie dla tego użytkownika:"
|
711 |
-
|
712 |
-
#~ msgid "Greetings"
|
713 |
-
#~ msgstr "Pozdrowienia"
|
714 |
-
|
715 |
-
#~ msgid "Greetings:"
|
716 |
-
#~ msgstr "Podziękowania:"
|
717 |
-
|
718 |
-
#~ msgid "It's me, the author"
|
719 |
-
#~ msgstr "To ja, autor"
|
720 |
-
|
721 |
-
#~ msgid "For the help with Belorussian translation"
|
722 |
-
#~ msgstr "Za tłumacznie Białoruskie"
|
723 |
-
|
724 |
-
#~ msgid "For the help with Brasilian translation"
|
725 |
-
#~ msgstr "Za tłumacznie Brazylijskie"
|
726 |
-
|
727 |
-
#~ msgid "For the help with Brasilian Portuguese translation"
|
728 |
-
#~ msgstr "Za tłumacznie Brazylijskie"
|
729 |
-
|
730 |
-
#~ msgid "For the help with Chinese translation"
|
731 |
-
#~ msgstr "Za tłumacznie Chinese"
|
732 |
-
|
733 |
-
#~ msgid "For the help with Dutch translation"
|
734 |
-
#~ msgstr "Za tłumacznie Dutch"
|
735 |
-
|
736 |
-
#~ msgid "For the help with Finnish translation"
|
737 |
-
#~ msgstr "Za tłumacznie Finnish"
|
738 |
-
|
739 |
-
#~ msgid "For the help with French translation"
|
740 |
-
#~ msgstr "Za tłumacznie Francuskie"
|
741 |
-
|
742 |
-
#~ msgid "For the help with German translation"
|
743 |
-
#~ msgstr "Za tłumacznie Niemieckie"
|
744 |
-
|
745 |
-
#~ msgid "For the help with Hebrew translation"
|
746 |
-
#~ msgstr "Za tłumacznie Hebrajskie"
|
747 |
-
|
748 |
-
#~ msgid "For the help with Hindi translation"
|
749 |
-
#~ msgstr "Za tłumacznie Fińskie"
|
750 |
-
|
751 |
-
#~ msgid "For the help with Hungarian translation"
|
752 |
-
#~ msgstr "Za tłumacznie Hungarian"
|
753 |
-
|
754 |
-
#~ msgid "For the help with Italian translation"
|
755 |
-
#~ msgstr "Za tłumacznie włoski"
|
756 |
-
|
757 |
-
#~ msgid "For the help with Japanese translation"
|
758 |
-
#~ msgstr "Za tłumacznie Japońskie"
|
759 |
-
|
760 |
-
#~ msgid "For the help with Lithuanian translation"
|
761 |
-
#~ msgstr "Za tłumacznie Litewskie"
|
762 |
-
|
763 |
-
#~ msgid "For the help with Persian translation"
|
764 |
-
#~ msgstr "Za tłumaczenie perskie"
|
765 |
-
|
766 |
-
#~ msgid "For the help with Polish translation"
|
767 |
-
#~ msgstr "Za tłumacznie Polski"
|
768 |
-
|
769 |
-
#~ msgid "For the help with Spanish translation"
|
770 |
-
#~ msgstr "Za tłumacznie Hiszpańskie"
|
771 |
-
|
772 |
-
#~ msgid "For the updated Swedish translation"
|
773 |
-
#~ msgstr "Za tłumacznie Szwedzkie"
|
774 |
-
|
775 |
-
#~ msgid "For the help with Swedish translation"
|
776 |
-
#~ msgstr "Za tłumacznie Swedish"
|
777 |
-
|
778 |
-
#~ msgid "For the help with Turkish translation"
|
779 |
-
#~ msgstr "Za tłumaczenie tureckie"
|
780 |
-
|
781 |
-
#~ msgid "For the code to hide administrator role"
|
782 |
-
#~ msgstr "Za zakodowanie \"ukrycia grupy administracji\""
|
783 |
-
|
784 |
-
#~ msgid "For the code enhancement suggestion"
|
785 |
-
#~ msgstr "Sugestie dotyczące modyfikacji kodu"
|
786 |
-
|
787 |
-
#~ msgid ""
|
788 |
-
#~ "Do you wish to see your name with link to your site here? You are "
|
789 |
-
#~ "welcome! Your help with translation and new ideas are very appreciated."
|
790 |
-
#~ msgstr ""
|
791 |
-
#~ "Chcesz by twoje imie się tutaj znalazło? Zapraszamy! Możesz pomóc nam "
|
792 |
-
#~ "tworzyć tłumaczyc i ulepszać wtyczkę!"
|
793 |
-
|
794 |
-
#~ msgid "Roles list reading error is encountered"
|
795 |
-
#~ msgstr "Błąd wczytywania grup"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
lang/ure-pt_BR.mo
DELETED
Binary file
|
lang/ure-pt_BR.po
DELETED
@@ -1,813 +0,0 @@
|
|
1 |
-
msgid ""
|
2 |
-
msgstr ""
|
3 |
-
"Project-Id-Version: User Role Editor 2.0\n"
|
4 |
-
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2013-05-17 11:17+0700\n"
|
6 |
-
"PO-Revision-Date: 2013-05-17 11:17+0700\n"
|
7 |
-
"Last-Translator: Vladimir Garagulya <vladimir@shinephp.com>\n"
|
8 |
-
"Language-Team: Onbiz Team <contato@onbiz.com.br>\n"
|
9 |
-
"Language: pt_BR\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\n"
|
15 |
-
"X-Poedit-Basepath: .\n"
|
16 |
-
"X-Generator: Poedit 1.5.5\n"
|
17 |
-
"X-Poedit-SearchPath-0: ..\n"
|
18 |
-
|
19 |
-
#: ../user-role-editor.php:34
|
20 |
-
#, php-format
|
21 |
-
msgid "User Role Editor requires PHP %s or newer."
|
22 |
-
msgstr "O User Role Editor requer PHP %s ou superior."
|
23 |
-
|
24 |
-
#: ../user-role-editor.php:35
|
25 |
-
#: ../user-role-editor.php:107
|
26 |
-
msgid "Please update!"
|
27 |
-
msgstr "Por favor, atualize!"
|
28 |
-
|
29 |
-
#: ../user-role-editor.php:80
|
30 |
-
msgid "Only"
|
31 |
-
msgstr "Apenas"
|
32 |
-
|
33 |
-
#: ../user-role-editor.php:80
|
34 |
-
msgid "is allowed to use"
|
35 |
-
msgstr "pode usar"
|
36 |
-
|
37 |
-
#: ../user-role-editor.php:86
|
38 |
-
#: ../user-role-editor.php:312
|
39 |
-
#: ../user-role-editor.php:368
|
40 |
-
msgid "User Role Editor"
|
41 |
-
msgstr "User Role Editor"
|
42 |
-
|
43 |
-
# Role (Função ou Papel)
|
44 |
-
# Capability (Capacidade ou Permissão)
|
45 |
-
#: ../user-role-editor.php:106
|
46 |
-
#, php-format
|
47 |
-
msgid "User Role Editor requires WordPress %s or newer."
|
48 |
-
msgstr "O \"User Role Editor\" requer WordPress %s ou superior."
|
49 |
-
|
50 |
-
#: ../user-role-editor.php:139
|
51 |
-
msgid "Select All"
|
52 |
-
msgstr "Selecionar tudo"
|
53 |
-
|
54 |
-
#: ../user-role-editor.php:140
|
55 |
-
msgid "Unselect All"
|
56 |
-
msgstr "Desfazer a seleção de todos"
|
57 |
-
|
58 |
-
#: ../user-role-editor.php:141
|
59 |
-
msgid "Reverse"
|
60 |
-
msgstr "Reverter"
|
61 |
-
|
62 |
-
#: ../user-role-editor.php:142
|
63 |
-
msgid "Update"
|
64 |
-
msgstr "Atualizar"
|
65 |
-
|
66 |
-
#: ../user-role-editor.php:143
|
67 |
-
#, fuzzy
|
68 |
-
msgid "Please confirm permissions update"
|
69 |
-
msgstr "Por favor, confirme para continuar"
|
70 |
-
|
71 |
-
#: ../user-role-editor.php:144
|
72 |
-
msgid "Add New Role"
|
73 |
-
msgstr "Adicionar nova regra"
|
74 |
-
|
75 |
-
#: ../user-role-editor.php:145
|
76 |
-
#, fuzzy
|
77 |
-
msgid " Role name (ID) can not be empty!"
|
78 |
-
msgstr "O Nome não pode estar vazio!"
|
79 |
-
|
80 |
-
#: ../user-role-editor.php:146
|
81 |
-
#, fuzzy
|
82 |
-
msgid " Role name (ID) must contain latin characters, digits, hyphens or underscore only!"
|
83 |
-
msgstr "Erro: o nome da regra deve conter apenas números e letras!"
|
84 |
-
|
85 |
-
#: ../user-role-editor.php:147
|
86 |
-
#, fuzzy
|
87 |
-
msgid "Add Role"
|
88 |
-
msgstr "Adicionar nova regra"
|
89 |
-
|
90 |
-
#: ../user-role-editor.php:148
|
91 |
-
msgid "Delete Role"
|
92 |
-
msgstr "Excluir regra"
|
93 |
-
|
94 |
-
#: ../user-role-editor.php:149
|
95 |
-
msgid "Cancel"
|
96 |
-
msgstr "Cancelar"
|
97 |
-
|
98 |
-
#: ../user-role-editor.php:150
|
99 |
-
#, fuzzy
|
100 |
-
msgid "Add Capability"
|
101 |
-
msgstr "Adicionar nova capacidade"
|
102 |
-
|
103 |
-
#: ../user-role-editor.php:151
|
104 |
-
#: ../user-role-editor.php:156
|
105 |
-
#, fuzzy
|
106 |
-
msgid "Delete Capability"
|
107 |
-
msgstr "Remover capacidade"
|
108 |
-
|
109 |
-
#: ../user-role-editor.php:152
|
110 |
-
msgid "Reset"
|
111 |
-
msgstr "Limpar"
|
112 |
-
|
113 |
-
#: ../user-role-editor.php:153
|
114 |
-
#, fuzzy
|
115 |
-
msgid "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?"
|
116 |
-
msgstr "Resetar as regras para os padrões do WordPress. Seja cuidadoso, todas as alterações feitas por você ou plugins serão perdidas. Alguns plugins, ex. S2Member, precisarão ser reativadas"
|
117 |
-
|
118 |
-
#: ../user-role-editor.php:154
|
119 |
-
#, fuzzy
|
120 |
-
msgid "Default Role"
|
121 |
-
msgstr "Excluir regra"
|
122 |
-
|
123 |
-
#: ../user-role-editor.php:155
|
124 |
-
#, fuzzy
|
125 |
-
msgid "Set New Default Role"
|
126 |
-
msgstr "Usar como regra padrão de usuário"
|
127 |
-
|
128 |
-
#: ../user-role-editor.php:157
|
129 |
-
msgid "Warning! Be careful - removing critical capability could crash some plugin or other custom code"
|
130 |
-
msgstr "Aviso! Tenha cuidado - remover capacidades críticas pode afetar algum plugin ou outro código personalizado"
|
131 |
-
|
132 |
-
#: ../user-role-editor.php:158
|
133 |
-
#, fuzzy
|
134 |
-
msgid " Capability name (ID) can not be empty!"
|
135 |
-
msgstr "O Nome não pode estar vazio!"
|
136 |
-
|
137 |
-
#: ../user-role-editor.php:159
|
138 |
-
#, fuzzy
|
139 |
-
msgid " Capability name (ID) must contain latin characters, digits, hyphens or underscore only!"
|
140 |
-
msgstr "Erro: O Nome da capacidade deve conter letras e números apenas!"
|
141 |
-
|
142 |
-
#: ../user-role-editor.php:284
|
143 |
-
msgid "Settings"
|
144 |
-
msgstr "Configurações"
|
145 |
-
|
146 |
-
#: ../user-role-editor.php:294
|
147 |
-
#: ../includes/ure-options.php:209
|
148 |
-
msgid "Changelog"
|
149 |
-
msgstr "Atualizações"
|
150 |
-
|
151 |
-
#: ../user-role-editor.php:342
|
152 |
-
msgid "Capabilities"
|
153 |
-
msgstr "Capacidades"
|
154 |
-
|
155 |
-
#: ../user-role-editor.php:371
|
156 |
-
#: ../user-role-editor.php:407
|
157 |
-
msgid "Other Roles"
|
158 |
-
msgstr "Outras regras"
|
159 |
-
|
160 |
-
#: ../user-role-editor.php:381
|
161 |
-
msgid "Edit"
|
162 |
-
msgstr "Editar"
|
163 |
-
|
164 |
-
#: ../includes/ure-lib.php:35
|
165 |
-
msgid "Error is occur. Please check the log file."
|
166 |
-
msgstr "Ocorreu um erro. Por favor, verifique o arquivo de log."
|
167 |
-
|
168 |
-
#: ../includes/ure-lib.php:364
|
169 |
-
msgid "Backup record is created for the current role capabilities"
|
170 |
-
msgstr "Cópia de segurança criada para as capacidades de regras atuais"
|
171 |
-
|
172 |
-
#: ../includes/ure-lib.php:481
|
173 |
-
#, fuzzy
|
174 |
-
msgid "Error: Role ID must contain latin characters, digits, hyphens or underscore only!"
|
175 |
-
msgstr "Erro: o nome da regra deve conter apenas números e letras!"
|
176 |
-
|
177 |
-
#: ../includes/ure-lib.php:496
|
178 |
-
#, php-format
|
179 |
-
msgid "Role %s exists already"
|
180 |
-
msgstr "Função %s já existe"
|
181 |
-
|
182 |
-
#: ../includes/ure-lib.php:511
|
183 |
-
msgid "Error is encountered during new role create operation"
|
184 |
-
msgstr "Um erro foi encontrado durante a criação de uma nova regra"
|
185 |
-
|
186 |
-
#: ../includes/ure-lib.php:513
|
187 |
-
#, php-format
|
188 |
-
msgid "Role %s is created successfully"
|
189 |
-
msgstr "A regra %s foi criada com sucesso"
|
190 |
-
|
191 |
-
#: ../includes/ure-lib.php:597
|
192 |
-
msgid "Error encountered during role delete operation"
|
193 |
-
msgstr "Erro encontrado durante a remoção da regra"
|
194 |
-
|
195 |
-
#: ../includes/ure-lib.php:599
|
196 |
-
#, php-format
|
197 |
-
msgid "Role %s is deleted successfully"
|
198 |
-
msgstr "A regra %s foi excluída com sucesso"
|
199 |
-
|
200 |
-
#: ../includes/ure-lib.php:619
|
201 |
-
msgid "Error encountered during default role change operation"
|
202 |
-
msgstr "Erro encontrado durante a alteração de uma regra padrão"
|
203 |
-
|
204 |
-
#: ../includes/ure-lib.php:625
|
205 |
-
#, php-format
|
206 |
-
msgid "Default role for new users is set to %s successfully"
|
207 |
-
msgstr "A regra padrão para novos usuários foi ajustada para %s com sucesso"
|
208 |
-
|
209 |
-
#: ../includes/ure-lib.php:652
|
210 |
-
msgid "Editor"
|
211 |
-
msgstr "Editor"
|
212 |
-
|
213 |
-
#: ../includes/ure-lib.php:653
|
214 |
-
msgid "Author"
|
215 |
-
msgstr "Autor"
|
216 |
-
|
217 |
-
#: ../includes/ure-lib.php:654
|
218 |
-
msgid "Contributor"
|
219 |
-
msgstr "Colaborador"
|
220 |
-
|
221 |
-
#: ../includes/ure-lib.php:655
|
222 |
-
msgid "Subscriber"
|
223 |
-
msgstr "Assinante"
|
224 |
-
|
225 |
-
#: ../includes/ure-lib.php:657
|
226 |
-
msgid "Switch themes"
|
227 |
-
msgstr "Trocar temas"
|
228 |
-
|
229 |
-
#: ../includes/ure-lib.php:658
|
230 |
-
msgid "Edit themes"
|
231 |
-
msgstr "Editar temas"
|
232 |
-
|
233 |
-
#: ../includes/ure-lib.php:659
|
234 |
-
msgid "Activate plugins"
|
235 |
-
msgstr "Ativar plugins"
|
236 |
-
|
237 |
-
#: ../includes/ure-lib.php:660
|
238 |
-
msgid "Edit plugins"
|
239 |
-
msgstr "Editar plugins"
|
240 |
-
|
241 |
-
#: ../includes/ure-lib.php:661
|
242 |
-
msgid "Edit users"
|
243 |
-
msgstr "Editar usuários"
|
244 |
-
|
245 |
-
#: ../includes/ure-lib.php:662
|
246 |
-
msgid "Edit files"
|
247 |
-
msgstr "Editar arquivos"
|
248 |
-
|
249 |
-
#: ../includes/ure-lib.php:663
|
250 |
-
msgid "Manage options"
|
251 |
-
msgstr "Gerenciar opções"
|
252 |
-
|
253 |
-
#: ../includes/ure-lib.php:664
|
254 |
-
msgid "Moderate comments"
|
255 |
-
msgstr "Moderar comentários"
|
256 |
-
|
257 |
-
#: ../includes/ure-lib.php:665
|
258 |
-
msgid "Manage categories"
|
259 |
-
msgstr "Gerenciar categorias"
|
260 |
-
|
261 |
-
#: ../includes/ure-lib.php:666
|
262 |
-
msgid "Manage links"
|
263 |
-
msgstr "Gerenciar links"
|
264 |
-
|
265 |
-
#: ../includes/ure-lib.php:667
|
266 |
-
msgid "Upload files"
|
267 |
-
msgstr "Enviar arquivos"
|
268 |
-
|
269 |
-
#: ../includes/ure-lib.php:668
|
270 |
-
msgid "Import"
|
271 |
-
msgstr "Importar"
|
272 |
-
|
273 |
-
#: ../includes/ure-lib.php:669
|
274 |
-
msgid "Unfiltered html"
|
275 |
-
msgstr "HTML não filtrado"
|
276 |
-
|
277 |
-
#: ../includes/ure-lib.php:670
|
278 |
-
msgid "Edit posts"
|
279 |
-
msgstr "Editar posts"
|
280 |
-
|
281 |
-
#: ../includes/ure-lib.php:671
|
282 |
-
msgid "Edit others posts"
|
283 |
-
msgstr "Editar posts dos outros"
|
284 |
-
|
285 |
-
#: ../includes/ure-lib.php:672
|
286 |
-
msgid "Edit published posts"
|
287 |
-
msgstr "Editar posts publicados"
|
288 |
-
|
289 |
-
#: ../includes/ure-lib.php:673
|
290 |
-
msgid "Publish posts"
|
291 |
-
msgstr "Publicar posts"
|
292 |
-
|
293 |
-
#: ../includes/ure-lib.php:674
|
294 |
-
msgid "Edit pages"
|
295 |
-
msgstr "Editar páginas"
|
296 |
-
|
297 |
-
#: ../includes/ure-lib.php:675
|
298 |
-
msgid "Read"
|
299 |
-
msgstr "Ler"
|
300 |
-
|
301 |
-
#: ../includes/ure-lib.php:676
|
302 |
-
msgid "Level 10"
|
303 |
-
msgstr "Nível 10"
|
304 |
-
|
305 |
-
#: ../includes/ure-lib.php:677
|
306 |
-
msgid "Level 9"
|
307 |
-
msgstr "Nível 9"
|
308 |
-
|
309 |
-
#: ../includes/ure-lib.php:678
|
310 |
-
msgid "Level 8"
|
311 |
-
msgstr "Nível 8"
|
312 |
-
|
313 |
-
#: ../includes/ure-lib.php:679
|
314 |
-
msgid "Level 7"
|
315 |
-
msgstr "Nível 7"
|
316 |
-
|
317 |
-
#: ../includes/ure-lib.php:680
|
318 |
-
msgid "Level 6"
|
319 |
-
msgstr "Nível 6"
|
320 |
-
|
321 |
-
#: ../includes/ure-lib.php:681
|
322 |
-
msgid "Level 5"
|
323 |
-
msgstr "Nível 5"
|
324 |
-
|
325 |
-
#: ../includes/ure-lib.php:682
|
326 |
-
msgid "Level 4"
|
327 |
-
msgstr "Nível 4"
|
328 |
-
|
329 |
-
#: ../includes/ure-lib.php:683
|
330 |
-
msgid "Level 3"
|
331 |
-
msgstr "Nível 3"
|
332 |
-
|
333 |
-
#: ../includes/ure-lib.php:684
|
334 |
-
msgid "Level 2"
|
335 |
-
msgstr "Nível 2"
|
336 |
-
|
337 |
-
#: ../includes/ure-lib.php:685
|
338 |
-
msgid "Level 1"
|
339 |
-
msgstr "Nível 1"
|
340 |
-
|
341 |
-
#: ../includes/ure-lib.php:686
|
342 |
-
msgid "Level 0"
|
343 |
-
msgstr "Nível 0"
|
344 |
-
|
345 |
-
#: ../includes/ure-lib.php:687
|
346 |
-
msgid "Edit others pages"
|
347 |
-
msgstr "Editar páginas dos outros"
|
348 |
-
|
349 |
-
#: ../includes/ure-lib.php:688
|
350 |
-
msgid "Edit published pages"
|
351 |
-
msgstr "Editar páginas publicadas"
|
352 |
-
|
353 |
-
#: ../includes/ure-lib.php:689
|
354 |
-
msgid "Publish pages"
|
355 |
-
msgstr "Publicar páginas"
|
356 |
-
|
357 |
-
#: ../includes/ure-lib.php:690
|
358 |
-
msgid "Delete pages"
|
359 |
-
msgstr "Excluir páginas"
|
360 |
-
|
361 |
-
#: ../includes/ure-lib.php:691
|
362 |
-
msgid "Delete others pages"
|
363 |
-
msgstr "Excluir páginas dos outros"
|
364 |
-
|
365 |
-
#: ../includes/ure-lib.php:692
|
366 |
-
msgid "Delete published pages"
|
367 |
-
msgstr "Excluir páginas publicadas"
|
368 |
-
|
369 |
-
#: ../includes/ure-lib.php:693
|
370 |
-
msgid "Delete posts"
|
371 |
-
msgstr "Excluir posts"
|
372 |
-
|
373 |
-
#: ../includes/ure-lib.php:694
|
374 |
-
msgid "Delete others posts"
|
375 |
-
msgstr "Excluir posts dos outros"
|
376 |
-
|
377 |
-
#: ../includes/ure-lib.php:695
|
378 |
-
msgid "Delete published posts"
|
379 |
-
msgstr "Excluir posts publicados"
|
380 |
-
|
381 |
-
#: ../includes/ure-lib.php:696
|
382 |
-
msgid "Delete private posts"
|
383 |
-
msgstr "Excluir posts privados"
|
384 |
-
|
385 |
-
#: ../includes/ure-lib.php:697
|
386 |
-
msgid "Edit private posts"
|
387 |
-
msgstr "Editar posts privados"
|
388 |
-
|
389 |
-
#: ../includes/ure-lib.php:698
|
390 |
-
msgid "Read private posts"
|
391 |
-
msgstr "Ler posts privados"
|
392 |
-
|
393 |
-
#: ../includes/ure-lib.php:699
|
394 |
-
msgid "Delete private pages"
|
395 |
-
msgstr "Excluir páginas privadas"
|
396 |
-
|
397 |
-
#: ../includes/ure-lib.php:700
|
398 |
-
msgid "Edit private pages"
|
399 |
-
msgstr "Editar páginas privadas"
|
400 |
-
|
401 |
-
#: ../includes/ure-lib.php:701
|
402 |
-
msgid "Read private pages"
|
403 |
-
msgstr "Ler páginas privadas"
|
404 |
-
|
405 |
-
#: ../includes/ure-lib.php:702
|
406 |
-
msgid "Delete users"
|
407 |
-
msgstr "Excluir usuários"
|
408 |
-
|
409 |
-
#: ../includes/ure-lib.php:703
|
410 |
-
msgid "Create users"
|
411 |
-
msgstr "Criar usuários"
|
412 |
-
|
413 |
-
#: ../includes/ure-lib.php:704
|
414 |
-
msgid "Unfiltered upload"
|
415 |
-
msgstr "Envio não filtrado"
|
416 |
-
|
417 |
-
#: ../includes/ure-lib.php:705
|
418 |
-
msgid "Edit dashboard"
|
419 |
-
msgstr "Editar Painel"
|
420 |
-
|
421 |
-
#: ../includes/ure-lib.php:706
|
422 |
-
msgid "Update plugins"
|
423 |
-
msgstr "Atualizar plugins"
|
424 |
-
|
425 |
-
#: ../includes/ure-lib.php:707
|
426 |
-
msgid "Delete plugins"
|
427 |
-
msgstr "Excluir plugins"
|
428 |
-
|
429 |
-
#: ../includes/ure-lib.php:708
|
430 |
-
msgid "Install plugins"
|
431 |
-
msgstr "Instalar plugins"
|
432 |
-
|
433 |
-
#: ../includes/ure-lib.php:709
|
434 |
-
msgid "Update themes"
|
435 |
-
msgstr "Atualizar temas"
|
436 |
-
|
437 |
-
#: ../includes/ure-lib.php:710
|
438 |
-
msgid "Install themes"
|
439 |
-
msgstr "Instalar temas"
|
440 |
-
|
441 |
-
#: ../includes/ure-lib.php:711
|
442 |
-
msgid "Update core"
|
443 |
-
msgstr "Atualizar núcleo"
|
444 |
-
|
445 |
-
#: ../includes/ure-lib.php:712
|
446 |
-
msgid "List users"
|
447 |
-
msgstr "Listar usuários"
|
448 |
-
|
449 |
-
#: ../includes/ure-lib.php:713
|
450 |
-
msgid "Remove users"
|
451 |
-
msgstr "Remover usuários"
|
452 |
-
|
453 |
-
#: ../includes/ure-lib.php:714
|
454 |
-
msgid "Add users"
|
455 |
-
msgstr "Adicionar usuários"
|
456 |
-
|
457 |
-
#: ../includes/ure-lib.php:715
|
458 |
-
msgid "Promote users"
|
459 |
-
msgstr "Promover usuários"
|
460 |
-
|
461 |
-
#: ../includes/ure-lib.php:716
|
462 |
-
msgid "Edit theme options"
|
463 |
-
msgstr "Editar opções do tema"
|
464 |
-
|
465 |
-
#: ../includes/ure-lib.php:717
|
466 |
-
msgid "Delete themes"
|
467 |
-
msgstr "Excluir temas"
|
468 |
-
|
469 |
-
#: ../includes/ure-lib.php:718
|
470 |
-
msgid "Export"
|
471 |
-
msgstr "Exportar"
|
472 |
-
|
473 |
-
#: ../includes/ure-lib.php:834
|
474 |
-
msgid "Error: Capability name must contain latin characters and digits only!"
|
475 |
-
msgstr "Erro: O Nome da capacidade deve conter letras e números apenas!"
|
476 |
-
|
477 |
-
#: ../includes/ure-lib.php:846
|
478 |
-
#, php-format
|
479 |
-
msgid "Capability %s is added successfully"
|
480 |
-
msgstr "A capacidade %s foi adicionada com sucesso"
|
481 |
-
|
482 |
-
#: ../includes/ure-lib.php:848
|
483 |
-
#, php-format
|
484 |
-
msgid "Capability %s exists already"
|
485 |
-
msgstr "A capacidade %s já existe"
|
486 |
-
|
487 |
-
#: ../includes/ure-lib.php:997
|
488 |
-
#, php-format
|
489 |
-
msgid "Error! You do not have permission to delete this capability: %s!"
|
490 |
-
msgstr "Erro! Você não tem permissão para excluir esta capacidade: %s!"
|
491 |
-
|
492 |
-
#: ../includes/ure-lib.php:1016
|
493 |
-
#, php-format
|
494 |
-
msgid "Capability %s is removed successfully"
|
495 |
-
msgstr "A capacidade %s foi removida com sucesso"
|
496 |
-
|
497 |
-
#: ../includes/ure-lib.php:1083
|
498 |
-
msgid "Help"
|
499 |
-
msgstr "Ajuda"
|
500 |
-
|
501 |
-
#: ../includes/ure-role-edit.php:29
|
502 |
-
msgid "None"
|
503 |
-
msgstr "Nenhum"
|
504 |
-
|
505 |
-
#: ../includes/ure-role-edit.php:67
|
506 |
-
msgid "Select Role and change its capabilities list"
|
507 |
-
msgstr "Selecione a regra e altere a sua lista de capacidades"
|
508 |
-
|
509 |
-
#: ../includes/ure-role-edit.php:69
|
510 |
-
#: ../includes/ure-role-edit.php:166
|
511 |
-
msgid "Select Role:"
|
512 |
-
msgstr "Selecione a regra:"
|
513 |
-
|
514 |
-
#: ../includes/ure-role-edit.php:79
|
515 |
-
#: ../includes/ure-user-edit.php:38
|
516 |
-
msgid "Show capabilities in human readable form"
|
517 |
-
msgstr "Exiba as capacidades de uma forma legível por um ser humano"
|
518 |
-
|
519 |
-
#: ../includes/ure-role-edit.php:88
|
520 |
-
#: ../includes/ure-user-edit.php:47
|
521 |
-
msgid "Show deprecated capabilities"
|
522 |
-
msgstr "Exiba as capacidades obsoletas"
|
523 |
-
|
524 |
-
#: ../includes/ure-role-edit.php:92
|
525 |
-
msgid "If checked, then apply action to ALL sites of this Network"
|
526 |
-
msgstr "Se marcado, as ações serão aplicadas a TODOS os sites desta Rede"
|
527 |
-
|
528 |
-
#: ../includes/ure-role-edit.php:102
|
529 |
-
msgid "Apply to All Sites"
|
530 |
-
msgstr "Aplicar a todos os sites"
|
531 |
-
|
532 |
-
#: ../includes/ure-role-edit.php:109
|
533 |
-
#: ../includes/ure-user-edit.php:88
|
534 |
-
msgid "Core capabilities:"
|
535 |
-
msgstr "Capacidades do núcleo:"
|
536 |
-
|
537 |
-
#: ../includes/ure-role-edit.php:124
|
538 |
-
#: ../includes/ure-user-edit.php:103
|
539 |
-
msgid "Custom capabilities:"
|
540 |
-
msgstr "Capacidades customizadas:"
|
541 |
-
|
542 |
-
#: ../includes/ure-role-edit.php:155
|
543 |
-
msgid "Role name (ID): "
|
544 |
-
msgstr ""
|
545 |
-
|
546 |
-
#: ../includes/ure-role-edit.php:157
|
547 |
-
msgid "Display Role Name: "
|
548 |
-
msgstr ""
|
549 |
-
|
550 |
-
#: ../includes/ure-role-edit.php:159
|
551 |
-
msgid "Make copy of: "
|
552 |
-
msgstr "Fazer uma cópia de: "
|
553 |
-
|
554 |
-
#: ../includes/ure-role-edit.php:181
|
555 |
-
#, fuzzy
|
556 |
-
msgid "Delete:"
|
557 |
-
msgstr "Excluir"
|
558 |
-
|
559 |
-
#: ../includes/ure-role-edit.php:188
|
560 |
-
msgid "Capability name (ID): "
|
561 |
-
msgstr ""
|
562 |
-
|
563 |
-
#: ../includes/ure-user-edit.php:22
|
564 |
-
msgid "Change capabilities for user"
|
565 |
-
msgstr "Altere as capacidades do usuário"
|
566 |
-
|
567 |
-
#: ../includes/ure-user-edit.php:52
|
568 |
-
msgid "Primary Role:"
|
569 |
-
msgstr ""
|
570 |
-
|
571 |
-
#: ../includes/ure-user-edit.php:62
|
572 |
-
msgid "bbPress Role:"
|
573 |
-
msgstr ""
|
574 |
-
|
575 |
-
#: ../includes/ure-user-edit.php:72
|
576 |
-
#, fuzzy
|
577 |
-
msgid "Other Roles:"
|
578 |
-
msgstr "Outras regras"
|
579 |
-
|
580 |
-
#: ../includes/ure-options.php:65
|
581 |
-
msgid "User Roles are restored to WordPress default values. "
|
582 |
-
msgstr "As regras de usuário foram restauradas para os padrões do WordPress."
|
583 |
-
|
584 |
-
#: ../includes/ure-options.php:136
|
585 |
-
msgid "Error: "
|
586 |
-
msgstr "Erro:"
|
587 |
-
|
588 |
-
#: ../includes/ure-options.php:136
|
589 |
-
#: ../includes/ure-options.php:156
|
590 |
-
msgid "Role"
|
591 |
-
msgstr "Regra"
|
592 |
-
|
593 |
-
#: ../includes/ure-options.php:136
|
594 |
-
msgid "does not exist"
|
595 |
-
msgstr "não existe"
|
596 |
-
|
597 |
-
#: ../includes/ure-options.php:156
|
598 |
-
msgid "is updated successfully"
|
599 |
-
msgstr "foi atualizado com sucesso"
|
600 |
-
|
601 |
-
#: ../includes/ure-options.php:161
|
602 |
-
#: ../includes/ure-options.php:174
|
603 |
-
#, fuzzy
|
604 |
-
msgid "Error occured during role update"
|
605 |
-
msgstr "Erro encontrado durante a remoção da regra"
|
606 |
-
|
607 |
-
#: ../includes/ure-options.php:169
|
608 |
-
msgid "User"
|
609 |
-
msgstr "Usuário"
|
610 |
-
|
611 |
-
#: ../includes/ure-options.php:169
|
612 |
-
msgid "capabilities are updated successfully"
|
613 |
-
msgstr "Capacidades foram atualizadas com sucesso"
|
614 |
-
|
615 |
-
#: ../includes/ure-options.php:206
|
616 |
-
msgid "About this Plugin:"
|
617 |
-
msgstr "Sobre este plugin:"
|
618 |
-
|
619 |
-
#: ../includes/ure-options.php:207
|
620 |
-
msgid "Author's website"
|
621 |
-
msgstr "Website do Autor"
|
622 |
-
|
623 |
-
#: ../includes/ure-options.php:208
|
624 |
-
msgid "Plugin webpage"
|
625 |
-
msgstr "Página do plugin"
|
626 |
-
|
627 |
-
#: ../includes/ure-options.php:210
|
628 |
-
msgid "FAQ"
|
629 |
-
msgstr "FAQ"
|
630 |
-
|
631 |
-
#~ msgid "Greetings"
|
632 |
-
#~ msgstr "Saudações"
|
633 |
-
|
634 |
-
#~ msgid "Recently donated"
|
635 |
-
#~ msgstr "Doações recentes"
|
636 |
-
|
637 |
-
#~ msgid "It's me, the author"
|
638 |
-
#~ msgstr "Sou eu, o autor"
|
639 |
-
|
640 |
-
#~ msgid "For the help with Arabic translation"
|
641 |
-
#~ msgstr "Para obter ajuda com a tradução Árabe"
|
642 |
-
|
643 |
-
#~ msgid "For the help with Belorussian translation"
|
644 |
-
#~ msgstr "Para obter ajuda com a tradução Bielorrussa"
|
645 |
-
|
646 |
-
#~ msgid "For the help with Brasilian translation"
|
647 |
-
#~ msgstr "Para obter ajuda com a tradução do Português Brasileiro"
|
648 |
-
|
649 |
-
#~ msgid "For the help with Brasilian Portuguese translation"
|
650 |
-
#~ msgstr "Para obter ajuda com a tradução do Português Brasileiro"
|
651 |
-
|
652 |
-
#~ msgid "For the help with Chinese translation"
|
653 |
-
#~ msgstr "Para obter ajuda com a tradução Chinesa"
|
654 |
-
|
655 |
-
#~ msgid "For the help with Dutch translation"
|
656 |
-
#~ msgstr "Para obter ajuda com a tradução Holandesa"
|
657 |
-
|
658 |
-
#~ msgid "For the help with Finnish translation"
|
659 |
-
#~ msgstr "Para obter ajuda com a tradução Finlandesa"
|
660 |
-
|
661 |
-
#~ msgid "For the help with French translation"
|
662 |
-
#~ msgstr "Para obter ajuda com a tradução Francesa"
|
663 |
-
|
664 |
-
#~ msgid "For the help with German translation"
|
665 |
-
#~ msgstr "Para obter ajuda com a tradução Alemã"
|
666 |
-
|
667 |
-
#~ msgid "For the help with Hebrew translation"
|
668 |
-
#~ msgstr "Para obter ajuda com a tradução Hebraica"
|
669 |
-
|
670 |
-
#~ msgid "For the help with Hindi translation"
|
671 |
-
#~ msgstr "Para obter ajuda com a tradução Hindi"
|
672 |
-
|
673 |
-
#~ msgid "For the help with Hungarian translation"
|
674 |
-
#~ msgstr "Para obter ajuda com a tradução Húngara"
|
675 |
-
|
676 |
-
#~ msgid "For the help with Italian translation"
|
677 |
-
#~ msgstr "Para obter ajuda com a tradução Italiana"
|
678 |
-
|
679 |
-
#~ msgid "For the help with Japanese translation"
|
680 |
-
#~ msgstr "Para obter ajuda com a tradução Japonesa"
|
681 |
-
|
682 |
-
#~ msgid "For the help with Lithuanian translation"
|
683 |
-
#~ msgstr "Para obter ajuda com a tradução Lituana"
|
684 |
-
|
685 |
-
#~ msgid "For the help with Persian translation"
|
686 |
-
#~ msgstr "Para obter ajuda com a tradução Persa"
|
687 |
-
|
688 |
-
#~ msgid "For the help with Polish translation"
|
689 |
-
#~ msgstr "Para obter ajuda com a tradução Polonesa"
|
690 |
-
|
691 |
-
# Last updated: 03/10/2013
|
692 |
-
# Credits: André Gama
|
693 |
-
#, fuzzy
|
694 |
-
#~ msgid "For the help with Serbian translation"
|
695 |
-
#~ msgstr "Para obter ajuda com a tradução Persa"
|
696 |
-
|
697 |
-
#~ msgid "For the help with Slovak translation"
|
698 |
-
#~ msgstr "Para obter ajuda com a tradução Eslováquia"
|
699 |
-
|
700 |
-
#~ msgid "For the help with Spanish translation"
|
701 |
-
#~ msgstr "Para obter ajuda com a tradução Espanhola"
|
702 |
-
|
703 |
-
#~ msgid "For the updated Swedish translation"
|
704 |
-
#~ msgstr "Para a tradução Sueca atualizada"
|
705 |
-
|
706 |
-
#~ msgid "For the help with Swedish translation"
|
707 |
-
#~ msgstr "Para obter ajuda com a tradução Sueca"
|
708 |
-
|
709 |
-
#, fuzzy
|
710 |
-
#~ msgid "For the help with Traditional Chinese translation"
|
711 |
-
#~ msgstr "Para obter ajuda com a tradução Chinesa"
|
712 |
-
|
713 |
-
#~ msgid "For the help with Turkish translation"
|
714 |
-
#~ msgstr "Para obter ajuda com a tradução Turca"
|
715 |
-
|
716 |
-
#~ msgid "For the code to hide administrator role"
|
717 |
-
#~ msgstr "Para o código esconder a regra do administrador"
|
718 |
-
|
719 |
-
#~ msgid "For the code enhancement suggestion"
|
720 |
-
#~ msgstr "Para sugerir melhorias no código"
|
721 |
-
|
722 |
-
#~ msgid ""
|
723 |
-
#~ "Do you wish to see your name with link to your site here? You are "
|
724 |
-
#~ "welcome! Your help with translation and new ideas are very appreciated."
|
725 |
-
#~ msgstr ""
|
726 |
-
#~ "Você quer ver o seu nome com link para o seu site aqui? Você é bem-vindo! "
|
727 |
-
#~ "Sua ajuda nas traduções e novas idéias serão muito úteis."
|
728 |
-
|
729 |
-
#~ msgid " Name must contain latin characters and digits only!"
|
730 |
-
#~ msgstr "O nome deve conter letras e números apenas!"
|
731 |
-
|
732 |
-
#~ msgid "Change Default Role"
|
733 |
-
#~ msgstr "Alterar regra padrão"
|
734 |
-
|
735 |
-
#~ msgid "Role \"%s\" update: please confirm to continue"
|
736 |
-
#~ msgstr "Atualização da regra \"%s\": por favor, confirme para continuar"
|
737 |
-
|
738 |
-
#~ msgid "Save Changes"
|
739 |
-
#~ msgstr "Salvar alterações"
|
740 |
-
|
741 |
-
#~ msgid "Cancel not saved changes"
|
742 |
-
#~ msgstr "Cancelar alterações não salvas"
|
743 |
-
|
744 |
-
#~ msgid "Select All Capabilities"
|
745 |
-
#~ msgstr "Selecionar todas as capacidades"
|
746 |
-
|
747 |
-
#~ msgid "Unselect All Capabilities"
|
748 |
-
#~ msgstr "Desfazer seleção de todas as capacidades"
|
749 |
-
|
750 |
-
#~ msgid "Turn checked capabilities off and vise versa"
|
751 |
-
#~ msgstr "Desligar as capacidades marcadas e vice-versa"
|
752 |
-
|
753 |
-
#~ msgid "Reset Roles to WordPress defaults. All your changes will be lost"
|
754 |
-
#~ msgstr ""
|
755 |
-
#~ "Resetar as regras para os padrões do WordPress. Todas as alterações serão "
|
756 |
-
#~ "perdidas"
|
757 |
-
|
758 |
-
#~ msgid "Name: "
|
759 |
-
#~ msgstr "Nome: "
|
760 |
-
|
761 |
-
#~ msgid "Add"
|
762 |
-
#~ msgstr "Adicionar"
|
763 |
-
|
764 |
-
#~ msgid "Add New User Role"
|
765 |
-
#~ msgstr "Adicionar uma nova regra de usuário"
|
766 |
-
|
767 |
-
#~ msgid "Default Role for New User"
|
768 |
-
#~ msgstr "Regra padrão para novo usuário"
|
769 |
-
|
770 |
-
#~ msgid "Change"
|
771 |
-
#~ msgstr "Alterar"
|
772 |
-
|
773 |
-
#~ msgid "Delete User Role"
|
774 |
-
#~ msgstr "Excluir regra de Usuário"
|
775 |
-
|
776 |
-
#~ msgid "Remove"
|
777 |
-
#~ msgstr "Remover"
|
778 |
-
|
779 |
-
#~ msgid "Remove User Capability"
|
780 |
-
#~ msgstr "Remover capacidade de usuário"
|
781 |
-
|
782 |
-
#~ msgid "User \"%s\" update: please confirm to continue"
|
783 |
-
#~ msgstr "Atualização do usuário \"%s\": por favor, confirme para continuar"
|
784 |
-
|
785 |
-
#~ msgid "Roles:"
|
786 |
-
#~ msgstr "Regras:"
|
787 |
-
|
788 |
-
#~ msgid "Database operation error. Check log file."
|
789 |
-
#~ msgstr "Erro de operação de banco de dados. Verifique o arquivo de log."
|
790 |
-
|
791 |
-
#~ msgid ""
|
792 |
-
#~ "No backup data. It is created automatically before the first role data "
|
793 |
-
#~ "update."
|
794 |
-
#~ msgstr ""
|
795 |
-
#~ "Nenhuma cópia de segurança. Ela é criada automaticamente antes da "
|
796 |
-
#~ "atualização da primeira regra."
|
797 |
-
|
798 |
-
#~ msgid ""
|
799 |
-
#~ "Restore Roles from backup copy. Be careful, backup was created when you "
|
800 |
-
#~ "started URE 1st time. All changes you made after that will be lost"
|
801 |
-
#~ msgstr ""
|
802 |
-
#~ "Restaurar regras da cópia de segurança. Tenha cuidado, a cópia de "
|
803 |
-
#~ "segurança foi criada quando você iniciou o URE pela primeira vez. Todas "
|
804 |
-
#~ "as alterações feitas após isso serão perdidas"
|
805 |
-
|
806 |
-
#~ msgid "Restore Roles from backup copy"
|
807 |
-
#~ msgstr "Restaurar as regras à partir de uma cópia de segurança"
|
808 |
-
|
809 |
-
#~ msgid "Add capabilities to this user:"
|
810 |
-
#~ msgstr "Adicione capacidades à este usuário:"
|
811 |
-
|
812 |
-
#~ msgid "Greetings:"
|
813 |
-
#~ msgstr "Saudações:"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
lang/ure-ru_RU.mo
CHANGED
Binary file
|
lang/ure-ru_RU.po
CHANGED
@@ -2,135 +2,166 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: User Role Editor v.2.0\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2013-
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: Vladimir Garagulya <vladimir@shinephp.com>\n"
|
8 |
"Language-Team: ShinePHP.com <vladimir@shinephp.com>\n"
|
9 |
-
"Language: \n"
|
10 |
"MIME-Version: 1.0\n"
|
11 |
"Content-Type: text/plain; charset=UTF-8\n"
|
12 |
"Content-Transfer-Encoding: 8bit\n"
|
13 |
-
"X-Poedit-Language: Russian\n"
|
14 |
-
"X-Poedit-Country: RUSSIAN FEDERATION\n"
|
15 |
"X-Poedit-SourceCharset: utf-8\n"
|
16 |
"X-Poedit-KeywordsList: __;_e\n"
|
17 |
"X-Poedit-Basepath: .\n"
|
|
|
18 |
"X-Poedit-SearchPath-0: ..\n"
|
19 |
|
20 |
-
#: ../includes/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
21 |
msgid "Capabilities"
|
22 |
msgstr "Возможности"
|
23 |
|
24 |
-
#: ../includes/class-user-role-editor.php:
|
25 |
msgid "Settings"
|
26 |
msgstr "Установки"
|
27 |
|
28 |
-
#: ../includes/class-user-role-editor.php:
|
29 |
-
#: ../includes/class-ure-lib.php:
|
30 |
msgid "Changelog"
|
31 |
msgstr "Журнал изменений"
|
32 |
|
33 |
-
#: ../includes/class-user-role-editor.php:
|
34 |
-
#: ../includes/class-user-role-editor.php:
|
35 |
-
#: ../includes/class-
|
|
|
36 |
msgid "User Role Editor"
|
37 |
msgstr "Редактор ролей пользователей"
|
38 |
|
39 |
-
#: ../includes/class-user-role-editor.php:
|
|
|
|
|
|
|
|
|
40 |
msgid "Only"
|
41 |
msgstr "Только"
|
42 |
|
43 |
-
#: ../includes/class-user-role-editor.php:
|
44 |
msgid "is allowed to use"
|
45 |
msgstr "разрешено использовать"
|
46 |
|
47 |
-
#: ../includes/class-user-role-editor.php:
|
48 |
msgid "Select All"
|
49 |
msgstr "Выбрать Все:"
|
50 |
|
51 |
-
#: ../includes/class-user-role-editor.php:
|
52 |
msgid "Unselect All"
|
53 |
msgstr "Исключить все"
|
54 |
|
55 |
-
#: ../includes/class-user-role-editor.php:
|
56 |
msgid "Reverse"
|
57 |
msgstr "Обратить"
|
58 |
|
59 |
-
#: ../includes/class-user-role-editor.php:
|
60 |
msgid "Update"
|
61 |
msgstr "Сохранить"
|
62 |
|
63 |
-
#: ../includes/class-user-role-editor.php:
|
64 |
msgid "Please confirm permissions update"
|
65 |
msgstr "Пожалуйста, подтвердите продолжение "
|
66 |
|
67 |
-
#: ../includes/class-user-role-editor.php:
|
68 |
msgid "Add New Role"
|
69 |
msgstr "Добавить новую Роль"
|
70 |
|
71 |
-
#: ../includes/class-user-role-editor.php:
|
72 |
msgid " Role name (ID) can not be empty!"
|
73 |
msgstr "Идентификатор роли (ID) не может быть пустым!"
|
74 |
|
75 |
-
#: ../includes/class-user-role-editor.php:
|
76 |
-
msgid "
|
77 |
-
|
|
|
|
|
|
|
|
|
78 |
|
79 |
-
#: ../includes/class-user-role-editor.php:
|
80 |
msgid "Add Role"
|
81 |
msgstr "Добавить новую Роль"
|
82 |
|
83 |
-
#: ../includes/class-user-role-editor.php:
|
84 |
msgid "Delete Role"
|
85 |
msgstr "Удалить Роль"
|
86 |
|
87 |
-
#: ../includes/class-user-role-editor.php:
|
88 |
msgid "Cancel"
|
89 |
msgstr "Отмена"
|
90 |
|
91 |
-
#: ../includes/class-user-role-editor.php:
|
92 |
msgid "Add Capability"
|
93 |
msgstr "Добавить новую Возможность"
|
94 |
|
95 |
-
#: ../includes/class-user-role-editor.php:
|
96 |
-
#: ../includes/class-user-role-editor.php:
|
97 |
msgid "Delete Capability"
|
98 |
msgstr "Удалить Возможность"
|
99 |
|
100 |
-
#: ../includes/class-user-role-editor.php:
|
101 |
msgid "Reset"
|
102 |
msgstr "Сброс"
|
103 |
|
104 |
-
#: ../includes/class-user-role-editor.php:
|
105 |
-
msgid "
|
106 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
107 |
|
108 |
-
#: ../includes/class-user-role-editor.php:
|
109 |
msgid "Default Role"
|
110 |
msgstr "Роль по-умолчанию"
|
111 |
|
112 |
-
#: ../includes/class-user-role-editor.php:
|
113 |
msgid "Set New Default Role"
|
114 |
msgstr "Установить новую роль по-умолчанию"
|
115 |
|
116 |
-
#: ../includes/class-user-role-editor.php:
|
117 |
-
msgid "
|
118 |
-
|
|
|
|
|
|
|
|
|
119 |
|
120 |
-
#: ../includes/class-user-role-editor.php:
|
121 |
msgid " Capability name (ID) can not be empty!"
|
122 |
msgstr "Идентификатор возможности (ID) не может быть пустым!"
|
123 |
|
124 |
-
#: ../includes/class-user-role-editor.php:
|
125 |
-
msgid "
|
126 |
-
|
|
|
|
|
|
|
|
|
127 |
|
128 |
-
#: ../includes/class-user-role-editor.php:
|
129 |
-
#: ../includes/class-user-role-editor.php:
|
130 |
msgid "Other Roles"
|
131 |
msgstr "Другие Роли"
|
132 |
|
133 |
-
#: ../includes/class-user-role-editor.php:
|
134 |
msgid "Edit"
|
135 |
msgstr "Редактор"
|
136 |
|
@@ -138,468 +169,473 @@ msgstr "Редактор"
|
|
138 |
msgid "Select Role and change its capabilities list"
|
139 |
msgstr "Выбери Роль и измени список разрешённых операций"
|
140 |
|
141 |
-
#: ../includes/ure-role-edit.php:19
|
142 |
-
#: ../includes/class-ure-lib.php:123
|
143 |
msgid "Select Role:"
|
144 |
msgstr "Выбери Роль:"
|
145 |
|
146 |
-
#: ../includes/ure-role-edit.php:30
|
147 |
-
#: ../includes/ure-user-edit.php:47
|
148 |
msgid "Show capabilities in human readable form"
|
149 |
msgstr "Показ возможностей в читабельной форме"
|
150 |
|
151 |
-
#: ../includes/ure-role-edit.php:40
|
152 |
-
#: ../includes/ure-user-edit.php:57
|
153 |
msgid "Show deprecated capabilities"
|
154 |
msgstr "Показать устаревшие разрешения"
|
155 |
|
156 |
-
#: ../includes/ure-role-edit.php:
|
157 |
msgid "If checked, then apply action to ALL sites of this Network"
|
158 |
msgstr "Если включено, применить ко всем сайтам этой Сети"
|
159 |
|
160 |
-
#: ../includes/ure-role-edit.php:
|
161 |
msgid "Apply to All Sites"
|
162 |
msgstr "Применить ко всем сайтам"
|
163 |
|
164 |
-
#: ../includes/ure-role-edit.php:
|
165 |
-
#: ../includes/ure-user-edit.php:100
|
166 |
msgid "Core capabilities:"
|
167 |
msgstr "Возможности ядра:"
|
168 |
|
169 |
-
#: ../includes/ure-role-edit.php:
|
170 |
-
|
|
|
|
|
|
|
171 |
msgid "Custom capabilities:"
|
172 |
msgstr "Дополнительные возможности :"
|
173 |
|
174 |
-
#: ../includes/class-ure-lib.php:
|
175 |
msgid "Error: wrong request"
|
176 |
msgstr "Ошибка: неверный запрос"
|
177 |
|
178 |
-
#: ../includes/class-ure-lib.php:
|
179 |
msgid "Role name (ID): "
|
180 |
msgstr "Идентификатор роли (ID):"
|
181 |
|
182 |
-
#: ../includes/class-ure-lib.php:
|
183 |
msgid "Display Role Name: "
|
184 |
msgstr "Наименование роли:"
|
185 |
|
186 |
-
#: ../includes/class-ure-lib.php:
|
187 |
msgid "Make copy of: "
|
188 |
msgstr "Создать копию из:"
|
189 |
|
190 |
-
#: ../includes/class-ure-lib.php:
|
191 |
msgid "Delete:"
|
192 |
msgstr "Удалить"
|
193 |
|
194 |
-
#: ../includes/class-ure-lib.php:
|
195 |
msgid "Capability name (ID): "
|
196 |
msgstr "Идентификатор возможности (ID):"
|
197 |
|
198 |
-
#: ../includes/class-ure-lib.php:
|
199 |
msgid "Error: "
|
200 |
msgstr "Ошибка:"
|
201 |
|
202 |
-
#: ../includes/class-ure-lib.php:
|
203 |
-
#: ../includes/class-ure-lib.php:272
|
204 |
msgid "Role"
|
205 |
msgstr "Роль"
|
206 |
|
207 |
-
#: ../includes/class-ure-lib.php:
|
208 |
msgid "does not exist"
|
209 |
msgstr "не существует"
|
210 |
|
211 |
-
#: ../includes/class-ure-lib.php:
|
212 |
-
msgid "is updated successfully"
|
213 |
-
msgstr "изменена успешно"
|
214 |
|
215 |
-
#: ../includes/class-ure-lib.php:
|
216 |
-
msgid "
|
217 |
-
msgstr "
|
218 |
|
219 |
-
#: ../includes/class-ure-lib.php:
|
220 |
-
msgid "
|
221 |
-
msgstr "
|
222 |
|
223 |
-
#: ../includes/class-ure-lib.php:
|
224 |
-
msgid "capabilities are updated successfully"
|
225 |
-
msgstr "
|
226 |
|
227 |
-
#: ../includes/class-ure-lib.php:
|
228 |
msgid "Error occured during user update"
|
229 |
msgstr "При изменении прав пользователя произошла ошибка "
|
230 |
|
231 |
-
#: ../includes/class-ure-lib.php:
|
232 |
msgid "User Roles are restored to WordPress default values. "
|
233 |
msgstr "Роли возвращены к начальному состоянию"
|
234 |
|
235 |
-
#: ../includes/class-ure-lib.php:
|
236 |
msgid "Help"
|
237 |
msgstr "Помощь"
|
238 |
|
239 |
-
#: ../includes/class-ure-lib.php:
|
240 |
msgid "Error is occur. Please check the log file."
|
241 |
msgstr "Произошла ошибка. Проверьте лог-файл."
|
242 |
|
243 |
-
#: ../includes/class-ure-lib.php:
|
244 |
-
msgid "
|
245 |
-
|
|
|
|
|
|
|
|
|
246 |
|
247 |
-
#: ../includes/class-ure-lib.php:
|
248 |
#, php-format
|
249 |
msgid "Role %s exists already"
|
250 |
msgstr "Роль %s уже существует"
|
251 |
|
252 |
-
#: ../includes/class-ure-lib.php:
|
253 |
msgid "Error is encountered during new role create operation"
|
254 |
msgstr "Произошла ошибка при создании новой роли"
|
255 |
|
256 |
-
#: ../includes/class-ure-lib.php:
|
257 |
#, php-format
|
258 |
msgid "Role %s is created successfully"
|
259 |
msgstr "Роль %s создана успешно"
|
260 |
|
261 |
-
#: ../includes/class-ure-lib.php:
|
262 |
msgid "Error encountered during role delete operation"
|
263 |
msgstr "Произошла ошибка при удалении роли"
|
264 |
|
265 |
-
#: ../includes/class-ure-lib.php:
|
266 |
#, php-format
|
267 |
msgid "Role %s is deleted successfully"
|
268 |
msgstr "Роль %s удалена успешно"
|
269 |
|
270 |
-
#: ../includes/class-ure-lib.php:
|
271 |
msgid "Error encountered during default role change operation"
|
272 |
msgstr "Произошла ошибка при изменении роли по-умолчанию"
|
273 |
|
274 |
-
#: ../includes/class-ure-lib.php:
|
275 |
#, php-format
|
276 |
msgid "Default role for new users is set to %s successfully"
|
277 |
msgstr "Роль по-умолчанию для новых пользователй изменена на %s успешно."
|
278 |
|
279 |
-
#: ../includes/class-ure-lib.php:
|
280 |
msgid "Editor"
|
281 |
msgstr "Редактор"
|
282 |
|
283 |
-
#: ../includes/class-ure-lib.php:
|
284 |
msgid "Author"
|
285 |
msgstr "Автор"
|
286 |
|
287 |
-
#: ../includes/class-ure-lib.php:
|
288 |
msgid "Contributor"
|
289 |
msgstr "Участник"
|
290 |
|
291 |
-
#: ../includes/class-ure-lib.php:
|
292 |
msgid "Subscriber"
|
293 |
msgstr "Подписчик"
|
294 |
|
295 |
-
#: ../includes/class-ure-lib.php:
|
296 |
msgid "Switch themes"
|
297 |
msgstr "Менять темы"
|
298 |
|
299 |
-
#: ../includes/class-ure-lib.php:
|
300 |
msgid "Edit themes"
|
301 |
msgstr "Изменять темы"
|
302 |
|
303 |
-
#: ../includes/class-ure-lib.php:
|
304 |
msgid "Activate plugins"
|
305 |
msgstr "Активировать плагины"
|
306 |
|
307 |
-
#: ../includes/class-ure-lib.php:
|
308 |
msgid "Edit plugins"
|
309 |
msgstr "Редактировать плагины"
|
310 |
|
311 |
-
#: ../includes/class-ure-lib.php:
|
312 |
msgid "Edit users"
|
313 |
msgstr "Изменять пользователей"
|
314 |
|
315 |
-
#: ../includes/class-ure-lib.php:
|
316 |
msgid "Edit files"
|
317 |
msgstr "Изменять файлы"
|
318 |
|
319 |
-
#: ../includes/class-ure-lib.php:
|
320 |
msgid "Manage options"
|
321 |
msgstr "Управлять установками"
|
322 |
|
323 |
-
#: ../includes/class-ure-lib.php:
|
324 |
msgid "Moderate comments"
|
325 |
msgstr "Модерировать комментарии"
|
326 |
|
327 |
-
#: ../includes/class-ure-lib.php:
|
328 |
msgid "Manage categories"
|
329 |
msgstr "Управлять категориями"
|
330 |
|
331 |
-
#: ../includes/class-ure-lib.php:
|
332 |
msgid "Manage links"
|
333 |
msgstr "Управлять ссылками"
|
334 |
|
335 |
-
#: ../includes/class-ure-lib.php:
|
336 |
msgid "Upload files"
|
337 |
msgstr "Загружать файлы"
|
338 |
|
339 |
-
#: ../includes/class-ure-lib.php:
|
340 |
msgid "Import"
|
341 |
msgstr "Импорт"
|
342 |
|
343 |
-
#: ../includes/class-ure-lib.php:
|
344 |
msgid "Unfiltered html"
|
345 |
msgstr "html без фильтра"
|
346 |
|
347 |
-
#: ../includes/class-ure-lib.php:
|
348 |
msgid "Edit posts"
|
349 |
msgstr "Изменять статьи"
|
350 |
|
351 |
-
#: ../includes/class-ure-lib.php:
|
352 |
msgid "Edit others posts"
|
353 |
msgstr "Изменять чужие статьи"
|
354 |
|
355 |
-
#: ../includes/class-ure-lib.php:
|
356 |
msgid "Edit published posts"
|
357 |
msgstr "Редактировать опубликованные статьи"
|
358 |
|
359 |
-
#: ../includes/class-ure-lib.php:
|
360 |
msgid "Publish posts"
|
361 |
msgstr "Публиковать статьи"
|
362 |
|
363 |
-
#: ../includes/class-ure-lib.php:
|
364 |
msgid "Edit pages"
|
365 |
msgstr "Изменять страницы"
|
366 |
|
367 |
-
#: ../includes/class-ure-lib.php:
|
368 |
msgid "Read"
|
369 |
msgstr "Чтение"
|
370 |
|
371 |
-
#: ../includes/class-ure-lib.php:
|
372 |
msgid "Level 10"
|
373 |
msgstr "Уровень 10"
|
374 |
|
375 |
-
#: ../includes/class-ure-lib.php:
|
376 |
msgid "Level 9"
|
377 |
msgstr "Уровень 9"
|
378 |
|
379 |
-
#: ../includes/class-ure-lib.php:
|
380 |
msgid "Level 8"
|
381 |
msgstr "Уровень 9"
|
382 |
|
383 |
-
#: ../includes/class-ure-lib.php:
|
384 |
msgid "Level 7"
|
385 |
msgstr "Уровень 7"
|
386 |
|
387 |
-
#: ../includes/class-ure-lib.php:
|
388 |
msgid "Level 6"
|
389 |
msgstr "Уровень 6"
|
390 |
|
391 |
-
#: ../includes/class-ure-lib.php:
|
392 |
msgid "Level 5"
|
393 |
msgstr "Уровень 5"
|
394 |
|
395 |
-
#: ../includes/class-ure-lib.php:
|
396 |
msgid "Level 4"
|
397 |
msgstr "Уровень 4"
|
398 |
|
399 |
-
#: ../includes/class-ure-lib.php:
|
400 |
msgid "Level 3"
|
401 |
msgstr "Уровень 3"
|
402 |
|
403 |
-
#: ../includes/class-ure-lib.php:
|
404 |
msgid "Level 2"
|
405 |
msgstr "Уровень 2"
|
406 |
|
407 |
-
#: ../includes/class-ure-lib.php:
|
408 |
msgid "Level 1"
|
409 |
msgstr "Уровень 1"
|
410 |
|
411 |
-
#: ../includes/class-ure-lib.php:
|
412 |
msgid "Level 0"
|
413 |
msgstr "Уровень 0"
|
414 |
|
415 |
-
#: ../includes/class-ure-lib.php:
|
416 |
msgid "Edit others pages"
|
417 |
msgstr "Редактировать чужие страницы"
|
418 |
|
419 |
-
#: ../includes/class-ure-lib.php:
|
420 |
msgid "Edit published pages"
|
421 |
msgstr "Редактировать опубликованные страницы"
|
422 |
|
423 |
-
#: ../includes/class-ure-lib.php:
|
424 |
msgid "Publish pages"
|
425 |
msgstr "Публиковать страницы"
|
426 |
|
427 |
-
#: ../includes/class-ure-lib.php:
|
428 |
msgid "Delete pages"
|
429 |
msgstr "Удалять страницы"
|
430 |
|
431 |
-
#: ../includes/class-ure-lib.php:
|
432 |
msgid "Delete others pages"
|
433 |
msgstr "Удалить чужие страницы"
|
434 |
|
435 |
-
#: ../includes/class-ure-lib.php:
|
436 |
msgid "Delete published pages"
|
437 |
msgstr "Удалять опубликованные страницы"
|
438 |
|
439 |
-
#: ../includes/class-ure-lib.php:
|
440 |
msgid "Delete posts"
|
441 |
msgstr "Удалять статьи"
|
442 |
|
443 |
-
#: ../includes/class-ure-lib.php:
|
444 |
msgid "Delete others posts"
|
445 |
msgstr "Удалять чужие статьи"
|
446 |
|
447 |
-
#: ../includes/class-ure-lib.php:
|
448 |
msgid "Delete published posts"
|
449 |
msgstr "Удалять опубликованные статьи"
|
450 |
|
451 |
-
#: ../includes/class-ure-lib.php:
|
452 |
msgid "Delete private posts"
|
453 |
msgstr "Удалять частные статьи"
|
454 |
|
455 |
-
#: ../includes/class-ure-lib.php:
|
456 |
msgid "Edit private posts"
|
457 |
msgstr "Редактировать частные статьи"
|
458 |
|
459 |
-
#: ../includes/class-ure-lib.php:
|
460 |
msgid "Read private posts"
|
461 |
msgstr "Читать частные статьи"
|
462 |
|
463 |
-
#: ../includes/class-ure-lib.php:
|
464 |
msgid "Delete private pages"
|
465 |
msgstr "Удалять частные страницы"
|
466 |
|
467 |
-
#: ../includes/class-ure-lib.php:
|
468 |
msgid "Edit private pages"
|
469 |
msgstr "Редактировать частные страницы"
|
470 |
|
471 |
-
#: ../includes/class-ure-lib.php:
|
472 |
msgid "Read private pages"
|
473 |
msgstr "Читать частные страницы"
|
474 |
|
475 |
-
#: ../includes/class-ure-lib.php:
|
476 |
msgid "Delete users"
|
477 |
msgstr "Удалять пользователей"
|
478 |
|
479 |
-
#: ../includes/class-ure-lib.php:
|
480 |
msgid "Create users"
|
481 |
msgstr "Создавать пользователей"
|
482 |
|
483 |
-
#: ../includes/class-ure-lib.php:
|
484 |
msgid "Unfiltered upload"
|
485 |
msgstr "Загрузка без фильтра"
|
486 |
|
487 |
-
#: ../includes/class-ure-lib.php:
|
488 |
msgid "Edit dashboard"
|
489 |
msgstr "Изменять панель администратора"
|
490 |
|
491 |
-
#: ../includes/class-ure-lib.php:
|
492 |
msgid "Update plugins"
|
493 |
msgstr "Обновлять плагины"
|
494 |
|
495 |
-
#: ../includes/class-ure-lib.php:
|
496 |
msgid "Delete plugins"
|
497 |
msgstr "Удалять плагины"
|
498 |
|
499 |
-
#: ../includes/class-ure-lib.php:
|
500 |
msgid "Install plugins"
|
501 |
msgstr "Устанавливать плагины"
|
502 |
|
503 |
-
#: ../includes/class-ure-lib.php:
|
504 |
msgid "Update themes"
|
505 |
msgstr "Обновлять темы"
|
506 |
|
507 |
-
#: ../includes/class-ure-lib.php:
|
508 |
msgid "Install themes"
|
509 |
msgstr "Устанавливать темы"
|
510 |
|
511 |
-
#: ../includes/class-ure-lib.php:
|
512 |
msgid "Update core"
|
513 |
msgstr "Обновлять ядро"
|
514 |
|
515 |
-
#: ../includes/class-ure-lib.php:
|
516 |
msgid "List users"
|
517 |
msgstr "Список пользователей"
|
518 |
|
519 |
-
#: ../includes/class-ure-lib.php:
|
520 |
msgid "Remove users"
|
521 |
msgstr "Удалять пользователей"
|
522 |
|
523 |
-
#: ../includes/class-ure-lib.php:
|
524 |
msgid "Add users"
|
525 |
msgstr "Добавлять пользователей"
|
526 |
|
527 |
-
#: ../includes/class-ure-lib.php:
|
528 |
msgid "Promote users"
|
529 |
msgstr "Продвигать пользователей"
|
530 |
|
531 |
-
#: ../includes/class-ure-lib.php:
|
532 |
msgid "Edit theme options"
|
533 |
msgstr "Изменять настройки темы"
|
534 |
|
535 |
-
#: ../includes/class-ure-lib.php:
|
536 |
msgid "Delete themes"
|
537 |
msgstr "Удалять темы"
|
538 |
|
539 |
-
#: ../includes/class-ure-lib.php:
|
540 |
msgid "Export"
|
541 |
msgstr "Экспорт"
|
542 |
|
543 |
-
#: ../includes/class-ure-lib.php:
|
544 |
msgid "Error: Capability name must contain latin characters and digits only!"
|
545 |
msgstr "Ошибка: Имя должно содержать только латинские буквы и цифры"
|
546 |
|
547 |
-
#: ../includes/class-ure-lib.php:
|
548 |
#, php-format
|
549 |
msgid "Capability %s is added successfully"
|
550 |
msgstr "Возможность %s добавлена успешно"
|
551 |
|
552 |
-
#: ../includes/class-ure-lib.php:
|
553 |
#, php-format
|
554 |
msgid "Capability %s exists already"
|
555 |
msgstr "Возможность %s уже существует"
|
556 |
|
557 |
-
#: ../includes/class-ure-lib.php:
|
558 |
#, php-format
|
559 |
msgid "Error! You do not have permission to delete this capability: %s!"
|
560 |
msgstr "Ошибка! Вам запрещено удалять эту возможность: %s!"
|
561 |
|
562 |
-
#: ../includes/class-ure-lib.php:
|
563 |
#, php-format
|
564 |
msgid "Capability %s is removed successfully"
|
565 |
msgstr "Возможность %s удалена успешно"
|
566 |
|
567 |
-
#: ../includes/class-ure-lib.php:
|
568 |
msgid "About this Plugin:"
|
569 |
msgstr "Об этом плагине"
|
570 |
|
571 |
-
#: ../includes/class-ure-lib.php:
|
572 |
msgid "Author's website"
|
573 |
msgstr "Вебсайт автора"
|
574 |
|
575 |
-
#: ../includes/class-ure-lib.php:
|
576 |
msgid "Plugin webpage"
|
577 |
msgstr "Страница плагина"
|
578 |
|
579 |
-
#: ../includes/class-ure-lib.php:
|
580 |
msgid "FAQ"
|
581 |
msgstr "Часто задаваемые вопросы"
|
582 |
|
583 |
-
#: ../includes/class-ure-lib.php:
|
584 |
msgid "None"
|
585 |
msgstr "Нет"
|
586 |
|
587 |
-
#: ../includes/ure-user-edit.php:
|
588 |
msgid "Change capabilities for user"
|
589 |
msgstr "Изменить возможности для пользователя"
|
590 |
|
591 |
-
#: ../includes/ure-user-edit.php:
|
592 |
msgid "Primary Role:"
|
593 |
msgstr "Первичаная роль:"
|
594 |
|
595 |
-
#: ../includes/ure-user-edit.php:
|
596 |
msgid "bbPress Role:"
|
597 |
msgstr "Роль bbPress:"
|
598 |
|
599 |
-
#: ../includes/ure-user-edit.php:
|
600 |
msgid "Other Roles:"
|
601 |
msgstr "Другие Роли:"
|
602 |
|
|
|
|
|
|
|
603 |
#~ msgid "Import Roles"
|
604 |
#~ msgstr "Импорт Ролей"
|
605 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: User Role Editor v.2.0\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2013-08-12 09:43+0700\n"
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: Vladimir Garagulya <vladimir@shinephp.com>\n"
|
8 |
"Language-Team: ShinePHP.com <vladimir@shinephp.com>\n"
|
9 |
+
"Language: ru_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\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:60
|
20 |
+
msgid "Save"
|
21 |
+
msgstr "Сохранить"
|
22 |
+
|
23 |
+
#: ../includes/class-user-role-editor.php:170
|
24 |
+
#: ../includes/class-user-role-editor.php:172
|
25 |
+
msgid "You do not have permission to edit this user."
|
26 |
+
msgstr "Нет прав на редактирование этого пользователя"
|
27 |
+
|
28 |
+
#: ../includes/class-user-role-editor.php:313
|
29 |
msgid "Capabilities"
|
30 |
msgstr "Возможности"
|
31 |
|
32 |
+
#: ../includes/class-user-role-editor.php:404
|
33 |
msgid "Settings"
|
34 |
msgstr "Установки"
|
35 |
|
36 |
+
#: ../includes/class-user-role-editor.php:417
|
37 |
+
#: ../includes/class-ure-lib.php:1966
|
38 |
msgid "Changelog"
|
39 |
msgstr "Журнал изменений"
|
40 |
|
41 |
+
#: ../includes/class-user-role-editor.php:429
|
42 |
+
#: ../includes/class-user-role-editor.php:447
|
43 |
+
#: ../includes/class-user-role-editor.php:630
|
44 |
+
#: ../includes/class-ure-lib.php:234
|
45 |
msgid "User Role Editor"
|
46 |
msgstr "Редактор ролей пользователей"
|
47 |
|
48 |
+
#: ../includes/class-user-role-editor.php:483
|
49 |
+
msgid "User Role Editor options are updated"
|
50 |
+
msgstr "Изменения в настройках Редактора ролей пользователей сохранены"
|
51 |
+
|
52 |
+
#: ../includes/class-user-role-editor.php:534
|
53 |
msgid "Only"
|
54 |
msgstr "Только"
|
55 |
|
56 |
+
#: ../includes/class-user-role-editor.php:534
|
57 |
msgid "is allowed to use"
|
58 |
msgstr "разрешено использовать"
|
59 |
|
60 |
+
#: ../includes/class-user-role-editor.php:587
|
61 |
msgid "Select All"
|
62 |
msgstr "Выбрать Все:"
|
63 |
|
64 |
+
#: ../includes/class-user-role-editor.php:588
|
65 |
msgid "Unselect All"
|
66 |
msgstr "Исключить все"
|
67 |
|
68 |
+
#: ../includes/class-user-role-editor.php:589
|
69 |
msgid "Reverse"
|
70 |
msgstr "Обратить"
|
71 |
|
72 |
+
#: ../includes/class-user-role-editor.php:590
|
73 |
msgid "Update"
|
74 |
msgstr "Сохранить"
|
75 |
|
76 |
+
#: ../includes/class-user-role-editor.php:591
|
77 |
msgid "Please confirm permissions update"
|
78 |
msgstr "Пожалуйста, подтвердите продолжение "
|
79 |
|
80 |
+
#: ../includes/class-user-role-editor.php:592
|
81 |
msgid "Add New Role"
|
82 |
msgstr "Добавить новую Роль"
|
83 |
|
84 |
+
#: ../includes/class-user-role-editor.php:593
|
85 |
msgid " Role name (ID) can not be empty!"
|
86 |
msgstr "Идентификатор роли (ID) не может быть пустым!"
|
87 |
|
88 |
+
#: ../includes/class-user-role-editor.php:594
|
89 |
+
msgid ""
|
90 |
+
" Role name (ID) must contain latin characters, digits, hyphens or underscore "
|
91 |
+
"only!"
|
92 |
+
msgstr ""
|
93 |
+
"Ошибка: идентификатор роли может содержать только латинские буквы, цифры, "
|
94 |
+
"тире и знак подчеркивания"
|
95 |
|
96 |
+
#: ../includes/class-user-role-editor.php:595
|
97 |
msgid "Add Role"
|
98 |
msgstr "Добавить новую Роль"
|
99 |
|
100 |
+
#: ../includes/class-user-role-editor.php:596
|
101 |
msgid "Delete Role"
|
102 |
msgstr "Удалить Роль"
|
103 |
|
104 |
+
#: ../includes/class-user-role-editor.php:597
|
105 |
msgid "Cancel"
|
106 |
msgstr "Отмена"
|
107 |
|
108 |
+
#: ../includes/class-user-role-editor.php:598
|
109 |
msgid "Add Capability"
|
110 |
msgstr "Добавить новую Возможность"
|
111 |
|
112 |
+
#: ../includes/class-user-role-editor.php:599
|
113 |
+
#: ../includes/class-user-role-editor.php:604
|
114 |
msgid "Delete Capability"
|
115 |
msgstr "Удалить Возможность"
|
116 |
|
117 |
+
#: ../includes/class-user-role-editor.php:600
|
118 |
msgid "Reset"
|
119 |
msgstr "Сброс"
|
120 |
|
121 |
+
#: ../includes/class-user-role-editor.php:601
|
122 |
+
msgid ""
|
123 |
+
"Reset Roles to WordPress defaults. Be careful, all changes made by you or "
|
124 |
+
"plugins will be lost. Some plugins, e.g. S2Member, WooCommerce reactivation "
|
125 |
+
"could be needed. Continue?"
|
126 |
+
msgstr ""
|
127 |
+
"Вернуть роли в начальное состояние. Будьте осторожны, все изменения в ролях, "
|
128 |
+
"сделанные темой и плагинами, будут потеряны, необходимо будет активировать "
|
129 |
+
"заново некоторые плагины, например S2Member, WooCommerce. Продолжить?"
|
130 |
|
131 |
+
#: ../includes/class-user-role-editor.php:602
|
132 |
msgid "Default Role"
|
133 |
msgstr "Роль по-умолчанию"
|
134 |
|
135 |
+
#: ../includes/class-user-role-editor.php:603
|
136 |
msgid "Set New Default Role"
|
137 |
msgstr "Установить новую роль по-умолчанию"
|
138 |
|
139 |
+
#: ../includes/class-user-role-editor.php:605
|
140 |
+
msgid ""
|
141 |
+
"Warning! Be careful - removing critical capability could crash some plugin "
|
142 |
+
"or other custom code"
|
143 |
+
msgstr ""
|
144 |
+
"Внимание! Будьте осторожны - удаление критичной возможности может привести к "
|
145 |
+
"прекращеню работы одного из плагинов или другого кода."
|
146 |
|
147 |
+
#: ../includes/class-user-role-editor.php:606
|
148 |
msgid " Capability name (ID) can not be empty!"
|
149 |
msgstr "Идентификатор возможности (ID) не может быть пустым!"
|
150 |
|
151 |
+
#: ../includes/class-user-role-editor.php:607
|
152 |
+
msgid ""
|
153 |
+
" Capability name (ID) must contain latin characters, digits, hyphens or "
|
154 |
+
"underscore only!"
|
155 |
+
msgstr ""
|
156 |
+
"Ошибка: Наименование возможности должно содержать только латинские буквы и "
|
157 |
+
"цифры, знаки подчеркивания"
|
158 |
|
159 |
+
#: ../includes/class-user-role-editor.php:633
|
160 |
+
#: ../includes/class-user-role-editor.php:668
|
161 |
msgid "Other Roles"
|
162 |
msgstr "Другие Роли"
|
163 |
|
164 |
+
#: ../includes/class-user-role-editor.php:643
|
165 |
msgid "Edit"
|
166 |
msgstr "Редактор"
|
167 |
|
169 |
msgid "Select Role and change its capabilities list"
|
170 |
msgstr "Выбери Роль и измени список разрешённых операций"
|
171 |
|
172 |
+
#: ../includes/ure-role-edit.php:19 ../includes/class-ure-lib.php:195
|
|
|
173 |
msgid "Select Role:"
|
174 |
msgstr "Выбери Роль:"
|
175 |
|
176 |
+
#: ../includes/ure-role-edit.php:30 ../includes/ure-user-edit.php:51
|
|
|
177 |
msgid "Show capabilities in human readable form"
|
178 |
msgstr "Показ возможностей в читабельной форме"
|
179 |
|
180 |
+
#: ../includes/ure-role-edit.php:40 ../includes/ure-user-edit.php:61
|
|
|
181 |
msgid "Show deprecated capabilities"
|
182 |
msgstr "Показать устаревшие разрешения"
|
183 |
|
184 |
+
#: ../includes/ure-role-edit.php:45
|
185 |
msgid "If checked, then apply action to ALL sites of this Network"
|
186 |
msgstr "Если включено, применить ко всем сайтам этой Сети"
|
187 |
|
188 |
+
#: ../includes/ure-role-edit.php:57
|
189 |
msgid "Apply to All Sites"
|
190 |
msgstr "Применить ко всем сайтам"
|
191 |
|
192 |
+
#: ../includes/ure-role-edit.php:64 ../includes/ure-user-edit.php:106
|
|
|
193 |
msgid "Core capabilities:"
|
194 |
msgstr "Возможности ядра:"
|
195 |
|
196 |
+
#: ../includes/ure-role-edit.php:66 ../includes/ure-user-edit.php:108
|
197 |
+
msgid "Quick filter:"
|
198 |
+
msgstr "Фильтр:"
|
199 |
+
|
200 |
+
#: ../includes/ure-role-edit.php:84 ../includes/ure-user-edit.php:127
|
201 |
msgid "Custom capabilities:"
|
202 |
msgstr "Дополнительные возможности :"
|
203 |
|
204 |
+
#: ../includes/class-ure-lib.php:152
|
205 |
msgid "Error: wrong request"
|
206 |
msgstr "Ошибка: неверный запрос"
|
207 |
|
208 |
+
#: ../includes/class-ure-lib.php:184
|
209 |
msgid "Role name (ID): "
|
210 |
msgstr "Идентификатор роли (ID):"
|
211 |
|
212 |
+
#: ../includes/class-ure-lib.php:186
|
213 |
msgid "Display Role Name: "
|
214 |
msgstr "Наименование роли:"
|
215 |
|
216 |
+
#: ../includes/class-ure-lib.php:188
|
217 |
msgid "Make copy of: "
|
218 |
msgstr "Создать копию из:"
|
219 |
|
220 |
+
#: ../includes/class-ure-lib.php:210
|
221 |
msgid "Delete:"
|
222 |
msgstr "Удалить"
|
223 |
|
224 |
+
#: ../includes/class-ure-lib.php:217
|
225 |
msgid "Capability name (ID): "
|
226 |
msgstr "Идентификатор возможности (ID):"
|
227 |
|
228 |
+
#: ../includes/class-ure-lib.php:332
|
229 |
msgid "Error: "
|
230 |
msgstr "Ошибка:"
|
231 |
|
232 |
+
#: ../includes/class-ure-lib.php:332
|
|
|
233 |
msgid "Role"
|
234 |
msgstr "Роль"
|
235 |
|
236 |
+
#: ../includes/class-ure-lib.php:332
|
237 |
msgid "does not exist"
|
238 |
msgstr "не существует"
|
239 |
|
240 |
+
#: ../includes/class-ure-lib.php:375
|
241 |
+
msgid "Role is updated successfully"
|
242 |
+
msgstr "Роль изменена успешно"
|
243 |
|
244 |
+
#: ../includes/class-ure-lib.php:377
|
245 |
+
msgid "Roles are updated for all network"
|
246 |
+
msgstr "Роли изменены для всей сети"
|
247 |
|
248 |
+
#: ../includes/class-ure-lib.php:383
|
249 |
+
msgid "Error occured during role(s) update"
|
250 |
+
msgstr "При изменении роли произошла ошибка"
|
251 |
|
252 |
+
#: ../includes/class-ure-lib.php:390
|
253 |
+
msgid "User capabilities are updated successfully"
|
254 |
+
msgstr "Права пользователя изменены успешно"
|
255 |
|
256 |
+
#: ../includes/class-ure-lib.php:395
|
257 |
msgid "Error occured during user update"
|
258 |
msgstr "При изменении прав пользователя произошла ошибка "
|
259 |
|
260 |
+
#: ../includes/class-ure-lib.php:450
|
261 |
msgid "User Roles are restored to WordPress default values. "
|
262 |
msgstr "Роли возвращены к начальному состоянию"
|
263 |
|
264 |
+
#: ../includes/class-ure-lib.php:1220
|
265 |
msgid "Help"
|
266 |
msgstr "Помощь"
|
267 |
|
268 |
+
#: ../includes/class-ure-lib.php:1522
|
269 |
msgid "Error is occur. Please check the log file."
|
270 |
msgstr "Произошла ошибка. Проверьте лог-файл."
|
271 |
|
272 |
+
#: ../includes/class-ure-lib.php:1547
|
273 |
+
msgid ""
|
274 |
+
"Error: Role ID must contain latin characters, digits, hyphens or underscore "
|
275 |
+
"only!"
|
276 |
+
msgstr ""
|
277 |
+
"Ошибка: идентификатор роли (ID) должен содержать только латинские буквы, "
|
278 |
+
"цифры, знак подчеркивания и дефис."
|
279 |
|
280 |
+
#: ../includes/class-ure-lib.php:1562
|
281 |
#, php-format
|
282 |
msgid "Role %s exists already"
|
283 |
msgstr "Роль %s уже существует"
|
284 |
|
285 |
+
#: ../includes/class-ure-lib.php:1577
|
286 |
msgid "Error is encountered during new role create operation"
|
287 |
msgstr "Произошла ошибка при создании новой роли"
|
288 |
|
289 |
+
#: ../includes/class-ure-lib.php:1579
|
290 |
#, php-format
|
291 |
msgid "Role %s is created successfully"
|
292 |
msgstr "Роль %s создана успешно"
|
293 |
|
294 |
+
#: ../includes/class-ure-lib.php:1608
|
295 |
msgid "Error encountered during role delete operation"
|
296 |
msgstr "Произошла ошибка при удалении роли"
|
297 |
|
298 |
+
#: ../includes/class-ure-lib.php:1610
|
299 |
#, php-format
|
300 |
msgid "Role %s is deleted successfully"
|
301 |
msgstr "Роль %s удалена успешно"
|
302 |
|
303 |
+
#: ../includes/class-ure-lib.php:1635
|
304 |
msgid "Error encountered during default role change operation"
|
305 |
msgstr "Произошла ошибка при изменении роли по-умолчанию"
|
306 |
|
307 |
+
#: ../includes/class-ure-lib.php:1641
|
308 |
#, php-format
|
309 |
msgid "Default role for new users is set to %s successfully"
|
310 |
msgstr "Роль по-умолчанию для новых пользователй изменена на %s успешно."
|
311 |
|
312 |
+
#: ../includes/class-ure-lib.php:1660
|
313 |
msgid "Editor"
|
314 |
msgstr "Редактор"
|
315 |
|
316 |
+
#: ../includes/class-ure-lib.php:1661
|
317 |
msgid "Author"
|
318 |
msgstr "Автор"
|
319 |
|
320 |
+
#: ../includes/class-ure-lib.php:1662
|
321 |
msgid "Contributor"
|
322 |
msgstr "Участник"
|
323 |
|
324 |
+
#: ../includes/class-ure-lib.php:1663
|
325 |
msgid "Subscriber"
|
326 |
msgstr "Подписчик"
|
327 |
|
328 |
+
#: ../includes/class-ure-lib.php:1665
|
329 |
msgid "Switch themes"
|
330 |
msgstr "Менять темы"
|
331 |
|
332 |
+
#: ../includes/class-ure-lib.php:1666
|
333 |
msgid "Edit themes"
|
334 |
msgstr "Изменять темы"
|
335 |
|
336 |
+
#: ../includes/class-ure-lib.php:1667
|
337 |
msgid "Activate plugins"
|
338 |
msgstr "Активировать плагины"
|
339 |
|
340 |
+
#: ../includes/class-ure-lib.php:1668
|
341 |
msgid "Edit plugins"
|
342 |
msgstr "Редактировать плагины"
|
343 |
|
344 |
+
#: ../includes/class-ure-lib.php:1669
|
345 |
msgid "Edit users"
|
346 |
msgstr "Изменять пользователей"
|
347 |
|
348 |
+
#: ../includes/class-ure-lib.php:1670
|
349 |
msgid "Edit files"
|
350 |
msgstr "Изменять файлы"
|
351 |
|
352 |
+
#: ../includes/class-ure-lib.php:1671
|
353 |
msgid "Manage options"
|
354 |
msgstr "Управлять установками"
|
355 |
|
356 |
+
#: ../includes/class-ure-lib.php:1672
|
357 |
msgid "Moderate comments"
|
358 |
msgstr "Модерировать комментарии"
|
359 |
|
360 |
+
#: ../includes/class-ure-lib.php:1673
|
361 |
msgid "Manage categories"
|
362 |
msgstr "Управлять категориями"
|
363 |
|
364 |
+
#: ../includes/class-ure-lib.php:1674
|
365 |
msgid "Manage links"
|
366 |
msgstr "Управлять ссылками"
|
367 |
|
368 |
+
#: ../includes/class-ure-lib.php:1675
|
369 |
msgid "Upload files"
|
370 |
msgstr "Загружать файлы"
|
371 |
|
372 |
+
#: ../includes/class-ure-lib.php:1676
|
373 |
msgid "Import"
|
374 |
msgstr "Импорт"
|
375 |
|
376 |
+
#: ../includes/class-ure-lib.php:1677
|
377 |
msgid "Unfiltered html"
|
378 |
msgstr "html без фильтра"
|
379 |
|
380 |
+
#: ../includes/class-ure-lib.php:1678
|
381 |
msgid "Edit posts"
|
382 |
msgstr "Изменять статьи"
|
383 |
|
384 |
+
#: ../includes/class-ure-lib.php:1679
|
385 |
msgid "Edit others posts"
|
386 |
msgstr "Изменять чужие статьи"
|
387 |
|
388 |
+
#: ../includes/class-ure-lib.php:1680
|
389 |
msgid "Edit published posts"
|
390 |
msgstr "Редактировать опубликованные статьи"
|
391 |
|
392 |
+
#: ../includes/class-ure-lib.php:1681
|
393 |
msgid "Publish posts"
|
394 |
msgstr "Публиковать статьи"
|
395 |
|
396 |
+
#: ../includes/class-ure-lib.php:1682
|
397 |
msgid "Edit pages"
|
398 |
msgstr "Изменять страницы"
|
399 |
|
400 |
+
#: ../includes/class-ure-lib.php:1683
|
401 |
msgid "Read"
|
402 |
msgstr "Чтение"
|
403 |
|
404 |
+
#: ../includes/class-ure-lib.php:1684
|
405 |
msgid "Level 10"
|
406 |
msgstr "Уровень 10"
|
407 |
|
408 |
+
#: ../includes/class-ure-lib.php:1685
|
409 |
msgid "Level 9"
|
410 |
msgstr "Уровень 9"
|
411 |
|
412 |
+
#: ../includes/class-ure-lib.php:1686
|
413 |
msgid "Level 8"
|
414 |
msgstr "Уровень 9"
|
415 |
|
416 |
+
#: ../includes/class-ure-lib.php:1687
|
417 |
msgid "Level 7"
|
418 |
msgstr "Уровень 7"
|
419 |
|
420 |
+
#: ../includes/class-ure-lib.php:1688
|
421 |
msgid "Level 6"
|
422 |
msgstr "Уровень 6"
|
423 |
|
424 |
+
#: ../includes/class-ure-lib.php:1689
|
425 |
msgid "Level 5"
|
426 |
msgstr "Уровень 5"
|
427 |
|
428 |
+
#: ../includes/class-ure-lib.php:1690
|
429 |
msgid "Level 4"
|
430 |
msgstr "Уровень 4"
|
431 |
|
432 |
+
#: ../includes/class-ure-lib.php:1691
|
433 |
msgid "Level 3"
|
434 |
msgstr "Уровень 3"
|
435 |
|
436 |
+
#: ../includes/class-ure-lib.php:1692
|
437 |
msgid "Level 2"
|
438 |
msgstr "Уровень 2"
|
439 |
|
440 |
+
#: ../includes/class-ure-lib.php:1693
|
441 |
msgid "Level 1"
|
442 |
msgstr "Уровень 1"
|
443 |
|
444 |
+
#: ../includes/class-ure-lib.php:1694
|
445 |
msgid "Level 0"
|
446 |
msgstr "Уровень 0"
|
447 |
|
448 |
+
#: ../includes/class-ure-lib.php:1695
|
449 |
msgid "Edit others pages"
|
450 |
msgstr "Редактировать чужие страницы"
|
451 |
|
452 |
+
#: ../includes/class-ure-lib.php:1696
|
453 |
msgid "Edit published pages"
|
454 |
msgstr "Редактировать опубликованные страницы"
|
455 |
|
456 |
+
#: ../includes/class-ure-lib.php:1697
|
457 |
msgid "Publish pages"
|
458 |
msgstr "Публиковать страницы"
|
459 |
|
460 |
+
#: ../includes/class-ure-lib.php:1698
|
461 |
msgid "Delete pages"
|
462 |
msgstr "Удалять страницы"
|
463 |
|
464 |
+
#: ../includes/class-ure-lib.php:1699
|
465 |
msgid "Delete others pages"
|
466 |
msgstr "Удалить чужие страницы"
|
467 |
|
468 |
+
#: ../includes/class-ure-lib.php:1700
|
469 |
msgid "Delete published pages"
|
470 |
msgstr "Удалять опубликованные страницы"
|
471 |
|
472 |
+
#: ../includes/class-ure-lib.php:1701
|
473 |
msgid "Delete posts"
|
474 |
msgstr "Удалять статьи"
|
475 |
|
476 |
+
#: ../includes/class-ure-lib.php:1702
|
477 |
msgid "Delete others posts"
|
478 |
msgstr "Удалять чужие статьи"
|
479 |
|
480 |
+
#: ../includes/class-ure-lib.php:1703
|
481 |
msgid "Delete published posts"
|
482 |
msgstr "Удалять опубликованные статьи"
|
483 |
|
484 |
+
#: ../includes/class-ure-lib.php:1704
|
485 |
msgid "Delete private posts"
|
486 |
msgstr "Удалять частные статьи"
|
487 |
|
488 |
+
#: ../includes/class-ure-lib.php:1705
|
489 |
msgid "Edit private posts"
|
490 |
msgstr "Редактировать частные статьи"
|
491 |
|
492 |
+
#: ../includes/class-ure-lib.php:1706
|
493 |
msgid "Read private posts"
|
494 |
msgstr "Читать частные статьи"
|
495 |
|
496 |
+
#: ../includes/class-ure-lib.php:1707
|
497 |
msgid "Delete private pages"
|
498 |
msgstr "Удалять частные страницы"
|
499 |
|
500 |
+
#: ../includes/class-ure-lib.php:1708
|
501 |
msgid "Edit private pages"
|
502 |
msgstr "Редактировать частные страницы"
|
503 |
|
504 |
+
#: ../includes/class-ure-lib.php:1709
|
505 |
msgid "Read private pages"
|
506 |
msgstr "Читать частные страницы"
|
507 |
|
508 |
+
#: ../includes/class-ure-lib.php:1710
|
509 |
msgid "Delete users"
|
510 |
msgstr "Удалять пользователей"
|
511 |
|
512 |
+
#: ../includes/class-ure-lib.php:1711
|
513 |
msgid "Create users"
|
514 |
msgstr "Создавать пользователей"
|
515 |
|
516 |
+
#: ../includes/class-ure-lib.php:1712
|
517 |
msgid "Unfiltered upload"
|
518 |
msgstr "Загрузка без фильтра"
|
519 |
|
520 |
+
#: ../includes/class-ure-lib.php:1713
|
521 |
msgid "Edit dashboard"
|
522 |
msgstr "Изменять панель администратора"
|
523 |
|
524 |
+
#: ../includes/class-ure-lib.php:1714
|
525 |
msgid "Update plugins"
|
526 |
msgstr "Обновлять плагины"
|
527 |
|
528 |
+
#: ../includes/class-ure-lib.php:1715
|
529 |
msgid "Delete plugins"
|
530 |
msgstr "Удалять плагины"
|
531 |
|
532 |
+
#: ../includes/class-ure-lib.php:1716
|
533 |
msgid "Install plugins"
|
534 |
msgstr "Устанавливать плагины"
|
535 |
|
536 |
+
#: ../includes/class-ure-lib.php:1717
|
537 |
msgid "Update themes"
|
538 |
msgstr "Обновлять темы"
|
539 |
|
540 |
+
#: ../includes/class-ure-lib.php:1718
|
541 |
msgid "Install themes"
|
542 |
msgstr "Устанавливать темы"
|
543 |
|
544 |
+
#: ../includes/class-ure-lib.php:1719
|
545 |
msgid "Update core"
|
546 |
msgstr "Обновлять ядро"
|
547 |
|
548 |
+
#: ../includes/class-ure-lib.php:1720
|
549 |
msgid "List users"
|
550 |
msgstr "Список пользователей"
|
551 |
|
552 |
+
#: ../includes/class-ure-lib.php:1721
|
553 |
msgid "Remove users"
|
554 |
msgstr "Удалять пользователей"
|
555 |
|
556 |
+
#: ../includes/class-ure-lib.php:1722
|
557 |
msgid "Add users"
|
558 |
msgstr "Добавлять пользователей"
|
559 |
|
560 |
+
#: ../includes/class-ure-lib.php:1723
|
561 |
msgid "Promote users"
|
562 |
msgstr "Продвигать пользователей"
|
563 |
|
564 |
+
#: ../includes/class-ure-lib.php:1724
|
565 |
msgid "Edit theme options"
|
566 |
msgstr "Изменять настройки темы"
|
567 |
|
568 |
+
#: ../includes/class-ure-lib.php:1725
|
569 |
msgid "Delete themes"
|
570 |
msgstr "Удалять темы"
|
571 |
|
572 |
+
#: ../includes/class-ure-lib.php:1726
|
573 |
msgid "Export"
|
574 |
msgstr "Экспорт"
|
575 |
|
576 |
+
#: ../includes/class-ure-lib.php:1806
|
577 |
msgid "Error: Capability name must contain latin characters and digits only!"
|
578 |
msgstr "Ошибка: Имя должно содержать только латинские буквы и цифры"
|
579 |
|
580 |
+
#: ../includes/class-ure-lib.php:1819
|
581 |
#, php-format
|
582 |
msgid "Capability %s is added successfully"
|
583 |
msgstr "Возможность %s добавлена успешно"
|
584 |
|
585 |
+
#: ../includes/class-ure-lib.php:1821
|
586 |
#, php-format
|
587 |
msgid "Capability %s exists already"
|
588 |
msgstr "Возможность %s уже существует"
|
589 |
|
590 |
+
#: ../includes/class-ure-lib.php:1846
|
591 |
#, php-format
|
592 |
msgid "Error! You do not have permission to delete this capability: %s!"
|
593 |
msgstr "Ошибка! Вам запрещено удалять эту возможность: %s!"
|
594 |
|
595 |
+
#: ../includes/class-ure-lib.php:1865
|
596 |
#, php-format
|
597 |
msgid "Capability %s is removed successfully"
|
598 |
msgstr "Возможность %s удалена успешно"
|
599 |
|
600 |
+
#: ../includes/class-ure-lib.php:1962
|
601 |
msgid "About this Plugin:"
|
602 |
msgstr "Об этом плагине"
|
603 |
|
604 |
+
#: ../includes/class-ure-lib.php:1964
|
605 |
msgid "Author's website"
|
606 |
msgstr "Вебсайт автора"
|
607 |
|
608 |
+
#: ../includes/class-ure-lib.php:1965
|
609 |
msgid "Plugin webpage"
|
610 |
msgstr "Страница плагина"
|
611 |
|
612 |
+
#: ../includes/class-ure-lib.php:1967
|
613 |
msgid "FAQ"
|
614 |
msgstr "Часто задаваемые вопросы"
|
615 |
|
616 |
+
#: ../includes/class-ure-lib.php:2008
|
617 |
msgid "None"
|
618 |
msgstr "Нет"
|
619 |
|
620 |
+
#: ../includes/ure-user-edit.php:34
|
621 |
msgid "Change capabilities for user"
|
622 |
msgstr "Изменить возможности для пользователя"
|
623 |
|
624 |
+
#: ../includes/ure-user-edit.php:66
|
625 |
msgid "Primary Role:"
|
626 |
msgstr "Первичаная роль:"
|
627 |
|
628 |
+
#: ../includes/ure-user-edit.php:77
|
629 |
msgid "bbPress Role:"
|
630 |
msgstr "Роль bbPress:"
|
631 |
|
632 |
+
#: ../includes/ure-user-edit.php:87
|
633 |
msgid "Other Roles:"
|
634 |
msgstr "Другие Роли:"
|
635 |
|
636 |
+
#~ msgid "User"
|
637 |
+
#~ msgstr "Пользователь"
|
638 |
+
|
639 |
#~ msgid "Import Roles"
|
640 |
#~ msgstr "Импорт Ролей"
|
641 |
|
lang/ure-sr_RS.mo
DELETED
Binary file
|
lang/ure-sr_RS.po
DELETED
@@ -1,790 +0,0 @@
|
|
1 |
-
msgid ""
|
2 |
-
msgstr ""
|
3 |
-
"Project-Id-Version: User Role Editor 3.8\n"
|
4 |
-
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2013-05-17 11:18+0700\n"
|
6 |
-
"PO-Revision-Date: \n"
|
7 |
-
"Last-Translator: Vladimir Garagulya <vladimir@shinephp.com>\n"
|
8 |
-
"Language-Team: Diana S <diana@wpcouponshop.com>\n"
|
9 |
-
"Language: Serbian\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\n"
|
15 |
-
"X-Poedit-Basepath: .\n"
|
16 |
-
"X-Generator: Poedit 1.5.3\n"
|
17 |
-
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
18 |
-
"X-Poedit-Language: Serbian\n"
|
19 |
-
"X-Poedit-SearchPath-0: ..\n"
|
20 |
-
|
21 |
-
#: ../user-role-editor.php:34
|
22 |
-
#, fuzzy, php-format
|
23 |
-
msgid "User Role Editor requires PHP %s or newer."
|
24 |
-
msgstr "User Role Editor zahteva PHP 5.0 ili novije."
|
25 |
-
|
26 |
-
#: ../user-role-editor.php:35
|
27 |
-
#: ../user-role-editor.php:107
|
28 |
-
msgid "Please update!"
|
29 |
-
msgstr "Molim ažurirajte!"
|
30 |
-
|
31 |
-
#: ../user-role-editor.php:80
|
32 |
-
msgid "Only"
|
33 |
-
msgstr "Samo"
|
34 |
-
|
35 |
-
#: ../user-role-editor.php:80
|
36 |
-
msgid "is allowed to use"
|
37 |
-
msgstr "je dozvoljeno koristiti"
|
38 |
-
|
39 |
-
#: ../user-role-editor.php:86
|
40 |
-
#: ../user-role-editor.php:312
|
41 |
-
#: ../user-role-editor.php:368
|
42 |
-
msgid "User Role Editor"
|
43 |
-
msgstr "User Role Editor"
|
44 |
-
|
45 |
-
#: ../user-role-editor.php:106
|
46 |
-
#, fuzzy, php-format
|
47 |
-
msgid "User Role Editor requires WordPress %s or newer."
|
48 |
-
msgstr "User Role Editor zahteva WordPress 3.0 ili novije."
|
49 |
-
|
50 |
-
#: ../user-role-editor.php:139
|
51 |
-
msgid "Select All"
|
52 |
-
msgstr "Izaberi sve"
|
53 |
-
|
54 |
-
#: ../user-role-editor.php:140
|
55 |
-
msgid "Unselect All"
|
56 |
-
msgstr "Odštikliraj sve"
|
57 |
-
|
58 |
-
#: ../user-role-editor.php:141
|
59 |
-
msgid "Reverse"
|
60 |
-
msgstr "Obratno"
|
61 |
-
|
62 |
-
#: ../user-role-editor.php:142
|
63 |
-
msgid "Update"
|
64 |
-
msgstr "Ažuriraj"
|
65 |
-
|
66 |
-
#: ../user-role-editor.php:143
|
67 |
-
#, fuzzy
|
68 |
-
msgid "Please confirm permissions update"
|
69 |
-
msgstr "Molim potvrdite da biste nastavili dalje"
|
70 |
-
|
71 |
-
#: ../user-role-editor.php:144
|
72 |
-
msgid "Add New Role"
|
73 |
-
msgstr "Dodaj novu ulogu"
|
74 |
-
|
75 |
-
#: ../user-role-editor.php:145
|
76 |
-
#, fuzzy
|
77 |
-
msgid " Role name (ID) can not be empty!"
|
78 |
-
msgstr "Ime ne može biti prazno!"
|
79 |
-
|
80 |
-
#: ../user-role-editor.php:146
|
81 |
-
#, fuzzy
|
82 |
-
msgid " Role name (ID) must contain latin characters, digits, hyphens or underscore only!"
|
83 |
-
msgstr "Greška: Role ime može da sadrži samo latinična slova i brojeve. "
|
84 |
-
|
85 |
-
#: ../user-role-editor.php:147
|
86 |
-
#, fuzzy
|
87 |
-
msgid "Add Role"
|
88 |
-
msgstr "Dodaj novu ulogu"
|
89 |
-
|
90 |
-
#: ../user-role-editor.php:148
|
91 |
-
msgid "Delete Role"
|
92 |
-
msgstr "Izbriši ulogu"
|
93 |
-
|
94 |
-
#: ../user-role-editor.php:149
|
95 |
-
msgid "Cancel"
|
96 |
-
msgstr "Poništi"
|
97 |
-
|
98 |
-
#: ../user-role-editor.php:150
|
99 |
-
#, fuzzy
|
100 |
-
msgid "Add Capability"
|
101 |
-
msgstr "Dodaj novu mogućnost"
|
102 |
-
|
103 |
-
#: ../user-role-editor.php:151
|
104 |
-
#: ../user-role-editor.php:156
|
105 |
-
#, fuzzy
|
106 |
-
msgid "Delete Capability"
|
107 |
-
msgstr "Ukloni mogućnost"
|
108 |
-
|
109 |
-
#: ../user-role-editor.php:152
|
110 |
-
msgid "Reset"
|
111 |
-
msgstr "Reset"
|
112 |
-
|
113 |
-
#: ../user-role-editor.php:153
|
114 |
-
msgid "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?"
|
115 |
-
msgstr ""
|
116 |
-
|
117 |
-
#: ../user-role-editor.php:154
|
118 |
-
#, fuzzy
|
119 |
-
msgid "Default Role"
|
120 |
-
msgstr "Izbriši ulogu"
|
121 |
-
|
122 |
-
#: ../user-role-editor.php:155
|
123 |
-
#, fuzzy
|
124 |
-
msgid "Set New Default Role"
|
125 |
-
msgstr "Podesi kao standardnu ulogu korisnika"
|
126 |
-
|
127 |
-
#: ../user-role-editor.php:157
|
128 |
-
msgid "Warning! Be careful - removing critical capability could crash some plugin or other custom code"
|
129 |
-
msgstr "Upozorenje! Obratite pažnju - uklanjanje kritične mogućnosti može prouzrokovati kolaps plagin-a ili nekog bitnog koda."
|
130 |
-
|
131 |
-
#: ../user-role-editor.php:158
|
132 |
-
#, fuzzy
|
133 |
-
msgid " Capability name (ID) can not be empty!"
|
134 |
-
msgstr "Ime ne može biti prazno!"
|
135 |
-
|
136 |
-
#: ../user-role-editor.php:159
|
137 |
-
#, fuzzy
|
138 |
-
msgid " Capability name (ID) must contain latin characters, digits, hyphens or underscore only!"
|
139 |
-
msgstr "Greška: Ime može sadržati samo latinična slova i brojeve!"
|
140 |
-
|
141 |
-
#: ../user-role-editor.php:284
|
142 |
-
msgid "Settings"
|
143 |
-
msgstr "Podešavanja"
|
144 |
-
|
145 |
-
#: ../user-role-editor.php:294
|
146 |
-
#: ../includes/ure-options.php:209
|
147 |
-
msgid "Changelog"
|
148 |
-
msgstr "Izmeni log"
|
149 |
-
|
150 |
-
#: ../user-role-editor.php:342
|
151 |
-
msgid "Capabilities"
|
152 |
-
msgstr "Mogućnosti"
|
153 |
-
|
154 |
-
#: ../user-role-editor.php:371
|
155 |
-
#: ../user-role-editor.php:407
|
156 |
-
#, fuzzy
|
157 |
-
msgid "Other Roles"
|
158 |
-
msgstr "Izbriši ulogu"
|
159 |
-
|
160 |
-
#: ../user-role-editor.php:381
|
161 |
-
#, fuzzy
|
162 |
-
msgid "Edit"
|
163 |
-
msgstr "Urednik"
|
164 |
-
|
165 |
-
#: ../includes/ure-lib.php:35
|
166 |
-
msgid "Error is occur. Please check the log file."
|
167 |
-
msgstr "Pojavila se greška. Proverite log fajl. "
|
168 |
-
|
169 |
-
#: ../includes/ure-lib.php:364
|
170 |
-
msgid "Backup record is created for the current role capabilities"
|
171 |
-
msgstr "Rezervna kopija je napravljena sa trenutnim podešavanjima."
|
172 |
-
|
173 |
-
#: ../includes/ure-lib.php:481
|
174 |
-
#, fuzzy
|
175 |
-
msgid "Error: Role ID must contain latin characters, digits, hyphens or underscore only!"
|
176 |
-
msgstr "Greška: Role ime može da sadrži samo latinična slova i brojeve. "
|
177 |
-
|
178 |
-
#: ../includes/ure-lib.php:496
|
179 |
-
#, php-format
|
180 |
-
msgid "Role %s exists already"
|
181 |
-
msgstr "Uloga %s već postoji"
|
182 |
-
|
183 |
-
#: ../includes/ure-lib.php:511
|
184 |
-
msgid "Error is encountered during new role create operation"
|
185 |
-
msgstr "Došlo je do greške u pri kreiranju nove uloge."
|
186 |
-
|
187 |
-
#: ../includes/ure-lib.php:513
|
188 |
-
#, php-format
|
189 |
-
msgid "Role %s is created successfully"
|
190 |
-
msgstr "Uloga %s je uspešno kreirana."
|
191 |
-
|
192 |
-
#: ../includes/ure-lib.php:597
|
193 |
-
msgid "Error encountered during role delete operation"
|
194 |
-
msgstr "Došlo je do greške u toku operacije brisanja uloge."
|
195 |
-
|
196 |
-
#: ../includes/ure-lib.php:599
|
197 |
-
#, php-format
|
198 |
-
msgid "Role %s is deleted successfully"
|
199 |
-
msgstr "Uloga %s je uspešno izbrisana. "
|
200 |
-
|
201 |
-
#: ../includes/ure-lib.php:619
|
202 |
-
msgid "Error encountered during default role change operation"
|
203 |
-
msgstr "Došlo je do greške prilikom operacije standardne promene uloge"
|
204 |
-
|
205 |
-
#: ../includes/ure-lib.php:625
|
206 |
-
#, php-format
|
207 |
-
msgid "Default role for new users is set to %s successfully"
|
208 |
-
msgstr "Standardna uloga za nove korisnike je uspešno podešena na %s "
|
209 |
-
|
210 |
-
#: ../includes/ure-lib.php:652
|
211 |
-
msgid "Editor"
|
212 |
-
msgstr "Urednik"
|
213 |
-
|
214 |
-
#: ../includes/ure-lib.php:653
|
215 |
-
msgid "Author"
|
216 |
-
msgstr "Autor"
|
217 |
-
|
218 |
-
#: ../includes/ure-lib.php:654
|
219 |
-
msgid "Contributor"
|
220 |
-
msgstr "Saradnik"
|
221 |
-
|
222 |
-
#: ../includes/ure-lib.php:655
|
223 |
-
msgid "Subscriber"
|
224 |
-
msgstr "Pretplatnik"
|
225 |
-
|
226 |
-
#: ../includes/ure-lib.php:657
|
227 |
-
msgid "Switch themes"
|
228 |
-
msgstr "Promeni temu"
|
229 |
-
|
230 |
-
#: ../includes/ure-lib.php:658
|
231 |
-
msgid "Edit themes"
|
232 |
-
msgstr "Izmeni teme"
|
233 |
-
|
234 |
-
#: ../includes/ure-lib.php:659
|
235 |
-
msgid "Activate plugins"
|
236 |
-
msgstr "Aktivni plugin-i"
|
237 |
-
|
238 |
-
#: ../includes/ure-lib.php:660
|
239 |
-
msgid "Edit plugins"
|
240 |
-
msgstr "Izmeni plugin-e"
|
241 |
-
|
242 |
-
#: ../includes/ure-lib.php:661
|
243 |
-
msgid "Edit users"
|
244 |
-
msgstr "Izmeni korisnike"
|
245 |
-
|
246 |
-
#: ../includes/ure-lib.php:662
|
247 |
-
msgid "Edit files"
|
248 |
-
msgstr "Izmeni fajlove"
|
249 |
-
|
250 |
-
#: ../includes/ure-lib.php:663
|
251 |
-
msgid "Manage options"
|
252 |
-
msgstr "Upravljanje opcijama"
|
253 |
-
|
254 |
-
#: ../includes/ure-lib.php:664
|
255 |
-
msgid "Moderate comments"
|
256 |
-
msgstr "Izmeniti komentare"
|
257 |
-
|
258 |
-
#: ../includes/ure-lib.php:665
|
259 |
-
msgid "Manage categories"
|
260 |
-
msgstr "Upravljanje kategorijama"
|
261 |
-
|
262 |
-
#: ../includes/ure-lib.php:666
|
263 |
-
msgid "Manage links"
|
264 |
-
msgstr "Upravljanje linkovima"
|
265 |
-
|
266 |
-
#: ../includes/ure-lib.php:667
|
267 |
-
msgid "Upload files"
|
268 |
-
msgstr "Otpremi fajl"
|
269 |
-
|
270 |
-
#: ../includes/ure-lib.php:668
|
271 |
-
msgid "Import"
|
272 |
-
msgstr "Ubaci"
|
273 |
-
|
274 |
-
#: ../includes/ure-lib.php:669
|
275 |
-
msgid "Unfiltered html"
|
276 |
-
msgstr "Nefiltrirani html"
|
277 |
-
|
278 |
-
#: ../includes/ure-lib.php:670
|
279 |
-
msgid "Edit posts"
|
280 |
-
msgstr "Izmeni postove"
|
281 |
-
|
282 |
-
#: ../includes/ure-lib.php:671
|
283 |
-
msgid "Edit others posts"
|
284 |
-
msgstr "Izmeni tuđe postove"
|
285 |
-
|
286 |
-
#: ../includes/ure-lib.php:672
|
287 |
-
msgid "Edit published posts"
|
288 |
-
msgstr "Izmeni objavljene postove "
|
289 |
-
|
290 |
-
#: ../includes/ure-lib.php:673
|
291 |
-
msgid "Publish posts"
|
292 |
-
msgstr "Objavi postove"
|
293 |
-
|
294 |
-
#: ../includes/ure-lib.php:674
|
295 |
-
msgid "Edit pages"
|
296 |
-
msgstr "Izmeni stranice"
|
297 |
-
|
298 |
-
#: ../includes/ure-lib.php:675
|
299 |
-
msgid "Read"
|
300 |
-
msgstr "Čitaj"
|
301 |
-
|
302 |
-
#: ../includes/ure-lib.php:676
|
303 |
-
msgid "Level 10"
|
304 |
-
msgstr "Nivo 10"
|
305 |
-
|
306 |
-
#: ../includes/ure-lib.php:677
|
307 |
-
msgid "Level 9"
|
308 |
-
msgstr "Nivo 9"
|
309 |
-
|
310 |
-
#: ../includes/ure-lib.php:678
|
311 |
-
msgid "Level 8"
|
312 |
-
msgstr "Nivo 8"
|
313 |
-
|
314 |
-
#: ../includes/ure-lib.php:679
|
315 |
-
msgid "Level 7"
|
316 |
-
msgstr "Nivo 7"
|
317 |
-
|
318 |
-
#: ../includes/ure-lib.php:680
|
319 |
-
msgid "Level 6"
|
320 |
-
msgstr "Nivo 6"
|
321 |
-
|
322 |
-
#: ../includes/ure-lib.php:681
|
323 |
-
msgid "Level 5"
|
324 |
-
msgstr "Nivo 5"
|
325 |
-
|
326 |
-
#: ../includes/ure-lib.php:682
|
327 |
-
msgid "Level 4"
|
328 |
-
msgstr "Nivo 4"
|
329 |
-
|
330 |
-
#: ../includes/ure-lib.php:683
|
331 |
-
msgid "Level 3"
|
332 |
-
msgstr "Nivo 3"
|
333 |
-
|
334 |
-
#: ../includes/ure-lib.php:684
|
335 |
-
msgid "Level 2"
|
336 |
-
msgstr "Nivo 2"
|
337 |
-
|
338 |
-
#: ../includes/ure-lib.php:685
|
339 |
-
msgid "Level 1"
|
340 |
-
msgstr "Nivo 1"
|
341 |
-
|
342 |
-
#: ../includes/ure-lib.php:686
|
343 |
-
msgid "Level 0"
|
344 |
-
msgstr "Nivo 0"
|
345 |
-
|
346 |
-
#: ../includes/ure-lib.php:687
|
347 |
-
msgid "Edit others pages"
|
348 |
-
msgstr "Izmeni tuđe stranice"
|
349 |
-
|
350 |
-
#: ../includes/ure-lib.php:688
|
351 |
-
msgid "Edit published pages"
|
352 |
-
msgstr "Izmeni objavljene stranice"
|
353 |
-
|
354 |
-
#: ../includes/ure-lib.php:689
|
355 |
-
msgid "Publish pages"
|
356 |
-
msgstr "Objavi stranice"
|
357 |
-
|
358 |
-
#: ../includes/ure-lib.php:690
|
359 |
-
msgid "Delete pages"
|
360 |
-
msgstr "Izbriši stranice"
|
361 |
-
|
362 |
-
#: ../includes/ure-lib.php:691
|
363 |
-
msgid "Delete others pages"
|
364 |
-
msgstr "Izbriši tuđe stranice"
|
365 |
-
|
366 |
-
#: ../includes/ure-lib.php:692
|
367 |
-
msgid "Delete published pages"
|
368 |
-
msgstr "Izbriši objavljene stranice"
|
369 |
-
|
370 |
-
#: ../includes/ure-lib.php:693
|
371 |
-
msgid "Delete posts"
|
372 |
-
msgstr "Izbriši postove"
|
373 |
-
|
374 |
-
#: ../includes/ure-lib.php:694
|
375 |
-
msgid "Delete others posts"
|
376 |
-
msgstr "Izbriši tuđe postove"
|
377 |
-
|
378 |
-
#: ../includes/ure-lib.php:695
|
379 |
-
msgid "Delete published posts"
|
380 |
-
msgstr "Izbriši objavljene postove"
|
381 |
-
|
382 |
-
#: ../includes/ure-lib.php:696
|
383 |
-
msgid "Delete private posts"
|
384 |
-
msgstr "Izbriši privatne postove"
|
385 |
-
|
386 |
-
#: ../includes/ure-lib.php:697
|
387 |
-
msgid "Edit private posts"
|
388 |
-
msgstr "Izmeni privatne postove"
|
389 |
-
|
390 |
-
#: ../includes/ure-lib.php:698
|
391 |
-
msgid "Read private posts"
|
392 |
-
msgstr "Čitaj privatne postove "
|
393 |
-
|
394 |
-
#: ../includes/ure-lib.php:699
|
395 |
-
msgid "Delete private pages"
|
396 |
-
msgstr "Izbriši privatne stranice"
|
397 |
-
|
398 |
-
#: ../includes/ure-lib.php:700
|
399 |
-
msgid "Edit private pages"
|
400 |
-
msgstr "Izmeni privatne stranice"
|
401 |
-
|
402 |
-
#: ../includes/ure-lib.php:701
|
403 |
-
msgid "Read private pages"
|
404 |
-
msgstr "Čitaj privatne stranice "
|
405 |
-
|
406 |
-
#: ../includes/ure-lib.php:702
|
407 |
-
msgid "Delete users"
|
408 |
-
msgstr "Izbriši korisnike"
|
409 |
-
|
410 |
-
#: ../includes/ure-lib.php:703
|
411 |
-
msgid "Create users"
|
412 |
-
msgstr "Kreiraj korisnike"
|
413 |
-
|
414 |
-
#: ../includes/ure-lib.php:704
|
415 |
-
msgid "Unfiltered upload"
|
416 |
-
msgstr "Nefiltrirano otpremanje"
|
417 |
-
|
418 |
-
#: ../includes/ure-lib.php:705
|
419 |
-
msgid "Edit dashboard"
|
420 |
-
msgstr "Izmeni komandnu tablu"
|
421 |
-
|
422 |
-
#: ../includes/ure-lib.php:706
|
423 |
-
msgid "Update plugins"
|
424 |
-
msgstr "Ažuriraj plagin-ove"
|
425 |
-
|
426 |
-
#: ../includes/ure-lib.php:707
|
427 |
-
msgid "Delete plugins"
|
428 |
-
msgstr "Izbriši plagin-ove"
|
429 |
-
|
430 |
-
#: ../includes/ure-lib.php:708
|
431 |
-
msgid "Install plugins"
|
432 |
-
msgstr "Instaliraj plagin-ove"
|
433 |
-
|
434 |
-
#: ../includes/ure-lib.php:709
|
435 |
-
msgid "Update themes"
|
436 |
-
msgstr "Ažuriraj teme"
|
437 |
-
|
438 |
-
#: ../includes/ure-lib.php:710
|
439 |
-
msgid "Install themes"
|
440 |
-
msgstr "Instaliraj teme"
|
441 |
-
|
442 |
-
#: ../includes/ure-lib.php:711
|
443 |
-
msgid "Update core"
|
444 |
-
msgstr "Ažuriraj jezgro"
|
445 |
-
|
446 |
-
#: ../includes/ure-lib.php:712
|
447 |
-
msgid "List users"
|
448 |
-
msgstr "Lista korisnika"
|
449 |
-
|
450 |
-
#: ../includes/ure-lib.php:713
|
451 |
-
msgid "Remove users"
|
452 |
-
msgstr "Ukloni korisnike"
|
453 |
-
|
454 |
-
#: ../includes/ure-lib.php:714
|
455 |
-
msgid "Add users"
|
456 |
-
msgstr "Dodaj korisnike"
|
457 |
-
|
458 |
-
#: ../includes/ure-lib.php:715
|
459 |
-
msgid "Promote users"
|
460 |
-
msgstr "Promoviši korisnike"
|
461 |
-
|
462 |
-
#: ../includes/ure-lib.php:716
|
463 |
-
msgid "Edit theme options"
|
464 |
-
msgstr "Opcije izmene teme"
|
465 |
-
|
466 |
-
#: ../includes/ure-lib.php:717
|
467 |
-
msgid "Delete themes"
|
468 |
-
msgstr "Obriši teme"
|
469 |
-
|
470 |
-
#: ../includes/ure-lib.php:718
|
471 |
-
msgid "Export"
|
472 |
-
msgstr "Otpremi "
|
473 |
-
|
474 |
-
#: ../includes/ure-lib.php:834
|
475 |
-
msgid "Error: Capability name must contain latin characters and digits only!"
|
476 |
-
msgstr "Greška: Ime može sadržati samo latinična slova i brojeve!"
|
477 |
-
|
478 |
-
#: ../includes/ure-lib.php:846
|
479 |
-
#, php-format
|
480 |
-
msgid "Capability %s is added successfully"
|
481 |
-
msgstr "Mogućnost %s je uspešno dodat"
|
482 |
-
|
483 |
-
#: ../includes/ure-lib.php:848
|
484 |
-
#, php-format
|
485 |
-
msgid "Capability %s exists already"
|
486 |
-
msgstr "Mogućnost %s već postoji"
|
487 |
-
|
488 |
-
#: ../includes/ure-lib.php:997
|
489 |
-
#, php-format
|
490 |
-
msgid "Error! You do not have permission to delete this capability: %s!"
|
491 |
-
msgstr "Greška! Nemate dozvolu da obrišete ovu mogućnost: %s!"
|
492 |
-
|
493 |
-
#: ../includes/ure-lib.php:1016
|
494 |
-
#, php-format
|
495 |
-
msgid "Capability %s is removed successfully"
|
496 |
-
msgstr "Mogućnost %s je uspešno uklonjena"
|
497 |
-
|
498 |
-
#: ../includes/ure-lib.php:1083
|
499 |
-
msgid "Help"
|
500 |
-
msgstr "Pomoć"
|
501 |
-
|
502 |
-
#: ../includes/ure-role-edit.php:29
|
503 |
-
msgid "None"
|
504 |
-
msgstr "Nijedan-na"
|
505 |
-
|
506 |
-
#: ../includes/ure-role-edit.php:67
|
507 |
-
msgid "Select Role and change its capabilities list"
|
508 |
-
msgstr "Izaberi ulogu i promeni njenu listu mogućnosti"
|
509 |
-
|
510 |
-
#: ../includes/ure-role-edit.php:69
|
511 |
-
#: ../includes/ure-role-edit.php:166
|
512 |
-
msgid "Select Role:"
|
513 |
-
msgstr "Izaberi ulogu:"
|
514 |
-
|
515 |
-
#: ../includes/ure-role-edit.php:79
|
516 |
-
#: ../includes/ure-user-edit.php:38
|
517 |
-
msgid "Show capabilities in human readable form"
|
518 |
-
msgstr "Pokazi mogućnosti u formatu koji se može pročitati"
|
519 |
-
|
520 |
-
#: ../includes/ure-role-edit.php:88
|
521 |
-
#: ../includes/ure-user-edit.php:47
|
522 |
-
msgid "Show deprecated capabilities"
|
523 |
-
msgstr "Pokaži zastarele mogucnosti "
|
524 |
-
|
525 |
-
#: ../includes/ure-role-edit.php:92
|
526 |
-
msgid "If checked, then apply action to ALL sites of this Network"
|
527 |
-
msgstr "Ukoliko je štiklirano, odradi akciju na SVIM sajtovima u ovoj mreži"
|
528 |
-
|
529 |
-
#: ../includes/ure-role-edit.php:102
|
530 |
-
msgid "Apply to All Sites"
|
531 |
-
msgstr "Primeni na svim sajtovima"
|
532 |
-
|
533 |
-
#: ../includes/ure-role-edit.php:109
|
534 |
-
#: ../includes/ure-user-edit.php:88
|
535 |
-
msgid "Core capabilities:"
|
536 |
-
msgstr "Mogućnosti jezgra:"
|
537 |
-
|
538 |
-
#: ../includes/ure-role-edit.php:124
|
539 |
-
#: ../includes/ure-user-edit.php:103
|
540 |
-
msgid "Custom capabilities:"
|
541 |
-
msgstr "Zasebne mogućnosti"
|
542 |
-
|
543 |
-
#: ../includes/ure-role-edit.php:155
|
544 |
-
msgid "Role name (ID): "
|
545 |
-
msgstr ""
|
546 |
-
|
547 |
-
#: ../includes/ure-role-edit.php:157
|
548 |
-
msgid "Display Role Name: "
|
549 |
-
msgstr ""
|
550 |
-
|
551 |
-
#: ../includes/ure-role-edit.php:159
|
552 |
-
msgid "Make copy of: "
|
553 |
-
msgstr "Napravi kopiju:"
|
554 |
-
|
555 |
-
#: ../includes/ure-role-edit.php:181
|
556 |
-
#, fuzzy
|
557 |
-
msgid "Delete:"
|
558 |
-
msgstr "Izbriši"
|
559 |
-
|
560 |
-
#: ../includes/ure-role-edit.php:188
|
561 |
-
msgid "Capability name (ID): "
|
562 |
-
msgstr ""
|
563 |
-
|
564 |
-
#: ../includes/ure-user-edit.php:22
|
565 |
-
msgid "Change capabilities for user"
|
566 |
-
msgstr "Izmeniti mogućnosti za korisnika"
|
567 |
-
|
568 |
-
#: ../includes/ure-user-edit.php:52
|
569 |
-
msgid "Primary Role:"
|
570 |
-
msgstr ""
|
571 |
-
|
572 |
-
#: ../includes/ure-user-edit.php:62
|
573 |
-
msgid "bbPress Role:"
|
574 |
-
msgstr ""
|
575 |
-
|
576 |
-
#: ../includes/ure-user-edit.php:72
|
577 |
-
#, fuzzy
|
578 |
-
msgid "Other Roles:"
|
579 |
-
msgstr "Izbriši ulogu"
|
580 |
-
|
581 |
-
#: ../includes/ure-options.php:65
|
582 |
-
#, fuzzy
|
583 |
-
msgid "User Roles are restored to WordPress default values. "
|
584 |
-
msgstr "Uloge korisnika su vraćene sa rezervne kopije"
|
585 |
-
|
586 |
-
#: ../includes/ure-options.php:136
|
587 |
-
msgid "Error: "
|
588 |
-
msgstr "Greška:"
|
589 |
-
|
590 |
-
#: ../includes/ure-options.php:136
|
591 |
-
#: ../includes/ure-options.php:156
|
592 |
-
msgid "Role"
|
593 |
-
msgstr "Uloga"
|
594 |
-
|
595 |
-
#: ../includes/ure-options.php:136
|
596 |
-
msgid "does not exist"
|
597 |
-
msgstr "ne postoji"
|
598 |
-
|
599 |
-
#: ../includes/ure-options.php:156
|
600 |
-
msgid "is updated successfully"
|
601 |
-
msgstr "je uspešno ažuriran"
|
602 |
-
|
603 |
-
#: ../includes/ure-options.php:161
|
604 |
-
#: ../includes/ure-options.php:174
|
605 |
-
#, fuzzy
|
606 |
-
msgid "Error occured during role update"
|
607 |
-
msgstr "Došlo je do greške u toku operacije brisanja uloge."
|
608 |
-
|
609 |
-
#: ../includes/ure-options.php:169
|
610 |
-
msgid "User"
|
611 |
-
msgstr "Korisnik"
|
612 |
-
|
613 |
-
#: ../includes/ure-options.php:169
|
614 |
-
msgid "capabilities are updated successfully"
|
615 |
-
msgstr "Mogućnosti su uspešno ažurirane"
|
616 |
-
|
617 |
-
#: ../includes/ure-options.php:206
|
618 |
-
msgid "About this Plugin:"
|
619 |
-
msgstr "O ovoj alatki:"
|
620 |
-
|
621 |
-
#: ../includes/ure-options.php:207
|
622 |
-
msgid "Author's website"
|
623 |
-
msgstr "Vebsajt autora"
|
624 |
-
|
625 |
-
#: ../includes/ure-options.php:208
|
626 |
-
msgid "Plugin webpage"
|
627 |
-
msgstr "Veb stranica alatke"
|
628 |
-
|
629 |
-
#: ../includes/ure-options.php:210
|
630 |
-
msgid "FAQ"
|
631 |
-
msgstr "Često postavljana pitanja"
|
632 |
-
|
633 |
-
#~ msgid "Database operation error. Check log file."
|
634 |
-
#~ msgstr "Greška u bazi podataka. Proverite log fajl."
|
635 |
-
|
636 |
-
#~ msgid ""
|
637 |
-
#~ "No backup data. It is created automatically before the first role data "
|
638 |
-
#~ "update."
|
639 |
-
#~ msgstr "Nema rezervne kopije. Kreira se automatski pre prve izmene."
|
640 |
-
|
641 |
-
#~ msgid " Name must contain latin characters and digits only!"
|
642 |
-
#~ msgstr "Ime moze sadržati samo latinična slova i brojeve!"
|
643 |
-
|
644 |
-
#~ msgid "Change Default Role"
|
645 |
-
#~ msgstr "Promeni standardnu ulogu"
|
646 |
-
|
647 |
-
#~ msgid ""
|
648 |
-
#~ "Restore Roles from backup copy. Be careful, backup was created when you "
|
649 |
-
#~ "started URE 1st time. All changes you made after that will be lost"
|
650 |
-
#~ msgstr ""
|
651 |
-
#~ "Povrati ulogu s rezervne kopije. Obratite pažnju, rezervna kopija je "
|
652 |
-
#~ "napravljena kada ste poceli koristiti URE prvi put. Sve promene nastale "
|
653 |
-
#~ "nakon toga bice poništene. "
|
654 |
-
|
655 |
-
#~ msgid "Role \"%s\" update: please confirm to continue"
|
656 |
-
#~ msgstr "Uloga \"%s\" ažuriranje: molim potvrdite da biste nastavili dalje"
|
657 |
-
|
658 |
-
#~ msgid "Save Changes"
|
659 |
-
#~ msgstr "Sačuvaj izmene"
|
660 |
-
|
661 |
-
#~ msgid "Cancel not saved changes"
|
662 |
-
#~ msgstr "Poništi promene koje nisu sačuvane"
|
663 |
-
|
664 |
-
#~ msgid "Select All Capabilities"
|
665 |
-
#~ msgstr "Izaberi sve mogućnosti"
|
666 |
-
|
667 |
-
#~ msgid "Unselect All Capabilities"
|
668 |
-
#~ msgstr "Odštikliraj sve mogućnosti"
|
669 |
-
|
670 |
-
#~ msgid "Turn checked capabilities off and vise versa"
|
671 |
-
#~ msgstr "Isključi odabrane mogućnosti i obratno "
|
672 |
-
|
673 |
-
#~ msgid "Restore Roles from backup copy"
|
674 |
-
#~ msgstr "Povrati Uloge s rezervne kopije"
|
675 |
-
|
676 |
-
#~ msgid "Name: "
|
677 |
-
#~ msgstr "Ime:"
|
678 |
-
|
679 |
-
#~ msgid "Add"
|
680 |
-
#~ msgstr "Dodaj"
|
681 |
-
|
682 |
-
#~ msgid "Add New User Role"
|
683 |
-
#~ msgstr "Dodaj novu ulogu korisnika"
|
684 |
-
|
685 |
-
#~ msgid "Default Role for New User"
|
686 |
-
#~ msgstr "Standardna uloga za novog korisnika"
|
687 |
-
|
688 |
-
#~ msgid "Change"
|
689 |
-
#~ msgstr "Izmeni"
|
690 |
-
|
691 |
-
#~ msgid "Delete User Role"
|
692 |
-
#~ msgstr "Izbriši ulogu korisnika"
|
693 |
-
|
694 |
-
#~ msgid "Remove"
|
695 |
-
#~ msgstr "Ukloni"
|
696 |
-
|
697 |
-
#~ msgid "Remove User Capability"
|
698 |
-
#~ msgstr "Ukloni mogućnost korisnika"
|
699 |
-
|
700 |
-
#~ msgid "User \"%s\" update: please confirm to continue"
|
701 |
-
#~ msgstr ""
|
702 |
-
#~ "Azuriranje korisnika \"%s\": molim potvrdite da biste nastavili dalje"
|
703 |
-
|
704 |
-
#~ msgid "Role:"
|
705 |
-
#~ msgstr "Uloga:"
|
706 |
-
|
707 |
-
#~ msgid "Add capabilities to this user:"
|
708 |
-
#~ msgstr "Dodaj mogućnosti za ovog korisnika:"
|
709 |
-
|
710 |
-
#~ msgid "Greetings"
|
711 |
-
#~ msgstr "Pozdrav"
|
712 |
-
|
713 |
-
#~ msgid "Greetings:"
|
714 |
-
#~ msgstr "Pozdrav:"
|
715 |
-
|
716 |
-
#~ msgid "It's me, the author"
|
717 |
-
#~ msgstr "To sam ja, autor"
|
718 |
-
|
719 |
-
#~ msgid "For the help with Belorussian translation"
|
720 |
-
#~ msgstr "Za pomoć sa Beloruskim prevodom"
|
721 |
-
|
722 |
-
#~ msgid "For the help with Brasilian translation"
|
723 |
-
#~ msgstr "Za pomoć sa Brazilskim prevodom"
|
724 |
-
|
725 |
-
#~ msgid "For the help with Brasilian Portuguese translation"
|
726 |
-
#~ msgstr "Za pomoć sa Brazilsko Portugalskim prevodom"
|
727 |
-
|
728 |
-
#~ msgid "For the help with Chinese translation"
|
729 |
-
#~ msgstr "Za pomoć sa Kineskim prevodom"
|
730 |
-
|
731 |
-
#~ msgid "For the help with Dutch translation"
|
732 |
-
#~ msgstr "Za pomoć sa Holandskim prevodom"
|
733 |
-
|
734 |
-
#~ msgid "For the help with Finnish translation"
|
735 |
-
#~ msgstr "Za pomoć sa Finskim prevodom"
|
736 |
-
|
737 |
-
#~ msgid "For the help with French translation"
|
738 |
-
#~ msgstr "Za pomoć sa Francuskim prevodom"
|
739 |
-
|
740 |
-
#~ msgid "For the help with German translation"
|
741 |
-
#~ msgstr "Za pomoć sa Nemačkim prevodom"
|
742 |
-
|
743 |
-
#~ msgid "For the help with Hebrew translation"
|
744 |
-
#~ msgstr "Za pomoć sa Jevrejskim prevodom"
|
745 |
-
|
746 |
-
#~ msgid "For the help with Hindi translation"
|
747 |
-
#~ msgstr "Za pomoć sa Indijskim prevodom"
|
748 |
-
|
749 |
-
#~ msgid "For the help with Hungarian translation"
|
750 |
-
#~ msgstr "For the help with Hungarian translation"
|
751 |
-
|
752 |
-
#~ msgid "For the help with Italian translation"
|
753 |
-
#~ msgstr "Za pomoć sa Italijanskim prevodom"
|
754 |
-
|
755 |
-
#~ msgid "For the help with Japanese translation"
|
756 |
-
#~ msgstr "Za pomoć sa Japanskim prevodom"
|
757 |
-
|
758 |
-
#~ msgid "For the help with Lithuanian translation"
|
759 |
-
#~ msgstr "Za pomoć sa Litvanskim prevodom"
|
760 |
-
|
761 |
-
#~ msgid "For the help with Persian translation"
|
762 |
-
#~ msgstr "Za pomoć sa Persijskim prevodom"
|
763 |
-
|
764 |
-
#~ msgid "For the help with Polish translation"
|
765 |
-
#~ msgstr "Za pomoć sa Poljskim prevodom"
|
766 |
-
|
767 |
-
#~ msgid "For the help with Spanish translation"
|
768 |
-
#~ msgstr "Za pomoć sa Španskim prevodom"
|
769 |
-
|
770 |
-
#~ msgid "For the updated Swedish translation"
|
771 |
-
#~ msgstr "Za ažuriran Švedski prevod"
|
772 |
-
|
773 |
-
#~ msgid "For the help with Swedish translation"
|
774 |
-
#~ msgstr "Za pomoć sa Švedskim prevodom"
|
775 |
-
|
776 |
-
#~ msgid "For the help with Turkish translation"
|
777 |
-
#~ msgstr "Za pomoć sa Turskim prevodom"
|
778 |
-
|
779 |
-
#~ msgid "For the code to hide administrator role"
|
780 |
-
#~ msgstr "Da kod sakrije administratorovu ulogu"
|
781 |
-
|
782 |
-
#~ msgid "For the code enhancement suggestion"
|
783 |
-
#~ msgstr "Za predlog uvećanja koda"
|
784 |
-
|
785 |
-
#~ msgid ""
|
786 |
-
#~ "Do you wish to see your name with link to your site here? You are "
|
787 |
-
#~ "welcome! Your help with translation and new ideas are very appreciated."
|
788 |
-
#~ msgstr ""
|
789 |
-
#~ "Da li zelite da vidite Vaše ime i link do vašeg sajta ovde? Dobrodošli "
|
790 |
-
#~ "ste! Vaša pomoć s prevodom i nove ideje su veoma cenjene."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
lang/ure-sv_SE.mo
DELETED
Binary file
|
lang/ure-sv_SE.po
DELETED
@@ -1,780 +0,0 @@
|
|
1 |
-
msgid ""
|
2 |
-
msgstr ""
|
3 |
-
"Project-Id-Version: User Role Editor 2.0\n"
|
4 |
-
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2013-05-17 11:18+0700\n"
|
6 |
-
"PO-Revision-Date: \n"
|
7 |
-
"Last-Translator: Vladimir Garagulya <vladimir@shinephp.com>\n"
|
8 |
-
"Language-Team: ShinePHP.com <vladimir@shinephp.com>\n"
|
9 |
-
"Language: \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-Language: Swedish\n"
|
14 |
-
"X-Poedit-Country: SWEDEN\n"
|
15 |
-
"X-Poedit-SourceCharset: utf-8\n"
|
16 |
-
"X-Poedit-KeywordsList: __;_e\n"
|
17 |
-
"X-Poedit-Basepath: .\n"
|
18 |
-
"X-Poedit-SearchPath-0: ..\n"
|
19 |
-
|
20 |
-
#: ../user-role-editor.php:34
|
21 |
-
#, fuzzy, php-format
|
22 |
-
msgid "User Role Editor requires PHP %s or newer."
|
23 |
-
msgstr "User Role Editor kräver PHP 5.0 eller nyare."
|
24 |
-
|
25 |
-
#: ../user-role-editor.php:35
|
26 |
-
#: ../user-role-editor.php:107
|
27 |
-
msgid "Please update!"
|
28 |
-
msgstr "Vänligen uppdatera!"
|
29 |
-
|
30 |
-
#: ../user-role-editor.php:80
|
31 |
-
msgid "Only"
|
32 |
-
msgstr "Bara"
|
33 |
-
|
34 |
-
#: ../user-role-editor.php:80
|
35 |
-
msgid "is allowed to use"
|
36 |
-
msgstr "får använda"
|
37 |
-
|
38 |
-
#: ../user-role-editor.php:86
|
39 |
-
#: ../user-role-editor.php:312
|
40 |
-
#: ../user-role-editor.php:368
|
41 |
-
msgid "User Role Editor"
|
42 |
-
msgstr "User Role Editor"
|
43 |
-
|
44 |
-
#: ../user-role-editor.php:106
|
45 |
-
#, fuzzy, php-format
|
46 |
-
msgid "User Role Editor requires WordPress %s or newer."
|
47 |
-
msgstr "User Role Editor kräver WordPress 3.0 eller nyare."
|
48 |
-
|
49 |
-
#: ../user-role-editor.php:139
|
50 |
-
msgid "Select All"
|
51 |
-
msgstr ""
|
52 |
-
|
53 |
-
#: ../user-role-editor.php:140
|
54 |
-
msgid "Unselect All"
|
55 |
-
msgstr ""
|
56 |
-
|
57 |
-
#: ../user-role-editor.php:141
|
58 |
-
msgid "Reverse"
|
59 |
-
msgstr ""
|
60 |
-
|
61 |
-
#: ../user-role-editor.php:142
|
62 |
-
msgid "Update"
|
63 |
-
msgstr "Uppdatera"
|
64 |
-
|
65 |
-
#: ../user-role-editor.php:143
|
66 |
-
#, fuzzy
|
67 |
-
msgid "Please confirm permissions update"
|
68 |
-
msgstr "Vänligen bekräfta för att fortsätta"
|
69 |
-
|
70 |
-
#: ../user-role-editor.php:144
|
71 |
-
msgid "Add New Role"
|
72 |
-
msgstr "Lägg till ny roll"
|
73 |
-
|
74 |
-
#: ../user-role-editor.php:145
|
75 |
-
#, fuzzy
|
76 |
-
msgid " Role name (ID) can not be empty!"
|
77 |
-
msgstr " Namnet får inte vara tomt!"
|
78 |
-
|
79 |
-
#: ../user-role-editor.php:146
|
80 |
-
#, fuzzy
|
81 |
-
msgid " Role name (ID) must contain latin characters, digits, hyphens or underscore only!"
|
82 |
-
msgstr "Fel: Rollnamnet får endast innehålla romerska tecken och siffror! "
|
83 |
-
|
84 |
-
#: ../user-role-editor.php:147
|
85 |
-
#, fuzzy
|
86 |
-
msgid "Add Role"
|
87 |
-
msgstr "Lägg till ny roll"
|
88 |
-
|
89 |
-
#: ../user-role-editor.php:148
|
90 |
-
msgid "Delete Role"
|
91 |
-
msgstr "Radera roll"
|
92 |
-
|
93 |
-
#: ../user-role-editor.php:149
|
94 |
-
msgid "Cancel"
|
95 |
-
msgstr "Ångra"
|
96 |
-
|
97 |
-
#: ../user-role-editor.php:150
|
98 |
-
#, fuzzy
|
99 |
-
msgid "Add Capability"
|
100 |
-
msgstr "Lägg till ny förmåga"
|
101 |
-
|
102 |
-
#: ../user-role-editor.php:151
|
103 |
-
#: ../user-role-editor.php:156
|
104 |
-
#, fuzzy
|
105 |
-
msgid "Delete Capability"
|
106 |
-
msgstr "Ta bort förmåga"
|
107 |
-
|
108 |
-
#: ../user-role-editor.php:152
|
109 |
-
msgid "Reset"
|
110 |
-
msgstr "Återställ"
|
111 |
-
|
112 |
-
#: ../user-role-editor.php:153
|
113 |
-
msgid "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?"
|
114 |
-
msgstr ""
|
115 |
-
|
116 |
-
#: ../user-role-editor.php:154
|
117 |
-
#, fuzzy
|
118 |
-
msgid "Default Role"
|
119 |
-
msgstr "Radera roll"
|
120 |
-
|
121 |
-
#: ../user-role-editor.php:155
|
122 |
-
#, fuzzy
|
123 |
-
msgid "Set New Default Role"
|
124 |
-
msgstr "Ange som standardroll"
|
125 |
-
|
126 |
-
#: ../user-role-editor.php:157
|
127 |
-
msgid "Warning! Be careful - removing critical capability could crash some plugin or other custom code"
|
128 |
-
msgstr "Varning! Var försiktig - borttagning av kritiska förmågor kan krascha vissa tillägg"
|
129 |
-
|
130 |
-
#: ../user-role-editor.php:158
|
131 |
-
#, fuzzy
|
132 |
-
msgid " Capability name (ID) can not be empty!"
|
133 |
-
msgstr " Namnet får inte vara tomt!"
|
134 |
-
|
135 |
-
#: ../user-role-editor.php:159
|
136 |
-
#, fuzzy
|
137 |
-
msgid " Capability name (ID) must contain latin characters, digits, hyphens or underscore only!"
|
138 |
-
msgstr "Fel: Namn på förmågor får endast innehålla romerska tecken och siffror!"
|
139 |
-
|
140 |
-
#: ../user-role-editor.php:284
|
141 |
-
msgid "Settings"
|
142 |
-
msgstr "Inställningar"
|
143 |
-
|
144 |
-
#: ../user-role-editor.php:294
|
145 |
-
#: ../includes/ure-options.php:209
|
146 |
-
msgid "Changelog"
|
147 |
-
msgstr "Logg över ändringar"
|
148 |
-
|
149 |
-
#: ../user-role-editor.php:342
|
150 |
-
msgid "Capabilities"
|
151 |
-
msgstr "Förmågor"
|
152 |
-
|
153 |
-
#: ../user-role-editor.php:371
|
154 |
-
#: ../user-role-editor.php:407
|
155 |
-
#, fuzzy
|
156 |
-
msgid "Other Roles"
|
157 |
-
msgstr "Radera roll"
|
158 |
-
|
159 |
-
#: ../user-role-editor.php:381
|
160 |
-
#, fuzzy
|
161 |
-
msgid "Edit"
|
162 |
-
msgstr "Utgivare"
|
163 |
-
|
164 |
-
#: ../includes/ure-lib.php:35
|
165 |
-
msgid "Error is occur. Please check the log file."
|
166 |
-
msgstr "Ett fel inträffade. Vänligen kontrollera loggfilen."
|
167 |
-
|
168 |
-
#: ../includes/ure-lib.php:364
|
169 |
-
msgid "Backup record is created for the current role capabilities"
|
170 |
-
msgstr "Säkerhetskopia har skapats för aktuella rollresurser"
|
171 |
-
|
172 |
-
#: ../includes/ure-lib.php:481
|
173 |
-
#, fuzzy
|
174 |
-
msgid "Error: Role ID must contain latin characters, digits, hyphens or underscore only!"
|
175 |
-
msgstr "Fel: Rollnamnet får endast innehålla romerska tecken och siffror! "
|
176 |
-
|
177 |
-
#: ../includes/ure-lib.php:496
|
178 |
-
#, php-format
|
179 |
-
msgid "Role %s exists already"
|
180 |
-
msgstr "Rollen %s existerar redan"
|
181 |
-
|
182 |
-
#: ../includes/ure-lib.php:511
|
183 |
-
msgid "Error is encountered during new role create operation"
|
184 |
-
msgstr "Fel uppstod vid skapande av ny roll"
|
185 |
-
|
186 |
-
#: ../includes/ure-lib.php:513
|
187 |
-
#, php-format
|
188 |
-
msgid "Role %s is created successfully"
|
189 |
-
msgstr "Skapade rollen %s"
|
190 |
-
|
191 |
-
#: ../includes/ure-lib.php:597
|
192 |
-
msgid "Error encountered during role delete operation"
|
193 |
-
msgstr "Fel uppstod vid radering av roll"
|
194 |
-
|
195 |
-
#: ../includes/ure-lib.php:599
|
196 |
-
#, php-format
|
197 |
-
msgid "Role %s is deleted successfully"
|
198 |
-
msgstr "Raderade rollen %s"
|
199 |
-
|
200 |
-
#: ../includes/ure-lib.php:619
|
201 |
-
msgid "Error encountered during default role change operation"
|
202 |
-
msgstr "Fel uppstod vid byte av standardroll"
|
203 |
-
|
204 |
-
#: ../includes/ure-lib.php:625
|
205 |
-
#, php-format
|
206 |
-
msgid "Default role for new users is set to %s successfully"
|
207 |
-
msgstr "Standardroll för nya användare satt till %s"
|
208 |
-
|
209 |
-
#: ../includes/ure-lib.php:652
|
210 |
-
msgid "Editor"
|
211 |
-
msgstr "Utgivare"
|
212 |
-
|
213 |
-
#: ../includes/ure-lib.php:653
|
214 |
-
msgid "Author"
|
215 |
-
msgstr "Författare"
|
216 |
-
|
217 |
-
#: ../includes/ure-lib.php:654
|
218 |
-
msgid "Contributor"
|
219 |
-
msgstr "Medarbetare"
|
220 |
-
|
221 |
-
#: ../includes/ure-lib.php:655
|
222 |
-
msgid "Subscriber"
|
223 |
-
msgstr "Prenumerant"
|
224 |
-
|
225 |
-
#: ../includes/ure-lib.php:657
|
226 |
-
msgid "Switch themes"
|
227 |
-
msgstr "Byt teman"
|
228 |
-
|
229 |
-
#: ../includes/ure-lib.php:658
|
230 |
-
msgid "Edit themes"
|
231 |
-
msgstr "Redigera teman"
|
232 |
-
|
233 |
-
#: ../includes/ure-lib.php:659
|
234 |
-
msgid "Activate plugins"
|
235 |
-
msgstr "Aktivera tillägg"
|
236 |
-
|
237 |
-
#: ../includes/ure-lib.php:660
|
238 |
-
msgid "Edit plugins"
|
239 |
-
msgstr "Redigera tillägg"
|
240 |
-
|
241 |
-
#: ../includes/ure-lib.php:661
|
242 |
-
msgid "Edit users"
|
243 |
-
msgstr "Redigera användare"
|
244 |
-
|
245 |
-
#: ../includes/ure-lib.php:662
|
246 |
-
msgid "Edit files"
|
247 |
-
msgstr "Redigera filer"
|
248 |
-
|
249 |
-
#: ../includes/ure-lib.php:663
|
250 |
-
msgid "Manage options"
|
251 |
-
msgstr "Hantera inställningar"
|
252 |
-
|
253 |
-
#: ../includes/ure-lib.php:664
|
254 |
-
msgid "Moderate comments"
|
255 |
-
msgstr "Moderera kommentarer"
|
256 |
-
|
257 |
-
#: ../includes/ure-lib.php:665
|
258 |
-
msgid "Manage categories"
|
259 |
-
msgstr "Hantera kategorier"
|
260 |
-
|
261 |
-
#: ../includes/ure-lib.php:666
|
262 |
-
msgid "Manage links"
|
263 |
-
msgstr "Hantera länkar"
|
264 |
-
|
265 |
-
#: ../includes/ure-lib.php:667
|
266 |
-
msgid "Upload files"
|
267 |
-
msgstr "Ladda upp filer"
|
268 |
-
|
269 |
-
#: ../includes/ure-lib.php:668
|
270 |
-
msgid "Import"
|
271 |
-
msgstr "Importera"
|
272 |
-
|
273 |
-
#: ../includes/ure-lib.php:669
|
274 |
-
msgid "Unfiltered html"
|
275 |
-
msgstr "Ofiltrerad html"
|
276 |
-
|
277 |
-
#: ../includes/ure-lib.php:670
|
278 |
-
msgid "Edit posts"
|
279 |
-
msgstr "Redigera inlägg"
|
280 |
-
|
281 |
-
#: ../includes/ure-lib.php:671
|
282 |
-
msgid "Edit others posts"
|
283 |
-
msgstr "Redigera andras inlägg"
|
284 |
-
|
285 |
-
#: ../includes/ure-lib.php:672
|
286 |
-
msgid "Edit published posts"
|
287 |
-
msgstr "Redigera publicerade inlägg"
|
288 |
-
|
289 |
-
#: ../includes/ure-lib.php:673
|
290 |
-
msgid "Publish posts"
|
291 |
-
msgstr "Publicera inlägg"
|
292 |
-
|
293 |
-
#: ../includes/ure-lib.php:674
|
294 |
-
msgid "Edit pages"
|
295 |
-
msgstr "Redigera sidor"
|
296 |
-
|
297 |
-
#: ../includes/ure-lib.php:675
|
298 |
-
msgid "Read"
|
299 |
-
msgstr "Läsa"
|
300 |
-
|
301 |
-
#: ../includes/ure-lib.php:676
|
302 |
-
msgid "Level 10"
|
303 |
-
msgstr "Nivå 10"
|
304 |
-
|
305 |
-
#: ../includes/ure-lib.php:677
|
306 |
-
msgid "Level 9"
|
307 |
-
msgstr "Nivå 9"
|
308 |
-
|
309 |
-
#: ../includes/ure-lib.php:678
|
310 |
-
msgid "Level 8"
|
311 |
-
msgstr "Nivå 8"
|
312 |
-
|
313 |
-
#: ../includes/ure-lib.php:679
|
314 |
-
msgid "Level 7"
|
315 |
-
msgstr "Nivå 7"
|
316 |
-
|
317 |
-
#: ../includes/ure-lib.php:680
|
318 |
-
msgid "Level 6"
|
319 |
-
msgstr "Nivå 6"
|
320 |
-
|
321 |
-
#: ../includes/ure-lib.php:681
|
322 |
-
msgid "Level 5"
|
323 |
-
msgstr "Nivå 5"
|
324 |
-
|
325 |
-
#: ../includes/ure-lib.php:682
|
326 |
-
msgid "Level 4"
|
327 |
-
msgstr "Nivå 4"
|
328 |
-
|
329 |
-
#: ../includes/ure-lib.php:683
|
330 |
-
msgid "Level 3"
|
331 |
-
msgstr "Nivå 3"
|
332 |
-
|
333 |
-
#: ../includes/ure-lib.php:684
|
334 |
-
msgid "Level 2"
|
335 |
-
msgstr "Nivå 2"
|
336 |
-
|
337 |
-
#: ../includes/ure-lib.php:685
|
338 |
-
msgid "Level 1"
|
339 |
-
msgstr "Nivå 1"
|
340 |
-
|
341 |
-
#: ../includes/ure-lib.php:686
|
342 |
-
msgid "Level 0"
|
343 |
-
msgstr "Nivå 0"
|
344 |
-
|
345 |
-
#: ../includes/ure-lib.php:687
|
346 |
-
msgid "Edit others pages"
|
347 |
-
msgstr "Redigera andras sidor"
|
348 |
-
|
349 |
-
#: ../includes/ure-lib.php:688
|
350 |
-
msgid "Edit published pages"
|
351 |
-
msgstr "Redigera publicerade sidor"
|
352 |
-
|
353 |
-
#: ../includes/ure-lib.php:689
|
354 |
-
msgid "Publish pages"
|
355 |
-
msgstr "Publicera sidor"
|
356 |
-
|
357 |
-
#: ../includes/ure-lib.php:690
|
358 |
-
msgid "Delete pages"
|
359 |
-
msgstr "Radera sidor"
|
360 |
-
|
361 |
-
#: ../includes/ure-lib.php:691
|
362 |
-
msgid "Delete others pages"
|
363 |
-
msgstr "Radera andras sidor"
|
364 |
-
|
365 |
-
#: ../includes/ure-lib.php:692
|
366 |
-
msgid "Delete published pages"
|
367 |
-
msgstr "Radera publicerade sidor"
|
368 |
-
|
369 |
-
#: ../includes/ure-lib.php:693
|
370 |
-
msgid "Delete posts"
|
371 |
-
msgstr "Radera inlägg"
|
372 |
-
|
373 |
-
#: ../includes/ure-lib.php:694
|
374 |
-
msgid "Delete others posts"
|
375 |
-
msgstr "Radera andras inlägg"
|
376 |
-
|
377 |
-
#: ../includes/ure-lib.php:695
|
378 |
-
msgid "Delete published posts"
|
379 |
-
msgstr "Radera publicerade inlägg"
|
380 |
-
|
381 |
-
#: ../includes/ure-lib.php:696
|
382 |
-
msgid "Delete private posts"
|
383 |
-
msgstr "Radera privata inlägg"
|
384 |
-
|
385 |
-
#: ../includes/ure-lib.php:697
|
386 |
-
msgid "Edit private posts"
|
387 |
-
msgstr "Redigera privata inlägg"
|
388 |
-
|
389 |
-
#: ../includes/ure-lib.php:698
|
390 |
-
msgid "Read private posts"
|
391 |
-
msgstr "Läs privata inlägg"
|
392 |
-
|
393 |
-
#: ../includes/ure-lib.php:699
|
394 |
-
msgid "Delete private pages"
|
395 |
-
msgstr "Radera privata sidor"
|
396 |
-
|
397 |
-
#: ../includes/ure-lib.php:700
|
398 |
-
msgid "Edit private pages"
|
399 |
-
msgstr "Redigera privata sidor"
|
400 |
-
|
401 |
-
#: ../includes/ure-lib.php:701
|
402 |
-
msgid "Read private pages"
|
403 |
-
msgstr "Läs privata sidor"
|
404 |
-
|
405 |
-
#: ../includes/ure-lib.php:702
|
406 |
-
msgid "Delete users"
|
407 |
-
msgstr "Radera användare"
|
408 |
-
|
409 |
-
#: ../includes/ure-lib.php:703
|
410 |
-
msgid "Create users"
|
411 |
-
msgstr "Skapa användare"
|
412 |
-
|
413 |
-
#: ../includes/ure-lib.php:704
|
414 |
-
msgid "Unfiltered upload"
|
415 |
-
msgstr "Ofiltrerad uppladdning"
|
416 |
-
|
417 |
-
#: ../includes/ure-lib.php:705
|
418 |
-
msgid "Edit dashboard"
|
419 |
-
msgstr "Redigera panelen"
|
420 |
-
|
421 |
-
#: ../includes/ure-lib.php:706
|
422 |
-
msgid "Update plugins"
|
423 |
-
msgstr "Uppdatera tillägg"
|
424 |
-
|
425 |
-
#: ../includes/ure-lib.php:707
|
426 |
-
msgid "Delete plugins"
|
427 |
-
msgstr "Radera tillägg"
|
428 |
-
|
429 |
-
#: ../includes/ure-lib.php:708
|
430 |
-
msgid "Install plugins"
|
431 |
-
msgstr "Installera tillägg"
|
432 |
-
|
433 |
-
#: ../includes/ure-lib.php:709
|
434 |
-
msgid "Update themes"
|
435 |
-
msgstr "Uppdatera teman"
|
436 |
-
|
437 |
-
#: ../includes/ure-lib.php:710
|
438 |
-
msgid "Install themes"
|
439 |
-
msgstr "Installera teman"
|
440 |
-
|
441 |
-
#: ../includes/ure-lib.php:711
|
442 |
-
msgid "Update core"
|
443 |
-
msgstr "Uppdatera kärnan"
|
444 |
-
|
445 |
-
#: ../includes/ure-lib.php:712
|
446 |
-
msgid "List users"
|
447 |
-
msgstr "Lista användare"
|
448 |
-
|
449 |
-
#: ../includes/ure-lib.php:713
|
450 |
-
msgid "Remove users"
|
451 |
-
msgstr "Radera användare"
|
452 |
-
|
453 |
-
#: ../includes/ure-lib.php:714
|
454 |
-
msgid "Add users"
|
455 |
-
msgstr "Lägg till användare"
|
456 |
-
|
457 |
-
#: ../includes/ure-lib.php:715
|
458 |
-
msgid "Promote users"
|
459 |
-
msgstr "Befodra användare"
|
460 |
-
|
461 |
-
#: ../includes/ure-lib.php:716
|
462 |
-
msgid "Edit theme options"
|
463 |
-
msgstr "Redigera temainställningar"
|
464 |
-
|
465 |
-
#: ../includes/ure-lib.php:717
|
466 |
-
msgid "Delete themes"
|
467 |
-
msgstr "Radera teman"
|
468 |
-
|
469 |
-
#: ../includes/ure-lib.php:718
|
470 |
-
msgid "Export"
|
471 |
-
msgstr "Exportera"
|
472 |
-
|
473 |
-
#: ../includes/ure-lib.php:834
|
474 |
-
msgid "Error: Capability name must contain latin characters and digits only!"
|
475 |
-
msgstr "Fel: Namn på förmågor får endast innehålla romerska tecken och siffror!"
|
476 |
-
|
477 |
-
#: ../includes/ure-lib.php:846
|
478 |
-
#, php-format
|
479 |
-
msgid "Capability %s is added successfully"
|
480 |
-
msgstr "Förmågan %s skapades"
|
481 |
-
|
482 |
-
#: ../includes/ure-lib.php:848
|
483 |
-
#, php-format
|
484 |
-
msgid "Capability %s exists already"
|
485 |
-
msgstr "Förmågan %s existerar redan"
|
486 |
-
|
487 |
-
#: ../includes/ure-lib.php:997
|
488 |
-
#, php-format
|
489 |
-
msgid "Error! You do not have permission to delete this capability: %s!"
|
490 |
-
msgstr "Fel! Du har inte tillstånd att radera denna förmågan: %s!"
|
491 |
-
|
492 |
-
#: ../includes/ure-lib.php:1016
|
493 |
-
#, php-format
|
494 |
-
msgid "Capability %s is removed successfully"
|
495 |
-
msgstr "Förmågan %s raderades"
|
496 |
-
|
497 |
-
#: ../includes/ure-lib.php:1083
|
498 |
-
msgid "Help"
|
499 |
-
msgstr "Hjälp"
|
500 |
-
|
501 |
-
#: ../includes/ure-role-edit.php:29
|
502 |
-
msgid "None"
|
503 |
-
msgstr "Ingen"
|
504 |
-
|
505 |
-
#: ../includes/ure-role-edit.php:67
|
506 |
-
msgid "Select Role and change its capabilities list"
|
507 |
-
msgstr "Välj roll och ändra dess resurslista"
|
508 |
-
|
509 |
-
#: ../includes/ure-role-edit.php:69
|
510 |
-
#: ../includes/ure-role-edit.php:166
|
511 |
-
msgid "Select Role:"
|
512 |
-
msgstr "Välj roll:"
|
513 |
-
|
514 |
-
#: ../includes/ure-role-edit.php:79
|
515 |
-
#: ../includes/ure-user-edit.php:38
|
516 |
-
msgid "Show capabilities in human readable form"
|
517 |
-
msgstr "Visa förmågor i mänskligt läsbar form"
|
518 |
-
|
519 |
-
#: ../includes/ure-role-edit.php:88
|
520 |
-
#: ../includes/ure-user-edit.php:47
|
521 |
-
msgid "Show deprecated capabilities"
|
522 |
-
msgstr "Visa föråldrade förmågor"
|
523 |
-
|
524 |
-
#: ../includes/ure-role-edit.php:92
|
525 |
-
msgid "If checked, then apply action to ALL sites of this Network"
|
526 |
-
msgstr "Tillämpa på alla webbplatser i detta nätverket, om ikryssad"
|
527 |
-
|
528 |
-
#: ../includes/ure-role-edit.php:102
|
529 |
-
msgid "Apply to All Sites"
|
530 |
-
msgstr "Tillämpa på alla webbplatser"
|
531 |
-
|
532 |
-
#: ../includes/ure-role-edit.php:109
|
533 |
-
#: ../includes/ure-user-edit.php:88
|
534 |
-
#, fuzzy
|
535 |
-
msgid "Core capabilities:"
|
536 |
-
msgstr "WordPress Förmågor:"
|
537 |
-
|
538 |
-
#: ../includes/ure-role-edit.php:124
|
539 |
-
#: ../includes/ure-user-edit.php:103
|
540 |
-
#, fuzzy
|
541 |
-
msgid "Custom capabilities:"
|
542 |
-
msgstr "Förmågor:"
|
543 |
-
|
544 |
-
#: ../includes/ure-role-edit.php:155
|
545 |
-
msgid "Role name (ID): "
|
546 |
-
msgstr ""
|
547 |
-
|
548 |
-
#: ../includes/ure-role-edit.php:157
|
549 |
-
msgid "Display Role Name: "
|
550 |
-
msgstr ""
|
551 |
-
|
552 |
-
#: ../includes/ure-role-edit.php:159
|
553 |
-
msgid "Make copy of: "
|
554 |
-
msgstr "Gör kopia av: "
|
555 |
-
|
556 |
-
#: ../includes/ure-role-edit.php:181
|
557 |
-
#, fuzzy
|
558 |
-
msgid "Delete:"
|
559 |
-
msgstr "Radera"
|
560 |
-
|
561 |
-
#: ../includes/ure-role-edit.php:188
|
562 |
-
msgid "Capability name (ID): "
|
563 |
-
msgstr ""
|
564 |
-
|
565 |
-
#: ../includes/ure-user-edit.php:22
|
566 |
-
msgid "Change capabilities for user"
|
567 |
-
msgstr "Ändra förmågor för användare"
|
568 |
-
|
569 |
-
#: ../includes/ure-user-edit.php:52
|
570 |
-
msgid "Primary Role:"
|
571 |
-
msgstr ""
|
572 |
-
|
573 |
-
#: ../includes/ure-user-edit.php:62
|
574 |
-
msgid "bbPress Role:"
|
575 |
-
msgstr ""
|
576 |
-
|
577 |
-
#: ../includes/ure-user-edit.php:72
|
578 |
-
#, fuzzy
|
579 |
-
msgid "Other Roles:"
|
580 |
-
msgstr "Radera roll"
|
581 |
-
|
582 |
-
#: ../includes/ure-options.php:65
|
583 |
-
#, fuzzy
|
584 |
-
msgid "User Roles are restored to WordPress default values. "
|
585 |
-
msgstr "Användarroller återställdes från säkerhetskopian"
|
586 |
-
|
587 |
-
#: ../includes/ure-options.php:136
|
588 |
-
msgid "Error: "
|
589 |
-
msgstr "Fel: "
|
590 |
-
|
591 |
-
#: ../includes/ure-options.php:136
|
592 |
-
#: ../includes/ure-options.php:156
|
593 |
-
msgid "Role"
|
594 |
-
msgstr "Roll"
|
595 |
-
|
596 |
-
#: ../includes/ure-options.php:136
|
597 |
-
msgid "does not exist"
|
598 |
-
msgstr "existerar inte"
|
599 |
-
|
600 |
-
#: ../includes/ure-options.php:156
|
601 |
-
msgid "is updated successfully"
|
602 |
-
msgstr "är uppdaterad"
|
603 |
-
|
604 |
-
#: ../includes/ure-options.php:161
|
605 |
-
#: ../includes/ure-options.php:174
|
606 |
-
#, fuzzy
|
607 |
-
msgid "Error occured during role update"
|
608 |
-
msgstr "Fel uppstod vid radering av roll"
|
609 |
-
|
610 |
-
#: ../includes/ure-options.php:169
|
611 |
-
msgid "User"
|
612 |
-
msgstr "Användare"
|
613 |
-
|
614 |
-
#: ../includes/ure-options.php:169
|
615 |
-
msgid "capabilities are updated successfully"
|
616 |
-
msgstr "förmågor uppdaterades"
|
617 |
-
|
618 |
-
#: ../includes/ure-options.php:206
|
619 |
-
msgid "About this Plugin:"
|
620 |
-
msgstr "Om detta tillägg:"
|
621 |
-
|
622 |
-
#: ../includes/ure-options.php:207
|
623 |
-
msgid "Author's website"
|
624 |
-
msgstr "Författarens hemsida"
|
625 |
-
|
626 |
-
#: ../includes/ure-options.php:208
|
627 |
-
msgid "Plugin webpage"
|
628 |
-
msgstr "Webbsida för tillägg"
|
629 |
-
|
630 |
-
#: ../includes/ure-options.php:210
|
631 |
-
msgid "FAQ"
|
632 |
-
msgstr "FAQ"
|
633 |
-
|
634 |
-
#~ msgid "Database operation error. Check log file."
|
635 |
-
#~ msgstr "Databasfel. Kontrollera loggfilen."
|
636 |
-
|
637 |
-
#~ msgid ""
|
638 |
-
#~ "No backup data. It is created automatically before the first role data "
|
639 |
-
#~ "update."
|
640 |
-
#~ msgstr ""
|
641 |
-
#~ "Ingen säkerhetskopia tillgänglig. Data skapas automatiskt vid första "
|
642 |
-
#~ "rolluppdateringen."
|
643 |
-
|
644 |
-
#~ msgid " Name must contain latin characters and digits only!"
|
645 |
-
#~ msgstr " Namnet får endast innnehålla romerska tecken och siffror!"
|
646 |
-
|
647 |
-
#~ msgid "Change Default Role"
|
648 |
-
#~ msgstr "Byt standardroll"
|
649 |
-
|
650 |
-
#~ msgid ""
|
651 |
-
#~ "Restore Roles from backup copy. Be careful, backup was created when you "
|
652 |
-
#~ "started URE 1st time. All changes you made after that will be lost"
|
653 |
-
#~ msgstr ""
|
654 |
-
#~ "Återställ roller from säkerhetskopia. Var försiktig, kopian gjordes när "
|
655 |
-
#~ "du använde User Role Editor första gången. Allting du ändrat därefter "
|
656 |
-
#~ "kommer gå förlorat. "
|
657 |
-
|
658 |
-
#~ msgid "Role \"%s\" update: please confirm to continue"
|
659 |
-
#~ msgstr "Roll \"%s\" uppdateras: vänligen bekräfta för att fortsätta"
|
660 |
-
|
661 |
-
#~ msgid "Save Changes"
|
662 |
-
#~ msgstr "Spara ändringar"
|
663 |
-
|
664 |
-
#~ msgid "Cancel not saved changes"
|
665 |
-
#~ msgstr "Ångra ej sparade ändringar"
|
666 |
-
|
667 |
-
#~ msgid "Restore Roles from backup copy"
|
668 |
-
#~ msgstr "Återställ roller från säkerhetskopia"
|
669 |
-
|
670 |
-
#~ msgid "Name: "
|
671 |
-
#~ msgstr "Namn: "
|
672 |
-
|
673 |
-
#~ msgid "Add"
|
674 |
-
#~ msgstr "Lägg till"
|
675 |
-
|
676 |
-
#~ msgid "Add New User Role"
|
677 |
-
#~ msgstr "Lägg till ny användarroll"
|
678 |
-
|
679 |
-
#~ msgid "Default Role for New User"
|
680 |
-
#~ msgstr "Standardroll för nya användare"
|
681 |
-
|
682 |
-
#~ msgid "Change"
|
683 |
-
#~ msgstr "Ändra"
|
684 |
-
|
685 |
-
#~ msgid "Delete User Role"
|
686 |
-
#~ msgstr "Radera användarroll"
|
687 |
-
|
688 |
-
#~ msgid "Remove"
|
689 |
-
#~ msgstr "Ta bort"
|
690 |
-
|
691 |
-
#~ msgid "Remove User Capability"
|
692 |
-
#~ msgstr "Ta bort användarförmåga"
|
693 |
-
|
694 |
-
#~ msgid "User \"%s\" update: please confirm to continue"
|
695 |
-
#~ msgstr "Användare \"%s\" uppdateras: vänligen bekräfta för att fortsätta"
|
696 |
-
|
697 |
-
#~ msgid "Role:"
|
698 |
-
#~ msgstr "Roll:"
|
699 |
-
|
700 |
-
#~ msgid "Add capabilities to this user:"
|
701 |
-
#~ msgstr "Lägg till förmågor till denna användaren:"
|
702 |
-
|
703 |
-
#~ msgid "Greetings:"
|
704 |
-
#~ msgstr "Hälsningar:"
|
705 |
-
|
706 |
-
#~ msgid "It's me, the author"
|
707 |
-
#~ msgstr "Det är jag, skaparen"
|
708 |
-
|
709 |
-
#~ msgid "For the help with Belorussian translation"
|
710 |
-
#~ msgstr "För hjälpen med den vitryska översättningen"
|
711 |
-
|
712 |
-
#~ msgid "For the help with Brasilian translation"
|
713 |
-
#~ msgstr "För hjälpen med den brasilianska översättningen"
|
714 |
-
|
715 |
-
#~ msgid "For the help with Brasilian Portuguese translation"
|
716 |
-
#~ msgstr "För hjälpen med den brasilianska översättningen"
|
717 |
-
|
718 |
-
#~ msgid "For the help with Chinese translation"
|
719 |
-
#~ msgstr "För hjälpen med den kinesiska översättningen"
|
720 |
-
|
721 |
-
#~ msgid "For the help with Dutch translation"
|
722 |
-
#~ msgstr "För hjälpen med den nederländska översättningen"
|
723 |
-
|
724 |
-
#~ msgid "For the help with Finnish translation"
|
725 |
-
#~ msgstr "För hjälpen med den finska översättningen"
|
726 |
-
|
727 |
-
#~ msgid "For the help with French translation"
|
728 |
-
#~ msgstr "För hjälpen med den franska översättningen"
|
729 |
-
|
730 |
-
#~ msgid "For the help with German translation"
|
731 |
-
#~ msgstr "För hjälpen med den tyska översättningen"
|
732 |
-
|
733 |
-
#~ msgid "For the help with Hungarian translation"
|
734 |
-
#~ msgstr "För hjälpen med den ungerska översättningen"
|
735 |
-
|
736 |
-
#~ msgid "For the help with Italian translation"
|
737 |
-
#~ msgstr "För hjälpen med den italienska översättningen"
|
738 |
-
|
739 |
-
#~ msgid "For the help with Japanese translation"
|
740 |
-
#~ msgstr "För hjälpen med den japanska översättningen"
|
741 |
-
|
742 |
-
#~ msgid "For the help with Persian translation"
|
743 |
-
#~ msgstr "För hjälpen med den persiska översättningen"
|
744 |
-
|
745 |
-
#~ msgid "For the help with Polish translation"
|
746 |
-
#~ msgstr "För hjälpen med den polska översättningen"
|
747 |
-
|
748 |
-
#~ msgid "For the help with Spanish translation"
|
749 |
-
#~ msgstr "För hjälpen med den spanska översättningen"
|
750 |
-
|
751 |
-
#~ msgid "For the help with Swedish translation"
|
752 |
-
#~ msgstr "För hjälpen med den svenska översättningen"
|
753 |
-
|
754 |
-
#~ msgid "For the help with Turkish translation"
|
755 |
-
#~ msgstr "För hjälpen med den turkiska översättningen"
|
756 |
-
|
757 |
-
#~ msgid "For the code to hide administrator role"
|
758 |
-
#~ msgstr "För koden att gömma administratörsrollen"
|
759 |
-
|
760 |
-
#~ msgid "For the code enhancement suggestion"
|
761 |
-
#~ msgstr "För kodförbättringsförslaget"
|
762 |
-
|
763 |
-
#~ msgid ""
|
764 |
-
#~ "Do you wish to see your name with link to your site here? You are "
|
765 |
-
#~ "welcome! Your help with translation and new ideas are very appreciated."
|
766 |
-
#~ msgstr ""
|
767 |
-
#~ "Hade du velat se ditt namn med en länk till din sida här? Varsågod! Din "
|
768 |
-
#~ "hjälp med översättningar och nya idéer är mycket uppskattade. "
|
769 |
-
|
770 |
-
#~ msgid "Roles list reading error is encountered"
|
771 |
-
#~ msgstr "Fel uppstod vid läsning av Rollistor"
|
772 |
-
|
773 |
-
#~ msgid "More plugins from"
|
774 |
-
#~ msgstr "Fler tillägg från"
|
775 |
-
|
776 |
-
#~ msgid "No items found."
|
777 |
-
#~ msgstr "Inga inlägg hittades"
|
778 |
-
|
779 |
-
#~ msgid "Recent Posts:"
|
780 |
-
#~ msgstr "Senaste inlägg:"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
lang/ure-zh_CN.mo
DELETED
Binary file
|
lang/ure-zh_CN.po
DELETED
@@ -1,717 +0,0 @@
|
|
1 |
-
msgid ""
|
2 |
-
msgstr ""
|
3 |
-
"Project-Id-Version: User Role Editor 2.0\n"
|
4 |
-
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2013-05-17 11:20+0700\n"
|
6 |
-
"PO-Revision-Date: \n"
|
7 |
-
"Last-Translator: Vladimir Garagulya <vladimir@shinephp.com>\n"
|
8 |
-
"Language-Team: 南宫小骏 <jackytsu@vip.qq.com>\n"
|
9 |
-
"Language: \n"
|
10 |
-
"MIME-Version: 1.0\n"
|
11 |
-
"Content-Type: text/plain; charset=UTF-8\n"
|
12 |
-
"Content-Transfer-Encoding: 8bit\n"
|
13 |
-
"X-Poedit-Language: English\n"
|
14 |
-
"X-Poedit-Country: RUSSIAN FEDERATION\n"
|
15 |
-
"X-Poedit-SourceCharset: utf-8\n"
|
16 |
-
"X-Poedit-KeywordsList: __;_e\n"
|
17 |
-
"X-Poedit-Basepath: .\n"
|
18 |
-
"X-Poedit-SearchPath-0: ..\n"
|
19 |
-
|
20 |
-
#: ../user-role-editor.php:34
|
21 |
-
#, fuzzy, php-format
|
22 |
-
msgid "User Role Editor requires PHP %s or newer."
|
23 |
-
msgstr "用户角色编辑器插件需要 WordPress 3.0 或更高版本。"
|
24 |
-
|
25 |
-
#: ../user-role-editor.php:35
|
26 |
-
#: ../user-role-editor.php:107
|
27 |
-
msgid "Please update!"
|
28 |
-
msgstr "请更新!"
|
29 |
-
|
30 |
-
#: ../user-role-editor.php:80
|
31 |
-
msgid "Only"
|
32 |
-
msgstr ""
|
33 |
-
|
34 |
-
#: ../user-role-editor.php:80
|
35 |
-
msgid "is allowed to use"
|
36 |
-
msgstr ""
|
37 |
-
|
38 |
-
#: ../user-role-editor.php:86
|
39 |
-
#: ../user-role-editor.php:312
|
40 |
-
#: ../user-role-editor.php:368
|
41 |
-
msgid "User Role Editor"
|
42 |
-
msgstr "用户角色编辑器"
|
43 |
-
|
44 |
-
#: ../user-role-editor.php:106
|
45 |
-
#, fuzzy, php-format
|
46 |
-
msgid "User Role Editor requires WordPress %s or newer."
|
47 |
-
msgstr "用户角色编辑器插件需要 WordPress 3.0 或更高版本。"
|
48 |
-
|
49 |
-
#: ../user-role-editor.php:139
|
50 |
-
msgid "Select All"
|
51 |
-
msgstr ""
|
52 |
-
|
53 |
-
#: ../user-role-editor.php:140
|
54 |
-
msgid "Unselect All"
|
55 |
-
msgstr ""
|
56 |
-
|
57 |
-
#: ../user-role-editor.php:141
|
58 |
-
msgid "Reverse"
|
59 |
-
msgstr ""
|
60 |
-
|
61 |
-
#: ../user-role-editor.php:142
|
62 |
-
msgid "Update"
|
63 |
-
msgstr "更新"
|
64 |
-
|
65 |
-
#: ../user-role-editor.php:143
|
66 |
-
#, fuzzy
|
67 |
-
msgid "Please confirm permissions update"
|
68 |
-
msgstr "请确认继续"
|
69 |
-
|
70 |
-
#: ../user-role-editor.php:144
|
71 |
-
msgid "Add New Role"
|
72 |
-
msgstr "添加角色"
|
73 |
-
|
74 |
-
#: ../user-role-editor.php:145
|
75 |
-
msgid " Role name (ID) can not be empty!"
|
76 |
-
msgstr ""
|
77 |
-
|
78 |
-
#: ../user-role-editor.php:146
|
79 |
-
#, fuzzy
|
80 |
-
msgid " Role name (ID) must contain latin characters, digits, hyphens or underscore only!"
|
81 |
-
msgstr "错误:角色名称只能由英文字母和数字组成!"
|
82 |
-
|
83 |
-
#: ../user-role-editor.php:147
|
84 |
-
#, fuzzy
|
85 |
-
msgid "Add Role"
|
86 |
-
msgstr "添加角色"
|
87 |
-
|
88 |
-
#: ../user-role-editor.php:148
|
89 |
-
msgid "Delete Role"
|
90 |
-
msgstr "删除角色"
|
91 |
-
|
92 |
-
#: ../user-role-editor.php:149
|
93 |
-
msgid "Cancel"
|
94 |
-
msgstr "取消"
|
95 |
-
|
96 |
-
#: ../user-role-editor.php:150
|
97 |
-
msgid "Add Capability"
|
98 |
-
msgstr ""
|
99 |
-
|
100 |
-
#: ../user-role-editor.php:151
|
101 |
-
#: ../user-role-editor.php:156
|
102 |
-
#, fuzzy
|
103 |
-
msgid "Delete Capability"
|
104 |
-
msgstr "删除插件"
|
105 |
-
|
106 |
-
#: ../user-role-editor.php:152
|
107 |
-
msgid "Reset"
|
108 |
-
msgstr "重置"
|
109 |
-
|
110 |
-
#: ../user-role-editor.php:153
|
111 |
-
msgid "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?"
|
112 |
-
msgstr ""
|
113 |
-
|
114 |
-
#: ../user-role-editor.php:154
|
115 |
-
#, fuzzy
|
116 |
-
msgid "Default Role"
|
117 |
-
msgstr "删除角色"
|
118 |
-
|
119 |
-
#: ../user-role-editor.php:155
|
120 |
-
#, fuzzy
|
121 |
-
msgid "Set New Default Role"
|
122 |
-
msgstr "设置为默认用户角色"
|
123 |
-
|
124 |
-
#: ../user-role-editor.php:157
|
125 |
-
msgid "Warning! Be careful - removing critical capability could crash some plugin or other custom code"
|
126 |
-
msgstr ""
|
127 |
-
|
128 |
-
#: ../user-role-editor.php:158
|
129 |
-
msgid " Capability name (ID) can not be empty!"
|
130 |
-
msgstr ""
|
131 |
-
|
132 |
-
#: ../user-role-editor.php:159
|
133 |
-
#, fuzzy
|
134 |
-
msgid " Capability name (ID) must contain latin characters, digits, hyphens or underscore only!"
|
135 |
-
msgstr "错误:角色名称只能由英文字母和数字组成!"
|
136 |
-
|
137 |
-
#: ../user-role-editor.php:284
|
138 |
-
msgid "Settings"
|
139 |
-
msgstr "设置"
|
140 |
-
|
141 |
-
#: ../user-role-editor.php:294
|
142 |
-
#: ../includes/ure-options.php:209
|
143 |
-
msgid "Changelog"
|
144 |
-
msgstr "修订记录"
|
145 |
-
|
146 |
-
#: ../user-role-editor.php:342
|
147 |
-
msgid "Capabilities"
|
148 |
-
msgstr ""
|
149 |
-
|
150 |
-
#: ../user-role-editor.php:371
|
151 |
-
#: ../user-role-editor.php:407
|
152 |
-
#, fuzzy
|
153 |
-
msgid "Other Roles"
|
154 |
-
msgstr "删除角色"
|
155 |
-
|
156 |
-
#: ../user-role-editor.php:381
|
157 |
-
#, fuzzy
|
158 |
-
msgid "Edit"
|
159 |
-
msgstr "编辑"
|
160 |
-
|
161 |
-
#: ../includes/ure-lib.php:35
|
162 |
-
msgid "Error is occur. Please check the log file."
|
163 |
-
msgstr "发生了错误,请查看日志文件。"
|
164 |
-
|
165 |
-
#: ../includes/ure-lib.php:364
|
166 |
-
msgid "Backup record is created for the current role capabilities"
|
167 |
-
msgstr "已经为当前角色的权限创建了备份记录"
|
168 |
-
|
169 |
-
#: ../includes/ure-lib.php:481
|
170 |
-
#, fuzzy
|
171 |
-
msgid "Error: Role ID must contain latin characters, digits, hyphens or underscore only!"
|
172 |
-
msgstr "错误:角色名称只能由英文字母和数字组成!"
|
173 |
-
|
174 |
-
#: ../includes/ure-lib.php:496
|
175 |
-
#, php-format
|
176 |
-
msgid "Role %s exists already"
|
177 |
-
msgstr ""
|
178 |
-
|
179 |
-
#: ../includes/ure-lib.php:511
|
180 |
-
msgid "Error is encountered during new role create operation"
|
181 |
-
msgstr "创建角色操作出错"
|
182 |
-
|
183 |
-
#: ../includes/ure-lib.php:513
|
184 |
-
#, php-format
|
185 |
-
msgid "Role %s is created successfully"
|
186 |
-
msgstr "角色 %s 创建成功"
|
187 |
-
|
188 |
-
#: ../includes/ure-lib.php:597
|
189 |
-
msgid "Error encountered during role delete operation"
|
190 |
-
msgstr "删除角色操作出错"
|
191 |
-
|
192 |
-
#: ../includes/ure-lib.php:599
|
193 |
-
#, php-format
|
194 |
-
msgid "Role %s is deleted successfully"
|
195 |
-
msgstr "角色 %s 删除成功"
|
196 |
-
|
197 |
-
#: ../includes/ure-lib.php:619
|
198 |
-
msgid "Error encountered during default role change operation"
|
199 |
-
msgstr "更改默认角色操作出错"
|
200 |
-
|
201 |
-
#: ../includes/ure-lib.php:625
|
202 |
-
#, php-format
|
203 |
-
msgid "Default role for new users is set to %s successfully"
|
204 |
-
msgstr "将新用户默认角色设置为 %s 成功"
|
205 |
-
|
206 |
-
#: ../includes/ure-lib.php:652
|
207 |
-
msgid "Editor"
|
208 |
-
msgstr "编辑"
|
209 |
-
|
210 |
-
#: ../includes/ure-lib.php:653
|
211 |
-
msgid "Author"
|
212 |
-
msgstr "作者"
|
213 |
-
|
214 |
-
#: ../includes/ure-lib.php:654
|
215 |
-
msgid "Contributor"
|
216 |
-
msgstr "投稿者"
|
217 |
-
|
218 |
-
#: ../includes/ure-lib.php:655
|
219 |
-
msgid "Subscriber"
|
220 |
-
msgstr "订阅者"
|
221 |
-
|
222 |
-
#: ../includes/ure-lib.php:657
|
223 |
-
msgid "Switch themes"
|
224 |
-
msgstr "切换主题"
|
225 |
-
|
226 |
-
#: ../includes/ure-lib.php:658
|
227 |
-
msgid "Edit themes"
|
228 |
-
msgstr "编辑主题"
|
229 |
-
|
230 |
-
#: ../includes/ure-lib.php:659
|
231 |
-
msgid "Activate plugins"
|
232 |
-
msgstr "启用插件"
|
233 |
-
|
234 |
-
#: ../includes/ure-lib.php:660
|
235 |
-
msgid "Edit plugins"
|
236 |
-
msgstr "编辑插件"
|
237 |
-
|
238 |
-
#: ../includes/ure-lib.php:661
|
239 |
-
msgid "Edit users"
|
240 |
-
msgstr "修改用户"
|
241 |
-
|
242 |
-
#: ../includes/ure-lib.php:662
|
243 |
-
msgid "Edit files"
|
244 |
-
msgstr "修改文件"
|
245 |
-
|
246 |
-
#: ../includes/ure-lib.php:663
|
247 |
-
msgid "Manage options"
|
248 |
-
msgstr "管理选项"
|
249 |
-
|
250 |
-
#: ../includes/ure-lib.php:664
|
251 |
-
msgid "Moderate comments"
|
252 |
-
msgstr "审核评论"
|
253 |
-
|
254 |
-
#: ../includes/ure-lib.php:665
|
255 |
-
msgid "Manage categories"
|
256 |
-
msgstr "管理目录"
|
257 |
-
|
258 |
-
#: ../includes/ure-lib.php:666
|
259 |
-
msgid "Manage links"
|
260 |
-
msgstr "管理链接"
|
261 |
-
|
262 |
-
#: ../includes/ure-lib.php:667
|
263 |
-
msgid "Upload files"
|
264 |
-
msgstr "上传文件"
|
265 |
-
|
266 |
-
#: ../includes/ure-lib.php:668
|
267 |
-
msgid "Import"
|
268 |
-
msgstr "导入"
|
269 |
-
|
270 |
-
#: ../includes/ure-lib.php:669
|
271 |
-
msgid "Unfiltered html"
|
272 |
-
msgstr "不过滤 HTML 标签"
|
273 |
-
|
274 |
-
#: ../includes/ure-lib.php:670
|
275 |
-
msgid "Edit posts"
|
276 |
-
msgstr "编辑文章"
|
277 |
-
|
278 |
-
#: ../includes/ure-lib.php:671
|
279 |
-
msgid "Edit others posts"
|
280 |
-
msgstr "编辑他人文章"
|
281 |
-
|
282 |
-
#: ../includes/ure-lib.php:672
|
283 |
-
msgid "Edit published posts"
|
284 |
-
msgstr "编辑已发布的文章"
|
285 |
-
|
286 |
-
#: ../includes/ure-lib.php:673
|
287 |
-
msgid "Publish posts"
|
288 |
-
msgstr "发布文章"
|
289 |
-
|
290 |
-
#: ../includes/ure-lib.php:674
|
291 |
-
msgid "Edit pages"
|
292 |
-
msgstr "编辑页面"
|
293 |
-
|
294 |
-
#: ../includes/ure-lib.php:675
|
295 |
-
msgid "Read"
|
296 |
-
msgstr "浏览"
|
297 |
-
|
298 |
-
#: ../includes/ure-lib.php:676
|
299 |
-
msgid "Level 10"
|
300 |
-
msgstr "级别 10"
|
301 |
-
|
302 |
-
#: ../includes/ure-lib.php:677
|
303 |
-
msgid "Level 9"
|
304 |
-
msgstr "级别 9"
|
305 |
-
|
306 |
-
#: ../includes/ure-lib.php:678
|
307 |
-
msgid "Level 8"
|
308 |
-
msgstr "级别 8"
|
309 |
-
|
310 |
-
#: ../includes/ure-lib.php:679
|
311 |
-
msgid "Level 7"
|
312 |
-
msgstr "级别 7"
|
313 |
-
|
314 |
-
#: ../includes/ure-lib.php:680
|
315 |
-
msgid "Level 6"
|
316 |
-
msgstr "级别 6"
|
317 |
-
|
318 |
-
#: ../includes/ure-lib.php:681
|
319 |
-
msgid "Level 5"
|
320 |
-
msgstr "级别 5"
|
321 |
-
|
322 |
-
#: ../includes/ure-lib.php:682
|
323 |
-
msgid "Level 4"
|
324 |
-
msgstr "级别 4"
|
325 |
-
|
326 |
-
#: ../includes/ure-lib.php:683
|
327 |
-
msgid "Level 3"
|
328 |
-
msgstr "级别 3"
|
329 |
-
|
330 |
-
#: ../includes/ure-lib.php:684
|
331 |
-
msgid "Level 2"
|
332 |
-
msgstr "级别 2"
|
333 |
-
|
334 |
-
#: ../includes/ure-lib.php:685
|
335 |
-
msgid "Level 1"
|
336 |
-
msgstr "级别 1"
|
337 |
-
|
338 |
-
#: ../includes/ure-lib.php:686
|
339 |
-
msgid "Level 0"
|
340 |
-
msgstr "级别 0"
|
341 |
-
|
342 |
-
#: ../includes/ure-lib.php:687
|
343 |
-
msgid "Edit others pages"
|
344 |
-
msgstr "编辑他人页面"
|
345 |
-
|
346 |
-
#: ../includes/ure-lib.php:688
|
347 |
-
msgid "Edit published pages"
|
348 |
-
msgstr "编辑已发布的页面"
|
349 |
-
|
350 |
-
#: ../includes/ure-lib.php:689
|
351 |
-
msgid "Publish pages"
|
352 |
-
msgstr "发布页面"
|
353 |
-
|
354 |
-
#: ../includes/ure-lib.php:690
|
355 |
-
msgid "Delete pages"
|
356 |
-
msgstr "删除页面"
|
357 |
-
|
358 |
-
#: ../includes/ure-lib.php:691
|
359 |
-
msgid "Delete others pages"
|
360 |
-
msgstr "删除他人的页面"
|
361 |
-
|
362 |
-
#: ../includes/ure-lib.php:692
|
363 |
-
msgid "Delete published pages"
|
364 |
-
msgstr "删除已发布的页面"
|
365 |
-
|
366 |
-
#: ../includes/ure-lib.php:693
|
367 |
-
msgid "Delete posts"
|
368 |
-
msgstr "删除文章"
|
369 |
-
|
370 |
-
#: ../includes/ure-lib.php:694
|
371 |
-
msgid "Delete others posts"
|
372 |
-
msgstr "删除他人的文章"
|
373 |
-
|
374 |
-
#: ../includes/ure-lib.php:695
|
375 |
-
msgid "Delete published posts"
|
376 |
-
msgstr "删除已发布的文章"
|
377 |
-
|
378 |
-
#: ../includes/ure-lib.php:696
|
379 |
-
msgid "Delete private posts"
|
380 |
-
msgstr "删除私人文章"
|
381 |
-
|
382 |
-
#: ../includes/ure-lib.php:697
|
383 |
-
msgid "Edit private posts"
|
384 |
-
msgstr "编辑私人文章"
|
385 |
-
|
386 |
-
#: ../includes/ure-lib.php:698
|
387 |
-
msgid "Read private posts"
|
388 |
-
msgstr "浏览私人文章"
|
389 |
-
|
390 |
-
#: ../includes/ure-lib.php:699
|
391 |
-
msgid "Delete private pages"
|
392 |
-
msgstr "删除私人页面"
|
393 |
-
|
394 |
-
#: ../includes/ure-lib.php:700
|
395 |
-
msgid "Edit private pages"
|
396 |
-
msgstr "编辑私人页面"
|
397 |
-
|
398 |
-
#: ../includes/ure-lib.php:701
|
399 |
-
msgid "Read private pages"
|
400 |
-
msgstr "浏览私人页面"
|
401 |
-
|
402 |
-
#: ../includes/ure-lib.php:702
|
403 |
-
msgid "Delete users"
|
404 |
-
msgstr "删除用户"
|
405 |
-
|
406 |
-
#: ../includes/ure-lib.php:703
|
407 |
-
msgid "Create users"
|
408 |
-
msgstr "创建用户"
|
409 |
-
|
410 |
-
#: ../includes/ure-lib.php:704
|
411 |
-
msgid "Unfiltered upload"
|
412 |
-
msgstr "无限制上传"
|
413 |
-
|
414 |
-
#: ../includes/ure-lib.php:705
|
415 |
-
msgid "Edit dashboard"
|
416 |
-
msgstr "编辑主面板"
|
417 |
-
|
418 |
-
#: ../includes/ure-lib.php:706
|
419 |
-
msgid "Update plugins"
|
420 |
-
msgstr "更新插件"
|
421 |
-
|
422 |
-
#: ../includes/ure-lib.php:707
|
423 |
-
msgid "Delete plugins"
|
424 |
-
msgstr "删除插件"
|
425 |
-
|
426 |
-
#: ../includes/ure-lib.php:708
|
427 |
-
msgid "Install plugins"
|
428 |
-
msgstr "安装插件"
|
429 |
-
|
430 |
-
#: ../includes/ure-lib.php:709
|
431 |
-
msgid "Update themes"
|
432 |
-
msgstr "更新主题"
|
433 |
-
|
434 |
-
#: ../includes/ure-lib.php:710
|
435 |
-
msgid "Install themes"
|
436 |
-
msgstr "安装主题"
|
437 |
-
|
438 |
-
#: ../includes/ure-lib.php:711
|
439 |
-
msgid "Update core"
|
440 |
-
msgstr ""
|
441 |
-
|
442 |
-
#: ../includes/ure-lib.php:712
|
443 |
-
msgid "List users"
|
444 |
-
msgstr ""
|
445 |
-
|
446 |
-
#: ../includes/ure-lib.php:713
|
447 |
-
msgid "Remove users"
|
448 |
-
msgstr ""
|
449 |
-
|
450 |
-
#: ../includes/ure-lib.php:714
|
451 |
-
msgid "Add users"
|
452 |
-
msgstr ""
|
453 |
-
|
454 |
-
#: ../includes/ure-lib.php:715
|
455 |
-
msgid "Promote users"
|
456 |
-
msgstr ""
|
457 |
-
|
458 |
-
#: ../includes/ure-lib.php:716
|
459 |
-
msgid "Edit theme options"
|
460 |
-
msgstr ""
|
461 |
-
|
462 |
-
#: ../includes/ure-lib.php:717
|
463 |
-
msgid "Delete themes"
|
464 |
-
msgstr ""
|
465 |
-
|
466 |
-
#: ../includes/ure-lib.php:718
|
467 |
-
msgid "Export"
|
468 |
-
msgstr ""
|
469 |
-
|
470 |
-
#: ../includes/ure-lib.php:834
|
471 |
-
msgid "Error: Capability name must contain latin characters and digits only!"
|
472 |
-
msgstr ""
|
473 |
-
|
474 |
-
#: ../includes/ure-lib.php:846
|
475 |
-
#, php-format
|
476 |
-
msgid "Capability %s is added successfully"
|
477 |
-
msgstr ""
|
478 |
-
|
479 |
-
#: ../includes/ure-lib.php:848
|
480 |
-
#, php-format
|
481 |
-
msgid "Capability %s exists already"
|
482 |
-
msgstr ""
|
483 |
-
|
484 |
-
#: ../includes/ure-lib.php:997
|
485 |
-
#, php-format
|
486 |
-
msgid "Error! You do not have permission to delete this capability: %s!"
|
487 |
-
msgstr ""
|
488 |
-
|
489 |
-
#: ../includes/ure-lib.php:1016
|
490 |
-
#, php-format
|
491 |
-
msgid "Capability %s is removed successfully"
|
492 |
-
msgstr ""
|
493 |
-
|
494 |
-
#: ../includes/ure-lib.php:1083
|
495 |
-
msgid "Help"
|
496 |
-
msgstr ""
|
497 |
-
|
498 |
-
#: ../includes/ure-role-edit.php:29
|
499 |
-
msgid "None"
|
500 |
-
msgstr ""
|
501 |
-
|
502 |
-
#: ../includes/ure-role-edit.php:67
|
503 |
-
msgid "Select Role and change its capabilities list"
|
504 |
-
msgstr "选择一个角色并修改它的权限"
|
505 |
-
|
506 |
-
#: ../includes/ure-role-edit.php:69
|
507 |
-
#: ../includes/ure-role-edit.php:166
|
508 |
-
msgid "Select Role:"
|
509 |
-
msgstr "选择角色:"
|
510 |
-
|
511 |
-
#: ../includes/ure-role-edit.php:79
|
512 |
-
#: ../includes/ure-user-edit.php:38
|
513 |
-
msgid "Show capabilities in human readable form"
|
514 |
-
msgstr "以易懂的方式显示权限列表"
|
515 |
-
|
516 |
-
#: ../includes/ure-role-edit.php:88
|
517 |
-
#: ../includes/ure-user-edit.php:47
|
518 |
-
msgid "Show deprecated capabilities"
|
519 |
-
msgstr ""
|
520 |
-
|
521 |
-
#: ../includes/ure-role-edit.php:92
|
522 |
-
msgid "If checked, then apply action to ALL sites of this Network"
|
523 |
-
msgstr ""
|
524 |
-
|
525 |
-
#: ../includes/ure-role-edit.php:102
|
526 |
-
msgid "Apply to All Sites"
|
527 |
-
msgstr ""
|
528 |
-
|
529 |
-
#: ../includes/ure-role-edit.php:109
|
530 |
-
#: ../includes/ure-user-edit.php:88
|
531 |
-
msgid "Core capabilities:"
|
532 |
-
msgstr ""
|
533 |
-
|
534 |
-
#: ../includes/ure-role-edit.php:124
|
535 |
-
#: ../includes/ure-user-edit.php:103
|
536 |
-
msgid "Custom capabilities:"
|
537 |
-
msgstr ""
|
538 |
-
|
539 |
-
#: ../includes/ure-role-edit.php:155
|
540 |
-
msgid "Role name (ID): "
|
541 |
-
msgstr ""
|
542 |
-
|
543 |
-
#: ../includes/ure-role-edit.php:157
|
544 |
-
msgid "Display Role Name: "
|
545 |
-
msgstr ""
|
546 |
-
|
547 |
-
#: ../includes/ure-role-edit.php:159
|
548 |
-
msgid "Make copy of: "
|
549 |
-
msgstr ""
|
550 |
-
|
551 |
-
#: ../includes/ure-role-edit.php:181
|
552 |
-
#, fuzzy
|
553 |
-
msgid "Delete:"
|
554 |
-
msgstr "删除"
|
555 |
-
|
556 |
-
#: ../includes/ure-role-edit.php:188
|
557 |
-
msgid "Capability name (ID): "
|
558 |
-
msgstr ""
|
559 |
-
|
560 |
-
#: ../includes/ure-user-edit.php:22
|
561 |
-
msgid "Change capabilities for user"
|
562 |
-
msgstr ""
|
563 |
-
|
564 |
-
#: ../includes/ure-user-edit.php:52
|
565 |
-
msgid "Primary Role:"
|
566 |
-
msgstr ""
|
567 |
-
|
568 |
-
#: ../includes/ure-user-edit.php:62
|
569 |
-
msgid "bbPress Role:"
|
570 |
-
msgstr ""
|
571 |
-
|
572 |
-
#: ../includes/ure-user-edit.php:72
|
573 |
-
#, fuzzy
|
574 |
-
msgid "Other Roles:"
|
575 |
-
msgstr "删除角色"
|
576 |
-
|
577 |
-
#: ../includes/ure-options.php:65
|
578 |
-
msgid "User Roles are restored to WordPress default values. "
|
579 |
-
msgstr ""
|
580 |
-
|
581 |
-
#: ../includes/ure-options.php:136
|
582 |
-
msgid "Error: "
|
583 |
-
msgstr ""
|
584 |
-
|
585 |
-
#: ../includes/ure-options.php:136
|
586 |
-
#: ../includes/ure-options.php:156
|
587 |
-
msgid "Role"
|
588 |
-
msgstr "角色"
|
589 |
-
|
590 |
-
#: ../includes/ure-options.php:136
|
591 |
-
msgid "does not exist"
|
592 |
-
msgstr ""
|
593 |
-
|
594 |
-
#: ../includes/ure-options.php:156
|
595 |
-
msgid "is updated successfully"
|
596 |
-
msgstr "更新成功"
|
597 |
-
|
598 |
-
#: ../includes/ure-options.php:161
|
599 |
-
#: ../includes/ure-options.php:174
|
600 |
-
#, fuzzy
|
601 |
-
msgid "Error occured during role update"
|
602 |
-
msgstr "删除角色操作出错"
|
603 |
-
|
604 |
-
#: ../includes/ure-options.php:169
|
605 |
-
msgid "User"
|
606 |
-
msgstr ""
|
607 |
-
|
608 |
-
#: ../includes/ure-options.php:169
|
609 |
-
msgid "capabilities are updated successfully"
|
610 |
-
msgstr ""
|
611 |
-
|
612 |
-
#: ../includes/ure-options.php:206
|
613 |
-
msgid "About this Plugin:"
|
614 |
-
msgstr "关于此插件:"
|
615 |
-
|
616 |
-
#: ../includes/ure-options.php:207
|
617 |
-
msgid "Author's website"
|
618 |
-
msgstr "作者站点"
|
619 |
-
|
620 |
-
#: ../includes/ure-options.php:208
|
621 |
-
msgid "Plugin webpage"
|
622 |
-
msgstr "插件站点"
|
623 |
-
|
624 |
-
#: ../includes/ure-options.php:210
|
625 |
-
msgid "FAQ"
|
626 |
-
msgstr "常见问答"
|
627 |
-
|
628 |
-
#~ msgid "Database operation error. Check log file."
|
629 |
-
#~ msgstr "数据库操作出错,请查看日志文件。"
|
630 |
-
|
631 |
-
#~ msgid ""
|
632 |
-
#~ "No backup data. It is created automatically before the first role data "
|
633 |
-
#~ "update."
|
634 |
-
#~ msgstr "没有备份数据。在首个角色数据更新前将会自动创建。"
|
635 |
-
|
636 |
-
#~ msgid "Change Default Role"
|
637 |
-
#~ msgstr "修改默认角色"
|
638 |
-
|
639 |
-
#~ msgid "Role \"%s\" update: please confirm to continue"
|
640 |
-
#~ msgstr "更新角色 \"%s\" : 请确认继续"
|
641 |
-
|
642 |
-
#~ msgid "Save Changes"
|
643 |
-
#~ msgstr "保存更改"
|
644 |
-
|
645 |
-
#~ msgid "Cancel not saved changes"
|
646 |
-
#~ msgstr "不保存所做的更改"
|
647 |
-
|
648 |
-
#~ msgid "Restore Roles from backup copy"
|
649 |
-
#~ msgstr "从备份中恢复角色"
|
650 |
-
|
651 |
-
#~ msgid "Add"
|
652 |
-
#~ msgstr "添加"
|
653 |
-
|
654 |
-
#~ msgid "Add New User Role"
|
655 |
-
#~ msgstr "添加新的用户角色"
|
656 |
-
|
657 |
-
#~ msgid "Default Role for New User"
|
658 |
-
#~ msgstr "新用户的默认角色"
|
659 |
-
|
660 |
-
#~ msgid "Change"
|
661 |
-
#~ msgstr "更改"
|
662 |
-
|
663 |
-
#~ msgid "Delete User Role"
|
664 |
-
#~ msgstr "删除用户角色"
|
665 |
-
|
666 |
-
#~ msgid "Greetings:"
|
667 |
-
#~ msgstr "鸣谢:"
|
668 |
-
|
669 |
-
#~ msgid "It's me, the author"
|
670 |
-
#~ msgstr "就是我啦,插件的作者"
|
671 |
-
|
672 |
-
#~ msgid "For the help with Belorussian translation"
|
673 |
-
#~ msgstr "白俄罗斯语版本贡献者"
|
674 |
-
|
675 |
-
#, fuzzy
|
676 |
-
#~ msgid "For the help with Brasilian Portuguese translation"
|
677 |
-
#~ msgstr "日语版本贡献者"
|
678 |
-
|
679 |
-
#~ msgid "For the help with Chinese translation"
|
680 |
-
#~ msgstr "简体中文版本贡献者"
|
681 |
-
|
682 |
-
#~ msgid "For the help with Dutch translation"
|
683 |
-
#~ msgstr "荷兰语版本贡献者"
|
684 |
-
|
685 |
-
#~ msgid "For the help with French translation"
|
686 |
-
#~ msgstr "法语版本贡献者"
|
687 |
-
|
688 |
-
#~ msgid "For the help with German translation"
|
689 |
-
#~ msgstr "德语版本贡献者"
|
690 |
-
|
691 |
-
#~ msgid "For the help with Hungarian translation"
|
692 |
-
#~ msgstr "匈牙利语版本贡献者"
|
693 |
-
|
694 |
-
#~ msgid "For the help with Italian translation"
|
695 |
-
#~ msgstr "意大利语版本贡献者"
|
696 |
-
|
697 |
-
#~ msgid "For the help with Japanese translation"
|
698 |
-
#~ msgstr "日语版本贡献者"
|
699 |
-
|
700 |
-
#~ msgid "For the help with Polish translation"
|
701 |
-
#~ msgstr "波兰语版本贡献者"
|
702 |
-
|
703 |
-
#~ msgid "For the help with Spanish translation"
|
704 |
-
#~ msgstr "西班牙语贡献者"
|
705 |
-
|
706 |
-
#~ msgid "For the code to hide administrator role"
|
707 |
-
#~ msgstr "隐藏站点管理员角色功能的代码贡献者"
|
708 |
-
|
709 |
-
#~ msgid ""
|
710 |
-
#~ "Do you wish to see your name with link to your site here? You are "
|
711 |
-
#~ "welcome! Your help with translation and new ideas are very appreciated."
|
712 |
-
#~ msgstr ""
|
713 |
-
#~ "想在这儿看到你的名字和站点链接吗?非常欢迎!凡是提供语言翻译或是新点子的行"
|
714 |
-
#~ "为我都会非常感激。"
|
715 |
-
|
716 |
-
#~ msgid "Roles list reading error is encountered"
|
717 |
-
#~ msgstr "角色列表读取出错"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
lang/ure-zh_TW.mo
DELETED
Binary file
|
lang/ure-zh_TW.po
DELETED
@@ -1,788 +0,0 @@
|
|
1 |
-
msgid ""
|
2 |
-
msgstr ""
|
3 |
-
"Project-Id-Version: User Role Editor 2.0\n"
|
4 |
-
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2013-05-17 11:21+0700\n"
|
6 |
-
"PO-Revision-Date: \n"
|
7 |
-
"Last-Translator: Vladimir Garagulya <vladimir@shinephp.com>\n"
|
8 |
-
"Language-Team: 南宫小骏 <jackytsu@vip.qq.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\n"
|
15 |
-
"X-Poedit-Basepath: .\n"
|
16 |
-
"X-Generator: Poedit 1.5.3\n"
|
17 |
-
"X-Poedit-SearchPath-0: ..\n"
|
18 |
-
|
19 |
-
#: ../user-role-editor.php:34
|
20 |
-
#, fuzzy, php-format
|
21 |
-
msgid "User Role Editor requires PHP %s or newer."
|
22 |
-
msgstr "用戶角色編輯器需要PHP 5.0或更新版本"
|
23 |
-
|
24 |
-
#: ../user-role-editor.php:35
|
25 |
-
#: ../user-role-editor.php:107
|
26 |
-
msgid "Please update!"
|
27 |
-
msgstr "請更新!"
|
28 |
-
|
29 |
-
#: ../user-role-editor.php:80
|
30 |
-
msgid "Only"
|
31 |
-
msgstr "僅"
|
32 |
-
|
33 |
-
#: ../user-role-editor.php:80
|
34 |
-
msgid "is allowed to use"
|
35 |
-
msgstr "是允許使用"
|
36 |
-
|
37 |
-
#: ../user-role-editor.php:86
|
38 |
-
#: ../user-role-editor.php:312
|
39 |
-
#: ../user-role-editor.php:368
|
40 |
-
msgid "User Role Editor"
|
41 |
-
msgstr "用戶角色編輯器"
|
42 |
-
|
43 |
-
#: ../user-role-editor.php:106
|
44 |
-
#, fuzzy, php-format
|
45 |
-
msgid "User Role Editor requires WordPress %s or newer."
|
46 |
-
msgstr "用戶角色編輯器需要WordPress 3.0或更新版本"
|
47 |
-
|
48 |
-
#: ../user-role-editor.php:139
|
49 |
-
msgid "Select All"
|
50 |
-
msgstr "選擇全部"
|
51 |
-
|
52 |
-
#: ../user-role-editor.php:140
|
53 |
-
msgid "Unselect All"
|
54 |
-
msgstr "取消全選"
|
55 |
-
|
56 |
-
#: ../user-role-editor.php:141
|
57 |
-
msgid "Reverse"
|
58 |
-
msgstr "反選"
|
59 |
-
|
60 |
-
#: ../user-role-editor.php:142
|
61 |
-
msgid "Update"
|
62 |
-
msgstr "更新"
|
63 |
-
|
64 |
-
#: ../user-role-editor.php:143
|
65 |
-
#, fuzzy
|
66 |
-
msgid "Please confirm permissions update"
|
67 |
-
msgstr "請確認繼續"
|
68 |
-
|
69 |
-
#: ../user-role-editor.php:144
|
70 |
-
msgid "Add New Role"
|
71 |
-
msgstr "新增角色"
|
72 |
-
|
73 |
-
#: ../user-role-editor.php:145
|
74 |
-
#, fuzzy
|
75 |
-
msgid " Role name (ID) can not be empty!"
|
76 |
-
msgstr "名字不能為空"
|
77 |
-
|
78 |
-
#: ../user-role-editor.php:146
|
79 |
-
#, fuzzy
|
80 |
-
msgid " Role name (ID) must contain latin characters, digits, hyphens or underscore only!"
|
81 |
-
msgstr "錯誤:角色名稱必須使用英文或數字!"
|
82 |
-
|
83 |
-
#: ../user-role-editor.php:147
|
84 |
-
#, fuzzy
|
85 |
-
msgid "Add Role"
|
86 |
-
msgstr "新增角色"
|
87 |
-
|
88 |
-
#: ../user-role-editor.php:148
|
89 |
-
msgid "Delete Role"
|
90 |
-
msgstr "刪除角色"
|
91 |
-
|
92 |
-
#: ../user-role-editor.php:149
|
93 |
-
msgid "Cancel"
|
94 |
-
msgstr "取消"
|
95 |
-
|
96 |
-
#: ../user-role-editor.php:150
|
97 |
-
#, fuzzy
|
98 |
-
msgid "Add Capability"
|
99 |
-
msgstr "加入新功能"
|
100 |
-
|
101 |
-
#: ../user-role-editor.php:151
|
102 |
-
#: ../user-role-editor.php:156
|
103 |
-
#, fuzzy
|
104 |
-
msgid "Delete Capability"
|
105 |
-
msgstr "刪除功能"
|
106 |
-
|
107 |
-
#: ../user-role-editor.php:152
|
108 |
-
msgid "Reset"
|
109 |
-
msgstr "重設"
|
110 |
-
|
111 |
-
#: ../user-role-editor.php:153
|
112 |
-
msgid "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?"
|
113 |
-
msgstr ""
|
114 |
-
|
115 |
-
#: ../user-role-editor.php:154
|
116 |
-
#, fuzzy
|
117 |
-
msgid "Default Role"
|
118 |
-
msgstr "刪除角色"
|
119 |
-
|
120 |
-
#: ../user-role-editor.php:155
|
121 |
-
#, fuzzy
|
122 |
-
msgid "Set New Default Role"
|
123 |
-
msgstr "設置為預設角色"
|
124 |
-
|
125 |
-
#: ../user-role-editor.php:157
|
126 |
-
msgid "Warning! Be careful - removing critical capability could crash some plugin or other custom code"
|
127 |
-
msgstr "警告!小心-移除關鍵功能可能會使外掛崩潰或其他自定義代碼"
|
128 |
-
|
129 |
-
#: ../user-role-editor.php:158
|
130 |
-
#, fuzzy
|
131 |
-
msgid " Capability name (ID) can not be empty!"
|
132 |
-
msgstr "名字不能為空"
|
133 |
-
|
134 |
-
#: ../user-role-editor.php:159
|
135 |
-
#, fuzzy
|
136 |
-
msgid " Capability name (ID) must contain latin characters, digits, hyphens or underscore only!"
|
137 |
-
msgstr "錯誤:功能名稱必須使用英文或數字!"
|
138 |
-
|
139 |
-
#: ../user-role-editor.php:284
|
140 |
-
msgid "Settings"
|
141 |
-
msgstr "設定"
|
142 |
-
|
143 |
-
#: ../user-role-editor.php:294
|
144 |
-
#: ../includes/ure-options.php:209
|
145 |
-
msgid "Changelog"
|
146 |
-
msgstr "更新日誌"
|
147 |
-
|
148 |
-
#: ../user-role-editor.php:342
|
149 |
-
msgid "Capabilities"
|
150 |
-
msgstr "功能"
|
151 |
-
|
152 |
-
#: ../user-role-editor.php:371
|
153 |
-
#: ../user-role-editor.php:407
|
154 |
-
#, fuzzy
|
155 |
-
msgid "Other Roles"
|
156 |
-
msgstr "刪除角色"
|
157 |
-
|
158 |
-
#: ../user-role-editor.php:381
|
159 |
-
#, fuzzy
|
160 |
-
msgid "Edit"
|
161 |
-
msgstr "編輯"
|
162 |
-
|
163 |
-
#: ../includes/ure-lib.php:35
|
164 |
-
msgid "Error is occur. Please check the log file."
|
165 |
-
msgstr "發生錯誤,請查看更新日誌。"
|
166 |
-
|
167 |
-
#: ../includes/ure-lib.php:364
|
168 |
-
msgid "Backup record is created for the current role capabilities"
|
169 |
-
msgstr "已經為當前角色的權限建立備份資料"
|
170 |
-
|
171 |
-
#: ../includes/ure-lib.php:481
|
172 |
-
#, fuzzy
|
173 |
-
msgid "Error: Role ID must contain latin characters, digits, hyphens or underscore only!"
|
174 |
-
msgstr "錯誤:角色名稱必須使用英文或數字!"
|
175 |
-
|
176 |
-
#: ../includes/ure-lib.php:496
|
177 |
-
#, php-format
|
178 |
-
msgid "Role %s exists already"
|
179 |
-
msgstr "角色 %s 已經存在了"
|
180 |
-
|
181 |
-
#: ../includes/ure-lib.php:511
|
182 |
-
msgid "Error is encountered during new role create operation"
|
183 |
-
msgstr "建立角色發生錯誤"
|
184 |
-
|
185 |
-
#: ../includes/ure-lib.php:513
|
186 |
-
#, php-format
|
187 |
-
msgid "Role %s is created successfully"
|
188 |
-
msgstr "角色 %s 建立成功"
|
189 |
-
|
190 |
-
#: ../includes/ure-lib.php:597
|
191 |
-
msgid "Error encountered during role delete operation"
|
192 |
-
msgstr "刪除角色發生錯誤"
|
193 |
-
|
194 |
-
#: ../includes/ure-lib.php:599
|
195 |
-
#, php-format
|
196 |
-
msgid "Role %s is deleted successfully"
|
197 |
-
msgstr "角色 %s 刪除成功"
|
198 |
-
|
199 |
-
#: ../includes/ure-lib.php:619
|
200 |
-
msgid "Error encountered during default role change operation"
|
201 |
-
msgstr "更改預設角色發生錯誤"
|
202 |
-
|
203 |
-
#: ../includes/ure-lib.php:625
|
204 |
-
#, php-format
|
205 |
-
msgid "Default role for new users is set to %s successfully"
|
206 |
-
msgstr "將新角色更改為預設角色 %s 成功"
|
207 |
-
|
208 |
-
#: ../includes/ure-lib.php:652
|
209 |
-
msgid "Editor"
|
210 |
-
msgstr "編輯"
|
211 |
-
|
212 |
-
#: ../includes/ure-lib.php:653
|
213 |
-
msgid "Author"
|
214 |
-
msgstr "作者"
|
215 |
-
|
216 |
-
#: ../includes/ure-lib.php:654
|
217 |
-
msgid "Contributor"
|
218 |
-
msgstr "撰寫人員"
|
219 |
-
|
220 |
-
#: ../includes/ure-lib.php:655
|
221 |
-
msgid "Subscriber"
|
222 |
-
msgstr "訂閱者"
|
223 |
-
|
224 |
-
#: ../includes/ure-lib.php:657
|
225 |
-
msgid "Switch themes"
|
226 |
-
msgstr "更改佈景主題"
|
227 |
-
|
228 |
-
#: ../includes/ure-lib.php:658
|
229 |
-
msgid "Edit themes"
|
230 |
-
msgstr "編輯佈景主題"
|
231 |
-
|
232 |
-
#: ../includes/ure-lib.php:659
|
233 |
-
msgid "Activate plugins"
|
234 |
-
msgstr "啟用外掛"
|
235 |
-
|
236 |
-
#: ../includes/ure-lib.php:660
|
237 |
-
msgid "Edit plugins"
|
238 |
-
msgstr "編輯外掛"
|
239 |
-
|
240 |
-
#: ../includes/ure-lib.php:661
|
241 |
-
msgid "Edit users"
|
242 |
-
msgstr "編輯帳號"
|
243 |
-
|
244 |
-
#: ../includes/ure-lib.php:662
|
245 |
-
msgid "Edit files"
|
246 |
-
msgstr "編輯檔案"
|
247 |
-
|
248 |
-
#: ../includes/ure-lib.php:663
|
249 |
-
msgid "Manage options"
|
250 |
-
msgstr "管理選項"
|
251 |
-
|
252 |
-
#: ../includes/ure-lib.php:664
|
253 |
-
msgid "Moderate comments"
|
254 |
-
msgstr "審核評論"
|
255 |
-
|
256 |
-
#: ../includes/ure-lib.php:665
|
257 |
-
msgid "Manage categories"
|
258 |
-
msgstr "管理分類"
|
259 |
-
|
260 |
-
#: ../includes/ure-lib.php:666
|
261 |
-
msgid "Manage links"
|
262 |
-
msgstr "管理鏈結"
|
263 |
-
|
264 |
-
#: ../includes/ure-lib.php:667
|
265 |
-
msgid "Upload files"
|
266 |
-
msgstr "新增檔案"
|
267 |
-
|
268 |
-
#: ../includes/ure-lib.php:668
|
269 |
-
msgid "Import"
|
270 |
-
msgstr "導入"
|
271 |
-
|
272 |
-
#: ../includes/ure-lib.php:669
|
273 |
-
msgid "Unfiltered html"
|
274 |
-
msgstr "不過濾 html"
|
275 |
-
|
276 |
-
#: ../includes/ure-lib.php:670
|
277 |
-
msgid "Edit posts"
|
278 |
-
msgstr "編輯文章"
|
279 |
-
|
280 |
-
#: ../includes/ure-lib.php:671
|
281 |
-
msgid "Edit others posts"
|
282 |
-
msgstr "編輯他人文章"
|
283 |
-
|
284 |
-
#: ../includes/ure-lib.php:672
|
285 |
-
msgid "Edit published posts"
|
286 |
-
msgstr "編輯已發表文章"
|
287 |
-
|
288 |
-
#: ../includes/ure-lib.php:673
|
289 |
-
msgid "Publish posts"
|
290 |
-
msgstr "新增文章"
|
291 |
-
|
292 |
-
#: ../includes/ure-lib.php:674
|
293 |
-
msgid "Edit pages"
|
294 |
-
msgstr "編輯分頁"
|
295 |
-
|
296 |
-
#: ../includes/ure-lib.php:675
|
297 |
-
msgid "Read"
|
298 |
-
msgstr "瀏覽"
|
299 |
-
|
300 |
-
#: ../includes/ure-lib.php:676
|
301 |
-
msgid "Level 10"
|
302 |
-
msgstr "等級 10"
|
303 |
-
|
304 |
-
#: ../includes/ure-lib.php:677
|
305 |
-
msgid "Level 9"
|
306 |
-
msgstr "等級 9"
|
307 |
-
|
308 |
-
#: ../includes/ure-lib.php:678
|
309 |
-
msgid "Level 8"
|
310 |
-
msgstr "等級 8"
|
311 |
-
|
312 |
-
#: ../includes/ure-lib.php:679
|
313 |
-
msgid "Level 7"
|
314 |
-
msgstr "等級 7"
|
315 |
-
|
316 |
-
#: ../includes/ure-lib.php:680
|
317 |
-
msgid "Level 6"
|
318 |
-
msgstr "等級 6"
|
319 |
-
|
320 |
-
#: ../includes/ure-lib.php:681
|
321 |
-
msgid "Level 5"
|
322 |
-
msgstr "等級 5"
|
323 |
-
|
324 |
-
#: ../includes/ure-lib.php:682
|
325 |
-
msgid "Level 4"
|
326 |
-
msgstr "等級 4"
|
327 |
-
|
328 |
-
#: ../includes/ure-lib.php:683
|
329 |
-
msgid "Level 3"
|
330 |
-
msgstr "等級 3"
|
331 |
-
|
332 |
-
#: ../includes/ure-lib.php:684
|
333 |
-
msgid "Level 2"
|
334 |
-
msgstr "等級 2"
|
335 |
-
|
336 |
-
#: ../includes/ure-lib.php:685
|
337 |
-
msgid "Level 1"
|
338 |
-
msgstr "等級 1"
|
339 |
-
|
340 |
-
#: ../includes/ure-lib.php:686
|
341 |
-
msgid "Level 0"
|
342 |
-
msgstr "等級 0"
|
343 |
-
|
344 |
-
#: ../includes/ure-lib.php:687
|
345 |
-
msgid "Edit others pages"
|
346 |
-
msgstr "編輯他人分頁"
|
347 |
-
|
348 |
-
#: ../includes/ure-lib.php:688
|
349 |
-
msgid "Edit published pages"
|
350 |
-
msgstr "編輯已發表分頁"
|
351 |
-
|
352 |
-
#: ../includes/ure-lib.php:689
|
353 |
-
msgid "Publish pages"
|
354 |
-
msgstr "新增分頁"
|
355 |
-
|
356 |
-
#: ../includes/ure-lib.php:690
|
357 |
-
msgid "Delete pages"
|
358 |
-
msgstr "刪除分頁"
|
359 |
-
|
360 |
-
#: ../includes/ure-lib.php:691
|
361 |
-
msgid "Delete others pages"
|
362 |
-
msgstr "刪除他人分頁"
|
363 |
-
|
364 |
-
#: ../includes/ure-lib.php:692
|
365 |
-
msgid "Delete published pages"
|
366 |
-
msgstr "刪除已發布分頁"
|
367 |
-
|
368 |
-
#: ../includes/ure-lib.php:693
|
369 |
-
msgid "Delete posts"
|
370 |
-
msgstr "刪除文章"
|
371 |
-
|
372 |
-
#: ../includes/ure-lib.php:694
|
373 |
-
msgid "Delete others posts"
|
374 |
-
msgstr "刪除他人文章"
|
375 |
-
|
376 |
-
#: ../includes/ure-lib.php:695
|
377 |
-
msgid "Delete published posts"
|
378 |
-
msgstr "刪除已發表文章"
|
379 |
-
|
380 |
-
#: ../includes/ure-lib.php:696
|
381 |
-
msgid "Delete private posts"
|
382 |
-
msgstr "刪除私密文章"
|
383 |
-
|
384 |
-
#: ../includes/ure-lib.php:697
|
385 |
-
msgid "Edit private posts"
|
386 |
-
msgstr "編輯私密文章"
|
387 |
-
|
388 |
-
#: ../includes/ure-lib.php:698
|
389 |
-
msgid "Read private posts"
|
390 |
-
msgstr "瀏覽私密文章"
|
391 |
-
|
392 |
-
#: ../includes/ure-lib.php:699
|
393 |
-
msgid "Delete private pages"
|
394 |
-
msgstr "刪除私密分頁"
|
395 |
-
|
396 |
-
#: ../includes/ure-lib.php:700
|
397 |
-
msgid "Edit private pages"
|
398 |
-
msgstr "編輯私密分頁"
|
399 |
-
|
400 |
-
#: ../includes/ure-lib.php:701
|
401 |
-
msgid "Read private pages"
|
402 |
-
msgstr "瀏覽私密分頁"
|
403 |
-
|
404 |
-
#: ../includes/ure-lib.php:702
|
405 |
-
msgid "Delete users"
|
406 |
-
msgstr "刪除帳號"
|
407 |
-
|
408 |
-
#: ../includes/ure-lib.php:703
|
409 |
-
msgid "Create users"
|
410 |
-
msgstr "新增帳號"
|
411 |
-
|
412 |
-
#: ../includes/ure-lib.php:704
|
413 |
-
msgid "Unfiltered upload"
|
414 |
-
msgstr "無限制上傳"
|
415 |
-
|
416 |
-
#: ../includes/ure-lib.php:705
|
417 |
-
msgid "Edit dashboard"
|
418 |
-
msgstr "編輯控制台"
|
419 |
-
|
420 |
-
#: ../includes/ure-lib.php:706
|
421 |
-
msgid "Update plugins"
|
422 |
-
msgstr "更新外掛"
|
423 |
-
|
424 |
-
#: ../includes/ure-lib.php:707
|
425 |
-
msgid "Delete plugins"
|
426 |
-
msgstr "刪除外掛"
|
427 |
-
|
428 |
-
#: ../includes/ure-lib.php:708
|
429 |
-
msgid "Install plugins"
|
430 |
-
msgstr "安裝外掛"
|
431 |
-
|
432 |
-
#: ../includes/ure-lib.php:709
|
433 |
-
msgid "Update themes"
|
434 |
-
msgstr "更新佈景主題"
|
435 |
-
|
436 |
-
#: ../includes/ure-lib.php:710
|
437 |
-
msgid "Install themes"
|
438 |
-
msgstr "安裝佈景主題"
|
439 |
-
|
440 |
-
#: ../includes/ure-lib.php:711
|
441 |
-
msgid "Update core"
|
442 |
-
msgstr "更新核心"
|
443 |
-
|
444 |
-
#: ../includes/ure-lib.php:712
|
445 |
-
msgid "List users"
|
446 |
-
msgstr "帳號列表"
|
447 |
-
|
448 |
-
#: ../includes/ure-lib.php:713
|
449 |
-
msgid "Remove users"
|
450 |
-
msgstr "刪除帳號"
|
451 |
-
|
452 |
-
#: ../includes/ure-lib.php:714
|
453 |
-
msgid "Add users"
|
454 |
-
msgstr "新增帳號"
|
455 |
-
|
456 |
-
#: ../includes/ure-lib.php:715
|
457 |
-
msgid "Promote users"
|
458 |
-
msgstr "提升用戶"
|
459 |
-
|
460 |
-
#: ../includes/ure-lib.php:716
|
461 |
-
msgid "Edit theme options"
|
462 |
-
msgstr "編輯佈景選項"
|
463 |
-
|
464 |
-
#: ../includes/ure-lib.php:717
|
465 |
-
msgid "Delete themes"
|
466 |
-
msgstr "刪除佈景"
|
467 |
-
|
468 |
-
#: ../includes/ure-lib.php:718
|
469 |
-
msgid "Export"
|
470 |
-
msgstr "導出"
|
471 |
-
|
472 |
-
#: ../includes/ure-lib.php:834
|
473 |
-
msgid "Error: Capability name must contain latin characters and digits only!"
|
474 |
-
msgstr "錯誤:功能名稱必須使用英文或數字!"
|
475 |
-
|
476 |
-
#: ../includes/ure-lib.php:846
|
477 |
-
#, php-format
|
478 |
-
msgid "Capability %s is added successfully"
|
479 |
-
msgstr "功能 %s 已成功加入"
|
480 |
-
|
481 |
-
#: ../includes/ure-lib.php:848
|
482 |
-
#, php-format
|
483 |
-
msgid "Capability %s exists already"
|
484 |
-
msgstr "功能 %s 已存在"
|
485 |
-
|
486 |
-
#: ../includes/ure-lib.php:997
|
487 |
-
#, php-format
|
488 |
-
msgid "Error! You do not have permission to delete this capability: %s!"
|
489 |
-
msgstr "錯誤:您無權刪除這功能: %s !"
|
490 |
-
|
491 |
-
#: ../includes/ure-lib.php:1016
|
492 |
-
#, php-format
|
493 |
-
msgid "Capability %s is removed successfully"
|
494 |
-
msgstr "功能 %s 已成功刪除"
|
495 |
-
|
496 |
-
#: ../includes/ure-lib.php:1083
|
497 |
-
msgid "Help"
|
498 |
-
msgstr "幫助"
|
499 |
-
|
500 |
-
#: ../includes/ure-role-edit.php:29
|
501 |
-
msgid "None"
|
502 |
-
msgstr "無"
|
503 |
-
|
504 |
-
#: ../includes/ure-role-edit.php:67
|
505 |
-
msgid "Select Role and change its capabilities list"
|
506 |
-
msgstr "選擇一個角色並更改功能"
|
507 |
-
|
508 |
-
#: ../includes/ure-role-edit.php:69
|
509 |
-
#: ../includes/ure-role-edit.php:166
|
510 |
-
msgid "Select Role:"
|
511 |
-
msgstr "選擇角色:"
|
512 |
-
|
513 |
-
#: ../includes/ure-role-edit.php:79
|
514 |
-
#: ../includes/ure-user-edit.php:38
|
515 |
-
msgid "Show capabilities in human readable form"
|
516 |
-
msgstr "簡單呈現"
|
517 |
-
|
518 |
-
#: ../includes/ure-role-edit.php:88
|
519 |
-
#: ../includes/ure-user-edit.php:47
|
520 |
-
msgid "Show deprecated capabilities"
|
521 |
-
msgstr "廢棄的功能"
|
522 |
-
|
523 |
-
#: ../includes/ure-role-edit.php:92
|
524 |
-
msgid "If checked, then apply action to ALL sites of this Network"
|
525 |
-
msgstr "如果選擇,將會影響這個網站"
|
526 |
-
|
527 |
-
#: ../includes/ure-role-edit.php:102
|
528 |
-
msgid "Apply to All Sites"
|
529 |
-
msgstr "允許所有網站"
|
530 |
-
|
531 |
-
#: ../includes/ure-role-edit.php:109
|
532 |
-
#: ../includes/ure-user-edit.php:88
|
533 |
-
msgid "Core capabilities:"
|
534 |
-
msgstr "核心功能:"
|
535 |
-
|
536 |
-
#: ../includes/ure-role-edit.php:124
|
537 |
-
#: ../includes/ure-user-edit.php:103
|
538 |
-
msgid "Custom capabilities:"
|
539 |
-
msgstr "自定義功能:"
|
540 |
-
|
541 |
-
#: ../includes/ure-role-edit.php:155
|
542 |
-
msgid "Role name (ID): "
|
543 |
-
msgstr ""
|
544 |
-
|
545 |
-
#: ../includes/ure-role-edit.php:157
|
546 |
-
msgid "Display Role Name: "
|
547 |
-
msgstr ""
|
548 |
-
|
549 |
-
#: ../includes/ure-role-edit.php:159
|
550 |
-
msgid "Make copy of: "
|
551 |
-
msgstr "複製"
|
552 |
-
|
553 |
-
#: ../includes/ure-role-edit.php:181
|
554 |
-
#, fuzzy
|
555 |
-
msgid "Delete:"
|
556 |
-
msgstr "刪除"
|
557 |
-
|
558 |
-
#: ../includes/ure-role-edit.php:188
|
559 |
-
msgid "Capability name (ID): "
|
560 |
-
msgstr ""
|
561 |
-
|
562 |
-
#: ../includes/ure-user-edit.php:22
|
563 |
-
msgid "Change capabilities for user"
|
564 |
-
msgstr "更改用戶功能"
|
565 |
-
|
566 |
-
#: ../includes/ure-user-edit.php:52
|
567 |
-
msgid "Primary Role:"
|
568 |
-
msgstr ""
|
569 |
-
|
570 |
-
#: ../includes/ure-user-edit.php:62
|
571 |
-
msgid "bbPress Role:"
|
572 |
-
msgstr ""
|
573 |
-
|
574 |
-
#: ../includes/ure-user-edit.php:72
|
575 |
-
#, fuzzy
|
576 |
-
msgid "Other Roles:"
|
577 |
-
msgstr "刪除角色"
|
578 |
-
|
579 |
-
#: ../includes/ure-options.php:65
|
580 |
-
#, fuzzy
|
581 |
-
msgid "User Roles are restored to WordPress default values. "
|
582 |
-
msgstr "用戶角色已從備份還原"
|
583 |
-
|
584 |
-
#: ../includes/ure-options.php:136
|
585 |
-
msgid "Error: "
|
586 |
-
msgstr "錯誤:"
|
587 |
-
|
588 |
-
#: ../includes/ure-options.php:136
|
589 |
-
#: ../includes/ure-options.php:156
|
590 |
-
msgid "Role"
|
591 |
-
msgstr "角色"
|
592 |
-
|
593 |
-
#: ../includes/ure-options.php:136
|
594 |
-
msgid "does not exist"
|
595 |
-
msgstr "不存在"
|
596 |
-
|
597 |
-
#: ../includes/ure-options.php:156
|
598 |
-
msgid "is updated successfully"
|
599 |
-
msgstr "更新成功"
|
600 |
-
|
601 |
-
#: ../includes/ure-options.php:161
|
602 |
-
#: ../includes/ure-options.php:174
|
603 |
-
#, fuzzy
|
604 |
-
msgid "Error occured during role update"
|
605 |
-
msgstr "刪除角色發生錯誤"
|
606 |
-
|
607 |
-
#: ../includes/ure-options.php:169
|
608 |
-
msgid "User"
|
609 |
-
msgstr "帳號"
|
610 |
-
|
611 |
-
#: ../includes/ure-options.php:169
|
612 |
-
msgid "capabilities are updated successfully"
|
613 |
-
msgstr "功能已更新成功"
|
614 |
-
|
615 |
-
#: ../includes/ure-options.php:206
|
616 |
-
msgid "About this Plugin:"
|
617 |
-
msgstr "關於此外掛:"
|
618 |
-
|
619 |
-
#: ../includes/ure-options.php:207
|
620 |
-
msgid "Author's website"
|
621 |
-
msgstr "作者網站"
|
622 |
-
|
623 |
-
#: ../includes/ure-options.php:208
|
624 |
-
msgid "Plugin webpage"
|
625 |
-
msgstr "外掛網站"
|
626 |
-
|
627 |
-
#: ../includes/ure-options.php:210
|
628 |
-
msgid "FAQ"
|
629 |
-
msgstr "常見問題"
|
630 |
-
|
631 |
-
#~ msgid "Database operation error. Check log file."
|
632 |
-
#~ msgstr "資料庫操作錯誤,請查看更新日誌。"
|
633 |
-
|
634 |
-
#~ msgid ""
|
635 |
-
#~ "No backup data. It is created automatically before the first role data "
|
636 |
-
#~ "update."
|
637 |
-
#~ msgstr "沒有備份資料。這是之前自動建立的第一個角色資料更新。"
|
638 |
-
|
639 |
-
#~ msgid " Name must contain latin characters and digits only!"
|
640 |
-
#~ msgstr "名字必須使用英文或數字"
|
641 |
-
|
642 |
-
#~ msgid "Change Default Role"
|
643 |
-
#~ msgstr "更改預設角色"
|
644 |
-
|
645 |
-
#~ msgid ""
|
646 |
-
#~ "Restore Roles from backup copy. Be careful, backup was created when you "
|
647 |
-
#~ "started URE 1st time. All changes you made after that will be lost"
|
648 |
-
#~ msgstr ""
|
649 |
-
#~ "從備份還原角色。小心,當您第一次使用時備份已被建立。所有更改將會消失"
|
650 |
-
|
651 |
-
#~ msgid "Role \"%s\" update: please confirm to continue"
|
652 |
-
#~ msgstr "角色 \"%s\" 更新:請確認繼續"
|
653 |
-
|
654 |
-
#~ msgid "Save Changes"
|
655 |
-
#~ msgstr "儲存變更"
|
656 |
-
|
657 |
-
#~ msgid "Cancel not saved changes"
|
658 |
-
#~ msgstr "取消儲存變更"
|
659 |
-
|
660 |
-
#~ msgid "Select All Capabilities"
|
661 |
-
#~ msgstr "選擇全部功能"
|
662 |
-
|
663 |
-
#~ msgid "Unselect All Capabilities"
|
664 |
-
#~ msgstr "取消全選功能"
|
665 |
-
|
666 |
-
#~ msgid "Turn checked capabilities off and vise versa"
|
667 |
-
#~ msgstr "將檢查關閉的功能"
|
668 |
-
|
669 |
-
#~ msgid "Restore Roles from backup copy"
|
670 |
-
#~ msgstr "從備份恢復角色"
|
671 |
-
|
672 |
-
#~ msgid "Name: "
|
673 |
-
#~ msgstr "帳號:"
|
674 |
-
|
675 |
-
#~ msgid "Add"
|
676 |
-
#~ msgstr "增加"
|
677 |
-
|
678 |
-
#~ msgid "Add New User Role"
|
679 |
-
#~ msgstr "新增帳號角色"
|
680 |
-
|
681 |
-
#~ msgid "Default Role for New User"
|
682 |
-
#~ msgstr "新帳號預設角色"
|
683 |
-
|
684 |
-
#~ msgid "Change"
|
685 |
-
#~ msgstr "更改"
|
686 |
-
|
687 |
-
#~ msgid "Delete User Role"
|
688 |
-
#~ msgstr "刪除帳號角色"
|
689 |
-
|
690 |
-
#~ msgid "Remove"
|
691 |
-
#~ msgstr "刪除"
|
692 |
-
|
693 |
-
#~ msgid "Remove User Capability"
|
694 |
-
#~ msgstr "刪除用戶功能"
|
695 |
-
|
696 |
-
#~ msgid "User \"%s\" update: please confirm to continue"
|
697 |
-
#~ msgstr "帳號 \"%s\" 更新:請確認繼續"
|
698 |
-
|
699 |
-
#~ msgid "Role:"
|
700 |
-
#~ msgstr "角色"
|
701 |
-
|
702 |
-
#~ msgid "Add capabilities to this user:"
|
703 |
-
#~ msgstr "增加功能給這個帳號:"
|
704 |
-
|
705 |
-
#~ msgid "Greetings"
|
706 |
-
#~ msgstr "感謝"
|
707 |
-
|
708 |
-
#~ msgid "Greetings:"
|
709 |
-
#~ msgstr "感謝:"
|
710 |
-
|
711 |
-
#~ msgid "It's me, the author"
|
712 |
-
#~ msgstr "是我,外掛作者"
|
713 |
-
|
714 |
-
#~ msgid "For the help with Belorussian translation"
|
715 |
-
#~ msgstr "白俄羅斯版本貢獻者"
|
716 |
-
|
717 |
-
#~ msgid "For the help with Brasilian translation"
|
718 |
-
#~ msgstr "巴西版本貢獻者"
|
719 |
-
|
720 |
-
#~ msgid "For the help with Brasilian Portuguese translation"
|
721 |
-
#~ msgstr "巴西葡萄牙語版本貢獻者"
|
722 |
-
|
723 |
-
#~ msgid "For the help with Chinese translation"
|
724 |
-
#~ msgstr "簡體中文版本貢獻者"
|
725 |
-
|
726 |
-
#~ msgid "For the help with Dutch translation"
|
727 |
-
#~ msgstr "荷蘭文版本貢獻者"
|
728 |
-
|
729 |
-
#~ msgid "For the help with Finnish translation"
|
730 |
-
#~ msgstr "芬蘭版本貢獻者"
|
731 |
-
|
732 |
-
#~ msgid "For the help with French translation"
|
733 |
-
#~ msgstr "法文版本貢獻者"
|
734 |
-
|
735 |
-
#~ msgid "For the help with German translation"
|
736 |
-
#~ msgstr "德文版本貢獻者"
|
737 |
-
|
738 |
-
#~ msgid "For the help with Hebrew translation"
|
739 |
-
#~ msgstr "希伯來文版本貢獻者"
|
740 |
-
|
741 |
-
#~ msgid "For the help with Hindi translation"
|
742 |
-
#~ msgstr "印地文版本貢獻者"
|
743 |
-
|
744 |
-
#~ msgid "For the help with Hungarian translation"
|
745 |
-
#~ msgstr "匈牙利版本貢獻者"
|
746 |
-
|
747 |
-
#~ msgid "For the help with Italian translation"
|
748 |
-
#~ msgstr "義大利語版本貢獻者"
|
749 |
-
|
750 |
-
#~ msgid "For the help with Japanese translation"
|
751 |
-
#~ msgstr "日語版本貢獻者"
|
752 |
-
|
753 |
-
#~ msgid "For the help with Lithuanian translation"
|
754 |
-
#~ msgstr "立陶宛版本貢獻者"
|
755 |
-
|
756 |
-
#~ msgid "For the help with Persian translation"
|
757 |
-
#~ msgstr "波斯語版本貢獻者"
|
758 |
-
|
759 |
-
#~ msgid "For the help with Polish translation"
|
760 |
-
#~ msgstr "波蘭語版本貢獻者"
|
761 |
-
|
762 |
-
#~ msgid "For the help with Spanish translation"
|
763 |
-
#~ msgstr "西班牙文版本貢獻者"
|
764 |
-
|
765 |
-
#~ msgid "For the updated Swedish translation"
|
766 |
-
#~ msgstr "瑞典版本更新貢獻者"
|
767 |
-
|
768 |
-
#~ msgid "For the help with Swedish translation"
|
769 |
-
#~ msgstr "瑞典版本貢獻者"
|
770 |
-
|
771 |
-
#~ msgid "For the help with Turkish translation"
|
772 |
-
#~ msgstr "土耳其版本貢獻者"
|
773 |
-
|
774 |
-
#~ msgid "For the code to hide administrator role"
|
775 |
-
#~ msgstr "隱藏管理員貢獻者"
|
776 |
-
|
777 |
-
#~ msgid "For the code enhancement suggestion"
|
778 |
-
#~ msgstr "幫助原碼增強建議"
|
779 |
-
|
780 |
-
#~ msgid ""
|
781 |
-
#~ "Do you wish to see your name with link to your site here? You are "
|
782 |
-
#~ "welcome! Your help with translation and new ideas are very appreciated."
|
783 |
-
#~ msgstr ""
|
784 |
-
#~ "想在這看到您的網站嗎?非常歡迎!凡是提供各國語言翻譯將可以於此發現您的網"
|
785 |
-
#~ "站。"
|
786 |
-
|
787 |
-
#~ msgid "Roles list reading error is encountered"
|
788 |
-
#~ msgstr "角色列表读取出错"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
lang/ure.mo
CHANGED
Binary file
|
lang/ure.pot
CHANGED
@@ -2,613 +2,622 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: User Role Editor 2.0\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2013-
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: Vladimir Garagulya <vladimir@shinephp.com>\n"
|
8 |
"Language-Team: ShinePHP.com <vladimir@shinephp.com>\n"
|
9 |
-
"Language: \n"
|
10 |
"MIME-Version: 1.0\n"
|
11 |
"Content-Type: text/plain; charset=UTF-8\n"
|
12 |
"Content-Transfer-Encoding: 8bit\n"
|
13 |
-
"X-Poedit-Language: English\n"
|
14 |
-
"X-Poedit-Country: RUSSIAN FEDERATION\n"
|
15 |
"X-Poedit-SourceCharset: utf-8\n"
|
16 |
"X-Poedit-KeywordsList: __;_e\n"
|
17 |
"X-Poedit-Basepath: .\n"
|
|
|
18 |
"X-Poedit-SearchPath-0: ..\n"
|
19 |
|
20 |
-
#: ../
|
21 |
-
|
22 |
-
msgid "User Role Editor requires PHP %s or newer."
|
23 |
msgstr ""
|
24 |
|
25 |
-
#: ../user-role-editor.php:
|
26 |
-
#: ../user-role-editor.php:
|
27 |
-
msgid "
|
28 |
msgstr ""
|
29 |
|
30 |
-
#: ../user-role-editor.php:
|
31 |
-
msgid "
|
32 |
msgstr ""
|
33 |
|
34 |
-
#: ../user-role-editor.php:
|
35 |
-
msgid "
|
36 |
msgstr ""
|
37 |
|
38 |
-
#: ../user-role-editor.php:
|
39 |
-
#: ../
|
40 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
41 |
msgid "User Role Editor"
|
42 |
msgstr ""
|
43 |
|
44 |
-
#: ../user-role-editor.php:
|
45 |
-
|
46 |
-
msgid "User Role Editor requires WordPress %s or newer."
|
47 |
msgstr ""
|
48 |
|
49 |
-
#: ../user-role-editor.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
50 |
msgid "Select All"
|
51 |
msgstr ""
|
52 |
|
53 |
-
#: ../user-role-editor.php:
|
54 |
msgid "Unselect All"
|
55 |
msgstr ""
|
56 |
|
57 |
-
#: ../user-role-editor.php:
|
58 |
msgid "Reverse"
|
59 |
msgstr ""
|
60 |
|
61 |
-
#: ../user-role-editor.php:
|
62 |
msgid "Update"
|
63 |
msgstr ""
|
64 |
|
65 |
-
#: ../user-role-editor.php:
|
66 |
msgid "Please confirm permissions update"
|
67 |
msgstr ""
|
68 |
|
69 |
-
#: ../user-role-editor.php:
|
70 |
msgid "Add New Role"
|
71 |
msgstr ""
|
72 |
|
73 |
-
#: ../user-role-editor.php:
|
74 |
msgid " Role name (ID) can not be empty!"
|
75 |
msgstr ""
|
76 |
|
77 |
-
#: ../user-role-editor.php:
|
78 |
-
msgid "
|
|
|
|
|
79 |
msgstr ""
|
80 |
|
81 |
-
#: ../user-role-editor.php:
|
82 |
msgid "Add Role"
|
83 |
msgstr ""
|
84 |
|
85 |
-
#: ../user-role-editor.php:
|
86 |
msgid "Delete Role"
|
87 |
msgstr ""
|
88 |
|
89 |
-
#: ../user-role-editor.php:
|
90 |
msgid "Cancel"
|
91 |
msgstr ""
|
92 |
|
93 |
-
#: ../user-role-editor.php:
|
94 |
msgid "Add Capability"
|
95 |
msgstr ""
|
96 |
|
97 |
-
#: ../user-role-editor.php:
|
98 |
-
#: ../user-role-editor.php:
|
99 |
msgid "Delete Capability"
|
100 |
msgstr ""
|
101 |
|
102 |
-
#: ../user-role-editor.php:
|
103 |
msgid "Reset"
|
104 |
msgstr ""
|
105 |
|
106 |
-
#: ../user-role-editor.php:
|
107 |
-
msgid "
|
|
|
|
|
|
|
108 |
msgstr ""
|
109 |
|
110 |
-
#: ../user-role-editor.php:
|
111 |
msgid "Default Role"
|
112 |
msgstr ""
|
113 |
|
114 |
-
#: ../user-role-editor.php:
|
115 |
msgid "Set New Default Role"
|
116 |
msgstr ""
|
117 |
|
118 |
-
#: ../user-role-editor.php:
|
119 |
-
msgid "
|
|
|
|
|
120 |
msgstr ""
|
121 |
|
122 |
-
#: ../user-role-editor.php:
|
123 |
msgid " Capability name (ID) can not be empty!"
|
124 |
msgstr ""
|
125 |
|
126 |
-
#: ../user-role-editor.php:
|
127 |
-
msgid "
|
|
|
|
|
128 |
msgstr ""
|
129 |
|
130 |
-
#: ../user-role-editor.php:
|
131 |
-
|
|
|
132 |
msgstr ""
|
133 |
|
134 |
-
#: ../user-role-editor.php:
|
135 |
-
|
136 |
-
msgid "Changelog"
|
137 |
msgstr ""
|
138 |
|
139 |
-
#: ../
|
140 |
-
msgid "
|
141 |
msgstr ""
|
142 |
|
143 |
-
#: ../
|
144 |
-
|
145 |
-
msgid "Other Roles"
|
146 |
msgstr ""
|
147 |
|
148 |
-
#: ../
|
149 |
-
msgid "
|
150 |
msgstr ""
|
151 |
|
152 |
-
#: ../includes/ure-
|
153 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
154 |
msgstr ""
|
155 |
|
156 |
-
#: ../includes/ure-lib.php:
|
157 |
-
msgid "
|
|
|
|
|
|
|
|
|
158 |
msgstr ""
|
159 |
|
160 |
-
#: ../includes/ure-lib.php:
|
161 |
-
msgid "Error
|
162 |
msgstr ""
|
163 |
|
164 |
-
#: ../includes/ure-lib.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
165 |
#, php-format
|
166 |
msgid "Role %s exists already"
|
167 |
msgstr ""
|
168 |
|
169 |
-
#: ../includes/ure-lib.php:
|
170 |
msgid "Error is encountered during new role create operation"
|
171 |
msgstr ""
|
172 |
|
173 |
-
#: ../includes/ure-lib.php:
|
174 |
#, php-format
|
175 |
msgid "Role %s is created successfully"
|
176 |
msgstr ""
|
177 |
|
178 |
-
#: ../includes/ure-lib.php:
|
179 |
msgid "Error encountered during role delete operation"
|
180 |
msgstr ""
|
181 |
|
182 |
-
#: ../includes/ure-lib.php:
|
183 |
#, php-format
|
184 |
msgid "Role %s is deleted successfully"
|
185 |
msgstr ""
|
186 |
|
187 |
-
#: ../includes/ure-lib.php:
|
188 |
msgid "Error encountered during default role change operation"
|
189 |
msgstr ""
|
190 |
|
191 |
-
#: ../includes/ure-lib.php:
|
192 |
#, php-format
|
193 |
msgid "Default role for new users is set to %s successfully"
|
194 |
msgstr ""
|
195 |
|
196 |
-
#: ../includes/ure-lib.php:
|
197 |
msgid "Editor"
|
198 |
msgstr ""
|
199 |
|
200 |
-
#: ../includes/ure-lib.php:
|
201 |
msgid "Author"
|
202 |
msgstr ""
|
203 |
|
204 |
-
#: ../includes/ure-lib.php:
|
205 |
msgid "Contributor"
|
206 |
msgstr ""
|
207 |
|
208 |
-
#: ../includes/ure-lib.php:
|
209 |
msgid "Subscriber"
|
210 |
msgstr ""
|
211 |
|
212 |
-
#: ../includes/ure-lib.php:
|
213 |
msgid "Switch themes"
|
214 |
msgstr ""
|
215 |
|
216 |
-
#: ../includes/ure-lib.php:
|
217 |
msgid "Edit themes"
|
218 |
msgstr ""
|
219 |
|
220 |
-
#: ../includes/ure-lib.php:
|
221 |
msgid "Activate plugins"
|
222 |
msgstr ""
|
223 |
|
224 |
-
#: ../includes/ure-lib.php:
|
225 |
msgid "Edit plugins"
|
226 |
msgstr ""
|
227 |
|
228 |
-
#: ../includes/ure-lib.php:
|
229 |
msgid "Edit users"
|
230 |
msgstr ""
|
231 |
|
232 |
-
#: ../includes/ure-lib.php:
|
233 |
msgid "Edit files"
|
234 |
msgstr ""
|
235 |
|
236 |
-
#: ../includes/ure-lib.php:
|
237 |
msgid "Manage options"
|
238 |
msgstr ""
|
239 |
|
240 |
-
#: ../includes/ure-lib.php:
|
241 |
msgid "Moderate comments"
|
242 |
msgstr ""
|
243 |
|
244 |
-
#: ../includes/ure-lib.php:
|
245 |
msgid "Manage categories"
|
246 |
msgstr ""
|
247 |
|
248 |
-
#: ../includes/ure-lib.php:
|
249 |
msgid "Manage links"
|
250 |
msgstr ""
|
251 |
|
252 |
-
#: ../includes/ure-lib.php:
|
253 |
msgid "Upload files"
|
254 |
msgstr ""
|
255 |
|
256 |
-
#: ../includes/ure-lib.php:
|
257 |
msgid "Import"
|
258 |
msgstr ""
|
259 |
|
260 |
-
#: ../includes/ure-lib.php:
|
261 |
msgid "Unfiltered html"
|
262 |
msgstr ""
|
263 |
|
264 |
-
#: ../includes/ure-lib.php:
|
265 |
msgid "Edit posts"
|
266 |
msgstr ""
|
267 |
|
268 |
-
#: ../includes/ure-lib.php:
|
269 |
msgid "Edit others posts"
|
270 |
msgstr ""
|
271 |
|
272 |
-
#: ../includes/ure-lib.php:
|
273 |
msgid "Edit published posts"
|
274 |
msgstr ""
|
275 |
|
276 |
-
#: ../includes/ure-lib.php:
|
277 |
msgid "Publish posts"
|
278 |
msgstr ""
|
279 |
|
280 |
-
#: ../includes/ure-lib.php:
|
281 |
msgid "Edit pages"
|
282 |
msgstr ""
|
283 |
|
284 |
-
#: ../includes/ure-lib.php:
|
285 |
msgid "Read"
|
286 |
msgstr ""
|
287 |
|
288 |
-
#: ../includes/ure-lib.php:
|
289 |
msgid "Level 10"
|
290 |
msgstr ""
|
291 |
|
292 |
-
#: ../includes/ure-lib.php:
|
293 |
msgid "Level 9"
|
294 |
msgstr ""
|
295 |
|
296 |
-
#: ../includes/ure-lib.php:
|
297 |
msgid "Level 8"
|
298 |
msgstr ""
|
299 |
|
300 |
-
#: ../includes/ure-lib.php:
|
301 |
msgid "Level 7"
|
302 |
msgstr ""
|
303 |
|
304 |
-
#: ../includes/ure-lib.php:
|
305 |
msgid "Level 6"
|
306 |
msgstr ""
|
307 |
|
308 |
-
#: ../includes/ure-lib.php:
|
309 |
msgid "Level 5"
|
310 |
msgstr ""
|
311 |
|
312 |
-
#: ../includes/ure-lib.php:
|
313 |
msgid "Level 4"
|
314 |
msgstr ""
|
315 |
|
316 |
-
#: ../includes/ure-lib.php:
|
317 |
msgid "Level 3"
|
318 |
msgstr ""
|
319 |
|
320 |
-
#: ../includes/ure-lib.php:
|
321 |
msgid "Level 2"
|
322 |
msgstr ""
|
323 |
|
324 |
-
#: ../includes/ure-lib.php:
|
325 |
msgid "Level 1"
|
326 |
msgstr ""
|
327 |
|
328 |
-
#: ../includes/ure-lib.php:
|
329 |
msgid "Level 0"
|
330 |
msgstr ""
|
331 |
|
332 |
-
#: ../includes/ure-lib.php:
|
333 |
msgid "Edit others pages"
|
334 |
msgstr ""
|
335 |
|
336 |
-
#: ../includes/ure-lib.php:
|
337 |
msgid "Edit published pages"
|
338 |
msgstr ""
|
339 |
|
340 |
-
#: ../includes/ure-lib.php:
|
341 |
msgid "Publish pages"
|
342 |
msgstr ""
|
343 |
|
344 |
-
#: ../includes/ure-lib.php:
|
345 |
msgid "Delete pages"
|
346 |
msgstr ""
|
347 |
|
348 |
-
#: ../includes/ure-lib.php:
|
349 |
msgid "Delete others pages"
|
350 |
msgstr ""
|
351 |
|
352 |
-
#: ../includes/ure-lib.php:
|
353 |
msgid "Delete published pages"
|
354 |
msgstr ""
|
355 |
|
356 |
-
#: ../includes/ure-lib.php:
|
357 |
msgid "Delete posts"
|
358 |
msgstr ""
|
359 |
|
360 |
-
#: ../includes/ure-lib.php:
|
361 |
msgid "Delete others posts"
|
362 |
msgstr ""
|
363 |
|
364 |
-
#: ../includes/ure-lib.php:
|
365 |
msgid "Delete published posts"
|
366 |
msgstr ""
|
367 |
|
368 |
-
#: ../includes/ure-lib.php:
|
369 |
msgid "Delete private posts"
|
370 |
msgstr ""
|
371 |
|
372 |
-
#: ../includes/ure-lib.php:
|
373 |
msgid "Edit private posts"
|
374 |
msgstr ""
|
375 |
|
376 |
-
#: ../includes/ure-lib.php:
|
377 |
msgid "Read private posts"
|
378 |
msgstr ""
|
379 |
|
380 |
-
#: ../includes/ure-lib.php:
|
381 |
msgid "Delete private pages"
|
382 |
msgstr ""
|
383 |
|
384 |
-
#: ../includes/ure-lib.php:
|
385 |
msgid "Edit private pages"
|
386 |
msgstr ""
|
387 |
|
388 |
-
#: ../includes/ure-lib.php:
|
389 |
msgid "Read private pages"
|
390 |
msgstr ""
|
391 |
|
392 |
-
#: ../includes/ure-lib.php:
|
393 |
msgid "Delete users"
|
394 |
msgstr ""
|
395 |
|
396 |
-
#: ../includes/ure-lib.php:
|
397 |
msgid "Create users"
|
398 |
msgstr ""
|
399 |
|
400 |
-
#: ../includes/ure-lib.php:
|
401 |
msgid "Unfiltered upload"
|
402 |
msgstr ""
|
403 |
|
404 |
-
#: ../includes/ure-lib.php:
|
405 |
msgid "Edit dashboard"
|
406 |
msgstr ""
|
407 |
|
408 |
-
#: ../includes/ure-lib.php:
|
409 |
msgid "Update plugins"
|
410 |
msgstr ""
|
411 |
|
412 |
-
#: ../includes/ure-lib.php:
|
413 |
msgid "Delete plugins"
|
414 |
msgstr ""
|
415 |
|
416 |
-
#: ../includes/ure-lib.php:
|
417 |
msgid "Install plugins"
|
418 |
msgstr ""
|
419 |
|
420 |
-
#: ../includes/ure-lib.php:
|
421 |
msgid "Update themes"
|
422 |
msgstr ""
|
423 |
|
424 |
-
#: ../includes/ure-lib.php:
|
425 |
msgid "Install themes"
|
426 |
msgstr ""
|
427 |
|
428 |
-
#: ../includes/ure-lib.php:
|
429 |
msgid "Update core"
|
430 |
msgstr ""
|
431 |
|
432 |
-
#: ../includes/ure-lib.php:
|
433 |
msgid "List users"
|
434 |
msgstr ""
|
435 |
|
436 |
-
#: ../includes/ure-lib.php:
|
437 |
msgid "Remove users"
|
438 |
msgstr ""
|
439 |
|
440 |
-
#: ../includes/ure-lib.php:
|
441 |
msgid "Add users"
|
442 |
msgstr ""
|
443 |
|
444 |
-
#: ../includes/ure-lib.php:
|
445 |
msgid "Promote users"
|
446 |
msgstr ""
|
447 |
|
448 |
-
#: ../includes/ure-lib.php:
|
449 |
msgid "Edit theme options"
|
450 |
msgstr ""
|
451 |
|
452 |
-
#: ../includes/ure-lib.php:
|
453 |
msgid "Delete themes"
|
454 |
msgstr ""
|
455 |
|
456 |
-
#: ../includes/ure-lib.php:
|
457 |
msgid "Export"
|
458 |
msgstr ""
|
459 |
|
460 |
-
#: ../includes/ure-lib.php:
|
461 |
msgid "Error: Capability name must contain latin characters and digits only!"
|
462 |
msgstr ""
|
463 |
|
464 |
-
#: ../includes/ure-lib.php:
|
465 |
#, php-format
|
466 |
msgid "Capability %s is added successfully"
|
467 |
msgstr ""
|
468 |
|
469 |
-
#: ../includes/ure-lib.php:
|
470 |
#, php-format
|
471 |
msgid "Capability %s exists already"
|
472 |
msgstr ""
|
473 |
|
474 |
-
#: ../includes/ure-lib.php:
|
475 |
#, php-format
|
476 |
msgid "Error! You do not have permission to delete this capability: %s!"
|
477 |
msgstr ""
|
478 |
|
479 |
-
#: ../includes/ure-lib.php:
|
480 |
#, php-format
|
481 |
msgid "Capability %s is removed successfully"
|
482 |
msgstr ""
|
483 |
|
484 |
-
#: ../includes/ure-lib.php:
|
485 |
-
msgid "
|
486 |
-
msgstr ""
|
487 |
-
|
488 |
-
#: ../includes/ure-role-edit.php:29
|
489 |
-
msgid "None"
|
490 |
-
msgstr ""
|
491 |
-
|
492 |
-
#: ../includes/ure-role-edit.php:67
|
493 |
-
msgid "Select Role and change its capabilities list"
|
494 |
-
msgstr ""
|
495 |
-
|
496 |
-
#: ../includes/ure-role-edit.php:69
|
497 |
-
#: ../includes/ure-role-edit.php:166
|
498 |
-
msgid "Select Role:"
|
499 |
-
msgstr ""
|
500 |
-
|
501 |
-
#: ../includes/ure-role-edit.php:79
|
502 |
-
#: ../includes/ure-user-edit.php:38
|
503 |
-
msgid "Show capabilities in human readable form"
|
504 |
-
msgstr ""
|
505 |
-
|
506 |
-
#: ../includes/ure-role-edit.php:88
|
507 |
-
#: ../includes/ure-user-edit.php:47
|
508 |
-
msgid "Show deprecated capabilities"
|
509 |
-
msgstr ""
|
510 |
-
|
511 |
-
#: ../includes/ure-role-edit.php:92
|
512 |
-
msgid "If checked, then apply action to ALL sites of this Network"
|
513 |
-
msgstr ""
|
514 |
-
|
515 |
-
#: ../includes/ure-role-edit.php:102
|
516 |
-
msgid "Apply to All Sites"
|
517 |
-
msgstr ""
|
518 |
-
|
519 |
-
#: ../includes/ure-role-edit.php:109
|
520 |
-
#: ../includes/ure-user-edit.php:88
|
521 |
-
msgid "Core capabilities:"
|
522 |
-
msgstr ""
|
523 |
-
|
524 |
-
#: ../includes/ure-role-edit.php:124
|
525 |
-
#: ../includes/ure-user-edit.php:103
|
526 |
-
msgid "Custom capabilities:"
|
527 |
-
msgstr ""
|
528 |
-
|
529 |
-
#: ../includes/ure-role-edit.php:155
|
530 |
-
msgid "Role name (ID): "
|
531 |
msgstr ""
|
532 |
|
533 |
-
#: ../includes/ure-
|
534 |
-
msgid "
|
535 |
msgstr ""
|
536 |
|
537 |
-
#: ../includes/ure-
|
538 |
-
msgid "
|
539 |
msgstr ""
|
540 |
|
541 |
-
#: ../includes/ure-
|
542 |
-
msgid "
|
543 |
msgstr ""
|
544 |
|
545 |
-
#: ../includes/ure-
|
546 |
-
msgid "
|
547 |
msgstr ""
|
548 |
|
549 |
-
#: ../includes/ure-user-edit.php:
|
550 |
msgid "Change capabilities for user"
|
551 |
msgstr ""
|
552 |
|
553 |
-
#: ../includes/ure-user-edit.php:
|
554 |
msgid "Primary Role:"
|
555 |
msgstr ""
|
556 |
|
557 |
-
#: ../includes/ure-user-edit.php:
|
558 |
msgid "bbPress Role:"
|
559 |
msgstr ""
|
560 |
|
561 |
-
#: ../includes/ure-user-edit.php:
|
562 |
msgid "Other Roles:"
|
563 |
msgstr ""
|
564 |
-
|
565 |
-
#: ../includes/ure-options.php:65
|
566 |
-
msgid "User Roles are restored to WordPress default values. "
|
567 |
-
msgstr ""
|
568 |
-
|
569 |
-
#: ../includes/ure-options.php:136
|
570 |
-
msgid "Error: "
|
571 |
-
msgstr ""
|
572 |
-
|
573 |
-
#: ../includes/ure-options.php:136
|
574 |
-
#: ../includes/ure-options.php:156
|
575 |
-
msgid "Role"
|
576 |
-
msgstr ""
|
577 |
-
|
578 |
-
#: ../includes/ure-options.php:136
|
579 |
-
msgid "does not exist"
|
580 |
-
msgstr ""
|
581 |
-
|
582 |
-
#: ../includes/ure-options.php:156
|
583 |
-
msgid "is updated successfully"
|
584 |
-
msgstr ""
|
585 |
-
|
586 |
-
#: ../includes/ure-options.php:161
|
587 |
-
#: ../includes/ure-options.php:174
|
588 |
-
msgid "Error occured during role update"
|
589 |
-
msgstr ""
|
590 |
-
|
591 |
-
#: ../includes/ure-options.php:169
|
592 |
-
msgid "User"
|
593 |
-
msgstr ""
|
594 |
-
|
595 |
-
#: ../includes/ure-options.php:169
|
596 |
-
msgid "capabilities are updated successfully"
|
597 |
-
msgstr ""
|
598 |
-
|
599 |
-
#: ../includes/ure-options.php:206
|
600 |
-
msgid "About this Plugin:"
|
601 |
-
msgstr ""
|
602 |
-
|
603 |
-
#: ../includes/ure-options.php:207
|
604 |
-
msgid "Author's website"
|
605 |
-
msgstr ""
|
606 |
-
|
607 |
-
#: ../includes/ure-options.php:208
|
608 |
-
msgid "Plugin webpage"
|
609 |
-
msgstr ""
|
610 |
-
|
611 |
-
#: ../includes/ure-options.php:210
|
612 |
-
msgid "FAQ"
|
613 |
-
msgstr ""
|
614 |
-
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: User Role Editor 2.0\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2013-08-12 09:42+0700\n"
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: Vladimir Garagulya <vladimir@shinephp.com>\n"
|
8 |
"Language-Team: ShinePHP.com <vladimir@shinephp.com>\n"
|
9 |
+
"Language: 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\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:60
|
20 |
+
msgid "Save"
|
|
|
21 |
msgstr ""
|
22 |
|
23 |
+
#: ../includes/class-user-role-editor.php:170
|
24 |
+
#: ../includes/class-user-role-editor.php:172
|
25 |
+
msgid "You do not have permission to edit this user."
|
26 |
msgstr ""
|
27 |
|
28 |
+
#: ../includes/class-user-role-editor.php:313
|
29 |
+
msgid "Capabilities"
|
30 |
msgstr ""
|
31 |
|
32 |
+
#: ../includes/class-user-role-editor.php:404
|
33 |
+
msgid "Settings"
|
34 |
msgstr ""
|
35 |
|
36 |
+
#: ../includes/class-user-role-editor.php:417
|
37 |
+
#: ../includes/class-ure-lib.php:1966
|
38 |
+
msgid "Changelog"
|
39 |
+
msgstr ""
|
40 |
+
|
41 |
+
#: ../includes/class-user-role-editor.php:429
|
42 |
+
#: ../includes/class-user-role-editor.php:447
|
43 |
+
#: ../includes/class-user-role-editor.php:630
|
44 |
+
#: ../includes/class-ure-lib.php:234
|
45 |
msgid "User Role Editor"
|
46 |
msgstr ""
|
47 |
|
48 |
+
#: ../includes/class-user-role-editor.php:483
|
49 |
+
msgid "User Role Editor options are updated"
|
|
|
50 |
msgstr ""
|
51 |
|
52 |
+
#: ../includes/class-user-role-editor.php:534
|
53 |
+
msgid "Only"
|
54 |
+
msgstr ""
|
55 |
+
|
56 |
+
#: ../includes/class-user-role-editor.php:534
|
57 |
+
msgid "is allowed to use"
|
58 |
+
msgstr ""
|
59 |
+
|
60 |
+
#: ../includes/class-user-role-editor.php:587
|
61 |
msgid "Select All"
|
62 |
msgstr ""
|
63 |
|
64 |
+
#: ../includes/class-user-role-editor.php:588
|
65 |
msgid "Unselect All"
|
66 |
msgstr ""
|
67 |
|
68 |
+
#: ../includes/class-user-role-editor.php:589
|
69 |
msgid "Reverse"
|
70 |
msgstr ""
|
71 |
|
72 |
+
#: ../includes/class-user-role-editor.php:590
|
73 |
msgid "Update"
|
74 |
msgstr ""
|
75 |
|
76 |
+
#: ../includes/class-user-role-editor.php:591
|
77 |
msgid "Please confirm permissions update"
|
78 |
msgstr ""
|
79 |
|
80 |
+
#: ../includes/class-user-role-editor.php:592
|
81 |
msgid "Add New Role"
|
82 |
msgstr ""
|
83 |
|
84 |
+
#: ../includes/class-user-role-editor.php:593
|
85 |
msgid " Role name (ID) can not be empty!"
|
86 |
msgstr ""
|
87 |
|
88 |
+
#: ../includes/class-user-role-editor.php:594
|
89 |
+
msgid ""
|
90 |
+
" Role name (ID) must contain latin characters, digits, hyphens or underscore "
|
91 |
+
"only!"
|
92 |
msgstr ""
|
93 |
|
94 |
+
#: ../includes/class-user-role-editor.php:595
|
95 |
msgid "Add Role"
|
96 |
msgstr ""
|
97 |
|
98 |
+
#: ../includes/class-user-role-editor.php:596
|
99 |
msgid "Delete Role"
|
100 |
msgstr ""
|
101 |
|
102 |
+
#: ../includes/class-user-role-editor.php:597
|
103 |
msgid "Cancel"
|
104 |
msgstr ""
|
105 |
|
106 |
+
#: ../includes/class-user-role-editor.php:598
|
107 |
msgid "Add Capability"
|
108 |
msgstr ""
|
109 |
|
110 |
+
#: ../includes/class-user-role-editor.php:599
|
111 |
+
#: ../includes/class-user-role-editor.php:604
|
112 |
msgid "Delete Capability"
|
113 |
msgstr ""
|
114 |
|
115 |
+
#: ../includes/class-user-role-editor.php:600
|
116 |
msgid "Reset"
|
117 |
msgstr ""
|
118 |
|
119 |
+
#: ../includes/class-user-role-editor.php:601
|
120 |
+
msgid ""
|
121 |
+
"Reset Roles to WordPress defaults. Be careful, all changes made by you or "
|
122 |
+
"plugins will be lost. Some plugins, e.g. S2Member, WooCommerce reactivation "
|
123 |
+
"could be needed. Continue?"
|
124 |
msgstr ""
|
125 |
|
126 |
+
#: ../includes/class-user-role-editor.php:602
|
127 |
msgid "Default Role"
|
128 |
msgstr ""
|
129 |
|
130 |
+
#: ../includes/class-user-role-editor.php:603
|
131 |
msgid "Set New Default Role"
|
132 |
msgstr ""
|
133 |
|
134 |
+
#: ../includes/class-user-role-editor.php:605
|
135 |
+
msgid ""
|
136 |
+
"Warning! Be careful - removing critical capability could crash some plugin "
|
137 |
+
"or other custom code"
|
138 |
msgstr ""
|
139 |
|
140 |
+
#: ../includes/class-user-role-editor.php:606
|
141 |
msgid " Capability name (ID) can not be empty!"
|
142 |
msgstr ""
|
143 |
|
144 |
+
#: ../includes/class-user-role-editor.php:607
|
145 |
+
msgid ""
|
146 |
+
" Capability name (ID) must contain latin characters, digits, hyphens or "
|
147 |
+
"underscore only!"
|
148 |
msgstr ""
|
149 |
|
150 |
+
#: ../includes/class-user-role-editor.php:633
|
151 |
+
#: ../includes/class-user-role-editor.php:668
|
152 |
+
msgid "Other Roles"
|
153 |
msgstr ""
|
154 |
|
155 |
+
#: ../includes/class-user-role-editor.php:643
|
156 |
+
msgid "Edit"
|
|
|
157 |
msgstr ""
|
158 |
|
159 |
+
#: ../includes/ure-role-edit.php:17
|
160 |
+
msgid "Select Role and change its capabilities list"
|
161 |
msgstr ""
|
162 |
|
163 |
+
#: ../includes/ure-role-edit.php:19 ../includes/class-ure-lib.php:195
|
164 |
+
msgid "Select Role:"
|
|
|
165 |
msgstr ""
|
166 |
|
167 |
+
#: ../includes/ure-role-edit.php:30 ../includes/ure-user-edit.php:51
|
168 |
+
msgid "Show capabilities in human readable form"
|
169 |
msgstr ""
|
170 |
|
171 |
+
#: ../includes/ure-role-edit.php:40 ../includes/ure-user-edit.php:61
|
172 |
+
msgid "Show deprecated capabilities"
|
173 |
+
msgstr ""
|
174 |
+
|
175 |
+
#: ../includes/ure-role-edit.php:45
|
176 |
+
msgid "If checked, then apply action to ALL sites of this Network"
|
177 |
+
msgstr ""
|
178 |
+
|
179 |
+
#: ../includes/ure-role-edit.php:57
|
180 |
+
msgid "Apply to All Sites"
|
181 |
+
msgstr ""
|
182 |
+
|
183 |
+
#: ../includes/ure-role-edit.php:64 ../includes/ure-user-edit.php:106
|
184 |
+
msgid "Core capabilities:"
|
185 |
+
msgstr ""
|
186 |
+
|
187 |
+
#: ../includes/ure-role-edit.php:66 ../includes/ure-user-edit.php:108
|
188 |
+
msgid "Quick filter:"
|
189 |
+
msgstr ""
|
190 |
+
|
191 |
+
#: ../includes/ure-role-edit.php:84 ../includes/ure-user-edit.php:127
|
192 |
+
msgid "Custom capabilities:"
|
193 |
+
msgstr ""
|
194 |
+
|
195 |
+
#: ../includes/class-ure-lib.php:152
|
196 |
+
msgid "Error: wrong request"
|
197 |
+
msgstr ""
|
198 |
+
|
199 |
+
#: ../includes/class-ure-lib.php:184
|
200 |
+
msgid "Role name (ID): "
|
201 |
+
msgstr ""
|
202 |
+
|
203 |
+
#: ../includes/class-ure-lib.php:186
|
204 |
+
msgid "Display Role Name: "
|
205 |
+
msgstr ""
|
206 |
+
|
207 |
+
#: ../includes/class-ure-lib.php:188
|
208 |
+
msgid "Make copy of: "
|
209 |
+
msgstr ""
|
210 |
+
|
211 |
+
#: ../includes/class-ure-lib.php:210
|
212 |
+
msgid "Delete:"
|
213 |
+
msgstr ""
|
214 |
+
|
215 |
+
#: ../includes/class-ure-lib.php:217
|
216 |
+
msgid "Capability name (ID): "
|
217 |
+
msgstr ""
|
218 |
+
|
219 |
+
#: ../includes/class-ure-lib.php:332
|
220 |
+
msgid "Error: "
|
221 |
+
msgstr ""
|
222 |
+
|
223 |
+
#: ../includes/class-ure-lib.php:332
|
224 |
+
msgid "Role"
|
225 |
+
msgstr ""
|
226 |
+
|
227 |
+
#: ../includes/class-ure-lib.php:332
|
228 |
+
msgid "does not exist"
|
229 |
+
msgstr ""
|
230 |
+
|
231 |
+
#: ../includes/class-ure-lib.php:375
|
232 |
+
msgid "Role is updated successfully"
|
233 |
+
msgstr ""
|
234 |
+
|
235 |
+
#: ../includes/class-ure-lib.php:377
|
236 |
+
msgid "Roles are updated for all network"
|
237 |
+
msgstr ""
|
238 |
+
|
239 |
+
#: ../includes/class-ure-lib.php:383
|
240 |
+
msgid "Error occured during role(s) update"
|
241 |
+
msgstr ""
|
242 |
+
|
243 |
+
#: ../includes/class-ure-lib.php:390
|
244 |
+
msgid "User capabilities are updated successfully"
|
245 |
+
msgstr ""
|
246 |
+
|
247 |
+
#: ../includes/class-ure-lib.php:395
|
248 |
+
msgid "Error occured during user update"
|
249 |
msgstr ""
|
250 |
|
251 |
+
#: ../includes/class-ure-lib.php:450
|
252 |
+
msgid "User Roles are restored to WordPress default values. "
|
253 |
+
msgstr ""
|
254 |
+
|
255 |
+
#: ../includes/class-ure-lib.php:1220
|
256 |
+
msgid "Help"
|
257 |
msgstr ""
|
258 |
|
259 |
+
#: ../includes/class-ure-lib.php:1522
|
260 |
+
msgid "Error is occur. Please check the log file."
|
261 |
msgstr ""
|
262 |
|
263 |
+
#: ../includes/class-ure-lib.php:1547
|
264 |
+
msgid ""
|
265 |
+
"Error: Role ID must contain latin characters, digits, hyphens or underscore "
|
266 |
+
"only!"
|
267 |
+
msgstr ""
|
268 |
+
|
269 |
+
#: ../includes/class-ure-lib.php:1562
|
270 |
#, php-format
|
271 |
msgid "Role %s exists already"
|
272 |
msgstr ""
|
273 |
|
274 |
+
#: ../includes/class-ure-lib.php:1577
|
275 |
msgid "Error is encountered during new role create operation"
|
276 |
msgstr ""
|
277 |
|
278 |
+
#: ../includes/class-ure-lib.php:1579
|
279 |
#, php-format
|
280 |
msgid "Role %s is created successfully"
|
281 |
msgstr ""
|
282 |
|
283 |
+
#: ../includes/class-ure-lib.php:1608
|
284 |
msgid "Error encountered during role delete operation"
|
285 |
msgstr ""
|
286 |
|
287 |
+
#: ../includes/class-ure-lib.php:1610
|
288 |
#, php-format
|
289 |
msgid "Role %s is deleted successfully"
|
290 |
msgstr ""
|
291 |
|
292 |
+
#: ../includes/class-ure-lib.php:1635
|
293 |
msgid "Error encountered during default role change operation"
|
294 |
msgstr ""
|
295 |
|
296 |
+
#: ../includes/class-ure-lib.php:1641
|
297 |
#, php-format
|
298 |
msgid "Default role for new users is set to %s successfully"
|
299 |
msgstr ""
|
300 |
|
301 |
+
#: ../includes/class-ure-lib.php:1660
|
302 |
msgid "Editor"
|
303 |
msgstr ""
|
304 |
|
305 |
+
#: ../includes/class-ure-lib.php:1661
|
306 |
msgid "Author"
|
307 |
msgstr ""
|
308 |
|
309 |
+
#: ../includes/class-ure-lib.php:1662
|
310 |
msgid "Contributor"
|
311 |
msgstr ""
|
312 |
|
313 |
+
#: ../includes/class-ure-lib.php:1663
|
314 |
msgid "Subscriber"
|
315 |
msgstr ""
|
316 |
|
317 |
+
#: ../includes/class-ure-lib.php:1665
|
318 |
msgid "Switch themes"
|
319 |
msgstr ""
|
320 |
|
321 |
+
#: ../includes/class-ure-lib.php:1666
|
322 |
msgid "Edit themes"
|
323 |
msgstr ""
|
324 |
|
325 |
+
#: ../includes/class-ure-lib.php:1667
|
326 |
msgid "Activate plugins"
|
327 |
msgstr ""
|
328 |
|
329 |
+
#: ../includes/class-ure-lib.php:1668
|
330 |
msgid "Edit plugins"
|
331 |
msgstr ""
|
332 |
|
333 |
+
#: ../includes/class-ure-lib.php:1669
|
334 |
msgid "Edit users"
|
335 |
msgstr ""
|
336 |
|
337 |
+
#: ../includes/class-ure-lib.php:1670
|
338 |
msgid "Edit files"
|
339 |
msgstr ""
|
340 |
|
341 |
+
#: ../includes/class-ure-lib.php:1671
|
342 |
msgid "Manage options"
|
343 |
msgstr ""
|
344 |
|
345 |
+
#: ../includes/class-ure-lib.php:1672
|
346 |
msgid "Moderate comments"
|
347 |
msgstr ""
|
348 |
|
349 |
+
#: ../includes/class-ure-lib.php:1673
|
350 |
msgid "Manage categories"
|
351 |
msgstr ""
|
352 |
|
353 |
+
#: ../includes/class-ure-lib.php:1674
|
354 |
msgid "Manage links"
|
355 |
msgstr ""
|
356 |
|
357 |
+
#: ../includes/class-ure-lib.php:1675
|
358 |
msgid "Upload files"
|
359 |
msgstr ""
|
360 |
|
361 |
+
#: ../includes/class-ure-lib.php:1676
|
362 |
msgid "Import"
|
363 |
msgstr ""
|
364 |
|
365 |
+
#: ../includes/class-ure-lib.php:1677
|
366 |
msgid "Unfiltered html"
|
367 |
msgstr ""
|
368 |
|
369 |
+
#: ../includes/class-ure-lib.php:1678
|
370 |
msgid "Edit posts"
|
371 |
msgstr ""
|
372 |
|
373 |
+
#: ../includes/class-ure-lib.php:1679
|
374 |
msgid "Edit others posts"
|
375 |
msgstr ""
|
376 |
|
377 |
+
#: ../includes/class-ure-lib.php:1680
|
378 |
msgid "Edit published posts"
|
379 |
msgstr ""
|
380 |
|
381 |
+
#: ../includes/class-ure-lib.php:1681
|
382 |
msgid "Publish posts"
|
383 |
msgstr ""
|
384 |
|
385 |
+
#: ../includes/class-ure-lib.php:1682
|
386 |
msgid "Edit pages"
|
387 |
msgstr ""
|
388 |
|
389 |
+
#: ../includes/class-ure-lib.php:1683
|
390 |
msgid "Read"
|
391 |
msgstr ""
|
392 |
|
393 |
+
#: ../includes/class-ure-lib.php:1684
|
394 |
msgid "Level 10"
|
395 |
msgstr ""
|
396 |
|
397 |
+
#: ../includes/class-ure-lib.php:1685
|
398 |
msgid "Level 9"
|
399 |
msgstr ""
|
400 |
|
401 |
+
#: ../includes/class-ure-lib.php:1686
|
402 |
msgid "Level 8"
|
403 |
msgstr ""
|
404 |
|
405 |
+
#: ../includes/class-ure-lib.php:1687
|
406 |
msgid "Level 7"
|
407 |
msgstr ""
|
408 |
|
409 |
+
#: ../includes/class-ure-lib.php:1688
|
410 |
msgid "Level 6"
|
411 |
msgstr ""
|
412 |
|
413 |
+
#: ../includes/class-ure-lib.php:1689
|
414 |
msgid "Level 5"
|
415 |
msgstr ""
|
416 |
|
417 |
+
#: ../includes/class-ure-lib.php:1690
|
418 |
msgid "Level 4"
|
419 |
msgstr ""
|
420 |
|
421 |
+
#: ../includes/class-ure-lib.php:1691
|
422 |
msgid "Level 3"
|
423 |
msgstr ""
|
424 |
|
425 |
+
#: ../includes/class-ure-lib.php:1692
|
426 |
msgid "Level 2"
|
427 |
msgstr ""
|
428 |
|
429 |
+
#: ../includes/class-ure-lib.php:1693
|
430 |
msgid "Level 1"
|
431 |
msgstr ""
|
432 |
|
433 |
+
#: ../includes/class-ure-lib.php:1694
|
434 |
msgid "Level 0"
|
435 |
msgstr ""
|
436 |
|
437 |
+
#: ../includes/class-ure-lib.php:1695
|
438 |
msgid "Edit others pages"
|
439 |
msgstr ""
|
440 |
|
441 |
+
#: ../includes/class-ure-lib.php:1696
|
442 |
msgid "Edit published pages"
|
443 |
msgstr ""
|
444 |
|
445 |
+
#: ../includes/class-ure-lib.php:1697
|
446 |
msgid "Publish pages"
|
447 |
msgstr ""
|
448 |
|
449 |
+
#: ../includes/class-ure-lib.php:1698
|
450 |
msgid "Delete pages"
|
451 |
msgstr ""
|
452 |
|
453 |
+
#: ../includes/class-ure-lib.php:1699
|
454 |
msgid "Delete others pages"
|
455 |
msgstr ""
|
456 |
|
457 |
+
#: ../includes/class-ure-lib.php:1700
|
458 |
msgid "Delete published pages"
|
459 |
msgstr ""
|
460 |
|
461 |
+
#: ../includes/class-ure-lib.php:1701
|
462 |
msgid "Delete posts"
|
463 |
msgstr ""
|
464 |
|
465 |
+
#: ../includes/class-ure-lib.php:1702
|
466 |
msgid "Delete others posts"
|
467 |
msgstr ""
|
468 |
|
469 |
+
#: ../includes/class-ure-lib.php:1703
|
470 |
msgid "Delete published posts"
|
471 |
msgstr ""
|
472 |
|
473 |
+
#: ../includes/class-ure-lib.php:1704
|
474 |
msgid "Delete private posts"
|
475 |
msgstr ""
|
476 |
|
477 |
+
#: ../includes/class-ure-lib.php:1705
|
478 |
msgid "Edit private posts"
|
479 |
msgstr ""
|
480 |
|
481 |
+
#: ../includes/class-ure-lib.php:1706
|
482 |
msgid "Read private posts"
|
483 |
msgstr ""
|
484 |
|
485 |
+
#: ../includes/class-ure-lib.php:1707
|
486 |
msgid "Delete private pages"
|
487 |
msgstr ""
|
488 |
|
489 |
+
#: ../includes/class-ure-lib.php:1708
|
490 |
msgid "Edit private pages"
|
491 |
msgstr ""
|
492 |
|
493 |
+
#: ../includes/class-ure-lib.php:1709
|
494 |
msgid "Read private pages"
|
495 |
msgstr ""
|
496 |
|
497 |
+
#: ../includes/class-ure-lib.php:1710
|
498 |
msgid "Delete users"
|
499 |
msgstr ""
|
500 |
|
501 |
+
#: ../includes/class-ure-lib.php:1711
|
502 |
msgid "Create users"
|
503 |
msgstr ""
|
504 |
|
505 |
+
#: ../includes/class-ure-lib.php:1712
|
506 |
msgid "Unfiltered upload"
|
507 |
msgstr ""
|
508 |
|
509 |
+
#: ../includes/class-ure-lib.php:1713
|
510 |
msgid "Edit dashboard"
|
511 |
msgstr ""
|
512 |
|
513 |
+
#: ../includes/class-ure-lib.php:1714
|
514 |
msgid "Update plugins"
|
515 |
msgstr ""
|
516 |
|
517 |
+
#: ../includes/class-ure-lib.php:1715
|
518 |
msgid "Delete plugins"
|
519 |
msgstr ""
|
520 |
|
521 |
+
#: ../includes/class-ure-lib.php:1716
|
522 |
msgid "Install plugins"
|
523 |
msgstr ""
|
524 |
|
525 |
+
#: ../includes/class-ure-lib.php:1717
|
526 |
msgid "Update themes"
|
527 |
msgstr ""
|
528 |
|
529 |
+
#: ../includes/class-ure-lib.php:1718
|
530 |
msgid "Install themes"
|
531 |
msgstr ""
|
532 |
|
533 |
+
#: ../includes/class-ure-lib.php:1719
|
534 |
msgid "Update core"
|
535 |
msgstr ""
|
536 |
|
537 |
+
#: ../includes/class-ure-lib.php:1720
|
538 |
msgid "List users"
|
539 |
msgstr ""
|
540 |
|
541 |
+
#: ../includes/class-ure-lib.php:1721
|
542 |
msgid "Remove users"
|
543 |
msgstr ""
|
544 |
|
545 |
+
#: ../includes/class-ure-lib.php:1722
|
546 |
msgid "Add users"
|
547 |
msgstr ""
|
548 |
|
549 |
+
#: ../includes/class-ure-lib.php:1723
|
550 |
msgid "Promote users"
|
551 |
msgstr ""
|
552 |
|
553 |
+
#: ../includes/class-ure-lib.php:1724
|
554 |
msgid "Edit theme options"
|
555 |
msgstr ""
|
556 |
|
557 |
+
#: ../includes/class-ure-lib.php:1725
|
558 |
msgid "Delete themes"
|
559 |
msgstr ""
|
560 |
|
561 |
+
#: ../includes/class-ure-lib.php:1726
|
562 |
msgid "Export"
|
563 |
msgstr ""
|
564 |
|
565 |
+
#: ../includes/class-ure-lib.php:1806
|
566 |
msgid "Error: Capability name must contain latin characters and digits only!"
|
567 |
msgstr ""
|
568 |
|
569 |
+
#: ../includes/class-ure-lib.php:1819
|
570 |
#, php-format
|
571 |
msgid "Capability %s is added successfully"
|
572 |
msgstr ""
|
573 |
|
574 |
+
#: ../includes/class-ure-lib.php:1821
|
575 |
#, php-format
|
576 |
msgid "Capability %s exists already"
|
577 |
msgstr ""
|
578 |
|
579 |
+
#: ../includes/class-ure-lib.php:1846
|
580 |
#, php-format
|
581 |
msgid "Error! You do not have permission to delete this capability: %s!"
|
582 |
msgstr ""
|
583 |
|
584 |
+
#: ../includes/class-ure-lib.php:1865
|
585 |
#, php-format
|
586 |
msgid "Capability %s is removed successfully"
|
587 |
msgstr ""
|
588 |
|
589 |
+
#: ../includes/class-ure-lib.php:1962
|
590 |
+
msgid "About this Plugin:"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
591 |
msgstr ""
|
592 |
|
593 |
+
#: ../includes/class-ure-lib.php:1964
|
594 |
+
msgid "Author's website"
|
595 |
msgstr ""
|
596 |
|
597 |
+
#: ../includes/class-ure-lib.php:1965
|
598 |
+
msgid "Plugin webpage"
|
599 |
msgstr ""
|
600 |
|
601 |
+
#: ../includes/class-ure-lib.php:1967
|
602 |
+
msgid "FAQ"
|
603 |
msgstr ""
|
604 |
|
605 |
+
#: ../includes/class-ure-lib.php:2008
|
606 |
+
msgid "None"
|
607 |
msgstr ""
|
608 |
|
609 |
+
#: ../includes/ure-user-edit.php:34
|
610 |
msgid "Change capabilities for user"
|
611 |
msgstr ""
|
612 |
|
613 |
+
#: ../includes/ure-user-edit.php:66
|
614 |
msgid "Primary Role:"
|
615 |
msgstr ""
|
616 |
|
617 |
+
#: ../includes/ure-user-edit.php:77
|
618 |
msgid "bbPress Role:"
|
619 |
msgstr ""
|
620 |
|
621 |
+
#: ../includes/ure-user-edit.php:87
|
622 |
msgid "Other Roles:"
|
623 |
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
readme.txt
CHANGED
@@ -58,9 +58,7 @@ To read more about 'User Role Editor' visit [this page](http://www.shinephp.com/
|
|
58 |
= Translations =
|
59 |
* Catalan: [Efraim Bayarri](http://replicantsfactory.com/)
|
60 |
* Turkish: [Muhammed YILDIRIM](http://ben.muhammed.im)
|
61 |
-
|
62 |
-
*---------------------------------------------------------------
|
63 |
-
* The most of translation files except shown above are obsolete and require updates.
|
64 |
|
65 |
Dear plugin User!
|
66 |
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.
|
@@ -70,6 +68,21 @@ Share with me new ideas about plugin further development and link to your site w
|
|
70 |
|
71 |
== Changelog ==
|
72 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
73 |
= 4.2 =
|
74 |
* 02.08.2013
|
75 |
* Separate setting page is added for User Role Editor under Settings menu. It is available under Network Center "Settings" for the multi-site.
|
58 |
= Translations =
|
59 |
* Catalan: [Efraim Bayarri](http://replicantsfactory.com/)
|
60 |
* Turkish: [Muhammed YILDIRIM](http://ben.muhammed.im)
|
61 |
+
|
|
|
|
|
62 |
|
63 |
Dear plugin User!
|
64 |
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.
|
68 |
|
69 |
== Changelog ==
|
70 |
|
71 |
+
= 4.3 =
|
72 |
+
* 12.08.2013
|
73 |
+
* Pro version only: "User Role Editor" is available under the "Users" submenu of "Network Admin" for multisite installation.
|
74 |
+
It provides the central point for users roles management of the whole network. Your changes are applied to the main site by default.
|
75 |
+
The click on "Network Update" button replicates roles from the main site to the whole network at once.
|
76 |
+
* Multisite update: roles from the main (1st) blog are copied to the new added blog automatically,
|
77 |
+
even new site is added from front-end after new user registration, e.g. Gravity Forms "Register User" addon does. Earlier this feature worked
|
78 |
+
for administrator back-end operations only.
|
79 |
+
* Bug prevented to apply role changes to all sites of the network is fixed. In case when one of the sites have exactly the same roles as applied from the main site, MySQL returned 0 rows affected. URE recognized that as error and stopped further network updated. It is fixed now.
|
80 |
+
* Bug prevented to save empty (without capabilities) role is fixed.
|
81 |
+
* User interface bug with options 'Show capabilities in human readable form' and 'Show deprecated capabilities' fixed.
|
82 |
+
Now this checkboxes work this way: It takes global values from the User Role Editor Settings 1st. If you change it at Roles/User editor form plugin,
|
83 |
+
it remembers your change temporally for 10 minutes. After that this value will be returned to the URE global settings.
|
84 |
+
If you wish to make permanent change make it at URE settings page.
|
85 |
+
|
86 |
= 4.2 =
|
87 |
* 02.08.2013
|
88 |
* Separate setting page is added for User Role Editor under Settings menu. It is available under Network Center "Settings" for the multi-site.
|
screenshot-1.png
CHANGED
Binary file
|
screenshot-4.png
CHANGED
Binary file
|
user-role-editor.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: User Role Editor
|
4 |
Plugin URI: http://role-editor.com
|
5 |
Description: Change/add/delete WordPress user roles and capabilities.
|
6 |
-
Version: 4.
|
7 |
Author: Vladimir Garagulya
|
8 |
Author URI: http://www.shinephp.com
|
9 |
Text Domain: ure
|
@@ -19,11 +19,6 @@ if (!function_exists("get_option")) {
|
|
19 |
die; // Silence is golden, direct call is prohibited
|
20 |
}
|
21 |
|
22 |
-
if (!is_admin()) { // plugin works at Admin back-end only
|
23 |
-
return;
|
24 |
-
}
|
25 |
-
|
26 |
-
|
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.3
|
7 |
Author: Vladimir Garagulya
|
8 |
Author URI: http://www.shinephp.com
|
9 |
Text Domain: ure
|
19 |
die; // Silence is golden, direct call is prohibited
|
20 |
}
|
21 |
|
|
|
|
|
|
|
|
|
|
|
22 |
define('URE_PLUGIN_URL', plugin_dir_url(__FILE__));
|
23 |
define('URE_PLUGIN_DIR', plugin_dir_path(__FILE__));
|
24 |
define('URE_PLUGIN_FILE', basename(__FILE__));
|