User Role Editor - Version 4.21

Version Description

Download this release

Release Info

Developer shinephp
Plugin Icon 128x128 User Role Editor
Version 4.21
Comparing to
See all releases

Code changes from version 4.20.1 to 4.21

includes/class-ure-lib.php CHANGED
@@ -336,6 +336,11 @@ if ($this->multisite && !is_network_admin()) {
336
  </div>
337
  </div>
338
 
 
 
 
 
 
339
  <?php
340
  do_action('ure_dialogs_html');
341
  }
@@ -1180,7 +1185,7 @@ if ($this->multisite && !is_network_admin()) {
1180
  $onclick_for_admin = '';
1181
  if (!( $this->multisite && is_super_admin() )) { // do not limit SuperAdmin for multi-site
1182
  if ($core && 'administrator' == $this->current_role) {
1183
- $onclick_for_admin = 'onclick="turn_it_back(this)"';
1184
  }
1185
  }
1186
 
@@ -1634,7 +1639,14 @@ if ($this->multisite && !is_network_admin()) {
1634
  'delete_published_posts',
1635
  'delete_others_posts'
1636
  );
 
1637
  $post_types = get_post_types(array('_builtin'=>false), 'objects');
 
 
 
 
 
 
1638
  foreach($post_types as $post_type) {
1639
  if (!isset($post_type->cap)) {
1640
  continue;
336
  </div>
337
  </div>
338
 
339
+ <div id="ure_confirmation_dialog" class="ure-modal-dialog">
340
+ <div id="ure_cd_html" style="padding:10px;">
341
+ </div>
342
+ </div>
343
+
344
  <?php
345
  do_action('ure_dialogs_html');
346
  }
1185
  $onclick_for_admin = '';
1186
  if (!( $this->multisite && is_super_admin() )) { // do not limit SuperAdmin for multi-site
1187
  if ($core && 'administrator' == $this->current_role) {
1188
+ $onclick_for_admin = 'onclick="ure_turn_it_back(this)"';
1189
  }
1190
  }
1191
 
1639
  'delete_published_posts',
1640
  'delete_others_posts'
1641
  );
1642
+
1643
  $post_types = get_post_types(array('_builtin'=>false), 'objects');
1644
+ // do not forget attachment post type as it may use the own capabilities set
1645
+ $attachment_post_type = get_post_type_object('attachment');
1646
+ if ($attachment_post_type->cap->edit_posts!=='edit_posts') {
1647
+ $post_types['attachment'] = $attachment_post_type;
1648
+ }
1649
+
1650
  foreach($post_types as $post_type) {
1651
  if (!isset($post_type->cap)) {
1652
  continue;
includes/class-user-role-editor.php CHANGED
@@ -384,12 +384,8 @@ class User_Role_Editor {
384
  }
385
 
386
  // exclude URE from plugins list
387
- foreach ($plugins as $key => $value) {
388
- if ($key == 'user-role-editor/' . URE_PLUGIN_FILE) {
389
- unset($plugins[$key]);
390
- break;
391
- }
392
- }
393
 
394
  return $plugins;
395
  }
@@ -560,6 +556,9 @@ class User_Role_Editor {
560
  $show_deprecated_caps = $this->lib->get_request_var('show_deprecated_caps', 'checkbox');
561
  $this->lib->put_option('ure_show_deprecated_caps', $show_deprecated_caps);
562
 
 
 
 
563
  $edit_user_caps = $this->lib->get_request_var('edit_user_caps', 'checkbox');
564
  $this->lib->put_option('edit_user_caps', $edit_user_caps);
565
 
@@ -664,6 +663,7 @@ class User_Role_Editor {
664
  }
665
  $caps_readable = $this->lib->get_option('ure_caps_readable', 0);
666
  $show_deprecated_caps = $this->lib->get_option('ure_show_deprecated_caps', 0);
 
667
  $edit_user_caps = $this->lib->get_option('edit_user_caps', 1);
668
 
669
  if ($this->lib->multisite) {
@@ -758,6 +758,8 @@ class User_Role_Editor {
758
  return;
759
  }
760
 
 
 
761
  wp_enqueue_script('jquery-ui-dialog', false, array('jquery-ui-core', 'jquery-ui-button', 'jquery'));
762
  wp_enqueue_script('jquery-ui-tabs', false, array('jquery-ui-core', 'jquery'));
763
  wp_register_script('ure-js', plugins_url('/js/ure-js.js', URE_PLUGIN_FULL_PATH));
@@ -766,6 +768,10 @@ class User_Role_Editor {
766
  'wp_nonce' => wp_create_nonce('user-role-editor'),
767
  'page_url' => URE_WP_ADMIN_URL . URE_PARENT . '?page=users-' . URE_PLUGIN_FILE,
768
  'is_multisite' => is_multisite() ? 1 : 0,
 
 
 
 
769
  'select_all' => esc_html__('Select All', 'user-role-editor'),
770
  'unselect_all' => esc_html__('Unselect All', 'user-role-editor'),
771
  'reverse' => esc_html__('Reverse', 'user-role-editor'),
384
  }
385
 
386
  // exclude URE from plugins list
387
+ $key = basename(URE_PLUGIN_DIR) .'/'. URE_PLUGIN_FILE;
388
+ unset($plugins[$key]);
 
 
 
 
389
 
390
  return $plugins;
391
  }
556
  $show_deprecated_caps = $this->lib->get_request_var('show_deprecated_caps', 'checkbox');
557
  $this->lib->put_option('ure_show_deprecated_caps', $show_deprecated_caps);
558
 
559
+ $confirm_role_update = $this->lib->get_request_var('confirm_role_update', 'checkbox');
560
+ $this->lib->put_option('ure_confirm_role_update', $confirm_role_update);
561
+
562
  $edit_user_caps = $this->lib->get_request_var('edit_user_caps', 'checkbox');
563
  $this->lib->put_option('edit_user_caps', $edit_user_caps);
564
 
663
  }
664
  $caps_readable = $this->lib->get_option('ure_caps_readable', 0);
665
  $show_deprecated_caps = $this->lib->get_option('ure_show_deprecated_caps', 0);
666
+ $confirm_role_update = $this->lib->get_option('ure_confirm_role_update', 1);
667
  $edit_user_caps = $this->lib->get_option('edit_user_caps', 1);
668
 
669
  if ($this->lib->multisite) {
758
  return;
759
  }
760
 
761
+ $confirm_role_update = $this->lib->get_option('ure_confirm_role_update', 1);
762
+
763
  wp_enqueue_script('jquery-ui-dialog', false, array('jquery-ui-core', 'jquery-ui-button', 'jquery'));
764
  wp_enqueue_script('jquery-ui-tabs', false, array('jquery-ui-core', 'jquery'));
765
  wp_register_script('ure-js', plugins_url('/js/ure-js.js', URE_PLUGIN_FULL_PATH));
768
  'wp_nonce' => wp_create_nonce('user-role-editor'),
769
  'page_url' => URE_WP_ADMIN_URL . URE_PARENT . '?page=users-' . URE_PLUGIN_FILE,
770
  'is_multisite' => is_multisite() ? 1 : 0,
771
+ 'confirm_role_update' => $confirm_role_update ? 1 : 0,
772
+ 'confirm_title' => esc_html__('Confirm', 'user-role-editor'),
773
+ 'yes_label' => esc_html__('Yes', 'user-role-editor'),
774
+ 'no_label' => esc_html__('No', 'user-role-editor'),
775
  'select_all' => esc_html__('Select All', 'user-role-editor'),
776
  'unselect_all' => esc_html__('Unselect All', 'user-role-editor'),
777
  'reverse' => esc_html__('Reverse', 'user-role-editor'),
includes/loader.php ADDED
@@ -0,0 +1,21 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Load related files
4
+ * Project: User Role Editor WordPress plugin
5
+ *
6
+ * Author: Vladimir Garagulya
7
+ * email: support@role-editor.com
8
+ *
9
+ **/
10
+
11
+ require_once(URE_PLUGIN_DIR .'includes/define-constants.php');
12
+ require_once(URE_PLUGIN_DIR .'includes/misc-support-stuff.php');
13
+ require_once(URE_PLUGIN_DIR .'includes/class-assign-role.php');
14
+ require_once(URE_PLUGIN_DIR .'includes/class-user-other-roles.php');
15
+ require_once(URE_PLUGIN_DIR .'includes/class-protect-admin.php');
16
+ require_once(URE_PLUGIN_DIR .'includes/class-ajax-processor.php');
17
+ require_once(URE_PLUGIN_DIR .'includes/class-ure-screen-help.php');
18
+ require_once(URE_PLUGIN_DIR .'includes/class-known-js-css-compatibility-issues.php');
19
+ require_once(URE_PLUGIN_DIR .'includes/class-role-additional-options.php');
20
+ require_once(URE_PLUGIN_DIR .'includes/class-user-role-editor.php');
21
+
includes/settings-template.php CHANGED
@@ -70,6 +70,14 @@ if (!$license_key_only) {
70
  <td>
71
  </td>
72
  </tr>
 
 
 
 
 
 
 
 
73
  <tr>
74
  <td>
75
  <input type="checkbox" name="edit_user_caps" id="edit_user_caps" value="1"
70
  <td>
71
  </td>
72
  </tr>
73
+ <tr>
74
+ <td>
75
+ <input type="checkbox" name="confirm_role_update" id="confirm_role_update" value="1"
76
+ <?php echo ($confirm_role_update == 1) ? 'checked="checked"' : ''; ?> />
77
+ <label for="confirm_role_update"><?php esc_html_e('Confirm role update', 'user-role-editor'); ?></label></td>
78
+ <td>
79
+ </td>
80
+ </tr>
81
  <tr>
82
  <td>
83
  <input type="checkbox" name="edit_user_caps" id="edit_user_caps" value="1"
js/ure-js.js CHANGED
@@ -1,353 +1,413 @@
1
  // get/post via jQuery
2
- (function($) {
3
  $.extend({
4
- ure_getGo: function(url, params) {
5
  document.location = url + '?' + $.param(params);
6
  },
7
- ure_postGo: function(url, params) {
8
- var $form = $("<form>")
9
- .attr("method", "post")
10
- .attr("action", url);
11
- $.each(params, function(name, value) {
12
  $("<input type='hidden'>")
13
- .attr("name", name)
14
- .attr("value", value)
15
- .appendTo($form);
16
  });
17
- $form.appendTo("body");
18
  $form.submit();
19
  }
20
- });
21
  })(jQuery);
22
 
23
 
24
- jQuery(function() {
25
- jQuery("#ure_select_all").button({
26
- label: ure_data.select_all
27
- }).click(function(event){
28
- event.preventDefault();
29
- ure_select_all(1);
30
- });
31
-
32
- if (typeof ure_current_role === 'undefined' || 'administrator' !== ure_current_role ) {
33
- jQuery("#ure_unselect_all").button({
34
- label: ure_data.unselect_all
35
- }).click(function(event){
36
- event.preventDefault();
37
- ure_select_all(0);
38
  });
39
 
40
- jQuery("#ure_reverse_selection").button({
41
- label: ure_data.reverse
42
- }).click(function(event){
43
- event.preventDefault();
44
- ure_select_all(-1);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
45
  });
46
- }
47
-
48
- jQuery("#ure_update_role").button({
49
- label: ure_data.update
50
- }).click(function(){
51
- if (!confirm(ure_data.confirm_submit)) {
52
- return false;
53
- }
54
- jQuery('#ure_form').submit();
55
- });
56
-
57
-
58
- function ui_button_text(caption) {
59
- var wrapper = '<span class="ui-button-text">'+ caption +'</span>';
60
-
61
- return wrapper;
62
- }
63
 
64
 
65
- function ure_show_add_role_dialog() {
66
- jQuery(function($) {
67
- $info = $('#ure_add_role_dialog');
68
- $info.dialog({
69
- dialogClass: 'wp-dialog',
70
- modal: true,
71
- autoOpen: true,
72
- closeOnEscape: true,
73
- width: 400,
74
- height: 230,
75
- resizable: false,
76
- title: ure_data.add_new_role_title,
77
- 'buttons' : {
78
- 'Add Role': function () {
79
- var role_id = $('#user_role_id').val();
80
- if (role_id == '') {
81
- alert( ure_data.role_name_required );
82
- return false;
83
- }
84
- if (!(/^[\w-]*$/.test(role_id))) {
85
- alert( ure_data.role_name_valid_chars );
86
- return false;
87
- }
88
- if ((/^[0-9]*$/.test(role_id))) {
89
- alert( ure_data.numeric_role_name_prohibited );
90
- return false;
91
- }
92
- var role_name = $('#user_role_name').val();
93
- var role_copy_from = $('#user_role_copy_from').val();
94
-
95
- $(this).dialog('close');
96
- $.ure_postGo( ure_data.page_url,
97
- { action: 'add-new-role', user_role_id: role_id, user_role_name: role_name, user_role_copy_from: role_copy_from,
98
- ure_nonce: ure_data.wp_nonce} );
99
- },
100
- Cancel: function() {
101
- $(this).dialog('close');
102
- return false;
 
 
 
 
 
103
  }
104
- }
105
- });
106
- $('.ui-dialog-buttonpane button:contains("Add Role")').attr("id", "dialog-add-role-button");
107
- $('#dialog-add-role-button').html(ui_button_text(ure_data.add_role));
108
- $('.ui-dialog-buttonpane button:contains("Cancel")').attr("id", "add-role-dialog-cancel-button");
109
- $('#add-role-dialog-cancel-button').html(ui_button_text(ure_data.cancel));
110
- });
111
- }
112
 
113
 
114
- jQuery("#ure_add_role").button({
115
  label: ure_data.add_role
116
- }).click(function(event) {
117
  event.preventDefault();
118
  ure_show_add_role_dialog();
119
  });
120
 
121
-
122
- function ure_show_rename_role_dialog() {
123
- jQuery(function($) {
124
- $('#ure_rename_role_dialog').dialog({
125
- dialogClass: 'wp-dialog',
126
- modal: true,
127
- autoOpen: true,
128
- closeOnEscape: true,
129
- width: 400,
130
- height: 230,
131
- resizable: false,
132
- title: ure_data.rename_role_title,
133
- 'buttons' : {
134
- 'Rename Role': function () {
135
- var role_id = $('#ren_user_role_id').val();
136
- var role_name = $('#ren_user_role_name').val();
137
- $(this).dialog('close');
138
- $.ure_postGo( ure_data.page_url,
139
- { action: 'rename-role', user_role_id: role_id, user_role_name: role_name, ure_nonce: ure_data.wp_nonce}
140
- );
141
- },
142
- Cancel: function() {
143
- $(this).dialog('close');
144
- return false;
 
145
  }
146
- }
147
- });
148
- $('.ui-dialog-buttonpane button:contains("Rename Role")').attr("id", "dialog-rename-role-button");
149
- $('#dialog-rename-role-button').html(ui_button_text(ure_data.rename_role));
150
- $('.ui-dialog-buttonpane button:contains("Cancel")').attr("id", "rename-role-dialog-cancel-button");
151
- $('#rename-role-dialog-cancel-button').html(ui_button_text(ure_data.cancel));
152
- $('#ren_user_role_id').val(ure_current_role);
153
- $('#ren_user_role_name').val(ure_current_role_name);
154
- });
155
- }
156
-
157
-
158
- jQuery("#ure_rename_role").button({
159
  label: ure_data.rename_role
160
- }).click(function(event) {
161
  event.preventDefault();
162
  ure_show_rename_role_dialog();
163
  });
164
-
165
-
166
- jQuery("#ure_delete_role").button({
167
- label: ure_data.delete_role
168
- }).click(function(event){
169
- event.preventDefault();
170
- jQuery(function($) {
171
- $('#ure_delete_role_dialog').dialog({
172
- dialogClass: 'wp-dialog',
173
- modal: true,
174
- autoOpen: true,
175
- closeOnEscape: true,
176
- width: 320,
177
- height: 190,
178
- resizable: false,
179
- title: ure_data.delete_role,
180
- buttons: {
181
- 'Delete Role': function() {
182
- var user_role_id = $('#del_user_role').val();
183
- if (!confirm(ure_data.delete_role)) {
184
- return false;
 
 
 
 
185
  }
186
- $(this).dialog('close');
187
- $.ure_postGo(ure_data.page_url,
188
- {action: 'delete-role', user_role_id: user_role_id, ure_nonce: ure_data.wp_nonce});
189
- },
190
- Cancel: function() {
191
- $(this).dialog('close');
192
- }
193
- }
194
- });
195
- // translate buttons caption
196
- $('.ui-dialog-buttonpane button:contains("Delete Role")').attr("id", "dialog-delete-button");
197
- $('#dialog-delete-button').html(ui_button_text(ure_data.delete_role));
198
- $('.ui-dialog-buttonpane button:contains("Cancel")').attr("id", "delete-role-dialog-cancel-button");
199
- $('#delete-role-dialog-cancel-button').html(ui_button_text(ure_data.cancel));
200
  });
201
- });
202
-
203
-
204
- jQuery("#ure_add_capability").button({
205
- label: ure_data.add_capability
206
- }).click(function(event){
207
- event.preventDefault();
208
- jQuery(function($) {
209
- $info = $('#ure_add_capability_dialog');
210
- $info.dialog({
211
- dialogClass: 'wp-dialog',
212
- modal: true,
213
- autoOpen: true,
214
- closeOnEscape: true,
215
- width: 350,
216
- height: 190,
217
- resizable: false,
218
- title: ure_data.add_capability,
219
- 'buttons' : {
220
- 'Add Capability': function () {
221
- var capability_id = $('#capability_id').val();
222
- if (capability_id == '') {
223
- alert( ure_data.capability_name_required );
224
- return false;
225
- }
226
- if (!(/^[\w-]*$/.test(capability_id))) {
227
- alert( ure_data.capability_name_valid_chars );
228
- return false;
229
- }
230
-
231
- $(this).dialog('close');
232
- $.ure_postGo( ure_data.page_url,
233
- { action: 'add-new-capability', capability_id: capability_id, ure_nonce: ure_data.wp_nonce} );
234
- },
235
- Cancel: function() {
236
- $(this).dialog('close');
237
  }
238
- }
239
- });
240
- $('.ui-dialog-buttonpane button:contains("Add Capability")').attr("id", "dialog-add-capability-button");
241
- $('#dialog-add-capability-button').html(ui_button_text(ure_data.add_capability));
242
- $('.ui-dialog-buttonpane button:contains("Cancel")').attr("id", "add-capability-dialog-cancel-button");
243
- $('#add-capability-dialog-cancel-button').html(ui_button_text(ure_data.cancel));
244
- });
245
- });
246
-
247
-
248
- jQuery("#ure_delete_capability").button({
249
- label: ure_data.delete_capability
250
- }).click(function(event){
251
- event.preventDefault();
252
- jQuery(function($) {
253
- $('#ure_delete_capability_dialog').dialog({
254
- dialogClass: 'wp-dialog',
255
- modal: true,
256
- autoOpen: true,
257
- closeOnEscape: true,
258
- width: 320,
259
- height: 190,
260
- resizable: false,
261
- title: ure_data.delete_capability,
262
- buttons: {
263
- 'Delete Capability': function() {
264
- if (!confirm(ure_data.delete_capability +' - '+ ure_data.delete_capability_warning)) {
265
- return;
 
 
 
 
 
 
 
 
 
 
 
 
266
  }
267
- $(this).dialog('close');
268
- var user_capability_id = $('#remove_user_capability').val();
269
- $.ure_postGo(ure_data.page_url,
270
- {action: 'delete-user-capability', user_capability_id: user_capability_id, ure_nonce: ure_data.wp_nonce});
271
- },
272
- Cancel: function() {
273
- $(this).dialog('close');
274
- }
275
- }
276
- });
277
- // translate buttons caption
278
- $('.ui-dialog-buttonpane button:contains("Delete Capability")').attr("id", "dialog-delete-capability-button");
279
- $('#dialog-delete-capability-button').html(ui_button_text(ure_data.delete_capability));
280
- $('.ui-dialog-buttonpane button:contains("Cancel")').attr("id", "delete-capability-dialog-cancel-button");
281
- $('#delete-capability-dialog-cancel-button').html(ui_button_text(ure_data.cancel));
282
- });
283
- });
284
-
285
- jQuery("#ure_default_role").button({
286
- label: ure_data.default_role
287
- }).click(function(event){
288
- event.preventDefault();
289
- jQuery(function($) {
290
- $('#ure_default_role_dialog').dialog({
291
- dialogClass: 'wp-dialog',
292
- modal: true,
293
- autoOpen: true,
294
- closeOnEscape: true,
295
- width: 320,
296
- height: 190,
297
- resizable: false,
298
- title: ure_data.default_role,
299
- buttons: {
300
- 'Set New Default Role': function() {
301
- $(this).dialog('close');
302
- var user_role_id = $('#default_user_role').val();
303
- $.ure_postGo(ure_data.page_url,
304
- {action: 'change-default-role', user_role_id: user_role_id, ure_nonce: ure_data.wp_nonce});
305
- },
306
- Cancel: function() {
307
- $(this).dialog('close');
308
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
309
  }
310
- });
311
- // translate buttons caption
312
- $('.ui-dialog-buttonpane button:contains("Set New Default Role")').attr("id", "dialog-default-role-button");
313
- $('#dialog-default-role-button').html(ui_button_text(ure_data.set_new_default_role));
314
- $('.ui-dialog-buttonpane button:contains("Cancel")').attr("id", "default-role-dialog-cancel-button");
315
- $('#default-role-dialog-cancel-button').html(ui_button_text(ure_data.cancel));
316
  });
317
- });
318
-
319
- jQuery('#ure_reset_roles_button').button({
320
- label: ure_data.reset
321
- }).click(function(event){
322
- event.preventDefault();
323
- if (!confirm( ure_data.reset_warning )) {
324
- return false;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
325
  }
326
- jQuery.ure_postGo(ure_data.page_url, {action: 'reset', ure_nonce: ure_data.wp_nonce});
327
- });
328
 
329
  });
 
330
 
331
 
332
  // change color of apply to all check box - for multi-site setup only
333
  function ure_applyToAllOnClick(cb) {
334
- el = document.getElementById('ure_apply_to_all_div');
335
- if (cb.checked) {
336
- el.style.color = '#FF0000';
337
- } else {
338
- el.style.color = '#000000';
339
- }
340
  }
341
  // end of ure_applyToAllOnClick()
342
 
343
 
344
  // turn on checkbox back if clicked to turn off
345
- function turn_it_back(control) {
346
 
347
- control.checked = true;
348
 
349
  }
350
- // end of turn_it_back()
351
 
352
 
353
  /**
@@ -357,88 +417,87 @@ function turn_it_back(control) {
357
  */
358
  function ure_select_all(selected) {
359
 
360
- var qfilter = jQuery('#quick_filter').val();
361
- var form = document.getElementById('ure_form');
362
- for (i = 0; i < form.elements.length; i++) {
363
- el = form.elements[i];
364
- if (el.type !== 'checkbox') {
365
- continue;
366
- }
367
- if (el.name === 'ure_caps_readable' || el.name === 'ure_show_deprecated_caps' ||
368
- el.name === 'ure_apply_to_all' || el.disabled ||
369
- el.name.substr(0, 8) === 'wp_role_') {
370
- continue;
 
 
 
 
 
 
 
 
 
 
371
  }
372
- if (qfilter!=='' && !form.elements[i].parentNode.ure_tag) {
373
- continue;
374
- }
375
- if (selected >= 0) {
376
- form.elements[i].checked = selected;
377
- } else {
378
- form.elements[i].checked = !form.elements[i].checked;
379
- }
380
-
381
- }
382
 
383
  }
384
  // end of ure_select_all()
385
 
386
 
387
  function ure_turn_caps_readable(user_id) {
388
-
389
- if (user_id === 0) {
390
- var ure_object = 'role';
391
- } else {
392
- var ure_object = 'user';
393
- }
394
-
395
- jQuery.ure_postGo(ure_data.page_url, {action: 'caps-readable', object: ure_object, user_id: user_id, ure_nonce: ure_data.wp_nonce});
396
-
397
  }
398
  // end of ure_turn_caps_readable()
399
 
400
 
401
  function ure_turn_deprecated_caps(user_id) {
402
-
403
- var ure_object = '';
404
- if (user_id === 0) {
405
- ure_object = 'role';
406
- } else {
407
- ure_object = 'user';
408
- }
409
- jQuery.ure_postGo(ure_data.page_url, {action: 'show-deprecated-caps', object: ure_object, user_id: user_id, ure_nonce: ure_data.wp_nonce});
410
-
411
  }
412
  // ure_turn_deprecated_caps()
413
 
414
 
415
  function ure_role_change(role_name) {
416
-
417
- jQuery.ure_postGo(ure_data.page_url, {action: 'role-change', object: 'role', user_role: role_name, ure_nonce: ure_data.wp_nonce});
418
-
419
  }
420
  // end of ure_role_change()
421
 
422
 
423
  function ure_filter_capabilities(cap_id) {
424
- var div_list = jQuery("div[id^='ure_div_cap_']");
425
- for (i=0; i<div_list.length; i++) {
426
- if (cap_id!=='' && div_list[i].id.substr(11).indexOf(cap_id)!==-1) {
427
- div_list[i].ure_tag = true;
428
- div_list[i].style.color = '#27CF27';
429
- } else {
430
- div_list[i].style.color = '#000000';
431
- div_list[i].ure_tag = false;
432
- }
433
- };
434
-
 
435
  }
436
  // end of ure_filter_capabilities()
437
 
438
 
439
  function ure_hide_pro_banner() {
440
-
441
- jQuery.ure_postGo(ure_data.page_url, {action: 'hide-pro-banner', ure_nonce: ure_data.wp_nonce});
442
-
443
  }
444
- // end of ure_hide_this_banner()
1
  // get/post via jQuery
2
+ (function ($) {
3
  $.extend({
4
+ ure_getGo: function (url, params) {
5
  document.location = url + '?' + $.param(params);
6
  },
7
+ ure_postGo: function (url, params) {
8
+ var $form = $('<form>')
9
+ .attr('method', 'post')
10
+ .attr('action', url);
11
+ $.each(params, function (name, value) {
12
  $("<input type='hidden'>")
13
+ .attr('name', name)
14
+ .attr('value', value)
15
+ .appendTo($form);
16
  });
17
+ $form.appendTo('body');
18
  $form.submit();
19
  }
20
+ });
21
  })(jQuery);
22
 
23
 
24
+ function ure_ui_button_text(caption) {
25
+ var wrapper = '<span class="ui-button-text">' + caption + '</span>';
26
+
27
+ return wrapper;
28
+ }
29
+
30
+
31
+ jQuery(function ($) {
32
+
33
+ $('#ure_select_all').button({
34
+ label: ure_data.select_all
35
+ }).click(function (event) {
36
+ event.preventDefault();
37
+ ure_select_all(1);
38
  });
39
 
40
+ if (typeof ure_current_role === 'undefined' || 'administrator' !== ure_current_role) {
41
+ $('#ure_unselect_all').button({
42
+ label: ure_data.unselect_all
43
+ }).click(function (event) {
44
+ event.preventDefault();
45
+ ure_select_all(0);
46
+ });
47
+
48
+ $('#ure_reverse_selection').button({
49
+ label: ure_data.reverse
50
+ }).click(function (event) {
51
+ event.preventDefault();
52
+ ure_select_all(-1);
53
+ });
54
+ }
55
+
56
+ $('#ure_update_role').button({
57
+ label: ure_data.update
58
+ }).click(function () {
59
+ if (ure_data.confirm_role_update == 1) {
60
+ event.preventDefault();
61
+ ure_confirm(ure_data.confirm_submit, ure_form_submit);
62
+ }
63
  });
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
64
 
65
 
66
+ function ure_form_submit() {
67
+ $('#ure_form').submit();
68
+ }
69
+
70
+
71
+ function ure_show_add_role_dialog() {
72
+
73
+ $('#ure_add_role_dialog').dialog({
74
+ dialogClass: 'wp-dialog',
75
+ modal: true,
76
+ autoOpen: true,
77
+ closeOnEscape: true,
78
+ width: 400,
79
+ height: 230,
80
+ resizable: false,
81
+ title: ure_data.add_new_role_title,
82
+ 'buttons': {
83
+ 'Add Role': function () {
84
+ var role_id = $('#user_role_id').val();
85
+ if (role_id == '') {
86
+ alert(ure_data.role_name_required);
87
+ return false;
88
+ }
89
+ if (!(/^[\w-]*$/.test(role_id))) {
90
+ alert(ure_data.role_name_valid_chars);
91
+ return false;
92
+ }
93
+ if ((/^[0-9]*$/.test(role_id))) {
94
+ alert(ure_data.numeric_role_name_prohibited);
95
+ return false;
96
+ }
97
+ var role_name = $('#user_role_name').val();
98
+ var role_copy_from = $('#user_role_copy_from').val();
99
+
100
+ $(this).dialog('close');
101
+ $.ure_postGo(ure_data.page_url,
102
+ {action: 'add-new-role', user_role_id: role_id, user_role_name: role_name, user_role_copy_from: role_copy_from,
103
+ ure_nonce: ure_data.wp_nonce});
104
+ },
105
+ Cancel: function () {
106
+ $(this).dialog('close');
107
+ return false;
108
+ }
109
  }
110
+ });
111
+ $('.ui-dialog-buttonpane button:contains("Add Role")').attr('id', 'dialog-add-role-button');
112
+ $('#dialog-add-role-button').html(ure_ui_button_text(ure_data.add_role));
113
+ $('.ui-dialog-buttonpane button:contains("Cancel")').attr('id', 'add-role-dialog-cancel-button');
114
+ $('#add-role-dialog-cancel-button').html(ure_ui_button_text(ure_data.cancel));
115
+
116
+ }
 
117
 
118
 
119
+ $('#ure_add_role').button({
120
  label: ure_data.add_role
121
+ }).click(function (event) {
122
  event.preventDefault();
123
  ure_show_add_role_dialog();
124
  });
125
 
126
+
127
+ function ure_show_rename_role_dialog() {
128
+
129
+ $('#ure_rename_role_dialog').dialog({
130
+ dialogClass: 'wp-dialog',
131
+ modal: true,
132
+ autoOpen: true,
133
+ closeOnEscape: true,
134
+ width: 400,
135
+ height: 230,
136
+ resizable: false,
137
+ title: ure_data.rename_role_title,
138
+ 'buttons': {
139
+ 'Rename Role': function () {
140
+ var role_id = $('#ren_user_role_id').val();
141
+ var role_name = $('#ren_user_role_name').val();
142
+ $(this).dialog('close');
143
+ $.ure_postGo(ure_data.page_url,
144
+ {action: 'rename-role', user_role_id: role_id, user_role_name: role_name, ure_nonce: ure_data.wp_nonce}
145
+ );
146
+ },
147
+ Cancel: function () {
148
+ $(this).dialog('close');
149
+ return false;
150
+ }
151
  }
152
+ });
153
+ $('.ui-dialog-buttonpane button:contains("Rename Role")').attr('id', 'dialog-rename-role-button');
154
+ $('#dialog-rename-role-button').html(ure_ui_button_text(ure_data.rename_role));
155
+ $('.ui-dialog-buttonpane button:contains("Cancel")').attr('id', 'rename-role-dialog-cancel-button');
156
+ $('#rename-role-dialog-cancel-button').html(ure_ui_button_text(ure_data.cancel));
157
+ $('#ren_user_role_id').val(ure_current_role);
158
+ $('#ren_user_role_name').val(ure_current_role_name);
159
+
160
+ }
161
+
162
+
163
+ $('#ure_rename_role').button({
 
164
  label: ure_data.rename_role
165
+ }).click(function (event) {
166
  event.preventDefault();
167
  ure_show_rename_role_dialog();
168
  });
169
+
170
+
171
+ function ure_show_delete_role_dialog() {
172
+ $('#ure_delete_role_dialog').dialog({
173
+ dialogClass: 'wp-dialog',
174
+ modal: true,
175
+ autoOpen: true,
176
+ closeOnEscape: true,
177
+ width: 320,
178
+ height: 190,
179
+ resizable: false,
180
+ title: ure_data.delete_role,
181
+ buttons: {
182
+ 'Delete Role': function () {
183
+ var user_role_id = $('#del_user_role').val();
184
+ if (!confirm(ure_data.delete_role)) {
185
+ return false;
186
+ }
187
+ $(this).dialog('close');
188
+ $.ure_postGo(ure_data.page_url,
189
+ {action: 'delete-role', user_role_id: user_role_id, ure_nonce: ure_data.wp_nonce});
190
+ },
191
+ Cancel: function () {
192
+ $(this).dialog('close');
193
+ }
194
  }
195
+ });
196
+ // translate buttons caption
197
+ $('.ui-dialog-buttonpane button:contains("Delete Role")').attr('id', 'dialog-delete-button');
198
+ $('#dialog-delete-button').html(ure_ui_button_text(ure_data.delete_role));
199
+ $('.ui-dialog-buttonpane button:contains("Cancel")').attr('id', 'delete-role-dialog-cancel-button');
200
+ $('#delete-role-dialog-cancel-button').html(ure_ui_button_text(ure_data.cancel));
201
+ }
202
+
203
+
204
+ $('#ure_delete_role').button({
205
+ label: ure_data.delete_role
206
+ }).click(function (event) {
207
+ event.preventDefault();
208
+ ure_show_delete_role_dialog();
209
  });
210
+
211
+
212
+ function ure_show_add_capability_dialog() {
213
+ $('#ure_add_capability_dialog').dialog({
214
+ dialogClass: 'wp-dialog',
215
+ modal: true,
216
+ autoOpen: true,
217
+ closeOnEscape: true,
218
+ width: 350,
219
+ height: 190,
220
+ resizable: false,
221
+ title: ure_data.add_capability,
222
+ 'buttons': {
223
+ 'Add Capability': function () {
224
+ var capability_id = $('#capability_id').val();
225
+ if (capability_id == '') {
226
+ alert(ure_data.capability_name_required);
227
+ return false;
228
+ }
229
+ if (!(/^[\w-]*$/.test(capability_id))) {
230
+ alert(ure_data.capability_name_valid_chars);
231
+ return false;
232
+ }
233
+
234
+ $(this).dialog('close');
235
+ $.ure_postGo(ure_data.page_url,
236
+ {action: 'add-new-capability', capability_id: capability_id, ure_nonce: ure_data.wp_nonce});
237
+ },
238
+ Cancel: function () {
239
+ $(this).dialog('close');
240
+ }
 
 
 
 
 
241
  }
242
+ });
243
+ $('.ui-dialog-buttonpane button:contains("Add Capability")').attr('id', 'dialog-add-capability-button');
244
+ $('#dialog-add-capability-button').html(ure_ui_button_text(ure_data.add_capability));
245
+ $('.ui-dialog-buttonpane button:contains("Cancel")').attr('id', 'add-capability-dialog-cancel-button');
246
+ $('#add-capability-dialog-cancel-button').html(ure_ui_button_text(ure_data.cancel));
247
+
248
+ }
249
+
250
+
251
+ $('#ure_add_capability').button({
252
+ label: ure_data.add_capability
253
+ }).click(function (event) {
254
+ event.preventDefault();
255
+ ure_show_add_capability_dialog();
256
+ });
257
+
258
+
259
+ function ure_show_delete_capability_dialog() {
260
+ $('#ure_delete_capability_dialog').dialog({
261
+ dialogClass: 'wp-dialog',
262
+ modal: true,
263
+ autoOpen: true,
264
+ closeOnEscape: true,
265
+ width: 320,
266
+ height: 190,
267
+ resizable: false,
268
+ title: ure_data.delete_capability,
269
+ buttons: {
270
+ 'Delete Capability': function () {
271
+ if (!confirm(ure_data.delete_capability + ' - ' + ure_data.delete_capability_warning)) {
272
+ return;
273
+ }
274
+ $(this).dialog('close');
275
+ var user_capability_id = $('#remove_user_capability').val();
276
+ $.ure_postGo(ure_data.page_url,
277
+ {action: 'delete-user-capability', user_capability_id: user_capability_id, ure_nonce: ure_data.wp_nonce});
278
+ },
279
+ Cancel: function () {
280
+ $(this).dialog('close');
281
+ }
282
  }
283
+ });
284
+ // translate buttons caption
285
+ $('.ui-dialog-buttonpane button:contains("Delete Capability")').attr('id', 'dialog-delete-capability-button');
286
+ $('#dialog-delete-capability-button').html(ure_ui_button_text(ure_data.delete_capability));
287
+ $('.ui-dialog-buttonpane button:contains("Cancel")').attr('id', 'delete-capability-dialog-cancel-button');
288
+ $('#delete-capability-dialog-cancel-button').html(ure_ui_button_text(ure_data.cancel));
289
+
290
+ }
291
+
292
+
293
+ if ($('#ure_delete_capability').length > 0) {
294
+ $('#ure_delete_capability').button({
295
+ label: ure_data.delete_capability
296
+ }).click(function (event) {
297
+ event.preventDefault();
298
+ ure_show_delete_capability_dialog()
299
+ });
300
+ }
301
+
302
+
303
+ function ure_show_default_role_dialog() {
304
+ $('#ure_default_role_dialog').dialog({
305
+ dialogClass: 'wp-dialog',
306
+ modal: true,
307
+ autoOpen: true,
308
+ closeOnEscape: true,
309
+ width: 320,
310
+ height: 190,
311
+ resizable: false,
312
+ title: ure_data.default_role,
313
+ buttons: {
314
+ 'Set New Default Role': function () {
315
+ $(this).dialog('close');
316
+ var user_role_id = $('#default_user_role').val();
317
+ $.ure_postGo(ure_data.page_url,
318
+ {action: 'change-default-role', user_role_id: user_role_id, ure_nonce: ure_data.wp_nonce});
319
+ },
320
+ Cancel: function () {
321
+ $(this).dialog('close');
322
+ }
323
+ }
324
+ });
325
+ // translate buttons caption
326
+ $('.ui-dialog-buttonpane button:contains("Set New Default Role")').attr('id', 'dialog-default-role-button');
327
+ $('#dialog-default-role-button').html(ure_ui_button_text(ure_data.set_new_default_role));
328
+ $('.ui-dialog-buttonpane button:contains("Cancel")').attr('id', 'default-role-dialog-cancel-button');
329
+ $('#default-role-dialog-cancel-button').html(ure_ui_button_text(ure_data.cancel));
330
+ }
331
+
332
+
333
+ if ($('#ure_default_role').length > 0) {
334
+ $('#ure_default_role').button({
335
+ label: ure_data.default_role
336
+ }).click(function (event) {
337
+ event.preventDefault();
338
+ ure_show_default_role_dialog();
339
+ });
340
+ }
341
+
342
+
343
+ $('#ure_reset_roles_button').button({
344
+ label: ure_data.reset
345
+ }).click(function (event) {
346
+ event.preventDefault();
347
+ if (!confirm(ure_data.reset_warning)) {
348
+ return false;
349
  }
350
+ jQuery.ure_postGo(ure_data.page_url, {action: 'reset', ure_nonce: ure_data.wp_nonce});
 
 
 
 
 
351
  });
352
+
353
+
354
+ function ure_confirm(message, routine) {
355
+
356
+ $('#ure_confirmation_dialog').dialog({
357
+ dialogClass: 'wp-dialog',
358
+ modal: true,
359
+ autoOpen: true,
360
+ closeOnEscape: true,
361
+ width: 400,
362
+ height: 180,
363
+ resizable: false,
364
+ title: ure_data.confirm_title,
365
+ 'buttons': {
366
+ 'No': function () {
367
+ $(this).dialog('close');
368
+ return false;
369
+ },
370
+ 'Yes': function () {
371
+ $(this).dialog('close');
372
+ routine();
373
+ return true;
374
+ }
375
+ }
376
+ });
377
+ $('#ure_cd_html').html(message);
378
+
379
+ $('.ui-dialog-buttonpane button:contains("No")').attr('id', 'dialog-no-button');
380
+ $('#dialog-no-button').html(ure_ui_button_text(ure_data.no_label));
381
+ $('.ui-dialog-buttonpane button:contains("Yes")').attr('id', 'dialog-yes-button');
382
+ $('#dialog-yes-button').html(ure_ui_button_text(ure_data.yes_label));
383
+
384
  }
385
+ // end of ure_confirm()
386
+
387
 
388
  });
389
+ // end of jQuery(function() ...
390
 
391
 
392
  // change color of apply to all check box - for multi-site setup only
393
  function ure_applyToAllOnClick(cb) {
394
+ el = document.getElementById('ure_apply_to_all_div');
395
+ if (cb.checked) {
396
+ el.style.color = '#FF0000';
397
+ } else {
398
+ el.style.color = '#000000';
399
+ }
400
  }
401
  // end of ure_applyToAllOnClick()
402
 
403
 
404
  // turn on checkbox back if clicked to turn off
405
+ function ure_turn_it_back(control) {
406
 
407
+ control.checked = true;
408
 
409
  }
410
+ // end of ure_turn_it_back()
411
 
412
 
413
  /**
417
  */
418
  function ure_select_all(selected) {
419
 
420
+ var qfilter = jQuery('#quick_filter').val();
421
+ var form = document.getElementById('ure_form');
422
+ for (i = 0; i < form.elements.length; i++) {
423
+ el = form.elements[i];
424
+ if (el.type !== 'checkbox') {
425
+ continue;
426
+ }
427
+ if (el.name === 'ure_caps_readable' || el.name === 'ure_show_deprecated_caps' ||
428
+ el.name === 'ure_apply_to_all' || el.disabled ||
429
+ el.name.substr(0, 8) === 'wp_role_') {
430
+ continue;
431
+ }
432
+ if (qfilter !== '' && !form.elements[i].parentNode.ure_tag) {
433
+ continue;
434
+ }
435
+ if (selected >= 0) {
436
+ form.elements[i].checked = selected;
437
+ } else {
438
+ form.elements[i].checked = !form.elements[i].checked;
439
+ }
440
+
441
  }
 
 
 
 
 
 
 
 
 
 
442
 
443
  }
444
  // end of ure_select_all()
445
 
446
 
447
  function ure_turn_caps_readable(user_id) {
448
+ var ure_object = 'user';
449
+ if (user_id === 0) {
450
+ ure_object = 'role';
451
+ }
452
+
453
+ jQuery.ure_postGo(ure_data.page_url, {action: 'caps-readable', object: ure_object, user_id: user_id, ure_nonce: ure_data.wp_nonce});
454
+
 
 
455
  }
456
  // end of ure_turn_caps_readable()
457
 
458
 
459
  function ure_turn_deprecated_caps(user_id) {
460
+
461
+ var ure_object = '';
462
+ if (user_id === 0) {
463
+ ure_object = 'role';
464
+ } else {
465
+ ure_object = 'user';
466
+ }
467
+ jQuery.ure_postGo(ure_data.page_url, {action: 'show-deprecated-caps', object: ure_object, user_id: user_id, ure_nonce: ure_data.wp_nonce});
468
+
469
  }
470
  // ure_turn_deprecated_caps()
471
 
472
 
473
  function ure_role_change(role_name) {
474
+
475
+ jQuery.ure_postGo(ure_data.page_url, {action: 'role-change', object: 'role', user_role: role_name, ure_nonce: ure_data.wp_nonce});
476
+
477
  }
478
  // end of ure_role_change()
479
 
480
 
481
  function ure_filter_capabilities(cap_id) {
482
+ var div_list = jQuery("div[id^='ure_div_cap_']");
483
+ for (i = 0; i < div_list.length; i++) {
484
+ if (cap_id !== '' && div_list[i].id.substr(11).indexOf(cap_id) !== -1) {
485
+ div_list[i].ure_tag = true;
486
+ div_list[i].style.color = '#27CF27';
487
+ } else {
488
+ div_list[i].style.color = '#000000';
489
+ div_list[i].ure_tag = false;
490
+ }
491
+ }
492
+ ;
493
+
494
  }
495
  // end of ure_filter_capabilities()
496
 
497
 
498
  function ure_hide_pro_banner() {
499
+
500
+ jQuery.ure_postGo(ure_data.page_url, {action: 'hide-pro-banner', ure_nonce: ure_data.wp_nonce});
501
+
502
  }
503
+ // end of ure_hide_this_banner()
lang/user-role-editor-de_DE.mo DELETED
Binary file
lang/user-role-editor-de_DE.po DELETED
@@ -1,1192 +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: 2015-09-11 21:06+0100\n"
6
- "PO-Revision-Date: 2015-09-11 21:10+0100\n"
7
- "Last-Translator: Vladimir Garagulya <vladimir@shinephp.com>\n"
8
- "Language-Team: Peter Becker-Heidmann <peter@becker-heidmann.de>\n"
9
- "Language: de_DE\n"
10
- "MIME-Version: 1.0\n"
11
- "Content-Type: text/plain; charset=UTF-8\n"
12
- "Content-Transfer-Encoding: 8bit\n"
13
- "Plural-Forms: nplurals=2; plural=n != 1;\n"
14
- "X-Poedit-SourceCharset: utf-8\n"
15
- "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;"
16
- "_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n"
17
- "X-Poedit-Basepath: ../\n"
18
- "X-Textdomain-Support: yes\n"
19
- "X-Generator: Poedit 1.5.4\n"
20
- "X-Poedit-SearchPath-0: .\n"
21
-
22
- #: ../includes/class-ure-lib.php:247
23
- msgid "Error: wrong request"
24
- msgstr ""
25
-
26
- #: ../includes/class-ure-lib.php:280 ../includes/class-ure-lib.php:291
27
- msgid "Role name (ID): "
28
- msgstr ""
29
-
30
- #: ../includes/class-ure-lib.php:282 ../includes/class-ure-lib.php:293
31
- msgid "Display Role Name: "
32
- msgstr ""
33
-
34
- #: ../includes/class-ure-lib.php:284
35
- msgid "Make copy of: "
36
- msgstr "Erstelle Kopie von:"
37
-
38
- # @ ure
39
- #: ../includes/class-ure-lib.php:300
40
- msgid "Select Role:"
41
- msgstr "Eine Rolle auswählen:"
42
-
43
- # @ ure
44
- #: ../includes/class-ure-lib.php:315
45
- #, fuzzy
46
- msgid "Delete:"
47
- msgstr "Löschen"
48
-
49
- #: ../includes/class-ure-lib.php:322
50
- msgid "Capability name (ID): "
51
- msgstr ""
52
-
53
- # @ ure
54
- #: ../includes/class-ure-lib.php:339
55
- #: ../includes/class-user-role-editor.php:596
56
- #: ../includes/class-user-role-editor.php:625
57
- msgid "User Role Editor"
58
- msgstr "User Role Editor"
59
-
60
- #: ../includes/class-ure-lib.php:436
61
- msgid "Error: "
62
- msgstr "Fehler:"
63
-
64
- # @ ure
65
- #: ../includes/class-ure-lib.php:436
66
- msgid "Role"
67
- msgstr "Rolle"
68
-
69
- #: ../includes/class-ure-lib.php:437
70
- msgid "does not exist"
71
- msgstr "existiert nicht"
72
-
73
- # @ ure
74
- #: ../includes/class-ure-lib.php:480
75
- #, fuzzy
76
- msgid "Role is updated successfully"
77
- msgstr "wurde erfolgreich aktualisiert"
78
-
79
- #: ../includes/class-ure-lib.php:482
80
- msgid "Roles are updated for all network"
81
- msgstr ""
82
-
83
- # @ ure
84
- #: ../includes/class-ure-lib.php:488
85
- #, fuzzy
86
- msgid "Error occured during role(s) update"
87
- msgstr "Ein Fehler ist während des Löschvorgangs der Rolle aufgetreten"
88
-
89
- # @ ure
90
- #: ../includes/class-ure-lib.php:495
91
- #, fuzzy
92
- msgid "User capabilities are updated successfully"
93
- msgstr "Rechte wurden erfolgreich aktualisiert"
94
-
95
- # @ ure
96
- #: ../includes/class-ure-lib.php:500
97
- #, fuzzy
98
- msgid "Error occured during user update"
99
- msgstr "Ein Fehler ist während des Löschvorgangs der Rolle aufgetreten"
100
-
101
- # @ ure
102
- #: ../includes/class-ure-lib.php:558
103
- #, fuzzy
104
- msgid "User Roles are restored to WordPress default values. "
105
- msgstr "Rollenbefugnisse werden von der Sicherheitskopie wiederhergestellt."
106
-
107
- #: ../includes/class-ure-lib.php:1436
108
- msgid "read about"
109
- msgstr ""
110
-
111
- #: ../includes/class-ure-lib.php:1437
112
- #, fuzzy
113
- msgid "user capability"
114
- msgstr "Entferne Benutzerrecht"
115
-
116
- #: ../includes/class-ure-lib.php:1438
117
- msgid "Help"
118
- msgstr "Hilfe"
119
-
120
- #: ../includes/class-ure-lib.php:1693 ../includes/class-ure-lib.php:1946
121
- #: ../includes/class-ure-lib.php:2062 ../includes/class-ure-lib.php:2110
122
- #: ../includes/class-ure-lib.php:2358 ../includes/class-ure-lib.php:2403
123
- #: ../includes/class-user-role-editor.php:828
124
- msgid "Insufficient permissions to work with User Role Editor"
125
- msgstr ""
126
-
127
- # @ ure
128
- #: ../includes/class-ure-lib.php:1909
129
- msgid "Error is occur. Please check the log file."
130
- msgstr "Ein Fehler ist aufgetreten. Bitte überprüfen Sie die Log-Datei."
131
-
132
- # @ ure
133
- #: ../includes/class-ure-lib.php:1955 ../includes/class-ure-lib.php:2022
134
- #, fuzzy
135
- msgid ""
136
- "Error: Role ID must contain latin characters, digits, hyphens or underscore "
137
- "only!"
138
- msgstr "Fehler: Der Rollen-Name darf nur Buchstaben und Ziffern enthalten!"
139
-
140
- #: ../includes/class-ure-lib.php:1959 ../includes/class-ure-lib.php:2026
141
- msgid ""
142
- "Error: WordPress does not support numeric Role name (ID). Add latin "
143
- "characters to it."
144
- msgstr ""
145
-
146
- # @ ure
147
- #: ../includes/class-ure-lib.php:1974
148
- #, php-format
149
- msgid "Role %s exists already"
150
- msgstr "Rolle %s existiert bereits"
151
-
152
- # @ ure
153
- #: ../includes/class-ure-lib.php:1989
154
- msgid "Error is encountered during new role create operation"
155
- msgstr "Ein Fehler ist beim Erstellen der neuen Rolle aufgetreten"
156
-
157
- # @ ure
158
- #: ../includes/class-ure-lib.php:1991
159
- #, php-format
160
- msgid "Role %s is created successfully"
161
- msgstr "Rolle %s wurde erfolgreich erstellt"
162
-
163
- #: ../includes/class-ure-lib.php:2015
164
- msgid "Error: Role ID is empty!"
165
- msgstr ""
166
-
167
- #: ../includes/class-ure-lib.php:2033
168
- msgid "Error: Empty role display name is not allowed."
169
- msgstr ""
170
-
171
- #: ../includes/class-ure-lib.php:2040
172
- #, fuzzy, php-format
173
- msgid "Role %s does not exists"
174
- msgstr "existiert nicht"
175
-
176
- # @ ure
177
- #: ../includes/class-ure-lib.php:2048
178
- #, fuzzy, php-format
179
- msgid "Role %s is renamed to %s successfully"
180
- msgstr "Rolle %s wurde erfolgreich erstellt"
181
-
182
- # @ ure
183
- #: ../includes/class-ure-lib.php:2121
184
- msgid "Error encountered during role delete operation"
185
- msgstr "Ein Fehler ist während des Löschvorgangs der Rolle aufgetreten"
186
-
187
- # @ ure
188
- #: ../includes/class-ure-lib.php:2123
189
- #, fuzzy
190
- msgid "Unused roles are deleted successfully"
191
- msgstr "Rolle %s wurde erfolgreich gelöscht"
192
-
193
- # @ ure
194
- #: ../includes/class-ure-lib.php:2125
195
- #, php-format
196
- msgid "Role %s is deleted successfully"
197
- msgstr "Rolle %s wurde erfolgreich gelöscht"
198
-
199
- # @ ure
200
- #: ../includes/class-ure-lib.php:2153
201
- msgid "Error encountered during default role change operation"
202
- msgstr "Ein Fehler ist während Änderung der Standard-Rolle aufgetreten"
203
-
204
- # @ ure
205
- #: ../includes/class-ure-lib.php:2156
206
- #, php-format
207
- msgid "Default role for new users is set to %s successfully"
208
- msgstr "Standard-Rolle für neue Benutzer erfolgreich auf %s gesetzt"
209
-
210
- #: ../includes/class-ure-lib.php:2159
211
- msgid "Can not set Administrator role as a default one"
212
- msgstr ""
213
-
214
- #: ../includes/class-ure-lib.php:2161
215
- #, fuzzy
216
- msgid "This role does not exist - "
217
- msgstr "existiert nicht"
218
-
219
- # @ ure
220
- #: ../includes/class-ure-lib.php:2177
221
- msgid "Editor"
222
- msgstr "Redakteur"
223
-
224
- # @ ure
225
- #: ../includes/class-ure-lib.php:2178
226
- msgid "Author"
227
- msgstr "Autor"
228
-
229
- # @ ure
230
- #: ../includes/class-ure-lib.php:2179
231
- msgid "Contributor"
232
- msgstr "Mitarbeiter"
233
-
234
- # @ ure
235
- #: ../includes/class-ure-lib.php:2180
236
- msgid "Subscriber"
237
- msgstr "Abonnent"
238
-
239
- # @ ure
240
- #: ../includes/class-ure-lib.php:2182
241
- msgid "Switch themes"
242
- msgstr "Design auswählen"
243
-
244
- # @ ure
245
- #: ../includes/class-ure-lib.php:2183
246
- msgid "Edit themes"
247
- msgstr "Design bearbeiten"
248
-
249
- # @ ure
250
- #: ../includes/class-ure-lib.php:2184
251
- msgid "Activate plugins"
252
- msgstr "Plugins aktivieren"
253
-
254
- # @ ure
255
- #: ../includes/class-ure-lib.php:2185
256
- msgid "Edit plugins"
257
- msgstr "Plugins bearbeiten"
258
-
259
- # @ ure
260
- #: ../includes/class-ure-lib.php:2186
261
- msgid "Edit users"
262
- msgstr "Benutzer bearbeiten"
263
-
264
- # @ ure
265
- #: ../includes/class-ure-lib.php:2187
266
- msgid "Edit files"
267
- msgstr "Dateien bearbeiten"
268
-
269
- # @ ure
270
- #: ../includes/class-ure-lib.php:2188
271
- msgid "Manage options"
272
- msgstr "Eigenschaften verwalten"
273
-
274
- # @ ure
275
- #: ../includes/class-ure-lib.php:2189
276
- msgid "Moderate comments"
277
- msgstr "Kommentare moderieren"
278
-
279
- # @ ure
280
- #: ../includes/class-ure-lib.php:2190
281
- msgid "Manage categories"
282
- msgstr "Kategorien verwalten"
283
-
284
- # @ ure
285
- #: ../includes/class-ure-lib.php:2191
286
- msgid "Manage links"
287
- msgstr "Links verwalten"
288
-
289
- # @ ure
290
- #: ../includes/class-ure-lib.php:2192
291
- msgid "Upload files"
292
- msgstr "Dateien hochladen"
293
-
294
- # @ ure
295
- #: ../includes/class-ure-lib.php:2193
296
- msgid "Import"
297
- msgstr "Import"
298
-
299
- # @ ure
300
- #: ../includes/class-ure-lib.php:2194
301
- msgid "Unfiltered html"
302
- msgstr "Ungefiltertes Html"
303
-
304
- # @ ure
305
- #: ../includes/class-ure-lib.php:2195
306
- msgid "Edit posts"
307
- msgstr "Artikel verwalten"
308
-
309
- # @ ure
310
- #: ../includes/class-ure-lib.php:2196
311
- msgid "Edit others posts"
312
- msgstr "Artikel anderer Benutzer verwalten"
313
-
314
- # @ ure
315
- #: ../includes/class-ure-lib.php:2197
316
- msgid "Edit published posts"
317
- msgstr "Veröffentlichte Artikel bearbeiten"
318
-
319
- # @ ure
320
- #: ../includes/class-ure-lib.php:2198
321
- msgid "Publish posts"
322
- msgstr "Artikel veröffentlichen"
323
-
324
- # @ ure
325
- #: ../includes/class-ure-lib.php:2199
326
- msgid "Edit pages"
327
- msgstr "Seiten bearbeiten"
328
-
329
- # @ ure
330
- #: ../includes/class-ure-lib.php:2200
331
- msgid "Read"
332
- msgstr "Lesen"
333
-
334
- # @ ure
335
- #: ../includes/class-ure-lib.php:2201
336
- msgid "Level 10"
337
- msgstr ""
338
-
339
- # @ ure
340
- #: ../includes/class-ure-lib.php:2202
341
- msgid "Level 9"
342
- msgstr ""
343
-
344
- # @ ure
345
- #: ../includes/class-ure-lib.php:2203
346
- msgid "Level 8"
347
- msgstr ""
348
-
349
- # @ ure
350
- #: ../includes/class-ure-lib.php:2204
351
- msgid "Level 7"
352
- msgstr ""
353
-
354
- # @ ure
355
- #: ../includes/class-ure-lib.php:2205
356
- msgid "Level 6"
357
- msgstr ""
358
-
359
- # @ ure
360
- #: ../includes/class-ure-lib.php:2206
361
- msgid "Level 5"
362
- msgstr ""
363
-
364
- # @ ure
365
- #: ../includes/class-ure-lib.php:2207
366
- msgid "Level 4"
367
- msgstr ""
368
-
369
- # @ ure
370
- #: ../includes/class-ure-lib.php:2208
371
- msgid "Level 3"
372
- msgstr ""
373
-
374
- # @ ure
375
- #: ../includes/class-ure-lib.php:2209
376
- msgid "Level 2"
377
- msgstr ""
378
-
379
- # @ ure
380
- #: ../includes/class-ure-lib.php:2210
381
- msgid "Level 1"
382
- msgstr ""
383
-
384
- # @ ure
385
- #: ../includes/class-ure-lib.php:2211
386
- msgid "Level 0"
387
- msgstr ""
388
-
389
- # @ ure
390
- #: ../includes/class-ure-lib.php:2212
391
- msgid "Edit others pages"
392
- msgstr "Seiten anderer Benutzer bearbeiten"
393
-
394
- # @ ure
395
- #: ../includes/class-ure-lib.php:2213
396
- msgid "Edit published pages"
397
- msgstr "Veröffentlichte Seiten bearbeiten"
398
-
399
- # @ ure
400
- #: ../includes/class-ure-lib.php:2214
401
- msgid "Publish pages"
402
- msgstr "Seiten veröffentlichen"
403
-
404
- # @ ure
405
- #: ../includes/class-ure-lib.php:2215
406
- msgid "Delete pages"
407
- msgstr "Seiten löschen"
408
-
409
- # @ ure
410
- #: ../includes/class-ure-lib.php:2216
411
- msgid "Delete others pages"
412
- msgstr "Seiten anderer Benutzer löschen"
413
-
414
- # @ ure
415
- #: ../includes/class-ure-lib.php:2217
416
- msgid "Delete published pages"
417
- msgstr "Veröffentlichte Seiten löschen"
418
-
419
- # @ ure
420
- #: ../includes/class-ure-lib.php:2218
421
- msgid "Delete posts"
422
- msgstr "Artikel löschen"
423
-
424
- # @ ure
425
- #: ../includes/class-ure-lib.php:2219
426
- msgid "Delete others posts"
427
- msgstr "Artikel anderer Benutzer löschen"
428
-
429
- # @ ure
430
- #: ../includes/class-ure-lib.php:2220
431
- msgid "Delete published posts"
432
- msgstr "Veröffentlichte Artikel löschen"
433
-
434
- # @ ure
435
- #: ../includes/class-ure-lib.php:2221
436
- msgid "Delete private posts"
437
- msgstr "Private Artikel löschen"
438
-
439
- # @ ure
440
- #: ../includes/class-ure-lib.php:2222
441
- msgid "Edit private posts"
442
- msgstr "Private Artikel bearbeiten"
443
-
444
- # @ ure
445
- #: ../includes/class-ure-lib.php:2223
446
- msgid "Read private posts"
447
- msgstr "Private Artikel lesen"
448
-
449
- # @ ure
450
- #: ../includes/class-ure-lib.php:2224
451
- msgid "Delete private pages"
452
- msgstr "Private Artikel löschen"
453
-
454
- # @ ure
455
- #: ../includes/class-ure-lib.php:2225
456
- msgid "Edit private pages"
457
- msgstr "Private Seiten bearbeiten"
458
-
459
- # @ ure
460
- #: ../includes/class-ure-lib.php:2226
461
- msgid "Read private pages"
462
- msgstr "Private Seiten lesen"
463
-
464
- # @ ure
465
- #: ../includes/class-ure-lib.php:2227
466
- msgid "Delete users"
467
- msgstr "Benutzer löschen"
468
-
469
- # @ ure
470
- #: ../includes/class-ure-lib.php:2228
471
- msgid "Create users"
472
- msgstr "Benutzer erstellen"
473
-
474
- # @ ure
475
- #: ../includes/class-ure-lib.php:2229
476
- msgid "Unfiltered upload"
477
- msgstr "Ungefiltertes Hochladen"
478
-
479
- # @ ure
480
- #: ../includes/class-ure-lib.php:2230
481
- msgid "Edit dashboard"
482
- msgstr "Dashboard bearbeiten"
483
-
484
- # @ ure
485
- #: ../includes/class-ure-lib.php:2231
486
- msgid "Update plugins"
487
- msgstr "Plugins aktualisieren"
488
-
489
- # @ ure
490
- #: ../includes/class-ure-lib.php:2232
491
- msgid "Delete plugins"
492
- msgstr "Plugins löschen"
493
-
494
- # @ ure
495
- #: ../includes/class-ure-lib.php:2233
496
- msgid "Install plugins"
497
- msgstr "Plugins installieren"
498
-
499
- # @ ure
500
- #: ../includes/class-ure-lib.php:2234
501
- msgid "Update themes"
502
- msgstr "Designs aktualisieren"
503
-
504
- # @ ure
505
- #: ../includes/class-ure-lib.php:2235
506
- msgid "Install themes"
507
- msgstr "Designs installieren"
508
-
509
- # @ ure
510
- #: ../includes/class-ure-lib.php:2236
511
- msgid "Update core"
512
- msgstr "Wordpress aktualisieren"
513
-
514
- # @ ure
515
- #: ../includes/class-ure-lib.php:2237
516
- msgid "List users"
517
- msgstr "Benutzer auflisten"
518
-
519
- # @ ure
520
- #: ../includes/class-ure-lib.php:2238
521
- msgid "Remove users"
522
- msgstr "Benutzer entfernen"
523
-
524
- # @ ure
525
- #: ../includes/class-ure-lib.php:2239
526
- msgid "Add users"
527
- msgstr "Benutzer hinzufügen"
528
-
529
- # @ ure
530
- #: ../includes/class-ure-lib.php:2240
531
- msgid "Promote users"
532
- msgstr "Benutzer vorschlagen"
533
-
534
- # @ ure
535
- #: ../includes/class-ure-lib.php:2241
536
- msgid "Edit theme options"
537
- msgstr "Design-Eigenschaften bearbeiten"
538
-
539
- # @ ure
540
- #: ../includes/class-ure-lib.php:2242
541
- msgid "Delete themes"
542
- msgstr "Designs löschen"
543
-
544
- # @ ure
545
- #: ../includes/class-ure-lib.php:2243
546
- msgid "Export"
547
- msgstr "Export"
548
-
549
- # @ ure
550
- #: ../includes/class-ure-lib.php:2366
551
- msgid "Error: Capability name must contain latin characters and digits only!"
552
- msgstr "Fehler: Der Name des Rechts darf nur Buchstaben und Ziffern enthalten!"
553
-
554
- # @ ure
555
- #: ../includes/class-ure-lib.php:2379
556
- #, php-format
557
- msgid "Capability %s is added successfully"
558
- msgstr "Recht %s wurde erfolgreich hinzugefügt"
559
-
560
- #: ../includes/class-ure-lib.php:2381
561
- #, php-format
562
- msgid "Capability %s exists already"
563
- msgstr "Recht %s existiert bereits"
564
-
565
- #: ../includes/class-ure-lib.php:2410
566
- #, php-format
567
- msgid "Error! You do not have permission to delete this capability: %s!"
568
- msgstr "Fehler: Sie haben nicht die Erlaubnis, dieses Recht zu löschen: %s!"
569
-
570
- # @ ure
571
- #: ../includes/class-ure-lib.php:2429
572
- #, fuzzy, php-format
573
- msgid "Capability %s was removed successfully"
574
- msgstr "Das Recht %s wurde erfogreich entfernt"
575
-
576
- #: ../includes/class-ure-lib.php:2497
577
- msgid "Version:"
578
- msgstr ""
579
-
580
- # @ ure
581
- #: ../includes/class-ure-lib.php:2498
582
- msgid "Author's website"
583
- msgstr "Webseite des Autors"
584
-
585
- # @ ure
586
- #: ../includes/class-ure-lib.php:2499
587
- msgid "Plugin webpage"
588
- msgstr "Webseite des Plugins"
589
-
590
- # @ ure
591
- #: ../includes/class-ure-lib.php:2500
592
- #, fuzzy
593
- msgid "Plugin download"
594
- msgstr "Webseite des Plugins"
595
-
596
- # @ ure
597
- #: ../includes/class-ure-lib.php:2501
598
- #: ../includes/class-user-role-editor.php:546
599
- msgid "Changelog"
600
- msgstr "Änderungen"
601
-
602
- # @ ure
603
- #: ../includes/class-ure-lib.php:2502
604
- msgid "FAQ"
605
- msgstr "FAQ"
606
-
607
- # @ ure
608
- #: ../includes/class-ure-lib.php:2575
609
- #, fuzzy
610
- msgid "Delete All Unused Roles"
611
- msgstr "Löschen der Benutzer-Rolle"
612
-
613
- # @ ure
614
- #: ../includes/class-ure-lib.php:2588
615
- msgid "None"
616
- msgstr "Nichts"
617
-
618
- #: ../includes/class-ure-lib.php:2632
619
- msgid "&mdash; No role for this site &mdash;"
620
- msgstr ""
621
-
622
- #: ../includes/class-ure-lib.php:2747
623
- #, php-format
624
- msgid "Denied: %s"
625
- msgstr ""
626
-
627
- # @ ure
628
- #: ../includes/ure-role-edit.php:17
629
- #, fuzzy
630
- msgid "Select Role and change its capabilities:"
631
- msgstr "Eine Rolle auswählen und ihre Rechte ändern"
632
-
633
- # @ ure
634
- #: ../includes/ure-role-edit.php:30 ../includes/ure-user-edit.php:54
635
- msgid "Show capabilities in human readable form"
636
- msgstr "Anzeige der Rechte in allgemeinverständlicher Form"
637
-
638
- #: ../includes/ure-role-edit.php:40 ../includes/class-ure-screen-help.php:21
639
- #: ../includes/settings-template.php:69 ../includes/ure-user-edit.php:64
640
- msgid "Show deprecated capabilities"
641
- msgstr "Zeige herabgesetzte Rechte"
642
-
643
- #: ../includes/ure-role-edit.php:44
644
- msgid "If checked, then apply action to ALL sites of this Network"
645
- msgstr "Fall aktiviert, wende die Aktion auf ALLE Webpräsenzen"
646
-
647
- #: ../includes/ure-role-edit.php:56
648
- msgid "Apply to All Sites"
649
- msgstr "Wende auf alle Webpräsenzen an"
650
-
651
- #: ../includes/ure-role-edit.php:63 ../includes/ure-user-edit.php:110
652
- msgid "Core capabilities:"
653
- msgstr "Rechte WordPress:"
654
-
655
- #: ../includes/ure-role-edit.php:65 ../includes/ure-user-edit.php:112
656
- msgid "Quick filter:"
657
- msgstr ""
658
-
659
- #: ../includes/ure-role-edit.php:83 ../includes/ure-user-edit.php:131
660
- #, fuzzy
661
- msgid "Custom capabilities:"
662
- msgstr "Rechte:"
663
-
664
- # @ ure
665
- #: ../includes/class-user-other-roles.php:82
666
- #: ../includes/class-user-other-roles.php:183
667
- #: ../includes/class-user-other-roles.php:243
668
- #, fuzzy
669
- msgid "Other Roles"
670
- msgstr "Löschen der Rolle"
671
-
672
- #: ../includes/class-user-other-roles.php:83
673
- msgid "Select additional roles for this user"
674
- msgstr ""
675
-
676
- #: ../includes/class-user-other-roles.php:162
677
- #: ../includes/class-user-role-editor.php:438
678
- msgid "Capabilities"
679
- msgstr "Rechte"
680
-
681
- # @ ure
682
- #: ../includes/class-user-other-roles.php:169
683
- #, fuzzy
684
- msgid "Edit"
685
- msgstr "Redakteur"
686
-
687
- # @ ure
688
- #: ../includes/class-user-other-roles.php:215
689
- #, fuzzy
690
- msgid "Additional Capabilities"
691
- msgstr "Füge neues Recht hinzu"
692
-
693
- # @ ure
694
- #: ../includes/class-ure-screen-help.php:12
695
- #: ../includes/class-ure-screen-help.php:41
696
- #: ../includes/class-ure-screen-help.php:60
697
- #: ../includes/class-ure-screen-help.php:79
698
- #, fuzzy
699
- msgid "User Role Editor Options page help"
700
- msgstr "User Role Editor"
701
-
702
- #: ../includes/class-ure-screen-help.php:15
703
- #: ../includes/settings-template.php:53
704
- msgid "Show Administrator role at User Role Editor"
705
- msgstr ""
706
-
707
- #: ../includes/class-ure-screen-help.php:16
708
- msgid ""
709
- "turn this option on in order to make the \"Administrator\" role available at "
710
- "the User Role Editor roles selection drop-down list. It is hidden by default "
711
- "for security reasons."
712
- msgstr ""
713
-
714
- # @ ure
715
- #: ../includes/class-ure-screen-help.php:18
716
- #: ../includes/settings-template.php:61
717
- #, fuzzy
718
- msgid "Show capabilities in the human readable form"
719
- msgstr "Anzeige der Rechte in allgemeinverständlicher Form"
720
-
721
- #: ../includes/class-ure-screen-help.php:19
722
- msgid ""
723
- "automatically converts capability names from the technical form for internal "
724
- "use like \"edit_others_posts\" to more user friendly form, e.g. \"Edit "
725
- "others posts\"."
726
- msgstr ""
727
-
728
- #: ../includes/class-ure-screen-help.php:22
729
- msgid ""
730
- "Capabilities like \"level_0\", \"level_1\" are deprecated and are not used "
731
- "by WordPress. They are left at the user roles for the compatibility purpose "
732
- "with the old themes and plugins code. Turning on this option will show those "
733
- "deprecated capabilities."
734
- msgstr ""
735
-
736
- #: ../includes/class-ure-screen-help.php:25
737
- #: ../includes/settings-template.php:77
738
- #, fuzzy
739
- msgid "Edit user capabilities"
740
- msgstr "Rechte:"
741
-
742
- #: ../includes/class-ure-screen-help.php:26
743
- msgid ""
744
- "If turned off - capabilities section of selected user is shown in readonly "
745
- "mode. Administrator can not assign capabilities to the user directly. He "
746
- "should make it using roles only."
747
- msgstr ""
748
-
749
- #: ../includes/class-ure-screen-help.php:45
750
- #: ../includes/settings-template.php:111
751
- msgid "Count users without role"
752
- msgstr ""
753
-
754
- #: ../includes/class-ure-screen-help.php:46
755
- msgid ""
756
- "Show at the \"Users\" page a quant of users without role. Module allows to "
757
- "assign all of them an empty role \"No rights\", in order to look on the "
758
- "users list with role \"No rights\" at the separate tab then."
759
- msgstr ""
760
-
761
- # @ ure
762
- #: ../includes/class-ure-screen-help.php:63
763
- #, fuzzy
764
- msgid "Other default roles for new registered user"
765
- msgstr "Standard-Rolle für neuen Benutzer"
766
-
767
- #: ../includes/class-ure-screen-help.php:64
768
- msgid ""
769
- "select roles below to assign them to the new user automatically as an "
770
- "addition to the primary role. Note for multisite environment: take into "
771
- "account that other default roles should exist at the site, in order to be "
772
- "assigned to the new registered users."
773
- msgstr ""
774
-
775
- #: ../includes/class-ure-screen-help.php:82
776
- msgid "Allow non super-admininstrators to create, edit and delete users"
777
- msgstr ""
778
-
779
- #: ../includes/class-ure-screen-help.php:83
780
- msgid ""
781
- "Super administrator only may create, edit and delete users under WordPress "
782
- "multi-site by default. Turn this option on in order to remove this "
783
- "limitation."
784
- msgstr ""
785
-
786
- #: ../includes/class-user-role-editor.php:233
787
- msgid "Change role for users without role"
788
- msgstr ""
789
-
790
- #: ../includes/class-user-role-editor.php:234
791
- msgid "No rights"
792
- msgstr ""
793
-
794
- #: ../includes/class-user-role-editor.php:235
795
- msgid "Provide new role"
796
- msgstr ""
797
-
798
- #: ../includes/class-user-role-editor.php:298
799
- #: ../includes/class-user-role-editor.php:300
800
- #, fuzzy
801
- msgid "You do not have permission to edit this user."
802
- msgstr "Fehler: Sie haben nicht die Erlaubnis, dieses Recht zu löschen: %s!"
803
-
804
- # @ ure
805
- #: ../includes/class-user-role-editor.php:535
806
- msgid "Settings"
807
- msgstr "Einstellungen"
808
-
809
- #: ../includes/class-user-role-editor.php:568
810
- #: ../includes/settings-template.php:21
811
- msgid "General"
812
- msgstr ""
813
-
814
- #: ../includes/class-user-role-editor.php:574
815
- #: ../includes/settings-template.php:26
816
- msgid "Additional Modules"
817
- msgstr ""
818
-
819
- # @ ure
820
- #: ../includes/class-user-role-editor.php:580
821
- #: ../includes/settings-template.php:30
822
- #, fuzzy
823
- msgid "Default Roles"
824
- msgstr "Löschen der Rolle"
825
-
826
- #: ../includes/class-user-role-editor.php:586
827
- #: ../includes/settings-template.php:34
828
- msgid "Multisite"
829
- msgstr ""
830
-
831
- # @ ure
832
- #: ../includes/class-user-role-editor.php:685
833
- #: ../includes/class-user-role-editor.php:703
834
- #: ../includes/class-user-role-editor.php:747
835
- #, fuzzy
836
- msgid "User Role Editor options are updated"
837
- msgstr "User Role Editor"
838
-
839
- # @ ure
840
- #: ../includes/class-user-role-editor.php:731
841
- #, fuzzy
842
- msgid "Default Roles are updated"
843
- msgstr "Standard-Rolle für neuen Benutzer"
844
-
845
- #: ../includes/class-user-role-editor.php:756
846
- msgid ""
847
- "You do not have sufficient permissions to manage options for User Role "
848
- "Editor."
849
- msgstr ""
850
-
851
- # @ ure
852
- #: ../includes/class-user-role-editor.php:885
853
- msgid "Select All"
854
- msgstr "Wähle alle aus"
855
-
856
- #: ../includes/class-user-role-editor.php:886
857
- msgid "Unselect All"
858
- msgstr "Wähle alle ab"
859
-
860
- #: ../includes/class-user-role-editor.php:887
861
- msgid "Reverse"
862
- msgstr "Rückgängig"
863
-
864
- # @ ure
865
- #: ../includes/class-user-role-editor.php:888
866
- msgid "Update"
867
- msgstr "Aktualisieren"
868
-
869
- # @ ure
870
- #: ../includes/class-user-role-editor.php:889
871
- #, fuzzy
872
- msgid "Please confirm permissions update"
873
- msgstr "Bestätigen Sie bitte, um fortzufahren"
874
-
875
- # @ ure
876
- #: ../includes/class-user-role-editor.php:890
877
- msgid "Add New Role"
878
- msgstr "Neue Rolle hinzufügen"
879
-
880
- # @ ure
881
- #: ../includes/class-user-role-editor.php:891
882
- #: ../includes/class-user-role-editor.php:896
883
- #, fuzzy
884
- msgid "Rename Role"
885
- msgstr "Löschen der Rolle"
886
-
887
- # @ ure
888
- #: ../includes/class-user-role-editor.php:892
889
- #, fuzzy
890
- msgid " Role name (ID) can not be empty!"
891
- msgstr "Name darf nicht leer sein!"
892
-
893
- # @ ure
894
- #: ../includes/class-user-role-editor.php:893
895
- #, fuzzy
896
- msgid ""
897
- " Role name (ID) must contain latin characters, digits, hyphens or underscore "
898
- "only!"
899
- msgstr "Fehler: Der Rollen-Name darf nur Buchstaben und Ziffern enthalten!"
900
-
901
- #: ../includes/class-user-role-editor.php:894
902
- msgid ""
903
- " WordPress does not support numeric Role name (ID). Add latin characters to "
904
- "it."
905
- msgstr ""
906
-
907
- # @ ure
908
- #: ../includes/class-user-role-editor.php:895
909
- #, fuzzy
910
- msgid "Add Role"
911
- msgstr "Neue Rolle hinzufügen"
912
-
913
- # @ ure
914
- #: ../includes/class-user-role-editor.php:897
915
- msgid "Delete Role"
916
- msgstr "Löschen der Rolle"
917
-
918
- # @ ure
919
- #: ../includes/class-user-role-editor.php:898
920
- msgid "Cancel"
921
- msgstr "Abbrechen"
922
-
923
- # @ ure
924
- #: ../includes/class-user-role-editor.php:899
925
- #, fuzzy
926
- msgid "Add Capability"
927
- msgstr "Füge neues Recht hinzu"
928
-
929
- #: ../includes/class-user-role-editor.php:900
930
- #: ../includes/class-user-role-editor.php:909
931
- #, fuzzy
932
- msgid "Delete Capability"
933
- msgstr "Entferne Recht"
934
-
935
- # @ ure
936
- #: ../includes/class-user-role-editor.php:901
937
- msgid "Reset"
938
- msgstr "Zurücksetzen"
939
-
940
- #: ../includes/class-user-role-editor.php:902
941
- msgid "DANGER! Resetting will restore default settings from WordPress Core."
942
- msgstr ""
943
-
944
- #: ../includes/class-user-role-editor.php:903
945
- msgid ""
946
- "If any plugins have changed capabilities in any way upon installation (such "
947
- "as S2Member, WooCommerce, and many more), those capabilities will be DELETED!"
948
- msgstr ""
949
-
950
- #: ../includes/class-user-role-editor.php:904
951
- msgid ""
952
- "For more information on how to undo changes and restore plugin capabilities "
953
- "go to"
954
- msgstr ""
955
-
956
- # @ ure
957
- #: ../includes/class-user-role-editor.php:906
958
- #, fuzzy
959
- msgid "Continue?"
960
- msgstr "Mitarbeiter"
961
-
962
- # @ ure
963
- #: ../includes/class-user-role-editor.php:907
964
- #, fuzzy
965
- msgid "Default Role"
966
- msgstr "Löschen der Rolle"
967
-
968
- # @ ure
969
- #: ../includes/class-user-role-editor.php:908
970
- #, fuzzy
971
- msgid "Set New Default Role"
972
- msgstr "Als Standard-Benutzer-Rolle setzen"
973
-
974
- #: ../includes/class-user-role-editor.php:910
975
- msgid ""
976
- "Warning! Be careful - removing critical capability could crash some plugin "
977
- "or other custom code"
978
- msgstr ""
979
- "Achtung! Seien Sie vorsichtig - das Löschen kritischer Rechte könnte Plugin- "
980
- "oder angepassten Code zerstören."
981
-
982
- # @ ure
983
- #: ../includes/class-user-role-editor.php:911
984
- #, fuzzy
985
- msgid " Capability name (ID) can not be empty!"
986
- msgstr "Name darf nicht leer sein!"
987
-
988
- # @ ure
989
- #: ../includes/class-user-role-editor.php:912
990
- #, fuzzy
991
- msgid ""
992
- " Capability name (ID) must contain latin characters, digits, hyphens or "
993
- "underscore only!"
994
- msgstr "Fehler: Der Name des Rechts darf nur Buchstaben und Ziffern enthalten!"
995
-
996
- # @ ure
997
- #: ../includes/settings-template.php:17
998
- #, fuzzy
999
- msgid "User Role Editor - Options"
1000
- msgstr "User Role Editor"
1001
-
1002
- #: ../includes/settings-template.php:39
1003
- msgid "About"
1004
- msgstr ""
1005
-
1006
- #: ../includes/settings-template.php:90 ../includes/settings-template.php:126
1007
- #: ../includes/settings-template.php:158 ../includes/settings-template.php:190
1008
- msgid "Save"
1009
- msgstr ""
1010
-
1011
- #: ../includes/settings-template.php:138
1012
- msgid "Primary default role: "
1013
- msgstr ""
1014
-
1015
- # @ ure
1016
- #: ../includes/settings-template.php:145
1017
- #, fuzzy
1018
- msgid "Other default roles for new registered user: "
1019
- msgstr "Standard-Rolle für neuen Benutzer"
1020
-
1021
- #: ../includes/settings-template.php:151
1022
- msgid ""
1023
- "Note for multisite environment: take into account that other default roles "
1024
- "should exist at the site, in order to be assigned to the new registered "
1025
- "users."
1026
- msgstr ""
1027
-
1028
- #: ../includes/settings-template.php:177
1029
- msgid "Allow non super administrators to create, edit, and delete users"
1030
- msgstr ""
1031
-
1032
- #: ../includes/ure-user-edit.php:32
1033
- msgid "Network Super Admin"
1034
- msgstr ""
1035
-
1036
- #: ../includes/ure-user-edit.php:35
1037
- msgid "Change capabilities for user"
1038
- msgstr "Ändere Rechte für Benutzer"
1039
-
1040
- #: ../includes/ure-user-edit.php:72
1041
- msgid "Primary Role:"
1042
- msgstr ""
1043
-
1044
- #: ../includes/ure-user-edit.php:82
1045
- msgid "bbPress Role:"
1046
- msgstr ""
1047
-
1048
- # @ ure
1049
- #: ../includes/ure-user-edit.php:92
1050
- #, fuzzy
1051
- msgid "Other Roles:"
1052
- msgstr "Löschen der Rolle"
1053
-
1054
- # @ ure
1055
- #, fuzzy
1056
- #~ msgid "User Role Editor requires PHP %s or newer."
1057
- #~ msgstr "User Role Editor benötigt PHP 5.0 oder aktueller"
1058
-
1059
- # @ ure
1060
- #~ msgid "Please update!"
1061
- #~ msgstr "Bitte aktualisieren!"
1062
-
1063
- #~ msgid "Only"
1064
- #~ msgstr "Nur"
1065
-
1066
- #~ msgid "is allowed to use"
1067
- #~ msgstr "ist gestattet zu benutzen"
1068
-
1069
- # @ ure
1070
- #, fuzzy
1071
- #~ msgid "User Role Editor requires WordPress %s or newer."
1072
- #~ msgstr "User Role Editor benötigt Wordpress 3.0 oder aktueller"
1073
-
1074
- # @ ure
1075
- #~ msgid "Backup record is created for the current role capabilities"
1076
- #~ msgstr "Sicherheitskopie der aktuellen Rollenbefugnisse wird erstellt"
1077
-
1078
- #~ msgid "User"
1079
- #~ msgstr "Benutzer"
1080
-
1081
- # @ ure
1082
- #~ msgid "About this Plugin:"
1083
- #~ msgstr "Über dieses Plugin:"
1084
-
1085
- # @ ure
1086
- #~ msgid "Database operation error. Check log file."
1087
- #~ msgstr "Datenbankfehler. Überprüfen Sie die Protokolldatei."
1088
-
1089
- # @ ure
1090
- #~ msgid ""
1091
- #~ "No backup data. It is created automatically before the first role data "
1092
- #~ "update."
1093
- #~ msgstr ""
1094
- #~ "Keine Sicherungskopie vorhanden. Sie wird automatisch vor der ersten "
1095
- #~ "Aktualisierung von Rollen-Daten erstellt."
1096
-
1097
- # @ ure
1098
- #~ msgid " Name must contain latin characters and digits only!"
1099
- #~ msgstr "Der Name darf nur Buchstaben und Ziffern enthalten!"
1100
-
1101
- # @ ure
1102
- #~ msgid "Change Default Role"
1103
- #~ msgstr "Ändern der Standard-Rolle"
1104
-
1105
- #~ msgid ""
1106
- #~ "Restore Roles from backup copy. Be careful, backup was created when you "
1107
- #~ "started URE 1st time. All changes you made after that will be lost"
1108
- #~ msgstr ""
1109
- #~ "Wiederherstellung der Rollen von der Sicherungskopie. Seien Sie "
1110
- #~ "vorsichtig, die Sicherung wurde bei Ihrer ersten Benutzung von URE "
1111
- #~ "erstellt. Alle Änderungen, die Sie danach vorgenommen haben, gehen "
1112
- #~ "verloren"
1113
-
1114
- # @ ure
1115
- #~ msgid "Role \"%s\" update: please confirm to continue"
1116
- #~ msgstr "Aktualisierung der Rolle \"%s\": Zum Fortfahren bitte bestätigen"
1117
-
1118
- # @ ure
1119
- #~ msgid "Save Changes"
1120
- #~ msgstr "Änderungen sichern"
1121
-
1122
- # @ ure
1123
- #~ msgid "Cancel not saved changes"
1124
- #~ msgstr "Ungesicherte Änderungen verwerfen"
1125
-
1126
- #~ msgid "Select All Capabilities"
1127
- #~ msgstr "Wähle alle Rechte"
1128
-
1129
- #~ msgid "Unselect All Capabilities"
1130
- #~ msgstr "Wähle alle Rechte ab"
1131
-
1132
- #~ msgid "Turn checked capabilities off and vise versa"
1133
- #~ msgstr "Schalte alle markierten Rechte ab und umgekehrt"
1134
-
1135
- # @ ure
1136
- #~ msgid "Restore Roles from backup copy"
1137
- #~ msgstr "Wiederherstellung der Rollen von der Sicherheitskopie"
1138
-
1139
- #~ msgid "Name: "
1140
- #~ msgstr "Name:"
1141
-
1142
- # @ ure
1143
- #~ msgid "Add"
1144
- #~ msgstr "Hinzufügen"
1145
-
1146
- # @ ure
1147
- #~ msgid "Add New User Role"
1148
- #~ msgstr "Neue Benutzer-Rolle hinzufügen"
1149
-
1150
- # @ ure
1151
- #~ msgid "Change"
1152
- #~ msgstr "Ändern"
1153
-
1154
- # @ ure
1155
- #~ msgid "Remove"
1156
- #~ msgstr "Entferne"
1157
-
1158
- # @ ure
1159
- #~ msgid "User \"%s\" update: please confirm to continue"
1160
- #~ msgstr "Benutzer \"%s\" Aktualisierung: Bitte bestätigen, um fortzufahren"
1161
-
1162
- # @ ure
1163
- #~ msgid "Role:"
1164
- #~ msgstr "Rolle:"
1165
-
1166
- #~ msgid "Add capabilities to this user:"
1167
- #~ msgstr "Füge Rechte für diesen Benutzer hinzu:"
1168
-
1169
- # @ ure
1170
- #~ msgid "Greetings"
1171
- #~ msgstr "Mitarbeiter:"
1172
-
1173
- # @ ure
1174
- #~ msgid "Greetings:"
1175
- #~ msgstr "Mitarbeiter:"
1176
-
1177
- # @ ure
1178
- #~ msgid "It's me, the author"
1179
- #~ msgstr "Der Autor"
1180
-
1181
- # @ ure
1182
- #~ msgid "For the help with Belorussian translation"
1183
- #~ msgstr "Für die Hilfe bei der Übersetzung ins Weißrussische"
1184
-
1185
- # @ ure
1186
- #~ msgid "For the help with Brasilian translation"
1187
- #~ msgstr "Für die Hilfe bei der Übersetzung ins Brasilianische"
1188
-
1189
- # @ ure
1190
- #, fuzzy
1191
- #~ msgid "For the help with Brasilian Portuguese translation"
1192
- #~ msgstr "Für die Hilfe bei der Übersetzung ins Brasilianische"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
lang/user-role-editor-es_ES.mo DELETED
Binary file
lang/user-role-editor-es_ES.po DELETED
@@ -1,927 +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: 2015-09-11 21:06+0100\n"
6
- "PO-Revision-Date: \n"
7
- "Last-Translator: Vladimir Garagulya <vladimir@shinephp.com>\n"
8
- "Language-Team: ShinePHP.com <vladimir@shinephp.com>\n"
9
- "Language: es_ES\n"
10
- "MIME-Version: 1.0\n"
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/class-ure-lib.php:247
20
- msgid "Error: wrong request"
21
- msgstr "Error: Petición inválida"
22
-
23
- #: ../includes/class-ure-lib.php:280 ../includes/class-ure-lib.php:291
24
- msgid "Role name (ID): "
25
- msgstr "Nombre del Rol (ID):"
26
-
27
- #: ../includes/class-ure-lib.php:282 ../includes/class-ure-lib.php:293
28
- msgid "Display Role Name: "
29
- msgstr "Mostrar nombre del Rol:"
30
-
31
- #: ../includes/class-ure-lib.php:284
32
- msgid "Make copy of: "
33
- msgstr "Hacer copia de:"
34
-
35
- #: ../includes/class-ure-lib.php:300
36
- msgid "Select Role:"
37
- msgstr "Seleccionar Rol:"
38
-
39
- #: ../includes/class-ure-lib.php:315
40
- msgid "Delete:"
41
- msgstr "Eliminar:"
42
-
43
- #: ../includes/class-ure-lib.php:322
44
- msgid "Capability name (ID): "
45
- msgstr "Nombre de la Capacidad (ID):"
46
-
47
- #: ../includes/class-ure-lib.php:339
48
- #: ../includes/class-user-role-editor.php:596
49
- #: ../includes/class-user-role-editor.php:625
50
- msgid "User Role Editor"
51
- msgstr "Editor de Roles"
52
-
53
- #: ../includes/class-ure-lib.php:436
54
- msgid "Error: "
55
- msgstr "Error:"
56
-
57
- #: ../includes/class-ure-lib.php:436
58
- msgid "Role"
59
- msgstr "Rol"
60
-
61
- #: ../includes/class-ure-lib.php:437
62
- msgid "does not exist"
63
- msgstr "no existe"
64
-
65
- #: ../includes/class-ure-lib.php:480
66
- msgid "Role is updated successfully"
67
- msgstr "El Rol fue exitosamente actualizado"
68
-
69
- #: ../includes/class-ure-lib.php:482
70
- msgid "Roles are updated for all network"
71
- msgstr "Roles actualizados en toda la Red"
72
-
73
- #: ../includes/class-ure-lib.php:488
74
- msgid "Error occured during role(s) update"
75
- msgstr "Ocurrió un error durante la actualización del Rol"
76
-
77
- #: ../includes/class-ure-lib.php:495
78
- msgid "User capabilities are updated successfully"
79
- msgstr "Las Capacidades de Usuario fueron actualizadas exitosamente"
80
-
81
- #: ../includes/class-ure-lib.php:500
82
- msgid "Error occured during user update"
83
- msgstr "Ocurrió un error durante la actualización del Usuario"
84
-
85
- #: ../includes/class-ure-lib.php:558
86
- msgid "User Roles are restored to WordPress default values. "
87
- msgstr ""
88
- "Los Roles de Usuario fueron restaurados a los predeterminados de WordPress"
89
-
90
- #: ../includes/class-ure-lib.php:1436
91
- msgid "read about"
92
- msgstr ""
93
-
94
- #: ../includes/class-ure-lib.php:1437
95
- #, fuzzy
96
- msgid "user capability"
97
- msgstr "Capacidades personalizadas:"
98
-
99
- #: ../includes/class-ure-lib.php:1438
100
- msgid "Help"
101
- msgstr "Ayuda"
102
-
103
- #: ../includes/class-ure-lib.php:1693 ../includes/class-ure-lib.php:1946
104
- #: ../includes/class-ure-lib.php:2062 ../includes/class-ure-lib.php:2110
105
- #: ../includes/class-ure-lib.php:2358 ../includes/class-ure-lib.php:2403
106
- #: ../includes/class-user-role-editor.php:828
107
- msgid "Insufficient permissions to work with User Role Editor"
108
- msgstr "Permisos insuficientes para trabajar con el Editor de Roles"
109
-
110
- #: ../includes/class-ure-lib.php:1909
111
- msgid "Error is occur. Please check the log file."
112
- msgstr "Un error ha ocurrido. Por favor revisa el archivo de registro."
113
-
114
- #: ../includes/class-ure-lib.php:1955 ../includes/class-ure-lib.php:2022
115
- msgid ""
116
- "Error: Role ID must contain latin characters, digits, hyphens or underscore "
117
- "only!"
118
- msgstr ""
119
- "Error: ¡La ID del Rol sólo debe contener caracteres alfanuméricos, guiones "
120
- "altos o bajos!"
121
-
122
- #: ../includes/class-ure-lib.php:1959 ../includes/class-ure-lib.php:2026
123
- msgid ""
124
- "Error: WordPress does not support numeric Role name (ID). Add latin "
125
- "characters to it."
126
- msgstr ""
127
-
128
- #: ../includes/class-ure-lib.php:1974
129
- #, php-format
130
- msgid "Role %s exists already"
131
- msgstr "El Rol %s ya existe"
132
-
133
- #: ../includes/class-ure-lib.php:1989
134
- msgid "Error is encountered during new role create operation"
135
- msgstr "Un error fue encontrado durante la creación del nuevo Rol"
136
-
137
- #: ../includes/class-ure-lib.php:1991
138
- #, php-format
139
- msgid "Role %s is created successfully"
140
- msgstr "El Rol %s fue creado exitosamente"
141
-
142
- #: ../includes/class-ure-lib.php:2015
143
- msgid "Error: Role ID is empty!"
144
- msgstr ""
145
-
146
- #: ../includes/class-ure-lib.php:2033
147
- msgid "Error: Empty role display name is not allowed."
148
- msgstr ""
149
-
150
- #: ../includes/class-ure-lib.php:2040
151
- #, fuzzy, php-format
152
- msgid "Role %s does not exists"
153
- msgstr "no existe"
154
-
155
- #: ../includes/class-ure-lib.php:2048
156
- #, fuzzy, php-format
157
- msgid "Role %s is renamed to %s successfully"
158
- msgstr "El Rol %s fue creado exitosamente"
159
-
160
- #: ../includes/class-ure-lib.php:2121
161
- msgid "Error encountered during role delete operation"
162
- msgstr "Un error fue encontrado durante la eliminación del Rol"
163
-
164
- #: ../includes/class-ure-lib.php:2123
165
- msgid "Unused roles are deleted successfully"
166
- msgstr ""
167
-
168
- #: ../includes/class-ure-lib.php:2125
169
- #, php-format
170
- msgid "Role %s is deleted successfully"
171
- msgstr "El Rol %s fue eliminado exitosamente"
172
-
173
- #: ../includes/class-ure-lib.php:2153
174
- msgid "Error encountered during default role change operation"
175
- msgstr "Un error fue encontrado durante el cambio del Rol predeterminado"
176
-
177
- #: ../includes/class-ure-lib.php:2156
178
- #, php-format
179
- msgid "Default role for new users is set to %s successfully"
180
- msgstr "El Rol predeterminado para nuevos usuarios ha sido establecido a %s"
181
-
182
- #: ../includes/class-ure-lib.php:2159
183
- msgid "Can not set Administrator role as a default one"
184
- msgstr ""
185
-
186
- #: ../includes/class-ure-lib.php:2161
187
- #, fuzzy
188
- msgid "This role does not exist - "
189
- msgstr "no existe"
190
-
191
- #: ../includes/class-ure-lib.php:2177
192
- msgid "Editor"
193
- msgstr "Editor"
194
-
195
- #: ../includes/class-ure-lib.php:2178
196
- msgid "Author"
197
- msgstr "Autor"
198
-
199
- #: ../includes/class-ure-lib.php:2179
200
- msgid "Contributor"
201
- msgstr "Contribuyente"
202
-
203
- #: ../includes/class-ure-lib.php:2180
204
- msgid "Subscriber"
205
- msgstr "Suscriptor"
206
-
207
- #: ../includes/class-ure-lib.php:2182
208
- msgid "Switch themes"
209
- msgstr "Cambiar temas (plantillas)"
210
-
211
- #: ../includes/class-ure-lib.php:2183
212
- msgid "Edit themes"
213
- msgstr "Editar temas (plantillas)"
214
-
215
- #: ../includes/class-ure-lib.php:2184
216
- msgid "Activate plugins"
217
- msgstr "Activar plugins"
218
-
219
- #: ../includes/class-ure-lib.php:2185
220
- msgid "Edit plugins"
221
- msgstr "Editar plugins"
222
-
223
- #: ../includes/class-ure-lib.php:2186
224
- msgid "Edit users"
225
- msgstr "Editar usuarios"
226
-
227
- #: ../includes/class-ure-lib.php:2187
228
- msgid "Edit files"
229
- msgstr "Editar archivos"
230
-
231
- #: ../includes/class-ure-lib.php:2188
232
- msgid "Manage options"
233
- msgstr "Administrar opciones"
234
-
235
- #: ../includes/class-ure-lib.php:2189
236
- msgid "Moderate comments"
237
- msgstr "Moderar comentarios"
238
-
239
- #: ../includes/class-ure-lib.php:2190
240
- msgid "Manage categories"
241
- msgstr "Administrar categorías"
242
-
243
- #: ../includes/class-ure-lib.php:2191
244
- msgid "Manage links"
245
- msgstr "Administrar enlaces"
246
-
247
- #: ../includes/class-ure-lib.php:2192
248
- msgid "Upload files"
249
- msgstr "Subir archivos"
250
-
251
- #: ../includes/class-ure-lib.php:2193
252
- msgid "Import"
253
- msgstr "Importar"
254
-
255
- #: ../includes/class-ure-lib.php:2194
256
- msgid "Unfiltered html"
257
- msgstr "HTML sin filtrar"
258
-
259
- #: ../includes/class-ure-lib.php:2195
260
- msgid "Edit posts"
261
- msgstr "Editar entradas"
262
-
263
- #: ../includes/class-ure-lib.php:2196
264
- msgid "Edit others posts"
265
- msgstr "Editar entradas ajenas"
266
-
267
- #: ../includes/class-ure-lib.php:2197
268
- msgid "Edit published posts"
269
- msgstr "Editar entradas publicadas"
270
-
271
- #: ../includes/class-ure-lib.php:2198
272
- msgid "Publish posts"
273
- msgstr "Publicar entradas"
274
-
275
- #: ../includes/class-ure-lib.php:2199
276
- msgid "Edit pages"
277
- msgstr "Editar páginas"
278
-
279
- #: ../includes/class-ure-lib.php:2200
280
- msgid "Read"
281
- msgstr "Leer"
282
-
283
- #: ../includes/class-ure-lib.php:2201
284
- msgid "Level 10"
285
- msgstr "Nivel 10"
286
-
287
- #: ../includes/class-ure-lib.php:2202
288
- msgid "Level 9"
289
- msgstr "Nivel 9"
290
-
291
- #: ../includes/class-ure-lib.php:2203
292
- msgid "Level 8"
293
- msgstr "Nivel 8"
294
-
295
- #: ../includes/class-ure-lib.php:2204
296
- msgid "Level 7"
297
- msgstr "Nivel 7"
298
-
299
- #: ../includes/class-ure-lib.php:2205
300
- msgid "Level 6"
301
- msgstr "Nivel 6"
302
-
303
- #: ../includes/class-ure-lib.php:2206
304
- msgid "Level 5"
305
- msgstr "Nivel 5"
306
-
307
- #: ../includes/class-ure-lib.php:2207
308
- msgid "Level 4"
309
- msgstr "Nivel 4"
310
-
311
- #: ../includes/class-ure-lib.php:2208
312
- msgid "Level 3"
313
- msgstr "Nivel 3"
314
-
315
- #: ../includes/class-ure-lib.php:2209
316
- msgid "Level 2"
317
- msgstr "Nivel 2"
318
-
319
- #: ../includes/class-ure-lib.php:2210
320
- msgid "Level 1"
321
- msgstr "Nivel 1"
322
-
323
- #: ../includes/class-ure-lib.php:2211
324
- msgid "Level 0"
325
- msgstr "Nivel 0"
326
-
327
- #: ../includes/class-ure-lib.php:2212
328
- msgid "Edit others pages"
329
- msgstr "Editar páginas ajenas"
330
-
331
- #: ../includes/class-ure-lib.php:2213
332
- msgid "Edit published pages"
333
- msgstr "Editar páginas publicadas"
334
-
335
- #: ../includes/class-ure-lib.php:2214
336
- msgid "Publish pages"
337
- msgstr "Publicar páginas"
338
-
339
- #: ../includes/class-ure-lib.php:2215
340
- msgid "Delete pages"
341
- msgstr "Eliminar páginas"
342
-
343
- #: ../includes/class-ure-lib.php:2216
344
- msgid "Delete others pages"
345
- msgstr "Eliminar páginas ajenas"
346
-
347
- #: ../includes/class-ure-lib.php:2217
348
- msgid "Delete published pages"
349
- msgstr "Eliminar páginas publicadas"
350
-
351
- #: ../includes/class-ure-lib.php:2218
352
- msgid "Delete posts"
353
- msgstr "Eliminar entradas"
354
-
355
- #: ../includes/class-ure-lib.php:2219
356
- msgid "Delete others posts"
357
- msgstr "Eliminar entradas ajenas"
358
-
359
- #: ../includes/class-ure-lib.php:2220
360
- msgid "Delete published posts"
361
- msgstr "Eliminar entradas publicadas"
362
-
363
- #: ../includes/class-ure-lib.php:2221
364
- msgid "Delete private posts"
365
- msgstr "Eliminar entradas privadas"
366
-
367
- #: ../includes/class-ure-lib.php:2222
368
- msgid "Edit private posts"
369
- msgstr "Editar entradas privadas"
370
-
371
- #: ../includes/class-ure-lib.php:2223
372
- msgid "Read private posts"
373
- msgstr "Leer entradas privadas"
374
-
375
- #: ../includes/class-ure-lib.php:2224
376
- msgid "Delete private pages"
377
- msgstr "Eliminar páginas privadas"
378
-
379
- #: ../includes/class-ure-lib.php:2225
380
- msgid "Edit private pages"
381
- msgstr "Editar páginas privadas"
382
-
383
- #: ../includes/class-ure-lib.php:2226
384
- msgid "Read private pages"
385
- msgstr "Leer páginas privadas"
386
-
387
- #: ../includes/class-ure-lib.php:2227
388
- msgid "Delete users"
389
- msgstr "Eliminar usuarios"
390
-
391
- #: ../includes/class-ure-lib.php:2228
392
- msgid "Create users"
393
- msgstr "Crear usuarios"
394
-
395
- #: ../includes/class-ure-lib.php:2229
396
- msgid "Unfiltered upload"
397
- msgstr "Subir sin filtrado"
398
-
399
- #: ../includes/class-ure-lib.php:2230
400
- msgid "Edit dashboard"
401
- msgstr "Editar escritorio"
402
-
403
- #: ../includes/class-ure-lib.php:2231
404
- msgid "Update plugins"
405
- msgstr "Actualizar plugins"
406
-
407
- #: ../includes/class-ure-lib.php:2232
408
- msgid "Delete plugins"
409
- msgstr "Eliminar plugins"
410
-
411
- #: ../includes/class-ure-lib.php:2233
412
- msgid "Install plugins"
413
- msgstr "Instalar plugins"
414
-
415
- #: ../includes/class-ure-lib.php:2234
416
- msgid "Update themes"
417
- msgstr "Actualizar temas (plantillas)"
418
-
419
- #: ../includes/class-ure-lib.php:2235
420
- msgid "Install themes"
421
- msgstr "Instalar temas (plantillas)"
422
-
423
- #: ../includes/class-ure-lib.php:2236
424
- msgid "Update core"
425
- msgstr "Actualizar núcleo"
426
-
427
- #: ../includes/class-ure-lib.php:2237
428
- msgid "List users"
429
- msgstr "Listar usuarios"
430
-
431
- #: ../includes/class-ure-lib.php:2238
432
- msgid "Remove users"
433
- msgstr "Eliminar usuarios"
434
-
435
- #: ../includes/class-ure-lib.php:2239
436
- msgid "Add users"
437
- msgstr "Agregar usuarios"
438
-
439
- #: ../includes/class-ure-lib.php:2240
440
- msgid "Promote users"
441
- msgstr "Promover usuarios"
442
-
443
- #: ../includes/class-ure-lib.php:2241
444
- msgid "Edit theme options"
445
- msgstr "Editar opciones del tema (plantilla)"
446
-
447
- #: ../includes/class-ure-lib.php:2242
448
- msgid "Delete themes"
449
- msgstr "Eliminar temas (plantillas)"
450
-
451
- #: ../includes/class-ure-lib.php:2243
452
- msgid "Export"
453
- msgstr "Exportar"
454
-
455
- #: ../includes/class-ure-lib.php:2366
456
- msgid "Error: Capability name must contain latin characters and digits only!"
457
- msgstr ""
458
- "Error: El nombre de la Capacidad sólo debe contener caracteres alfanuméricos!"
459
-
460
- #: ../includes/class-ure-lib.php:2379
461
- #, php-format
462
- msgid "Capability %s is added successfully"
463
- msgstr "La Capacidad %s fue agregada exitosamente"
464
-
465
- #: ../includes/class-ure-lib.php:2381
466
- #, php-format
467
- msgid "Capability %s exists already"
468
- msgstr "La Capacidad %s ya existe"
469
-
470
- #: ../includes/class-ure-lib.php:2410
471
- #, php-format
472
- msgid "Error! You do not have permission to delete this capability: %s!"
473
- msgstr ""
474
- "¡Error! No cuentas con suficientes permisos para eliminar esta Capacidad: %s!"
475
-
476
- #: ../includes/class-ure-lib.php:2429
477
- #, fuzzy, php-format
478
- msgid "Capability %s was removed successfully"
479
- msgstr "La Capacidad %s fue eliminada exitosamente"
480
-
481
- #: ../includes/class-ure-lib.php:2497
482
- msgid "Version:"
483
- msgstr ""
484
-
485
- #: ../includes/class-ure-lib.php:2498
486
- msgid "Author's website"
487
- msgstr "Sitio web del Autor"
488
-
489
- #: ../includes/class-ure-lib.php:2499
490
- msgid "Plugin webpage"
491
- msgstr "Página web del Plugin"
492
-
493
- #: ../includes/class-ure-lib.php:2500
494
- #, fuzzy
495
- msgid "Plugin download"
496
- msgstr "Página web del Plugin"
497
-
498
- #: ../includes/class-ure-lib.php:2501
499
- #: ../includes/class-user-role-editor.php:546
500
- msgid "Changelog"
501
- msgstr "Registro de cambios"
502
-
503
- #: ../includes/class-ure-lib.php:2502
504
- msgid "FAQ"
505
- msgstr "FAQ"
506
-
507
- #: ../includes/class-ure-lib.php:2575
508
- msgid "Delete All Unused Roles"
509
- msgstr ""
510
-
511
- #: ../includes/class-ure-lib.php:2588
512
- msgid "None"
513
- msgstr "Ninguno"
514
-
515
- #: ../includes/class-ure-lib.php:2632
516
- msgid "&mdash; No role for this site &mdash;"
517
- msgstr ""
518
-
519
- #: ../includes/class-ure-lib.php:2747
520
- #, php-format
521
- msgid "Denied: %s"
522
- msgstr ""
523
-
524
- #: ../includes/ure-role-edit.php:17
525
- #, fuzzy
526
- msgid "Select Role and change its capabilities:"
527
- msgstr "Selecciona un rol y modifica su lista de Capacidades"
528
-
529
- #: ../includes/ure-role-edit.php:30 ../includes/ure-user-edit.php:54
530
- #, fuzzy
531
- msgid "Show capabilities in human readable form"
532
- msgstr "Mostrar Capacidades de forma legible"
533
-
534
- #: ../includes/ure-role-edit.php:40 ../includes/class-ure-screen-help.php:21
535
- #: ../includes/settings-template.php:69 ../includes/ure-user-edit.php:64
536
- msgid "Show deprecated capabilities"
537
- msgstr "Mostrar Capacidades obsoletas"
538
-
539
- #: ../includes/ure-role-edit.php:44
540
- msgid "If checked, then apply action to ALL sites of this Network"
541
- msgstr "Si está marcado, se aplicará la acción a TODOS los sitios de la Red"
542
-
543
- #: ../includes/ure-role-edit.php:56
544
- msgid "Apply to All Sites"
545
- msgstr "Aplicar a todos los Sitios"
546
-
547
- #: ../includes/ure-role-edit.php:63 ../includes/ure-user-edit.php:110
548
- msgid "Core capabilities:"
549
- msgstr "Capacidades del núcleo del sistema:"
550
-
551
- #: ../includes/ure-role-edit.php:65 ../includes/ure-user-edit.php:112
552
- msgid "Quick filter:"
553
- msgstr "Filtro rápido:"
554
-
555
- #: ../includes/ure-role-edit.php:83 ../includes/ure-user-edit.php:131
556
- msgid "Custom capabilities:"
557
- msgstr "Capacidades personalizadas:"
558
-
559
- #: ../includes/class-user-other-roles.php:82
560
- #: ../includes/class-user-other-roles.php:183
561
- #: ../includes/class-user-other-roles.php:243
562
- msgid "Other Roles"
563
- msgstr "Otros Roles"
564
-
565
- #: ../includes/class-user-other-roles.php:83
566
- msgid "Select additional roles for this user"
567
- msgstr ""
568
-
569
- #: ../includes/class-user-other-roles.php:162
570
- #: ../includes/class-user-role-editor.php:438
571
- msgid "Capabilities"
572
- msgstr "Capacidades"
573
-
574
- #: ../includes/class-user-other-roles.php:169
575
- msgid "Edit"
576
- msgstr "Editar"
577
-
578
- #: ../includes/class-user-other-roles.php:215
579
- #, fuzzy
580
- msgid "Additional Capabilities"
581
- msgstr "Agregar Capacidad"
582
-
583
- #: ../includes/class-ure-screen-help.php:12
584
- #: ../includes/class-ure-screen-help.php:41
585
- #: ../includes/class-ure-screen-help.php:60
586
- #: ../includes/class-ure-screen-help.php:79
587
- #, fuzzy
588
- msgid "User Role Editor Options page help"
589
- msgstr "Editor de Roles"
590
-
591
- #: ../includes/class-ure-screen-help.php:15
592
- #: ../includes/settings-template.php:53
593
- msgid "Show Administrator role at User Role Editor"
594
- msgstr ""
595
-
596
- #: ../includes/class-ure-screen-help.php:16
597
- msgid ""
598
- "turn this option on in order to make the \"Administrator\" role available at "
599
- "the User Role Editor roles selection drop-down list. It is hidden by default "
600
- "for security reasons."
601
- msgstr ""
602
-
603
- #: ../includes/class-ure-screen-help.php:18
604
- #: ../includes/settings-template.php:61
605
- #, fuzzy
606
- msgid "Show capabilities in the human readable form"
607
- msgstr "Mostrar Capacidades de forma legible"
608
-
609
- #: ../includes/class-ure-screen-help.php:19
610
- msgid ""
611
- "automatically converts capability names from the technical form for internal "
612
- "use like \"edit_others_posts\" to more user friendly form, e.g. \"Edit "
613
- "others posts\"."
614
- msgstr ""
615
-
616
- #: ../includes/class-ure-screen-help.php:22
617
- msgid ""
618
- "Capabilities like \"level_0\", \"level_1\" are deprecated and are not used "
619
- "by WordPress. They are left at the user roles for the compatibility purpose "
620
- "with the old themes and plugins code. Turning on this option will show those "
621
- "deprecated capabilities."
622
- msgstr ""
623
-
624
- #: ../includes/class-ure-screen-help.php:25
625
- #: ../includes/settings-template.php:77
626
- #, fuzzy
627
- msgid "Edit user capabilities"
628
- msgstr "Capacidades personalizadas:"
629
-
630
- #: ../includes/class-ure-screen-help.php:26
631
- msgid ""
632
- "If turned off - capabilities section of selected user is shown in readonly "
633
- "mode. Administrator can not assign capabilities to the user directly. He "
634
- "should make it using roles only."
635
- msgstr ""
636
-
637
- #: ../includes/class-ure-screen-help.php:45
638
- #: ../includes/settings-template.php:111
639
- msgid "Count users without role"
640
- msgstr ""
641
-
642
- #: ../includes/class-ure-screen-help.php:46
643
- msgid ""
644
- "Show at the \"Users\" page a quant of users without role. Module allows to "
645
- "assign all of them an empty role \"No rights\", in order to look on the "
646
- "users list with role \"No rights\" at the separate tab then."
647
- msgstr ""
648
-
649
- #: ../includes/class-ure-screen-help.php:63
650
- msgid "Other default roles for new registered user"
651
- msgstr ""
652
-
653
- #: ../includes/class-ure-screen-help.php:64
654
- msgid ""
655
- "select roles below to assign them to the new user automatically as an "
656
- "addition to the primary role. Note for multisite environment: take into "
657
- "account that other default roles should exist at the site, in order to be "
658
- "assigned to the new registered users."
659
- msgstr ""
660
-
661
- #: ../includes/class-ure-screen-help.php:82
662
- msgid "Allow non super-admininstrators to create, edit and delete users"
663
- msgstr ""
664
-
665
- #: ../includes/class-ure-screen-help.php:83
666
- msgid ""
667
- "Super administrator only may create, edit and delete users under WordPress "
668
- "multi-site by default. Turn this option on in order to remove this "
669
- "limitation."
670
- msgstr ""
671
-
672
- #: ../includes/class-user-role-editor.php:233
673
- msgid "Change role for users without role"
674
- msgstr ""
675
-
676
- #: ../includes/class-user-role-editor.php:234
677
- msgid "No rights"
678
- msgstr ""
679
-
680
- #: ../includes/class-user-role-editor.php:235
681
- msgid "Provide new role"
682
- msgstr ""
683
-
684
- #: ../includes/class-user-role-editor.php:298
685
- #: ../includes/class-user-role-editor.php:300
686
- msgid "You do not have permission to edit this user."
687
- msgstr "No tienes los suficientes permisos para editar este usuario"
688
-
689
- #: ../includes/class-user-role-editor.php:535
690
- msgid "Settings"
691
- msgstr "Configuración"
692
-
693
- #: ../includes/class-user-role-editor.php:568
694
- #: ../includes/settings-template.php:21
695
- msgid "General"
696
- msgstr ""
697
-
698
- #: ../includes/class-user-role-editor.php:574
699
- #: ../includes/settings-template.php:26
700
- msgid "Additional Modules"
701
- msgstr ""
702
-
703
- #: ../includes/class-user-role-editor.php:580
704
- #: ../includes/settings-template.php:30
705
- #, fuzzy
706
- msgid "Default Roles"
707
- msgstr "Rol Predeterminado"
708
-
709
- #: ../includes/class-user-role-editor.php:586
710
- #: ../includes/settings-template.php:34
711
- msgid "Multisite"
712
- msgstr ""
713
-
714
- #: ../includes/class-user-role-editor.php:685
715
- #: ../includes/class-user-role-editor.php:703
716
- #: ../includes/class-user-role-editor.php:747
717
- msgid "User Role Editor options are updated"
718
- msgstr "Opciones actualizadas"
719
-
720
- #: ../includes/class-user-role-editor.php:731
721
- #, fuzzy
722
- msgid "Default Roles are updated"
723
- msgstr "Rol Predeterminado"
724
-
725
- #: ../includes/class-user-role-editor.php:756
726
- msgid ""
727
- "You do not have sufficient permissions to manage options for User Role "
728
- "Editor."
729
- msgstr "Permisos insuficientes para trabajar"
730
-
731
- #: ../includes/class-user-role-editor.php:885
732
- msgid "Select All"
733
- msgstr "Seleccionar todo"
734
-
735
- #: ../includes/class-user-role-editor.php:886
736
- msgid "Unselect All"
737
- msgstr "Deseleccionar todo"
738
-
739
- #: ../includes/class-user-role-editor.php:887
740
- msgid "Reverse"
741
- msgstr "Revertir"
742
-
743
- #: ../includes/class-user-role-editor.php:888
744
- msgid "Update"
745
- msgstr "Actualizar"
746
-
747
- #: ../includes/class-user-role-editor.php:889
748
- msgid "Please confirm permissions update"
749
- msgstr "Por favor confirma las actualizaciones de permisos"
750
-
751
- #: ../includes/class-user-role-editor.php:890
752
- msgid "Add New Role"
753
- msgstr "Agregar nuevo Rol"
754
-
755
- #: ../includes/class-user-role-editor.php:891
756
- #: ../includes/class-user-role-editor.php:896
757
- #, fuzzy
758
- msgid "Rename Role"
759
- msgstr "Eliminar Rol"
760
-
761
- #: ../includes/class-user-role-editor.php:892
762
- msgid " Role name (ID) can not be empty!"
763
- msgstr "¡El nombre del Rol (ID) no puede estar vacío!"
764
-
765
- #: ../includes/class-user-role-editor.php:893
766
- msgid ""
767
- " Role name (ID) must contain latin characters, digits, hyphens or underscore "
768
- "only!"
769
- msgstr ""
770
- "¡El nombre del Rol (ID) sólo debe contener caracteres alfanuméricos, guiones "
771
- "altos o bajos!"
772
-
773
- #: ../includes/class-user-role-editor.php:894
774
- msgid ""
775
- " WordPress does not support numeric Role name (ID). Add latin characters to "
776
- "it."
777
- msgstr ""
778
-
779
- #: ../includes/class-user-role-editor.php:895
780
- msgid "Add Role"
781
- msgstr "Agregar Rol"
782
-
783
- #: ../includes/class-user-role-editor.php:897
784
- msgid "Delete Role"
785
- msgstr "Eliminar Rol"
786
-
787
- #: ../includes/class-user-role-editor.php:898
788
- msgid "Cancel"
789
- msgstr "Cancelar"
790
-
791
- #: ../includes/class-user-role-editor.php:899
792
- msgid "Add Capability"
793
- msgstr "Agregar Capacidad"
794
-
795
- #: ../includes/class-user-role-editor.php:900
796
- #: ../includes/class-user-role-editor.php:909
797
- msgid "Delete Capability"
798
- msgstr "Eliminar Capacidades"
799
-
800
- #: ../includes/class-user-role-editor.php:901
801
- msgid "Reset"
802
- msgstr "Reiniciar"
803
-
804
- #: ../includes/class-user-role-editor.php:902
805
- msgid "DANGER! Resetting will restore default settings from WordPress Core."
806
- msgstr ""
807
-
808
- #: ../includes/class-user-role-editor.php:903
809
- msgid ""
810
- "If any plugins have changed capabilities in any way upon installation (such "
811
- "as S2Member, WooCommerce, and many more), those capabilities will be DELETED!"
812
- msgstr ""
813
-
814
- #: ../includes/class-user-role-editor.php:904
815
- msgid ""
816
- "For more information on how to undo changes and restore plugin capabilities "
817
- "go to"
818
- msgstr ""
819
-
820
- #: ../includes/class-user-role-editor.php:906
821
- msgid "Continue?"
822
- msgstr ""
823
-
824
- #: ../includes/class-user-role-editor.php:907
825
- msgid "Default Role"
826
- msgstr "Rol Predeterminado"
827
-
828
- #: ../includes/class-user-role-editor.php:908
829
- msgid "Set New Default Role"
830
- msgstr "Establecer nuevo Rol"
831
-
832
- #: ../includes/class-user-role-editor.php:910
833
- msgid ""
834
- "Warning! Be careful - removing critical capability could crash some plugin "
835
- "or other custom code"
836
- msgstr ""
837
- "¡Atención! Ten cuidado - Eliminar Capacidadess esenciales podría inhabilitar "
838
- "algún plugin o código personalizado"
839
-
840
- #: ../includes/class-user-role-editor.php:911
841
- msgid " Capability name (ID) can not be empty!"
842
- msgstr "¡El nombre de la Capacidad (ID) no puede estar vacío!"
843
-
844
- #: ../includes/class-user-role-editor.php:912
845
- msgid ""
846
- " Capability name (ID) must contain latin characters, digits, hyphens or "
847
- "underscore only!"
848
- msgstr ""
849
- "¡El nombre de la Capacidad (ID) sólo debe contener caracteres alfanuméricos, "
850
- "guiones altos o bajos!"
851
-
852
- #: ../includes/settings-template.php:17
853
- #, fuzzy
854
- msgid "User Role Editor - Options"
855
- msgstr "Editor de Roles"
856
-
857
- #: ../includes/settings-template.php:39
858
- msgid "About"
859
- msgstr ""
860
-
861
- #: ../includes/settings-template.php:90 ../includes/settings-template.php:126
862
- #: ../includes/settings-template.php:158 ../includes/settings-template.php:190
863
- msgid "Save"
864
- msgstr "Guardar"
865
-
866
- #: ../includes/settings-template.php:138
867
- #, fuzzy
868
- msgid "Primary default role: "
869
- msgstr "Rol Primario:"
870
-
871
- #: ../includes/settings-template.php:145
872
- msgid "Other default roles for new registered user: "
873
- msgstr ""
874
-
875
- #: ../includes/settings-template.php:151
876
- msgid ""
877
- "Note for multisite environment: take into account that other default roles "
878
- "should exist at the site, in order to be assigned to the new registered "
879
- "users."
880
- msgstr ""
881
-
882
- #: ../includes/settings-template.php:177
883
- msgid "Allow non super administrators to create, edit, and delete users"
884
- msgstr ""
885
-
886
- #: ../includes/ure-user-edit.php:32
887
- msgid "Network Super Admin"
888
- msgstr ""
889
-
890
- #: ../includes/ure-user-edit.php:35
891
- msgid "Change capabilities for user"
892
- msgstr "Cambiar Capacidades para el usuario"
893
-
894
- #: ../includes/ure-user-edit.php:72
895
- msgid "Primary Role:"
896
- msgstr "Rol Primario:"
897
-
898
- #: ../includes/ure-user-edit.php:82
899
- msgid "bbPress Role:"
900
- msgstr "Rol de bbPress:"
901
-
902
- #: ../includes/ure-user-edit.php:92
903
- msgid "Other Roles:"
904
- msgstr "Otros Roles:"
905
-
906
- #, fuzzy
907
- #~ msgid "select roles below"
908
- #~ msgstr "Deseleccionar todo"
909
-
910
- #~ msgid "About this Plugin:"
911
- #~ msgstr "Acerca de este Plugin:"
912
-
913
- #~ msgid ""
914
- #~ "Reset Roles to WordPress defaults. Be careful, all changes made by you or "
915
- #~ "plugins will be lost. Some plugins, e.g. S2Member, WooCommerce "
916
- #~ "reactivation could be needed. Continue?"
917
- #~ msgstr ""
918
- #~ "Reiniciar Roles a los predeterminados de WordPress. Ten cuidado, todos "
919
- #~ "los cambios que tú hayas realizado (o ejecutados por algún plugin) se "
920
- #~ "perderán. Algunos plugins como S2Member, WooCommerce podrían necesitar "
921
- #~ "una reactivación ¿Deseas continuar?"
922
-
923
- #~ msgid "Only"
924
- #~ msgstr "Solamente"
925
-
926
- #~ msgid "is allowed to use"
927
- #~ msgstr "está permitido usarlo"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
lang/user-role-editor-fa_IR.mo DELETED
Binary file
lang/user-role-editor-fa_IR.po DELETED
@@ -1,925 +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: 2015-09-11 21:06+0100\n"
6
- "PO-Revision-Date: \n"
7
- "Last-Translator: Vladimir Garagulya <vladimir@shinephp.com>\n"
8
- "Language-Team: Morteza Gholami <Morteza.Gholami@Yahoo.Com>\n"
9
- "Language: fa_IR\n"
10
- "MIME-Version: 1.0\n"
11
- "Content-Type: text/plain; charset=UTF-8\n"
12
- "Content-Transfer-Encoding: 8bit\n"
13
- "X-Poedit-SourceCharset: UTF-8\n"
14
- "X-Poedit-KeywordsList: __;_e;esc_html__;esc_html_e\n"
15
- "X-Poedit-Basepath: .\n"
16
- "X-Generator: Poedit 1.5.4\n"
17
- "Plural-Forms: nplurals=1; plural=0;\n"
18
- "X-Poedit-SearchPath-0: .\n"
19
- "X-Poedit-SearchPath-1: ..\n"
20
-
21
- #: ../includes/class-ure-lib.php:247
22
- msgid "Error: wrong request"
23
- msgstr "خطا: درخواست اشتباه"
24
-
25
- #: ../includes/class-ure-lib.php:280 ../includes/class-ure-lib.php:291
26
- msgid "Role name (ID): "
27
- msgstr "نام نقش (شناسه): "
28
-
29
- #: ../includes/class-ure-lib.php:282 ../includes/class-ure-lib.php:293
30
- msgid "Display Role Name: "
31
- msgstr "نام نمایشی نقش:"
32
-
33
- #: ../includes/class-ure-lib.php:284
34
- msgid "Make copy of: "
35
- msgstr "ایجاد رونوشت از: "
36
-
37
- #: ../includes/class-ure-lib.php:300
38
- msgid "Select Role:"
39
- msgstr "انتخاب نقش:"
40
-
41
- #: ../includes/class-ure-lib.php:315
42
- msgid "Delete:"
43
- msgstr "حذف:"
44
-
45
- #: ../includes/class-ure-lib.php:322
46
- msgid "Capability name (ID): "
47
- msgstr "نام قابلیت (شناسه): "
48
-
49
- #: ../includes/class-ure-lib.php:339
50
- #: ../includes/class-user-role-editor.php:596
51
- #: ../includes/class-user-role-editor.php:625
52
- msgid "User Role Editor"
53
- msgstr "ویرایش‌گر نقش کاربر"
54
-
55
- #: ../includes/class-ure-lib.php:436
56
- msgid "Error: "
57
- msgstr "خطا: "
58
-
59
- #: ../includes/class-ure-lib.php:436
60
- msgid "Role"
61
- msgstr "نقش"
62
-
63
- #: ../includes/class-ure-lib.php:437
64
- msgid "does not exist"
65
- msgstr "موجود نمی‌باشد"
66
-
67
- #: ../includes/class-ure-lib.php:480
68
- msgid "Role is updated successfully"
69
- msgstr "نقش با موفقیت بروز شد"
70
-
71
- #: ../includes/class-ure-lib.php:482
72
- msgid "Roles are updated for all network"
73
- msgstr "نقش‌ها برای تمامی شبکه بروز شد"
74
-
75
- #: ../includes/class-ure-lib.php:488
76
- msgid "Error occured during role(s) update"
77
- msgstr "خطایی در هنگام بروزسانی نقش(ها) رخ داد"
78
-
79
- #: ../includes/class-ure-lib.php:495
80
- msgid "User capabilities are updated successfully"
81
- msgstr "قابلیت‌های کاربر با موفقیت بروز شدند"
82
-
83
- #: ../includes/class-ure-lib.php:500
84
- msgid "Error occured during user update"
85
- msgstr "خطایی در هنگام بروزرسانی کاربر رخ داد"
86
-
87
- #: ../includes/class-ure-lib.php:558
88
- msgid "User Roles are restored to WordPress default values. "
89
- msgstr "نقش‌های کاربر به مقدار پیش‌فرض وردپرس ترمیم شد."
90
-
91
- #: ../includes/class-ure-lib.php:1436
92
- msgid "read about"
93
- msgstr ""
94
-
95
- #: ../includes/class-ure-lib.php:1437
96
- msgid "user capability"
97
- msgstr ""
98
-
99
- #: ../includes/class-ure-lib.php:1438
100
- msgid "Help"
101
- msgstr "راهنما"
102
-
103
- #: ../includes/class-ure-lib.php:1693 ../includes/class-ure-lib.php:1946
104
- #: ../includes/class-ure-lib.php:2062 ../includes/class-ure-lib.php:2110
105
- #: ../includes/class-ure-lib.php:2358 ../includes/class-ure-lib.php:2403
106
- #: ../includes/class-user-role-editor.php:828
107
- msgid "Insufficient permissions to work with User Role Editor"
108
- msgstr "مجوز ناکافی برای کار با ویرایش‌گر نقش کاربر"
109
-
110
- #: ../includes/class-ure-lib.php:1909
111
- msgid "Error is occur. Please check the log file."
112
- msgstr "خطایی رخ داده است. لطفا فایل گزارش را چک کنید."
113
-
114
- #: ../includes/class-ure-lib.php:1955 ../includes/class-ure-lib.php:2022
115
- msgid ""
116
- "Error: Role ID must contain latin characters, digits, hyphens or underscore "
117
- "only!"
118
- msgstr ""
119
- "خطا: شناسه‌ی نقش باید فقط شامل حروف لاتین، اعداد، خط فاصله یا زیرخط باشد!"
120
-
121
- #: ../includes/class-ure-lib.php:1959 ../includes/class-ure-lib.php:2026
122
- msgid ""
123
- "Error: WordPress does not support numeric Role name (ID). Add latin "
124
- "characters to it."
125
- msgstr ""
126
- "خطا: وردپرس از نام نقش (شناسه) عددی پشتیبانی نمی‌کند. حروف لاتین به آن اضافه "
127
- "کنید."
128
-
129
- #: ../includes/class-ure-lib.php:1974
130
- #, php-format
131
- msgid "Role %s exists already"
132
- msgstr "نقش %s از پیش موجود است"
133
-
134
- #: ../includes/class-ure-lib.php:1989
135
- msgid "Error is encountered during new role create operation"
136
- msgstr "با خطایی در هنگام عملیات ساخت نقش جدید روبرو شدیم"
137
-
138
- #: ../includes/class-ure-lib.php:1991
139
- #, php-format
140
- msgid "Role %s is created successfully"
141
- msgstr "نقش %s با موفقیت ایجاد شد"
142
-
143
- #: ../includes/class-ure-lib.php:2015
144
- msgid "Error: Role ID is empty!"
145
- msgstr "خطا: شناسه‌ی نقش خالی است!"
146
-
147
- #: ../includes/class-ure-lib.php:2033
148
- msgid "Error: Empty role display name is not allowed."
149
- msgstr "خطا: خالی بودن نام نمایشی نقش مجاز نیست."
150
-
151
- #: ../includes/class-ure-lib.php:2040
152
- #, php-format
153
- msgid "Role %s does not exists"
154
- msgstr "نقش %s موجود نیست"
155
-
156
- #: ../includes/class-ure-lib.php:2048
157
- #, php-format
158
- msgid "Role %s is renamed to %s successfully"
159
- msgstr "نقش %s با موفقیت به %s تغییرنام داده شد"
160
-
161
- #: ../includes/class-ure-lib.php:2121
162
- msgid "Error encountered during role delete operation"
163
- msgstr "با خطایی در هنگام عملیات حذف نقش روبرو شدیم"
164
-
165
- #: ../includes/class-ure-lib.php:2123
166
- msgid "Unused roles are deleted successfully"
167
- msgstr "نقش‌های استفاده نشده با موفقیت حذف شدند"
168
-
169
- #: ../includes/class-ure-lib.php:2125
170
- #, php-format
171
- msgid "Role %s is deleted successfully"
172
- msgstr "نقش %s با موفقیت حذف شد"
173
-
174
- #: ../includes/class-ure-lib.php:2153
175
- msgid "Error encountered during default role change operation"
176
- msgstr "با خطایی در هنگام عملیات تغییر نقش پیش‌فرض روبرو شدیم"
177
-
178
- #: ../includes/class-ure-lib.php:2156
179
- #, php-format
180
- msgid "Default role for new users is set to %s successfully"
181
- msgstr "نقش پیش‌فرض برای کاربران جدید با موفقیت روی %s تنظیم شد"
182
-
183
- #: ../includes/class-ure-lib.php:2159
184
- #, fuzzy
185
- msgid "Can not set Administrator role as a default one"
186
- msgstr "نمایش نقش مدیر در ویرایش‌گر نقش کاربر"
187
-
188
- #: ../includes/class-ure-lib.php:2161
189
- #, fuzzy
190
- msgid "This role does not exist - "
191
- msgstr "نقش %s موجود نیست"
192
-
193
- #: ../includes/class-ure-lib.php:2177
194
- msgid "Editor"
195
- msgstr "ویرایش‌گر"
196
-
197
- #: ../includes/class-ure-lib.php:2178
198
- msgid "Author"
199
- msgstr "نویسنده"
200
-
201
- #: ../includes/class-ure-lib.php:2179
202
- msgid "Contributor"
203
- msgstr "مشارکت‌کننده"
204
-
205
- #: ../includes/class-ure-lib.php:2180
206
- msgid "Subscriber"
207
- msgstr "مشترک"
208
-
209
- #: ../includes/class-ure-lib.php:2182
210
- msgid "Switch themes"
211
- msgstr "تغییر پوسته‌ها"
212
-
213
- #: ../includes/class-ure-lib.php:2183
214
- msgid "Edit themes"
215
- msgstr "ویرایش پوسته‌ها"
216
-
217
- #: ../includes/class-ure-lib.php:2184
218
- msgid "Activate plugins"
219
- msgstr "فعال‌سازی افزونه‌ها"
220
-
221
- #: ../includes/class-ure-lib.php:2185
222
- msgid "Edit plugins"
223
- msgstr "ویرایش افزونه‌ها"
224
-
225
- #: ../includes/class-ure-lib.php:2186
226
- msgid "Edit users"
227
- msgstr "ویرایش کاربران"
228
-
229
- #: ../includes/class-ure-lib.php:2187
230
- msgid "Edit files"
231
- msgstr "ویرایش فایل‌ها"
232
-
233
- #: ../includes/class-ure-lib.php:2188
234
- msgid "Manage options"
235
- msgstr "مدیریت تنظیمات"
236
-
237
- #: ../includes/class-ure-lib.php:2189
238
- msgid "Moderate comments"
239
- msgstr "مدیریت دیدگاه‌ها"
240
-
241
- #: ../includes/class-ure-lib.php:2190
242
- msgid "Manage categories"
243
- msgstr "مدیریت دسته‌ها"
244
-
245
- #: ../includes/class-ure-lib.php:2191
246
- msgid "Manage links"
247
- msgstr "مدیریت پیوندها"
248
-
249
- #: ../includes/class-ure-lib.php:2192
250
- msgid "Upload files"
251
- msgstr "بارگذاری فایل‌ها"
252
-
253
- #: ../includes/class-ure-lib.php:2193
254
- msgid "Import"
255
- msgstr "درون‌ریزی"
256
-
257
- #: ../includes/class-ure-lib.php:2194
258
- msgid "Unfiltered html"
259
- msgstr "اچ‌تی‌ام‌ال فیلتر‌نشده"
260
-
261
- #: ../includes/class-ure-lib.php:2195
262
- msgid "Edit posts"
263
- msgstr "ویرایش نوشته‌ها"
264
-
265
- #: ../includes/class-ure-lib.php:2196
266
- msgid "Edit others posts"
267
- msgstr "ویرایش نوشته‌ی دیگران"
268
-
269
- #: ../includes/class-ure-lib.php:2197
270
- msgid "Edit published posts"
271
- msgstr "ویرایش نوشته‌های منتشر‌شده"
272
-
273
- #: ../includes/class-ure-lib.php:2198
274
- msgid "Publish posts"
275
- msgstr "انتشار نوشته‌ها"
276
-
277
- #: ../includes/class-ure-lib.php:2199
278
- msgid "Edit pages"
279
- msgstr "ویرایش صفحات"
280
-
281
- #: ../includes/class-ure-lib.php:2200
282
- msgid "Read"
283
- msgstr "خواندن"
284
-
285
- #: ../includes/class-ure-lib.php:2201
286
- msgid "Level 10"
287
- msgstr "سطح ۱۰"
288
-
289
- #: ../includes/class-ure-lib.php:2202
290
- msgid "Level 9"
291
- msgstr "سطح ۹"
292
-
293
- #: ../includes/class-ure-lib.php:2203
294
- msgid "Level 8"
295
- msgstr "سطح ۸"
296
-
297
- #: ../includes/class-ure-lib.php:2204
298
- msgid "Level 7"
299
- msgstr "سطح ۷"
300
-
301
- #: ../includes/class-ure-lib.php:2205
302
- msgid "Level 6"
303
- msgstr "سطح ۶"
304
-
305
- #: ../includes/class-ure-lib.php:2206
306
- msgid "Level 5"
307
- msgstr "سطح ۵"
308
-
309
- #: ../includes/class-ure-lib.php:2207
310
- msgid "Level 4"
311
- msgstr "سطح ۴"
312
-
313
- #: ../includes/class-ure-lib.php:2208
314
- msgid "Level 3"
315
- msgstr "سطح ۳"
316
-
317
- #: ../includes/class-ure-lib.php:2209
318
- msgid "Level 2"
319
- msgstr "سطح ۲"
320
-
321
- #: ../includes/class-ure-lib.php:2210
322
- msgid "Level 1"
323
- msgstr "سطح ۱"
324
-
325
- #: ../includes/class-ure-lib.php:2211
326
- msgid "Level 0"
327
- msgstr "سطح ۰"
328
-
329
- #: ../includes/class-ure-lib.php:2212
330
- msgid "Edit others pages"
331
- msgstr "ویرایش برگه‌های دیگران"
332
-
333
- #: ../includes/class-ure-lib.php:2213
334
- msgid "Edit published pages"
335
- msgstr "ویرایش برگه‌های منتشر‌شده"
336
-
337
- #: ../includes/class-ure-lib.php:2214
338
- msgid "Publish pages"
339
- msgstr "انتشار برگه‌ها"
340
-
341
- #: ../includes/class-ure-lib.php:2215
342
- msgid "Delete pages"
343
- msgstr "حذف برگه‌ها"
344
-
345
- #: ../includes/class-ure-lib.php:2216
346
- msgid "Delete others pages"
347
- msgstr "حذف برگه‌های دیگران"
348
-
349
- #: ../includes/class-ure-lib.php:2217
350
- msgid "Delete published pages"
351
- msgstr "حذف برگه‌های منتشر‌شده"
352
-
353
- #: ../includes/class-ure-lib.php:2218
354
- msgid "Delete posts"
355
- msgstr "حذف برگه‌ها"
356
-
357
- #: ../includes/class-ure-lib.php:2219
358
- msgid "Delete others posts"
359
- msgstr "حذف نوشته‌های دیگران"
360
-
361
- #: ../includes/class-ure-lib.php:2220
362
- msgid "Delete published posts"
363
- msgstr "حذف نوشته‌های منتشر‌شده"
364
-
365
- #: ../includes/class-ure-lib.php:2221
366
- msgid "Delete private posts"
367
- msgstr "حذف نوشته‌های خصوصی"
368
-
369
- #: ../includes/class-ure-lib.php:2222
370
- msgid "Edit private posts"
371
- msgstr "ویرایش نوشته‌های خصوصی"
372
-
373
- #: ../includes/class-ure-lib.php:2223
374
- msgid "Read private posts"
375
- msgstr "خواندن نوشته‌های خصوصی"
376
-
377
- #: ../includes/class-ure-lib.php:2224
378
- msgid "Delete private pages"
379
- msgstr "حذف برگه‌های خصوصی"
380
-
381
- #: ../includes/class-ure-lib.php:2225
382
- msgid "Edit private pages"
383
- msgstr "ویرایش برگه‌های خصوصی"
384
-
385
- #: ../includes/class-ure-lib.php:2226
386
- msgid "Read private pages"
387
- msgstr "خواندن برگه‌های خصوصی"
388
-
389
- #: ../includes/class-ure-lib.php:2227
390
- msgid "Delete users"
391
- msgstr "حذف کاربران"
392
-
393
- #: ../includes/class-ure-lib.php:2228
394
- msgid "Create users"
395
- msgstr "ایجاد کاربران"
396
-
397
- #: ../includes/class-ure-lib.php:2229
398
- msgid "Unfiltered upload"
399
- msgstr "بارگذاری فیلتر‌شده"
400
-
401
- #: ../includes/class-ure-lib.php:2230
402
- msgid "Edit dashboard"
403
- msgstr "ویرایش پیشخوان"
404
-
405
- #: ../includes/class-ure-lib.php:2231
406
- msgid "Update plugins"
407
- msgstr "بروزرسانی افزونه‌ها"
408
-
409
- #: ../includes/class-ure-lib.php:2232
410
- msgid "Delete plugins"
411
- msgstr "حذف افزونه‌ها"
412
-
413
- #: ../includes/class-ure-lib.php:2233
414
- msgid "Install plugins"
415
- msgstr "نصب افزونه‌ها"
416
-
417
- #: ../includes/class-ure-lib.php:2234
418
- msgid "Update themes"
419
- msgstr "بروزرسانی پوسته‌ها"
420
-
421
- #: ../includes/class-ure-lib.php:2235
422
- msgid "Install themes"
423
- msgstr "نصب پوسته‌ها"
424
-
425
- #: ../includes/class-ure-lib.php:2236
426
- msgid "Update core"
427
- msgstr "بروزرسانی هسته"
428
-
429
- #: ../includes/class-ure-lib.php:2237
430
- msgid "List users"
431
- msgstr "فهرست کاربران"
432
-
433
- #: ../includes/class-ure-lib.php:2238
434
- msgid "Remove users"
435
- msgstr "حذف کابران"
436
-
437
- #: ../includes/class-ure-lib.php:2239
438
- msgid "Add users"
439
- msgstr "افزودن کاربران"
440
-
441
- #: ../includes/class-ure-lib.php:2240
442
- msgid "Promote users"
443
- msgstr "ارتقاء کاربران"
444
-
445
- #: ../includes/class-ure-lib.php:2241
446
- msgid "Edit theme options"
447
- msgstr "ویرایش تنظیمات پوسته"
448
-
449
- #: ../includes/class-ure-lib.php:2242
450
- msgid "Delete themes"
451
- msgstr "حذف پوسته‌ها"
452
-
453
- #: ../includes/class-ure-lib.php:2243
454
- msgid "Export"
455
- msgstr "برون‌ریزی"
456
-
457
- #: ../includes/class-ure-lib.php:2366
458
- msgid "Error: Capability name must contain latin characters and digits only!"
459
- msgstr "خطا: نام قابلیت باید فقط شامل حروف لاتین و اعداد باشد!"
460
-
461
- #: ../includes/class-ure-lib.php:2379
462
- #, php-format
463
- msgid "Capability %s is added successfully"
464
- msgstr "قابلیت %s با موفقیت افزوده شد"
465
-
466
- #: ../includes/class-ure-lib.php:2381
467
- #, php-format
468
- msgid "Capability %s exists already"
469
- msgstr "قابلیت %s از پیش موجود است"
470
-
471
- #: ../includes/class-ure-lib.php:2410
472
- #, php-format
473
- msgid "Error! You do not have permission to delete this capability: %s!"
474
- msgstr "خطا! شما اجازه‌ی حذف این قابلیت را ندارید: %s!"
475
-
476
- #: ../includes/class-ure-lib.php:2429
477
- #, fuzzy, php-format
478
- msgid "Capability %s was removed successfully"
479
- msgstr "قابلیت %s با موفقیت حذف شد"
480
-
481
- #: ../includes/class-ure-lib.php:2497
482
- msgid "Version:"
483
- msgstr "نسخه:"
484
-
485
- #: ../includes/class-ure-lib.php:2498
486
- msgid "Author's website"
487
- msgstr "وبگاه نویسنده"
488
-
489
- #: ../includes/class-ure-lib.php:2499
490
- msgid "Plugin webpage"
491
- msgstr "برگه‌ی افزونه"
492
-
493
- #: ../includes/class-ure-lib.php:2500
494
- msgid "Plugin download"
495
- msgstr "بارگیری افزونه"
496
-
497
- #: ../includes/class-ure-lib.php:2501
498
- #: ../includes/class-user-role-editor.php:546
499
- msgid "Changelog"
500
- msgstr "گزارش تغییرات"
501
-
502
- #: ../includes/class-ure-lib.php:2502
503
- msgid "FAQ"
504
- msgstr "سوالات مکرر"
505
-
506
- #: ../includes/class-ure-lib.php:2575
507
- msgid "Delete All Unused Roles"
508
- msgstr "حذف همه‌ی نقش‌های استفاده‌نشده"
509
-
510
- #: ../includes/class-ure-lib.php:2588
511
- msgid "None"
512
- msgstr "هیچ‌کدام"
513
-
514
- #: ../includes/class-ure-lib.php:2632
515
- msgid "&mdash; No role for this site &mdash;"
516
- msgstr "&mdash; هیچ نقشی برای این سایت &mdash;"
517
-
518
- #: ../includes/class-ure-lib.php:2747
519
- #, php-format
520
- msgid "Denied: %s"
521
- msgstr ""
522
-
523
- #: ../includes/ure-role-edit.php:17
524
- msgid "Select Role and change its capabilities:"
525
- msgstr "انتخاب نقش و تغییر قابلیت‌های آن:"
526
-
527
- #: ../includes/ure-role-edit.php:30 ../includes/ure-user-edit.php:54
528
- msgid "Show capabilities in human readable form"
529
- msgstr "نمایش قابلیت‌ها در حالت قابل خواندن برای انسان"
530
-
531
- #: ../includes/ure-role-edit.php:40 ../includes/class-ure-screen-help.php:21
532
- #: ../includes/settings-template.php:69 ../includes/ure-user-edit.php:64
533
- msgid "Show deprecated capabilities"
534
- msgstr "نمایش قابلیت‌های بد دانسته ‌شده"
535
-
536
- #: ../includes/ure-role-edit.php:44
537
- msgid "If checked, then apply action to ALL sites of this Network"
538
- msgstr "در صورت انتخاب، این عمل به تمامی سایت‌های شبکه اعمال می‌شود"
539
-
540
- #: ../includes/ure-role-edit.php:56
541
- msgid "Apply to All Sites"
542
- msgstr "اعمال به تمامی سایت‌ها"
543
-
544
- #: ../includes/ure-role-edit.php:63 ../includes/ure-user-edit.php:110
545
- msgid "Core capabilities:"
546
- msgstr "قابلیت‌های هسته:"
547
-
548
- #: ../includes/ure-role-edit.php:65 ../includes/ure-user-edit.php:112
549
- msgid "Quick filter:"
550
- msgstr "فیلتر سریع:"
551
-
552
- #: ../includes/ure-role-edit.php:83 ../includes/ure-user-edit.php:131
553
- msgid "Custom capabilities:"
554
- msgstr "قابلیت‌های سفارشی:"
555
-
556
- #: ../includes/class-user-other-roles.php:82
557
- #: ../includes/class-user-other-roles.php:183
558
- #: ../includes/class-user-other-roles.php:243
559
- msgid "Other Roles"
560
- msgstr "دیگر نقش‌ها"
561
-
562
- #: ../includes/class-user-other-roles.php:83
563
- msgid "Select additional roles for this user"
564
- msgstr ""
565
-
566
- #: ../includes/class-user-other-roles.php:162
567
- #: ../includes/class-user-role-editor.php:438
568
- msgid "Capabilities"
569
- msgstr "قابلیت‌ها"
570
-
571
- #: ../includes/class-user-other-roles.php:169
572
- msgid "Edit"
573
- msgstr "ویرایش"
574
-
575
- #: ../includes/class-user-other-roles.php:215
576
- #, fuzzy
577
- msgid "Additional Capabilities"
578
- msgstr "افزودن قابلیت"
579
-
580
- #: ../includes/class-ure-screen-help.php:12
581
- #: ../includes/class-ure-screen-help.php:41
582
- #: ../includes/class-ure-screen-help.php:60
583
- #: ../includes/class-ure-screen-help.php:79
584
- msgid "User Role Editor Options page help"
585
- msgstr ""
586
-
587
- #: ../includes/class-ure-screen-help.php:15
588
- #: ../includes/settings-template.php:53
589
- msgid "Show Administrator role at User Role Editor"
590
- msgstr "نمایش نقش مدیر در ویرایش‌گر نقش کاربر"
591
-
592
- #: ../includes/class-ure-screen-help.php:16
593
- msgid ""
594
- "turn this option on in order to make the \"Administrator\" role available at "
595
- "the User Role Editor roles selection drop-down list. It is hidden by default "
596
- "for security reasons."
597
- msgstr ""
598
- "به منظور قابل دسترس شدن نقش «مدیر» در فهرست کشویی ویرایش‌گر نقش کاربر این "
599
- "گزینه را روشن کنید. این امکان به دلیل مسائل امنیتی به‌طور پیش‌فرض مخفی است."
600
-
601
- #: ../includes/class-ure-screen-help.php:18
602
- #: ../includes/settings-template.php:61
603
- msgid "Show capabilities in the human readable form"
604
- msgstr "نمایش قابلیت‌ها در حالت قابل خواندن برای انسان"
605
-
606
- #: ../includes/class-ure-screen-help.php:19
607
- msgid ""
608
- "automatically converts capability names from the technical form for internal "
609
- "use like \"edit_others_posts\" to more user friendly form, e.g. \"Edit "
610
- "others posts\"."
611
- msgstr ""
612
- "به طور خودکار نام قابلیت‌ها را از حالت فنی به منظور استفاده‌های داخلی تبدیل "
613
- "می‌کند. مانند «edit_others_posts» به حالت کاربر پسندتر، مثلا «ویرایش نوشته‌های "
614
- "دیگران»."
615
-
616
- #: ../includes/class-ure-screen-help.php:22
617
- msgid ""
618
- "Capabilities like \"level_0\", \"level_1\" are deprecated and are not used "
619
- "by WordPress. They are left at the user roles for the compatibility purpose "
620
- "with the old themes and plugins code. Turning on this option will show those "
621
- "deprecated capabilities."
622
- msgstr ""
623
- "قابلیت‌هایی شبیه «سطح ۰»، «سطح ۱» بد دانسته شده‌اند و توسط وردپرس استفاده "
624
- "نمی‌شوند. این قابلیت‌ها در نقش‌های کاربران به منظور سازگاری با پوسته‌های قدیمی و "
625
- "کد افزونه‌ها باقی گذاشته شده‌اند. روشن کردن این گزینه، آن قابلیت‌های بد دانسته "
626
- "شده را نمایش می‌دهد."
627
-
628
- #: ../includes/class-ure-screen-help.php:25
629
- #: ../includes/settings-template.php:77
630
- msgid "Edit user capabilities"
631
- msgstr "ویرایش قابلیت‌های کاربر"
632
-
633
- #: ../includes/class-ure-screen-help.php:26
634
- msgid ""
635
- "If turned off - capabilities section of selected user is shown in readonly "
636
- "mode. Administrator can not assign capabilities to the user directly. He "
637
- "should make it using roles only."
638
- msgstr ""
639
- "اگر خاموش شود - بخش قابلیت‌های کاربر انتخاب شده در حالت فقط خواندنی نمایش "
640
- "داده می‌شود. مدیران به طور مستقیم نمی‌توانند به کاربر قابلیتی اختصاص دهند. او "
641
- "باید تنها از نقش‌ها استفاده کند."
642
-
643
- #: ../includes/class-ure-screen-help.php:45
644
- #: ../includes/settings-template.php:111
645
- msgid "Count users without role"
646
- msgstr "شمارش کاربران بدون نقش"
647
-
648
- #: ../includes/class-ure-screen-help.php:46
649
- msgid ""
650
- "Show at the \"Users\" page a quant of users without role. Module allows to "
651
- "assign all of them an empty role \"No rights\", in order to look on the "
652
- "users list with role \"No rights\" at the separate tab then."
653
- msgstr "نمایش کاربران بدون نقش در برگه‌ی «کاربران» "
654
-
655
- #: ../includes/class-ure-screen-help.php:63
656
- msgid "Other default roles for new registered user"
657
- msgstr "دیگر نقش‌های پیش‌فرض برای کاربران تازه ثبت‌نام شده"
658
-
659
- #: ../includes/class-ure-screen-help.php:64
660
- msgid ""
661
- "select roles below to assign them to the new user automatically as an "
662
- "addition to the primary role. Note for multisite environment: take into "
663
- "account that other default roles should exist at the site, in order to be "
664
- "assigned to the new registered users."
665
- msgstr ""
666
- "نقش‌های زیر را علاوه بر نقش ابتدایی برای اختصاص خودکار به کاربر جدید انتخاب "
667
- "کنید. قابل توجه محیط چند سایتی: به منظور اختصاص‌دادن نقش‌ها به کاربران تازه "
668
- "ثبت‌نام شده، به حسابی بروید که نقش‌های پیش‌فرض دیگر می‌بایست در سایت موجود باشد."
669
-
670
- #: ../includes/class-ure-screen-help.php:82
671
- msgid "Allow non super-admininstrators to create, edit and delete users"
672
- msgstr "اجازه به مدیران غیر اصلی برای ایجاد، ویرایش و حذف کاربران"
673
-
674
- #: ../includes/class-ure-screen-help.php:83
675
- msgid ""
676
- "Super administrator only may create, edit and delete users under WordPress "
677
- "multi-site by default. Turn this option on in order to remove this "
678
- "limitation."
679
- msgstr ""
680
- "در وردپرس چندسایتی به طور پیش‌فرض تنها مدیر اصلی اجازه‌ی ایجاد، ویرایش و حذف "
681
- "کاربران را دارد. برای حذف این محدودیت این گزینه را روشن کنید."
682
-
683
- #: ../includes/class-user-role-editor.php:233
684
- msgid "Change role for users without role"
685
- msgstr "تغییر نقش برای کاربران بدون نقش"
686
-
687
- #: ../includes/class-user-role-editor.php:234
688
- msgid "No rights"
689
- msgstr "بدون هیچ حقی"
690
-
691
- #: ../includes/class-user-role-editor.php:235
692
- msgid "Provide new role"
693
- msgstr "ارائه‌ی نقش جدید"
694
-
695
- #: ../includes/class-user-role-editor.php:298
696
- #: ../includes/class-user-role-editor.php:300
697
- msgid "You do not have permission to edit this user."
698
- msgstr "شما اجازه‌ی ویرایش این کاربر را ندارید."
699
-
700
- #: ../includes/class-user-role-editor.php:535
701
- msgid "Settings"
702
- msgstr "تنظیمات"
703
-
704
- #: ../includes/class-user-role-editor.php:568
705
- #: ../includes/settings-template.php:21
706
- msgid "General"
707
- msgstr "عمومی"
708
-
709
- #: ../includes/class-user-role-editor.php:574
710
- #: ../includes/settings-template.php:26
711
- msgid "Additional Modules"
712
- msgstr "ماژول‌های اضافی"
713
-
714
- #: ../includes/class-user-role-editor.php:580
715
- #: ../includes/settings-template.php:30
716
- msgid "Default Roles"
717
- msgstr "نقش‌های پیش‌فرض"
718
-
719
- #: ../includes/class-user-role-editor.php:586
720
- #: ../includes/settings-template.php:34
721
- msgid "Multisite"
722
- msgstr "چندسایتی"
723
-
724
- #: ../includes/class-user-role-editor.php:685
725
- #: ../includes/class-user-role-editor.php:703
726
- #: ../includes/class-user-role-editor.php:747
727
- msgid "User Role Editor options are updated"
728
- msgstr "تنظیمات ویرایش‌گر نقش کاربر بروز شد"
729
-
730
- #: ../includes/class-user-role-editor.php:731
731
- msgid "Default Roles are updated"
732
- msgstr "نقش‌های پیش فرض بروز شدند"
733
-
734
- #: ../includes/class-user-role-editor.php:756
735
- msgid ""
736
- "You do not have sufficient permissions to manage options for User Role "
737
- "Editor."
738
- msgstr "شما مجوز کافی برای مدیریت تنظیمات ویرایش‌گر نقش کاربر را ندارید."
739
-
740
- #: ../includes/class-user-role-editor.php:885
741
- msgid "Select All"
742
- msgstr "انتخاب همه"
743
-
744
- #: ../includes/class-user-role-editor.php:886
745
- msgid "Unselect All"
746
- msgstr "عدم‌انتخاب همه"
747
-
748
- #: ../includes/class-user-role-editor.php:887
749
- msgid "Reverse"
750
- msgstr "وارونه"
751
-
752
- #: ../includes/class-user-role-editor.php:888
753
- msgid "Update"
754
- msgstr "بروزرسانی"
755
-
756
- #: ../includes/class-user-role-editor.php:889
757
- msgid "Please confirm permissions update"
758
- msgstr "لطفا مجوز بروزرسانی را تایید کنید"
759
-
760
- #: ../includes/class-user-role-editor.php:890
761
- msgid "Add New Role"
762
- msgstr "افزودن نقش جدید"
763
-
764
- #: ../includes/class-user-role-editor.php:891
765
- #: ../includes/class-user-role-editor.php:896
766
- msgid "Rename Role"
767
- msgstr "تغییرنام نقش"
768
-
769
- #: ../includes/class-user-role-editor.php:892
770
- msgid " Role name (ID) can not be empty!"
771
- msgstr " نام نقش (شناسه) نمی تواند خالی باشد!"
772
-
773
- #: ../includes/class-user-role-editor.php:893
774
- msgid ""
775
- " Role name (ID) must contain latin characters, digits, hyphens or underscore "
776
- "only!"
777
- msgstr ""
778
- " نام نقش (شناسه) باید فقط شامل حروف لاتین، اعداد، خط فاصله یا زیرخط باشد!"
779
-
780
- #: ../includes/class-user-role-editor.php:894
781
- msgid ""
782
- " WordPress does not support numeric Role name (ID). Add latin characters to "
783
- "it."
784
- msgstr ""
785
- " وردپرس از نام نقش (شناسه) عددی پشتیبانی نمی‌کند. حروف لاتین به آن اضافه کنید."
786
-
787
- #: ../includes/class-user-role-editor.php:895
788
- msgid "Add Role"
789
- msgstr "افزودن نقش"
790
-
791
- #: ../includes/class-user-role-editor.php:897
792
- msgid "Delete Role"
793
- msgstr "حذف نقش"
794
-
795
- #: ../includes/class-user-role-editor.php:898
796
- msgid "Cancel"
797
- msgstr "لغو"
798
-
799
- #: ../includes/class-user-role-editor.php:899
800
- msgid "Add Capability"
801
- msgstr "افزودن قابلیت"
802
-
803
- #: ../includes/class-user-role-editor.php:900
804
- #: ../includes/class-user-role-editor.php:909
805
- msgid "Delete Capability"
806
- msgstr "حذف قابلیت"
807
-
808
- #: ../includes/class-user-role-editor.php:901
809
- msgid "Reset"
810
- msgstr "بازنشانی"
811
-
812
- #: ../includes/class-user-role-editor.php:902
813
- msgid "DANGER! Resetting will restore default settings from WordPress Core."
814
- msgstr "خطر! بازنشانی، تنظیمات پیش‌فرض را از هسته‌ی وردپرس بازمی‌گرداند."
815
-
816
- #: ../includes/class-user-role-editor.php:903
817
- msgid ""
818
- "If any plugins have changed capabilities in any way upon installation (such "
819
- "as S2Member, WooCommerce, and many more), those capabilities will be DELETED!"
820
- msgstr ""
821
- "اگر هریک از افزونه‌ها پس از نصب به هر نحو قابلیت‌ها را تغییر دهند (مانند "
822
- "S2Member ، WooCommerce و بسیاری دیگر) آن قابلیت‌ها حذف خواهند شد!"
823
-
824
- #: ../includes/class-user-role-editor.php:904
825
- msgid ""
826
- "For more information on how to undo changes and restore plugin capabilities "
827
- "go to"
828
- msgstr ""
829
- "برای کسب اطلاعات بیشتر درباره چگونگی خنثی‌سازی تغییرات و ترمیم‌کردن قابلیت‌ها "
830
- "مراجعه کنید به"
831
-
832
- #: ../includes/class-user-role-editor.php:906
833
- msgid "Continue?"
834
- msgstr "ادامه می‌دهید؟"
835
-
836
- #: ../includes/class-user-role-editor.php:907
837
- msgid "Default Role"
838
- msgstr "نقش پیش‌فرض"
839
-
840
- #: ../includes/class-user-role-editor.php:908
841
- msgid "Set New Default Role"
842
- msgstr "نشاندن نقش پیش‌فرض جدید"
843
-
844
- #: ../includes/class-user-role-editor.php:910
845
- msgid ""
846
- "Warning! Be careful - removing critical capability could crash some plugin "
847
- "or other custom code"
848
- msgstr ""
849
- "اخطار! مراقب باشید - حذف قابلیت مهم می‌تواند برخی از افزونه‌ها یا دیگر کدهای "
850
- "سفارشی را دچار اشکال کند"
851
-
852
- #: ../includes/class-user-role-editor.php:911
853
- msgid " Capability name (ID) can not be empty!"
854
- msgstr " نام قابلیت (شناسه) نمی تواند خالی باشد!"
855
-
856
- #: ../includes/class-user-role-editor.php:912
857
- msgid ""
858
- " Capability name (ID) must contain latin characters, digits, hyphens or "
859
- "underscore only!"
860
- msgstr ""
861
- " نام قابلیت (شناسه) باید فقط شامل حروف لاتین، اعداد، خط فاصله یا زیرخط باشد!"
862
-
863
- #: ../includes/settings-template.php:17
864
- msgid "User Role Editor - Options"
865
- msgstr "ویرایش‌گر نقش کاربر - تنظیمات"
866
-
867
- #: ../includes/settings-template.php:39
868
- msgid "About"
869
- msgstr "درباره"
870
-
871
- #: ../includes/settings-template.php:90 ../includes/settings-template.php:126
872
- #: ../includes/settings-template.php:158 ../includes/settings-template.php:190
873
- msgid "Save"
874
- msgstr "ذخیره"
875
-
876
- #: ../includes/settings-template.php:138
877
- msgid "Primary default role: "
878
- msgstr "نقش پیش‌فرض اولیه: "
879
-
880
- #: ../includes/settings-template.php:145
881
- msgid "Other default roles for new registered user: "
882
- msgstr "دیگر نقش‌های پیش‌فرض برای کاربران تازه ثبت‌نام شده: "
883
-
884
- #: ../includes/settings-template.php:151
885
- msgid ""
886
- "Note for multisite environment: take into account that other default roles "
887
- "should exist at the site, in order to be assigned to the new registered "
888
- "users."
889
- msgstr ""
890
- "قابل توجه محیط چند سایتی: به منظور اختصاص‌دادن نقش‌ها به کاربران تازه ثبت‌نام "
891
- "شده، به حسابی بروید که نقش‌های پیش‌فرض دیگر می‌بایست در سایت موجود باشد."
892
-
893
- #: ../includes/settings-template.php:177
894
- msgid "Allow non super administrators to create, edit, and delete users"
895
- msgstr "اجازه به مدیران غیر اصلی برای ایجاد، ویرایش و حذف کاربران"
896
-
897
- #: ../includes/ure-user-edit.php:32
898
- msgid "Network Super Admin"
899
- msgstr "مدیر اصلی شبکه"
900
-
901
- #: ../includes/ure-user-edit.php:35
902
- msgid "Change capabilities for user"
903
- msgstr "تغییر قابلیت‌ها برای کاربر"
904
-
905
- #: ../includes/ure-user-edit.php:72
906
- msgid "Primary Role:"
907
- msgstr "نقش اولیه:"
908
-
909
- #: ../includes/ure-user-edit.php:82
910
- msgid "bbPress Role:"
911
- msgstr "نقش بی‌بی‌پرس:"
912
-
913
- #: ../includes/ure-user-edit.php:92
914
- msgid "Other Roles:"
915
- msgstr "دیگر نقش‌ها:"
916
-
917
- #, fuzzy
918
- #~ msgid "select roles below"
919
- #~ msgstr "عدم‌انتخاب همه"
920
-
921
- #~ msgid "Overview"
922
- #~ msgstr "مرور کلی"
923
-
924
- #~ msgid "Allow create, edit and delete users to not super-admininstrators"
925
- #~ msgstr "اجازه‌ی ایجاد، ویرایش و حذف کاربران به غیر مدیران اصلی"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
lang/user-role-editor-fr_FR.mo DELETED
Binary file
lang/user-role-editor-fr_FR.po DELETED
@@ -1,945 +0,0 @@
1
- #
2
- # Translators:
3
- # FxB <fxb@wp-translations.org>, 2014
4
- # Sébastien Grillot <sebastien@insidedaweb.fr>, 2014
5
- msgid ""
6
- msgstr ""
7
- "Project-Id-Version: User Role Editor\n"
8
- "Report-Msgid-Bugs-To: \n"
9
- "POT-Creation-Date: 2015-09-11 21:06+0100\n"
10
- "PO-Revision-Date: 2015-09-11 21:12+0100\n"
11
- "Last-Translator: Vladimir Garagulya <vladimir@shinephp.com>\n"
12
- "Language-Team: French (France) (http://www.transifex.com/projects/p/user-"
13
- "role-editor/language/fr_FR/)\n"
14
- "Language: fr_FR\n"
15
- "MIME-Version: 1.0\n"
16
- "Content-Type: text/plain; charset=UTF-8\n"
17
- "Content-Transfer-Encoding: 8bit\n"
18
- "Plural-Forms: nplurals=2; plural=(n > 1);\n"
19
- "X-Generator: Poedit 1.5.4\n"
20
- "X-Poedit-Basepath: .\n"
21
- "X-Poedit-KeywordsList: __;_e;esc_html__;esc_html_e\n"
22
- "X-Poedit-SourceCharset: UTF-8\n"
23
- "X-Poedit-SearchPath-0: ..\n"
24
-
25
- #: ../includes/class-ure-lib.php:247
26
- msgid "Error: wrong request"
27
- msgstr "Erreur : mauvaise requête"
28
-
29
- #: ../includes/class-ure-lib.php:280 ../includes/class-ure-lib.php:291
30
- msgid "Role name (ID): "
31
- msgstr "Nom du rôle (ID) :"
32
-
33
- #: ../includes/class-ure-lib.php:282 ../includes/class-ure-lib.php:293
34
- msgid "Display Role Name: "
35
- msgstr "Afficher le nom du rôle : "
36
-
37
- #: ../includes/class-ure-lib.php:284
38
- msgid "Make copy of: "
39
- msgstr "Faire une copie de : "
40
-
41
- #: ../includes/class-ure-lib.php:300
42
- msgid "Select Role:"
43
- msgstr "Sélectionner le rôle :"
44
-
45
- #: ../includes/class-ure-lib.php:315
46
- msgid "Delete:"
47
- msgstr "Supprimer :"
48
-
49
- #: ../includes/class-ure-lib.php:322
50
- msgid "Capability name (ID): "
51
- msgstr "Nom de la capacité (ID) : "
52
-
53
- #: ../includes/class-ure-lib.php:339
54
- #: ../includes/class-user-role-editor.php:596
55
- #: ../includes/class-user-role-editor.php:625
56
- msgid "User Role Editor"
57
- msgstr "User Role Editor"
58
-
59
- #: ../includes/class-ure-lib.php:436
60
- msgid "Error: "
61
- msgstr "Erreur : "
62
-
63
- #: ../includes/class-ure-lib.php:436
64
- msgid "Role"
65
- msgstr "Rôle"
66
-
67
- #: ../includes/class-ure-lib.php:437
68
- msgid "does not exist"
69
- msgstr "N'existe pas"
70
-
71
- #: ../includes/class-ure-lib.php:480
72
- msgid "Role is updated successfully"
73
- msgstr "Le rôle à été bien été mis à jour"
74
-
75
- #: ../includes/class-ure-lib.php:482
76
- msgid "Roles are updated for all network"
77
- msgstr "Les rôles ont été mis à jour sur tous les réseaux"
78
-
79
- #: ../includes/class-ure-lib.php:488
80
- msgid "Error occured during role(s) update"
81
- msgstr "Une erreur est survenue pendant la mise à jour du (des) rôle(s)"
82
-
83
- #: ../includes/class-ure-lib.php:495
84
- msgid "User capabilities are updated successfully"
85
- msgstr "Les capacités de l'utilisateur ont bien été mises à jour"
86
-
87
- #: ../includes/class-ure-lib.php:500
88
- msgid "Error occured during user update"
89
- msgstr "Une erreur est survenue pendant le mise à jour de l'utilisateur"
90
-
91
- #: ../includes/class-ure-lib.php:558
92
- msgid "User Roles are restored to WordPress default values. "
93
- msgstr ""
94
- "Les rôles utilisateurs ont été restaurées selon les valeurs par défauts de "
95
- "WordPress."
96
-
97
- #: ../includes/class-ure-lib.php:1436
98
- msgid "read about"
99
- msgstr ""
100
-
101
- #: ../includes/class-ure-lib.php:1437
102
- msgid "user capability"
103
- msgstr "capacité personnalisées"
104
-
105
- #: ../includes/class-ure-lib.php:1438
106
- msgid "Help"
107
- msgstr "Aide"
108
-
109
- #: ../includes/class-ure-lib.php:1693 ../includes/class-ure-lib.php:1946
110
- #: ../includes/class-ure-lib.php:2062 ../includes/class-ure-lib.php:2110
111
- #: ../includes/class-ure-lib.php:2358 ../includes/class-ure-lib.php:2403
112
- #: ../includes/class-user-role-editor.php:828
113
- msgid "Insufficient permissions to work with User Role Editor"
114
- msgstr "Permissions insuffisantes pour travailler avec User Role Editor"
115
-
116
- #: ../includes/class-ure-lib.php:1909
117
- msgid "Error is occur. Please check the log file."
118
- msgstr "Une erreur s'est produite. Merci de vérifier les journaux."
119
-
120
- #: ../includes/class-ure-lib.php:1955 ../includes/class-ure-lib.php:2022
121
- msgid ""
122
- "Error: Role ID must contain latin characters, digits, hyphens or underscore "
123
- "only!"
124
- msgstr ""
125
- "Erreur : L'ID du rôle doit contenir des caractères latins, des chiffres, des "
126
- "traits d'union ou des caractères de soulignement seulement !"
127
-
128
- #: ../includes/class-ure-lib.php:1959 ../includes/class-ure-lib.php:2026
129
- msgid ""
130
- "Error: WordPress does not support numeric Role name (ID). Add latin "
131
- "characters to it."
132
- msgstr ""
133
- "Erreur : WordPress ne supporte pas les noms de rôles (ID) numérique. Ajouter "
134
- "des caractères latins à celui-ci."
135
-
136
- #: ../includes/class-ure-lib.php:1974
137
- #, php-format
138
- msgid "Role %s exists already"
139
- msgstr "Le rôle %s existe déjà"
140
-
141
- #: ../includes/class-ure-lib.php:1989
142
- msgid "Error is encountered during new role create operation"
143
- msgstr ""
144
- "Une erreur est survenue pendant l'opération de création du nouveau rôle"
145
-
146
- #: ../includes/class-ure-lib.php:1991
147
- #, php-format
148
- msgid "Role %s is created successfully"
149
- msgstr "Le rôle %s à bien été créé "
150
-
151
- #: ../includes/class-ure-lib.php:2015
152
- msgid "Error: Role ID is empty!"
153
- msgstr "Erreur : L'ID du rôle est vide !"
154
-
155
- #: ../includes/class-ure-lib.php:2033
156
- msgid "Error: Empty role display name is not allowed."
157
- msgstr "Erreur : Un nom d'affichage de rôle vide n'est pas autorisé."
158
-
159
- #: ../includes/class-ure-lib.php:2040
160
- #, php-format
161
- msgid "Role %s does not exists"
162
- msgstr "Le rôle %s n&rsquo;existe pas."
163
-
164
- #: ../includes/class-ure-lib.php:2048
165
- #, php-format
166
- msgid "Role %s is renamed to %s successfully"
167
- msgstr "Le rôle %s à bien été renommé en %s. "
168
-
169
- #: ../includes/class-ure-lib.php:2121
170
- msgid "Error encountered during role delete operation"
171
- msgstr "Une erreur est survenue pendant l'opération de suppression du rôle"
172
-
173
- #: ../includes/class-ure-lib.php:2123
174
- msgid "Unused roles are deleted successfully"
175
- msgstr "Les rôles inutilisés ont bien été supprimés"
176
-
177
- #: ../includes/class-ure-lib.php:2125
178
- #, php-format
179
- msgid "Role %s is deleted successfully"
180
- msgstr "Le rôle %s à bien été supprimé"
181
-
182
- #: ../includes/class-ure-lib.php:2153
183
- msgid "Error encountered during default role change operation"
184
- msgstr ""
185
- "Une erreur est survenue pendant l'opération de changement du rôle par défaut"
186
-
187
- #: ../includes/class-ure-lib.php:2156
188
- #, php-format
189
- msgid "Default role for new users is set to %s successfully"
190
- msgstr "Le rôle par défaut pour les nouveaux utilisateur à bien été mis à %s"
191
-
192
- #: ../includes/class-ure-lib.php:2159
193
- #, fuzzy
194
- msgid "Can not set Administrator role as a default one"
195
- msgstr "Montrer le rôle Administrateur dans User Role Editor"
196
-
197
- #: ../includes/class-ure-lib.php:2161
198
- #, fuzzy
199
- msgid "This role does not exist - "
200
- msgstr "Le rôle %s n&rsquo;existe pas."
201
-
202
- #: ../includes/class-ure-lib.php:2177
203
- msgid "Editor"
204
- msgstr "Éditeur"
205
-
206
- #: ../includes/class-ure-lib.php:2178
207
- msgid "Author"
208
- msgstr "Auteur"
209
-
210
- #: ../includes/class-ure-lib.php:2179
211
- msgid "Contributor"
212
- msgstr "Contributeur"
213
-
214
- #: ../includes/class-ure-lib.php:2180
215
- msgid "Subscriber"
216
- msgstr "Abonné"
217
-
218
- #: ../includes/class-ure-lib.php:2182
219
- msgid "Switch themes"
220
- msgstr "Changer de thèmes"
221
-
222
- #: ../includes/class-ure-lib.php:2183
223
- msgid "Edit themes"
224
- msgstr "Modifier les thèmes"
225
-
226
- #: ../includes/class-ure-lib.php:2184
227
- msgid "Activate plugins"
228
- msgstr "Activer les extensions"
229
-
230
- #: ../includes/class-ure-lib.php:2185
231
- msgid "Edit plugins"
232
- msgstr "Modifier les extensions"
233
-
234
- #: ../includes/class-ure-lib.php:2186
235
- msgid "Edit users"
236
- msgstr "Modifier les utilisateurs"
237
-
238
- #: ../includes/class-ure-lib.php:2187
239
- msgid "Edit files"
240
- msgstr "Modifier les fichiers"
241
-
242
- #: ../includes/class-ure-lib.php:2188
243
- msgid "Manage options"
244
- msgstr "Gérer les options"
245
-
246
- #: ../includes/class-ure-lib.php:2189
247
- msgid "Moderate comments"
248
- msgstr "Modérer les commentaires"
249
-
250
- #: ../includes/class-ure-lib.php:2190
251
- msgid "Manage categories"
252
- msgstr "Gérer les catégories"
253
-
254
- #: ../includes/class-ure-lib.php:2191
255
- msgid "Manage links"
256
- msgstr "Gérer les liens"
257
-
258
- #: ../includes/class-ure-lib.php:2192
259
- msgid "Upload files"
260
- msgstr "Mettre en ligne des fichiers"
261
-
262
- #: ../includes/class-ure-lib.php:2193
263
- msgid "Import"
264
- msgstr "Importer"
265
-
266
- #: ../includes/class-ure-lib.php:2194
267
- msgid "Unfiltered html"
268
- msgstr "HTML non filtré"
269
-
270
- #: ../includes/class-ure-lib.php:2195
271
- msgid "Edit posts"
272
- msgstr "Modifier les articles"
273
-
274
- #: ../includes/class-ure-lib.php:2196
275
- msgid "Edit others posts"
276
- msgstr "Modifier les autres billets"
277
-
278
- #: ../includes/class-ure-lib.php:2197
279
- msgid "Edit published posts"
280
- msgstr "Modifier les billets publiés "
281
-
282
- #: ../includes/class-ure-lib.php:2198
283
- msgid "Publish posts"
284
- msgstr "Publier des articles"
285
-
286
- #: ../includes/class-ure-lib.php:2199
287
- msgid "Edit pages"
288
- msgstr "Modifier des pages"
289
-
290
- #: ../includes/class-ure-lib.php:2200
291
- msgid "Read"
292
- msgstr "Lire"
293
-
294
- #: ../includes/class-ure-lib.php:2201
295
- msgid "Level 10"
296
- msgstr "Niveau 10"
297
-
298
- #: ../includes/class-ure-lib.php:2202
299
- msgid "Level 9"
300
- msgstr "Niveau 9"
301
-
302
- #: ../includes/class-ure-lib.php:2203
303
- msgid "Level 8"
304
- msgstr "Niveau 8"
305
-
306
- #: ../includes/class-ure-lib.php:2204
307
- msgid "Level 7"
308
- msgstr "Niveau 7"
309
-
310
- #: ../includes/class-ure-lib.php:2205
311
- msgid "Level 6"
312
- msgstr "Niveau 6"
313
-
314
- #: ../includes/class-ure-lib.php:2206
315
- msgid "Level 5"
316
- msgstr "Niveau 5"
317
-
318
- #: ../includes/class-ure-lib.php:2207
319
- msgid "Level 4"
320
- msgstr "Niveau 4"
321
-
322
- #: ../includes/class-ure-lib.php:2208
323
- msgid "Level 3"
324
- msgstr "Niveau 3"
325
-
326
- #: ../includes/class-ure-lib.php:2209
327
- msgid "Level 2"
328
- msgstr "Niveau 2"
329
-
330
- #: ../includes/class-ure-lib.php:2210
331
- msgid "Level 1"
332
- msgstr "Niveau 1"
333
-
334
- #: ../includes/class-ure-lib.php:2211
335
- msgid "Level 0"
336
- msgstr "Niveau 0"
337
-
338
- #: ../includes/class-ure-lib.php:2212
339
- msgid "Edit others pages"
340
- msgstr "Modifier les autres pages"
341
-
342
- #: ../includes/class-ure-lib.php:2213
343
- msgid "Edit published pages"
344
- msgstr "Modifier les pages publiées "
345
-
346
- #: ../includes/class-ure-lib.php:2214
347
- msgid "Publish pages"
348
- msgstr "Publier les pages"
349
-
350
- #: ../includes/class-ure-lib.php:2215
351
- msgid "Delete pages"
352
- msgstr "Supprimer les pages"
353
-
354
- #: ../includes/class-ure-lib.php:2216
355
- msgid "Delete others pages"
356
- msgstr "Supprimer les autres pages"
357
-
358
- #: ../includes/class-ure-lib.php:2217
359
- msgid "Delete published pages"
360
- msgstr "Supprimer les pages publiées"
361
-
362
- #: ../includes/class-ure-lib.php:2218
363
- msgid "Delete posts"
364
- msgstr "Supprimer les articles"
365
-
366
- #: ../includes/class-ure-lib.php:2219
367
- msgid "Delete others posts"
368
- msgstr "Supprimer les autres billets"
369
-
370
- #: ../includes/class-ure-lib.php:2220
371
- msgid "Delete published posts"
372
- msgstr "Supprimer les billets publiés"
373
-
374
- #: ../includes/class-ure-lib.php:2221
375
- msgid "Delete private posts"
376
- msgstr "Supprimer les billets privés"
377
-
378
- #: ../includes/class-ure-lib.php:2222
379
- msgid "Edit private posts"
380
- msgstr "Modifier les billets privés"
381
-
382
- #: ../includes/class-ure-lib.php:2223
383
- msgid "Read private posts"
384
- msgstr "Lire les billets privés"
385
-
386
- #: ../includes/class-ure-lib.php:2224
387
- msgid "Delete private pages"
388
- msgstr "Supprimer les pages privées "
389
-
390
- #: ../includes/class-ure-lib.php:2225
391
- msgid "Edit private pages"
392
- msgstr "Modifier les pages privées"
393
-
394
- #: ../includes/class-ure-lib.php:2226
395
- msgid "Read private pages"
396
- msgstr "Lire les pages privées"
397
-
398
- #: ../includes/class-ure-lib.php:2227
399
- msgid "Delete users"
400
- msgstr "Supprimer les utilisateurs"
401
-
402
- #: ../includes/class-ure-lib.php:2228
403
- msgid "Create users"
404
- msgstr "Créer des utilisateurs"
405
-
406
- #: ../includes/class-ure-lib.php:2229
407
- msgid "Unfiltered upload"
408
- msgstr "Téléchargement non filtré"
409
-
410
- #: ../includes/class-ure-lib.php:2230
411
- msgid "Edit dashboard"
412
- msgstr "Modifier le tableau de bord"
413
-
414
- #: ../includes/class-ure-lib.php:2231
415
- msgid "Update plugins"
416
- msgstr "Mettre à jour les extensions"
417
-
418
- #: ../includes/class-ure-lib.php:2232
419
- msgid "Delete plugins"
420
- msgstr "Supprimer les extensions"
421
-
422
- #: ../includes/class-ure-lib.php:2233
423
- msgid "Install plugins"
424
- msgstr "Installer les extensions"
425
-
426
- #: ../includes/class-ure-lib.php:2234
427
- msgid "Update themes"
428
- msgstr "Mettre à jour les thèmes"
429
-
430
- #: ../includes/class-ure-lib.php:2235
431
- msgid "Install themes"
432
- msgstr "Installer des thèmes"
433
-
434
- #: ../includes/class-ure-lib.php:2236
435
- msgid "Update core"
436
- msgstr "Mettre à jour le cœur"
437
-
438
- #: ../includes/class-ure-lib.php:2237
439
- msgid "List users"
440
- msgstr "Lister les utilisateurs"
441
-
442
- #: ../includes/class-ure-lib.php:2238
443
- msgid "Remove users"
444
- msgstr "Supprimer des utilisateurs"
445
-
446
- #: ../includes/class-ure-lib.php:2239
447
- msgid "Add users"
448
- msgstr "Ajouter les utilisateurs"
449
-
450
- #: ../includes/class-ure-lib.php:2240
451
- msgid "Promote users"
452
- msgstr "Promouvoir des utilisateurs"
453
-
454
- #: ../includes/class-ure-lib.php:2241
455
- msgid "Edit theme options"
456
- msgstr "Modifier les options du thème"
457
-
458
- #: ../includes/class-ure-lib.php:2242
459
- msgid "Delete themes"
460
- msgstr "Supprimer des thèmes"
461
-
462
- #: ../includes/class-ure-lib.php:2243
463
- msgid "Export"
464
- msgstr "Exporter"
465
-
466
- #: ../includes/class-ure-lib.php:2366
467
- msgid "Error: Capability name must contain latin characters and digits only!"
468
- msgstr ""
469
- "Erreur : Le nom de la capacité doit seulement contenir des caractères latins "
470
- "et des chiffres !"
471
-
472
- #: ../includes/class-ure-lib.php:2379
473
- #, php-format
474
- msgid "Capability %s is added successfully"
475
- msgstr "La capacité %s à bien été ajoutée "
476
-
477
- #: ../includes/class-ure-lib.php:2381
478
- #, php-format
479
- msgid "Capability %s exists already"
480
- msgstr "La capacité %s existe déjà"
481
-
482
- #: ../includes/class-ure-lib.php:2410
483
- #, php-format
484
- msgid "Error! You do not have permission to delete this capability: %s!"
485
- msgstr ""
486
- "Erreur ! Vous n'avez pas la permission de supprimer cette capacité. %s !"
487
-
488
- #: ../includes/class-ure-lib.php:2429
489
- #, fuzzy, php-format
490
- msgid "Capability %s was removed successfully"
491
- msgstr "La capacité %s à bien été supprimée "
492
-
493
- #: ../includes/class-ure-lib.php:2497
494
- msgid "Version:"
495
- msgstr "Version :"
496
-
497
- #: ../includes/class-ure-lib.php:2498
498
- msgid "Author's website"
499
- msgstr "Site internet de l'auteur"
500
-
501
- #: ../includes/class-ure-lib.php:2499
502
- msgid "Plugin webpage"
503
- msgstr "Page web de l'extension"
504
-
505
- #: ../includes/class-ure-lib.php:2500
506
- msgid "Plugin download"
507
- msgstr "Téléchargement de l'extension"
508
-
509
- #: ../includes/class-ure-lib.php:2501
510
- #: ../includes/class-user-role-editor.php:546
511
- msgid "Changelog"
512
- msgstr "Journal des modifications"
513
-
514
- #: ../includes/class-ure-lib.php:2502
515
- msgid "FAQ"
516
- msgstr "FAQ"
517
-
518
- #: ../includes/class-ure-lib.php:2575
519
- msgid "Delete All Unused Roles"
520
- msgstr "Supprimer tous les rôles inutilisés "
521
-
522
- #: ../includes/class-ure-lib.php:2588
523
- msgid "None"
524
- msgstr "Aucun"
525
-
526
- #: ../includes/class-ure-lib.php:2632
527
- msgid "&mdash; No role for this site &mdash;"
528
- msgstr "&mdash; Pas de rôle sur ce site &mdash;"
529
-
530
- #: ../includes/class-ure-lib.php:2747
531
- #, php-format
532
- msgid "Denied: %s"
533
- msgstr ""
534
-
535
- #: ../includes/ure-role-edit.php:17
536
- msgid "Select Role and change its capabilities:"
537
- msgstr "Sélectionner un rôle et changer ses capacités : "
538
-
539
- #: ../includes/ure-role-edit.php:30 ../includes/ure-user-edit.php:54
540
- msgid "Show capabilities in human readable form"
541
- msgstr "Montrer les capacités dans une forme lisible par l'homme"
542
-
543
- #: ../includes/ure-role-edit.php:40 ../includes/class-ure-screen-help.php:21
544
- #: ../includes/settings-template.php:69 ../includes/ure-user-edit.php:64
545
- msgid "Show deprecated capabilities"
546
- msgstr "Voir les capacités obsolètes"
547
-
548
- #: ../includes/ure-role-edit.php:44
549
- msgid "If checked, then apply action to ALL sites of this Network"
550
- msgstr ""
551
- "Si coché, alors appliquer toutes les actions à tous les sites du réseau"
552
-
553
- #: ../includes/ure-role-edit.php:56
554
- msgid "Apply to All Sites"
555
- msgstr "Appliquer à tous les sites"
556
-
557
- #: ../includes/ure-role-edit.php:63 ../includes/ure-user-edit.php:110
558
- msgid "Core capabilities:"
559
- msgstr "Capacités du core :"
560
-
561
- #: ../includes/ure-role-edit.php:65 ../includes/ure-user-edit.php:112
562
- msgid "Quick filter:"
563
- msgstr "Filtre rapide : "
564
-
565
- #: ../includes/ure-role-edit.php:83 ../includes/ure-user-edit.php:131
566
- msgid "Custom capabilities:"
567
- msgstr "Capacités personnalisées :"
568
-
569
- #: ../includes/class-user-other-roles.php:82
570
- #: ../includes/class-user-other-roles.php:183
571
- #: ../includes/class-user-other-roles.php:243
572
- msgid "Other Roles"
573
- msgstr "Autres rôles"
574
-
575
- #: ../includes/class-user-other-roles.php:83
576
- msgid "Select additional roles for this user"
577
- msgstr ""
578
-
579
- #: ../includes/class-user-other-roles.php:162
580
- #: ../includes/class-user-role-editor.php:438
581
- msgid "Capabilities"
582
- msgstr "Capacités"
583
-
584
- #: ../includes/class-user-other-roles.php:169
585
- msgid "Edit"
586
- msgstr "Modifier"
587
-
588
- #: ../includes/class-user-other-roles.php:215
589
- #, fuzzy
590
- msgid "Additional Capabilities"
591
- msgstr "Ajouter la capacité"
592
-
593
- #: ../includes/class-ure-screen-help.php:12
594
- #: ../includes/class-ure-screen-help.php:41
595
- #: ../includes/class-ure-screen-help.php:60
596
- #: ../includes/class-ure-screen-help.php:79
597
- msgid "User Role Editor Options page help"
598
- msgstr ""
599
-
600
- #: ../includes/class-ure-screen-help.php:15
601
- #: ../includes/settings-template.php:53
602
- msgid "Show Administrator role at User Role Editor"
603
- msgstr "Montrer le rôle Administrateur dans User Role Editor"
604
-
605
- #: ../includes/class-ure-screen-help.php:16
606
- msgid ""
607
- "turn this option on in order to make the \"Administrator\" role available at "
608
- "the User Role Editor roles selection drop-down list. It is hidden by default "
609
- "for security reasons."
610
- msgstr ""
611
- "activer cette option pour rendre le rôle \"Administrateur\" disponible dans "
612
- "la liste de sélection de User Role Editor. Cela est caché par défaut pour "
613
- "des raisons de sécurité."
614
-
615
- #: ../includes/class-ure-screen-help.php:18
616
- #: ../includes/settings-template.php:61
617
- msgid "Show capabilities in the human readable form"
618
- msgstr "Montrer les capacités dans une forme lisible par l'homme"
619
-
620
- #: ../includes/class-ure-screen-help.php:19
621
- msgid ""
622
- "automatically converts capability names from the technical form for internal "
623
- "use like \"edit_others_posts\" to more user friendly form, e.g. \"Edit "
624
- "others posts\"."
625
- msgstr ""
626
- "converti automatiquement les noms techniques des capacités comme "
627
- "\"modifier_autres_articles\" en une version plus lisible, p. ex. \"Modifier "
628
- "autres articles\"."
629
-
630
- #: ../includes/class-ure-screen-help.php:22
631
- msgid ""
632
- "Capabilities like \"level_0\", \"level_1\" are deprecated and are not used "
633
- "by WordPress. They are left at the user roles for the compatibility purpose "
634
- "with the old themes and plugins code. Turning on this option will show those "
635
- "deprecated capabilities."
636
- msgstr ""
637
- "Les capacités de \"level_0\", \"level_1\" sont dépréciées et ne sont plus "
638
- "utilisées par WordPress. Elles sont réglées au niveau utilisateur pour des "
639
- "raisons de compatibilité avec les anciens thèmes et extensions. Activer "
640
- "cette option affichera ces capacités dépréciées."
641
-
642
- #: ../includes/class-ure-screen-help.php:25
643
- #: ../includes/settings-template.php:77
644
- msgid "Edit user capabilities"
645
- msgstr "Modifier capacités personnalisées"
646
-
647
- #: ../includes/class-ure-screen-help.php:26
648
- msgid ""
649
- "If turned off - capabilities section of selected user is shown in readonly "
650
- "mode. Administrator can not assign capabilities to the user directly. He "
651
- "should make it using roles only."
652
- msgstr ""
653
-
654
- #: ../includes/class-ure-screen-help.php:45
655
- #: ../includes/settings-template.php:111
656
- msgid "Count users without role"
657
- msgstr "Compter les utilisateurs sans rôle"
658
-
659
- #: ../includes/class-ure-screen-help.php:46
660
- msgid ""
661
- "Show at the \"Users\" page a quant of users without role. Module allows to "
662
- "assign all of them an empty role \"No rights\", in order to look on the "
663
- "users list with role \"No rights\" at the separate tab then."
664
- msgstr ""
665
- "Afficher sur la page « Utilisateurs » les utilisateurs sans rôle. Ce module "
666
- "permet d'attribuer à chacun d'eux un rôle vide « Aucun droit », afin de "
667
- "pouvoir les afficher dans un onglet « Aucun droit » séparé ensuite."
668
-
669
- #: ../includes/class-ure-screen-help.php:63
670
- msgid "Other default roles for new registered user"
671
- msgstr "Autres rôles par défaut pour les nouveaux utilisateurs enregistrés"
672
-
673
- #: ../includes/class-ure-screen-help.php:64
674
- msgid ""
675
- "select roles below to assign them to the new user automatically as an "
676
- "addition to the primary role. Note for multisite environment: take into "
677
- "account that other default roles should exist at the site, in order to be "
678
- "assigned to the new registered users."
679
- msgstr ""
680
- "sélectionner les rôles ci-dessous a assigner automatiquement aux nouveaux "
681
- "utilisateurs en plus de leur rôle premier. Remarque pour les environnements "
682
- "multisite : Prenez en considération que d'autres rôles par défauts doivent "
683
- "exister sur le site, afin qu'ils soient assignés aux nouveaux utilisateurs "
684
- "enregistrés."
685
-
686
- #: ../includes/class-ure-screen-help.php:82
687
- msgid "Allow non super-admininstrators to create, edit and delete users"
688
- msgstr ""
689
- "Autoriser les utilisateurs qui ne sont pas super-administrateurs à créer, "
690
- "modifier ou supprimer des utilisateurs"
691
-
692
- #: ../includes/class-ure-screen-help.php:83
693
- msgid ""
694
- "Super administrator only may create, edit and delete users under WordPress "
695
- "multi-site by default. Turn this option on in order to remove this "
696
- "limitation."
697
- msgstr ""
698
- "Seul le Super Administrateur peut créer, modifier ou supprimer des "
699
- "utilisateurs sur des installations WordPress multisite par défaut. Activer "
700
- "cette option pour supprimer cette limitation."
701
-
702
- #: ../includes/class-user-role-editor.php:233
703
- msgid "Change role for users without role"
704
- msgstr "Changer le rôle pour les utilisateurs sans rôle"
705
-
706
- #: ../includes/class-user-role-editor.php:234
707
- msgid "No rights"
708
- msgstr "Aucun droit"
709
-
710
- #: ../includes/class-user-role-editor.php:235
711
- msgid "Provide new role"
712
- msgstr "Fournir un nouveau rôle"
713
-
714
- #: ../includes/class-user-role-editor.php:298
715
- #: ../includes/class-user-role-editor.php:300
716
- msgid "You do not have permission to edit this user."
717
- msgstr ""
718
- "Vous n&rsquo;avez pas l&rsquo;autorisation de modifier cet utilisateur."
719
-
720
- #: ../includes/class-user-role-editor.php:535
721
- msgid "Settings"
722
- msgstr "Paramètres"
723
-
724
- #: ../includes/class-user-role-editor.php:568
725
- #: ../includes/settings-template.php:21
726
- msgid "General"
727
- msgstr "Général"
728
-
729
- #: ../includes/class-user-role-editor.php:574
730
- #: ../includes/settings-template.php:26
731
- msgid "Additional Modules"
732
- msgstr "Modules complémentaires"
733
-
734
- #: ../includes/class-user-role-editor.php:580
735
- #: ../includes/settings-template.php:30
736
- msgid "Default Roles"
737
- msgstr " Rôles par défaut"
738
-
739
- #: ../includes/class-user-role-editor.php:586
740
- #: ../includes/settings-template.php:34
741
- msgid "Multisite"
742
- msgstr "Multisite"
743
-
744
- #: ../includes/class-user-role-editor.php:685
745
- #: ../includes/class-user-role-editor.php:703
746
- #: ../includes/class-user-role-editor.php:747
747
- msgid "User Role Editor options are updated"
748
- msgstr "Les options de User Role Editor ont été mises à jour"
749
-
750
- #: ../includes/class-user-role-editor.php:731
751
- msgid "Default Roles are updated"
752
- msgstr "Les rôles par défauts ont été mis à jour"
753
-
754
- #: ../includes/class-user-role-editor.php:756
755
- msgid ""
756
- "You do not have sufficient permissions to manage options for User Role "
757
- "Editor."
758
- msgstr ""
759
- "Vous n'avez pas les permissions suffisantes pour gérer les options de User "
760
- "Role Editor."
761
-
762
- #: ../includes/class-user-role-editor.php:885
763
- msgid "Select All"
764
- msgstr "Tout sélectionner"
765
-
766
- #: ../includes/class-user-role-editor.php:886
767
- msgid "Unselect All"
768
- msgstr "Tout déselectionner"
769
-
770
- #: ../includes/class-user-role-editor.php:887
771
- msgid "Reverse"
772
- msgstr "Inverser"
773
-
774
- #: ../includes/class-user-role-editor.php:888
775
- msgid "Update"
776
- msgstr "Mettre à jour"
777
-
778
- #: ../includes/class-user-role-editor.php:889
779
- msgid "Please confirm permissions update"
780
- msgstr "Merci de confirmer la mise à jour des permissions"
781
-
782
- #: ../includes/class-user-role-editor.php:890
783
- msgid "Add New Role"
784
- msgstr "Ajouter un nouveau rôle"
785
-
786
- #: ../includes/class-user-role-editor.php:891
787
- #: ../includes/class-user-role-editor.php:896
788
- msgid "Rename Role"
789
- msgstr "Renommer le Rôle"
790
-
791
- #: ../includes/class-user-role-editor.php:892
792
- msgid " Role name (ID) can not be empty!"
793
- msgstr "Le nom du rôle (ID) ne peut pas être vide !"
794
-
795
- #: ../includes/class-user-role-editor.php:893
796
- msgid ""
797
- " Role name (ID) must contain latin characters, digits, hyphens or underscore "
798
- "only!"
799
- msgstr ""
800
- "Le nom du rôle (ID) peut contenir seulement des caractères latin, des "
801
- "chiffres, des traits d'union ou des caractères de soulignement !"
802
-
803
- #: ../includes/class-user-role-editor.php:894
804
- msgid ""
805
- " WordPress does not support numeric Role name (ID). Add latin characters to "
806
- "it."
807
- msgstr ""
808
- "WordPress ne supporte pas les noms de rôle (ID) alphanumériques. Ajouter des "
809
- "caractères latin à celui-ci."
810
-
811
- #: ../includes/class-user-role-editor.php:895
812
- msgid "Add Role"
813
- msgstr "Ajouter un rôle"
814
-
815
- #: ../includes/class-user-role-editor.php:897
816
- msgid "Delete Role"
817
- msgstr "Supprimer un rôle"
818
-
819
- #: ../includes/class-user-role-editor.php:898
820
- msgid "Cancel"
821
- msgstr "Annuler"
822
-
823
- #: ../includes/class-user-role-editor.php:899
824
- msgid "Add Capability"
825
- msgstr "Ajouter la capacité"
826
-
827
- #: ../includes/class-user-role-editor.php:900
828
- #: ../includes/class-user-role-editor.php:909
829
- msgid "Delete Capability"
830
- msgstr "Supprimer la capacité"
831
-
832
- #: ../includes/class-user-role-editor.php:901
833
- msgid "Reset"
834
- msgstr "Réinitialiser"
835
-
836
- #: ../includes/class-user-role-editor.php:902
837
- msgid "DANGER! Resetting will restore default settings from WordPress Core."
838
- msgstr ""
839
- "DANGER ! La réinitialisation va restaurer les paramètres par défaut du cœur "
840
- "de WordPress."
841
-
842
- #: ../includes/class-user-role-editor.php:903
843
- msgid ""
844
- "If any plugins have changed capabilities in any way upon installation (such "
845
- "as S2Member, WooCommerce, and many more), those capabilities will be DELETED!"
846
- msgstr ""
847
- "Si aucune extension n'a modifié les capacités (comme S2Member ou WooCommerce "
848
- "et bien d'autres), ces capacités seront SUPPRIMÉES ! "
849
-
850
- #: ../includes/class-user-role-editor.php:904
851
- msgid ""
852
- "For more information on how to undo changes and restore plugin capabilities "
853
- "go to"
854
- msgstr ""
855
- "Pour de plus amples informations sur la façon d'annuler les modifications et "
856
- "rétablir les fonctions de l'extension, aller sur "
857
-
858
- #: ../includes/class-user-role-editor.php:906
859
- msgid "Continue?"
860
- msgstr "Continuer ?"
861
-
862
- #: ../includes/class-user-role-editor.php:907
863
- msgid "Default Role"
864
- msgstr " Rôle par défaut"
865
-
866
- #: ../includes/class-user-role-editor.php:908
867
- msgid "Set New Default Role"
868
- msgstr "Régler le nouveau rôle par défaut"
869
-
870
- #: ../includes/class-user-role-editor.php:910
871
- msgid ""
872
- "Warning! Be careful - removing critical capability could crash some plugin "
873
- "or other custom code"
874
- msgstr ""
875
- "Attention ! Enlever des capacités critiques pourrait faire planter certaines "
876
- "extension ou autres codes personnalisés"
877
-
878
- #: ../includes/class-user-role-editor.php:911
879
- msgid " Capability name (ID) can not be empty!"
880
- msgstr "Le nom de la capacité (ID) ne peut pas être vide !"
881
-
882
- #: ../includes/class-user-role-editor.php:912
883
- msgid ""
884
- " Capability name (ID) must contain latin characters, digits, hyphens or "
885
- "underscore only!"
886
- msgstr ""
887
- "Le nom de la capacité (ID) doit contenir seulement des caractères latins, "
888
- "des chiffres, des traits d'union ou des caractères de soulignement !"
889
-
890
- #: ../includes/settings-template.php:17
891
- msgid "User Role Editor - Options"
892
- msgstr "User Role Editor - Options"
893
-
894
- #: ../includes/settings-template.php:39
895
- msgid "About"
896
- msgstr "À propos"
897
-
898
- #: ../includes/settings-template.php:90 ../includes/settings-template.php:126
899
- #: ../includes/settings-template.php:158 ../includes/settings-template.php:190
900
- msgid "Save"
901
- msgstr "Sauvegarder"
902
-
903
- #: ../includes/settings-template.php:138
904
- msgid "Primary default role: "
905
- msgstr "Rôle primaire par défaut : "
906
-
907
- #: ../includes/settings-template.php:145
908
- msgid "Other default roles for new registered user: "
909
- msgstr "Autres rôles par défaut pour les nouveaux utilisateurs enregistrés : "
910
-
911
- #: ../includes/settings-template.php:151
912
- msgid ""
913
- "Note for multisite environment: take into account that other default roles "
914
- "should exist at the site, in order to be assigned to the new registered "
915
- "users."
916
- msgstr ""
917
- "Note pour les environnements multisite : Prenez en considération que "
918
- "d'autres rôles par défauts doivent exister sur le site, afin qu'ils soient "
919
- "assignés aux nouveaux utilisateurs enregistrés."
920
-
921
- #: ../includes/settings-template.php:177
922
- msgid "Allow non super administrators to create, edit, and delete users"
923
- msgstr ""
924
- "Autoriser les utilisateurs qui ne sont pas super-administrateurs à créer, "
925
- "modifier ou supprimer des utilisateurs"
926
-
927
- #: ../includes/ure-user-edit.php:32
928
- msgid "Network Super Admin"
929
- msgstr "Super Administrateur du réseau"
930
-
931
- #: ../includes/ure-user-edit.php:35
932
- msgid "Change capabilities for user"
933
- msgstr "Changer les capacité pour l'utilisateur"
934
-
935
- #: ../includes/ure-user-edit.php:72
936
- msgid "Primary Role:"
937
- msgstr "Rôle primaire : "
938
-
939
- #: ../includes/ure-user-edit.php:82
940
- msgid "bbPress Role:"
941
- msgstr "Rôle bbPress : "
942
-
943
- #: ../includes/ure-user-edit.php:92
944
- msgid "Other Roles:"
945
- msgstr "Autres rôles :"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
lang/user-role-editor-he_IL.mo DELETED
Binary file
lang/user-role-editor-he_IL.po DELETED
@@ -1,1245 +0,0 @@
1
- # This file was generated by WPML
2
- # WPML is a WordPress plugin that can turn any WordPress or WordPressMU site into a full featured multilingual content management system.
3
- # https://wpml.org
4
- msgid ""
5
- msgstr ""
6
- "Project-Id-Version: user-role-editor\n"
7
- "Report-Msgid-Bugs-To: \n"
8
- "POT-Creation-Date: 2015-09-11 21:06+0100\n"
9
- "PO-Revision-Date: \n"
10
- "Last-Translator: Vladimir Garagulya <vladimir@shinephp.com>\n"
11
- "Language-Team: Ahrale, Atar4U.com <contact@atar4u.com>\n"
12
- "Language: he\n"
13
- "MIME-Version: 1.0\n"
14
- "Content-Type: text/plain; charset=UTF-8\n"
15
- "Content-Transfer-Encoding: 8bit\n"
16
- "X-Generator: Poedit 1.5.4\n"
17
- "X-Poedit-SourceCharset: UTF-8\n"
18
-
19
- # wpml-name: a4b9ac7e09dc5996d763f6bae29fd31a
20
- #: ../includes/class-ure-lib.php:247
21
- #, fuzzy
22
- msgid "Error: wrong request"
23
- msgstr "שגיאה: בקשה מוטעית"
24
-
25
- # wpml-name: 37b0a122a7eb7b961dc33e61b8d5df10
26
- #: ../includes/class-ure-lib.php:280 ../includes/class-ure-lib.php:291
27
- #, fuzzy
28
- msgid "Role name (ID): "
29
- msgstr "שם התפקיד (ID): "
30
-
31
- # wpml-name: 246c9066a0e20805752f69f87ffb66af
32
- #: ../includes/class-ure-lib.php:282 ../includes/class-ure-lib.php:293
33
- #, fuzzy
34
- msgid "Display Role Name: "
35
- msgstr "הצג שם תפקיד: "
36
-
37
- # wpml-name: 1f2d970e46f567eb2fe77e1f8387f37a
38
- #: ../includes/class-ure-lib.php:284
39
- #, fuzzy
40
- msgid "Make copy of: "
41
- msgstr "צור העתק של: "
42
-
43
- # wpml-name: 6ae3f08b992f68a1bf8924945d2c7c98
44
- #: ../includes/class-ure-lib.php:300
45
- #, fuzzy
46
- msgid "Select Role:"
47
- msgstr "בחירת תפקיד:"
48
-
49
- # wpml-name: 62f0d909f4edb78b805e4cf6747a4c36
50
- #: ../includes/class-ure-lib.php:315
51
- #, fuzzy
52
- msgid "Delete:"
53
- msgstr "מחיקה:"
54
-
55
- # wpml-name: 42eabb45e3d2920f6a763458c3c5fffe
56
- #: ../includes/class-ure-lib.php:322
57
- #, fuzzy
58
- msgid "Capability name (ID): "
59
- msgstr "שם היכולת (ID): "
60
-
61
- # wpml-name: c26ad3b67c7211a5872194d68cb5a8eb
62
- #: ../includes/class-ure-lib.php:339
63
- #: ../includes/class-user-role-editor.php:596
64
- #: ../includes/class-user-role-editor.php:625
65
- #, fuzzy
66
- msgid "User Role Editor"
67
- msgstr "User Role Editor"
68
-
69
- # wpml-name: f97d2eb0a66987899d02bb180936afa3
70
- #: ../includes/class-ure-lib.php:436
71
- #, fuzzy
72
- msgid "Error: "
73
- msgstr "שגיאה:"
74
-
75
- # wpml-name: bbbabdbe1b262f75d99d62880b953be1
76
- #: ../includes/class-ure-lib.php:436
77
- #, fuzzy
78
- msgid "Role"
79
- msgstr "סוג משתמש:"
80
-
81
- # wpml-name: 9416a531e05cf18f1c26b97263e3c96b
82
- #: ../includes/class-ure-lib.php:437
83
- #, fuzzy
84
- msgid "does not exist"
85
- msgstr "לא נמצא"
86
-
87
- # wpml-name: 9fd866f99b55510d60384b7efeb22018
88
- #: ../includes/class-ure-lib.php:480
89
- #, fuzzy
90
- msgid "Role is updated successfully"
91
- msgstr "התפקיד עודכן בהצלחה"
92
-
93
- # wpml-name: f89c187756348dad944b0fcca790fde6
94
- #: ../includes/class-ure-lib.php:482
95
- #, fuzzy
96
- msgid "Roles are updated for all network"
97
- msgstr "התפקידים עודכנו עבור כל הרשת"
98
-
99
- # wpml-name: 9f528ca4741155f636c4331b19f2b170
100
- #: ../includes/class-ure-lib.php:488
101
- #, fuzzy
102
- msgid "Error occured during role(s) update"
103
- msgstr "קרתה שגיאה בעת עדכון תפקידי המשתמש"
104
-
105
- # wpml-name: ee37618edaa53156b3a18d543ec60412
106
- #: ../includes/class-ure-lib.php:495
107
- #, fuzzy
108
- msgid "User capabilities are updated successfully"
109
- msgstr "יכולות המשתמש עודכנו בהצלחה"
110
-
111
- # wpml-name: f7283da5501e7e1cb13255d323859feb
112
- #: ../includes/class-ure-lib.php:500
113
- #, fuzzy
114
- msgid "Error occured during user update"
115
- msgstr "קרתה שגיאה בזמן עדכון המשתמש"
116
-
117
- # wpml-name: 7182950b4f92d446844be24cfea6276a
118
- #: ../includes/class-ure-lib.php:558
119
- #, fuzzy
120
- msgid "User Roles are restored to WordPress default values. "
121
- msgstr "תפקידי משתמש שוחזרו לערכי ברירת המחדל של וורדפרס."
122
-
123
- #: ../includes/class-ure-lib.php:1436
124
- msgid "read about"
125
- msgstr ""
126
-
127
- # wpml-name: e16363f33a765f63f2a76c656513a3c3
128
- #: ../includes/class-ure-lib.php:1437
129
- #, fuzzy
130
- msgid "user capability"
131
- msgstr "עריכת יכולות משתמש"
132
-
133
- # wpml-name: 6a26f548831e6a8c26bfbbd9f6ec61e0
134
- #: ../includes/class-ure-lib.php:1438
135
- #, fuzzy
136
- msgid "Help"
137
- msgstr "עזרה"
138
-
139
- # wpml-name: 077a0eb06e4c26b3d834fbe4180a1f8e
140
- #: ../includes/class-ure-lib.php:1693 ../includes/class-ure-lib.php:1946
141
- #: ../includes/class-ure-lib.php:2062 ../includes/class-ure-lib.php:2110
142
- #: ../includes/class-ure-lib.php:2358 ../includes/class-ure-lib.php:2403
143
- #: ../includes/class-user-role-editor.php:828
144
- #, fuzzy
145
- msgid "Insufficient permissions to work with User Role Editor"
146
- msgstr "לא מספיק הרשאות להשתמש בעורך התפקידים User Role Editor"
147
-
148
- # wpml-name: 766a60ac9e13c76c28bdf714ddecaa25
149
- #: ../includes/class-ure-lib.php:1909
150
- #, fuzzy
151
- msgid "Error is occur. Please check the log file."
152
- msgstr "ארעה שגיאה, אנא בדוק את קובץ היומן."
153
-
154
- # wpml-name: f9182094e24a9e2fbb7317b1724a69c9
155
- #: ../includes/class-ure-lib.php:1955 ../includes/class-ure-lib.php:2022
156
- #, fuzzy
157
- msgid ""
158
- "Error: Role ID must contain latin characters, digits, hyphens or underscore "
159
- "only!"
160
- msgstr ""
161
- "שגיאה: תפקיד המשתמש חייב לכלול אותיות לטיניות, ספרות, מקפים וקו תחתון בלבד!"
162
-
163
- # wpml-name: a03c6e9d8af7d3cf56f1a0be07b39345
164
- #: ../includes/class-ure-lib.php:1959 ../includes/class-ure-lib.php:2026
165
- #, fuzzy
166
- msgid ""
167
- "Error: WordPress does not support numeric Role name (ID). Add latin "
168
- "characters to it."
169
- msgstr ""
170
- "שגיאה: וורדפרס אינו תומך בשמות תפקיד מספריים (ID). הוסף לזה אותיות לטיניות."
171
-
172
- # wpml-name: 61b6d86154b5437be56e6565f2820391
173
- #: ../includes/class-ure-lib.php:1974
174
- #, fuzzy, php-format
175
- msgid "Role %s exists already"
176
- msgstr "סוג המשתמש %s כבר קיים"
177
-
178
- # wpml-name: e0618b1a4160611a46b1b95acab0821c
179
- #: ../includes/class-ure-lib.php:1989
180
- #, fuzzy
181
- msgid "Error is encountered during new role create operation"
182
- msgstr "ארעה שגיאה בעת יצירת סוג המשתמש החדש"
183
-
184
- # wpml-name: 1613afddcbdf86bd48660e5443be00ff
185
- #: ../includes/class-ure-lib.php:1991
186
- #, fuzzy, php-format
187
- msgid "Role %s is created successfully"
188
- msgstr "סוג המשתמש %s נוצר בהצלחה"
189
-
190
- # wpml-name: dbf31b81647ce1a7605928da07bbc226
191
- #: ../includes/class-ure-lib.php:2015
192
- #, fuzzy
193
- msgid "Error: Role ID is empty!"
194
- msgstr "שגיאה: המזהה (ID) של התפקיד ריק!"
195
-
196
- # wpml-name: 83403f9d7f4181a9e4ebbc259c8b2a6c
197
- #: ../includes/class-ure-lib.php:2033
198
- #, fuzzy
199
- msgid "Error: Empty role display name is not allowed."
200
- msgstr "שגיאה: אסור להשאיר את שם התצוגה של התפקיד ריק."
201
-
202
- # wpml-name: f093e6cb4b2e171efb2f25d19479fdd0
203
- #: ../includes/class-ure-lib.php:2040
204
- #, fuzzy, php-format
205
- msgid "Role %s does not exists"
206
- msgstr "התפקיד %s אינו קיים"
207
-
208
- # wpml-name: b0125015a614e12676c361c966b6059b
209
- #: ../includes/class-ure-lib.php:2048
210
- #, fuzzy, php-format
211
- msgid "Role %s is renamed to %s successfully"
212
- msgstr "התפקיד %s iשינה את שמו ל %s בהצלחה"
213
-
214
- # wpml-name: 5ca27dda122445e597586a22e18088e6
215
- #: ../includes/class-ure-lib.php:2121
216
- #, fuzzy
217
- msgid "Error encountered during role delete operation"
218
- msgstr "ארעה שגיאה במהלך נסיון המחיקה של סוג המשתמש"
219
-
220
- # wpml-name: 0eccd6e6cff8dd08f231a324a0c43d10
221
- #: ../includes/class-ure-lib.php:2123
222
- #, fuzzy
223
- msgid "Unused roles are deleted successfully"
224
- msgstr "התפקידים שאינם בשימוש נמחקו בהצלחה"
225
-
226
- # wpml-name: 53552ec95bc8303219e8c39375763370
227
- #: ../includes/class-ure-lib.php:2125
228
- #, fuzzy, php-format
229
- msgid "Role %s is deleted successfully"
230
- msgstr "סוג המשתמש %s נמחק בהצלחה"
231
-
232
- # wpml-name: b64bfe4842bc0638b79a24687976394e
233
- #: ../includes/class-ure-lib.php:2153
234
- #, fuzzy
235
- msgid "Error encountered during default role change operation"
236
- msgstr "ארעה שגיאה בעת הנסיון לשנות את סוג משתמש ברירת מחדל"
237
-
238
- # wpml-name: 94978d82edc73eba0f44bc7bceb299f4
239
- #: ../includes/class-ure-lib.php:2156
240
- #, fuzzy, php-format
241
- msgid "Default role for new users is set to %s successfully"
242
- msgstr "סוג המשתמש %s נקבע כברירת מחדל"
243
-
244
- # wpml-name: 6a2b000934893502dc6bd0467b009610
245
- #: ../includes/class-ure-lib.php:2159
246
- #, fuzzy
247
- msgid "Can not set Administrator role as a default one"
248
- msgstr "הצג את תפקיד מנהל בעורך התפקידים"
249
-
250
- # wpml-name: f093e6cb4b2e171efb2f25d19479fdd0
251
- #: ../includes/class-ure-lib.php:2161
252
- #, fuzzy
253
- msgid "This role does not exist - "
254
- msgstr "התפקיד %s אינו קיים"
255
-
256
- # wpml-name: 344a7f427fb765610ef96eb7bce95257
257
- #: ../includes/class-ure-lib.php:2177
258
- #, fuzzy
259
- msgid "Editor"
260
- msgstr "עורך"
261
-
262
- # wpml-name: a517747c3d12f99244ae598910d979c5
263
- #: ../includes/class-ure-lib.php:2178
264
- #, fuzzy
265
- msgid "Author"
266
- msgstr "כותב"
267
-
268
- # wpml-name: 23d21ad4dea7aadf907e5e601b1905e6
269
- #: ../includes/class-ure-lib.php:2179
270
- #, fuzzy
271
- msgid "Contributor"
272
- msgstr "תורם"
273
-
274
- # wpml-name: 992c4a5b4628d8ebf671cf460254ee81
275
- #: ../includes/class-ure-lib.php:2180
276
- #, fuzzy
277
- msgid "Subscriber"
278
- msgstr "מנוי"
279
-
280
- # wpml-name: 87d980c0c79638536655ce7fa0a4b85d
281
- #: ../includes/class-ure-lib.php:2182
282
- #, fuzzy
283
- msgid "Switch themes"
284
- msgstr "החלפת תבניות"
285
-
286
- # wpml-name: 8395d1904c778ee1b2762e07a6a03878
287
- #: ../includes/class-ure-lib.php:2183
288
- #, fuzzy
289
- msgid "Edit themes"
290
- msgstr "עריכת תבניות"
291
-
292
- # wpml-name: c38bc47406355ef06ad3e10a98505536
293
- #: ../includes/class-ure-lib.php:2184
294
- #, fuzzy
295
- msgid "Activate plugins"
296
- msgstr "הפעלת תוספים"
297
-
298
- # wpml-name: a6e42eb142c87e881a0d0c92acf4ef9f
299
- #: ../includes/class-ure-lib.php:2185
300
- #, fuzzy
301
- msgid "Edit plugins"
302
- msgstr "עריכת תוספים"
303
-
304
- # wpml-name: 70118d8574d7c13da8c0a7c2acc0f659
305
- #: ../includes/class-ure-lib.php:2186
306
- #, fuzzy
307
- msgid "Edit users"
308
- msgstr "עריכת משתמשים"
309
-
310
- # wpml-name: 91c6e7a54b91cdc161f71958c597ed11
311
- #: ../includes/class-ure-lib.php:2187
312
- #, fuzzy
313
- msgid "Edit files"
314
- msgstr "עריכת קבצים"
315
-
316
- # wpml-name: 9f285ad90d3e9f5122241f2e8abd3836
317
- #: ../includes/class-ure-lib.php:2188
318
- #, fuzzy
319
- msgid "Manage options"
320
- msgstr "ניהול אפשרויות אתר"
321
-
322
- # wpml-name: abb293cb5d17f4acca429ea13d74c593
323
- #: ../includes/class-ure-lib.php:2189
324
- #, fuzzy
325
- msgid "Moderate comments"
326
- msgstr "ניהול תגובות"
327
-
328
- # wpml-name: 74c12b9adae95b65772e8c9c9c8e5af3
329
- #: ../includes/class-ure-lib.php:2190
330
- #, fuzzy
331
- msgid "Manage categories"
332
- msgstr "ניהול קטגוריות"
333
-
334
- # wpml-name: fa1a08e2a749c9f330c9a8e60cac9cc3
335
- #: ../includes/class-ure-lib.php:2191
336
- #, fuzzy
337
- msgid "Manage links"
338
- msgstr "ניהול קישורים"
339
-
340
- # wpml-name: c7de86f69db264c3950d8ae46ed2e33f
341
- #: ../includes/class-ure-lib.php:2192
342
- #, fuzzy
343
- msgid "Upload files"
344
- msgstr "העלאת קבצים"
345
-
346
- # wpml-name: 72d6d7a1885885bb55a565fd1070581a
347
- #: ../includes/class-ure-lib.php:2193
348
- #, fuzzy
349
- msgid "Import"
350
- msgstr "יבוא"
351
-
352
- # wpml-name: fdd95e5640d6d73230b7544ac261457a
353
- #: ../includes/class-ure-lib.php:2194
354
- #, fuzzy
355
- msgid "Unfiltered html"
356
- msgstr "עריכת HTML"
357
-
358
- # wpml-name: 9cd92b1d45220e13e5e257f185f3fec3
359
- #: ../includes/class-ure-lib.php:2195
360
- #, fuzzy
361
- msgid "Edit posts"
362
- msgstr "עריכת פוסטים"
363
-
364
- # wpml-name: 5fbf3fd2d5fd1e393df2c639fa16dbc9
365
- #: ../includes/class-ure-lib.php:2196
366
- #, fuzzy
367
- msgid "Edit others posts"
368
- msgstr "עריכת פוסטים של אחרים"
369
-
370
- # wpml-name: d42efc04e7900de59ed3667c971e9e9d
371
- #: ../includes/class-ure-lib.php:2197
372
- #, fuzzy
373
- msgid "Edit published posts"
374
- msgstr "עריכת פוסטים שפורסמו"
375
-
376
- # wpml-name: 64a4f8f7a855c54e1ca7c910439f5e90
377
- #: ../includes/class-ure-lib.php:2198
378
- #, fuzzy
379
- msgid "Publish posts"
380
- msgstr "פוסטים שפורסמו"
381
-
382
- # wpml-name: e7a51430fa0fbb32587c083ffae4b525
383
- #: ../includes/class-ure-lib.php:2199
384
- #, fuzzy
385
- msgid "Edit pages"
386
- msgstr "עריכת עמודים"
387
-
388
- # wpml-name: 7a1a5f3e79fdc91edf2f5ead9d66abb4
389
- #: ../includes/class-ure-lib.php:2200
390
- #, fuzzy
391
- msgid "Read"
392
- msgstr "קורא"
393
-
394
- # wpml-name: b3ef2f43e2782f8d95a4c22d577cb1bc
395
- #: ../includes/class-ure-lib.php:2201
396
- #, fuzzy
397
- msgid "Level 10"
398
- msgstr "דרגה 10"
399
-
400
- # wpml-name: d48252bc9cffec4bed5028a7c71d8196
401
- #: ../includes/class-ure-lib.php:2202
402
- #, fuzzy
403
- msgid "Level 9"
404
- msgstr "דרגה 9"
405
-
406
- # wpml-name: 625fef0c34a92b3685266a47f16c85dd
407
- #: ../includes/class-ure-lib.php:2203
408
- #, fuzzy
409
- msgid "Level 8"
410
- msgstr "דרגה 8"
411
-
412
- # wpml-name: a9acd6f427950dc61cac50b4e9ee6bc4
413
- #: ../includes/class-ure-lib.php:2204
414
- #, fuzzy
415
- msgid "Level 7"
416
- msgstr "דרגה 7"
417
-
418
- # wpml-name: b30ce92fb9295725ef29254ba5ae17e1
419
- #: ../includes/class-ure-lib.php:2205
420
- #, fuzzy
421
- msgid "Level 6"
422
- msgstr "דרגה 6"
423
-
424
- # wpml-name: 05988e43e8f2eb5efdddc2b467c4b2f3
425
- #: ../includes/class-ure-lib.php:2206
426
- #, fuzzy
427
- msgid "Level 5"
428
- msgstr "דרגה 5"
429
-
430
- # wpml-name: 309531bbe9a9d3228cd0687ec6e66bed
431
- #: ../includes/class-ure-lib.php:2207
432
- #, fuzzy
433
- msgid "Level 4"
434
- msgstr "דרגה 4"
435
-
436
- # wpml-name: 8f60a63315c55e659b1a2dd5064ceae8
437
- #: ../includes/class-ure-lib.php:2208
438
- #, fuzzy
439
- msgid "Level 3"
440
- msgstr "דרגה 3"
441
-
442
- # wpml-name: 228e9da47384bacde793a2b78d488bb0
443
- #: ../includes/class-ure-lib.php:2209
444
- #, fuzzy
445
- msgid "Level 2"
446
- msgstr "דרגה 2"
447
-
448
- # wpml-name: 5afaf1679ad0887adebaddb40e0bd3f7
449
- #: ../includes/class-ure-lib.php:2210
450
- #, fuzzy
451
- msgid "Level 1"
452
- msgstr "דרגה 1"
453
-
454
- # wpml-name: 057e95a59e032dbed970592dd1245092
455
- #: ../includes/class-ure-lib.php:2211
456
- #, fuzzy
457
- msgid "Level 0"
458
- msgstr "דרגה 0"
459
-
460
- # wpml-name: b10af907824940fe6a5aa0a77c62be6f
461
- #: ../includes/class-ure-lib.php:2212
462
- #, fuzzy
463
- msgid "Edit others pages"
464
- msgstr "עריכת דפים של אחרים"
465
-
466
- # wpml-name: c5bfc24b0b891c9465134b83b2c6c259
467
- #: ../includes/class-ure-lib.php:2213
468
- #, fuzzy
469
- msgid "Edit published pages"
470
- msgstr "עריכת דפים שפורסמו"
471
-
472
- # wpml-name: 70d789f104acf7aa83b1c5ab230f8e7c
473
- #: ../includes/class-ure-lib.php:2214
474
- #, fuzzy
475
- msgid "Publish pages"
476
- msgstr "פרסום דפים"
477
-
478
- # wpml-name: b665a2b3cb33c08decc52b8a3f3d1742
479
- #: ../includes/class-ure-lib.php:2215
480
- #, fuzzy
481
- msgid "Delete pages"
482
- msgstr "מחיקת דפים"
483
-
484
- # wpml-name: 23eaa8e106fde2a76d80bc907f55ab7e
485
- #: ../includes/class-ure-lib.php:2216
486
- #, fuzzy
487
- msgid "Delete others pages"
488
- msgstr "מחיקת דפים של אחרים"
489
-
490
- # wpml-name: 75c6bfee9157bbc48bfc4d50baab89e0
491
- #: ../includes/class-ure-lib.php:2217
492
- #, fuzzy
493
- msgid "Delete published pages"
494
- msgstr "מחיקת דפים שפורסמו"
495
-
496
- # wpml-name: 3dce6f688c85f06c63224b5c3be13919
497
- #: ../includes/class-ure-lib.php:2218
498
- #, fuzzy
499
- msgid "Delete posts"
500
- msgstr "מחיקת פוסטים"
501
-
502
- # wpml-name: c0496287732814df690c8966027a58d6
503
- #: ../includes/class-ure-lib.php:2219
504
- #, fuzzy
505
- msgid "Delete others posts"
506
- msgstr "מחיקת פוסטים של אחרים"
507
-
508
- # wpml-name: b0a2d2039494d73f81f4e476bfda24da
509
- #: ../includes/class-ure-lib.php:2220
510
- #, fuzzy
511
- msgid "Delete published posts"
512
- msgstr "מחיקת פוסטים שפורסמו"
513
-
514
- # wpml-name: dcd02c374764e49b36f0f959cc2917bb
515
- #: ../includes/class-ure-lib.php:2221
516
- #, fuzzy
517
- msgid "Delete private posts"
518
- msgstr "מחיקת פוסטים פרטיים"
519
-
520
- # wpml-name: da9ee842794f7caf9fa32271073d5f7a
521
- #: ../includes/class-ure-lib.php:2222
522
- #, fuzzy
523
- msgid "Edit private posts"
524
- msgstr "עריכת פוסטים פרטיים"
525
-
526
- # wpml-name: eab0355307288f6480f8c53a0d953d79
527
- #: ../includes/class-ure-lib.php:2223
528
- #, fuzzy
529
- msgid "Read private posts"
530
- msgstr "קריאת פוסטים פרטיים"
531
-
532
- # wpml-name: 2136c12e2beeadfe0da80a36ef967eca
533
- #: ../includes/class-ure-lib.php:2224
534
- #, fuzzy
535
- msgid "Delete private pages"
536
- msgstr "מחיקת עמודים פרטיים"
537
-
538
- # wpml-name: 4f3859ba470cb61f22a600a93c4ce11f
539
- #: ../includes/class-ure-lib.php:2225
540
- #, fuzzy
541
- msgid "Edit private pages"
542
- msgstr "מחיקת עמודים פרטיים"
543
-
544
- # wpml-name: 5faa3f2e9585e107dc5f23748a825882
545
- #: ../includes/class-ure-lib.php:2226
546
- #, fuzzy
547
- msgid "Read private pages"
548
- msgstr "קריאת עמודים פרטיים"
549
-
550
- # wpml-name: 61c484c7f1638a9dd4237cb666b91c1f
551
- #: ../includes/class-ure-lib.php:2227
552
- #, fuzzy
553
- msgid "Delete users"
554
- msgstr "מחיקת משתמשים"
555
-
556
- # wpml-name: 6cf6d76fc00f8dd12af98a37d11f623e
557
- #: ../includes/class-ure-lib.php:2228
558
- #, fuzzy
559
- msgid "Create users"
560
- msgstr "יצירת משתמשים"
561
-
562
- # wpml-name: 7110d42a34cbb3316d6d0c658fa34c86
563
- #: ../includes/class-ure-lib.php:2229
564
- #, fuzzy
565
- msgid "Unfiltered upload"
566
- msgstr "העלאת קבצים חופשית"
567
-
568
- # wpml-name: b5577d27ebfdd60a3bda83ae726d574b
569
- #: ../includes/class-ure-lib.php:2230
570
- #, fuzzy
571
- msgid "Edit dashboard"
572
- msgstr "שינוי לוח הבקרה"
573
-
574
- # wpml-name: 23c5b17dc24e40fa47ca6588932d32f7
575
- #: ../includes/class-ure-lib.php:2231
576
- #, fuzzy
577
- msgid "Update plugins"
578
- msgstr "עדכון תוספים"
579
-
580
- # wpml-name: f2a839940dae3934317d8d6a6f647ebd
581
- #: ../includes/class-ure-lib.php:2232
582
- #, fuzzy
583
- msgid "Delete plugins"
584
- msgstr "מחיקת תוספים"
585
-
586
- # wpml-name: 9d06472988c53bfc768bc7b6a788b697
587
- #: ../includes/class-ure-lib.php:2233
588
- #, fuzzy
589
- msgid "Install plugins"
590
- msgstr "התקנת תוספים"
591
-
592
- # wpml-name: 504ea4a27260ac1e8822c5877ffe526b
593
- #: ../includes/class-ure-lib.php:2234
594
- #, fuzzy
595
- msgid "Update themes"
596
- msgstr "עדכון תבניות"
597
-
598
- # wpml-name: a7d67fb17876569a4590902d3566a6fd
599
- #: ../includes/class-ure-lib.php:2235
600
- #, fuzzy
601
- msgid "Install themes"
602
- msgstr "התקנת תבניות חדשות"
603
-
604
- # wpml-name: e56e5b87db548cd42be7a8a0f916205d
605
- #: ../includes/class-ure-lib.php:2236
606
- #, fuzzy
607
- msgid "Update core"
608
- msgstr "עדכון וורדפרס"
609
-
610
- # wpml-name: f923f903857a5387d3db70494e074632
611
- #: ../includes/class-ure-lib.php:2237
612
- #, fuzzy
613
- msgid "List users"
614
- msgstr "בצפייה במשתמשים"
615
-
616
- # wpml-name: 8c7e9f2dfcd0125922dfbce36a1a4c2a
617
- #: ../includes/class-ure-lib.php:2238
618
- #, fuzzy
619
- msgid "Remove users"
620
- msgstr "הסרת משתמשים"
621
-
622
- # wpml-name: 3bf6330f5f4c7c3dfddc9670cfaf4a22
623
- #: ../includes/class-ure-lib.php:2239
624
- #, fuzzy
625
- msgid "Add users"
626
- msgstr "הוספת משתמשים"
627
-
628
- # wpml-name: 12f4ba95cdfd04b791820b9c20887913
629
- #: ../includes/class-ure-lib.php:2240
630
- #, fuzzy
631
- msgid "Promote users"
632
- msgstr "שינוי משתמשים"
633
-
634
- # wpml-name: 8841974497684dad4d55beaf2b6c52ef
635
- #: ../includes/class-ure-lib.php:2241
636
- #, fuzzy
637
- msgid "Edit theme options"
638
- msgstr "עריכת אפשרויות התבנית"
639
-
640
- # wpml-name: 335e9dea5f21dc3f591f3aceefdeed54
641
- #: ../includes/class-ure-lib.php:2242
642
- #, fuzzy
643
- msgid "Delete themes"
644
- msgstr "מחיקת תבניות"
645
-
646
- # wpml-name: 0095a9fa74d1713e43e370a7d7846224
647
- #: ../includes/class-ure-lib.php:2243
648
- #, fuzzy
649
- msgid "Export"
650
- msgstr "ייצוא תוכן"
651
-
652
- # wpml-name: 03766b9586d3012af6fc788e85d39530
653
- #: ../includes/class-ure-lib.php:2366
654
- #, fuzzy
655
- msgid "Error: Capability name must contain latin characters and digits only!"
656
- msgstr "שגיאה! שם יכולת חייב להכיל אותיות באנגלית וספרות בלבד"
657
-
658
- # wpml-name: 6dcaae98207ba2673da987515b02fe31
659
- #: ../includes/class-ure-lib.php:2379
660
- #, fuzzy, php-format
661
- msgid "Capability %s is added successfully"
662
- msgstr "היכולת %s נוספה בהצלחה"
663
-
664
- # wpml-name: d5c1ec0556aadfa88cadffb62266b83d
665
- #: ../includes/class-ure-lib.php:2381
666
- #, fuzzy, php-format
667
- msgid "Capability %s exists already"
668
- msgstr "כבר קיימת יכולת בשם %s"
669
-
670
- # wpml-name: 0e132e68574d9609d956f9be409f7384
671
- #: ../includes/class-ure-lib.php:2410
672
- #, fuzzy, php-format
673
- msgid "Error! You do not have permission to delete this capability: %s!"
674
- msgstr "שגיאה! אין לך הרשאה למחוק את היכולת %s"
675
-
676
- # wpml-name: d819128cbb44d0e2fe4eb8b8b6397871
677
- #: ../includes/class-ure-lib.php:2429
678
- #, fuzzy, php-format
679
- msgid "Capability %s was removed successfully"
680
- msgstr "היכולת %s הוסרה בהצלחה"
681
-
682
- # wpml-name: 9d290d3434589e33be3d2cad4f8323ec
683
- #: ../includes/class-ure-lib.php:2497
684
- #, fuzzy
685
- msgid "Version:"
686
- msgstr "גרסה:"
687
-
688
- # wpml-name: b63bc6c033363c8ee66beaf4ea4d5bc3
689
- #: ../includes/class-ure-lib.php:2498
690
- #, fuzzy
691
- msgid "Author's website"
692
- msgstr "אתר היוצר"
693
-
694
- # wpml-name: f919d1248270e1eca5cc6a39253264f7
695
- #: ../includes/class-ure-lib.php:2499
696
- #, fuzzy
697
- msgid "Plugin webpage"
698
- msgstr "דף התוסף"
699
-
700
- # wpml-name: accf3af923a079190cc20507285fd1e8
701
- #: ../includes/class-ure-lib.php:2500
702
- #, fuzzy
703
- msgid "Plugin download"
704
- msgstr "הורדת התוסף"
705
-
706
- # wpml-name: c49182dc0c7a70b9cd2e10853d9ec6c7
707
- #: ../includes/class-ure-lib.php:2501
708
- #: ../includes/class-user-role-editor.php:546
709
- #, fuzzy
710
- msgid "Changelog"
711
- msgstr "יומן שינויים"
712
-
713
- # wpml-name: 1fe917b01f9a3f87fa2d7d3b7643fac1
714
- #: ../includes/class-ure-lib.php:2502
715
- #, fuzzy
716
- msgid "FAQ"
717
- msgstr "שאלות נפוצות"
718
-
719
- # wpml-name: fb7b42559c6eb7c5e84ae0ad63c315d2
720
- #: ../includes/class-ure-lib.php:2575
721
- #, fuzzy
722
- msgid "Delete All Unused Roles"
723
- msgstr "מחק את כל התפקידים שאינם בשימוש"
724
-
725
- # wpml-name: 6adf97f83acf6453d4a6a4b1070f3754
726
- #: ../includes/class-ure-lib.php:2588
727
- #, fuzzy
728
- msgid "None"
729
- msgstr "תרום"
730
-
731
- #: ../includes/class-ure-lib.php:2632
732
- msgid "&mdash; No role for this site &mdash;"
733
- msgstr ""
734
-
735
- #: ../includes/class-ure-lib.php:2747
736
- #, php-format
737
- msgid "Denied: %s"
738
- msgstr ""
739
-
740
- # wpml-name: cb110c375e91e41d17060cc8723f710b
741
- #: ../includes/ure-role-edit.php:17
742
- #, fuzzy
743
- msgid "Select Role and change its capabilities:"
744
- msgstr "בחר תפקיד ושנה את היכולות שלו:"
745
-
746
- # wpml-name: 5e09edd7b2ed1864deffbd964073b27a
747
- #: ../includes/ure-role-edit.php:30 ../includes/ure-user-edit.php:54
748
- #, fuzzy
749
- msgid "Show capabilities in human readable form"
750
- msgstr "הצג יכולות באופן קריא לבני אדם"
751
-
752
- # wpml-name: 130b09deaec4b13948be95555d546f25
753
- #: ../includes/ure-role-edit.php:40 ../includes/class-ure-screen-help.php:21
754
- #: ../includes/settings-template.php:69 ../includes/ure-user-edit.php:64
755
- #, fuzzy
756
- msgid "Show deprecated capabilities"
757
- msgstr "הצג הרשאות לפי מספר"
758
-
759
- #: ../includes/ure-role-edit.php:44
760
- msgid "If checked, then apply action to ALL sites of this Network"
761
- msgstr ""
762
-
763
- # wpml-name: 3c3416f05587ed480626948fab988eea
764
- #: ../includes/ure-role-edit.php:56
765
- #, fuzzy
766
- msgid "Apply to All Sites"
767
- msgstr "החל על כל האתרים"
768
-
769
- # wpml-name: cca700a30d083e59a9879c24f255abe3
770
- #: ../includes/ure-role-edit.php:63 ../includes/ure-user-edit.php:110
771
- #, fuzzy
772
- msgid "Core capabilities:"
773
- msgstr "יכולות ליבה:"
774
-
775
- # wpml-name: dfcd600fb9e5ccb12b8bb4d83f45d35a
776
- #: ../includes/ure-role-edit.php:65 ../includes/ure-user-edit.php:112
777
- #, fuzzy
778
- msgid "Quick filter:"
779
- msgstr "סינון מהיר:"
780
-
781
- # wpml-name: 0e57c9d7615e130906e8fc6e10065ae1
782
- #: ../includes/ure-role-edit.php:83 ../includes/ure-user-edit.php:131
783
- #, fuzzy
784
- msgid "Custom capabilities:"
785
- msgstr "קביעת יכולות:"
786
-
787
- # wpml-name: a5f40dc2b5f2552187d0326e77e267eb
788
- #: ../includes/class-user-other-roles.php:82
789
- #: ../includes/class-user-other-roles.php:183
790
- #: ../includes/class-user-other-roles.php:243
791
- #, fuzzy
792
- msgid "Other Roles"
793
- msgstr "תפקידים אחרים"
794
-
795
- #: ../includes/class-user-other-roles.php:83
796
- msgid "Select additional roles for this user"
797
- msgstr ""
798
-
799
- # wpml-name: 82ec2cd6fda87713f588da75c3b1d0ed
800
- #: ../includes/class-user-other-roles.php:162
801
- #: ../includes/class-user-role-editor.php:438
802
- #, fuzzy
803
- msgid "Capabilities"
804
- msgstr "יכולות"
805
-
806
- # wpml-name: 7dce122004969d56ae2e0245cb754d35
807
- #: ../includes/class-user-other-roles.php:169
808
- #, fuzzy
809
- msgid "Edit"
810
- msgstr "עריכה"
811
-
812
- # wpml-name: 39cc0b416ba0d26679547346b8c5cf8d
813
- #: ../includes/class-user-other-roles.php:215
814
- #, fuzzy
815
- msgid "Additional Capabilities"
816
- msgstr "הוספת יכולת"
817
-
818
- # wpml-name: ee7816d892f54d4aa67456e2486d8a09
819
- #: ../includes/class-ure-screen-help.php:12
820
- #: ../includes/class-ure-screen-help.php:41
821
- #: ../includes/class-ure-screen-help.php:60
822
- #: ../includes/class-ure-screen-help.php:79
823
- #, fuzzy
824
- msgid "User Role Editor Options page help"
825
- msgstr "אפשרויות User Role Editor"
826
-
827
- # wpml-name: 6a2b000934893502dc6bd0467b009610
828
- #: ../includes/class-ure-screen-help.php:15
829
- #: ../includes/settings-template.php:53
830
- #, fuzzy
831
- msgid "Show Administrator role at User Role Editor"
832
- msgstr "הצג את תפקיד מנהל בעורך התפקידים"
833
-
834
- #: ../includes/class-ure-screen-help.php:16
835
- msgid ""
836
- "turn this option on in order to make the \"Administrator\" role available at "
837
- "the User Role Editor roles selection drop-down list. It is hidden by default "
838
- "for security reasons."
839
- msgstr ""
840
-
841
- # wpml-name: 97bcfe1a3fd7f909008bffd0318bb09b
842
- #: ../includes/class-ure-screen-help.php:18
843
- #: ../includes/settings-template.php:61
844
- #, fuzzy
845
- msgid "Show capabilities in the human readable form"
846
- msgstr "הצג יכולות באופן קריא לבני אדם"
847
-
848
- #: ../includes/class-ure-screen-help.php:19
849
- msgid ""
850
- "automatically converts capability names from the technical form for internal "
851
- "use like \"edit_others_posts\" to more user friendly form, e.g. \"Edit "
852
- "others posts\"."
853
- msgstr ""
854
-
855
- #: ../includes/class-ure-screen-help.php:22
856
- msgid ""
857
- "Capabilities like \"level_0\", \"level_1\" are deprecated and are not used "
858
- "by WordPress. They are left at the user roles for the compatibility purpose "
859
- "with the old themes and plugins code. Turning on this option will show those "
860
- "deprecated capabilities."
861
- msgstr ""
862
-
863
- # wpml-name: e16363f33a765f63f2a76c656513a3c3
864
- #: ../includes/class-ure-screen-help.php:25
865
- #: ../includes/settings-template.php:77
866
- #, fuzzy
867
- msgid "Edit user capabilities"
868
- msgstr "עריכת יכולות משתמש"
869
-
870
- #: ../includes/class-ure-screen-help.php:26
871
- msgid ""
872
- "If turned off - capabilities section of selected user is shown in readonly "
873
- "mode. Administrator can not assign capabilities to the user directly. He "
874
- "should make it using roles only."
875
- msgstr ""
876
-
877
- # wpml-name: e3ab3ebfb2e41f752d1aa68baaed6a82
878
- #: ../includes/class-ure-screen-help.php:45
879
- #: ../includes/settings-template.php:111
880
- #, fuzzy
881
- msgid "Count users without role"
882
- msgstr "ספור את המשתמשים ללא תפקיד"
883
-
884
- #: ../includes/class-ure-screen-help.php:46
885
- msgid ""
886
- "Show at the \"Users\" page a quant of users without role. Module allows to "
887
- "assign all of them an empty role \"No rights\", in order to look on the "
888
- "users list with role \"No rights\" at the separate tab then."
889
- msgstr ""
890
-
891
- # wpml-name: 31440ac9be0558c6142aaef5938adae9
892
- #: ../includes/class-ure-screen-help.php:63
893
- #, fuzzy
894
- msgid "Other default roles for new registered user"
895
- msgstr "תפקידי ברירת מחדל אחרים למשתמש רשום חדש"
896
-
897
- # wpml-name: 41b92726cf0352610f9cab72914f101f
898
- #: ../includes/class-ure-screen-help.php:64
899
- #, fuzzy
900
- msgid ""
901
- "select roles below to assign them to the new user automatically as an "
902
- "addition to the primary role. Note for multisite environment: take into "
903
- "account that other default roles should exist at the site, in order to be "
904
- "assigned to the new registered users."
905
- msgstr ""
906
- "הערה לאתר רשת: נא לקחת בחשבון שתפקידי ברירת מחדל אחרים צריכים להיות קיימים "
907
- "באתר, כדי להקצות למשתמשים נרשמים חדשים."
908
-
909
- # wpml-name: d6080c04e85946f0eace45b5d1be4672
910
- #: ../includes/class-ure-screen-help.php:82
911
- #, fuzzy
912
- msgid "Allow non super-admininstrators to create, edit and delete users"
913
- msgstr "אפשר ללמנהלי משנה ליצור, לערוך ולמחוק משתמשים"
914
-
915
- #: ../includes/class-ure-screen-help.php:83
916
- msgid ""
917
- "Super administrator only may create, edit and delete users under WordPress "
918
- "multi-site by default. Turn this option on in order to remove this "
919
- "limitation."
920
- msgstr ""
921
-
922
- # wpml-name: 811ee91f039ea705795ebf5e09bde9f5
923
- #: ../includes/class-user-role-editor.php:233
924
- #, fuzzy
925
- msgid "Change role for users without role"
926
- msgstr "שנה את התפקיד למשתמשים ללא תפקיד"
927
-
928
- # wpml-name: a34b1d6b1c46e4b902372075a840c582
929
- #: ../includes/class-user-role-editor.php:234
930
- #, fuzzy
931
- msgid "No rights"
932
- msgstr "ללא זכויות"
933
-
934
- # wpml-name: 84b4334025ddad442726d6d30fa30bb3
935
- #: ../includes/class-user-role-editor.php:235
936
- #, fuzzy
937
- msgid "Provide new role"
938
- msgstr "קבע תפקיד חדש"
939
-
940
- # wpml-name: 0e132e68574d9609d956f9be409f7384
941
- #: ../includes/class-user-role-editor.php:298
942
- #: ../includes/class-user-role-editor.php:300
943
- #, fuzzy
944
- msgid "You do not have permission to edit this user."
945
- msgstr "שגיאה! אין לך הרשאה למחוק את היכולת %s"
946
-
947
- # wpml-name: f4f70727dc34561dfde1a3c529b6205c
948
- #: ../includes/class-user-role-editor.php:535
949
- #, fuzzy
950
- msgid "Settings"
951
- msgstr "הגדרות"
952
-
953
- #: ../includes/class-user-role-editor.php:568
954
- #: ../includes/settings-template.php:21
955
- msgid "General"
956
- msgstr ""
957
-
958
- #: ../includes/class-user-role-editor.php:574
959
- #: ../includes/settings-template.php:26
960
- msgid "Additional Modules"
961
- msgstr ""
962
-
963
- # wpml-name: db135301eaf77a955b2b016f9b9d6a99
964
- #: ../includes/class-user-role-editor.php:580
965
- #: ../includes/settings-template.php:30
966
- #, fuzzy
967
- msgid "Default Roles"
968
- msgstr "תפקיד ברירת מחדל"
969
-
970
- #: ../includes/class-user-role-editor.php:586
971
- #: ../includes/settings-template.php:34
972
- msgid "Multisite"
973
- msgstr ""
974
-
975
- # wpml-name: aef323fbbd25d577170fff17c15cf857
976
- #: ../includes/class-user-role-editor.php:685
977
- #: ../includes/class-user-role-editor.php:703
978
- #: ../includes/class-user-role-editor.php:747
979
- #, fuzzy
980
- msgid "User Role Editor options are updated"
981
- msgstr "אפשרויות עורך תפקיד משתמש עודכנו"
982
-
983
- # wpml-name: 34c0807eb711e6f3442056399143676d
984
- #: ../includes/class-user-role-editor.php:731
985
- #, fuzzy
986
- msgid "Default Roles are updated"
987
- msgstr "תפקידי ברירת המחדל עודכנו"
988
-
989
- # wpml-name: cfa97a379b5b0e4a2b77f09b95ce202d
990
- #: ../includes/class-user-role-editor.php:756
991
- #, fuzzy
992
- msgid ""
993
- "You do not have sufficient permissions to manage options for User Role "
994
- "Editor."
995
- msgstr ""
996
- "אין לך הרשאות מסספיקות לנהל את האפשרויות עבור עורך התפקידים User Role Editor."
997
-
998
- # wpml-name: 45e96c0a422ce8a1a6ec1bd5eb9625c6
999
- #: ../includes/class-user-role-editor.php:885
1000
- #, fuzzy
1001
- msgid "Select All"
1002
- msgstr "בחירת הכל"
1003
-
1004
- # wpml-name: 016269c0d83a19a19a2ee0a4294740b4
1005
- #: ../includes/class-user-role-editor.php:886
1006
- #, fuzzy
1007
- msgid "Unselect All"
1008
- msgstr "לא לבחור שום דבר"
1009
-
1010
- # wpml-name: 67f115c1fddc4ce1aeb1c754001585bc
1011
- #: ../includes/class-user-role-editor.php:887
1012
- #, fuzzy
1013
- msgid "Reverse"
1014
- msgstr "להפוך"
1015
-
1016
- # wpml-name: 06933067aafd48425d67bcb01bba5cb6
1017
- #: ../includes/class-user-role-editor.php:888
1018
- #, fuzzy
1019
- msgid "Update"
1020
- msgstr "עדכן"
1021
-
1022
- # wpml-name: 85251872440cc94c6080a90451e018c4
1023
- #: ../includes/class-user-role-editor.php:889
1024
- #, fuzzy
1025
- msgid "Please confirm permissions update"
1026
- msgstr "נא לאשר את עדכון ההרשאות"
1027
-
1028
- # wpml-name: cf46e7fb1093a47a76f35fc61ab5d432
1029
- #: ../includes/class-user-role-editor.php:890
1030
- #, fuzzy
1031
- msgid "Add New Role"
1032
- msgstr "הוסף סוג משתמש חדש"
1033
-
1034
- # wpml-name: f0962c89a8b10e2fd876ca0ccab540fe
1035
- #: ../includes/class-user-role-editor.php:891
1036
- #: ../includes/class-user-role-editor.php:896
1037
- #, fuzzy
1038
- msgid "Rename Role"
1039
- msgstr "שנה שם תפקיד"
1040
-
1041
- # wpml-name: 1400ecabfd5a7c9527f71723da18dad0
1042
- #: ../includes/class-user-role-editor.php:892
1043
- #, fuzzy
1044
- msgid " Role name (ID) can not be empty!"
1045
- msgstr " שם התפקיד (מזהה) אינו יכול להישאר ריק!"
1046
-
1047
- # wpml-name: 7b94f04285f5efc287652bd40338e730
1048
- #: ../includes/class-user-role-editor.php:893
1049
- #, fuzzy
1050
- msgid ""
1051
- " Role name (ID) must contain latin characters, digits, hyphens or underscore "
1052
- "only!"
1053
- msgstr ""
1054
- " שם התפקיד (מזהה) חייב להכיל אותיות לטיניות, ספרות, מקפים או קו תחתון בלבד!"
1055
-
1056
- # wpml-name: 9d3cb86c91470b14e11d0d1355936ffb
1057
- #: ../includes/class-user-role-editor.php:894
1058
- #, fuzzy
1059
- msgid ""
1060
- " WordPress does not support numeric Role name (ID). Add latin characters to "
1061
- "it."
1062
- msgstr ""
1063
- " וורדפרס אינו תומך בשמות תפקיד מספריים (ID). נא להוסיף לזה אותיות לטיניות."
1064
-
1065
- # wpml-name: 1453b39dcc15a372640d960c6db7db25
1066
- #: ../includes/class-user-role-editor.php:895
1067
- #, fuzzy
1068
- msgid "Add Role"
1069
- msgstr "הוספת תפקיד"
1070
-
1071
- # wpml-name: 4e2626418b461869a386850b0f3b437f
1072
- #: ../includes/class-user-role-editor.php:897
1073
- #, fuzzy
1074
- msgid "Delete Role"
1075
- msgstr "מחיקת סוג משתמש"
1076
-
1077
- # wpml-name: ea4788705e6873b424c65e91c2846b19
1078
- #: ../includes/class-user-role-editor.php:898
1079
- #, fuzzy
1080
- msgid "Cancel"
1081
- msgstr "ביטול"
1082
-
1083
- # wpml-name: 39cc0b416ba0d26679547346b8c5cf8d
1084
- #: ../includes/class-user-role-editor.php:899
1085
- #, fuzzy
1086
- msgid "Add Capability"
1087
- msgstr "הוספת יכולת"
1088
-
1089
- # wpml-name: 06844dd4ec4b29fa8a354aaacbd4861a
1090
- #: ../includes/class-user-role-editor.php:900
1091
- #: ../includes/class-user-role-editor.php:909
1092
- #, fuzzy
1093
- msgid "Delete Capability"
1094
- msgstr "מחיקת יכולת"
1095
-
1096
- # wpml-name: 526d688f37a86d3c3f27d0c5016eb71d
1097
- #: ../includes/class-user-role-editor.php:901
1098
- #, fuzzy
1099
- msgid "Reset"
1100
- msgstr "איפוס"
1101
-
1102
- # wpml-name: d72422418711904043670940067cb2eb
1103
- #: ../includes/class-user-role-editor.php:902
1104
- #, fuzzy
1105
- msgid "DANGER! Resetting will restore default settings from WordPress Core."
1106
- msgstr "סכנה! איפוס ישחזר את ההגדרות לברירת המחדל של ליבת וורדפרס."
1107
-
1108
- # wpml-name: b2e7f2d766ee66eaee3248fe09b3f822
1109
- #: ../includes/class-user-role-editor.php:903
1110
- #, fuzzy
1111
- msgid ""
1112
- "If any plugins have changed capabilities in any way upon installation (such "
1113
- "as S2Member, WooCommerce, and many more), those capabilities will be DELETED!"
1114
- msgstr ""
1115
- "אם תוסף כלשהו שינה יכולות בצורה כלשהי בהתקנתו (כמו למשל S2Member, "
1116
- "WooCommerce, ורבים אחרים), יכולות אלו יימחקו!"
1117
-
1118
- # wpml-name: 832e2074e0e4c3a18713a810b77da6e3
1119
- #: ../includes/class-user-role-editor.php:904
1120
- #, fuzzy
1121
- msgid ""
1122
- "For more information on how to undo changes and restore plugin capabilities "
1123
- "go to"
1124
- msgstr "למידע נוסף על כיצד לבטל שינויים ולשחזר את יכולות התוסף עבור אל"
1125
-
1126
- # wpml-name: 140e317e0077aece29910d4f129b2cdd
1127
- #: ../includes/class-user-role-editor.php:906
1128
- #, fuzzy
1129
- msgid "Continue?"
1130
- msgstr "להמשיך?"
1131
-
1132
- # wpml-name: db135301eaf77a955b2b016f9b9d6a99
1133
- #: ../includes/class-user-role-editor.php:907
1134
- #, fuzzy
1135
- msgid "Default Role"
1136
- msgstr "תפקיד ברירת מחדל"
1137
-
1138
- # wpml-name: f28d52a1096a73cff427d1216dc578ad
1139
- #: ../includes/class-user-role-editor.php:908
1140
- #, fuzzy
1141
- msgid "Set New Default Role"
1142
- msgstr "הגדר תפקיד ברירת מחדל חדש"
1143
-
1144
- # wpml-name: b8827a096ab461b8e26931adf82c8d85
1145
- #: ../includes/class-user-role-editor.php:910
1146
- #, fuzzy
1147
- msgid ""
1148
- "Warning! Be careful - removing critical capability could crash some plugin "
1149
- "or other custom code"
1150
- msgstr ""
1151
- "זהירות! הסרה של אפשרויות קריטיות עשוי לגרום לתוספים מסוים או קוד נסמך שלא "
1152
- "לעבוד כשורה"
1153
-
1154
- # wpml-name: ba38256d66e3ae37b7b16052a0f94729
1155
- #: ../includes/class-user-role-editor.php:911
1156
- #, fuzzy
1157
- msgid " Capability name (ID) can not be empty!"
1158
- msgstr " שם היכולת (מזהה) לא יכול להיות ריק!"
1159
-
1160
- # wpml-name: 6d4c115be3e7b4f1fd70112642c9a72d
1161
- #: ../includes/class-user-role-editor.php:912
1162
- #, fuzzy
1163
- msgid ""
1164
- " Capability name (ID) must contain latin characters, digits, hyphens or "
1165
- "underscore only!"
1166
- msgstr ""
1167
- " שם היכולת (מזהה) חייב להכיל אותיות לטיניות, ספרות, מקפים או קו תחתון בלבד!"
1168
-
1169
- # wpml-name: ee7816d892f54d4aa67456e2486d8a09
1170
- #: ../includes/settings-template.php:17
1171
- #, fuzzy
1172
- msgid "User Role Editor - Options"
1173
- msgstr "אפשרויות User Role Editor"
1174
-
1175
- # wpml-name: 8f7f4c1ce7a4f933663d10543562b096
1176
- #: ../includes/settings-template.php:39
1177
- #, fuzzy
1178
- msgid "About"
1179
- msgstr "אודות"
1180
-
1181
- # wpml-name: c9cc8cce247e49bae79f15173ce97354
1182
- #: ../includes/settings-template.php:90 ../includes/settings-template.php:126
1183
- #: ../includes/settings-template.php:158 ../includes/settings-template.php:190
1184
- #, fuzzy
1185
- msgid "Save"
1186
- msgstr "שמירה"
1187
-
1188
- # wpml-name: c33a7c260a5f56bf1e00ec5b3fe9d2ea
1189
- #: ../includes/settings-template.php:138
1190
- #, fuzzy
1191
- msgid "Primary default role: "
1192
- msgstr "תפקיד ברירת מחדל ראשי: "
1193
-
1194
- # wpml-name: 75fcf18acf2e8b995a2cf3e563d57e02
1195
- #: ../includes/settings-template.php:145
1196
- #, fuzzy
1197
- msgid "Other default roles for new registered user: "
1198
- msgstr "תפקידי ברירת מחדל אחרים למשתמש רשום חדש:"
1199
-
1200
- # wpml-name: 41b92726cf0352610f9cab72914f101f
1201
- #: ../includes/settings-template.php:151
1202
- #, fuzzy
1203
- msgid ""
1204
- "Note for multisite environment: take into account that other default roles "
1205
- "should exist at the site, in order to be assigned to the new registered "
1206
- "users."
1207
- msgstr ""
1208
- "הערה לאתר רשת: נא לקחת בחשבון שתפקידי ברירת מחדל אחרים צריכים להיות קיימים "
1209
- "באתר, כדי להקצות למשתמשים נרשמים חדשים."
1210
-
1211
- # wpml-name: 4767dba7bf9ad16cdee8714563128ab1
1212
- #: ../includes/settings-template.php:177
1213
- #, fuzzy
1214
- msgid "Allow non super administrators to create, edit, and delete users"
1215
- msgstr "אפשר למנהלי משנה ליצור, לערוך ולמחוק משתמשים"
1216
-
1217
- # wpml-name: 5213962fd38769a637909d6bc2a37197
1218
- #: ../includes/ure-user-edit.php:32
1219
- #, fuzzy
1220
- msgid "Network Super Admin"
1221
- msgstr "מנהל-על של רשת"
1222
-
1223
- # wpml-name: 3c4a4bfb7afa015a22eee9e5b9b098e2
1224
- #: ../includes/ure-user-edit.php:35
1225
- #, fuzzy
1226
- msgid "Change capabilities for user"
1227
- msgstr "שינוי יכולות המשתמש"
1228
-
1229
- # wpml-name: 670867664b460254a4dfcb782c811472
1230
- #: ../includes/ure-user-edit.php:72
1231
- #, fuzzy
1232
- msgid "Primary Role:"
1233
- msgstr "תפקיד עיקרי:"
1234
-
1235
- # wpml-name: 918b62d985dd5ef7af537376c0a8273b
1236
- #: ../includes/ure-user-edit.php:82
1237
- #, fuzzy
1238
- msgid "bbPress Role:"
1239
- msgstr "תפקיד bbPress:"
1240
-
1241
- # wpml-name: 3ebb5c3609cf2634c669e655a7bfb162
1242
- #: ../includes/ure-user-edit.php:92
1243
- #, fuzzy
1244
- msgid "Other Roles:"
1245
- msgstr "תפקידים אחרים:"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
lang/user-role-editor-hu_HU.mo DELETED
Binary file
lang/user-role-editor-hu_HU.po DELETED
@@ -1,928 +0,0 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: User Role Editor 4.16\n"
4
- "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2015-09-11 21:06+0100\n"
6
- "PO-Revision-Date: \n"
7
- "Last-Translator: Vladimir Garagulya <vladimir@shinephp.com>\n"
8
- "Language-Team: \n"
9
- "Language: hu_HU\n"
10
- "MIME-Version: 1.0\n"
11
- "Content-Type: text/plain; charset=UTF-8\n"
12
- "Content-Transfer-Encoding: 8bit\n"
13
- "X-Poedit-SourceCharset: UTF-8\n"
14
- "X-Poedit-KeywordsList: __;_e;esc_html__;esc_html_e\n"
15
- "X-Poedit-Basepath: .\n"
16
- "X-Generator: Poedit 1.5.4\n"
17
- "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
- "X-Poedit-SearchPath-0: ..\n"
19
-
20
- #: ../includes/class-ure-lib.php:247
21
- msgid "Error: wrong request"
22
- msgstr "Hiba: hibás kérés"
23
-
24
- #: ../includes/class-ure-lib.php:280 ../includes/class-ure-lib.php:291
25
- msgid "Role name (ID): "
26
- msgstr "Szerepkör név (azonosító):"
27
-
28
- #: ../includes/class-ure-lib.php:282 ../includes/class-ure-lib.php:293
29
- msgid "Display Role Name: "
30
- msgstr "Szerepkör megnevezése:"
31
-
32
- #: ../includes/class-ure-lib.php:284
33
- msgid "Make copy of: "
34
- msgstr "Ennek a másolata:"
35
-
36
- #: ../includes/class-ure-lib.php:300
37
- msgid "Select Role:"
38
- msgstr "Válasszon szerepkört:"
39
-
40
- #: ../includes/class-ure-lib.php:315
41
- msgid "Delete:"
42
- msgstr "Törlés:"
43
-
44
- #: ../includes/class-ure-lib.php:322
45
- msgid "Capability name (ID): "
46
- msgstr "Képesség név (azonosító):"
47
-
48
- #: ../includes/class-ure-lib.php:339
49
- #: ../includes/class-user-role-editor.php:596
50
- #: ../includes/class-user-role-editor.php:625
51
- msgid "User Role Editor"
52
- msgstr "Szerepkör szerkesztő"
53
-
54
- #: ../includes/class-ure-lib.php:436
55
- msgid "Error: "
56
- msgstr "Hiba:"
57
-
58
- #: ../includes/class-ure-lib.php:436
59
- msgid "Role"
60
- msgstr "Szerepkör"
61
-
62
- #: ../includes/class-ure-lib.php:437
63
- msgid "does not exist"
64
- msgstr "nem létezik"
65
-
66
- #: ../includes/class-ure-lib.php:480
67
- msgid "Role is updated successfully"
68
- msgstr "Szerepkör sikeresen frissítve"
69
-
70
- #: ../includes/class-ure-lib.php:482
71
- msgid "Roles are updated for all network"
72
- msgstr "Szerepkörök frissítése a teljes hálózaton"
73
-
74
- #: ../includes/class-ure-lib.php:488
75
- msgid "Error occured during role(s) update"
76
- msgstr "Hiba történt a szerepkör(ök) frissítése során"
77
-
78
- #: ../includes/class-ure-lib.php:495
79
- msgid "User capabilities are updated successfully"
80
- msgstr "Felhasználó képességei sikeresen frissítve"
81
-
82
- #: ../includes/class-ure-lib.php:500
83
- msgid "Error occured during user update"
84
- msgstr "Hiba történt a felhasználó frissítése során"
85
-
86
- #: ../includes/class-ure-lib.php:558
87
- msgid "User Roles are restored to WordPress default values. "
88
- msgstr "Felhasználói szerepkörök visszaállítva a WordPress alaphelyzetébe."
89
-
90
- #: ../includes/class-ure-lib.php:1436
91
- msgid "read about"
92
- msgstr ""
93
-
94
- #: ../includes/class-ure-lib.php:1437
95
- msgid "user capability"
96
- msgstr ""
97
-
98
- #: ../includes/class-ure-lib.php:1438
99
- msgid "Help"
100
- msgstr "Súgó"
101
-
102
- #: ../includes/class-ure-lib.php:1693 ../includes/class-ure-lib.php:1946
103
- #: ../includes/class-ure-lib.php:2062 ../includes/class-ure-lib.php:2110
104
- #: ../includes/class-ure-lib.php:2358 ../includes/class-ure-lib.php:2403
105
- #: ../includes/class-user-role-editor.php:828
106
- msgid "Insufficient permissions to work with User Role Editor"
107
- msgstr "Nincs elég jogosultsága a Szerepkör szerkesztő használatához"
108
-
109
- #: ../includes/class-ure-lib.php:1909
110
- msgid "Error is occur. Please check the log file."
111
- msgstr "Hiba történt. Nézze meg a naplófájlt!"
112
-
113
- #: ../includes/class-ure-lib.php:1955 ../includes/class-ure-lib.php:2022
114
- msgid ""
115
- "Error: Role ID must contain latin characters, digits, hyphens or underscore "
116
- "only!"
117
- msgstr ""
118
- "Hiba: a szerepkör azonosító csak latin betűkből, számokból, kötőjelből és "
119
- "aláhúzásból állhat."
120
-
121
- #: ../includes/class-ure-lib.php:1959 ../includes/class-ure-lib.php:2026
122
- msgid ""
123
- "Error: WordPress does not support numeric Role name (ID). Add latin "
124
- "characters to it."
125
- msgstr ""
126
- "Hiba: a WordPress nem támogatja a numerikus szerepkör neveket "
127
- "(azonosítókat). Legyen benn legalább egy latin betű."
128
-
129
- #: ../includes/class-ure-lib.php:1974
130
- #, php-format
131
- msgid "Role %s exists already"
132
- msgstr "%s szerepkör már létezik"
133
-
134
- #: ../includes/class-ure-lib.php:1989
135
- msgid "Error is encountered during new role create operation"
136
- msgstr "Hiba történt az új szerepkör létrehozása során."
137
-
138
- #: ../includes/class-ure-lib.php:1991
139
- #, php-format
140
- msgid "Role %s is created successfully"
141
- msgstr "%s szerepkör sikeresen létrehozva"
142
-
143
- #: ../includes/class-ure-lib.php:2015
144
- msgid "Error: Role ID is empty!"
145
- msgstr "Hiba: a szerepkör azonosító üres!"
146
-
147
- #: ../includes/class-ure-lib.php:2033
148
- msgid "Error: Empty role display name is not allowed."
149
- msgstr "Hiba: nem lehet üres a szerepkör megjelenítendő neve."
150
-
151
- #: ../includes/class-ure-lib.php:2040
152
- #, php-format
153
- msgid "Role %s does not exists"
154
- msgstr "%s szerepkör nem létezik"
155
-
156
- #: ../includes/class-ure-lib.php:2048
157
- #, php-format
158
- msgid "Role %s is renamed to %s successfully"
159
- msgstr "%s szerepkör sikeresen átnevezve erre: %s"
160
-
161
- #: ../includes/class-ure-lib.php:2121
162
- msgid "Error encountered during role delete operation"
163
- msgstr "Hiba történt a szerepkör törlése során."
164
-
165
- #: ../includes/class-ure-lib.php:2123
166
- msgid "Unused roles are deleted successfully"
167
- msgstr "A nem használt szerepkörök sikeresen törölve lettek."
168
-
169
- #: ../includes/class-ure-lib.php:2125
170
- #, php-format
171
- msgid "Role %s is deleted successfully"
172
- msgstr "%s szerepkör sikeresen törölve lett."
173
-
174
- #: ../includes/class-ure-lib.php:2153
175
- msgid "Error encountered during default role change operation"
176
- msgstr "Hiba történt az alap szerepkör módosítása során."
177
-
178
- #: ../includes/class-ure-lib.php:2156
179
- #, php-format
180
- msgid "Default role for new users is set to %s successfully"
181
- msgstr "Az új felhasználók alap szerepköre sikeresen módosítva erre: %s"
182
-
183
- #: ../includes/class-ure-lib.php:2159
184
- #, fuzzy
185
- msgid "Can not set Administrator role as a default one"
186
- msgstr "Adminisztrátor szerepkör megjelenítése a Szerepkör szerkesztőben"
187
-
188
- #: ../includes/class-ure-lib.php:2161
189
- #, fuzzy
190
- msgid "This role does not exist - "
191
- msgstr "%s szerepkör nem létezik"
192
-
193
- #: ../includes/class-ure-lib.php:2177
194
- msgid "Editor"
195
- msgstr "Szerkesztő"
196
-
197
- #: ../includes/class-ure-lib.php:2178
198
- msgid "Author"
199
- msgstr "Szerző"
200
-
201
- #: ../includes/class-ure-lib.php:2179
202
- msgid "Contributor"
203
- msgstr "Közreműködő"
204
-
205
- #: ../includes/class-ure-lib.php:2180
206
- msgid "Subscriber"
207
- msgstr "Feliratkozó"
208
-
209
- #: ../includes/class-ure-lib.php:2182
210
- msgid "Switch themes"
211
- msgstr "Sablon kiválasztása"
212
-
213
- #: ../includes/class-ure-lib.php:2183
214
- msgid "Edit themes"
215
- msgstr "Sablonok szerkesztése"
216
-
217
- #: ../includes/class-ure-lib.php:2184
218
- msgid "Activate plugins"
219
- msgstr "Bővítmény bekapcsolása"
220
-
221
- #: ../includes/class-ure-lib.php:2185
222
- msgid "Edit plugins"
223
- msgstr "Bővítmények szerkesztése"
224
-
225
- #: ../includes/class-ure-lib.php:2186
226
- msgid "Edit users"
227
- msgstr "Felhasználók szerkesztése"
228
-
229
- #: ../includes/class-ure-lib.php:2187
230
- msgid "Edit files"
231
- msgstr "Fájlok szerkesztése"
232
-
233
- #: ../includes/class-ure-lib.php:2188
234
- msgid "Manage options"
235
- msgstr "Beállítások kezelése"
236
-
237
- #: ../includes/class-ure-lib.php:2189
238
- msgid "Moderate comments"
239
- msgstr "Hozzászólások moderálása"
240
-
241
- #: ../includes/class-ure-lib.php:2190
242
- msgid "Manage categories"
243
- msgstr "Kategóriák kezelése"
244
-
245
- #: ../includes/class-ure-lib.php:2191
246
- msgid "Manage links"
247
- msgstr "Hivatkozások kezelése"
248
-
249
- #: ../includes/class-ure-lib.php:2192
250
- msgid "Upload files"
251
- msgstr "Fájlok feltöltése"
252
-
253
- #: ../includes/class-ure-lib.php:2193
254
- msgid "Import"
255
- msgstr "Importálás"
256
-
257
- #: ../includes/class-ure-lib.php:2194
258
- msgid "Unfiltered html"
259
- msgstr "Szűretlen HTML"
260
-
261
- #: ../includes/class-ure-lib.php:2195
262
- msgid "Edit posts"
263
- msgstr "Bejegyzések szerkesztése"
264
-
265
- #: ../includes/class-ure-lib.php:2196
266
- msgid "Edit others posts"
267
- msgstr "Mások bejegyzéseinek szerkeszése"
268
-
269
- #: ../includes/class-ure-lib.php:2197
270
- msgid "Edit published posts"
271
- msgstr "Közzétett bejegyzések szerkesztése"
272
-
273
- #: ../includes/class-ure-lib.php:2198
274
- msgid "Publish posts"
275
- msgstr "Bejegyzések közzététele"
276
-
277
- #: ../includes/class-ure-lib.php:2199
278
- msgid "Edit pages"
279
- msgstr "Oldalak szerkesztése"
280
-
281
- #: ../includes/class-ure-lib.php:2200
282
- msgid "Read"
283
- msgstr "Olvasás"
284
-
285
- #: ../includes/class-ure-lib.php:2201
286
- msgid "Level 10"
287
- msgstr "10. szint"
288
-
289
- #: ../includes/class-ure-lib.php:2202
290
- msgid "Level 9"
291
- msgstr "9. szint"
292
-
293
- #: ../includes/class-ure-lib.php:2203
294
- msgid "Level 8"
295
- msgstr "8. szint"
296
-
297
- #: ../includes/class-ure-lib.php:2204
298
- msgid "Level 7"
299
- msgstr "7. szint"
300
-
301
- #: ../includes/class-ure-lib.php:2205
302
- msgid "Level 6"
303
- msgstr "6. szint"
304
-
305
- #: ../includes/class-ure-lib.php:2206
306
- msgid "Level 5"
307
- msgstr "5. szint"
308
-
309
- #: ../includes/class-ure-lib.php:2207
310
- msgid "Level 4"
311
- msgstr "4. szint"
312
-
313
- #: ../includes/class-ure-lib.php:2208
314
- msgid "Level 3"
315
- msgstr "3. szint"
316
-
317
- #: ../includes/class-ure-lib.php:2209
318
- msgid "Level 2"
319
- msgstr "2. szint"
320
-
321
- #: ../includes/class-ure-lib.php:2210
322
- msgid "Level 1"
323
- msgstr "1. szint"
324
-
325
- #: ../includes/class-ure-lib.php:2211
326
- msgid "Level 0"
327
- msgstr "0. szint"
328
-
329
- #: ../includes/class-ure-lib.php:2212
330
- msgid "Edit others pages"
331
- msgstr "Mások oldalainak szerkesztése"
332
-
333
- #: ../includes/class-ure-lib.php:2213
334
- msgid "Edit published pages"
335
- msgstr "Közzétett oldalak szerkesztése"
336
-
337
- #: ../includes/class-ure-lib.php:2214
338
- msgid "Publish pages"
339
- msgstr "Oldalak közzététele"
340
-
341
- #: ../includes/class-ure-lib.php:2215
342
- msgid "Delete pages"
343
- msgstr "Oldalak törlése"
344
-
345
- #: ../includes/class-ure-lib.php:2216
346
- msgid "Delete others pages"
347
- msgstr "Mások oldalainak törlése"
348
-
349
- #: ../includes/class-ure-lib.php:2217
350
- msgid "Delete published pages"
351
- msgstr "Közzétett oldalak törlése"
352
-
353
- #: ../includes/class-ure-lib.php:2218
354
- msgid "Delete posts"
355
- msgstr "Bejegyzések törlése"
356
-
357
- #: ../includes/class-ure-lib.php:2219
358
- msgid "Delete others posts"
359
- msgstr "Mások bejegyzéseinek törlése"
360
-
361
- #: ../includes/class-ure-lib.php:2220
362
- msgid "Delete published posts"
363
- msgstr "Közzétett bejegyzések törlése"
364
-
365
- #: ../includes/class-ure-lib.php:2221
366
- msgid "Delete private posts"
367
- msgstr "Privát bejegyzések törlése"
368
-
369
- #: ../includes/class-ure-lib.php:2222
370
- msgid "Edit private posts"
371
- msgstr "Privát bejegyzések szerkesztése"
372
-
373
- #: ../includes/class-ure-lib.php:2223
374
- msgid "Read private posts"
375
- msgstr "Privát bejegyzések olvasása"
376
-
377
- #: ../includes/class-ure-lib.php:2224
378
- msgid "Delete private pages"
379
- msgstr "Privát oldalak törlése"
380
-
381
- #: ../includes/class-ure-lib.php:2225
382
- msgid "Edit private pages"
383
- msgstr "Privát oldalak szerkesztése"
384
-
385
- #: ../includes/class-ure-lib.php:2226
386
- msgid "Read private pages"
387
- msgstr "Privát oldalak olvasása"
388
-
389
- #: ../includes/class-ure-lib.php:2227
390
- msgid "Delete users"
391
- msgstr "Felhasználók törlése"
392
-
393
- #: ../includes/class-ure-lib.php:2228
394
- msgid "Create users"
395
- msgstr "Felhasználók létrehozása"
396
-
397
- #: ../includes/class-ure-lib.php:2229
398
- msgid "Unfiltered upload"
399
- msgstr "Szűretlen feltöltés"
400
-
401
- #: ../includes/class-ure-lib.php:2230
402
- msgid "Edit dashboard"
403
- msgstr "Vezérlőpult szerkesztése"
404
-
405
- #: ../includes/class-ure-lib.php:2231
406
- msgid "Update plugins"
407
- msgstr "Bővítmények frissítése"
408
-
409
- #: ../includes/class-ure-lib.php:2232
410
- msgid "Delete plugins"
411
- msgstr "Bővítmények törlése"
412
-
413
- #: ../includes/class-ure-lib.php:2233
414
- msgid "Install plugins"
415
- msgstr "Bővítmények telepítése"
416
-
417
- #: ../includes/class-ure-lib.php:2234
418
- msgid "Update themes"
419
- msgstr "Sablonok frissítése"
420
-
421
- #: ../includes/class-ure-lib.php:2235
422
- msgid "Install themes"
423
- msgstr "Sablonok telepítése"
424
-
425
- #: ../includes/class-ure-lib.php:2236
426
- msgid "Update core"
427
- msgstr "Mag frissítése"
428
-
429
- #: ../includes/class-ure-lib.php:2237
430
- msgid "List users"
431
- msgstr "Felhasználók listázása"
432
-
433
- #: ../includes/class-ure-lib.php:2238
434
- msgid "Remove users"
435
- msgstr "Felhasználók törlése"
436
-
437
- #: ../includes/class-ure-lib.php:2239
438
- msgid "Add users"
439
- msgstr "Felhasználók hozzáadása"
440
-
441
- #: ../includes/class-ure-lib.php:2240
442
- msgid "Promote users"
443
- msgstr "Felhasználók előléptetése"
444
-
445
- #: ../includes/class-ure-lib.php:2241
446
- msgid "Edit theme options"
447
- msgstr "Sablon beállítások módosítása"
448
-
449
- #: ../includes/class-ure-lib.php:2242
450
- msgid "Delete themes"
451
- msgstr "Sablonok törlése"
452
-
453
- #: ../includes/class-ure-lib.php:2243
454
- msgid "Export"
455
- msgstr "Exportálás"
456
-
457
- #: ../includes/class-ure-lib.php:2366
458
- msgid "Error: Capability name must contain latin characters and digits only!"
459
- msgstr "Hiba: a képesség neve csak latin betűkből és számokból állhat."
460
-
461
- #: ../includes/class-ure-lib.php:2379
462
- #, php-format
463
- msgid "Capability %s is added successfully"
464
- msgstr "%s képesség sikeresen hozzáadva"
465
-
466
- #: ../includes/class-ure-lib.php:2381
467
- #, php-format
468
- msgid "Capability %s exists already"
469
- msgstr "%s képesség már létezik"
470
-
471
- #: ../includes/class-ure-lib.php:2410
472
- #, php-format
473
- msgid "Error! You do not have permission to delete this capability: %s!"
474
- msgstr "Hiba! Nincs jogosultsága a képesség (%s) törléséhez."
475
-
476
- #: ../includes/class-ure-lib.php:2429
477
- #, fuzzy, php-format
478
- msgid "Capability %s was removed successfully"
479
- msgstr "%s képesség sikeresen törölve"
480
-
481
- #: ../includes/class-ure-lib.php:2497
482
- msgid "Version:"
483
- msgstr "Verzió:"
484
-
485
- #: ../includes/class-ure-lib.php:2498
486
- msgid "Author's website"
487
- msgstr "Szerző weboldala"
488
-
489
- #: ../includes/class-ure-lib.php:2499
490
- msgid "Plugin webpage"
491
- msgstr "Bővítmény weboldala"
492
-
493
- #: ../includes/class-ure-lib.php:2500
494
- msgid "Plugin download"
495
- msgstr "Bővítmény letöltése"
496
-
497
- #: ../includes/class-ure-lib.php:2501
498
- #: ../includes/class-user-role-editor.php:546
499
- msgid "Changelog"
500
- msgstr "Változások naplója"
501
-
502
- #: ../includes/class-ure-lib.php:2502
503
- msgid "FAQ"
504
- msgstr "GyIK"
505
-
506
- #: ../includes/class-ure-lib.php:2575
507
- msgid "Delete All Unused Roles"
508
- msgstr "Minden nem használt szerepkör törlése"
509
-
510
- #: ../includes/class-ure-lib.php:2588
511
- msgid "None"
512
- msgstr "Nincs"
513
-
514
- #: ../includes/class-ure-lib.php:2632
515
- msgid "&mdash; No role for this site &mdash;"
516
- msgstr "&mdash; Nincs szerepköre ezen az oldalon &mdash;"
517
-
518
- #: ../includes/class-ure-lib.php:2747
519
- #, php-format
520
- msgid "Denied: %s"
521
- msgstr ""
522
-
523
- #: ../includes/ure-role-edit.php:17
524
- msgid "Select Role and change its capabilities:"
525
- msgstr "Szerepkör kiválasztása a képességeinek módosításához:"
526
-
527
- #: ../includes/ure-role-edit.php:30 ../includes/ure-user-edit.php:54
528
- msgid "Show capabilities in human readable form"
529
- msgstr "Képességek megjelenítése olvasható formában"
530
-
531
- #: ../includes/ure-role-edit.php:40 ../includes/class-ure-screen-help.php:21
532
- #: ../includes/settings-template.php:69 ../includes/ure-user-edit.php:64
533
- msgid "Show deprecated capabilities"
534
- msgstr "Elavult képességek megjelenítése"
535
-
536
- #: ../includes/ure-role-edit.php:44
537
- msgid "If checked, then apply action to ALL sites of this Network"
538
- msgstr ""
539
- "Ha bejelölve, akkor a művelet a hálózat minden weboldalára érvényesülni fog"
540
-
541
- #: ../includes/ure-role-edit.php:56
542
- msgid "Apply to All Sites"
543
- msgstr "Alkalmazás minden oldalra"
544
-
545
- #: ../includes/ure-role-edit.php:63 ../includes/ure-user-edit.php:110
546
- msgid "Core capabilities:"
547
- msgstr "Gyári képességek:"
548
-
549
- #: ../includes/ure-role-edit.php:65 ../includes/ure-user-edit.php:112
550
- msgid "Quick filter:"
551
- msgstr "Gyors szűrés:"
552
-
553
- #: ../includes/ure-role-edit.php:83 ../includes/ure-user-edit.php:131
554
- msgid "Custom capabilities:"
555
- msgstr "Egyedi képességek:"
556
-
557
- #: ../includes/class-user-other-roles.php:82
558
- #: ../includes/class-user-other-roles.php:183
559
- #: ../includes/class-user-other-roles.php:243
560
- msgid "Other Roles"
561
- msgstr "Más szerepkörök"
562
-
563
- #: ../includes/class-user-other-roles.php:83
564
- msgid "Select additional roles for this user"
565
- msgstr ""
566
-
567
- #: ../includes/class-user-other-roles.php:162
568
- #: ../includes/class-user-role-editor.php:438
569
- msgid "Capabilities"
570
- msgstr "Képességek"
571
-
572
- #: ../includes/class-user-other-roles.php:169
573
- msgid "Edit"
574
- msgstr "Szerkeszt"
575
-
576
- #: ../includes/class-user-other-roles.php:215
577
- #, fuzzy
578
- msgid "Additional Capabilities"
579
- msgstr "Új képesség"
580
-
581
- #: ../includes/class-ure-screen-help.php:12
582
- #: ../includes/class-ure-screen-help.php:41
583
- #: ../includes/class-ure-screen-help.php:60
584
- #: ../includes/class-ure-screen-help.php:79
585
- msgid "User Role Editor Options page help"
586
- msgstr ""
587
-
588
- #: ../includes/class-ure-screen-help.php:15
589
- #: ../includes/settings-template.php:53
590
- msgid "Show Administrator role at User Role Editor"
591
- msgstr "Adminisztrátor szerepkör megjelenítése a Szerepkör szerkesztőben"
592
-
593
- #: ../includes/class-ure-screen-help.php:16
594
- msgid ""
595
- "turn this option on in order to make the \"Administrator\" role available at "
596
- "the User Role Editor roles selection drop-down list. It is hidden by default "
597
- "for security reasons."
598
- msgstr ""
599
- "ha engedélyezve van, akkor az „Adminisztrátor” szerepkör is megjelenik a "
600
- "legördülő listákban a Szerepkör szerkesztőben. Alapértelmezésként el van "
601
- "rejtve biztonsági okok miatt."
602
-
603
- #: ../includes/class-ure-screen-help.php:18
604
- #: ../includes/settings-template.php:61
605
- msgid "Show capabilities in the human readable form"
606
- msgstr "Képességek megjelenítése könnyen olvasható formában"
607
-
608
- #: ../includes/class-ure-screen-help.php:19
609
- msgid ""
610
- "automatically converts capability names from the technical form for internal "
611
- "use like \"edit_others_posts\" to more user friendly form, e.g. \"Edit "
612
- "others posts\"."
613
- msgstr ""
614
- "olvashatóvá alakítja (pl: „Mások bejegyzéseinek szerkesztése”) a belső "
615
- "használatra szánt technikai formát (pl: ”edit_others_posts”)."
616
-
617
- #: ../includes/class-ure-screen-help.php:22
618
- msgid ""
619
- "Capabilities like \"level_0\", \"level_1\" are deprecated and are not used "
620
- "by WordPress. They are left at the user roles for the compatibility purpose "
621
- "with the old themes and plugins code. Turning on this option will show those "
622
- "deprecated capabilities."
623
- msgstr ""
624
- "pár képesség (pl: ‟level_0”, ‟level_1”) elavult, és a WordPress már nem "
625
- "használja. Csak a régi sablonokkal és bővítményekkel való kompatíbilitás "
626
- "miatt maradtak meg. Ez az opció ezeket az elavult képességeket jeleníti meg."
627
-
628
- #: ../includes/class-ure-screen-help.php:25
629
- #: ../includes/settings-template.php:77
630
- msgid "Edit user capabilities"
631
- msgstr ""
632
-
633
- #: ../includes/class-ure-screen-help.php:26
634
- msgid ""
635
- "If turned off - capabilities section of selected user is shown in readonly "
636
- "mode. Administrator can not assign capabilities to the user directly. He "
637
- "should make it using roles only."
638
- msgstr ""
639
-
640
- #: ../includes/class-ure-screen-help.php:45
641
- #: ../includes/settings-template.php:111
642
- msgid "Count users without role"
643
- msgstr "Szerepkör nélküli felhasználók számlálása"
644
-
645
- #: ../includes/class-ure-screen-help.php:46
646
- msgid ""
647
- "Show at the \"Users\" page a quant of users without role. Module allows to "
648
- "assign all of them an empty role \"No rights\", in order to look on the "
649
- "users list with role \"No rights\" at the separate tab then."
650
- msgstr ""
651
-
652
- #: ../includes/class-ure-screen-help.php:63
653
- msgid "Other default roles for new registered user"
654
- msgstr "Egyéb alap szerepkörök újonnan regisztrált felhasználók számára:"
655
-
656
- #: ../includes/class-ure-screen-help.php:64
657
- msgid ""
658
- "select roles below to assign them to the new user automatically as an "
659
- "addition to the primary role. Note for multisite environment: take into "
660
- "account that other default roles should exist at the site, in order to be "
661
- "assigned to the new registered users."
662
- msgstr ""
663
- "válassza ki alább az új felhasználókhoz (az elsődlegesen kívül) "
664
- "automatikusan hozzárendelendő szerepköröket. Megjegyzés a MultiSite "
665
- "környezethez: vegye figyelembe, hogy több alap szerepkörnek is léteznie kell "
666
- "a weboldalon, az új felhasználók létrehozásához."
667
-
668
- #: ../includes/class-ure-screen-help.php:82
669
- msgid "Allow non super-admininstrators to create, edit and delete users"
670
- msgstr ""
671
- "Nem szuperadminok is hozhassanak létre, módosíthassanak és törölhessenek "
672
- "felhasználókat"
673
-
674
- #: ../includes/class-ure-screen-help.php:83
675
- msgid ""
676
- "Super administrator only may create, edit and delete users under WordPress "
677
- "multi-site by default. Turn this option on in order to remove this "
678
- "limitation."
679
- msgstr ""
680
- "WordPress MultiSite esetén csak a szuperadminok hozhatnak létre, "
681
- "módosíthatnak és törölhetnek felhasználókat. Ezzel az opcióval ez a megkötés "
682
- "feloldható."
683
-
684
- #: ../includes/class-user-role-editor.php:233
685
- msgid "Change role for users without role"
686
- msgstr "Szerepkör nélküli felhasználók szerepkörének megadása"
687
-
688
- #: ../includes/class-user-role-editor.php:234
689
- msgid "No rights"
690
- msgstr "Nincs jogosultság"
691
-
692
- #: ../includes/class-user-role-editor.php:235
693
- msgid "Provide new role"
694
- msgstr "Új szerepkör megadása"
695
-
696
- #: ../includes/class-user-role-editor.php:298
697
- #: ../includes/class-user-role-editor.php:300
698
- msgid "You do not have permission to edit this user."
699
- msgstr "Nincs jogosultsága a felhasználó szerkesztéséhez."
700
-
701
- #: ../includes/class-user-role-editor.php:535
702
- msgid "Settings"
703
- msgstr "Beállítások"
704
-
705
- #: ../includes/class-user-role-editor.php:568
706
- #: ../includes/settings-template.php:21
707
- msgid "General"
708
- msgstr "Általános"
709
-
710
- #: ../includes/class-user-role-editor.php:574
711
- #: ../includes/settings-template.php:26
712
- msgid "Additional Modules"
713
- msgstr "További modulok"
714
-
715
- #: ../includes/class-user-role-editor.php:580
716
- #: ../includes/settings-template.php:30
717
- msgid "Default Roles"
718
- msgstr "Alap szerepkörök"
719
-
720
- #: ../includes/class-user-role-editor.php:586
721
- #: ../includes/settings-template.php:34
722
- msgid "Multisite"
723
- msgstr "Multisite"
724
-
725
- #: ../includes/class-user-role-editor.php:685
726
- #: ../includes/class-user-role-editor.php:703
727
- #: ../includes/class-user-role-editor.php:747
728
- msgid "User Role Editor options are updated"
729
- msgstr "Szerepkör szerkesztő beállításai frissítve"
730
-
731
- #: ../includes/class-user-role-editor.php:731
732
- msgid "Default Roles are updated"
733
- msgstr "Alap szerepkörök frissítve"
734
-
735
- #: ../includes/class-user-role-editor.php:756
736
- msgid ""
737
- "You do not have sufficient permissions to manage options for User Role "
738
- "Editor."
739
- msgstr ""
740
- "Nincs elég jogosultsága a Szerepkör szerkesztő beállításainak kezeléséhez."
741
-
742
- #: ../includes/class-user-role-editor.php:885
743
- msgid "Select All"
744
- msgstr "Összeset kijelöl"
745
-
746
- #: ../includes/class-user-role-editor.php:886
747
- msgid "Unselect All"
748
- msgstr "Kijelölés megszünt."
749
-
750
- #: ../includes/class-user-role-editor.php:887
751
- msgid "Reverse"
752
- msgstr "Fordított kijelölés"
753
-
754
- #: ../includes/class-user-role-editor.php:888
755
- msgid "Update"
756
- msgstr "Frissítés"
757
-
758
- #: ../includes/class-user-role-editor.php:889
759
- msgid "Please confirm permissions update"
760
- msgstr "Képességek frissítésének megersőítése"
761
-
762
- #: ../includes/class-user-role-editor.php:890
763
- msgid "Add New Role"
764
- msgstr "Új szerepkör létrehozása"
765
-
766
- #: ../includes/class-user-role-editor.php:891
767
- #: ../includes/class-user-role-editor.php:896
768
- msgid "Rename Role"
769
- msgstr "Szerepkör átnevezés"
770
-
771
- #: ../includes/class-user-role-editor.php:892
772
- msgid " Role name (ID) can not be empty!"
773
- msgstr "A szerepkör neve (azonosító) nem lehet üres!"
774
-
775
- #: ../includes/class-user-role-editor.php:893
776
- msgid ""
777
- " Role name (ID) must contain latin characters, digits, hyphens or underscore "
778
- "only!"
779
- msgstr ""
780
- "A szerepkör neve (azonosítója) csak latin betűket, szűmokat, kötőjelet és "
781
- "aláhúzást tartalmazhat."
782
-
783
- #: ../includes/class-user-role-editor.php:894
784
- msgid ""
785
- " WordPress does not support numeric Role name (ID). Add latin characters to "
786
- "it."
787
- msgstr ""
788
- "A WordPress nem támoagtja a numeriks szerepkör neveket (azonosító). Kell "
789
- "bele legalább egy latin betű."
790
-
791
- #: ../includes/class-user-role-editor.php:895
792
- msgid "Add Role"
793
- msgstr "Új szerepkör"
794
-
795
- #: ../includes/class-user-role-editor.php:897
796
- msgid "Delete Role"
797
- msgstr "Szerepkör törlése"
798
-
799
- #: ../includes/class-user-role-editor.php:898
800
- msgid "Cancel"
801
- msgstr "Mégse"
802
-
803
- #: ../includes/class-user-role-editor.php:899
804
- msgid "Add Capability"
805
- msgstr "Új képesség"
806
-
807
- #: ../includes/class-user-role-editor.php:900
808
- #: ../includes/class-user-role-editor.php:909
809
- msgid "Delete Capability"
810
- msgstr "Képesség törlése"
811
-
812
- #: ../includes/class-user-role-editor.php:901
813
- msgid "Reset"
814
- msgstr "Alaphelyzet"
815
-
816
- #: ../includes/class-user-role-editor.php:902
817
- msgid "DANGER! Resetting will restore default settings from WordPress Core."
818
- msgstr ""
819
- "VESZÉLY! Az alaphelyzetre állítás a WordPress mag beállításait állítja be "
820
- "újra."
821
-
822
- #: ../includes/class-user-role-editor.php:903
823
- msgid ""
824
- "If any plugins have changed capabilities in any way upon installation (such "
825
- "as S2Member, WooCommerce, and many more), those capabilities will be DELETED!"
826
- msgstr ""
827
- "Ha bármilyen bővítmény módosított a képességeket bármilyen módon (pl.: "
828
- "S2Member, WooCommerce, és sok másik), ezek a módosítások TÖRÖLVE lesznek!"
829
-
830
- #: ../includes/class-user-role-editor.php:904
831
- msgid ""
832
- "For more information on how to undo changes and restore plugin capabilities "
833
- "go to"
834
- msgstr ""
835
- "További információ a képességek módosításainak visszavonásáról és "
836
- "helyreállításáról"
837
-
838
- #: ../includes/class-user-role-editor.php:906
839
- msgid "Continue?"
840
- msgstr "Folytassuk?"
841
-
842
- #: ../includes/class-user-role-editor.php:907
843
- msgid "Default Role"
844
- msgstr "Alap szerepkör"
845
-
846
- #: ../includes/class-user-role-editor.php:908
847
- msgid "Set New Default Role"
848
- msgstr "Új alap szerepkör beállítása"
849
-
850
- #: ../includes/class-user-role-editor.php:910
851
- msgid ""
852
- "Warning! Be careful - removing critical capability could crash some plugin "
853
- "or other custom code"
854
- msgstr ""
855
- "Figyelem! Legyen óvatos - kritikus képesség törlésétől leállhat néhány "
856
- "bővítmény vagy egyedi kód."
857
-
858
- #: ../includes/class-user-role-editor.php:911
859
- msgid " Capability name (ID) can not be empty!"
860
- msgstr "A képesség név (azonosító) nem lehet üres."
861
-
862
- #: ../includes/class-user-role-editor.php:912
863
- msgid ""
864
- " Capability name (ID) must contain latin characters, digits, hyphens or "
865
- "underscore only!"
866
- msgstr ""
867
- "A képesség név (azonosító) csak latin betűkből, számokból, kötőjelből és "
868
- "aláhúzásból állhat."
869
-
870
- #: ../includes/settings-template.php:17
871
- msgid "User Role Editor - Options"
872
- msgstr "Szerepkör szerkesztő - Beállítások"
873
-
874
- #: ../includes/settings-template.php:39
875
- msgid "About"
876
- msgstr "Névjegy"
877
-
878
- #: ../includes/settings-template.php:90 ../includes/settings-template.php:126
879
- #: ../includes/settings-template.php:158 ../includes/settings-template.php:190
880
- msgid "Save"
881
- msgstr "Mentés"
882
-
883
- #: ../includes/settings-template.php:138
884
- msgid "Primary default role: "
885
- msgstr "Elsődleges alap szerepkör:"
886
-
887
- #: ../includes/settings-template.php:145
888
- msgid "Other default roles for new registered user: "
889
- msgstr "Egyéb alap szerepkörök újonnan regisztrált felhasználók számára:"
890
-
891
- #: ../includes/settings-template.php:151
892
- msgid ""
893
- "Note for multisite environment: take into account that other default roles "
894
- "should exist at the site, in order to be assigned to the new registered "
895
- "users."
896
- msgstr ""
897
- "Megjegyzés a MultiSite környezethez: vegye figyelembe, hogy több alap "
898
- "szerepkörnek is léteznie kell a weboldalon, az új felhasználók "
899
- "létrehozásához."
900
-
901
- #: ../includes/settings-template.php:177
902
- msgid "Allow non super administrators to create, edit, and delete users"
903
- msgstr ""
904
- "Nem szuperadminok is hozhassanak létre, módosíthassanak és törölhessenek "
905
- "felhasználókat"
906
-
907
- #: ../includes/ure-user-edit.php:32
908
- msgid "Network Super Admin"
909
- msgstr "Multisite Szuperadmin"
910
-
911
- #: ../includes/ure-user-edit.php:35
912
- msgid "Change capabilities for user"
913
- msgstr "Szerepkör módosítása -"
914
-
915
- #: ../includes/ure-user-edit.php:72
916
- msgid "Primary Role:"
917
- msgstr "Elsődleges szerepkör:"
918
-
919
- #: ../includes/ure-user-edit.php:82
920
- msgid "bbPress Role:"
921
- msgstr "bbPress szerepkör:"
922
-
923
- #: ../includes/ure-user-edit.php:92
924
- msgid "Other Roles:"
925
- msgstr "Más szerepkörök:"
926
-
927
- #~ msgid "select roles below"
928
- #~ msgstr "válasszon szerepköröket alább"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
lang/user-role-editor-id_ID.mo DELETED
Binary file
lang/user-role-editor-id_ID.po DELETED
@@ -1,938 +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: 2015-09-11 21:06+0100\n"
6
- "PO-Revision-Date: \n"
7
- "Last-Translator: Vladimir Garagulya <vladimir@shinephp.com>\n"
8
- "Language-Team: http://al-badar.net <nasrulhaq81@gmail.com>\n"
9
- "Language: id_ID\n"
10
- "MIME-Version: 1.0\n"
11
- "Content-Type: text/plain; charset=UTF-8\n"
12
- "Content-Transfer-Encoding: 8bit\n"
13
- "X-Poedit-SourceCharset: UTF-8\n"
14
- "X-Poedit-KeywordsList: __;_e;esc_html__\n"
15
- "X-Poedit-Basepath: .\n"
16
- "X-Generator: Poedit 1.5.4\n"
17
- "X-Poedit-SearchPath-0: ..\n"
18
-
19
- #: ../includes/class-ure-lib.php:247
20
- msgid "Error: wrong request"
21
- msgstr "Salah: salah permintaan"
22
-
23
- #: ../includes/class-ure-lib.php:280 ../includes/class-ure-lib.php:291
24
- msgid "Role name (ID): "
25
- msgstr "Nama Peran (ID):"
26
-
27
- #: ../includes/class-ure-lib.php:282 ../includes/class-ure-lib.php:293
28
- msgid "Display Role Name: "
29
- msgstr "Tampilkan Nama Peran:"
30
-
31
- #: ../includes/class-ure-lib.php:284
32
- msgid "Make copy of: "
33
- msgstr "buat salinan:"
34
-
35
- #: ../includes/class-ure-lib.php:300
36
- msgid "Select Role:"
37
- msgstr "Pilih Peran:"
38
-
39
- #: ../includes/class-ure-lib.php:315
40
- msgid "Delete:"
41
- msgstr "Hapus:"
42
-
43
- #: ../includes/class-ure-lib.php:322
44
- msgid "Capability name (ID): "
45
- msgstr "Nama Kemampuan (ID):"
46
-
47
- #: ../includes/class-ure-lib.php:339
48
- #: ../includes/class-user-role-editor.php:596
49
- #: ../includes/class-user-role-editor.php:625
50
- msgid "User Role Editor"
51
- msgstr "User Role Editor"
52
-
53
- #: ../includes/class-ure-lib.php:436
54
- msgid "Error: "
55
- msgstr "Salah:"
56
-
57
- #: ../includes/class-ure-lib.php:436
58
- msgid "Role"
59
- msgstr "Peran"
60
-
61
- #: ../includes/class-ure-lib.php:437
62
- msgid "does not exist"
63
- msgstr "tidak ada"
64
-
65
- #: ../includes/class-ure-lib.php:480
66
- msgid "Role is updated successfully"
67
- msgstr "Peran berhasil diperbarui"
68
-
69
- #: ../includes/class-ure-lib.php:482
70
- msgid "Roles are updated for all network"
71
- msgstr "Peran diperbarui untuk semua jaringan"
72
-
73
- #: ../includes/class-ure-lib.php:488
74
- msgid "Error occured during role(s) update"
75
- msgstr "Kesalahan terjadi selama pembaruan peran"
76
-
77
- #: ../includes/class-ure-lib.php:495
78
- msgid "User capabilities are updated successfully"
79
- msgstr "Kemampuan pengguna berhasil diperbarui"
80
-
81
- #: ../includes/class-ure-lib.php:500
82
- msgid "Error occured during user update"
83
- msgstr "Kesalahan terjadi sepanjang pembaruan pengguna"
84
-
85
- #: ../includes/class-ure-lib.php:558
86
- msgid "User Roles are restored to WordPress default values. "
87
- msgstr "Peran Pengguna dikembalikan ke nilai Wordpress default."
88
-
89
- #: ../includes/class-ure-lib.php:1436
90
- msgid "read about"
91
- msgstr ""
92
-
93
- #: ../includes/class-ure-lib.php:1437
94
- #, fuzzy
95
- msgid "user capability"
96
- msgstr "Kustom kemampuan:"
97
-
98
- #: ../includes/class-ure-lib.php:1438
99
- msgid "Help"
100
- msgstr "Bantuan"
101
-
102
- #: ../includes/class-ure-lib.php:1693 ../includes/class-ure-lib.php:1946
103
- #: ../includes/class-ure-lib.php:2062 ../includes/class-ure-lib.php:2110
104
- #: ../includes/class-ure-lib.php:2358 ../includes/class-ure-lib.php:2403
105
- #: ../includes/class-user-role-editor.php:828
106
- msgid "Insufficient permissions to work with User Role Editor"
107
- msgstr "Izin yang tidak sesuai untuk bekerja dengan User Role Editor"
108
-
109
- #: ../includes/class-ure-lib.php:1909
110
- msgid "Error is occur. Please check the log file."
111
- msgstr "kesalahan terjadi, Harap periksa log data."
112
-
113
- #: ../includes/class-ure-lib.php:1955 ../includes/class-ure-lib.php:2022
114
- msgid ""
115
- "Error: Role ID must contain latin characters, digits, hyphens or underscore "
116
- "only!"
117
- msgstr ""
118
- "Kesalahan: ID Peran harus mengandung karakter latin, angka, kata penghubung "
119
- "dan garis bawah saja!"
120
-
121
- #: ../includes/class-ure-lib.php:1959 ../includes/class-ure-lib.php:2026
122
- msgid ""
123
- "Error: WordPress does not support numeric Role name (ID). Add latin "
124
- "characters to it."
125
- msgstr ""
126
-
127
- #: ../includes/class-ure-lib.php:1974
128
- #, php-format
129
- msgid "Role %s exists already"
130
- msgstr "Peran %s telah ada"
131
-
132
- #: ../includes/class-ure-lib.php:1989
133
- msgid "Error is encountered during new role create operation"
134
- msgstr "Kesalahan ditemui selama peran baru membuat operasi"
135
-
136
- #: ../includes/class-ure-lib.php:1991
137
- #, php-format
138
- msgid "Role %s is created successfully"
139
- msgstr "Peran %s berhasil dibuat"
140
-
141
- #: ../includes/class-ure-lib.php:2015
142
- msgid "Error: Role ID is empty!"
143
- msgstr ""
144
-
145
- #: ../includes/class-ure-lib.php:2033
146
- msgid "Error: Empty role display name is not allowed."
147
- msgstr ""
148
-
149
- #: ../includes/class-ure-lib.php:2040
150
- #, fuzzy, php-format
151
- msgid "Role %s does not exists"
152
- msgstr "tidak ada"
153
-
154
- #: ../includes/class-ure-lib.php:2048
155
- #, fuzzy, php-format
156
- msgid "Role %s is renamed to %s successfully"
157
- msgstr "Peran %s berhasil dibuat"
158
-
159
- #: ../includes/class-ure-lib.php:2121
160
- msgid "Error encountered during role delete operation"
161
- msgstr "Kesalahan ditemui selama operasi penghapusan peran"
162
-
163
- #: ../includes/class-ure-lib.php:2123
164
- msgid "Unused roles are deleted successfully"
165
- msgstr "Peran yang tidak digunakan berhasil dihapus"
166
-
167
- #: ../includes/class-ure-lib.php:2125
168
- #, php-format
169
- msgid "Role %s is deleted successfully"
170
- msgstr "Peran %s berhasil dihapus"
171
-
172
- #: ../includes/class-ure-lib.php:2153
173
- msgid "Error encountered during default role change operation"
174
- msgstr "Kesalahan ditemui selama operasi perubahan peran standar"
175
-
176
- #: ../includes/class-ure-lib.php:2156
177
- #, php-format
178
- msgid "Default role for new users is set to %s successfully"
179
- msgstr "Peran standar untuk pengguna baru diatur ke %s dengan sukses"
180
-
181
- #: ../includes/class-ure-lib.php:2159
182
- #, fuzzy
183
- msgid "Can not set Administrator role as a default one"
184
- msgstr "Tampilkan peran Administrator di User Role Editor"
185
-
186
- #: ../includes/class-ure-lib.php:2161
187
- #, fuzzy
188
- msgid "This role does not exist - "
189
- msgstr "tidak ada"
190
-
191
- #: ../includes/class-ure-lib.php:2177
192
- msgid "Editor"
193
- msgstr "Penyunting"
194
-
195
- #: ../includes/class-ure-lib.php:2178
196
- msgid "Author"
197
- msgstr "Pengarang"
198
-
199
- #: ../includes/class-ure-lib.php:2179
200
- msgid "Contributor"
201
- msgstr "Kontributor"
202
-
203
- #: ../includes/class-ure-lib.php:2180
204
- msgid "Subscriber"
205
- msgstr "Pelanggan"
206
-
207
- #: ../includes/class-ure-lib.php:2182
208
- msgid "Switch themes"
209
- msgstr "Ganti tema"
210
-
211
- #: ../includes/class-ure-lib.php:2183
212
- msgid "Edit themes"
213
- msgstr "Sunting tema"
214
-
215
- #: ../includes/class-ure-lib.php:2184
216
- msgid "Activate plugins"
217
- msgstr "Aktifkan plugin"
218
-
219
- #: ../includes/class-ure-lib.php:2185
220
- msgid "Edit plugins"
221
- msgstr "Sunting plugin"
222
-
223
- #: ../includes/class-ure-lib.php:2186
224
- msgid "Edit users"
225
- msgstr "Sunting pengguna"
226
-
227
- #: ../includes/class-ure-lib.php:2187
228
- msgid "Edit files"
229
- msgstr "Sunting data"
230
-
231
- #: ../includes/class-ure-lib.php:2188
232
- msgid "Manage options"
233
- msgstr "kelola pilihan"
234
-
235
- #: ../includes/class-ure-lib.php:2189
236
- msgid "Moderate comments"
237
- msgstr "Moderasi komentar"
238
-
239
- #: ../includes/class-ure-lib.php:2190
240
- msgid "Manage categories"
241
- msgstr "Kelola kategori"
242
-
243
- #: ../includes/class-ure-lib.php:2191
244
- msgid "Manage links"
245
- msgstr "Kelola tautan"
246
-
247
- #: ../includes/class-ure-lib.php:2192
248
- msgid "Upload files"
249
- msgstr "Unggah data"
250
-
251
- #: ../includes/class-ure-lib.php:2193
252
- msgid "Import"
253
- msgstr "Impor"
254
-
255
- #: ../includes/class-ure-lib.php:2194
256
- msgid "Unfiltered html"
257
- msgstr "HTML tidak tersaring"
258
-
259
- #: ../includes/class-ure-lib.php:2195
260
- msgid "Edit posts"
261
- msgstr "Sunting posting"
262
-
263
- #: ../includes/class-ure-lib.php:2196
264
- msgid "Edit others posts"
265
- msgstr "Sunting posting lainnya"
266
-
267
- #: ../includes/class-ure-lib.php:2197
268
- msgid "Edit published posts"
269
- msgstr "Sunting posting terpublikasi"
270
-
271
- #: ../includes/class-ure-lib.php:2198
272
- msgid "Publish posts"
273
- msgstr "Publikasi posting"
274
-
275
- #: ../includes/class-ure-lib.php:2199
276
- msgid "Edit pages"
277
- msgstr "Sunting halaman"
278
-
279
- #: ../includes/class-ure-lib.php:2200
280
- msgid "Read"
281
- msgstr "Baca"
282
-
283
- #: ../includes/class-ure-lib.php:2201
284
- msgid "Level 10"
285
- msgstr "Tingkat 10"
286
-
287
- #: ../includes/class-ure-lib.php:2202
288
- msgid "Level 9"
289
- msgstr "Tingkat 9"
290
-
291
- #: ../includes/class-ure-lib.php:2203
292
- msgid "Level 8"
293
- msgstr "Tingkat 8"
294
-
295
- #: ../includes/class-ure-lib.php:2204
296
- msgid "Level 7"
297
- msgstr "Tingkat 7"
298
-
299
- #: ../includes/class-ure-lib.php:2205
300
- msgid "Level 6"
301
- msgstr "Tingkat 6"
302
-
303
- #: ../includes/class-ure-lib.php:2206
304
- msgid "Level 5"
305
- msgstr "Tingkat 5"
306
-
307
- #: ../includes/class-ure-lib.php:2207
308
- msgid "Level 4"
309
- msgstr "Tingkat 4"
310
-
311
- #: ../includes/class-ure-lib.php:2208
312
- msgid "Level 3"
313
- msgstr "Tingkat 3"
314
-
315
- #: ../includes/class-ure-lib.php:2209
316
- msgid "Level 2"
317
- msgstr "Tingkat 2"
318
-
319
- #: ../includes/class-ure-lib.php:2210
320
- msgid "Level 1"
321
- msgstr "Tingkat 1"
322
-
323
- #: ../includes/class-ure-lib.php:2211
324
- msgid "Level 0"
325
- msgstr "Tingkat 0"
326
-
327
- #: ../includes/class-ure-lib.php:2212
328
- msgid "Edit others pages"
329
- msgstr "Sunting halaman lainnya"
330
-
331
- #: ../includes/class-ure-lib.php:2213
332
- msgid "Edit published pages"
333
- msgstr "Sunting halaman terpublikasi"
334
-
335
- #: ../includes/class-ure-lib.php:2214
336
- msgid "Publish pages"
337
- msgstr "Publikasi halaman"
338
-
339
- #: ../includes/class-ure-lib.php:2215
340
- msgid "Delete pages"
341
- msgstr "Hapus halaman"
342
-
343
- #: ../includes/class-ure-lib.php:2216
344
- msgid "Delete others pages"
345
- msgstr "Hapus halaman lainnya"
346
-
347
- #: ../includes/class-ure-lib.php:2217
348
- msgid "Delete published pages"
349
- msgstr "Hapus halaman terpublikasi"
350
-
351
- #: ../includes/class-ure-lib.php:2218
352
- msgid "Delete posts"
353
- msgstr "hapus posting"
354
-
355
- #: ../includes/class-ure-lib.php:2219
356
- msgid "Delete others posts"
357
- msgstr "Hapus posting lainnya"
358
-
359
- #: ../includes/class-ure-lib.php:2220
360
- msgid "Delete published posts"
361
- msgstr "Hapus posting terpublikasi"
362
-
363
- #: ../includes/class-ure-lib.php:2221
364
- msgid "Delete private posts"
365
- msgstr "Hapus posting pribadi"
366
-
367
- #: ../includes/class-ure-lib.php:2222
368
- msgid "Edit private posts"
369
- msgstr "Sunting posting pribadi"
370
-
371
- #: ../includes/class-ure-lib.php:2223
372
- msgid "Read private posts"
373
- msgstr "Baca posting pribadi"
374
-
375
- #: ../includes/class-ure-lib.php:2224
376
- msgid "Delete private pages"
377
- msgstr "Hapus halaman pribadi"
378
-
379
- #: ../includes/class-ure-lib.php:2225
380
- msgid "Edit private pages"
381
- msgstr "Sunting halaman pribadi"
382
-
383
- #: ../includes/class-ure-lib.php:2226
384
- msgid "Read private pages"
385
- msgstr "baca halaman pribadi"
386
-
387
- #: ../includes/class-ure-lib.php:2227
388
- msgid "Delete users"
389
- msgstr "Hapus pengguna"
390
-
391
- #: ../includes/class-ure-lib.php:2228
392
- msgid "Create users"
393
- msgstr "Buat pengguna"
394
-
395
- #: ../includes/class-ure-lib.php:2229
396
- msgid "Unfiltered upload"
397
- msgstr "Unggahan tidak tersaring"
398
-
399
- #: ../includes/class-ure-lib.php:2230
400
- msgid "Edit dashboard"
401
- msgstr "Sunting dasbor"
402
-
403
- #: ../includes/class-ure-lib.php:2231
404
- msgid "Update plugins"
405
- msgstr "Perbarui plugin"
406
-
407
- #: ../includes/class-ure-lib.php:2232
408
- msgid "Delete plugins"
409
- msgstr "Hapus plugin"
410
-
411
- #: ../includes/class-ure-lib.php:2233
412
- msgid "Install plugins"
413
- msgstr "Pasang plugin"
414
-
415
- #: ../includes/class-ure-lib.php:2234
416
- msgid "Update themes"
417
- msgstr "Perbarui tema"
418
-
419
- #: ../includes/class-ure-lib.php:2235
420
- msgid "Install themes"
421
- msgstr "Pasang tema"
422
-
423
- #: ../includes/class-ure-lib.php:2236
424
- msgid "Update core"
425
- msgstr "Perbarui inti"
426
-
427
- #: ../includes/class-ure-lib.php:2237
428
- msgid "List users"
429
- msgstr "Daftar pengguna"
430
-
431
- #: ../includes/class-ure-lib.php:2238
432
- msgid "Remove users"
433
- msgstr "Hapus pengguna"
434
-
435
- #: ../includes/class-ure-lib.php:2239
436
- msgid "Add users"
437
- msgstr "Tambah pengguna"
438
-
439
- #: ../includes/class-ure-lib.php:2240
440
- msgid "Promote users"
441
- msgstr "Promosi pengguna"
442
-
443
- #: ../includes/class-ure-lib.php:2241
444
- msgid "Edit theme options"
445
- msgstr "Sunting pilihan tema"
446
-
447
- #: ../includes/class-ure-lib.php:2242
448
- msgid "Delete themes"
449
- msgstr "Hapus tema"
450
-
451
- #: ../includes/class-ure-lib.php:2243
452
- msgid "Export"
453
- msgstr "Ekspor"
454
-
455
- #: ../includes/class-ure-lib.php:2366
456
- msgid "Error: Capability name must contain latin characters and digits only!"
457
- msgstr "Salah: Kemampuan nama harus mengandung karakter latin dan angka saja!"
458
-
459
- #: ../includes/class-ure-lib.php:2379
460
- #, php-format
461
- msgid "Capability %s is added successfully"
462
- msgstr "Kemampuan %s berhasil ditambahkan"
463
-
464
- #: ../includes/class-ure-lib.php:2381
465
- #, php-format
466
- msgid "Capability %s exists already"
467
- msgstr "Kemampuan %s telah ada"
468
-
469
- #: ../includes/class-ure-lib.php:2410
470
- #, php-format
471
- msgid "Error! You do not have permission to delete this capability: %s!"
472
- msgstr "Salah! Anda tidak memiliki izin untuk menghapus kemampuan ini: %s!"
473
-
474
- #: ../includes/class-ure-lib.php:2429
475
- #, fuzzy, php-format
476
- msgid "Capability %s was removed successfully"
477
- msgstr "Kemampuan %s berhasil dihapus"
478
-
479
- #: ../includes/class-ure-lib.php:2497
480
- msgid "Version:"
481
- msgstr ""
482
-
483
- #: ../includes/class-ure-lib.php:2498
484
- msgid "Author's website"
485
- msgstr "Website pengarang"
486
-
487
- #: ../includes/class-ure-lib.php:2499
488
- msgid "Plugin webpage"
489
- msgstr "Halaman web Plugin"
490
-
491
- #: ../includes/class-ure-lib.php:2500
492
- #, fuzzy
493
- msgid "Plugin download"
494
- msgstr "Halaman web Plugin"
495
-
496
- #: ../includes/class-ure-lib.php:2501
497
- #: ../includes/class-user-role-editor.php:546
498
- msgid "Changelog"
499
- msgstr "log Perubahan"
500
-
501
- #: ../includes/class-ure-lib.php:2502
502
- msgid "FAQ"
503
- msgstr "FAQ"
504
-
505
- #: ../includes/class-ure-lib.php:2575
506
- msgid "Delete All Unused Roles"
507
- msgstr "Hapus Peran Tidak Terpakai"
508
-
509
- #: ../includes/class-ure-lib.php:2588
510
- msgid "None"
511
- msgstr "Nihil"
512
-
513
- #: ../includes/class-ure-lib.php:2632
514
- msgid "&mdash; No role for this site &mdash;"
515
- msgstr "&mdash; Tidak ada peran untuk situs ini &mdash;"
516
-
517
- #: ../includes/class-ure-lib.php:2747
518
- #, php-format
519
- msgid "Denied: %s"
520
- msgstr ""
521
-
522
- #: ../includes/ure-role-edit.php:17
523
- #, fuzzy
524
- msgid "Select Role and change its capabilities:"
525
- msgstr "Pilih Peran dan ubah daftar kemampuan"
526
-
527
- #: ../includes/ure-role-edit.php:30 ../includes/ure-user-edit.php:54
528
- msgid "Show capabilities in human readable form"
529
- msgstr "Tampilkan kemampuan dalam bentuk yang dapat dibaca manusia"
530
-
531
- #: ../includes/ure-role-edit.php:40 ../includes/class-ure-screen-help.php:21
532
- #: ../includes/settings-template.php:69 ../includes/ure-user-edit.php:64
533
- msgid "Show deprecated capabilities"
534
- msgstr "Tampilkan kemampuan usang"
535
-
536
- #: ../includes/ure-role-edit.php:44
537
- msgid "If checked, then apply action to ALL sites of this Network"
538
- msgstr ""
539
- "Jika dicentang, kemudian terapkan tindakan untuk SEMUA situs Jaringan ini"
540
-
541
- #: ../includes/ure-role-edit.php:56
542
- msgid "Apply to All Sites"
543
- msgstr "Terapkan ke Semua Situs"
544
-
545
- #: ../includes/ure-role-edit.php:63 ../includes/ure-user-edit.php:110
546
- msgid "Core capabilities:"
547
- msgstr "Kemampuan inti:"
548
-
549
- #: ../includes/ure-role-edit.php:65 ../includes/ure-user-edit.php:112
550
- msgid "Quick filter:"
551
- msgstr "Saring Cepat:"
552
-
553
- #: ../includes/ure-role-edit.php:83 ../includes/ure-user-edit.php:131
554
- msgid "Custom capabilities:"
555
- msgstr "Kustom kemampuan:"
556
-
557
- #: ../includes/class-user-other-roles.php:82
558
- #: ../includes/class-user-other-roles.php:183
559
- #: ../includes/class-user-other-roles.php:243
560
- msgid "Other Roles"
561
- msgstr "Peran Lainnya"
562
-
563
- #: ../includes/class-user-other-roles.php:83
564
- msgid "Select additional roles for this user"
565
- msgstr ""
566
-
567
- #: ../includes/class-user-other-roles.php:162
568
- #: ../includes/class-user-role-editor.php:438
569
- msgid "Capabilities"
570
- msgstr "Kemampuan"
571
-
572
- #: ../includes/class-user-other-roles.php:169
573
- msgid "Edit"
574
- msgstr "Sunting"
575
-
576
- #: ../includes/class-user-other-roles.php:215
577
- #, fuzzy
578
- msgid "Additional Capabilities"
579
- msgstr "Tambah Kemampuan"
580
-
581
- #: ../includes/class-ure-screen-help.php:12
582
- #: ../includes/class-ure-screen-help.php:41
583
- #: ../includes/class-ure-screen-help.php:60
584
- #: ../includes/class-ure-screen-help.php:79
585
- #, fuzzy
586
- msgid "User Role Editor Options page help"
587
- msgstr "User Role Editor"
588
-
589
- #: ../includes/class-ure-screen-help.php:15
590
- #: ../includes/settings-template.php:53
591
- msgid "Show Administrator role at User Role Editor"
592
- msgstr "Tampilkan peran Administrator di User Role Editor"
593
-
594
- #: ../includes/class-ure-screen-help.php:16
595
- msgid ""
596
- "turn this option on in order to make the \"Administrator\" role available at "
597
- "the User Role Editor roles selection drop-down list. It is hidden by default "
598
- "for security reasons."
599
- msgstr ""
600
- "Aktifkan pilihan ini untuk membuat peran \"Administrator\" tersedia pada "
601
- "daftar seleksi pilihan peran User Role Editor. Akan tersembunyi secara "
602
- "default demi alasan keamanan."
603
-
604
- #: ../includes/class-ure-screen-help.php:18
605
- #: ../includes/settings-template.php:61
606
- msgid "Show capabilities in the human readable form"
607
- msgstr "Tampilkan kemampuan dalam bentuk yang dapat dibaca manusia"
608
-
609
- #: ../includes/class-ure-screen-help.php:19
610
- msgid ""
611
- "automatically converts capability names from the technical form for internal "
612
- "use like \"edit_others_posts\" to more user friendly form, e.g. \"Edit "
613
- "others posts\"."
614
- msgstr ""
615
- "secara otomatis mengkonversi nama kemampuan dari bentuk teknis untuk "
616
- "penggunaan internal seperti \"edit_others_posts\" ke bentuk yang lebih user "
617
- "friendly, misalnya \"Edit posting orang lain\"."
618
-
619
- #: ../includes/class-ure-screen-help.php:22
620
- msgid ""
621
- "Capabilities like \"level_0\", \"level_1\" are deprecated and are not used "
622
- "by WordPress. They are left at the user roles for the compatibility purpose "
623
- "with the old themes and plugins code. Turning on this option will show those "
624
- "deprecated capabilities."
625
- msgstr ""
626
- "Kemampuan seperti \"level_0 \", \"level_1\" yang usang dan tidak digunakan "
627
- "oleh WordPress. Mereka tersisa pada peran pengguna untuk tujuan "
628
- "kompatibilitas dengan tema lama dan kode plugin. Menyalakan opsi ini akan "
629
- "menunjukkan kemampuan mereka usang."
630
-
631
- #: ../includes/class-ure-screen-help.php:25
632
- #: ../includes/settings-template.php:77
633
- #, fuzzy
634
- msgid "Edit user capabilities"
635
- msgstr "Kustom kemampuan:"
636
-
637
- #: ../includes/class-ure-screen-help.php:26
638
- msgid ""
639
- "If turned off - capabilities section of selected user is shown in readonly "
640
- "mode. Administrator can not assign capabilities to the user directly. He "
641
- "should make it using roles only."
642
- msgstr ""
643
-
644
- #: ../includes/class-ure-screen-help.php:45
645
- #: ../includes/settings-template.php:111
646
- msgid "Count users without role"
647
- msgstr ""
648
-
649
- #: ../includes/class-ure-screen-help.php:46
650
- msgid ""
651
- "Show at the \"Users\" page a quant of users without role. Module allows to "
652
- "assign all of them an empty role \"No rights\", in order to look on the "
653
- "users list with role \"No rights\" at the separate tab then."
654
- msgstr ""
655
-
656
- #: ../includes/class-ure-screen-help.php:63
657
- msgid "Other default roles for new registered user"
658
- msgstr ""
659
-
660
- #: ../includes/class-ure-screen-help.php:64
661
- msgid ""
662
- "select roles below to assign them to the new user automatically as an "
663
- "addition to the primary role. Note for multisite environment: take into "
664
- "account that other default roles should exist at the site, in order to be "
665
- "assigned to the new registered users."
666
- msgstr ""
667
-
668
- #: ../includes/class-ure-screen-help.php:82
669
- msgid "Allow non super-admininstrators to create, edit and delete users"
670
- msgstr ""
671
-
672
- #: ../includes/class-ure-screen-help.php:83
673
- #, fuzzy
674
- msgid ""
675
- "Super administrator only may create, edit and delete users under WordPress "
676
- "multi-site by default. Turn this option on in order to remove this "
677
- "limitation."
678
- msgstr ""
679
- "Super administrator hanya dapat membuat, mengedit dan menghapus pengguna di "
680
- "bawah WordPress multi-situs. Aktifkan pilihan ini dalam rangka menghapus "
681
- "keterbatasan ini."
682
-
683
- #: ../includes/class-user-role-editor.php:233
684
- msgid "Change role for users without role"
685
- msgstr ""
686
-
687
- #: ../includes/class-user-role-editor.php:234
688
- msgid "No rights"
689
- msgstr ""
690
-
691
- #: ../includes/class-user-role-editor.php:235
692
- msgid "Provide new role"
693
- msgstr ""
694
-
695
- #: ../includes/class-user-role-editor.php:298
696
- #: ../includes/class-user-role-editor.php:300
697
- msgid "You do not have permission to edit this user."
698
- msgstr "Anda tidak diizinkan untuk menyunting user ini. "
699
-
700
- #: ../includes/class-user-role-editor.php:535
701
- msgid "Settings"
702
- msgstr "Pengaturan"
703
-
704
- #: ../includes/class-user-role-editor.php:568
705
- #: ../includes/settings-template.php:21
706
- msgid "General"
707
- msgstr ""
708
-
709
- #: ../includes/class-user-role-editor.php:574
710
- #: ../includes/settings-template.php:26
711
- msgid "Additional Modules"
712
- msgstr ""
713
-
714
- #: ../includes/class-user-role-editor.php:580
715
- #: ../includes/settings-template.php:30
716
- #, fuzzy
717
- msgid "Default Roles"
718
- msgstr "Peran "
719
-
720
- #: ../includes/class-user-role-editor.php:586
721
- #: ../includes/settings-template.php:34
722
- msgid "Multisite"
723
- msgstr ""
724
-
725
- #: ../includes/class-user-role-editor.php:685
726
- #: ../includes/class-user-role-editor.php:703
727
- #: ../includes/class-user-role-editor.php:747
728
- msgid "User Role Editor options are updated"
729
- msgstr "Pilihan User Role Editor diperbarui"
730
-
731
- #: ../includes/class-user-role-editor.php:731
732
- #, fuzzy
733
- msgid "Default Roles are updated"
734
- msgstr "Peran "
735
-
736
- #: ../includes/class-user-role-editor.php:756
737
- msgid ""
738
- "You do not have sufficient permissions to manage options for User Role "
739
- "Editor."
740
- msgstr ""
741
- "Anda tidak memiliki izin yang memadai untuk mengelola pilihan User Role "
742
- "Editor."
743
-
744
- #: ../includes/class-user-role-editor.php:885
745
- msgid "Select All"
746
- msgstr "Pilih Semua"
747
-
748
- #: ../includes/class-user-role-editor.php:886
749
- msgid "Unselect All"
750
- msgstr "Batalkan Semua"
751
-
752
- #: ../includes/class-user-role-editor.php:887
753
- msgid "Reverse"
754
- msgstr "Memutar"
755
-
756
- #: ../includes/class-user-role-editor.php:888
757
- msgid "Update"
758
- msgstr "Pembaruan"
759
-
760
- #: ../includes/class-user-role-editor.php:889
761
- msgid "Please confirm permissions update"
762
- msgstr "Harap konfirmasi pembaruan izin"
763
-
764
- #: ../includes/class-user-role-editor.php:890
765
- msgid "Add New Role"
766
- msgstr "Tambah Peran Baru"
767
-
768
- #: ../includes/class-user-role-editor.php:891
769
- #: ../includes/class-user-role-editor.php:896
770
- #, fuzzy
771
- msgid "Rename Role"
772
- msgstr "Hapus Peran"
773
-
774
- #: ../includes/class-user-role-editor.php:892
775
- msgid " Role name (ID) can not be empty!"
776
- msgstr "Nama peran (ID) tidak boleh kosong!"
777
-
778
- #: ../includes/class-user-role-editor.php:893
779
- msgid ""
780
- " Role name (ID) must contain latin characters, digits, hyphens or underscore "
781
- "only!"
782
- msgstr ""
783
- "Nama peran (ID) harus berisi karakter latin, angka, tanda hubung atau garis "
784
- "bawah saja!"
785
-
786
- #: ../includes/class-user-role-editor.php:894
787
- msgid ""
788
- " WordPress does not support numeric Role name (ID). Add latin characters to "
789
- "it."
790
- msgstr ""
791
-
792
- #: ../includes/class-user-role-editor.php:895
793
- msgid "Add Role"
794
- msgstr "Tambah Peran"
795
-
796
- #: ../includes/class-user-role-editor.php:897
797
- msgid "Delete Role"
798
- msgstr "Hapus Peran"
799
-
800
- #: ../includes/class-user-role-editor.php:898
801
- msgid "Cancel"
802
- msgstr "Batalkan"
803
-
804
- #: ../includes/class-user-role-editor.php:899
805
- msgid "Add Capability"
806
- msgstr "Tambah Kemampuan"
807
-
808
- #: ../includes/class-user-role-editor.php:900
809
- #: ../includes/class-user-role-editor.php:909
810
- msgid "Delete Capability"
811
- msgstr "Hapus Kemampuan"
812
-
813
- #: ../includes/class-user-role-editor.php:901
814
- msgid "Reset"
815
- msgstr "Atur Ulang"
816
-
817
- #: ../includes/class-user-role-editor.php:902
818
- msgid "DANGER! Resetting will restore default settings from WordPress Core."
819
- msgstr ""
820
- "BAHAYA! Reset akan mengembalikan pengaturan default dari WordPress Inti."
821
-
822
- #: ../includes/class-user-role-editor.php:903
823
- msgid ""
824
- "If any plugins have changed capabilities in any way upon installation (such "
825
- "as S2Member, WooCommerce, and many more), those capabilities will be DELETED!"
826
- msgstr ""
827
- "Jika ada plugin telah mengubah kemampuan dengan cara apapun atas instalasi "
828
- "(seperti S2Member, WooCommerce, dan banyak lagi), kemampuan mereka akan "
829
- "DIHAPUS!"
830
-
831
- #: ../includes/class-user-role-editor.php:904
832
- msgid ""
833
- "For more information on how to undo changes and restore plugin capabilities "
834
- "go to"
835
- msgstr ""
836
- "Untuk informasi lebih lanjut tentang cara membatalkan perubahan dan "
837
- "mengembalikan kemampuan Plugin pergi ke"
838
-
839
- #: ../includes/class-user-role-editor.php:906
840
- msgid "Continue?"
841
- msgstr "Lanjut?"
842
-
843
- #: ../includes/class-user-role-editor.php:907
844
- msgid "Default Role"
845
- msgstr "Peran "
846
-
847
- #: ../includes/class-user-role-editor.php:908
848
- msgid "Set New Default Role"
849
- msgstr "Atur Peran Baru Default"
850
-
851
- #: ../includes/class-user-role-editor.php:910
852
- msgid ""
853
- "Warning! Be careful - removing critical capability could crash some plugin "
854
- "or other custom code"
855
- msgstr ""
856
- "Peringatan! Hati-hati - menghapus kemampuan kritis dapat menyebabkan crash "
857
- "beberapa Plugin atau kode kustom lainnya"
858
-
859
- #: ../includes/class-user-role-editor.php:911
860
- msgid " Capability name (ID) can not be empty!"
861
- msgstr "Nama Kemampuan (ID) tidak boleh kosong!"
862
-
863
- #: ../includes/class-user-role-editor.php:912
864
- msgid ""
865
- " Capability name (ID) must contain latin characters, digits, hyphens or "
866
- "underscore only!"
867
- msgstr ""
868
- "Nama Kemampuan (ID) harus mengandung karakter latin, angka, kata penghubung "
869
- "atau garis bawah saja!"
870
-
871
- #: ../includes/settings-template.php:17
872
- #, fuzzy
873
- msgid "User Role Editor - Options"
874
- msgstr "User Role Editor"
875
-
876
- #: ../includes/settings-template.php:39
877
- msgid "About"
878
- msgstr ""
879
-
880
- #: ../includes/settings-template.php:90 ../includes/settings-template.php:126
881
- #: ../includes/settings-template.php:158 ../includes/settings-template.php:190
882
- msgid "Save"
883
- msgstr "Simpan"
884
-
885
- #: ../includes/settings-template.php:138
886
- #, fuzzy
887
- msgid "Primary default role: "
888
- msgstr "Peran Utama:"
889
-
890
- #: ../includes/settings-template.php:145
891
- msgid "Other default roles for new registered user: "
892
- msgstr ""
893
-
894
- #: ../includes/settings-template.php:151
895
- msgid ""
896
- "Note for multisite environment: take into account that other default roles "
897
- "should exist at the site, in order to be assigned to the new registered "
898
- "users."
899
- msgstr ""
900
-
901
- #: ../includes/settings-template.php:177
902
- msgid "Allow non super administrators to create, edit, and delete users"
903
- msgstr ""
904
-
905
- #: ../includes/ure-user-edit.php:32
906
- msgid "Network Super Admin"
907
- msgstr "Jaringan Super Admin"
908
-
909
- #: ../includes/ure-user-edit.php:35
910
- msgid "Change capabilities for user"
911
- msgstr "Ubah kemampuan untuk pengguna"
912
-
913
- #: ../includes/ure-user-edit.php:72
914
- msgid "Primary Role:"
915
- msgstr "Peran Utama:"
916
-
917
- #: ../includes/ure-user-edit.php:82
918
- msgid "bbPress Role:"
919
- msgstr "Peran bbPress:"
920
-
921
- #: ../includes/ure-user-edit.php:92
922
- msgid "Other Roles:"
923
- msgstr "Peran Lain:"
924
-
925
- #, fuzzy
926
- #~ msgid "select roles below"
927
- #~ msgstr "Batalkan Semua"
928
-
929
- #~ msgid "Overview"
930
- #~ msgstr "Ikhtisar"
931
-
932
- #~ msgid "Allow create, edit and delete users to not super-admininstrators"
933
- #~ msgstr ""
934
- #~ "Izinkan membuat, menyunting dan menghapus pengguna untuk yang bukan super-"
935
- #~ "administrator"
936
-
937
- #~ msgid "About this Plugin:"
938
- #~ msgstr "Tentang Plugin ini:"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
lang/user-role-editor-it_IT.mo DELETED
Binary file
lang/user-role-editor-it_IT.po DELETED
@@ -1,939 +0,0 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: User Role Editor 4.18.3\n"
4
- "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2015-09-11 21:06+0100\n"
6
- "PO-Revision-Date: \n"
7
- "Last-Translator: Vladimir Garagulya <vladimir@shinephp.com>\n"
8
- "Language-Team: L.E.O.X. <leoxleox73@gmail.com>\n"
9
- "Language: it_IT\n"
10
- "MIME-Version: 1.0\n"
11
- "Content-Type: text/plain; charset=UTF-8\n"
12
- "Content-Transfer-Encoding: 8bit\n"
13
- "X-Poedit-SourceCharset: UTF-8\n"
14
- "X-Poedit-KeywordsList: __;_e;esc_html__;esc_html_e\n"
15
- "X-Poedit-Basepath: .\n"
16
- "X-Generator: Poedit 1.5.4\n"
17
- "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
- "X-Poedit-SearchPath-0: ..\n"
19
-
20
- #: ../includes/class-ure-lib.php:247
21
- msgid "Error: wrong request"
22
- msgstr "Si è verificato il seguente errore: richiesta errata."
23
-
24
- #: ../includes/class-ure-lib.php:280 ../includes/class-ure-lib.php:291
25
- msgid "Role name (ID): "
26
- msgstr "Nome Ruolo (ID):"
27
-
28
- #: ../includes/class-ure-lib.php:282 ../includes/class-ure-lib.php:293
29
- msgid "Display Role Name: "
30
- msgstr "Mostra Nome Ruolo:"
31
-
32
- #: ../includes/class-ure-lib.php:284
33
- msgid "Make copy of: "
34
- msgstr "Fai una copia di:"
35
-
36
- #: ../includes/class-ure-lib.php:300
37
- msgid "Select Role:"
38
- msgstr "Seleziona Ruolo:"
39
-
40
- #: ../includes/class-ure-lib.php:315
41
- msgid "Delete:"
42
- msgstr "Cancella:"
43
-
44
- #: ../includes/class-ure-lib.php:322
45
- msgid "Capability name (ID): "
46
- msgstr "Nome privilegio (ID):"
47
-
48
- #: ../includes/class-ure-lib.php:339
49
- #: ../includes/class-user-role-editor.php:596
50
- #: ../includes/class-user-role-editor.php:625
51
- msgid "User Role Editor"
52
- msgstr "User Role Editor"
53
-
54
- #: ../includes/class-ure-lib.php:436
55
- msgid "Error: "
56
- msgstr "Si è verificato il seguente errore:"
57
-
58
- #: ../includes/class-ure-lib.php:436
59
- msgid "Role"
60
- msgstr "Ruolo"
61
-
62
- #: ../includes/class-ure-lib.php:437
63
- msgid "does not exist"
64
- msgstr "non esiste"
65
-
66
- #: ../includes/class-ure-lib.php:480
67
- msgid "Role is updated successfully"
68
- msgstr "Ruolo aggiornato correttamente"
69
-
70
- #: ../includes/class-ure-lib.php:482
71
- msgid "Roles are updated for all network"
72
- msgstr "I ruoli sono stati aggiornati per tutta la rete."
73
-
74
- #: ../includes/class-ure-lib.php:488
75
- msgid "Error occured during role(s) update"
76
- msgstr "Errore durante l'aggiornamento del ruolo o dei ruoli."
77
-
78
- #: ../includes/class-ure-lib.php:495
79
- msgid "User capabilities are updated successfully"
80
- msgstr "Privilegi utenti aggiornati correttamente."
81
-
82
- #: ../includes/class-ure-lib.php:500
83
- msgid "Error occured during user update"
84
- msgstr "Errore di aggiornamento dell'utente."
85
-
86
- #: ../includes/class-ure-lib.php:558
87
- msgid "User Roles are restored to WordPress default values. "
88
- msgstr ""
89
- "I ruolo utente sono stati ripristinati ai valori predefiniti di WordPress."
90
-
91
- #: ../includes/class-ure-lib.php:1436
92
- msgid "read about"
93
- msgstr "leggi su"
94
-
95
- #: ../includes/class-ure-lib.php:1437
96
- msgid "user capability"
97
- msgstr "privilegi utente"
98
-
99
- #: ../includes/class-ure-lib.php:1438
100
- msgid "Help"
101
- msgstr "Guida"
102
-
103
- #: ../includes/class-ure-lib.php:1693 ../includes/class-ure-lib.php:1946
104
- #: ../includes/class-ure-lib.php:2062 ../includes/class-ure-lib.php:2110
105
- #: ../includes/class-ure-lib.php:2358 ../includes/class-ure-lib.php:2403
106
- #: ../includes/class-user-role-editor.php:828
107
- msgid "Insufficient permissions to work with User Role Editor"
108
- msgstr "Permessi non sufficienti per lavorare con User Role Editor."
109
-
110
- #: ../includes/class-ure-lib.php:1909
111
- msgid "Error is occur. Please check the log file."
112
- msgstr "Si è verificato un errore. Controllare file di log."
113
-
114
- #: ../includes/class-ure-lib.php:1955 ../includes/class-ure-lib.php:2022
115
- msgid ""
116
- "Error: Role ID must contain latin characters, digits, hyphens or underscore "
117
- "only!"
118
- msgstr ""
119
- "Si è verificato il seguente errore: l'ID ruolo deve contenere solo caratteri "
120
- "latini, numeri, trattini o uderscore."
121
-
122
- #: ../includes/class-ure-lib.php:1959 ../includes/class-ure-lib.php:2026
123
- msgid ""
124
- "Error: WordPress does not support numeric Role name (ID). Add latin "
125
- "characters to it."
126
- msgstr ""
127
- "Si è verificato il seguente errore: WordPress non supporta il nome ruolo "
128
- "(ID) nel formato numerico. Aggiungere caratteri latini."
129
-
130
- #: ../includes/class-ure-lib.php:1974
131
- #, php-format
132
- msgid "Role %s exists already"
133
- msgstr "Il ruolo %s esiste già."
134
-
135
- #: ../includes/class-ure-lib.php:1989
136
- msgid "Error is encountered during new role create operation"
137
- msgstr "Errore durante la creazione del nuovo ruolo."
138
-
139
- #: ../includes/class-ure-lib.php:1991
140
- #, php-format
141
- msgid "Role %s is created successfully"
142
- msgstr "Ruolo %s creato correttamente."
143
-
144
- #: ../includes/class-ure-lib.php:2015
145
- msgid "Error: Role ID is empty!"
146
- msgstr "Si è verificato il seguente errore: l'ID ruolo è vuoto."
147
-
148
- #: ../includes/class-ure-lib.php:2033
149
- msgid "Error: Empty role display name is not allowed."
150
- msgstr ""
151
- "Si è verificato il seguente errore: non è ammesso che il nome del ruolo "
152
- "visualizzato sia vuoto."
153
-
154
- #: ../includes/class-ure-lib.php:2040
155
- #, php-format
156
- msgid "Role %s does not exists"
157
- msgstr "Il ruolo %s non esiste."
158
-
159
- #: ../includes/class-ure-lib.php:2048
160
- #, php-format
161
- msgid "Role %s is renamed to %s successfully"
162
- msgstr "Ruolo %s rinominato in %s correttamente."
163
-
164
- #: ../includes/class-ure-lib.php:2121
165
- msgid "Error encountered during role delete operation"
166
- msgstr "Errore durante la cancellazione del ruolo."
167
-
168
- #: ../includes/class-ure-lib.php:2123
169
- msgid "Unused roles are deleted successfully"
170
- msgstr "I Ruoli inutilizzati sono stati cancellati."
171
-
172
- #: ../includes/class-ure-lib.php:2125
173
- #, php-format
174
- msgid "Role %s is deleted successfully"
175
- msgstr "Ruolo %s cancellato correttamente."
176
-
177
- #: ../includes/class-ure-lib.php:2153
178
- msgid "Error encountered during default role change operation"
179
- msgstr "Errore durante la modifica del ruolo predefinito."
180
-
181
- #: ../includes/class-ure-lib.php:2156
182
- #, php-format
183
- msgid "Default role for new users is set to %s successfully"
184
- msgstr ""
185
- "Il ruolo predefinito per i nuovi utenti è stato cambiato a %s correttamente."
186
-
187
- #: ../includes/class-ure-lib.php:2159
188
- #, fuzzy
189
- msgid "Can not set Administrator role as a default one"
190
- msgstr "Mostra il ruolo di amministratore in User Role Editor"
191
-
192
- #: ../includes/class-ure-lib.php:2161
193
- #, fuzzy
194
- msgid "This role does not exist - "
195
- msgstr "Il ruolo %s non esiste."
196
-
197
- #: ../includes/class-ure-lib.php:2177
198
- msgid "Editor"
199
- msgstr "Editore"
200
-
201
- #: ../includes/class-ure-lib.php:2178
202
- msgid "Author"
203
- msgstr "Autore"
204
-
205
- #: ../includes/class-ure-lib.php:2179
206
- msgid "Contributor"
207
- msgstr "Collaboratore"
208
-
209
- #: ../includes/class-ure-lib.php:2180
210
- msgid "Subscriber"
211
- msgstr "Sottoscrittore"
212
-
213
- #: ../includes/class-ure-lib.php:2182
214
- msgid "Switch themes"
215
- msgstr "Cambia temi"
216
-
217
- #: ../includes/class-ure-lib.php:2183
218
- msgid "Edit themes"
219
- msgstr "Modifica temi"
220
-
221
- #: ../includes/class-ure-lib.php:2184
222
- msgid "Activate plugins"
223
- msgstr "Attiva plugins"
224
-
225
- #: ../includes/class-ure-lib.php:2185
226
- msgid "Edit plugins"
227
- msgstr "Modifica plugins"
228
-
229
- #: ../includes/class-ure-lib.php:2186
230
- msgid "Edit users"
231
- msgstr "Modifica utenti"
232
-
233
- #: ../includes/class-ure-lib.php:2187
234
- msgid "Edit files"
235
- msgstr "Modifica files"
236
-
237
- #: ../includes/class-ure-lib.php:2188
238
- msgid "Manage options"
239
- msgstr "Gestisci opzioni"
240
-
241
- #: ../includes/class-ure-lib.php:2189
242
- msgid "Moderate comments"
243
- msgstr "Modera commenti"
244
-
245
- #: ../includes/class-ure-lib.php:2190
246
- msgid "Manage categories"
247
- msgstr "Gestisci categorie"
248
-
249
- #: ../includes/class-ure-lib.php:2191
250
- msgid "Manage links"
251
- msgstr "Gestisci links"
252
-
253
- #: ../includes/class-ure-lib.php:2192
254
- msgid "Upload files"
255
- msgstr "Carica files"
256
-
257
- #: ../includes/class-ure-lib.php:2193
258
- msgid "Import"
259
- msgstr "Importa"
260
-
261
- #: ../includes/class-ure-lib.php:2194
262
- msgid "Unfiltered html"
263
- msgstr "Html non filtrato"
264
-
265
- #: ../includes/class-ure-lib.php:2195
266
- msgid "Edit posts"
267
- msgstr "Modifica articoli"
268
-
269
- #: ../includes/class-ure-lib.php:2196
270
- msgid "Edit others posts"
271
- msgstr "Modifica altri articoli"
272
-
273
- #: ../includes/class-ure-lib.php:2197
274
- msgid "Edit published posts"
275
- msgstr "Modifica articoli pubblicati"
276
-
277
- #: ../includes/class-ure-lib.php:2198
278
- msgid "Publish posts"
279
- msgstr "Pubblica articoli"
280
-
281
- #: ../includes/class-ure-lib.php:2199
282
- msgid "Edit pages"
283
- msgstr "Modifica pagine"
284
-
285
- #: ../includes/class-ure-lib.php:2200
286
- msgid "Read"
287
- msgstr "Leggi"
288
-
289
- #: ../includes/class-ure-lib.php:2201
290
- msgid "Level 10"
291
- msgstr "Livello 10"
292
-
293
- #: ../includes/class-ure-lib.php:2202
294
- msgid "Level 9"
295
- msgstr "Livello 9"
296
-
297
- #: ../includes/class-ure-lib.php:2203
298
- msgid "Level 8"
299
- msgstr "Livello 8"
300
-
301
- #: ../includes/class-ure-lib.php:2204
302
- msgid "Level 7"
303
- msgstr "Livello 7"
304
-
305
- #: ../includes/class-ure-lib.php:2205
306
- msgid "Level 6"
307
- msgstr "Livello 6"
308
-
309
- #: ../includes/class-ure-lib.php:2206
310
- msgid "Level 5"
311
- msgstr "Livello 5"
312
-
313
- #: ../includes/class-ure-lib.php:2207
314
- msgid "Level 4"
315
- msgstr "Livello 4"
316
-
317
- #: ../includes/class-ure-lib.php:2208
318
- msgid "Level 3"
319
- msgstr "Livello 3"
320
-
321
- #: ../includes/class-ure-lib.php:2209
322
- msgid "Level 2"
323
- msgstr "Livello 2"
324
-
325
- #: ../includes/class-ure-lib.php:2210
326
- msgid "Level 1"
327
- msgstr "Livello 1"
328
-
329
- #: ../includes/class-ure-lib.php:2211
330
- msgid "Level 0"
331
- msgstr "Livello 0"
332
-
333
- #: ../includes/class-ure-lib.php:2212
334
- msgid "Edit others pages"
335
- msgstr "Modifica altre pagine"
336
-
337
- #: ../includes/class-ure-lib.php:2213
338
- msgid "Edit published pages"
339
- msgstr "Modifica pagine pubblicate"
340
-
341
- #: ../includes/class-ure-lib.php:2214
342
- msgid "Publish pages"
343
- msgstr "Pubblica pagine"
344
-
345
- #: ../includes/class-ure-lib.php:2215
346
- msgid "Delete pages"
347
- msgstr "Cancella pagine"
348
-
349
- #: ../includes/class-ure-lib.php:2216
350
- msgid "Delete others pages"
351
- msgstr "Cancella altre pagine"
352
-
353
- #: ../includes/class-ure-lib.php:2217
354
- msgid "Delete published pages"
355
- msgstr "Cancella pagine pubblicate"
356
-
357
- #: ../includes/class-ure-lib.php:2218
358
- msgid "Delete posts"
359
- msgstr "Cancella articoli"
360
-
361
- #: ../includes/class-ure-lib.php:2219
362
- msgid "Delete others posts"
363
- msgstr "Cancella altri articoli"
364
-
365
- #: ../includes/class-ure-lib.php:2220
366
- msgid "Delete published posts"
367
- msgstr "Cancella articoli pubblicati"
368
-
369
- #: ../includes/class-ure-lib.php:2221
370
- msgid "Delete private posts"
371
- msgstr "Cancella articoli privati"
372
-
373
- #: ../includes/class-ure-lib.php:2222
374
- msgid "Edit private posts"
375
- msgstr "Modifica articoli privati"
376
-
377
- #: ../includes/class-ure-lib.php:2223
378
- msgid "Read private posts"
379
- msgstr "Leggi articoli privati"
380
-
381
- #: ../includes/class-ure-lib.php:2224
382
- msgid "Delete private pages"
383
- msgstr "Cancella pagine private"
384
-
385
- #: ../includes/class-ure-lib.php:2225
386
- msgid "Edit private pages"
387
- msgstr "Modifica pagine private"
388
-
389
- #: ../includes/class-ure-lib.php:2226
390
- msgid "Read private pages"
391
- msgstr "Legge pagine private"
392
-
393
- #: ../includes/class-ure-lib.php:2227
394
- msgid "Delete users"
395
- msgstr "Cancella utenti"
396
-
397
- #: ../includes/class-ure-lib.php:2228
398
- msgid "Create users"
399
- msgstr "Crea utenti"
400
-
401
- #: ../includes/class-ure-lib.php:2229
402
- msgid "Unfiltered upload"
403
- msgstr "Uploads non filtrati"
404
-
405
- #: ../includes/class-ure-lib.php:2230
406
- msgid "Edit dashboard"
407
- msgstr "Modifica dashboard"
408
-
409
- #: ../includes/class-ure-lib.php:2231
410
- msgid "Update plugins"
411
- msgstr "Aggiorna plugins"
412
-
413
- #: ../includes/class-ure-lib.php:2232
414
- msgid "Delete plugins"
415
- msgstr "Cancella plugins"
416
-
417
- #: ../includes/class-ure-lib.php:2233
418
- msgid "Install plugins"
419
- msgstr "Installa plugins"
420
-
421
- #: ../includes/class-ure-lib.php:2234
422
- msgid "Update themes"
423
- msgstr "Aggiorna temi"
424
-
425
- #: ../includes/class-ure-lib.php:2235
426
- msgid "Install themes"
427
- msgstr "Installa temi"
428
-
429
- #: ../includes/class-ure-lib.php:2236
430
- msgid "Update core"
431
- msgstr "Aggiorna core"
432
-
433
- #: ../includes/class-ure-lib.php:2237
434
- msgid "List users"
435
- msgstr "Lista utenti"
436
-
437
- #: ../includes/class-ure-lib.php:2238
438
- msgid "Remove users"
439
- msgstr "Rimuovi utenti"
440
-
441
- #: ../includes/class-ure-lib.php:2239
442
- msgid "Add users"
443
- msgstr "Aggiungi utenti"
444
-
445
- #: ../includes/class-ure-lib.php:2240
446
- msgid "Promote users"
447
- msgstr "Promuovi utenti"
448
-
449
- #: ../includes/class-ure-lib.php:2241
450
- msgid "Edit theme options"
451
- msgstr "Modifica opzioni tema"
452
-
453
- #: ../includes/class-ure-lib.php:2242
454
- msgid "Delete themes"
455
- msgstr "Cancella temi"
456
-
457
- #: ../includes/class-ure-lib.php:2243
458
- msgid "Export"
459
- msgstr "Esporta"
460
-
461
- #: ../includes/class-ure-lib.php:2366
462
- msgid "Error: Capability name must contain latin characters and digits only!"
463
- msgstr ""
464
- "Si è verificato il seguente errore: il nome del privilegio deve contenere "
465
- "solo caratteri latini o numeri."
466
-
467
- #: ../includes/class-ure-lib.php:2379
468
- #, php-format
469
- msgid "Capability %s is added successfully"
470
- msgstr "Privilegio %s aggiunto correttamente."
471
-
472
- #: ../includes/class-ure-lib.php:2381
473
- #, php-format
474
- msgid "Capability %s exists already"
475
- msgstr "Privilegio %s già esistente."
476
-
477
- #: ../includes/class-ure-lib.php:2410
478
- #, php-format
479
- msgid "Error! You do not have permission to delete this capability: %s!"
480
- msgstr ""
481
- "Si è verificato il seguente errore: non hai permessi per cancellare il "
482
- "privilegio %s."
483
-
484
- #: ../includes/class-ure-lib.php:2429
485
- #, fuzzy, php-format
486
- msgid "Capability %s was removed successfully"
487
- msgstr "Privilegio %s rimosso correttamente."
488
-
489
- #: ../includes/class-ure-lib.php:2497
490
- msgid "Version:"
491
- msgstr "Versione:"
492
-
493
- #: ../includes/class-ure-lib.php:2498
494
- msgid "Author's website"
495
- msgstr "Sito web dell'autore"
496
-
497
- #: ../includes/class-ure-lib.php:2499
498
- msgid "Plugin webpage"
499
- msgstr "Pagina web del plugin"
500
-
501
- #: ../includes/class-ure-lib.php:2500
502
- msgid "Plugin download"
503
- msgstr "Scarica il plugin"
504
-
505
- #: ../includes/class-ure-lib.php:2501
506
- #: ../includes/class-user-role-editor.php:546
507
- msgid "Changelog"
508
- msgstr "Elenco delle modifiche (changelog)"
509
-
510
- #: ../includes/class-ure-lib.php:2502
511
- msgid "FAQ"
512
- msgstr "Domande e risposte frequenti (FAQ)"
513
-
514
- #: ../includes/class-ure-lib.php:2575
515
- msgid "Delete All Unused Roles"
516
- msgstr "Cancella tutti i ruoli inutilizzati"
517
-
518
- #: ../includes/class-ure-lib.php:2588
519
- msgid "None"
520
- msgstr "Nessuno"
521
-
522
- #: ../includes/class-ure-lib.php:2632
523
- msgid "&mdash; No role for this site &mdash;"
524
- msgstr "&mdash; Nessun ruolo per questo sito &mdash;"
525
-
526
- #: ../includes/class-ure-lib.php:2747
527
- #, php-format
528
- msgid "Denied: %s"
529
- msgstr ""
530
-
531
- #: ../includes/ure-role-edit.php:17
532
- msgid "Select Role and change its capabilities:"
533
- msgstr "Seleziona il ruolo e modifica i suoi privilegi:"
534
-
535
- #: ../includes/ure-role-edit.php:30 ../includes/ure-user-edit.php:54
536
- msgid "Show capabilities in human readable form"
537
- msgstr "Mostra i privilegi in forma comprensibile"
538
-
539
- #: ../includes/ure-role-edit.php:40 ../includes/class-ure-screen-help.php:21
540
- #: ../includes/settings-template.php:69 ../includes/ure-user-edit.php:64
541
- msgid "Show deprecated capabilities"
542
- msgstr "Mostra i privilegi sconsigliati (deprecati)"
543
-
544
- #: ../includes/ure-role-edit.php:44
545
- msgid "If checked, then apply action to ALL sites of this Network"
546
- msgstr "Se selezionato, applica l'azione a tuti i siti di questa rete."
547
-
548
- #: ../includes/ure-role-edit.php:56
549
- msgid "Apply to All Sites"
550
- msgstr "Applica a tutti i siti"
551
-
552
- #: ../includes/ure-role-edit.php:63 ../includes/ure-user-edit.php:110
553
- msgid "Core capabilities:"
554
- msgstr "Privilegi del core:"
555
-
556
- #: ../includes/ure-role-edit.php:65 ../includes/ure-user-edit.php:112
557
- msgid "Quick filter:"
558
- msgstr "Filtro veloce:"
559
-
560
- #: ../includes/ure-role-edit.php:83 ../includes/ure-user-edit.php:131
561
- msgid "Custom capabilities:"
562
- msgstr "Privilegi personalizzati:"
563
-
564
- #: ../includes/class-user-other-roles.php:82
565
- #: ../includes/class-user-other-roles.php:183
566
- #: ../includes/class-user-other-roles.php:243
567
- msgid "Other Roles"
568
- msgstr "Altri ruoli"
569
-
570
- #: ../includes/class-user-other-roles.php:83
571
- msgid "Select additional roles for this user"
572
- msgstr ""
573
-
574
- #: ../includes/class-user-other-roles.php:162
575
- #: ../includes/class-user-role-editor.php:438
576
- msgid "Capabilities"
577
- msgstr "Privilegi"
578
-
579
- #: ../includes/class-user-other-roles.php:169
580
- msgid "Edit"
581
- msgstr "Modifica"
582
-
583
- #: ../includes/class-user-other-roles.php:215
584
- #, fuzzy
585
- msgid "Additional Capabilities"
586
- msgstr "Aggiungi privilegio"
587
-
588
- #: ../includes/class-ure-screen-help.php:12
589
- #: ../includes/class-ure-screen-help.php:41
590
- #: ../includes/class-ure-screen-help.php:60
591
- #: ../includes/class-ure-screen-help.php:79
592
- msgid "User Role Editor Options page help"
593
- msgstr "Guida sulla pagina opzioni User Role Editor"
594
-
595
- #: ../includes/class-ure-screen-help.php:15
596
- #: ../includes/settings-template.php:53
597
- msgid "Show Administrator role at User Role Editor"
598
- msgstr "Mostra il ruolo di amministratore in User Role Editor"
599
-
600
- #: ../includes/class-ure-screen-help.php:16
601
- msgid ""
602
- "turn this option on in order to make the \"Administrator\" role available at "
603
- "the User Role Editor roles selection drop-down list. It is hidden by default "
604
- "for security reasons."
605
- msgstr ""
606
- "selezionare questa opzione per rendere il ruolo di \"amministratore\" "
607
- "disponibile nel menù a tendina di User Role Editor. Per impostazione "
608
- "predefinita è nascosto, per ragioni di sicurezza."
609
-
610
- #: ../includes/class-ure-screen-help.php:18
611
- #: ../includes/settings-template.php:61
612
- msgid "Show capabilities in the human readable form"
613
- msgstr "Mostra i privilegi in forma comprensibile"
614
-
615
- #: ../includes/class-ure-screen-help.php:19
616
- msgid ""
617
- "automatically converts capability names from the technical form for internal "
618
- "use like \"edit_others_posts\" to more user friendly form, e.g. \"Edit "
619
- "others posts\"."
620
- msgstr ""
621
- "converte automaticamente i nomi dei privilegi dalla forma tecnica per uso "
622
- "interno, tipo \"edit_others_posts\", in una forma più comprensibile, tipo "
623
- "\"Modifica altri articoli\"."
624
-
625
- #: ../includes/class-ure-screen-help.php:22
626
- msgid ""
627
- "Capabilities like \"level_0\", \"level_1\" are deprecated and are not used "
628
- "by WordPress. They are left at the user roles for the compatibility purpose "
629
- "with the old themes and plugins code. Turning on this option will show those "
630
- "deprecated capabilities."
631
- msgstr ""
632
- "Privilegi tipo \"level_0\" sono sconsigliati e non più utilizzati da "
633
- "WordPress. Sono stati mantenuti nei ruoli utente per scopi di compatibilità "
634
- "con i vecchi temi e plugin. Selezionando questa opzione, questi privilegi "
635
- "saranno comunque visualizzati."
636
-
637
- #: ../includes/class-ure-screen-help.php:25
638
- #: ../includes/settings-template.php:77
639
- msgid "Edit user capabilities"
640
- msgstr "Modifica privilegi utente"
641
-
642
- #: ../includes/class-ure-screen-help.php:26
643
- msgid ""
644
- "If turned off - capabilities section of selected user is shown in readonly "
645
- "mode. Administrator can not assign capabilities to the user directly. He "
646
- "should make it using roles only."
647
- msgstr ""
648
- "Deselezionando questa opzione la sezione privilegi dell'utente selezionato "
649
- "sarà visualizzata in sola lettura. L'amministratore non potrà assegnare "
650
- "privilegi direttamente all'utente. Dovrebbe farlo utilizzando solo i ruoli."
651
-
652
- #: ../includes/class-ure-screen-help.php:45
653
- #: ../includes/settings-template.php:111
654
- msgid "Count users without role"
655
- msgstr "Conta utenti senza ruolo"
656
-
657
- #: ../includes/class-ure-screen-help.php:46
658
- msgid ""
659
- "Show at the \"Users\" page a quant of users without role. Module allows to "
660
- "assign all of them an empty role \"No rights\", in order to look on the "
661
- "users list with role \"No rights\" at the separate tab then."
662
- msgstr ""
663
- "Mostra nella pagina \"Utenti\" la lista di utenti senza ruolo. Il modulo "
664
- "consente di assegnargli un ruolo vuoto \"Nessun privilegio\", al fine di "
665
- "vedere nella lista gli utenti con ruolo \"Nessun privilegio\" in una scheda "
666
- "separata."
667
-
668
- #: ../includes/class-ure-screen-help.php:63
669
- msgid "Other default roles for new registered user"
670
- msgstr "Altri ruoli predefiniti per i nuovi utenti registrati"
671
-
672
- #: ../includes/class-ure-screen-help.php:64
673
- msgid ""
674
- "select roles below to assign them to the new user automatically as an "
675
- "addition to the primary role. Note for multisite environment: take into "
676
- "account that other default roles should exist at the site, in order to be "
677
- "assigned to the new registered users."
678
- msgstr ""
679
- "seleziona i ruoli di seguito per assegnarli automaticamente al nuovo utente "
680
- "in aggiunta al ruolo primario. Nota per l'ambiente multisito: gli altri "
681
- "ruoli predefiniti devono esistere sul sito per poter essere assegnati ai "
682
- "nuovi utenti registrati."
683
-
684
- #: ../includes/class-ure-screen-help.php:82
685
- msgid "Allow non super-admininstrators to create, edit and delete users"
686
- msgstr ""
687
- "Permetti a chi non è super amministratore di creare, modificare e cancellare "
688
- "utenti."
689
-
690
- #: ../includes/class-ure-screen-help.php:83
691
- msgid ""
692
- "Super administrator only may create, edit and delete users under WordPress "
693
- "multi-site by default. Turn this option on in order to remove this "
694
- "limitation."
695
- msgstr ""
696
- "Per impostazione predefinita solo il super amministratore può creare, "
697
- "modificare e cancellare gli utenti in ambiente multisito di WordPress . "
698
- "Selezionare questa opzione per rimuovere questa limitazione."
699
-
700
- #: ../includes/class-user-role-editor.php:233
701
- msgid "Change role for users without role"
702
- msgstr "Cambia ruolo degli utenti senza nessun ruolo"
703
-
704
- #: ../includes/class-user-role-editor.php:234
705
- msgid "No rights"
706
- msgstr "Nessun privilegio"
707
-
708
- #: ../includes/class-user-role-editor.php:235
709
- msgid "Provide new role"
710
- msgstr "Assegna un nuovo ruolo"
711
-
712
- #: ../includes/class-user-role-editor.php:298
713
- #: ../includes/class-user-role-editor.php:300
714
- msgid "You do not have permission to edit this user."
715
- msgstr "Non hai i permessi per modificare questo utente."
716
-
717
- #: ../includes/class-user-role-editor.php:535
718
- msgid "Settings"
719
- msgstr "Impostazioni"
720
-
721
- #: ../includes/class-user-role-editor.php:568
722
- #: ../includes/settings-template.php:21
723
- msgid "General"
724
- msgstr "Generali"
725
-
726
- #: ../includes/class-user-role-editor.php:574
727
- #: ../includes/settings-template.php:26
728
- msgid "Additional Modules"
729
- msgstr "Moduli addizionali"
730
-
731
- #: ../includes/class-user-role-editor.php:580
732
- #: ../includes/settings-template.php:30
733
- msgid "Default Roles"
734
- msgstr "Ruoli predefiniti"
735
-
736
- #: ../includes/class-user-role-editor.php:586
737
- #: ../includes/settings-template.php:34
738
- msgid "Multisite"
739
- msgstr "Multisito"
740
-
741
- #: ../includes/class-user-role-editor.php:685
742
- #: ../includes/class-user-role-editor.php:703
743
- #: ../includes/class-user-role-editor.php:747
744
- msgid "User Role Editor options are updated"
745
- msgstr "Le opzioni di User Role Editor sono state aggiornate correttamente."
746
-
747
- #: ../includes/class-user-role-editor.php:731
748
- msgid "Default Roles are updated"
749
- msgstr "I ruoli predefiniti sono stai aggiornati correttamente."
750
-
751
- #: ../includes/class-user-role-editor.php:756
752
- msgid ""
753
- "You do not have sufficient permissions to manage options for User Role "
754
- "Editor."
755
- msgstr ""
756
- "Non hai permessi sufficienti per gestire le opzioni di User Role Editor."
757
-
758
- #: ../includes/class-user-role-editor.php:885
759
- msgid "Select All"
760
- msgstr "Seleziona tutti"
761
-
762
- #: ../includes/class-user-role-editor.php:886
763
- msgid "Unselect All"
764
- msgstr "Deseleziona tutti"
765
-
766
- #: ../includes/class-user-role-editor.php:887
767
- msgid "Reverse"
768
- msgstr "Revoca"
769
-
770
- #: ../includes/class-user-role-editor.php:888
771
- msgid "Update"
772
- msgstr "Aggiorna"
773
-
774
- #: ../includes/class-user-role-editor.php:889
775
- msgid "Please confirm permissions update"
776
- msgstr "Conferma l'aggiornamento dei permessi"
777
-
778
- #: ../includes/class-user-role-editor.php:890
779
- msgid "Add New Role"
780
- msgstr "Aggiungi un nuovo ruolo"
781
-
782
- #: ../includes/class-user-role-editor.php:891
783
- #: ../includes/class-user-role-editor.php:896
784
- msgid "Rename Role"
785
- msgstr "Rinomina ruolo"
786
-
787
- #: ../includes/class-user-role-editor.php:892
788
- msgid " Role name (ID) can not be empty!"
789
- msgstr "Nome Ruolo (ID) non può essere vuoto."
790
-
791
- #: ../includes/class-user-role-editor.php:893
792
- msgid ""
793
- " Role name (ID) must contain latin characters, digits, hyphens or underscore "
794
- "only!"
795
- msgstr ""
796
- "Il nome Ruolo (ID) deve contenere solo caratteri latini, numeri, trattini o "
797
- "underscore."
798
-
799
- #: ../includes/class-user-role-editor.php:894
800
- msgid ""
801
- " WordPress does not support numeric Role name (ID). Add latin characters to "
802
- "it."
803
- msgstr ""
804
- "Wordpress non supporta il nome Ruolo (ID) nel formaro numerico. Inserisci "
805
- "caratteri latini."
806
-
807
- #: ../includes/class-user-role-editor.php:895
808
- msgid "Add Role"
809
- msgstr "Aggiungi ruolo"
810
-
811
- #: ../includes/class-user-role-editor.php:897
812
- msgid "Delete Role"
813
- msgstr "Cancella Ruolo"
814
-
815
- #: ../includes/class-user-role-editor.php:898
816
- msgid "Cancel"
817
- msgstr "Cancella"
818
-
819
- #: ../includes/class-user-role-editor.php:899
820
- msgid "Add Capability"
821
- msgstr "Aggiungi privilegio"
822
-
823
- #: ../includes/class-user-role-editor.php:900
824
- #: ../includes/class-user-role-editor.php:909
825
- msgid "Delete Capability"
826
- msgstr "Cancella privilegio"
827
-
828
- #: ../includes/class-user-role-editor.php:901
829
- msgid "Reset"
830
- msgstr "Reimposta"
831
-
832
- #: ../includes/class-user-role-editor.php:902
833
- msgid "DANGER! Resetting will restore default settings from WordPress Core."
834
- msgstr "ATTENZIONE: Reimposta i privilegi predefiniti dal core di WordPress."
835
-
836
- #: ../includes/class-user-role-editor.php:903
837
- msgid ""
838
- "If any plugins have changed capabilities in any way upon installation (such "
839
- "as S2Member, WooCommerce, and many more), those capabilities will be DELETED!"
840
- msgstr ""
841
- "Se qualche plugin ha cambiato i privilegi in qualche modo dopo "
842
- "l'installazione (tipo S2Members, WooCommerce, etc...), questi privilegi "
843
- "saranno cancellati."
844
-
845
- #: ../includes/class-user-role-editor.php:904
846
- msgid ""
847
- "For more information on how to undo changes and restore plugin capabilities "
848
- "go to"
849
- msgstr ""
850
- "Per altre informazioni su come tornare indietro con le modifiche e "
851
- "ripristinare le funzionalità del plugin vai a"
852
-
853
- #: ../includes/class-user-role-editor.php:906
854
- msgid "Continue?"
855
- msgstr "Continuare?"
856
-
857
- #: ../includes/class-user-role-editor.php:907
858
- msgid "Default Role"
859
- msgstr "Ruolo predefinito"
860
-
861
- #: ../includes/class-user-role-editor.php:908
862
- msgid "Set New Default Role"
863
- msgstr "Imposta un nuovo ruolo predefinito"
864
-
865
- #: ../includes/class-user-role-editor.php:910
866
- msgid ""
867
- "Warning! Be careful - removing critical capability could crash some plugin "
868
- "or other custom code"
869
- msgstr ""
870
- "Attenzione! rimuovendo i privilegi è possibile che malfunzioni il plugin o "
871
- "altro codice personalizzato."
872
-
873
- #: ../includes/class-user-role-editor.php:911
874
- msgid " Capability name (ID) can not be empty!"
875
- msgstr "Nome privilegio (ID) non può essere vuoto!"
876
-
877
- #: ../includes/class-user-role-editor.php:912
878
- msgid ""
879
- " Capability name (ID) must contain latin characters, digits, hyphens or "
880
- "underscore only!"
881
- msgstr ""
882
- "Il nome privilegio (ID) deve contenere solo caratteri latini, numeri, "
883
- "trattini o underscore."
884
-
885
- #: ../includes/settings-template.php:17
886
- msgid "User Role Editor - Options"
887
- msgstr "User Role Editor - Opzioni"
888
-
889
- #: ../includes/settings-template.php:39
890
- msgid "About"
891
- msgstr "Info"
892
-
893
- #: ../includes/settings-template.php:90 ../includes/settings-template.php:126
894
- #: ../includes/settings-template.php:158 ../includes/settings-template.php:190
895
- msgid "Save"
896
- msgstr "Salva"
897
-
898
- #: ../includes/settings-template.php:138
899
- msgid "Primary default role: "
900
- msgstr "Ruolo primario predefinito:"
901
-
902
- #: ../includes/settings-template.php:145
903
- msgid "Other default roles for new registered user: "
904
- msgstr "Altri ruoli predefiniti disponibili per i nuovi utenti registrati:"
905
-
906
- #: ../includes/settings-template.php:151
907
- msgid ""
908
- "Note for multisite environment: take into account that other default roles "
909
- "should exist at the site, in order to be assigned to the new registered "
910
- "users."
911
- msgstr ""
912
- "Nota per l'ambiente multisito: altri ruoli predefiniti devono esistere nel "
913
- "sito, per poter essere assegnati ai nuovi utenti registrati."
914
-
915
- #: ../includes/settings-template.php:177
916
- msgid "Allow non super administrators to create, edit, and delete users"
917
- msgstr ""
918
- "Permette ad un utente non amministratore di creare, modificare e cancellare "
919
- "utenti."
920
-
921
- #: ../includes/ure-user-edit.php:32
922
- msgid "Network Super Admin"
923
- msgstr "Super Admin Network"
924
-
925
- #: ../includes/ure-user-edit.php:35
926
- msgid "Change capabilities for user"
927
- msgstr "Cambia privilegi per l'utente"
928
-
929
- #: ../includes/ure-user-edit.php:72
930
- msgid "Primary Role:"
931
- msgstr "Ruolo primario:"
932
-
933
- #: ../includes/ure-user-edit.php:82
934
- msgid "bbPress Role:"
935
- msgstr "Ruolo bbPress:"
936
-
937
- #: ../includes/ure-user-edit.php:92
938
- msgid "Other Roles:"
939
- msgstr "Altri Ruoli:"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
lang/user-role-editor-nl_NL.mo DELETED
Binary file
lang/user-role-editor-nl_NL.po DELETED
@@ -1,938 +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: 2015-09-11 21:06+0100\n"
6
- "PO-Revision-Date: 2015-09-11 21:16+0100\n"
7
- "Last-Translator: Vladimir Garagulya <vladimir@shinephp.com>\n"
8
- "Language-Team: ShinePHP.com <vladimir@shinephp.com>\n"
9
- "Language: Dutch\n"
10
- "MIME-Version: 1.0\n"
11
- "Content-Type: text/plain; charset=UTF-8\n"
12
- "Content-Transfer-Encoding: 8bit\n"
13
- "Plural-Forms: nplurals=2; plural=n != 1;\n"
14
- "X-Poedit-SourceCharset: UTF-8\n"
15
- "X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;"
16
- "__:1;_e:1;_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;"
17
- "_x:1,2c;_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;"
18
- "esc_attr__:1;esc_html__:1;esc_attr_e:1;esc_html_e:1;esc_attr_x:1,2c;"
19
- "esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
20
- "X-Poedit-Basepath: .\n"
21
- "X-Generator: Poedit 1.5.4\n"
22
- "X-Loco-Target-Locale: nl_NL\n"
23
- "X-Poedit-SearchPath-0: ..\n"
24
-
25
- #: ../includes/class-ure-lib.php:247
26
- msgid "Error: wrong request"
27
- msgstr "Fout: verkeerde aanvraag"
28
-
29
- #: ../includes/class-ure-lib.php:280 ../includes/class-ure-lib.php:291
30
- msgid "Role name (ID): "
31
- msgstr "Naam Rol (ID):"
32
-
33
- #: ../includes/class-ure-lib.php:282 ../includes/class-ure-lib.php:293
34
- msgid "Display Role Name: "
35
- msgstr "Maak de Naam van de Rol zichtbaar:"
36
-
37
- #: ../includes/class-ure-lib.php:284
38
- msgid "Make copy of: "
39
- msgstr "Maak een kopie van:"
40
-
41
- #: ../includes/class-ure-lib.php:300
42
- msgid "Select Role:"
43
- msgstr "Selecteer een Rol:"
44
-
45
- #: ../includes/class-ure-lib.php:315
46
- msgid "Delete:"
47
- msgstr "Verwijder:"
48
-
49
- #: ../includes/class-ure-lib.php:322
50
- msgid "Capability name (ID): "
51
- msgstr "Naam recht (ID):"
52
-
53
- #: ../includes/class-ure-lib.php:339
54
- #: ../includes/class-user-role-editor.php:596
55
- #: ../includes/class-user-role-editor.php:625
56
- msgid "User Role Editor"
57
- msgstr "User Rol Editor"
58
-
59
- #: ../includes/class-ure-lib.php:436
60
- msgid "Error: "
61
- msgstr "Fout:"
62
-
63
- #: ../includes/class-ure-lib.php:436
64
- msgid "Role"
65
- msgstr "Rol"
66
-
67
- #: ../includes/class-ure-lib.php:437
68
- msgid "does not exist"
69
- msgstr "Bestaat niet"
70
-
71
- #: ../includes/class-ure-lib.php:480
72
- msgid "Role is updated successfully"
73
- msgstr "Rol is succesvol ge-update"
74
-
75
- #: ../includes/class-ure-lib.php:482
76
- msgid "Roles are updated for all network"
77
- msgstr "Rollen van het gehele netwerk zijn ge-update"
78
-
79
- #: ../includes/class-ure-lib.php:488
80
- msgid "Error occured during role(s) update"
81
- msgstr "Er is een fout opgetreden tijdens het updaten van de rol(len)"
82
-
83
- #: ../includes/class-ure-lib.php:495
84
- msgid "User capabilities are updated successfully"
85
- msgstr "Rechten van de gebruiker zijn succesvol geupdate"
86
-
87
- #: ../includes/class-ure-lib.php:500
88
- msgid "Error occured during user update"
89
- msgstr "Er is een fout opgetreden tijdens het updaten van de gebruiker"
90
-
91
- #: ../includes/class-ure-lib.php:558
92
- msgid "User Roles are restored to WordPress default values. "
93
- msgstr "Gebruikers rollen worden hersteld naar WordPress standaardwaarden."
94
-
95
- #: ../includes/class-ure-lib.php:1436
96
- msgid "read about"
97
- msgstr "Lees over"
98
-
99
- #: ../includes/class-ure-lib.php:1437
100
- msgid "user capability"
101
- msgstr "Gebruikers rechten"
102
-
103
- #: ../includes/class-ure-lib.php:1438
104
- msgid "Help"
105
- msgstr "Help"
106
-
107
- #: ../includes/class-ure-lib.php:1693 ../includes/class-ure-lib.php:1946
108
- #: ../includes/class-ure-lib.php:2062 ../includes/class-ure-lib.php:2110
109
- #: ../includes/class-ure-lib.php:2358 ../includes/class-ure-lib.php:2403
110
- #: ../includes/class-user-role-editor.php:828
111
- msgid "Insufficient permissions to work with User Role Editor"
112
- msgstr "Onvoldoende rechten om te werken met User Role Editor"
113
-
114
- #: ../includes/class-ure-lib.php:1909
115
- msgid "Error is occur. Please check the log file."
116
- msgstr "Er heeft zich een fout voorgedaan. Controleer het log bestand."
117
-
118
- #: ../includes/class-ure-lib.php:1955 ../includes/class-ure-lib.php:2022
119
- msgid ""
120
- "Error: Role ID must contain latin characters, digits, hyphens or underscore "
121
- "only!"
122
- msgstr ""
123
- "Fout: Een Rol (ID) moet Latijnse letters, cijfers, koppeltekens of "
124
- "underscores bevatten!"
125
-
126
- #: ../includes/class-ure-lib.php:1959 ../includes/class-ure-lib.php:2026
127
- msgid ""
128
- "Error: WordPress does not support numeric Role name (ID). Add latin "
129
- "characters to it."
130
- msgstr ""
131
- "Fout: WordPress ondersteund geen numerieke Rol naam (ID). Voeg er latijnse "
132
- "tekens aan toe."
133
-
134
- #: ../includes/class-ure-lib.php:1974
135
- #, php-format
136
- msgid "Role %s exists already"
137
- msgstr "Deze Rol %s bestaat al"
138
-
139
- #: ../includes/class-ure-lib.php:1989
140
- msgid "Error is encountered during new role create operation"
141
- msgstr "Er is een fout opgetreden tijdens het creëren van een nieuwe rol"
142
-
143
- #: ../includes/class-ure-lib.php:1991
144
- #, php-format
145
- msgid "Role %s is created successfully"
146
- msgstr "De Rol %s werd succesvol gecreërd"
147
-
148
- #: ../includes/class-ure-lib.php:2015
149
- msgid "Error: Role ID is empty!"
150
- msgstr "Fout: Rol ID is niet gevuld!"
151
-
152
- #: ../includes/class-ure-lib.php:2033
153
- msgid "Error: Empty role display name is not allowed."
154
- msgstr "Fout: De weergave van een lege naam van een rol is niet toegestaan."
155
-
156
- #: ../includes/class-ure-lib.php:2040
157
- #, php-format
158
- msgid "Role %s does not exists"
159
- msgstr "Rol %s bestaat niet"
160
-
161
- #: ../includes/class-ure-lib.php:2048
162
- #, php-format
163
- msgid "Role %s is renamed to %s successfully"
164
- msgstr "Rol %s is succesvol vernoemd naar %s"
165
-
166
- #: ../includes/class-ure-lib.php:2121
167
- msgid "Error encountered during role delete operation"
168
- msgstr "Er is een fout opgetreden bij het vewijderen van de rol"
169
-
170
- #: ../includes/class-ure-lib.php:2123
171
- msgid "Unused roles are deleted successfully"
172
- msgstr "Ongebruikte rollen zijn succesvol verwijderd"
173
-
174
- #: ../includes/class-ure-lib.php:2125
175
- #, php-format
176
- msgid "Role %s is deleted successfully"
177
- msgstr "Rol %s succesvol verwijderd"
178
-
179
- #: ../includes/class-ure-lib.php:2153
180
- msgid "Error encountered during default role change operation"
181
- msgstr "Er is een fout opgetreden tijdens het wijzigen van de standaard rol"
182
-
183
- #: ../includes/class-ure-lib.php:2156
184
- #, php-format
185
- msgid "Default role for new users is set to %s successfully"
186
- msgstr "De standaard rol voor nieuwe gebruikers is met succes ingesteld op %s"
187
-
188
- #: ../includes/class-ure-lib.php:2159
189
- #, fuzzy
190
- msgid "Can not set Administrator role as a default one"
191
- msgstr "Toon Beheerders Rol in de Gebruikers Rol Editor"
192
-
193
- #: ../includes/class-ure-lib.php:2161
194
- #, fuzzy
195
- msgid "This role does not exist - "
196
- msgstr "Rol %s bestaat niet"
197
-
198
- #: ../includes/class-ure-lib.php:2177
199
- msgid "Editor"
200
- msgstr "Redacteur"
201
-
202
- #: ../includes/class-ure-lib.php:2178
203
- msgid "Author"
204
- msgstr "Editor"
205
-
206
- #: ../includes/class-ure-lib.php:2179
207
- msgid "Contributor"
208
- msgstr "Inzender"
209
-
210
- #: ../includes/class-ure-lib.php:2180
211
- msgid "Subscriber"
212
- msgstr "Abonnee"
213
-
214
- #: ../includes/class-ure-lib.php:2182
215
- msgid "Switch themes"
216
- msgstr "Van thema wisselen"
217
-
218
- #: ../includes/class-ure-lib.php:2183
219
- msgid "Edit themes"
220
- msgstr "Thema's bewerken"
221
-
222
- #: ../includes/class-ure-lib.php:2184
223
- msgid "Activate plugins"
224
- msgstr "Plugins activeren"
225
-
226
- #: ../includes/class-ure-lib.php:2185
227
- msgid "Edit plugins"
228
- msgstr "Plugins bewerken"
229
-
230
- #: ../includes/class-ure-lib.php:2186
231
- msgid "Edit users"
232
- msgstr "Gebruikers bewerken"
233
-
234
- #: ../includes/class-ure-lib.php:2187
235
- msgid "Edit files"
236
- msgstr "Bestanden bewerken"
237
-
238
- #: ../includes/class-ure-lib.php:2188
239
- msgid "Manage options"
240
- msgstr "Opties beheren"
241
-
242
- #: ../includes/class-ure-lib.php:2189
243
- msgid "Moderate comments"
244
- msgstr "Reacties beheren"
245
-
246
- #: ../includes/class-ure-lib.php:2190
247
- msgid "Manage categories"
248
- msgstr "Categorieën beheren"
249
-
250
- #: ../includes/class-ure-lib.php:2191
251
- msgid "Manage links"
252
- msgstr "Links beheren"
253
-
254
- #: ../includes/class-ure-lib.php:2192
255
- msgid "Upload files"
256
- msgstr "Bestanden uploaden"
257
-
258
- #: ../includes/class-ure-lib.php:2193
259
- msgid "Import"
260
- msgstr "Importeren"
261
-
262
- #: ../includes/class-ure-lib.php:2194
263
- msgid "Unfiltered html"
264
- msgstr "Ongefilterd html"
265
-
266
- #: ../includes/class-ure-lib.php:2195
267
- msgid "Edit posts"
268
- msgstr "Berichten bewerken"
269
-
270
- #: ../includes/class-ure-lib.php:2196
271
- msgid "Edit others posts"
272
- msgstr "Berichten van anderen bewerken"
273
-
274
- #: ../includes/class-ure-lib.php:2197
275
- msgid "Edit published posts"
276
- msgstr "Gepubliceerde berichten bewerken"
277
-
278
- #: ../includes/class-ure-lib.php:2198
279
- msgid "Publish posts"
280
- msgstr "Berichten publiceren"
281
-
282
- #: ../includes/class-ure-lib.php:2199
283
- msgid "Edit pages"
284
- msgstr "Pagina's bewerken"
285
-
286
- #: ../includes/class-ure-lib.php:2200
287
- msgid "Read"
288
- msgstr "Lezen"
289
-
290
- #: ../includes/class-ure-lib.php:2201
291
- msgid "Level 10"
292
- msgstr "Level 10"
293
-
294
- #: ../includes/class-ure-lib.php:2202
295
- msgid "Level 9"
296
- msgstr "Level 9"
297
-
298
- #: ../includes/class-ure-lib.php:2203
299
- msgid "Level 8"
300
- msgstr "Level 8"
301
-
302
- #: ../includes/class-ure-lib.php:2204
303
- msgid "Level 7"
304
- msgstr "Level 7"
305
-
306
- #: ../includes/class-ure-lib.php:2205
307
- msgid "Level 6"
308
- msgstr "Level 6"
309
-
310
- #: ../includes/class-ure-lib.php:2206
311
- msgid "Level 5"
312
- msgstr "Level 5"
313
-
314
- #: ../includes/class-ure-lib.php:2207
315
- msgid "Level 4"
316
- msgstr "Level 4"
317
-
318
- #: ../includes/class-ure-lib.php:2208
319
- msgid "Level 3"
320
- msgstr "Level 3"
321
-
322
- #: ../includes/class-ure-lib.php:2209
323
- msgid "Level 2"
324
- msgstr "Level 2"
325
-
326
- #: ../includes/class-ure-lib.php:2210
327
- msgid "Level 1"
328
- msgstr "Level 1"
329
-
330
- #: ../includes/class-ure-lib.php:2211
331
- msgid "Level 0"
332
- msgstr "Level 0"
333
-
334
- #: ../includes/class-ure-lib.php:2212
335
- msgid "Edit others pages"
336
- msgstr "Pagina's van anderen bewerken"
337
-
338
- #: ../includes/class-ure-lib.php:2213
339
- msgid "Edit published pages"
340
- msgstr "Gepubliceerde pagina's bewerken"
341
-
342
- #: ../includes/class-ure-lib.php:2214
343
- msgid "Publish pages"
344
- msgstr "Pagina's publiceren"
345
-
346
- #: ../includes/class-ure-lib.php:2215
347
- msgid "Delete pages"
348
- msgstr "Pagina's verwijderen"
349
-
350
- #: ../includes/class-ure-lib.php:2216
351
- msgid "Delete others pages"
352
- msgstr "Pagina's verwijderen van anderen"
353
-
354
- #: ../includes/class-ure-lib.php:2217
355
- msgid "Delete published pages"
356
- msgstr "Gepubliceerde pagina's verwijderen"
357
-
358
- #: ../includes/class-ure-lib.php:2218
359
- msgid "Delete posts"
360
- msgstr "Berichten verwijderen"
361
-
362
- #: ../includes/class-ure-lib.php:2219
363
- msgid "Delete others posts"
364
- msgstr "Verwijder berichten van anderen"
365
-
366
- #: ../includes/class-ure-lib.php:2220
367
- msgid "Delete published posts"
368
- msgstr "Gepubliceerde berichten verwijderen"
369
-
370
- #: ../includes/class-ure-lib.php:2221
371
- msgid "Delete private posts"
372
- msgstr "Privé berichten verwijderen"
373
-
374
- #: ../includes/class-ure-lib.php:2222
375
- msgid "Edit private posts"
376
- msgstr "Privé berichten bewerken"
377
-
378
- #: ../includes/class-ure-lib.php:2223
379
- msgid "Read private posts"
380
- msgstr "Privé berichten lezen"
381
-
382
- #: ../includes/class-ure-lib.php:2224
383
- msgid "Delete private pages"
384
- msgstr "Privé berichten verwijderen"
385
-
386
- #: ../includes/class-ure-lib.php:2225
387
- msgid "Edit private pages"
388
- msgstr "Privé pagina's bewerken"
389
-
390
- #: ../includes/class-ure-lib.php:2226
391
- msgid "Read private pages"
392
- msgstr "Privé pagina's lezen"
393
-
394
- #: ../includes/class-ure-lib.php:2227
395
- msgid "Delete users"
396
- msgstr "Gebruikers verwijderen"
397
-
398
- #: ../includes/class-ure-lib.php:2228
399
- msgid "Create users"
400
- msgstr "Maak gebruikers aan"
401
-
402
- #: ../includes/class-ure-lib.php:2229
403
- msgid "Unfiltered upload"
404
- msgstr "Ongefilterd uploaden"
405
-
406
- #: ../includes/class-ure-lib.php:2230
407
- msgid "Edit dashboard"
408
- msgstr "Bewerk het dashboard"
409
-
410
- #: ../includes/class-ure-lib.php:2231
411
- msgid "Update plugins"
412
- msgstr "Plugins updaten"
413
-
414
- #: ../includes/class-ure-lib.php:2232
415
- msgid "Delete plugins"
416
- msgstr "Plugins verwijderen"
417
-
418
- #: ../includes/class-ure-lib.php:2233
419
- msgid "Install plugins"
420
- msgstr "Plugins installeren"
421
-
422
- #: ../includes/class-ure-lib.php:2234
423
- msgid "Update themes"
424
- msgstr "Thema's updaten"
425
-
426
- #: ../includes/class-ure-lib.php:2235
427
- msgid "Install themes"
428
- msgstr "Thema's installeren"
429
-
430
- #: ../includes/class-ure-lib.php:2236
431
- msgid "Update core"
432
- msgstr "Core updaten"
433
-
434
- #: ../includes/class-ure-lib.php:2237
435
- msgid "List users"
436
- msgstr "Lijst van gebruikers aanmaken"
437
-
438
- #: ../includes/class-ure-lib.php:2238
439
- msgid "Remove users"
440
- msgstr "Gebruikers verwijderen"
441
-
442
- #: ../includes/class-ure-lib.php:2239
443
- msgid "Add users"
444
- msgstr "Gebruikers toevoegen"
445
-
446
- #: ../includes/class-ure-lib.php:2240
447
- msgid "Promote users"
448
- msgstr "Gebruikers bevorderen"
449
-
450
- #: ../includes/class-ure-lib.php:2241
451
- msgid "Edit theme options"
452
- msgstr "Thema opties bewerken"
453
-
454
- #: ../includes/class-ure-lib.php:2242
455
- msgid "Delete themes"
456
- msgstr "Thema's verwijderen"
457
-
458
- #: ../includes/class-ure-lib.php:2243
459
- msgid "Export"
460
- msgstr "Exporteren"
461
-
462
- #: ../includes/class-ure-lib.php:2366
463
- msgid "Error: Capability name must contain latin characters and digits only!"
464
- msgstr ""
465
- "Fout: De naam van een recht mag alleen latijnse letters en cijfers bevatten!"
466
-
467
- #: ../includes/class-ure-lib.php:2379
468
- #, php-format
469
- msgid "Capability %s is added successfully"
470
- msgstr "Recht %s is succesvol toegevoegd"
471
-
472
- #: ../includes/class-ure-lib.php:2381
473
- #, php-format
474
- msgid "Capability %s exists already"
475
- msgstr "Recht %s bestaat al"
476
-
477
- #: ../includes/class-ure-lib.php:2410
478
- #, php-format
479
- msgid "Error! You do not have permission to delete this capability: %s!"
480
- msgstr "Fout! U heeft geen toestemming om dit recht te verwijderen: % s!"
481
-
482
- #: ../includes/class-ure-lib.php:2429
483
- #, fuzzy, php-format
484
- msgid "Capability %s was removed successfully"
485
- msgstr "Recht %s is succesvol verwijderd"
486
-
487
- #: ../includes/class-ure-lib.php:2497
488
- msgid "Version:"
489
- msgstr "Versie:"
490
-
491
- #: ../includes/class-ure-lib.php:2498
492
- msgid "Author's website"
493
- msgstr "Website van de auteur"
494
-
495
- #: ../includes/class-ure-lib.php:2499
496
- msgid "Plugin webpage"
497
- msgstr "Plugin webpagina "
498
-
499
- #: ../includes/class-ure-lib.php:2500
500
- msgid "Plugin download"
501
- msgstr "Plugin download "
502
-
503
- #: ../includes/class-ure-lib.php:2501
504
- #: ../includes/class-user-role-editor.php:546
505
- msgid "Changelog"
506
- msgstr "Changelog"
507
-
508
- #: ../includes/class-ure-lib.php:2502
509
- msgid "FAQ"
510
- msgstr "FAQ"
511
-
512
- #: ../includes/class-ure-lib.php:2575
513
- msgid "Delete All Unused Roles"
514
- msgstr "Verwijder alle niet gebruikte Rollen"
515
-
516
- #: ../includes/class-ure-lib.php:2588
517
- msgid "None"
518
- msgstr "Geen"
519
-
520
- #: ../includes/class-ure-lib.php:2632
521
- msgid "&mdash; No role for this site &mdash;"
522
- msgstr "&mdash; Geen rol voor deze website &mdash;"
523
-
524
- #: ../includes/class-ure-lib.php:2747
525
- #, php-format
526
- msgid "Denied: %s"
527
- msgstr ""
528
-
529
- #: ../includes/ure-role-edit.php:17
530
- msgid "Select Role and change its capabilities:"
531
- msgstr "Selecteer de Rol en wijzig de rechten"
532
-
533
- #: ../includes/ure-role-edit.php:30 ../includes/ure-user-edit.php:54
534
- msgid "Show capabilities in human readable form"
535
- msgstr "Toon rechten in leesbare vorm"
536
-
537
- #: ../includes/ure-role-edit.php:40 ../includes/class-ure-screen-help.php:21
538
- #: ../includes/settings-template.php:69 ../includes/ure-user-edit.php:64
539
- msgid "Show deprecated capabilities"
540
- msgstr "Toon afgekeurde rechten"
541
-
542
- #: ../includes/ure-role-edit.php:44
543
- msgid "If checked, then apply action to ALL sites of this Network"
544
- msgstr ""
545
- "Indien aangevinkt, worden alle acties toegepast op ALLE locaties van dit "
546
- "netwerk"
547
-
548
- #: ../includes/ure-role-edit.php:56
549
- msgid "Apply to All Sites"
550
- msgstr "Pas toe op alle Sites"
551
-
552
- #: ../includes/ure-role-edit.php:63 ../includes/ure-user-edit.php:110
553
- msgid "Core capabilities:"
554
- msgstr "Core rechten:"
555
-
556
- #: ../includes/ure-role-edit.php:65 ../includes/ure-user-edit.php:112
557
- msgid "Quick filter:"
558
- msgstr "Snel filter:"
559
-
560
- #: ../includes/ure-role-edit.php:83 ../includes/ure-user-edit.php:131
561
- msgid "Custom capabilities:"
562
- msgstr "Gebruikelijke rechten:"
563
-
564
- #: ../includes/class-user-other-roles.php:82
565
- #: ../includes/class-user-other-roles.php:183
566
- #: ../includes/class-user-other-roles.php:243
567
- msgid "Other Roles"
568
- msgstr "Andere Rollen"
569
-
570
- #: ../includes/class-user-other-roles.php:83
571
- msgid "Select additional roles for this user"
572
- msgstr ""
573
-
574
- #: ../includes/class-user-other-roles.php:162
575
- #: ../includes/class-user-role-editor.php:438
576
- msgid "Capabilities"
577
- msgstr "Rechten"
578
-
579
- #: ../includes/class-user-other-roles.php:169
580
- msgid "Edit"
581
- msgstr "Wijzigen"
582
-
583
- #: ../includes/class-user-other-roles.php:215
584
- #, fuzzy
585
- msgid "Additional Capabilities"
586
- msgstr "Recht toevoegen"
587
-
588
- #: ../includes/class-ure-screen-help.php:12
589
- #: ../includes/class-ure-screen-help.php:41
590
- #: ../includes/class-ure-screen-help.php:60
591
- #: ../includes/class-ure-screen-help.php:79
592
- msgid "User Role Editor Options page help"
593
- msgstr "User Rol Editor Opties hulp pagina"
594
-
595
- #: ../includes/class-ure-screen-help.php:15
596
- #: ../includes/settings-template.php:53
597
- msgid "Show Administrator role at User Role Editor"
598
- msgstr "Toon Beheerders Rol in de Gebruikers Rol Editor"
599
-
600
- #: ../includes/class-ure-screen-help.php:16
601
- msgid ""
602
- "turn this option on in order to make the \"Administrator\" role available at "
603
- "the User Role Editor roles selection drop-down list. It is hidden by default "
604
- "for security reasons."
605
- msgstr ""
606
- "zet deze optie aan om de \"Administrator \" rol te zichtbaar te maken in de "
607
- "Userr Role Editor rollen selectie keuzelijst. Het wordt standaard verborgen "
608
- "om veiligheidsredenen."
609
-
610
- #: ../includes/class-ure-screen-help.php:18
611
- #: ../includes/settings-template.php:61
612
- msgid "Show capabilities in the human readable form"
613
- msgstr "Toon de rechten in een leesbare vorm"
614
-
615
- #: ../includes/class-ure-screen-help.php:19
616
- msgid ""
617
- "automatically converts capability names from the technical form for internal "
618
- "use like \"edit_others_posts\" to more user friendly form, e.g. \"Edit "
619
- "others posts\"."
620
- msgstr ""
621
- "converteert automatisch de namen van de rechten uit het technische formulier "
622
- "voor intern gebruik zoals \"edit_berichten_van_anderen \" naar een meer "
623
- "gebruiksvriendelijke vorm, bijvoorbeeld \"Edit berichten van anderen \"."
624
-
625
- #: ../includes/class-ure-screen-help.php:22
626
- msgid ""
627
- "Capabilities like \"level_0\", \"level_1\" are deprecated and are not used "
628
- "by WordPress. They are left at the user roles for the compatibility purpose "
629
- "with the old themes and plugins code. Turning on this option will show those "
630
- "deprecated capabilities."
631
- msgstr ""
632
- "Rechten zoals \"level_0 \", \"level_1 \" zijn verouderd en worden niet meer "
633
- "gebruikt door WordPress. Ze worden gekoppeld aan de rollen van een "
634
- "gebruiker met als reden compatibiliteits doeleinden met oude thema's en "
635
- "plugins code. Het inschakelen van deze optie zal de afgekeurde rechten tonen."
636
-
637
- #: ../includes/class-ure-screen-help.php:25
638
- #: ../includes/settings-template.php:77
639
- msgid "Edit user capabilities"
640
- msgstr "Wijzigen gebruikelijke rechten"
641
-
642
- #: ../includes/class-ure-screen-help.php:26
643
- msgid ""
644
- "If turned off - capabilities section of selected user is shown in readonly "
645
- "mode. Administrator can not assign capabilities to the user directly. He "
646
- "should make it using roles only."
647
- msgstr ""
648
- "Indien uit, het gebruikers rechten gedeelte van de geselecteerde gebruik "
649
- "wordt getoond in \"alleen lezen\" mode. De beheerder kan geen rechten direct "
650
- "aan een gebruiker toekenne. Hij moet gebruik maken van rollen."
651
-
652
- #: ../includes/class-ure-screen-help.php:45
653
- #: ../includes/settings-template.php:111
654
- msgid "Count users without role"
655
- msgstr "Het aantal Gebruikers zonder rol"
656
-
657
- #: ../includes/class-ure-screen-help.php:46
658
- msgid ""
659
- "Show at the \"Users\" page a quant of users without role. Module allows to "
660
- "assign all of them an empty role \"No rights\", in order to look on the "
661
- "users list with role \"No rights\" at the separate tab then."
662
- msgstr ""
663
- "Toon op de \"Users\" pagina een blok met gebruikers zonder rol. Deze module "
664
- "kan ze allemaal een lege rol \"Geen rechten\" toekennen. "
665
-
666
- #: ../includes/class-ure-screen-help.php:63
667
- msgid "Other default roles for new registered user"
668
- msgstr "Andere standaard rollen voor nieuw geregistreerde gebruiker"
669
-
670
- #: ../includes/class-ure-screen-help.php:64
671
- msgid ""
672
- "select roles below to assign them to the new user automatically as an "
673
- "addition to the primary role. Note for multisite environment: take into "
674
- "account that other default roles should exist at the site, in order to be "
675
- "assigned to the new registered users."
676
- msgstr ""
677
- "Notitie voor multisite-omgeving: houdt er rekening mee dat er andere "
678
- "standaard functies op de site moeten bestaan, om toegewezen te kunnen worden "
679
- "aan nieuw geregistreerde gebruikers."
680
-
681
- #: ../includes/class-ure-screen-help.php:82
682
- msgid "Allow non super-admininstrators to create, edit and delete users"
683
- msgstr ""
684
- "Sta niet super beheerders toe om gebruikers aan te maken, te bewerken en te "
685
- "verwijderen"
686
-
687
- #: ../includes/class-ure-screen-help.php:83
688
- msgid ""
689
- "Super administrator only may create, edit and delete users under WordPress "
690
- "multi-site by default. Turn this option on in order to remove this "
691
- "limitation."
692
- msgstr ""
693
- "Alleen de super beheerder kan gebruikers aanmaken, bewerken en verwijderen "
694
- "in WordPress multi-site. Schakel deze optie in om deze beperking te "
695
- "verwijderen."
696
-
697
- #: ../includes/class-user-role-editor.php:233
698
- msgid "Change role for users without role"
699
- msgstr "Wijzig de rol van gebruikers zonder rol"
700
-
701
- #: ../includes/class-user-role-editor.php:234
702
- msgid "No rights"
703
- msgstr "Geen rechten"
704
-
705
- #: ../includes/class-user-role-editor.php:235
706
- msgid "Provide new role"
707
- msgstr "Creëer een nieuwe rol"
708
-
709
- #: ../includes/class-user-role-editor.php:298
710
- #: ../includes/class-user-role-editor.php:300
711
- msgid "You do not have permission to edit this user."
712
- msgstr "Je hebt toestemming om gegevens van deze gebruiker te wijzigen"
713
-
714
- #: ../includes/class-user-role-editor.php:535
715
- msgid "Settings"
716
- msgstr "Instellingen"
717
-
718
- #: ../includes/class-user-role-editor.php:568
719
- #: ../includes/settings-template.php:21
720
- msgid "General"
721
- msgstr "Algemeen"
722
-
723
- #: ../includes/class-user-role-editor.php:574
724
- #: ../includes/settings-template.php:26
725
- msgid "Additional Modules"
726
- msgstr "Aanvullende modules"
727
-
728
- #: ../includes/class-user-role-editor.php:580
729
- #: ../includes/settings-template.php:30
730
- msgid "Default Roles"
731
- msgstr "Standaard Rollen"
732
-
733
- #: ../includes/class-user-role-editor.php:586
734
- #: ../includes/settings-template.php:34
735
- msgid "Multisite"
736
- msgstr "Multisite"
737
-
738
- #: ../includes/class-user-role-editor.php:685
739
- #: ../includes/class-user-role-editor.php:703
740
- #: ../includes/class-user-role-editor.php:747
741
- msgid "User Role Editor options are updated"
742
- msgstr "User Role Editor opties zijn ge-update"
743
-
744
- #: ../includes/class-user-role-editor.php:731
745
- msgid "Default Roles are updated"
746
- msgstr "Standaard Rollen zijn ge-update"
747
-
748
- #: ../includes/class-user-role-editor.php:756
749
- msgid ""
750
- "You do not have sufficient permissions to manage options for User Role "
751
- "Editor."
752
- msgstr "Je hebt onvoldoende rechten om de User Role Editor te beheren."
753
-
754
- #: ../includes/class-user-role-editor.php:885
755
- msgid "Select All"
756
- msgstr "Alles selecteren"
757
-
758
- #: ../includes/class-user-role-editor.php:886
759
- msgid "Unselect All"
760
- msgstr "Alles deselecteren"
761
-
762
- #: ../includes/class-user-role-editor.php:887
763
- msgid "Reverse"
764
- msgstr "Omzetten"
765
-
766
- #: ../includes/class-user-role-editor.php:888
767
- msgid "Update"
768
- msgstr "Update"
769
-
770
- #: ../includes/class-user-role-editor.php:889
771
- msgid "Please confirm permissions update"
772
- msgstr "Bevestig toestemming om te mogen updaten"
773
-
774
- #: ../includes/class-user-role-editor.php:890
775
- msgid "Add New Role"
776
- msgstr "Nieuwe Rol Toevoegen"
777
-
778
- #: ../includes/class-user-role-editor.php:891
779
- #: ../includes/class-user-role-editor.php:896
780
- msgid "Rename Role"
781
- msgstr "Hernoem Rol"
782
-
783
- #: ../includes/class-user-role-editor.php:892
784
- msgid " Role name (ID) can not be empty!"
785
- msgstr "Rol naam (ID) kan niet leeg zijn!"
786
-
787
- #: ../includes/class-user-role-editor.php:893
788
- msgid ""
789
- " Role name (ID) must contain latin characters, digits, hyphens or underscore "
790
- "only!"
791
- msgstr ""
792
- "Rol naam (ID) moet latijnse letters, cijfers, koppeltekens of een underscore "
793
- "bevatten!"
794
-
795
- #: ../includes/class-user-role-editor.php:894
796
- msgid ""
797
- " WordPress does not support numeric Role name (ID). Add latin characters to "
798
- "it."
799
- msgstr ""
800
- "WordPress ondersteund geen numerieke Rol naam (ID). Voeg er latijnse tekens "
801
- "aan toe."
802
-
803
- #: ../includes/class-user-role-editor.php:895
804
- msgid "Add Role"
805
- msgstr "Rol toevoegen"
806
-
807
- #: ../includes/class-user-role-editor.php:897
808
- msgid "Delete Role"
809
- msgstr "Rol verwijderen"
810
-
811
- #: ../includes/class-user-role-editor.php:898
812
- msgid "Cancel"
813
- msgstr "Annuleren"
814
-
815
- #: ../includes/class-user-role-editor.php:899
816
- msgid "Add Capability"
817
- msgstr "Recht toevoegen"
818
-
819
- #: ../includes/class-user-role-editor.php:900
820
- #: ../includes/class-user-role-editor.php:909
821
- msgid "Delete Capability"
822
- msgstr "Recht verwijderen"
823
-
824
- #: ../includes/class-user-role-editor.php:901
825
- msgid "Reset"
826
- msgstr "Terugkeren naar de basisinstellingen"
827
-
828
- #: ../includes/class-user-role-editor.php:902
829
- msgid "DANGER! Resetting will restore default settings from WordPress Core."
830
- msgstr ""
831
- "OPGELET! Opnieuw instellen zal de basisinstellingen herstellen van WordPress "
832
- "Core"
833
-
834
- #: ../includes/class-user-role-editor.php:903
835
- msgid ""
836
- "If any plugins have changed capabilities in any way upon installation (such "
837
- "as S2Member, WooCommerce, and many more), those capabilities will be DELETED!"
838
- msgstr ""
839
- "Als plugins op enigerlei wijz instellingen gewijzigd hebben bij de "
840
- "installatie (zoals S2Member, WooCommerce, en nog veel meer), zullen deze "
841
- "instellingen worden VERWIJDERD!"
842
-
843
- #: ../includes/class-user-role-editor.php:904
844
- msgid ""
845
- "For more information on how to undo changes and restore plugin capabilities "
846
- "go to"
847
- msgstr ""
848
- "Voor meer informatie over hoe u wijzigingen ongedaan kunt maken en rechten "
849
- "van de plugin kunt herstellen ga naar"
850
-
851
- #: ../includes/class-user-role-editor.php:906
852
- msgid "Continue?"
853
- msgstr "Doorgaan?"
854
-
855
- #: ../includes/class-user-role-editor.php:907
856
- msgid "Default Role"
857
- msgstr "Standaard Rol"
858
-
859
- #: ../includes/class-user-role-editor.php:908
860
- msgid "Set New Default Role"
861
- msgstr "Maak een nieuwe standaard rol aan"
862
-
863
- #: ../includes/class-user-role-editor.php:910
864
- msgid ""
865
- "Warning! Be careful - removing critical capability could crash some plugin "
866
- "or other custom code"
867
- msgstr ""
868
- "Waarschuwing! Wees voorzichtig - het verwijderen van een recht laat sommige "
869
- "plugins of aangepaste code crashen"
870
-
871
- #: ../includes/class-user-role-editor.php:911
872
- msgid " Capability name (ID) can not be empty!"
873
- msgstr "Een recht naam (ID) kan niet leeg zijn!"
874
-
875
- #: ../includes/class-user-role-editor.php:912
876
- msgid ""
877
- " Capability name (ID) must contain latin characters, digits, hyphens or "
878
- "underscore only!"
879
- msgstr ""
880
- "Naam van het recht (ID) moet Latijnse letters, cijfers, koppeltekens of "
881
- "underscores bevatten!!"
882
-
883
- #: ../includes/settings-template.php:17
884
- msgid "User Role Editor - Options"
885
- msgstr "User Rol Editor - Opties"
886
-
887
- #: ../includes/settings-template.php:39
888
- msgid "About"
889
- msgstr "Over"
890
-
891
- #: ../includes/settings-template.php:90 ../includes/settings-template.php:126
892
- #: ../includes/settings-template.php:158 ../includes/settings-template.php:190
893
- msgid "Save"
894
- msgstr "Opslaan"
895
-
896
- #: ../includes/settings-template.php:138
897
- msgid "Primary default role: "
898
- msgstr "Standaard rol:"
899
-
900
- #: ../includes/settings-template.php:145
901
- msgid "Other default roles for new registered user: "
902
- msgstr "Andere standaard rollen voor nieuw geregistreerde gebruiker:"
903
-
904
- #: ../includes/settings-template.php:151
905
- msgid ""
906
- "Note for multisite environment: take into account that other default roles "
907
- "should exist at the site, in order to be assigned to the new registered "
908
- "users."
909
- msgstr ""
910
- "Noot voor multisite-omgeving: houdt er rekening mee dat er andere standaard "
911
- "functies op de site moeten bestaan, om toegewezen te kunnen worden aan nieuw "
912
- "geregistreerde gebruikers."
913
-
914
- #: ../includes/settings-template.php:177
915
- msgid "Allow non super administrators to create, edit, and delete users"
916
- msgstr ""
917
- "Sta niet super beheerders toe om gebruikers aan te maken, te bewerken en te "
918
- "verwijderen"
919
-
920
- #: ../includes/ure-user-edit.php:32
921
- msgid "Network Super Admin"
922
- msgstr "Network Super Beheerder"
923
-
924
- #: ../includes/ure-user-edit.php:35
925
- msgid "Change capabilities for user"
926
- msgstr "Wijzig de rechten van deze gebruiker"
927
-
928
- #: ../includes/ure-user-edit.php:72
929
- msgid "Primary Role:"
930
- msgstr "Primaire Rol:"
931
-
932
- #: ../includes/ure-user-edit.php:82
933
- msgid "bbPress Role:"
934
- msgstr "bbPress Rol:"
935
-
936
- #: ../includes/ure-user-edit.php:92
937
- msgid "Other Roles:"
938
- msgstr "Andere Rollen:"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
lang/user-role-editor-ru_RU.mo DELETED
Binary file
lang/user-role-editor-ru_RU.po DELETED
@@ -1,1648 +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: 2015-09-11 21:06+0100\n"
6
- "PO-Revision-Date: \n"
7
- "Last-Translator: Vladimir Garagulya <vladimir@shinephp.com>\n"
8
- "Language-Team: ShinePHP.com <vladimir@shinephp.com>\n"
9
- "Language: ru_RU\n"
10
- "MIME-Version: 1.0\n"
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/class-ure-lib.php:247
20
- msgid "Error: wrong request"
21
- msgstr "Ошибка: неверный запрос"
22
-
23
- #: ../includes/class-ure-lib.php:280 ../includes/class-ure-lib.php:291
24
- msgid "Role name (ID): "
25
- msgstr "Идентификатор роли (ID):"
26
-
27
- #: ../includes/class-ure-lib.php:282 ../includes/class-ure-lib.php:293
28
- msgid "Display Role Name: "
29
- msgstr "Наименование роли:"
30
-
31
- #: ../includes/class-ure-lib.php:284
32
- msgid "Make copy of: "
33
- msgstr "Создать копию из:"
34
-
35
- #: ../includes/class-ure-lib.php:300
36
- msgid "Select Role:"
37
- msgstr "Выбери Роль:"
38
-
39
- #: ../includes/class-ure-lib.php:315
40
- msgid "Delete:"
41
- msgstr "Удалить"
42
-
43
- #: ../includes/class-ure-lib.php:322
44
- msgid "Capability name (ID): "
45
- msgstr "Идентификатор (ID):"
46
-
47
- #: ../includes/class-ure-lib.php:339
48
- #: ../includes/class-user-role-editor.php:596
49
- #: ../includes/class-user-role-editor.php:625
50
- msgid "User Role Editor"
51
- msgstr "Редактор ролей пользователей"
52
-
53
- #: ../includes/class-ure-lib.php:436
54
- msgid "Error: "
55
- msgstr "Ошибка:"
56
-
57
- #: ../includes/class-ure-lib.php:436
58
- msgid "Role"
59
- msgstr "Роль"
60
-
61
- #: ../includes/class-ure-lib.php:437
62
- msgid "does not exist"
63
- msgstr "не существует"
64
-
65
- #: ../includes/class-ure-lib.php:480
66
- msgid "Role is updated successfully"
67
- msgstr "Роль изменена успешно"
68
-
69
- #: ../includes/class-ure-lib.php:482
70
- msgid "Roles are updated for all network"
71
- msgstr "Роли изменены для всей сети"
72
-
73
- #: ../includes/class-ure-lib.php:488
74
- msgid "Error occured during role(s) update"
75
- msgstr "При изменении роли произошла ошибка"
76
-
77
- #: ../includes/class-ure-lib.php:495
78
- msgid "User capabilities are updated successfully"
79
- msgstr "Права пользователя изменены успешно"
80
-
81
- #: ../includes/class-ure-lib.php:500
82
- msgid "Error occured during user update"
83
- msgstr "При изменении прав пользователя произошла ошибка "
84
-
85
- #: ../includes/class-ure-lib.php:558
86
- msgid "User Roles are restored to WordPress default values. "
87
- msgstr "Роли возвращены к начальному состоянию"
88
-
89
- #: ../includes/class-ure-lib.php:1436
90
- msgid "read about"
91
- msgstr "прочесть о"
92
-
93
- #: ../includes/class-ure-lib.php:1437
94
- msgid "user capability"
95
- msgstr "праве пользователя"
96
-
97
- #: ../includes/class-ure-lib.php:1438
98
- msgid "Help"
99
- msgstr "Помощь"
100
-
101
- #: ../includes/class-ure-lib.php:1693 ../includes/class-ure-lib.php:1946
102
- #: ../includes/class-ure-lib.php:2062 ../includes/class-ure-lib.php:2110
103
- #: ../includes/class-ure-lib.php:2358 ../includes/class-ure-lib.php:2403
104
- #: ../includes/class-user-role-editor.php:828
105
- msgid "Insufficient permissions to work with User Role Editor"
106
- msgstr "Не достаточно прав для работы с User Role Editor"
107
-
108
- #: ../includes/class-ure-lib.php:1909
109
- msgid "Error is occur. Please check the log file."
110
- msgstr "Произошла ошибка. Проверьте лог-файл."
111
-
112
- #: ../includes/class-ure-lib.php:1955 ../includes/class-ure-lib.php:2022
113
- msgid ""
114
- "Error: Role ID must contain latin characters, digits, hyphens or underscore "
115
- "only!"
116
- msgstr ""
117
- "Ошибка: идентификатор роли (ID) должен содержать только латинские буквы, "
118
- "цифры, знак подчеркивания и дефис."
119
-
120
- #: ../includes/class-ure-lib.php:1959 ../includes/class-ure-lib.php:2026
121
- msgid ""
122
- "Error: WordPress does not support numeric Role name (ID). Add latin "
123
- "characters to it."
124
- msgstr ""
125
- "Ошибка: WordPress не поддерживает цифровые идентификаторы ролей. Начните имя "
126
- "роли с латинских символов."
127
-
128
- #: ../includes/class-ure-lib.php:1974
129
- #, php-format
130
- msgid "Role %s exists already"
131
- msgstr "Роль %s уже существует"
132
-
133
- #: ../includes/class-ure-lib.php:1989
134
- msgid "Error is encountered during new role create operation"
135
- msgstr "Произошла ошибка при создании новой роли"
136
-
137
- #: ../includes/class-ure-lib.php:1991
138
- #, php-format
139
- msgid "Role %s is created successfully"
140
- msgstr "Роль %s создана успешно"
141
-
142
- #: ../includes/class-ure-lib.php:2015
143
- msgid "Error: Role ID is empty!"
144
- msgstr "Ошибка: пустой идентификатор (ID) роли!"
145
-
146
- #: ../includes/class-ure-lib.php:2033
147
- msgid "Error: Empty role display name is not allowed."
148
- msgstr "Ошибка: пустое наименование роли не допускается"
149
-
150
- #: ../includes/class-ure-lib.php:2040
151
- #, php-format
152
- msgid "Role %s does not exists"
153
- msgstr "Роль %s не существует"
154
-
155
- #: ../includes/class-ure-lib.php:2048
156
- #, php-format
157
- msgid "Role %s is renamed to %s successfully"
158
- msgstr "Роль %s успешно переименована в %s"
159
-
160
- #: ../includes/class-ure-lib.php:2121
161
- msgid "Error encountered during role delete operation"
162
- msgstr "Произошла ошибка при удалении роли"
163
-
164
- #: ../includes/class-ure-lib.php:2123
165
- msgid "Unused roles are deleted successfully"
166
- msgstr "Неиспользуемые роли удалены успешно"
167
-
168
- #: ../includes/class-ure-lib.php:2125
169
- #, php-format
170
- msgid "Role %s is deleted successfully"
171
- msgstr "Роль %s удалена успешно"
172
-
173
- #: ../includes/class-ure-lib.php:2153
174
- msgid "Error encountered during default role change operation"
175
- msgstr "Произошла ошибка при изменении роли по-умолчанию"
176
-
177
- #: ../includes/class-ure-lib.php:2156
178
- #, php-format
179
- msgid "Default role for new users is set to %s successfully"
180
- msgstr "Роль по-умолчанию для новых пользователй изменена на %s успешно."
181
-
182
- #: ../includes/class-ure-lib.php:2159
183
- msgid "Can not set Administrator role as a default one"
184
- msgstr ""
185
- "Запрещается использовать роль Администратор в качестве роли по-умолчанию"
186
-
187
- #: ../includes/class-ure-lib.php:2161
188
- msgid "This role does not exist - "
189
- msgstr "Эта роль не существует"
190
-
191
- #: ../includes/class-ure-lib.php:2177
192
- msgid "Editor"
193
- msgstr "Редактор"
194
-
195
- #: ../includes/class-ure-lib.php:2178
196
- msgid "Author"
197
- msgstr "Автор"
198
-
199
- #: ../includes/class-ure-lib.php:2179
200
- msgid "Contributor"
201
- msgstr "Участник"
202
-
203
- #: ../includes/class-ure-lib.php:2180
204
- msgid "Subscriber"
205
- msgstr "Подписчик"
206
-
207
- #: ../includes/class-ure-lib.php:2182
208
- msgid "Switch themes"
209
- msgstr "Менять темы"
210
-
211
- #: ../includes/class-ure-lib.php:2183
212
- msgid "Edit themes"
213
- msgstr "Изменять темы"
214
-
215
- #: ../includes/class-ure-lib.php:2184
216
- msgid "Activate plugins"
217
- msgstr "Активировать плагины"
218
-
219
- #: ../includes/class-ure-lib.php:2185
220
- msgid "Edit plugins"
221
- msgstr "Редактировать плагины"
222
-
223
- #: ../includes/class-ure-lib.php:2186
224
- msgid "Edit users"
225
- msgstr "Изменять пользователей"
226
-
227
- #: ../includes/class-ure-lib.php:2187
228
- msgid "Edit files"
229
- msgstr "Изменять файлы"
230
-
231
- #: ../includes/class-ure-lib.php:2188
232
- msgid "Manage options"
233
- msgstr "Управлять установками"
234
-
235
- #: ../includes/class-ure-lib.php:2189
236
- msgid "Moderate comments"
237
- msgstr "Модерировать комментарии"
238
-
239
- #: ../includes/class-ure-lib.php:2190
240
- msgid "Manage categories"
241
- msgstr "Управлять категориями"
242
-
243
- #: ../includes/class-ure-lib.php:2191
244
- msgid "Manage links"
245
- msgstr "Управлять ссылками"
246
-
247
- #: ../includes/class-ure-lib.php:2192
248
- msgid "Upload files"
249
- msgstr "Загружать файлы"
250
-
251
- #: ../includes/class-ure-lib.php:2193
252
- msgid "Import"
253
- msgstr "Импорт"
254
-
255
- #: ../includes/class-ure-lib.php:2194
256
- msgid "Unfiltered html"
257
- msgstr "html без фильтра"
258
-
259
- #: ../includes/class-ure-lib.php:2195
260
- msgid "Edit posts"
261
- msgstr "Изменять статьи"
262
-
263
- #: ../includes/class-ure-lib.php:2196
264
- msgid "Edit others posts"
265
- msgstr "Изменять чужие статьи"
266
-
267
- #: ../includes/class-ure-lib.php:2197
268
- msgid "Edit published posts"
269
- msgstr "Редактировать опубликованные статьи"
270
-
271
- #: ../includes/class-ure-lib.php:2198
272
- msgid "Publish posts"
273
- msgstr "Публиковать статьи"
274
-
275
- #: ../includes/class-ure-lib.php:2199
276
- msgid "Edit pages"
277
- msgstr "Изменять страницы"
278
-
279
- #: ../includes/class-ure-lib.php:2200
280
- msgid "Read"
281
- msgstr "Чтение"
282
-
283
- #: ../includes/class-ure-lib.php:2201
284
- msgid "Level 10"
285
- msgstr "Уровень 10"
286
-
287
- #: ../includes/class-ure-lib.php:2202
288
- msgid "Level 9"
289
- msgstr "Уровень 9"
290
-
291
- #: ../includes/class-ure-lib.php:2203
292
- msgid "Level 8"
293
- msgstr "Уровень 9"
294
-
295
- #: ../includes/class-ure-lib.php:2204
296
- msgid "Level 7"
297
- msgstr "Уровень 7"
298
-
299
- #: ../includes/class-ure-lib.php:2205
300
- msgid "Level 6"
301
- msgstr "Уровень 6"
302
-
303
- #: ../includes/class-ure-lib.php:2206
304
- msgid "Level 5"
305
- msgstr "Уровень 5"
306
-
307
- #: ../includes/class-ure-lib.php:2207
308
- msgid "Level 4"
309
- msgstr "Уровень 4"
310
-
311
- #: ../includes/class-ure-lib.php:2208
312
- msgid "Level 3"
313
- msgstr "Уровень 3"
314
-
315
- #: ../includes/class-ure-lib.php:2209
316
- msgid "Level 2"
317
- msgstr "Уровень 2"
318
-
319
- #: ../includes/class-ure-lib.php:2210
320
- msgid "Level 1"
321
- msgstr "Уровень 1"
322
-
323
- #: ../includes/class-ure-lib.php:2211
324
- msgid "Level 0"
325
- msgstr "Уровень 0"
326
-
327
- #: ../includes/class-ure-lib.php:2212
328
- msgid "Edit others pages"
329
- msgstr "Редактировать чужие страницы"
330
-
331
- #: ../includes/class-ure-lib.php:2213
332
- msgid "Edit published pages"
333
- msgstr "Редактировать опубликованные страницы"
334
-
335
- #: ../includes/class-ure-lib.php:2214
336
- msgid "Publish pages"
337
- msgstr "Публиковать страницы"
338
-
339
- #: ../includes/class-ure-lib.php:2215
340
- msgid "Delete pages"
341
- msgstr "Удалять страницы"
342
-
343
- #: ../includes/class-ure-lib.php:2216
344
- msgid "Delete others pages"
345
- msgstr "Удалить чужие страницы"
346
-
347
- #: ../includes/class-ure-lib.php:2217
348
- msgid "Delete published pages"
349
- msgstr "Удалять опубликованные страницы"
350
-
351
- #: ../includes/class-ure-lib.php:2218
352
- msgid "Delete posts"
353
- msgstr "Удалять статьи"
354
-
355
- #: ../includes/class-ure-lib.php:2219
356
- msgid "Delete others posts"
357
- msgstr "Удалять чужие статьи"
358
-
359
- #: ../includes/class-ure-lib.php:2220
360
- msgid "Delete published posts"
361
- msgstr "Удалять опубликованные статьи"
362
-
363
- #: ../includes/class-ure-lib.php:2221
364
- msgid "Delete private posts"
365
- msgstr "Удалять частные статьи"
366
-
367
- #: ../includes/class-ure-lib.php:2222
368
- msgid "Edit private posts"
369
- msgstr "Редактировать частные статьи"
370
-
371
- #: ../includes/class-ure-lib.php:2223
372
- msgid "Read private posts"
373
- msgstr "Читать частные статьи"
374
-
375
- #: ../includes/class-ure-lib.php:2224
376
- msgid "Delete private pages"
377
- msgstr "Удалять частные страницы"
378
-
379
- #: ../includes/class-ure-lib.php:2225
380
- msgid "Edit private pages"
381
- msgstr "Редактировать частные страницы"
382
-
383
- #: ../includes/class-ure-lib.php:2226
384
- msgid "Read private pages"
385
- msgstr "Читать частные страницы"
386
-
387
- #: ../includes/class-ure-lib.php:2227
388
- msgid "Delete users"
389
- msgstr "Удалять пользователей"
390
-
391
- #: ../includes/class-ure-lib.php:2228
392
- msgid "Create users"
393
- msgstr "Создавать пользователей"
394
-
395
- #: ../includes/class-ure-lib.php:2229
396
- msgid "Unfiltered upload"
397
- msgstr "Загрузка без фильтра"
398
-
399
- #: ../includes/class-ure-lib.php:2230
400
- msgid "Edit dashboard"
401
- msgstr "Изменять панель администратора"
402
-
403
- #: ../includes/class-ure-lib.php:2231
404
- msgid "Update plugins"
405
- msgstr "Обновлять плагины"
406
-
407
- #: ../includes/class-ure-lib.php:2232
408
- msgid "Delete plugins"
409
- msgstr "Удалять плагины"
410
-
411
- #: ../includes/class-ure-lib.php:2233
412
- msgid "Install plugins"
413
- msgstr "Устанавливать плагины"
414
-
415
- #: ../includes/class-ure-lib.php:2234
416
- msgid "Update themes"
417
- msgstr "Обновлять темы"
418
-
419
- #: ../includes/class-ure-lib.php:2235
420
- msgid "Install themes"
421
- msgstr "Устанавливать темы"
422
-
423
- #: ../includes/class-ure-lib.php:2236
424
- msgid "Update core"
425
- msgstr "Обновлять ядро"
426
-
427
- #: ../includes/class-ure-lib.php:2237
428
- msgid "List users"
429
- msgstr "Список пользователей"
430
-
431
- #: ../includes/class-ure-lib.php:2238
432
- msgid "Remove users"
433
- msgstr "Удалять пользователей"
434
-
435
- #: ../includes/class-ure-lib.php:2239
436
- msgid "Add users"
437
- msgstr "Добавлять пользователей"
438
-
439
- #: ../includes/class-ure-lib.php:2240
440
- msgid "Promote users"
441
- msgstr "Продвигать пользователей"
442
-
443
- #: ../includes/class-ure-lib.php:2241
444
- msgid "Edit theme options"
445
- msgstr "Изменять настройки темы"
446
-
447
- #: ../includes/class-ure-lib.php:2242
448
- msgid "Delete themes"
449
- msgstr "Удалять темы"
450
-
451
- #: ../includes/class-ure-lib.php:2243
452
- msgid "Export"
453
- msgstr "Экспорт"
454
-
455
- #: ../includes/class-ure-lib.php:2366
456
- msgid "Error: Capability name must contain latin characters and digits only!"
457
- msgstr "Ошибка: Имя должно содержать только латинские буквы и цифры"
458
-
459
- #: ../includes/class-ure-lib.php:2379
460
- #, php-format
461
- msgid "Capability %s is added successfully"
462
- msgstr "Возможность %s добавлена успешно"
463
-
464
- #: ../includes/class-ure-lib.php:2381
465
- #, php-format
466
- msgid "Capability %s exists already"
467
- msgstr "Возможность %s уже существует"
468
-
469
- #: ../includes/class-ure-lib.php:2410
470
- #, php-format
471
- msgid "Error! You do not have permission to delete this capability: %s!"
472
- msgstr "Ошибка! Вам запрещено удалять эту возможность: %s!"
473
-
474
- #: ../includes/class-ure-lib.php:2429
475
- #, php-format
476
- msgid "Capability %s was removed successfully"
477
- msgstr "Право %s удалено успешно"
478
-
479
- #: ../includes/class-ure-lib.php:2497
480
- msgid "Version:"
481
- msgstr "Версия:"
482
-
483
- #: ../includes/class-ure-lib.php:2498
484
- msgid "Author's website"
485
- msgstr "Вебсайт автора"
486
-
487
- #: ../includes/class-ure-lib.php:2499
488
- msgid "Plugin webpage"
489
- msgstr "Страница плагина"
490
-
491
- #: ../includes/class-ure-lib.php:2500
492
- msgid "Plugin download"
493
- msgstr "Загрузить плагин"
494
-
495
- #: ../includes/class-ure-lib.php:2501
496
- #: ../includes/class-user-role-editor.php:546
497
- msgid "Changelog"
498
- msgstr "Журнал изменений"
499
-
500
- #: ../includes/class-ure-lib.php:2502
501
- msgid "FAQ"
502
- msgstr "Часто задаваемые вопросы"
503
-
504
- #: ../includes/class-ure-lib.php:2575
505
- msgid "Delete All Unused Roles"
506
- msgstr "Удалить все неиспользуемые роли"
507
-
508
- #: ../includes/class-ure-lib.php:2588
509
- msgid "None"
510
- msgstr "Нет"
511
-
512
- #: ../includes/class-ure-lib.php:2632
513
- msgid "&mdash; No role for this site &mdash;"
514
- msgstr "&mdash; Нет роли для этого сайта &mdash;"
515
-
516
- #: ../includes/class-ure-lib.php:2747
517
- #, php-format
518
- msgid "Denied: %s"
519
- msgstr "Отказано: %s"
520
-
521
- #: ../includes/ure-role-edit.php:17
522
- msgid "Select Role and change its capabilities:"
523
- msgstr "Выбери роль и измени права доступа"
524
-
525
- #: ../includes/ure-role-edit.php:30 ../includes/ure-user-edit.php:54
526
- msgid "Show capabilities in human readable form"
527
- msgstr "Показ возможностей в читабельной форме"
528
-
529
- #: ../includes/ure-role-edit.php:40 ../includes/class-ure-screen-help.php:21
530
- #: ../includes/settings-template.php:69 ../includes/ure-user-edit.php:64
531
- msgid "Show deprecated capabilities"
532
- msgstr "Показать устаревшие разрешения"
533
-
534
- #: ../includes/ure-role-edit.php:44
535
- msgid "If checked, then apply action to ALL sites of this Network"
536
- msgstr "Если включено, применить ко всем сайтам этой Сети"
537
-
538
- #: ../includes/ure-role-edit.php:56
539
- msgid "Apply to All Sites"
540
- msgstr "Применить ко всем сайтам"
541
-
542
- #: ../includes/ure-role-edit.php:63 ../includes/ure-user-edit.php:110
543
- msgid "Core capabilities:"
544
- msgstr "Возможности ядра:"
545
-
546
- #: ../includes/ure-role-edit.php:65 ../includes/ure-user-edit.php:112
547
- msgid "Quick filter:"
548
- msgstr "Фильтр:"
549
-
550
- #: ../includes/ure-role-edit.php:83 ../includes/ure-user-edit.php:131
551
- msgid "Custom capabilities:"
552
- msgstr "Дополнительные возможности :"
553
-
554
- #: ../includes/class-user-other-roles.php:82
555
- #: ../includes/class-user-other-roles.php:183
556
- #: ../includes/class-user-other-roles.php:243
557
- msgid "Other Roles"
558
- msgstr "Другие роли"
559
-
560
- #: ../includes/class-user-other-roles.php:83
561
- msgid "Select additional roles for this user"
562
- msgstr "Выбрать дополнительные роли для этого пользователя"
563
-
564
- #: ../includes/class-user-other-roles.php:162
565
- #: ../includes/class-user-role-editor.php:438
566
- msgid "Capabilities"
567
- msgstr "Возможности"
568
-
569
- #: ../includes/class-user-other-roles.php:169
570
- msgid "Edit"
571
- msgstr "Изменить"
572
-
573
- #: ../includes/class-user-other-roles.php:215
574
- msgid "Additional Capabilities"
575
- msgstr "Дополнительные права"
576
-
577
- #: ../includes/class-ure-screen-help.php:12
578
- #: ../includes/class-ure-screen-help.php:41
579
- #: ../includes/class-ure-screen-help.php:60
580
- #: ../includes/class-ure-screen-help.php:79
581
- msgid "User Role Editor Options page help"
582
- msgstr "Редактор ролей пользователей - Опции - помощь"
583
-
584
- #: ../includes/class-ure-screen-help.php:15
585
- #: ../includes/settings-template.php:53
586
- msgid "Show Administrator role at User Role Editor"
587
- msgstr "Отобразить роль Администратор в Редакторе ролей пользователей"
588
-
589
- #: ../includes/class-ure-screen-help.php:16
590
- msgid ""
591
- "turn this option on in order to make the \"Administrator\" role available at "
592
- "the User Role Editor roles selection drop-down list. It is hidden by default "
593
- "for security reasons."
594
- msgstr ""
595
- "Включите эту опцию, чтобы сделать роль \"Администратор\" доступна в "
596
- "Редакторе Ролей пользователей. Из соображений безопасности по-умолчанию она "
597
- "скрыта."
598
-
599
- #: ../includes/class-ure-screen-help.php:18
600
- #: ../includes/settings-template.php:61
601
- msgid "Show capabilities in the human readable form"
602
- msgstr "Показ прав доступа в читабельной форме"
603
-
604
- #: ../includes/class-ure-screen-help.php:19
605
- msgid ""
606
- "automatically converts capability names from the technical form for internal "
607
- "use like \"edit_others_posts\" to more user friendly form, e.g. \"Edit "
608
- "others posts\"."
609
- msgstr ""
610
- "Автоматически конвертирует наименования пользовательских прав из технической "
611
- "формы для внутреннего пользования (\"edit_other_posts\") в более читабельную "
612
- "(\"Edit other posts\")."
613
-
614
- #: ../includes/class-ure-screen-help.php:22
615
- msgid ""
616
- "Capabilities like \"level_0\", \"level_1\" are deprecated and are not used "
617
- "by WordPress. They are left at the user roles for the compatibility purpose "
618
- "with the old themes and plugins code. Turning on this option will show those "
619
- "deprecated capabilities."
620
- msgstr ""
621
- "Права пользователей типа \"level_0\", \"level_1\" и т.п. устарели и больше "
622
- "не используются WordPress. Они оставлены в ролях пользователей только для "
623
- "обеспечения совместимости со старыми темами и плагинами. Включение данной "
624
- "опции покажет все устаревшие права пользователей."
625
-
626
- #: ../includes/class-ure-screen-help.php:25
627
- #: ../includes/settings-template.php:77
628
- msgid "Edit user capabilities"
629
- msgstr "Изменять права пользователя"
630
-
631
- #: ../includes/class-ure-screen-help.php:26
632
- msgid ""
633
- "If turned off - capabilities section of selected user is shown in readonly "
634
- "mode. Administrator can not assign capabilities to the user directly. He "
635
- "should make it using roles only."
636
- msgstr ""
637
- "Если выключено - секция прав выбранного пользователя отображается в режиме "
638
- "\"только чтение\". Администратор не может присваивать права пользователю "
639
- "напрямую, только через роли."
640
-
641
- #: ../includes/class-ure-screen-help.php:45
642
- #: ../includes/settings-template.php:111
643
- msgid "Count users without role"
644
- msgstr "Подсчёт пользователей без роли"
645
-
646
- #: ../includes/class-ure-screen-help.php:46
647
- msgid ""
648
- "Show at the \"Users\" page a quant of users without role. Module allows to "
649
- "assign all of them an empty role \"No rights\", in order to look on the "
650
- "users list with role \"No rights\" at the separate tab then."
651
- msgstr ""
652
- "Показать на странице \"Users\" количество пользователей без роли. Модуль "
653
- "позволяет присвоить всем им пустую роль \"No rights\", чтобы затем WordPress "
654
- "отобразил пользователей с этой ролью на отдельной вкладке."
655
-
656
- #: ../includes/class-ure-screen-help.php:63
657
- msgid "Other default roles for new registered user"
658
- msgstr "Другие роли по-умолчанию для вновь зарегистрированного пользователя:"
659
-
660
- #: ../includes/class-ure-screen-help.php:64
661
- msgid ""
662
- "select roles below to assign them to the new user automatically as an "
663
- "addition to the primary role. Note for multisite environment: take into "
664
- "account that other default roles should exist at the site, in order to be "
665
- "assigned to the new registered users."
666
- msgstr ""
667
- "выберите роли из расположенного ниже списка, чтобы присваивать их новым "
668
- "пользователям автоматически в дополнение к основной роли.Заметка для "
669
- "WordPress с несколькими сайтами: учтите, что для присвоения вновь "
670
- "зарегистрированному пользователю дополнительных ролей по-умолчанию эти роли "
671
- "должны существовать на этом сайте."
672
-
673
- #: ../includes/class-ure-screen-help.php:82
674
- msgid "Allow non super-admininstrators to create, edit and delete users"
675
- msgstr ""
676
- "Разрешить локальным администраторам сайтов (не суперадмин) создавать, "
677
- "изменять, удалять пользователей на своих сайтах"
678
-
679
- #: ../includes/class-ure-screen-help.php:83
680
- msgid ""
681
- "Super administrator only may create, edit and delete users under WordPress "
682
- "multi-site by default. Turn this option on in order to remove this "
683
- "limitation."
684
- msgstr ""
685
- "Только супер-администратор может создавать, изменять и удалять пользователей "
686
- "в многосайтовой сети WordPress. Включите эту опцию, чтобы отменить это "
687
- "ограничение."
688
-
689
- #: ../includes/class-user-role-editor.php:233
690
- msgid "Change role for users without role"
691
- msgstr "Изменить роль для пользователей без роли"
692
-
693
- #: ../includes/class-user-role-editor.php:234
694
- msgid "No rights"
695
- msgstr "Нет прав"
696
-
697
- #: ../includes/class-user-role-editor.php:235
698
- msgid "Provide new role"
699
- msgstr "Выберите новую роль"
700
-
701
- #: ../includes/class-user-role-editor.php:298
702
- #: ../includes/class-user-role-editor.php:300
703
- msgid "You do not have permission to edit this user."
704
- msgstr "Нет прав на редактирование этого пользователя"
705
-
706
- #: ../includes/class-user-role-editor.php:535
707
- msgid "Settings"
708
- msgstr "Установки"
709
-
710
- #: ../includes/class-user-role-editor.php:568
711
- #: ../includes/settings-template.php:21
712
- msgid "General"
713
- msgstr "Общие"
714
-
715
- #: ../includes/class-user-role-editor.php:574
716
- #: ../includes/settings-template.php:26
717
- msgid "Additional Modules"
718
- msgstr "Дополнительные модули"
719
-
720
- #: ../includes/class-user-role-editor.php:580
721
- #: ../includes/settings-template.php:30
722
- msgid "Default Roles"
723
- msgstr "Роли по-умолчанию"
724
-
725
- #: ../includes/class-user-role-editor.php:586
726
- #: ../includes/settings-template.php:34
727
- msgid "Multisite"
728
- msgstr "Многосайтовые"
729
-
730
- #: ../includes/class-user-role-editor.php:685
731
- #: ../includes/class-user-role-editor.php:703
732
- #: ../includes/class-user-role-editor.php:747
733
- msgid "User Role Editor options are updated"
734
- msgstr "Изменения в настройках Редактора ролей пользователей сохранены"
735
-
736
- #: ../includes/class-user-role-editor.php:731
737
- msgid "Default Roles are updated"
738
- msgstr "Изменения в роли по-умолчанию сохранены"
739
-
740
- #: ../includes/class-user-role-editor.php:756
741
- msgid ""
742
- "You do not have sufficient permissions to manage options for User Role "
743
- "Editor."
744
- msgstr "У вас нет прав на изменение настроек плагина"
745
-
746
- #: ../includes/class-user-role-editor.php:885
747
- msgid "Select All"
748
- msgstr "Выбрать все"
749
-
750
- #: ../includes/class-user-role-editor.php:886
751
- msgid "Unselect All"
752
- msgstr "Исключить все"
753
-
754
- #: ../includes/class-user-role-editor.php:887
755
- msgid "Reverse"
756
- msgstr "Обратить"
757
-
758
- #: ../includes/class-user-role-editor.php:888
759
- msgid "Update"
760
- msgstr "Сохранить"
761
-
762
- #: ../includes/class-user-role-editor.php:889
763
- msgid "Please confirm permissions update"
764
- msgstr "Пожалуйста, подтвердите продолжение "
765
-
766
- #: ../includes/class-user-role-editor.php:890
767
- msgid "Add New Role"
768
- msgstr "Добавить новую роль"
769
-
770
- #: ../includes/class-user-role-editor.php:891
771
- #: ../includes/class-user-role-editor.php:896
772
- msgid "Rename Role"
773
- msgstr "Переименовать роль"
774
-
775
- #: ../includes/class-user-role-editor.php:892
776
- msgid " Role name (ID) can not be empty!"
777
- msgstr "Идентификатор роли (ID) не может быть пустым!"
778
-
779
- #: ../includes/class-user-role-editor.php:893
780
- msgid ""
781
- " Role name (ID) must contain latin characters, digits, hyphens or underscore "
782
- "only!"
783
- msgstr ""
784
- "Ошибка: идентификатор роли может содержать только латинские буквы, цифры, "
785
- "тире и знак подчеркивания"
786
-
787
- #: ../includes/class-user-role-editor.php:894
788
- msgid ""
789
- " WordPress does not support numeric Role name (ID). Add latin characters to "
790
- "it."
791
- msgstr ""
792
- "WordPress не поддерживает цифровые идентификаторы ролей. Начните имя роли с "
793
- "латинских символов."
794
-
795
- #: ../includes/class-user-role-editor.php:895
796
- msgid "Add Role"
797
- msgstr "Добавить роль"
798
-
799
- #: ../includes/class-user-role-editor.php:897
800
- msgid "Delete Role"
801
- msgstr "Удалить роль"
802
-
803
- #: ../includes/class-user-role-editor.php:898
804
- msgid "Cancel"
805
- msgstr "Отмена"
806
-
807
- #: ../includes/class-user-role-editor.php:899
808
- msgid "Add Capability"
809
- msgstr "Новая возм."
810
-
811
- #: ../includes/class-user-role-editor.php:900
812
- #: ../includes/class-user-role-editor.php:909
813
- msgid "Delete Capability"
814
- msgstr "Удалить возм."
815
-
816
- #: ../includes/class-user-role-editor.php:901
817
- msgid "Reset"
818
- msgstr "Сброс"
819
-
820
- #: ../includes/class-user-role-editor.php:902
821
- msgid "DANGER! Resetting will restore default settings from WordPress Core."
822
- msgstr ""
823
- "ВНИМАНИЕ! Очистка восстановит роли по состоянию на момент установки "
824
- "WordPress."
825
-
826
- #: ../includes/class-user-role-editor.php:903
827
- msgid ""
828
- "If any plugins have changed capabilities in any way upon installation (such "
829
- "as S2Member, WooCommerce, and many more), those capabilities will be DELETED!"
830
- msgstr ""
831
- "Если плагины изменяли пользовательские права после установки WordPress "
832
- "(S2Member, WooCommerce и др.), права, созданные плагинами будут УДАЛЕНЫ!"
833
-
834
- #: ../includes/class-user-role-editor.php:904
835
- msgid ""
836
- "For more information on how to undo changes and restore plugin capabilities "
837
- "go to"
838
- msgstr ""
839
- "Подробнее о том, как откатить сделанные изменения и восстановить разрешения "
840
- "для плагинов, можно узнать здесь"
841
-
842
- #: ../includes/class-user-role-editor.php:906
843
- msgid "Continue?"
844
- msgstr "Продолжить?"
845
-
846
- #: ../includes/class-user-role-editor.php:907
847
- msgid "Default Role"
848
- msgstr "Роль по-умолчанию"
849
-
850
- #: ../includes/class-user-role-editor.php:908
851
- msgid "Set New Default Role"
852
- msgstr "Установить"
853
-
854
- #: ../includes/class-user-role-editor.php:910
855
- msgid ""
856
- "Warning! Be careful - removing critical capability could crash some plugin "
857
- "or other custom code"
858
- msgstr ""
859
- "Внимание! Будьте осторожны - удаление критичной возможности может привести к "
860
- "прекращеню работы одного из плагинов или другого кода."
861
-
862
- #: ../includes/class-user-role-editor.php:911
863
- msgid " Capability name (ID) can not be empty!"
864
- msgstr "Идентификатор возможности (ID) не может быть пустым!"
865
-
866
- #: ../includes/class-user-role-editor.php:912
867
- msgid ""
868
- " Capability name (ID) must contain latin characters, digits, hyphens or "
869
- "underscore only!"
870
- msgstr ""
871
- "Ошибка: Наименование возможности должно содержать только латинские буквы и "
872
- "цифры, знаки подчеркивания"
873
-
874
- #: ../includes/settings-template.php:17
875
- msgid "User Role Editor - Options"
876
- msgstr "Редактор ролей пользователей - Опции"
877
-
878
- #: ../includes/settings-template.php:39
879
- msgid "About"
880
- msgstr "О плагине"
881
-
882
- #: ../includes/settings-template.php:90 ../includes/settings-template.php:126
883
- #: ../includes/settings-template.php:158 ../includes/settings-template.php:190
884
- msgid "Save"
885
- msgstr "Сохранить"
886
-
887
- #: ../includes/settings-template.php:138
888
- msgid "Primary default role: "
889
- msgstr "Основная роль по-умолчанию:"
890
-
891
- #: ../includes/settings-template.php:145
892
- msgid "Other default roles for new registered user: "
893
- msgstr "Другие роли по-умолчанию для вновь зарегистрированного пользователя:"
894
-
895
- #: ../includes/settings-template.php:151
896
- msgid ""
897
- "Note for multisite environment: take into account that other default roles "
898
- "should exist at the site, in order to be assigned to the new registered "
899
- "users."
900
- msgstr ""
901
- "Заметка для WordPress с несколькими сайтами: учтите, что для присвоения "
902
- "вновь зарегистрированному пользователю дополнительных ролей по-умолчанию эти "
903
- "роли должны существовать на этом сайте."
904
-
905
- #: ../includes/settings-template.php:177
906
- msgid "Allow non super administrators to create, edit, and delete users"
907
- msgstr ""
908
- "Разрешить простым администраторам создавать, изменять, удалять пользователей"
909
-
910
- #: ../includes/ure-user-edit.php:32
911
- msgid "Network Super Admin"
912
- msgstr "Суперадминистратор сети"
913
-
914
- #: ../includes/ure-user-edit.php:35
915
- msgid "Change capabilities for user"
916
- msgstr "Изменить возможности для пользователя"
917
-
918
- #: ../includes/ure-user-edit.php:72
919
- msgid "Primary Role:"
920
- msgstr "Первичаная роль:"
921
-
922
- #: ../includes/ure-user-edit.php:82
923
- msgid "bbPress Role:"
924
- msgstr "Роль bbPress:"
925
-
926
- #: ../includes/ure-user-edit.php:92
927
- msgid "Other Roles:"
928
- msgstr "Другие Роли:"
929
-
930
- #~ msgid "select roles below"
931
- #~ msgstr "выберите роли ниже"
932
-
933
- #~ msgid "Overview"
934
- #~ msgstr "Обзор"
935
-
936
- #~ msgid "Allow create, edit and delete users to not super-admininstrators"
937
- #~ msgstr ""
938
- #~ "Разрешить создание, изменение и удаление пользователей простым "
939
- #~ "администраторам"
940
-
941
- #~ msgid "About this Plugin:"
942
- #~ msgstr "Об этом плагине"
943
-
944
- #~ msgid ""
945
- #~ "Reset Roles to WordPress defaults. Be careful, all changes made by you or "
946
- #~ "plugins will be lost. Some plugins, e.g. S2Member, WooCommerce "
947
- #~ "reactivation could be needed. Continue?"
948
- #~ msgstr ""
949
- #~ "Вернуть роли в начальное состояние. Будьте осторожны, все изменения в "
950
- #~ "ролях, сделанные темой и плагинами, будут потеряны, необходимо будет "
951
- #~ "активировать заново некоторые плагины, например S2Member, WooCommerce. "
952
- #~ "Продолжить?"
953
-
954
- #~ msgid "Only"
955
- #~ msgstr "Только"
956
-
957
- #~ msgid "is allowed to use"
958
- #~ msgstr "разрешено использовать"
959
-
960
- #~ msgid "User"
961
- #~ msgstr "Пользователь"
962
-
963
- #~ msgid "Import Roles"
964
- #~ msgstr "Импорт Ролей"
965
-
966
- #~ msgid "Select file with roles data"
967
- #~ msgstr "Выберите файл, с данными роли"
968
-
969
- #~ msgid "Select file with roles: "
970
- #~ msgstr "Выбери файл с ролями:"
971
-
972
- #~ msgid "File upload error. Try again later"
973
- #~ msgstr "Ошибка загрузки файла. Попробуйте ещё раз позже"
974
-
975
- #~ msgid "Roles are imported successfully"
976
- #~ msgstr "Роли импортированы успешно"
977
-
978
- #~ msgid "Roles import is failed"
979
- #~ msgstr "При импорте ролей произошла ошибка"
980
-
981
- #, fuzzy
982
- #~ msgid "User Role Editor requires PHP %s or newer."
983
- #~ msgstr "Редактор ролей пользователей требует PHP 5.0 или выше."
984
-
985
- #~ msgid "Please update!"
986
- #~ msgstr "Пожалуйста, обновите!"
987
-
988
- #, fuzzy
989
- #~ msgid "User Role Editor requires WordPress %s or newer."
990
- #~ msgstr "Редактор ролей пользователей требует WordPress 3.0 или выше."
991
-
992
- #~ msgid "Backup record is created for the current role capabilities"
993
- #~ msgstr ""
994
- #~ "Для текущего распределения возможностей по ролям создана резервная копия"
995
-
996
- #~ msgid "Database operation error. Check log file."
997
- #~ msgstr "Ошибка работы с базой данных. Проверьте лог-файл."
998
-
999
- #~ msgid ""
1000
- #~ "No backup data. It is created automatically before the first role data "
1001
- #~ "update."
1002
- #~ msgstr ""
1003
- #~ "Нет резервной копии. Она создается автоматически перед первым изменением "
1004
- #~ "ролей."
1005
-
1006
- #~ msgid " Name must contain latin characters and digits only!"
1007
- #~ msgstr " Наименование должно содержать только латинские буквы и цифры."
1008
-
1009
- #~ msgid "Change Default Role"
1010
- #~ msgstr "Установить как роль по-умолчанию"
1011
-
1012
- #~ msgid ""
1013
- #~ "Restore Roles from backup copy. Be careful, backup was created when you "
1014
- #~ "started URE 1st time. All changes you made after that will be lost"
1015
- #~ msgstr ""
1016
- #~ "Восстановление ролей из резервной копии. Будьте внимательны, копия "
1017
- #~ "создана во время первого запуска этого плагина. Все внесенные после этого "
1018
- #~ "изменения будут потеряны"
1019
-
1020
- #~ msgid "Role \"%s\" update: please confirm to continue"
1021
- #~ msgstr "Изменение роли \"%s\": пожалуйста, подтвердите продолжение "
1022
-
1023
- #~ msgid "Save Changes"
1024
- #~ msgstr "Сохранить изменения"
1025
-
1026
- #~ msgid "Cancel not saved changes"
1027
- #~ msgstr "Отказ от сохранения изменений"
1028
-
1029
- #~ msgid "Select All Capabilities"
1030
- #~ msgstr "Выбрать все разрешения"
1031
-
1032
- #~ msgid "Unselect All Capabilities"
1033
- #~ msgstr "Исключить все возможности"
1034
-
1035
- #~ msgid "Turn checked capabilities off and vise versa"
1036
- #~ msgstr "Включить исключенные возможности и наоборот"
1037
-
1038
- #~ msgid "Restore Roles from backup copy"
1039
- #~ msgstr "Восстановить Роли из резервной копии"
1040
-
1041
- #~ msgid "Name: "
1042
- #~ msgstr "Имя:"
1043
-
1044
- #~ msgid "Add"
1045
- #~ msgstr "Добавить"
1046
-
1047
- #~ msgid "Add New User Role"
1048
- #~ msgstr "Добавить новую Роль пользователя"
1049
-
1050
- #~ msgid "Change"
1051
- #~ msgstr "Изменить"
1052
-
1053
- #~ msgid "Remove"
1054
- #~ msgstr "Удалить"
1055
-
1056
- #~ msgid "Remove User Capability"
1057
- #~ msgstr "Удалить возможность пользователя"
1058
-
1059
- #~ msgid "User \"%s\" update: please confirm to continue"
1060
- #~ msgstr ""
1061
- #~ "Изменение пользователя \"%s\": пожалуйста, подтвердите для продолжения"
1062
-
1063
- #~ msgid "Role:"
1064
- #~ msgstr "Роль:"
1065
-
1066
- #~ msgid "Add capabilities to this user:"
1067
- #~ msgstr "Добавить возможности этому пользователю:"
1068
-
1069
- #~ msgid "Greetings"
1070
- #~ msgstr "Благодарности"
1071
-
1072
- #~ msgid "Greetings:"
1073
- #~ msgstr "Приветствия"
1074
-
1075
- #~ msgid "It's me, the author"
1076
- #~ msgstr "Это я, автор"
1077
-
1078
- #~ msgid "For the help with Belorussian translation"
1079
- #~ msgstr "за помощь с белорусским переводом"
1080
-
1081
- #~ msgid "For the help with Brasilian translation"
1082
- #~ msgstr "за помощь с бразильским переводом"
1083
-
1084
- #~ msgid "For the help with Brasilian Portuguese translation"
1085
- #~ msgstr "за помощь с бразильским переводом"
1086
-
1087
- #~ msgid "For the help with Chinese translation"
1088
- #~ msgstr "за помощь с китайским переводом"
1089
-
1090
- #~ msgid "For the help with Dutch translation"
1091
- #~ msgstr "за помощь с датским переводом"
1092
-
1093
- #~ msgid "For the help with Finnish translation"
1094
- #~ msgstr "за помощь с финским переводом"
1095
-
1096
- #~ msgid "For the help with French translation"
1097
- #~ msgstr "за помощь с французским переводом"
1098
-
1099
- #~ msgid "For the help with German translation"
1100
- #~ msgstr "за помощь с немецким переводом"
1101
-
1102
- #~ msgid "For the help with Hebrew translation"
1103
- #~ msgstr "за помощь с переводом на иврит"
1104
-
1105
- #~ msgid "For the help with Hindi translation"
1106
- #~ msgstr "за помощь с индийским (Хинди) переводом"
1107
-
1108
- #~ msgid "For the help with Hungarian translation"
1109
- #~ msgstr "за помощь с венгерским переводом"
1110
-
1111
- #~ msgid "For the help with Italian translation"
1112
- #~ msgstr "за помощь с итальянским переводом"
1113
-
1114
- #~ msgid "For the help with Japanese translation"
1115
- #~ msgstr "за помощь с японским переводом"
1116
-
1117
- #~ msgid "For the help with Lithuanian translation"
1118
- #~ msgstr "за помощь с литовским переводом"
1119
-
1120
- #~ msgid "For the help with Persian translation"
1121
- #~ msgstr "за помощь с переводом на иранский"
1122
-
1123
- #~ msgid "For the help with Polish translation"
1124
- #~ msgstr "за помощь с польским переводом"
1125
-
1126
- #~ msgid "For the help with Spanish translation"
1127
- #~ msgstr "за помощь с испанским переводом"
1128
-
1129
- #~ msgid "For the updated Swedish translation"
1130
- #~ msgstr "за помощь со шведским переводом"
1131
-
1132
- #~ msgid "For the help with Swedish translation"
1133
- #~ msgstr "за помощь со шведским переводом"
1134
-
1135
- #~ msgid "For the help with Turkish translation"
1136
- #~ msgstr "за помощь с турецким переводом"
1137
-
1138
- #~ msgid "For the code to hide administrator role"
1139
- #~ msgstr "За код, скрывающий роль администратора"
1140
-
1141
- #~ msgid "For the code enhancement suggestion"
1142
- #~ msgstr "За предложения по улучшению кода"
1143
-
1144
- #~ msgid ""
1145
- #~ "Do you wish to see your name with link to your site here? You are "
1146
- #~ "welcome! Your help with translation and new ideas are very appreciated."
1147
- #~ msgstr ""
1148
- #~ "Желаете увидеть свое имя и ссылку на Ваш сайт здесь? Добро пожаловать! "
1149
- #~ "Ваша помощь с переводом и новые идеи приветствуются."
1150
-
1151
- #~ msgid "Donate"
1152
- #~ msgstr "Поддержать"
1153
-
1154
- #~ msgid "Roles list reading error is encountered"
1155
- #~ msgstr "Ошибка чтения списка ролей!"
1156
-
1157
- #~ msgid "More plugins from"
1158
- #~ msgstr "Ещё плагины от"
1159
-
1160
- #~ msgid "No items found."
1161
- #~ msgstr "Ничего не найдено."
1162
-
1163
- #~ msgid "Recent Posts:"
1164
- #~ msgstr "Последние статьи:"
1165
-
1166
- #~ msgid "Return to default WordPress user role capabilities"
1167
- #~ msgstr "Вернуться к исходному состоянию ролей WordPress"
1168
-
1169
- #~ msgid "Role Name must be just a single word without special characters!"
1170
- #~ msgstr "Наименование роли - одно слово без специальных символов! "
1171
-
1172
- #~ msgid "action"
1173
- #~ msgstr "операции"
1174
-
1175
- #~ msgid "Please confirm to continue role \""
1176
- #~ msgstr "Пожалуйста подтвердите продолжение для роли"
1177
-
1178
- #~ msgid "Silence Is Golden Guard Plugin"
1179
- #~ msgstr "Silence Is Golden Guard плагин"
1180
-
1181
- #~ msgid "file open error"
1182
- #~ msgstr "ошибка открытия файла"
1183
-
1184
- #~ msgid "file read error"
1185
- #~ msgstr "ошибка чтения файла"
1186
-
1187
- #~ msgid "file close error"
1188
- #~ msgstr "ошибка при закрытии файла"
1189
-
1190
- #~ msgid "file backup copy error"
1191
- #~ msgstr "ошибка при создании резервной копии файла"
1192
-
1193
- #~ msgid "file permissions change error"
1194
- #~ msgstr "ошибка при изменении прав на файл"
1195
-
1196
- #~ msgid "file write error"
1197
- #~ msgstr "ошибка записи в файл"
1198
-
1199
- #~ msgid "is modified"
1200
- #~ msgstr "изменен"
1201
-
1202
- #~ msgid "file create error"
1203
- #~ msgstr "ошибка создания файла"
1204
-
1205
- #~ msgid "permissions change error"
1206
- #~ msgstr "ошибка при изменении прав"
1207
-
1208
- #~ msgid "file is created"
1209
- #~ msgstr "файл создан"
1210
-
1211
- #~ msgid "\"Silence is Golden\" Scan is finished: "
1212
- #~ msgstr "\"Silence is Golden\" сканирование завершено: "
1213
-
1214
- #~ msgid "Does not create index.php file in the checked folders"
1215
- #~ msgstr "Не создавать index.php файл в отмеченных каталогах"
1216
-
1217
- #~ msgid "Exclude Folders for index.php"
1218
- #~ msgstr "Исключить Каталоги для index.php"
1219
-
1220
- #~ msgid "Modify Apache .htaccess"
1221
- #~ msgstr "Изменить Apache .htaccess"
1222
-
1223
- #~ msgid ""
1224
- #~ "Modify Apache .htaccess file in the site root folder. Add \"Options -"
1225
- #~ "Indexes\" line to prevent directory listing by Apache Web server.\n"
1226
- #~ " If it is turned on (+Indexes) or absent, then if a "
1227
- #~ "URL which maps to a directory is requested, and there is no "
1228
- #~ "DirectoryIndex (e.g., index.html or index.php) file in that directory, "
1229
- #~ "then Web server will return a formatted listing of the directory."
1230
- #~ msgstr ""
1231
- #~ "Изменить файл Apache .htaccess в корневом каталоге сайта. Добавить строку "
1232
- #~ "\"Options -Indexes\", чтобы исключить листинг содержимого катлогов Web "
1233
- #~ "сервером Apache.\n"
1234
- #~ "Если опция включена (+Indexes) или отсутствует, тогда, если "
1235
- #~ "запроашивается адрес URL, соответствующий каталогу, и в этом каталоге "
1236
- #~ "отстутсвует файл типа DirectoryIndex (т.е. index.html или index.php), "
1237
- #~ "тогда Web сервер вернёт отформатированный листин этого каталога."
1238
-
1239
- #~ msgid "Check folders state automatically with specified period"
1240
- #~ msgstr "Проверять состояние каталогов автоматически с заданным периодом"
1241
-
1242
- #~ msgid "Auto Monitor"
1243
- #~ msgstr "Авто Мониторинг"
1244
-
1245
- #~ msgid "Scan Now"
1246
- #~ msgstr "Сканировать Сейчас"
1247
-
1248
- #~ msgid "Scan and Fix directories listing related problems Now"
1249
- #~ msgstr ""
1250
- #~ "Сканировать и Исправлять проблемы, связанные с листингом содержимого "
1251
- #~ "каталогов"
1252
-
1253
- #~ msgid ""
1254
- #~ "Every time a new visitor clicks the \"Thank you\" button, one point is "
1255
- #~ "added to the total \"thanks\" counter for this post."
1256
- #~ msgstr ""
1257
- #~ "Каждый раз, когда новый посетитель щелкает по кнопке \"Спасибо\", единица "
1258
- #~ "добавляется к счетчику благодарностей для данной статьи."
1259
-
1260
- #~ msgid "Thank You Counter Button Plugin"
1261
- #~ msgstr "Установки для плагина: Кнопка подсчета благодарностей"
1262
-
1263
- #~ msgid "Statistics"
1264
- #~ msgstr "Статистика"
1265
-
1266
- #~ msgid "You left &ldquo;Thanks&rdquo; already for this post"
1267
- #~ msgstr "Вы уже оставили благодарность за эту статью"
1268
-
1269
- #~ msgid "Click to left &ldquo;Thanks&rdquo; for this post"
1270
- #~ msgstr "Щелкните мышью, чтобы оставить благодарность за эту статью"
1271
-
1272
- #~ msgid "View statistics details for \"%s\""
1273
- #~ msgstr "Просмотр детализированной статистики для \"%s\""
1274
-
1275
- #~ msgid "Hide these shortcuts"
1276
- #~ msgstr "Скрыть ссылки доступа к установкам и статистике плагина"
1277
-
1278
- #~ msgid "Do you really want to hide these shortcuts?"
1279
- #~ msgstr "Вы действительно хотите скрыть эти ссылки?"
1280
-
1281
- #~ msgid "Thank You"
1282
- #~ msgstr "Спасибо"
1283
-
1284
- #~ msgid "operation is prohibited"
1285
- #~ msgstr "операция запрещена"
1286
-
1287
- #~ msgid "Default Settings are restored"
1288
- #~ msgstr "Установки по-умолчанию восстановлены"
1289
-
1290
- #~ msgid "All Thanks Counters are cleared"
1291
- #~ msgstr "Все счётчики благодраностей обнулены"
1292
-
1293
- #~ msgid "Additional documentation"
1294
- #~ msgstr "Дополнительная документация"
1295
-
1296
- #~ msgid ""
1297
- #~ "for the help with Spanish translation, ideas and new versions testing"
1298
- #~ msgstr "за помощь с испанским переводом, идеи и тестирование новых версий"
1299
-
1300
- #~ msgid "for the excelent JQuery color picker"
1301
- #~ msgstr "за отличный JQuery-плагин для работы с цветовой палитрой"
1302
-
1303
- #~ msgid ""
1304
- #~ "for the help with French translation, ideas, source code contributions "
1305
- #~ "and new versions testing"
1306
- #~ msgstr ""
1307
- #~ "за помощь с французским переводом, идеи, вклад в разработку и "
1308
- #~ "тестирование новых версий"
1309
-
1310
- #~ msgid "for setting page layout idea and html markup examples"
1311
- #~ msgstr "за идею по компоновке экрана с опциями и примеры HTML разметки"
1312
-
1313
- #~ msgid "for the form input slider code"
1314
- #~ msgstr "за код слайдера для текстового поля input HTML формы"
1315
-
1316
- #~ msgid "for the cute online button image generator"
1317
- #~ msgstr "за прекрасный онлайновый генератор изображений кнопок"
1318
-
1319
- #~ msgid ""
1320
- #~ "All settings for TYCB plugin will be return to the default values, "
1321
- #~ "Continue?"
1322
- #~ msgstr ""
1323
- #~ "Всем установкам для TYCB плагина будут возвращены значения по-умолчанию, "
1324
- #~ "Продолжить?"
1325
-
1326
- #~ msgid ""
1327
- #~ "All thanks counters for all posts will be set to 0,\\n all thanks click "
1328
- #~ "history will be cleared, Continue?"
1329
- #~ msgstr ""
1330
- #~ "Все счетчики благодарностей для всех статей будут обнулены,\\n вся "
1331
- #~ "история кликов по кнопкам благодарности будет обнулена, Продолжить?"
1332
-
1333
- #~ msgid "Display"
1334
- #~ msgstr "Отображение"
1335
-
1336
- #~ msgid "Display button at Pages"
1337
- #~ msgstr "Отображать на Страницах"
1338
-
1339
- #~ msgid "Display button at Home page, Categories/Tags archive pages"
1340
- #~ msgstr "Отображать на Домашней странице, архивах категорий/тэгов"
1341
-
1342
- #~ msgid "Do not show button for selected categories"
1343
- #~ msgstr "Не отображать кнопку для отмеченных категорий"
1344
-
1345
- #~ msgid "Position in the Post text"
1346
- #~ msgstr "Расположение в статье"
1347
-
1348
- #~ msgid "Before"
1349
- #~ msgstr "До"
1350
-
1351
- #~ msgid "At first page of multipaged posts only"
1352
- #~ msgstr "Только на первой странице многостраничных статей "
1353
-
1354
- #~ msgid "After"
1355
- #~ msgstr "После"
1356
-
1357
- #~ msgid "At last page of multipaged posts only"
1358
- #~ msgstr "Только на последней странице многостраничных статей"
1359
-
1360
- #~ msgid "Shortcode [thankyou]"
1361
- #~ msgstr "Аббревиатура [thankyou]"
1362
-
1363
- #~ msgid "Manual"
1364
- #~ msgstr "Вручную"
1365
-
1366
- #~ msgid "Button Caption"
1367
- #~ msgstr "Надпись на кнопке"
1368
-
1369
- #~ msgid "Button Styling"
1370
- #~ msgstr "Стиль для Кнопки"
1371
-
1372
- #~ msgid "Add style to the div:"
1373
- #~ msgstr "Cтиль для div"
1374
-
1375
- #~ msgid "e.g.,"
1376
- #~ msgstr ", например, "
1377
-
1378
- #~ msgid "to the Caption font:"
1379
- #~ msgstr "для шрифта:"
1380
-
1381
- #~ msgid "font color: "
1382
- #~ msgstr "цвет шрифта:"
1383
-
1384
- #~ msgid "Size"
1385
- #~ msgstr "Размер"
1386
-
1387
- #~ msgid "Normal"
1388
- #~ msgstr "Нормальный"
1389
-
1390
- #~ msgid "Compact"
1391
- #~ msgstr "Компактный размер"
1392
-
1393
- #~ msgid "Form and Color"
1394
- #~ msgstr "Форма и Цвет"
1395
-
1396
- #~ msgid "Custom button image URL"
1397
- #~ msgstr "URL изображения собственной кнопки"
1398
-
1399
- #~ msgid "Width, px"
1400
- #~ msgstr "Ширина, px"
1401
-
1402
- #~ msgid "Height, px"
1403
- #~ msgstr "Высота, px"
1404
-
1405
- #~ msgid "Misc"
1406
- #~ msgstr "Разное"
1407
-
1408
- #~ msgid "Check IP-address"
1409
- #~ msgstr "Контролировать IP-адрес"
1410
-
1411
- #~ msgid "Only one Thanks for post for one IP-address limit"
1412
- #~ msgstr "Только одно Спасибо на статью с одного IP-адреса"
1413
-
1414
- #~ msgid "Time limit:"
1415
- #~ msgstr "Ограничение по времени:"
1416
-
1417
- #~ msgid "Forever"
1418
- #~ msgstr "Навсегда"
1419
-
1420
- #~ msgid "Only for this period"
1421
- #~ msgstr "Только на данный промежуток"
1422
-
1423
- #~ msgid "seconds"
1424
- #~ msgstr "секунд"
1425
-
1426
- #~ msgid "Display settings shortcuts"
1427
- #~ msgstr "Вывод служебных ссылок"
1428
-
1429
- #~ msgid "Add shortcuts next to the buttons for settings quick access"
1430
- #~ msgstr ""
1431
- #~ "Отобразить служебные ссылки справа от кнопок для быстрого доступа к "
1432
- #~ "разделу настроек"
1433
-
1434
- #~ msgid "Return to Defaults"
1435
- #~ msgstr "Вернуть значения по-умолчанию"
1436
-
1437
- #~ msgid "Restore the default values for all settings"
1438
- #~ msgstr "Восстановить значения по-умолчанию для всех установок"
1439
-
1440
- #~ msgid "Reset Counters"
1441
- #~ msgstr "Обнулить Счетчики"
1442
-
1443
- #~ msgid "Reset all thanks counters for the all posts"
1444
- #~ msgstr "Сбросить все счетчики благодарностей для всех статей"
1445
-
1446
- #~ msgid "Button DIV Style Preview"
1447
- #~ msgstr "Стиль для раздела Кнопки"
1448
-
1449
- #~ msgid "Post Title"
1450
- #~ msgstr "Заголовок статьи"
1451
-
1452
- #~ msgid "Back to main statistics"
1453
- #~ msgstr "Вернуться к основной статистике"
1454
-
1455
- #~ msgid "Not available"
1456
- #~ msgstr "Не доступен"
1457
-
1458
- #~ msgid "Details for &ldquo;%s&rdquo;"
1459
- #~ msgstr "Подробности для &ldquo;%s&rdquo;"
1460
-
1461
- #~ msgid "Post Id"
1462
- #~ msgstr "Id статьи"
1463
-
1464
- #~ msgid "Thanks Quant"
1465
- #~ msgstr "Количество благодарностей"
1466
-
1467
- #~ msgid "View Post"
1468
- #~ msgstr "Просмотр статьи"
1469
-
1470
- #~ msgid "View \"%s\""
1471
- #~ msgstr "Просмотр \"%s\""
1472
-
1473
- #~ msgid "Reset this post counter"
1474
- #~ msgstr "Обнулить счетчик для этой статьи"
1475
-
1476
- #~ msgid ""
1477
- #~ "You are about to reset this post '%s' thanks counter. Click 'Cancel' to "
1478
- #~ "do nothing, 'OK' to reset it."
1479
- #~ msgstr ""
1480
- #~ "Вы собираетесь обнулить счетчик этой статьи '%s'.\n"
1481
- #~ " Используйте 'Отмена' чтобы отказаться, 'OK' чтобы произвести обнуление."
1482
-
1483
- #~ msgid "Reset Counter"
1484
- #~ msgstr "Обнулить Счетчик"
1485
-
1486
- #~ msgid "Displaying %s&#8211;%s of %s"
1487
- #~ msgstr "Вывод %s&#8211;%s из %s"
1488
-
1489
- #~ msgid "IP address"
1490
- #~ msgstr "IP-адрес"
1491
-
1492
- #~ msgid "Last Thank Date"
1493
- #~ msgstr "Дата последней благодарности"
1494
-
1495
- #~ msgid "Look up IP country"
1496
- #~ msgstr "Найти страну по IP адресу"
1497
-
1498
- #~ msgid "Show all post dates"
1499
- #~ msgstr "Показать статьи за все даты"
1500
-
1501
- #~ msgid "Show Posts without Thanks"
1502
- #~ msgstr "Показать статьи без благодарностей"
1503
-
1504
- #~ msgid "Rows per page: "
1505
- #~ msgstr "Строк на страницу:"
1506
-
1507
- #~ msgid "Refresh"
1508
- #~ msgstr "Обновить"
1509
-
1510
- #~ msgid "descending"
1511
- #~ msgstr "убывающем"
1512
-
1513
- #~ msgid "Ascending order"
1514
- #~ msgstr "Возрастающий порядок"
1515
-
1516
- #~ msgid "ascending"
1517
- #~ msgstr "возрастающем"
1518
-
1519
- #~ msgid "Descending order"
1520
- #~ msgstr "Убывающий порядок"
1521
-
1522
- #~ msgid "Click to sort in %s order"
1523
- #~ msgstr "Щелкни для сортировки в %s порядке"
1524
-
1525
- #~ msgid "View details"
1526
- #~ msgstr "Просмотр деталей"
1527
-
1528
- #~ msgid ""
1529
- #~ "You are about to reset this post '%s' thanks counter.\n"
1530
- #~ " Click 'Cancel' to do nothing, 'OK' to reset it."
1531
- #~ msgstr ""
1532
- #~ "Вы собираетесь обнулить счетчик этой статьи '%s'.\n"
1533
- #~ " Используйте 'Отмена' чтобы отказаться, 'OK' чтобы произвести обнуление."
1534
-
1535
- #~ msgid "No posts with thanks found"
1536
- #~ msgstr "Статьи c благодарностями не найдены"
1537
-
1538
- #~ msgid "the latest or the most thanked post titles with total thanks quant"
1539
- #~ msgstr ""
1540
- #~ "Отблагдаренные пооследними статьи с общим количеством благодарностей или "
1541
- #~ "статьи с наибольшим количеством благодарностей"
1542
-
1543
- #~ msgid "Thanks Stat"
1544
- #~ msgstr "Статистика благодарностей"
1545
-
1546
- #~ msgid "Total quant of thanks: "
1547
- #~ msgstr "Общее количество благодарностей:"
1548
-
1549
- #~ msgid "Title:"
1550
- #~ msgstr "Заголовок статьи"
1551
-
1552
- #~ msgid "Number of posts to show:"
1553
- #~ msgstr "Количество статей для показа:"
1554
-
1555
- #~ msgid "What posts to show:"
1556
- #~ msgstr "Какие статьи показывать:"
1557
-
1558
- #~ msgid "Latest thanked"
1559
- #~ msgstr "Последние благодарности"
1560
-
1561
- #~ msgid "Most thanked"
1562
- #~ msgstr "Максимум благодарностей"
1563
-
1564
- #~ msgid "Total quant of thanks"
1565
- #~ msgstr "Общее количество благодарностей:"
1566
-
1567
- #~ msgid "Display total quant of thanks"
1568
- #~ msgstr "Показать общее количество благодарностей"
1569
-
1570
- #~ msgid "Check Full Statistics"
1571
- #~ msgstr "Просмотр полной статистики"
1572
-
1573
- #~ msgid "Plugin author home page"
1574
- #~ msgstr "Сайт автора плагина"
1575
-
1576
- #~ msgid "No thanks yet"
1577
- #~ msgstr "Пока благодарностей нет"
1578
-
1579
- #~ msgid "Posts number to show:"
1580
- #~ msgstr "Количество статей для показа:"
1581
-
1582
- #~ msgid "Display Full Statistics link"
1583
- #~ msgstr "Просмотр полной статистики"
1584
-
1585
- #~ msgid "Display plugin author link"
1586
- #~ msgstr "Показать ссылку на сайт автора плагина"
1587
-
1588
- #~ msgid "Latest Thanks"
1589
- #~ msgstr "Последние благодарности"
1590
-
1591
- #~ msgid "Most Thanked"
1592
- #~ msgstr "Максимум благодарностей"
1593
-
1594
- #~ msgid "Unknown Post!"
1595
- #~ msgstr "Неизвестная статья!"
1596
-
1597
- #~ msgid "Submit"
1598
- #~ msgstr "Отправить"
1599
-
1600
- #~ msgid "Show total quant of thanks"
1601
- #~ msgstr "Показать общее количество благодарностей"
1602
-
1603
- #~ msgid ""
1604
- #~ "This plugin installs the Thank You Counter Button for each of your blog "
1605
- #~ "post.\n"
1606
- #~ " It can have custom style in your blog posts."
1607
- #~ msgstr ""
1608
- #~ "Этот плагин добавляет кнопку подсчета благодарностей к каждой статье "
1609
- #~ "Вашего блога.\n"
1610
- #~ " Стиль и расположение кнопки могут быть адаптированы к "
1611
- #~ "стилю вашего блога."
1612
-
1613
- #~ msgid ""
1614
- #~ "To exclude Thank You button from particular post use shortcode "
1615
- #~ "[nothankyou] there"
1616
- #~ msgstr ""
1617
- #~ "Чтобы не показывать кнопку Спасибо для конкректной статьи, вставьте в ее "
1618
- #~ "текст код [notthankyou]"
1619
-
1620
- #~ msgid "(at most 15)"
1621
- #~ msgstr "(до 15)"
1622
-
1623
- #~ msgid "Before and After"
1624
- #~ msgstr "До и После"
1625
-
1626
- #~ msgid "Filter"
1627
- #~ msgstr "Фильтр"
1628
-
1629
- #~ msgid "Position"
1630
- #~ msgstr "Расположение"
1631
-
1632
- #~ msgid "Add style to the Thank You button's div, e.g.,"
1633
- #~ msgstr "Добавить стиль в раздел div кнопки Спасибо"
1634
-
1635
- #~ msgid "Color"
1636
- #~ msgstr "Цвет"
1637
-
1638
- #~ msgid "Blue"
1639
- #~ msgstr "Синий"
1640
-
1641
- #~ msgid "Green"
1642
- #~ msgstr "Зеленый"
1643
-
1644
- #~ msgid "Grey"
1645
- #~ msgstr "Серый"
1646
-
1647
- #~ msgid "Black"
1648
- #~ msgstr "Черный"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
lang/user-role-editor-tr_TR.mo DELETED
Binary file
lang/user-role-editor-tr_TR.po DELETED
@@ -1,930 +0,0 @@
1
- #
2
- # Translators:
3
- # Abdullah Pazarbasi <mail@abdullahpazarbasi.com>, 2014
4
- msgid ""
5
- msgstr ""
6
- "Project-Id-Version: User Role Editor\n"
7
- "Report-Msgid-Bugs-To: \n"
8
- "POT-Creation-Date: 2015-09-11 21:06+0100\n"
9
- "PO-Revision-Date: 2015-09-11 21:16+0100\n"
10
- "Last-Translator: Vladimir Garagulya <vladimir@shinephp.com>\n"
11
- "Language-Team: Turkish (Turkey) (http://www.transifex.com/projects/p/user-"
12
- "role-editor/language/tr_TR/)\n"
13
- "Language: tr_TR\n"
14
- "MIME-Version: 1.0\n"
15
- "Content-Type: text/plain; charset=UTF-8\n"
16
- "Content-Transfer-Encoding: 8bit\n"
17
- "Plural-Forms: nplurals=1; plural=0;\n"
18
- "X-Generator: Poedit 1.5.4\n"
19
- "X-Poedit-Basepath: .\n"
20
- "X-Poedit-KeywordsList: __;_e;esc_html__;esc_html_e\n"
21
- "X-Poedit-SourceCharset: UTF-8\n"
22
- "X-Poedit-SearchPath-0: ..\n"
23
-
24
- #: ../includes/class-ure-lib.php:247
25
- msgid "Error: wrong request"
26
- msgstr "Hata: yanlış talep"
27
-
28
- #: ../includes/class-ure-lib.php:280 ../includes/class-ure-lib.php:291
29
- msgid "Role name (ID): "
30
- msgstr "Rol ismi (ID):"
31
-
32
- #: ../includes/class-ure-lib.php:282 ../includes/class-ure-lib.php:293
33
- msgid "Display Role Name: "
34
- msgstr "Rol İsmini Görüntüle:"
35
-
36
- #: ../includes/class-ure-lib.php:284
37
- msgid "Make copy of: "
38
- msgstr "Şundan kopyala:"
39
-
40
- #: ../includes/class-ure-lib.php:300
41
- msgid "Select Role:"
42
- msgstr "Rol Seç:"
43
-
44
- #: ../includes/class-ure-lib.php:315
45
- msgid "Delete:"
46
- msgstr "Sil:"
47
-
48
- #: ../includes/class-ure-lib.php:322
49
- msgid "Capability name (ID): "
50
- msgstr "Kabiliyet ismi (ID):"
51
-
52
- #: ../includes/class-ure-lib.php:339
53
- #: ../includes/class-user-role-editor.php:596
54
- #: ../includes/class-user-role-editor.php:625
55
- msgid "User Role Editor"
56
- msgstr "Kullanıcı Rol Editörü"
57
-
58
- #: ../includes/class-ure-lib.php:436
59
- msgid "Error: "
60
- msgstr "Hata:"
61
-
62
- #: ../includes/class-ure-lib.php:436
63
- msgid "Role"
64
- msgstr "Rol"
65
-
66
- #: ../includes/class-ure-lib.php:437
67
- msgid "does not exist"
68
- msgstr "mevcut değil"
69
-
70
- #: ../includes/class-ure-lib.php:480
71
- msgid "Role is updated successfully"
72
- msgstr "Rol başarıyla güncellendi"
73
-
74
- #: ../includes/class-ure-lib.php:482
75
- msgid "Roles are updated for all network"
76
- msgstr "Roller tüm ağ için güncellendi"
77
-
78
- #: ../includes/class-ure-lib.php:488
79
- msgid "Error occured during role(s) update"
80
- msgstr "Rol güncellemesi esnasında hata meydana geldi"
81
-
82
- #: ../includes/class-ure-lib.php:495
83
- msgid "User capabilities are updated successfully"
84
- msgstr "Kullanıcı kabiliyetleri başarıyla güncellendi"
85
-
86
- #: ../includes/class-ure-lib.php:500
87
- msgid "Error occured during user update"
88
- msgstr "Kullanıcı güncellemesi esnasında hata meydana geldi"
89
-
90
- #: ../includes/class-ure-lib.php:558
91
- msgid "User Roles are restored to WordPress default values. "
92
- msgstr "Kullanıcı Rolleri WordPress varsayılanlarına geri döndürüldü."
93
-
94
- #: ../includes/class-ure-lib.php:1436
95
- msgid "read about"
96
- msgstr ""
97
-
98
- #: ../includes/class-ure-lib.php:1437
99
- msgid "user capability"
100
- msgstr ""
101
-
102
- #: ../includes/class-ure-lib.php:1438
103
- msgid "Help"
104
- msgstr "Yardım"
105
-
106
- #: ../includes/class-ure-lib.php:1693 ../includes/class-ure-lib.php:1946
107
- #: ../includes/class-ure-lib.php:2062 ../includes/class-ure-lib.php:2110
108
- #: ../includes/class-ure-lib.php:2358 ../includes/class-ure-lib.php:2403
109
- #: ../includes/class-user-role-editor.php:828
110
- msgid "Insufficient permissions to work with User Role Editor"
111
- msgstr "Kullanıcı Rol Editörü ile çalışmak için yetersiz izin"
112
-
113
- #: ../includes/class-ure-lib.php:1909
114
- msgid "Error is occur. Please check the log file."
115
- msgstr "Hata oluştu. Lütfen günlük dosyasını denetleyiniz."
116
-
117
- #: ../includes/class-ure-lib.php:1955 ../includes/class-ure-lib.php:2022
118
- msgid ""
119
- "Error: Role ID must contain latin characters, digits, hyphens or underscore "
120
- "only!"
121
- msgstr ""
122
- "Hata: Rol ID yalnızca latin karakterleri, rakamlar, tireler veya alt "
123
- "çizgiler içermeli!"
124
-
125
- #: ../includes/class-ure-lib.php:1959 ../includes/class-ure-lib.php:2026
126
- msgid ""
127
- "Error: WordPress does not support numeric Role name (ID). Add latin "
128
- "characters to it."
129
- msgstr ""
130
- "Hata: WordPress sayısal rol isimlerini (ID) desteklemiyor. Latin "
131
- "karakterleri ekleyin."
132
-
133
- #: ../includes/class-ure-lib.php:1974
134
- #, php-format
135
- msgid "Role %s exists already"
136
- msgstr "%s rolü zaten mevcut"
137
-
138
- #: ../includes/class-ure-lib.php:1989
139
- msgid "Error is encountered during new role create operation"
140
- msgstr "Yeni rol oluşturma işlemi sırasında hata oluştu"
141
-
142
- #: ../includes/class-ure-lib.php:1991
143
- #, php-format
144
- msgid "Role %s is created successfully"
145
- msgstr "%s rolü başarıyla oluşturuldu"
146
-
147
- #: ../includes/class-ure-lib.php:2015
148
- msgid "Error: Role ID is empty!"
149
- msgstr "Hata: Rol ID'si boş!"
150
-
151
- #: ../includes/class-ure-lib.php:2033
152
- msgid "Error: Empty role display name is not allowed."
153
- msgstr "Hata: Boş görünen rol adına izin yok."
154
-
155
- #: ../includes/class-ure-lib.php:2040
156
- #, php-format
157
- msgid "Role %s does not exists"
158
- msgstr "%s rolü mevcut değil"
159
-
160
- #: ../includes/class-ure-lib.php:2048
161
- #, php-format
162
- msgid "Role %s is renamed to %s successfully"
163
- msgstr "%s rolünün ismi %s olarak başarıyla değiştirildi"
164
-
165
- #: ../includes/class-ure-lib.php:2121
166
- msgid "Error encountered during role delete operation"
167
- msgstr "Rol silme işlemi sırasında hata oluştu"
168
-
169
- #: ../includes/class-ure-lib.php:2123
170
- msgid "Unused roles are deleted successfully"
171
- msgstr "Kullanılmayan roller başarıyla silindi"
172
-
173
- #: ../includes/class-ure-lib.php:2125
174
- #, php-format
175
- msgid "Role %s is deleted successfully"
176
- msgstr "%s rolü başarıyla silindi"
177
-
178
- #: ../includes/class-ure-lib.php:2153
179
- msgid "Error encountered during default role change operation"
180
- msgstr "Varsayılan rol değişimi işlemi sırasında hata oluştu"
181
-
182
- #: ../includes/class-ure-lib.php:2156
183
- #, php-format
184
- msgid "Default role for new users is set to %s successfully"
185
- msgstr "Yeni kullanıcılar için varsayılan rol %s rolüne başarıyla ayarlandı"
186
-
187
- #: ../includes/class-ure-lib.php:2159
188
- #, fuzzy
189
- msgid "Can not set Administrator role as a default one"
190
- msgstr "Yönetici rolünü Kullanıcı Rol Editörü'nde göster"
191
-
192
- #: ../includes/class-ure-lib.php:2161
193
- #, fuzzy
194
- msgid "This role does not exist - "
195
- msgstr "%s rolü mevcut değil"
196
-
197
- #: ../includes/class-ure-lib.php:2177
198
- msgid "Editor"
199
- msgstr "Editör"
200
-
201
- #: ../includes/class-ure-lib.php:2178
202
- msgid "Author"
203
- msgstr "Yazar"
204
-
205
- #: ../includes/class-ure-lib.php:2179
206
- msgid "Contributor"
207
- msgstr "İçerik Sağlayıcı"
208
-
209
- #: ../includes/class-ure-lib.php:2180
210
- msgid "Subscriber"
211
- msgstr "Abone"
212
-
213
- #: ../includes/class-ure-lib.php:2182
214
- msgid "Switch themes"
215
- msgstr "Tema değiştirme"
216
-
217
- #: ../includes/class-ure-lib.php:2183
218
- msgid "Edit themes"
219
- msgstr "Tema düzenleme"
220
-
221
- #: ../includes/class-ure-lib.php:2184
222
- msgid "Activate plugins"
223
- msgstr "Eklenti etkinleştirme"
224
-
225
- #: ../includes/class-ure-lib.php:2185
226
- msgid "Edit plugins"
227
- msgstr "Eklenti düzenleme"
228
-
229
- #: ../includes/class-ure-lib.php:2186
230
- msgid "Edit users"
231
- msgstr "Kullanıcı düzenleme"
232
-
233
- #: ../includes/class-ure-lib.php:2187
234
- msgid "Edit files"
235
- msgstr "Dosya düzenleme"
236
-
237
- #: ../includes/class-ure-lib.php:2188
238
- msgid "Manage options"
239
- msgstr "Seçenek yönetme"
240
-
241
- #: ../includes/class-ure-lib.php:2189
242
- msgid "Moderate comments"
243
- msgstr "Yorum ılıtma"
244
-
245
- #: ../includes/class-ure-lib.php:2190
246
- msgid "Manage categories"
247
- msgstr "Kategori yönetme"
248
-
249
- #: ../includes/class-ure-lib.php:2191
250
- msgid "Manage links"
251
- msgstr "Bağlantı yönetme"
252
-
253
- #: ../includes/class-ure-lib.php:2192
254
- msgid "Upload files"
255
- msgstr "Dosya yükleme"
256
-
257
- #: ../includes/class-ure-lib.php:2193
258
- msgid "Import"
259
- msgstr "İçe Aktarma"
260
-
261
- #: ../includes/class-ure-lib.php:2194
262
- msgid "Unfiltered html"
263
- msgstr "Süzülmemiş html"
264
-
265
- #: ../includes/class-ure-lib.php:2195
266
- msgid "Edit posts"
267
- msgstr "Yazı düzenleme"
268
-
269
- #: ../includes/class-ure-lib.php:2196
270
- msgid "Edit others posts"
271
- msgstr "Başkalarının yazılarını düzenleme"
272
-
273
- #: ../includes/class-ure-lib.php:2197
274
- msgid "Edit published posts"
275
- msgstr "Yayımdaki yazıları düzenleme"
276
-
277
- #: ../includes/class-ure-lib.php:2198
278
- msgid "Publish posts"
279
- msgstr "Yazı yayımlama"
280
-
281
- #: ../includes/class-ure-lib.php:2199
282
- msgid "Edit pages"
283
- msgstr "Sayfa düzenleme"
284
-
285
- #: ../includes/class-ure-lib.php:2200
286
- msgid "Read"
287
- msgstr "Okuma"
288
-
289
- #: ../includes/class-ure-lib.php:2201
290
- msgid "Level 10"
291
- msgstr "Seviye 10"
292
-
293
- #: ../includes/class-ure-lib.php:2202
294
- msgid "Level 9"
295
- msgstr "Seviye 9"
296
-
297
- #: ../includes/class-ure-lib.php:2203
298
- msgid "Level 8"
299
- msgstr "Seviye 8"
300
-
301
- #: ../includes/class-ure-lib.php:2204
302
- msgid "Level 7"
303
- msgstr "Seviye 7"
304
-
305
- #: ../includes/class-ure-lib.php:2205
306
- msgid "Level 6"
307
- msgstr "Seviye 6"
308
-
309
- #: ../includes/class-ure-lib.php:2206
310
- msgid "Level 5"
311
- msgstr "Seviye 5"
312
-
313
- #: ../includes/class-ure-lib.php:2207
314
- msgid "Level 4"
315
- msgstr "Seviye 4"
316
-
317
- #: ../includes/class-ure-lib.php:2208
318
- msgid "Level 3"
319
- msgstr "Seviye 3"
320
-
321
- #: ../includes/class-ure-lib.php:2209
322
- msgid "Level 2"
323
- msgstr "Seviye 2"
324
-
325
- #: ../includes/class-ure-lib.php:2210
326
- msgid "Level 1"
327
- msgstr "Seviye 1"
328
-
329
- #: ../includes/class-ure-lib.php:2211
330
- msgid "Level 0"
331
- msgstr "Seviye 0"
332
-
333
- #: ../includes/class-ure-lib.php:2212
334
- msgid "Edit others pages"
335
- msgstr "Başkalarının sayfalarını düzenleme"
336
-
337
- #: ../includes/class-ure-lib.php:2213
338
- msgid "Edit published pages"
339
- msgstr "Yayımdaki sayfaları düzenleme"
340
-
341
- #: ../includes/class-ure-lib.php:2214
342
- msgid "Publish pages"
343
- msgstr "Sayfa yayımlama"
344
-
345
- #: ../includes/class-ure-lib.php:2215
346
- msgid "Delete pages"
347
- msgstr "Sayfa silme"
348
-
349
- #: ../includes/class-ure-lib.php:2216
350
- msgid "Delete others pages"
351
- msgstr "Başkalarının sayfalarını silme"
352
-
353
- #: ../includes/class-ure-lib.php:2217
354
- msgid "Delete published pages"
355
- msgstr "Yayımdaki sayfaları silme"
356
-
357
- #: ../includes/class-ure-lib.php:2218
358
- msgid "Delete posts"
359
- msgstr "Yazı silme"
360
-
361
- #: ../includes/class-ure-lib.php:2219
362
- msgid "Delete others posts"
363
- msgstr "Başkalarının yazılarını silme"
364
-
365
- #: ../includes/class-ure-lib.php:2220
366
- msgid "Delete published posts"
367
- msgstr "Yayımdaki yazıları silme"
368
-
369
- #: ../includes/class-ure-lib.php:2221
370
- msgid "Delete private posts"
371
- msgstr "Kişisel yazıları silme"
372
-
373
- #: ../includes/class-ure-lib.php:2222
374
- msgid "Edit private posts"
375
- msgstr "Kişisel yazıları düzenleme"
376
-
377
- #: ../includes/class-ure-lib.php:2223
378
- msgid "Read private posts"
379
- msgstr "Kişisel yazıları okuma"
380
-
381
- #: ../includes/class-ure-lib.php:2224
382
- msgid "Delete private pages"
383
- msgstr "Kişisel sayfaları silme"
384
-
385
- #: ../includes/class-ure-lib.php:2225
386
- msgid "Edit private pages"
387
- msgstr "Kişisel sayfaları düzenleme"
388
-
389
- #: ../includes/class-ure-lib.php:2226
390
- msgid "Read private pages"
391
- msgstr "Kişisel sayfaları okuma"
392
-
393
- #: ../includes/class-ure-lib.php:2227
394
- msgid "Delete users"
395
- msgstr "Kullanıcı silme"
396
-
397
- #: ../includes/class-ure-lib.php:2228
398
- msgid "Create users"
399
- msgstr "Kullanıcı oluşturma"
400
-
401
- #: ../includes/class-ure-lib.php:2229
402
- msgid "Unfiltered upload"
403
- msgstr "Süzülmemiş yükleme"
404
-
405
- #: ../includes/class-ure-lib.php:2230
406
- msgid "Edit dashboard"
407
- msgstr "Panel düzenleme"
408
-
409
- #: ../includes/class-ure-lib.php:2231
410
- msgid "Update plugins"
411
- msgstr "Eklenti güncelleme"
412
-
413
- #: ../includes/class-ure-lib.php:2232
414
- msgid "Delete plugins"
415
- msgstr "Eklenti silme"
416
-
417
- #: ../includes/class-ure-lib.php:2233
418
- msgid "Install plugins"
419
- msgstr "Eklenti kurma"
420
-
421
- #: ../includes/class-ure-lib.php:2234
422
- msgid "Update themes"
423
- msgstr "Tema güncelleme"
424
-
425
- #: ../includes/class-ure-lib.php:2235
426
- msgid "Install themes"
427
- msgstr "Tema kurma"
428
-
429
- #: ../includes/class-ure-lib.php:2236
430
- msgid "Update core"
431
- msgstr "Çekirdek güncelleme"
432
-
433
- #: ../includes/class-ure-lib.php:2237
434
- msgid "List users"
435
- msgstr "Kullanıcı listeleme"
436
-
437
- #: ../includes/class-ure-lib.php:2238
438
- msgid "Remove users"
439
- msgstr "Kullanıcı kaldırma"
440
-
441
- #: ../includes/class-ure-lib.php:2239
442
- msgid "Add users"
443
- msgstr "Kullanıcı ekleme"
444
-
445
- #: ../includes/class-ure-lib.php:2240
446
- msgid "Promote users"
447
- msgstr "Kullanıcı teşvik etme"
448
-
449
- #: ../includes/class-ure-lib.php:2241
450
- msgid "Edit theme options"
451
- msgstr "Tema seçenekleri düzenleme"
452
-
453
- #: ../includes/class-ure-lib.php:2242
454
- msgid "Delete themes"
455
- msgstr "Tema silme"
456
-
457
- #: ../includes/class-ure-lib.php:2243
458
- msgid "Export"
459
- msgstr "Dışa Aktarma"
460
-
461
- #: ../includes/class-ure-lib.php:2366
462
- msgid "Error: Capability name must contain latin characters and digits only!"
463
- msgstr "Hata: Kabiliyet ismi yalnızca latin karakterleri ve rakamlar içermeli!"
464
-
465
- #: ../includes/class-ure-lib.php:2379
466
- #, php-format
467
- msgid "Capability %s is added successfully"
468
- msgstr "%s kabiliyeti başarıyla eklendi"
469
-
470
- #: ../includes/class-ure-lib.php:2381
471
- #, php-format
472
- msgid "Capability %s exists already"
473
- msgstr "%s kabiliyeti zaten mevcut"
474
-
475
- #: ../includes/class-ure-lib.php:2410
476
- #, php-format
477
- msgid "Error! You do not have permission to delete this capability: %s!"
478
- msgstr "Hata! Bu kabiliyeti silmeye izniniz yok: %s!"
479
-
480
- #: ../includes/class-ure-lib.php:2429
481
- #, fuzzy, php-format
482
- msgid "Capability %s was removed successfully"
483
- msgstr "%s kabiliyeti başarıyla kaldırıldı"
484
-
485
- #: ../includes/class-ure-lib.php:2497
486
- msgid "Version:"
487
- msgstr "Sürüm:"
488
-
489
- #: ../includes/class-ure-lib.php:2498
490
- msgid "Author's website"
491
- msgstr "Yazarın web sitesi"
492
-
493
- #: ../includes/class-ure-lib.php:2499
494
- msgid "Plugin webpage"
495
- msgstr "Eklenti web sayfası"
496
-
497
- #: ../includes/class-ure-lib.php:2500
498
- msgid "Plugin download"
499
- msgstr "Eklenti indirme"
500
-
501
- #: ../includes/class-ure-lib.php:2501
502
- #: ../includes/class-user-role-editor.php:546
503
- msgid "Changelog"
504
- msgstr "Değişiklik Günlüğü"
505
-
506
- #: ../includes/class-ure-lib.php:2502
507
- msgid "FAQ"
508
- msgstr "S.S.S."
509
-
510
- #: ../includes/class-ure-lib.php:2575
511
- msgid "Delete All Unused Roles"
512
- msgstr "Tüm Kullanılmayan Rolleri Sil"
513
-
514
- #: ../includes/class-ure-lib.php:2588
515
- msgid "None"
516
- msgstr "Hiçbiri"
517
-
518
- #: ../includes/class-ure-lib.php:2632
519
- msgid "&mdash; No role for this site &mdash;"
520
- msgstr "&mdash; Bu site için hiç rol yok &mdash;"
521
-
522
- #: ../includes/class-ure-lib.php:2747
523
- #, php-format
524
- msgid "Denied: %s"
525
- msgstr ""
526
-
527
- #: ../includes/ure-role-edit.php:17
528
- msgid "Select Role and change its capabilities:"
529
- msgstr "Rol seçin ve rolün kabiliyetlerini değiştirin:"
530
-
531
- #: ../includes/ure-role-edit.php:30 ../includes/ure-user-edit.php:54
532
- msgid "Show capabilities in human readable form"
533
- msgstr "Kabiliyetleri insancıl biçimde göster"
534
-
535
- #: ../includes/ure-role-edit.php:40 ../includes/class-ure-screen-help.php:21
536
- #: ../includes/settings-template.php:69 ../includes/ure-user-edit.php:64
537
- msgid "Show deprecated capabilities"
538
- msgstr "Önerilmeyen kabiliyetleri göster"
539
-
540
- #: ../includes/ure-role-edit.php:44
541
- msgid "If checked, then apply action to ALL sites of this Network"
542
- msgstr "İşaretliyse işlem bu Ağdaki TÜM sitelere uygulanır"
543
-
544
- #: ../includes/ure-role-edit.php:56
545
- msgid "Apply to All Sites"
546
- msgstr "Tüm Sitelere Uygula"
547
-
548
- #: ../includes/ure-role-edit.php:63 ../includes/ure-user-edit.php:110
549
- msgid "Core capabilities:"
550
- msgstr "Çekirdek kabiliyetler:"
551
-
552
- #: ../includes/ure-role-edit.php:65 ../includes/ure-user-edit.php:112
553
- msgid "Quick filter:"
554
- msgstr "Hızlı süzgeç:"
555
-
556
- #: ../includes/ure-role-edit.php:83 ../includes/ure-user-edit.php:131
557
- msgid "Custom capabilities:"
558
- msgstr "Özel kabiliyetler:"
559
-
560
- #: ../includes/class-user-other-roles.php:82
561
- #: ../includes/class-user-other-roles.php:183
562
- #: ../includes/class-user-other-roles.php:243
563
- msgid "Other Roles"
564
- msgstr "Diğer Roller"
565
-
566
- #: ../includes/class-user-other-roles.php:83
567
- msgid "Select additional roles for this user"
568
- msgstr ""
569
-
570
- #: ../includes/class-user-other-roles.php:162
571
- #: ../includes/class-user-role-editor.php:438
572
- msgid "Capabilities"
573
- msgstr "Kabiliyetler"
574
-
575
- #: ../includes/class-user-other-roles.php:169
576
- msgid "Edit"
577
- msgstr "Düzenle"
578
-
579
- #: ../includes/class-user-other-roles.php:215
580
- #, fuzzy
581
- msgid "Additional Capabilities"
582
- msgstr "Kabiliyet Ekle"
583
-
584
- #: ../includes/class-ure-screen-help.php:12
585
- #: ../includes/class-ure-screen-help.php:41
586
- #: ../includes/class-ure-screen-help.php:60
587
- #: ../includes/class-ure-screen-help.php:79
588
- msgid "User Role Editor Options page help"
589
- msgstr "Kullanıcı Rol Editörü Seçenekler"
590
-
591
- #: ../includes/class-ure-screen-help.php:15
592
- #: ../includes/settings-template.php:53
593
- msgid "Show Administrator role at User Role Editor"
594
- msgstr "Yönetici rolünü Kullanıcı Rol Editörü'nde göster"
595
-
596
- #: ../includes/class-ure-screen-help.php:16
597
- msgid ""
598
- "turn this option on in order to make the \"Administrator\" role available at "
599
- "the User Role Editor roles selection drop-down list. It is hidden by default "
600
- "for security reasons."
601
- msgstr ""
602
- "\"Yönetici\" rolünün Kullanıcı Rol Editörü rol seçim açılır listesinde yer "
603
- "alması için bu seçeneği açık yapın. Güvenlik sebebiyle varsayılan olarak "
604
- "gizlenmiştir."
605
-
606
- #: ../includes/class-ure-screen-help.php:18
607
- #: ../includes/settings-template.php:61
608
- msgid "Show capabilities in the human readable form"
609
- msgstr "Kabiliyetleri insancıl biçimde göster"
610
-
611
- #: ../includes/class-ure-screen-help.php:19
612
- msgid ""
613
- "automatically converts capability names from the technical form for internal "
614
- "use like \"edit_others_posts\" to more user friendly form, e.g. \"Edit "
615
- "others posts\"."
616
- msgstr ""
617
- "otomatik olarak \"edit_others_post\" gibi teknik biçimdeki kabiliyet "
618
- "isimlerini dahili kullanım için daha kullanıcı dostu biçime dönüştürür, "
619
- "mesela \"Başkalarının yazılarını düzenleme\"."
620
-
621
- #: ../includes/class-ure-screen-help.php:22
622
- msgid ""
623
- "Capabilities like \"level_0\", \"level_1\" are deprecated and are not used "
624
- "by WordPress. They are left at the user roles for the compatibility purpose "
625
- "with the old themes and plugins code. Turning on this option will show those "
626
- "deprecated capabilities."
627
- msgstr ""
628
- "\"level_0\", \"level_1\" gibi kabiliyetler önerilmemektedir ve WordPress "
629
- "tarafından kullanılmamaktadır. Bunlara eski temalar ve eklentiler ile "
630
- "uyumluluğun korunması amacıyla kullanıcı rolleri arasında yer verilmiştir. "
631
- "Bu seçeneği açık yapmak bu önerilmeyen kabiliyetleri görünür yapacaktır."
632
-
633
- #: ../includes/class-ure-screen-help.php:25
634
- #: ../includes/settings-template.php:77
635
- msgid "Edit user capabilities"
636
- msgstr "Özel kabiliyetler düzenleme"
637
-
638
- #: ../includes/class-ure-screen-help.php:26
639
- msgid ""
640
- "If turned off - capabilities section of selected user is shown in readonly "
641
- "mode. Administrator can not assign capabilities to the user directly. He "
642
- "should make it using roles only."
643
- msgstr ""
644
-
645
- #: ../includes/class-ure-screen-help.php:45
646
- #: ../includes/settings-template.php:111
647
- msgid "Count users without role"
648
- msgstr "Rolsüz kullanıcıları say"
649
-
650
- #: ../includes/class-ure-screen-help.php:46
651
- msgid ""
652
- "Show at the \"Users\" page a quant of users without role. Module allows to "
653
- "assign all of them an empty role \"No rights\", in order to look on the "
654
- "users list with role \"No rights\" at the separate tab then."
655
- msgstr ""
656
- "Rolsüz birkaç kullanıcıyı \"Kullanıcılar\" sayfasında gösterin. Modül "
657
- "onların hepsini \"Haksız\" isimli boş bir role atanmasına, daha sonra ayrı "
658
- "bir sekmede herhangi hakkı olmayan kullanıcıları görebilmek için izin verir."
659
-
660
- #: ../includes/class-ure-screen-help.php:63
661
- msgid "Other default roles for new registered user"
662
- msgstr "Yeni kayıtlı kullanıcılar için diğer varsayılan roller"
663
-
664
- #: ../includes/class-ure-screen-help.php:64
665
- msgid ""
666
- "select roles below to assign them to the new user automatically as an "
667
- "addition to the primary role. Note for multisite environment: take into "
668
- "account that other default roles should exist at the site, in order to be "
669
- "assigned to the new registered users."
670
- msgstr ""
671
- "Aşağıdan yeni kullanıcılara birincil rollerine ilaveten otomatik olarak "
672
- "atanması için roller seçin. Çoklu site ortamları için unutulmaması gereken: "
673
- "take into account that other default roles should exist at the site, in "
674
- "order to be assigned to the new registered users."
675
-
676
- #: ../includes/class-ure-screen-help.php:82
677
- msgid "Allow non super-admininstrators to create, edit and delete users"
678
- msgstr ""
679
- "Süper yönetici olmayanların kullanıcı oluşturma, düzenleme ve silmelerine "
680
- "izin ver"
681
-
682
- #: ../includes/class-ure-screen-help.php:83
683
- msgid ""
684
- "Super administrator only may create, edit and delete users under WordPress "
685
- "multi-site by default. Turn this option on in order to remove this "
686
- "limitation."
687
- msgstr ""
688
- "Süper yönetici WordPress çoklu site yapısında varsayılan olarak "
689
- "kullanıcıları yalnızca oluşturur, düzenler ve siler. Bu kısıtlamayı "
690
- "kaldırmak için bu seçeneği açık yapın."
691
-
692
- #: ../includes/class-user-role-editor.php:233
693
- msgid "Change role for users without role"
694
- msgstr "Rolsüz kullanıcıların rolünü değiştir"
695
-
696
- #: ../includes/class-user-role-editor.php:234
697
- msgid "No rights"
698
- msgstr "İzin yok"
699
-
700
- #: ../includes/class-user-role-editor.php:235
701
- msgid "Provide new role"
702
- msgstr "Yeni rol sağla"
703
-
704
- #: ../includes/class-user-role-editor.php:298
705
- #: ../includes/class-user-role-editor.php:300
706
- msgid "You do not have permission to edit this user."
707
- msgstr "Bu kullanıcıyı düzenlemek için izniniz yok."
708
-
709
- #: ../includes/class-user-role-editor.php:535
710
- msgid "Settings"
711
- msgstr "Ayarlar"
712
-
713
- #: ../includes/class-user-role-editor.php:568
714
- #: ../includes/settings-template.php:21
715
- msgid "General"
716
- msgstr "Genel"
717
-
718
- #: ../includes/class-user-role-editor.php:574
719
- #: ../includes/settings-template.php:26
720
- msgid "Additional Modules"
721
- msgstr "İlave Modüller"
722
-
723
- #: ../includes/class-user-role-editor.php:580
724
- #: ../includes/settings-template.php:30
725
- msgid "Default Roles"
726
- msgstr "Varsayılan Roller"
727
-
728
- #: ../includes/class-user-role-editor.php:586
729
- #: ../includes/settings-template.php:34
730
- msgid "Multisite"
731
- msgstr "Çoklu site"
732
-
733
- #: ../includes/class-user-role-editor.php:685
734
- #: ../includes/class-user-role-editor.php:703
735
- #: ../includes/class-user-role-editor.php:747
736
- msgid "User Role Editor options are updated"
737
- msgstr "Kullanıcı Rol Editörü seçenekleri güncellendi"
738
-
739
- #: ../includes/class-user-role-editor.php:731
740
- msgid "Default Roles are updated"
741
- msgstr "Varsayılan Roller güncellendi"
742
-
743
- #: ../includes/class-user-role-editor.php:756
744
- msgid ""
745
- "You do not have sufficient permissions to manage options for User Role "
746
- "Editor."
747
- msgstr "Kullanıcı Rol Editörü seçeneklerini yönetmek için yeterli izniniz yok."
748
-
749
- #: ../includes/class-user-role-editor.php:885
750
- msgid "Select All"
751
- msgstr "Hepsini Seç"
752
-
753
- #: ../includes/class-user-role-editor.php:886
754
- msgid "Unselect All"
755
- msgstr "Hiçbirini Seçme"
756
-
757
- #: ../includes/class-user-role-editor.php:887
758
- msgid "Reverse"
759
- msgstr "Evir"
760
-
761
- #: ../includes/class-user-role-editor.php:888
762
- msgid "Update"
763
- msgstr "Güncelle"
764
-
765
- #: ../includes/class-user-role-editor.php:889
766
- msgid "Please confirm permissions update"
767
- msgstr "Lütfen izin güncellemesini onaylayın"
768
-
769
- #: ../includes/class-user-role-editor.php:890
770
- msgid "Add New Role"
771
- msgstr "Yeni Rol Ekle"
772
-
773
- #: ../includes/class-user-role-editor.php:891
774
- #: ../includes/class-user-role-editor.php:896
775
- msgid "Rename Role"
776
- msgstr "Rol İsmi Değiştir"
777
-
778
- #: ../includes/class-user-role-editor.php:892
779
- msgid " Role name (ID) can not be empty!"
780
- msgstr "Rol ismi (ID) boş olamaz!"
781
-
782
- #: ../includes/class-user-role-editor.php:893
783
- msgid ""
784
- " Role name (ID) must contain latin characters, digits, hyphens or underscore "
785
- "only!"
786
- msgstr ""
787
- "Rol ismi (ID) yalnızca latin karakterleri, rakamlar, tireler veya alt "
788
- "çizgiler içermeli!"
789
-
790
- #: ../includes/class-user-role-editor.php:894
791
- msgid ""
792
- " WordPress does not support numeric Role name (ID). Add latin characters to "
793
- "it."
794
- msgstr ""
795
- "WordPress sayısal rol ismi (ID) desteklemiyor. Latin karakterler ekleyin."
796
-
797
- #: ../includes/class-user-role-editor.php:895
798
- msgid "Add Role"
799
- msgstr "Rol Ekle"
800
-
801
- #: ../includes/class-user-role-editor.php:897
802
- msgid "Delete Role"
803
- msgstr "Rol Sil"
804
-
805
- #: ../includes/class-user-role-editor.php:898
806
- msgid "Cancel"
807
- msgstr "İptal"
808
-
809
- #: ../includes/class-user-role-editor.php:899
810
- msgid "Add Capability"
811
- msgstr "Kabiliyet Ekle"
812
-
813
- #: ../includes/class-user-role-editor.php:900
814
- #: ../includes/class-user-role-editor.php:909
815
- msgid "Delete Capability"
816
- msgstr "Kabiliyet Sil"
817
-
818
- #: ../includes/class-user-role-editor.php:901
819
- msgid "Reset"
820
- msgstr "Sıfırla"
821
-
822
- #: ../includes/class-user-role-editor.php:902
823
- msgid "DANGER! Resetting will restore default settings from WordPress Core."
824
- msgstr ""
825
- "TEHLİKE! Sıfırlama WordPress Çekirdeğinin varsayılan ayarlarını geri yükler."
826
-
827
- #: ../includes/class-user-role-editor.php:903
828
- msgid ""
829
- "If any plugins have changed capabilities in any way upon installation (such "
830
- "as S2Member, WooCommerce, and many more), those capabilities will be DELETED!"
831
- msgstr ""
832
- "Herhangi eklenti (S2Member, WooCommerce gibi) kurulumdan sonra herhangi "
833
- "yoldan kabiliyetleri değiştirdiyse, o kabiliyetler SİLİNİR!"
834
-
835
- #: ../includes/class-user-role-editor.php:904
836
- msgid ""
837
- "For more information on how to undo changes and restore plugin capabilities "
838
- "go to"
839
- msgstr ""
840
- "Değişiklikleri geri alma ve eklenti kabiliyetlerini geri yükleme hakkında "
841
- "daha fazla bilgi için gideceğiniz adres:"
842
-
843
- #: ../includes/class-user-role-editor.php:906
844
- msgid "Continue?"
845
- msgstr "Devam mı?"
846
-
847
- #: ../includes/class-user-role-editor.php:907
848
- msgid "Default Role"
849
- msgstr "Varsayılan Rol"
850
-
851
- #: ../includes/class-user-role-editor.php:908
852
- msgid "Set New Default Role"
853
- msgstr "Yeni Varsayılan Rol Belirle"
854
-
855
- #: ../includes/class-user-role-editor.php:910
856
- msgid ""
857
- "Warning! Be careful - removing critical capability could crash some plugin "
858
- "or other custom code"
859
- msgstr ""
860
- "Uyarı! Dikkatli olun - kritik kabiliyetleri kaldırmak bazı eklentileri veya "
861
- "diğer özel kodları bozabilir"
862
-
863
- #: ../includes/class-user-role-editor.php:911
864
- msgid " Capability name (ID) can not be empty!"
865
- msgstr "Kabiliyet ismi (ID) boş olamaz!"
866
-
867
- #: ../includes/class-user-role-editor.php:912
868
- msgid ""
869
- " Capability name (ID) must contain latin characters, digits, hyphens or "
870
- "underscore only!"
871
- msgstr ""
872
- "Kabiliyet ismi (ID) yalnızca latin karakterleri, rakamlar, tireler veya alt "
873
- "çizgiler içermeli!"
874
-
875
- #: ../includes/settings-template.php:17
876
- msgid "User Role Editor - Options"
877
- msgstr "Kullanıcı Rol Editörü - Seçenekler"
878
-
879
- #: ../includes/settings-template.php:39
880
- msgid "About"
881
- msgstr "Hakkında"
882
-
883
- #: ../includes/settings-template.php:90 ../includes/settings-template.php:126
884
- #: ../includes/settings-template.php:158 ../includes/settings-template.php:190
885
- msgid "Save"
886
- msgstr "Sakla"
887
-
888
- #: ../includes/settings-template.php:138
889
- msgid "Primary default role: "
890
- msgstr "Birincil varsayılan rol:"
891
-
892
- #: ../includes/settings-template.php:145
893
- msgid "Other default roles for new registered user: "
894
- msgstr "Yeni kaydolan kullanıcılar için diğer varsayılan roller:"
895
-
896
- #: ../includes/settings-template.php:151
897
- msgid ""
898
- "Note for multisite environment: take into account that other default roles "
899
- "should exist at the site, in order to be assigned to the new registered "
900
- "users."
901
- msgstr ""
902
- "Çoklu site ortamı için hatırlatma: diğer varsayılan rollerin yeni kaydolan "
903
- "kullanıcılara atanması için sitede bulunması gerektiğini olduğunu hesaba "
904
- "katın."
905
-
906
- #: ../includes/settings-template.php:177
907
- msgid "Allow non super administrators to create, edit, and delete users"
908
- msgstr ""
909
- "Süper yönetici olmayanların kullanıcı oluşturma, düzenleme ve silmelerine "
910
- "izin ver"
911
-
912
- #: ../includes/ure-user-edit.php:32
913
- msgid "Network Super Admin"
914
- msgstr "Ağ Süper Yöneticisi"
915
-
916
- #: ../includes/ure-user-edit.php:35
917
- msgid "Change capabilities for user"
918
- msgstr "Kullanıcının kabiliyetlerini değiştir"
919
-
920
- #: ../includes/ure-user-edit.php:72
921
- msgid "Primary Role:"
922
- msgstr "Birincil Rol:"
923
-
924
- #: ../includes/ure-user-edit.php:82
925
- msgid "bbPress Role:"
926
- msgstr "bbPress Rolü:"
927
-
928
- #: ../includes/ure-user-edit.php:92
929
- msgid "Other Roles:"
930
- msgstr "Diğer Roller:"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
lang/user-role-editor.mo CHANGED
Binary file
lang/user-role-editor.pot CHANGED
@@ -2,9 +2,9 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: User Role Editor 4.19.2\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2015-09-11 21:06+0100\n"
6
  "PO-Revision-Date: \n"
7
- "Last-Translator: Vladimir Garagulya <vladimir@shinephp.com>\n"
8
  "Language-Team: https://www.role-editor.com <support@role-editor.com>\n"
9
  "Language: en_EN\n"
10
  "MIME-Version: 1.0\n"
@@ -16,864 +16,888 @@ msgstr ""
16
  "X-Generator: Poedit 1.5.4\n"
17
  "X-Poedit-SearchPath-0: ..\n"
18
 
19
- #: ../includes/class-ure-lib.php:247
20
- msgid "Error: wrong request"
21
  msgstr ""
22
 
23
- #: ../includes/class-ure-lib.php:280 ../includes/class-ure-lib.php:291
24
- msgid "Role name (ID): "
25
  msgstr ""
26
 
27
- #: ../includes/class-ure-lib.php:282 ../includes/class-ure-lib.php:293
28
- msgid "Display Role Name: "
 
29
  msgstr ""
30
 
31
- #: ../includes/class-ure-lib.php:284
32
- msgid "Make copy of: "
33
  msgstr ""
34
 
35
- #: ../includes/class-ure-lib.php:300
36
- msgid "Select Role:"
37
  msgstr ""
38
 
39
- #: ../includes/class-ure-lib.php:315
40
- msgid "Delete:"
41
  msgstr ""
42
 
43
- #: ../includes/class-ure-lib.php:322
44
- msgid "Capability name (ID): "
45
  msgstr ""
46
 
47
- #: ../includes/class-ure-lib.php:339
48
- #: ../includes/class-user-role-editor.php:596
49
- #: ../includes/class-user-role-editor.php:625
50
- msgid "User Role Editor"
51
  msgstr ""
52
 
53
- #: ../includes/class-ure-lib.php:436
54
- msgid "Error: "
55
  msgstr ""
56
 
57
- #: ../includes/class-ure-lib.php:436
58
- msgid "Role"
59
  msgstr ""
60
 
61
- #: ../includes/class-ure-lib.php:437
62
- msgid "does not exist"
63
  msgstr ""
64
 
65
- #: ../includes/class-ure-lib.php:480
66
- msgid "Role is updated successfully"
 
67
  msgstr ""
68
 
69
- #: ../includes/class-ure-lib.php:482
70
- msgid "Roles are updated for all network"
 
71
  msgstr ""
72
 
73
- #: ../includes/class-ure-lib.php:488
74
- msgid "Error occured during role(s) update"
75
  msgstr ""
76
 
77
- #: ../includes/class-ure-lib.php:495
78
- msgid "User capabilities are updated successfully"
 
79
  msgstr ""
80
 
81
- #: ../includes/class-ure-lib.php:500
82
- msgid "Error occured during user update"
 
83
  msgstr ""
84
 
85
- #: ../includes/class-ure-lib.php:558
86
- msgid "User Roles are restored to WordPress default values. "
 
87
  msgstr ""
88
 
89
- #: ../includes/class-ure-lib.php:1436
90
- msgid "read about"
 
91
  msgstr ""
92
 
93
- #: ../includes/class-ure-lib.php:1437
94
- msgid "user capability"
 
95
  msgstr ""
96
 
97
- #: ../includes/class-ure-lib.php:1438
98
- msgid "Help"
 
 
99
  msgstr ""
100
 
101
- #: ../includes/class-ure-lib.php:1693 ../includes/class-ure-lib.php:1946
102
- #: ../includes/class-ure-lib.php:2062 ../includes/class-ure-lib.php:2110
103
- #: ../includes/class-ure-lib.php:2358 ../includes/class-ure-lib.php:2403
104
- #: ../includes/class-user-role-editor.php:828
105
- msgid "Insufficient permissions to work with User Role Editor"
106
  msgstr ""
107
 
108
- #: ../includes/class-ure-lib.php:1909
109
- msgid "Error is occur. Please check the log file."
110
  msgstr ""
111
 
112
- #: ../includes/class-ure-lib.php:1955 ../includes/class-ure-lib.php:2022
113
  msgid ""
114
- "Error: Role ID must contain latin characters, digits, hyphens or underscore "
115
- "only!"
116
  msgstr ""
117
 
118
- #: ../includes/class-ure-lib.php:1959 ../includes/class-ure-lib.php:2026
119
- msgid ""
120
- "Error: WordPress does not support numeric Role name (ID). Add latin "
121
- "characters to it."
 
122
  msgstr ""
123
 
124
- #: ../includes/class-ure-lib.php:1974
125
- #, php-format
126
- msgid "Role %s exists already"
127
  msgstr ""
128
 
129
- #: ../includes/class-ure-lib.php:1989
130
- msgid "Error is encountered during new role create operation"
131
  msgstr ""
132
 
133
- #: ../includes/class-ure-lib.php:1991
134
- #, php-format
135
- msgid "Role %s is created successfully"
136
  msgstr ""
137
 
138
- #: ../includes/class-ure-lib.php:2015
139
- msgid "Error: Role ID is empty!"
140
  msgstr ""
141
 
142
- #: ../includes/class-ure-lib.php:2033
143
- msgid "Error: Empty role display name is not allowed."
144
  msgstr ""
145
 
146
- #: ../includes/class-ure-lib.php:2040
147
- #, php-format
148
- msgid "Role %s does not exists"
149
  msgstr ""
150
 
151
- #: ../includes/class-ure-lib.php:2048
152
- #, php-format
153
- msgid "Role %s is renamed to %s successfully"
154
  msgstr ""
155
 
156
- #: ../includes/class-ure-lib.php:2121
157
- msgid "Error encountered during role delete operation"
158
  msgstr ""
159
 
160
- #: ../includes/class-ure-lib.php:2123
161
- msgid "Unused roles are deleted successfully"
162
  msgstr ""
163
 
164
- #: ../includes/class-ure-lib.php:2125
165
- #, php-format
166
- msgid "Role %s is deleted successfully"
167
  msgstr ""
168
 
169
- #: ../includes/class-ure-lib.php:2153
170
- msgid "Error encountered during default role change operation"
171
  msgstr ""
172
 
173
- #: ../includes/class-ure-lib.php:2156
174
- #, php-format
175
- msgid "Default role for new users is set to %s successfully"
 
176
  msgstr ""
177
 
178
- #: ../includes/class-ure-lib.php:2159
179
- msgid "Can not set Administrator role as a default one"
 
 
180
  msgstr ""
181
 
182
- #: ../includes/class-ure-lib.php:2161
183
- msgid "This role does not exist - "
184
  msgstr ""
185
 
186
- #: ../includes/class-ure-lib.php:2177
187
- msgid "Editor"
188
  msgstr ""
189
 
190
- #: ../includes/class-ure-lib.php:2178
191
- msgid "Author"
192
  msgstr ""
193
 
194
- #: ../includes/class-ure-lib.php:2179
195
- msgid "Contributor"
196
  msgstr ""
197
 
198
- #: ../includes/class-ure-lib.php:2180
199
- msgid "Subscriber"
 
200
  msgstr ""
201
 
202
- #: ../includes/class-ure-lib.php:2182
203
- msgid "Switch themes"
204
  msgstr ""
205
 
206
- #: ../includes/class-ure-lib.php:2183
207
- msgid "Edit themes"
208
  msgstr ""
209
 
210
- #: ../includes/class-ure-lib.php:2184
211
- msgid "Activate plugins"
 
 
212
  msgstr ""
213
 
214
- #: ../includes/class-ure-lib.php:2185
215
- msgid "Edit plugins"
 
 
216
  msgstr ""
217
 
218
- #: ../includes/class-ure-lib.php:2186
219
- msgid "Edit users"
220
  msgstr ""
221
 
222
- #: ../includes/class-ure-lib.php:2187
223
- msgid "Edit files"
224
  msgstr ""
225
 
226
- #: ../includes/class-ure-lib.php:2188
227
- msgid "Manage options"
228
  msgstr ""
229
 
230
- #: ../includes/class-ure-lib.php:2189
231
- msgid "Moderate comments"
 
 
232
  msgstr ""
233
 
234
- #: ../includes/class-ure-lib.php:2190
235
- msgid "Manage categories"
236
  msgstr ""
237
 
238
- #: ../includes/class-ure-lib.php:2191
239
- msgid "Manage links"
 
 
240
  msgstr ""
241
 
242
- #: ../includes/class-ure-lib.php:2192
243
- msgid "Upload files"
244
  msgstr ""
245
 
246
- #: ../includes/class-ure-lib.php:2193
247
- msgid "Import"
248
  msgstr ""
249
 
250
- #: ../includes/class-ure-lib.php:2194
251
- msgid "Unfiltered html"
252
  msgstr ""
253
 
254
- #: ../includes/class-ure-lib.php:2195
255
- msgid "Edit posts"
256
  msgstr ""
257
 
258
- #: ../includes/class-ure-lib.php:2196
259
- msgid "Edit others posts"
 
260
  msgstr ""
261
 
262
- #: ../includes/class-ure-lib.php:2197
263
- msgid "Edit published posts"
 
264
  msgstr ""
265
 
266
- #: ../includes/class-ure-lib.php:2198
267
- msgid "Publish posts"
268
  msgstr ""
269
 
270
- #: ../includes/class-ure-lib.php:2199
271
- msgid "Edit pages"
 
272
  msgstr ""
273
 
274
- #: ../includes/class-ure-lib.php:2200
275
- msgid "Read"
 
276
  msgstr ""
277
 
278
- #: ../includes/class-ure-lib.php:2201
279
- msgid "Level 10"
 
280
  msgstr ""
281
 
282
- #: ../includes/class-ure-lib.php:2202
283
- msgid "Level 9"
284
  msgstr ""
285
 
286
- #: ../includes/class-ure-lib.php:2203
287
- msgid "Level 8"
288
  msgstr ""
289
 
290
- #: ../includes/class-ure-lib.php:2204
291
- msgid "Level 7"
 
 
 
292
  msgstr ""
293
 
294
- #: ../includes/class-ure-lib.php:2205
295
- msgid "Level 6"
296
  msgstr ""
297
 
298
- #: ../includes/class-ure-lib.php:2206
299
- msgid "Level 5"
 
 
300
  msgstr ""
301
 
302
- #: ../includes/class-ure-lib.php:2207
303
- msgid "Level 4"
304
  msgstr ""
305
 
306
- #: ../includes/class-ure-lib.php:2208
307
- msgid "Level 3"
308
  msgstr ""
309
 
310
- #: ../includes/class-ure-lib.php:2209
311
- msgid "Level 2"
312
  msgstr ""
313
 
314
- #: ../includes/class-ure-lib.php:2210
315
- msgid "Level 1"
316
  msgstr ""
317
 
318
- #: ../includes/class-ure-lib.php:2211
319
- msgid "Level 0"
320
  msgstr ""
321
 
322
- #: ../includes/class-ure-lib.php:2212
323
- msgid "Edit others pages"
324
  msgstr ""
325
 
326
- #: ../includes/class-ure-lib.php:2213
327
- msgid "Edit published pages"
328
  msgstr ""
329
 
330
- #: ../includes/class-ure-lib.php:2214
331
- msgid "Publish pages"
332
  msgstr ""
333
 
334
- #: ../includes/class-ure-lib.php:2215
335
- msgid "Delete pages"
336
  msgstr ""
337
 
338
- #: ../includes/class-ure-lib.php:2216
339
- msgid "Delete others pages"
340
  msgstr ""
341
 
342
- #: ../includes/class-ure-lib.php:2217
343
- msgid "Delete published pages"
344
  msgstr ""
345
 
346
- #: ../includes/class-ure-lib.php:2218
347
- msgid "Delete posts"
348
  msgstr ""
349
 
350
- #: ../includes/class-ure-lib.php:2219
351
- msgid "Delete others posts"
352
  msgstr ""
353
 
354
- #: ../includes/class-ure-lib.php:2220
355
- msgid "Delete published posts"
356
  msgstr ""
357
 
358
- #: ../includes/class-ure-lib.php:2221
359
- msgid "Delete private posts"
360
  msgstr ""
361
 
362
- #: ../includes/class-ure-lib.php:2222
363
- msgid "Edit private posts"
364
  msgstr ""
365
 
366
- #: ../includes/class-ure-lib.php:2223
367
- msgid "Read private posts"
368
  msgstr ""
369
 
370
- #: ../includes/class-ure-lib.php:2224
371
- msgid "Delete private pages"
372
  msgstr ""
373
 
374
- #: ../includes/class-ure-lib.php:2225
375
- msgid "Edit private pages"
376
  msgstr ""
377
 
378
- #: ../includes/class-ure-lib.php:2226
379
- msgid "Read private pages"
380
  msgstr ""
381
 
382
- #: ../includes/class-ure-lib.php:2227
383
- msgid "Delete users"
384
  msgstr ""
385
 
386
- #: ../includes/class-ure-lib.php:2228
387
- msgid "Create users"
388
  msgstr ""
389
 
390
- #: ../includes/class-ure-lib.php:2229
391
- msgid "Unfiltered upload"
392
  msgstr ""
393
 
394
- #: ../includes/class-ure-lib.php:2230
395
- msgid "Edit dashboard"
 
 
396
  msgstr ""
397
 
398
- #: ../includes/class-ure-lib.php:2231
399
- msgid "Update plugins"
 
 
400
  msgstr ""
401
 
402
- #: ../includes/class-ure-lib.php:2232
403
- msgid "Delete plugins"
 
404
  msgstr ""
405
 
406
- #: ../includes/class-ure-lib.php:2233
407
- msgid "Install plugins"
408
  msgstr ""
409
 
410
- #: ../includes/class-ure-lib.php:2234
411
- msgid "Update themes"
 
412
  msgstr ""
413
 
414
- #: ../includes/class-ure-lib.php:2235
415
- msgid "Install themes"
416
  msgstr ""
417
 
418
- #: ../includes/class-ure-lib.php:2236
419
- msgid "Update core"
420
  msgstr ""
421
 
422
- #: ../includes/class-ure-lib.php:2237
423
- msgid "List users"
 
424
  msgstr ""
425
 
426
- #: ../includes/class-ure-lib.php:2238
427
- msgid "Remove users"
 
428
  msgstr ""
429
 
430
- #: ../includes/class-ure-lib.php:2239
431
- msgid "Add users"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
432
  msgstr ""
433
 
434
  #: ../includes/class-ure-lib.php:2240
435
- msgid "Promote users"
436
  msgstr ""
437
 
438
  #: ../includes/class-ure-lib.php:2241
439
- msgid "Edit theme options"
440
  msgstr ""
441
 
442
  #: ../includes/class-ure-lib.php:2242
443
- msgid "Delete themes"
444
  msgstr ""
445
 
446
  #: ../includes/class-ure-lib.php:2243
447
- msgid "Export"
448
  msgstr ""
449
 
450
- #: ../includes/class-ure-lib.php:2366
451
- msgid "Error: Capability name must contain latin characters and digits only!"
452
  msgstr ""
453
 
454
- #: ../includes/class-ure-lib.php:2379
455
- #, php-format
456
- msgid "Capability %s is added successfully"
457
  msgstr ""
458
 
459
- #: ../includes/class-ure-lib.php:2381
460
- #, php-format
461
- msgid "Capability %s exists already"
462
  msgstr ""
463
 
464
- #: ../includes/class-ure-lib.php:2410
465
- #, php-format
466
- msgid "Error! You do not have permission to delete this capability: %s!"
467
  msgstr ""
468
 
469
- #: ../includes/class-ure-lib.php:2429
470
- #, php-format
471
- msgid "Capability %s was removed successfully"
472
  msgstr ""
473
 
474
- #: ../includes/class-ure-lib.php:2497
475
- msgid "Version:"
476
  msgstr ""
477
 
478
- #: ../includes/class-ure-lib.php:2498
479
- msgid "Author's website"
480
  msgstr ""
481
 
482
- #: ../includes/class-ure-lib.php:2499
483
- msgid "Plugin webpage"
484
  msgstr ""
485
 
486
- #: ../includes/class-ure-lib.php:2500
487
- msgid "Plugin download"
488
  msgstr ""
489
 
490
- #: ../includes/class-ure-lib.php:2501
491
- #: ../includes/class-user-role-editor.php:546
492
- msgid "Changelog"
493
  msgstr ""
494
 
495
- #: ../includes/class-ure-lib.php:2502
496
- msgid "FAQ"
497
  msgstr ""
498
 
499
- #: ../includes/class-ure-lib.php:2575
500
- msgid "Delete All Unused Roles"
501
  msgstr ""
502
 
503
- #: ../includes/class-ure-lib.php:2588
504
- msgid "None"
505
  msgstr ""
506
 
507
- #: ../includes/class-ure-lib.php:2632
508
- msgid "&mdash; No role for this site &mdash;"
509
  msgstr ""
510
 
511
- #: ../includes/class-ure-lib.php:2747
512
- #, php-format
513
- msgid "Denied: %s"
514
  msgstr ""
515
 
516
- #: ../includes/ure-role-edit.php:17
517
- msgid "Select Role and change its capabilities:"
518
  msgstr ""
519
 
520
- #: ../includes/ure-role-edit.php:30 ../includes/ure-user-edit.php:54
521
- msgid "Show capabilities in human readable form"
522
  msgstr ""
523
 
524
- #: ../includes/ure-role-edit.php:40 ../includes/class-ure-screen-help.php:21
525
- #: ../includes/settings-template.php:69 ../includes/ure-user-edit.php:64
526
- msgid "Show deprecated capabilities"
527
  msgstr ""
528
 
529
- #: ../includes/ure-role-edit.php:44
530
- msgid "If checked, then apply action to ALL sites of this Network"
531
  msgstr ""
532
 
533
- #: ../includes/ure-role-edit.php:56
534
- msgid "Apply to All Sites"
535
  msgstr ""
536
 
537
- #: ../includes/ure-role-edit.php:63 ../includes/ure-user-edit.php:110
538
- msgid "Core capabilities:"
539
  msgstr ""
540
 
541
- #: ../includes/ure-role-edit.php:65 ../includes/ure-user-edit.php:112
542
- msgid "Quick filter:"
543
  msgstr ""
544
 
545
- #: ../includes/ure-role-edit.php:83 ../includes/ure-user-edit.php:131
546
- msgid "Custom capabilities:"
547
  msgstr ""
548
 
549
- #: ../includes/class-user-other-roles.php:82
550
- #: ../includes/class-user-other-roles.php:183
551
- #: ../includes/class-user-other-roles.php:243
552
- msgid "Other Roles"
553
  msgstr ""
554
 
555
- #: ../includes/class-user-other-roles.php:83
556
- msgid "Select additional roles for this user"
557
  msgstr ""
558
 
559
- #: ../includes/class-user-other-roles.php:162
560
- #: ../includes/class-user-role-editor.php:438
561
- msgid "Capabilities"
562
  msgstr ""
563
 
564
- #: ../includes/class-user-other-roles.php:169
565
- msgid "Edit"
566
  msgstr ""
567
 
568
- #: ../includes/class-user-other-roles.php:215
569
- msgid "Additional Capabilities"
570
  msgstr ""
571
 
572
- #: ../includes/class-ure-screen-help.php:12
573
- #: ../includes/class-ure-screen-help.php:41
574
- #: ../includes/class-ure-screen-help.php:60
575
- #: ../includes/class-ure-screen-help.php:79
576
- msgid "User Role Editor Options page help"
577
  msgstr ""
578
 
579
- #: ../includes/class-ure-screen-help.php:15
580
- #: ../includes/settings-template.php:53
581
- msgid "Show Administrator role at User Role Editor"
582
  msgstr ""
583
 
584
- #: ../includes/class-ure-screen-help.php:16
585
- msgid ""
586
- "turn this option on in order to make the \"Administrator\" role available at "
587
- "the User Role Editor roles selection drop-down list. It is hidden by default "
588
- "for security reasons."
589
  msgstr ""
590
 
591
- #: ../includes/class-ure-screen-help.php:18
592
- #: ../includes/settings-template.php:61
593
- msgid "Show capabilities in the human readable form"
594
  msgstr ""
595
 
596
- #: ../includes/class-ure-screen-help.php:19
597
- msgid ""
598
- "automatically converts capability names from the technical form for internal "
599
- "use like \"edit_others_posts\" to more user friendly form, e.g. \"Edit "
600
- "others posts\"."
601
  msgstr ""
602
 
603
- #: ../includes/class-ure-screen-help.php:22
604
- msgid ""
605
- "Capabilities like \"level_0\", \"level_1\" are deprecated and are not used "
606
- "by WordPress. They are left at the user roles for the compatibility purpose "
607
- "with the old themes and plugins code. Turning on this option will show those "
608
- "deprecated capabilities."
609
  msgstr ""
610
 
611
- #: ../includes/class-ure-screen-help.php:25
612
- #: ../includes/settings-template.php:77
613
- msgid "Edit user capabilities"
614
  msgstr ""
615
 
616
- #: ../includes/class-ure-screen-help.php:26
617
- msgid ""
618
- "If turned off - capabilities section of selected user is shown in readonly "
619
- "mode. Administrator can not assign capabilities to the user directly. He "
620
- "should make it using roles only."
621
  msgstr ""
622
 
623
- #: ../includes/class-ure-screen-help.php:45
624
- #: ../includes/settings-template.php:111
625
- msgid "Count users without role"
626
  msgstr ""
627
 
628
- #: ../includes/class-ure-screen-help.php:46
629
- msgid ""
630
- "Show at the \"Users\" page a quant of users without role. Module allows to "
631
- "assign all of them an empty role \"No rights\", in order to look on the "
632
- "users list with role \"No rights\" at the separate tab then."
633
  msgstr ""
634
 
635
- #: ../includes/class-ure-screen-help.php:63
636
- msgid "Other default roles for new registered user"
637
  msgstr ""
638
 
639
- #: ../includes/class-ure-screen-help.php:64
640
- msgid ""
641
- "select roles below to assign them to the new user automatically as an "
642
- "addition to the primary role. Note for multisite environment: take into "
643
- "account that other default roles should exist at the site, in order to be "
644
- "assigned to the new registered users."
645
  msgstr ""
646
 
647
- #: ../includes/class-ure-screen-help.php:82
648
- msgid "Allow non super-admininstrators to create, edit and delete users"
649
  msgstr ""
650
 
651
- #: ../includes/class-ure-screen-help.php:83
652
- msgid ""
653
- "Super administrator only may create, edit and delete users under WordPress "
654
- "multi-site by default. Turn this option on in order to remove this "
655
- "limitation."
656
  msgstr ""
657
 
658
- #: ../includes/class-user-role-editor.php:233
659
- msgid "Change role for users without role"
660
  msgstr ""
661
 
662
- #: ../includes/class-user-role-editor.php:234
663
- msgid "No rights"
664
  msgstr ""
665
 
666
- #: ../includes/class-user-role-editor.php:235
667
- msgid "Provide new role"
668
  msgstr ""
669
 
670
- #: ../includes/class-user-role-editor.php:298
671
- #: ../includes/class-user-role-editor.php:300
672
- msgid "You do not have permission to edit this user."
673
  msgstr ""
674
 
675
- #: ../includes/class-user-role-editor.php:535
676
- msgid "Settings"
677
  msgstr ""
678
 
679
- #: ../includes/class-user-role-editor.php:568
680
- #: ../includes/settings-template.php:21
681
- msgid "General"
682
  msgstr ""
683
 
684
- #: ../includes/class-user-role-editor.php:574
685
- #: ../includes/settings-template.php:26
686
- msgid "Additional Modules"
687
  msgstr ""
688
 
689
- #: ../includes/class-user-role-editor.php:580
690
- #: ../includes/settings-template.php:30
691
- msgid "Default Roles"
692
  msgstr ""
693
 
694
- #: ../includes/class-user-role-editor.php:586
695
- #: ../includes/settings-template.php:34
696
- msgid "Multisite"
697
  msgstr ""
698
 
699
- #: ../includes/class-user-role-editor.php:685
700
- #: ../includes/class-user-role-editor.php:703
701
- #: ../includes/class-user-role-editor.php:747
702
- msgid "User Role Editor options are updated"
703
  msgstr ""
704
 
705
- #: ../includes/class-user-role-editor.php:731
706
- msgid "Default Roles are updated"
707
  msgstr ""
708
 
709
- #: ../includes/class-user-role-editor.php:756
710
- msgid ""
711
- "You do not have sufficient permissions to manage options for User Role "
712
- "Editor."
713
  msgstr ""
714
 
715
- #: ../includes/class-user-role-editor.php:885
716
- msgid "Select All"
717
  msgstr ""
718
 
719
- #: ../includes/class-user-role-editor.php:886
720
- msgid "Unselect All"
721
  msgstr ""
722
 
723
- #: ../includes/class-user-role-editor.php:887
724
- msgid "Reverse"
725
  msgstr ""
726
 
727
- #: ../includes/class-user-role-editor.php:888
728
- msgid "Update"
729
  msgstr ""
730
 
731
- #: ../includes/class-user-role-editor.php:889
732
- msgid "Please confirm permissions update"
733
  msgstr ""
734
 
735
- #: ../includes/class-user-role-editor.php:890
736
- msgid "Add New Role"
737
  msgstr ""
738
 
739
- #: ../includes/class-user-role-editor.php:891
740
- #: ../includes/class-user-role-editor.php:896
741
- msgid "Rename Role"
742
  msgstr ""
743
 
744
- #: ../includes/class-user-role-editor.php:892
745
- msgid " Role name (ID) can not be empty!"
746
  msgstr ""
747
 
748
- #: ../includes/class-user-role-editor.php:893
749
- msgid ""
750
- " Role name (ID) must contain latin characters, digits, hyphens or underscore "
751
- "only!"
752
  msgstr ""
753
 
754
- #: ../includes/class-user-role-editor.php:894
755
- msgid ""
756
- " WordPress does not support numeric Role name (ID). Add latin characters to "
757
- "it."
758
  msgstr ""
759
 
760
- #: ../includes/class-user-role-editor.php:895
761
- msgid "Add Role"
 
762
  msgstr ""
763
 
764
- #: ../includes/class-user-role-editor.php:897
765
- msgid "Delete Role"
 
766
  msgstr ""
767
 
768
- #: ../includes/class-user-role-editor.php:898
769
- msgid "Cancel"
 
770
  msgstr ""
771
 
772
- #: ../includes/class-user-role-editor.php:899
773
- msgid "Add Capability"
774
  msgstr ""
775
 
776
- #: ../includes/class-user-role-editor.php:900
777
- #: ../includes/class-user-role-editor.php:909
778
- msgid "Delete Capability"
779
  msgstr ""
780
 
781
- #: ../includes/class-user-role-editor.php:901
782
- msgid "Reset"
783
  msgstr ""
784
 
785
- #: ../includes/class-user-role-editor.php:902
786
- msgid "DANGER! Resetting will restore default settings from WordPress Core."
787
  msgstr ""
788
 
789
- #: ../includes/class-user-role-editor.php:903
790
- msgid ""
791
- "If any plugins have changed capabilities in any way upon installation (such "
792
- "as S2Member, WooCommerce, and many more), those capabilities will be DELETED!"
793
  msgstr ""
794
 
795
- #: ../includes/class-user-role-editor.php:904
796
- msgid ""
797
- "For more information on how to undo changes and restore plugin capabilities "
798
- "go to"
799
  msgstr ""
800
 
801
- #: ../includes/class-user-role-editor.php:906
802
- msgid "Continue?"
803
  msgstr ""
804
 
805
- #: ../includes/class-user-role-editor.php:907
806
- msgid "Default Role"
807
  msgstr ""
808
 
809
- #: ../includes/class-user-role-editor.php:908
810
- msgid "Set New Default Role"
 
811
  msgstr ""
812
 
813
- #: ../includes/class-user-role-editor.php:910
814
- msgid ""
815
- "Warning! Be careful - removing critical capability could crash some plugin "
816
- "or other custom code"
817
  msgstr ""
818
 
819
- #: ../includes/class-user-role-editor.php:911
820
- msgid " Capability name (ID) can not be empty!"
821
  msgstr ""
822
 
823
- #: ../includes/class-user-role-editor.php:912
824
- msgid ""
825
- " Capability name (ID) must contain latin characters, digits, hyphens or "
826
- "underscore only!"
827
  msgstr ""
828
 
829
- #: ../includes/settings-template.php:17
830
- msgid "User Role Editor - Options"
831
  msgstr ""
832
 
833
- #: ../includes/settings-template.php:39
834
- msgid "About"
835
  msgstr ""
836
 
837
- #: ../includes/settings-template.php:90 ../includes/settings-template.php:126
838
- #: ../includes/settings-template.php:158 ../includes/settings-template.php:190
839
- msgid "Save"
 
 
840
  msgstr ""
841
 
842
- #: ../includes/settings-template.php:138
843
- msgid "Primary default role: "
 
 
 
844
  msgstr ""
845
 
846
- #: ../includes/settings-template.php:145
847
- msgid "Other default roles for new registered user: "
 
 
 
848
  msgstr ""
849
 
850
- #: ../includes/settings-template.php:151
851
  msgid ""
852
- "Note for multisite environment: take into account that other default roles "
853
- "should exist at the site, in order to be assigned to the new registered "
854
- "users."
 
855
  msgstr ""
856
 
857
- #: ../includes/settings-template.php:177
858
- msgid "Allow non super administrators to create, edit, and delete users"
 
 
 
859
  msgstr ""
860
 
861
- #: ../includes/ure-user-edit.php:32
862
- msgid "Network Super Admin"
 
 
 
863
  msgstr ""
864
 
865
- #: ../includes/ure-user-edit.php:35
866
- msgid "Change capabilities for user"
867
  msgstr ""
868
 
869
- #: ../includes/ure-user-edit.php:72
870
- msgid "Primary Role:"
 
 
 
 
871
  msgstr ""
872
 
873
- #: ../includes/ure-user-edit.php:82
874
- msgid "bbPress Role:"
875
  msgstr ""
876
 
877
- #: ../includes/ure-user-edit.php:92
878
- msgid "Other Roles:"
 
 
 
879
  msgstr ""
2
  msgstr ""
3
  "Project-Id-Version: User Role Editor 4.19.2\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-12-11 11:28+0700\n"
6
  "PO-Revision-Date: \n"
7
+ "Last-Translator: Vladimir Garagulya <support@role-editor.com>\n"
8
  "Language-Team: https://www.role-editor.com <support@role-editor.com>\n"
9
  "Language: en_EN\n"
10
  "MIME-Version: 1.0\n"
16
  "X-Generator: Poedit 1.5.4\n"
17
  "X-Poedit-SearchPath-0: ..\n"
18
 
19
+ #: ../includes/ure-role-edit.php:17
20
+ msgid "Select Role and change its capabilities:"
21
  msgstr ""
22
 
23
+ #: ../includes/ure-role-edit.php:30 ../includes/ure-user-edit.php:54
24
+ msgid "Show capabilities in human readable form"
25
  msgstr ""
26
 
27
+ #: ../includes/ure-role-edit.php:40 ../includes/settings-template.php:69
28
+ #: ../includes/ure-user-edit.php:64 ../includes/class-ure-screen-help.php:21
29
+ msgid "Show deprecated capabilities"
30
  msgstr ""
31
 
32
+ #: ../includes/ure-role-edit.php:44
33
+ msgid "If checked, then apply action to ALL sites of this Network"
34
  msgstr ""
35
 
36
+ #: ../includes/ure-role-edit.php:56
37
+ msgid "Apply to All Sites"
38
  msgstr ""
39
 
40
+ #: ../includes/ure-role-edit.php:63 ../includes/ure-user-edit.php:110
41
+ msgid "Core capabilities:"
42
  msgstr ""
43
 
44
+ #: ../includes/ure-role-edit.php:65 ../includes/ure-user-edit.php:112
45
+ msgid "Quick filter:"
46
  msgstr ""
47
 
48
+ #: ../includes/ure-role-edit.php:83 ../includes/ure-user-edit.php:131
49
+ msgid "Custom capabilities:"
 
 
50
  msgstr ""
51
 
52
+ #: ../includes/class-user-role-editor.php:231
53
+ msgid "Change role for users without role"
54
  msgstr ""
55
 
56
+ #: ../includes/class-user-role-editor.php:232
57
+ msgid "No rights"
58
  msgstr ""
59
 
60
+ #: ../includes/class-user-role-editor.php:233
61
+ msgid "Provide new role"
62
  msgstr ""
63
 
64
+ #: ../includes/class-user-role-editor.php:296
65
+ #: ../includes/class-user-role-editor.php:298
66
+ msgid "You do not have permission to edit this user."
67
  msgstr ""
68
 
69
+ #: ../includes/class-user-role-editor.php:322
70
+ #: ../includes/class-user-other-roles.php:162
71
+ msgid "Capabilities"
72
  msgstr ""
73
 
74
+ #: ../includes/class-user-role-editor.php:415
75
+ msgid "Settings"
76
  msgstr ""
77
 
78
+ #: ../includes/class-user-role-editor.php:426
79
+ #: ../includes/class-ure-lib.php:2564
80
+ msgid "Changelog"
81
  msgstr ""
82
 
83
+ #: ../includes/class-user-role-editor.php:448
84
+ #: ../includes/settings-template.php:21
85
+ msgid "General"
86
  msgstr ""
87
 
88
+ #: ../includes/class-user-role-editor.php:454
89
+ #: ../includes/settings-template.php:26
90
+ msgid "Additional Modules"
91
  msgstr ""
92
 
93
+ #: ../includes/class-user-role-editor.php:460
94
+ #: ../includes/settings-template.php:30
95
+ msgid "Default Roles"
96
  msgstr ""
97
 
98
+ #: ../includes/class-user-role-editor.php:466
99
+ #: ../includes/settings-template.php:34
100
+ msgid "Multisite"
101
  msgstr ""
102
 
103
+ #: ../includes/class-user-role-editor.php:476
104
+ #: ../includes/class-user-role-editor.php:505
105
+ #: ../includes/class-ure-lib.php:357
106
+ msgid "User Role Editor"
107
  msgstr ""
108
 
109
+ #: ../includes/class-user-role-editor.php:568
110
+ #: ../includes/class-user-role-editor.php:586
111
+ #: ../includes/class-user-role-editor.php:630
112
+ msgid "User Role Editor options are updated"
 
113
  msgstr ""
114
 
115
+ #: ../includes/class-user-role-editor.php:614
116
+ msgid "Default Roles are updated"
117
  msgstr ""
118
 
119
+ #: ../includes/class-user-role-editor.php:639
120
  msgid ""
121
+ "You do not have sufficient permissions to manage options for User Role "
122
+ "Editor."
123
  msgstr ""
124
 
125
+ #: ../includes/class-user-role-editor.php:712
126
+ #: ../includes/class-ure-lib.php:1747 ../includes/class-ure-lib.php:2006
127
+ #: ../includes/class-ure-lib.php:2122 ../includes/class-ure-lib.php:2170
128
+ #: ../includes/class-ure-lib.php:2421 ../includes/class-ure-lib.php:2466
129
+ msgid "Insufficient permissions to work with User Role Editor"
130
  msgstr ""
131
 
132
+ #: ../includes/class-user-role-editor.php:772
133
+ msgid "Confirm"
 
134
  msgstr ""
135
 
136
+ #: ../includes/class-user-role-editor.php:773
137
+ msgid "Yes"
138
  msgstr ""
139
 
140
+ #: ../includes/class-user-role-editor.php:774
141
+ msgid "No"
 
142
  msgstr ""
143
 
144
+ #: ../includes/class-user-role-editor.php:775
145
+ msgid "Select All"
146
  msgstr ""
147
 
148
+ #: ../includes/class-user-role-editor.php:776
149
+ msgid "Unselect All"
150
  msgstr ""
151
 
152
+ #: ../includes/class-user-role-editor.php:777
153
+ msgid "Reverse"
 
154
  msgstr ""
155
 
156
+ #: ../includes/class-user-role-editor.php:778
157
+ msgid "Update"
 
158
  msgstr ""
159
 
160
+ #: ../includes/class-user-role-editor.php:779
161
+ msgid "Please confirm permissions update"
162
  msgstr ""
163
 
164
+ #: ../includes/class-user-role-editor.php:780
165
+ msgid "Add New Role"
166
  msgstr ""
167
 
168
+ #: ../includes/class-user-role-editor.php:781
169
+ #: ../includes/class-user-role-editor.php:786
170
+ msgid "Rename Role"
171
  msgstr ""
172
 
173
+ #: ../includes/class-user-role-editor.php:782
174
+ msgid " Role name (ID) can not be empty!"
175
  msgstr ""
176
 
177
+ #: ../includes/class-user-role-editor.php:783
178
+ msgid ""
179
+ " Role name (ID) must contain latin characters, digits, hyphens or underscore "
180
+ "only!"
181
  msgstr ""
182
 
183
+ #: ../includes/class-user-role-editor.php:784
184
+ msgid ""
185
+ " WordPress does not support numeric Role name (ID). Add latin characters to "
186
+ "it."
187
  msgstr ""
188
 
189
+ #: ../includes/class-user-role-editor.php:785
190
+ msgid "Add Role"
191
  msgstr ""
192
 
193
+ #: ../includes/class-user-role-editor.php:787
194
+ msgid "Delete Role"
195
  msgstr ""
196
 
197
+ #: ../includes/class-user-role-editor.php:788
198
+ msgid "Cancel"
199
  msgstr ""
200
 
201
+ #: ../includes/class-user-role-editor.php:789
202
+ msgid "Add Capability"
203
  msgstr ""
204
 
205
+ #: ../includes/class-user-role-editor.php:790
206
+ #: ../includes/class-user-role-editor.php:799
207
+ msgid "Delete Capability"
208
  msgstr ""
209
 
210
+ #: ../includes/class-user-role-editor.php:791
211
+ msgid "Reset"
212
  msgstr ""
213
 
214
+ #: ../includes/class-user-role-editor.php:792
215
+ msgid "DANGER! Resetting will restore default settings from WordPress Core."
216
  msgstr ""
217
 
218
+ #: ../includes/class-user-role-editor.php:793
219
+ msgid ""
220
+ "If any plugins have changed capabilities in any way upon installation (such "
221
+ "as S2Member, WooCommerce, and many more), those capabilities will be DELETED!"
222
  msgstr ""
223
 
224
+ #: ../includes/class-user-role-editor.php:794
225
+ msgid ""
226
+ "For more information on how to undo changes and restore plugin capabilities "
227
+ "go to"
228
  msgstr ""
229
 
230
+ #: ../includes/class-user-role-editor.php:796
231
+ msgid "Continue?"
232
  msgstr ""
233
 
234
+ #: ../includes/class-user-role-editor.php:797
235
+ msgid "Default Role"
236
  msgstr ""
237
 
238
+ #: ../includes/class-user-role-editor.php:798
239
+ msgid "Set New Default Role"
240
  msgstr ""
241
 
242
+ #: ../includes/class-user-role-editor.php:800
243
+ msgid ""
244
+ "Warning! Be careful - removing critical capability could crash some plugin "
245
+ "or other custom code"
246
  msgstr ""
247
 
248
+ #: ../includes/class-user-role-editor.php:801
249
+ msgid " Capability name (ID) can not be empty!"
250
  msgstr ""
251
 
252
+ #: ../includes/class-user-role-editor.php:802
253
+ msgid ""
254
+ " Capability name (ID) must contain latin characters, digits, hyphens or "
255
+ "underscore only!"
256
  msgstr ""
257
 
258
+ #: ../includes/class-role-additional-options.php:53
259
+ msgid "Hide admin bar"
260
  msgstr ""
261
 
262
+ #: ../includes/class-role-additional-options.php:103
263
+ msgid "Additional Options"
264
  msgstr ""
265
 
266
+ #: ../includes/settings-template.php:17
267
+ msgid "User Role Editor - Options"
268
  msgstr ""
269
 
270
+ #: ../includes/settings-template.php:39
271
+ msgid "About"
272
  msgstr ""
273
 
274
+ #: ../includes/settings-template.php:53
275
+ #: ../includes/class-ure-screen-help.php:15
276
+ msgid "Show Administrator role at User Role Editor"
277
  msgstr ""
278
 
279
+ #: ../includes/settings-template.php:61
280
+ #: ../includes/class-ure-screen-help.php:18
281
+ msgid "Show capabilities in the human readable form"
282
  msgstr ""
283
 
284
+ #: ../includes/settings-template.php:77
285
+ msgid "Confirm role update"
286
  msgstr ""
287
 
288
+ #: ../includes/settings-template.php:85
289
+ #: ../includes/class-ure-screen-help.php:25
290
+ msgid "Edit user capabilities"
291
  msgstr ""
292
 
293
+ #: ../includes/settings-template.php:98 ../includes/settings-template.php:134
294
+ #: ../includes/settings-template.php:166 ../includes/settings-template.php:198
295
+ msgid "Save"
296
  msgstr ""
297
 
298
+ #: ../includes/settings-template.php:119
299
+ #: ../includes/class-ure-screen-help.php:45
300
+ msgid "Count users without role"
301
  msgstr ""
302
 
303
+ #: ../includes/settings-template.php:146
304
+ msgid "Primary default role: "
305
  msgstr ""
306
 
307
+ #: ../includes/settings-template.php:153
308
+ msgid "Other default roles for new registered user: "
309
  msgstr ""
310
 
311
+ #: ../includes/settings-template.php:159
312
+ msgid ""
313
+ "Note for multisite environment: take into account that other default roles "
314
+ "should exist at the site, in order to be assigned to the new registered "
315
+ "users."
316
  msgstr ""
317
 
318
+ #: ../includes/settings-template.php:185
319
+ msgid "Allow non super administrators to create, edit, and delete users"
320
  msgstr ""
321
 
322
+ #: ../includes/class-user-other-roles.php:82
323
+ #: ../includes/class-user-other-roles.php:183
324
+ #: ../includes/class-user-other-roles.php:243
325
+ msgid "Other Roles"
326
  msgstr ""
327
 
328
+ #: ../includes/class-user-other-roles.php:83
329
+ msgid "Select additional roles for this user"
330
  msgstr ""
331
 
332
+ #: ../includes/class-user-other-roles.php:169
333
+ msgid "Edit"
334
  msgstr ""
335
 
336
+ #: ../includes/class-user-other-roles.php:215
337
+ msgid "Additional Capabilities"
338
  msgstr ""
339
 
340
+ #: ../includes/class-ure-lib.php:255
341
+ msgid "Error: wrong request"
342
  msgstr ""
343
 
344
+ #: ../includes/class-ure-lib.php:288 ../includes/class-ure-lib.php:299
345
+ msgid "Role name (ID): "
346
  msgstr ""
347
 
348
+ #: ../includes/class-ure-lib.php:290 ../includes/class-ure-lib.php:301
349
+ msgid "Display Role Name: "
350
  msgstr ""
351
 
352
+ #: ../includes/class-ure-lib.php:292
353
+ msgid "Make copy of: "
354
  msgstr ""
355
 
356
+ #: ../includes/class-ure-lib.php:308
357
+ msgid "Select Role:"
358
  msgstr ""
359
 
360
+ #: ../includes/class-ure-lib.php:327
361
+ msgid "Delete:"
362
  msgstr ""
363
 
364
+ #: ../includes/class-ure-lib.php:334
365
+ msgid "Capability name (ID): "
366
  msgstr ""
367
 
368
+ #: ../includes/class-ure-lib.php:454
369
+ msgid "Error: "
370
  msgstr ""
371
 
372
+ #: ../includes/class-ure-lib.php:454
373
+ msgid "Role"
374
  msgstr ""
375
 
376
+ #: ../includes/class-ure-lib.php:455
377
+ msgid "does not exist"
378
  msgstr ""
379
 
380
+ #: ../includes/class-ure-lib.php:498
381
+ msgid "Role is updated successfully"
382
  msgstr ""
383
 
384
+ #: ../includes/class-ure-lib.php:500
385
+ msgid "Roles are updated for all network"
386
  msgstr ""
387
 
388
+ #: ../includes/class-ure-lib.php:506
389
+ msgid "Error occured during role(s) update"
390
  msgstr ""
391
 
392
+ #: ../includes/class-ure-lib.php:513
393
+ msgid "User capabilities are updated successfully"
394
  msgstr ""
395
 
396
+ #: ../includes/class-ure-lib.php:518
397
+ msgid "Error occured during user update"
398
  msgstr ""
399
 
400
+ #: ../includes/class-ure-lib.php:576
401
+ msgid "User Roles are restored to WordPress default values. "
402
  msgstr ""
403
 
404
+ #: ../includes/class-ure-lib.php:1465
405
+ msgid "read about"
406
  msgstr ""
407
 
408
+ #: ../includes/class-ure-lib.php:1466
409
+ msgid "user capability"
410
  msgstr ""
411
 
412
+ #: ../includes/class-ure-lib.php:1467
413
+ msgid "Help"
414
  msgstr ""
415
 
416
+ #: ../includes/class-ure-lib.php:1969
417
+ msgid "Error is occur. Please check the log file."
418
  msgstr ""
419
 
420
+ #: ../includes/class-ure-lib.php:2015 ../includes/class-ure-lib.php:2082
421
+ msgid ""
422
+ "Error: Role ID must contain latin characters, digits, hyphens or underscore "
423
+ "only!"
424
  msgstr ""
425
 
426
+ #: ../includes/class-ure-lib.php:2019 ../includes/class-ure-lib.php:2086
427
+ msgid ""
428
+ "Error: WordPress does not support numeric Role name (ID). Add latin "
429
+ "characters to it."
430
  msgstr ""
431
 
432
+ #: ../includes/class-ure-lib.php:2034
433
+ #, php-format
434
+ msgid "Role %s exists already"
435
  msgstr ""
436
 
437
+ #: ../includes/class-ure-lib.php:2049
438
+ msgid "Error is encountered during new role create operation"
439
  msgstr ""
440
 
441
+ #: ../includes/class-ure-lib.php:2051
442
+ #, php-format
443
+ msgid "Role %s is created successfully"
444
  msgstr ""
445
 
446
+ #: ../includes/class-ure-lib.php:2075
447
+ msgid "Error: Role ID is empty!"
448
  msgstr ""
449
 
450
+ #: ../includes/class-ure-lib.php:2093
451
+ msgid "Error: Empty role display name is not allowed."
452
  msgstr ""
453
 
454
+ #: ../includes/class-ure-lib.php:2100
455
+ #, php-format
456
+ msgid "Role %s does not exists"
457
  msgstr ""
458
 
459
+ #: ../includes/class-ure-lib.php:2108
460
+ #, php-format
461
+ msgid "Role %s is renamed to %s successfully"
462
  msgstr ""
463
 
464
+ #: ../includes/class-ure-lib.php:2181
465
+ msgid "Error encountered during role delete operation"
466
+ msgstr ""
467
+
468
+ #: ../includes/class-ure-lib.php:2183
469
+ msgid "Unused roles are deleted successfully"
470
+ msgstr ""
471
+
472
+ #: ../includes/class-ure-lib.php:2185
473
+ #, php-format
474
+ msgid "Role %s is deleted successfully"
475
+ msgstr ""
476
+
477
+ #: ../includes/class-ure-lib.php:2216
478
+ msgid "Error encountered during default role change operation"
479
+ msgstr ""
480
+
481
+ #: ../includes/class-ure-lib.php:2219
482
+ #, php-format
483
+ msgid "Default role for new users is set to %s successfully"
484
+ msgstr ""
485
+
486
+ #: ../includes/class-ure-lib.php:2222
487
+ msgid "Can not set Administrator role as a default one"
488
+ msgstr ""
489
+
490
+ #: ../includes/class-ure-lib.php:2224
491
+ msgid "This role does not exist - "
492
  msgstr ""
493
 
494
  #: ../includes/class-ure-lib.php:2240
495
+ msgid "Editor"
496
  msgstr ""
497
 
498
  #: ../includes/class-ure-lib.php:2241
499
+ msgid "Author"
500
  msgstr ""
501
 
502
  #: ../includes/class-ure-lib.php:2242
503
+ msgid "Contributor"
504
  msgstr ""
505
 
506
  #: ../includes/class-ure-lib.php:2243
507
+ msgid "Subscriber"
508
  msgstr ""
509
 
510
+ #: ../includes/class-ure-lib.php:2245
511
+ msgid "Switch themes"
512
  msgstr ""
513
 
514
+ #: ../includes/class-ure-lib.php:2246
515
+ msgid "Edit themes"
 
516
  msgstr ""
517
 
518
+ #: ../includes/class-ure-lib.php:2247
519
+ msgid "Activate plugins"
 
520
  msgstr ""
521
 
522
+ #: ../includes/class-ure-lib.php:2248
523
+ msgid "Edit plugins"
 
524
  msgstr ""
525
 
526
+ #: ../includes/class-ure-lib.php:2249
527
+ msgid "Edit users"
 
528
  msgstr ""
529
 
530
+ #: ../includes/class-ure-lib.php:2250
531
+ msgid "Edit files"
532
  msgstr ""
533
 
534
+ #: ../includes/class-ure-lib.php:2251
535
+ msgid "Manage options"
536
  msgstr ""
537
 
538
+ #: ../includes/class-ure-lib.php:2252
539
+ msgid "Moderate comments"
540
  msgstr ""
541
 
542
+ #: ../includes/class-ure-lib.php:2253
543
+ msgid "Manage categories"
544
  msgstr ""
545
 
546
+ #: ../includes/class-ure-lib.php:2254
547
+ msgid "Manage links"
 
548
  msgstr ""
549
 
550
+ #: ../includes/class-ure-lib.php:2255
551
+ msgid "Upload files"
552
  msgstr ""
553
 
554
+ #: ../includes/class-ure-lib.php:2256
555
+ msgid "Import"
556
  msgstr ""
557
 
558
+ #: ../includes/class-ure-lib.php:2257
559
+ msgid "Unfiltered html"
560
  msgstr ""
561
 
562
+ #: ../includes/class-ure-lib.php:2258
563
+ msgid "Edit posts"
564
  msgstr ""
565
 
566
+ #: ../includes/class-ure-lib.php:2259
567
+ msgid "Edit others posts"
 
568
  msgstr ""
569
 
570
+ #: ../includes/class-ure-lib.php:2260
571
+ msgid "Edit published posts"
572
  msgstr ""
573
 
574
+ #: ../includes/class-ure-lib.php:2261
575
+ msgid "Publish posts"
576
  msgstr ""
577
 
578
+ #: ../includes/class-ure-lib.php:2262
579
+ msgid "Edit pages"
 
580
  msgstr ""
581
 
582
+ #: ../includes/class-ure-lib.php:2263
583
+ msgid "Read"
584
  msgstr ""
585
 
586
+ #: ../includes/class-ure-lib.php:2264
587
+ msgid "Level 10"
588
  msgstr ""
589
 
590
+ #: ../includes/class-ure-lib.php:2265
591
+ msgid "Level 9"
592
  msgstr ""
593
 
594
+ #: ../includes/class-ure-lib.php:2266
595
+ msgid "Level 8"
596
  msgstr ""
597
 
598
+ #: ../includes/class-ure-lib.php:2267
599
+ msgid "Level 7"
600
  msgstr ""
601
 
602
+ #: ../includes/class-ure-lib.php:2268
603
+ msgid "Level 6"
 
 
604
  msgstr ""
605
 
606
+ #: ../includes/class-ure-lib.php:2269
607
+ msgid "Level 5"
608
  msgstr ""
609
 
610
+ #: ../includes/class-ure-lib.php:2270
611
+ msgid "Level 4"
 
612
  msgstr ""
613
 
614
+ #: ../includes/class-ure-lib.php:2271
615
+ msgid "Level 3"
616
  msgstr ""
617
 
618
+ #: ../includes/class-ure-lib.php:2272
619
+ msgid "Level 2"
620
  msgstr ""
621
 
622
+ #: ../includes/class-ure-lib.php:2273
623
+ msgid "Level 1"
 
 
 
624
  msgstr ""
625
 
626
+ #: ../includes/class-ure-lib.php:2274
627
+ msgid "Level 0"
 
628
  msgstr ""
629
 
630
+ #: ../includes/class-ure-lib.php:2275
631
+ msgid "Edit others pages"
 
 
 
632
  msgstr ""
633
 
634
+ #: ../includes/class-ure-lib.php:2276
635
+ msgid "Edit published pages"
 
636
  msgstr ""
637
 
638
+ #: ../includes/class-ure-lib.php:2277
639
+ msgid "Publish pages"
 
 
 
640
  msgstr ""
641
 
642
+ #: ../includes/class-ure-lib.php:2278
643
+ msgid "Delete pages"
 
 
 
 
644
  msgstr ""
645
 
646
+ #: ../includes/class-ure-lib.php:2279
647
+ msgid "Delete others pages"
 
648
  msgstr ""
649
 
650
+ #: ../includes/class-ure-lib.php:2280
651
+ msgid "Delete published pages"
 
 
 
652
  msgstr ""
653
 
654
+ #: ../includes/class-ure-lib.php:2281
655
+ msgid "Delete posts"
 
656
  msgstr ""
657
 
658
+ #: ../includes/class-ure-lib.php:2282
659
+ msgid "Delete others posts"
 
 
 
660
  msgstr ""
661
 
662
+ #: ../includes/class-ure-lib.php:2283
663
+ msgid "Delete published posts"
664
  msgstr ""
665
 
666
+ #: ../includes/class-ure-lib.php:2284
667
+ msgid "Delete private posts"
 
 
 
 
668
  msgstr ""
669
 
670
+ #: ../includes/class-ure-lib.php:2285
671
+ msgid "Edit private posts"
672
  msgstr ""
673
 
674
+ #: ../includes/class-ure-lib.php:2286
675
+ msgid "Read private posts"
 
 
 
676
  msgstr ""
677
 
678
+ #: ../includes/class-ure-lib.php:2287
679
+ msgid "Delete private pages"
680
  msgstr ""
681
 
682
+ #: ../includes/class-ure-lib.php:2288
683
+ msgid "Edit private pages"
684
  msgstr ""
685
 
686
+ #: ../includes/class-ure-lib.php:2289
687
+ msgid "Read private pages"
688
  msgstr ""
689
 
690
+ #: ../includes/class-ure-lib.php:2290
691
+ msgid "Delete users"
 
692
  msgstr ""
693
 
694
+ #: ../includes/class-ure-lib.php:2291
695
+ msgid "Create users"
696
  msgstr ""
697
 
698
+ #: ../includes/class-ure-lib.php:2292
699
+ msgid "Unfiltered upload"
 
700
  msgstr ""
701
 
702
+ #: ../includes/class-ure-lib.php:2293
703
+ msgid "Edit dashboard"
 
704
  msgstr ""
705
 
706
+ #: ../includes/class-ure-lib.php:2294
707
+ msgid "Update plugins"
 
708
  msgstr ""
709
 
710
+ #: ../includes/class-ure-lib.php:2295
711
+ msgid "Delete plugins"
 
712
  msgstr ""
713
 
714
+ #: ../includes/class-ure-lib.php:2296
715
+ msgid "Install plugins"
 
 
716
  msgstr ""
717
 
718
+ #: ../includes/class-ure-lib.php:2297
719
+ msgid "Update themes"
720
  msgstr ""
721
 
722
+ #: ../includes/class-ure-lib.php:2298
723
+ msgid "Install themes"
 
 
724
  msgstr ""
725
 
726
+ #: ../includes/class-ure-lib.php:2299
727
+ msgid "Update core"
728
  msgstr ""
729
 
730
+ #: ../includes/class-ure-lib.php:2300
731
+ msgid "List users"
732
  msgstr ""
733
 
734
+ #: ../includes/class-ure-lib.php:2301
735
+ msgid "Remove users"
736
  msgstr ""
737
 
738
+ #: ../includes/class-ure-lib.php:2302
739
+ msgid "Add users"
740
  msgstr ""
741
 
742
+ #: ../includes/class-ure-lib.php:2303
743
+ msgid "Promote users"
744
  msgstr ""
745
 
746
+ #: ../includes/class-ure-lib.php:2304
747
+ msgid "Edit theme options"
748
  msgstr ""
749
 
750
+ #: ../includes/class-ure-lib.php:2305
751
+ msgid "Delete themes"
 
752
  msgstr ""
753
 
754
+ #: ../includes/class-ure-lib.php:2306
755
+ msgid "Export"
756
  msgstr ""
757
 
758
+ #: ../includes/class-ure-lib.php:2429
759
+ msgid "Error: Capability name must contain latin characters and digits only!"
 
 
760
  msgstr ""
761
 
762
+ #: ../includes/class-ure-lib.php:2442
763
+ #, php-format
764
+ msgid "Capability %s is added successfully"
 
765
  msgstr ""
766
 
767
+ #: ../includes/class-ure-lib.php:2444
768
+ #, php-format
769
+ msgid "Capability %s exists already"
770
  msgstr ""
771
 
772
+ #: ../includes/class-ure-lib.php:2473
773
+ #, php-format
774
+ msgid "Error! You do not have permission to delete this capability: %s!"
775
  msgstr ""
776
 
777
+ #: ../includes/class-ure-lib.php:2492
778
+ #, php-format
779
+ msgid "Capability %s was removed successfully"
780
  msgstr ""
781
 
782
+ #: ../includes/class-ure-lib.php:2560
783
+ msgid "Version:"
784
  msgstr ""
785
 
786
+ #: ../includes/class-ure-lib.php:2561
787
+ msgid "Author's website"
 
788
  msgstr ""
789
 
790
+ #: ../includes/class-ure-lib.php:2562
791
+ msgid "Plugin webpage"
792
  msgstr ""
793
 
794
+ #: ../includes/class-ure-lib.php:2563
795
+ msgid "Plugin download"
796
  msgstr ""
797
 
798
+ #: ../includes/class-ure-lib.php:2565
799
+ msgid "FAQ"
 
 
800
  msgstr ""
801
 
802
+ #: ../includes/class-ure-lib.php:2643
803
+ msgid "Delete All Unused Roles"
 
 
804
  msgstr ""
805
 
806
+ #: ../includes/class-ure-lib.php:2656
807
+ msgid "None"
808
  msgstr ""
809
 
810
+ #: ../includes/class-ure-lib.php:2702
811
+ msgid "&mdash; No role for this site &mdash;"
812
  msgstr ""
813
 
814
+ #: ../includes/class-ure-lib.php:2817
815
+ #, php-format
816
+ msgid "Denied: %s"
817
  msgstr ""
818
 
819
+ #: ../includes/ure-user-edit.php:32
820
+ msgid "Network Super Admin"
 
 
821
  msgstr ""
822
 
823
+ #: ../includes/ure-user-edit.php:35
824
+ msgid "Change capabilities for user"
825
  msgstr ""
826
 
827
+ #: ../includes/ure-user-edit.php:72
828
+ msgid "Primary Role:"
 
 
829
  msgstr ""
830
 
831
+ #: ../includes/ure-user-edit.php:82
832
+ msgid "bbPress Role:"
833
  msgstr ""
834
 
835
+ #: ../includes/ure-user-edit.php:92
836
+ msgid "Other Roles:"
837
  msgstr ""
838
 
839
+ #: ../includes/class-ure-screen-help.php:12
840
+ #: ../includes/class-ure-screen-help.php:41
841
+ #: ../includes/class-ure-screen-help.php:60
842
+ #: ../includes/class-ure-screen-help.php:79
843
+ msgid "User Role Editor Options page help"
844
  msgstr ""
845
 
846
+ #: ../includes/class-ure-screen-help.php:16
847
+ msgid ""
848
+ "turn this option on in order to make the \"Administrator\" role available at "
849
+ "the User Role Editor roles selection drop-down list. It is hidden by default "
850
+ "for security reasons."
851
  msgstr ""
852
 
853
+ #: ../includes/class-ure-screen-help.php:19
854
+ msgid ""
855
+ "automatically converts capability names from the technical form for internal "
856
+ "use like \"edit_others_posts\" to more user friendly form, e.g. \"Edit "
857
+ "others posts\"."
858
  msgstr ""
859
 
860
+ #: ../includes/class-ure-screen-help.php:22
861
  msgid ""
862
+ "Capabilities like \"level_0\", \"level_1\" are deprecated and are not used "
863
+ "by WordPress. They are left at the user roles for the compatibility purpose "
864
+ "with the old themes and plugins code. Turning on this option will show those "
865
+ "deprecated capabilities."
866
  msgstr ""
867
 
868
+ #: ../includes/class-ure-screen-help.php:26
869
+ msgid ""
870
+ "If turned off - capabilities section of selected user is shown in readonly "
871
+ "mode. Administrator can not assign capabilities to the user directly. He "
872
+ "should make it using roles only."
873
  msgstr ""
874
 
875
+ #: ../includes/class-ure-screen-help.php:46
876
+ msgid ""
877
+ "Show at the \"Users\" page a quant of users without role. Module allows to "
878
+ "assign all of them an empty role \"No rights\", in order to look on the "
879
+ "users list with role \"No rights\" at the separate tab then."
880
  msgstr ""
881
 
882
+ #: ../includes/class-ure-screen-help.php:63
883
+ msgid "Other default roles for new registered user"
884
  msgstr ""
885
 
886
+ #: ../includes/class-ure-screen-help.php:64
887
+ msgid ""
888
+ "select roles below to assign them to the new user automatically as an "
889
+ "addition to the primary role. Note for multisite environment: take into "
890
+ "account that other default roles should exist at the site, in order to be "
891
+ "assigned to the new registered users."
892
  msgstr ""
893
 
894
+ #: ../includes/class-ure-screen-help.php:82
895
+ msgid "Allow non super-admininstrators to create, edit and delete users"
896
  msgstr ""
897
 
898
+ #: ../includes/class-ure-screen-help.php:83
899
+ msgid ""
900
+ "Super administrator only may create, edit and delete users under WordPress "
901
+ "multi-site by default. Turn this option on in order to remove this "
902
+ "limitation."
903
  msgstr ""
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=vladi
4
  Tags: user, role, editor, security, access, permission, capability
5
  Requires at least: 4.0
6
  Tested up to: 4.4
7
- Stable tag: 4.20.1
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -71,11 +71,16 @@ To read more about 'User Role Editor' visit [this page](http://www.shinephp.com/
71
 
72
  = Translations =
73
 
74
- Dear plugin User!
75
- If you wish to check available translations or help with translation visit this link
76
  https://translate.wordpress.org/projects/wp-plugins/user-role-editor/
77
 
78
  == Changelog ==
 
 
 
 
 
 
79
  = [4.20.1] 15.11.2015 =
80
  * Fix: "Primary default role" drop-down menu was not shown at "Settings - User Role Editor - Default Roles" tab for WordPress single site installation.
81
 
4
  Tags: user, role, editor, security, access, permission, capability
5
  Requires at least: 4.0
6
  Tested up to: 4.4
7
+ Stable tag: 4.21
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
71
 
72
  = Translations =
73
 
74
+ If you wish to check available translations or help with plugin translation to your language visit this link
 
75
  https://translate.wordpress.org/projects/wp-plugins/user-role-editor/
76
 
77
  == Changelog ==
78
+ = [4.21] 11.12.2015 =
79
+ * It's possible to switch off the update role confirmation (Settings - User Role Editor - General tab).
80
+ * Standard JavaScript confirm box before role update was replaced with custom one to exclude 'Prevent this page from creating additional dialogs' option in the Google Chrome browser.
81
+ * Fix: Removed hard coded folder name (user-role-editor) from the used paths.
82
+
83
+
84
  = [4.20.1] 15.11.2015 =
85
  * Fix: "Primary default role" drop-down menu was not shown at "Settings - User Role Editor - Default Roles" tab for WordPress single site installation.
86
 
user-role-editor.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: User Role Editor
4
  Plugin URI: https://www.role-editor.com
5
  Description: Change/add/delete WordPress user roles and capabilities.
6
- Version: 4.20.1
7
  Author: Vladimir Garagulya
8
  Author URI: https://www.role-editor.com
9
  Text Domain: ure
@@ -23,7 +23,7 @@ if (defined('URE_PLUGIN_URL')) {
23
  wp_die('It seems that other version of User Role Editor is active. Please deactivate it before use this version');
24
  }
25
 
26
- define('URE_VERSION', '4.20.1');
27
  define('URE_PLUGIN_URL', plugin_dir_url(__FILE__));
28
  define('URE_PLUGIN_DIR', plugin_dir_path(__FILE__));
29
  define('URE_PLUGIN_BASE_NAME', plugin_basename(__FILE__));
@@ -47,17 +47,7 @@ $exit_msg = sprintf( 'User Role Editor requires WordPress %s or newer.', $ure_re
47
  '<a href="http://codex.wordpress.org/Upgrading_WordPress"> ' . 'Please update!' . '</a>';
48
  Ure_Lib::check_version(get_bloginfo('version'), $ure_required_wp_version, $exit_msg, __FILE__ );
49
 
50
- require_once(URE_PLUGIN_DIR .'includes/define-constants.php');
51
- require_once(URE_PLUGIN_DIR .'includes/misc-support-stuff.php');
52
- require_once(URE_PLUGIN_DIR .'includes/class-role-additional-options.php');
53
- require_once(URE_PLUGIN_DIR .'includes/class-assign-role.php');
54
- require_once(URE_PLUGIN_DIR .'includes/class-user-other-roles.php');
55
- require_once(URE_PLUGIN_DIR .'includes/class-protect-admin.php');
56
- require_once(URE_PLUGIN_DIR .'includes/class-ajax-processor.php');
57
- require_once(URE_PLUGIN_DIR .'includes/class-ure-screen-help.php');
58
- require_once(URE_PLUGIN_DIR .'includes/class-known-js-css-compatibility-issues.php');
59
- require_once(URE_PLUGIN_DIR .'includes/class-user-role-editor.php');
60
-
61
 
62
  $ure_lib = new Ure_Lib('user_role_editor');
63
  $GLOBALS['user_role_editor'] = new User_Role_Editor($ure_lib);
3
  Plugin Name: User Role Editor
4
  Plugin URI: https://www.role-editor.com
5
  Description: Change/add/delete WordPress user roles and capabilities.
6
+ Version: 4.21
7
  Author: Vladimir Garagulya
8
  Author URI: https://www.role-editor.com
9
  Text Domain: ure
23
  wp_die('It seems that other version of User Role Editor is active. Please deactivate it before use this version');
24
  }
25
 
26
+ define('URE_VERSION', '4.21');
27
  define('URE_PLUGIN_URL', plugin_dir_url(__FILE__));
28
  define('URE_PLUGIN_DIR', plugin_dir_path(__FILE__));
29
  define('URE_PLUGIN_BASE_NAME', plugin_basename(__FILE__));
47
  '<a href="http://codex.wordpress.org/Upgrading_WordPress"> ' . 'Please update!' . '</a>';
48
  Ure_Lib::check_version(get_bloginfo('version'), $ure_required_wp_version, $exit_msg, __FILE__ );
49
 
50
+ require_once(URE_PLUGIN_DIR .'includes/loader.php');
 
 
 
 
 
 
 
 
 
 
51
 
52
  $ure_lib = new Ure_Lib('user_role_editor');
53
  $GLOBALS['user_role_editor'] = new User_Role_Editor($ure_lib);