User Role Editor - Version 4.7.1

Version Description

Download this release

Release Info

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

Code changes from version 4.6 to 4.7.1

includes/class-ure-lib.php CHANGED
@@ -619,7 +619,7 @@ class Ure_Lib extends Garvs_WP_Lib {
619
  */
620
  public function get_user_roles() {
621
 
622
- global $wp_roles, $wpdb;
623
 
624
  if (!isset($wp_roles)) {
625
  $wp_roles = new WP_Roles();
@@ -895,7 +895,7 @@ class Ure_Lib extends Garvs_WP_Lib {
895
  $caps['manage_network_plugins'] = 1;
896
  $caps['manage_network_options'] = 1;
897
  }
898
-
899
  return $caps;
900
  }
901
  // end of get_built_in_wp_caps()
@@ -1247,7 +1247,7 @@ class Ure_Lib extends Garvs_WP_Lib {
1247
  /**
1248
  * Go through all users and if user has non-existing role lower him to Subscriber role
1249
  *
1250
- */
1251
  protected function validate_user_roles() {
1252
 
1253
  global $wp_roles;
@@ -1347,15 +1347,14 @@ class Ure_Lib extends Garvs_WP_Lib {
1347
  }
1348
  // end of init_full_capabilities()
1349
 
1350
-
1351
  /**
1352
- * reset user roles to WordPress default roles
 
1353
  */
1354
- protected function reset_user_roles() {
1355
  global $wp_roles;
1356
-
1357
- //$active_plugins = ure_deactivate_plugins(); // deactivate all plugins
1358
-
1359
  $wp_roles->roles = array();
1360
  $wp_roles->role_objects = array();
1361
  $wp_roles->role_names = array();
@@ -1364,25 +1363,26 @@ class Ure_Lib extends Garvs_WP_Lib {
1364
  require_once(ABSPATH . '/wp-admin/includes/schema.php');
1365
  populate_roles();
1366
  $wp_roles->reinit();
1367
-
1368
- /*
1369
- // return recently deactivated plugins to its original state
1370
- if ( is_array( $active_plugins ) && count( $active_plugins ) > 0 ) {
1371
- activate_plugins( $active_plugins, $reload_link);
1372
- }
1373
- //$this->validate_user_roles(); // if user has non-existing role lower him to Subscriber role
1374
- */
1375
 
 
 
 
 
 
 
 
 
 
 
 
1376
  if ($this->is_full_network_synch() || $this->apply_to_all) {
1377
  $this->current_role = '';
1378
- // Get all blog ids
1379
- $blog_ids = $wpdb->get_col("SELECT blog_id FROM $wpdb->blogs where blog_id!={$this->main_blog_id}");
1380
- $this->direct_network_roles_update($blog_ids);
1381
  }
 
1382
 
1383
  $reload_link = wp_get_referer();
1384
- $reload_link = remove_query_arg('action', $reload_link);
1385
-
1386
  ?>
1387
  <script type="text/javascript" >
1388
  jQuery.ure_postGo('<?php echo $reload_link; ?>',
@@ -1636,30 +1636,69 @@ class Ure_Lib extends Garvs_WP_Lib {
1636
  }
1637
  return $mess;
1638
  }
1639
- // end of newRoleCreate()
1640
 
1641
 
1642
- protected function delete_role() {
 
 
 
1643
  global $wp_roles;
1644
 
1645
- $mess = '';
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1646
  if (isset($_POST['user_role_id']) && $_POST['user_role_id']) {
1647
  $role = $_POST['user_role_id'];
1648
- //$result = remove_role($_POST['user_role']);
1649
- // use this modified code from remove_role() directly as remove_role() returns nothing to check
1650
- if (!isset($wp_roles)) {
1651
- $wp_roles = new WP_Roles();
1652
- }
1653
- if (isset($wp_roles->roles[$role])) {
1654
- unset($wp_roles->role_objects[$role]);
1655
- unset($wp_roles->role_names[$role]);
1656
- unset($wp_roles->roles[$role]);
1657
- $result = update_option($wp_roles->role_key, $wp_roles->roles);
1658
  } else {
1659
- $result = false;
1660
  }
1661
  if (empty($result)) {
1662
  $mess = 'Error! ' . __('Error encountered during role delete operation', 'ure');
 
 
1663
  } else {
1664
  $mess = sprintf(__('Role %s is deleted successfully', 'ure'), $role);
1665
  }
@@ -2115,6 +2154,7 @@ class Ure_Lib extends Garvs_WP_Lib {
2115
  foreach ($roles_can_delete as $key => $value) {
2116
  $this->role_delete_html .= '<option value="' . $key . '">' . __($value, 'ure') . '</option>';
2117
  }
 
2118
  $this->role_delete_html .= '</select>';
2119
  } else {
2120
  $this->role_delete_html = '';
619
  */
620
  public function get_user_roles() {
621
 
622
+ global $wp_roles;
623
 
624
  if (!isset($wp_roles)) {
625
  $wp_roles = new WP_Roles();
895
  $caps['manage_network_plugins'] = 1;
896
  $caps['manage_network_options'] = 1;
897
  }
898
+
899
  return $caps;
900
  }
901
  // end of get_built_in_wp_caps()
1247
  /**
1248
  * Go through all users and if user has non-existing role lower him to Subscriber role
1249
  *
1250
+ */
1251
  protected function validate_user_roles() {
1252
 
1253
  global $wp_roles;
1347
  }
1348
  // end of init_full_capabilities()
1349
 
1350
+
1351
  /**
1352
+ * return WordPress user roles to its initial state, just like after installation
1353
+ * @global WP_Roles $wp_roles
1354
  */
1355
+ protected function wp_roles_reinit() {
1356
  global $wp_roles;
1357
+
 
 
1358
  $wp_roles->roles = array();
1359
  $wp_roles->role_objects = array();
1360
  $wp_roles->role_names = array();
1363
  require_once(ABSPATH . '/wp-admin/includes/schema.php');
1364
  populate_roles();
1365
  $wp_roles->reinit();
 
 
 
 
 
 
 
 
1366
 
1367
+ $this->roles = $this->get_user_roles();
1368
+
1369
+ }
1370
+ // end of wp_roles_reinit()
1371
+
1372
+ /**
1373
+ * reset user roles to WordPress default roles
1374
+ */
1375
+ protected function reset_user_roles() {
1376
+
1377
+ $this->wp_roles_reinit();
1378
  if ($this->is_full_network_synch() || $this->apply_to_all) {
1379
  $this->current_role = '';
1380
+ $this->direct_network_roles_update();
 
 
1381
  }
1382
+ //$this->validate_user_roles(); // if user has non-existing role lower him to Subscriber role
1383
 
1384
  $reload_link = wp_get_referer();
1385
+ $reload_link = remove_query_arg('action', $reload_link);
 
1386
  ?>
1387
  <script type="text/javascript" >
1388
  jQuery.ure_postGo('<?php echo $reload_link; ?>',
1636
  }
1637
  return $mess;
1638
  }
1639
+ // end of new_role_create()
1640
 
1641
 
1642
+ /**
1643
+ * Deletes user role from the WP database
1644
+ */
1645
+ protected function delete_wp_roles($roles_to_del) {
1646
  global $wp_roles;
1647
 
1648
+ if (!isset($wp_roles)) {
1649
+ $wp_roles = new WP_Roles();
1650
+ }
1651
+ $result = true;
1652
+ foreach($roles_to_del as $role_id) {
1653
+ if (isset($wp_roles->roles[$role_id])) {
1654
+ unset($wp_roles->role_objects[$role_id]);
1655
+ unset($wp_roles->role_names[$role_id]);
1656
+ unset($wp_roles->roles[$role_id]);
1657
+ } else {
1658
+ $result = false;
1659
+ break;
1660
+ }
1661
+ } // foreach()
1662
+ if ($result) {
1663
+ update_option($wp_roles->role_key, $wp_roles->roles);
1664
+ }
1665
+
1666
+ return $result;
1667
+ }
1668
+ // end of delete_wp_roles()
1669
+
1670
+
1671
+ protected function delete_all_unused_roles() {
1672
+
1673
+ $this->roles = $this->get_user_roles();
1674
+ $roles_to_del = array_keys($this->get_roles_can_delete());
1675
+ $result = $this->delete_wp_roles($roles_to_del);
1676
+ $this->roles = null; // to force roles refresh
1677
+
1678
+ return $result;
1679
+ }
1680
+ // end of delete_all_unused_roles()
1681
+
1682
+
1683
+ /**
1684
+ * process user request for user role deletion
1685
+ * @global WP_Roles $wp_roles
1686
+ * @return type
1687
+ */
1688
+ protected function delete_role() {
1689
+
1690
+ $mess = '';
1691
  if (isset($_POST['user_role_id']) && $_POST['user_role_id']) {
1692
  $role = $_POST['user_role_id'];
1693
+ if ($role==-1) { // delete all unused roles
1694
+ $result = $this->delete_all_unused_roles();
 
 
 
 
 
 
 
 
1695
  } else {
1696
+ $result = $this->delete_wp_roles(array($role));
1697
  }
1698
  if (empty($result)) {
1699
  $mess = 'Error! ' . __('Error encountered during role delete operation', 'ure');
1700
+ } elseif ($role==-1) {
1701
+ $mess = sprintf(__('Unused roles are deleted successfully', 'ure'), $role);
1702
  } else {
1703
  $mess = sprintf(__('Role %s is deleted successfully', 'ure'), $role);
1704
  }
2154
  foreach ($roles_can_delete as $key => $value) {
2155
  $this->role_delete_html .= '<option value="' . $key . '">' . __($value, 'ure') . '</option>';
2156
  }
2157
+ $this->role_delete_html .= '<option value="-1" style="color: red;">' . __('Delete All Unused Roles', 'ure') . '</option>';
2158
  $this->role_delete_html .= '</select>';
2159
  } else {
2160
  $this->role_delete_html = '';
includes/class-user-role-editor.php CHANGED
@@ -635,7 +635,11 @@ class User_Role_Editor {
635
  'add_capability' => __('Add Capability', 'ure'),
636
  'delete_capability' => __('Delete Capability', 'ure'),
637
  'reset' => __('Reset', 'ure'),
638
- 'reset_warning' => __('Reset Roles to WordPress defaults. Be careful, all changes made by you or plugins will be lost. Some plugins, e.g. S2Member, WooCommerce reactivation could be needed. Continue?', 'ure'),
 
 
 
 
639
  'default_role' => __('Default Role', 'ure'),
640
  'set_new_default_role' => __('Set New Default Role', 'ure'),
641
  'delete_capability' => __('Delete Capability', 'ure'),
635
  'add_capability' => __('Add Capability', 'ure'),
636
  'delete_capability' => __('Delete Capability', 'ure'),
637
  'reset' => __('Reset', 'ure'),
638
+ 'reset_warning' => __('DANGER! Resetting will restore default settings from WordPress Core.','ure')."\n\n".
639
+ __('If any plugins have changed capabilities in any way upon installation (such as S2Member, WooCommerce, and many more), those capabilities will be DELETED!', 'ure')."\n\n" .
640
+ __('For more information on how to undo changes and restore plugin capabilities go to', 'ure')."\n".
641
+ 'http://role-editor.com/how-to-restore-deleted-wordpress-user-roles/'."\n\n".
642
+ __('Continue?', 'ure'),
643
  'default_role' => __('Default Role', 'ure'),
644
  'set_new_default_role' => __('Set New Default Role', 'ure'),
645
  'delete_capability' => __('Delete Capability', 'ure'),
lang/ure-ca.mo CHANGED
Binary file
lang/ure-ca.po CHANGED
@@ -2,7 +2,7 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: User Role Editor v. 2.0\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2013-10-21 12:12+0700\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Vladimir Garagulya <vladimir@shinephp.com>\n"
8
  "Language-Team: ShinePHP.com <vladimir@shinephp.com>\n"
@@ -19,46 +19,37 @@ msgstr ""
19
  "X-Generator: Poedit 1.5.4\n"
20
  "X-Poedit-SearchPath-0: user-role-editor\n"
21
 
22
- #: ../includes/settings-template.php:63
23
  msgid "Save"
24
  msgstr ""
25
 
26
  # @ ure
27
- #: ../includes/class-user-role-editor.php:171
28
- #: ../includes/class-user-role-editor.php:173
29
  msgid "You do not have permission to edit this user."
30
  msgstr ""
31
 
32
  # @ ure
33
- #: ../includes/class-user-role-editor.php:314
34
  msgid "Capabilities"
35
  msgstr "Capacitats"
36
 
37
  # @ ure
38
- #: ../includes/class-user-role-editor.php:407
39
  msgid "Settings"
40
  msgstr "Opcions"
41
 
42
  # @ ure
43
- #: ../includes/class-user-role-editor.php:420
44
- #: ../includes/class-ure-lib.php:2050
45
  msgid "Changelog"
46
  msgstr "Registre de canvis"
47
 
48
- #: ../includes/class-user-role-editor.php:442
49
  msgid "Overview"
50
  msgstr ""
51
 
52
- # @ ure
53
- # @ default
54
- #: ../includes/class-user-role-editor.php:451
55
- #: ../includes/class-user-role-editor.php:479
56
- #: ../includes/class-user-role-editor.php:674
57
- #: ../includes/class-ure-lib.php:223
58
- msgid "User Role Editor"
59
- msgstr "User Role Editor"
60
-
61
- #: ../includes/class-user-role-editor.php:497
62
  msgid ""
63
  "You do not have sufficient permissions to manage options for User Role "
64
  "Editor."
@@ -66,108 +57,118 @@ msgstr ""
66
 
67
  # @ ure
68
  # @ default
69
- #: ../includes/class-user-role-editor.php:526
70
  msgid "User Role Editor options are updated"
71
  msgstr ""
72
 
73
- #: ../includes/class-user-role-editor.php:571
74
  msgid "Insufficient permissions to work with User Role Editor"
75
  msgstr ""
76
 
77
  # @ ure
78
- #: ../includes/class-user-role-editor.php:624
79
  msgid "Select All"
80
  msgstr "Seleccionar-ho tot"
81
 
82
- #: ../includes/class-user-role-editor.php:625
83
  msgid "Unselect All"
84
  msgstr "De-selecciona-ho tot"
85
 
86
- #: ../includes/class-user-role-editor.php:626
87
  msgid "Reverse"
88
  msgstr "Invertir"
89
 
90
  # @ ure
91
- #: ../includes/class-user-role-editor.php:627
92
  msgid "Update"
93
  msgstr "Actualitzar"
94
 
95
  # @ ure
96
- #: ../includes/class-user-role-editor.php:628
97
  msgid "Please confirm permissions update"
98
  msgstr "Si us plau confirmeu l'actualització de permisos "
99
 
100
  # @ ure
101
- #: ../includes/class-user-role-editor.php:629
102
  msgid "Add New Role"
103
  msgstr "Afegir nou Rol"
104
 
105
  # @ ure
106
- #: ../includes/class-user-role-editor.php:630
107
  msgid " Role name (ID) can not be empty!"
108
  msgstr "El nom de rol (ID) no pot estar buit!"
109
 
110
  # @ ure
111
- #: ../includes/class-user-role-editor.php:631
112
  msgid ""
113
  " Role name (ID) must contain latin characters, digits, hyphens or underscore "
114
  "only!"
115
  msgstr "Error: nom del rol (ID) ha de tenir només lletres llatines i dígits!"
116
 
117
  # @ ure
118
- #: ../includes/class-user-role-editor.php:632
119
  msgid "Add Role"
120
  msgstr "Afegir nou Rol"
121
 
122
  # @ ure
123
- #: ../includes/class-user-role-editor.php:633
124
  msgid "Delete Role"
125
  msgstr "Eliminar Rol"
126
 
127
  # @ ure
128
- #: ../includes/class-user-role-editor.php:634
129
  msgid "Cancel"
130
  msgstr "Cancel·lar"
131
 
132
  # @ ure
133
- #: ../includes/class-user-role-editor.php:635
134
  msgid "Add Capability"
135
  msgstr "Afegir nou privilegi"
136
 
137
  # @ ure
138
- #: ../includes/class-user-role-editor.php:636
139
- #: ../includes/class-user-role-editor.php:641
140
  msgid "Delete Capability"
141
  msgstr "Eliminar privilegi"
142
 
143
  # @ ure
144
- #: ../includes/class-user-role-editor.php:637
145
  msgid "Reset"
146
  msgstr "Reiniciar"
147
 
148
- #: ../includes/class-user-role-editor.php:638
 
 
 
 
 
 
 
 
 
 
149
  msgid ""
150
- "Reset Roles to WordPress defaults. Be careful, all changes made by you or "
151
- "plugins will be lost. Some plugins, e.g. S2Member, WooCommerce reactivation "
152
- "could be needed. Continue?"
153
  msgstr ""
154
- "Restableix funcions als valors per defecte de WordPress. Aneu amb compte, "
155
- "tots els canvis realitzats per vostè o per connectors es perdran. Alguns "
156
- "connectors, per exemple, S2Member, WooCommerce, podrian necessitar una "
157
- "reactivació. Continuar?"
158
 
159
  # @ ure
160
- #: ../includes/class-user-role-editor.php:639
 
 
 
 
 
161
  msgid "Default Role"
162
  msgstr "Rol predeterminat"
163
 
164
  # @ ure
165
- #: ../includes/class-user-role-editor.php:640
166
  msgid "Set New Default Role"
167
  msgstr "Assignar com a rol predeterminat"
168
 
169
  # @ ure
170
- #: ../includes/class-user-role-editor.php:642
171
  msgid ""
172
  "Warning! Be careful - removing critical capability could crash some plugin "
173
  "or other custom code"
@@ -176,12 +177,12 @@ msgstr ""
176
  "algun connector o algun altre codi personalitzat."
177
 
178
  # @ ure
179
- #: ../includes/class-user-role-editor.php:643
180
  msgid " Capability name (ID) can not be empty!"
181
  msgstr "El nom de priviliegi (ID) no pot estar buit!"
182
 
183
  # @ ure
184
- #: ../includes/class-user-role-editor.php:644
185
  msgid ""
186
  " Capability name (ID) must contain latin characters, digits, hyphens or "
187
  "underscore only!"
@@ -190,637 +191,628 @@ msgstr ""
190
  "dígits."
191
 
192
  # @ ure
193
- #: ../includes/class-user-role-editor.php:677
194
- #: ../includes/class-user-role-editor.php:705
 
 
 
 
 
 
 
195
  msgid "Other Roles"
196
  msgstr "Altres rols"
197
 
198
  # @ ure
199
- #: ../includes/class-user-role-editor.php:687
200
  msgid "Edit"
201
  msgstr "Editar"
202
 
203
  # @ ure
204
- #: ../includes/ure-role-edit.php:17
205
  msgid "Select Role and change its capabilities list"
206
  msgstr "Selecciona el Rol per canviar la seva llista de privilegis"
207
 
208
  # @ ure
209
- #: ../includes/ure-role-edit.php:19 ../includes/class-ure-lib.php:184
 
210
  msgid "Select Role:"
211
  msgstr "Selecciona el Rol:"
212
 
213
  # @ ure
214
- #: ../includes/ure-role-edit.php:30 ../includes/ure-user-edit.php:51
 
215
  msgid "Show capabilities in human readable form"
216
  msgstr "Mostra privilegis de forma llegible"
217
 
218
  # @ ure
219
- #: ../includes/ure-role-edit.php:40 ../includes/ure-user-edit.php:61
220
- #: ../includes/class-ure-screen-help.php:21
221
  msgid "Show deprecated capabilities"
222
  msgstr "Mostrar privilegis obsolets"
223
 
224
  # @ default
225
- #: ../includes/ure-role-edit.php:45
226
  msgid "If checked, then apply action to ALL sites of this Network"
227
  msgstr "Si està marcat s'aplica l'acció a TOTS els llocs d'aquesta xarxa"
228
 
229
  # @ ure
230
- #: ../includes/ure-role-edit.php:57
231
  msgid "Apply to All Sites"
232
  msgstr "Aplicar a tot arreu"
233
 
234
  # @ ure
235
- #: ../includes/ure-role-edit.php:64 ../includes/ure-user-edit.php:104
 
236
  msgid "Core capabilities:"
237
  msgstr "Privilegis"
238
 
239
- #: ../includes/ure-role-edit.php:66 ../includes/ure-user-edit.php:106
 
240
  msgid "Quick filter:"
241
  msgstr ""
242
 
243
  # @ ure
244
- #: ../includes/ure-role-edit.php:84 ../includes/ure-user-edit.php:125
 
245
  msgid "Custom capabilities:"
246
  msgstr "Privilegis personalitzats"
247
 
248
- #: ../includes/class-ure-lib.php:141
249
  msgid "Error: wrong request"
250
  msgstr ""
251
 
252
- #: ../includes/class-ure-lib.php:173
253
  msgid "Role name (ID): "
254
  msgstr "Nom de rol (ID):"
255
 
256
- #: ../includes/class-ure-lib.php:175
257
  msgid "Display Role Name: "
258
  msgstr "Visualització de nom de rol:"
259
 
260
  # @ ure
261
- #: ../includes/class-ure-lib.php:177
262
  msgid "Make copy of: "
263
  msgstr "Fer còpia de:"
264
 
265
  # @ ure
266
- #: ../includes/class-ure-lib.php:199
267
  msgid "Delete:"
268
  msgstr "Eliminar:"
269
 
270
- #: ../includes/class-ure-lib.php:206
271
  msgid "Capability name (ID): "
272
  msgstr "Nom provolegi (ID):"
273
 
274
  # @ ure
275
- #: ../includes/class-ure-lib.php:321
276
  msgid "Error: "
277
  msgstr "Error:"
278
 
279
  # @ ure
280
- #: ../includes/class-ure-lib.php:321
281
  msgid "Role"
282
  msgstr "Rol"
283
 
284
  # @ ure
285
- #: ../includes/class-ure-lib.php:321
286
  msgid "does not exist"
287
  msgstr "no existeix"
288
 
289
  # @ ure
290
- #: ../includes/class-ure-lib.php:364
291
  msgid "Role is updated successfully"
292
  msgstr ""
293
 
294
- #: ../includes/class-ure-lib.php:366
295
  msgid "Roles are updated for all network"
296
  msgstr ""
297
 
298
  # @ ure
299
- #: ../includes/class-ure-lib.php:372
300
  msgid "Error occured during role(s) update"
301
  msgstr ""
302
 
303
  # @ ure
304
- #: ../includes/class-ure-lib.php:379
305
  msgid "User capabilities are updated successfully"
306
  msgstr ""
307
 
308
  # @ ure
309
- #: ../includes/class-ure-lib.php:384
310
  msgid "Error occured during user update"
311
  msgstr "Error trobat durant l'actualització del rol"
312
 
313
  # @ ure
314
- #: ../includes/class-ure-lib.php:439
315
  msgid "User Roles are restored to WordPress default values. "
316
  msgstr ""
317
  "Els rols d'usuari es restableixen als valors predeterminats de WordPress."
318
 
319
  # @ ure
320
- #: ../includes/class-ure-lib.php:1237
321
  msgid "Help"
322
  msgstr "Ajuda"
323
 
324
  # ure
325
- #: ../includes/class-ure-lib.php:1576
326
  msgid "Error is occur. Please check the log file."
327
  msgstr "Ha ocorregut un error. Si us plau revisa l'arxiu de registres."
328
 
329
  # @ ure
330
- #: ../includes/class-ure-lib.php:1601
331
  msgid ""
332
  "Error: Role ID must contain latin characters, digits, hyphens or underscore "
333
  "only!"
334
  msgstr "Error: nom del rol (ID) ha de tenir només lletres llatines i dígits!"
335
 
336
  # @ ure
337
- #: ../includes/class-ure-lib.php:1616
338
  #, php-format
339
  msgid "Role %s exists already"
340
  msgstr "Rol %s ja existeix"
341
 
342
  # @ ure
343
- #: ../includes/class-ure-lib.php:1631
344
  msgid "Error is encountered during new role create operation"
345
  msgstr "Error trobat durant la creació d'un nou Rol"
346
 
347
  # @ ure
348
- #: ../includes/class-ure-lib.php:1633
349
  #, php-format
350
  msgid "Role %s is created successfully"
351
  msgstr "Rol %s s'ha creat correctament"
352
 
353
  # @ ure
354
- #: ../includes/class-ure-lib.php:1662
355
  msgid "Error encountered during role delete operation"
356
  msgstr "Error trobat durant l'eliminació del Rol"
357
 
358
  # @ ure
359
- #: ../includes/class-ure-lib.php:1664
 
 
 
 
 
360
  #, php-format
361
  msgid "Role %s is deleted successfully"
362
  msgstr "Rol %s s'elimina amb èxit"
363
 
364
  # @ ure
365
- #: ../includes/class-ure-lib.php:1689
366
  msgid "Error encountered during default role change operation"
367
  msgstr "Error trobat durant el canvi de Rol per defecte"
368
 
369
  # @ ure
370
- #: ../includes/class-ure-lib.php:1695
371
  #, php-format
372
  msgid "Default role for new users is set to %s successfully"
373
  msgstr "Rol predeterminat per a nous usuaris està establert en %s amb èxit"
374
 
375
  # @ ure
376
- #: ../includes/class-ure-lib.php:1714
377
  msgid "Editor"
378
  msgstr "Editor"
379
 
380
  # @ ure
381
- #: ../includes/class-ure-lib.php:1715
382
  msgid "Author"
383
  msgstr "Autor"
384
 
385
  # @ ure
386
- #: ../includes/class-ure-lib.php:1716
387
  msgid "Contributor"
388
  msgstr "Col·laborador"
389
 
390
  # @ ure
391
- #: ../includes/class-ure-lib.php:1717
392
  msgid "Subscriber"
393
  msgstr "Subscriptor"
394
 
395
  # @ ure
396
- #: ../includes/class-ure-lib.php:1719
397
  msgid "Switch themes"
398
  msgstr "Canviar plantilles"
399
 
400
  # @ ure
401
- #: ../includes/class-ure-lib.php:1720
402
  msgid "Edit themes"
403
  msgstr "Editar plantilles"
404
 
405
  # @ ure
406
- #: ../includes/class-ure-lib.php:1721
407
  msgid "Activate plugins"
408
  msgstr "Activar connectors"
409
 
410
  # @ ure
411
- #: ../includes/class-ure-lib.php:1722
412
  msgid "Edit plugins"
413
  msgstr "Editar connectors"
414
 
415
  # @ ure
416
- #: ../includes/class-ure-lib.php:1723
417
  msgid "Edit users"
418
  msgstr "Editar usuaris"
419
 
420
  # @ ure
421
- #: ../includes/class-ure-lib.php:1724
422
  msgid "Edit files"
423
  msgstr "Editar arxius"
424
 
425
  # @ ure
426
- #: ../includes/class-ure-lib.php:1725
427
  msgid "Manage options"
428
  msgstr "Administrar opcions"
429
 
430
  # @ ure
431
- #: ../includes/class-ure-lib.php:1726
432
  msgid "Moderate comments"
433
  msgstr "Moderar comentaris"
434
 
435
  # @ ure
436
- #: ../includes/class-ure-lib.php:1727
437
  msgid "Manage categories"
438
  msgstr "Administrar categories"
439
 
440
  # @ ure
441
- #: ../includes/class-ure-lib.php:1728
442
  msgid "Manage links"
443
  msgstr "Administrar enllaços"
444
 
445
  # @ ure
446
- #: ../includes/class-ure-lib.php:1729
447
  msgid "Upload files"
448
  msgstr "Pujar arxius"
449
 
450
  # @ ure
451
- #: ../includes/class-ure-lib.php:1730
452
  msgid "Import"
453
  msgstr "Importar"
454
 
455
  # @ ure
456
- #: ../includes/class-ure-lib.php:1731
457
  msgid "Unfiltered html"
458
  msgstr "Ometre Filtrat d'HTML"
459
 
460
  # @ ure
461
- #: ../includes/class-ure-lib.php:1732
462
  msgid "Edit posts"
463
  msgstr "Editar missatges"
464
 
465
  # @ ure
466
- #: ../includes/class-ure-lib.php:1733
467
  msgid "Edit others posts"
468
  msgstr "Editar missatges de altres"
469
 
470
  # @ ure
471
- #: ../includes/class-ure-lib.php:1734
472
  msgid "Edit published posts"
473
  msgstr "Editar els missatges publicats"
474
 
475
  # @ ure
476
- #: ../includes/class-ure-lib.php:1735
477
  msgid "Publish posts"
478
  msgstr "Publicar missatges"
479
 
480
  # @ ure
481
- #: ../includes/class-ure-lib.php:1736
482
  msgid "Edit pages"
483
  msgstr "Editar pàgines"
484
 
485
  # @ ure
486
- #: ../includes/class-ure-lib.php:1737
487
  msgid "Read"
488
  msgstr "Llegir"
489
 
490
  # @ ure
491
- #: ../includes/class-ure-lib.php:1738
492
  msgid "Level 10"
493
  msgstr "Nivell 10"
494
 
495
  # @ ure
496
- #: ../includes/class-ure-lib.php:1739
497
  msgid "Level 9"
498
  msgstr "Nivell 9"
499
 
500
  # @ ure
501
- #: ../includes/class-ure-lib.php:1740
502
  msgid "Level 8"
503
  msgstr "Nivell 8"
504
 
505
  # @ ure
506
- #: ../includes/class-ure-lib.php:1741
507
  msgid "Level 7"
508
  msgstr "Nivell 7"
509
 
510
  # @ ure
511
- #: ../includes/class-ure-lib.php:1742
512
  msgid "Level 6"
513
  msgstr "Nivell 6"
514
 
515
  # @ ure
516
- #: ../includes/class-ure-lib.php:1743
517
  msgid "Level 5"
518
  msgstr "Nivell 5"
519
 
520
  # @ ure
521
- #: ../includes/class-ure-lib.php:1744
522
  msgid "Level 4"
523
  msgstr "Nivell 4"
524
 
525
  # @ ure
526
- #: ../includes/class-ure-lib.php:1745
527
  msgid "Level 3"
528
  msgstr "Nivell 3"
529
 
530
  # @ ure
531
- #: ../includes/class-ure-lib.php:1746
532
  msgid "Level 2"
533
  msgstr "Nivell 2"
534
 
535
  # @ ure
536
- #: ../includes/class-ure-lib.php:1747
537
  msgid "Level 1"
538
  msgstr "Nivell 1"
539
 
540
  # @ ure
541
- #: ../includes/class-ure-lib.php:1748
542
  msgid "Level 0"
543
  msgstr "Nivell 0"
544
 
545
  # @ ure
546
- #: ../includes/class-ure-lib.php:1749
547
  msgid "Edit others pages"
548
  msgstr "Editar pàgines de altres"
549
 
550
  # @ ure
551
- #: ../includes/class-ure-lib.php:1750
552
  msgid "Edit published pages"
553
  msgstr "Editar pàgines publicades"
554
 
555
  # @ ure
556
- #: ../includes/class-ure-lib.php:1751
557
  msgid "Publish pages"
558
  msgstr "Publicar pàgines"
559
 
560
  # @ ure
561
- #: ../includes/class-ure-lib.php:1752
562
  msgid "Delete pages"
563
  msgstr "Eliminar pàgines"
564
 
565
  # ure
566
- #: ../includes/class-ure-lib.php:1753
567
  msgid "Delete others pages"
568
  msgstr "Eliminar pàgines de altres"
569
 
570
  # @ ure
571
- #: ../includes/class-ure-lib.php:1754
572
  msgid "Delete published pages"
573
  msgstr "Eliminar pàgines publicades"
574
 
575
  # ure
576
- #: ../includes/class-ure-lib.php:1755
577
  msgid "Delete posts"
578
  msgstr "Eliminar missatges"
579
 
580
  # @ ure
581
- #: ../includes/class-ure-lib.php:1756
582
  msgid "Delete others posts"
583
  msgstr "Eliminar missatges de altres"
584
 
585
  # ure
586
- #: ../includes/class-ure-lib.php:1757
587
  msgid "Delete published posts"
588
  msgstr "Eliminar missatges publicats"
589
 
590
  # ure
591
- #: ../includes/class-ure-lib.php:1758
592
  msgid "Delete private posts"
593
  msgstr "Eliminar missatges privats"
594
 
595
  # @ ure
596
- #: ../includes/class-ure-lib.php:1759
597
  msgid "Edit private posts"
598
  msgstr "Editar missatges privats"
599
 
600
  # @ ure
601
- #: ../includes/class-ure-lib.php:1760
602
  msgid "Read private posts"
603
  msgstr "Llegir missatges privats"
604
 
605
  # @ ure
606
- #: ../includes/class-ure-lib.php:1761
607
  msgid "Delete private pages"
608
  msgstr "Eliminar pàgines privades"
609
 
610
  # @ ure
611
- #: ../includes/class-ure-lib.php:1762
612
  msgid "Edit private pages"
613
  msgstr "Editar pàgines privades"
614
 
615
  # @ ure
616
- #: ../includes/class-ure-lib.php:1763
617
  msgid "Read private pages"
618
  msgstr "Llegir pàgines privades"
619
 
620
  # @ ure
621
- #: ../includes/class-ure-lib.php:1764
622
  msgid "Delete users"
623
  msgstr "Eliminar usuaris"
624
 
625
  # @ ure
626
- #: ../includes/class-ure-lib.php:1765
627
  msgid "Create users"
628
  msgstr "Crear usuaris"
629
 
630
  # @ ure
631
- #: ../includes/class-ure-lib.php:1766
632
  msgid "Unfiltered upload"
633
  msgstr "Sense filtre de càrrega"
634
 
635
  # @ ure
636
- #: ../includes/class-ure-lib.php:1767
637
  msgid "Edit dashboard"
638
  msgstr "Editar taulell"
639
 
640
  # @ ure
641
- #: ../includes/class-ure-lib.php:1768
642
  msgid "Update plugins"
643
  msgstr "Actualitzar connectors"
644
 
645
  # @ ure
646
- #: ../includes/class-ure-lib.php:1769
647
  msgid "Delete plugins"
648
  msgstr "Eliminar connectors"
649
 
650
  # @ ure
651
- #: ../includes/class-ure-lib.php:1770
652
  msgid "Install plugins"
653
  msgstr "Instal·lar connectors"
654
 
655
  # @ ure
656
- #: ../includes/class-ure-lib.php:1771
657
  msgid "Update themes"
658
  msgstr "Actualitzar plantilles"
659
 
660
  # @ ure
661
- #: ../includes/class-ure-lib.php:1772
662
  msgid "Install themes"
663
  msgstr "Instal·lar plantilles"
664
 
665
  # @ ure
666
- #: ../includes/class-ure-lib.php:1773
667
  msgid "Update core"
668
  msgstr "Actualitzar nucli"
669
 
670
  # @ ure
671
- #: ../includes/class-ure-lib.php:1774
672
  msgid "List users"
673
  msgstr "Llistar usuaris"
674
 
675
  # @ ure
676
- #: ../includes/class-ure-lib.php:1775
677
  msgid "Remove users"
678
  msgstr "Eliminar usuaris"
679
 
680
  # @ ure
681
- #: ../includes/class-ure-lib.php:1776
682
  msgid "Add users"
683
  msgstr "Afegir usuaris"
684
 
685
  # @ ure
686
- #: ../includes/class-ure-lib.php:1777
687
  msgid "Promote users"
688
  msgstr "Promoure usuaris"
689
 
690
  # @ ure
691
- #: ../includes/class-ure-lib.php:1778
692
  msgid "Edit theme options"
693
  msgstr "Editar opcions de plantilla"
694
 
695
  # @ ure
696
- #: ../includes/class-ure-lib.php:1779
697
  msgid "Delete themes"
698
  msgstr "Eliminar plantilles"
699
 
700
  # @ ure
701
- #: ../includes/class-ure-lib.php:1780
702
  msgid "Export"
703
  msgstr "Exportar"
704
 
705
  # @ ure
706
- #: ../includes/class-ure-lib.php:1890
707
  msgid "Error: Capability name must contain latin characters and digits only!"
708
  msgstr ""
709
  "Error: el nom del Privilegi només ha de contenir caràcters llatins i dígits."
710
 
711
  # @ ure
712
- #: ../includes/class-ure-lib.php:1903
713
  #, php-format
714
  msgid "Capability %s is added successfully"
715
  msgstr "Privilegi %s s'ha afegit correctament"
716
 
717
  # @ ure
718
- #: ../includes/class-ure-lib.php:1905
719
  #, php-format
720
  msgid "Capability %s exists already"
721
  msgstr "Ja existeix el privilegi %s"
722
 
723
  # @ ure
724
- #: ../includes/class-ure-lib.php:1930
725
  #, php-format
726
  msgid "Error! You do not have permission to delete this capability: %s!"
727
  msgstr "¡Error! No tens permisos per esborrar aquest privilegi: %s !"
728
 
729
  # @ ure
730
- #: ../includes/class-ure-lib.php:1949
731
  #, php-format
732
  msgid "Capability %s is removed successfully"
733
  msgstr "El privilegi %s s'ha eliminat amb èxit"
734
 
735
  # @ ure
736
- #: ../includes/class-ure-lib.php:2046
737
  msgid "About this Plugin:"
738
  msgstr "Sobre aquest connector:"
739
 
740
  # @ ure
741
- #: ../includes/class-ure-lib.php:2048
742
  msgid "Author's website"
743
  msgstr "Lloc web del autor"
744
 
745
  # @ ure
746
- #: ../includes/class-ure-lib.php:2049
747
  msgid "Plugin webpage"
748
  msgstr "Pàgina web del connector"
749
 
750
  # @ ure
751
- #: ../includes/class-ure-lib.php:2051
752
  msgid "FAQ"
753
  msgstr "FAQ"
754
 
755
  # @ ure
756
- #: ../includes/class-ure-lib.php:2092
757
  msgid "None"
758
  msgstr "Cap"
759
 
760
- #: ../includes/class-ure-lib.php:2141
761
- msgid "&mdash; No role for this site &mdash;"
 
762
  msgstr ""
763
 
764
- #: ../includes/ure-user-edit.php:31
765
- msgid "Network Super Admin"
766
  msgstr ""
767
 
768
  # @ ure
769
- #: ../includes/ure-user-edit.php:34
770
  msgid "Change capabilities for user"
771
  msgstr "Canviar privilegis d'usuari"
772
 
773
- #: ../includes/ure-user-edit.php:66
774
  msgid "Primary Role:"
775
  msgstr "Rol principal:"
776
 
777
- #: ../includes/ure-user-edit.php:75
778
  msgid "bbPress Role:"
779
  msgstr "Rol bbPress:"
780
 
781
  # @ ure
782
- #: ../includes/ure-user-edit.php:85
783
  msgid "Other Roles:"
784
  msgstr "Altres rols:"
785
 
786
- #: ../includes/class-ure-screen-help.php:15
787
- msgid "Show Administrator role at User Role Editor"
788
- msgstr ""
789
-
790
- #: ../includes/class-ure-screen-help.php:16
791
- msgid ""
792
- "turn this option on in order to make the \"Administrator\" role available at "
793
- "the User Role Editor roles selection drop-down list. It is hidden by default "
794
- "for security reasons."
795
- msgstr ""
796
 
797
  # @ ure
798
- #: ../includes/class-ure-screen-help.php:18
799
  #, fuzzy
800
- msgid "Show capabilities in the human readable form"
801
- msgstr "Mostra privilegis de forma llegible"
802
-
803
- #: ../includes/class-ure-screen-help.php:19
804
- msgid ""
805
- "automatically converts capability names from the technical form for internal "
806
- "use like \"edit_others_posts\" to more user friendly form, e.g. \"Edit "
807
- "others posts\"."
808
- msgstr ""
809
-
810
- #: ../includes/class-ure-screen-help.php:22
811
- msgid ""
812
- "Capabilities like \"level_0\", \"level_1\" are deprecated and are not used "
813
- "by WordPress. They are left at the user roles for the compatibility purpose "
814
- "with the old themes and plugins code. Turning on this option will show those "
815
- "deprecated capabilities."
816
- msgstr ""
817
-
818
- #: ../includes/class-ure-screen-help.php:27
819
- msgid "Allow create, edit and delete users to not super-admininstrators"
820
- msgstr ""
821
-
822
- #: ../includes/class-ure-screen-help.php:28
823
- msgid ""
824
- "Super administrator only may create, edit and delete users under WordPress "
825
- "multi-site. Turn this option on in order to remove this limitation."
826
- msgstr ""
2
  msgstr ""
3
  "Project-Id-Version: User Role Editor v. 2.0\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2013-11-04 08:52+0700\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Vladimir Garagulya <vladimir@shinephp.com>\n"
8
  "Language-Team: ShinePHP.com <vladimir@shinephp.com>\n"
19
  "X-Generator: Poedit 1.5.4\n"
20
  "X-Poedit-SearchPath-0: user-role-editor\n"
21
 
22
+ #: user-role-editor/includes/settings-template.php:63
23
  msgid "Save"
24
  msgstr ""
25
 
26
  # @ ure
27
+ #: user-role-editor/includes/class-user-role-editor.php:171
28
+ #: user-role-editor/includes/class-user-role-editor.php:173
29
  msgid "You do not have permission to edit this user."
30
  msgstr ""
31
 
32
  # @ ure
33
+ #: user-role-editor/includes/class-user-role-editor.php:314
34
  msgid "Capabilities"
35
  msgstr "Capacitats"
36
 
37
  # @ ure
38
+ #: user-role-editor/includes/class-user-role-editor.php:407
39
  msgid "Settings"
40
  msgstr "Opcions"
41
 
42
  # @ ure
43
+ #: user-role-editor/includes/class-user-role-editor.php:420
44
+ #: user-role-editor/includes/class-ure-lib.php:2089
45
  msgid "Changelog"
46
  msgstr "Registre de canvis"
47
 
48
+ #: user-role-editor/includes/class-user-role-editor.php:442
49
  msgid "Overview"
50
  msgstr ""
51
 
52
+ #: user-role-editor/includes/class-user-role-editor.php:497
 
 
 
 
 
 
 
 
 
53
  msgid ""
54
  "You do not have sufficient permissions to manage options for User Role "
55
  "Editor."
57
 
58
  # @ ure
59
  # @ default
60
+ #: user-role-editor/includes/class-user-role-editor.php:526
61
  msgid "User Role Editor options are updated"
62
  msgstr ""
63
 
64
+ #: user-role-editor/includes/class-user-role-editor.php:571
65
  msgid "Insufficient permissions to work with User Role Editor"
66
  msgstr ""
67
 
68
  # @ ure
69
+ #: user-role-editor/includes/class-user-role-editor.php:624
70
  msgid "Select All"
71
  msgstr "Seleccionar-ho tot"
72
 
73
+ #: user-role-editor/includes/class-user-role-editor.php:625
74
  msgid "Unselect All"
75
  msgstr "De-selecciona-ho tot"
76
 
77
+ #: user-role-editor/includes/class-user-role-editor.php:626
78
  msgid "Reverse"
79
  msgstr "Invertir"
80
 
81
  # @ ure
82
+ #: user-role-editor/includes/class-user-role-editor.php:627
83
  msgid "Update"
84
  msgstr "Actualitzar"
85
 
86
  # @ ure
87
+ #: user-role-editor/includes/class-user-role-editor.php:628
88
  msgid "Please confirm permissions update"
89
  msgstr "Si us plau confirmeu l'actualització de permisos "
90
 
91
  # @ ure
92
+ #: user-role-editor/includes/class-user-role-editor.php:629
93
  msgid "Add New Role"
94
  msgstr "Afegir nou Rol"
95
 
96
  # @ ure
97
+ #: user-role-editor/includes/class-user-role-editor.php:630
98
  msgid " Role name (ID) can not be empty!"
99
  msgstr "El nom de rol (ID) no pot estar buit!"
100
 
101
  # @ ure
102
+ #: user-role-editor/includes/class-user-role-editor.php:631
103
  msgid ""
104
  " Role name (ID) must contain latin characters, digits, hyphens or underscore "
105
  "only!"
106
  msgstr "Error: nom del rol (ID) ha de tenir només lletres llatines i dígits!"
107
 
108
  # @ ure
109
+ #: user-role-editor/includes/class-user-role-editor.php:632
110
  msgid "Add Role"
111
  msgstr "Afegir nou Rol"
112
 
113
  # @ ure
114
+ #: user-role-editor/includes/class-user-role-editor.php:633
115
  msgid "Delete Role"
116
  msgstr "Eliminar Rol"
117
 
118
  # @ ure
119
+ #: user-role-editor/includes/class-user-role-editor.php:634
120
  msgid "Cancel"
121
  msgstr "Cancel·lar"
122
 
123
  # @ ure
124
+ #: user-role-editor/includes/class-user-role-editor.php:635
125
  msgid "Add Capability"
126
  msgstr "Afegir nou privilegi"
127
 
128
  # @ ure
129
+ #: user-role-editor/includes/class-user-role-editor.php:636
130
+ #: user-role-editor/includes/class-user-role-editor.php:645
131
  msgid "Delete Capability"
132
  msgstr "Eliminar privilegi"
133
 
134
  # @ ure
135
+ #: user-role-editor/includes/class-user-role-editor.php:637
136
  msgid "Reset"
137
  msgstr "Reiniciar"
138
 
139
+ #: user-role-editor/includes/class-user-role-editor.php:638
140
+ msgid "DANGER! Resetting will restore default settings from WordPress Core."
141
+ msgstr ""
142
+
143
+ #: user-role-editor/includes/class-user-role-editor.php:639
144
+ msgid ""
145
+ "If any plugins have changed capabilities in any way upon installation (such "
146
+ "as S2Member, WooCommerce, and many more), those capabilities will be DELETED!"
147
+ msgstr ""
148
+
149
+ #: user-role-editor/includes/class-user-role-editor.php:640
150
  msgid ""
151
+ "For more information on how to undo changes and restore plugin capabilities "
152
+ "go to"
 
153
  msgstr ""
 
 
 
 
154
 
155
  # @ ure
156
+ #: user-role-editor/includes/class-user-role-editor.php:642
157
+ msgid "Continue?"
158
+ msgstr ""
159
+
160
+ # @ ure
161
+ #: user-role-editor/includes/class-user-role-editor.php:643
162
  msgid "Default Role"
163
  msgstr "Rol predeterminat"
164
 
165
  # @ ure
166
+ #: user-role-editor/includes/class-user-role-editor.php:644
167
  msgid "Set New Default Role"
168
  msgstr "Assignar com a rol predeterminat"
169
 
170
  # @ ure
171
+ #: user-role-editor/includes/class-user-role-editor.php:646
172
  msgid ""
173
  "Warning! Be careful - removing critical capability could crash some plugin "
174
  "or other custom code"
177
  "algun connector o algun altre codi personalitzat."
178
 
179
  # @ ure
180
+ #: user-role-editor/includes/class-user-role-editor.php:647
181
  msgid " Capability name (ID) can not be empty!"
182
  msgstr "El nom de priviliegi (ID) no pot estar buit!"
183
 
184
  # @ ure
185
+ #: user-role-editor/includes/class-user-role-editor.php:648
186
  msgid ""
187
  " Capability name (ID) must contain latin characters, digits, hyphens or "
188
  "underscore only!"
191
  "dígits."
192
 
193
  # @ ure
194
+ # @ default
195
+ #: user-role-editor/includes/class-user-role-editor.php:678
196
+ #: user-role-editor/includes/class-ure-lib.php:223
197
+ msgid "User Role Editor"
198
+ msgstr "User Role Editor"
199
+
200
+ # @ ure
201
+ #: user-role-editor/includes/class-user-role-editor.php:681
202
+ #: user-role-editor/includes/class-user-role-editor.php:709
203
  msgid "Other Roles"
204
  msgstr "Altres rols"
205
 
206
  # @ ure
207
+ #: user-role-editor/includes/class-user-role-editor.php:691
208
  msgid "Edit"
209
  msgstr "Editar"
210
 
211
  # @ ure
212
+ #: user-role-editor/includes/ure-role-edit.php:17
213
  msgid "Select Role and change its capabilities list"
214
  msgstr "Selecciona el Rol per canviar la seva llista de privilegis"
215
 
216
  # @ ure
217
+ #: user-role-editor/includes/ure-role-edit.php:19
218
+ #: user-role-editor/includes/class-ure-lib.php:184
219
  msgid "Select Role:"
220
  msgstr "Selecciona el Rol:"
221
 
222
  # @ ure
223
+ #: user-role-editor/includes/ure-role-edit.php:30
224
+ #: user-role-editor/includes/ure-user-edit.php:51
225
  msgid "Show capabilities in human readable form"
226
  msgstr "Mostra privilegis de forma llegible"
227
 
228
  # @ ure
229
+ #: user-role-editor/includes/ure-role-edit.php:40
230
+ #: user-role-editor/includes/ure-user-edit.php:61
231
  msgid "Show deprecated capabilities"
232
  msgstr "Mostrar privilegis obsolets"
233
 
234
  # @ default
235
+ #: user-role-editor/includes/ure-role-edit.php:45
236
  msgid "If checked, then apply action to ALL sites of this Network"
237
  msgstr "Si està marcat s'aplica l'acció a TOTS els llocs d'aquesta xarxa"
238
 
239
  # @ ure
240
+ #: user-role-editor/includes/ure-role-edit.php:57
241
  msgid "Apply to All Sites"
242
  msgstr "Aplicar a tot arreu"
243
 
244
  # @ ure
245
+ #: user-role-editor/includes/ure-role-edit.php:64
246
+ #: user-role-editor/includes/ure-user-edit.php:104
247
  msgid "Core capabilities:"
248
  msgstr "Privilegis"
249
 
250
+ #: user-role-editor/includes/ure-role-edit.php:66
251
+ #: user-role-editor/includes/ure-user-edit.php:106
252
  msgid "Quick filter:"
253
  msgstr ""
254
 
255
  # @ ure
256
+ #: user-role-editor/includes/ure-role-edit.php:84
257
+ #: user-role-editor/includes/ure-user-edit.php:125
258
  msgid "Custom capabilities:"
259
  msgstr "Privilegis personalitzats"
260
 
261
+ #: user-role-editor/includes/class-ure-lib.php:141
262
  msgid "Error: wrong request"
263
  msgstr ""
264
 
265
+ #: user-role-editor/includes/class-ure-lib.php:173
266
  msgid "Role name (ID): "
267
  msgstr "Nom de rol (ID):"
268
 
269
+ #: user-role-editor/includes/class-ure-lib.php:175
270
  msgid "Display Role Name: "
271
  msgstr "Visualització de nom de rol:"
272
 
273
  # @ ure
274
+ #: user-role-editor/includes/class-ure-lib.php:177
275
  msgid "Make copy of: "
276
  msgstr "Fer còpia de:"
277
 
278
  # @ ure
279
+ #: user-role-editor/includes/class-ure-lib.php:199
280
  msgid "Delete:"
281
  msgstr "Eliminar:"
282
 
283
+ #: user-role-editor/includes/class-ure-lib.php:206
284
  msgid "Capability name (ID): "
285
  msgstr "Nom provolegi (ID):"
286
 
287
  # @ ure
288
+ #: user-role-editor/includes/class-ure-lib.php:321
289
  msgid "Error: "
290
  msgstr "Error:"
291
 
292
  # @ ure
293
+ #: user-role-editor/includes/class-ure-lib.php:321
294
  msgid "Role"
295
  msgstr "Rol"
296
 
297
  # @ ure
298
+ #: user-role-editor/includes/class-ure-lib.php:321
299
  msgid "does not exist"
300
  msgstr "no existeix"
301
 
302
  # @ ure
303
+ #: user-role-editor/includes/class-ure-lib.php:364
304
  msgid "Role is updated successfully"
305
  msgstr ""
306
 
307
+ #: user-role-editor/includes/class-ure-lib.php:366
308
  msgid "Roles are updated for all network"
309
  msgstr ""
310
 
311
  # @ ure
312
+ #: user-role-editor/includes/class-ure-lib.php:372
313
  msgid "Error occured during role(s) update"
314
  msgstr ""
315
 
316
  # @ ure
317
+ #: user-role-editor/includes/class-ure-lib.php:379
318
  msgid "User capabilities are updated successfully"
319
  msgstr ""
320
 
321
  # @ ure
322
+ #: user-role-editor/includes/class-ure-lib.php:384
323
  msgid "Error occured during user update"
324
  msgstr "Error trobat durant l'actualització del rol"
325
 
326
  # @ ure
327
+ #: user-role-editor/includes/class-ure-lib.php:439
328
  msgid "User Roles are restored to WordPress default values. "
329
  msgstr ""
330
  "Els rols d'usuari es restableixen als valors predeterminats de WordPress."
331
 
332
  # @ ure
333
+ #: user-role-editor/includes/class-ure-lib.php:1237
334
  msgid "Help"
335
  msgstr "Ajuda"
336
 
337
  # ure
338
+ #: user-role-editor/includes/class-ure-lib.php:1576
339
  msgid "Error is occur. Please check the log file."
340
  msgstr "Ha ocorregut un error. Si us plau revisa l'arxiu de registres."
341
 
342
  # @ ure
343
+ #: user-role-editor/includes/class-ure-lib.php:1601
344
  msgid ""
345
  "Error: Role ID must contain latin characters, digits, hyphens or underscore "
346
  "only!"
347
  msgstr "Error: nom del rol (ID) ha de tenir només lletres llatines i dígits!"
348
 
349
  # @ ure
350
+ #: user-role-editor/includes/class-ure-lib.php:1616
351
  #, php-format
352
  msgid "Role %s exists already"
353
  msgstr "Rol %s ja existeix"
354
 
355
  # @ ure
356
+ #: user-role-editor/includes/class-ure-lib.php:1631
357
  msgid "Error is encountered during new role create operation"
358
  msgstr "Error trobat durant la creació d'un nou Rol"
359
 
360
  # @ ure
361
+ #: user-role-editor/includes/class-ure-lib.php:1633
362
  #, php-format
363
  msgid "Role %s is created successfully"
364
  msgstr "Rol %s s'ha creat correctament"
365
 
366
  # @ ure
367
+ #: user-role-editor/includes/class-ure-lib.php:1699
368
  msgid "Error encountered during role delete operation"
369
  msgstr "Error trobat durant l'eliminació del Rol"
370
 
371
  # @ ure
372
+ #: user-role-editor/includes/class-ure-lib.php:1701
373
+ msgid "Unused roles are deleted successfully"
374
+ msgstr ""
375
+
376
+ # @ ure
377
+ #: user-role-editor/includes/class-ure-lib.php:1703
378
  #, php-format
379
  msgid "Role %s is deleted successfully"
380
  msgstr "Rol %s s'elimina amb èxit"
381
 
382
  # @ ure
383
+ #: user-role-editor/includes/class-ure-lib.php:1728
384
  msgid "Error encountered during default role change operation"
385
  msgstr "Error trobat durant el canvi de Rol per defecte"
386
 
387
  # @ ure
388
+ #: user-role-editor/includes/class-ure-lib.php:1734
389
  #, php-format
390
  msgid "Default role for new users is set to %s successfully"
391
  msgstr "Rol predeterminat per a nous usuaris està establert en %s amb èxit"
392
 
393
  # @ ure
394
+ #: user-role-editor/includes/class-ure-lib.php:1753
395
  msgid "Editor"
396
  msgstr "Editor"
397
 
398
  # @ ure
399
+ #: user-role-editor/includes/class-ure-lib.php:1754
400
  msgid "Author"
401
  msgstr "Autor"
402
 
403
  # @ ure
404
+ #: user-role-editor/includes/class-ure-lib.php:1755
405
  msgid "Contributor"
406
  msgstr "Col·laborador"
407
 
408
  # @ ure
409
+ #: user-role-editor/includes/class-ure-lib.php:1756
410
  msgid "Subscriber"
411
  msgstr "Subscriptor"
412
 
413
  # @ ure
414
+ #: user-role-editor/includes/class-ure-lib.php:1758
415
  msgid "Switch themes"
416
  msgstr "Canviar plantilles"
417
 
418
  # @ ure
419
+ #: user-role-editor/includes/class-ure-lib.php:1759
420
  msgid "Edit themes"
421
  msgstr "Editar plantilles"
422
 
423
  # @ ure
424
+ #: user-role-editor/includes/class-ure-lib.php:1760
425
  msgid "Activate plugins"
426
  msgstr "Activar connectors"
427
 
428
  # @ ure
429
+ #: user-role-editor/includes/class-ure-lib.php:1761
430
  msgid "Edit plugins"
431
  msgstr "Editar connectors"
432
 
433
  # @ ure
434
+ #: user-role-editor/includes/class-ure-lib.php:1762
435
  msgid "Edit users"
436
  msgstr "Editar usuaris"
437
 
438
  # @ ure
439
+ #: user-role-editor/includes/class-ure-lib.php:1763
440
  msgid "Edit files"
441
  msgstr "Editar arxius"
442
 
443
  # @ ure
444
+ #: user-role-editor/includes/class-ure-lib.php:1764
445
  msgid "Manage options"
446
  msgstr "Administrar opcions"
447
 
448
  # @ ure
449
+ #: user-role-editor/includes/class-ure-lib.php:1765
450
  msgid "Moderate comments"
451
  msgstr "Moderar comentaris"
452
 
453
  # @ ure
454
+ #: user-role-editor/includes/class-ure-lib.php:1766
455
  msgid "Manage categories"
456
  msgstr "Administrar categories"
457
 
458
  # @ ure
459
+ #: user-role-editor/includes/class-ure-lib.php:1767
460
  msgid "Manage links"
461
  msgstr "Administrar enllaços"
462
 
463
  # @ ure
464
+ #: user-role-editor/includes/class-ure-lib.php:1768
465
  msgid "Upload files"
466
  msgstr "Pujar arxius"
467
 
468
  # @ ure
469
+ #: user-role-editor/includes/class-ure-lib.php:1769
470
  msgid "Import"
471
  msgstr "Importar"
472
 
473
  # @ ure
474
+ #: user-role-editor/includes/class-ure-lib.php:1770
475
  msgid "Unfiltered html"
476
  msgstr "Ometre Filtrat d'HTML"
477
 
478
  # @ ure
479
+ #: user-role-editor/includes/class-ure-lib.php:1771
480
  msgid "Edit posts"
481
  msgstr "Editar missatges"
482
 
483
  # @ ure
484
+ #: user-role-editor/includes/class-ure-lib.php:1772
485
  msgid "Edit others posts"
486
  msgstr "Editar missatges de altres"
487
 
488
  # @ ure
489
+ #: user-role-editor/includes/class-ure-lib.php:1773
490
  msgid "Edit published posts"
491
  msgstr "Editar els missatges publicats"
492
 
493
  # @ ure
494
+ #: user-role-editor/includes/class-ure-lib.php:1774
495
  msgid "Publish posts"
496
  msgstr "Publicar missatges"
497
 
498
  # @ ure
499
+ #: user-role-editor/includes/class-ure-lib.php:1775
500
  msgid "Edit pages"
501
  msgstr "Editar pàgines"
502
 
503
  # @ ure
504
+ #: user-role-editor/includes/class-ure-lib.php:1776
505
  msgid "Read"
506
  msgstr "Llegir"
507
 
508
  # @ ure
509
+ #: user-role-editor/includes/class-ure-lib.php:1777
510
  msgid "Level 10"
511
  msgstr "Nivell 10"
512
 
513
  # @ ure
514
+ #: user-role-editor/includes/class-ure-lib.php:1778
515
  msgid "Level 9"
516
  msgstr "Nivell 9"
517
 
518
  # @ ure
519
+ #: user-role-editor/includes/class-ure-lib.php:1779
520
  msgid "Level 8"
521
  msgstr "Nivell 8"
522
 
523
  # @ ure
524
+ #: user-role-editor/includes/class-ure-lib.php:1780
525
  msgid "Level 7"
526
  msgstr "Nivell 7"
527
 
528
  # @ ure
529
+ #: user-role-editor/includes/class-ure-lib.php:1781
530
  msgid "Level 6"
531
  msgstr "Nivell 6"
532
 
533
  # @ ure
534
+ #: user-role-editor/includes/class-ure-lib.php:1782
535
  msgid "Level 5"
536
  msgstr "Nivell 5"
537
 
538
  # @ ure
539
+ #: user-role-editor/includes/class-ure-lib.php:1783
540
  msgid "Level 4"
541
  msgstr "Nivell 4"
542
 
543
  # @ ure
544
+ #: user-role-editor/includes/class-ure-lib.php:1784
545
  msgid "Level 3"
546
  msgstr "Nivell 3"
547
 
548
  # @ ure
549
+ #: user-role-editor/includes/class-ure-lib.php:1785
550
  msgid "Level 2"
551
  msgstr "Nivell 2"
552
 
553
  # @ ure
554
+ #: user-role-editor/includes/class-ure-lib.php:1786
555
  msgid "Level 1"
556
  msgstr "Nivell 1"
557
 
558
  # @ ure
559
+ #: user-role-editor/includes/class-ure-lib.php:1787
560
  msgid "Level 0"
561
  msgstr "Nivell 0"
562
 
563
  # @ ure
564
+ #: user-role-editor/includes/class-ure-lib.php:1788
565
  msgid "Edit others pages"
566
  msgstr "Editar pàgines de altres"
567
 
568
  # @ ure
569
+ #: user-role-editor/includes/class-ure-lib.php:1789
570
  msgid "Edit published pages"
571
  msgstr "Editar pàgines publicades"
572
 
573
  # @ ure
574
+ #: user-role-editor/includes/class-ure-lib.php:1790
575
  msgid "Publish pages"
576
  msgstr "Publicar pàgines"
577
 
578
  # @ ure
579
+ #: user-role-editor/includes/class-ure-lib.php:1791
580
  msgid "Delete pages"
581
  msgstr "Eliminar pàgines"
582
 
583
  # ure
584
+ #: user-role-editor/includes/class-ure-lib.php:1792
585
  msgid "Delete others pages"
586
  msgstr "Eliminar pàgines de altres"
587
 
588
  # @ ure
589
+ #: user-role-editor/includes/class-ure-lib.php:1793
590
  msgid "Delete published pages"
591
  msgstr "Eliminar pàgines publicades"
592
 
593
  # ure
594
+ #: user-role-editor/includes/class-ure-lib.php:1794
595
  msgid "Delete posts"
596
  msgstr "Eliminar missatges"
597
 
598
  # @ ure
599
+ #: user-role-editor/includes/class-ure-lib.php:1795
600
  msgid "Delete others posts"
601
  msgstr "Eliminar missatges de altres"
602
 
603
  # ure
604
+ #: user-role-editor/includes/class-ure-lib.php:1796
605
  msgid "Delete published posts"
606
  msgstr "Eliminar missatges publicats"
607
 
608
  # ure
609
+ #: user-role-editor/includes/class-ure-lib.php:1797
610
  msgid "Delete private posts"
611
  msgstr "Eliminar missatges privats"
612
 
613
  # @ ure
614
+ #: user-role-editor/includes/class-ure-lib.php:1798
615
  msgid "Edit private posts"
616
  msgstr "Editar missatges privats"
617
 
618
  # @ ure
619
+ #: user-role-editor/includes/class-ure-lib.php:1799
620
  msgid "Read private posts"
621
  msgstr "Llegir missatges privats"
622
 
623
  # @ ure
624
+ #: user-role-editor/includes/class-ure-lib.php:1800
625
  msgid "Delete private pages"
626
  msgstr "Eliminar pàgines privades"
627
 
628
  # @ ure
629
+ #: user-role-editor/includes/class-ure-lib.php:1801
630
  msgid "Edit private pages"
631
  msgstr "Editar pàgines privades"
632
 
633
  # @ ure
634
+ #: user-role-editor/includes/class-ure-lib.php:1802
635
  msgid "Read private pages"
636
  msgstr "Llegir pàgines privades"
637
 
638
  # @ ure
639
+ #: user-role-editor/includes/class-ure-lib.php:1803
640
  msgid "Delete users"
641
  msgstr "Eliminar usuaris"
642
 
643
  # @ ure
644
+ #: user-role-editor/includes/class-ure-lib.php:1804
645
  msgid "Create users"
646
  msgstr "Crear usuaris"
647
 
648
  # @ ure
649
+ #: user-role-editor/includes/class-ure-lib.php:1805
650
  msgid "Unfiltered upload"
651
  msgstr "Sense filtre de càrrega"
652
 
653
  # @ ure
654
+ #: user-role-editor/includes/class-ure-lib.php:1806
655
  msgid "Edit dashboard"
656
  msgstr "Editar taulell"
657
 
658
  # @ ure
659
+ #: user-role-editor/includes/class-ure-lib.php:1807
660
  msgid "Update plugins"
661
  msgstr "Actualitzar connectors"
662
 
663
  # @ ure
664
+ #: user-role-editor/includes/class-ure-lib.php:1808
665
  msgid "Delete plugins"
666
  msgstr "Eliminar connectors"
667
 
668
  # @ ure
669
+ #: user-role-editor/includes/class-ure-lib.php:1809
670
  msgid "Install plugins"
671
  msgstr "Instal·lar connectors"
672
 
673
  # @ ure
674
+ #: user-role-editor/includes/class-ure-lib.php:1810
675
  msgid "Update themes"
676
  msgstr "Actualitzar plantilles"
677
 
678
  # @ ure
679
+ #: user-role-editor/includes/class-ure-lib.php:1811
680
  msgid "Install themes"
681
  msgstr "Instal·lar plantilles"
682
 
683
  # @ ure
684
+ #: user-role-editor/includes/class-ure-lib.php:1812
685
  msgid "Update core"
686
  msgstr "Actualitzar nucli"
687
 
688
  # @ ure
689
+ #: user-role-editor/includes/class-ure-lib.php:1813
690
  msgid "List users"
691
  msgstr "Llistar usuaris"
692
 
693
  # @ ure
694
+ #: user-role-editor/includes/class-ure-lib.php:1814
695
  msgid "Remove users"
696
  msgstr "Eliminar usuaris"
697
 
698
  # @ ure
699
+ #: user-role-editor/includes/class-ure-lib.php:1815
700
  msgid "Add users"
701
  msgstr "Afegir usuaris"
702
 
703
  # @ ure
704
+ #: user-role-editor/includes/class-ure-lib.php:1816
705
  msgid "Promote users"
706
  msgstr "Promoure usuaris"
707
 
708
  # @ ure
709
+ #: user-role-editor/includes/class-ure-lib.php:1817
710
  msgid "Edit theme options"
711
  msgstr "Editar opcions de plantilla"
712
 
713
  # @ ure
714
+ #: user-role-editor/includes/class-ure-lib.php:1818
715
  msgid "Delete themes"
716
  msgstr "Eliminar plantilles"
717
 
718
  # @ ure
719
+ #: user-role-editor/includes/class-ure-lib.php:1819
720
  msgid "Export"
721
  msgstr "Exportar"
722
 
723
  # @ ure
724
+ #: user-role-editor/includes/class-ure-lib.php:1929
725
  msgid "Error: Capability name must contain latin characters and digits only!"
726
  msgstr ""
727
  "Error: el nom del Privilegi només ha de contenir caràcters llatins i dígits."
728
 
729
  # @ ure
730
+ #: user-role-editor/includes/class-ure-lib.php:1942
731
  #, php-format
732
  msgid "Capability %s is added successfully"
733
  msgstr "Privilegi %s s'ha afegit correctament"
734
 
735
  # @ ure
736
+ #: user-role-editor/includes/class-ure-lib.php:1944
737
  #, php-format
738
  msgid "Capability %s exists already"
739
  msgstr "Ja existeix el privilegi %s"
740
 
741
  # @ ure
742
+ #: user-role-editor/includes/class-ure-lib.php:1969
743
  #, php-format
744
  msgid "Error! You do not have permission to delete this capability: %s!"
745
  msgstr "¡Error! No tens permisos per esborrar aquest privilegi: %s !"
746
 
747
  # @ ure
748
+ #: user-role-editor/includes/class-ure-lib.php:1988
749
  #, php-format
750
  msgid "Capability %s is removed successfully"
751
  msgstr "El privilegi %s s'ha eliminat amb èxit"
752
 
753
  # @ ure
754
+ #: user-role-editor/includes/class-ure-lib.php:2085
755
  msgid "About this Plugin:"
756
  msgstr "Sobre aquest connector:"
757
 
758
  # @ ure
759
+ #: user-role-editor/includes/class-ure-lib.php:2087
760
  msgid "Author's website"
761
  msgstr "Lloc web del autor"
762
 
763
  # @ ure
764
+ #: user-role-editor/includes/class-ure-lib.php:2088
765
  msgid "Plugin webpage"
766
  msgstr "Pàgina web del connector"
767
 
768
  # @ ure
769
+ #: user-role-editor/includes/class-ure-lib.php:2090
770
  msgid "FAQ"
771
  msgstr "FAQ"
772
 
773
  # @ ure
774
+ #: user-role-editor/includes/class-ure-lib.php:2131
775
  msgid "None"
776
  msgstr "Cap"
777
 
778
+ # @ ure
779
+ #: user-role-editor/includes/class-ure-lib.php:2157
780
+ msgid "Delete All Unused Roles"
781
  msgstr ""
782
 
783
+ #: user-role-editor/includes/class-ure-lib.php:2181
784
+ msgid "&mdash; No role for this site &mdash;"
785
  msgstr ""
786
 
787
  # @ ure
788
+ #: user-role-editor/includes/ure-user-edit.php:34
789
  msgid "Change capabilities for user"
790
  msgstr "Canviar privilegis d'usuari"
791
 
792
+ #: user-role-editor/includes/ure-user-edit.php:66
793
  msgid "Primary Role:"
794
  msgstr "Rol principal:"
795
 
796
+ #: user-role-editor/includes/ure-user-edit.php:75
797
  msgid "bbPress Role:"
798
  msgstr "Rol bbPress:"
799
 
800
  # @ ure
801
+ #: user-role-editor/includes/ure-user-edit.php:85
802
  msgid "Other Roles:"
803
  msgstr "Altres rols:"
804
 
805
+ #~ msgid ""
806
+ #~ "Reset Roles to WordPress defaults. Be careful, all changes made by you or "
807
+ #~ "plugins will be lost. Some plugins, e.g. S2Member, WooCommerce "
808
+ #~ "reactivation could be needed. Continue?"
809
+ #~ msgstr ""
810
+ #~ "Restableix funcions als valors per defecte de WordPress. Aneu amb compte, "
811
+ #~ "tots els canvis realitzats per vostè o per connectors es perdran. Alguns "
812
+ #~ "connectors, per exemple, S2Member, WooCommerce, podrian necessitar una "
813
+ #~ "reactivació. Continuar?"
 
814
 
815
  # @ ure
 
816
  #, fuzzy
817
+ #~ msgid "Show capabilities in the human readable form"
818
+ #~ msgstr "Mostra privilegis de forma llegible"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
lang/ure-es_ES.mo CHANGED
Binary file
lang/ure-es_ES.po CHANGED
@@ -2,7 +2,7 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: User Role Editor 2.0\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2013-10-21 12:12+0700\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Vladimir Garagulya <vladimir@shinephp.com>\n"
8
  "Language-Team: ShinePHP.com <vladimir@shinephp.com>\n"
@@ -34,7 +34,7 @@ msgid "Settings"
34
  msgstr "Configuración"
35
 
36
  #: ../includes/class-user-role-editor.php:420
37
- #: ../includes/class-ure-lib.php:2050
38
  msgid "Changelog"
39
  msgstr "Registro de cambios"
40
 
@@ -42,13 +42,6 @@ msgstr "Registro de cambios"
42
  msgid "Overview"
43
  msgstr ""
44
 
45
- #: ../includes/class-user-role-editor.php:451
46
- #: ../includes/class-user-role-editor.php:479
47
- #: ../includes/class-user-role-editor.php:674
48
- #: ../includes/class-ure-lib.php:223
49
- msgid "User Role Editor"
50
- msgstr "Editor de Roles"
51
-
52
  #: ../includes/class-user-role-editor.php:497
53
  msgid ""
54
  "You do not have sufficient permissions to manage options for User Role "
@@ -116,7 +109,7 @@ msgid "Add Capability"
116
  msgstr "Agregar Capacidad"
117
 
118
  #: ../includes/class-user-role-editor.php:636
119
- #: ../includes/class-user-role-editor.php:641
120
  msgid "Delete Capability"
121
  msgstr "Eliminar Capacidades"
122
 
@@ -125,25 +118,34 @@ msgid "Reset"
125
  msgstr "Reiniciar"
126
 
127
  #: ../includes/class-user-role-editor.php:638
128
- msgid ""
129
- "Reset Roles to WordPress defaults. Be careful, all changes made by you or "
130
- "plugins will be lost. Some plugins, e.g. S2Member, WooCommerce reactivation "
131
- "could be needed. Continue?"
132
  msgstr ""
133
- "Reiniciar Roles a los predeterminados de WordPress. Ten cuidado, todos los "
134
- "cambios que tú hayas realizado (o ejecutados por algún plugin) se perderán. "
135
- "Algunos plugins como S2Member, WooCommerce podrían necesitar una "
136
- "reactivación ¿Deseas continuar?"
137
 
138
  #: ../includes/class-user-role-editor.php:639
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
139
  msgid "Default Role"
140
  msgstr "Rol Predeterminado"
141
 
142
- #: ../includes/class-user-role-editor.php:640
143
  msgid "Set New Default Role"
144
  msgstr "Establecer nuevo Rol"
145
 
146
- #: ../includes/class-user-role-editor.php:642
147
  msgid ""
148
  "Warning! Be careful - removing critical capability could crash some plugin "
149
  "or other custom code"
@@ -151,11 +153,11 @@ msgstr ""
151
  "¡Atención! Ten cuidado - Eliminar Capacidadess esenciales podría inhabilitar "
152
  "algún plugin o código personalizado"
153
 
154
- #: ../includes/class-user-role-editor.php:643
155
  msgid " Capability name (ID) can not be empty!"
156
  msgstr "¡El nombre de la Capacidad (ID) no puede estar vacío!"
157
 
158
- #: ../includes/class-user-role-editor.php:644
159
  msgid ""
160
  " Capability name (ID) must contain latin characters, digits, hyphens or "
161
  "underscore only!"
@@ -163,12 +165,17 @@ msgstr ""
163
  "¡El nombre de la Capacidad (ID) sólo debe contener caracteres alfanuméricos, "
164
  "guiones altos o bajos!"
165
 
166
- #: ../includes/class-user-role-editor.php:677
167
- #: ../includes/class-user-role-editor.php:705
 
 
 
 
 
168
  msgid "Other Roles"
169
  msgstr "Otros Roles"
170
 
171
- #: ../includes/class-user-role-editor.php:687
172
  msgid "Edit"
173
  msgstr "Editar"
174
 
@@ -185,7 +192,6 @@ msgid "Show capabilities in human readable form"
185
  msgstr "Mostrar Capacidades de forma legible"
186
 
187
  #: ../includes/ure-role-edit.php:40 ../includes/ure-user-edit.php:61
188
- #: ../includes/class-ure-screen-help.php:21
189
  msgid "Show deprecated capabilities"
190
  msgstr "Mostrar Capacidades obsoletas"
191
 
@@ -300,340 +306,344 @@ msgstr "Un error fue encontrado durante la creación del nuevo Rol"
300
  msgid "Role %s is created successfully"
301
  msgstr "El Rol %s fue creado exitosamente"
302
 
303
- #: ../includes/class-ure-lib.php:1662
304
  msgid "Error encountered during role delete operation"
305
  msgstr "Un error fue encontrado durante la eliminación del Rol"
306
 
307
- #: ../includes/class-ure-lib.php:1664
 
 
 
 
308
  #, php-format
309
  msgid "Role %s is deleted successfully"
310
  msgstr "El Rol %s fue eliminado exitosamente"
311
 
312
- #: ../includes/class-ure-lib.php:1689
313
  msgid "Error encountered during default role change operation"
314
  msgstr "Un error fue encontrado durante el cambio del Rol predeterminado"
315
 
316
- #: ../includes/class-ure-lib.php:1695
317
  #, php-format
318
  msgid "Default role for new users is set to %s successfully"
319
  msgstr "El Rol predeterminado para nuevos usuarios ha sido establecido a %s"
320
 
321
- #: ../includes/class-ure-lib.php:1714
322
  msgid "Editor"
323
  msgstr "Editor"
324
 
325
- #: ../includes/class-ure-lib.php:1715
326
  msgid "Author"
327
  msgstr "Autor"
328
 
329
- #: ../includes/class-ure-lib.php:1716
330
  msgid "Contributor"
331
  msgstr "Contribuyente"
332
 
333
- #: ../includes/class-ure-lib.php:1717
334
  msgid "Subscriber"
335
  msgstr "Suscriptor"
336
 
337
- #: ../includes/class-ure-lib.php:1719
338
  msgid "Switch themes"
339
  msgstr "Cambiar temas (plantillas)"
340
 
341
- #: ../includes/class-ure-lib.php:1720
342
  msgid "Edit themes"
343
  msgstr "Editar temas (plantillas)"
344
 
345
- #: ../includes/class-ure-lib.php:1721
346
  msgid "Activate plugins"
347
  msgstr "Activar plugins"
348
 
349
- #: ../includes/class-ure-lib.php:1722
350
  msgid "Edit plugins"
351
  msgstr "Editar plugins"
352
 
353
- #: ../includes/class-ure-lib.php:1723
354
  msgid "Edit users"
355
  msgstr "Editar usuarios"
356
 
357
- #: ../includes/class-ure-lib.php:1724
358
  msgid "Edit files"
359
  msgstr "Editar archivos"
360
 
361
- #: ../includes/class-ure-lib.php:1725
362
  msgid "Manage options"
363
  msgstr "Administrar opciones"
364
 
365
- #: ../includes/class-ure-lib.php:1726
366
  msgid "Moderate comments"
367
  msgstr "Moderar comentarios"
368
 
369
- #: ../includes/class-ure-lib.php:1727
370
  msgid "Manage categories"
371
  msgstr "Administrar categorías"
372
 
373
- #: ../includes/class-ure-lib.php:1728
374
  msgid "Manage links"
375
  msgstr "Administrar enlaces"
376
 
377
- #: ../includes/class-ure-lib.php:1729
378
  msgid "Upload files"
379
  msgstr "Subir archivos"
380
 
381
- #: ../includes/class-ure-lib.php:1730
382
  msgid "Import"
383
  msgstr "Importar"
384
 
385
- #: ../includes/class-ure-lib.php:1731
386
  msgid "Unfiltered html"
387
  msgstr "HTML sin filtrar"
388
 
389
- #: ../includes/class-ure-lib.php:1732
390
  msgid "Edit posts"
391
  msgstr "Editar entradas"
392
 
393
- #: ../includes/class-ure-lib.php:1733
394
  msgid "Edit others posts"
395
  msgstr "Editar entradas ajenas"
396
 
397
- #: ../includes/class-ure-lib.php:1734
398
  msgid "Edit published posts"
399
  msgstr "Editar entradas publicadas"
400
 
401
- #: ../includes/class-ure-lib.php:1735
402
  msgid "Publish posts"
403
  msgstr "Publicar entradas"
404
 
405
- #: ../includes/class-ure-lib.php:1736
406
  msgid "Edit pages"
407
  msgstr "Editar páginas"
408
 
409
- #: ../includes/class-ure-lib.php:1737
410
  msgid "Read"
411
  msgstr "Leer"
412
 
413
- #: ../includes/class-ure-lib.php:1738
414
  msgid "Level 10"
415
  msgstr "Nivel 10"
416
 
417
- #: ../includes/class-ure-lib.php:1739
418
  msgid "Level 9"
419
  msgstr "Nivel 9"
420
 
421
- #: ../includes/class-ure-lib.php:1740
422
  msgid "Level 8"
423
  msgstr "Nivel 8"
424
 
425
- #: ../includes/class-ure-lib.php:1741
426
  msgid "Level 7"
427
  msgstr "Nivel 7"
428
 
429
- #: ../includes/class-ure-lib.php:1742
430
  msgid "Level 6"
431
  msgstr "Nivel 6"
432
 
433
- #: ../includes/class-ure-lib.php:1743
434
  msgid "Level 5"
435
  msgstr "Nivel 5"
436
 
437
- #: ../includes/class-ure-lib.php:1744
438
  msgid "Level 4"
439
  msgstr "Nivel 4"
440
 
441
- #: ../includes/class-ure-lib.php:1745
442
  msgid "Level 3"
443
  msgstr "Nivel 3"
444
 
445
- #: ../includes/class-ure-lib.php:1746
446
  msgid "Level 2"
447
  msgstr "Nivel 2"
448
 
449
- #: ../includes/class-ure-lib.php:1747
450
  msgid "Level 1"
451
  msgstr "Nivel 1"
452
 
453
- #: ../includes/class-ure-lib.php:1748
454
  msgid "Level 0"
455
  msgstr "Nivel 0"
456
 
457
- #: ../includes/class-ure-lib.php:1749
458
  msgid "Edit others pages"
459
  msgstr "Editar páginas ajenas"
460
 
461
- #: ../includes/class-ure-lib.php:1750
462
  msgid "Edit published pages"
463
  msgstr "Editar páginas publicadas"
464
 
465
- #: ../includes/class-ure-lib.php:1751
466
  msgid "Publish pages"
467
  msgstr "Publicar páginas"
468
 
469
- #: ../includes/class-ure-lib.php:1752
470
  msgid "Delete pages"
471
  msgstr "Eliminar páginas"
472
 
473
- #: ../includes/class-ure-lib.php:1753
474
  msgid "Delete others pages"
475
  msgstr "Eliminar páginas ajenas"
476
 
477
- #: ../includes/class-ure-lib.php:1754
478
  msgid "Delete published pages"
479
  msgstr "Eliminar páginas publicadas"
480
 
481
- #: ../includes/class-ure-lib.php:1755
482
  msgid "Delete posts"
483
  msgstr "Eliminar entradas"
484
 
485
- #: ../includes/class-ure-lib.php:1756
486
  msgid "Delete others posts"
487
  msgstr "Eliminar entradas ajenas"
488
 
489
- #: ../includes/class-ure-lib.php:1757
490
  msgid "Delete published posts"
491
  msgstr "Eliminar entradas publicadas"
492
 
493
- #: ../includes/class-ure-lib.php:1758
494
  msgid "Delete private posts"
495
  msgstr "Eliminar entradas privadas"
496
 
497
- #: ../includes/class-ure-lib.php:1759
498
  msgid "Edit private posts"
499
  msgstr "Editar entradas privadas"
500
 
501
- #: ../includes/class-ure-lib.php:1760
502
  msgid "Read private posts"
503
  msgstr "Leer entradas privadas"
504
 
505
- #: ../includes/class-ure-lib.php:1761
506
  msgid "Delete private pages"
507
  msgstr "Eliminar páginas privadas"
508
 
509
- #: ../includes/class-ure-lib.php:1762
510
  msgid "Edit private pages"
511
  msgstr "Editar páginas privadas"
512
 
513
- #: ../includes/class-ure-lib.php:1763
514
  msgid "Read private pages"
515
  msgstr "Leer páginas privadas"
516
 
517
- #: ../includes/class-ure-lib.php:1764
518
  msgid "Delete users"
519
  msgstr "Eliminar usuarios"
520
 
521
- #: ../includes/class-ure-lib.php:1765
522
  msgid "Create users"
523
  msgstr "Crear usuarios"
524
 
525
- #: ../includes/class-ure-lib.php:1766
526
  msgid "Unfiltered upload"
527
  msgstr "Subir sin filtrado"
528
 
529
- #: ../includes/class-ure-lib.php:1767
530
  msgid "Edit dashboard"
531
  msgstr "Editar escritorio"
532
 
533
- #: ../includes/class-ure-lib.php:1768
534
  msgid "Update plugins"
535
  msgstr "Actualizar plugins"
536
 
537
- #: ../includes/class-ure-lib.php:1769
538
  msgid "Delete plugins"
539
  msgstr "Eliminar plugins"
540
 
541
- #: ../includes/class-ure-lib.php:1770
542
  msgid "Install plugins"
543
  msgstr "Instalar plugins"
544
 
545
- #: ../includes/class-ure-lib.php:1771
546
  msgid "Update themes"
547
  msgstr "Actualizar temas (plantillas)"
548
 
549
- #: ../includes/class-ure-lib.php:1772
550
  msgid "Install themes"
551
  msgstr "Instalar temas (plantillas)"
552
 
553
- #: ../includes/class-ure-lib.php:1773
554
  msgid "Update core"
555
  msgstr "Actualizar núcleo"
556
 
557
- #: ../includes/class-ure-lib.php:1774
558
  msgid "List users"
559
  msgstr "Listar usuarios"
560
 
561
- #: ../includes/class-ure-lib.php:1775
562
  msgid "Remove users"
563
  msgstr "Eliminar usuarios"
564
 
565
- #: ../includes/class-ure-lib.php:1776
566
  msgid "Add users"
567
  msgstr "Agregar usuarios"
568
 
569
- #: ../includes/class-ure-lib.php:1777
570
  msgid "Promote users"
571
  msgstr "Promover usuarios"
572
 
573
- #: ../includes/class-ure-lib.php:1778
574
  msgid "Edit theme options"
575
  msgstr "Editar opciones del tema (plantilla)"
576
 
577
- #: ../includes/class-ure-lib.php:1779
578
  msgid "Delete themes"
579
  msgstr "Eliminar temas (plantillas)"
580
 
581
- #: ../includes/class-ure-lib.php:1780
582
  msgid "Export"
583
  msgstr "Exportar"
584
 
585
- #: ../includes/class-ure-lib.php:1890
586
  msgid "Error: Capability name must contain latin characters and digits only!"
587
  msgstr ""
588
  "Error: El nombre de la Capacidad sólo debe contener caracteres alfanuméricos!"
589
 
590
- #: ../includes/class-ure-lib.php:1903
591
  #, php-format
592
  msgid "Capability %s is added successfully"
593
  msgstr "La Capacidad %s fue agregada exitosamente"
594
 
595
- #: ../includes/class-ure-lib.php:1905
596
  #, php-format
597
  msgid "Capability %s exists already"
598
  msgstr "La Capacidad %s ya existe"
599
 
600
- #: ../includes/class-ure-lib.php:1930
601
  #, php-format
602
  msgid "Error! You do not have permission to delete this capability: %s!"
603
  msgstr ""
604
  "¡Error! No cuentas con suficientes permisos para eliminar esta Capacidad: %s!"
605
 
606
- #: ../includes/class-ure-lib.php:1949
607
  #, php-format
608
  msgid "Capability %s is removed successfully"
609
  msgstr "La Capacidad %s fue eliminada exitosamente"
610
 
611
- #: ../includes/class-ure-lib.php:2046
612
  msgid "About this Plugin:"
613
  msgstr "Acerca de este Plugin:"
614
 
615
- #: ../includes/class-ure-lib.php:2048
616
  msgid "Author's website"
617
  msgstr "Sitio web del Autor"
618
 
619
- #: ../includes/class-ure-lib.php:2049
620
  msgid "Plugin webpage"
621
  msgstr "Página web del Plugin"
622
 
623
- #: ../includes/class-ure-lib.php:2051
624
  msgid "FAQ"
625
  msgstr "FAQ"
626
 
627
- #: ../includes/class-ure-lib.php:2092
628
  msgid "None"
629
  msgstr "Ninguno"
630
 
631
- #: ../includes/class-ure-lib.php:2141
632
- msgid "&mdash; No role for this site &mdash;"
633
  msgstr ""
634
 
635
- #: ../includes/ure-user-edit.php:31
636
- msgid "Network Super Admin"
637
  msgstr ""
638
 
639
  #: ../includes/ure-user-edit.php:34
@@ -652,45 +662,15 @@ msgstr "Rol de bbPress:"
652
  msgid "Other Roles:"
653
  msgstr "Otros Roles:"
654
 
655
- #: ../includes/class-ure-screen-help.php:15
656
- msgid "Show Administrator role at User Role Editor"
657
- msgstr ""
658
-
659
- #: ../includes/class-ure-screen-help.php:16
660
- msgid ""
661
- "turn this option on in order to make the \"Administrator\" role available at "
662
- "the User Role Editor roles selection drop-down list. It is hidden by default "
663
- "for security reasons."
664
- msgstr ""
665
-
666
- #: ../includes/class-ure-screen-help.php:18
667
- msgid "Show capabilities in the human readable form"
668
- msgstr ""
669
-
670
- #: ../includes/class-ure-screen-help.php:19
671
- msgid ""
672
- "automatically converts capability names from the technical form for internal "
673
- "use like \"edit_others_posts\" to more user friendly form, e.g. \"Edit "
674
- "others posts\"."
675
- msgstr ""
676
-
677
- #: ../includes/class-ure-screen-help.php:22
678
- msgid ""
679
- "Capabilities like \"level_0\", \"level_1\" are deprecated and are not used "
680
- "by WordPress. They are left at the user roles for the compatibility purpose "
681
- "with the old themes and plugins code. Turning on this option will show those "
682
- "deprecated capabilities."
683
- msgstr ""
684
-
685
- #: ../includes/class-ure-screen-help.php:27
686
- msgid "Allow create, edit and delete users to not super-admininstrators"
687
- msgstr ""
688
-
689
- #: ../includes/class-ure-screen-help.php:28
690
- msgid ""
691
- "Super administrator only may create, edit and delete users under WordPress "
692
- "multi-site. Turn this option on in order to remove this limitation."
693
- msgstr ""
694
 
695
  #~ msgid "Only"
696
  #~ msgstr "Solamente"
2
  msgstr ""
3
  "Project-Id-Version: User Role Editor 2.0\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2013-11-04 08:40+0700\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Vladimir Garagulya <vladimir@shinephp.com>\n"
8
  "Language-Team: ShinePHP.com <vladimir@shinephp.com>\n"
34
  msgstr "Configuración"
35
 
36
  #: ../includes/class-user-role-editor.php:420
37
+ #: ../includes/class-ure-lib.php:2089
38
  msgid "Changelog"
39
  msgstr "Registro de cambios"
40
 
42
  msgid "Overview"
43
  msgstr ""
44
 
 
 
 
 
 
 
 
45
  #: ../includes/class-user-role-editor.php:497
46
  msgid ""
47
  "You do not have sufficient permissions to manage options for User Role "
109
  msgstr "Agregar Capacidad"
110
 
111
  #: ../includes/class-user-role-editor.php:636
112
+ #: ../includes/class-user-role-editor.php:645
113
  msgid "Delete Capability"
114
  msgstr "Eliminar Capacidades"
115
 
118
  msgstr "Reiniciar"
119
 
120
  #: ../includes/class-user-role-editor.php:638
121
+ msgid "DANGER! Resetting will restore default settings from WordPress Core."
 
 
 
122
  msgstr ""
 
 
 
 
123
 
124
  #: ../includes/class-user-role-editor.php:639
125
+ msgid ""
126
+ "If any plugins have changed capabilities in any way upon installation (such "
127
+ "as S2Member, WooCommerce, and many more), those capabilities will be DELETED!"
128
+ msgstr ""
129
+
130
+ #: ../includes/class-user-role-editor.php:640
131
+ msgid ""
132
+ "For more information on how to undo changes and restore plugin capabilities "
133
+ "go to"
134
+ msgstr ""
135
+
136
+ #: ../includes/class-user-role-editor.php:642
137
+ msgid "Continue?"
138
+ msgstr ""
139
+
140
+ #: ../includes/class-user-role-editor.php:643
141
  msgid "Default Role"
142
  msgstr "Rol Predeterminado"
143
 
144
+ #: ../includes/class-user-role-editor.php:644
145
  msgid "Set New Default Role"
146
  msgstr "Establecer nuevo Rol"
147
 
148
+ #: ../includes/class-user-role-editor.php:646
149
  msgid ""
150
  "Warning! Be careful - removing critical capability could crash some plugin "
151
  "or other custom code"
153
  "¡Atención! Ten cuidado - Eliminar Capacidadess esenciales podría inhabilitar "
154
  "algún plugin o código personalizado"
155
 
156
+ #: ../includes/class-user-role-editor.php:647
157
  msgid " Capability name (ID) can not be empty!"
158
  msgstr "¡El nombre de la Capacidad (ID) no puede estar vacío!"
159
 
160
+ #: ../includes/class-user-role-editor.php:648
161
  msgid ""
162
  " Capability name (ID) must contain latin characters, digits, hyphens or "
163
  "underscore only!"
165
  "¡El nombre de la Capacidad (ID) sólo debe contener caracteres alfanuméricos, "
166
  "guiones altos o bajos!"
167
 
168
+ #: ../includes/class-user-role-editor.php:678
169
+ #: ../includes/class-ure-lib.php:223
170
+ msgid "User Role Editor"
171
+ msgstr "Editor de Roles"
172
+
173
+ #: ../includes/class-user-role-editor.php:681
174
+ #: ../includes/class-user-role-editor.php:709
175
  msgid "Other Roles"
176
  msgstr "Otros Roles"
177
 
178
+ #: ../includes/class-user-role-editor.php:691
179
  msgid "Edit"
180
  msgstr "Editar"
181
 
192
  msgstr "Mostrar Capacidades de forma legible"
193
 
194
  #: ../includes/ure-role-edit.php:40 ../includes/ure-user-edit.php:61
 
195
  msgid "Show deprecated capabilities"
196
  msgstr "Mostrar Capacidades obsoletas"
197
 
306
  msgid "Role %s is created successfully"
307
  msgstr "El Rol %s fue creado exitosamente"
308
 
309
+ #: ../includes/class-ure-lib.php:1699
310
  msgid "Error encountered during role delete operation"
311
  msgstr "Un error fue encontrado durante la eliminación del Rol"
312
 
313
+ #: ../includes/class-ure-lib.php:1701
314
+ msgid "Unused roles are deleted successfully"
315
+ msgstr ""
316
+
317
+ #: ../includes/class-ure-lib.php:1703
318
  #, php-format
319
  msgid "Role %s is deleted successfully"
320
  msgstr "El Rol %s fue eliminado exitosamente"
321
 
322
+ #: ../includes/class-ure-lib.php:1728
323
  msgid "Error encountered during default role change operation"
324
  msgstr "Un error fue encontrado durante el cambio del Rol predeterminado"
325
 
326
+ #: ../includes/class-ure-lib.php:1734
327
  #, php-format
328
  msgid "Default role for new users is set to %s successfully"
329
  msgstr "El Rol predeterminado para nuevos usuarios ha sido establecido a %s"
330
 
331
+ #: ../includes/class-ure-lib.php:1753
332
  msgid "Editor"
333
  msgstr "Editor"
334
 
335
+ #: ../includes/class-ure-lib.php:1754
336
  msgid "Author"
337
  msgstr "Autor"
338
 
339
+ #: ../includes/class-ure-lib.php:1755
340
  msgid "Contributor"
341
  msgstr "Contribuyente"
342
 
343
+ #: ../includes/class-ure-lib.php:1756
344
  msgid "Subscriber"
345
  msgstr "Suscriptor"
346
 
347
+ #: ../includes/class-ure-lib.php:1758
348
  msgid "Switch themes"
349
  msgstr "Cambiar temas (plantillas)"
350
 
351
+ #: ../includes/class-ure-lib.php:1759
352
  msgid "Edit themes"
353
  msgstr "Editar temas (plantillas)"
354
 
355
+ #: ../includes/class-ure-lib.php:1760
356
  msgid "Activate plugins"
357
  msgstr "Activar plugins"
358
 
359
+ #: ../includes/class-ure-lib.php:1761
360
  msgid "Edit plugins"
361
  msgstr "Editar plugins"
362
 
363
+ #: ../includes/class-ure-lib.php:1762
364
  msgid "Edit users"
365
  msgstr "Editar usuarios"
366
 
367
+ #: ../includes/class-ure-lib.php:1763
368
  msgid "Edit files"
369
  msgstr "Editar archivos"
370
 
371
+ #: ../includes/class-ure-lib.php:1764
372
  msgid "Manage options"
373
  msgstr "Administrar opciones"
374
 
375
+ #: ../includes/class-ure-lib.php:1765
376
  msgid "Moderate comments"
377
  msgstr "Moderar comentarios"
378
 
379
+ #: ../includes/class-ure-lib.php:1766
380
  msgid "Manage categories"
381
  msgstr "Administrar categorías"
382
 
383
+ #: ../includes/class-ure-lib.php:1767
384
  msgid "Manage links"
385
  msgstr "Administrar enlaces"
386
 
387
+ #: ../includes/class-ure-lib.php:1768
388
  msgid "Upload files"
389
  msgstr "Subir archivos"
390
 
391
+ #: ../includes/class-ure-lib.php:1769
392
  msgid "Import"
393
  msgstr "Importar"
394
 
395
+ #: ../includes/class-ure-lib.php:1770
396
  msgid "Unfiltered html"
397
  msgstr "HTML sin filtrar"
398
 
399
+ #: ../includes/class-ure-lib.php:1771
400
  msgid "Edit posts"
401
  msgstr "Editar entradas"
402
 
403
+ #: ../includes/class-ure-lib.php:1772
404
  msgid "Edit others posts"
405
  msgstr "Editar entradas ajenas"
406
 
407
+ #: ../includes/class-ure-lib.php:1773
408
  msgid "Edit published posts"
409
  msgstr "Editar entradas publicadas"
410
 
411
+ #: ../includes/class-ure-lib.php:1774
412
  msgid "Publish posts"
413
  msgstr "Publicar entradas"
414
 
415
+ #: ../includes/class-ure-lib.php:1775
416
  msgid "Edit pages"
417
  msgstr "Editar páginas"
418
 
419
+ #: ../includes/class-ure-lib.php:1776
420
  msgid "Read"
421
  msgstr "Leer"
422
 
423
+ #: ../includes/class-ure-lib.php:1777
424
  msgid "Level 10"
425
  msgstr "Nivel 10"
426
 
427
+ #: ../includes/class-ure-lib.php:1778
428
  msgid "Level 9"
429
  msgstr "Nivel 9"
430
 
431
+ #: ../includes/class-ure-lib.php:1779
432
  msgid "Level 8"
433
  msgstr "Nivel 8"
434
 
435
+ #: ../includes/class-ure-lib.php:1780
436
  msgid "Level 7"
437
  msgstr "Nivel 7"
438
 
439
+ #: ../includes/class-ure-lib.php:1781
440
  msgid "Level 6"
441
  msgstr "Nivel 6"
442
 
443
+ #: ../includes/class-ure-lib.php:1782
444
  msgid "Level 5"
445
  msgstr "Nivel 5"
446
 
447
+ #: ../includes/class-ure-lib.php:1783
448
  msgid "Level 4"
449
  msgstr "Nivel 4"
450
 
451
+ #: ../includes/class-ure-lib.php:1784
452
  msgid "Level 3"
453
  msgstr "Nivel 3"
454
 
455
+ #: ../includes/class-ure-lib.php:1785
456
  msgid "Level 2"
457
  msgstr "Nivel 2"
458
 
459
+ #: ../includes/class-ure-lib.php:1786
460
  msgid "Level 1"
461
  msgstr "Nivel 1"
462
 
463
+ #: ../includes/class-ure-lib.php:1787
464
  msgid "Level 0"
465
  msgstr "Nivel 0"
466
 
467
+ #: ../includes/class-ure-lib.php:1788
468
  msgid "Edit others pages"
469
  msgstr "Editar páginas ajenas"
470
 
471
+ #: ../includes/class-ure-lib.php:1789
472
  msgid "Edit published pages"
473
  msgstr "Editar páginas publicadas"
474
 
475
+ #: ../includes/class-ure-lib.php:1790
476
  msgid "Publish pages"
477
  msgstr "Publicar páginas"
478
 
479
+ #: ../includes/class-ure-lib.php:1791
480
  msgid "Delete pages"
481
  msgstr "Eliminar páginas"
482
 
483
+ #: ../includes/class-ure-lib.php:1792
484
  msgid "Delete others pages"
485
  msgstr "Eliminar páginas ajenas"
486
 
487
+ #: ../includes/class-ure-lib.php:1793
488
  msgid "Delete published pages"
489
  msgstr "Eliminar páginas publicadas"
490
 
491
+ #: ../includes/class-ure-lib.php:1794
492
  msgid "Delete posts"
493
  msgstr "Eliminar entradas"
494
 
495
+ #: ../includes/class-ure-lib.php:1795
496
  msgid "Delete others posts"
497
  msgstr "Eliminar entradas ajenas"
498
 
499
+ #: ../includes/class-ure-lib.php:1796
500
  msgid "Delete published posts"
501
  msgstr "Eliminar entradas publicadas"
502
 
503
+ #: ../includes/class-ure-lib.php:1797
504
  msgid "Delete private posts"
505
  msgstr "Eliminar entradas privadas"
506
 
507
+ #: ../includes/class-ure-lib.php:1798
508
  msgid "Edit private posts"
509
  msgstr "Editar entradas privadas"
510
 
511
+ #: ../includes/class-ure-lib.php:1799
512
  msgid "Read private posts"
513
  msgstr "Leer entradas privadas"
514
 
515
+ #: ../includes/class-ure-lib.php:1800
516
  msgid "Delete private pages"
517
  msgstr "Eliminar páginas privadas"
518
 
519
+ #: ../includes/class-ure-lib.php:1801
520
  msgid "Edit private pages"
521
  msgstr "Editar páginas privadas"
522
 
523
+ #: ../includes/class-ure-lib.php:1802
524
  msgid "Read private pages"
525
  msgstr "Leer páginas privadas"
526
 
527
+ #: ../includes/class-ure-lib.php:1803
528
  msgid "Delete users"
529
  msgstr "Eliminar usuarios"
530
 
531
+ #: ../includes/class-ure-lib.php:1804
532
  msgid "Create users"
533
  msgstr "Crear usuarios"
534
 
535
+ #: ../includes/class-ure-lib.php:1805
536
  msgid "Unfiltered upload"
537
  msgstr "Subir sin filtrado"
538
 
539
+ #: ../includes/class-ure-lib.php:1806
540
  msgid "Edit dashboard"
541
  msgstr "Editar escritorio"
542
 
543
+ #: ../includes/class-ure-lib.php:1807
544
  msgid "Update plugins"
545
  msgstr "Actualizar plugins"
546
 
547
+ #: ../includes/class-ure-lib.php:1808
548
  msgid "Delete plugins"
549
  msgstr "Eliminar plugins"
550
 
551
+ #: ../includes/class-ure-lib.php:1809
552
  msgid "Install plugins"
553
  msgstr "Instalar plugins"
554
 
555
+ #: ../includes/class-ure-lib.php:1810
556
  msgid "Update themes"
557
  msgstr "Actualizar temas (plantillas)"
558
 
559
+ #: ../includes/class-ure-lib.php:1811
560
  msgid "Install themes"
561
  msgstr "Instalar temas (plantillas)"
562
 
563
+ #: ../includes/class-ure-lib.php:1812
564
  msgid "Update core"
565
  msgstr "Actualizar núcleo"
566
 
567
+ #: ../includes/class-ure-lib.php:1813
568
  msgid "List users"
569
  msgstr "Listar usuarios"
570
 
571
+ #: ../includes/class-ure-lib.php:1814
572
  msgid "Remove users"
573
  msgstr "Eliminar usuarios"
574
 
575
+ #: ../includes/class-ure-lib.php:1815
576
  msgid "Add users"
577
  msgstr "Agregar usuarios"
578
 
579
+ #: ../includes/class-ure-lib.php:1816
580
  msgid "Promote users"
581
  msgstr "Promover usuarios"
582
 
583
+ #: ../includes/class-ure-lib.php:1817
584
  msgid "Edit theme options"
585
  msgstr "Editar opciones del tema (plantilla)"
586
 
587
+ #: ../includes/class-ure-lib.php:1818
588
  msgid "Delete themes"
589
  msgstr "Eliminar temas (plantillas)"
590
 
591
+ #: ../includes/class-ure-lib.php:1819
592
  msgid "Export"
593
  msgstr "Exportar"
594
 
595
+ #: ../includes/class-ure-lib.php:1929
596
  msgid "Error: Capability name must contain latin characters and digits only!"
597
  msgstr ""
598
  "Error: El nombre de la Capacidad sólo debe contener caracteres alfanuméricos!"
599
 
600
+ #: ../includes/class-ure-lib.php:1942
601
  #, php-format
602
  msgid "Capability %s is added successfully"
603
  msgstr "La Capacidad %s fue agregada exitosamente"
604
 
605
+ #: ../includes/class-ure-lib.php:1944
606
  #, php-format
607
  msgid "Capability %s exists already"
608
  msgstr "La Capacidad %s ya existe"
609
 
610
+ #: ../includes/class-ure-lib.php:1969
611
  #, php-format
612
  msgid "Error! You do not have permission to delete this capability: %s!"
613
  msgstr ""
614
  "¡Error! No cuentas con suficientes permisos para eliminar esta Capacidad: %s!"
615
 
616
+ #: ../includes/class-ure-lib.php:1988
617
  #, php-format
618
  msgid "Capability %s is removed successfully"
619
  msgstr "La Capacidad %s fue eliminada exitosamente"
620
 
621
+ #: ../includes/class-ure-lib.php:2085
622
  msgid "About this Plugin:"
623
  msgstr "Acerca de este Plugin:"
624
 
625
+ #: ../includes/class-ure-lib.php:2087
626
  msgid "Author's website"
627
  msgstr "Sitio web del Autor"
628
 
629
+ #: ../includes/class-ure-lib.php:2088
630
  msgid "Plugin webpage"
631
  msgstr "Página web del Plugin"
632
 
633
+ #: ../includes/class-ure-lib.php:2090
634
  msgid "FAQ"
635
  msgstr "FAQ"
636
 
637
+ #: ../includes/class-ure-lib.php:2131
638
  msgid "None"
639
  msgstr "Ninguno"
640
 
641
+ #: ../includes/class-ure-lib.php:2157
642
+ msgid "Delete All Unused Roles"
643
  msgstr ""
644
 
645
+ #: ../includes/class-ure-lib.php:2181
646
+ msgid "&mdash; No role for this site &mdash;"
647
  msgstr ""
648
 
649
  #: ../includes/ure-user-edit.php:34
662
  msgid "Other Roles:"
663
  msgstr "Otros Roles:"
664
 
665
+ #~ msgid ""
666
+ #~ "Reset Roles to WordPress defaults. Be careful, all changes made by you or "
667
+ #~ "plugins will be lost. Some plugins, e.g. S2Member, WooCommerce "
668
+ #~ "reactivation could be needed. Continue?"
669
+ #~ msgstr ""
670
+ #~ "Reiniciar Roles a los predeterminados de WordPress. Ten cuidado, todos "
671
+ #~ "los cambios que hayas realizado (o ejecutados por algún plugin) se "
672
+ #~ "perderán. Algunos plugins como S2Member, WooCommerce podrían necesitar "
673
+ #~ "una reactivación ¿Deseas continuar?"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
674
 
675
  #~ msgid "Only"
676
  #~ msgstr "Solamente"
lang/ure-he_IL.mo CHANGED
Binary file
lang/ure-he_IL.po CHANGED
@@ -3,1540 +3,1298 @@
3
  # http://wpml.org
4
  msgid ""
5
  msgstr ""
6
- "Content-Type: text/plain; charset=UTF-8\n"
7
- "Content-Transfer-Encoding: 8bit\n"
8
  "Project-Id-Version: User Role Editor\n"
9
- "POT-Creation-Date: \n"
 
10
  "PO-Revision-Date: \n"
11
  "Last-Translator: Vladimir Garagulya <vladimir@shinephp.com>\n"
12
  "Language-Team: Ahrale, Atar4U.com <contact@atar4u.com>\n"
13
- "MIME-Version: 1.0\n"
14
  "Language: Hebrew עברית he_IL\n"
 
 
 
15
  "X-Generator: Poedit 1.5.4\n"
16
  "X-Poedit-SourceCharset: UTF-8\n"
17
 
18
- #
19
- #
20
- #
21
- # wpml-name: 43c90d49e4c2bd2269c7702d143184aa
22
- msgid "3.5.3"
23
- msgstr "3.5.3"
24
-
25
- #
26
- #
27
- #
28
- # wpml-name: d914205702ec96b3b39b44d4f6ce4ada
29
- msgid "http://www.shinephp.com"
30
- msgstr "http://www.shinephp.com"
31
-
32
- #
33
- #
34
- #
35
- # wpml-name: 59651fdc650e78856a160a03761ed4d1
36
- msgid "Vladimir Garagulya"
37
- msgstr "Vladimir Garagulya"
38
 
39
- #
40
- #
41
- #
42
- # wpml-name: 68326db2363244c533be873377f898e2
43
- msgid ""
44
- "It allows you to change/add/delete any WordPress user role (except "
45
- "administrator) capabilities list with a few clicks."
46
  msgstr ""
47
- "זה מאפשר לך לשנות\\להוסיף\\למחוק את רשימת היכולות של כל בעל תפקיד בוורדפרס "
48
- "(חוץ ממנהל) בכמה לחיצות עכבר."
49
-
50
- #
51
- #
52
- #
53
- # wpml-name: ea9b0e14ead2e39258208a63c62e738d
54
- msgid "http://www.shinephp.com/user-role-editor-wordpress-plugin/"
55
- msgstr "http://www.shinephp.com/user-role-editor-wordpress-plugin/"
56
 
57
- #
58
- #
59
- #
60
- # wpml-name: 4130d2f46523a6dd9b7976ab822e7034
61
- msgid "For the updated Swedish translation"
62
- msgstr "לתרגום המעודכן לשוודית"
 
63
 
64
- #
65
- #
66
- #
67
- # wpml-name: 9da790dcde25724425970d0efa4564a8
68
- msgid "For the help with Hebrew translation"
69
- msgstr "לעזרה עם התרגום לעברית"
 
70
 
71
- #
72
- #
73
- #
74
- # wpml-name: b068931cc450442b63f5b3d276ea4297
75
- msgid "name"
76
- msgstr "שם"
 
 
77
 
78
- #
79
- #
80
- #
81
- # wpml-name: 563e800b4de0b5ebaf1d7b1bb1b027c1
82
- msgid "Error: Role name must contain latin characters and digits only!"
83
- msgstr "שגיאה! השם של סוג המשתמש חייב להיות מורכב מאותיות באנגלית וספרות בלבד"
84
 
85
- #
86
- #
87
- #
88
- # wpml-name: be0b381e6392aea129a21db10af13e37
89
- msgid "Backup record is created for the current role capabilities"
90
- msgstr "גיבוי נוצר עבור יכולות סוגי המשתמשים הנוכחיים"
 
 
 
 
91
 
92
- #
93
- #
94
- #
95
- # wpml-name: 3147727e9ab954adef001f91128712e7
96
  msgid ""
97
- "No backup data. It is created automatically before the first role data "
98
- "update."
99
  msgstr ""
100
- "אין קובץ גיבוי. מידע זה נוצר באופן אוטומטי לפני השינוי הראשון שאתם עושים "
101
- "בהגדרות סוגי המשתמשים."
102
-
103
- #
104
- #
105
- #
106
- # wpml-name: cb6869294ec0c7a7790b7d048cffcbfa
107
- msgid "Database operation error. Check log file."
108
- msgstr "שגיאת מסד נתונים, אנא בדוק את קובץ היומן."
109
-
110
- #
111
- #
112
- #
113
- # wpml-name: accc157f691724053294551e39e140df
114
- msgid "User Role Editor requires PHP 5.0 or newer."
115
- msgstr "התוסף User Role Editor מחייב אחסון עם PHP 5.0 ומעלה"
116
-
117
- #
118
- #
119
- #
120
- # wpml-name: b9132210fa44bad7bb224c06c5aaa842
121
- msgid "Please update!"
122
- msgstr "אנא עדכן!"
123
 
124
- #
125
- #
126
- #
127
- # wpml-name: 7b4c00f004a37127175c86fdc7267983
128
- msgid "User Role Editor requires WordPress 3.0 or newer."
129
- msgstr "התוסף User Role Editor מתאים לאתרי וורדפרס בגרסה 3.0 ומעלה"
 
130
 
131
- #
132
- #
133
- #
134
- # wpml-name: e3c4cb24789980b4a340e92561338ecf
135
- msgid ""
136
- "Do you wish to see your name with link to your site here? You are welcome! "
137
- "Your help with translation and new ideas are very appreciated."
138
  msgstr ""
139
- "רוצה לראות את השם שלך עם קישור אל האתר שלך כאן? אתה מוזמן לעזור עם התרגום "
140
- "ועם רעיונות ושיפורים חדשים"
141
 
142
- #
143
- #
144
- #
145
- # wpml-name: e0af9c44871c8eeb5475ac08d8c305ae
146
- msgid "For the code enhancement suggestion"
147
- msgstr "הצעות לשיפור קוד"
 
148
 
149
- #
150
- #
151
- #
152
- # wpml-name: 4397787c8b3ea95be736439c65a506b3
153
- msgid "For the code to hide administrator role"
154
- msgstr "עבור קוד כדי להחביא את סוג משתמש מנהל"
 
155
 
156
- #
157
- #
158
- #
159
- # wpml-name: c010be7b08d958737a03a61ac2c7f682
160
- msgid "For the help with Turkish translation"
161
- msgstr "לעזרה עם תרגום לטורקית"
 
162
 
163
- #
164
- #
165
- #
166
- # wpml-name: fd2f14e7a74f804bae9f27b916132c4d
167
- msgid "For the help with Swedish translation"
168
- msgstr "לעזרה עם תרגום לשוודית"
 
169
 
170
- #
171
- #
172
- #
173
- # wpml-name: 58827ca07db8664c2aee7417d9bf43e5
174
- msgid "For the help with Spanish translation"
175
- msgstr "לעזרה עם תרגום לספרדית"
 
176
 
177
- #
178
- #
179
- #
180
- # wpml-name: 3399f76309855d1178e76370c4deffdc
181
- msgid "For the help with Polish translation"
182
- msgstr "לעזרה עם תרגום לפולנית"
 
183
 
184
- #
185
- #
186
- #
187
- # wpml-name: a19f2da000275babaf585c97a3cd3e0e
188
- msgid "For the help with Persian translation"
189
- msgstr "לעזרה עם תרגום לפרסית"
 
190
 
191
- #
192
- #
193
- #
194
- # wpml-name: c287240ffa3dfcb5fcc3ce8aaa3e58c0
195
- msgid "For the help with Japanese translation"
196
- msgstr "לעזרה עם תרגום ליפנית"
 
 
 
 
197
 
198
- #
199
- #
200
- #
201
- # wpml-name: 21ad771775798cb076a7bbc76e14e224
202
- msgid "For the help with Italian translation"
203
- msgstr "לעזרה עם תרגום לאילטקית"
 
204
 
205
- #
206
- #
207
- #
208
- # wpml-name: 396777c7988d2243e82e5127bcfa6048
209
- msgid "For the help with Hungarian translation"
210
- msgstr "לעזרה עם תרגום להונגרית"
 
211
 
212
- #
213
- #
214
- #
215
- # wpml-name: 577001c75be2f223eeffdef9127b8f69
216
- msgid "For the help with German translation"
217
- msgstr "לעזרה עם תרגום לגרמנית"
 
218
 
219
- #
220
- #
221
- #
222
- # wpml-name: 66a0536169cc3eaa09a68d87c5423f44
223
- msgid "For the help with French translation"
224
- msgstr "לעזרה עם תרגום לצרפתית"
 
225
 
226
- #
227
- #
228
- #
229
- # wpml-name: 8ef19ee4456fa55ffc92a88aa44d1c06
230
- msgid "For the help with Finnish translation"
231
- msgstr "לעזרה עם תרגום לפינית"
 
 
232
 
233
- #
234
- #
235
- #
236
- # wpml-name: cd6cbfe954fa9b1465c6404532367f4b
237
- msgid "For the help with Dutch translation"
238
- msgstr "לעזרה עם תרגום להולנדית"
 
239
 
240
- #
241
- #
242
- #
243
- # wpml-name: fc28833ae2524c3303fb8b576ffe31cd
244
- msgid "For the help with Chinese translation"
245
- msgstr "לעזרה עם תרגום לסינית"
246
 
247
- #
248
- #
249
- #
250
- # wpml-name: 1e58c8bdf824f1a1783c57e8e5f2f63e
251
- msgid "For the help with Brasilian translation"
252
- msgstr "לעזרה עם תרגום לברזילאית"
253
 
254
- #
255
- #
256
- #
257
- # wpml-name: dbf65c1a5839f2818cdd02acf35682a2
258
- msgid "For the help with Belorussian translation"
259
- msgstr "לעזרה עם תרגום לבלרוסית"
260
 
261
- #
262
- #
263
- #
264
- # wpml-name: c97a46ff51f636c6e7e391183dc96b05
265
- msgid "It's me, the author"
266
- msgstr "זה אני, יוצר התוסף"
 
267
 
268
- #
269
- #
270
- #
271
- # wpml-name: 1584e2aed5960d480ad90b98a04652b2
272
- msgid "Greetings:"
273
- msgstr "ברכות:"
274
-
275
- #
276
- #
277
- #
278
- # wpml-name: 4eaaa9d01f020bbe1c513721a15269fd
279
- msgid "capabilities are updated successfully"
280
- msgstr "היכולות עודכנו בהצלחה"
281
 
282
- #
283
- #
284
- #
285
- # wpml-name: 8f9bfe9d1345237cb3b2b205864da075
286
- msgid "User"
287
- msgstr "משתמש"
 
288
 
289
- #
290
- #
291
- #
292
- # wpml-name: ebf183a3ef5a893a36035ef98999c591
293
- msgid "is updated successfully"
294
- msgstr "עודכן בהצלחה"
 
 
 
 
 
295
 
296
- #
297
- #
298
- #
299
- # wpml-name: f7d076786cdf56203d72ce2a6916b162
300
- msgid "User Roles are restored from the backup data. "
301
- msgstr "יכולות סוגי המשתמשים שוחזרו מקובץ הגיבוי"
 
302
 
303
- #
304
- #
305
- #
306
- # wpml-name: 5cfc1f49b2cf74ee2942c21fb23a9be7
307
- msgid "Add capabilities to this user:"
308
- msgstr "הוסף יכולות למשתמש זה:"
 
 
 
 
309
 
310
- #
311
- #
312
- #
313
- # wpml-name: 6340db22f588a2b4847d27dcba4c2693
314
- msgid "Role:"
315
- msgstr "סוג משתמש"
 
 
316
 
317
- #
318
- #
319
- #
320
- # wpml-name: 84ab9caaeadc59d02fdfc2b3eeda1f4b
321
- msgid "User \"%s\" update: please confirm to continue"
322
- msgstr "עדכון המשתמש \"%s\" : אנא אשר והמשך"
 
323
 
324
- #
325
- #
326
- #
327
- # wpml-name: ffc55f4f6c2fee44179eace7102739b0
328
- msgid "Remove User Capability"
329
- msgstr "הסר יכולת משתמש"
 
330
 
331
- #
332
- #
333
- #
334
- # wpml-name: 1063e38cb53d94d386f21227fcd84717
335
- msgid "Remove"
336
- msgstr "הסר"
 
337
 
338
- #
339
- #
340
- #
341
- # wpml-name: e7de059be080354eb995f03451c32763
342
- msgid "Remove Capability"
343
- msgstr "הסר יכולת"
 
344
 
345
- #
346
- #
347
- #
348
- # wpml-name: 64cf963fafdf81b76c876735dba7fbb4
349
- msgid "Add New Capability"
350
- msgstr "הוסף יכולת חדשה"
 
 
351
 
352
  #
353
  #
354
  #
355
- # wpml-name: 7aa3fd37413ab803143d28fcc65287cf
356
- msgid "Delete User Role"
357
- msgstr "מחק סוג משתמש"
 
358
 
359
- #
360
- #
361
- #
362
- # wpml-name: f2a6c498fb90ee345d997f888fce3b18
363
- msgid "Delete"
364
- msgstr "למחוק"
 
365
 
366
- #
367
- #
368
- #
369
- # wpml-name: fa6d25a7aa5c0a05c28f0c926410a664
370
- msgid "Set as Default User Role"
371
- msgstr "קבע כסוג משתמש ברירת מחדל"
 
372
 
373
- #
374
- #
375
- #
376
- # wpml-name: f4ec5f57bd4d31b803312d873be40da9
377
- msgid "Change"
378
- msgstr "שנה"
 
379
 
380
- #
381
- #
382
- #
383
- # wpml-name: 510d977c06df1f80b31f6a79feee0622
384
- msgid "Default Role for New User"
385
- msgstr "סוג משתמש ברירת מחדל למשתמשים חדשים"
 
386
 
387
- #
388
- #
389
- #
390
- # wpml-name: 8b9ddb4d6b587810718bdaf5ef1601a8
391
- msgid "Add New User Role"
392
- msgstr "הוסף סוג משתמש חדש"
 
393
 
394
- #
395
- #
396
- #
397
- # wpml-name: ec211f7c20af43e742bf2570c3cb84f9
398
- msgid "Add"
399
- msgstr "הוסף"
 
400
 
401
- #
402
- #
403
- #
404
- # wpml-name: ade219425cdcce278c9c6f52dcb942d6
405
- msgid "Name: "
406
- msgstr "שם:"
 
407
 
408
- #
409
- #
410
- #
411
- # wpml-name: ed32b22c72a8431f1f8f078289e6e21a
412
- msgid "Restore Roles from backup copy"
413
- msgstr "שחזר סוגי משתמשים מהעתק הגיבוי"
 
414
 
415
- #
416
- #
417
- #
418
- # wpml-name: 57a4880f5506e748f08bf144896a6105
419
- msgid "Cancel not saved changes"
420
- msgstr "בטל שינויים שלא נשמרו"
 
421
 
422
- #
423
- #
424
- #
425
- # wpml-name: f5d6040ed78ca86ddc73296a49b18510
426
- msgid "Save Changes"
427
- msgstr "שמור שינויים"
 
428
 
429
- #
430
- #
431
- #
432
- # wpml-name: a1fbf81a928fffd1bb4665b5af8952ab
433
- msgid "If checked, then apply action to ALL sites of this Network"
434
- msgstr "אם סומן, החל פעולה על כל האתרים ברשת זאת"
 
435
 
436
- #
437
- #
438
- #
439
- # wpml-name: 2898363f602aa8114c31498a03bfca68
440
- msgid "Role \"%s\" update: please confirm to continue"
441
- msgstr "סוג המשתמש \"%s\" עודכן: אנא אשר והמשך"
 
442
 
443
- #
444
- #
445
- #
446
- # wpml-name: 8af1ce6cd9546925b87fd24f3cc43390
447
- msgid "Please confirm to continue"
448
- msgstr "אשר את הפעולה והמשך"
 
449
 
450
- #
451
- #
452
- #
453
- # wpml-name: 9155fd6ce7d61b80699c0f45996ab60d
454
- msgid ""
455
- "Restore Roles from backup copy. Be careful, backup was created when you "
456
- "started URE 1st time. All changes you made after that will be lost"
457
- msgstr ""
458
- "שחזור עותק גיבוי של תפקידים. שים לב: הגיבוי נוצר מתי שהתחלת להשתמש בתוסף "
459
- "בפעם הראשונה, כל השינויים שביצעת לאחר מכן יאבדו."
460
 
461
- #
462
- #
463
- #
464
- # wpml-name: 47d1d4e4f3a16c30a3bbf34582385f47
465
- msgid "Change Default Role"
466
- msgstr "שנה את סוג משתמש המוגדר כברירת מחדל"
 
467
 
468
- #
469
- #
470
- #
471
- # wpml-name: 20490f852da53007d6552cf821acab6d
472
- msgid " Name must contain latin characters and digits only!"
473
- msgstr "שם חייב להכיל אותיות באנגלית וספרות בלבד!"
474
-
475
- #
476
- #
477
- #
478
- # wpml-name: bfb46b8d73255b3435fd2d30b2ee789a
479
- msgid " Name can not be empty!"
480
- msgstr "שם לא יכול להשאר ריק!"
481
-
482
- # if (is_multisite() && is_super_admin($this->user_to_edit->ID)) {
483
- # $user_info .= ' <span style="font-weight: bold; color:red;">'. esc_html__('Network Super Admin', 'ure') .'</span>';
484
  # }
485
- # wpml-name: 5213962fd38769a637909d6bc2a37197
486
- msgid "Network Super Admin"
487
- msgstr "מנהל-על של רשת"
488
-
489
- # ?>
490
- # <div style="margin-top: 5px;margin-bottom: 5px; font-weight: bold;"><?php echo __('Other Roles:', 'ure'); ?></div>
491
- # <?php
492
- # wpml-name: 3ebb5c3609cf2634c669e655a7bfb162
493
- msgid "Other Roles:"
494
- msgstr "תפקידים אחרים:"
495
 
496
- # ?>
497
- # <div style="margin-top: 5px;margin-bottom: 5px; font-weight: bold;"><?php echo __('bbPress Role:', 'ure'); ?></div>
498
- # <?php
499
- # wpml-name: 918b62d985dd5ef7af537376c0a8273b
500
- msgid "bbPress Role:"
501
- msgstr "תפקיד bbPress:"
 
502
 
503
- # <td class="ure-user-roles">
504
- # <div style="margin-bottom: 5px; font-weight: bold;"><?php echo __('Primary Role:', 'ure'); ?></div>
505
- # <?php
506
- # wpml-name: 670867664b460254a4dfcb782c811472
507
- msgid "Primary Role:"
508
- msgstr "תפקיד עיקרי:"
 
509
 
510
- #
511
- # $this->display_box_start(__('Change capabilities for user', 'ure').$user_info, 'min-width:830px;');
512
- #
513
- # wpml-name: 3c4a4bfb7afa015a22eee9e5b9b098e2
514
- msgid "Change capabilities for user"
515
- msgstr "שינוי יכולות המשתמש"
 
516
 
517
- # <tr>
518
- # <th scope="row"><?php _e('Other Roles', 'ure'); ?></th>
519
- # <td>
520
- # wpml-name: a5f40dc2b5f2552187d0326e77e267eb
521
- msgid "Other Roles"
522
- msgstr "תפקידים אחרים"
 
523
 
524
- # $output = $this->lib->roles_text($roles);
525
- # echo $output . '&nbsp;&nbsp;&gt;&gt;&nbsp;<a href="' . wp_nonce_url("users.php?page=users-".URE_PLUGIN_FILE."&object=user&amp;user_id={$user->ID}", "ure_user_{$user->ID}") . '">' . __('Edit', 'ure') . '</a>';
526
- # ?>
527
- # wpml-name: 7dce122004969d56ae2e0245cb754d35
528
- msgid "Edit"
529
- msgstr "עריכה"
 
530
 
531
- # 'capability_name_required' => __(' Capability name (ID) can not be empty!', 'ure'),
532
- # 'capability_name_valid_chars' => __(' Capability name (ID) must contain latin characters, digits, hyphens or underscore only!', 'ure'),
533
- # ) );
534
- # wpml-name: 6d4c115be3e7b4f1fd70112642c9a72d
 
535
  msgid ""
536
- " Capability name (ID) must contain latin characters, digits, hyphens or "
537
- "underscore only!"
538
  msgstr ""
539
- " שם היכולת (מזהה) חייב להכיל אותיות לטיניות, ספרות, מקפים או קו תחתון בלבד!"
540
 
541
- # 'delete_capability_warning' => __('Warning! Be careful - removing critical capability could crash some plugin or other custom code', 'ure'),
542
- # 'capability_name_required' => __(' Capability name (ID) can not be empty!', 'ure'),
543
- # 'capability_name_valid_chars' => __(' Capability name (ID) must contain latin characters, digits, hyphens or underscore only!', 'ure'),
544
- # wpml-name: ba38256d66e3ae37b7b16052a0f94729
545
- msgid " Capability name (ID) can not be empty!"
546
- msgstr " שם היכולת (מזהה) לא יכול להיות ריק!"
 
 
547
 
548
- # 'delete_capability' => __('Delete Capability', 'ure'),
549
- # 'delete_capability_warning' => __('Warning! Be careful - removing critical capability could crash some plugin or other custom code', 'ure'),
550
- # 'capability_name_required' => __(' Capability name (ID) can not be empty!', 'ure'),
551
- # wpml-name: b8827a096ab461b8e26931adf82c8d85
552
- msgid ""
553
- "Warning! Be careful - removing critical capability could crash some plugin "
554
- "or other custom code"
555
- msgstr ""
556
- "זהירות! הסרה של אפשרויות קריטיות עשוי לגרום לתוספים מסוים או קוד נסמך שלא "
557
- "לעבוד כשורה"
558
 
559
- # 'default_role' => __('Default Role', 'ure'),
560
- # 'set_new_default_role' => __('Set New Default Role', 'ure'),
561
- # 'delete_capability' => __('Delete Capability', 'ure'),
562
- # wpml-name: f28d52a1096a73cff427d1216dc578ad
563
- msgid "Set New Default Role"
564
- msgstr "הגדר תפקיד ברירת מחדל חדש"
 
 
565
 
566
- # 'reset_warning' => __('Reset Roles to WordPress defaults. Be careful, all changes made by you or plugins will be lost. Some plugins, e.g. S2Member, WooCommerce reactivation could be needed. Continue?', 'ure'),
567
- # 'default_role' => __('Default Role', 'ure'),
568
- # 'set_new_default_role' => __('Set New Default Role', 'ure'),
569
- # wpml-name: db135301eaf77a955b2b016f9b9d6a99
570
- msgid "Default Role"
571
- msgstr "תפקיד ברירת מחדל"
 
572
 
573
- # 'reset' => __('Reset', 'ure'),
574
- # 'reset_warning' => __('Reset Roles to WordPress defaults. Be careful, all changes made by you or plugins will be lost. Some plugins, e.g. S2Member, WooCommerce reactivation could be needed. Continue?', 'ure'),
575
- # 'default_role' => __('Default Role', 'ure'),
576
- # wpml-name: aeecd743b0aedffaef5122cebd7ff261
577
- msgid ""
578
- "Reset Roles to WordPress defaults. Be careful, all changes made by you or "
579
- "plugins will be lost. Some plugins, e.g. S2Member, WooCommerce reactivation "
580
- "could be needed. Continue?"
581
  msgstr ""
582
- "האם לאפס את התפקידים לברירת המחדל של וורדפרס? נא להיזהר, כל שינוי שנעשה על-"
583
- "ידך או ע\"י התוספים יאבד. יש תוספים, למשל S2member ו Woocommerce שיהיה צורך "
584
- "להפעילם מחדש. להמשיך?"
585
 
586
- # 'delete_capability' => __('Delete Capability', 'ure'),
587
- # 'reset' => __('Reset', 'ure'),
588
- # 'reset_warning' => __('Reset Roles to WordPress defaults. Be careful, all changes made by you or plugins will be lost. Some plugins, e.g. S2Member, WooCommerce reactivation could be needed. Continue?', 'ure'),
589
- # wpml-name: 526d688f37a86d3c3f27d0c5016eb71d
590
- msgid "Reset"
591
- msgstr "איפוס"
 
 
592
 
593
- # 'set_new_default_role' => __('Set New Default Role', 'ure'),
594
- # 'delete_capability' => __('Delete Capability', 'ure'),
595
- # 'delete_capability_warning' => __('Warning! Be careful - removing critical capability could crash some plugin or other custom code', 'ure'),
596
- # wpml-name: 06844dd4ec4b29fa8a354aaacbd4861a
597
- msgid "Delete Capability"
598
- msgstr "מחיקת יכולת"
 
599
 
600
- # 'cancel' => __('Cancel', 'ure'),
601
- # 'add_capability' => __('Add Capability', 'ure'),
602
- # 'delete_capability' => __('Delete Capability', 'ure'),
603
- # wpml-name: 39cc0b416ba0d26679547346b8c5cf8d
604
- msgid "Add Capability"
605
- msgstr "הוספת יכולת"
 
 
606
 
607
- # 'delete_role' => __('Delete Role', 'ure'),
608
- # 'cancel' => __('Cancel', 'ure'),
609
- # 'add_capability' => __('Add Capability', 'ure'),
610
- # wpml-name: ea4788705e6873b424c65e91c2846b19
611
- msgid "Cancel"
612
- msgstr "ביטול"
 
613
 
614
- # 'add_role' => __('Add Role', 'ure'),
615
- # 'delete_role' => __('Delete Role', 'ure'),
616
- # 'cancel' => __('Cancel', 'ure'),
617
- # wpml-name: 4e2626418b461869a386850b0f3b437f
618
- msgid "Delete Role"
619
- msgstr "מחיקת סוג משתמש"
 
620
 
621
- # 'role_name_valid_chars' => __(' Role name (ID) must contain latin characters, digits, hyphens or underscore only!', 'ure'),
622
- # 'add_role' => __('Add Role', 'ure'),
623
- # 'delete_role' => __('Delete Role', 'ure'),
624
- # wpml-name: 1453b39dcc15a372640d960c6db7db25
625
- msgid "Add Role"
626
- msgstr "הוספת תפקיד"
 
627
 
628
- # 'role_name_required' => __(' Role name (ID) can not be empty!', 'ure'),
629
- # 'role_name_valid_chars' => __(' Role name (ID) must contain latin characters, digits, hyphens or underscore only!', 'ure'),
630
- # 'add_role' => __('Add Role', 'ure'),
631
- # wpml-name: 7b94f04285f5efc287652bd40338e730
632
- msgid ""
633
- " Role name (ID) must contain latin characters, digits, hyphens or underscore "
634
- "only!"
635
- msgstr ""
636
- " שם התפקיד (מזהה) חייב להכיל אותיות לטיניות, ספרות, מקפים או קו תחתון בלבד!"
637
 
638
- # 'add_new_role_title' => __('Add New Role', 'ure'),
639
- # 'role_name_required' => __(' Role name (ID) can not be empty!', 'ure'),
640
- # 'role_name_valid_chars' => __(' Role name (ID) must contain latin characters, digits, hyphens or underscore only!', 'ure'),
641
- # wpml-name: 1400ecabfd5a7c9527f71723da18dad0
642
- msgid " Role name (ID) can not be empty!"
643
- msgstr " שם התפקיד (מזהה) אינו יכול להישאר ריק!"
 
644
 
645
- # 'confirm_submit' => __('Please confirm permissions update', 'ure'),
646
- # 'add_new_role_title' => __('Add New Role', 'ure'),
647
- # 'role_name_required' => __(' Role name (ID) can not be empty!', 'ure'),
648
- # wpml-name: cf46e7fb1093a47a76f35fc61ab5d432
649
- msgid "Add New Role"
650
- msgstr "הוסף סוג משתמש חדש"
 
651
 
652
- # 'update' => __('Update', 'ure'),
653
- # 'confirm_submit' => __('Please confirm permissions update', 'ure'),
654
- # 'add_new_role_title' => __('Add New Role', 'ure'),
655
- # wpml-name: 85251872440cc94c6080a90451e018c4
656
- msgid "Please confirm permissions update"
657
- msgstr "נא לאשר את עדכון ההרשאות"
 
658
 
659
- # 'reverse' => __('Reverse', 'ure'),
660
- # 'update' => __('Update', 'ure'),
661
- # 'confirm_submit' => __('Please confirm permissions update', 'ure'),
662
- # wpml-name: 06933067aafd48425d67bcb01bba5cb6
663
- msgid "Update"
664
- msgstr "עדכן"
 
665
 
666
- # 'unselect_all' => __('Unselect All', 'ure'),
667
- # 'reverse' => __('Reverse', 'ure'),
668
- # 'update' => __('Update', 'ure'),
669
- # wpml-name: 67f115c1fddc4ce1aeb1c754001585bc
670
- msgid "Reverse"
671
- msgstr "להפוך"
 
672
 
673
- # 'select_all' => __('Select All', 'ure'),
674
- # 'unselect_all' => __('Unselect All', 'ure'),
675
- # 'reverse' => __('Reverse', 'ure'),
676
- # wpml-name: 016269c0d83a19a19a2ee0a4294740b4
677
- msgid "Unselect All"
678
- msgstr "לא לבחור שום דבר"
 
679
 
680
- # 'is_multisite' => is_multisite() ? 1 : 0,
681
- # 'select_all' => __('Select All', 'ure'),
682
- # 'unselect_all' => __('Unselect All', 'ure'),
683
- # wpml-name: 45e96c0a422ce8a1a6ec1bd5eb9625c6
684
- msgid "Select All"
685
- msgstr "בחירת הכל"
 
686
 
687
- # }
688
- # die(__('Only', 'ure') . ' ' . $admin . ' ' . __('is allowed to use', 'ure') . ' ' . 'User Role Editor');
689
- # }
690
- # wpml-name: bf92269227c681dec97477844e2ddada
691
- msgid "is allowed to use"
692
- msgstr "מותר לשימוש"
 
693
 
694
- # }
695
- # die(__('Only', 'ure') . ' ' . $admin . ' ' . __('is allowed to use', 'ure') . ' ' . 'User Role Editor');
696
- # }
697
- # wpml-name: 8392461cf759088854e16710b9b75d1a
698
- msgid "Only"
699
- msgstr "רק"
 
700
 
701
- # $this->lib->flush_options();
702
- # $this->lib->show_message(__('User Role Editor options are updated', 'ure'));
703
- # } else { // get options from the options storage
704
- # wpml-name: aef323fbbd25d577170fff17c15cf857
705
- msgid "User Role Editor options are updated"
706
- msgstr "אפשרויות עורך תפקיד משתמש עודכנו"
 
707
 
708
- # if ($file == plugin_basename(dirname(URE_PLUGIN_FULL_PATH).'/'.URE_PLUGIN_FILE)) {
709
- # $settings_link = "<a href='options-general.php?page=settings-".URE_PLUGIN_FILE."'>" . __('Settings', 'ure') . "</a>";
710
- # array_unshift($links, $settings_link);
711
- # wpml-name: f4f70727dc34561dfde1a3c529b6205c
712
- msgid "Settings"
713
- msgstr "הגדרות"
 
714
 
715
- # wp_nonce_url("users.php?page=users-".URE_PLUGIN_FILE."&object=user&amp;user_id={$user->ID}", "ure_user_{$user->ID}") .
716
- # '">' . __('Capabilities', 'ure') . '</a>';
717
- # }
718
- # wpml-name: 82ec2cd6fda87713f588da75c3b1d0ed
719
- msgid "Capabilities"
720
- msgstr "יכולות"
 
721
 
722
- # <tr>
723
- # <td><label for="allow_edit_users_to_not_super_admin"><?php esc_html_e('Allow create, edit and delete user to not super-admininstrators:', 'ure'); ?></label></td>
724
- # <td>
725
- # wpml-name: 4bc50461b16d09d4cea688ef6c286c6f
726
- msgid "Allow create, edit and delete user to not super-admininstrators:"
727
- msgstr "אפשר ליצור, לערוך ולמחוק משתמש למנהלים שאינם מנהלי על:"
 
728
 
729
- # <tr>
730
- # <td><label for="show_deprecated_caps"><?php esc_html_e('Show deprecated capabilities:', 'ure'); ?></label></td>
731
- # <td>
732
- # wpml-name: f941eb3a0500fd0776edec8343ccd89e
733
- msgid "Show deprecated capabilities:"
734
- msgstr "הצג יכולות מומלצות:"
 
735
 
736
- # <tr>
737
- # <td><label for="caps_readable"><?php esc_html_e('Show capabilities in the human readable form:', 'ure'); ?></label></td>
738
- # <td>
739
- # wpml-name: a19a4f985d31bbbd3d3b6d5dbd368ef0
740
- msgid "Show capabilities in the human readable form:"
741
- msgstr "הצג יכולות בפורמט קריא ואנושי:"
 
742
 
743
- # <tr>
744
- # <td><label for="show_admin_role"><?php esc_html_e('Show Administrator role at User Role Editor:', 'ure'); ?></label></td>
745
- # <td><input type="checkbox" name="show_admin_role" id="show_admin_role" value="1"
746
- # wpml-name: 03c5b123f148104af580b68ade741c67
747
- msgid "Show Administrator role at User Role Editor:"
748
- msgstr "הצג תפקיד מנהל בעורך תפקידי משתמש:"
 
749
 
750
- # <div class="icon32" id="icon-options-general"><br/></div>
751
- # <h2><?php esc_html_e('User Role Editor - Options', 'ure'); ?></h2>
752
- # <hr/>
753
- # wpml-name: ee7816d892f54d4aa67456e2486d8a09
754
- msgid "User Role Editor - Options"
755
- msgstr "עורך תפקידי משתמש - אפשרויות"
 
756
 
757
- # <p class="submit">
758
- # <input type="submit" class="button-primary" name="user_role_editor_settings_update" value="<?php _e('Save', 'ure') ?>" />
759
- # </p>
760
- # wpml-name: c9cc8cce247e49bae79f15173ce97354
761
- msgid "Save"
762
- msgstr "שמירה"
 
763
 
764
- # <a class="ure_rsb_link" style="background-image:url(<?php echo URE_PLUGIN_URL . 'images/changelog-icon.png'; ?>);" target="_blank" href="http://www.shinephp.com/user-role-editor-wordpress-plugin/#changelog"><?php _e('Changelog', 'ure'); ?></a>
765
- # <a class="ure_rsb_link" style="background-image:url(<?php echo URE_PLUGIN_URL . 'images/faq-icon.png'; ?>);" target="_blank" href="http://www.shinephp.com/user-role-editor-wordpress-plugin/#faq"><?php _e('FAQ', 'ure'); ?></a>
766
- # <?php
767
- # wpml-name: 1fe917b01f9a3f87fa2d7d3b7643fac1
768
- msgid "FAQ"
769
- msgstr "שאלות נפוצות"
 
770
 
771
- # if ($file == plugin_basename(dirname(URE_PLUGIN_FULL_PATH) .'/'.URE_PLUGIN_FILE)) {
772
- # $links[] = '<a target="_blank" href="http://role-editor.com/changelog">' . __('Changelog', 'ure') . '</a>';
773
- # }
774
- # wpml-name: c49182dc0c7a70b9cd2e10853d9ec6c7
775
- msgid "Changelog"
776
- msgstr "יומן שינויים"
 
777
 
778
- # <a class="ure_rsb_link" style="background-image:url(<?php echo URE_PLUGIN_URL . 'images/vladimir.png'; ?>);" target="_blank" href="http://www.shinephp.com/"><?php _e("Author's website", 'ure'); ?></a>
779
- # <a class="ure_rsb_link" style="background-image:url(<?php echo URE_PLUGIN_URL . 'images/user-role-editor-icon.png'; ?>);" target="_blank" href="http://role-editor.com"><?php _e('Plugin webpage', 'ure'); ?></a>
780
- # <a class="ure_rsb_link" style="background-image:url(<?php echo URE_PLUGIN_URL . 'images/changelog-icon.png'; ?>);" target="_blank" href="http://www.shinephp.com/user-role-editor-wordpress-plugin/#changelog"><?php _e('Changelog', 'ure'); ?></a>
781
- # wpml-name: f919d1248270e1eca5cc6a39253264f7
782
- msgid "Plugin webpage"
783
- msgstr "דף התוסף"
 
784
 
785
- # ?>
786
- # <a class="ure_rsb_link" style="background-image:url(<?php echo URE_PLUGIN_URL . 'images/vladimir.png'; ?>);" target="_blank" href="http://www.shinephp.com/"><?php _e("Author's website", 'ure'); ?></a>
787
- # <a class="ure_rsb_link" style="background-image:url(<?php echo URE_PLUGIN_URL . 'images/user-role-editor-icon.png'; ?>);" target="_blank" href="http://role-editor.com"><?php _e('Plugin webpage', 'ure'); ?></a>
788
- # wpml-name: b63bc6c033363c8ee66beaf4ea4d5bc3
789
- msgid "Author's website"
790
- msgstr "אתר היוצר"
 
791
 
792
- # esc_html__('User Role Editor', 'ure'),
793
- # esc_html__('User Role Editor', 'ure'),
794
- # $this->key_capability, 'settings-'.URE_PLUGIN_FILE, array(&$this, 'settings'));
795
- # wpml-name: c26ad3b67c7211a5872194d68cb5a8eb
796
- msgid "User Role Editor"
797
- msgstr "User Role Editor"
 
798
 
799
- # <div style="padding:10px;">
800
- # <div class="ure-label"><?php _e('Delete:', 'ure');?></div>
801
- # <div class="ure-input"><?php echo $this->capability_remove_html; ?></div>
802
- # wpml-name: 62f0d909f4edb78b805e4cf6747a4c36
803
- msgid "Delete:"
804
- msgstr "מחיקה:"
 
805
 
806
- # $this->role_to_copy_html = '<select id="user_role_copy_from" name="user_role_copy_from" width="200" style="width: 200px">
807
- # <option value="none" selected="selected">' . __('None', 'ure') . '</option>';
808
- # $this->role_select_html = '<select id="user_role" name="user_role" onchange="ure_role_change(this.value);">';
809
- # wpml-name: 6adf97f83acf6453d4a6a4b1070f3754
810
- msgid "None"
811
- msgstr "תרום"
812
-
813
- # protected function about() {
814
- # $this->display_box_start(__('About this Plugin:', 'ure'));
815
- # ?>
816
- # wpml-name: 426a0f7faa99074ad799f9923e41aff4
817
- msgid "About this Plugin:"
818
- msgstr "אודות תוסף זה:"
819
 
820
- #
821
- # $mess = sprintf(__('Capability %s is removed successfully', 'ure'), $capability_id);
822
- # }
823
- # wpml-name: d819128cbb44d0e2fe4eb8b8b6397871
824
- msgid "Capability %s is removed successfully"
825
- msgstr "היכולת %s הוסרה בהצלחה"
 
826
 
827
- # if (!is_array($caps_to_remove) || count($caps_to_remove) == 0 || !isset($caps_to_remove[$capability_id])) {
828
- # return sprintf(__('Error! You do not have permission to delete this capability: %s!', 'ure'), $capability_id);
829
- # }
830
- # wpml-name: 0e132e68574d9609d956f9be409f7384
831
- msgid "Error! You do not have permission to delete this capability: %s!"
832
- msgstr "שגיאה! אין לך הרשאה למחוק את היכולת %s"
 
833
 
834
- # } else {
835
- # $mess = sprintf('Error! ' . __('Capability %s exists already', 'ure'), $user_capability);
836
- # }
837
- # wpml-name: d5c1ec0556aadfa88cadffb62266b83d
838
- msgid "Capability %s exists already"
839
- msgstr "כבר קיימת יכולת בשם %s"
 
840
 
841
- # $wp_roles->add_cap('administrator', $user_capability);
842
- # $mess = sprintf(__('Capability %s is added successfully', 'ure'), $user_capability);
843
- # } else {
844
- # wpml-name: 6dcaae98207ba2673da987515b02fe31
845
- msgid "Capability %s is added successfully"
846
- msgstr "היכולת %s נוספה בהצלחה"
 
847
 
848
- # if (!$valid_name || ($valid_name && ($match[0] != $user_capability))) { // some non-alphanumeric charactes found!
849
- # return 'Error! ' . __('Error: Capability name must contain latin characters and digits only!', 'ure');
850
- # ;
851
- # wpml-name: 03766b9586d3012af6fc788e85d39530
852
- msgid "Error: Capability name must contain latin characters and digits only!"
853
- msgstr "שגיאה! שם יכולת חייב להכיל אותיות באנגלית וספרות בלבד"
 
854
 
855
- # __('Delete themes', 'ure');
856
- # __('Export', 'ure');
857
- # }
858
- # wpml-name: 0095a9fa74d1713e43e370a7d7846224
859
- msgid "Export"
860
- msgstr "ייצוא תוכן"
 
861
 
862
- # __('Edit theme options', 'ure');
863
- # __('Delete themes', 'ure');
864
- # __('Export', 'ure');
865
- # wpml-name: 335e9dea5f21dc3f591f3aceefdeed54
866
- msgid "Delete themes"
867
- msgstr "מחיקת תבניות"
 
868
 
869
- # __('Promote users', 'ure');
870
- # __('Edit theme options', 'ure');
871
- # __('Delete themes', 'ure');
872
- # wpml-name: 8841974497684dad4d55beaf2b6c52ef
873
- msgid "Edit theme options"
874
- msgstr "עריכת אפשרויות התבנית"
 
875
 
876
- # __('Add users', 'ure');
877
- # __('Promote users', 'ure');
878
- # __('Edit theme options', 'ure');
879
- # wpml-name: 12f4ba95cdfd04b791820b9c20887913
880
- msgid "Promote users"
881
- msgstr "שינוי משתמשים"
 
882
 
883
- # __('Remove users', 'ure');
884
- # __('Add users', 'ure');
885
- # __('Promote users', 'ure');
886
- # wpml-name: 3bf6330f5f4c7c3dfddc9670cfaf4a22
887
- msgid "Add users"
888
- msgstr "הוספת משתמשים"
 
889
 
890
- # __('List users', 'ure');
891
- # __('Remove users', 'ure');
892
- # __('Add users', 'ure');
893
- # wpml-name: 8c7e9f2dfcd0125922dfbce36a1a4c2a
894
- msgid "Remove users"
895
- msgstr "הסרת משתמשים"
 
896
 
897
- # __('Update core', 'ure');
898
- # __('List users', 'ure');
899
- # __('Remove users', 'ure');
900
- # wpml-name: f923f903857a5387d3db70494e074632
901
- msgid "List users"
902
- msgstr "בצפייה במשתמשים"
 
903
 
904
- # __('Install themes', 'ure');
905
- # __('Update core', 'ure');
906
- # __('List users', 'ure');
907
- # wpml-name: e56e5b87db548cd42be7a8a0f916205d
908
- msgid "Update core"
909
- msgstr "עדכון וורדפרס"
 
910
 
911
- # __('Update themes', 'ure');
912
- # __('Install themes', 'ure');
913
- # __('Update core', 'ure');
914
- # wpml-name: a7d67fb17876569a4590902d3566a6fd
915
- msgid "Install themes"
916
- msgstr "התקנת תבניות חדשות"
 
917
 
918
- # __('Install plugins', 'ure');
919
- # __('Update themes', 'ure');
920
- # __('Install themes', 'ure');
921
- # wpml-name: 504ea4a27260ac1e8822c5877ffe526b
922
- msgid "Update themes"
923
- msgstr "עדכון תבניות"
 
924
 
925
- # __('Delete plugins', 'ure');
926
- # __('Install plugins', 'ure');
927
- # __('Update themes', 'ure');
928
- # wpml-name: 9d06472988c53bfc768bc7b6a788b697
929
- msgid "Install plugins"
930
- msgstr "התקנת תוספים"
 
931
 
932
- # __('Update plugins', 'ure');
933
- # __('Delete plugins', 'ure');
934
- # __('Install plugins', 'ure');
935
- # wpml-name: f2a839940dae3934317d8d6a6f647ebd
936
- msgid "Delete plugins"
937
- msgstr "מחיקת תוספים"
 
938
 
939
- # __('Edit dashboard', 'ure');
940
- # __('Update plugins', 'ure');
941
- # __('Delete plugins', 'ure');
942
- # wpml-name: 23c5b17dc24e40fa47ca6588932d32f7
943
- msgid "Update plugins"
944
- msgstr "עדכון תוספים"
 
945
 
946
- # __('Unfiltered upload', 'ure');
947
- # __('Edit dashboard', 'ure');
948
- # __('Update plugins', 'ure');
949
- # wpml-name: b5577d27ebfdd60a3bda83ae726d574b
950
- msgid "Edit dashboard"
951
- msgstr "שינוי לוח הבקרה"
 
952
 
953
- # __('Create users', 'ure');
954
- # __('Unfiltered upload', 'ure');
955
- # __('Edit dashboard', 'ure');
956
- # wpml-name: 7110d42a34cbb3316d6d0c658fa34c86
957
- msgid "Unfiltered upload"
958
- msgstr "העלאת קבצים חופשית"
 
959
 
960
- # __('Delete users', 'ure');
961
- # __('Create users', 'ure');
962
- # __('Unfiltered upload', 'ure');
963
- # wpml-name: 6cf6d76fc00f8dd12af98a37d11f623e
964
- msgid "Create users"
965
- msgstr "יצירת משתמשים"
966
-
967
- # __('Read private pages', 'ure');
968
  # __('Delete users', 'ure');
969
  # __('Create users', 'ure');
970
  # wpml-name: 61c484c7f1638a9dd4237cb666b91c1f
 
971
  msgid "Delete users"
972
  msgstr "מחיקת משתמשים"
973
 
974
- # __('Edit private pages', 'ure');
975
- # __('Read private pages', 'ure');
976
  # __('Delete users', 'ure');
977
- # wpml-name: 5faa3f2e9585e107dc5f23748a825882
978
- msgid "Read private pages"
979
- msgstr "קריאת עמודים פרטיים"
980
-
981
- # __('Delete private pages', 'ure');
982
- # __('Edit private pages', 'ure');
983
- # __('Read private pages', 'ure');
984
- # wpml-name: 4f3859ba470cb61f22a600a93c4ce11f
985
- msgid "Edit private pages"
986
- msgstr "מחיקת עמודים פרטיים"
987
-
988
- # __('Read private posts', 'ure');
989
- # __('Delete private pages', 'ure');
990
- # __('Edit private pages', 'ure');
991
- # wpml-name: 2136c12e2beeadfe0da80a36ef967eca
992
- msgid "Delete private pages"
993
- msgstr "מחיקת עמודים פרטיים"
994
-
995
- # __('Edit private posts', 'ure');
996
- # __('Read private posts', 'ure');
997
- # __('Delete private pages', 'ure');
998
- # wpml-name: eab0355307288f6480f8c53a0d953d79
999
- msgid "Read private posts"
1000
- msgstr "קריאת פוסטים פרטיים"
1001
-
1002
- # __('Delete private posts', 'ure');
1003
- # __('Edit private posts', 'ure');
1004
- # __('Read private posts', 'ure');
1005
- # wpml-name: da9ee842794f7caf9fa32271073d5f7a
1006
- msgid "Edit private posts"
1007
- msgstr "עריכת פוסטים פרטיים"
1008
-
1009
- # __('Delete published posts', 'ure');
1010
- # __('Delete private posts', 'ure');
1011
- # __('Edit private posts', 'ure');
1012
- # wpml-name: dcd02c374764e49b36f0f959cc2917bb
1013
- msgid "Delete private posts"
1014
- msgstr "מחיקת פוסטים פרטיים"
1015
-
1016
- # __('Delete others posts', 'ure');
1017
- # __('Delete published posts', 'ure');
1018
- # __('Delete private posts', 'ure');
1019
- # wpml-name: b0a2d2039494d73f81f4e476bfda24da
1020
- msgid "Delete published posts"
1021
- msgstr "מחיקת פוסטים שפורסמו"
1022
-
1023
- # __('Delete posts', 'ure');
1024
- # __('Delete others posts', 'ure');
1025
- # __('Delete published posts', 'ure');
1026
- # wpml-name: c0496287732814df690c8966027a58d6
1027
- msgid "Delete others posts"
1028
- msgstr "מחיקת פוסטים של אחרים"
1029
-
1030
- # __('Delete published pages', 'ure');
1031
- # __('Delete posts', 'ure');
1032
- # __('Delete others posts', 'ure');
1033
- # wpml-name: 3dce6f688c85f06c63224b5c3be13919
1034
- msgid "Delete posts"
1035
- msgstr "מחיקת פוסטים"
1036
-
1037
- # __('Delete others pages', 'ure');
1038
- # __('Delete published pages', 'ure');
1039
- # __('Delete posts', 'ure');
1040
- # wpml-name: 75c6bfee9157bbc48bfc4d50baab89e0
1041
- msgid "Delete published pages"
1042
- msgstr "מחיקת דפים שפורסמו"
1043
-
1044
- # __('Delete pages', 'ure');
1045
- # __('Delete others pages', 'ure');
1046
- # __('Delete published pages', 'ure');
1047
- # wpml-name: 23eaa8e106fde2a76d80bc907f55ab7e
1048
- msgid "Delete others pages"
1049
- msgstr "מחיקת דפים של אחרים"
1050
-
1051
- # __('Publish pages', 'ure');
1052
- # __('Delete pages', 'ure');
1053
- # __('Delete others pages', 'ure');
1054
- # wpml-name: b665a2b3cb33c08decc52b8a3f3d1742
1055
- msgid "Delete pages"
1056
- msgstr "מחיקת דפים"
1057
-
1058
- # __('Edit published pages', 'ure');
1059
- # __('Publish pages', 'ure');
1060
- # __('Delete pages', 'ure');
1061
- # wpml-name: 70d789f104acf7aa83b1c5ab230f8e7c
1062
- msgid "Publish pages"
1063
- msgstr "פרסום דפים"
1064
-
1065
- # __('Edit others pages', 'ure');
1066
- # __('Edit published pages', 'ure');
1067
- # __('Publish pages', 'ure');
1068
- # wpml-name: c5bfc24b0b891c9465134b83b2c6c259
1069
- msgid "Edit published pages"
1070
- msgstr "עריכת דפים שפורסמו"
1071
-
1072
- # __('Level 0', 'ure');
1073
- # __('Edit others pages', 'ure');
1074
- # __('Edit published pages', 'ure');
1075
- # wpml-name: b10af907824940fe6a5aa0a77c62be6f
1076
- msgid "Edit others pages"
1077
- msgstr "עריכת דפים של אחרים"
1078
-
1079
- # __('Level 1', 'ure');
1080
- # __('Level 0', 'ure');
1081
- # __('Edit others pages', 'ure');
1082
- # wpml-name: 057e95a59e032dbed970592dd1245092
1083
- msgid "Level 0"
1084
- msgstr "דרגה 0"
1085
-
1086
- # __('Level 2', 'ure');
1087
- # __('Level 1', 'ure');
1088
- # __('Level 0', 'ure');
1089
- # wpml-name: 5afaf1679ad0887adebaddb40e0bd3f7
1090
- msgid "Level 1"
1091
- msgstr "דרגה 1"
1092
-
1093
- # __('Level 3', 'ure');
1094
- # __('Level 2', 'ure');
1095
- # __('Level 1', 'ure');
1096
- # wpml-name: 228e9da47384bacde793a2b78d488bb0
1097
- msgid "Level 2"
1098
- msgstr "דרגה 2"
1099
-
1100
- # __('Level 4', 'ure');
1101
- # __('Level 3', 'ure');
1102
- # __('Level 2', 'ure');
1103
- # wpml-name: 8f60a63315c55e659b1a2dd5064ceae8
1104
- msgid "Level 3"
1105
- msgstr "דרגה 3"
1106
-
1107
- # __('Level 5', 'ure');
1108
- # __('Level 4', 'ure');
1109
- # __('Level 3', 'ure');
1110
- # wpml-name: 309531bbe9a9d3228cd0687ec6e66bed
1111
- msgid "Level 4"
1112
- msgstr "דרגה 4"
1113
-
1114
- # __('Level 6', 'ure');
1115
- # __('Level 5', 'ure');
1116
- # __('Level 4', 'ure');
1117
- # wpml-name: 05988e43e8f2eb5efdddc2b467c4b2f3
1118
- msgid "Level 5"
1119
- msgstr "דרגה 5"
1120
-
1121
- # __('Level 7', 'ure');
1122
- # __('Level 6', 'ure');
1123
- # __('Level 5', 'ure');
1124
- # wpml-name: b30ce92fb9295725ef29254ba5ae17e1
1125
- msgid "Level 6"
1126
- msgstr "דרגה 6"
1127
-
1128
- # __('Level 8', 'ure');
1129
- # __('Level 7', 'ure');
1130
- # __('Level 6', 'ure');
1131
- # wpml-name: a9acd6f427950dc61cac50b4e9ee6bc4
1132
- msgid "Level 7"
1133
- msgstr "דרגה 7"
1134
-
1135
- # __('Level 9', 'ure');
1136
- # __('Level 8', 'ure');
1137
- # __('Level 7', 'ure');
1138
- # wpml-name: 625fef0c34a92b3685266a47f16c85dd
1139
- msgid "Level 8"
1140
- msgstr "דרגה 8"
1141
-
1142
- # __('Level 10', 'ure');
1143
- # __('Level 9', 'ure');
1144
- # __('Level 8', 'ure');
1145
- # wpml-name: d48252bc9cffec4bed5028a7c71d8196
1146
- msgid "Level 9"
1147
- msgstr "דרגה 9"
1148
-
1149
- # __('Read', 'ure');
1150
- # __('Level 10', 'ure');
1151
- # __('Level 9', 'ure');
1152
- # wpml-name: b3ef2f43e2782f8d95a4c22d577cb1bc
1153
- msgid "Level 10"
1154
- msgstr "דרגה 10"
1155
-
1156
- # __('Edit pages', 'ure');
1157
- # __('Read', 'ure');
1158
- # __('Level 10', 'ure');
1159
- # wpml-name: 7a1a5f3e79fdc91edf2f5ead9d66abb4
1160
- msgid "Read"
1161
- msgstr "קורא"
1162
-
1163
- # __('Publish posts', 'ure');
1164
- # __('Edit pages', 'ure');
1165
- # __('Read', 'ure');
1166
- # wpml-name: e7a51430fa0fbb32587c083ffae4b525
1167
- msgid "Edit pages"
1168
- msgstr "עריכת עמודים"
1169
-
1170
- # __('Edit published posts', 'ure');
1171
- # __('Publish posts', 'ure');
1172
- # __('Edit pages', 'ure');
1173
- # wpml-name: 64a4f8f7a855c54e1ca7c910439f5e90
1174
- msgid "Publish posts"
1175
- msgstr "פוסטים שפורסמו"
1176
-
1177
- # __('Edit others posts', 'ure');
1178
- # __('Edit published posts', 'ure');
1179
- # __('Publish posts', 'ure');
1180
- # wpml-name: d42efc04e7900de59ed3667c971e9e9d
1181
- msgid "Edit published posts"
1182
- msgstr "עריכת פוסטים שפורסמו"
1183
-
1184
- # __('Edit posts', 'ure');
1185
- # __('Edit others posts', 'ure');
1186
- # __('Edit published posts', 'ure');
1187
- # wpml-name: 5fbf3fd2d5fd1e393df2c639fa16dbc9
1188
- msgid "Edit others posts"
1189
- msgstr "עריכת פוסטים של אחרים"
1190
-
1191
- # __('Unfiltered html', 'ure');
1192
- # __('Edit posts', 'ure');
1193
- # __('Edit others posts', 'ure');
1194
- # wpml-name: 9cd92b1d45220e13e5e257f185f3fec3
1195
- msgid "Edit posts"
1196
- msgstr "עריכת פוסטים"
1197
-
1198
- # __('Import', 'ure');
1199
- # __('Unfiltered html', 'ure');
1200
- # __('Edit posts', 'ure');
1201
- # wpml-name: fdd95e5640d6d73230b7544ac261457a
1202
- msgid "Unfiltered html"
1203
- msgstr "עריכת HTML"
1204
-
1205
- # __('Upload files', 'ure');
1206
- # __('Import', 'ure');
1207
- # __('Unfiltered html', 'ure');
1208
- # wpml-name: 72d6d7a1885885bb55a565fd1070581a
1209
- msgid "Import"
1210
- msgstr "יבוא"
1211
-
1212
- # __('Manage links', 'ure');
1213
- # __('Upload files', 'ure');
1214
- # __('Import', 'ure');
1215
- # wpml-name: c7de86f69db264c3950d8ae46ed2e33f
1216
- msgid "Upload files"
1217
- msgstr "העלאת קבצים"
1218
-
1219
- # __('Manage categories', 'ure');
1220
- # __('Manage links', 'ure');
1221
- # __('Upload files', 'ure');
1222
- # wpml-name: fa1a08e2a749c9f330c9a8e60cac9cc3
1223
- msgid "Manage links"
1224
- msgstr "ניהול קישורים"
1225
-
1226
- # __('Moderate comments', 'ure');
1227
- # __('Manage categories', 'ure');
1228
- # __('Manage links', 'ure');
1229
- # wpml-name: 74c12b9adae95b65772e8c9c9c8e5af3
1230
- msgid "Manage categories"
1231
- msgstr "ניהול קטגוריות"
1232
-
1233
- # __('Manage options', 'ure');
1234
- # __('Moderate comments', 'ure');
1235
- # __('Manage categories', 'ure');
1236
- # wpml-name: abb293cb5d17f4acca429ea13d74c593
1237
- msgid "Moderate comments"
1238
- msgstr "ניהול תגובות"
1239
-
1240
- # __('Edit files', 'ure');
1241
- # __('Manage options', 'ure');
1242
- # __('Moderate comments', 'ure');
1243
- # wpml-name: 9f285ad90d3e9f5122241f2e8abd3836
1244
- msgid "Manage options"
1245
- msgstr "ניהול אפשרויות אתר"
1246
-
1247
- # __('Edit users', 'ure');
1248
- # __('Edit files', 'ure');
1249
- # __('Manage options', 'ure');
1250
- # wpml-name: 91c6e7a54b91cdc161f71958c597ed11
1251
- msgid "Edit files"
1252
- msgstr "עריכת קבצים"
1253
-
1254
- # __('Edit plugins', 'ure');
1255
- # __('Edit users', 'ure');
1256
- # __('Edit files', 'ure');
1257
- # wpml-name: 70118d8574d7c13da8c0a7c2acc0f659
1258
- msgid "Edit users"
1259
- msgstr "עריכת משתמשים"
1260
-
1261
- # __('Activate plugins', 'ure');
1262
- # __('Edit plugins', 'ure');
1263
- # __('Edit users', 'ure');
1264
- # wpml-name: a6e42eb142c87e881a0d0c92acf4ef9f
1265
- msgid "Edit plugins"
1266
- msgstr "עריכת תוספים"
1267
-
1268
- # __('Edit themes', 'ure');
1269
- # __('Activate plugins', 'ure');
1270
- # __('Edit plugins', 'ure');
1271
- # wpml-name: c38bc47406355ef06ad3e10a98505536
1272
- msgid "Activate plugins"
1273
- msgstr "הפעלת תוספים"
1274
-
1275
- # __('Switch themes', 'ure');
1276
- # __('Edit themes', 'ure');
1277
- # __('Activate plugins', 'ure');
1278
- # wpml-name: 8395d1904c778ee1b2762e07a6a03878
1279
- msgid "Edit themes"
1280
- msgstr "עריכת תבניות"
1281
-
1282
- # // Standard WordPress capabilities
1283
- # __('Switch themes', 'ure');
1284
- # __('Edit themes', 'ure');
1285
- # wpml-name: 87d980c0c79638536655ce7fa0a4b85d
1286
- msgid "Switch themes"
1287
- msgstr "החלפת תבניות"
1288
-
1289
- # __('Contributor', 'ure');
1290
- # __('Subscriber', 'ure');
1291
- # // Standard WordPress capabilities
1292
- # wpml-name: 992c4a5b4628d8ebf671cf460254ee81
1293
- msgid "Subscriber"
1294
- msgstr "מנוי"
1295
 
1296
- # __('Author', 'ure');
1297
- # __('Contributor', 'ure');
1298
- # __('Subscriber', 'ure');
1299
- # wpml-name: 23d21ad4dea7aadf907e5e601b1905e6
1300
- msgid "Contributor"
1301
- msgstr "תורם"
 
1302
 
1303
- # __('Editor', 'ure');
1304
- # __('Author', 'ure');
1305
- # __('Contributor', 'ure');
1306
- # wpml-name: a517747c3d12f99244ae598910d979c5
1307
- msgid "Author"
1308
- msgstr "כותב"
 
1309
 
1310
- # // Standard WordPress roles
1311
- # __('Editor', 'ure');
1312
- # __('Author', 'ure');
1313
- # wpml-name: 344a7f427fb765610ef96eb7bce95257
1314
- msgid "Editor"
1315
- msgstr "עורך"
 
1316
 
1317
- # } else {
1318
- # $mess = sprintf(__('Default role for new users is set to %s successfully', 'ure'), $wp_roles->role_names[$user_role_id]);
1319
- # }
1320
- # wpml-name: 94978d82edc73eba0f44bc7bceb299f4
1321
- msgid "Default role for new users is set to %s successfully"
1322
- msgstr "סוג המשתמש %s נקבע כברירת מחדל"
 
1323
 
1324
- # unset($_POST['user_role_id']);
1325
- # $errorMessage = 'Error! ' . __('Error encountered during default role change operation', 'ure');
1326
- # if (isset($wp_roles->role_objects[$user_role_id]) && $user_role_id !== 'administrator') {
1327
- # wpml-name: b64bfe4842bc0638b79a24687976394e
1328
- msgid "Error encountered during default role change operation"
1329
- msgstr "ארעה שגיאה בעת הנסיון לשנות את סוג משתמש ברירת מחדל"
 
1330
 
1331
- # } else {
1332
- # $mess = sprintf(__('Role %s is deleted successfully', 'ure'), $role);
1333
- # }
1334
- # wpml-name: 53552ec95bc8303219e8c39375763370
1335
- msgid "Role %s is deleted successfully"
1336
- msgstr "סוג המשתמש %s נמחק בהצלחה"
 
1337
 
1338
- # if (empty($result)) {
1339
- # $mess = 'Error! ' . __('Error encountered during role delete operation', 'ure');
1340
- # } else {
1341
- # wpml-name: 5ca27dda122445e597586a22e18088e6
1342
- msgid "Error encountered during role delete operation"
1343
- msgstr "ארעה שגיאה במהלך נסיון המחיקה של סוג המשתמש"
 
1344
 
1345
- # } else {
1346
- # $mess = sprintf(__('Role %s is created successfully', 'ure'), $user_role_name);
1347
- # }
1348
- # wpml-name: 1613afddcbdf86bd48660e5443be00ff
1349
- msgid "Role %s is created successfully"
1350
- msgstr "סוג המשתמש %s נוצר בהצלחה"
 
1351
 
1352
- # if (!isset($result) || empty($result)) {
1353
- # $mess = 'Error! ' . __('Error is encountered during new role create operation', 'ure');
1354
- # } else {
1355
- # wpml-name: e0618b1a4160611a46b1b95acab0821c
1356
- msgid "Error is encountered during new role create operation"
1357
- msgstr "ארעה שגיאה בעת יצירת סוג המשתמש החדש"
 
1358
 
1359
- # if (isset($wp_roles->roles[$user_role_id])) {
1360
- # return sprintf('Error! ' . __('Role %s exists already', 'ure'), $user_role_id);
1361
- # }
1362
- # wpml-name: 61b6d86154b5437be56e6565f2820391
1363
- msgid "Role %s exists already"
1364
- msgstr "סוג המשתמש %s כבר קיים"
 
1365
 
1366
- # if (!$valid_name || ($valid_name && ($match[0] != $user_role_id))) { // some non-alphanumeric charactes found!
1367
- # return __('Error: Role ID must contain latin characters, digits, hyphens or underscore only!', 'ure');
1368
- # }
1369
- # wpml-name: f9182094e24a9e2fbb7317b1724a69c9
1370
- msgid ""
1371
- "Error: Role ID must contain latin characters, digits, hyphens or underscore "
1372
- "only!"
1373
- msgstr ""
1374
- "שגיאה: תפקיד המשתמש חייב לכלול אותיות לטיניות, ספרות, מקפים וקו תחתון בלבד!"
1375
 
1376
- # if ($show_message) {
1377
- # $this->show_message('Error! ' . __('Error is occur. Please check the log file.', 'ure'));
1378
- # }
1379
- # wpml-name: 766a60ac9e13c76c28bdf714ddecaa25
1380
- msgid "Error is occur. Please check the log file."
1381
- msgstr "ארעה שגיאה, אנא בדוק את קובץ היומן."
 
1382
 
1383
- # if (!empty($url)) {
1384
- # $link = '<a href="' . $url . '" title="read about ' . $capability . ' user capability" target="new"><img src="' . URE_PLUGIN_URL . '/images/help.png" alt="' . __('Help', 'ure') . '" /></a>';
1385
- # } else {
1386
- # wpml-name: 6a26f548831e6a8c26bfbbd9f6ec61e0
1387
- msgid "Help"
1388
- msgstr "עזרה"
 
1389
 
1390
- # } else if ($action == 'roles_restore_note') {
1391
- # $this->notification = __('User Roles are restored to WordPress default values. ', 'ure');
1392
- # } else if ($action == 'update') {
1393
- # wpml-name: 7182950b4f92d446844be24cfea6276a
1394
- msgid "User Roles are restored to WordPress default values. "
1395
- msgstr "תפקידי משתמש שוחזרו לערכי ברירת המחדל של וורדפרס."
 
1396
 
 
 
1397
  # }
1398
- # $mess = __('Error occured during user update', 'ure');
1399
- # }
1400
- # wpml-name: f7283da5501e7e1cb13255d323859feb
1401
- msgid "Error occured during user update"
1402
- msgstr "קרתה שגיאה בזמן עדכון המשתמש"
1403
 
1404
- # }
1405
- # $mess = __('User capabilities are updated successfully', 'ure');
 
 
 
 
 
 
 
 
1406
  # } else {
1407
- # wpml-name: ee37618edaa53156b3a18d543ec60412
1408
- msgid "User capabilities are updated successfully"
1409
- msgstr "יכולות המשתמש עודכנו בהצלחה"
 
 
1410
 
 
 
1411
  # }
1412
- # $mess = __('Error occured during role(s) update', 'ure');
 
 
 
 
 
 
 
1413
  # }
1414
- # wpml-name: 9f528ca4741155f636c4331b19f2b170
1415
- msgid "Error occured during role(s) update"
1416
- msgstr "קרתה שגיאה בעת עדכון תפקידי המשתמש"
 
 
1417
 
1418
- # } else {
1419
- # $mess = __('Roles are updated for all network', 'ure');
1420
  # }
1421
- # wpml-name: f89c187756348dad944b0fcca790fde6
1422
- msgid "Roles are updated for all network"
1423
- msgstr "התפקידים עודכנו עבור כל הרשת"
 
 
1424
 
1425
- # if (!$this->apply_to_all) {
1426
- # $mess = __('Role is updated successfully', 'ure');
1427
- # } else {
1428
- # wpml-name: 9fd866f99b55510d60384b7efeb22018
1429
- msgid "Role is updated successfully"
1430
- msgstr "התפקיד עודכן בהצלחה"
 
1431
 
1432
- # if (!isset($this->roles[$_POST['user_role']])) {
1433
- # $mess = __('Error: ', 'ure') . __('Role', 'ure') . ' <em>' . esc_html($_POST['user_role']) . '</em> ' . __('does not exist', 'ure');
1434
- # $this->current_role = '';
1435
- # wpml-name: 9416a531e05cf18f1c26b97263e3c96b
1436
- msgid "does not exist"
1437
- msgstr "לא נמצא"
 
1438
 
1439
- # if (!isset($this->roles[$_POST['user_role']])) {
1440
- # $mess = __('Error: ', 'ure') . __('Role', 'ure') . ' <em>' . esc_html($_POST['user_role']) . '</em> ' . __('does not exist', 'ure');
1441
- # $this->current_role = '';
1442
- # wpml-name: bbbabdbe1b262f75d99d62880b953be1
1443
- msgid "Role"
1444
- msgstr "סוג משתמש:"
 
1445
 
1446
- # if (!isset($this->roles[$_POST['user_role']])) {
1447
- # $mess = __('Error: ', 'ure') . __('Role', 'ure') . ' <em>' . esc_html($_POST['user_role']) . '</em> ' . __('does not exist', 'ure');
1448
- # $this->current_role = '';
1449
- # wpml-name: f97d2eb0a66987899d02bb180936afa3
1450
- msgid "Error: "
1451
- msgstr "שגיאה:"
 
1452
 
1453
- # <div style="padding:10px;">
1454
- # <div class="ure-label"><?php echo __('Capability name (ID): ', 'ure'); ?></div>
1455
- # <div class="ure-input"><input type="text" name="capability_id" id="capability_id" size="25"/></div>
1456
- # wpml-name: 42eabb45e3d2920f6a763458c3c5fffe
1457
- msgid "Capability name (ID): "
1458
- msgstr "שם היכולת (מזהה): "
 
1459
 
1460
- # <div class="ure-input"><input type="text" name="user_role_name" id="user_role_name" size="25"/></div>
1461
- # <div class="ure-label"><?php echo __('Make copy of: ', 'ure'); ?></div>
1462
- # <div class="ure-input"><?php echo $this->role_to_copy_html; ?></div>
1463
- # wpml-name: 1f2d970e46f567eb2fe77e1f8387f37a
1464
- msgid "Make copy of: "
1465
- msgstr "העתק:"
 
1466
 
1467
- # <div class="ure-input"><input type="text" name="user_role_id" id="user_role_id" size="25"/></div>
1468
- # <div class="ure-label"><?php echo __('Display Role Name: ', 'ure'); ?></div>
1469
- # <div class="ure-input"><input type="text" name="user_role_name" id="user_role_name" size="25"/></div>
1470
- # wpml-name: 246c9066a0e20805752f69f87ffb66af
1471
- msgid "Display Role Name: "
1472
- msgstr "הצג שם תפקיד:"
1473
 
1474
- # <form id="ure_add_role_form" name="ure_add_role_form" method="POST">
1475
- # <div class="ure-label"><?php echo __('Role name (ID): ', 'ure'); ?></div>
1476
- # <div class="ure-input"><input type="text" name="user_role_id" id="user_role_id" size="25"/></div>
1477
- # wpml-name: 37b0a122a7eb7b961dc33e61b8d5df10
1478
- msgid "Role name (ID): "
1479
- msgstr "שם התפקיד (מזהה): "
 
1480
 
1481
- # if (!$this->editor_init0()) {
1482
- # $this->show_message(__('Error: wrong request', 'URE'));
1483
- # return false;
1484
- # wpml-name: a4b9ac7e09dc5996d763f6bae29fd31a
1485
- msgid "Error: wrong request"
1486
- msgstr "שגיאה: בקשה מוטעית"
 
 
 
 
 
 
 
 
 
1487
 
1488
  # ?>
1489
- # <span style="font-weight: bold;"><?php _e('Custom capabilities:', 'ure'); ?></span>
1490
- # <table class="form-table" style="clear:none;" cellpadding="0" cellspacing="0">
1491
- # wpml-name: 0e57c9d7615e130906e8fc6e10065ae1
1492
- msgid "Custom capabilities:"
1493
- msgstr "יכולות מותאמות אישית:"
 
1494
 
1495
- # <div style="display:table-inline; float: right; margin-right: 12px;">
1496
- # <?php _e('Quick filter:', 'ure'); ?>&nbsp;
1497
- # <input type="text" id="quick_filter" name="quick_filter" value="" size="20" onkeyup="ure_filter_capabilities(this.value);" />
1498
- # wpml-name: dfcd600fb9e5ccb12b8bb4d83f45d35a
1499
- msgid "Quick filter:"
1500
- msgstr "סינון מהיר:"
 
1501
 
1502
- # <td style="padding-left: 5px; padding-top: 5px; border-top: 1px solid #ccc;">
1503
- # <span style="font-weight: bold;"><?php _e('Core capabilities:', 'ure'); ?></span>
1504
- # <div style="display:table-inline; float: right; margin-right: 12px;">
1505
- # wpml-name: cca700a30d083e59a9879c24f255abe3
1506
- msgid "Core capabilities:"
1507
- msgstr "יכולות ליבה:"
 
1508
 
1509
- # <?php echo $checked; ?> title="<?php echo $hint;?>" onclick="ure_applyToAllOnClick(this)"/>
1510
- # <label for="ure_apply_to_all" title="<?php echo $hint;?>"><?php _e('Apply to All Sites', 'ure');?></label>
1511
- # </div>
1512
- # wpml-name: 3c3416f05587ed480626948fab988eea
1513
- msgid "Apply to All Sites"
1514
- msgstr "החל על כל האתרים"
1515
 
1516
- # <?php echo $checked; ?> onclick="ure_turn_deprecated_caps(<?php echo $this->user_to_edit->ID; ?>);"/>
1517
- # <label for="ure_show_deprecated_caps"><?php _e('Show deprecated capabilities', 'ure'); ?></label>
1518
- # </td>
1519
- # wpml-name: 130b09deaec4b13948be95555d546f25
1520
- msgid "Show deprecated capabilities"
1521
- msgstr "הצג הרשאות לפי מספר"
 
1522
 
1523
- # <?php echo $checked; ?> onclick="ure_turn_caps_readable(<?php echo $this->user_to_edit->ID; ?>);" />
1524
- # <label for="ure_caps_readable"><?php _e('Show capabilities in human readable form', 'ure'); ?></label>&nbsp;&nbsp;&nbsp;
1525
- # <?php
1526
- # wpml-name: 5e09edd7b2ed1864deffbd964073b27a
1527
- msgid "Show capabilities in human readable form"
1528
- msgstr "הראה יכולות משתמשים בשפה קריאה"
1529
 
1530
- # <div style="padding:10px;">
1531
- # <div class="ure-label"><?php _e('Select Role:', 'ure');?></div>
1532
- # <div class="ure-input"><?php echo $this->role_delete_html; ?></div>
1533
- # wpml-name: 6ae3f08b992f68a1bf8924945d2c7c98
1534
- msgid "Select Role:"
1535
- msgstr "בחר סוג משתמש"
 
1536
 
1537
- # <?php
1538
- # $this->display_box_start(__('Select Role and change its capabilities list', 'ure'), 'min-width:800px;');
1539
- # ?>
1540
- # wpml-name: 6a9631dbe20237a244cb3721ab6fc7d8
1541
- msgid "Select Role and change its capabilities list"
1542
- msgstr "בחר סוג משתמש ושנה את היכולות שלו"
 
 
 
 
 
 
 
3
  # http://wpml.org
4
  msgid ""
5
  msgstr ""
 
 
6
  "Project-Id-Version: User Role Editor\n"
7
+ "Report-Msgid-Bugs-To: \n"
8
+ "POT-Creation-Date: 2013-11-04 08:39+0700\n"
9
  "PO-Revision-Date: \n"
10
  "Last-Translator: Vladimir Garagulya <vladimir@shinephp.com>\n"
11
  "Language-Team: Ahrale, Atar4U.com <contact@atar4u.com>\n"
 
12
  "Language: Hebrew עברית he_IL\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
+ # <p class="submit">
20
+ # <input type="submit" class="button-primary" name="user_role_editor_settings_update" value="<?php _e('Save', 'ure') ?>" />
21
+ # </p>
22
+ # wpml-name: c9cc8cce247e49bae79f15173ce97354
23
+ #: ../includes/settings-template.php:63
24
+ msgid "Save"
25
+ msgstr "שמירה"
 
 
 
 
 
 
 
 
 
 
 
 
 
26
 
27
+ # if (!is_array($caps_to_remove) || count($caps_to_remove) == 0 || !isset($caps_to_remove[$capability_id])) {
28
+ # return sprintf(__('Error! You do not have permission to delete this capability: %s!', 'ure'), $capability_id);
29
+ # }
30
+ # wpml-name: 0e132e68574d9609d956f9be409f7384
31
+ #: ../includes/class-user-role-editor.php:171
32
+ #: ../includes/class-user-role-editor.php:173
33
+ msgid "You do not have permission to edit this user."
34
  msgstr ""
 
 
 
 
 
 
 
 
 
35
 
36
+ # wp_nonce_url("users.php?page=users-".URE_PLUGIN_FILE."&object=user&amp;user_id={$user->ID}", "ure_user_{$user->ID}") .
37
+ # '">' . __('Capabilities', 'ure') . '</a>';
38
+ # }
39
+ # wpml-name: 82ec2cd6fda87713f588da75c3b1d0ed
40
+ #: ../includes/class-user-role-editor.php:314
41
+ msgid "Capabilities"
42
+ msgstr "יכולות"
43
 
44
+ # if ($file == plugin_basename(dirname(URE_PLUGIN_FULL_PATH).'/'.URE_PLUGIN_FILE)) {
45
+ # $settings_link = "<a href='options-general.php?page=settings-".URE_PLUGIN_FILE."'>" . __('Settings', 'ure') . "</a>";
46
+ # array_unshift($links, $settings_link);
47
+ # wpml-name: f4f70727dc34561dfde1a3c529b6205c
48
+ #: ../includes/class-user-role-editor.php:407
49
+ msgid "Settings"
50
+ msgstr "הגדרות"
51
 
52
+ # if ($file == plugin_basename(dirname(URE_PLUGIN_FULL_PATH) .'/'.URE_PLUGIN_FILE)) {
53
+ # $links[] = '<a target="_blank" href="http://role-editor.com/changelog">' . __('Changelog', 'ure') . '</a>';
54
+ # }
55
+ # wpml-name: c49182dc0c7a70b9cd2e10853d9ec6c7
56
+ #: ../includes/class-user-role-editor.php:420
57
+ #: ../includes/class-ure-lib.php:2089
58
+ msgid "Changelog"
59
+ msgstr "יומן שינויים"
60
 
61
+ #: ../includes/class-user-role-editor.php:442
62
+ msgid "Overview"
63
+ msgstr ""
 
 
 
64
 
65
+ # esc_html__('User Role Editor', 'ure'),
66
+ # esc_html__('User Role Editor', 'ure'),
67
+ # $this->key_capability, 'settings-'.URE_PLUGIN_FILE, array(&$this, 'settings'));
68
+ # wpml-name: c26ad3b67c7211a5872194d68cb5a8eb
69
+ #: ../includes/class-user-role-editor.php:451
70
+ #: ../includes/class-user-role-editor.php:479
71
+ #: ../includes/class-user-role-editor.php:678
72
+ #: ../includes/class-ure-lib.php:223
73
+ msgid "User Role Editor"
74
+ msgstr "User Role Editor"
75
 
76
+ #: ../includes/class-user-role-editor.php:497
 
 
 
77
  msgid ""
78
+ "You do not have sufficient permissions to manage options for User Role "
79
+ "Editor."
80
  msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
81
 
82
+ # $this->lib->flush_options();
83
+ # $this->lib->show_message(__('User Role Editor options are updated', 'ure'));
84
+ # } else { // get options from the options storage
85
+ # wpml-name: aef323fbbd25d577170fff17c15cf857
86
+ #: ../includes/class-user-role-editor.php:526
87
+ msgid "User Role Editor options are updated"
88
+ msgstr "אפשרויות עורך תפקיד משתמש עודכנו"
89
 
90
+ #: ../includes/class-user-role-editor.php:571
91
+ msgid "Insufficient permissions to work with User Role Editor"
 
 
 
 
 
92
  msgstr ""
 
 
93
 
94
+ # 'is_multisite' => is_multisite() ? 1 : 0,
95
+ # 'select_all' => __('Select All', 'ure'),
96
+ # 'unselect_all' => __('Unselect All', 'ure'),
97
+ # wpml-name: 45e96c0a422ce8a1a6ec1bd5eb9625c6
98
+ #: ../includes/class-user-role-editor.php:624
99
+ msgid "Select All"
100
+ msgstr "בחירת הכל"
101
 
102
+ # 'select_all' => __('Select All', 'ure'),
103
+ # 'unselect_all' => __('Unselect All', 'ure'),
104
+ # 'reverse' => __('Reverse', 'ure'),
105
+ # wpml-name: 016269c0d83a19a19a2ee0a4294740b4
106
+ #: ../includes/class-user-role-editor.php:625
107
+ msgid "Unselect All"
108
+ msgstr "לא לבחור שום דבר"
109
 
110
+ # 'unselect_all' => __('Unselect All', 'ure'),
111
+ # 'reverse' => __('Reverse', 'ure'),
112
+ # 'update' => __('Update', 'ure'),
113
+ # wpml-name: 67f115c1fddc4ce1aeb1c754001585bc
114
+ #: ../includes/class-user-role-editor.php:626
115
+ msgid "Reverse"
116
+ msgstr "להפוך"
117
 
118
+ # 'reverse' => __('Reverse', 'ure'),
119
+ # 'update' => __('Update', 'ure'),
120
+ # 'confirm_submit' => __('Please confirm permissions update', 'ure'),
121
+ # wpml-name: 06933067aafd48425d67bcb01bba5cb6
122
+ #: ../includes/class-user-role-editor.php:627
123
+ msgid "Update"
124
+ msgstr "עדכן"
125
 
126
+ # 'update' => __('Update', 'ure'),
127
+ # 'confirm_submit' => __('Please confirm permissions update', 'ure'),
128
+ # 'add_new_role_title' => __('Add New Role', 'ure'),
129
+ # wpml-name: 85251872440cc94c6080a90451e018c4
130
+ #: ../includes/class-user-role-editor.php:628
131
+ msgid "Please confirm permissions update"
132
+ msgstr "נא לאשר את עדכון ההרשאות"
133
 
134
+ # 'confirm_submit' => __('Please confirm permissions update', 'ure'),
135
+ # 'add_new_role_title' => __('Add New Role', 'ure'),
136
+ # 'role_name_required' => __(' Role name (ID) can not be empty!', 'ure'),
137
+ # wpml-name: cf46e7fb1093a47a76f35fc61ab5d432
138
+ #: ../includes/class-user-role-editor.php:629
139
+ msgid "Add New Role"
140
+ msgstr "הוסף סוג משתמש חדש"
141
 
142
+ # 'add_new_role_title' => __('Add New Role', 'ure'),
143
+ # 'role_name_required' => __(' Role name (ID) can not be empty!', 'ure'),
144
+ # 'role_name_valid_chars' => __(' Role name (ID) must contain latin characters, digits, hyphens or underscore only!', 'ure'),
145
+ # wpml-name: 1400ecabfd5a7c9527f71723da18dad0
146
+ #: ../includes/class-user-role-editor.php:630
147
+ msgid " Role name (ID) can not be empty!"
148
+ msgstr " שם התפקיד (מזהה) אינו יכול להישאר ריק!"
149
 
150
+ # 'role_name_required' => __(' Role name (ID) can not be empty!', 'ure'),
151
+ # 'role_name_valid_chars' => __(' Role name (ID) must contain latin characters, digits, hyphens or underscore only!', 'ure'),
152
+ # 'add_role' => __('Add Role', 'ure'),
153
+ # wpml-name: 7b94f04285f5efc287652bd40338e730
154
+ #: ../includes/class-user-role-editor.php:631
155
+ msgid ""
156
+ " Role name (ID) must contain latin characters, digits, hyphens or underscore "
157
+ "only!"
158
+ msgstr ""
159
+ " שם התפקיד (מזהה) חייב להכיל אותיות לטיניות, ספרות, מקפים או קו תחתון בלבד!"
160
 
161
+ # 'role_name_valid_chars' => __(' Role name (ID) must contain latin characters, digits, hyphens or underscore only!', 'ure'),
162
+ # 'add_role' => __('Add Role', 'ure'),
163
+ # 'delete_role' => __('Delete Role', 'ure'),
164
+ # wpml-name: 1453b39dcc15a372640d960c6db7db25
165
+ #: ../includes/class-user-role-editor.php:632
166
+ msgid "Add Role"
167
+ msgstr "הוספת תפקיד"
168
 
169
+ # 'add_role' => __('Add Role', 'ure'),
170
+ # 'delete_role' => __('Delete Role', 'ure'),
171
+ # 'cancel' => __('Cancel', 'ure'),
172
+ # wpml-name: 4e2626418b461869a386850b0f3b437f
173
+ #: ../includes/class-user-role-editor.php:633
174
+ msgid "Delete Role"
175
+ msgstr "מחיקת סוג משתמש"
176
 
177
+ # 'delete_role' => __('Delete Role', 'ure'),
178
+ # 'cancel' => __('Cancel', 'ure'),
179
+ # 'add_capability' => __('Add Capability', 'ure'),
180
+ # wpml-name: ea4788705e6873b424c65e91c2846b19
181
+ #: ../includes/class-user-role-editor.php:634
182
+ msgid "Cancel"
183
+ msgstr "ביטול"
184
 
185
+ # 'cancel' => __('Cancel', 'ure'),
186
+ # 'add_capability' => __('Add Capability', 'ure'),
187
+ # 'delete_capability' => __('Delete Capability', 'ure'),
188
+ # wpml-name: 39cc0b416ba0d26679547346b8c5cf8d
189
+ #: ../includes/class-user-role-editor.php:635
190
+ msgid "Add Capability"
191
+ msgstr "הוספת יכולת"
192
 
193
+ # 'set_new_default_role' => __('Set New Default Role', 'ure'),
194
+ # 'delete_capability' => __('Delete Capability', 'ure'),
195
+ # 'delete_capability_warning' => __('Warning! Be careful - removing critical capability could crash some plugin or other custom code', 'ure'),
196
+ # wpml-name: 06844dd4ec4b29fa8a354aaacbd4861a
197
+ #: ../includes/class-user-role-editor.php:636
198
+ #: ../includes/class-user-role-editor.php:645
199
+ msgid "Delete Capability"
200
+ msgstr "מחיקת יכולת"
201
 
202
+ # 'delete_capability' => __('Delete Capability', 'ure'),
203
+ # 'reset' => __('Reset', 'ure'),
204
+ # 'reset_warning' => __('Reset Roles to WordPress defaults. Be careful, all changes made by you or plugins will be lost. Some plugins, e.g. S2Member, WooCommerce reactivation could be needed. Continue?', 'ure'),
205
+ # wpml-name: 526d688f37a86d3c3f27d0c5016eb71d
206
+ #: ../includes/class-user-role-editor.php:637
207
+ msgid "Reset"
208
+ msgstr "איפוס"
209
 
210
+ #: ../includes/class-user-role-editor.php:638
211
+ msgid "DANGER! Resetting will restore default settings from WordPress Core."
212
+ msgstr ""
 
 
 
213
 
214
+ #: ../includes/class-user-role-editor.php:639
215
+ msgid ""
216
+ "If any plugins have changed capabilities in any way upon installation (such "
217
+ "as S2Member, WooCommerce, and many more), those capabilities will be DELETED!"
218
+ msgstr ""
 
219
 
220
+ #: ../includes/class-user-role-editor.php:640
221
+ msgid ""
222
+ "For more information on how to undo changes and restore plugin capabilities "
223
+ "go to"
224
+ msgstr ""
 
225
 
226
+ # __('Author', 'ure');
227
+ # __('Contributor', 'ure');
228
+ # __('Subscriber', 'ure');
229
+ # wpml-name: 23d21ad4dea7aadf907e5e601b1905e6
230
+ #: ../includes/class-user-role-editor.php:642
231
+ msgid "Continue?"
232
+ msgstr ""
233
 
234
+ # 'reset_warning' => __('Reset Roles to WordPress defaults. Be careful, all changes made by you or plugins will be lost. Some plugins, e.g. S2Member, WooCommerce reactivation could be needed. Continue?', 'ure'),
235
+ # 'default_role' => __('Default Role', 'ure'),
236
+ # 'set_new_default_role' => __('Set New Default Role', 'ure'),
237
+ # wpml-name: db135301eaf77a955b2b016f9b9d6a99
238
+ #: ../includes/class-user-role-editor.php:643
239
+ msgid "Default Role"
240
+ msgstr "תפקיד ברירת מחדל"
 
 
 
 
 
 
241
 
242
+ # 'default_role' => __('Default Role', 'ure'),
243
+ # 'set_new_default_role' => __('Set New Default Role', 'ure'),
244
+ # 'delete_capability' => __('Delete Capability', 'ure'),
245
+ # wpml-name: f28d52a1096a73cff427d1216dc578ad
246
+ #: ../includes/class-user-role-editor.php:644
247
+ msgid "Set New Default Role"
248
+ msgstr "הגדר תפקיד ברירת מחדל חדש"
249
 
250
+ # 'delete_capability' => __('Delete Capability', 'ure'),
251
+ # 'delete_capability_warning' => __('Warning! Be careful - removing critical capability could crash some plugin or other custom code', 'ure'),
252
+ # 'capability_name_required' => __(' Capability name (ID) can not be empty!', 'ure'),
253
+ # wpml-name: b8827a096ab461b8e26931adf82c8d85
254
+ #: ../includes/class-user-role-editor.php:646
255
+ msgid ""
256
+ "Warning! Be careful - removing critical capability could crash some plugin "
257
+ "or other custom code"
258
+ msgstr ""
259
+ "זהירות! הסרה של אפשרויות קריטיות עשוי לגרום לתוספים מסוים או קוד נסמך שלא "
260
+ "לעבוד כשורה"
261
 
262
+ # 'delete_capability_warning' => __('Warning! Be careful - removing critical capability could crash some plugin or other custom code', 'ure'),
263
+ # 'capability_name_required' => __(' Capability name (ID) can not be empty!', 'ure'),
264
+ # 'capability_name_valid_chars' => __(' Capability name (ID) must contain latin characters, digits, hyphens or underscore only!', 'ure'),
265
+ # wpml-name: ba38256d66e3ae37b7b16052a0f94729
266
+ #: ../includes/class-user-role-editor.php:647
267
+ msgid " Capability name (ID) can not be empty!"
268
+ msgstr " שם היכולת (מזהה) לא יכול להיות ריק!"
269
 
270
+ # 'capability_name_required' => __(' Capability name (ID) can not be empty!', 'ure'),
271
+ # 'capability_name_valid_chars' => __(' Capability name (ID) must contain latin characters, digits, hyphens or underscore only!', 'ure'),
272
+ # ) );
273
+ # wpml-name: 6d4c115be3e7b4f1fd70112642c9a72d
274
+ #: ../includes/class-user-role-editor.php:648
275
+ msgid ""
276
+ " Capability name (ID) must contain latin characters, digits, hyphens or "
277
+ "underscore only!"
278
+ msgstr ""
279
+ " שם היכולת (מזהה) חייב להכיל אותיות לטיניות, ספרות, מקפים או קו תחתון בלבד!"
280
 
281
+ # <tr>
282
+ # <th scope="row"><?php _e('Other Roles', 'ure'); ?></th>
283
+ # <td>
284
+ # wpml-name: a5f40dc2b5f2552187d0326e77e267eb
285
+ #: ../includes/class-user-role-editor.php:681
286
+ #: ../includes/class-user-role-editor.php:709
287
+ msgid "Other Roles"
288
+ msgstr "תפקידים אחרים"
289
 
290
+ # $output = $this->lib->roles_text($roles);
291
+ # echo $output . '&nbsp;&nbsp;&gt;&gt;&nbsp;<a href="' . wp_nonce_url("users.php?page=users-".URE_PLUGIN_FILE."&object=user&amp;user_id={$user->ID}", "ure_user_{$user->ID}") . '">' . __('Edit', 'ure') . '</a>';
292
+ # ?>
293
+ # wpml-name: 7dce122004969d56ae2e0245cb754d35
294
+ #: ../includes/class-user-role-editor.php:691
295
+ msgid "Edit"
296
+ msgstr "עריכה"
297
 
298
+ # <?php
299
+ # $this->display_box_start(__('Select Role and change its capabilities list', 'ure'), 'min-width:800px;');
300
+ # ?>
301
+ # wpml-name: 6a9631dbe20237a244cb3721ab6fc7d8
302
+ #: ../includes/ure-role-edit.php:17
303
+ msgid "Select Role and change its capabilities list"
304
+ msgstr "בחר סוג משתמש ושנה את היכולות שלו"
305
 
306
+ # <div style="padding:10px;">
307
+ # <div class="ure-label"><?php _e('Select Role:', 'ure');?></div>
308
+ # <div class="ure-input"><?php echo $this->role_delete_html; ?></div>
309
+ # wpml-name: 6ae3f08b992f68a1bf8924945d2c7c98
310
+ #: ../includes/ure-role-edit.php:19 ../includes/class-ure-lib.php:184
311
+ msgid "Select Role:"
312
+ msgstr "בחר סוג משתמש"
313
 
314
+ # <?php echo $checked; ?> onclick="ure_turn_caps_readable(<?php echo $this->user_to_edit->ID; ?>);" />
315
+ # <label for="ure_caps_readable"><?php _e('Show capabilities in human readable form', 'ure'); ?></label>&nbsp;&nbsp;&nbsp;
316
+ # <?php
317
+ # wpml-name: 5e09edd7b2ed1864deffbd964073b27a
318
+ #: ../includes/ure-role-edit.php:30 ../includes/ure-user-edit.php:51
319
+ msgid "Show capabilities in human readable form"
320
+ msgstr "הראה יכולות משתמשים בשפה קריאה"
321
 
322
+ # <?php echo $checked; ?> onclick="ure_turn_deprecated_caps(<?php echo $this->user_to_edit->ID; ?>);"/>
323
+ # <label for="ure_show_deprecated_caps"><?php _e('Show deprecated capabilities', 'ure'); ?></label>
324
+ # </td>
325
+ # wpml-name: 130b09deaec4b13948be95555d546f25
326
+ #: ../includes/ure-role-edit.php:40 ../includes/ure-user-edit.php:61
327
+ #: ../includes/class-ure-screen-help.php:21
328
+ msgid "Show deprecated capabilities"
329
+ msgstr "הצג הרשאות לפי מספר"
330
 
331
  #
332
  #
333
  #
334
+ # wpml-name: a1fbf81a928fffd1bb4665b5af8952ab
335
+ #: ../includes/ure-role-edit.php:45
336
+ msgid "If checked, then apply action to ALL sites of this Network"
337
+ msgstr "אם סומן, החל פעולה על כל האתרים ברשת זאת"
338
 
339
+ # <?php echo $checked; ?> title="<?php echo $hint;?>" onclick="ure_applyToAllOnClick(this)"/>
340
+ # <label for="ure_apply_to_all" title="<?php echo $hint;?>"><?php _e('Apply to All Sites', 'ure');?></label>
341
+ # </div>
342
+ # wpml-name: 3c3416f05587ed480626948fab988eea
343
+ #: ../includes/ure-role-edit.php:57
344
+ msgid "Apply to All Sites"
345
+ msgstr "החל על כל האתרים"
346
 
347
+ # <td style="padding-left: 5px; padding-top: 5px; border-top: 1px solid #ccc;">
348
+ # <span style="font-weight: bold;"><?php _e('Core capabilities:', 'ure'); ?></span>
349
+ # <div style="display:table-inline; float: right; margin-right: 12px;">
350
+ # wpml-name: cca700a30d083e59a9879c24f255abe3
351
+ #: ../includes/ure-role-edit.php:64 ../includes/ure-user-edit.php:104
352
+ msgid "Core capabilities:"
353
+ msgstr "יכולות ליבה:"
354
 
355
+ # <div style="display:table-inline; float: right; margin-right: 12px;">
356
+ # <?php _e('Quick filter:', 'ure'); ?>&nbsp;
357
+ # <input type="text" id="quick_filter" name="quick_filter" value="" size="20" onkeyup="ure_filter_capabilities(this.value);" />
358
+ # wpml-name: dfcd600fb9e5ccb12b8bb4d83f45d35a
359
+ #: ../includes/ure-role-edit.php:66 ../includes/ure-user-edit.php:106
360
+ msgid "Quick filter:"
361
+ msgstr "סינון מהיר:"
362
 
363
+ # ?>
364
+ # <span style="font-weight: bold;"><?php _e('Custom capabilities:', 'ure'); ?></span>
365
+ # <table class="form-table" style="clear:none;" cellpadding="0" cellspacing="0">
366
+ # wpml-name: 0e57c9d7615e130906e8fc6e10065ae1
367
+ #: ../includes/ure-role-edit.php:84 ../includes/ure-user-edit.php:125
368
+ msgid "Custom capabilities:"
369
+ msgstr "יכולות מותאמות אישית:"
370
 
371
+ # if (!$this->editor_init0()) {
372
+ # $this->show_message(__('Error: wrong request', 'URE'));
373
+ # return false;
374
+ # wpml-name: a4b9ac7e09dc5996d763f6bae29fd31a
375
+ #: ../includes/class-ure-lib.php:141
376
+ msgid "Error: wrong request"
377
+ msgstr "שגיאה: בקשה מוטעית"
378
 
379
+ # <form id="ure_add_role_form" name="ure_add_role_form" method="POST">
380
+ # <div class="ure-label"><?php echo __('Role name (ID): ', 'ure'); ?></div>
381
+ # <div class="ure-input"><input type="text" name="user_role_id" id="user_role_id" size="25"/></div>
382
+ # wpml-name: 37b0a122a7eb7b961dc33e61b8d5df10
383
+ #: ../includes/class-ure-lib.php:173
384
+ msgid "Role name (ID): "
385
+ msgstr "שם התפקיד (מזהה): "
386
 
387
+ # <div class="ure-input"><input type="text" name="user_role_id" id="user_role_id" size="25"/></div>
388
+ # <div class="ure-label"><?php echo __('Display Role Name: ', 'ure'); ?></div>
389
+ # <div class="ure-input"><input type="text" name="user_role_name" id="user_role_name" size="25"/></div>
390
+ # wpml-name: 246c9066a0e20805752f69f87ffb66af
391
+ #: ../includes/class-ure-lib.php:175
392
+ msgid "Display Role Name: "
393
+ msgstr "הצג שם תפקיד:"
394
 
395
+ # <div class="ure-input"><input type="text" name="user_role_name" id="user_role_name" size="25"/></div>
396
+ # <div class="ure-label"><?php echo __('Make copy of: ', 'ure'); ?></div>
397
+ # <div class="ure-input"><?php echo $this->role_to_copy_html; ?></div>
398
+ # wpml-name: 1f2d970e46f567eb2fe77e1f8387f37a
399
+ #: ../includes/class-ure-lib.php:177
400
+ msgid "Make copy of: "
401
+ msgstr "העתק:"
402
 
403
+ # <div style="padding:10px;">
404
+ # <div class="ure-label"><?php _e('Delete:', 'ure');?></div>
405
+ # <div class="ure-input"><?php echo $this->capability_remove_html; ?></div>
406
+ # wpml-name: 62f0d909f4edb78b805e4cf6747a4c36
407
+ #: ../includes/class-ure-lib.php:199
408
+ msgid "Delete:"
409
+ msgstr "מחיקה:"
410
 
411
+ # <div style="padding:10px;">
412
+ # <div class="ure-label"><?php echo __('Capability name (ID): ', 'ure'); ?></div>
413
+ # <div class="ure-input"><input type="text" name="capability_id" id="capability_id" size="25"/></div>
414
+ # wpml-name: 42eabb45e3d2920f6a763458c3c5fffe
415
+ #: ../includes/class-ure-lib.php:206
416
+ msgid "Capability name (ID): "
417
+ msgstr "שם היכולת (מזהה): "
418
 
419
+ # if (!isset($this->roles[$_POST['user_role']])) {
420
+ # $mess = __('Error: ', 'ure') . __('Role', 'ure') . ' <em>' . esc_html($_POST['user_role']) . '</em> ' . __('does not exist', 'ure');
421
+ # $this->current_role = '';
422
+ # wpml-name: f97d2eb0a66987899d02bb180936afa3
423
+ #: ../includes/class-ure-lib.php:321
424
+ msgid "Error: "
425
+ msgstr "שגיאה:"
426
 
427
+ # if (!isset($this->roles[$_POST['user_role']])) {
428
+ # $mess = __('Error: ', 'ure') . __('Role', 'ure') . ' <em>' . esc_html($_POST['user_role']) . '</em> ' . __('does not exist', 'ure');
429
+ # $this->current_role = '';
430
+ # wpml-name: bbbabdbe1b262f75d99d62880b953be1
431
+ #: ../includes/class-ure-lib.php:321
432
+ msgid "Role"
433
+ msgstr "סוג משתמש:"
434
 
435
+ # if (!isset($this->roles[$_POST['user_role']])) {
436
+ # $mess = __('Error: ', 'ure') . __('Role', 'ure') . ' <em>' . esc_html($_POST['user_role']) . '</em> ' . __('does not exist', 'ure');
437
+ # $this->current_role = '';
438
+ # wpml-name: 9416a531e05cf18f1c26b97263e3c96b
439
+ #: ../includes/class-ure-lib.php:321
440
+ msgid "does not exist"
441
+ msgstr "לא נמצא"
442
 
443
+ # if (!$this->apply_to_all) {
444
+ # $mess = __('Role is updated successfully', 'ure');
445
+ # } else {
446
+ # wpml-name: 9fd866f99b55510d60384b7efeb22018
447
+ #: ../includes/class-ure-lib.php:364
448
+ msgid "Role is updated successfully"
449
+ msgstr "התפקיד עודכן בהצלחה"
 
 
 
450
 
451
+ # } else {
452
+ # $mess = __('Roles are updated for all network', 'ure');
453
+ # }
454
+ # wpml-name: f89c187756348dad944b0fcca790fde6
455
+ #: ../includes/class-ure-lib.php:366
456
+ msgid "Roles are updated for all network"
457
+ msgstr "התפקידים עודכנו עבור כל הרשת"
458
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
459
  # }
460
+ # $mess = __('Error occured during role(s) update', 'ure');
461
+ # }
462
+ # wpml-name: 9f528ca4741155f636c4331b19f2b170
463
+ #: ../includes/class-ure-lib.php:372
464
+ msgid "Error occured during role(s) update"
465
+ msgstr "קרתה שגיאה בעת עדכון תפקידי המשתמש"
 
 
 
 
466
 
467
+ # }
468
+ # $mess = __('User capabilities are updated successfully', 'ure');
469
+ # } else {
470
+ # wpml-name: ee37618edaa53156b3a18d543ec60412
471
+ #: ../includes/class-ure-lib.php:379
472
+ msgid "User capabilities are updated successfully"
473
+ msgstr "יכולות המשתמש עודכנו בהצלחה"
474
 
475
+ # }
476
+ # $mess = __('Error occured during user update', 'ure');
477
+ # }
478
+ # wpml-name: f7283da5501e7e1cb13255d323859feb
479
+ #: ../includes/class-ure-lib.php:384
480
+ msgid "Error occured during user update"
481
+ msgstr "קרתה שגיאה בזמן עדכון המשתמש"
482
 
483
+ # } else if ($action == 'roles_restore_note') {
484
+ # $this->notification = __('User Roles are restored to WordPress default values. ', 'ure');
485
+ # } else if ($action == 'update') {
486
+ # wpml-name: 7182950b4f92d446844be24cfea6276a
487
+ #: ../includes/class-ure-lib.php:439
488
+ msgid "User Roles are restored to WordPress default values. "
489
+ msgstr "תפקידי משתמש שוחזרו לערכי ברירת המחדל של וורדפרס."
490
 
491
+ # if (!empty($url)) {
492
+ # $link = '<a href="' . $url . '" title="read about ' . $capability . ' user capability" target="new"><img src="' . URE_PLUGIN_URL . '/images/help.png" alt="' . __('Help', 'ure') . '" /></a>';
493
+ # } else {
494
+ # wpml-name: 6a26f548831e6a8c26bfbbd9f6ec61e0
495
+ #: ../includes/class-ure-lib.php:1237
496
+ msgid "Help"
497
+ msgstr "עזרה"
498
 
499
+ # if ($show_message) {
500
+ # $this->show_message('Error! ' . __('Error is occur. Please check the log file.', 'ure'));
501
+ # }
502
+ # wpml-name: 766a60ac9e13c76c28bdf714ddecaa25
503
+ #: ../includes/class-ure-lib.php:1576
504
+ msgid "Error is occur. Please check the log file."
505
+ msgstr "ארעה שגיאה, אנא בדוק את קובץ היומן."
506
 
507
+ # if (!$valid_name || ($valid_name && ($match[0] != $user_role_id))) { // some non-alphanumeric charactes found!
508
+ # return __('Error: Role ID must contain latin characters, digits, hyphens or underscore only!', 'ure');
509
+ # }
510
+ # wpml-name: f9182094e24a9e2fbb7317b1724a69c9
511
+ #: ../includes/class-ure-lib.php:1601
512
  msgid ""
513
+ "Error: Role ID must contain latin characters, digits, hyphens or underscore "
514
+ "only!"
515
  msgstr ""
516
+ "שגיאה: תפקיד המשתמש חייב לכלול אותיות לטיניות, ספרות, מקפים וקו תחתון בלבד!"
517
 
518
+ # if (isset($wp_roles->roles[$user_role_id])) {
519
+ # return sprintf('Error! ' . __('Role %s exists already', 'ure'), $user_role_id);
520
+ # }
521
+ # wpml-name: 61b6d86154b5437be56e6565f2820391
522
+ #: ../includes/class-ure-lib.php:1616
523
+ #, php-format
524
+ msgid "Role %s exists already"
525
+ msgstr "סוג המשתמש %s כבר קיים"
526
 
527
+ # if (!isset($result) || empty($result)) {
528
+ # $mess = 'Error! ' . __('Error is encountered during new role create operation', 'ure');
529
+ # } else {
530
+ # wpml-name: e0618b1a4160611a46b1b95acab0821c
531
+ #: ../includes/class-ure-lib.php:1631
532
+ msgid "Error is encountered during new role create operation"
533
+ msgstr "ארעה שגיאה בעת יצירת סוג המשתמש החדש"
 
 
 
534
 
535
+ # } else {
536
+ # $mess = sprintf(__('Role %s is created successfully', 'ure'), $user_role_name);
537
+ # }
538
+ # wpml-name: 1613afddcbdf86bd48660e5443be00ff
539
+ #: ../includes/class-ure-lib.php:1633
540
+ #, php-format
541
+ msgid "Role %s is created successfully"
542
+ msgstr "סוג המשתמש %s נוצר בהצלחה"
543
 
544
+ # if (empty($result)) {
545
+ # $mess = 'Error! ' . __('Error encountered during role delete operation', 'ure');
546
+ # } else {
547
+ # wpml-name: 5ca27dda122445e597586a22e18088e6
548
+ #: ../includes/class-ure-lib.php:1699
549
+ msgid "Error encountered during role delete operation"
550
+ msgstr "ארעה שגיאה במהלך נסיון המחיקה של סוג המשתמש"
551
 
552
+ # } else {
553
+ # $mess = sprintf(__('Role %s is deleted successfully', 'ure'), $role);
554
+ # }
555
+ # wpml-name: 53552ec95bc8303219e8c39375763370
556
+ #: ../includes/class-ure-lib.php:1701
557
+ msgid "Unused roles are deleted successfully"
 
 
558
  msgstr ""
 
 
 
559
 
560
+ # } else {
561
+ # $mess = sprintf(__('Role %s is deleted successfully', 'ure'), $role);
562
+ # }
563
+ # wpml-name: 53552ec95bc8303219e8c39375763370
564
+ #: ../includes/class-ure-lib.php:1703
565
+ #, php-format
566
+ msgid "Role %s is deleted successfully"
567
+ msgstr "סוג המשתמש %s נמחק בהצלחה"
568
 
569
+ # unset($_POST['user_role_id']);
570
+ # $errorMessage = 'Error! ' . __('Error encountered during default role change operation', 'ure');
571
+ # if (isset($wp_roles->role_objects[$user_role_id]) && $user_role_id !== 'administrator') {
572
+ # wpml-name: b64bfe4842bc0638b79a24687976394e
573
+ #: ../includes/class-ure-lib.php:1728
574
+ msgid "Error encountered during default role change operation"
575
+ msgstr "ארעה שגיאה בעת הנסיון לשנות את סוג משתמש ברירת מחדל"
576
 
577
+ # } else {
578
+ # $mess = sprintf(__('Default role for new users is set to %s successfully', 'ure'), $wp_roles->role_names[$user_role_id]);
579
+ # }
580
+ # wpml-name: 94978d82edc73eba0f44bc7bceb299f4
581
+ #: ../includes/class-ure-lib.php:1734
582
+ #, php-format
583
+ msgid "Default role for new users is set to %s successfully"
584
+ msgstr "סוג המשתמש %s נקבע כברירת מחדל"
585
 
586
+ # // Standard WordPress roles
587
+ # __('Editor', 'ure');
588
+ # __('Author', 'ure');
589
+ # wpml-name: 344a7f427fb765610ef96eb7bce95257
590
+ #: ../includes/class-ure-lib.php:1753
591
+ msgid "Editor"
592
+ msgstr "עורך"
593
 
594
+ # __('Editor', 'ure');
595
+ # __('Author', 'ure');
596
+ # __('Contributor', 'ure');
597
+ # wpml-name: a517747c3d12f99244ae598910d979c5
598
+ #: ../includes/class-ure-lib.php:1754
599
+ msgid "Author"
600
+ msgstr "כותב"
601
 
602
+ # __('Author', 'ure');
603
+ # __('Contributor', 'ure');
604
+ # __('Subscriber', 'ure');
605
+ # wpml-name: 23d21ad4dea7aadf907e5e601b1905e6
606
+ #: ../includes/class-ure-lib.php:1755
607
+ msgid "Contributor"
608
+ msgstr "תורם"
609
 
610
+ # __('Contributor', 'ure');
611
+ # __('Subscriber', 'ure');
612
+ # // Standard WordPress capabilities
613
+ # wpml-name: 992c4a5b4628d8ebf671cf460254ee81
614
+ #: ../includes/class-ure-lib.php:1756
615
+ msgid "Subscriber"
616
+ msgstr "מנוי"
 
 
617
 
618
+ # // Standard WordPress capabilities
619
+ # __('Switch themes', 'ure');
620
+ # __('Edit themes', 'ure');
621
+ # wpml-name: 87d980c0c79638536655ce7fa0a4b85d
622
+ #: ../includes/class-ure-lib.php:1758
623
+ msgid "Switch themes"
624
+ msgstr "החלפת תבניות"
625
 
626
+ # __('Switch themes', 'ure');
627
+ # __('Edit themes', 'ure');
628
+ # __('Activate plugins', 'ure');
629
+ # wpml-name: 8395d1904c778ee1b2762e07a6a03878
630
+ #: ../includes/class-ure-lib.php:1759
631
+ msgid "Edit themes"
632
+ msgstr "עריכת תבניות"
633
 
634
+ # __('Edit themes', 'ure');
635
+ # __('Activate plugins', 'ure');
636
+ # __('Edit plugins', 'ure');
637
+ # wpml-name: c38bc47406355ef06ad3e10a98505536
638
+ #: ../includes/class-ure-lib.php:1760
639
+ msgid "Activate plugins"
640
+ msgstr "הפעלת תוספים"
641
 
642
+ # __('Activate plugins', 'ure');
643
+ # __('Edit plugins', 'ure');
644
+ # __('Edit users', 'ure');
645
+ # wpml-name: a6e42eb142c87e881a0d0c92acf4ef9f
646
+ #: ../includes/class-ure-lib.php:1761
647
+ msgid "Edit plugins"
648
+ msgstr "עריכת תוספים"
649
 
650
+ # __('Edit plugins', 'ure');
651
+ # __('Edit users', 'ure');
652
+ # __('Edit files', 'ure');
653
+ # wpml-name: 70118d8574d7c13da8c0a7c2acc0f659
654
+ #: ../includes/class-ure-lib.php:1762
655
+ msgid "Edit users"
656
+ msgstr "עריכת משתמשים"
657
 
658
+ # __('Edit users', 'ure');
659
+ # __('Edit files', 'ure');
660
+ # __('Manage options', 'ure');
661
+ # wpml-name: 91c6e7a54b91cdc161f71958c597ed11
662
+ #: ../includes/class-ure-lib.php:1763
663
+ msgid "Edit files"
664
+ msgstr "עריכת קבצים"
665
 
666
+ # __('Edit files', 'ure');
667
+ # __('Manage options', 'ure');
668
+ # __('Moderate comments', 'ure');
669
+ # wpml-name: 9f285ad90d3e9f5122241f2e8abd3836
670
+ #: ../includes/class-ure-lib.php:1764
671
+ msgid "Manage options"
672
+ msgstr "ניהול אפשרויות אתר"
673
 
674
+ # __('Manage options', 'ure');
675
+ # __('Moderate comments', 'ure');
676
+ # __('Manage categories', 'ure');
677
+ # wpml-name: abb293cb5d17f4acca429ea13d74c593
678
+ #: ../includes/class-ure-lib.php:1765
679
+ msgid "Moderate comments"
680
+ msgstr "ניהול תגובות"
681
 
682
+ # __('Moderate comments', 'ure');
683
+ # __('Manage categories', 'ure');
684
+ # __('Manage links', 'ure');
685
+ # wpml-name: 74c12b9adae95b65772e8c9c9c8e5af3
686
+ #: ../includes/class-ure-lib.php:1766
687
+ msgid "Manage categories"
688
+ msgstr "ניהול קטגוריות"
689
 
690
+ # __('Manage categories', 'ure');
691
+ # __('Manage links', 'ure');
692
+ # __('Upload files', 'ure');
693
+ # wpml-name: fa1a08e2a749c9f330c9a8e60cac9cc3
694
+ #: ../includes/class-ure-lib.php:1767
695
+ msgid "Manage links"
696
+ msgstr "ניהול קישורים"
697
 
698
+ # __('Manage links', 'ure');
699
+ # __('Upload files', 'ure');
700
+ # __('Import', 'ure');
701
+ # wpml-name: c7de86f69db264c3950d8ae46ed2e33f
702
+ #: ../includes/class-ure-lib.php:1768
703
+ msgid "Upload files"
704
+ msgstr "העלאת קבצים"
705
 
706
+ # __('Upload files', 'ure');
707
+ # __('Import', 'ure');
708
+ # __('Unfiltered html', 'ure');
709
+ # wpml-name: 72d6d7a1885885bb55a565fd1070581a
710
+ #: ../includes/class-ure-lib.php:1769
711
+ msgid "Import"
712
+ msgstr "יבוא"
713
 
714
+ # __('Import', 'ure');
715
+ # __('Unfiltered html', 'ure');
716
+ # __('Edit posts', 'ure');
717
+ # wpml-name: fdd95e5640d6d73230b7544ac261457a
718
+ #: ../includes/class-ure-lib.php:1770
719
+ msgid "Unfiltered html"
720
+ msgstr "עריכת HTML"
721
 
722
+ # __('Unfiltered html', 'ure');
723
+ # __('Edit posts', 'ure');
724
+ # __('Edit others posts', 'ure');
725
+ # wpml-name: 9cd92b1d45220e13e5e257f185f3fec3
726
+ #: ../includes/class-ure-lib.php:1771
727
+ msgid "Edit posts"
728
+ msgstr "עריכת פוסטים"
729
 
730
+ # __('Edit posts', 'ure');
731
+ # __('Edit others posts', 'ure');
732
+ # __('Edit published posts', 'ure');
733
+ # wpml-name: 5fbf3fd2d5fd1e393df2c639fa16dbc9
734
+ #: ../includes/class-ure-lib.php:1772
735
+ msgid "Edit others posts"
736
+ msgstr "עריכת פוסטים של אחרים"
737
 
738
+ # __('Edit others posts', 'ure');
739
+ # __('Edit published posts', 'ure');
740
+ # __('Publish posts', 'ure');
741
+ # wpml-name: d42efc04e7900de59ed3667c971e9e9d
742
+ #: ../includes/class-ure-lib.php:1773
743
+ msgid "Edit published posts"
744
+ msgstr "עריכת פוסטים שפורסמו"
745
 
746
+ # __('Edit published posts', 'ure');
747
+ # __('Publish posts', 'ure');
748
+ # __('Edit pages', 'ure');
749
+ # wpml-name: 64a4f8f7a855c54e1ca7c910439f5e90
750
+ #: ../includes/class-ure-lib.php:1774
751
+ msgid "Publish posts"
752
+ msgstr "פוסטים שפורסמו"
753
 
754
+ # __('Publish posts', 'ure');
755
+ # __('Edit pages', 'ure');
756
+ # __('Read', 'ure');
757
+ # wpml-name: e7a51430fa0fbb32587c083ffae4b525
758
+ #: ../includes/class-ure-lib.php:1775
759
+ msgid "Edit pages"
760
+ msgstr "עריכת עמודים"
761
 
762
+ # __('Edit pages', 'ure');
763
+ # __('Read', 'ure');
764
+ # __('Level 10', 'ure');
765
+ # wpml-name: 7a1a5f3e79fdc91edf2f5ead9d66abb4
766
+ #: ../includes/class-ure-lib.php:1776
767
+ msgid "Read"
768
+ msgstr "קורא"
769
 
770
+ # __('Read', 'ure');
771
+ # __('Level 10', 'ure');
772
+ # __('Level 9', 'ure');
773
+ # wpml-name: b3ef2f43e2782f8d95a4c22d577cb1bc
774
+ #: ../includes/class-ure-lib.php:1777
775
+ msgid "Level 10"
776
+ msgstr "דרגה 10"
777
 
778
+ # __('Level 10', 'ure');
779
+ # __('Level 9', 'ure');
780
+ # __('Level 8', 'ure');
781
+ # wpml-name: d48252bc9cffec4bed5028a7c71d8196
782
+ #: ../includes/class-ure-lib.php:1778
783
+ msgid "Level 9"
784
+ msgstr "דרגה 9"
785
 
786
+ # __('Level 9', 'ure');
787
+ # __('Level 8', 'ure');
788
+ # __('Level 7', 'ure');
789
+ # wpml-name: 625fef0c34a92b3685266a47f16c85dd
790
+ #: ../includes/class-ure-lib.php:1779
791
+ msgid "Level 8"
792
+ msgstr "דרגה 8"
793
 
794
+ # __('Level 8', 'ure');
795
+ # __('Level 7', 'ure');
796
+ # __('Level 6', 'ure');
797
+ # wpml-name: a9acd6f427950dc61cac50b4e9ee6bc4
798
+ #: ../includes/class-ure-lib.php:1780
799
+ msgid "Level 7"
800
+ msgstr "דרגה 7"
801
 
802
+ # __('Level 7', 'ure');
803
+ # __('Level 6', 'ure');
804
+ # __('Level 5', 'ure');
805
+ # wpml-name: b30ce92fb9295725ef29254ba5ae17e1
806
+ #: ../includes/class-ure-lib.php:1781
807
+ msgid "Level 6"
808
+ msgstr "דרגה 6"
809
 
810
+ # __('Level 6', 'ure');
811
+ # __('Level 5', 'ure');
812
+ # __('Level 4', 'ure');
813
+ # wpml-name: 05988e43e8f2eb5efdddc2b467c4b2f3
814
+ #: ../includes/class-ure-lib.php:1782
815
+ msgid "Level 5"
816
+ msgstr "דרגה 5"
 
 
 
 
 
 
817
 
818
+ # __('Level 5', 'ure');
819
+ # __('Level 4', 'ure');
820
+ # __('Level 3', 'ure');
821
+ # wpml-name: 309531bbe9a9d3228cd0687ec6e66bed
822
+ #: ../includes/class-ure-lib.php:1783
823
+ msgid "Level 4"
824
+ msgstr "דרגה 4"
825
 
826
+ # __('Level 4', 'ure');
827
+ # __('Level 3', 'ure');
828
+ # __('Level 2', 'ure');
829
+ # wpml-name: 8f60a63315c55e659b1a2dd5064ceae8
830
+ #: ../includes/class-ure-lib.php:1784
831
+ msgid "Level 3"
832
+ msgstr "דרגה 3"
833
 
834
+ # __('Level 3', 'ure');
835
+ # __('Level 2', 'ure');
836
+ # __('Level 1', 'ure');
837
+ # wpml-name: 228e9da47384bacde793a2b78d488bb0
838
+ #: ../includes/class-ure-lib.php:1785
839
+ msgid "Level 2"
840
+ msgstr "דרגה 2"
841
 
842
+ # __('Level 2', 'ure');
843
+ # __('Level 1', 'ure');
844
+ # __('Level 0', 'ure');
845
+ # wpml-name: 5afaf1679ad0887adebaddb40e0bd3f7
846
+ #: ../includes/class-ure-lib.php:1786
847
+ msgid "Level 1"
848
+ msgstr "דרגה 1"
849
 
850
+ # __('Level 1', 'ure');
851
+ # __('Level 0', 'ure');
852
+ # __('Edit others pages', 'ure');
853
+ # wpml-name: 057e95a59e032dbed970592dd1245092
854
+ #: ../includes/class-ure-lib.php:1787
855
+ msgid "Level 0"
856
+ msgstr "דרגה 0"
857
 
858
+ # __('Level 0', 'ure');
859
+ # __('Edit others pages', 'ure');
860
+ # __('Edit published pages', 'ure');
861
+ # wpml-name: b10af907824940fe6a5aa0a77c62be6f
862
+ #: ../includes/class-ure-lib.php:1788
863
+ msgid "Edit others pages"
864
+ msgstr "עריכת דפים של אחרים"
865
 
866
+ # __('Edit others pages', 'ure');
867
+ # __('Edit published pages', 'ure');
868
+ # __('Publish pages', 'ure');
869
+ # wpml-name: c5bfc24b0b891c9465134b83b2c6c259
870
+ #: ../includes/class-ure-lib.php:1789
871
+ msgid "Edit published pages"
872
+ msgstr "עריכת דפים שפורסמו"
873
 
874
+ # __('Edit published pages', 'ure');
875
+ # __('Publish pages', 'ure');
876
+ # __('Delete pages', 'ure');
877
+ # wpml-name: 70d789f104acf7aa83b1c5ab230f8e7c
878
+ #: ../includes/class-ure-lib.php:1790
879
+ msgid "Publish pages"
880
+ msgstr "פרסום דפים"
881
 
882
+ # __('Publish pages', 'ure');
883
+ # __('Delete pages', 'ure');
884
+ # __('Delete others pages', 'ure');
885
+ # wpml-name: b665a2b3cb33c08decc52b8a3f3d1742
886
+ #: ../includes/class-ure-lib.php:1791
887
+ msgid "Delete pages"
888
+ msgstr "מחיקת דפים"
889
 
890
+ # __('Delete pages', 'ure');
891
+ # __('Delete others pages', 'ure');
892
+ # __('Delete published pages', 'ure');
893
+ # wpml-name: 23eaa8e106fde2a76d80bc907f55ab7e
894
+ #: ../includes/class-ure-lib.php:1792
895
+ msgid "Delete others pages"
896
+ msgstr "מחיקת דפים של אחרים"
897
 
898
+ # __('Delete others pages', 'ure');
899
+ # __('Delete published pages', 'ure');
900
+ # __('Delete posts', 'ure');
901
+ # wpml-name: 75c6bfee9157bbc48bfc4d50baab89e0
902
+ #: ../includes/class-ure-lib.php:1793
903
+ msgid "Delete published pages"
904
+ msgstr "מחיקת דפים שפורסמו"
905
 
906
+ # __('Delete published pages', 'ure');
907
+ # __('Delete posts', 'ure');
908
+ # __('Delete others posts', 'ure');
909
+ # wpml-name: 3dce6f688c85f06c63224b5c3be13919
910
+ #: ../includes/class-ure-lib.php:1794
911
+ msgid "Delete posts"
912
+ msgstr "מחיקת פוסטים"
913
 
914
+ # __('Delete posts', 'ure');
915
+ # __('Delete others posts', 'ure');
916
+ # __('Delete published posts', 'ure');
917
+ # wpml-name: c0496287732814df690c8966027a58d6
918
+ #: ../includes/class-ure-lib.php:1795
919
+ msgid "Delete others posts"
920
+ msgstr "מחיקת פוסטים של אחרים"
921
 
922
+ # __('Delete others posts', 'ure');
923
+ # __('Delete published posts', 'ure');
924
+ # __('Delete private posts', 'ure');
925
+ # wpml-name: b0a2d2039494d73f81f4e476bfda24da
926
+ #: ../includes/class-ure-lib.php:1796
927
+ msgid "Delete published posts"
928
+ msgstr "מחיקת פוסטים שפורסמו"
929
 
930
+ # __('Delete published posts', 'ure');
931
+ # __('Delete private posts', 'ure');
932
+ # __('Edit private posts', 'ure');
933
+ # wpml-name: dcd02c374764e49b36f0f959cc2917bb
934
+ #: ../includes/class-ure-lib.php:1797
935
+ msgid "Delete private posts"
936
+ msgstr "מחיקת פוסטים פרטיים"
937
 
938
+ # __('Delete private posts', 'ure');
939
+ # __('Edit private posts', 'ure');
940
+ # __('Read private posts', 'ure');
941
+ # wpml-name: da9ee842794f7caf9fa32271073d5f7a
942
+ #: ../includes/class-ure-lib.php:1798
943
+ msgid "Edit private posts"
944
+ msgstr "עריכת פוסטים פרטיים"
945
 
946
+ # __('Edit private posts', 'ure');
947
+ # __('Read private posts', 'ure');
948
+ # __('Delete private pages', 'ure');
949
+ # wpml-name: eab0355307288f6480f8c53a0d953d79
950
+ #: ../includes/class-ure-lib.php:1799
951
+ msgid "Read private posts"
952
+ msgstr "קריאת פוסטים פרטיים"
953
 
954
+ # __('Read private posts', 'ure');
955
+ # __('Delete private pages', 'ure');
956
+ # __('Edit private pages', 'ure');
957
+ # wpml-name: 2136c12e2beeadfe0da80a36ef967eca
958
+ #: ../includes/class-ure-lib.php:1800
959
+ msgid "Delete private pages"
960
+ msgstr "מחיקת עמודים פרטיים"
961
 
962
+ # __('Delete private pages', 'ure');
963
+ # __('Edit private pages', 'ure');
964
+ # __('Read private pages', 'ure');
965
+ # wpml-name: 4f3859ba470cb61f22a600a93c4ce11f
966
+ #: ../includes/class-ure-lib.php:1801
967
+ msgid "Edit private pages"
968
+ msgstr "מחיקת עמודים פרטיים"
969
 
970
+ # __('Edit private pages', 'ure');
971
+ # __('Read private pages', 'ure');
972
+ # __('Delete users', 'ure');
973
+ # wpml-name: 5faa3f2e9585e107dc5f23748a825882
974
+ #: ../includes/class-ure-lib.php:1802
975
+ msgid "Read private pages"
976
+ msgstr "קריאת עמודים פרטיים"
977
 
978
+ # __('Read private pages', 'ure');
 
 
 
 
 
 
 
979
  # __('Delete users', 'ure');
980
  # __('Create users', 'ure');
981
  # wpml-name: 61c484c7f1638a9dd4237cb666b91c1f
982
+ #: ../includes/class-ure-lib.php:1803
983
  msgid "Delete users"
984
  msgstr "מחיקת משתמשים"
985
 
 
 
986
  # __('Delete users', 'ure');
987
+ # __('Create users', 'ure');
988
+ # __('Unfiltered upload', 'ure');
989
+ # wpml-name: 6cf6d76fc00f8dd12af98a37d11f623e
990
+ #: ../includes/class-ure-lib.php:1804
991
+ msgid "Create users"
992
+ msgstr "יצירת משתמשים"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
993
 
994
+ # __('Create users', 'ure');
995
+ # __('Unfiltered upload', 'ure');
996
+ # __('Edit dashboard', 'ure');
997
+ # wpml-name: 7110d42a34cbb3316d6d0c658fa34c86
998
+ #: ../includes/class-ure-lib.php:1805
999
+ msgid "Unfiltered upload"
1000
+ msgstr "העלאת קבצים חופשית"
1001
 
1002
+ # __('Unfiltered upload', 'ure');
1003
+ # __('Edit dashboard', 'ure');
1004
+ # __('Update plugins', 'ure');
1005
+ # wpml-name: b5577d27ebfdd60a3bda83ae726d574b
1006
+ #: ../includes/class-ure-lib.php:1806
1007
+ msgid "Edit dashboard"
1008
+ msgstr "שינוי לוח הבקרה"
1009
 
1010
+ # __('Edit dashboard', 'ure');
1011
+ # __('Update plugins', 'ure');
1012
+ # __('Delete plugins', 'ure');
1013
+ # wpml-name: 23c5b17dc24e40fa47ca6588932d32f7
1014
+ #: ../includes/class-ure-lib.php:1807
1015
+ msgid "Update plugins"
1016
+ msgstr "עדכון תוספים"
1017
 
1018
+ # __('Update plugins', 'ure');
1019
+ # __('Delete plugins', 'ure');
1020
+ # __('Install plugins', 'ure');
1021
+ # wpml-name: f2a839940dae3934317d8d6a6f647ebd
1022
+ #: ../includes/class-ure-lib.php:1808
1023
+ msgid "Delete plugins"
1024
+ msgstr "מחיקת תוספים"
1025
 
1026
+ # __('Delete plugins', 'ure');
1027
+ # __('Install plugins', 'ure');
1028
+ # __('Update themes', 'ure');
1029
+ # wpml-name: 9d06472988c53bfc768bc7b6a788b697
1030
+ #: ../includes/class-ure-lib.php:1809
1031
+ msgid "Install plugins"
1032
+ msgstr "התקנת תוספים"
1033
 
1034
+ # __('Install plugins', 'ure');
1035
+ # __('Update themes', 'ure');
1036
+ # __('Install themes', 'ure');
1037
+ # wpml-name: 504ea4a27260ac1e8822c5877ffe526b
1038
+ #: ../includes/class-ure-lib.php:1810
1039
+ msgid "Update themes"
1040
+ msgstr "עדכון תבניות"
1041
 
1042
+ # __('Update themes', 'ure');
1043
+ # __('Install themes', 'ure');
1044
+ # __('Update core', 'ure');
1045
+ # wpml-name: a7d67fb17876569a4590902d3566a6fd
1046
+ #: ../includes/class-ure-lib.php:1811
1047
+ msgid "Install themes"
1048
+ msgstr "התקנת תבניות חדשות"
1049
 
1050
+ # __('Install themes', 'ure');
1051
+ # __('Update core', 'ure');
1052
+ # __('List users', 'ure');
1053
+ # wpml-name: e56e5b87db548cd42be7a8a0f916205d
1054
+ #: ../includes/class-ure-lib.php:1812
1055
+ msgid "Update core"
1056
+ msgstr "עדכון וורדפרס"
1057
 
1058
+ # __('Update core', 'ure');
1059
+ # __('List users', 'ure');
1060
+ # __('Remove users', 'ure');
1061
+ # wpml-name: f923f903857a5387d3db70494e074632
1062
+ #: ../includes/class-ure-lib.php:1813
1063
+ msgid "List users"
1064
+ msgstr "בצפייה במשתמשים"
1065
 
1066
+ # __('List users', 'ure');
1067
+ # __('Remove users', 'ure');
1068
+ # __('Add users', 'ure');
1069
+ # wpml-name: 8c7e9f2dfcd0125922dfbce36a1a4c2a
1070
+ #: ../includes/class-ure-lib.php:1814
1071
+ msgid "Remove users"
1072
+ msgstr "הסרת משתמשים"
1073
 
1074
+ # __('Remove users', 'ure');
1075
+ # __('Add users', 'ure');
1076
+ # __('Promote users', 'ure');
1077
+ # wpml-name: 3bf6330f5f4c7c3dfddc9670cfaf4a22
1078
+ #: ../includes/class-ure-lib.php:1815
1079
+ msgid "Add users"
1080
+ msgstr "הוספת משתמשים"
 
 
1081
 
1082
+ # __('Add users', 'ure');
1083
+ # __('Promote users', 'ure');
1084
+ # __('Edit theme options', 'ure');
1085
+ # wpml-name: 12f4ba95cdfd04b791820b9c20887913
1086
+ #: ../includes/class-ure-lib.php:1816
1087
+ msgid "Promote users"
1088
+ msgstr "שינוי משתמשים"
1089
 
1090
+ # __('Promote users', 'ure');
1091
+ # __('Edit theme options', 'ure');
1092
+ # __('Delete themes', 'ure');
1093
+ # wpml-name: 8841974497684dad4d55beaf2b6c52ef
1094
+ #: ../includes/class-ure-lib.php:1817
1095
+ msgid "Edit theme options"
1096
+ msgstr "עריכת אפשרויות התבנית"
1097
 
1098
+ # __('Edit theme options', 'ure');
1099
+ # __('Delete themes', 'ure');
1100
+ # __('Export', 'ure');
1101
+ # wpml-name: 335e9dea5f21dc3f591f3aceefdeed54
1102
+ #: ../includes/class-ure-lib.php:1818
1103
+ msgid "Delete themes"
1104
+ msgstr "מחיקת תבניות"
1105
 
1106
+ # __('Delete themes', 'ure');
1107
+ # __('Export', 'ure');
1108
  # }
1109
+ # wpml-name: 0095a9fa74d1713e43e370a7d7846224
1110
+ #: ../includes/class-ure-lib.php:1819
1111
+ msgid "Export"
1112
+ msgstr "ייצוא תוכן"
 
1113
 
1114
+ # if (!$valid_name || ($valid_name && ($match[0] != $user_capability))) { // some non-alphanumeric charactes found!
1115
+ # return 'Error! ' . __('Error: Capability name must contain latin characters and digits only!', 'ure');
1116
+ # ;
1117
+ # wpml-name: 03766b9586d3012af6fc788e85d39530
1118
+ #: ../includes/class-ure-lib.php:1929
1119
+ msgid "Error: Capability name must contain latin characters and digits only!"
1120
+ msgstr "שגיאה! שם יכולת חייב להכיל אותיות באנגלית וספרות בלבד"
1121
+
1122
+ # $wp_roles->add_cap('administrator', $user_capability);
1123
+ # $mess = sprintf(__('Capability %s is added successfully', 'ure'), $user_capability);
1124
  # } else {
1125
+ # wpml-name: 6dcaae98207ba2673da987515b02fe31
1126
+ #: ../includes/class-ure-lib.php:1942
1127
+ #, php-format
1128
+ msgid "Capability %s is added successfully"
1129
+ msgstr "היכולת %s נוספה בהצלחה"
1130
 
1131
+ # } else {
1132
+ # $mess = sprintf('Error! ' . __('Capability %s exists already', 'ure'), $user_capability);
1133
  # }
1134
+ # wpml-name: d5c1ec0556aadfa88cadffb62266b83d
1135
+ #: ../includes/class-ure-lib.php:1944
1136
+ #, php-format
1137
+ msgid "Capability %s exists already"
1138
+ msgstr "כבר קיימת יכולת בשם %s"
1139
+
1140
+ # if (!is_array($caps_to_remove) || count($caps_to_remove) == 0 || !isset($caps_to_remove[$capability_id])) {
1141
+ # return sprintf(__('Error! You do not have permission to delete this capability: %s!', 'ure'), $capability_id);
1142
  # }
1143
+ # wpml-name: 0e132e68574d9609d956f9be409f7384
1144
+ #: ../includes/class-ure-lib.php:1969
1145
+ #, php-format
1146
+ msgid "Error! You do not have permission to delete this capability: %s!"
1147
+ msgstr "שגיאה! אין לך הרשאה למחוק את היכולת %s"
1148
 
1149
+ #
1150
+ # $mess = sprintf(__('Capability %s is removed successfully', 'ure'), $capability_id);
1151
  # }
1152
+ # wpml-name: d819128cbb44d0e2fe4eb8b8b6397871
1153
+ #: ../includes/class-ure-lib.php:1988
1154
+ #, php-format
1155
+ msgid "Capability %s is removed successfully"
1156
+ msgstr "היכולת %s הוסרה בהצלחה"
1157
 
1158
+ # protected function about() {
1159
+ # $this->display_box_start(__('About this Plugin:', 'ure'));
1160
+ # ?>
1161
+ # wpml-name: 426a0f7faa99074ad799f9923e41aff4
1162
+ #: ../includes/class-ure-lib.php:2085
1163
+ msgid "About this Plugin:"
1164
+ msgstr "אודות תוסף זה:"
1165
 
1166
+ # ?>
1167
+ # <a class="ure_rsb_link" style="background-image:url(<?php echo URE_PLUGIN_URL . 'images/vladimir.png'; ?>);" target="_blank" href="http://www.shinephp.com/"><?php _e("Author's website", 'ure'); ?></a>
1168
+ # <a class="ure_rsb_link" style="background-image:url(<?php echo URE_PLUGIN_URL . 'images/user-role-editor-icon.png'; ?>);" target="_blank" href="http://role-editor.com"><?php _e('Plugin webpage', 'ure'); ?></a>
1169
+ # wpml-name: b63bc6c033363c8ee66beaf4ea4d5bc3
1170
+ #: ../includes/class-ure-lib.php:2087
1171
+ msgid "Author's website"
1172
+ msgstr "אתר היוצר"
1173
 
1174
+ # <a class="ure_rsb_link" style="background-image:url(<?php echo URE_PLUGIN_URL . 'images/vladimir.png'; ?>);" target="_blank" href="http://www.shinephp.com/"><?php _e("Author's website", 'ure'); ?></a>
1175
+ # <a class="ure_rsb_link" style="background-image:url(<?php echo URE_PLUGIN_URL . 'images/user-role-editor-icon.png'; ?>);" target="_blank" href="http://role-editor.com"><?php _e('Plugin webpage', 'ure'); ?></a>
1176
+ # <a class="ure_rsb_link" style="background-image:url(<?php echo URE_PLUGIN_URL . 'images/changelog-icon.png'; ?>);" target="_blank" href="http://www.shinephp.com/user-role-editor-wordpress-plugin/#changelog"><?php _e('Changelog', 'ure'); ?></a>
1177
+ # wpml-name: f919d1248270e1eca5cc6a39253264f7
1178
+ #: ../includes/class-ure-lib.php:2088
1179
+ msgid "Plugin webpage"
1180
+ msgstr "דף התוסף"
1181
 
1182
+ # <a class="ure_rsb_link" style="background-image:url(<?php echo URE_PLUGIN_URL . 'images/changelog-icon.png'; ?>);" target="_blank" href="http://www.shinephp.com/user-role-editor-wordpress-plugin/#changelog"><?php _e('Changelog', 'ure'); ?></a>
1183
+ # <a class="ure_rsb_link" style="background-image:url(<?php echo URE_PLUGIN_URL . 'images/faq-icon.png'; ?>);" target="_blank" href="http://www.shinephp.com/user-role-editor-wordpress-plugin/#faq"><?php _e('FAQ', 'ure'); ?></a>
1184
+ # <?php
1185
+ # wpml-name: 1fe917b01f9a3f87fa2d7d3b7643fac1
1186
+ #: ../includes/class-ure-lib.php:2090
1187
+ msgid "FAQ"
1188
+ msgstr "שאלות נפוצות"
1189
 
1190
+ # $this->role_to_copy_html = '<select id="user_role_copy_from" name="user_role_copy_from" width="200" style="width: 200px">
1191
+ # <option value="none" selected="selected">' . __('None', 'ure') . '</option>';
1192
+ # $this->role_select_html = '<select id="user_role" name="user_role" onchange="ure_role_change(this.value);">';
1193
+ # wpml-name: 6adf97f83acf6453d4a6a4b1070f3754
1194
+ #: ../includes/class-ure-lib.php:2131
1195
+ msgid "None"
1196
+ msgstr "תרום"
1197
 
1198
+ #
1199
+ #
1200
+ #
1201
+ # wpml-name: 7aa3fd37413ab803143d28fcc65287cf
1202
+ #: ../includes/class-ure-lib.php:2157
1203
+ msgid "Delete All Unused Roles"
1204
+ msgstr ""
1205
 
1206
+ #: ../includes/class-ure-lib.php:2181
1207
+ msgid "&mdash; No role for this site &mdash;"
1208
+ msgstr ""
 
 
 
1209
 
1210
+ # if (is_multisite() && is_super_admin($this->user_to_edit->ID)) {
1211
+ # $user_info .= ' <span style="font-weight: bold; color:red;">'. esc_html__('Network Super Admin', 'ure') .'</span>';
1212
+ # }
1213
+ # wpml-name: 5213962fd38769a637909d6bc2a37197
1214
+ #: ../includes/ure-user-edit.php:31
1215
+ msgid "Network Super Admin"
1216
+ msgstr "מנהל-על של רשת"
1217
 
1218
+ #
1219
+ # $this->display_box_start(__('Change capabilities for user', 'ure').$user_info, 'min-width:830px;');
1220
+ #
1221
+ # wpml-name: 3c4a4bfb7afa015a22eee9e5b9b098e2
1222
+ #: ../includes/ure-user-edit.php:34
1223
+ msgid "Change capabilities for user"
1224
+ msgstr "שינוי יכולות המשתמש"
1225
+
1226
+ # <td class="ure-user-roles">
1227
+ # <div style="margin-bottom: 5px; font-weight: bold;"><?php echo __('Primary Role:', 'ure'); ?></div>
1228
+ # <?php
1229
+ # wpml-name: 670867664b460254a4dfcb782c811472
1230
+ #: ../includes/ure-user-edit.php:66
1231
+ msgid "Primary Role:"
1232
+ msgstr "תפקיד עיקרי:"
1233
 
1234
  # ?>
1235
+ # <div style="margin-top: 5px;margin-bottom: 5px; font-weight: bold;"><?php echo __('bbPress Role:', 'ure'); ?></div>
1236
+ # <?php
1237
+ # wpml-name: 918b62d985dd5ef7af537376c0a8273b
1238
+ #: ../includes/ure-user-edit.php:75
1239
+ msgid "bbPress Role:"
1240
+ msgstr "תפקיד bbPress:"
1241
 
1242
+ # ?>
1243
+ # <div style="margin-top: 5px;margin-bottom: 5px; font-weight: bold;"><?php echo __('Other Roles:', 'ure'); ?></div>
1244
+ # <?php
1245
+ # wpml-name: 3ebb5c3609cf2634c669e655a7bfb162
1246
+ #: ../includes/ure-user-edit.php:85
1247
+ msgid "Other Roles:"
1248
+ msgstr "תפקידים אחרים:"
1249
 
1250
+ # <tr>
1251
+ # <td><label for="show_admin_role"><?php esc_html_e('Show Administrator role at User Role Editor:', 'ure'); ?></label></td>
1252
+ # <td><input type="checkbox" name="show_admin_role" id="show_admin_role" value="1"
1253
+ # wpml-name: 03c5b123f148104af580b68ade741c67
1254
+ #: ../includes/class-ure-screen-help.php:15
1255
+ msgid "Show Administrator role at User Role Editor"
1256
+ msgstr ""
1257
 
1258
+ #: ../includes/class-ure-screen-help.php:16
1259
+ msgid ""
1260
+ "turn this option on in order to make the \"Administrator\" role available at "
1261
+ "the User Role Editor roles selection drop-down list. It is hidden by default "
1262
+ "for security reasons."
1263
+ msgstr ""
1264
 
1265
+ # <tr>
1266
+ # <td><label for="caps_readable"><?php esc_html_e('Show capabilities in the human readable form:', 'ure'); ?></label></td>
1267
+ # <td>
1268
+ # wpml-name: a19a4f985d31bbbd3d3b6d5dbd368ef0
1269
+ #: ../includes/class-ure-screen-help.php:18
1270
+ msgid "Show capabilities in the human readable form"
1271
+ msgstr ""
1272
 
1273
+ #: ../includes/class-ure-screen-help.php:19
1274
+ msgid ""
1275
+ "automatically converts capability names from the technical form for internal "
1276
+ "use like \"edit_others_posts\" to more user friendly form, e.g. \"Edit "
1277
+ "others posts\"."
1278
+ msgstr ""
1279
 
1280
+ #: ../includes/class-ure-screen-help.php:22
1281
+ msgid ""
1282
+ "Capabilities like \"level_0\", \"level_1\" are deprecated and are not used "
1283
+ "by WordPress. They are left at the user roles for the compatibility purpose "
1284
+ "with the old themes and plugins code. Turning on this option will show those "
1285
+ "deprecated capabilities."
1286
+ msgstr ""
1287
 
1288
+ # <tr>
1289
+ # <td><label for="allow_edit_users_to_not_super_admin"><?php esc_html_e('Allow create, edit and delete user to not super-admininstrators:', 'ure'); ?></label></td>
1290
+ # <td>
1291
+ # wpml-name: 4bc50461b16d09d4cea688ef6c286c6f
1292
+ #: ../includes/class-ure-screen-help.php:27
1293
+ msgid "Allow create, edit and delete users to not super-admininstrators"
1294
+ msgstr ""
1295
+
1296
+ #: ../includes/class-ure-screen-help.php:28
1297
+ msgid ""
1298
+ "Super administrator only may create, edit and delete users under WordPress "
1299
+ "multi-site. Turn this option on in order to remove this limitation."
1300
+ msgstr ""
lang/ure-ru_RU.mo CHANGED
Binary file
lang/ure-ru_RU.po CHANGED
@@ -2,7 +2,7 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: User Role Editor v.2.0\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2013-10-21 12:12+0700\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Vladimir Garagulya <vladimir@shinephp.com>\n"
8
  "Language-Team: ShinePHP.com <vladimir@shinephp.com>\n"
@@ -34,20 +34,13 @@ msgid "Settings"
34
  msgstr "Установки"
35
 
36
  #: ../includes/class-user-role-editor.php:420
37
- #: ../includes/class-ure-lib.php:2050
38
  msgid "Changelog"
39
  msgstr "Журнал изменений"
40
 
41
  #: ../includes/class-user-role-editor.php:442
42
  msgid "Overview"
43
- msgstr ""
44
-
45
- #: ../includes/class-user-role-editor.php:451
46
- #: ../includes/class-user-role-editor.php:479
47
- #: ../includes/class-user-role-editor.php:674
48
- #: ../includes/class-ure-lib.php:223
49
- msgid "User Role Editor"
50
- msgstr "Редактор ролей пользователей"
51
 
52
  #: ../includes/class-user-role-editor.php:497
53
  msgid ""
@@ -61,7 +54,7 @@ msgstr "Изменения в настройках Редактора ролей
61
 
62
  #: ../includes/class-user-role-editor.php:571
63
  msgid "Insufficient permissions to work with User Role Editor"
64
- msgstr ""
65
 
66
  #: ../includes/class-user-role-editor.php:624
67
  msgid "Select All"
@@ -116,7 +109,7 @@ msgid "Add Capability"
116
  msgstr "Добавить новую Возможность"
117
 
118
  #: ../includes/class-user-role-editor.php:636
119
- #: ../includes/class-user-role-editor.php:641
120
  msgid "Delete Capability"
121
  msgstr "Удалить Возможность"
122
 
@@ -125,24 +118,40 @@ msgid "Reset"
125
  msgstr "Сброс"
126
 
127
  #: ../includes/class-user-role-editor.php:638
128
- msgid ""
129
- "Reset Roles to WordPress defaults. Be careful, all changes made by you or "
130
- "plugins will be lost. Some plugins, e.g. S2Member, WooCommerce reactivation "
131
- "could be needed. Continue?"
132
  msgstr ""
133
- "Вернуть роли в начальное состояние. Будьте осторожны, все изменения в ролях, "
134
- "сделанные темой и плагинами, будут потеряны, необходимо будет активировать "
135
- "заново некоторые плагины, например S2Member, WooCommerce. Продолжить?"
136
 
137
  #: ../includes/class-user-role-editor.php:639
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
138
  msgid "Default Role"
139
  msgstr "Роль по-умолчанию"
140
 
141
- #: ../includes/class-user-role-editor.php:640
142
  msgid "Set New Default Role"
143
  msgstr "Установить новую роль по-умолчанию"
144
 
145
- #: ../includes/class-user-role-editor.php:642
146
  msgid ""
147
  "Warning! Be careful - removing critical capability could crash some plugin "
148
  "or other custom code"
@@ -150,11 +159,11 @@ msgstr ""
150
  "Внимание! Будьте осторожны - удаление критичной возможности может привести к "
151
  "прекращеню работы одного из плагинов или другого кода."
152
 
153
- #: ../includes/class-user-role-editor.php:643
154
  msgid " Capability name (ID) can not be empty!"
155
  msgstr "Идентификатор возможности (ID) не может быть пустым!"
156
 
157
- #: ../includes/class-user-role-editor.php:644
158
  msgid ""
159
  " Capability name (ID) must contain latin characters, digits, hyphens or "
160
  "underscore only!"
@@ -162,12 +171,17 @@ msgstr ""
162
  "Ошибка: Наименование возможности должно содержать только латинские буквы и "
163
  "цифры, знаки подчеркивания"
164
 
165
- #: ../includes/class-user-role-editor.php:677
166
- #: ../includes/class-user-role-editor.php:705
 
 
 
 
 
167
  msgid "Other Roles"
168
  msgstr "Другие Роли"
169
 
170
- #: ../includes/class-user-role-editor.php:687
171
  msgid "Edit"
172
  msgstr "Редактор"
173
 
@@ -184,7 +198,6 @@ msgid "Show capabilities in human readable form"
184
  msgstr "Показ возможностей в читабельной форме"
185
 
186
  #: ../includes/ure-role-edit.php:40 ../includes/ure-user-edit.php:61
187
- #: ../includes/class-ure-screen-help.php:21
188
  msgid "Show deprecated capabilities"
189
  msgstr "Показать устаревшие разрешения"
190
 
@@ -298,339 +311,343 @@ msgstr "Произошла ошибка при создании новой ро
298
  msgid "Role %s is created successfully"
299
  msgstr "Роль %s создана успешно"
300
 
301
- #: ../includes/class-ure-lib.php:1662
302
  msgid "Error encountered during role delete operation"
303
  msgstr "Произошла ошибка при удалении роли"
304
 
305
- #: ../includes/class-ure-lib.php:1664
 
 
 
 
306
  #, php-format
307
  msgid "Role %s is deleted successfully"
308
  msgstr "Роль %s удалена успешно"
309
 
310
- #: ../includes/class-ure-lib.php:1689
311
  msgid "Error encountered during default role change operation"
312
  msgstr "Произошла ошибка при изменении роли по-умолчанию"
313
 
314
- #: ../includes/class-ure-lib.php:1695
315
  #, php-format
316
  msgid "Default role for new users is set to %s successfully"
317
  msgstr "Роль по-умолчанию для новых пользователй изменена на %s успешно."
318
 
319
- #: ../includes/class-ure-lib.php:1714
320
  msgid "Editor"
321
  msgstr "Редактор"
322
 
323
- #: ../includes/class-ure-lib.php:1715
324
  msgid "Author"
325
  msgstr "Автор"
326
 
327
- #: ../includes/class-ure-lib.php:1716
328
  msgid "Contributor"
329
  msgstr "Участник"
330
 
331
- #: ../includes/class-ure-lib.php:1717
332
  msgid "Subscriber"
333
  msgstr "Подписчик"
334
 
335
- #: ../includes/class-ure-lib.php:1719
336
  msgid "Switch themes"
337
  msgstr "Менять темы"
338
 
339
- #: ../includes/class-ure-lib.php:1720
340
  msgid "Edit themes"
341
  msgstr "Изменять темы"
342
 
343
- #: ../includes/class-ure-lib.php:1721
344
  msgid "Activate plugins"
345
  msgstr "Активировать плагины"
346
 
347
- #: ../includes/class-ure-lib.php:1722
348
  msgid "Edit plugins"
349
  msgstr "Редактировать плагины"
350
 
351
- #: ../includes/class-ure-lib.php:1723
352
  msgid "Edit users"
353
  msgstr "Изменять пользователей"
354
 
355
- #: ../includes/class-ure-lib.php:1724
356
  msgid "Edit files"
357
  msgstr "Изменять файлы"
358
 
359
- #: ../includes/class-ure-lib.php:1725
360
  msgid "Manage options"
361
  msgstr "Управлять установками"
362
 
363
- #: ../includes/class-ure-lib.php:1726
364
  msgid "Moderate comments"
365
  msgstr "Модерировать комментарии"
366
 
367
- #: ../includes/class-ure-lib.php:1727
368
  msgid "Manage categories"
369
  msgstr "Управлять категориями"
370
 
371
- #: ../includes/class-ure-lib.php:1728
372
  msgid "Manage links"
373
  msgstr "Управлять ссылками"
374
 
375
- #: ../includes/class-ure-lib.php:1729
376
  msgid "Upload files"
377
  msgstr "Загружать файлы"
378
 
379
- #: ../includes/class-ure-lib.php:1730
380
  msgid "Import"
381
  msgstr "Импорт"
382
 
383
- #: ../includes/class-ure-lib.php:1731
384
  msgid "Unfiltered html"
385
  msgstr "html без фильтра"
386
 
387
- #: ../includes/class-ure-lib.php:1732
388
  msgid "Edit posts"
389
  msgstr "Изменять статьи"
390
 
391
- #: ../includes/class-ure-lib.php:1733
392
  msgid "Edit others posts"
393
  msgstr "Изменять чужие статьи"
394
 
395
- #: ../includes/class-ure-lib.php:1734
396
  msgid "Edit published posts"
397
  msgstr "Редактировать опубликованные статьи"
398
 
399
- #: ../includes/class-ure-lib.php:1735
400
  msgid "Publish posts"
401
  msgstr "Публиковать статьи"
402
 
403
- #: ../includes/class-ure-lib.php:1736
404
  msgid "Edit pages"
405
  msgstr "Изменять страницы"
406
 
407
- #: ../includes/class-ure-lib.php:1737
408
  msgid "Read"
409
  msgstr "Чтение"
410
 
411
- #: ../includes/class-ure-lib.php:1738
412
  msgid "Level 10"
413
  msgstr "Уровень 10"
414
 
415
- #: ../includes/class-ure-lib.php:1739
416
  msgid "Level 9"
417
  msgstr "Уровень 9"
418
 
419
- #: ../includes/class-ure-lib.php:1740
420
  msgid "Level 8"
421
  msgstr "Уровень 9"
422
 
423
- #: ../includes/class-ure-lib.php:1741
424
  msgid "Level 7"
425
  msgstr "Уровень 7"
426
 
427
- #: ../includes/class-ure-lib.php:1742
428
  msgid "Level 6"
429
  msgstr "Уровень 6"
430
 
431
- #: ../includes/class-ure-lib.php:1743
432
  msgid "Level 5"
433
  msgstr "Уровень 5"
434
 
435
- #: ../includes/class-ure-lib.php:1744
436
  msgid "Level 4"
437
  msgstr "Уровень 4"
438
 
439
- #: ../includes/class-ure-lib.php:1745
440
  msgid "Level 3"
441
  msgstr "Уровень 3"
442
 
443
- #: ../includes/class-ure-lib.php:1746
444
  msgid "Level 2"
445
  msgstr "Уровень 2"
446
 
447
- #: ../includes/class-ure-lib.php:1747
448
  msgid "Level 1"
449
  msgstr "Уровень 1"
450
 
451
- #: ../includes/class-ure-lib.php:1748
452
  msgid "Level 0"
453
  msgstr "Уровень 0"
454
 
455
- #: ../includes/class-ure-lib.php:1749
456
  msgid "Edit others pages"
457
  msgstr "Редактировать чужие страницы"
458
 
459
- #: ../includes/class-ure-lib.php:1750
460
  msgid "Edit published pages"
461
  msgstr "Редактировать опубликованные страницы"
462
 
463
- #: ../includes/class-ure-lib.php:1751
464
  msgid "Publish pages"
465
  msgstr "Публиковать страницы"
466
 
467
- #: ../includes/class-ure-lib.php:1752
468
  msgid "Delete pages"
469
  msgstr "Удалять страницы"
470
 
471
- #: ../includes/class-ure-lib.php:1753
472
  msgid "Delete others pages"
473
  msgstr "Удалить чужие страницы"
474
 
475
- #: ../includes/class-ure-lib.php:1754
476
  msgid "Delete published pages"
477
  msgstr "Удалять опубликованные страницы"
478
 
479
- #: ../includes/class-ure-lib.php:1755
480
  msgid "Delete posts"
481
  msgstr "Удалять статьи"
482
 
483
- #: ../includes/class-ure-lib.php:1756
484
  msgid "Delete others posts"
485
  msgstr "Удалять чужие статьи"
486
 
487
- #: ../includes/class-ure-lib.php:1757
488
  msgid "Delete published posts"
489
  msgstr "Удалять опубликованные статьи"
490
 
491
- #: ../includes/class-ure-lib.php:1758
492
  msgid "Delete private posts"
493
  msgstr "Удалять частные статьи"
494
 
495
- #: ../includes/class-ure-lib.php:1759
496
  msgid "Edit private posts"
497
  msgstr "Редактировать частные статьи"
498
 
499
- #: ../includes/class-ure-lib.php:1760
500
  msgid "Read private posts"
501
  msgstr "Читать частные статьи"
502
 
503
- #: ../includes/class-ure-lib.php:1761
504
  msgid "Delete private pages"
505
  msgstr "Удалять частные страницы"
506
 
507
- #: ../includes/class-ure-lib.php:1762
508
  msgid "Edit private pages"
509
  msgstr "Редактировать частные страницы"
510
 
511
- #: ../includes/class-ure-lib.php:1763
512
  msgid "Read private pages"
513
  msgstr "Читать частные страницы"
514
 
515
- #: ../includes/class-ure-lib.php:1764
516
  msgid "Delete users"
517
  msgstr "Удалять пользователей"
518
 
519
- #: ../includes/class-ure-lib.php:1765
520
  msgid "Create users"
521
  msgstr "Создавать пользователей"
522
 
523
- #: ../includes/class-ure-lib.php:1766
524
  msgid "Unfiltered upload"
525
  msgstr "Загрузка без фильтра"
526
 
527
- #: ../includes/class-ure-lib.php:1767
528
  msgid "Edit dashboard"
529
  msgstr "Изменять панель администратора"
530
 
531
- #: ../includes/class-ure-lib.php:1768
532
  msgid "Update plugins"
533
  msgstr "Обновлять плагины"
534
 
535
- #: ../includes/class-ure-lib.php:1769
536
  msgid "Delete plugins"
537
  msgstr "Удалять плагины"
538
 
539
- #: ../includes/class-ure-lib.php:1770
540
  msgid "Install plugins"
541
  msgstr "Устанавливать плагины"
542
 
543
- #: ../includes/class-ure-lib.php:1771
544
  msgid "Update themes"
545
  msgstr "Обновлять темы"
546
 
547
- #: ../includes/class-ure-lib.php:1772
548
  msgid "Install themes"
549
  msgstr "Устанавливать темы"
550
 
551
- #: ../includes/class-ure-lib.php:1773
552
  msgid "Update core"
553
  msgstr "Обновлять ядро"
554
 
555
- #: ../includes/class-ure-lib.php:1774
556
  msgid "List users"
557
  msgstr "Список пользователей"
558
 
559
- #: ../includes/class-ure-lib.php:1775
560
  msgid "Remove users"
561
  msgstr "Удалять пользователей"
562
 
563
- #: ../includes/class-ure-lib.php:1776
564
  msgid "Add users"
565
  msgstr "Добавлять пользователей"
566
 
567
- #: ../includes/class-ure-lib.php:1777
568
  msgid "Promote users"
569
  msgstr "Продвигать пользователей"
570
 
571
- #: ../includes/class-ure-lib.php:1778
572
  msgid "Edit theme options"
573
  msgstr "Изменять настройки темы"
574
 
575
- #: ../includes/class-ure-lib.php:1779
576
  msgid "Delete themes"
577
  msgstr "Удалять темы"
578
 
579
- #: ../includes/class-ure-lib.php:1780
580
  msgid "Export"
581
  msgstr "Экспорт"
582
 
583
- #: ../includes/class-ure-lib.php:1890
584
  msgid "Error: Capability name must contain latin characters and digits only!"
585
  msgstr "Ошибка: Имя должно содержать только латинские буквы и цифры"
586
 
587
- #: ../includes/class-ure-lib.php:1903
588
  #, php-format
589
  msgid "Capability %s is added successfully"
590
  msgstr "Возможность %s добавлена успешно"
591
 
592
- #: ../includes/class-ure-lib.php:1905
593
  #, php-format
594
  msgid "Capability %s exists already"
595
  msgstr "Возможность %s уже существует"
596
 
597
- #: ../includes/class-ure-lib.php:1930
598
  #, php-format
599
  msgid "Error! You do not have permission to delete this capability: %s!"
600
  msgstr "Ошибка! Вам запрещено удалять эту возможность: %s!"
601
 
602
- #: ../includes/class-ure-lib.php:1949
603
  #, php-format
604
  msgid "Capability %s is removed successfully"
605
  msgstr "Возможность %s удалена успешно"
606
 
607
- #: ../includes/class-ure-lib.php:2046
608
  msgid "About this Plugin:"
609
  msgstr "Об этом плагине"
610
 
611
- #: ../includes/class-ure-lib.php:2048
612
  msgid "Author's website"
613
  msgstr "Вебсайт автора"
614
 
615
- #: ../includes/class-ure-lib.php:2049
616
  msgid "Plugin webpage"
617
  msgstr "Страница плагина"
618
 
619
- #: ../includes/class-ure-lib.php:2051
620
  msgid "FAQ"
621
  msgstr "Часто задаваемые вопросы"
622
 
623
- #: ../includes/class-ure-lib.php:2092
624
  msgid "None"
625
  msgstr "Нет"
626
 
627
- #: ../includes/class-ure-lib.php:2141
628
- msgid "&mdash; No role for this site &mdash;"
629
- msgstr ""
630
 
631
- #: ../includes/ure-user-edit.php:31
632
- msgid "Network Super Admin"
633
- msgstr ""
634
 
635
  #: ../includes/ure-user-edit.php:34
636
  msgid "Change capabilities for user"
@@ -648,48 +665,27 @@ msgstr "Роль bbPress:"
648
  msgid "Other Roles:"
649
  msgstr "Другие Роли:"
650
 
651
- #: ../includes/class-ure-screen-help.php:15
652
- msgid "Show Administrator role at User Role Editor"
653
- msgstr ""
654
-
655
- #: ../includes/class-ure-screen-help.php:16
656
- msgid ""
657
- "turn this option on in order to make the \"Administrator\" role available at "
658
- "the User Role Editor roles selection drop-down list. It is hidden by default "
659
- "for security reasons."
660
- msgstr ""
661
-
662
- #: ../includes/class-ure-screen-help.php:18
663
- msgid "Show capabilities in the human readable form"
664
- msgstr "Показ прав доступа в читабельной форме"
665
-
666
- #: ../includes/class-ure-screen-help.php:19
667
- msgid ""
668
- "automatically converts capability names from the technical form for internal "
669
- "use like \"edit_others_posts\" to more user friendly form, e.g. \"Edit "
670
- "others posts\"."
671
- msgstr ""
672
 
673
- #: ../includes/class-ure-screen-help.php:22
674
- msgid ""
675
- "Capabilities like \"level_0\", \"level_1\" are deprecated and are not used "
676
- "by WordPress. They are left at the user roles for the compatibility purpose "
677
- "with the old themes and plugins code. Turning on this option will show those "
678
- "deprecated capabilities."
679
- msgstr ""
680
 
681
- #: ../includes/class-ure-screen-help.php:27
682
- msgid "Allow create, edit and delete users to not super-admininstrators"
683
- msgstr ""
684
-
685
- #: ../includes/class-ure-screen-help.php:28
686
- msgid ""
687
- "Super administrator only may create, edit and delete users under WordPress "
688
- "multi-site. Turn this option on in order to remove this limitation."
689
- msgstr ""
690
- "Только супер-администратор может создавать, изменять и удалять пользователей "
691
- "в многосайтовой сети WordPress. Включите эту опцию, чтобы отменить это "
692
- "ограничение"
693
 
694
  #~ msgid "Only"
695
  #~ msgstr "Только"
@@ -793,9 +789,6 @@ msgstr ""
793
  #~ msgid "Change"
794
  #~ msgstr "Изменить"
795
 
796
- #~ msgid "Delete User Role"
797
- #~ msgstr "Удалить Роль пользователя"
798
-
799
  #~ msgid "Remove"
800
  #~ msgstr "Удалить"
801
 
2
  msgstr ""
3
  "Project-Id-Version: User Role Editor v.2.0\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2013-11-04 08:45+0700\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Vladimir Garagulya <vladimir@shinephp.com>\n"
8
  "Language-Team: ShinePHP.com <vladimir@shinephp.com>\n"
34
  msgstr "Установки"
35
 
36
  #: ../includes/class-user-role-editor.php:420
37
+ #: ../includes/class-ure-lib.php:2089
38
  msgid "Changelog"
39
  msgstr "Журнал изменений"
40
 
41
  #: ../includes/class-user-role-editor.php:442
42
  msgid "Overview"
43
+ msgstr "Обзор"
 
 
 
 
 
 
 
44
 
45
  #: ../includes/class-user-role-editor.php:497
46
  msgid ""
54
 
55
  #: ../includes/class-user-role-editor.php:571
56
  msgid "Insufficient permissions to work with User Role Editor"
57
+ msgstr "Не достаточно прав для работы с User Role Editor"
58
 
59
  #: ../includes/class-user-role-editor.php:624
60
  msgid "Select All"
109
  msgstr "Добавить новую Возможность"
110
 
111
  #: ../includes/class-user-role-editor.php:636
112
+ #: ../includes/class-user-role-editor.php:645
113
  msgid "Delete Capability"
114
  msgstr "Удалить Возможность"
115
 
118
  msgstr "Сброс"
119
 
120
  #: ../includes/class-user-role-editor.php:638
121
+ msgid "DANGER! Resetting will restore default settings from WordPress Core."
 
 
 
122
  msgstr ""
123
+ "ВНИМАНИЕ! Очистка восстановит роли по состоянию на момент установки "
124
+ "WordPress."
 
125
 
126
  #: ../includes/class-user-role-editor.php:639
127
+ msgid ""
128
+ "If any plugins have changed capabilities in any way upon installation (such "
129
+ "as S2Member, WooCommerce, and many more), those capabilities will be DELETED!"
130
+ msgstr ""
131
+ "Если плагины изменяли пользовательские права после установки WordPress "
132
+ "(S2Member, WooCommerce и др.), права, созданные плагинами будут УДАЛЕНЫ!"
133
+
134
+ #: ../includes/class-user-role-editor.php:640
135
+ msgid ""
136
+ "For more information on how to undo changes and restore plugin capabilities "
137
+ "go to"
138
+ msgstr ""
139
+ "Подробнее о том, как откатить сделанные изменения и восстановить разрешения "
140
+ "для плагинов, можно узнать здесь"
141
+
142
+ #: ../includes/class-user-role-editor.php:642
143
+ msgid "Continue?"
144
+ msgstr "Продолжить?"
145
+
146
+ #: ../includes/class-user-role-editor.php:643
147
  msgid "Default Role"
148
  msgstr "Роль по-умолчанию"
149
 
150
+ #: ../includes/class-user-role-editor.php:644
151
  msgid "Set New Default Role"
152
  msgstr "Установить новую роль по-умолчанию"
153
 
154
+ #: ../includes/class-user-role-editor.php:646
155
  msgid ""
156
  "Warning! Be careful - removing critical capability could crash some plugin "
157
  "or other custom code"
159
  "Внимание! Будьте осторожны - удаление критичной возможности может привести к "
160
  "прекращеню работы одного из плагинов или другого кода."
161
 
162
+ #: ../includes/class-user-role-editor.php:647
163
  msgid " Capability name (ID) can not be empty!"
164
  msgstr "Идентификатор возможности (ID) не может быть пустым!"
165
 
166
+ #: ../includes/class-user-role-editor.php:648
167
  msgid ""
168
  " Capability name (ID) must contain latin characters, digits, hyphens or "
169
  "underscore only!"
171
  "Ошибка: Наименование возможности должно содержать только латинские буквы и "
172
  "цифры, знаки подчеркивания"
173
 
174
+ #: ../includes/class-user-role-editor.php:678
175
+ #: ../includes/class-ure-lib.php:223
176
+ msgid "User Role Editor"
177
+ msgstr "Редактор ролей пользователей"
178
+
179
+ #: ../includes/class-user-role-editor.php:681
180
+ #: ../includes/class-user-role-editor.php:709
181
  msgid "Other Roles"
182
  msgstr "Другие Роли"
183
 
184
+ #: ../includes/class-user-role-editor.php:691
185
  msgid "Edit"
186
  msgstr "Редактор"
187
 
198
  msgstr "Показ возможностей в читабельной форме"
199
 
200
  #: ../includes/ure-role-edit.php:40 ../includes/ure-user-edit.php:61
 
201
  msgid "Show deprecated capabilities"
202
  msgstr "Показать устаревшие разрешения"
203
 
311
  msgid "Role %s is created successfully"
312
  msgstr "Роль %s создана успешно"
313
 
314
+ #: ../includes/class-ure-lib.php:1699
315
  msgid "Error encountered during role delete operation"
316
  msgstr "Произошла ошибка при удалении роли"
317
 
318
+ #: ../includes/class-ure-lib.php:1701
319
+ msgid "Unused roles are deleted successfully"
320
+ msgstr "Неиспользуемые роли удалены успешно"
321
+
322
+ #: ../includes/class-ure-lib.php:1703
323
  #, php-format
324
  msgid "Role %s is deleted successfully"
325
  msgstr "Роль %s удалена успешно"
326
 
327
+ #: ../includes/class-ure-lib.php:1728
328
  msgid "Error encountered during default role change operation"
329
  msgstr "Произошла ошибка при изменении роли по-умолчанию"
330
 
331
+ #: ../includes/class-ure-lib.php:1734
332
  #, php-format
333
  msgid "Default role for new users is set to %s successfully"
334
  msgstr "Роль по-умолчанию для новых пользователй изменена на %s успешно."
335
 
336
+ #: ../includes/class-ure-lib.php:1753
337
  msgid "Editor"
338
  msgstr "Редактор"
339
 
340
+ #: ../includes/class-ure-lib.php:1754
341
  msgid "Author"
342
  msgstr "Автор"
343
 
344
+ #: ../includes/class-ure-lib.php:1755
345
  msgid "Contributor"
346
  msgstr "Участник"
347
 
348
+ #: ../includes/class-ure-lib.php:1756
349
  msgid "Subscriber"
350
  msgstr "Подписчик"
351
 
352
+ #: ../includes/class-ure-lib.php:1758
353
  msgid "Switch themes"
354
  msgstr "Менять темы"
355
 
356
+ #: ../includes/class-ure-lib.php:1759
357
  msgid "Edit themes"
358
  msgstr "Изменять темы"
359
 
360
+ #: ../includes/class-ure-lib.php:1760
361
  msgid "Activate plugins"
362
  msgstr "Активировать плагины"
363
 
364
+ #: ../includes/class-ure-lib.php:1761
365
  msgid "Edit plugins"
366
  msgstr "Редактировать плагины"
367
 
368
+ #: ../includes/class-ure-lib.php:1762
369
  msgid "Edit users"
370
  msgstr "Изменять пользователей"
371
 
372
+ #: ../includes/class-ure-lib.php:1763
373
  msgid "Edit files"
374
  msgstr "Изменять файлы"
375
 
376
+ #: ../includes/class-ure-lib.php:1764
377
  msgid "Manage options"
378
  msgstr "Управлять установками"
379
 
380
+ #: ../includes/class-ure-lib.php:1765
381
  msgid "Moderate comments"
382
  msgstr "Модерировать комментарии"
383
 
384
+ #: ../includes/class-ure-lib.php:1766
385
  msgid "Manage categories"
386
  msgstr "Управлять категориями"
387
 
388
+ #: ../includes/class-ure-lib.php:1767
389
  msgid "Manage links"
390
  msgstr "Управлять ссылками"
391
 
392
+ #: ../includes/class-ure-lib.php:1768
393
  msgid "Upload files"
394
  msgstr "Загружать файлы"
395
 
396
+ #: ../includes/class-ure-lib.php:1769
397
  msgid "Import"
398
  msgstr "Импорт"
399
 
400
+ #: ../includes/class-ure-lib.php:1770
401
  msgid "Unfiltered html"
402
  msgstr "html без фильтра"
403
 
404
+ #: ../includes/class-ure-lib.php:1771
405
  msgid "Edit posts"
406
  msgstr "Изменять статьи"
407
 
408
+ #: ../includes/class-ure-lib.php:1772
409
  msgid "Edit others posts"
410
  msgstr "Изменять чужие статьи"
411
 
412
+ #: ../includes/class-ure-lib.php:1773
413
  msgid "Edit published posts"
414
  msgstr "Редактировать опубликованные статьи"
415
 
416
+ #: ../includes/class-ure-lib.php:1774
417
  msgid "Publish posts"
418
  msgstr "Публиковать статьи"
419
 
420
+ #: ../includes/class-ure-lib.php:1775
421
  msgid "Edit pages"
422
  msgstr "Изменять страницы"
423
 
424
+ #: ../includes/class-ure-lib.php:1776
425
  msgid "Read"
426
  msgstr "Чтение"
427
 
428
+ #: ../includes/class-ure-lib.php:1777
429
  msgid "Level 10"
430
  msgstr "Уровень 10"
431
 
432
+ #: ../includes/class-ure-lib.php:1778
433
  msgid "Level 9"
434
  msgstr "Уровень 9"
435
 
436
+ #: ../includes/class-ure-lib.php:1779
437
  msgid "Level 8"
438
  msgstr "Уровень 9"
439
 
440
+ #: ../includes/class-ure-lib.php:1780
441
  msgid "Level 7"
442
  msgstr "Уровень 7"
443
 
444
+ #: ../includes/class-ure-lib.php:1781
445
  msgid "Level 6"
446
  msgstr "Уровень 6"
447
 
448
+ #: ../includes/class-ure-lib.php:1782
449
  msgid "Level 5"
450
  msgstr "Уровень 5"
451
 
452
+ #: ../includes/class-ure-lib.php:1783
453
  msgid "Level 4"
454
  msgstr "Уровень 4"
455
 
456
+ #: ../includes/class-ure-lib.php:1784
457
  msgid "Level 3"
458
  msgstr "Уровень 3"
459
 
460
+ #: ../includes/class-ure-lib.php:1785
461
  msgid "Level 2"
462
  msgstr "Уровень 2"
463
 
464
+ #: ../includes/class-ure-lib.php:1786
465
  msgid "Level 1"
466
  msgstr "Уровень 1"
467
 
468
+ #: ../includes/class-ure-lib.php:1787
469
  msgid "Level 0"
470
  msgstr "Уровень 0"
471
 
472
+ #: ../includes/class-ure-lib.php:1788
473
  msgid "Edit others pages"
474
  msgstr "Редактировать чужие страницы"
475
 
476
+ #: ../includes/class-ure-lib.php:1789
477
  msgid "Edit published pages"
478
  msgstr "Редактировать опубликованные страницы"
479
 
480
+ #: ../includes/class-ure-lib.php:1790
481
  msgid "Publish pages"
482
  msgstr "Публиковать страницы"
483
 
484
+ #: ../includes/class-ure-lib.php:1791
485
  msgid "Delete pages"
486
  msgstr "Удалять страницы"
487
 
488
+ #: ../includes/class-ure-lib.php:1792
489
  msgid "Delete others pages"
490
  msgstr "Удалить чужие страницы"
491
 
492
+ #: ../includes/class-ure-lib.php:1793
493
  msgid "Delete published pages"
494
  msgstr "Удалять опубликованные страницы"
495
 
496
+ #: ../includes/class-ure-lib.php:1794
497
  msgid "Delete posts"
498
  msgstr "Удалять статьи"
499
 
500
+ #: ../includes/class-ure-lib.php:1795
501
  msgid "Delete others posts"
502
  msgstr "Удалять чужие статьи"
503
 
504
+ #: ../includes/class-ure-lib.php:1796
505
  msgid "Delete published posts"
506
  msgstr "Удалять опубликованные статьи"
507
 
508
+ #: ../includes/class-ure-lib.php:1797
509
  msgid "Delete private posts"
510
  msgstr "Удалять частные статьи"
511
 
512
+ #: ../includes/class-ure-lib.php:1798
513
  msgid "Edit private posts"
514
  msgstr "Редактировать частные статьи"
515
 
516
+ #: ../includes/class-ure-lib.php:1799
517
  msgid "Read private posts"
518
  msgstr "Читать частные статьи"
519
 
520
+ #: ../includes/class-ure-lib.php:1800
521
  msgid "Delete private pages"
522
  msgstr "Удалять частные страницы"
523
 
524
+ #: ../includes/class-ure-lib.php:1801
525
  msgid "Edit private pages"
526
  msgstr "Редактировать частные страницы"
527
 
528
+ #: ../includes/class-ure-lib.php:1802
529
  msgid "Read private pages"
530
  msgstr "Читать частные страницы"
531
 
532
+ #: ../includes/class-ure-lib.php:1803
533
  msgid "Delete users"
534
  msgstr "Удалять пользователей"
535
 
536
+ #: ../includes/class-ure-lib.php:1804
537
  msgid "Create users"
538
  msgstr "Создавать пользователей"
539
 
540
+ #: ../includes/class-ure-lib.php:1805
541
  msgid "Unfiltered upload"
542
  msgstr "Загрузка без фильтра"
543
 
544
+ #: ../includes/class-ure-lib.php:1806
545
  msgid "Edit dashboard"
546
  msgstr "Изменять панель администратора"
547
 
548
+ #: ../includes/class-ure-lib.php:1807
549
  msgid "Update plugins"
550
  msgstr "Обновлять плагины"
551
 
552
+ #: ../includes/class-ure-lib.php:1808
553
  msgid "Delete plugins"
554
  msgstr "Удалять плагины"
555
 
556
+ #: ../includes/class-ure-lib.php:1809
557
  msgid "Install plugins"
558
  msgstr "Устанавливать плагины"
559
 
560
+ #: ../includes/class-ure-lib.php:1810
561
  msgid "Update themes"
562
  msgstr "Обновлять темы"
563
 
564
+ #: ../includes/class-ure-lib.php:1811
565
  msgid "Install themes"
566
  msgstr "Устанавливать темы"
567
 
568
+ #: ../includes/class-ure-lib.php:1812
569
  msgid "Update core"
570
  msgstr "Обновлять ядро"
571
 
572
+ #: ../includes/class-ure-lib.php:1813
573
  msgid "List users"
574
  msgstr "Список пользователей"
575
 
576
+ #: ../includes/class-ure-lib.php:1814
577
  msgid "Remove users"
578
  msgstr "Удалять пользователей"
579
 
580
+ #: ../includes/class-ure-lib.php:1815
581
  msgid "Add users"
582
  msgstr "Добавлять пользователей"
583
 
584
+ #: ../includes/class-ure-lib.php:1816
585
  msgid "Promote users"
586
  msgstr "Продвигать пользователей"
587
 
588
+ #: ../includes/class-ure-lib.php:1817
589
  msgid "Edit theme options"
590
  msgstr "Изменять настройки темы"
591
 
592
+ #: ../includes/class-ure-lib.php:1818
593
  msgid "Delete themes"
594
  msgstr "Удалять темы"
595
 
596
+ #: ../includes/class-ure-lib.php:1819
597
  msgid "Export"
598
  msgstr "Экспорт"
599
 
600
+ #: ../includes/class-ure-lib.php:1929
601
  msgid "Error: Capability name must contain latin characters and digits only!"
602
  msgstr "Ошибка: Имя должно содержать только латинские буквы и цифры"
603
 
604
+ #: ../includes/class-ure-lib.php:1942
605
  #, php-format
606
  msgid "Capability %s is added successfully"
607
  msgstr "Возможность %s добавлена успешно"
608
 
609
+ #: ../includes/class-ure-lib.php:1944
610
  #, php-format
611
  msgid "Capability %s exists already"
612
  msgstr "Возможность %s уже существует"
613
 
614
+ #: ../includes/class-ure-lib.php:1969
615
  #, php-format
616
  msgid "Error! You do not have permission to delete this capability: %s!"
617
  msgstr "Ошибка! Вам запрещено удалять эту возможность: %s!"
618
 
619
+ #: ../includes/class-ure-lib.php:1988
620
  #, php-format
621
  msgid "Capability %s is removed successfully"
622
  msgstr "Возможность %s удалена успешно"
623
 
624
+ #: ../includes/class-ure-lib.php:2085
625
  msgid "About this Plugin:"
626
  msgstr "Об этом плагине"
627
 
628
+ #: ../includes/class-ure-lib.php:2087
629
  msgid "Author's website"
630
  msgstr "Вебсайт автора"
631
 
632
+ #: ../includes/class-ure-lib.php:2088
633
  msgid "Plugin webpage"
634
  msgstr "Страница плагина"
635
 
636
+ #: ../includes/class-ure-lib.php:2090
637
  msgid "FAQ"
638
  msgstr "Часто задаваемые вопросы"
639
 
640
+ #: ../includes/class-ure-lib.php:2131
641
  msgid "None"
642
  msgstr "Нет"
643
 
644
+ #: ../includes/class-ure-lib.php:2157
645
+ msgid "Delete All Unused Roles"
646
+ msgstr "Удалить все неиспользуемые роли"
647
 
648
+ #: ../includes/class-ure-lib.php:2181
649
+ msgid "&mdash; No role for this site &mdash;"
650
+ msgstr "&mdash; Нет роли для этого сайта &mdash;"
651
 
652
  #: ../includes/ure-user-edit.php:34
653
  msgid "Change capabilities for user"
665
  msgid "Other Roles:"
666
  msgstr "Другие Роли:"
667
 
668
+ #~ msgid ""
669
+ #~ "Reset Roles to WordPress defaults. Be careful, all changes made by you or "
670
+ #~ "plugins will be lost. Some plugins, e.g. S2Member, WooCommerce "
671
+ #~ "reactivation could be needed. Continue?"
672
+ #~ msgstr ""
673
+ #~ "Вернуть роли в начальное состояние. Будьте осторожны, все изменения в "
674
+ #~ "ролях, сделанные темой и плагинами, будут потеряны, необходимо будет "
675
+ #~ "активировать заново некоторые плагины, например S2Member, WooCommerce. "
676
+ #~ "Продолжить?"
 
 
 
 
 
 
 
 
 
 
 
 
677
 
678
+ #~ msgid "Show capabilities in the human readable form"
679
+ #~ msgstr "Показ прав доступа в читабельной форме"
 
 
 
 
 
680
 
681
+ #~ msgid ""
682
+ #~ "Super administrator only may create, edit and delete users under "
683
+ #~ "WordPress multi-site. Turn this option on in order to remove this "
684
+ #~ "limitation."
685
+ #~ msgstr ""
686
+ #~ "Только супер-администратор может создавать, изменять и удалять "
687
+ #~ "пользователей в многосайтовой сети WordPress. Включите эту опцию, чтобы "
688
+ #~ "отменить это ограничение"
 
 
 
 
689
 
690
  #~ msgid "Only"
691
  #~ msgstr "Только"
789
  #~ msgid "Change"
790
  #~ msgstr "Изменить"
791
 
 
 
 
792
  #~ msgid "Remove"
793
  #~ msgstr "Удалить"
794
 
lang/ure-tr_TR.mo CHANGED
Binary file
lang/ure-tr_TR.po CHANGED
@@ -2,7 +2,7 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: user-role-editor\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2013-10-21 12:12+0700\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Vladimir Garagulya <vladimir@shinephp.com>\n"
8
  "Language-Team: \n"
@@ -34,7 +34,7 @@ msgid "Settings"
34
  msgstr "Ayarlar"
35
 
36
  #: ../includes/class-user-role-editor.php:420
37
- #: ../includes/class-ure-lib.php:2050
38
  msgid "Changelog"
39
  msgstr "Changelog"
40
 
@@ -42,13 +42,6 @@ msgstr "Changelog"
42
  msgid "Overview"
43
  msgstr ""
44
 
45
- #: ../includes/class-user-role-editor.php:451
46
- #: ../includes/class-user-role-editor.php:479
47
- #: ../includes/class-user-role-editor.php:674
48
- #: ../includes/class-ure-lib.php:223
49
- msgid "User Role Editor"
50
- msgstr "Kullanıcı Rol Editörü"
51
-
52
  #: ../includes/class-user-role-editor.php:497
53
  msgid ""
54
  "You do not have sufficient permissions to manage options for User Role "
@@ -116,7 +109,7 @@ msgid "Add Capability"
116
  msgstr "Kabiliyet Ekle"
117
 
118
  #: ../includes/class-user-role-editor.php:636
119
- #: ../includes/class-user-role-editor.php:641
120
  msgid "Delete Capability"
121
  msgstr "Kabiliyeti kaldır"
122
 
@@ -125,25 +118,34 @@ msgid "Reset"
125
  msgstr "Geri al"
126
 
127
  #: ../includes/class-user-role-editor.php:638
128
- msgid ""
129
- "Reset Roles to WordPress defaults. Be careful, all changes made by you or "
130
- "plugins will be lost. Some plugins, e.g. S2Member, WooCommerce reactivation "
131
- "could be needed. Continue?"
132
  msgstr ""
133
- "Rolleri Wordpress öntanımlılarına ayarla. Dikkatli olun, sizin tarafınızdan "
134
- "veya eklenti tarafından yapılan tüm değişiklikler kaybolacak. Bazı "
135
- "eklentiler, örneğin S2Member, WooCommerce için yeniden etkinleştirme "
136
- "gerekebilir. Devam etmek istiyor musunuz?"
137
 
138
  #: ../includes/class-user-role-editor.php:639
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
139
  msgid "Default Role"
140
  msgstr "Öntanımlı Rol"
141
 
142
- #: ../includes/class-user-role-editor.php:640
143
  msgid "Set New Default Role"
144
  msgstr "Yeni Öntanımlı Rol Seç"
145
 
146
- #: ../includes/class-user-role-editor.php:642
147
  msgid ""
148
  "Warning! Be careful - removing critical capability could crash some plugin "
149
  "or other custom code"
@@ -151,11 +153,11 @@ msgstr ""
151
  "Uyarı! Dikkatli olun - önemli kabiliyetleri kaldırmak bazı eklentileri veya "
152
  "başka özel kodların bozulmasına sebep olabilir"
153
 
154
- #: ../includes/class-user-role-editor.php:643
155
  msgid " Capability name (ID) can not be empty!"
156
  msgstr "Ad (ID) boş bırakılamaz!"
157
 
158
- #: ../includes/class-user-role-editor.php:644
159
  msgid ""
160
  " Capability name (ID) must contain latin characters, digits, hyphens or "
161
  "underscore only!"
@@ -163,12 +165,17 @@ msgstr ""
163
  "Kabiliyet adı (ID) yalnızca latin karakterleri, sayılar, tire veya "
164
  "altçizgiden oluşabilir."
165
 
166
- #: ../includes/class-user-role-editor.php:677
167
- #: ../includes/class-user-role-editor.php:705
 
 
 
 
 
168
  msgid "Other Roles"
169
  msgstr "Diğer Roller"
170
 
171
- #: ../includes/class-user-role-editor.php:687
172
  msgid "Edit"
173
  msgstr "Düzenle"
174
 
@@ -185,7 +192,6 @@ msgid "Show capabilities in human readable form"
185
  msgstr "Yetkileri insan tarafından okunabilir biçimde göster"
186
 
187
  #: ../includes/ure-role-edit.php:40 ../includes/ure-user-edit.php:61
188
- #: ../includes/class-ure-screen-help.php:21
189
  msgid "Show deprecated capabilities"
190
  msgstr "Önerilmeyen yetenekleri göster"
191
 
@@ -262,9 +268,8 @@ msgid "User capabilities are updated successfully"
262
  msgstr ""
263
 
264
  #: ../includes/class-ure-lib.php:384
265
- #, fuzzy
266
  msgid "Error occured during user update"
267
- msgstr "Rol güncelleme işlemi sırasında hata oluştu"
268
 
269
  #: ../includes/class-ure-lib.php:439
270
  msgid "User Roles are restored to WordPress default values. "
@@ -300,339 +305,343 @@ msgstr "Yeni rol oluşturma işlemi sırasında hata"
300
  msgid "Role %s is created successfully"
301
  msgstr "%s rolü başarıyla oluşturuldu"
302
 
303
- #: ../includes/class-ure-lib.php:1662
304
  msgid "Error encountered during role delete operation"
305
  msgstr "Rol silme işlemi sırasında hata"
306
 
307
- #: ../includes/class-ure-lib.php:1664
 
 
 
 
308
  #, php-format
309
  msgid "Role %s is deleted successfully"
310
  msgstr "%s rolü başarıyla silindi"
311
 
312
- #: ../includes/class-ure-lib.php:1689
313
  msgid "Error encountered during default role change operation"
314
  msgstr "Varsayılan rolü değiştirme işlemi sırasında hata"
315
 
316
- #: ../includes/class-ure-lib.php:1695
317
  #, php-format
318
  msgid "Default role for new users is set to %s successfully"
319
  msgstr "Yeni kullanıcılar için varsayılan rol %s olarak başarıyla değiştirildi"
320
 
321
- #: ../includes/class-ure-lib.php:1714
322
  msgid "Editor"
323
  msgstr "Editör"
324
 
325
- #: ../includes/class-ure-lib.php:1715
326
  msgid "Author"
327
  msgstr "Yazar"
328
 
329
- #: ../includes/class-ure-lib.php:1716
330
  msgid "Contributor"
331
  msgstr "İçerik Sağlayıcı"
332
 
333
- #: ../includes/class-ure-lib.php:1717
334
  msgid "Subscriber"
335
  msgstr "Üye"
336
 
337
- #: ../includes/class-ure-lib.php:1719
338
  msgid "Switch themes"
339
  msgstr "Temaları değiştir"
340
 
341
- #: ../includes/class-ure-lib.php:1720
342
  msgid "Edit themes"
343
  msgstr "Temaları düzenle"
344
 
345
- #: ../includes/class-ure-lib.php:1721
346
  msgid "Activate plugins"
347
  msgstr "Eklentileri aktive et"
348
 
349
- #: ../includes/class-ure-lib.php:1722
350
  msgid "Edit plugins"
351
  msgstr "Eklentileri düzenlemek"
352
 
353
- #: ../includes/class-ure-lib.php:1723
354
  msgid "Edit users"
355
  msgstr "Kullanıcıları düzenlemek"
356
 
357
- #: ../includes/class-ure-lib.php:1724
358
  msgid "Edit files"
359
  msgstr "Dosyaları düzenlemek"
360
 
361
- #: ../includes/class-ure-lib.php:1725
362
  msgid "Manage options"
363
  msgstr "Seçenekleri yönetmek"
364
 
365
- #: ../includes/class-ure-lib.php:1726
366
  msgid "Moderate comments"
367
  msgstr "Yorumları yönetmek"
368
 
369
- #: ../includes/class-ure-lib.php:1727
370
  msgid "Manage categories"
371
  msgstr "Kategorileri yönetmek"
372
 
373
- #: ../includes/class-ure-lib.php:1728
374
  msgid "Manage links"
375
  msgstr "Linkleri yönetmek"
376
 
377
- #: ../includes/class-ure-lib.php:1729
378
  msgid "Upload files"
379
  msgstr "Dosya yüklemek"
380
 
381
- #: ../includes/class-ure-lib.php:1730
382
  msgid "Import"
383
  msgstr "İçeri aktarmak"
384
 
385
- #: ../includes/class-ure-lib.php:1731
386
  msgid "Unfiltered html"
387
  msgstr "Filtrelenmemiş HTML"
388
 
389
- #: ../includes/class-ure-lib.php:1732
390
  msgid "Edit posts"
391
  msgstr "Yazıları düzenlemek"
392
 
393
- #: ../includes/class-ure-lib.php:1733
394
  msgid "Edit others posts"
395
  msgstr "Başkalarının yazılarını düzenlemek"
396
 
397
- #: ../includes/class-ure-lib.php:1734
398
  msgid "Edit published posts"
399
  msgstr "Yayınlanmış yazıları düzenlemek"
400
 
401
- #: ../includes/class-ure-lib.php:1735
402
  msgid "Publish posts"
403
  msgstr "Yazıları yayınlamak"
404
 
405
- #: ../includes/class-ure-lib.php:1736
406
  msgid "Edit pages"
407
  msgstr "Sayfaları düzenlemek"
408
 
409
- #: ../includes/class-ure-lib.php:1737
410
  msgid "Read"
411
  msgstr "Okumak"
412
 
413
- #: ../includes/class-ure-lib.php:1738
414
  msgid "Level 10"
415
  msgstr "Seviye 10"
416
 
417
- #: ../includes/class-ure-lib.php:1739
418
  msgid "Level 9"
419
  msgstr "Seviye 9"
420
 
421
- #: ../includes/class-ure-lib.php:1740
422
  msgid "Level 8"
423
  msgstr "Seviye 8"
424
 
425
- #: ../includes/class-ure-lib.php:1741
426
  msgid "Level 7"
427
  msgstr "Seviye 7"
428
 
429
- #: ../includes/class-ure-lib.php:1742
430
  msgid "Level 6"
431
  msgstr "Seviye 6"
432
 
433
- #: ../includes/class-ure-lib.php:1743
434
  msgid "Level 5"
435
  msgstr "Seviye 5"
436
 
437
- #: ../includes/class-ure-lib.php:1744
438
  msgid "Level 4"
439
  msgstr "Seviye 4"
440
 
441
- #: ../includes/class-ure-lib.php:1745
442
  msgid "Level 3"
443
  msgstr "Seviye 3"
444
 
445
- #: ../includes/class-ure-lib.php:1746
446
  msgid "Level 2"
447
  msgstr "Seviye 2"
448
 
449
- #: ../includes/class-ure-lib.php:1747
450
  msgid "Level 1"
451
  msgstr "Seviye 1"
452
 
453
- #: ../includes/class-ure-lib.php:1748
454
  msgid "Level 0"
455
  msgstr "Seviye 0"
456
 
457
- #: ../includes/class-ure-lib.php:1749
458
  msgid "Edit others pages"
459
  msgstr "Başkalarının sayfalarını düzenlemek"
460
 
461
- #: ../includes/class-ure-lib.php:1750
462
  msgid "Edit published pages"
463
  msgstr "Yayınlanmış sayfaları düzenlemek"
464
 
465
- #: ../includes/class-ure-lib.php:1751
466
  msgid "Publish pages"
467
  msgstr "Sayfaları yayınlamak"
468
 
469
- #: ../includes/class-ure-lib.php:1752
470
  msgid "Delete pages"
471
  msgstr "Sayfaları silmek"
472
 
473
- #: ../includes/class-ure-lib.php:1753
474
  msgid "Delete others pages"
475
  msgstr "Başkalarının sayfalarını silmek"
476
 
477
- #: ../includes/class-ure-lib.php:1754
478
  msgid "Delete published pages"
479
  msgstr "Yayınlanmış sayfaları silmek"
480
 
481
- #: ../includes/class-ure-lib.php:1755
482
  msgid "Delete posts"
483
  msgstr "Yazıları silmek"
484
 
485
- #: ../includes/class-ure-lib.php:1756
486
  msgid "Delete others posts"
487
  msgstr "Başkalarının yazılarını silmek"
488
 
489
- #: ../includes/class-ure-lib.php:1757
490
  msgid "Delete published posts"
491
  msgstr "Yayınlanmış yazıları silmek"
492
 
493
- #: ../includes/class-ure-lib.php:1758
494
  msgid "Delete private posts"
495
  msgstr "Özel yazıları silmek"
496
 
497
- #: ../includes/class-ure-lib.php:1759
498
  msgid "Edit private posts"
499
  msgstr "Özel yazıları düzenlemek"
500
 
501
- #: ../includes/class-ure-lib.php:1760
502
  msgid "Read private posts"
503
  msgstr "Özel yazıları okumak"
504
 
505
- #: ../includes/class-ure-lib.php:1761
506
  msgid "Delete private pages"
507
  msgstr "Özel sayfaları silmek"
508
 
509
- #: ../includes/class-ure-lib.php:1762
510
  msgid "Edit private pages"
511
  msgstr "Özel sayfaları düzenlemek"
512
 
513
- #: ../includes/class-ure-lib.php:1763
514
  msgid "Read private pages"
515
  msgstr "Özel yazıları okumak"
516
 
517
- #: ../includes/class-ure-lib.php:1764
518
  msgid "Delete users"
519
  msgstr "Kullanıcı silmek"
520
 
521
- #: ../includes/class-ure-lib.php:1765
522
  msgid "Create users"
523
  msgstr "Kullanıcı oluşturmak"
524
 
525
- #: ../includes/class-ure-lib.php:1766
526
  msgid "Unfiltered upload"
527
  msgstr "Filtrelenmemiş dosya yüklemek"
528
 
529
- #: ../includes/class-ure-lib.php:1767
530
  msgid "Edit dashboard"
531
  msgstr "Paneli düzenlemek"
532
 
533
- #: ../includes/class-ure-lib.php:1768
534
  msgid "Update plugins"
535
  msgstr "Eklentileri güncellemek"
536
 
537
- #: ../includes/class-ure-lib.php:1769
538
  msgid "Delete plugins"
539
  msgstr "Eklenti silmek"
540
 
541
- #: ../includes/class-ure-lib.php:1770
542
  msgid "Install plugins"
543
  msgstr "Eklenti yüklemek"
544
 
545
- #: ../includes/class-ure-lib.php:1771
546
  msgid "Update themes"
547
  msgstr "Temaları güncellemek"
548
 
549
- #: ../includes/class-ure-lib.php:1772
550
  msgid "Install themes"
551
  msgstr "Tema yüklemek"
552
 
553
- #: ../includes/class-ure-lib.php:1773
554
  msgid "Update core"
555
  msgstr "Güncelle"
556
 
557
- #: ../includes/class-ure-lib.php:1774
558
  msgid "List users"
559
  msgstr "Kullanıcıları listelemek"
560
 
561
- #: ../includes/class-ure-lib.php:1775
562
  msgid "Remove users"
563
  msgstr "Kullanıcı silmek"
564
 
565
- #: ../includes/class-ure-lib.php:1776
566
  msgid "Add users"
567
  msgstr "Kullanıcıları eklemek"
568
 
569
- #: ../includes/class-ure-lib.php:1777
570
  msgid "Promote users"
571
  msgstr "Kullanıcı yükseltmek"
572
 
573
- #: ../includes/class-ure-lib.php:1778
574
  msgid "Edit theme options"
575
  msgstr "Tema ayarlarını düzenlemek"
576
 
577
- #: ../includes/class-ure-lib.php:1779
578
  msgid "Delete themes"
579
  msgstr "Temaları silmek"
580
 
581
- #: ../includes/class-ure-lib.php:1780
582
  msgid "Export"
583
  msgstr "Dışa aktarmak"
584
 
585
- #: ../includes/class-ure-lib.php:1890
586
  msgid "Error: Capability name must contain latin characters and digits only!"
587
  msgstr ""
588
  "Hata: Kabiliyet adı yalnızca latin karakterleri ve sayılardan oluşabilir."
589
 
590
- #: ../includes/class-ure-lib.php:1903
591
  #, php-format
592
  msgid "Capability %s is added successfully"
593
  msgstr "%s kabiliyeti başarıyla eklendi"
594
 
595
- #: ../includes/class-ure-lib.php:1905
596
  #, php-format
597
  msgid "Capability %s exists already"
598
  msgstr "%s kabiliyeti zaten mevcut"
599
 
600
- #: ../includes/class-ure-lib.php:1930
601
  #, php-format
602
  msgid "Error! You do not have permission to delete this capability: %s!"
603
  msgstr "Hata! Bu kabiliyeti değiştirmek için yetkiniz yok: %s!"
604
 
605
- #: ../includes/class-ure-lib.php:1949
606
  #, php-format
607
  msgid "Capability %s is removed successfully"
608
  msgstr "%s kabiliyeti başarıyla oluşturuldu"
609
 
610
- #: ../includes/class-ure-lib.php:2046
611
  msgid "About this Plugin:"
612
  msgstr "Bu eklenti hakkında:"
613
 
614
- #: ../includes/class-ure-lib.php:2048
615
  msgid "Author's website"
616
  msgstr "Hazırlayanın websitesi"
617
 
618
- #: ../includes/class-ure-lib.php:2049
619
  msgid "Plugin webpage"
620
  msgstr "Eklentinin websitesi"
621
 
622
- #: ../includes/class-ure-lib.php:2051
623
  msgid "FAQ"
624
  msgstr "SSS"
625
 
626
- #: ../includes/class-ure-lib.php:2092
627
  msgid "None"
628
  msgstr "Hiçbiri"
629
 
630
- #: ../includes/class-ure-lib.php:2141
631
- msgid "&mdash; No role for this site &mdash;"
632
  msgstr ""
633
 
634
- #: ../includes/ure-user-edit.php:31
635
- msgid "Network Super Admin"
636
  msgstr ""
637
 
638
  #: ../includes/ure-user-edit.php:34
@@ -651,46 +660,19 @@ msgstr "bbPress rolü: "
651
  msgid "Other Roles:"
652
  msgstr "Diğer Roller:"
653
 
654
- #: ../includes/class-ure-screen-help.php:15
655
- msgid "Show Administrator role at User Role Editor"
656
- msgstr ""
657
-
658
- #: ../includes/class-ure-screen-help.php:16
659
- msgid ""
660
- "turn this option on in order to make the \"Administrator\" role available at "
661
- "the User Role Editor roles selection drop-down list. It is hidden by default "
662
- "for security reasons."
663
- msgstr ""
664
 
665
- #: ../includes/class-ure-screen-help.php:18
666
  #, fuzzy
667
- msgid "Show capabilities in the human readable form"
668
- msgstr "Yetkileri insan tarafından okunabilir biçimde göster"
669
-
670
- #: ../includes/class-ure-screen-help.php:19
671
- msgid ""
672
- "automatically converts capability names from the technical form for internal "
673
- "use like \"edit_others_posts\" to more user friendly form, e.g. \"Edit "
674
- "others posts\"."
675
- msgstr ""
676
-
677
- #: ../includes/class-ure-screen-help.php:22
678
- msgid ""
679
- "Capabilities like \"level_0\", \"level_1\" are deprecated and are not used "
680
- "by WordPress. They are left at the user roles for the compatibility purpose "
681
- "with the old themes and plugins code. Turning on this option will show those "
682
- "deprecated capabilities."
683
- msgstr ""
684
-
685
- #: ../includes/class-ure-screen-help.php:27
686
- msgid "Allow create, edit and delete users to not super-admininstrators"
687
- msgstr ""
688
-
689
- #: ../includes/class-ure-screen-help.php:28
690
- msgid ""
691
- "Super administrator only may create, edit and delete users under WordPress "
692
- "multi-site. Turn this option on in order to remove this limitation."
693
- msgstr ""
694
 
695
  #~ msgid "User Role Editor requires PHP %s or newer."
696
  #~ msgstr ""
@@ -768,9 +750,6 @@ msgstr ""
768
  #~ msgid "Change"
769
  #~ msgstr "Değiştir"
770
 
771
- #~ msgid "Delete User Role"
772
- #~ msgstr "Kullanıcı Rolünü Sil"
773
-
774
  #~ msgid "Remove"
775
  #~ msgstr "Kaldır"
776
 
2
  msgstr ""
3
  "Project-Id-Version: user-role-editor\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2013-11-04 08:44+0700\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Vladimir Garagulya <vladimir@shinephp.com>\n"
8
  "Language-Team: \n"
34
  msgstr "Ayarlar"
35
 
36
  #: ../includes/class-user-role-editor.php:420
37
+ #: ../includes/class-ure-lib.php:2089
38
  msgid "Changelog"
39
  msgstr "Changelog"
40
 
42
  msgid "Overview"
43
  msgstr ""
44
 
 
 
 
 
 
 
 
45
  #: ../includes/class-user-role-editor.php:497
46
  msgid ""
47
  "You do not have sufficient permissions to manage options for User Role "
109
  msgstr "Kabiliyet Ekle"
110
 
111
  #: ../includes/class-user-role-editor.php:636
112
+ #: ../includes/class-user-role-editor.php:645
113
  msgid "Delete Capability"
114
  msgstr "Kabiliyeti kaldır"
115
 
118
  msgstr "Geri al"
119
 
120
  #: ../includes/class-user-role-editor.php:638
121
+ msgid "DANGER! Resetting will restore default settings from WordPress Core."
 
 
 
122
  msgstr ""
 
 
 
 
123
 
124
  #: ../includes/class-user-role-editor.php:639
125
+ msgid ""
126
+ "If any plugins have changed capabilities in any way upon installation (such "
127
+ "as S2Member, WooCommerce, and many more), those capabilities will be DELETED!"
128
+ msgstr ""
129
+
130
+ #: ../includes/class-user-role-editor.php:640
131
+ msgid ""
132
+ "For more information on how to undo changes and restore plugin capabilities "
133
+ "go to"
134
+ msgstr ""
135
+
136
+ #: ../includes/class-user-role-editor.php:642
137
+ msgid "Continue?"
138
+ msgstr ""
139
+
140
+ #: ../includes/class-user-role-editor.php:643
141
  msgid "Default Role"
142
  msgstr "Öntanımlı Rol"
143
 
144
+ #: ../includes/class-user-role-editor.php:644
145
  msgid "Set New Default Role"
146
  msgstr "Yeni Öntanımlı Rol Seç"
147
 
148
+ #: ../includes/class-user-role-editor.php:646
149
  msgid ""
150
  "Warning! Be careful - removing critical capability could crash some plugin "
151
  "or other custom code"
153
  "Uyarı! Dikkatli olun - önemli kabiliyetleri kaldırmak bazı eklentileri veya "
154
  "başka özel kodların bozulmasına sebep olabilir"
155
 
156
+ #: ../includes/class-user-role-editor.php:647
157
  msgid " Capability name (ID) can not be empty!"
158
  msgstr "Ad (ID) boş bırakılamaz!"
159
 
160
+ #: ../includes/class-user-role-editor.php:648
161
  msgid ""
162
  " Capability name (ID) must contain latin characters, digits, hyphens or "
163
  "underscore only!"
165
  "Kabiliyet adı (ID) yalnızca latin karakterleri, sayılar, tire veya "
166
  "altçizgiden oluşabilir."
167
 
168
+ #: ../includes/class-user-role-editor.php:678
169
+ #: ../includes/class-ure-lib.php:223
170
+ msgid "User Role Editor"
171
+ msgstr "Kullanıcı Rol Editörü"
172
+
173
+ #: ../includes/class-user-role-editor.php:681
174
+ #: ../includes/class-user-role-editor.php:709
175
  msgid "Other Roles"
176
  msgstr "Diğer Roller"
177
 
178
+ #: ../includes/class-user-role-editor.php:691
179
  msgid "Edit"
180
  msgstr "Düzenle"
181
 
192
  msgstr "Yetkileri insan tarafından okunabilir biçimde göster"
193
 
194
  #: ../includes/ure-role-edit.php:40 ../includes/ure-user-edit.php:61
 
195
  msgid "Show deprecated capabilities"
196
  msgstr "Önerilmeyen yetenekleri göster"
197
 
268
  msgstr ""
269
 
270
  #: ../includes/class-ure-lib.php:384
 
271
  msgid "Error occured during user update"
272
+ msgstr ""
273
 
274
  #: ../includes/class-ure-lib.php:439
275
  msgid "User Roles are restored to WordPress default values. "
305
  msgid "Role %s is created successfully"
306
  msgstr "%s rolü başarıyla oluşturuldu"
307
 
308
+ #: ../includes/class-ure-lib.php:1699
309
  msgid "Error encountered during role delete operation"
310
  msgstr "Rol silme işlemi sırasında hata"
311
 
312
+ #: ../includes/class-ure-lib.php:1701
313
+ msgid "Unused roles are deleted successfully"
314
+ msgstr ""
315
+
316
+ #: ../includes/class-ure-lib.php:1703
317
  #, php-format
318
  msgid "Role %s is deleted successfully"
319
  msgstr "%s rolü başarıyla silindi"
320
 
321
+ #: ../includes/class-ure-lib.php:1728
322
  msgid "Error encountered during default role change operation"
323
  msgstr "Varsayılan rolü değiştirme işlemi sırasında hata"
324
 
325
+ #: ../includes/class-ure-lib.php:1734
326
  #, php-format
327
  msgid "Default role for new users is set to %s successfully"
328
  msgstr "Yeni kullanıcılar için varsayılan rol %s olarak başarıyla değiştirildi"
329
 
330
+ #: ../includes/class-ure-lib.php:1753
331
  msgid "Editor"
332
  msgstr "Editör"
333
 
334
+ #: ../includes/class-ure-lib.php:1754
335
  msgid "Author"
336
  msgstr "Yazar"
337
 
338
+ #: ../includes/class-ure-lib.php:1755
339
  msgid "Contributor"
340
  msgstr "İçerik Sağlayıcı"
341
 
342
+ #: ../includes/class-ure-lib.php:1756
343
  msgid "Subscriber"
344
  msgstr "Üye"
345
 
346
+ #: ../includes/class-ure-lib.php:1758
347
  msgid "Switch themes"
348
  msgstr "Temaları değiştir"
349
 
350
+ #: ../includes/class-ure-lib.php:1759
351
  msgid "Edit themes"
352
  msgstr "Temaları düzenle"
353
 
354
+ #: ../includes/class-ure-lib.php:1760
355
  msgid "Activate plugins"
356
  msgstr "Eklentileri aktive et"
357
 
358
+ #: ../includes/class-ure-lib.php:1761
359
  msgid "Edit plugins"
360
  msgstr "Eklentileri düzenlemek"
361
 
362
+ #: ../includes/class-ure-lib.php:1762
363
  msgid "Edit users"
364
  msgstr "Kullanıcıları düzenlemek"
365
 
366
+ #: ../includes/class-ure-lib.php:1763
367
  msgid "Edit files"
368
  msgstr "Dosyaları düzenlemek"
369
 
370
+ #: ../includes/class-ure-lib.php:1764
371
  msgid "Manage options"
372
  msgstr "Seçenekleri yönetmek"
373
 
374
+ #: ../includes/class-ure-lib.php:1765
375
  msgid "Moderate comments"
376
  msgstr "Yorumları yönetmek"
377
 
378
+ #: ../includes/class-ure-lib.php:1766
379
  msgid "Manage categories"
380
  msgstr "Kategorileri yönetmek"
381
 
382
+ #: ../includes/class-ure-lib.php:1767
383
  msgid "Manage links"
384
  msgstr "Linkleri yönetmek"
385
 
386
+ #: ../includes/class-ure-lib.php:1768
387
  msgid "Upload files"
388
  msgstr "Dosya yüklemek"
389
 
390
+ #: ../includes/class-ure-lib.php:1769
391
  msgid "Import"
392
  msgstr "İçeri aktarmak"
393
 
394
+ #: ../includes/class-ure-lib.php:1770
395
  msgid "Unfiltered html"
396
  msgstr "Filtrelenmemiş HTML"
397
 
398
+ #: ../includes/class-ure-lib.php:1771
399
  msgid "Edit posts"
400
  msgstr "Yazıları düzenlemek"
401
 
402
+ #: ../includes/class-ure-lib.php:1772
403
  msgid "Edit others posts"
404
  msgstr "Başkalarının yazılarını düzenlemek"
405
 
406
+ #: ../includes/class-ure-lib.php:1773
407
  msgid "Edit published posts"
408
  msgstr "Yayınlanmış yazıları düzenlemek"
409
 
410
+ #: ../includes/class-ure-lib.php:1774
411
  msgid "Publish posts"
412
  msgstr "Yazıları yayınlamak"
413
 
414
+ #: ../includes/class-ure-lib.php:1775
415
  msgid "Edit pages"
416
  msgstr "Sayfaları düzenlemek"
417
 
418
+ #: ../includes/class-ure-lib.php:1776
419
  msgid "Read"
420
  msgstr "Okumak"
421
 
422
+ #: ../includes/class-ure-lib.php:1777
423
  msgid "Level 10"
424
  msgstr "Seviye 10"
425
 
426
+ #: ../includes/class-ure-lib.php:1778
427
  msgid "Level 9"
428
  msgstr "Seviye 9"
429
 
430
+ #: ../includes/class-ure-lib.php:1779
431
  msgid "Level 8"
432
  msgstr "Seviye 8"
433
 
434
+ #: ../includes/class-ure-lib.php:1780
435
  msgid "Level 7"
436
  msgstr "Seviye 7"
437
 
438
+ #: ../includes/class-ure-lib.php:1781
439
  msgid "Level 6"
440
  msgstr "Seviye 6"
441
 
442
+ #: ../includes/class-ure-lib.php:1782
443
  msgid "Level 5"
444
  msgstr "Seviye 5"
445
 
446
+ #: ../includes/class-ure-lib.php:1783
447
  msgid "Level 4"
448
  msgstr "Seviye 4"
449
 
450
+ #: ../includes/class-ure-lib.php:1784
451
  msgid "Level 3"
452
  msgstr "Seviye 3"
453
 
454
+ #: ../includes/class-ure-lib.php:1785
455
  msgid "Level 2"
456
  msgstr "Seviye 2"
457
 
458
+ #: ../includes/class-ure-lib.php:1786
459
  msgid "Level 1"
460
  msgstr "Seviye 1"
461
 
462
+ #: ../includes/class-ure-lib.php:1787
463
  msgid "Level 0"
464
  msgstr "Seviye 0"
465
 
466
+ #: ../includes/class-ure-lib.php:1788
467
  msgid "Edit others pages"
468
  msgstr "Başkalarının sayfalarını düzenlemek"
469
 
470
+ #: ../includes/class-ure-lib.php:1789
471
  msgid "Edit published pages"
472
  msgstr "Yayınlanmış sayfaları düzenlemek"
473
 
474
+ #: ../includes/class-ure-lib.php:1790
475
  msgid "Publish pages"
476
  msgstr "Sayfaları yayınlamak"
477
 
478
+ #: ../includes/class-ure-lib.php:1791
479
  msgid "Delete pages"
480
  msgstr "Sayfaları silmek"
481
 
482
+ #: ../includes/class-ure-lib.php:1792
483
  msgid "Delete others pages"
484
  msgstr "Başkalarının sayfalarını silmek"
485
 
486
+ #: ../includes/class-ure-lib.php:1793
487
  msgid "Delete published pages"
488
  msgstr "Yayınlanmış sayfaları silmek"
489
 
490
+ #: ../includes/class-ure-lib.php:1794
491
  msgid "Delete posts"
492
  msgstr "Yazıları silmek"
493
 
494
+ #: ../includes/class-ure-lib.php:1795
495
  msgid "Delete others posts"
496
  msgstr "Başkalarının yazılarını silmek"
497
 
498
+ #: ../includes/class-ure-lib.php:1796
499
  msgid "Delete published posts"
500
  msgstr "Yayınlanmış yazıları silmek"
501
 
502
+ #: ../includes/class-ure-lib.php:1797
503
  msgid "Delete private posts"
504
  msgstr "Özel yazıları silmek"
505
 
506
+ #: ../includes/class-ure-lib.php:1798
507
  msgid "Edit private posts"
508
  msgstr "Özel yazıları düzenlemek"
509
 
510
+ #: ../includes/class-ure-lib.php:1799
511
  msgid "Read private posts"
512
  msgstr "Özel yazıları okumak"
513
 
514
+ #: ../includes/class-ure-lib.php:1800
515
  msgid "Delete private pages"
516
  msgstr "Özel sayfaları silmek"
517
 
518
+ #: ../includes/class-ure-lib.php:1801
519
  msgid "Edit private pages"
520
  msgstr "Özel sayfaları düzenlemek"
521
 
522
+ #: ../includes/class-ure-lib.php:1802
523
  msgid "Read private pages"
524
  msgstr "Özel yazıları okumak"
525
 
526
+ #: ../includes/class-ure-lib.php:1803
527
  msgid "Delete users"
528
  msgstr "Kullanıcı silmek"
529
 
530
+ #: ../includes/class-ure-lib.php:1804
531
  msgid "Create users"
532
  msgstr "Kullanıcı oluşturmak"
533
 
534
+ #: ../includes/class-ure-lib.php:1805
535
  msgid "Unfiltered upload"
536
  msgstr "Filtrelenmemiş dosya yüklemek"
537
 
538
+ #: ../includes/class-ure-lib.php:1806
539
  msgid "Edit dashboard"
540
  msgstr "Paneli düzenlemek"
541
 
542
+ #: ../includes/class-ure-lib.php:1807
543
  msgid "Update plugins"
544
  msgstr "Eklentileri güncellemek"
545
 
546
+ #: ../includes/class-ure-lib.php:1808
547
  msgid "Delete plugins"
548
  msgstr "Eklenti silmek"
549
 
550
+ #: ../includes/class-ure-lib.php:1809
551
  msgid "Install plugins"
552
  msgstr "Eklenti yüklemek"
553
 
554
+ #: ../includes/class-ure-lib.php:1810
555
  msgid "Update themes"
556
  msgstr "Temaları güncellemek"
557
 
558
+ #: ../includes/class-ure-lib.php:1811
559
  msgid "Install themes"
560
  msgstr "Tema yüklemek"
561
 
562
+ #: ../includes/class-ure-lib.php:1812
563
  msgid "Update core"
564
  msgstr "Güncelle"
565
 
566
+ #: ../includes/class-ure-lib.php:1813
567
  msgid "List users"
568
  msgstr "Kullanıcıları listelemek"
569
 
570
+ #: ../includes/class-ure-lib.php:1814
571
  msgid "Remove users"
572
  msgstr "Kullanıcı silmek"
573
 
574
+ #: ../includes/class-ure-lib.php:1815
575
  msgid "Add users"
576
  msgstr "Kullanıcıları eklemek"
577
 
578
+ #: ../includes/class-ure-lib.php:1816
579
  msgid "Promote users"
580
  msgstr "Kullanıcı yükseltmek"
581
 
582
+ #: ../includes/class-ure-lib.php:1817
583
  msgid "Edit theme options"
584
  msgstr "Tema ayarlarını düzenlemek"
585
 
586
+ #: ../includes/class-ure-lib.php:1818
587
  msgid "Delete themes"
588
  msgstr "Temaları silmek"
589
 
590
+ #: ../includes/class-ure-lib.php:1819
591
  msgid "Export"
592
  msgstr "Dışa aktarmak"
593
 
594
+ #: ../includes/class-ure-lib.php:1929
595
  msgid "Error: Capability name must contain latin characters and digits only!"
596
  msgstr ""
597
  "Hata: Kabiliyet adı yalnızca latin karakterleri ve sayılardan oluşabilir."
598
 
599
+ #: ../includes/class-ure-lib.php:1942
600
  #, php-format
601
  msgid "Capability %s is added successfully"
602
  msgstr "%s kabiliyeti başarıyla eklendi"
603
 
604
+ #: ../includes/class-ure-lib.php:1944
605
  #, php-format
606
  msgid "Capability %s exists already"
607
  msgstr "%s kabiliyeti zaten mevcut"
608
 
609
+ #: ../includes/class-ure-lib.php:1969
610
  #, php-format
611
  msgid "Error! You do not have permission to delete this capability: %s!"
612
  msgstr "Hata! Bu kabiliyeti değiştirmek için yetkiniz yok: %s!"
613
 
614
+ #: ../includes/class-ure-lib.php:1988
615
  #, php-format
616
  msgid "Capability %s is removed successfully"
617
  msgstr "%s kabiliyeti başarıyla oluşturuldu"
618
 
619
+ #: ../includes/class-ure-lib.php:2085
620
  msgid "About this Plugin:"
621
  msgstr "Bu eklenti hakkında:"
622
 
623
+ #: ../includes/class-ure-lib.php:2087
624
  msgid "Author's website"
625
  msgstr "Hazırlayanın websitesi"
626
 
627
+ #: ../includes/class-ure-lib.php:2088
628
  msgid "Plugin webpage"
629
  msgstr "Eklentinin websitesi"
630
 
631
+ #: ../includes/class-ure-lib.php:2090
632
  msgid "FAQ"
633
  msgstr "SSS"
634
 
635
+ #: ../includes/class-ure-lib.php:2131
636
  msgid "None"
637
  msgstr "Hiçbiri"
638
 
639
+ #: ../includes/class-ure-lib.php:2157
640
+ msgid "Delete All Unused Roles"
641
  msgstr ""
642
 
643
+ #: ../includes/class-ure-lib.php:2181
644
+ msgid "&mdash; No role for this site &mdash;"
645
  msgstr ""
646
 
647
  #: ../includes/ure-user-edit.php:34
660
  msgid "Other Roles:"
661
  msgstr "Diğer Roller:"
662
 
663
+ #~ msgid ""
664
+ #~ "Reset Roles to WordPress defaults. Be careful, all changes made by you or "
665
+ #~ "plugins will be lost. Some plugins, e.g. S2Member, WooCommerce "
666
+ #~ "reactivation could be needed. Continue?"
667
+ #~ msgstr ""
668
+ #~ "Rolleri Wordpress öntanımlılarına ayarla. Dikkatli olun, sizin "
669
+ #~ "tarafınızdan veya eklenti tarafından yapılan tüm değişiklikler "
670
+ #~ "kaybolacak. Bazı eklentiler, örneğin S2Member, WooCommerce için yeniden "
671
+ #~ "etkinleştirme gerekebilir. Devam etmek istiyor musunuz?"
 
672
 
 
673
  #, fuzzy
674
+ #~ msgid "Show capabilities in the human readable form"
675
+ #~ msgstr "Yetkileri insan tarafından okunabilir biçimde göster"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
676
 
677
  #~ msgid "User Role Editor requires PHP %s or newer."
678
  #~ msgstr ""
750
  #~ msgid "Change"
751
  #~ msgstr "Değiştir"
752
 
 
 
 
753
  #~ msgid "Remove"
754
  #~ msgstr "Kaldır"
755
 
lang/ure.mo CHANGED
Binary file
lang/ure.pot CHANGED
@@ -2,7 +2,7 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: User Role Editor 2.0\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2013-10-21 12:12+0700\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Vladimir Garagulya <vladimir@shinephp.com>\n"
8
  "Language-Team: ShinePHP.com <vladimir@shinephp.com>\n"
@@ -34,7 +34,7 @@ msgid "Settings"
34
  msgstr ""
35
 
36
  #: ../includes/class-user-role-editor.php:420
37
- #: ../includes/class-ure-lib.php:2050
38
  msgid "Changelog"
39
  msgstr ""
40
 
@@ -44,7 +44,7 @@ msgstr ""
44
 
45
  #: ../includes/class-user-role-editor.php:451
46
  #: ../includes/class-user-role-editor.php:479
47
- #: ../includes/class-user-role-editor.php:674
48
  #: ../includes/class-ure-lib.php:223
49
  msgid "User Role Editor"
50
  msgstr ""
@@ -114,7 +114,7 @@ msgid "Add Capability"
114
  msgstr ""
115
 
116
  #: ../includes/class-user-role-editor.php:636
117
- #: ../includes/class-user-role-editor.php:641
118
  msgid "Delete Capability"
119
  msgstr ""
120
 
@@ -123,42 +123,55 @@ msgid "Reset"
123
  msgstr ""
124
 
125
  #: ../includes/class-user-role-editor.php:638
126
- msgid ""
127
- "Reset Roles to WordPress defaults. Be careful, all changes made by you or "
128
- "plugins will be lost. Some plugins, e.g. S2Member, WooCommerce reactivation "
129
- "could be needed. Continue?"
130
  msgstr ""
131
 
132
  #: ../includes/class-user-role-editor.php:639
133
- msgid "Default Role"
 
 
134
  msgstr ""
135
 
136
  #: ../includes/class-user-role-editor.php:640
137
- msgid "Set New Default Role"
 
 
138
  msgstr ""
139
 
140
  #: ../includes/class-user-role-editor.php:642
 
 
 
 
 
 
 
 
 
 
 
 
141
  msgid ""
142
  "Warning! Be careful - removing critical capability could crash some plugin "
143
  "or other custom code"
144
  msgstr ""
145
 
146
- #: ../includes/class-user-role-editor.php:643
147
  msgid " Capability name (ID) can not be empty!"
148
  msgstr ""
149
 
150
- #: ../includes/class-user-role-editor.php:644
151
  msgid ""
152
  " Capability name (ID) must contain latin characters, digits, hyphens or "
153
  "underscore only!"
154
  msgstr ""
155
 
156
- #: ../includes/class-user-role-editor.php:677
157
- #: ../includes/class-user-role-editor.php:705
158
  msgid "Other Roles"
159
  msgstr ""
160
 
161
- #: ../includes/class-user-role-editor.php:687
162
  msgid "Edit"
163
  msgstr ""
164
 
@@ -287,333 +300,341 @@ msgstr ""
287
  msgid "Role %s is created successfully"
288
  msgstr ""
289
 
290
- #: ../includes/class-ure-lib.php:1662
291
  msgid "Error encountered during role delete operation"
292
  msgstr ""
293
 
294
- #: ../includes/class-ure-lib.php:1664
 
 
 
 
295
  #, php-format
296
  msgid "Role %s is deleted successfully"
297
  msgstr ""
298
 
299
- #: ../includes/class-ure-lib.php:1689
300
  msgid "Error encountered during default role change operation"
301
  msgstr ""
302
 
303
- #: ../includes/class-ure-lib.php:1695
304
  #, php-format
305
  msgid "Default role for new users is set to %s successfully"
306
  msgstr ""
307
 
308
- #: ../includes/class-ure-lib.php:1714
309
  msgid "Editor"
310
  msgstr ""
311
 
312
- #: ../includes/class-ure-lib.php:1715
313
  msgid "Author"
314
  msgstr ""
315
 
316
- #: ../includes/class-ure-lib.php:1716
317
  msgid "Contributor"
318
  msgstr ""
319
 
320
- #: ../includes/class-ure-lib.php:1717
321
  msgid "Subscriber"
322
  msgstr ""
323
 
324
- #: ../includes/class-ure-lib.php:1719
325
  msgid "Switch themes"
326
  msgstr ""
327
 
328
- #: ../includes/class-ure-lib.php:1720
329
  msgid "Edit themes"
330
  msgstr ""
331
 
332
- #: ../includes/class-ure-lib.php:1721
333
  msgid "Activate plugins"
334
  msgstr ""
335
 
336
- #: ../includes/class-ure-lib.php:1722
337
  msgid "Edit plugins"
338
  msgstr ""
339
 
340
- #: ../includes/class-ure-lib.php:1723
341
  msgid "Edit users"
342
  msgstr ""
343
 
344
- #: ../includes/class-ure-lib.php:1724
345
  msgid "Edit files"
346
  msgstr ""
347
 
348
- #: ../includes/class-ure-lib.php:1725
349
  msgid "Manage options"
350
  msgstr ""
351
 
352
- #: ../includes/class-ure-lib.php:1726
353
  msgid "Moderate comments"
354
  msgstr ""
355
 
356
- #: ../includes/class-ure-lib.php:1727
357
  msgid "Manage categories"
358
  msgstr ""
359
 
360
- #: ../includes/class-ure-lib.php:1728
361
  msgid "Manage links"
362
  msgstr ""
363
 
364
- #: ../includes/class-ure-lib.php:1729
365
  msgid "Upload files"
366
  msgstr ""
367
 
368
- #: ../includes/class-ure-lib.php:1730
369
  msgid "Import"
370
  msgstr ""
371
 
372
- #: ../includes/class-ure-lib.php:1731
373
  msgid "Unfiltered html"
374
  msgstr ""
375
 
376
- #: ../includes/class-ure-lib.php:1732
377
  msgid "Edit posts"
378
  msgstr ""
379
 
380
- #: ../includes/class-ure-lib.php:1733
381
  msgid "Edit others posts"
382
  msgstr ""
383
 
384
- #: ../includes/class-ure-lib.php:1734
385
  msgid "Edit published posts"
386
  msgstr ""
387
 
388
- #: ../includes/class-ure-lib.php:1735
389
  msgid "Publish posts"
390
  msgstr ""
391
 
392
- #: ../includes/class-ure-lib.php:1736
393
  msgid "Edit pages"
394
  msgstr ""
395
 
396
- #: ../includes/class-ure-lib.php:1737
397
  msgid "Read"
398
  msgstr ""
399
 
400
- #: ../includes/class-ure-lib.php:1738
401
  msgid "Level 10"
402
  msgstr ""
403
 
404
- #: ../includes/class-ure-lib.php:1739
405
  msgid "Level 9"
406
  msgstr ""
407
 
408
- #: ../includes/class-ure-lib.php:1740
409
  msgid "Level 8"
410
  msgstr ""
411
 
412
- #: ../includes/class-ure-lib.php:1741
413
  msgid "Level 7"
414
  msgstr ""
415
 
416
- #: ../includes/class-ure-lib.php:1742
417
  msgid "Level 6"
418
  msgstr ""
419
 
420
- #: ../includes/class-ure-lib.php:1743
421
  msgid "Level 5"
422
  msgstr ""
423
 
424
- #: ../includes/class-ure-lib.php:1744
425
  msgid "Level 4"
426
  msgstr ""
427
 
428
- #: ../includes/class-ure-lib.php:1745
429
  msgid "Level 3"
430
  msgstr ""
431
 
432
- #: ../includes/class-ure-lib.php:1746
433
  msgid "Level 2"
434
  msgstr ""
435
 
436
- #: ../includes/class-ure-lib.php:1747
437
  msgid "Level 1"
438
  msgstr ""
439
 
440
- #: ../includes/class-ure-lib.php:1748
441
  msgid "Level 0"
442
  msgstr ""
443
 
444
- #: ../includes/class-ure-lib.php:1749
445
  msgid "Edit others pages"
446
  msgstr ""
447
 
448
- #: ../includes/class-ure-lib.php:1750
449
  msgid "Edit published pages"
450
  msgstr ""
451
 
452
- #: ../includes/class-ure-lib.php:1751
453
  msgid "Publish pages"
454
  msgstr ""
455
 
456
- #: ../includes/class-ure-lib.php:1752
457
  msgid "Delete pages"
458
  msgstr ""
459
 
460
- #: ../includes/class-ure-lib.php:1753
461
  msgid "Delete others pages"
462
  msgstr ""
463
 
464
- #: ../includes/class-ure-lib.php:1754
465
  msgid "Delete published pages"
466
  msgstr ""
467
 
468
- #: ../includes/class-ure-lib.php:1755
469
  msgid "Delete posts"
470
  msgstr ""
471
 
472
- #: ../includes/class-ure-lib.php:1756
473
  msgid "Delete others posts"
474
  msgstr ""
475
 
476
- #: ../includes/class-ure-lib.php:1757
477
  msgid "Delete published posts"
478
  msgstr ""
479
 
480
- #: ../includes/class-ure-lib.php:1758
481
  msgid "Delete private posts"
482
  msgstr ""
483
 
484
- #: ../includes/class-ure-lib.php:1759
485
  msgid "Edit private posts"
486
  msgstr ""
487
 
488
- #: ../includes/class-ure-lib.php:1760
489
  msgid "Read private posts"
490
  msgstr ""
491
 
492
- #: ../includes/class-ure-lib.php:1761
493
  msgid "Delete private pages"
494
  msgstr ""
495
 
496
- #: ../includes/class-ure-lib.php:1762
497
  msgid "Edit private pages"
498
  msgstr ""
499
 
500
- #: ../includes/class-ure-lib.php:1763
501
  msgid "Read private pages"
502
  msgstr ""
503
 
504
- #: ../includes/class-ure-lib.php:1764
505
  msgid "Delete users"
506
  msgstr ""
507
 
508
- #: ../includes/class-ure-lib.php:1765
509
  msgid "Create users"
510
  msgstr ""
511
 
512
- #: ../includes/class-ure-lib.php:1766
513
  msgid "Unfiltered upload"
514
  msgstr ""
515
 
516
- #: ../includes/class-ure-lib.php:1767
517
  msgid "Edit dashboard"
518
  msgstr ""
519
 
520
- #: ../includes/class-ure-lib.php:1768
521
  msgid "Update plugins"
522
  msgstr ""
523
 
524
- #: ../includes/class-ure-lib.php:1769
525
  msgid "Delete plugins"
526
  msgstr ""
527
 
528
- #: ../includes/class-ure-lib.php:1770
529
  msgid "Install plugins"
530
  msgstr ""
531
 
532
- #: ../includes/class-ure-lib.php:1771
533
  msgid "Update themes"
534
  msgstr ""
535
 
536
- #: ../includes/class-ure-lib.php:1772
537
  msgid "Install themes"
538
  msgstr ""
539
 
540
- #: ../includes/class-ure-lib.php:1773
541
  msgid "Update core"
542
  msgstr ""
543
 
544
- #: ../includes/class-ure-lib.php:1774
545
  msgid "List users"
546
  msgstr ""
547
 
548
- #: ../includes/class-ure-lib.php:1775
549
  msgid "Remove users"
550
  msgstr ""
551
 
552
- #: ../includes/class-ure-lib.php:1776
553
  msgid "Add users"
554
  msgstr ""
555
 
556
- #: ../includes/class-ure-lib.php:1777
557
  msgid "Promote users"
558
  msgstr ""
559
 
560
- #: ../includes/class-ure-lib.php:1778
561
  msgid "Edit theme options"
562
  msgstr ""
563
 
564
- #: ../includes/class-ure-lib.php:1779
565
  msgid "Delete themes"
566
  msgstr ""
567
 
568
- #: ../includes/class-ure-lib.php:1780
569
  msgid "Export"
570
  msgstr ""
571
 
572
- #: ../includes/class-ure-lib.php:1890
573
  msgid "Error: Capability name must contain latin characters and digits only!"
574
  msgstr ""
575
 
576
- #: ../includes/class-ure-lib.php:1903
577
  #, php-format
578
  msgid "Capability %s is added successfully"
579
  msgstr ""
580
 
581
- #: ../includes/class-ure-lib.php:1905
582
  #, php-format
583
  msgid "Capability %s exists already"
584
  msgstr ""
585
 
586
- #: ../includes/class-ure-lib.php:1930
587
  #, php-format
588
  msgid "Error! You do not have permission to delete this capability: %s!"
589
  msgstr ""
590
 
591
- #: ../includes/class-ure-lib.php:1949
592
  #, php-format
593
  msgid "Capability %s is removed successfully"
594
  msgstr ""
595
 
596
- #: ../includes/class-ure-lib.php:2046
597
  msgid "About this Plugin:"
598
  msgstr ""
599
 
600
- #: ../includes/class-ure-lib.php:2048
601
  msgid "Author's website"
602
  msgstr ""
603
 
604
- #: ../includes/class-ure-lib.php:2049
605
  msgid "Plugin webpage"
606
  msgstr ""
607
 
608
- #: ../includes/class-ure-lib.php:2051
609
  msgid "FAQ"
610
  msgstr ""
611
 
612
- #: ../includes/class-ure-lib.php:2092
613
  msgid "None"
614
  msgstr ""
615
 
616
- #: ../includes/class-ure-lib.php:2141
 
 
 
 
617
  msgid "&mdash; No role for this site &mdash;"
618
  msgstr ""
619
 
2
  msgstr ""
3
  "Project-Id-Version: User Role Editor 2.0\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2013-11-04 08:39+0700\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Vladimir Garagulya <vladimir@shinephp.com>\n"
8
  "Language-Team: ShinePHP.com <vladimir@shinephp.com>\n"
34
  msgstr ""
35
 
36
  #: ../includes/class-user-role-editor.php:420
37
+ #: ../includes/class-ure-lib.php:2089
38
  msgid "Changelog"
39
  msgstr ""
40
 
44
 
45
  #: ../includes/class-user-role-editor.php:451
46
  #: ../includes/class-user-role-editor.php:479
47
+ #: ../includes/class-user-role-editor.php:678
48
  #: ../includes/class-ure-lib.php:223
49
  msgid "User Role Editor"
50
  msgstr ""
114
  msgstr ""
115
 
116
  #: ../includes/class-user-role-editor.php:636
117
+ #: ../includes/class-user-role-editor.php:645
118
  msgid "Delete Capability"
119
  msgstr ""
120
 
123
  msgstr ""
124
 
125
  #: ../includes/class-user-role-editor.php:638
126
+ msgid "DANGER! Resetting will restore default settings from WordPress Core."
 
 
 
127
  msgstr ""
128
 
129
  #: ../includes/class-user-role-editor.php:639
130
+ msgid ""
131
+ "If any plugins have changed capabilities in any way upon installation (such "
132
+ "as S2Member, WooCommerce, and many more), those capabilities will be DELETED!"
133
  msgstr ""
134
 
135
  #: ../includes/class-user-role-editor.php:640
136
+ msgid ""
137
+ "For more information on how to undo changes and restore plugin capabilities "
138
+ "go to"
139
  msgstr ""
140
 
141
  #: ../includes/class-user-role-editor.php:642
142
+ msgid "Continue?"
143
+ msgstr ""
144
+
145
+ #: ../includes/class-user-role-editor.php:643
146
+ msgid "Default Role"
147
+ msgstr ""
148
+
149
+ #: ../includes/class-user-role-editor.php:644
150
+ msgid "Set New Default Role"
151
+ msgstr ""
152
+
153
+ #: ../includes/class-user-role-editor.php:646
154
  msgid ""
155
  "Warning! Be careful - removing critical capability could crash some plugin "
156
  "or other custom code"
157
  msgstr ""
158
 
159
+ #: ../includes/class-user-role-editor.php:647
160
  msgid " Capability name (ID) can not be empty!"
161
  msgstr ""
162
 
163
+ #: ../includes/class-user-role-editor.php:648
164
  msgid ""
165
  " Capability name (ID) must contain latin characters, digits, hyphens or "
166
  "underscore only!"
167
  msgstr ""
168
 
169
+ #: ../includes/class-user-role-editor.php:681
170
+ #: ../includes/class-user-role-editor.php:709
171
  msgid "Other Roles"
172
  msgstr ""
173
 
174
+ #: ../includes/class-user-role-editor.php:691
175
  msgid "Edit"
176
  msgstr ""
177
 
300
  msgid "Role %s is created successfully"
301
  msgstr ""
302
 
303
+ #: ../includes/class-ure-lib.php:1699
304
  msgid "Error encountered during role delete operation"
305
  msgstr ""
306
 
307
+ #: ../includes/class-ure-lib.php:1701
308
+ msgid "Unused roles are deleted successfully"
309
+ msgstr ""
310
+
311
+ #: ../includes/class-ure-lib.php:1703
312
  #, php-format
313
  msgid "Role %s is deleted successfully"
314
  msgstr ""
315
 
316
+ #: ../includes/class-ure-lib.php:1728
317
  msgid "Error encountered during default role change operation"
318
  msgstr ""
319
 
320
+ #: ../includes/class-ure-lib.php:1734
321
  #, php-format
322
  msgid "Default role for new users is set to %s successfully"
323
  msgstr ""
324
 
325
+ #: ../includes/class-ure-lib.php:1753
326
  msgid "Editor"
327
  msgstr ""
328
 
329
+ #: ../includes/class-ure-lib.php:1754
330
  msgid "Author"
331
  msgstr ""
332
 
333
+ #: ../includes/class-ure-lib.php:1755
334
  msgid "Contributor"
335
  msgstr ""
336
 
337
+ #: ../includes/class-ure-lib.php:1756
338
  msgid "Subscriber"
339
  msgstr ""
340
 
341
+ #: ../includes/class-ure-lib.php:1758
342
  msgid "Switch themes"
343
  msgstr ""
344
 
345
+ #: ../includes/class-ure-lib.php:1759
346
  msgid "Edit themes"
347
  msgstr ""
348
 
349
+ #: ../includes/class-ure-lib.php:1760
350
  msgid "Activate plugins"
351
  msgstr ""
352
 
353
+ #: ../includes/class-ure-lib.php:1761
354
  msgid "Edit plugins"
355
  msgstr ""
356
 
357
+ #: ../includes/class-ure-lib.php:1762
358
  msgid "Edit users"
359
  msgstr ""
360
 
361
+ #: ../includes/class-ure-lib.php:1763
362
  msgid "Edit files"
363
  msgstr ""
364
 
365
+ #: ../includes/class-ure-lib.php:1764
366
  msgid "Manage options"
367
  msgstr ""
368
 
369
+ #: ../includes/class-ure-lib.php:1765
370
  msgid "Moderate comments"
371
  msgstr ""
372
 
373
+ #: ../includes/class-ure-lib.php:1766
374
  msgid "Manage categories"
375
  msgstr ""
376
 
377
+ #: ../includes/class-ure-lib.php:1767
378
  msgid "Manage links"
379
  msgstr ""
380
 
381
+ #: ../includes/class-ure-lib.php:1768
382
  msgid "Upload files"
383
  msgstr ""
384
 
385
+ #: ../includes/class-ure-lib.php:1769
386
  msgid "Import"
387
  msgstr ""
388
 
389
+ #: ../includes/class-ure-lib.php:1770
390
  msgid "Unfiltered html"
391
  msgstr ""
392
 
393
+ #: ../includes/class-ure-lib.php:1771
394
  msgid "Edit posts"
395
  msgstr ""
396
 
397
+ #: ../includes/class-ure-lib.php:1772
398
  msgid "Edit others posts"
399
  msgstr ""
400
 
401
+ #: ../includes/class-ure-lib.php:1773
402
  msgid "Edit published posts"
403
  msgstr ""
404
 
405
+ #: ../includes/class-ure-lib.php:1774
406
  msgid "Publish posts"
407
  msgstr ""
408
 
409
+ #: ../includes/class-ure-lib.php:1775
410
  msgid "Edit pages"
411
  msgstr ""
412
 
413
+ #: ../includes/class-ure-lib.php:1776
414
  msgid "Read"
415
  msgstr ""
416
 
417
+ #: ../includes/class-ure-lib.php:1777
418
  msgid "Level 10"
419
  msgstr ""
420
 
421
+ #: ../includes/class-ure-lib.php:1778
422
  msgid "Level 9"
423
  msgstr ""
424
 
425
+ #: ../includes/class-ure-lib.php:1779
426
  msgid "Level 8"
427
  msgstr ""
428
 
429
+ #: ../includes/class-ure-lib.php:1780
430
  msgid "Level 7"
431
  msgstr ""
432
 
433
+ #: ../includes/class-ure-lib.php:1781
434
  msgid "Level 6"
435
  msgstr ""
436
 
437
+ #: ../includes/class-ure-lib.php:1782
438
  msgid "Level 5"
439
  msgstr ""
440
 
441
+ #: ../includes/class-ure-lib.php:1783
442
  msgid "Level 4"
443
  msgstr ""
444
 
445
+ #: ../includes/class-ure-lib.php:1784
446
  msgid "Level 3"
447
  msgstr ""
448
 
449
+ #: ../includes/class-ure-lib.php:1785
450
  msgid "Level 2"
451
  msgstr ""
452
 
453
+ #: ../includes/class-ure-lib.php:1786
454
  msgid "Level 1"
455
  msgstr ""
456
 
457
+ #: ../includes/class-ure-lib.php:1787
458
  msgid "Level 0"
459
  msgstr ""
460
 
461
+ #: ../includes/class-ure-lib.php:1788
462
  msgid "Edit others pages"
463
  msgstr ""
464
 
465
+ #: ../includes/class-ure-lib.php:1789
466
  msgid "Edit published pages"
467
  msgstr ""
468
 
469
+ #: ../includes/class-ure-lib.php:1790
470
  msgid "Publish pages"
471
  msgstr ""
472
 
473
+ #: ../includes/class-ure-lib.php:1791
474
  msgid "Delete pages"
475
  msgstr ""
476
 
477
+ #: ../includes/class-ure-lib.php:1792
478
  msgid "Delete others pages"
479
  msgstr ""
480
 
481
+ #: ../includes/class-ure-lib.php:1793
482
  msgid "Delete published pages"
483
  msgstr ""
484
 
485
+ #: ../includes/class-ure-lib.php:1794
486
  msgid "Delete posts"
487
  msgstr ""
488
 
489
+ #: ../includes/class-ure-lib.php:1795
490
  msgid "Delete others posts"
491
  msgstr ""
492
 
493
+ #: ../includes/class-ure-lib.php:1796
494
  msgid "Delete published posts"
495
  msgstr ""
496
 
497
+ #: ../includes/class-ure-lib.php:1797
498
  msgid "Delete private posts"
499
  msgstr ""
500
 
501
+ #: ../includes/class-ure-lib.php:1798
502
  msgid "Edit private posts"
503
  msgstr ""
504
 
505
+ #: ../includes/class-ure-lib.php:1799
506
  msgid "Read private posts"
507
  msgstr ""
508
 
509
+ #: ../includes/class-ure-lib.php:1800
510
  msgid "Delete private pages"
511
  msgstr ""
512
 
513
+ #: ../includes/class-ure-lib.php:1801
514
  msgid "Edit private pages"
515
  msgstr ""
516
 
517
+ #: ../includes/class-ure-lib.php:1802
518
  msgid "Read private pages"
519
  msgstr ""
520
 
521
+ #: ../includes/class-ure-lib.php:1803
522
  msgid "Delete users"
523
  msgstr ""
524
 
525
+ #: ../includes/class-ure-lib.php:1804
526
  msgid "Create users"
527
  msgstr ""
528
 
529
+ #: ../includes/class-ure-lib.php:1805
530
  msgid "Unfiltered upload"
531
  msgstr ""
532
 
533
+ #: ../includes/class-ure-lib.php:1806
534
  msgid "Edit dashboard"
535
  msgstr ""
536
 
537
+ #: ../includes/class-ure-lib.php:1807
538
  msgid "Update plugins"
539
  msgstr ""
540
 
541
+ #: ../includes/class-ure-lib.php:1808
542
  msgid "Delete plugins"
543
  msgstr ""
544
 
545
+ #: ../includes/class-ure-lib.php:1809
546
  msgid "Install plugins"
547
  msgstr ""
548
 
549
+ #: ../includes/class-ure-lib.php:1810
550
  msgid "Update themes"
551
  msgstr ""
552
 
553
+ #: ../includes/class-ure-lib.php:1811
554
  msgid "Install themes"
555
  msgstr ""
556
 
557
+ #: ../includes/class-ure-lib.php:1812
558
  msgid "Update core"
559
  msgstr ""
560
 
561
+ #: ../includes/class-ure-lib.php:1813
562
  msgid "List users"
563
  msgstr ""
564
 
565
+ #: ../includes/class-ure-lib.php:1814
566
  msgid "Remove users"
567
  msgstr ""
568
 
569
+ #: ../includes/class-ure-lib.php:1815
570
  msgid "Add users"
571
  msgstr ""
572
 
573
+ #: ../includes/class-ure-lib.php:1816
574
  msgid "Promote users"
575
  msgstr ""
576
 
577
+ #: ../includes/class-ure-lib.php:1817
578
  msgid "Edit theme options"
579
  msgstr ""
580
 
581
+ #: ../includes/class-ure-lib.php:1818
582
  msgid "Delete themes"
583
  msgstr ""
584
 
585
+ #: ../includes/class-ure-lib.php:1819
586
  msgid "Export"
587
  msgstr ""
588
 
589
+ #: ../includes/class-ure-lib.php:1929
590
  msgid "Error: Capability name must contain latin characters and digits only!"
591
  msgstr ""
592
 
593
+ #: ../includes/class-ure-lib.php:1942
594
  #, php-format
595
  msgid "Capability %s is added successfully"
596
  msgstr ""
597
 
598
+ #: ../includes/class-ure-lib.php:1944
599
  #, php-format
600
  msgid "Capability %s exists already"
601
  msgstr ""
602
 
603
+ #: ../includes/class-ure-lib.php:1969
604
  #, php-format
605
  msgid "Error! You do not have permission to delete this capability: %s!"
606
  msgstr ""
607
 
608
+ #: ../includes/class-ure-lib.php:1988
609
  #, php-format
610
  msgid "Capability %s is removed successfully"
611
  msgstr ""
612
 
613
+ #: ../includes/class-ure-lib.php:2085
614
  msgid "About this Plugin:"
615
  msgstr ""
616
 
617
+ #: ../includes/class-ure-lib.php:2087
618
  msgid "Author's website"
619
  msgstr ""
620
 
621
+ #: ../includes/class-ure-lib.php:2088
622
  msgid "Plugin webpage"
623
  msgstr ""
624
 
625
+ #: ../includes/class-ure-lib.php:2090
626
  msgid "FAQ"
627
  msgstr ""
628
 
629
+ #: ../includes/class-ure-lib.php:2131
630
  msgid "None"
631
  msgstr ""
632
 
633
+ #: ../includes/class-ure-lib.php:2157
634
+ msgid "Delete All Unused Roles"
635
+ msgstr ""
636
+
637
+ #: ../includes/class-ure-lib.php:2181
638
  msgid "&mdash; No role for this site &mdash;"
639
  msgstr ""
640
 
readme.txt CHANGED
@@ -3,7 +3,7 @@ Contributors: shinephp
3
  Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=vladimir%40shinephp%2ecom&lc=RU&item_name=ShinePHP%2ecom&item_number=User%20Role%20Editor%20WordPress%20plugin&currency_code=USD&bn=PP%2dDonationsBF%3abtn_donateCC_LG%2egif%3aNonHosted
4
  Tags: user, role, editor, security, access, permission, capability
5
  Requires at least: 3.5
6
- Tested up to: 3.7
7
  Stable tag: trunk
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
@@ -26,15 +26,16 @@ To read more about 'User Role Editor' visit [this page](http://www.shinephp.com/
26
 
27
  Do you need more functionality with quality support in real time? Do you wish remove advertisements from User Role Editor pages?
28
  Buy [Pro version](htpp://role-editor.com).
29
- Pro version is advertisement free. Pro version includes extra modules:
30
  <ul>
31
  <li>"Export/Import" module. You can export user roles to the local file and import them then to any WordPress site or other sites of the multi-site WordPress network.</li>
32
- <li>Roles management via Network Admin for multisite configuration.</li>
33
- <li>Users permissions management via Network Admin for multisite configuration.</li>
34
  <li>Per plugin users access management for plugins activate/deactivate operations.</li>
35
  <li>Per form users access management for Gravity Forms plugin.</li>
 
36
  </ul>
37
- Premium support is included. It is provided by User Role Editor plugin author Vladimir Garagulya. You will get an answer on your question not once a week or never, but in 24 hours.
38
 
39
  == Installation ==
40
 
@@ -67,6 +68,7 @@ To read more about 'User Role Editor' visit [this page](http://www.shinephp.com/
67
  * Turkish: [Muhammed YILDIRIM](http://ben.muhammed.im);
68
  * Hebrew: [atar4u](http://atar4u.com)
69
 
 
70
 
71
  Dear plugin User!
72
  If you wish to help me with this plugin translation I very appreciate it. Please send your language .po and .mo files to vladimir[at-sign]shinephp.com email. Do not forget include you site link in order I can show it with greetings for the translation help at shinephp.com, plugin settings page and in this readme.txt file.
@@ -76,6 +78,17 @@ Share with me new ideas about plugin further development and link to your site w
76
 
77
  == Changelog ==
78
 
 
 
 
 
 
 
 
 
 
 
 
79
  = 4.6 =
80
  * 21.10.2013
81
  * Multi-site: 'unfiltered_html' capability marked as deprecated one. Read this post for more information (http://shinephp.com/is-unfiltered_html-capability-deprecated/).
@@ -89,155 +102,7 @@ Share with me new ideas about plugin further development and link to your site w
89
  * Pro version only: Bug fix: Nonexistent method was called to notify user about folder write permission error during roles import.
90
 
91
 
92
- = 4.5.2 =
93
- * 23.09.2013
94
- * User capabilities editor updated to support capabilities beyond the user roles - capabilities added by other plugins directly to the users, or deleted from the user roles.
95
- * Bug fixed - custom capabilities was not shown in User capabilities editor in some cases.
96
- * Spanish translation was added. Thanks to [Dario Ferrer](http://darioferrer.com/).
97
-
98
- = 4.5.1 =
99
- * 29.08.2013
100
- * Bug with multi-site super-admin access to the User Role Editor is fixed. Version 4.5. showed message "Insufficient permissions to work with User Role Editor" until add "manage_network_users" capability to the "Administrator" role. It is enough now to be the "Superadmin" at multi-site network.
101
-
102
- = 4.5 =
103
- * 29.08.2013
104
- * Direct checking of the "administrator" role is removed from the code to support ability to change User Role Editor access key capability.
105
- URE uses by default the "administrator" role for single site as the key capability to permit access to the User Role Editor.
106
- You may change this capability manually by replacing value of URE_KEY_CAPABILITY constant at includes/define_constants.php file. Pro version
107
- starting from 4.5 allows to change this key capability name (input your own, custom one) via User Role Editor settings page.
108
- * The Hebrew translation is added. Thanks to [atar4u](http://atar4u.com).
109
- * [Pro version](http://role-editor.com) only: Ability to restrict access of different administrators to plugins activation/deactivation on the per plugin base is realized.
110
- Go to the user profile (user should have 'activate_plugins' capability) and select plugins to which you allow access for this user.
111
- * Pro version: Gravity forms access restriction was re-factored and does not use JavaScript - it works on the SQL queries level now.
112
- In order apply form access restriction to the user it is enough that the user has any capability from the Gravity Forms capabilities list.
113
-
114
- = 4.4 =
115
- * 15.08.2013
116
- * [Pro version](http://role-editor.com) only: Users of "Gravity Forms" plugin may restrict users access to the Forms on per form basis.
117
- Activate this option at URE Settings page and input at user's profile the list of Gravity Forms IDs, to which you allow access for this user.
118
- User should have at least 'gravityforms_edit_forms' capability in order you see GF access control option at his profile.
119
- * Pro version: User Role Editor license key is not shown now on the Setting page. User sees just word "Installed" after he saved it.
120
- * Bug fixed which prevented creation of current roles backup record during User Role Editor plugin installation and produced unexpected output (PHP notices).
121
-
122
- = 4.3 =
123
- * 12.08.2013
124
- * Pro version only: "User Role Editor" is available under the "Users" submenu of "Network Admin" for multisite installation.
125
- It provides the central point for users roles management of the whole network. Your changes are applied to the main site by default.
126
- The click on "Network Update" button replicates roles from the main site to the whole network at once.
127
- * Multisite update: roles from the main (1st) blog are copied to the new added blog automatically,
128
- even new site is added from front-end after new user registration, e.g. Gravity Forms "Register User" addon does. Earlier this feature worked
129
- for administrator back-end operations only.
130
- * Bug prevented to apply role changes to all sites of the network is fixed. In case when one of the sites have exactly the same roles as applied from the main site, MySQL returned 0 rows affected. URE recognized that as error and stopped further network updated. It is fixed now.
131
- * Bug prevented to save empty (without capabilities) role is fixed.
132
- * User interface bug with options 'Show capabilities in human readable form' and 'Show deprecated capabilities' fixed.
133
- Now this checkboxes work this way: It takes global values from the User Role Editor Settings 1st. If you change it at Roles/User editor form plugin,
134
- it remembers your change temporally for 10 minutes. After that this value will be returned to the URE global settings.
135
- If you wish to make permanent change make it at URE settings page.
136
-
137
- = 4.2 =
138
- * 02.08.2013
139
- * Separate setting page is added for User Role Editor under Settings menu. It is available under Network Center "Settings" for the multi-site.
140
- * Option 'show Administrator role in the User Role Editor' was added.
141
- * User with super-admin privilege only may create, edit, delete users by default under multi-site configuration.
142
- Use new "Allow create, edit and delete user to not super-administrators" option to workaround this obstacle.
143
- Such user still should have correspondent user capabilities as "create_users", "edit_users", "delete_users".
144
- Thanks to [Sjobidoo](http://wordpress.org/support/profile/sjobidoo) for suggested
145
- [decision](http://wordpress.org/support/topic/plugin-user-role-editor-not-able-to-add-ability-to-edit-users).
146
- * PHP fatal error caused by typo in the 'uninstall.php' file is fixed.
147
- * Miscellaneous code enhancements.
148
-
149
- = 4.1.1 =
150
- * 15.07.2013
151
- * Issue when "users with "Editor" credentials were no longer able to change the author name in the drop down on each post to someone with administrative credentials" is fixed.
152
- * Limitation when user with 'Administrator' role could not edit/delete other users with 'Administrator' role is removed.
153
- * "Apply to All sites" checkbox is excluded from "Select All" operation.
154
- * Quick filter is added to the user's capabilities edit form. Capabilities selection buttons work is fixed after that.
155
-
156
- = 4.1 =
157
- * 03.07.2013
158
- * Quick Filter is added. Type part of any capability. All capabilities containing that word, e.g. 'edit' or 'users' will be highlighted by green color.
159
- While 'quick filter' is in action 'Select All', 'Unselect All', 'Inverse' buttons work with highlighted capabilities sub-set only.
160
- Read [this post](http://role-editor.com/user-role-editor-version-4-1-is-available/) for more information:
161
- * Class property and method access modifiers fatal errors were fixed (http://wordpress.org/support/topic/fatalerror-1).
162
-
163
- = 4.0 =
164
- * 30.06.2013
165
- * Pro version only: added 'Export/Import' functionality to 'export' all user roles to the local file and 'import' them then to other WordPress blog or other sites of muliti-site WordPress network, or just restore roles to previous state after playing with them with test purpose.
166
- * Added integration with the Gravity Forms plugin. User Role Editor shows Gravity Forms user capabilities at the custom capabilities section.
167
- * Code is fully restructured and encapsulated to PHP classes. Internal global variables are not in use anymore.
168
-
169
- = 3.14.1 =
170
- * 24.05.2013
171
- * Bug, which prevented the correct use of WordPress nonces on some installations (Windows), is fixed;
172
- * DIRECTORY_SEPARATOR constant used in path to User Role Editor CSS file was empty on some installations (Windows). Constant DIRECTORY_SEPARATOR is excluded from the plugin code;
173
- * User capabilities page: roles checkboxes are excluded from 'Select All', 'Unselect All', 'Inverse' operations. Only capabilities checkboxes are processed.
174
- * Turkish [Muhammed YILDIRIM](http://ben.muhammed.im) translation is updated.
175
-
176
- = 3.14 =
177
- * 17.05.2013
178
- * Interface update: role/capability add/remove stuff was removed from the page. Plugin has toolbar at the right side now. Click on the button opens needed dialog window.
179
- * New role may have different attrubutes "ID" and "Name". While ID is still restricted by latin characters hyphen, underscore and digits only, Name could contain spaces and national languages characters.
180
- * General code cleanup and security enhancements: all data changes request are processed via POST instead of GET now. So its more difficult to send modified malicious request without special software. Presence of special nonce field is checked for all requests.
181
- * Setting up the 'administrator' role as default one for new registered users is prohibited at server side.
182
- * JavaScript code separated from PHP one whenever it's possible.
183
-
184
- * 14.05.2013
185
- * Update for administrators of multi-site WordPress installations. Single-site WordPress installation administrator could skip this update.
186
- * "Apply to All Sites" feature did not work at version 3.12. It is fixed.
187
- * "Apply to All Sites" feature is available now from main site of the network only
188
-
189
- = 3.12 =
190
- * 01.05.2013
191
- * Critical update: persistent cross-site scripting vulnerability is fixed.
192
- * WordPress built-in constants, like WP_PLUGIN_URL are not used in order to provide compatibility with sites which use SSL. plugin_dir_url(), plugin_dir_path() functions are used to define paths to the plugin's files instead.
193
- * "Greetings" section is removed from the plugin's main page. All that content is still available at [plugin page](http://shinephp.com/user-role-editor-wordpress-plugin)
194
-
195
-
196
- = 3.11 =
197
- * 24.03.2013
198
- * Required WordPress version checking is moved to plugin activation hook.
199
- * Administrator can now exclude non-core (custom) capabilities from his role. It is useful if you need to fully remove some capability as capability deletion is prohibited while it is used at least one role.
200
- * bbPress compatibility issue is fixed: capabilities created by bbPress dinamically are excluded from the capabilities set in User Role Editor to not store them in the database as persistent WP roles data.
201
- * Additional roles are assigned to user without overriding her primary WordPress role and bbPress role.
202
- * Changing Wordpress user primary role at user profile doesn't clear additonal roles assigned with User Role Editor earlier.
203
- * Brasilian Portuguese translation is updated.
204
-
205
- = 3.10 =
206
- * 04.02.2013
207
- * You can assign to user multiple roles simultaneously. Use user level roles and capabilities editor for that. You can click 'Capabilities' link under selected user row at users list or 'Assign Roles and Additional Capabilities' link at user profile.
208
- * Critical bug fix: hidden deprecated WordPress core capabilities had turned on after any update made to the role. Deprecated capabilities are not currently in use by WordPress itself. But old plugins or themes could still use them. If you use some outdated code I recommend you to check all roles, you modified with User Role Editor, and turn off unneeded deprecated capabilities there.
209
- * User with Administrator role is secured better from editing, deletion by user with lower capabilities.
210
-
211
- = 3.9 =
212
- * 07.01.2013
213
- * Compatibility with bbPress 2.2 new user roles model is provided. More details about the reason of such update at http://shinephp.com/bbpress-user-role-editor-conflict-fix/
214
- * "Reset" button works differently now. It restores WordPress roles data to its 1st, default state, exactly that, what WordPress has just after fresh install/latest version update. Be careful with it, make database backup copy before fulfill this operation. Some plugin could require reactivation to function properly after roles reset.
215
- * Arabic translation is added. Thanks to [Yaser](http://www.englize.com/)
216
- * Slovak translation is added. Thanks to Branco.
217
-
218
- = 3.8.3 =
219
- * 14.12.2012
220
- * Compatibility issue with WordPress 3.5 was found (thanks to Sonja) and fixed: $wpdb->prepare() was called without 2nd $args parameter - removed.
221
-
222
- = 3.8.2 =
223
- * 02.12.2012
224
- * load_plugin_textdomain() call moved to the 'plugins_loaded' hook for higher compatibility with translation plugins.
225
- * Traditional Chinese translation is added. Thanks to Jingxin Lai.
226
-
227
- = 3.8.1 =
228
- * 21.10.2012
229
- * Fix: URE taked roles names from the database directly and ignored changes made to roles names on the fly by other plugins or themes, names, which were cached by WordPress internally, but were not written to the database. URE uses WordPress internal cache now.
230
- * Roles names translation update: if URE translation file doesn't exist for blog default language, URE uses WordPress internal translation now.
231
- * Serbian translation is added. Thanks to [Diana](http://wpcouponshop.com).
232
-
233
- = 3.8 =
234
- * 01.09.2012
235
- * Bug fix: Some times URE didn't show real changes it made to the database. The reason was that direct update of database did not invalidate data stored at WordPress cache. Special thanks to [Knut Sparhell](http://sparhell.no/knut/) for the help to detect this critical issue.
236
- * WordPress core capabilities are shown separately from capabilities added by plugins and manually.
237
- * If you configured URE to show you 'Administrator' role, you will see its capabilities, but you can not exclude any capability from it. I may just add capabilities to the Administrator role now. The reason - Administrator role should have all existing capabilities included.
238
- * Brasilian Portuguese translation is updated. Thanks to [Onbiz](http://www.onbiz.com.br/).
239
-
240
- Click [here](http://www.shinephp.com/user-role-editor-wordpress-plugin-changelog)</a> to look at [the rest part](http://www.shinephp.com/user-role-editor-wordpress-plugin-changelog) of User Role Editor changelog.
241
 
242
 
243
  == Additional Documentation ==
3
  Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=vladimir%40shinephp%2ecom&lc=RU&item_name=ShinePHP%2ecom&item_number=User%20Role%20Editor%20WordPress%20plugin&currency_code=USD&bn=PP%2dDonationsBF%3abtn_donateCC_LG%2egif%3aNonHosted
4
  Tags: user, role, editor, security, access, permission, capability
5
  Requires at least: 3.5
6
+ Tested up to: 3.7.1
7
  Stable tag: trunk
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
26
 
27
  Do you need more functionality with quality support in real time? Do you wish remove advertisements from User Role Editor pages?
28
  Buy [Pro version](htpp://role-editor.com).
29
+ Pro version includes extra modules:
30
  <ul>
31
  <li>"Export/Import" module. You can export user roles to the local file and import them then to any WordPress site or other sites of the multi-site WordPress network.</li>
32
+ <li>Roles and Users permissions management via Network Admin for multisite configuration. One click Synchronization to the whole network.</li>
33
+ <li>Per posts/pages users access management to post/page editing functionality.</li>
34
  <li>Per plugin users access management for plugins activate/deactivate operations.</li>
35
  <li>Per form users access management for Gravity Forms plugin.</li>
36
+ <li>Shortcode to show enclosed content to the users with selected roles only.</li>
37
  </ul>
38
+ Pro version is advertisement free. Premium support is included. It is provided by User Role Editor plugin author Vladimir Garagulya. You will get an answer on your question not once a week or never, but in 24 hours.
39
 
40
  == Installation ==
41
 
68
  * Turkish: [Muhammed YILDIRIM](http://ben.muhammed.im);
69
  * Hebrew: [atar4u](http://atar4u.com)
70
 
71
+ Information for translators: All translations are outdated a little and need update.
72
 
73
  Dear plugin User!
74
  If you wish to help me with this plugin translation I very appreciate it. Please send your language .po and .mo files to vladimir[at-sign]shinephp.com email. Do not forget include you site link in order I can show it with greetings for the translation help at shinephp.com, plugin settings page and in this readme.txt file.
78
 
79
  == Changelog ==
80
 
81
+ = 4.7 =
82
+ * 04.11.2013
83
+ * "Delete Role" menu has "Delete All Unused Roles" menu item now.
84
+ * More detailed warning was added before fulfill "Reset" roles command in order to reduce accident use of this critical operation.
85
+ * Bug was fixed at Ure_Lib::reset_user_roles() method. Method did not work correctly for the rest sites of the network except the main blog.
86
+ * Pro version: Post/Pages editing restriction could be setup for the user by one of two modes: 'Allow' or 'Prohibit'.
87
+ * Pro version: Shortcode [user_role_editor roles="role1, role2, ..."]bla-bla[/user_role_editor] for posts and pages was added.
88
+ You may restrict access to content inside this shortcode tags this way to the users only who have one of the roles noted at the "roles" attribute.
89
+ * Pro version: If license key was installed it is shown as asterisks at the input field.
90
+ * Pro version: In case site domain change you should input license key at the Settings page again.
91
+
92
  = 4.6 =
93
  * 21.10.2013
94
  * Multi-site: 'unfiltered_html' capability marked as deprecated one. Read this post for more information (http://shinephp.com/is-unfiltered_html-capability-deprecated/).
102
  * Pro version only: Bug fix: Nonexistent method was called to notify user about folder write permission error during roles import.
103
 
104
 
105
+ Click [here](http://role-editor.com/changelog)</a> to look at [the full list of changes](http://role-editor.com/changelog) of User Role Editor plugin.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
106
 
107
 
108
  == Additional Documentation ==
user-role-editor.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: User Role Editor
4
  Plugin URI: http://role-editor.com
5
  Description: Change/add/delete WordPress user roles and capabilities.
6
- Version: 4.6
7
  Author: Vladimir Garagulya
8
  Author URI: http://www.shinephp.com
9
  Text Domain: ure
3
  Plugin Name: User Role Editor
4
  Plugin URI: http://role-editor.com
5
  Description: Change/add/delete WordPress user roles and capabilities.
6
+ Version: 4.7
7
  Author: Vladimir Garagulya
8
  Author URI: http://www.shinephp.com
9
  Text Domain: ure