User Role Editor - Version 3.8

Version Description

  • 01.09.2012
  • 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 for the help to detect this critical issue.
  • WordPress core capabilities are shown separately from capabilities added by plugins and manually.
  • 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.
  • Brasilian Portuguese translation is updated. Thanks to Onbiz.
Download this release

Release Info

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

Code changes from version 3.7.5 to 3.8

Files changed (57) hide show
  1. css/index.php +2 -3
  2. images/admin-menu-editor-pro.jpg +0 -0
  3. images/index.php +2 -3
  4. images/mwp250_2.png +0 -0
  5. includes/index.php +3 -0
  6. ure-lib.php → includes/ure-lib.php +20 -33
  7. ure-options.php → includes/ure-options.php +38 -24
  8. ure-role-edit.php → includes/ure-role-edit.php +83 -9
  9. ure-user-edit.php → includes/ure-user-edit.php +79 -20
  10. index.php +2 -3
  11. lang/index.php +2 -3
  12. lang/ure-be_BY.mo +0 -0
  13. lang/ure-be_BY.po +211 -204
  14. lang/ure-de_DE.mo +0 -0
  15. lang/ure-de_DE.po +212 -193
  16. lang/ure-es_ES.mo +0 -0
  17. lang/ure-es_ES.po +211 -189
  18. lang/ure-fa_IR.mo +0 -0
  19. lang/ure-fa_IR.po +209 -190
  20. lang/ure-fi.mo +0 -0
  21. lang/ure-fi.po +208 -189
  22. lang/ure-fr_FR.mo +0 -0
  23. lang/ure-fr_FR.po +207 -190
  24. lang/ure-he.mo +0 -0
  25. lang/ure-he.po +208 -189
  26. lang/ure-he_IL.mo +0 -0
  27. lang/ure-he_IL.po +208 -189
  28. lang/ure-hi_IN.mo +0 -0
  29. lang/ure-hi_IN.po +208 -189
  30. lang/ure-hu_HU.mo +0 -0
  31. lang/ure-hu_HU.po +207 -190
  32. lang/ure-id_ID.mo +0 -0
  33. lang/ure-id_ID.po +205 -189
  34. lang/ure-it_IT.mo +0 -0
  35. lang/ure-it_IT.po +209 -190
  36. lang/ure-ja.mo +0 -0
  37. lang/ure-ja.po +209 -190
  38. lang/ure-lt_LT.mo +0 -0
  39. lang/ure-lt_LT.po +209 -190
  40. lang/ure-nl_BE.mo +0 -0
  41. lang/ure-nl_BE.po +206 -189
  42. lang/ure-pl_PL.mo +0 -0
  43. lang/ure-pl_PL.po +340 -321
  44. lang/ure-pt_BR.mo +0 -0
  45. lang/ure-pt_BR.po +339 -333
  46. lang/ure-ru_RU.mo +0 -0
  47. lang/ure-ru_RU.po +205 -189
  48. lang/ure-sv_SE.mo +0 -0
  49. lang/ure-sv_SE.po +207 -189
  50. lang/ure-tr_TR.mo +0 -0
  51. lang/ure-tr_TR.po +229 -190
  52. lang/ure-zh_CN.mo +0 -0
  53. lang/ure-zh_CN.po +206 -189
  54. lang/ure.mo +0 -0
  55. lang/ure.pot +205 -189
  56. readme.txt +15 -59
  57. user-role-editor.php +14 -3
css/index.php CHANGED
@@ -1,4 +1,3 @@
1
- <?php
2
- // This file was created automatically by Silence is Golden Guard plugin
3
- // Silence is golden.
4
  ?>
1
+ <?php
2
+ // Silence is golden.
 
3
  ?>
images/admin-menu-editor-pro.jpg ADDED
Binary file
images/index.php CHANGED
@@ -1,4 +1,3 @@
1
- <?php
2
- // This file was created automatically by Silence is Golden Guard plugin
3
- // Silence is golden.
4
  ?>
1
+ <?php
2
+ // Silence is golden.
 
3
  ?>
images/mwp250_2.png ADDED
Binary file
includes/index.php ADDED
@@ -0,0 +1,3 @@
 
 
 
1
+ <?php
2
+ // Silence is golden.
3
+ ?>
ure-lib.php → includes/ure-lib.php RENAMED
@@ -10,17 +10,6 @@ if (!function_exists("get_option")) {
10
  die; // Silence is golden, direct call is prohibited
11
  }
12
 
13
- $ure_siteURL = get_site_url();
14
- $urePluginDirName = substr(strrchr(dirname(__FILE__), DIRECTORY_SEPARATOR), 1);
15
-
16
- define('URE_PLUGIN_URL', WP_PLUGIN_URL.'/'.$urePluginDirName);
17
- define('URE_PLUGIN_DIR', WP_PLUGIN_DIR.'/'.$urePluginDirName);
18
- define('URE_WP_ADMIN_URL', $ure_siteURL.'/wp-admin');
19
- define('URE_ERROR', 'Error is encountered');
20
- define('URE_SPACE_REPLACER', '_URE-SR_');
21
- define('URE_PARENT', 'users.php');
22
- define('URE_KEY_CAPABILITY', 'administrator');
23
-
24
  $ure_roles = false; $ure_capabilitiesToSave = false;
25
  $ure_currentRole = false; $ure_currentRoleName = false;
26
  $ure_toldAboutBackup = false; $ure_apply_to_all = false;
@@ -131,17 +120,17 @@ function ure_showMessage($message) {
131
 
132
 
133
  function ure_getUserRoles() {
134
- global $wp_roles;
135
 
136
- if (!isset($wp_roles)) {
137
- $wp_roles = new WP_Roles();
138
- }
139
 
140
  $ure_roles = $wp_roles->roles;
141
  if (is_array($ure_roles)) {
142
  asort($ure_roles);
143
  }
144
-
145
  return $ure_roles;
146
  }
147
  // end of ure_getUserRoles()
@@ -241,18 +230,10 @@ function ure_saveRolesToDb() {
241
  }
242
  $ure_roles[$ure_currentRole]['capabilities'] = $ure_capabilitiesToSave;
243
  $option_name = $wpdb->prefix.'user_roles';
244
- $serialized_roles = serialize($ure_roles);
245
- $query = "update $wpdb->options
246
- set option_value='$serialized_roles'
247
- where option_name='$option_name'
248
- limit 1";
249
- $record = $wpdb->query($query);
250
- if ($wpdb->last_error) {
251
- ure_logEvent($wpdb->last_error, true);
252
- return false;
253
- }
254
-
255
- return true;
256
  }
257
  // end of saveRolesToDb()
258
 
@@ -278,6 +259,9 @@ function ure_direct_site_roles_update($blogIds) {
278
  ure_logEvent($wpdb->last_error, true);
279
  return false;
280
  }
 
 
 
281
  }
282
 
283
  }
@@ -290,7 +274,7 @@ function ure_updateRoles() {
290
  $ure_toldAboutBackup = false;
291
  if (is_multisite() && is_super_admin() && $ure_apply_to_all) { // update Role for the all blogs/sites in the network (permitted to superadmin only)
292
 
293
- if (defined('WP_DEBUG') && WP_DEBUG==1) {
294
  $time_shot = microtime();
295
  }
296
 
@@ -304,6 +288,7 @@ function ure_updateRoles() {
304
  switch_to_blog($blog_id);
305
  $ure_roles = ure_getUserRoles();
306
  if (!$ure_roles) {
 
307
  return false;
308
  }
309
  if (!ure_saveRolesToDb()) {
@@ -311,12 +296,11 @@ function ure_updateRoles() {
311
  }
312
  }
313
  switch_to_blog($old_blog);
314
- $ure_roles = ure_getUserRoles();
315
-
316
  }
317
 
318
- if (defined('WP_DEBUG') && WP_DEBUG==1) {
319
- echo '<div class="updated fade below-h2">Roles updated for '.(microtime()-$time_shot).' milliseconds</div>';
320
  }
321
 
322
  } else {
@@ -894,6 +878,9 @@ function ure_capability_help_link($capability) {
894
  case 'moderate_comments':
895
  $url = 'http://www.shinephp.com/moderate_comments-wordpress-user-capability/';
896
  break;
 
 
 
897
  default:
898
  $url = '';
899
  }
10
  die; // Silence is golden, direct call is prohibited
11
  }
12
 
 
 
 
 
 
 
 
 
 
 
 
13
  $ure_roles = false; $ure_capabilitiesToSave = false;
14
  $ure_currentRole = false; $ure_currentRoleName = false;
15
  $ure_toldAboutBackup = false; $ure_apply_to_all = false;
120
 
121
 
122
  function ure_getUserRoles() {
123
+ global $wp_roles, $wp_user_roles;
124
 
125
+ $wp_user_roles = null; // do not take values from cache, force WP to retrieve roles from DB
126
+ $wp_roles = null;
127
+ $wp_roles = new WP_Roles();
128
 
129
  $ure_roles = $wp_roles->roles;
130
  if (is_array($ure_roles)) {
131
  asort($ure_roles);
132
  }
133
+
134
  return $ure_roles;
135
  }
136
  // end of ure_getUserRoles()
230
  }
231
  $ure_roles[$ure_currentRole]['capabilities'] = $ure_capabilitiesToSave;
232
  $option_name = $wpdb->prefix.'user_roles';
233
+
234
+ $result = update_option($option_name, $ure_roles);
235
+
236
+ return $result;
 
 
 
 
 
 
 
 
237
  }
238
  // end of saveRolesToDb()
239
 
259
  ure_logEvent($wpdb->last_error, true);
260
  return false;
261
  }
262
+ if ($record==0) {
263
+ return false;
264
+ }
265
  }
266
 
267
  }
274
  $ure_toldAboutBackup = false;
275
  if (is_multisite() && is_super_admin() && $ure_apply_to_all) { // update Role for the all blogs/sites in the network (permitted to superadmin only)
276
 
277
+ if (defined('URE_DEBUG') && URE_DEBUG) {
278
  $time_shot = microtime();
279
  }
280
 
288
  switch_to_blog($blog_id);
289
  $ure_roles = ure_getUserRoles();
290
  if (!$ure_roles) {
291
+ echo '<div class="error fade below-h2">'.URE_ERROR.'</div>';
292
  return false;
293
  }
294
  if (!ure_saveRolesToDb()) {
296
  }
297
  }
298
  switch_to_blog($old_blog);
299
+ $ure_roles = ure_getUserRoles();
 
300
  }
301
 
302
+ if (defined('URE_DEBUG') && URE_DEBUG) {
303
+ echo '<div class="updated fade below-h2">Roles updated for '.( microtime() - $time_shot ).' milliseconds</div>';
304
  }
305
 
306
  } else {
878
  case 'moderate_comments':
879
  $url = 'http://www.shinephp.com/moderate_comments-wordpress-user-capability/';
880
  break;
881
+ case 'update_core':
882
+ $url = 'http://www.shinephp.com/update_core-capability-for-wordpress-user/';
883
+ break;
884
  default:
885
  $url = '';
886
  }
ure-options.php → includes/ure-options.php RENAMED
@@ -83,7 +83,7 @@ foreach ($ure_roles as $key=>$value) {
83
  $ure_rolesId[] = $key;
84
  }
85
 
86
-
87
  $ure_fullCapabilities = array();
88
  foreach($ure_roles as $role) {
89
  // validate if capabilities is an array
@@ -92,6 +92,11 @@ foreach($ure_roles as $role) {
92
  $cap = array();
93
  $cap['inner'] = $key;
94
  $cap['human'] = __(ure_ConvertCapsToReadable($key),'ure');
 
 
 
 
 
95
  if (!isset($ure_fullCapabilities[$key])) {
96
  $ure_fullCapabilities[$key] = $cap;
97
  }
@@ -129,27 +134,25 @@ if (isset($_POST['action']) && $_POST['action'] == 'update' && isset($_POST['use
129
  foreach ($ure_fullCapabilities as $availableCapability) {
130
  $cap_id = str_replace(' ', URE_SPACE_REPLACER, $availableCapability['inner']);
131
  if (isset($_POST[$cap_id])) {
132
- $ure_capabilitiesToSave[$availableCapability['inner']] = 1;
133
  }
134
  }
135
  if ($ure_object == 'role') { // save role changes to database
136
  if (count($ure_capabilitiesToSave) > 0) {
137
- if (!ure_updateRoles()) {
138
- return;
 
 
 
139
  }
 
 
 
140
  if ($mess) {
141
  $mess .= '<br/>';
142
  }
143
- $mess = __('Role', 'ure') . ' <em>' . __($ure_roles[$ure_currentRole]['name'], 'ure') . '</em> ' . __('is updated successfully', 'ure');
144
- }
145
- } else {
146
- if (!ure_updateUser($ure_userToEdit)) {
147
- return;
148
  }
149
- if ($mess) {
150
- $mess .= '<br/>';
151
- }
152
- $mess = __('User', 'ure') . ' &lt;<em>' . $ure_userToEdit->display_name . '</em>&gt; ' . __('capabilities are updated successfully', 'ure');
153
  }
154
  }
155
  }
@@ -179,10 +182,10 @@ ure_showMessage($mess);
179
  <script language="javascript" type="text/javascript" >
180
  function ure_show_greetings(message) {
181
  var el = document.getElementById('ure_greetings');
182
- if (el.style.visibility=='visible') {
183
- el.style.visibility = 'hidden';
184
  } else {
185
- el.style.visibility = 'visible';
186
  }
187
  }
188
  // end of ure_show_greetings()
@@ -212,12 +215,26 @@ ure_showMessage($mess);
212
  </script>
213
  <div id="poststuff">
214
  <div class="ure-sidebar" >
 
 
 
 
 
 
 
 
 
 
 
 
 
 
215
  <?php ure_displayBoxStart(__('About this Plugin:', 'ure')); ?>
216
  <a class="ure_rsb_link" style="background-image:url(<?php echo $shinephpFavIcon; ?>);" target="_blank" href="http://www.shinephp.com/"><?php _e("Author's website", 'ure'); ?></a>
217
  <a class="ure_rsb_link" style="background-image:url(<?php echo URE_PLUGIN_URL.'/images/user-role-editor-icon.png'; ?>);" target="_blank" href="http://www.shinephp.com/user-role-editor-wordpress-plugin/"><?php _e('Plugin webpage', 'ure'); ?></a>
218
  <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>
219
  <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>
220
- <a class="ure_rsb_link" style="background-image:url(<?php echo URE_PLUGIN_URL.'/images/greetings.png'; ?>);" onclick="ure_show_greetings()" href="#"><?php _e('Greetings', 'ure'); ?></a>
221
  <hr />
222
  <div style="text-align: center;">
223
  <form action="https://www.paypal.com/cgi-bin/webscr" method="post">
@@ -228,11 +245,7 @@ ure_showMessage($mess);
228
  <img alt="" border="0" src="https://www.paypalobjects.com/en_US/i/scr/pixel.gif" width="1" height="1">
229
  </form>
230
  </div>
231
- <hr />
232
- <div style="text-align: center;">
233
- <a href="http://chooseplugin.com"><img src="<?php echo URE_PLUGIN_URL.'/images/chooseplugin.png';?>" alt="ChoosePlugin.com" title="Advanced search plugins service from User Role Editor developer"/></a>
234
- </div>
235
- <hr />
236
  <h3>Recently donated</h3>
237
  <ul>
238
  <li><a href="http://thenineshub.com/" title="To The Nines Web Agency" target="new">To The Nines Web Agency</a></li>
@@ -242,11 +255,12 @@ ure_showMessage($mess);
242
  <li><a href="http://www.eastwoodzhao.com" title="www.eastwoodzhao.com" target="new">Eastwood</a></li>
243
  </ul>
244
  <?php ure_displayBoxEnd();?>
245
- <div id="ure_greetings" style="clear: left; float: left; visibility: hidden;">
246
- <?php ure_displayBoxStart(__('Greetings:','ure')); ?>
247
  <a class="ure_rsb_link" style="background-image:url(<?php echo $shinephpFavIcon; ?>);" target="_blank" title="<?php _e("It's me, the author", 'ure'); ?>" href="http://www.shinephp.com/">Vladimir</a>
248
  <a class="ure_rsb_link" style="background-image:url(<?php echo URE_PLUGIN_URL.'/images/marsis.png'; ?>)" target="_blank" title="<?php _e("For the help with Belorussian translation", 'ure'); ?>" href="http://pc.de">Marsis G.</a>
249
  <a class="ure_rsb_link" style="background-image:url(<?php echo URE_PLUGIN_URL.'/images/rafael.png'; ?>)" target="_blank" title="<?php _e("For the help with Brasilian translation", 'ure'); ?>" href="http://www.arquiteturailustrada.com.br/">Rafael Galdencio</a>
 
250
  <a class="ure_rsb_link" style="background-image:url(<?php echo URE_PLUGIN_URL.'/images/jackytsu.png'; ?>)" target="_blank" title="<?php _e("For the help with Chinese translation", 'ure'); ?>" href="http://www.jackytsu.com">Jackytsu</a>
251
  <a class="ure_rsb_link" style="background-image:url(<?php echo URE_PLUGIN_URL.'/images/ivaldi.png'; ?>)" target="_blank" title="<?php _e("For the help with Dutch translation", 'ure'); ?>" href="http://www.ivaldi.nl">Frank Groeneveld</a>
252
  <a class="ure_rsb_link" style="background-image:url(<?php echo URE_PLUGIN_URL.'/images/lauri.png'; ?>)" target="_blank" title="<?php _e("For the help with Finnish translation", 'ure'); ?>" href="http://www.viidakkorumpu.fi">Lauri Merisaari</a>
83
  $ure_rolesId[] = $key;
84
  }
85
 
86
+ $built_in_wp_caps = ure_getBuiltInWPCaps();
87
  $ure_fullCapabilities = array();
88
  foreach($ure_roles as $role) {
89
  // validate if capabilities is an array
92
  $cap = array();
93
  $cap['inner'] = $key;
94
  $cap['human'] = __(ure_ConvertCapsToReadable($key),'ure');
95
+ if ( isset( $built_in_wp_caps[ $key ] ) ) {
96
+ $cap['wp_core'] = true;
97
+ } else {
98
+ $cap['wp_core'] = false;
99
+ }
100
  if (!isset($ure_fullCapabilities[$key])) {
101
  $ure_fullCapabilities[$key] = $cap;
102
  }
134
  foreach ($ure_fullCapabilities as $availableCapability) {
135
  $cap_id = str_replace(' ', URE_SPACE_REPLACER, $availableCapability['inner']);
136
  if (isset($_POST[$cap_id])) {
137
+ $ure_capabilitiesToSave[$availableCapability['inner']] = true;
138
  }
139
  }
140
  if ($ure_object == 'role') { // save role changes to database
141
  if (count($ure_capabilitiesToSave) > 0) {
142
+ if (ure_updateRoles()) {
143
+ if ($mess) {
144
+ $mess .= '<br/>';
145
+ }
146
+ $mess = __('Role', 'ure') . ' <em>' . __($ure_roles[$ure_currentRole]['name'], 'ure') . '</em> ' . __('is updated successfully', 'ure');
147
  }
148
+ }
149
+ } else {
150
+ if (ure_updateUser($ure_userToEdit)) {
151
  if ($mess) {
152
  $mess .= '<br/>';
153
  }
154
+ $mess = __('User', 'ure') . ' &lt;<em>' . $ure_userToEdit->display_name . '</em>&gt; ' . __('capabilities are updated successfully', 'ure');
 
 
 
 
155
  }
 
 
 
 
156
  }
157
  }
158
  }
182
  <script language="javascript" type="text/javascript" >
183
  function ure_show_greetings(message) {
184
  var el = document.getElementById('ure_greetings');
185
+ if (el.style.display=='block') {
186
+ el.style.display = 'none';
187
  } else {
188
+ el.style.display = 'block';
189
  }
190
  }
191
  // end of ure_show_greetings()
215
  </script>
216
  <div id="poststuff">
217
  <div class="ure-sidebar" >
218
+ <div style="text-align: center;">
219
+ <a href="http://w-shadow.com/admin-menu-editor-pro/?utm_source=UserRoleEditor&utm_medium=banner&utm_campaign=Plugins " target="_new" ><img src="<?php echo URE_PLUGIN_URL.'/images/admin-menu-editor-pro.jpg';?>" alt="Admin Menu Editor Pro" title="Move, rename, hide, add admin menu items, restrict access"/></a>
220
+ </div>
221
+ <hr />
222
+ <div style="text-align: center;">
223
+ <a title="ManageWP" href="http://managewp.com/?utm_source=user_role_editor&utm_medium=Banner&utm_content=mwp250_2&utm_campaign=Plugins" targer="_new" >
224
+ <img width="250" height="250" alt="ManageWP" src="<?php echo URE_PLUGIN_URL;?>/images/mwp250_2.png">
225
+ </a>
226
+ </div>
227
+ <hr />
228
+ <div style="text-align: center;">
229
+ <a href="http://chooseplugin.com"><img src="<?php echo URE_PLUGIN_URL.'/images/chooseplugin.png';?>" alt="ChoosePlugin.com" title="Advanced search plugins service from User Role Editor developer"/></a>
230
+ </div>
231
+ <hr />
232
  <?php ure_displayBoxStart(__('About this Plugin:', 'ure')); ?>
233
  <a class="ure_rsb_link" style="background-image:url(<?php echo $shinephpFavIcon; ?>);" target="_blank" href="http://www.shinephp.com/"><?php _e("Author's website", 'ure'); ?></a>
234
  <a class="ure_rsb_link" style="background-image:url(<?php echo URE_PLUGIN_URL.'/images/user-role-editor-icon.png'; ?>);" target="_blank" href="http://www.shinephp.com/user-role-editor-wordpress-plugin/"><?php _e('Plugin webpage', 'ure'); ?></a>
235
  <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>
236
  <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>
237
+ <a class="ure_rsb_link" style="background-image:url(<?php echo URE_PLUGIN_URL.'/images/greetings.png'; ?>);" onclick="ure_show_greetings()" href="#greetings"><?php _e('Greetings', 'ure'); ?></a>
238
  <hr />
239
  <div style="text-align: center;">
240
  <form action="https://www.paypal.com/cgi-bin/webscr" method="post">
245
  <img alt="" border="0" src="https://www.paypalobjects.com/en_US/i/scr/pixel.gif" width="1" height="1">
246
  </form>
247
  </div>
248
+ <hr />
 
 
 
 
249
  <h3>Recently donated</h3>
250
  <ul>
251
  <li><a href="http://thenineshub.com/" title="To The Nines Web Agency" target="new">To The Nines Web Agency</a></li>
255
  <li><a href="http://www.eastwoodzhao.com" title="www.eastwoodzhao.com" target="new">Eastwood</a></li>
256
  </ul>
257
  <?php ure_displayBoxEnd();?>
258
+ <div id="ure_greetings" style="clear: left; float: left; display: none;">
259
+ <?php ure_displayBoxStart('<a name="greetings">'.__('Greetings:','ure').'</a>'); ?>
260
  <a class="ure_rsb_link" style="background-image:url(<?php echo $shinephpFavIcon; ?>);" target="_blank" title="<?php _e("It's me, the author", 'ure'); ?>" href="http://www.shinephp.com/">Vladimir</a>
261
  <a class="ure_rsb_link" style="background-image:url(<?php echo URE_PLUGIN_URL.'/images/marsis.png'; ?>)" target="_blank" title="<?php _e("For the help with Belorussian translation", 'ure'); ?>" href="http://pc.de">Marsis G.</a>
262
  <a class="ure_rsb_link" style="background-image:url(<?php echo URE_PLUGIN_URL.'/images/rafael.png'; ?>)" target="_blank" title="<?php _e("For the help with Brasilian translation", 'ure'); ?>" href="http://www.arquiteturailustrada.com.br/">Rafael Galdencio</a>
263
+ <a class="ure_rsb_link" style="background-image:url(<?php echo URE_PLUGIN_URL.'/images/onbiz.png'; ?>)" target="_blank" title="<?php _e("For the help with Brasilian Portuguese translation", 'ure'); ?>" href="http://www.onbiz.com.br">Onbiz</a>
264
  <a class="ure_rsb_link" style="background-image:url(<?php echo URE_PLUGIN_URL.'/images/jackytsu.png'; ?>)" target="_blank" title="<?php _e("For the help with Chinese translation", 'ure'); ?>" href="http://www.jackytsu.com">Jackytsu</a>
265
  <a class="ure_rsb_link" style="background-image:url(<?php echo URE_PLUGIN_URL.'/images/ivaldi.png'; ?>)" target="_blank" title="<?php _e("For the help with Dutch translation", 'ure'); ?>" href="http://www.ivaldi.nl">Frank Groeneveld</a>
266
  <a class="ure_rsb_link" style="background-image:url(<?php echo URE_PLUGIN_URL.'/images/lauri.png'; ?>)" target="_blank" title="<?php _e("For the help with Finnish translation", 'ure'); ?>" href="http://www.viidakkorumpu.fi">Lauri Merisaari</a>
ure-role-edit.php → includes/ure-role-edit.php RENAMED
@@ -73,6 +73,14 @@ if (is_multisite()) {
73
  <?php
74
  }
75
  ?>
 
 
 
 
 
 
 
 
76
  function ure_Actions(action, value) {
77
  if (action=='cancel') {
78
  document.location = '<?php echo URE_WP_ADMIN_URL.'/'.URE_PARENT; ?>?page=user-role-editor.php';
@@ -192,16 +200,26 @@ if (is_multisite() && is_super_admin()) {
192
  <?php
193
  }
194
  ?>
195
- <br/><br/><hr/>
 
 
196
  <table class="form-table" style="clear:none;" cellpadding="0" cellspacing="0">
197
  <tr>
198
  <td style="vertical-align:top;">
199
  <?php
 
 
 
 
 
200
  $deprecatedCaps = ure_get_deprecated_caps();
201
- $quant = count($ure_fullCapabilities);
202
- $quantInColumn = (int) $quant/3;
203
- $quantInCell = 0;
204
  foreach( $ure_fullCapabilities as $capability) {
 
 
 
205
  if (!$ure_show_deprecated_caps && isset($deprecatedCaps[$capability['inner']])) {
206
  $input_type = 'hidden';
207
  } else {
@@ -218,7 +236,7 @@ if (is_multisite() && is_super_admin()) {
218
  }
219
  $cap_id = str_replace(' ', URE_SPACE_REPLACER, $capability['inner']);
220
  ?>
221
- <input type="<?php echo $input_type;?>" name="<?php echo $cap_id; ?>" id="<?php echo $cap_id; ?>" value="<?php echo $capability['inner']; ?>" <?php echo $checked; ?>/>
222
  <?php
223
  if ($input_type=='checkbox') {
224
  if ($ure_caps_readable) {
@@ -231,20 +249,70 @@ if (is_multisite() && is_super_admin()) {
231
  ?>
232
  <label for="<?php echo $cap_id; ?>" title="<?php echo $capability[$capIndAlt]; ?>" <?php echo $labelStyle;?> ><?php echo $capability[$capInd]; ?></label> <?php echo ure_capability_help_link($capability['inner']); ?><br/>
233
  <?php
234
- $quantInCell++;
235
  }
236
- if ($quantInCell>=$quantInColumn) {
237
- $quantInCell = 0;
238
  echo '</td>
239
  <td style="vertical-align:top;">';
240
  }
241
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
242
  ?>
243
  </td>
244
  </tr>
245
  </table>
 
 
 
 
246
 
247
- <hr/>
248
  <input type="hidden" name="object" value="role" />
249
  <div class="submit" style="padding-top: 0px;padding-bottom: 0px;">
250
  <div style="float:left; padding-bottom: 10px;">
@@ -253,8 +321,14 @@ if (is_multisite() && is_super_admin()) {
253
  </div>
254
  <div style="float: left; margin-left: 40px;">
255
  <input type="button" name="select_all" id="select_all" value="<?php _e('Select All', 'ure'); ?>" title="<?php _e('Select All Capabilities', 'ure'); ?>" onclick="ure_select_all(1);" />
 
 
 
256
  <input type="button" name="unselect_all" id="unselect_all" value="<?php _e('Unselect All', 'ure'); ?>" title="<?php _e('Unselect All Capabilities', 'ure'); ?>" onclick="ure_select_all(0);" />
257
  <input type="button" name="reverse" id="reverse" value="<?php _e('Reverse', 'ure'); ?>" title="<?php _e('Turn checked capabilities off and vise versa', 'ure'); ?>" onclick="ure_select_all(-1);" />
 
 
 
258
  </div>
259
  <div style="float:right; padding-bottom: 10px;">
260
  <input type="button" name="default" value="<?php _e('Reset', 'ure') ?>" title="<?php _e('Restore Roles from backup copy', 'ure'); ?>" onclick="ure_Actions('reset');"/>
73
  <?php
74
  }
75
  ?>
76
+
77
+ function turn_it_back(control) {
78
+
79
+ control.checked = true;
80
+
81
+ }
82
+
83
+
84
  function ure_Actions(action, value) {
85
  if (action=='cancel') {
86
  document.location = '<?php echo URE_WP_ADMIN_URL.'/'.URE_PARENT; ?>?page=user-role-editor.php';
200
  <?php
201
  }
202
  ?>
203
+ <br /><br />
204
+ <hr />
205
+ <?php _e('Core capabilities:', 'ure'); ?>
206
  <table class="form-table" style="clear:none;" cellpadding="0" cellspacing="0">
207
  <tr>
208
  <td style="vertical-align:top;">
209
  <?php
210
+ if ('administrator' == $ure_currentRole ) {
211
+ $onclick_for_admin = 'onclick="turn_it_back(this)"';
212
+ } else {
213
+ $onclick_for_admin = '';
214
+ }
215
  $deprecatedCaps = ure_get_deprecated_caps();
216
+ $quant = count($built_in_wp_caps);
217
+ $quantInColumn = 22;
218
+ $printed_quant = 0;
219
  foreach( $ure_fullCapabilities as $capability) {
220
+ if ( !$capability['wp_core'] ) { // show WP built-in capabilities 1st
221
+ continue;
222
+ }
223
  if (!$ure_show_deprecated_caps && isset($deprecatedCaps[$capability['inner']])) {
224
  $input_type = 'hidden';
225
  } else {
236
  }
237
  $cap_id = str_replace(' ', URE_SPACE_REPLACER, $capability['inner']);
238
  ?>
239
+ <input type="<?php echo $input_type;?>" name="<?php echo $cap_id; ?>" id="<?php echo $cap_id; ?>" value="<?php echo $capability['inner']; ?>" <?php echo $checked.' '.$onclick_for_admin; ?> />
240
  <?php
241
  if ($input_type=='checkbox') {
242
  if ($ure_caps_readable) {
249
  ?>
250
  <label for="<?php echo $cap_id; ?>" title="<?php echo $capability[$capIndAlt]; ?>" <?php echo $labelStyle;?> ><?php echo $capability[$capInd]; ?></label> <?php echo ure_capability_help_link($capability['inner']); ?><br/>
251
  <?php
252
+ $printed_quant++;
253
  }
254
+ if ($printed_quant>=$quantInColumn) {
255
+ $printed_quant = 0;
256
  echo '</td>
257
  <td style="vertical-align:top;">';
258
  }
259
  }
260
+ ?>
261
+ </td>
262
+ </tr>
263
+ </table>
264
+ <hr />
265
+ <?php
266
+ $quant = count($ure_fullCapabilities) - $quant;
267
+ if ($quant>0) {
268
+ _e('Custom capabilities:', 'ure');
269
+ ?>
270
+ <table class="form-table" style="clear:none;" cellpadding="0" cellspacing="0">
271
+ <tr>
272
+ <td style="vertical-align:top;">
273
+ <?php
274
+ $quantInColumn = (int) $quant / 3;
275
+ $printed_quant = 0;
276
+ foreach ($ure_fullCapabilities as $capability) {
277
+ if ($capability['wp_core']) { // show plugins or users added capabilities
278
+ continue;
279
+ }
280
+ $checked = '';
281
+ if (isset($ure_roles[$ure_currentRole]['capabilities'][$capability['inner']])) {
282
+ $checked = 'checked="checked"';
283
+ }
284
+ $cap_id = str_replace(' ', URE_SPACE_REPLACER, $capability['inner']);
285
+ ?>
286
+ <input type="<?php echo $input_type; ?>" name="<?php echo $cap_id; ?>" id="<?php echo $cap_id; ?>" value="<?php echo $capability['inner']; ?>" <?php echo $checked.' '.$onclick_for_admin; ?>/>
287
+ <?php
288
+ if ($input_type == 'checkbox') {
289
+ if ($ure_caps_readable) {
290
+ $capInd = 'human';
291
+ $capIndAlt = 'inner';
292
+ } else {
293
+ $capInd = 'inner';
294
+ $capIndAlt = 'human';
295
+ }
296
+ ?>
297
+ <label for="<?php echo $cap_id; ?>" title="<?php echo $capability[$capIndAlt]; ?>" ><?php echo $capability[$capInd]; ?></label> <?php echo ure_capability_help_link($capability['inner']); ?><br/>
298
+ <?php
299
+ $printed_quant++;
300
+ }
301
+ if ($printed_quant >= $quantInColumn) {
302
+ $printed_quant = 0;
303
+ echo '</td>
304
+ <td style="vertical-align:top;">';
305
+ }
306
+ }
307
  ?>
308
  </td>
309
  </tr>
310
  </table>
311
+ <hr />
312
+ <?php
313
+ } // if ($quant>0)
314
+ ?>
315
 
 
316
  <input type="hidden" name="object" value="role" />
317
  <div class="submit" style="padding-top: 0px;padding-bottom: 0px;">
318
  <div style="float:left; padding-bottom: 10px;">
321
  </div>
322
  <div style="float: left; margin-left: 40px;">
323
  <input type="button" name="select_all" id="select_all" value="<?php _e('Select All', 'ure'); ?>" title="<?php _e('Select All Capabilities', 'ure'); ?>" onclick="ure_select_all(1);" />
324
+ <?php
325
+ if ('administrator' != $ure_currentRole ) {
326
+ ?>
327
  <input type="button" name="unselect_all" id="unselect_all" value="<?php _e('Unselect All', 'ure'); ?>" title="<?php _e('Unselect All Capabilities', 'ure'); ?>" onclick="ure_select_all(0);" />
328
  <input type="button" name="reverse" id="reverse" value="<?php _e('Reverse', 'ure'); ?>" title="<?php _e('Turn checked capabilities off and vise versa', 'ure'); ?>" onclick="ure_select_all(-1);" />
329
+ <?php
330
+ }
331
+ ?>
332
  </div>
333
  <div style="float:right; padding-bottom: 10px;">
334
  <input type="button" name="default" value="<?php _e('Reset', 'ure') ?>" title="<?php _e('Restore Roles from backup copy', 'ure'); ?>" onclick="ure_Actions('reset');"/>
ure-user-edit.php → includes/ure-user-edit.php RENAMED
@@ -102,25 +102,81 @@ $roleSelectHTML .= '</select>';
102
 
103
  <br/><br/><hr/>
104
  <h3><?php _e('Add capabilities to this user:', 'ure'); ?></h3>
 
105
  <table class="form-table" style="clear:none;" cellpadding="0" cellspacing="0">
106
  <tr>
107
  <td style="vertical-align:top;">
108
  <?php
109
- $deprecatedCaps = ure_get_deprecated_caps();
110
- $quant = count($ure_fullCapabilities);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
111
  $quantInColumn = (int) $quant / 3;
112
- $quantInCell = 0;
113
  foreach ($ure_fullCapabilities as $capability) {
114
- if (!$ure_show_deprecated_caps && isset($deprecatedCaps[$capability['inner']])) {
115
- $input_type = 'hidden';
116
- } else {
117
- $input_type = 'checkbox';
118
- }
119
- if (isset($deprecatedCaps[$capability['inner']])) {
120
- $labelStyle = 'style="color:#BBBBBB;"';
121
- } else {
122
- $labelStyle = '';
123
- }
124
  $checked = ''; $disabled = '';
125
  if (isset($ure_roles[$ure_currentRole]['capabilities'][$capability['inner']])) {
126
  $checked = 'checked="checked"';
@@ -130,7 +186,7 @@ $roleSelectHTML .= '</select>';
130
  }
131
  $cap_id = str_replace(' ', URE_SPACE_REPLACER, $capability['inner']);
132
  ?>
133
- <input type="<?php echo $input_type;?>" name="<?php echo $cap_id; ?>" id="<?php echo $cap_id; ?>" value="<?php echo $capability['inner']; ?>" <?php echo $checked; ?> <?php echo $disabled; ?>/>
134
  <?php
135
  if ($input_type=='checkbox') {
136
  if ($ure_caps_readable) {
@@ -141,12 +197,12 @@ $roleSelectHTML .= '</select>';
141
  $capIndAlt = 'human';
142
  }
143
  ?>
144
- <label for="<?php echo $cap_id; ?>" title="<?php echo $capability[$capIndAlt]; ?>" <?php echo $labelStyle;?> ><?php echo $capability[$capInd]; ?></label> <?php echo ure_capability_help_link($capability['inner']); ?><br/>
145
  <?php
146
- $quantInCell++;
147
  }
148
- if ($quantInCell >= $quantInColumn) {
149
- $quantInCell = 0;
150
  echo '</td>
151
  <td style="vertical-align:top;">';
152
  }
@@ -154,8 +210,11 @@ $roleSelectHTML .= '</select>';
154
  ?>
155
  </td>
156
  </tr>
157
- </table>
158
- <hr/>
 
 
 
159
  <input type="hidden" name="object" value="user" />
160
  <input type="hidden" name="user_id" value="<?php echo $ure_userToEdit->ID; ?>" />
161
  <div class="submit" style="padding-top: 0px;">
102
 
103
  <br/><br/><hr/>
104
  <h3><?php _e('Add capabilities to this user:', 'ure'); ?></h3>
105
+ <?php _e('Core capabilities:', 'ure'); ?>
106
  <table class="form-table" style="clear:none;" cellpadding="0" cellspacing="0">
107
  <tr>
108
  <td style="vertical-align:top;">
109
  <?php
110
+ $deprecatedCaps = ure_get_deprecated_caps();
111
+ $quant = count($built_in_wp_caps);
112
+ $quantInColumn = 22;
113
+ $printed_quant = 0;
114
+ foreach ( $ure_fullCapabilities as $capability ) {
115
+ if ( !$capability['wp_core'] ) { // show WP built-in capabilities 1st
116
+ continue;
117
+ }
118
+ if (!$ure_show_deprecated_caps && isset($deprecatedCaps[$capability['inner']])) {
119
+ $input_type = 'hidden';
120
+ } else {
121
+ $input_type = 'checkbox';
122
+ }
123
+ if (isset($deprecatedCaps[$capability['inner']])) {
124
+ $labelStyle = 'style="color:#BBBBBB;"';
125
+ } else {
126
+ $labelStyle = '';
127
+ }
128
+ $checked = '';
129
+ $disabled = '';
130
+ if (isset($ure_roles[$ure_currentRole]['capabilities'][$capability['inner']])) {
131
+ $checked = 'checked="checked"';
132
+ $disabled = 'disabled="disabled"';
133
+ } else if (isset($ure_userToEdit->caps[$capability['inner']])) {
134
+ $checked = 'checked="checked"';
135
+ }
136
+ $cap_id = str_replace(' ', URE_SPACE_REPLACER, $capability['inner']);
137
+ ?>
138
+ <input type="<?php echo $input_type; ?>" name="<?php echo $cap_id; ?>" id="<?php echo $cap_id; ?>" value="<?php echo $capability['inner']; ?>" <?php echo $checked; ?> <?php echo $disabled; ?>/>
139
+ <?php
140
+ if ($input_type == 'checkbox') {
141
+ if ($ure_caps_readable) {
142
+ $capInd = 'human';
143
+ $capIndAlt = 'inner';
144
+ } else {
145
+ $capInd = 'inner';
146
+ $capIndAlt = 'human';
147
+ }
148
+ ?>
149
+ <label for="<?php echo $cap_id; ?>" title="<?php echo $capability[$capIndAlt]; ?>" <?php echo $labelStyle; ?> ><?php echo $capability[$capInd]; ?></label> <?php echo ure_capability_help_link($capability['inner']); ?><br/>
150
+ <?php
151
+ $printed_quant++;
152
+ }
153
+ if ( $printed_quant >= $quantInColumn ) {
154
+ $printed_quant = 0;
155
+ echo '</td>
156
+ <td style="vertical-align:top;">';
157
+ }
158
+ }
159
+ ?>
160
+ </td>
161
+ </tr>
162
+ </table>
163
+ <hr/>
164
+ <?php
165
+ $quant = count($ure_fullCapabilities) - $quant;
166
+ if ($quant>0) {
167
+ _e('Custom capabilities:', 'ure');
168
+ ?>
169
+ <table class="form-table" style="clear:none;" cellpadding="0" cellspacing="0">
170
+ <tr>
171
+ <td style="vertical-align:top;">
172
+ <?php
173
+
174
  $quantInColumn = (int) $quant / 3;
175
+ $printed_quant = 0;
176
  foreach ($ure_fullCapabilities as $capability) {
177
+ if ( $capability['wp_core'] ) { // show plugins or user added capabilities
178
+ continue;
179
+ }
 
 
 
 
 
 
 
180
  $checked = ''; $disabled = '';
181
  if (isset($ure_roles[$ure_currentRole]['capabilities'][$capability['inner']])) {
182
  $checked = 'checked="checked"';
186
  }
187
  $cap_id = str_replace(' ', URE_SPACE_REPLACER, $capability['inner']);
188
  ?>
189
+ <input type="checkbox" name="<?php echo $cap_id; ?>" id="<?php echo $cap_id; ?>" value="<?php echo $capability['inner']; ?>" <?php echo $checked; ?> <?php echo $disabled; ?>/>
190
  <?php
191
  if ($input_type=='checkbox') {
192
  if ($ure_caps_readable) {
197
  $capIndAlt = 'human';
198
  }
199
  ?>
200
+ <label for="<?php echo $cap_id; ?>" title="<?php echo $capability[$capIndAlt]; ?>" ><?php echo $capability[$capInd]; ?></label> <?php echo ure_capability_help_link($capability['inner']); ?><br/>
201
  <?php
202
+ $printed_quant++;
203
  }
204
+ if ( $printed_quant >= $quantInColumn ) {
205
+ $printed_quant = 0;
206
  echo '</td>
207
  <td style="vertical-align:top;">';
208
  }
210
  ?>
211
  </td>
212
  </tr>
213
+ </table>
214
+ <hr/>
215
+ <?php
216
+ } // if ($quant>0)
217
+ ?>
218
  <input type="hidden" name="object" value="user" />
219
  <input type="hidden" name="user_id" value="<?php echo $ure_userToEdit->ID; ?>" />
220
  <div class="submit" style="padding-top: 0px;">
index.php CHANGED
@@ -1,4 +1,3 @@
1
- <?php
2
- // This file was created automatically by Silence is Golden Guard plugin
3
- // Silence is golden.
4
  ?>
1
+ <?php
2
+ // Silence is golden.
 
3
  ?>
lang/index.php CHANGED
@@ -1,4 +1,3 @@
1
- <?php
2
- // This file was created automatically by Silence is Golden Guard plugin
3
- // Silence is golden.
4
  ?>
1
+ <?php
2
+ // Silence is golden.
 
3
  ?>
lang/ure-be_BY.mo CHANGED
Binary file
lang/ure-be_BY.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: 2012-06-23 23:10+0700\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Vladimir Garagulya <vladimir@shinephp.com>\n"
8
  "Language-Team: ShinePHP.com <by.marcis@gmail.com>\n"
@@ -27,727 +27,734 @@ msgid "Please update!"
27
  msgstr "Калі ласка, абновіце!"
28
 
29
  #: ../user-role-editor.php:40
30
- #, fuzzy
31
  msgid "User Role Editor requires PHP 5.0 or newer."
32
- msgstr "Рэдактар роляў карыстачоў патрабуе WordPress 3.0 ці вышэй."
33
 
34
- #: ../user-role-editor.php:65
35
  msgid "Only"
36
  msgstr ""
37
 
38
- #: ../user-role-editor.php:65
39
  msgid "is allowed to use"
40
  msgstr ""
41
 
42
- #: ../user-role-editor.php:71
43
- #: ../user-role-editor.php:246
44
  msgid "User Role Editor"
45
  msgstr "Рэдактар роляў карыстачоў"
46
 
47
- #: ../user-role-editor.php:218
48
  msgid "Settings"
49
  msgstr "Усталёўкі"
50
 
51
- #: ../user-role-editor.php:228
52
- #: ../ure-options.php:218
53
  msgid "Changelog"
54
  msgstr "Часопіс змен"
55
 
56
- #: ../user-role-editor.php:275
57
  msgid "Capabilities"
58
  msgstr ""
59
 
60
- #: ../ure-lib.php:45
61
  msgid "Error is occur. Please check the log file."
62
  msgstr "Адбылася памылка. Праверце лог-файл."
63
 
64
- #: ../ure-lib.php:155
65
  msgid "Database operation error. Check log file."
66
  msgstr "Памылка працы з базай дадзеных. Праверце лог-файл."
67
 
68
- #: ../ure-lib.php:188
69
  msgid "No backup data. It is created automatically before the first role data update."
70
  msgstr "Няма рэзервовай копіі. Яна ствараецца аўтаматычна перад першай зменай роляў."
71
 
72
- #: ../ure-lib.php:226
73
  msgid "Backup record is created for the current role capabilities"
74
  msgstr "Для бягучага размеркавання магчымасцяў па ролях створана рэзервовая копія"
75
 
76
- #: ../ure-lib.php:345
77
  msgid "Error: Role name must contain latin characters and digits only!"
78
  msgstr "Памылка: павінна ўтрымоўваць толькі лацінскія літары і лічбы"
79
 
80
- #: ../ure-lib.php:352
81
  #, php-format
82
  msgid "Role %s exists already"
83
  msgstr ""
84
 
85
- #: ../ure-lib.php:365
86
  msgid "Error is encountered during new role create operation"
87
  msgstr "Адбылася памылка пры стварэнні новай ролі"
88
 
89
- #: ../ure-lib.php:367
90
  #, php-format
91
  msgid "Role %s is created successfully"
92
  msgstr "Роля %s створана паспяхова"
93
 
94
- #: ../ure-lib.php:451
95
  msgid "Error encountered during role delete operation"
96
  msgstr "Адбылася памылка пры выдаленні ролі"
97
 
98
- #: ../ure-lib.php:453
99
  #, php-format
100
  msgid "Role %s is deleted successfully"
101
  msgstr "Роля %s выдалена паспяхова"
102
 
103
- #: ../ure-lib.php:471
104
  msgid "Error encountered during default role change operation"
105
  msgstr "Адбылася памылка пры змене ролі па-змаўчанню"
106
 
107
- #: ../ure-lib.php:477
108
  #, php-format
109
  msgid "Default role for new users is set to %s successfully"
110
  msgstr "Роля па-змаўчанню для новых пользователй зменена на %s паспяхова."
111
 
112
- #: ../ure-lib.php:505
113
  msgid "Editor"
114
  msgstr "Рэдактар"
115
 
116
- #: ../ure-lib.php:506
117
  msgid "Author"
118
  msgstr "Аўтар"
119
 
120
- #: ../ure-lib.php:507
121
  msgid "Contributor"
122
  msgstr "Асістэнт"
123
 
124
- #: ../ure-lib.php:508
125
  msgid "Subscriber"
126
  msgstr "Падпісант"
127
 
128
- #: ../ure-lib.php:510
129
  msgid "Switch themes"
130
  msgstr "Змяняць тэмы"
131
 
132
- #: ../ure-lib.php:511
133
  msgid "Edit themes"
134
  msgstr "Змяняць тэмы"
135
 
136
- #: ../ure-lib.php:512
137
  msgid "Activate plugins"
138
  msgstr "Актываваць убудовы"
139
 
140
- #: ../ure-lib.php:513
141
  msgid "Edit plugins"
142
  msgstr "Рэдагаваць убудовы"
143
 
144
- #: ../ure-lib.php:514
145
  msgid "Edit users"
146
  msgstr "Змяняць карыстачоў"
147
 
148
- #: ../ure-lib.php:515
149
  msgid "Edit files"
150
  msgstr "Змяняць файлы"
151
 
152
- #: ../ure-lib.php:516
153
  msgid "Manage options"
154
  msgstr "Кіраваць усталёўкамі"
155
 
156
- #: ../ure-lib.php:517
157
  msgid "Moderate comments"
158
  msgstr "Мадэраваць каментары"
159
 
160
- #: ../ure-lib.php:518
161
  msgid "Manage categories"
162
  msgstr "Кіраваць катэгорыямі"
163
 
164
- #: ../ure-lib.php:519
165
  msgid "Manage links"
166
  msgstr "Кіраваць спасылкамі"
167
 
168
- #: ../ure-lib.php:520
169
  msgid "Upload files"
170
  msgstr "Загружаць файлы"
171
 
172
- #: ../ure-lib.php:521
173
  msgid "Import"
174
  msgstr "Імпарт"
175
 
176
- #: ../ure-lib.php:522
177
  msgid "Unfiltered html"
178
  msgstr "html без фільтра"
179
 
180
- #: ../ure-lib.php:523
181
  msgid "Edit posts"
182
  msgstr "Змяняць артыкулы"
183
 
184
- #: ../ure-lib.php:524
185
  msgid "Edit others posts"
186
  msgstr "Змяняць чужыя артыкулы"
187
 
188
- #: ../ure-lib.php:525
189
  msgid "Edit published posts"
190
  msgstr "Рэдагаваць апублікаваныя артыкулы"
191
 
192
- #: ../ure-lib.php:526
193
  msgid "Publish posts"
194
  msgstr "Публікаваць артыкулы"
195
 
196
- #: ../ure-lib.php:527
197
  msgid "Edit pages"
198
  msgstr "Змяняць старонкі"
199
 
200
- #: ../ure-lib.php:528
201
  msgid "Read"
202
  msgstr "Чытанне"
203
 
204
- #: ../ure-lib.php:529
205
  msgid "Level 10"
206
  msgstr "Узровень 10"
207
 
208
- #: ../ure-lib.php:530
209
  msgid "Level 9"
210
  msgstr "Узровень 9"
211
 
212
- #: ../ure-lib.php:531
213
  msgid "Level 8"
214
  msgstr "Узровень 9"
215
 
216
- #: ../ure-lib.php:532
217
  msgid "Level 7"
218
  msgstr "Узровень 7"
219
 
220
- #: ../ure-lib.php:533
221
  msgid "Level 6"
222
  msgstr "Узровень 6"
223
 
224
- #: ../ure-lib.php:534
225
  msgid "Level 5"
226
  msgstr "Узровень 5"
227
 
228
- #: ../ure-lib.php:535
229
  msgid "Level 4"
230
  msgstr "Узровень 4"
231
 
232
- #: ../ure-lib.php:536
233
  msgid "Level 3"
234
  msgstr "Узровень 3"
235
 
236
- #: ../ure-lib.php:537
237
  msgid "Level 2"
238
  msgstr "Узровень 2"
239
 
240
- #: ../ure-lib.php:538
241
  msgid "Level 1"
242
  msgstr "Узровень 1"
243
 
244
- #: ../ure-lib.php:539
245
  msgid "Level 0"
246
  msgstr "Узровень 0"
247
 
248
- #: ../ure-lib.php:540
249
  msgid "Edit others pages"
250
  msgstr "Рэдагаваць чужыя старонкі"
251
 
252
- #: ../ure-lib.php:541
253
  msgid "Edit published pages"
254
  msgstr "Рэдагаваць апублікаваныя старонкі"
255
 
256
- #: ../ure-lib.php:542
257
  msgid "Publish pages"
258
  msgstr "Публікаваць старонкі"
259
 
260
- #: ../ure-lib.php:543
261
  msgid "Delete pages"
262
  msgstr "Выдаляць старонкі"
263
 
264
- #: ../ure-lib.php:544
265
  msgid "Delete others pages"
266
  msgstr "Выдаліць чужыя старонкі"
267
 
268
- #: ../ure-lib.php:545
269
  msgid "Delete published pages"
270
  msgstr "Выдаляць апублікаваныя старонкі"
271
 
272
- #: ../ure-lib.php:546
273
  msgid "Delete posts"
274
  msgstr "Выдаляць артыкулы"
275
 
276
- #: ../ure-lib.php:547
277
  msgid "Delete others posts"
278
  msgstr "Выдаляць чужыя артыкулы"
279
 
280
- #: ../ure-lib.php:548
281
  msgid "Delete published posts"
282
  msgstr "Выдаляць апублікаваныя артыкулы"
283
 
284
- #: ../ure-lib.php:549
285
  msgid "Delete private posts"
286
  msgstr "Выдаляць прыватныя артыкулы"
287
 
288
- #: ../ure-lib.php:550
289
  msgid "Edit private posts"
290
  msgstr "Рэдагаваць прыватныя артыкулы"
291
 
292
- #: ../ure-lib.php:551
293
  msgid "Read private posts"
294
  msgstr "Чытаць прыватныя артыкулы"
295
 
296
- #: ../ure-lib.php:552
297
  msgid "Delete private pages"
298
  msgstr "Выдаляць прыватныя старонкі"
299
 
300
- #: ../ure-lib.php:553
301
  msgid "Edit private pages"
302
  msgstr "Рэдагаваць прыватныя старонкі"
303
 
304
- #: ../ure-lib.php:554
305
  msgid "Read private pages"
306
  msgstr "Чытаць прыватныя старонкі"
307
 
308
- #: ../ure-lib.php:555
309
  msgid "Delete users"
310
  msgstr "Выдаляць карыстачоў"
311
 
312
- #: ../ure-lib.php:556
313
  msgid "Create users"
314
  msgstr "Ствараць карыстачоў"
315
 
316
- #: ../ure-lib.php:557
317
  msgid "Unfiltered upload"
318
  msgstr "Загрузка без фільтра"
319
 
320
- #: ../ure-lib.php:558
321
  msgid "Edit dashboard"
322
  msgstr "Змяняць панэль адміністратара"
323
 
324
- #: ../ure-lib.php:559
325
  msgid "Update plugins"
326
  msgstr "Абнаўляць убудовы"
327
 
328
- #: ../ure-lib.php:560
329
  msgid "Delete plugins"
330
  msgstr "Выдаляць убудовы"
331
 
332
- #: ../ure-lib.php:561
333
  msgid "Install plugins"
334
  msgstr "Усталёўваць убудовы"
335
 
336
- #: ../ure-lib.php:562
337
  msgid "Update themes"
338
  msgstr "Абнаўляць тэмы"
339
 
340
- #: ../ure-lib.php:563
341
  msgid "Install themes"
342
  msgstr "Усталёўваць тэмы"
343
 
344
- #: ../ure-lib.php:564
345
  msgid "Update core"
346
  msgstr ""
347
 
348
- #: ../ure-lib.php:565
349
  msgid "List users"
350
  msgstr ""
351
 
352
- #: ../ure-lib.php:566
353
  msgid "Remove users"
354
  msgstr ""
355
 
356
- #: ../ure-lib.php:567
357
  msgid "Add users"
358
  msgstr ""
359
 
360
- #: ../ure-lib.php:568
361
  msgid "Promote users"
362
  msgstr ""
363
 
364
- #: ../ure-lib.php:569
365
  msgid "Edit theme options"
366
  msgstr ""
367
 
368
- #: ../ure-lib.php:570
369
  msgid "Delete themes"
370
  msgstr ""
371
 
372
- #: ../ure-lib.php:571
373
  msgid "Export"
374
  msgstr ""
375
 
376
- #: ../ure-lib.php:655
377
- #, fuzzy
378
  msgid "Error: Capability name must contain latin characters and digits only!"
379
  msgstr "Памылка: павінна ўтрымоўваць толькі лацінскія літары і лічбы"
380
 
381
- #: ../ure-lib.php:667
382
- #, fuzzy, php-format
383
  msgid "Capability %s is added successfully"
384
  msgstr "Роля %s створана паспяхова"
385
 
386
- #: ../ure-lib.php:669
387
  #, php-format
388
  msgid "Capability %s exists already"
389
  msgstr ""
390
 
391
- #: ../ure-lib.php:818
392
  #, php-format
393
  msgid "Error! You do not have permission to delete this capability: %s!"
394
  msgstr ""
395
 
396
- #: ../ure-lib.php:840
397
  #, php-format
398
  msgid "Capability %s is removed successfully"
399
  msgstr ""
400
 
401
- #: ../ure-lib.php:902
402
  msgid "Help"
403
  msgstr ""
404
 
405
- #: ../ure-role-edit.php:29
406
  msgid "None"
407
  msgstr "Не"
408
 
409
- #: ../ure-role-edit.php:93
410
  msgid " Name can not be empty!"
411
  msgstr "Найменне ролі не можа быць пустым!"
412
 
413
- #: ../ure-role-edit.php:97
414
  msgid " Name must contain latin characters and digits only!"
415
  msgstr "Найменне ролі павінна ўтрымоўваць толькі лацінскія літары і лічбы."
416
 
417
- #: ../ure-role-edit.php:102
418
- #: ../ure-role-edit.php:293
419
  msgid "Delete Role"
420
  msgstr "Выдаліць Ролю"
421
 
422
- #: ../ure-role-edit.php:104
423
  msgid "Change Default Role"
424
  msgstr "Усталяваць як роля па-змаўчанню"
425
 
426
- #: ../ure-role-edit.php:106
427
  msgid "Restore Roles from backup copy. Be careful, backup was created when you started URE 1st time. All changes you made after that will be lost"
428
  msgstr ""
429
 
430
- #: ../ure-role-edit.php:108
431
  msgid "Warning! Be careful - removing critical capability could crash some plugin or other custom code"
432
  msgstr ""
433
 
434
- #: ../ure-role-edit.php:110
435
  msgid "Please confirm to continue"
436
  msgstr "Калі ласка, пацвердзіце працяг "
437
 
438
- #: ../ure-role-edit.php:147
439
  #, php-format
440
  msgid "Role \"%s\" update: please confirm to continue"
441
  msgstr "Змена ролі \"%s\": калі ласка, пацвердзіце працяг "
442
 
443
- #: ../ure-role-edit.php:155
444
  msgid "Select Role and change its capabilities list"
445
  msgstr "Абяры Ролю і змяні спіс дазволеных аперацый"
446
 
447
- #: ../ure-role-edit.php:157
448
  msgid "Select Role:"
449
  msgstr "Абяры Ролю:"
450
 
451
- #: ../ure-role-edit.php:167
452
- #: ../ure-user-edit.php:91
453
  msgid "Show capabilities in human readable form"
454
  msgstr "Паказ магчымасцяў у чытэльнай форме"
455
 
456
- #: ../ure-role-edit.php:176
457
- #: ../ure-user-edit.php:100
458
  msgid "Show deprecated capabilities"
459
  msgstr ""
460
 
461
- #: ../ure-role-edit.php:180
462
  msgid "If checked, then apply action to ALL sites of this Network"
463
  msgstr ""
464
 
465
- #: ../ure-role-edit.php:190
466
  msgid "Apply to All Sites"
467
  msgstr ""
468
 
469
- #: ../ure-role-edit.php:251
470
- #: ../ure-user-edit.php:163
 
 
 
 
 
 
 
 
 
 
471
  msgid "Update"
472
  msgstr "Захаваць"
473
 
474
- #: ../ure-role-edit.php:251
475
- #: ../ure-user-edit.php:163
476
  msgid "Save Changes"
477
  msgstr "Захаваць змены"
478
 
479
- #: ../ure-role-edit.php:252
480
- #: ../ure-user-edit.php:164
481
  msgid "Cancel"
482
  msgstr "Адмена"
483
 
484
- #: ../ure-role-edit.php:252
485
- #: ../ure-user-edit.php:164
486
  msgid "Cancel not saved changes"
487
  msgstr "Адмова ад захавання змен"
488
 
489
- #: ../ure-role-edit.php:255
490
  #, fuzzy
491
  msgid "Select All"
492
  msgstr "Абяры Ролю:"
493
 
494
- #: ../ure-role-edit.php:255
495
  msgid "Select All Capabilities"
496
  msgstr ""
497
 
498
- #: ../ure-role-edit.php:256
499
  msgid "Unselect All"
500
  msgstr ""
501
 
502
- #: ../ure-role-edit.php:256
503
  msgid "Unselect All Capabilities"
504
  msgstr ""
505
 
506
- #: ../ure-role-edit.php:257
507
  msgid "Reverse"
508
  msgstr ""
509
 
510
- #: ../ure-role-edit.php:257
511
  msgid "Turn checked capabilities off and vise versa"
512
  msgstr ""
513
 
514
- #: ../ure-role-edit.php:260
515
  msgid "Reset"
516
  msgstr "Скід"
517
 
518
- #: ../ure-role-edit.php:260
519
  msgid "Restore Roles from backup copy"
520
  msgstr "Аднавіць Ролі з рэзервовай копіі"
521
 
522
- #: ../ure-role-edit.php:270
523
  msgid "Add New Role"
524
  msgstr "Дадаць новую Ролю"
525
 
526
- #: ../ure-role-edit.php:272
527
  msgid "Name: "
528
  msgstr ""
529
 
530
- #: ../ure-role-edit.php:276
531
  msgid "Make copy of: "
532
  msgstr ""
533
 
534
- #: ../ure-role-edit.php:279
535
- #: ../ure-role-edit.php:308
536
  msgid "Add"
537
  msgstr "Дадаць"
538
 
539
- #: ../ure-role-edit.php:279
540
  msgid "Add New User Role"
541
  msgstr "Дадаць новую Ролю карыстача"
542
 
543
- #: ../ure-role-edit.php:283
544
  msgid "Default Role for New User"
545
  msgstr "Роля па-змаўчанню"
546
 
547
- #: ../ure-role-edit.php:288
548
  msgid "Change"
549
  msgstr "Змяніць"
550
 
551
- #: ../ure-role-edit.php:288
552
  msgid "Set as Default User Role"
553
  msgstr "Усталяваць як роля па-змаўчанню"
554
 
555
- #: ../ure-role-edit.php:298
556
  msgid "Delete"
557
  msgstr "Выдаліць"
558
 
559
- #: ../ure-role-edit.php:298
560
  msgid "Delete User Role"
561
  msgstr "Выдаліць Ролю карыстача"
562
 
563
- #: ../ure-role-edit.php:303
564
- #: ../ure-role-edit.php:308
565
  msgid "Add New Capability"
566
  msgstr "Дадаць новую Ролю"
567
 
568
- #: ../ure-role-edit.php:313
569
  msgid "Remove Capability"
570
  msgstr ""
571
 
572
- #: ../ure-role-edit.php:318
573
  msgid "Remove"
574
  msgstr ""
575
 
576
- #: ../ure-role-edit.php:318
577
  msgid "Remove User Capability"
578
  msgstr ""
579
 
580
- #: ../ure-user-edit.php:67
581
  #, php-format
582
  msgid "User \"%s\" update: please confirm to continue"
583
  msgstr ""
584
 
585
- #: ../ure-user-edit.php:79
586
  msgid "Change capabilities for user"
587
  msgstr ""
588
 
589
- #: ../ure-user-edit.php:82
590
  msgid "Role:"
591
  msgstr "Роля:"
592
 
593
- #: ../ure-user-edit.php:104
594
  msgid "Add capabilities to this user:"
595
  msgstr ""
596
 
597
- #: ../ure-options.php:59
598
- #, fuzzy
599
  msgid "User Roles are restored from the backup data. "
600
  msgstr "Ролі адноўлены з рэзервовай копіі"
601
 
602
- #: ../ure-options.php:125
603
  msgid "Error: "
604
  msgstr ""
605
 
606
- #: ../ure-options.php:125
607
- #: ../ure-options.php:143
608
  msgid "Role"
609
  msgstr "Роля"
610
 
611
- #: ../ure-options.php:125
612
  msgid "does not exist"
613
  msgstr ""
614
 
615
- #: ../ure-options.php:143
616
  msgid "is updated successfully"
617
  msgstr "зменена паспяхова"
618
 
619
- #: ../ure-options.php:152
620
  msgid "User"
621
  msgstr ""
622
 
623
- #: ../ure-options.php:152
624
- #, fuzzy
625
  msgid "capabilities are updated successfully"
626
  msgstr "зменена паспяхова"
627
 
628
- #: ../ure-options.php:215
629
  msgid "About this Plugin:"
630
  msgstr "Пра гэту ўбудову"
631
 
632
- #: ../ure-options.php:216
633
  msgid "Author's website"
634
  msgstr "Вэбсайт аўтара"
635
 
636
- #: ../ure-options.php:217
637
  msgid "Plugin webpage"
638
  msgstr "Старонка ўбудовы"
639
 
640
- #: ../ure-options.php:219
641
  msgid "FAQ"
642
  msgstr "Часта задаваныя пытанні"
643
 
644
- #: ../ure-options.php:220
645
- #, fuzzy
646
  msgid "Greetings"
647
  msgstr "Прывітанні"
648
 
649
- #: ../ure-options.php:242
650
  msgid "Greetings:"
651
  msgstr "Прывітанні"
652
 
653
- #: ../ure-options.php:243
654
  msgid "It's me, the author"
655
  msgstr "Гэта я, аўтар"
656
 
657
- #: ../ure-options.php:244
658
  msgid "For the help with Belorussian translation"
659
  msgstr "за дапамогу з беларускім перакладам"
660
 
661
- #: ../ure-options.php:245
662
  msgid "For the help with Brasilian translation"
663
  msgstr ""
664
 
665
- #: ../ure-options.php:246
 
 
 
 
666
  msgid "For the help with Chinese translation"
667
  msgstr "за дапамогу з китайскім перакладам"
668
 
669
- #: ../ure-options.php:247
670
  msgid "For the help with Dutch translation"
671
  msgstr "за дапамогу з датскім перакладам"
672
 
673
- #: ../ure-options.php:248
674
  msgid "For the help with Finnish translation"
675
  msgstr ""
676
 
677
- #: ../ure-options.php:249
678
- #: ../ure-options.php:250
679
  msgid "For the help with French translation"
680
  msgstr "за дапамогу з французскім перакладам"
681
 
682
- #: ../ure-options.php:251
683
  msgid "For the help with German translation"
684
  msgstr "за дапамогу з нямецкім перакладам"
685
 
686
- #: ../ure-options.php:252
687
- #: ../ure-options.php:253
688
- #, fuzzy
689
  msgid "For the help with Hebrew translation"
690
- msgstr "за дапамогу з французскім перакладам"
691
 
692
- #: ../ure-options.php:254
693
- #, fuzzy
694
  msgid "For the help with Hindi translation"
695
- msgstr "за дапамогу з hungary перакладам"
696
 
697
- #: ../ure-options.php:255
698
  msgid "For the help with Hungarian translation"
699
  msgstr "за дапамогу з hungary перакладам"
700
 
701
- #: ../ure-options.php:256
702
- #: ../ure-options.php:257
703
  msgid "For the help with Italian translation"
704
  msgstr "за дапамогу з італьянскім перакладам"
705
 
706
- #: ../ure-options.php:258
707
  msgid "For the help with Japanese translation"
708
  msgstr "за дапамогу з японскім перакладам"
709
 
710
- #: ../ure-options.php:259
711
- #, fuzzy
712
  msgid "For the help with Lithuanian translation"
713
- msgstr "за дапамогу з італьянскім перакладам"
714
 
715
- #: ../ure-options.php:260
716
- #: ../ure-options.php:261
 
717
  msgid "For the help with Persian translation"
718
  msgstr ""
719
 
720
- #: ../ure-options.php:262
 
721
  msgid "For the help with Polish translation"
722
  msgstr "за дапамогу з польскім перакладам"
723
 
724
- #: ../ure-options.php:263
725
- #: ../ure-options.php:264
726
  msgid "For the help with Spanish translation"
727
  msgstr "за дапамогу з іспанскім перакладам"
728
 
729
- #: ../ure-options.php:265
730
- #, fuzzy
731
  msgid "For the updated Swedish translation"
732
- msgstr "за дапамогу з іспанскім перакладам"
733
 
734
- #: ../ure-options.php:266
735
  msgid "For the help with Swedish translation"
736
  msgstr ""
737
 
738
- #: ../ure-options.php:267
739
  msgid "For the help with Turkish translation"
740
  msgstr "за дапамогу з турецким перакладам"
741
 
742
- #: ../ure-options.php:269
743
  msgid "For the code to hide administrator role"
744
  msgstr "За код, які хавае роля адміністратара"
745
 
746
- #: ../ure-options.php:270
747
  msgid "For the code enhancement suggestion"
748
  msgstr ""
749
 
750
- #: ../ure-options.php:272
751
  msgid "Do you wish to see your name with link to your site here? You are welcome! Your help with translation and new ideas are very appreciated."
752
  msgstr "Жадаеце ўбачыць сваё імя і спасылку на Ваш сайт тут? Сардэчна запрашаем! Ваша дапамога з перакладам і новыя ідэі вітаюцца."
753
 
2
  msgstr ""
3
  "Project-Id-Version: User Role Editor v.2.0\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-09-01 08:28+0700\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Vladimir Garagulya <vladimir@shinephp.com>\n"
8
  "Language-Team: ShinePHP.com <by.marcis@gmail.com>\n"
27
  msgstr "Калі ласка, абновіце!"
28
 
29
  #: ../user-role-editor.php:40
 
30
  msgid "User Role Editor requires PHP 5.0 or newer."
31
+ msgstr "Рэдактар роляў карыстачоў патрабуе PHP 5.0 ці вышэй."
32
 
33
+ #: ../user-role-editor.php:76
34
  msgid "Only"
35
  msgstr ""
36
 
37
+ #: ../user-role-editor.php:76
38
  msgid "is allowed to use"
39
  msgstr ""
40
 
41
+ #: ../user-role-editor.php:82
42
+ #: ../user-role-editor.php:251
43
  msgid "User Role Editor"
44
  msgstr "Рэдактар роляў карыстачоў"
45
 
46
+ #: ../user-role-editor.php:223
47
  msgid "Settings"
48
  msgstr "Усталёўкі"
49
 
50
+ #: ../user-role-editor.php:233
51
+ #: ../includes/ure-options.php:235
52
  msgid "Changelog"
53
  msgstr "Часопіс змен"
54
 
55
+ #: ../user-role-editor.php:280
56
  msgid "Capabilities"
57
  msgstr ""
58
 
59
+ #: ../includes/ure-lib.php:34
60
  msgid "Error is occur. Please check the log file."
61
  msgstr "Адбылася памылка. Праверце лог-файл."
62
 
63
+ #: ../includes/ure-lib.php:144
64
  msgid "Database operation error. Check log file."
65
  msgstr "Памылка працы з базай дадзеных. Праверце лог-файл."
66
 
67
+ #: ../includes/ure-lib.php:177
68
  msgid "No backup data. It is created automatically before the first role data update."
69
  msgstr "Няма рэзервовай копіі. Яна ствараецца аўтаматычна перад першай зменай роляў."
70
 
71
+ #: ../includes/ure-lib.php:215
72
  msgid "Backup record is created for the current role capabilities"
73
  msgstr "Для бягучага размеркавання магчымасцяў па ролях створана рэзервовая копія"
74
 
75
+ #: ../includes/ure-lib.php:329
76
  msgid "Error: Role name must contain latin characters and digits only!"
77
  msgstr "Памылка: павінна ўтрымоўваць толькі лацінскія літары і лічбы"
78
 
79
+ #: ../includes/ure-lib.php:336
80
  #, php-format
81
  msgid "Role %s exists already"
82
  msgstr ""
83
 
84
+ #: ../includes/ure-lib.php:349
85
  msgid "Error is encountered during new role create operation"
86
  msgstr "Адбылася памылка пры стварэнні новай ролі"
87
 
88
+ #: ../includes/ure-lib.php:351
89
  #, php-format
90
  msgid "Role %s is created successfully"
91
  msgstr "Роля %s створана паспяхова"
92
 
93
+ #: ../includes/ure-lib.php:435
94
  msgid "Error encountered during role delete operation"
95
  msgstr "Адбылася памылка пры выдаленні ролі"
96
 
97
+ #: ../includes/ure-lib.php:437
98
  #, php-format
99
  msgid "Role %s is deleted successfully"
100
  msgstr "Роля %s выдалена паспяхова"
101
 
102
+ #: ../includes/ure-lib.php:455
103
  msgid "Error encountered during default role change operation"
104
  msgstr "Адбылася памылка пры змене ролі па-змаўчанню"
105
 
106
+ #: ../includes/ure-lib.php:461
107
  #, php-format
108
  msgid "Default role for new users is set to %s successfully"
109
  msgstr "Роля па-змаўчанню для новых пользователй зменена на %s паспяхова."
110
 
111
+ #: ../includes/ure-lib.php:489
112
  msgid "Editor"
113
  msgstr "Рэдактар"
114
 
115
+ #: ../includes/ure-lib.php:490
116
  msgid "Author"
117
  msgstr "Аўтар"
118
 
119
+ #: ../includes/ure-lib.php:491
120
  msgid "Contributor"
121
  msgstr "Асістэнт"
122
 
123
+ #: ../includes/ure-lib.php:492
124
  msgid "Subscriber"
125
  msgstr "Падпісант"
126
 
127
+ #: ../includes/ure-lib.php:494
128
  msgid "Switch themes"
129
  msgstr "Змяняць тэмы"
130
 
131
+ #: ../includes/ure-lib.php:495
132
  msgid "Edit themes"
133
  msgstr "Змяняць тэмы"
134
 
135
+ #: ../includes/ure-lib.php:496
136
  msgid "Activate plugins"
137
  msgstr "Актываваць убудовы"
138
 
139
+ #: ../includes/ure-lib.php:497
140
  msgid "Edit plugins"
141
  msgstr "Рэдагаваць убудовы"
142
 
143
+ #: ../includes/ure-lib.php:498
144
  msgid "Edit users"
145
  msgstr "Змяняць карыстачоў"
146
 
147
+ #: ../includes/ure-lib.php:499
148
  msgid "Edit files"
149
  msgstr "Змяняць файлы"
150
 
151
+ #: ../includes/ure-lib.php:500
152
  msgid "Manage options"
153
  msgstr "Кіраваць усталёўкамі"
154
 
155
+ #: ../includes/ure-lib.php:501
156
  msgid "Moderate comments"
157
  msgstr "Мадэраваць каментары"
158
 
159
+ #: ../includes/ure-lib.php:502
160
  msgid "Manage categories"
161
  msgstr "Кіраваць катэгорыямі"
162
 
163
+ #: ../includes/ure-lib.php:503
164
  msgid "Manage links"
165
  msgstr "Кіраваць спасылкамі"
166
 
167
+ #: ../includes/ure-lib.php:504
168
  msgid "Upload files"
169
  msgstr "Загружаць файлы"
170
 
171
+ #: ../includes/ure-lib.php:505
172
  msgid "Import"
173
  msgstr "Імпарт"
174
 
175
+ #: ../includes/ure-lib.php:506
176
  msgid "Unfiltered html"
177
  msgstr "html без фільтра"
178
 
179
+ #: ../includes/ure-lib.php:507
180
  msgid "Edit posts"
181
  msgstr "Змяняць артыкулы"
182
 
183
+ #: ../includes/ure-lib.php:508
184
  msgid "Edit others posts"
185
  msgstr "Змяняць чужыя артыкулы"
186
 
187
+ #: ../includes/ure-lib.php:509
188
  msgid "Edit published posts"
189
  msgstr "Рэдагаваць апублікаваныя артыкулы"
190
 
191
+ #: ../includes/ure-lib.php:510
192
  msgid "Publish posts"
193
  msgstr "Публікаваць артыкулы"
194
 
195
+ #: ../includes/ure-lib.php:511
196
  msgid "Edit pages"
197
  msgstr "Змяняць старонкі"
198
 
199
+ #: ../includes/ure-lib.php:512
200
  msgid "Read"
201
  msgstr "Чытанне"
202
 
203
+ #: ../includes/ure-lib.php:513
204
  msgid "Level 10"
205
  msgstr "Узровень 10"
206
 
207
+ #: ../includes/ure-lib.php:514
208
  msgid "Level 9"
209
  msgstr "Узровень 9"
210
 
211
+ #: ../includes/ure-lib.php:515
212
  msgid "Level 8"
213
  msgstr "Узровень 9"
214
 
215
+ #: ../includes/ure-lib.php:516
216
  msgid "Level 7"
217
  msgstr "Узровень 7"
218
 
219
+ #: ../includes/ure-lib.php:517
220
  msgid "Level 6"
221
  msgstr "Узровень 6"
222
 
223
+ #: ../includes/ure-lib.php:518
224
  msgid "Level 5"
225
  msgstr "Узровень 5"
226
 
227
+ #: ../includes/ure-lib.php:519
228
  msgid "Level 4"
229
  msgstr "Узровень 4"
230
 
231
+ #: ../includes/ure-lib.php:520
232
  msgid "Level 3"
233
  msgstr "Узровень 3"
234
 
235
+ #: ../includes/ure-lib.php:521
236
  msgid "Level 2"
237
  msgstr "Узровень 2"
238
 
239
+ #: ../includes/ure-lib.php:522
240
  msgid "Level 1"
241
  msgstr "Узровень 1"
242
 
243
+ #: ../includes/ure-lib.php:523
244
  msgid "Level 0"
245
  msgstr "Узровень 0"
246
 
247
+ #: ../includes/ure-lib.php:524
248
  msgid "Edit others pages"
249
  msgstr "Рэдагаваць чужыя старонкі"
250
 
251
+ #: ../includes/ure-lib.php:525
252
  msgid "Edit published pages"
253
  msgstr "Рэдагаваць апублікаваныя старонкі"
254
 
255
+ #: ../includes/ure-lib.php:526
256
  msgid "Publish pages"
257
  msgstr "Публікаваць старонкі"
258
 
259
+ #: ../includes/ure-lib.php:527
260
  msgid "Delete pages"
261
  msgstr "Выдаляць старонкі"
262
 
263
+ #: ../includes/ure-lib.php:528
264
  msgid "Delete others pages"
265
  msgstr "Выдаліць чужыя старонкі"
266
 
267
+ #: ../includes/ure-lib.php:529
268
  msgid "Delete published pages"
269
  msgstr "Выдаляць апублікаваныя старонкі"
270
 
271
+ #: ../includes/ure-lib.php:530
272
  msgid "Delete posts"
273
  msgstr "Выдаляць артыкулы"
274
 
275
+ #: ../includes/ure-lib.php:531
276
  msgid "Delete others posts"
277
  msgstr "Выдаляць чужыя артыкулы"
278
 
279
+ #: ../includes/ure-lib.php:532
280
  msgid "Delete published posts"
281
  msgstr "Выдаляць апублікаваныя артыкулы"
282
 
283
+ #: ../includes/ure-lib.php:533
284
  msgid "Delete private posts"
285
  msgstr "Выдаляць прыватныя артыкулы"
286
 
287
+ #: ../includes/ure-lib.php:534
288
  msgid "Edit private posts"
289
  msgstr "Рэдагаваць прыватныя артыкулы"
290
 
291
+ #: ../includes/ure-lib.php:535
292
  msgid "Read private posts"
293
  msgstr "Чытаць прыватныя артыкулы"
294
 
295
+ #: ../includes/ure-lib.php:536
296
  msgid "Delete private pages"
297
  msgstr "Выдаляць прыватныя старонкі"
298
 
299
+ #: ../includes/ure-lib.php:537
300
  msgid "Edit private pages"
301
  msgstr "Рэдагаваць прыватныя старонкі"
302
 
303
+ #: ../includes/ure-lib.php:538
304
  msgid "Read private pages"
305
  msgstr "Чытаць прыватныя старонкі"
306
 
307
+ #: ../includes/ure-lib.php:539
308
  msgid "Delete users"
309
  msgstr "Выдаляць карыстачоў"
310
 
311
+ #: ../includes/ure-lib.php:540
312
  msgid "Create users"
313
  msgstr "Ствараць карыстачоў"
314
 
315
+ #: ../includes/ure-lib.php:541
316
  msgid "Unfiltered upload"
317
  msgstr "Загрузка без фільтра"
318
 
319
+ #: ../includes/ure-lib.php:542
320
  msgid "Edit dashboard"
321
  msgstr "Змяняць панэль адміністратара"
322
 
323
+ #: ../includes/ure-lib.php:543
324
  msgid "Update plugins"
325
  msgstr "Абнаўляць убудовы"
326
 
327
+ #: ../includes/ure-lib.php:544
328
  msgid "Delete plugins"
329
  msgstr "Выдаляць убудовы"
330
 
331
+ #: ../includes/ure-lib.php:545
332
  msgid "Install plugins"
333
  msgstr "Усталёўваць убудовы"
334
 
335
+ #: ../includes/ure-lib.php:546
336
  msgid "Update themes"
337
  msgstr "Абнаўляць тэмы"
338
 
339
+ #: ../includes/ure-lib.php:547
340
  msgid "Install themes"
341
  msgstr "Усталёўваць тэмы"
342
 
343
+ #: ../includes/ure-lib.php:548
344
  msgid "Update core"
345
  msgstr ""
346
 
347
+ #: ../includes/ure-lib.php:549
348
  msgid "List users"
349
  msgstr ""
350
 
351
+ #: ../includes/ure-lib.php:550
352
  msgid "Remove users"
353
  msgstr ""
354
 
355
+ #: ../includes/ure-lib.php:551
356
  msgid "Add users"
357
  msgstr ""
358
 
359
+ #: ../includes/ure-lib.php:552
360
  msgid "Promote users"
361
  msgstr ""
362
 
363
+ #: ../includes/ure-lib.php:553
364
  msgid "Edit theme options"
365
  msgstr ""
366
 
367
+ #: ../includes/ure-lib.php:554
368
  msgid "Delete themes"
369
  msgstr ""
370
 
371
+ #: ../includes/ure-lib.php:555
372
  msgid "Export"
373
  msgstr ""
374
 
375
+ #: ../includes/ure-lib.php:639
 
376
  msgid "Error: Capability name must contain latin characters and digits only!"
377
  msgstr "Памылка: павінна ўтрымоўваць толькі лацінскія літары і лічбы"
378
 
379
+ #: ../includes/ure-lib.php:651
380
+ #, php-format
381
  msgid "Capability %s is added successfully"
382
  msgstr "Роля %s створана паспяхова"
383
 
384
+ #: ../includes/ure-lib.php:653
385
  #, php-format
386
  msgid "Capability %s exists already"
387
  msgstr ""
388
 
389
+ #: ../includes/ure-lib.php:802
390
  #, php-format
391
  msgid "Error! You do not have permission to delete this capability: %s!"
392
  msgstr ""
393
 
394
+ #: ../includes/ure-lib.php:824
395
  #, php-format
396
  msgid "Capability %s is removed successfully"
397
  msgstr ""
398
 
399
+ #: ../includes/ure-lib.php:889
400
  msgid "Help"
401
  msgstr ""
402
 
403
+ #: ../includes/ure-role-edit.php:29
404
  msgid "None"
405
  msgstr "Не"
406
 
407
+ #: ../includes/ure-role-edit.php:101
408
  msgid " Name can not be empty!"
409
  msgstr "Найменне ролі не можа быць пустым!"
410
 
411
+ #: ../includes/ure-role-edit.php:105
412
  msgid " Name must contain latin characters and digits only!"
413
  msgstr "Найменне ролі павінна ўтрымоўваць толькі лацінскія літары і лічбы."
414
 
415
+ #: ../includes/ure-role-edit.php:110
416
+ #: ../includes/ure-role-edit.php:361
417
  msgid "Delete Role"
418
  msgstr "Выдаліць Ролю"
419
 
420
+ #: ../includes/ure-role-edit.php:112
421
  msgid "Change Default Role"
422
  msgstr "Усталяваць як роля па-змаўчанню"
423
 
424
+ #: ../includes/ure-role-edit.php:114
425
  msgid "Restore Roles from backup copy. Be careful, backup was created when you started URE 1st time. All changes you made after that will be lost"
426
  msgstr ""
427
 
428
+ #: ../includes/ure-role-edit.php:116
429
  msgid "Warning! Be careful - removing critical capability could crash some plugin or other custom code"
430
  msgstr ""
431
 
432
+ #: ../includes/ure-role-edit.php:118
433
  msgid "Please confirm to continue"
434
  msgstr "Калі ласка, пацвердзіце працяг "
435
 
436
+ #: ../includes/ure-role-edit.php:155
437
  #, php-format
438
  msgid "Role \"%s\" update: please confirm to continue"
439
  msgstr "Змена ролі \"%s\": калі ласка, пацвердзіце працяг "
440
 
441
+ #: ../includes/ure-role-edit.php:163
442
  msgid "Select Role and change its capabilities list"
443
  msgstr "Абяры Ролю і змяні спіс дазволеных аперацый"
444
 
445
+ #: ../includes/ure-role-edit.php:165
446
  msgid "Select Role:"
447
  msgstr "Абяры Ролю:"
448
 
449
+ #: ../includes/ure-role-edit.php:175
450
+ #: ../includes/ure-user-edit.php:91
451
  msgid "Show capabilities in human readable form"
452
  msgstr "Паказ магчымасцяў у чытэльнай форме"
453
 
454
+ #: ../includes/ure-role-edit.php:184
455
+ #: ../includes/ure-user-edit.php:100
456
  msgid "Show deprecated capabilities"
457
  msgstr ""
458
 
459
+ #: ../includes/ure-role-edit.php:188
460
  msgid "If checked, then apply action to ALL sites of this Network"
461
  msgstr ""
462
 
463
+ #: ../includes/ure-role-edit.php:198
464
  msgid "Apply to All Sites"
465
  msgstr ""
466
 
467
+ #: ../includes/ure-role-edit.php:205
468
+ #: ../includes/ure-user-edit.php:105
469
+ msgid "Core capabilities:"
470
+ msgstr ""
471
+
472
+ #: ../includes/ure-role-edit.php:268
473
+ #: ../includes/ure-user-edit.php:167
474
+ msgid "Custom capabilities:"
475
+ msgstr ""
476
+
477
+ #: ../includes/ure-role-edit.php:319
478
+ #: ../includes/ure-user-edit.php:222
479
  msgid "Update"
480
  msgstr "Захаваць"
481
 
482
+ #: ../includes/ure-role-edit.php:319
483
+ #: ../includes/ure-user-edit.php:222
484
  msgid "Save Changes"
485
  msgstr "Захаваць змены"
486
 
487
+ #: ../includes/ure-role-edit.php:320
488
+ #: ../includes/ure-user-edit.php:223
489
  msgid "Cancel"
490
  msgstr "Адмена"
491
 
492
+ #: ../includes/ure-role-edit.php:320
493
+ #: ../includes/ure-user-edit.php:223
494
  msgid "Cancel not saved changes"
495
  msgstr "Адмова ад захавання змен"
496
 
497
+ #: ../includes/ure-role-edit.php:323
498
  #, fuzzy
499
  msgid "Select All"
500
  msgstr "Абяры Ролю:"
501
 
502
+ #: ../includes/ure-role-edit.php:323
503
  msgid "Select All Capabilities"
504
  msgstr ""
505
 
506
+ #: ../includes/ure-role-edit.php:324
507
  msgid "Unselect All"
508
  msgstr ""
509
 
510
+ #: ../includes/ure-role-edit.php:324
511
  msgid "Unselect All Capabilities"
512
  msgstr ""
513
 
514
+ #: ../includes/ure-role-edit.php:325
515
  msgid "Reverse"
516
  msgstr ""
517
 
518
+ #: ../includes/ure-role-edit.php:325
519
  msgid "Turn checked capabilities off and vise versa"
520
  msgstr ""
521
 
522
+ #: ../includes/ure-role-edit.php:328
523
  msgid "Reset"
524
  msgstr "Скід"
525
 
526
+ #: ../includes/ure-role-edit.php:328
527
  msgid "Restore Roles from backup copy"
528
  msgstr "Аднавіць Ролі з рэзервовай копіі"
529
 
530
+ #: ../includes/ure-role-edit.php:338
531
  msgid "Add New Role"
532
  msgstr "Дадаць новую Ролю"
533
 
534
+ #: ../includes/ure-role-edit.php:340
535
  msgid "Name: "
536
  msgstr ""
537
 
538
+ #: ../includes/ure-role-edit.php:344
539
  msgid "Make copy of: "
540
  msgstr ""
541
 
542
+ #: ../includes/ure-role-edit.php:347
543
+ #: ../includes/ure-role-edit.php:376
544
  msgid "Add"
545
  msgstr "Дадаць"
546
 
547
+ #: ../includes/ure-role-edit.php:347
548
  msgid "Add New User Role"
549
  msgstr "Дадаць новую Ролю карыстача"
550
 
551
+ #: ../includes/ure-role-edit.php:351
552
  msgid "Default Role for New User"
553
  msgstr "Роля па-змаўчанню"
554
 
555
+ #: ../includes/ure-role-edit.php:356
556
  msgid "Change"
557
  msgstr "Змяніць"
558
 
559
+ #: ../includes/ure-role-edit.php:356
560
  msgid "Set as Default User Role"
561
  msgstr "Усталяваць як роля па-змаўчанню"
562
 
563
+ #: ../includes/ure-role-edit.php:366
564
  msgid "Delete"
565
  msgstr "Выдаліць"
566
 
567
+ #: ../includes/ure-role-edit.php:366
568
  msgid "Delete User Role"
569
  msgstr "Выдаліць Ролю карыстача"
570
 
571
+ #: ../includes/ure-role-edit.php:371
572
+ #: ../includes/ure-role-edit.php:376
573
  msgid "Add New Capability"
574
  msgstr "Дадаць новую Ролю"
575
 
576
+ #: ../includes/ure-role-edit.php:381
577
  msgid "Remove Capability"
578
  msgstr ""
579
 
580
+ #: ../includes/ure-role-edit.php:386
581
  msgid "Remove"
582
  msgstr ""
583
 
584
+ #: ../includes/ure-role-edit.php:386
585
  msgid "Remove User Capability"
586
  msgstr ""
587
 
588
+ #: ../includes/ure-user-edit.php:67
589
  #, php-format
590
  msgid "User \"%s\" update: please confirm to continue"
591
  msgstr ""
592
 
593
+ #: ../includes/ure-user-edit.php:79
594
  msgid "Change capabilities for user"
595
  msgstr ""
596
 
597
+ #: ../includes/ure-user-edit.php:82
598
  msgid "Role:"
599
  msgstr "Роля:"
600
 
601
+ #: ../includes/ure-user-edit.php:104
602
  msgid "Add capabilities to this user:"
603
  msgstr ""
604
 
605
+ #: ../includes/ure-options.php:59
 
606
  msgid "User Roles are restored from the backup data. "
607
  msgstr "Ролі адноўлены з рэзервовай копіі"
608
 
609
+ #: ../includes/ure-options.php:130
610
  msgid "Error: "
611
  msgstr ""
612
 
613
+ #: ../includes/ure-options.php:130
614
+ #: ../includes/ure-options.php:146
615
  msgid "Role"
616
  msgstr "Роля"
617
 
618
+ #: ../includes/ure-options.php:130
619
  msgid "does not exist"
620
  msgstr ""
621
 
622
+ #: ../includes/ure-options.php:146
623
  msgid "is updated successfully"
624
  msgstr "зменена паспяхова"
625
 
626
+ #: ../includes/ure-options.php:154
627
  msgid "User"
628
  msgstr ""
629
 
630
+ #: ../includes/ure-options.php:154
 
631
  msgid "capabilities are updated successfully"
632
  msgstr "зменена паспяхова"
633
 
634
+ #: ../includes/ure-options.php:232
635
  msgid "About this Plugin:"
636
  msgstr "Пра гэту ўбудову"
637
 
638
+ #: ../includes/ure-options.php:233
639
  msgid "Author's website"
640
  msgstr "Вэбсайт аўтара"
641
 
642
+ #: ../includes/ure-options.php:234
643
  msgid "Plugin webpage"
644
  msgstr "Старонка ўбудовы"
645
 
646
+ #: ../includes/ure-options.php:236
647
  msgid "FAQ"
648
  msgstr "Часта задаваныя пытанні"
649
 
650
+ #: ../includes/ure-options.php:237
 
651
  msgid "Greetings"
652
  msgstr "Прывітанні"
653
 
654
+ #: ../includes/ure-options.php:259
655
  msgid "Greetings:"
656
  msgstr "Прывітанні"
657
 
658
+ #: ../includes/ure-options.php:260
659
  msgid "It's me, the author"
660
  msgstr "Гэта я, аўтар"
661
 
662
+ #: ../includes/ure-options.php:261
663
  msgid "For the help with Belorussian translation"
664
  msgstr "за дапамогу з беларускім перакладам"
665
 
666
+ #: ../includes/ure-options.php:262
667
  msgid "For the help with Brasilian translation"
668
  msgstr ""
669
 
670
+ #: ../includes/ure-options.php:263
671
+ msgid "For the help with Brasilian Portuguese translation"
672
+ msgstr "за дапамогу з бразильскім перакладам"
673
+
674
+ #: ../includes/ure-options.php:264
675
  msgid "For the help with Chinese translation"
676
  msgstr "за дапамогу з китайскім перакладам"
677
 
678
+ #: ../includes/ure-options.php:265
679
  msgid "For the help with Dutch translation"
680
  msgstr "за дапамогу з датскім перакладам"
681
 
682
+ #: ../includes/ure-options.php:266
683
  msgid "For the help with Finnish translation"
684
  msgstr ""
685
 
686
+ #: ../includes/ure-options.php:267
687
+ #: ../includes/ure-options.php:268
688
  msgid "For the help with French translation"
689
  msgstr "за дапамогу з французскім перакладам"
690
 
691
+ #: ../includes/ure-options.php:269
692
  msgid "For the help with German translation"
693
  msgstr "за дапамогу з нямецкім перакладам"
694
 
695
+ #: ../includes/ure-options.php:270
696
+ #: ../includes/ure-options.php:271
 
697
  msgid "For the help with Hebrew translation"
698
+ msgstr "за дапамогу з івріт перакладам"
699
 
700
+ #: ../includes/ure-options.php:272
 
701
  msgid "For the help with Hindi translation"
702
+ msgstr "за дапамогу з индийским перакладам"
703
 
704
+ #: ../includes/ure-options.php:273
705
  msgid "For the help with Hungarian translation"
706
  msgstr "за дапамогу з hungary перакладам"
707
 
708
+ #: ../includes/ure-options.php:274
709
+ #: ../includes/ure-options.php:275
710
  msgid "For the help with Italian translation"
711
  msgstr "за дапамогу з італьянскім перакладам"
712
 
713
+ #: ../includes/ure-options.php:276
714
  msgid "For the help with Japanese translation"
715
  msgstr "за дапамогу з японскім перакладам"
716
 
717
+ #: ../includes/ure-options.php:277
 
718
  msgid "For the help with Lithuanian translation"
719
+ msgstr "за дапамогу з літовскім перакладам"
720
 
721
+ #: ../includes/ure-options.php:278
722
+ #: ../includes/ure-options.php:279
723
+ #: ../includes/ure-options.php:280
724
  msgid "For the help with Persian translation"
725
  msgstr ""
726
 
727
+ #: ../includes/ure-options.php:281
728
+ #: ../includes/ure-options.php:282
729
  msgid "For the help with Polish translation"
730
  msgstr "за дапамогу з польскім перакладам"
731
 
732
+ #: ../includes/ure-options.php:283
733
+ #: ../includes/ure-options.php:284
734
  msgid "For the help with Spanish translation"
735
  msgstr "за дапамогу з іспанскім перакладам"
736
 
737
+ #: ../includes/ure-options.php:285
 
738
  msgid "For the updated Swedish translation"
739
+ msgstr "за дапамогу з шведскім перакладам"
740
 
741
+ #: ../includes/ure-options.php:286
742
  msgid "For the help with Swedish translation"
743
  msgstr ""
744
 
745
+ #: ../includes/ure-options.php:287
746
  msgid "For the help with Turkish translation"
747
  msgstr "за дапамогу з турецким перакладам"
748
 
749
+ #: ../includes/ure-options.php:289
750
  msgid "For the code to hide administrator role"
751
  msgstr "За код, які хавае роля адміністратара"
752
 
753
+ #: ../includes/ure-options.php:290
754
  msgid "For the code enhancement suggestion"
755
  msgstr ""
756
 
757
+ #: ../includes/ure-options.php:292
758
  msgid "Do you wish to see your name with link to your site here? You are welcome! Your help with translation and new ideas are very appreciated."
759
  msgstr "Жадаеце ўбачыць сваё імя і спасылку на Ваш сайт тут? Сардэчна запрашаем! Ваша дапамога з перакладам і новыя ідэі вітаюцца."
760
 
lang/ure-de_DE.mo CHANGED
Binary file
lang/ure-de_DE.po CHANGED
@@ -1,10 +1,10 @@
1
  msgid ""
2
  msgstr ""
3
- "Project-Id-Version: User Role Editor v. 3.7.2\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2012-06-23 23:10+0700\n"
6
- "PO-Revision-Date: 2012-07-24 18:42+0100\n"
7
- "Last-Translator: Peter Becker-Heidmann <peter@becker-heidmann.de>\n"
8
  "Language-Team: Peter Becker-Heidmann <peter@becker-heidmann.de>\n"
9
  "Language: \n"
10
  "MIME-Version: 1.0\n"
@@ -35,859 +35,878 @@ msgstr "Bitte aktualisieren!"
35
  msgid "User Role Editor requires PHP 5.0 or newer."
36
  msgstr "User Role Editor benötigt PHP 5.0 oder aktueller"
37
 
38
- #: user-role-editor.php:65
39
  msgid "Only"
40
  msgstr "Nur"
41
 
42
- #: user-role-editor.php:65
43
  msgid "is allowed to use"
44
  msgstr "ist gestattet zu benutzen"
45
 
46
  # @ ure
47
- #: user-role-editor.php:71
48
- #: user-role-editor.php:246
49
  msgid "User Role Editor"
50
  msgstr "User Role Editor"
51
 
52
  # @ ure
53
- #: user-role-editor.php:218
54
  msgid "Settings"
55
  msgstr "Einstellungen"
56
 
57
  # @ ure
58
- #: user-role-editor.php:228
59
- #: ure-options.php:218
60
  msgid "Changelog"
61
  msgstr "Änderungen"
62
 
63
- #: user-role-editor.php:275
64
  msgid "Capabilities"
65
  msgstr "Rechte"
66
 
67
  # @ ure
68
- #: ure-lib.php:45
69
  msgid "Error is occur. Please check the log file."
70
  msgstr "Ein Fehler ist aufgetreten. Bitte überprüfen Sie die Log-Datei."
71
 
72
  # @ ure
73
- #: ure-lib.php:155
74
  msgid "Database operation error. Check log file."
75
  msgstr "Datenbankfehler. Überprüfen Sie die Protokolldatei."
76
 
77
  # @ ure
78
- #: ure-lib.php:188
79
  msgid "No backup data. It is created automatically before the first role data update."
80
  msgstr "Keine Sicherungskopie vorhanden. Sie wird automatisch vor der ersten Aktualisierung von Rollen-Daten erstellt."
81
 
82
  # @ ure
83
- #: ure-lib.php:226
84
  msgid "Backup record is created for the current role capabilities"
85
  msgstr "Sicherheitskopie der aktuellen Rollenbefugnisse wird erstellt"
86
 
87
  # @ ure
88
- #: ure-lib.php:345
89
  msgid "Error: Role name must contain latin characters and digits only!"
90
  msgstr "Fehler: Der Rollen-Name darf nur Buchstaben und Ziffern enthalten!"
91
 
92
  # @ ure
93
- #: ure-lib.php:352
94
  #, php-format
95
  msgid "Role %s exists already"
96
  msgstr "Rolle %s existiert bereits"
97
 
98
  # @ ure
99
- #: ure-lib.php:365
100
  msgid "Error is encountered during new role create operation"
101
  msgstr "Ein Fehler ist beim Erstellen der neuen Rolle aufgetreten"
102
 
103
  # @ ure
104
- #: ure-lib.php:367
105
  #, php-format
106
  msgid "Role %s is created successfully"
107
  msgstr "Rolle %s wurde erfolgreich erstellt"
108
 
109
  # @ ure
110
- #: ure-lib.php:451
111
  msgid "Error encountered during role delete operation"
112
  msgstr "Ein Fehler ist während des Löschvorgangs der Rolle aufgetreten"
113
 
114
  # @ ure
115
- #: ure-lib.php:453
116
  #, php-format
117
  msgid "Role %s is deleted successfully"
118
  msgstr "Rolle %s wurde erfolgreich gelöscht"
119
 
120
  # @ ure
121
- #: ure-lib.php:471
122
  msgid "Error encountered during default role change operation"
123
  msgstr "Ein Fehler ist während Änderung der Standard-Rolle aufgetreten"
124
 
125
  # @ ure
126
- #: ure-lib.php:477
127
  #, php-format
128
  msgid "Default role for new users is set to %s successfully"
129
  msgstr "Standard-Rolle für neue Benutzer erfolgreich auf %s gesetzt"
130
 
131
  # @ ure
132
- #: ure-lib.php:505
133
  msgid "Editor"
134
  msgstr "Redakteur"
135
 
136
  # @ ure
137
- #: ure-lib.php:506
138
  msgid "Author"
139
  msgstr "Autor"
140
 
141
  # @ ure
142
- #: ure-lib.php:507
143
  msgid "Contributor"
144
  msgstr "Mitarbeiter"
145
 
146
  # @ ure
147
- #: ure-lib.php:508
148
  msgid "Subscriber"
149
  msgstr "Abonnent"
150
 
151
  # @ ure
152
- #: ure-lib.php:510
153
  msgid "Switch themes"
154
  msgstr "Design auswählen"
155
 
156
  # @ ure
157
- #: ure-lib.php:511
158
  msgid "Edit themes"
159
  msgstr "Design bearbeiten"
160
 
161
  # @ ure
162
- #: ure-lib.php:512
163
  msgid "Activate plugins"
164
  msgstr "Plugins aktivieren"
165
 
166
  # @ ure
167
- #: ure-lib.php:513
168
  msgid "Edit plugins"
169
  msgstr "Plugins bearbeiten"
170
 
171
  # @ ure
172
- #: ure-lib.php:514
173
  msgid "Edit users"
174
  msgstr "Benutzer bearbeiten"
175
 
176
  # @ ure
177
- #: ure-lib.php:515
178
  msgid "Edit files"
179
  msgstr "Dateien bearbeiten"
180
 
181
  # @ ure
182
- #: ure-lib.php:516
183
  msgid "Manage options"
184
  msgstr "Eigenschaften verwalten"
185
 
186
  # @ ure
187
- #: ure-lib.php:517
188
  msgid "Moderate comments"
189
  msgstr "Kommentare moderieren"
190
 
191
  # @ ure
192
- #: ure-lib.php:518
193
  msgid "Manage categories"
194
  msgstr "Kategorien verwalten"
195
 
196
  # @ ure
197
- #: ure-lib.php:519
198
  msgid "Manage links"
199
  msgstr "Links verwalten"
200
 
201
  # @ ure
202
- #: ure-lib.php:520
203
  msgid "Upload files"
204
  msgstr "Dateien hochladen"
205
 
206
  # @ ure
207
- #: ure-lib.php:521
208
  msgid "Import"
209
  msgstr "Import"
210
 
211
  # @ ure
212
- #: ure-lib.php:522
213
  msgid "Unfiltered html"
214
  msgstr "Ungefiltertes Html"
215
 
216
  # @ ure
217
- #: ure-lib.php:523
218
  msgid "Edit posts"
219
  msgstr "Artikel verwalten"
220
 
221
  # @ ure
222
- #: ure-lib.php:524
223
  msgid "Edit others posts"
224
  msgstr "Artikel anderer Benutzer verwalten"
225
 
226
  # @ ure
227
- #: ure-lib.php:525
228
  msgid "Edit published posts"
229
  msgstr "Veröffentlichte Artikel bearbeiten"
230
 
231
  # @ ure
232
- #: ure-lib.php:526
233
  msgid "Publish posts"
234
  msgstr "Artikel veröffentlichen"
235
 
236
  # @ ure
237
- #: ure-lib.php:527
238
  msgid "Edit pages"
239
  msgstr "Seiten bearbeiten"
240
 
241
  # @ ure
242
- #: ure-lib.php:528
243
  msgid "Read"
244
  msgstr "Lesen"
245
 
246
  # @ ure
247
- #: ure-lib.php:529
248
  msgid "Level 10"
249
  msgstr ""
250
 
251
  # @ ure
252
- #: ure-lib.php:530
253
  msgid "Level 9"
254
  msgstr ""
255
 
256
  # @ ure
257
- #: ure-lib.php:531
258
  msgid "Level 8"
259
  msgstr ""
260
 
261
  # @ ure
262
- #: ure-lib.php:532
263
  msgid "Level 7"
264
  msgstr ""
265
 
266
  # @ ure
267
- #: ure-lib.php:533
268
  msgid "Level 6"
269
  msgstr ""
270
 
271
  # @ ure
272
- #: ure-lib.php:534
273
  msgid "Level 5"
274
  msgstr ""
275
 
276
  # @ ure
277
- #: ure-lib.php:535
278
  msgid "Level 4"
279
  msgstr ""
280
 
281
  # @ ure
282
- #: ure-lib.php:536
283
  msgid "Level 3"
284
  msgstr ""
285
 
286
  # @ ure
287
- #: ure-lib.php:537
288
  msgid "Level 2"
289
  msgstr ""
290
 
291
  # @ ure
292
- #: ure-lib.php:538
293
  msgid "Level 1"
294
  msgstr ""
295
 
296
  # @ ure
297
- #: ure-lib.php:539
298
  msgid "Level 0"
299
  msgstr ""
300
 
301
  # @ ure
302
- #: ure-lib.php:540
303
  msgid "Edit others pages"
304
  msgstr "Seiten anderer Benutzer bearbeiten"
305
 
306
  # @ ure
307
- #: ure-lib.php:541
308
  msgid "Edit published pages"
309
  msgstr "Veröffentlichte Seiten bearbeiten"
310
 
311
  # @ ure
312
- #: ure-lib.php:542
313
  msgid "Publish pages"
314
  msgstr "Seiten veröffentlichen"
315
 
316
  # @ ure
317
- #: ure-lib.php:543
318
  msgid "Delete pages"
319
  msgstr "Seiten löschen"
320
 
321
  # @ ure
322
- #: ure-lib.php:544
323
  msgid "Delete others pages"
324
  msgstr "Seiten anderer Benutzer löschen"
325
 
326
  # @ ure
327
- #: ure-lib.php:545
328
  msgid "Delete published pages"
329
  msgstr "Veröffentlichte Seiten löschen"
330
 
331
  # @ ure
332
- #: ure-lib.php:546
333
  msgid "Delete posts"
334
  msgstr "Artikel löschen"
335
 
336
  # @ ure
337
- #: ure-lib.php:547
338
  msgid "Delete others posts"
339
  msgstr "Artikel anderer Benutzer löschen"
340
 
341
  # @ ure
342
- #: ure-lib.php:548
343
  msgid "Delete published posts"
344
- msgstr "Veröffentlichte Seiten löschen"
345
 
346
  # @ ure
347
- #: ure-lib.php:549
348
  msgid "Delete private posts"
349
  msgstr "Private Artikel löschen"
350
 
351
  # @ ure
352
- #: ure-lib.php:550
353
  msgid "Edit private posts"
354
  msgstr "Private Artikel bearbeiten"
355
 
356
  # @ ure
357
- #: ure-lib.php:551
358
  msgid "Read private posts"
359
  msgstr "Private Artikel lesen"
360
 
361
  # @ ure
362
- #: ure-lib.php:552
363
  msgid "Delete private pages"
364
  msgstr "Private Artikel löschen"
365
 
366
  # @ ure
367
- #: ure-lib.php:553
368
  msgid "Edit private pages"
369
  msgstr "Private Seiten bearbeiten"
370
 
371
  # @ ure
372
- #: ure-lib.php:554
373
  msgid "Read private pages"
374
  msgstr "Private Seiten lesen"
375
 
376
  # @ ure
377
- #: ure-lib.php:555
378
  msgid "Delete users"
379
  msgstr "Benutzer löschen"
380
 
381
  # @ ure
382
- #: ure-lib.php:556
383
  msgid "Create users"
384
  msgstr "Benutzer erstellen"
385
 
386
  # @ ure
387
- #: ure-lib.php:557
388
  msgid "Unfiltered upload"
389
  msgstr "Ungefiltertes Hochladen"
390
 
391
  # @ ure
392
- #: ure-lib.php:558
393
  msgid "Edit dashboard"
394
  msgstr "Dashboard bearbeiten"
395
 
396
  # @ ure
397
- #: ure-lib.php:559
398
  msgid "Update plugins"
399
  msgstr "Plugins aktualisieren"
400
 
401
  # @ ure
402
- #: ure-lib.php:560
403
  msgid "Delete plugins"
404
  msgstr "Plugins löschen"
405
 
406
  # @ ure
407
- #: ure-lib.php:561
408
  msgid "Install plugins"
409
  msgstr "Plugins installieren"
410
 
411
  # @ ure
412
- #: ure-lib.php:562
413
  msgid "Update themes"
414
  msgstr "Designs aktualisieren"
415
 
416
  # @ ure
417
- #: ure-lib.php:563
418
  msgid "Install themes"
419
  msgstr "Designs installieren"
420
 
421
  # @ ure
422
- #: ure-lib.php:564
423
  msgid "Update core"
424
  msgstr "Wordpress aktualisieren"
425
 
426
  # @ ure
427
- #: ure-lib.php:565
428
  msgid "List users"
429
  msgstr "Benutzer auflisten"
430
 
431
  # @ ure
432
- #: ure-lib.php:566
433
  msgid "Remove users"
434
  msgstr "Benutzer entfernen"
435
 
436
  # @ ure
437
- #: ure-lib.php:567
438
  msgid "Add users"
439
  msgstr "Benutzer hinzufügen"
440
 
441
  # @ ure
442
- #: ure-lib.php:568
443
  msgid "Promote users"
444
  msgstr "Benutzer vorschlagen"
445
 
446
  # @ ure
447
- #: ure-lib.php:569
448
  msgid "Edit theme options"
449
  msgstr "Design-Eigenschaften bearbeiten"
450
 
451
  # @ ure
452
- #: ure-lib.php:570
453
  msgid "Delete themes"
454
  msgstr "Designs löschen"
455
 
456
  # @ ure
457
- #: ure-lib.php:571
458
  msgid "Export"
459
  msgstr "Export"
460
 
461
  # @ ure
462
- #: ure-lib.php:655
463
  msgid "Error: Capability name must contain latin characters and digits only!"
464
  msgstr "Fehler: Der Name des Rechts darf nur Buchstaben und Ziffern enthalten!"
465
 
466
  # @ ure
467
- #: ure-lib.php:667
468
  #, php-format
469
  msgid "Capability %s is added successfully"
470
  msgstr "Recht %s wurde erfolgreich hinzugefügt"
471
 
472
- #: ure-lib.php:669
473
  #, php-format
474
  msgid "Capability %s exists already"
475
  msgstr "Recht %s existiert bereits"
476
 
477
- #: ure-lib.php:818
478
  #, php-format
479
  msgid "Error! You do not have permission to delete this capability: %s!"
480
  msgstr "Fehler: Sie haben nicht die Erlaubnis, dieses Recht zu löschen: %s!"
481
 
482
  # @ ure
483
- #: ure-lib.php:840
484
  #, php-format
485
  msgid "Capability %s is removed successfully"
486
  msgstr "Das Recht %s wurde erfogreich entfernt"
487
 
488
- #: ure-lib.php:902
489
  msgid "Help"
490
  msgstr "Hilfe"
491
 
492
  # @ ure
493
- #: ure-role-edit.php:29
494
  msgid "None"
495
  msgstr "Nichts"
496
 
497
  # @ ure
498
- #: ure-role-edit.php:93
499
  msgid " Name can not be empty!"
500
  msgstr "Name darf nicht leer sein!"
501
 
502
  # @ ure
503
- #: ure-role-edit.php:97
504
  msgid " Name must contain latin characters and digits only!"
505
  msgstr "Der Name darf nur Buchstaben und Ziffern enthalten!"
506
 
507
  # @ ure
508
- #: ure-role-edit.php:102
509
- #: ure-role-edit.php:293
510
  msgid "Delete Role"
511
  msgstr "Löschen der Rolle"
512
 
513
  # @ ure
514
- #: ure-role-edit.php:104
515
  msgid "Change Default Role"
516
  msgstr "Ändern der Standard-Rolle"
517
 
518
- #: ure-role-edit.php:106
519
  msgid "Restore Roles from backup copy. Be careful, backup was created when you started URE 1st time. All changes you made after that will be lost"
520
  msgstr "Wiederherstellung der Rollen von der Sicherungskopie. Seien Sie vorsichtig, die Sicherung wurde bei Ihrer ersten Benutzung von URE erstellt. Alle Änderungen, die Sie danach vorgenommen haben, gehen verloren"
521
 
522
- #: ure-role-edit.php:108
523
  msgid "Warning! Be careful - removing critical capability could crash some plugin or other custom code"
524
  msgstr "Achtung! Seien Sie vorsichtig - das Löschen kritischer Rechte könnte Plugin- oder angepassten Code zerstören."
525
 
526
  # @ ure
527
- #: ure-role-edit.php:110
528
  msgid "Please confirm to continue"
529
  msgstr "Bestätigen Sie bitte, um fortzufahren"
530
 
531
  # @ ure
532
- #: ure-role-edit.php:147
533
  #, php-format
534
  msgid "Role \"%s\" update: please confirm to continue"
535
  msgstr "Aktualisierung der Rolle \"%s\": Zum Fortfahren bitte bestätigen"
536
 
537
  # @ ure
538
- #: ure-role-edit.php:155
539
  msgid "Select Role and change its capabilities list"
540
  msgstr "Eine Rolle auswählen und ihre Rechte ändern"
541
 
542
  # @ ure
543
- #: ure-role-edit.php:157
544
  msgid "Select Role:"
545
  msgstr "Eine Rolle auswählen:"
546
 
547
  # @ ure
548
- #: ure-role-edit.php:167
549
- #: ure-user-edit.php:91
550
  msgid "Show capabilities in human readable form"
551
  msgstr "Anzeige der Rechte in allgemeinverständlicher Form"
552
 
553
- #: ure-role-edit.php:176
554
- #: ure-user-edit.php:100
555
  msgid "Show deprecated capabilities"
556
  msgstr "Zeige herabgesetzte Rechte"
557
 
558
- #: ure-role-edit.php:180
559
  msgid "If checked, then apply action to ALL sites of this Network"
560
  msgstr "Fall aktiviert, wende die Aktion auf ALLE Webpräsenzen"
561
 
562
- #: ure-role-edit.php:190
563
  msgid "Apply to All Sites"
564
  msgstr "Wende auf alle Webpräsenzen an"
565
 
 
 
 
 
 
 
 
 
 
 
 
566
  # @ ure
567
- #: ure-role-edit.php:251
568
- #: ure-user-edit.php:163
569
  msgid "Update"
570
  msgstr "Aktualisieren"
571
 
572
  # @ ure
573
- #: ure-role-edit.php:251
574
- #: ure-user-edit.php:163
575
  msgid "Save Changes"
576
  msgstr "Änderungen sichern"
577
 
578
  # @ ure
579
- #: ure-role-edit.php:252
580
- #: ure-user-edit.php:164
581
  msgid "Cancel"
582
  msgstr "Abbrechen"
583
 
584
  # @ ure
585
- #: ure-role-edit.php:252
586
- #: ure-user-edit.php:164
587
  msgid "Cancel not saved changes"
588
  msgstr "Ungesicherte Änderungen verwerfen"
589
 
590
  # @ ure
591
- #: ure-role-edit.php:255
592
  msgid "Select All"
593
  msgstr "Wähle alle aus"
594
 
595
- #: ure-role-edit.php:255
596
  msgid "Select All Capabilities"
597
  msgstr "Wähle alle Rechte"
598
 
599
- #: ure-role-edit.php:256
600
  msgid "Unselect All"
601
  msgstr "Wähle alle ab"
602
 
603
- #: ure-role-edit.php:256
604
  msgid "Unselect All Capabilities"
605
  msgstr "Wähle alle Rechte ab"
606
 
607
- #: ure-role-edit.php:257
608
  msgid "Reverse"
609
  msgstr "Rückgängig"
610
 
611
- #: ure-role-edit.php:257
612
  msgid "Turn checked capabilities off and vise versa"
613
  msgstr "Schalte alle markierten Rechte ab und umgekehrt"
614
 
615
  # @ ure
616
- #: ure-role-edit.php:260
617
  msgid "Reset"
618
  msgstr "Zurücksetzen"
619
 
620
  # @ ure
621
- #: ure-role-edit.php:260
622
  msgid "Restore Roles from backup copy"
623
  msgstr "Wiederherstellung der Rollen von der Sicherheitskopie"
624
 
625
  # @ ure
626
- #: ure-role-edit.php:270
627
  msgid "Add New Role"
628
  msgstr "Neue Rolle hinzufügen"
629
 
630
- #: ure-role-edit.php:272
631
  msgid "Name: "
632
  msgstr "Name:"
633
 
634
- #: ure-role-edit.php:276
635
  msgid "Make copy of: "
636
  msgstr "Erstelle Kopie von:"
637
 
638
  # @ ure
639
- #: ure-role-edit.php:279
640
- #: ure-role-edit.php:308
641
  msgid "Add"
642
  msgstr "Hinzufügen"
643
 
644
  # @ ure
645
- #: ure-role-edit.php:279
646
  msgid "Add New User Role"
647
  msgstr "Neue Benutzer-Rolle hinzufügen"
648
 
649
  # @ ure
650
- #: ure-role-edit.php:283
651
  msgid "Default Role for New User"
652
  msgstr "Standard-Rolle für neuen Benutzer"
653
 
654
  # @ ure
655
- #: ure-role-edit.php:288
656
  msgid "Change"
657
  msgstr "Ändern"
658
 
659
  # @ ure
660
- #: ure-role-edit.php:288
661
  msgid "Set as Default User Role"
662
  msgstr "Als Standard-Benutzer-Rolle setzen"
663
 
664
  # @ ure
665
- #: ure-role-edit.php:298
666
  msgid "Delete"
667
  msgstr "Löschen"
668
 
669
  # @ ure
670
- #: ure-role-edit.php:298
671
  msgid "Delete User Role"
672
  msgstr "Löschen der Benutzer-Rolle"
673
 
674
  # @ ure
675
- #: ure-role-edit.php:303
676
- #: ure-role-edit.php:308
677
  msgid "Add New Capability"
678
  msgstr "Füge neues Recht hinzu"
679
 
680
- #: ure-role-edit.php:313
681
  msgid "Remove Capability"
682
  msgstr "Entferne Recht"
683
 
684
  # @ ure
685
- #: ure-role-edit.php:318
686
  msgid "Remove"
687
  msgstr "Entferne"
688
 
689
- #: ure-role-edit.php:318
690
  msgid "Remove User Capability"
691
  msgstr "Entferne Benutzerrecht"
692
 
693
  # @ ure
694
- #: ure-user-edit.php:67
695
  #, php-format
696
  msgid "User \"%s\" update: please confirm to continue"
697
  msgstr "Benutzer \"%s\" Aktualisierung: Bitte bestätigen, um fortzufahren"
698
 
699
- #: ure-user-edit.php:79
700
  msgid "Change capabilities for user"
701
  msgstr "Ändere Rechte für Benutzer"
702
 
703
  # @ ure
704
- #: ure-user-edit.php:82
705
  msgid "Role:"
706
  msgstr "Rolle:"
707
 
708
- #: ure-user-edit.php:104
709
  msgid "Add capabilities to this user:"
710
  msgstr "Füge Rechte für diesen Benutzer hinzu:"
711
 
712
  # @ ure
713
- #: ure-options.php:59
714
  msgid "User Roles are restored from the backup data. "
715
  msgstr "Rollenbefugnisse werden von der Sicherheitskopie wiederhergestellt."
716
 
717
- #: ure-options.php:125
718
  msgid "Error: "
719
  msgstr "Fehler:"
720
 
721
  # @ ure
722
- #: ure-options.php:125
723
- #: ure-options.php:143
724
  msgid "Role"
725
  msgstr "Rolle"
726
 
727
- #: ure-options.php:125
728
  msgid "does not exist"
729
  msgstr "existiert nicht"
730
 
731
  # @ ure
732
- #: ure-options.php:143
733
  msgid "is updated successfully"
734
  msgstr "wurde erfolgreich aktualisiert"
735
 
736
- #: ure-options.php:152
737
  msgid "User"
738
  msgstr "Benutzer"
739
 
740
  # @ ure
741
- #: ure-options.php:152
742
  msgid "capabilities are updated successfully"
743
  msgstr "Rechte wurden erfolgreich aktualisiert"
744
 
745
  # @ ure
746
- #: ure-options.php:215
747
  msgid "About this Plugin:"
748
  msgstr "Über dieses Plugin:"
749
 
750
  # @ ure
751
- #: ure-options.php:216
752
  msgid "Author's website"
753
  msgstr "Webseite des Autors"
754
 
755
  # @ ure
756
- #: ure-options.php:217
757
  msgid "Plugin webpage"
758
  msgstr "Webseite des Plugins"
759
 
760
  # @ ure
761
- #: ure-options.php:219
762
  msgid "FAQ"
763
  msgstr "FAQ"
764
 
765
  # @ ure
766
- #: ure-options.php:220
767
  msgid "Greetings"
768
  msgstr "Mitarbeiter:"
769
 
770
  # @ ure
771
- #: ure-options.php:242
772
  msgid "Greetings:"
773
  msgstr "Mitarbeiter:"
774
 
775
  # @ ure
776
- #: ure-options.php:243
777
  msgid "It's me, the author"
778
  msgstr "Der Autor"
779
 
780
  # @ ure
781
- #: ure-options.php:244
782
  msgid "For the help with Belorussian translation"
783
  msgstr "Für die Hilfe bei der Übersetzung ins Weißrussische"
784
 
785
  # @ ure
786
- #: ure-options.php:245
787
  msgid "For the help with Brasilian translation"
788
  msgstr "Für die Hilfe bei der Übersetzung ins Brasilianische"
789
 
790
  # @ ure
791
- #: ure-options.php:246
 
 
 
 
 
 
792
  msgid "For the help with Chinese translation"
793
  msgstr "Für die Hilfe bei der Übersetzung ins Chinesische"
794
 
795
  # @ ure
796
- #: ure-options.php:247
797
  msgid "For the help with Dutch translation"
798
  msgstr "Für die Hilfe bei der Übersetzung ins Niederländische"
799
 
800
  # @ ure
801
- #: ure-options.php:248
802
  msgid "For the help with Finnish translation"
803
  msgstr "Für die Hilfe bei der Übersetzung ins Finnische"
804
 
805
  # @ ure
806
- #: ure-options.php:249
807
- #: ure-options.php:250
808
  msgid "For the help with French translation"
809
  msgstr "Für die Hilfe bei der Übersetzung ins Französische"
810
 
811
  # @ ure
812
- #: ure-options.php:251
813
  msgid "For the help with German translation"
814
  msgstr "Für die Hilfe bei der Übersetzung ins Deutsche"
815
 
816
  # @ ure
817
- #: ure-options.php:252
818
- #: ure-options.php:253
819
  msgid "For the help with Hebrew translation"
820
  msgstr "Für die Hilfe bei der Übersetzung ins Französische"
821
 
822
  # @ ure
823
- #: ure-options.php:254
824
  msgid "For the help with Hindi translation"
825
  msgstr "Für die Hilfe bei der Übersetzung ins Ungarische"
826
 
827
  # @ ure
828
- #: ure-options.php:255
829
  msgid "For the help with Hungarian translation"
830
  msgstr "Für die Hilfe bei der Übersetzung ins Ungarische"
831
 
832
  # @ ure
833
- #: ure-options.php:256
834
- #: ure-options.php:257
835
  msgid "For the help with Italian translation"
836
  msgstr "Für die Hilfe bei der Übersetzung ins Italienische"
837
 
838
  # @ ure
839
- #: ure-options.php:258
840
  msgid "For the help with Japanese translation"
841
  msgstr "Für die Hilfe bei der Übersetzung ins Japanische"
842
 
843
  # @ ure
844
- #: ure-options.php:259
845
  msgid "For the help with Lithuanian translation"
846
  msgstr "Für die Hilfe bei der Übersetzung ins Italienische"
847
 
848
  # @ ure
849
- #: ure-options.php:260
850
- #: ure-options.php:261
 
851
  msgid "For the help with Persian translation"
852
  msgstr "Für die Hilfe bei der Übersetzung ins Persische"
853
 
854
  # @ ure
855
- #: ure-options.php:262
 
856
  msgid "For the help with Polish translation"
857
  msgstr "Für die Hilfe bei der Übersetzung ins Polnische"
858
 
859
  # @ ure
860
- #: ure-options.php:263
861
- #: ure-options.php:264
862
  msgid "For the help with Spanish translation"
863
  msgstr "Für die Hilfe bei der Übersetzung ins Spanische"
864
 
865
  # @ ure
866
- #: ure-options.php:265
867
  msgid "For the updated Swedish translation"
868
  msgstr "Für die Hilfe bei der Übersetzung ins Spanische"
869
 
870
  # @ ure
871
- #: ure-options.php:266
872
  msgid "For the help with Swedish translation"
873
  msgstr "Für die Hilfe bei der Übersetzung ins Schwedische"
874
 
875
  # @ ure
876
- #: ure-options.php:267
877
  msgid "For the help with Turkish translation"
878
  msgstr "Für die Hilfe bei der Übersetzung ins Türkische"
879
 
880
  # @ ure
881
- #: ure-options.php:269
882
  msgid "For the code to hide administrator role"
883
  msgstr "Für den Code zum Verstecken der Administrator-Rolle"
884
 
885
- #: ure-options.php:270
886
  msgid "For the code enhancement suggestion"
887
  msgstr "Für Empfehlungen zur Code-Verbesserung"
888
 
889
  # @ ure
890
- #: ure-options.php:272
891
  msgid "Do you wish to see your name with link to your site here? You are welcome! Your help with translation and new ideas are very appreciated."
892
  msgstr "Hier könnte auch Ihr Name mit einem Link zu Ihrer Webseite stehen! Helfen Sie uns bei der Übersetzung in andere Sprachen! Auch für Kritik und Anregungen sind wir dankbar."
893
 
1
  msgid ""
2
  msgstr ""
3
+ "Project-Id-Version: User Role Editor v. 3.7.5\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-09-01 08:42+0700\n"
6
+ "PO-Revision-Date: 2012-09-01 08:43+0700\n"
7
+ "Last-Translator: Vladimir Garagulya <vladimir@shinephp.com>\n"
8
  "Language-Team: Peter Becker-Heidmann <peter@becker-heidmann.de>\n"
9
  "Language: \n"
10
  "MIME-Version: 1.0\n"
35
  msgid "User Role Editor requires PHP 5.0 or newer."
36
  msgstr "User Role Editor benötigt PHP 5.0 oder aktueller"
37
 
38
+ #: user-role-editor.php:76
39
  msgid "Only"
40
  msgstr "Nur"
41
 
42
+ #: user-role-editor.php:76
43
  msgid "is allowed to use"
44
  msgstr "ist gestattet zu benutzen"
45
 
46
  # @ ure
47
+ #: user-role-editor.php:82
48
+ #: user-role-editor.php:251
49
  msgid "User Role Editor"
50
  msgstr "User Role Editor"
51
 
52
  # @ ure
53
+ #: user-role-editor.php:223
54
  msgid "Settings"
55
  msgstr "Einstellungen"
56
 
57
  # @ ure
58
+ #: user-role-editor.php:233
59
+ #: includes/ure-options.php:235
60
  msgid "Changelog"
61
  msgstr "Änderungen"
62
 
63
+ #: user-role-editor.php:280
64
  msgid "Capabilities"
65
  msgstr "Rechte"
66
 
67
  # @ ure
68
+ #: includes/ure-lib.php:34
69
  msgid "Error is occur. Please check the log file."
70
  msgstr "Ein Fehler ist aufgetreten. Bitte überprüfen Sie die Log-Datei."
71
 
72
  # @ ure
73
+ #: includes/ure-lib.php:144
74
  msgid "Database operation error. Check log file."
75
  msgstr "Datenbankfehler. Überprüfen Sie die Protokolldatei."
76
 
77
  # @ ure
78
+ #: includes/ure-lib.php:177
79
  msgid "No backup data. It is created automatically before the first role data update."
80
  msgstr "Keine Sicherungskopie vorhanden. Sie wird automatisch vor der ersten Aktualisierung von Rollen-Daten erstellt."
81
 
82
  # @ ure
83
+ #: includes/ure-lib.php:215
84
  msgid "Backup record is created for the current role capabilities"
85
  msgstr "Sicherheitskopie der aktuellen Rollenbefugnisse wird erstellt"
86
 
87
  # @ ure
88
+ #: includes/ure-lib.php:329
89
  msgid "Error: Role name must contain latin characters and digits only!"
90
  msgstr "Fehler: Der Rollen-Name darf nur Buchstaben und Ziffern enthalten!"
91
 
92
  # @ ure
93
+ #: includes/ure-lib.php:336
94
  #, php-format
95
  msgid "Role %s exists already"
96
  msgstr "Rolle %s existiert bereits"
97
 
98
  # @ ure
99
+ #: includes/ure-lib.php:349
100
  msgid "Error is encountered during new role create operation"
101
  msgstr "Ein Fehler ist beim Erstellen der neuen Rolle aufgetreten"
102
 
103
  # @ ure
104
+ #: includes/ure-lib.php:351
105
  #, php-format
106
  msgid "Role %s is created successfully"
107
  msgstr "Rolle %s wurde erfolgreich erstellt"
108
 
109
  # @ ure
110
+ #: includes/ure-lib.php:435
111
  msgid "Error encountered during role delete operation"
112
  msgstr "Ein Fehler ist während des Löschvorgangs der Rolle aufgetreten"
113
 
114
  # @ ure
115
+ #: includes/ure-lib.php:437
116
  #, php-format
117
  msgid "Role %s is deleted successfully"
118
  msgstr "Rolle %s wurde erfolgreich gelöscht"
119
 
120
  # @ ure
121
+ #: includes/ure-lib.php:455
122
  msgid "Error encountered during default role change operation"
123
  msgstr "Ein Fehler ist während Änderung der Standard-Rolle aufgetreten"
124
 
125
  # @ ure
126
+ #: includes/ure-lib.php:461
127
  #, php-format
128
  msgid "Default role for new users is set to %s successfully"
129
  msgstr "Standard-Rolle für neue Benutzer erfolgreich auf %s gesetzt"
130
 
131
  # @ ure
132
+ #: includes/ure-lib.php:489
133
  msgid "Editor"
134
  msgstr "Redakteur"
135
 
136
  # @ ure
137
+ #: includes/ure-lib.php:490
138
  msgid "Author"
139
  msgstr "Autor"
140
 
141
  # @ ure
142
+ #: includes/ure-lib.php:491
143
  msgid "Contributor"
144
  msgstr "Mitarbeiter"
145
 
146
  # @ ure
147
+ #: includes/ure-lib.php:492
148
  msgid "Subscriber"
149
  msgstr "Abonnent"
150
 
151
  # @ ure
152
+ #: includes/ure-lib.php:494
153
  msgid "Switch themes"
154
  msgstr "Design auswählen"
155
 
156
  # @ ure
157
+ #: includes/ure-lib.php:495
158
  msgid "Edit themes"
159
  msgstr "Design bearbeiten"
160
 
161
  # @ ure
162
+ #: includes/ure-lib.php:496
163
  msgid "Activate plugins"
164
  msgstr "Plugins aktivieren"
165
 
166
  # @ ure
167
+ #: includes/ure-lib.php:497
168
  msgid "Edit plugins"
169
  msgstr "Plugins bearbeiten"
170
 
171
  # @ ure
172
+ #: includes/ure-lib.php:498
173
  msgid "Edit users"
174
  msgstr "Benutzer bearbeiten"
175
 
176
  # @ ure
177
+ #: includes/ure-lib.php:499
178
  msgid "Edit files"
179
  msgstr "Dateien bearbeiten"
180
 
181
  # @ ure
182
+ #: includes/ure-lib.php:500
183
  msgid "Manage options"
184
  msgstr "Eigenschaften verwalten"
185
 
186
  # @ ure
187
+ #: includes/ure-lib.php:501
188
  msgid "Moderate comments"
189
  msgstr "Kommentare moderieren"
190
 
191
  # @ ure
192
+ #: includes/ure-lib.php:502
193
  msgid "Manage categories"
194
  msgstr "Kategorien verwalten"
195
 
196
  # @ ure
197
+ #: includes/ure-lib.php:503
198
  msgid "Manage links"
199
  msgstr "Links verwalten"
200
 
201
  # @ ure
202
+ #: includes/ure-lib.php:504
203
  msgid "Upload files"
204
  msgstr "Dateien hochladen"
205
 
206
  # @ ure
207
+ #: includes/ure-lib.php:505
208
  msgid "Import"
209
  msgstr "Import"
210
 
211
  # @ ure
212
+ #: includes/ure-lib.php:506
213
  msgid "Unfiltered html"
214
  msgstr "Ungefiltertes Html"
215
 
216
  # @ ure
217
+ #: includes/ure-lib.php:507
218
  msgid "Edit posts"
219
  msgstr "Artikel verwalten"
220
 
221
  # @ ure
222
+ #: includes/ure-lib.php:508
223
  msgid "Edit others posts"
224
  msgstr "Artikel anderer Benutzer verwalten"
225
 
226
  # @ ure
227
+ #: includes/ure-lib.php:509
228
  msgid "Edit published posts"
229
  msgstr "Veröffentlichte Artikel bearbeiten"
230
 
231
  # @ ure
232
+ #: includes/ure-lib.php:510
233
  msgid "Publish posts"
234
  msgstr "Artikel veröffentlichen"
235
 
236
  # @ ure
237
+ #: includes/ure-lib.php:511
238
  msgid "Edit pages"
239
  msgstr "Seiten bearbeiten"
240
 
241
  # @ ure
242
+ #: includes/ure-lib.php:512
243
  msgid "Read"
244
  msgstr "Lesen"
245
 
246
  # @ ure
247
+ #: includes/ure-lib.php:513
248
  msgid "Level 10"
249
  msgstr ""
250
 
251
  # @ ure
252
+ #: includes/ure-lib.php:514
253
  msgid "Level 9"
254
  msgstr ""
255
 
256
  # @ ure
257
+ #: includes/ure-lib.php:515
258
  msgid "Level 8"
259
  msgstr ""
260
 
261
  # @ ure
262
+ #: includes/ure-lib.php:516
263
  msgid "Level 7"
264
  msgstr ""
265
 
266
  # @ ure
267
+ #: includes/ure-lib.php:517
268
  msgid "Level 6"
269
  msgstr ""
270
 
271
  # @ ure
272
+ #: includes/ure-lib.php:518
273
  msgid "Level 5"
274
  msgstr ""
275
 
276
  # @ ure
277
+ #: includes/ure-lib.php:519
278
  msgid "Level 4"
279
  msgstr ""
280
 
281
  # @ ure
282
+ #: includes/ure-lib.php:520
283
  msgid "Level 3"
284
  msgstr ""
285
 
286
  # @ ure
287
+ #: includes/ure-lib.php:521
288
  msgid "Level 2"
289
  msgstr ""
290
 
291
  # @ ure
292
+ #: includes/ure-lib.php:522
293
  msgid "Level 1"
294
  msgstr ""
295
 
296
  # @ ure
297
+ #: includes/ure-lib.php:523
298
  msgid "Level 0"
299
  msgstr ""
300
 
301
  # @ ure
302
+ #: includes/ure-lib.php:524
303
  msgid "Edit others pages"
304
  msgstr "Seiten anderer Benutzer bearbeiten"
305
 
306
  # @ ure
307
+ #: includes/ure-lib.php:525
308
  msgid "Edit published pages"
309
  msgstr "Veröffentlichte Seiten bearbeiten"
310
 
311
  # @ ure
312
+ #: includes/ure-lib.php:526
313
  msgid "Publish pages"
314
  msgstr "Seiten veröffentlichen"
315
 
316
  # @ ure
317
+ #: includes/ure-lib.php:527
318
  msgid "Delete pages"
319
  msgstr "Seiten löschen"
320
 
321
  # @ ure
322
+ #: includes/ure-lib.php:528
323
  msgid "Delete others pages"
324
  msgstr "Seiten anderer Benutzer löschen"
325
 
326
  # @ ure
327
+ #: includes/ure-lib.php:529
328
  msgid "Delete published pages"
329
  msgstr "Veröffentlichte Seiten löschen"
330
 
331
  # @ ure
332
+ #: includes/ure-lib.php:530
333
  msgid "Delete posts"
334
  msgstr "Artikel löschen"
335
 
336
  # @ ure
337
+ #: includes/ure-lib.php:531
338
  msgid "Delete others posts"
339
  msgstr "Artikel anderer Benutzer löschen"
340
 
341
  # @ ure
342
+ #: includes/ure-lib.php:532
343
  msgid "Delete published posts"
344
+ msgstr "Veröffentlichte Artikel löschen"
345
 
346
  # @ ure
347
+ #: includes/ure-lib.php:533
348
  msgid "Delete private posts"
349
  msgstr "Private Artikel löschen"
350
 
351
  # @ ure
352
+ #: includes/ure-lib.php:534
353
  msgid "Edit private posts"
354
  msgstr "Private Artikel bearbeiten"
355
 
356
  # @ ure
357
+ #: includes/ure-lib.php:535
358
  msgid "Read private posts"
359
  msgstr "Private Artikel lesen"
360
 
361
  # @ ure
362
+ #: includes/ure-lib.php:536
363
  msgid "Delete private pages"
364
  msgstr "Private Artikel löschen"
365
 
366
  # @ ure
367
+ #: includes/ure-lib.php:537
368
  msgid "Edit private pages"
369
  msgstr "Private Seiten bearbeiten"
370
 
371
  # @ ure
372
+ #: includes/ure-lib.php:538
373
  msgid "Read private pages"
374
  msgstr "Private Seiten lesen"
375
 
376
  # @ ure
377
+ #: includes/ure-lib.php:539
378
  msgid "Delete users"
379
  msgstr "Benutzer löschen"
380
 
381
  # @ ure
382
+ #: includes/ure-lib.php:540
383
  msgid "Create users"
384
  msgstr "Benutzer erstellen"
385
 
386
  # @ ure
387
+ #: includes/ure-lib.php:541
388
  msgid "Unfiltered upload"
389
  msgstr "Ungefiltertes Hochladen"
390
 
391
  # @ ure
392
+ #: includes/ure-lib.php:542
393
  msgid "Edit dashboard"
394
  msgstr "Dashboard bearbeiten"
395
 
396
  # @ ure
397
+ #: includes/ure-lib.php:543
398
  msgid "Update plugins"
399
  msgstr "Plugins aktualisieren"
400
 
401
  # @ ure
402
+ #: includes/ure-lib.php:544
403
  msgid "Delete plugins"
404
  msgstr "Plugins löschen"
405
 
406
  # @ ure
407
+ #: includes/ure-lib.php:545
408
  msgid "Install plugins"
409
  msgstr "Plugins installieren"
410
 
411
  # @ ure
412
+ #: includes/ure-lib.php:546
413
  msgid "Update themes"
414
  msgstr "Designs aktualisieren"
415
 
416
  # @ ure
417
+ #: includes/ure-lib.php:547
418
  msgid "Install themes"
419
  msgstr "Designs installieren"
420
 
421
  # @ ure
422
+ #: includes/ure-lib.php:548
423
  msgid "Update core"
424
  msgstr "Wordpress aktualisieren"
425
 
426
  # @ ure
427
+ #: includes/ure-lib.php:549
428
  msgid "List users"
429
  msgstr "Benutzer auflisten"
430
 
431
  # @ ure
432
+ #: includes/ure-lib.php:550
433
  msgid "Remove users"
434
  msgstr "Benutzer entfernen"
435
 
436
  # @ ure
437
+ #: includes/ure-lib.php:551
438
  msgid "Add users"
439
  msgstr "Benutzer hinzufügen"
440
 
441
  # @ ure
442
+ #: includes/ure-lib.php:552
443
  msgid "Promote users"
444
  msgstr "Benutzer vorschlagen"
445
 
446
  # @ ure
447
+ #: includes/ure-lib.php:553
448
  msgid "Edit theme options"
449
  msgstr "Design-Eigenschaften bearbeiten"
450
 
451
  # @ ure
452
+ #: includes/ure-lib.php:554
453
  msgid "Delete themes"
454
  msgstr "Designs löschen"
455
 
456
  # @ ure
457
+ #: includes/ure-lib.php:555
458
  msgid "Export"
459
  msgstr "Export"
460
 
461
  # @ ure
462
+ #: includes/ure-lib.php:639
463
  msgid "Error: Capability name must contain latin characters and digits only!"
464
  msgstr "Fehler: Der Name des Rechts darf nur Buchstaben und Ziffern enthalten!"
465
 
466
  # @ ure
467
+ #: includes/ure-lib.php:651
468
  #, php-format
469
  msgid "Capability %s is added successfully"
470
  msgstr "Recht %s wurde erfolgreich hinzugefügt"
471
 
472
+ #: includes/ure-lib.php:653
473
  #, php-format
474
  msgid "Capability %s exists already"
475
  msgstr "Recht %s existiert bereits"
476
 
477
+ #: includes/ure-lib.php:802
478
  #, php-format
479
  msgid "Error! You do not have permission to delete this capability: %s!"
480
  msgstr "Fehler: Sie haben nicht die Erlaubnis, dieses Recht zu löschen: %s!"
481
 
482
  # @ ure
483
+ #: includes/ure-lib.php:824
484
  #, php-format
485
  msgid "Capability %s is removed successfully"
486
  msgstr "Das Recht %s wurde erfogreich entfernt"
487
 
488
+ #: includes/ure-lib.php:889
489
  msgid "Help"
490
  msgstr "Hilfe"
491
 
492
  # @ ure
493
+ #: includes/ure-role-edit.php:29
494
  msgid "None"
495
  msgstr "Nichts"
496
 
497
  # @ ure
498
+ #: includes/ure-role-edit.php:101
499
  msgid " Name can not be empty!"
500
  msgstr "Name darf nicht leer sein!"
501
 
502
  # @ ure
503
+ #: includes/ure-role-edit.php:105
504
  msgid " Name must contain latin characters and digits only!"
505
  msgstr "Der Name darf nur Buchstaben und Ziffern enthalten!"
506
 
507
  # @ ure
508
+ #: includes/ure-role-edit.php:110
509
+ #: includes/ure-role-edit.php:367
510
  msgid "Delete Role"
511
  msgstr "Löschen der Rolle"
512
 
513
  # @ ure
514
+ #: includes/ure-role-edit.php:112
515
  msgid "Change Default Role"
516
  msgstr "Ändern der Standard-Rolle"
517
 
518
+ #: includes/ure-role-edit.php:114
519
  msgid "Restore Roles from backup copy. Be careful, backup was created when you started URE 1st time. All changes you made after that will be lost"
520
  msgstr "Wiederherstellung der Rollen von der Sicherungskopie. Seien Sie vorsichtig, die Sicherung wurde bei Ihrer ersten Benutzung von URE erstellt. Alle Änderungen, die Sie danach vorgenommen haben, gehen verloren"
521
 
522
+ #: includes/ure-role-edit.php:116
523
  msgid "Warning! Be careful - removing critical capability could crash some plugin or other custom code"
524
  msgstr "Achtung! Seien Sie vorsichtig - das Löschen kritischer Rechte könnte Plugin- oder angepassten Code zerstören."
525
 
526
  # @ ure
527
+ #: includes/ure-role-edit.php:118
528
  msgid "Please confirm to continue"
529
  msgstr "Bestätigen Sie bitte, um fortzufahren"
530
 
531
  # @ ure
532
+ #: includes/ure-role-edit.php:155
533
  #, php-format
534
  msgid "Role \"%s\" update: please confirm to continue"
535
  msgstr "Aktualisierung der Rolle \"%s\": Zum Fortfahren bitte bestätigen"
536
 
537
  # @ ure
538
+ #: includes/ure-role-edit.php:163
539
  msgid "Select Role and change its capabilities list"
540
  msgstr "Eine Rolle auswählen und ihre Rechte ändern"
541
 
542
  # @ ure
543
+ #: includes/ure-role-edit.php:165
544
  msgid "Select Role:"
545
  msgstr "Eine Rolle auswählen:"
546
 
547
  # @ ure
548
+ #: includes/ure-role-edit.php:175
549
+ #: includes/ure-user-edit.php:91
550
  msgid "Show capabilities in human readable form"
551
  msgstr "Anzeige der Rechte in allgemeinverständlicher Form"
552
 
553
+ #: includes/ure-role-edit.php:184
554
+ #: includes/ure-user-edit.php:100
555
  msgid "Show deprecated capabilities"
556
  msgstr "Zeige herabgesetzte Rechte"
557
 
558
+ #: includes/ure-role-edit.php:188
559
  msgid "If checked, then apply action to ALL sites of this Network"
560
  msgstr "Fall aktiviert, wende die Aktion auf ALLE Webpräsenzen"
561
 
562
+ #: includes/ure-role-edit.php:198
563
  msgid "Apply to All Sites"
564
  msgstr "Wende auf alle Webpräsenzen an"
565
 
566
+ #: includes/ure-role-edit.php:205
567
+ #: includes/ure-user-edit.php:105
568
+ msgid "Core capabilities:"
569
+ msgstr "Rechte WordPress:"
570
+
571
+ #: includes/ure-role-edit.php:268
572
+ #: includes/ure-user-edit.php:167
573
+ #, fuzzy
574
+ msgid "Custom capabilities:"
575
+ msgstr "Rechte:"
576
+
577
  # @ ure
578
+ #: includes/ure-role-edit.php:319
579
+ #: includes/ure-user-edit.php:222
580
  msgid "Update"
581
  msgstr "Aktualisieren"
582
 
583
  # @ ure
584
+ #: includes/ure-role-edit.php:319
585
+ #: includes/ure-user-edit.php:222
586
  msgid "Save Changes"
587
  msgstr "Änderungen sichern"
588
 
589
  # @ ure
590
+ #: includes/ure-role-edit.php:320
591
+ #: includes/ure-user-edit.php:223
592
  msgid "Cancel"
593
  msgstr "Abbrechen"
594
 
595
  # @ ure
596
+ #: includes/ure-role-edit.php:320
597
+ #: includes/ure-user-edit.php:223
598
  msgid "Cancel not saved changes"
599
  msgstr "Ungesicherte Änderungen verwerfen"
600
 
601
  # @ ure
602
+ #: includes/ure-role-edit.php:323
603
  msgid "Select All"
604
  msgstr "Wähle alle aus"
605
 
606
+ #: includes/ure-role-edit.php:323
607
  msgid "Select All Capabilities"
608
  msgstr "Wähle alle Rechte"
609
 
610
+ #: includes/ure-role-edit.php:327
611
  msgid "Unselect All"
612
  msgstr "Wähle alle ab"
613
 
614
+ #: includes/ure-role-edit.php:327
615
  msgid "Unselect All Capabilities"
616
  msgstr "Wähle alle Rechte ab"
617
 
618
+ #: includes/ure-role-edit.php:328
619
  msgid "Reverse"
620
  msgstr "Rückgängig"
621
 
622
+ #: includes/ure-role-edit.php:328
623
  msgid "Turn checked capabilities off and vise versa"
624
  msgstr "Schalte alle markierten Rechte ab und umgekehrt"
625
 
626
  # @ ure
627
+ #: includes/ure-role-edit.php:334
628
  msgid "Reset"
629
  msgstr "Zurücksetzen"
630
 
631
  # @ ure
632
+ #: includes/ure-role-edit.php:334
633
  msgid "Restore Roles from backup copy"
634
  msgstr "Wiederherstellung der Rollen von der Sicherheitskopie"
635
 
636
  # @ ure
637
+ #: includes/ure-role-edit.php:344
638
  msgid "Add New Role"
639
  msgstr "Neue Rolle hinzufügen"
640
 
641
+ #: includes/ure-role-edit.php:346
642
  msgid "Name: "
643
  msgstr "Name:"
644
 
645
+ #: includes/ure-role-edit.php:350
646
  msgid "Make copy of: "
647
  msgstr "Erstelle Kopie von:"
648
 
649
  # @ ure
650
+ #: includes/ure-role-edit.php:353
651
+ #: includes/ure-role-edit.php:382
652
  msgid "Add"
653
  msgstr "Hinzufügen"
654
 
655
  # @ ure
656
+ #: includes/ure-role-edit.php:353
657
  msgid "Add New User Role"
658
  msgstr "Neue Benutzer-Rolle hinzufügen"
659
 
660
  # @ ure
661
+ #: includes/ure-role-edit.php:357
662
  msgid "Default Role for New User"
663
  msgstr "Standard-Rolle für neuen Benutzer"
664
 
665
  # @ ure
666
+ #: includes/ure-role-edit.php:362
667
  msgid "Change"
668
  msgstr "Ändern"
669
 
670
  # @ ure
671
+ #: includes/ure-role-edit.php:362
672
  msgid "Set as Default User Role"
673
  msgstr "Als Standard-Benutzer-Rolle setzen"
674
 
675
  # @ ure
676
+ #: includes/ure-role-edit.php:372
677
  msgid "Delete"
678
  msgstr "Löschen"
679
 
680
  # @ ure
681
+ #: includes/ure-role-edit.php:372
682
  msgid "Delete User Role"
683
  msgstr "Löschen der Benutzer-Rolle"
684
 
685
  # @ ure
686
+ #: includes/ure-role-edit.php:377
687
+ #: includes/ure-role-edit.php:382
688
  msgid "Add New Capability"
689
  msgstr "Füge neues Recht hinzu"
690
 
691
+ #: includes/ure-role-edit.php:387
692
  msgid "Remove Capability"
693
  msgstr "Entferne Recht"
694
 
695
  # @ ure
696
+ #: includes/ure-role-edit.php:392
697
  msgid "Remove"
698
  msgstr "Entferne"
699
 
700
+ #: includes/ure-role-edit.php:392
701
  msgid "Remove User Capability"
702
  msgstr "Entferne Benutzerrecht"
703
 
704
  # @ ure
705
+ #: includes/ure-user-edit.php:67
706
  #, php-format
707
  msgid "User \"%s\" update: please confirm to continue"
708
  msgstr "Benutzer \"%s\" Aktualisierung: Bitte bestätigen, um fortzufahren"
709
 
710
+ #: includes/ure-user-edit.php:79
711
  msgid "Change capabilities for user"
712
  msgstr "Ändere Rechte für Benutzer"
713
 
714
  # @ ure
715
+ #: includes/ure-user-edit.php:82
716
  msgid "Role:"
717
  msgstr "Rolle:"
718
 
719
+ #: includes/ure-user-edit.php:104
720
  msgid "Add capabilities to this user:"
721
  msgstr "Füge Rechte für diesen Benutzer hinzu:"
722
 
723
  # @ ure
724
+ #: includes/ure-options.php:59
725
  msgid "User Roles are restored from the backup data. "
726
  msgstr "Rollenbefugnisse werden von der Sicherheitskopie wiederhergestellt."
727
 
728
+ #: includes/ure-options.php:130
729
  msgid "Error: "
730
  msgstr "Fehler:"
731
 
732
  # @ ure
733
+ #: includes/ure-options.php:130
734
+ #: includes/ure-options.php:146
735
  msgid "Role"
736
  msgstr "Rolle"
737
 
738
+ #: includes/ure-options.php:130
739
  msgid "does not exist"
740
  msgstr "existiert nicht"
741
 
742
  # @ ure
743
+ #: includes/ure-options.php:146
744
  msgid "is updated successfully"
745
  msgstr "wurde erfolgreich aktualisiert"
746
 
747
+ #: includes/ure-options.php:154
748
  msgid "User"
749
  msgstr "Benutzer"
750
 
751
  # @ ure
752
+ #: includes/ure-options.php:154
753
  msgid "capabilities are updated successfully"
754
  msgstr "Rechte wurden erfolgreich aktualisiert"
755
 
756
  # @ ure
757
+ #: includes/ure-options.php:232
758
  msgid "About this Plugin:"
759
  msgstr "Über dieses Plugin:"
760
 
761
  # @ ure
762
+ #: includes/ure-options.php:233
763
  msgid "Author's website"
764
  msgstr "Webseite des Autors"
765
 
766
  # @ ure
767
+ #: includes/ure-options.php:234
768
  msgid "Plugin webpage"
769
  msgstr "Webseite des Plugins"
770
 
771
  # @ ure
772
+ #: includes/ure-options.php:236
773
  msgid "FAQ"
774
  msgstr "FAQ"
775
 
776
  # @ ure
777
+ #: includes/ure-options.php:237
778
  msgid "Greetings"
779
  msgstr "Mitarbeiter:"
780
 
781
  # @ ure
782
+ #: includes/ure-options.php:259
783
  msgid "Greetings:"
784
  msgstr "Mitarbeiter:"
785
 
786
  # @ ure
787
+ #: includes/ure-options.php:260
788
  msgid "It's me, the author"
789
  msgstr "Der Autor"
790
 
791
  # @ ure
792
+ #: includes/ure-options.php:261
793
  msgid "For the help with Belorussian translation"
794
  msgstr "Für die Hilfe bei der Übersetzung ins Weißrussische"
795
 
796
  # @ ure
797
+ #: includes/ure-options.php:262
798
  msgid "For the help with Brasilian translation"
799
  msgstr "Für die Hilfe bei der Übersetzung ins Brasilianische"
800
 
801
  # @ ure
802
+ #: includes/ure-options.php:263
803
+ #, fuzzy
804
+ msgid "For the help with Brasilian Portuguese translation"
805
+ msgstr "Für die Hilfe bei der Übersetzung ins Brasilianische"
806
+
807
+ # @ ure
808
+ #: includes/ure-options.php:264
809
  msgid "For the help with Chinese translation"
810
  msgstr "Für die Hilfe bei der Übersetzung ins Chinesische"
811
 
812
  # @ ure
813
+ #: includes/ure-options.php:265
814
  msgid "For the help with Dutch translation"
815
  msgstr "Für die Hilfe bei der Übersetzung ins Niederländische"
816
 
817
  # @ ure
818
+ #: includes/ure-options.php:266
819
  msgid "For the help with Finnish translation"
820
  msgstr "Für die Hilfe bei der Übersetzung ins Finnische"
821
 
822
  # @ ure
823
+ #: includes/ure-options.php:267
824
+ #: includes/ure-options.php:268
825
  msgid "For the help with French translation"
826
  msgstr "Für die Hilfe bei der Übersetzung ins Französische"
827
 
828
  # @ ure
829
+ #: includes/ure-options.php:269
830
  msgid "For the help with German translation"
831
  msgstr "Für die Hilfe bei der Übersetzung ins Deutsche"
832
 
833
  # @ ure
834
+ #: includes/ure-options.php:270
835
+ #: includes/ure-options.php:271
836
  msgid "For the help with Hebrew translation"
837
  msgstr "Für die Hilfe bei der Übersetzung ins Französische"
838
 
839
  # @ ure
840
+ #: includes/ure-options.php:272
841
  msgid "For the help with Hindi translation"
842
  msgstr "Für die Hilfe bei der Übersetzung ins Ungarische"
843
 
844
  # @ ure
845
+ #: includes/ure-options.php:273
846
  msgid "For the help with Hungarian translation"
847
  msgstr "Für die Hilfe bei der Übersetzung ins Ungarische"
848
 
849
  # @ ure
850
+ #: includes/ure-options.php:274
851
+ #: includes/ure-options.php:275
852
  msgid "For the help with Italian translation"
853
  msgstr "Für die Hilfe bei der Übersetzung ins Italienische"
854
 
855
  # @ ure
856
+ #: includes/ure-options.php:276
857
  msgid "For the help with Japanese translation"
858
  msgstr "Für die Hilfe bei der Übersetzung ins Japanische"
859
 
860
  # @ ure
861
+ #: includes/ure-options.php:277
862
  msgid "For the help with Lithuanian translation"
863
  msgstr "Für die Hilfe bei der Übersetzung ins Italienische"
864
 
865
  # @ ure
866
+ #: includes/ure-options.php:278
867
+ #: includes/ure-options.php:279
868
+ #: includes/ure-options.php:280
869
  msgid "For the help with Persian translation"
870
  msgstr "Für die Hilfe bei der Übersetzung ins Persische"
871
 
872
  # @ ure
873
+ #: includes/ure-options.php:281
874
+ #: includes/ure-options.php:282
875
  msgid "For the help with Polish translation"
876
  msgstr "Für die Hilfe bei der Übersetzung ins Polnische"
877
 
878
  # @ ure
879
+ #: includes/ure-options.php:283
880
+ #: includes/ure-options.php:284
881
  msgid "For the help with Spanish translation"
882
  msgstr "Für die Hilfe bei der Übersetzung ins Spanische"
883
 
884
  # @ ure
885
+ #: includes/ure-options.php:285
886
  msgid "For the updated Swedish translation"
887
  msgstr "Für die Hilfe bei der Übersetzung ins Spanische"
888
 
889
  # @ ure
890
+ #: includes/ure-options.php:286
891
  msgid "For the help with Swedish translation"
892
  msgstr "Für die Hilfe bei der Übersetzung ins Schwedische"
893
 
894
  # @ ure
895
+ #: includes/ure-options.php:287
896
  msgid "For the help with Turkish translation"
897
  msgstr "Für die Hilfe bei der Übersetzung ins Türkische"
898
 
899
  # @ ure
900
+ #: includes/ure-options.php:289
901
  msgid "For the code to hide administrator role"
902
  msgstr "Für den Code zum Verstecken der Administrator-Rolle"
903
 
904
+ #: includes/ure-options.php:290
905
  msgid "For the code enhancement suggestion"
906
  msgstr "Für Empfehlungen zur Code-Verbesserung"
907
 
908
  # @ ure
909
+ #: includes/ure-options.php:292
910
  msgid "Do you wish to see your name with link to your site here? You are welcome! Your help with translation and new ideas are very appreciated."
911
  msgstr "Hier könnte auch Ihr Name mit einem Link zu Ihrer Webseite stehen! Helfen Sie uns bei der Übersetzung in andere Sprachen! Auch für Kritik und Anregungen sind wir dankbar."
912
 
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 v. 2.0\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2012-06-23 23:11+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"
@@ -36,884 +36,906 @@ msgid "User Role Editor requires PHP 5.0 or newer."
36
  msgstr "User Role Editor requiere PHP 5.0 o superior"
37
 
38
  # @ ure
39
- #: user-role-editor/user-role-editor.php:65
40
  msgid "Only"
41
  msgstr "Sólo"
42
 
43
  # @ ure
44
- #: user-role-editor/user-role-editor.php:65
45
  msgid "is allowed to use"
46
  msgstr "se permite el uso"
47
 
48
  # @ ure
49
  # @ default
50
- #: user-role-editor/user-role-editor.php:71
51
- #: user-role-editor/user-role-editor.php:246
52
  msgid "User Role Editor"
53
  msgstr "User Role Editor"
54
 
55
  # @ ure
56
- #: user-role-editor/user-role-editor.php:218
57
  msgid "Settings"
58
  msgstr "Opciones"
59
 
60
  # @ ure
61
- #: user-role-editor/user-role-editor.php:228
62
- #: user-role-editor/ure-options.php:218
63
  msgid "Changelog"
64
  msgstr "Registro de cambios"
65
 
66
  # @ ure
67
- #: user-role-editor/user-role-editor.php:275
68
  msgid "Capabilities"
69
  msgstr "Privilegios"
70
 
71
  # ure
72
- #: user-role-editor/ure-lib.php:45
73
  msgid "Error is occur. Please check the log file."
74
  msgstr "Un error ha ocurrido. Por favor revisa el archivo de registros."
75
 
76
  # @ ure
77
- #: user-role-editor/ure-lib.php:155
78
  msgid "Database operation error. Check log file."
79
  msgstr "Operación errónea de la base de datos. Revisar el archivo de registros."
80
 
81
  # @ ure
82
- #: user-role-editor/ure-lib.php:188
83
  msgid "No backup data. It is created automatically before the first role data update."
84
  msgstr "Ningunos datos de reserva. Se crea automáticamente antes de la primera actualización de los datos del papel."
85
 
86
  # @ ure
87
- #: user-role-editor/ure-lib.php:226
88
  msgid "Backup record is created for the current role capabilities"
89
  msgstr "Ha sido creada una grabación de respaldo para este Rol y sus privilegios"
90
 
91
  # @ ure
92
- #: user-role-editor/ure-lib.php:345
93
  msgid "Error: Role name must contain latin characters and digits only!"
94
  msgstr "Error: el nombre del Rol sólo debe contener caracteres latinos y dígitos."
95
 
96
  # @ ure
97
- #: user-role-editor/ure-lib.php:352
98
  #, php-format
99
  msgid "Role %s exists already"
100
  msgstr "Rol %s ya existe"
101
 
102
  # @ ure
103
- #: user-role-editor/ure-lib.php:365
104
  msgid "Error is encountered during new role create operation"
105
  msgstr "Error encontrado durante la creación de un nuevo Rol"
106
 
107
  # @ ure
108
- #: user-role-editor/ure-lib.php:367
109
  #, php-format
110
  msgid "Role %s is created successfully"
111
  msgstr "Rol %s se ha creado exitosamente"
112
 
113
  # @ ure
114
- #: user-role-editor/ure-lib.php:451
115
  msgid "Error encountered during role delete operation"
116
  msgstr "Error encontrado durante la eliminación del Rol"
117
 
118
  # @ ure
119
- #: user-role-editor/ure-lib.php:453
120
  #, php-format
121
  msgid "Role %s is deleted successfully"
122
  msgstr "Rol %s se ha eliminado exitosamente"
123
 
124
  # @ ure
125
- #: user-role-editor/ure-lib.php:471
126
  msgid "Error encountered during default role change operation"
127
  msgstr "Error encontrado durante el cambio de Rol predeterminado"
128
 
129
  # @ ure
130
- #: user-role-editor/ure-lib.php:477
131
  #, php-format
132
  msgid "Default role for new users is set to %s successfully"
133
  msgstr "El Rol predeterminado para nuevos usuarios se ha configurado exitosamente para %s"
134
 
135
  # @ ure
136
- #: user-role-editor/ure-lib.php:505
137
  msgid "Editor"
138
  msgstr "Editor"
139
 
140
  # @ ure
141
- #: user-role-editor/ure-lib.php:506
142
  msgid "Author"
143
  msgstr "Autor"
144
 
145
  # @ ure
146
- #: user-role-editor/ure-lib.php:507
147
  msgid "Contributor"
148
  msgstr "Colaborador"
149
 
150
  # @ ure
151
- #: user-role-editor/ure-lib.php:508
152
  msgid "Subscriber"
153
  msgstr "Suscriptor"
154
 
155
  # @ ure
156
- #: user-role-editor/ure-lib.php:510
157
  msgid "Switch themes"
158
  msgstr "Cambiar plantillas"
159
 
160
  # @ ure
161
- #: user-role-editor/ure-lib.php:511
162
  msgid "Edit themes"
163
  msgstr "Editar plantillas"
164
 
165
  # @ ure
166
- #: user-role-editor/ure-lib.php:512
167
  msgid "Activate plugins"
168
  msgstr "Activar plugins"
169
 
170
  # @ ure
171
- #: user-role-editor/ure-lib.php:513
172
  msgid "Edit plugins"
173
  msgstr "Editar plugins"
174
 
175
  # @ ure
176
- #: user-role-editor/ure-lib.php:514
177
  msgid "Edit users"
178
  msgstr "Editar usuarios"
179
 
180
  # @ ure
181
- #: user-role-editor/ure-lib.php:515
182
  msgid "Edit files"
183
  msgstr "Editar archivos"
184
 
185
  # @ ure
186
- #: user-role-editor/ure-lib.php:516
187
  msgid "Manage options"
188
  msgstr "Administrar opciones"
189
 
190
  # @ ure
191
- #: user-role-editor/ure-lib.php:517
192
  msgid "Moderate comments"
193
  msgstr "Moderar comentarios"
194
 
195
  # @ ure
196
- #: user-role-editor/ure-lib.php:518
197
  msgid "Manage categories"
198
  msgstr "Administrar categorías"
199
 
200
  # @ ure
201
- #: user-role-editor/ure-lib.php:519
202
  msgid "Manage links"
203
  msgstr "Administrar enlaces"
204
 
205
  # @ ure
206
- #: user-role-editor/ure-lib.php:520
207
  msgid "Upload files"
208
  msgstr "Subir archivos"
209
 
210
  # @ ure
211
- #: user-role-editor/ure-lib.php:521
212
  msgid "Import"
213
  msgstr "Importar"
214
 
215
  # @ ure
216
- #: user-role-editor/ure-lib.php:522
217
  msgid "Unfiltered html"
218
  msgstr "Omitir filtrado de HTML"
219
 
220
  # @ ure
221
- #: user-role-editor/ure-lib.php:523
222
  msgid "Edit posts"
223
  msgstr "Editar entradas"
224
 
225
  # @ ure
226
- #: user-role-editor/ure-lib.php:524
227
  msgid "Edit others posts"
228
  msgstr "Editar entradas de otros"
229
 
230
  # @ ure
231
- #: user-role-editor/ure-lib.php:525
232
  msgid "Edit published posts"
233
  msgstr "Editar entradas publicadas"
234
 
235
  # @ ure
236
- #: user-role-editor/ure-lib.php:526
237
  msgid "Publish posts"
238
  msgstr "Publicar entradas"
239
 
240
  # @ ure
241
- #: user-role-editor/ure-lib.php:527
242
  msgid "Edit pages"
243
  msgstr "Editar páginas"
244
 
245
  # @ ure
246
- #: user-role-editor/ure-lib.php:528
247
  msgid "Read"
248
  msgstr "Leer"
249
 
250
  # @ ure
251
- #: user-role-editor/ure-lib.php:529
252
  msgid "Level 10"
253
  msgstr "Nivel 10"
254
 
255
  # @ ure
256
- #: user-role-editor/ure-lib.php:530
257
  msgid "Level 9"
258
  msgstr "Nivel 9"
259
 
260
  # @ ure
261
- #: user-role-editor/ure-lib.php:531
262
  msgid "Level 8"
263
  msgstr "Nivel 8"
264
 
265
  # @ ure
266
- #: user-role-editor/ure-lib.php:532
267
  msgid "Level 7"
268
  msgstr "Nivel 7"
269
 
270
  # @ ure
271
- #: user-role-editor/ure-lib.php:533
272
  msgid "Level 6"
273
  msgstr "Nivel 6"
274
 
275
  # @ ure
276
- #: user-role-editor/ure-lib.php:534
277
  msgid "Level 5"
278
  msgstr "Nivel 5"
279
 
280
  # @ ure
281
- #: user-role-editor/ure-lib.php:535
282
  msgid "Level 4"
283
  msgstr "Nivel 4"
284
 
285
  # @ ure
286
- #: user-role-editor/ure-lib.php:536
287
  msgid "Level 3"
288
  msgstr "Nivel 3"
289
 
290
  # @ ure
291
- #: user-role-editor/ure-lib.php:537
292
  msgid "Level 2"
293
  msgstr "Nivel 2"
294
 
295
  # @ ure
296
- #: user-role-editor/ure-lib.php:538
297
  msgid "Level 1"
298
  msgstr "Nivel 1"
299
 
300
  # @ ure
301
- #: user-role-editor/ure-lib.php:539
302
  msgid "Level 0"
303
  msgstr "Nivel 0"
304
 
305
  # @ ure
306
- #: user-role-editor/ure-lib.php:540
307
  msgid "Edit others pages"
308
  msgstr "Editar páginas de otros"
309
 
310
  # @ ure
311
- #: user-role-editor/ure-lib.php:541
312
  msgid "Edit published pages"
313
  msgstr "Editar páginas publicadas"
314
 
315
  # @ ure
316
- #: user-role-editor/ure-lib.php:542
317
  msgid "Publish pages"
318
  msgstr "Publicar páginas"
319
 
320
  # @ ure
321
- #: user-role-editor/ure-lib.php:543
322
  msgid "Delete pages"
323
  msgstr "Eliminar páginas"
324
 
325
  # ure
326
- #: user-role-editor/ure-lib.php:544
327
  msgid "Delete others pages"
328
  msgstr "Eliminar páginas de otros"
329
 
330
  # @ ure
331
- #: user-role-editor/ure-lib.php:545
332
  msgid "Delete published pages"
333
  msgstr "Eliminar páginas publicadas"
334
 
335
  # ure
336
- #: user-role-editor/ure-lib.php:546
337
  msgid "Delete posts"
338
  msgstr "Eliminar entradas"
339
 
340
  # @ ure
341
- #: user-role-editor/ure-lib.php:547
342
  msgid "Delete others posts"
343
  msgstr "Eliminar entradas de otros"
344
 
345
  # ure
346
- #: user-role-editor/ure-lib.php:548
347
  msgid "Delete published posts"
348
  msgstr "Eliminar entradas publicadas"
349
 
350
  # ure
351
- #: user-role-editor/ure-lib.php:549
352
  msgid "Delete private posts"
353
  msgstr "Eliminar entradas privadas"
354
 
355
  # @ ure
356
- #: user-role-editor/ure-lib.php:550
357
  msgid "Edit private posts"
358
  msgstr "Editar entradas privadas"
359
 
360
  # @ ure
361
- #: user-role-editor/ure-lib.php:551
362
  msgid "Read private posts"
363
  msgstr "Leer entradas privadas"
364
 
365
  # @ ure
366
- #: user-role-editor/ure-lib.php:552
367
  msgid "Delete private pages"
368
  msgstr "Eliminar páginas privadas"
369
 
370
  # @ ure
371
- #: user-role-editor/ure-lib.php:553
372
  msgid "Edit private pages"
373
  msgstr "Editar páginas privadas"
374
 
375
  # @ ure
376
- #: user-role-editor/ure-lib.php:554
377
  msgid "Read private pages"
378
  msgstr "Leer páginas privadas"
379
 
380
  # @ ure
381
- #: user-role-editor/ure-lib.php:555
382
  msgid "Delete users"
383
  msgstr "Eliminar usuarios"
384
 
385
  # @ ure
386
- #: user-role-editor/ure-lib.php:556
387
  msgid "Create users"
388
  msgstr "Crear usuarios"
389
 
390
  # @ ure
391
- #: user-role-editor/ure-lib.php:557
392
  msgid "Unfiltered upload"
393
  msgstr "Omitir filtrado de subidas"
394
 
395
  # @ ure
396
- #: user-role-editor/ure-lib.php:558
397
  msgid "Edit dashboard"
398
  msgstr "Editar escritorio"
399
 
400
  # @ ure
401
- #: user-role-editor/ure-lib.php:559
402
  msgid "Update plugins"
403
  msgstr "Actualizar plugins"
404
 
405
  # @ ure
406
- #: user-role-editor/ure-lib.php:560
407
  msgid "Delete plugins"
408
  msgstr "Eliminar plugins"
409
 
410
  # @ ure
411
- #: user-role-editor/ure-lib.php:561
412
  msgid "Install plugins"
413
  msgstr "Instalar plugins"
414
 
415
  # @ ure
416
- #: user-role-editor/ure-lib.php:562
417
  msgid "Update themes"
418
  msgstr "Actualizar plantillas"
419
 
420
  # @ ure
421
- #: user-role-editor/ure-lib.php:563
422
  msgid "Install themes"
423
  msgstr "Instalar plantillas"
424
 
425
  # @ ure
426
- #: user-role-editor/ure-lib.php:564
427
  msgid "Update core"
428
  msgstr "Actualizar núcleo"
429
 
430
  # @ ure
431
- #: user-role-editor/ure-lib.php:565
432
  msgid "List users"
433
  msgstr "Listar usuarios"
434
 
435
  # @ ure
436
- #: user-role-editor/ure-lib.php:566
437
  msgid "Remove users"
438
  msgstr "Eliminar usuarios"
439
 
440
  # @ ure
441
- #: user-role-editor/ure-lib.php:567
442
  msgid "Add users"
443
  msgstr "Agregar usuarios"
444
 
445
  # @ ure
446
- #: user-role-editor/ure-lib.php:568
447
  msgid "Promote users"
448
  msgstr "Promover usuarios"
449
 
450
  # @ ure
451
- #: user-role-editor/ure-lib.php:569
452
  msgid "Edit theme options"
453
  msgstr "Editar opciones de plantilla"
454
 
455
  # @ ure
456
- #: user-role-editor/ure-lib.php:570
457
  msgid "Delete themes"
458
  msgstr "Eliminar plantillas"
459
 
460
  # @ ure
461
- #: user-role-editor/ure-lib.php:571
462
  msgid "Export"
463
  msgstr "Exportar"
464
 
465
  # @ ure
466
- #: user-role-editor/ure-lib.php:655
467
  msgid "Error: Capability name must contain latin characters and digits only!"
468
  msgstr "Error: el nombre del Privilegio sólo debe contener caracteres latinos y dígitos."
469
 
470
  # @ ure
471
- #: user-role-editor/ure-lib.php:667
472
  #, php-format
473
  msgid "Capability %s is added successfully"
474
  msgstr "Privilegio %s se ha creado exitosamente"
475
 
476
  # @ ure
477
- #: user-role-editor/ure-lib.php:669
478
  #, php-format
479
  msgid "Capability %s exists already"
480
  msgstr "Ya existe el Privilegio %s"
481
 
482
  # @ ure
483
- #: user-role-editor/ure-lib.php:818
484
  #, php-format
485
  msgid "Error! You do not have permission to delete this capability: %s!"
486
  msgstr "¡Error! No tienes permisos para eliminar este Privilegio: %s!"
487
 
488
  # @ ure
489
- #: user-role-editor/ure-lib.php:840
490
  #, php-format
491
  msgid "Capability %s is removed successfully"
492
  msgstr "Privilegio %s se ha eliminado exitosamente"
493
 
494
  # @ ure
495
- #: user-role-editor/ure-lib.php:902
496
  msgid "Help"
497
  msgstr "Ayuda"
498
 
499
  # @ ure
500
- #: user-role-editor/ure-role-edit.php:29
501
  msgid "None"
502
  msgstr "Нет"
503
 
504
  # @ ure
505
- #: user-role-editor/ure-role-edit.php:93
506
  msgid " Name can not be empty!"
507
  msgstr "¡El nombre no puede estar vacío!"
508
 
509
  # @ ure
510
- #: user-role-editor/ure-role-edit.php:97
511
  msgid " Name must contain latin characters and digits only!"
512
  msgstr "El nombre sólo debe contener caracteres latinos y dígitos."
513
 
514
  # @ ure
515
- #: user-role-editor/ure-role-edit.php:102
516
- #: user-role-editor/ure-role-edit.php:293
517
  msgid "Delete Role"
518
  msgstr "Eliminar Rol"
519
 
520
  # @ ure
521
- #: user-role-editor/ure-role-edit.php:104
522
  msgid "Change Default Role"
523
  msgstr "Cambiar el Rol predeterminado"
524
 
525
  # @ ure
526
- #: user-role-editor/ure-role-edit.php:106
527
  msgid "Restore Roles from backup copy. Be careful, backup was created when you started URE 1st time. All changes you made after that will be lost"
528
  msgstr "Restaurar Roles desde copia de respaldo. Ten cuidado, el respaldo se creó cuando iniciaste URE por primera vez. Todos los cambios posteriores serán eliminados."
529
 
530
  # @ ure
531
- #: user-role-editor/ure-role-edit.php:108
532
  msgid "Warning! Be careful - removing critical capability could crash some plugin or other custom code"
533
  msgstr "¡Advertencia! Ten cuidado. Remover Privilegios críticos podría inutilizar algún plugin o algún otro código personalizado."
534
 
535
  # @ ure
536
- #: user-role-editor/ure-role-edit.php:110
537
  msgid "Please confirm to continue"
538
  msgstr "Por favor confirma para continuar"
539
 
540
  # @ ure
541
- #: user-role-editor/ure-role-edit.php:147
542
  #, php-format
543
  msgid "Role \"%s\" update: please confirm to continue"
544
  msgstr "Actualizar Rol \"%s\": Por favor confirma para continuar"
545
 
546
  # @ ure
547
- #: user-role-editor/ure-role-edit.php:155
548
  msgid "Select Role and change its capabilities list"
549
  msgstr "Selecciona el Rol para cambiar su lista de Privilegios"
550
 
551
  # @ ure
552
- #: user-role-editor/ure-role-edit.php:157
553
  msgid "Select Role:"
554
  msgstr "Selecciona el Rol:"
555
 
556
  # @ ure
557
- #: user-role-editor/ure-role-edit.php:167
558
- #: user-role-editor/ure-user-edit.php:91
559
  msgid "Show capabilities in human readable form"
560
  msgstr "Mostrar Privilegios de forma legible"
561
 
562
  # @ ure
563
- #: user-role-editor/ure-role-edit.php:176
564
- #: user-role-editor/ure-user-edit.php:100
565
  msgid "Show deprecated capabilities"
566
  msgstr "Mostrar privilegios obsoletos"
567
 
568
  # @ default
569
- #: user-role-editor/ure-role-edit.php:180
570
  msgid "If checked, then apply action to ALL sites of this Network"
571
  msgstr "Si está marcado se aplicará la acción a TODOS los sitios de esta red"
572
 
573
  # @ ure
574
- #: user-role-editor/ure-role-edit.php:190
575
  msgid "Apply to All Sites"
576
  msgstr "Aplicar a todos los sitios"
577
 
578
  # @ ure
579
- #: user-role-editor/ure-role-edit.php:251
580
- #: user-role-editor/ure-user-edit.php:163
 
 
 
 
 
 
 
 
 
 
 
 
 
 
581
  msgid "Update"
582
  msgstr "Actualizar"
583
 
584
  # @ ure
585
- #: user-role-editor/ure-role-edit.php:251
586
- #: user-role-editor/ure-user-edit.php:163
587
  msgid "Save Changes"
588
  msgstr "Guardar Cambios"
589
 
590
  # @ ure
591
- #: user-role-editor/ure-role-edit.php:252
592
- #: user-role-editor/ure-user-edit.php:164
593
  msgid "Cancel"
594
  msgstr "Cancelar"
595
 
596
  # @ ure
597
- #: user-role-editor/ure-role-edit.php:252
598
- #: user-role-editor/ure-user-edit.php:164
599
  msgid "Cancel not saved changes"
600
  msgstr "Cancelar cambios no guardados"
601
 
602
  # @ ure
603
- #: user-role-editor/ure-role-edit.php:255
604
  msgid "Select All"
605
  msgstr ""
606
 
607
  # @ ure
608
- #: user-role-editor/ure-role-edit.php:255
609
  msgid "Select All Capabilities"
610
  msgstr ""
611
 
612
- #: user-role-editor/ure-role-edit.php:256
613
  msgid "Unselect All"
614
  msgstr ""
615
 
616
  # @ ure
617
- #: user-role-editor/ure-role-edit.php:256
618
  msgid "Unselect All Capabilities"
619
  msgstr ""
620
 
621
- #: user-role-editor/ure-role-edit.php:257
622
  msgid "Reverse"
623
  msgstr ""
624
 
625
- #: user-role-editor/ure-role-edit.php:257
626
  msgid "Turn checked capabilities off and vise versa"
627
  msgstr ""
628
 
629
  # @ ure
630
- #: user-role-editor/ure-role-edit.php:260
631
  msgid "Reset"
632
  msgstr "Reiniciar"
633
 
634
  # @ ure
635
- #: user-role-editor/ure-role-edit.php:260
636
  msgid "Restore Roles from backup copy"
637
  msgstr "Restaurar Roles desde la copia de respaldo"
638
 
639
  # @ ure
640
- #: user-role-editor/ure-role-edit.php:270
641
  msgid "Add New Role"
642
  msgstr "Agregar nuevo Rol"
643
 
644
  # @ ure
645
- #: user-role-editor/ure-role-edit.php:272
646
  msgid "Name: "
647
  msgstr "Nombre:"
648
 
649
  # @ ure
650
- #: user-role-editor/ure-role-edit.php:276
651
  msgid "Make copy of: "
652
  msgstr "Hacer copia de:"
653
 
654
  # @ ure
655
- #: user-role-editor/ure-role-edit.php:279
656
- #: user-role-editor/ure-role-edit.php:308
657
  msgid "Add"
658
  msgstr "Agregar"
659
 
660
  # @ ure
661
- #: user-role-editor/ure-role-edit.php:279
662
  msgid "Add New User Role"
663
  msgstr "Agregar nuevo Rol de Usuario"
664
 
665
  # @ ure
666
- #: user-role-editor/ure-role-edit.php:283
667
  msgid "Default Role for New User"
668
  msgstr "Rol predeterminado para Nuevo Usuario"
669
 
670
  # @ ure
671
- #: user-role-editor/ure-role-edit.php:288
672
  msgid "Change"
673
  msgstr "Cambiar"
674
 
675
  # @ ure
676
- #: user-role-editor/ure-role-edit.php:288
677
  msgid "Set as Default User Role"
678
  msgstr "Asignar como Rol predeterminado de Usuario"
679
 
680
  # @ ure
681
- #: user-role-editor/ure-role-edit.php:298
682
  msgid "Delete"
683
  msgstr "Eliminar"
684
 
685
  # @ ure
686
- #: user-role-editor/ure-role-edit.php:298
687
  msgid "Delete User Role"
688
  msgstr "Eliminar Rol de Usuario"
689
 
690
  # @ ure
691
- #: user-role-editor/ure-role-edit.php:303
692
- #: user-role-editor/ure-role-edit.php:308
693
  msgid "Add New Capability"
694
  msgstr "Agregar nuevo Privilegio"
695
 
696
  # @ ure
697
- #: user-role-editor/ure-role-edit.php:313
698
  msgid "Remove Capability"
699
  msgstr "Eliminar Privilegio"
700
 
701
  # @ ure
702
- #: user-role-editor/ure-role-edit.php:318
703
  msgid "Remove"
704
  msgstr "Eliminar"
705
 
706
  # @ ure
707
- #: user-role-editor/ure-role-edit.php:318
708
  msgid "Remove User Capability"
709
  msgstr "Eliminar Privilegio de usuario"
710
 
711
  # @ ure
712
- #: user-role-editor/ure-user-edit.php:67
713
  #, php-format
714
  msgid "User \"%s\" update: please confirm to continue"
715
  msgstr "Actualizar usuario \"%s\": Por favor confirma para continuar"
716
 
717
  # @ ure
718
- #: user-role-editor/ure-user-edit.php:79
719
  msgid "Change capabilities for user"
720
  msgstr "Cambiar Privilegios de usuario"
721
 
722
  # @ ure
723
- #: user-role-editor/ure-user-edit.php:82
724
  msgid "Role:"
725
  msgstr "Rol"
726
 
727
  # @ ure
728
- #: user-role-editor/ure-user-edit.php:104
729
  msgid "Add capabilities to this user:"
730
  msgstr "Agregar Privilegios a este usuario"
731
 
732
  # @ ure
733
- #: user-role-editor/ure-options.php:59
734
  msgid "User Roles are restored from the backup data. "
735
  msgstr "Los roles de usuario han sido restaurados desde los datos de respaldo"
736
 
737
  # @ ure
738
- #: user-role-editor/ure-options.php:125
739
  msgid "Error: "
740
  msgstr "Error:"
741
 
742
  # @ ure
743
- #: user-role-editor/ure-options.php:125
744
- #: user-role-editor/ure-options.php:143
745
  msgid "Role"
746
  msgstr "Rol"
747
 
748
  # @ ure
749
- #: user-role-editor/ure-options.php:125
750
  msgid "does not exist"
751
  msgstr "no existe"
752
 
753
  # @ ure
754
- #: user-role-editor/ure-options.php:143
755
  msgid "is updated successfully"
756
  msgstr "se ha actualizado exitosamente"
757
 
758
  # @ ure
759
- #: user-role-editor/ure-options.php:152
760
  msgid "User"
761
  msgstr "Usuario"
762
 
763
  # @ ure
764
- #: user-role-editor/ure-options.php:152
765
  msgid "capabilities are updated successfully"
766
  msgstr "privilegios se han actualizado exitosamente"
767
 
768
  # @ ure
769
- #: user-role-editor/ure-options.php:215
770
  msgid "About this Plugin:"
771
  msgstr "Acerca de este plugin:"
772
 
773
  # @ ure
774
- #: user-role-editor/ure-options.php:216
775
  msgid "Author's website"
776
  msgstr "Sitio web del autor"
777
 
778
  # @ ure
779
- #: user-role-editor/ure-options.php:217
780
  msgid "Plugin webpage"
781
  msgstr "Página web del plugin"
782
 
783
  # @ ure
784
- #: user-role-editor/ure-options.php:219
785
  msgid "FAQ"
786
  msgstr "FAQ"
787
 
788
  # @ ure
789
- #: user-role-editor/ure-options.php:220
790
  msgid "Greetings"
791
  msgstr ""
792
 
793
  # @ ure
794
- #: user-role-editor/ure-options.php:242
795
  msgid "Greetings:"
796
  msgstr "Agradecimientos:"
797
 
798
  # @ ure
799
- #: user-role-editor/ure-options.php:243
800
  msgid "It's me, the author"
801
  msgstr "Soy yo, el autor"
802
 
803
  # @ ure
804
- #: user-role-editor/ure-options.php:244
805
  msgid "For the help with Belorussian translation"
806
  msgstr "Por la ayuda con la traducción al Bielorruso"
807
 
808
  # @ ure
809
- #: user-role-editor/ure-options.php:245
810
  msgid "For the help with Brasilian translation"
811
  msgstr "Por la ayuda con la traducción al Portugués Brasilero"
812
 
813
  # @ ure
814
- #: user-role-editor/ure-options.php:246
 
 
 
 
 
 
815
  msgid "For the help with Chinese translation"
816
  msgstr "Por la ayuda con la traducción al Chino"
817
 
818
  # @ ure
819
- #: user-role-editor/ure-options.php:247
820
  msgid "For the help with Dutch translation"
821
  msgstr "Por la ayuda con la traducción al Dutch"
822
 
823
  # @ ure
824
- #: user-role-editor/ure-options.php:248
825
  msgid "For the help with Finnish translation"
826
  msgstr "Por la ayuda con la traducción al Finnish"
827
 
828
  # @ ure
829
- #: user-role-editor/ure-options.php:249
830
- #: user-role-editor/ure-options.php:250
831
  msgid "For the help with French translation"
832
  msgstr "Por la ayuda con la traducción al Francés"
833
 
834
  # @ ure
835
- #: user-role-editor/ure-options.php:251
836
  msgid "For the help with German translation"
837
  msgstr "Por la ayuda con la traducción al Alemán"
838
 
839
  # @ ure
840
- #: user-role-editor/ure-options.php:252
841
- #: user-role-editor/ure-options.php:253
842
  msgid "For the help with Hebrew translation"
843
  msgstr ""
844
 
845
  # @ ure
846
- #: user-role-editor/ure-options.php:254
847
  msgid "For the help with Hindi translation"
848
  msgstr ""
849
 
850
  # @ ure
851
- #: user-role-editor/ure-options.php:255
852
  msgid "For the help with Hungarian translation"
853
  msgstr "Por la ayuda con la traducción al Húngaro"
854
 
855
  # @ ure
856
  # @ pgc
857
- #: user-role-editor/ure-options.php:256
858
- #: user-role-editor/ure-options.php:257
859
  msgid "For the help with Italian translation"
860
  msgstr "Por la ayuda con la traducción al Italiano"
861
 
862
  # @ ure
863
- #: user-role-editor/ure-options.php:258
864
  msgid "For the help with Japanese translation"
865
  msgstr "Por la ayuda con la traducción al Japonés"
866
 
867
  # @ ure
868
  # @ pgc
869
- #: user-role-editor/ure-options.php:259
870
  msgid "For the help with Lithuanian translation"
871
  msgstr ""
872
 
873
  # @ ure
874
- #: user-role-editor/ure-options.php:260
875
- #: user-role-editor/ure-options.php:261
 
876
  msgid "For the help with Persian translation"
877
  msgstr "Por la ayuda con la traducción al Persa"
878
 
879
  # @ ure
880
- #: user-role-editor/ure-options.php:262
 
881
  msgid "For the help with Polish translation"
882
  msgstr "Por la ayuda con la traducción al Polaco"
883
 
884
  # @ ure
885
- #: user-role-editor/ure-options.php:263
886
- #: user-role-editor/ure-options.php:264
887
  msgid "For the help with Spanish translation"
888
  msgstr "Por la ayuda con la traducción al Español"
889
 
890
  # @ ure
891
- #: user-role-editor/ure-options.php:265
892
  msgid "For the updated Swedish translation"
893
  msgstr "Para actualizar Swedish translation"
894
 
895
  # @ ure
896
- #: user-role-editor/ure-options.php:266
897
  msgid "For the help with Swedish translation"
898
  msgstr "Por la ayuda con la traducción al Swedish"
899
 
900
  # @ ure
901
- #: user-role-editor/ure-options.php:267
902
  msgid "For the help with Turkish translation"
903
  msgstr "Por la ayuda con la traducción al Turco"
904
 
905
  # @ ure
906
- #: user-role-editor/ure-options.php:269
907
  msgid "For the code to hide administrator role"
908
  msgstr "Por el código que oculta el Rol de Administrador"
909
 
910
  # @ ure
911
- #: user-role-editor/ure-options.php:270
912
  msgid "For the code enhancement suggestion"
913
  msgstr "Por las sugerencias de mejoramiento del código"
914
 
915
  # @ ure
916
- #: user-role-editor/ure-options.php:272
917
  msgid "Do you wish to see your name with link to your site here? You are welcome! Your help with translation and new ideas are very appreciated."
918
  msgstr "¿Deseas ver tu nombre enlazado a tu sitio web aquí? ¡Eres bienvenido! Tu ayuda en la traducción y nuevas ideas son bien apreciadas."
919
 
2
  msgstr ""
3
  "Project-Id-Version: User Role Editor v. 2.0\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-09-01 08:43+0700\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Vladimir Garagulya <vladimir@shinephp.com>\n"
8
  "Language-Team: ShinePHP.com <vladimir@shinephp.com>\n"
36
  msgstr "User Role Editor requiere PHP 5.0 o superior"
37
 
38
  # @ ure
39
+ #: user-role-editor/user-role-editor.php:76
40
  msgid "Only"
41
  msgstr "Sólo"
42
 
43
  # @ ure
44
+ #: user-role-editor/user-role-editor.php:76
45
  msgid "is allowed to use"
46
  msgstr "se permite el uso"
47
 
48
  # @ ure
49
  # @ default
50
+ #: user-role-editor/user-role-editor.php:82
51
+ #: user-role-editor/user-role-editor.php:251
52
  msgid "User Role Editor"
53
  msgstr "User Role Editor"
54
 
55
  # @ ure
56
+ #: user-role-editor/user-role-editor.php:223
57
  msgid "Settings"
58
  msgstr "Opciones"
59
 
60
  # @ ure
61
+ #: user-role-editor/user-role-editor.php:233
62
+ #: user-role-editor/includes/ure-options.php:235
63
  msgid "Changelog"
64
  msgstr "Registro de cambios"
65
 
66
  # @ ure
67
+ #: user-role-editor/user-role-editor.php:280
68
  msgid "Capabilities"
69
  msgstr "Privilegios"
70
 
71
  # ure
72
+ #: user-role-editor/includes/ure-lib.php:34
73
  msgid "Error is occur. Please check the log file."
74
  msgstr "Un error ha ocurrido. Por favor revisa el archivo de registros."
75
 
76
  # @ ure
77
+ #: user-role-editor/includes/ure-lib.php:144
78
  msgid "Database operation error. Check log file."
79
  msgstr "Operación errónea de la base de datos. Revisar el archivo de registros."
80
 
81
  # @ ure
82
+ #: user-role-editor/includes/ure-lib.php:177
83
  msgid "No backup data. It is created automatically before the first role data update."
84
  msgstr "Ningunos datos de reserva. Se crea automáticamente antes de la primera actualización de los datos del papel."
85
 
86
  # @ ure
87
+ #: user-role-editor/includes/ure-lib.php:215
88
  msgid "Backup record is created for the current role capabilities"
89
  msgstr "Ha sido creada una grabación de respaldo para este Rol y sus privilegios"
90
 
91
  # @ ure
92
+ #: user-role-editor/includes/ure-lib.php:329
93
  msgid "Error: Role name must contain latin characters and digits only!"
94
  msgstr "Error: el nombre del Rol sólo debe contener caracteres latinos y dígitos."
95
 
96
  # @ ure
97
+ #: user-role-editor/includes/ure-lib.php:336
98
  #, php-format
99
  msgid "Role %s exists already"
100
  msgstr "Rol %s ya existe"
101
 
102
  # @ ure
103
+ #: user-role-editor/includes/ure-lib.php:349
104
  msgid "Error is encountered during new role create operation"
105
  msgstr "Error encontrado durante la creación de un nuevo Rol"
106
 
107
  # @ ure
108
+ #: user-role-editor/includes/ure-lib.php:351
109
  #, php-format
110
  msgid "Role %s is created successfully"
111
  msgstr "Rol %s se ha creado exitosamente"
112
 
113
  # @ ure
114
+ #: user-role-editor/includes/ure-lib.php:435
115
  msgid "Error encountered during role delete operation"
116
  msgstr "Error encontrado durante la eliminación del Rol"
117
 
118
  # @ ure
119
+ #: user-role-editor/includes/ure-lib.php:437
120
  #, php-format
121
  msgid "Role %s is deleted successfully"
122
  msgstr "Rol %s se ha eliminado exitosamente"
123
 
124
  # @ ure
125
+ #: user-role-editor/includes/ure-lib.php:455
126
  msgid "Error encountered during default role change operation"
127
  msgstr "Error encontrado durante el cambio de Rol predeterminado"
128
 
129
  # @ ure
130
+ #: user-role-editor/includes/ure-lib.php:461
131
  #, php-format
132
  msgid "Default role for new users is set to %s successfully"
133
  msgstr "El Rol predeterminado para nuevos usuarios se ha configurado exitosamente para %s"
134
 
135
  # @ ure
136
+ #: user-role-editor/includes/ure-lib.php:489
137
  msgid "Editor"
138
  msgstr "Editor"
139
 
140
  # @ ure
141
+ #: user-role-editor/includes/ure-lib.php:490
142
  msgid "Author"
143
  msgstr "Autor"
144
 
145
  # @ ure
146
+ #: user-role-editor/includes/ure-lib.php:491
147
  msgid "Contributor"
148
  msgstr "Colaborador"
149
 
150
  # @ ure
151
+ #: user-role-editor/includes/ure-lib.php:492
152
  msgid "Subscriber"
153
  msgstr "Suscriptor"
154
 
155
  # @ ure
156
+ #: user-role-editor/includes/ure-lib.php:494
157
  msgid "Switch themes"
158
  msgstr "Cambiar plantillas"
159
 
160
  # @ ure
161
+ #: user-role-editor/includes/ure-lib.php:495
162
  msgid "Edit themes"
163
  msgstr "Editar plantillas"
164
 
165
  # @ ure
166
+ #: user-role-editor/includes/ure-lib.php:496
167
  msgid "Activate plugins"
168
  msgstr "Activar plugins"
169
 
170
  # @ ure
171
+ #: user-role-editor/includes/ure-lib.php:497
172
  msgid "Edit plugins"
173
  msgstr "Editar plugins"
174
 
175
  # @ ure
176
+ #: user-role-editor/includes/ure-lib.php:498
177
  msgid "Edit users"
178
  msgstr "Editar usuarios"
179
 
180
  # @ ure
181
+ #: user-role-editor/includes/ure-lib.php:499
182
  msgid "Edit files"
183
  msgstr "Editar archivos"
184
 
185
  # @ ure
186
+ #: user-role-editor/includes/ure-lib.php:500
187
  msgid "Manage options"
188
  msgstr "Administrar opciones"
189
 
190
  # @ ure
191
+ #: user-role-editor/includes/ure-lib.php:501
192
  msgid "Moderate comments"
193
  msgstr "Moderar comentarios"
194
 
195
  # @ ure
196
+ #: user-role-editor/includes/ure-lib.php:502
197
  msgid "Manage categories"
198
  msgstr "Administrar categorías"
199
 
200
  # @ ure
201
+ #: user-role-editor/includes/ure-lib.php:503
202
  msgid "Manage links"
203
  msgstr "Administrar enlaces"
204
 
205
  # @ ure
206
+ #: user-role-editor/includes/ure-lib.php:504
207
  msgid "Upload files"
208
  msgstr "Subir archivos"
209
 
210
  # @ ure
211
+ #: user-role-editor/includes/ure-lib.php:505
212
  msgid "Import"
213
  msgstr "Importar"
214
 
215
  # @ ure
216
+ #: user-role-editor/includes/ure-lib.php:506
217
  msgid "Unfiltered html"
218
  msgstr "Omitir filtrado de HTML"
219
 
220
  # @ ure
221
+ #: user-role-editor/includes/ure-lib.php:507
222
  msgid "Edit posts"
223
  msgstr "Editar entradas"
224
 
225
  # @ ure
226
+ #: user-role-editor/includes/ure-lib.php:508
227
  msgid "Edit others posts"
228
  msgstr "Editar entradas de otros"
229
 
230
  # @ ure
231
+ #: user-role-editor/includes/ure-lib.php:509
232
  msgid "Edit published posts"
233
  msgstr "Editar entradas publicadas"
234
 
235
  # @ ure
236
+ #: user-role-editor/includes/ure-lib.php:510
237
  msgid "Publish posts"
238
  msgstr "Publicar entradas"
239
 
240
  # @ ure
241
+ #: user-role-editor/includes/ure-lib.php:511
242
  msgid "Edit pages"
243
  msgstr "Editar páginas"
244
 
245
  # @ ure
246
+ #: user-role-editor/includes/ure-lib.php:512
247
  msgid "Read"
248
  msgstr "Leer"
249
 
250
  # @ ure
251
+ #: user-role-editor/includes/ure-lib.php:513
252
  msgid "Level 10"
253
  msgstr "Nivel 10"
254
 
255
  # @ ure
256
+ #: user-role-editor/includes/ure-lib.php:514
257
  msgid "Level 9"
258
  msgstr "Nivel 9"
259
 
260
  # @ ure
261
+ #: user-role-editor/includes/ure-lib.php:515
262
  msgid "Level 8"
263
  msgstr "Nivel 8"
264
 
265
  # @ ure
266
+ #: user-role-editor/includes/ure-lib.php:516
267
  msgid "Level 7"
268
  msgstr "Nivel 7"
269
 
270
  # @ ure
271
+ #: user-role-editor/includes/ure-lib.php:517
272
  msgid "Level 6"
273
  msgstr "Nivel 6"
274
 
275
  # @ ure
276
+ #: user-role-editor/includes/ure-lib.php:518
277
  msgid "Level 5"
278
  msgstr "Nivel 5"
279
 
280
  # @ ure
281
+ #: user-role-editor/includes/ure-lib.php:519
282
  msgid "Level 4"
283
  msgstr "Nivel 4"
284
 
285
  # @ ure
286
+ #: user-role-editor/includes/ure-lib.php:520
287
  msgid "Level 3"
288
  msgstr "Nivel 3"
289
 
290
  # @ ure
291
+ #: user-role-editor/includes/ure-lib.php:521
292
  msgid "Level 2"
293
  msgstr "Nivel 2"
294
 
295
  # @ ure
296
+ #: user-role-editor/includes/ure-lib.php:522
297
  msgid "Level 1"
298
  msgstr "Nivel 1"
299
 
300
  # @ ure
301
+ #: user-role-editor/includes/ure-lib.php:523
302
  msgid "Level 0"
303
  msgstr "Nivel 0"
304
 
305
  # @ ure
306
+ #: user-role-editor/includes/ure-lib.php:524
307
  msgid "Edit others pages"
308
  msgstr "Editar páginas de otros"
309
 
310
  # @ ure
311
+ #: user-role-editor/includes/ure-lib.php:525
312
  msgid "Edit published pages"
313
  msgstr "Editar páginas publicadas"
314
 
315
  # @ ure
316
+ #: user-role-editor/includes/ure-lib.php:526
317
  msgid "Publish pages"
318
  msgstr "Publicar páginas"
319
 
320
  # @ ure
321
+ #: user-role-editor/includes/ure-lib.php:527
322
  msgid "Delete pages"
323
  msgstr "Eliminar páginas"
324
 
325
  # ure
326
+ #: user-role-editor/includes/ure-lib.php:528
327
  msgid "Delete others pages"
328
  msgstr "Eliminar páginas de otros"
329
 
330
  # @ ure
331
+ #: user-role-editor/includes/ure-lib.php:529
332
  msgid "Delete published pages"
333
  msgstr "Eliminar páginas publicadas"
334
 
335
  # ure
336
+ #: user-role-editor/includes/ure-lib.php:530
337
  msgid "Delete posts"
338
  msgstr "Eliminar entradas"
339
 
340
  # @ ure
341
+ #: user-role-editor/includes/ure-lib.php:531
342
  msgid "Delete others posts"
343
  msgstr "Eliminar entradas de otros"
344
 
345
  # ure
346
+ #: user-role-editor/includes/ure-lib.php:532
347
  msgid "Delete published posts"
348
  msgstr "Eliminar entradas publicadas"
349
 
350
  # ure
351
+ #: user-role-editor/includes/ure-lib.php:533
352
  msgid "Delete private posts"
353
  msgstr "Eliminar entradas privadas"
354
 
355
  # @ ure
356
+ #: user-role-editor/includes/ure-lib.php:534
357
  msgid "Edit private posts"
358
  msgstr "Editar entradas privadas"
359
 
360
  # @ ure
361
+ #: user-role-editor/includes/ure-lib.php:535
362
  msgid "Read private posts"
363
  msgstr "Leer entradas privadas"
364
 
365
  # @ ure
366
+ #: user-role-editor/includes/ure-lib.php:536
367
  msgid "Delete private pages"
368
  msgstr "Eliminar páginas privadas"
369
 
370
  # @ ure
371
+ #: user-role-editor/includes/ure-lib.php:537
372
  msgid "Edit private pages"
373
  msgstr "Editar páginas privadas"
374
 
375
  # @ ure
376
+ #: user-role-editor/includes/ure-lib.php:538
377
  msgid "Read private pages"
378
  msgstr "Leer páginas privadas"
379
 
380
  # @ ure
381
+ #: user-role-editor/includes/ure-lib.php:539
382
  msgid "Delete users"
383
  msgstr "Eliminar usuarios"
384
 
385
  # @ ure
386
+ #: user-role-editor/includes/ure-lib.php:540
387
  msgid "Create users"
388
  msgstr "Crear usuarios"
389
 
390
  # @ ure
391
+ #: user-role-editor/includes/ure-lib.php:541
392
  msgid "Unfiltered upload"
393
  msgstr "Omitir filtrado de subidas"
394
 
395
  # @ ure
396
+ #: user-role-editor/includes/ure-lib.php:542
397
  msgid "Edit dashboard"
398
  msgstr "Editar escritorio"
399
 
400
  # @ ure
401
+ #: user-role-editor/includes/ure-lib.php:543
402
  msgid "Update plugins"
403
  msgstr "Actualizar plugins"
404
 
405
  # @ ure
406
+ #: user-role-editor/includes/ure-lib.php:544
407
  msgid "Delete plugins"
408
  msgstr "Eliminar plugins"
409
 
410
  # @ ure
411
+ #: user-role-editor/includes/ure-lib.php:545
412
  msgid "Install plugins"
413
  msgstr "Instalar plugins"
414
 
415
  # @ ure
416
+ #: user-role-editor/includes/ure-lib.php:546
417
  msgid "Update themes"
418
  msgstr "Actualizar plantillas"
419
 
420
  # @ ure
421
+ #: user-role-editor/includes/ure-lib.php:547
422
  msgid "Install themes"
423
  msgstr "Instalar plantillas"
424
 
425
  # @ ure
426
+ #: user-role-editor/includes/ure-lib.php:548
427
  msgid "Update core"
428
  msgstr "Actualizar núcleo"
429
 
430
  # @ ure
431
+ #: user-role-editor/includes/ure-lib.php:549
432
  msgid "List users"
433
  msgstr "Listar usuarios"
434
 
435
  # @ ure
436
+ #: user-role-editor/includes/ure-lib.php:550
437
  msgid "Remove users"
438
  msgstr "Eliminar usuarios"
439
 
440
  # @ ure
441
+ #: user-role-editor/includes/ure-lib.php:551
442
  msgid "Add users"
443
  msgstr "Agregar usuarios"
444
 
445
  # @ ure
446
+ #: user-role-editor/includes/ure-lib.php:552
447
  msgid "Promote users"
448
  msgstr "Promover usuarios"
449
 
450
  # @ ure
451
+ #: user-role-editor/includes/ure-lib.php:553
452
  msgid "Edit theme options"
453
  msgstr "Editar opciones de plantilla"
454
 
455
  # @ ure
456
+ #: user-role-editor/includes/ure-lib.php:554
457
  msgid "Delete themes"
458
  msgstr "Eliminar plantillas"
459
 
460
  # @ ure
461
+ #: user-role-editor/includes/ure-lib.php:555
462
  msgid "Export"
463
  msgstr "Exportar"
464
 
465
  # @ ure
466
+ #: user-role-editor/includes/ure-lib.php:639
467
  msgid "Error: Capability name must contain latin characters and digits only!"
468
  msgstr "Error: el nombre del Privilegio sólo debe contener caracteres latinos y dígitos."
469
 
470
  # @ ure
471
+ #: user-role-editor/includes/ure-lib.php:651
472
  #, php-format
473
  msgid "Capability %s is added successfully"
474
  msgstr "Privilegio %s se ha creado exitosamente"
475
 
476
  # @ ure
477
+ #: user-role-editor/includes/ure-lib.php:653
478
  #, php-format
479
  msgid "Capability %s exists already"
480
  msgstr "Ya existe el Privilegio %s"
481
 
482
  # @ ure
483
+ #: user-role-editor/includes/ure-lib.php:802
484
  #, php-format
485
  msgid "Error! You do not have permission to delete this capability: %s!"
486
  msgstr "¡Error! No tienes permisos para eliminar este Privilegio: %s!"
487
 
488
  # @ ure
489
+ #: user-role-editor/includes/ure-lib.php:824
490
  #, php-format
491
  msgid "Capability %s is removed successfully"
492
  msgstr "Privilegio %s se ha eliminado exitosamente"
493
 
494
  # @ ure
495
+ #: user-role-editor/includes/ure-lib.php:889
496
  msgid "Help"
497
  msgstr "Ayuda"
498
 
499
  # @ ure
500
+ #: user-role-editor/includes/ure-role-edit.php:29
501
  msgid "None"
502
  msgstr "Нет"
503
 
504
  # @ ure
505
+ #: user-role-editor/includes/ure-role-edit.php:101
506
  msgid " Name can not be empty!"
507
  msgstr "¡El nombre no puede estar vacío!"
508
 
509
  # @ ure
510
+ #: user-role-editor/includes/ure-role-edit.php:105
511
  msgid " Name must contain latin characters and digits only!"
512
  msgstr "El nombre sólo debe contener caracteres latinos y dígitos."
513
 
514
  # @ ure
515
+ #: user-role-editor/includes/ure-role-edit.php:110
516
+ #: user-role-editor/includes/ure-role-edit.php:367
517
  msgid "Delete Role"
518
  msgstr "Eliminar Rol"
519
 
520
  # @ ure
521
+ #: user-role-editor/includes/ure-role-edit.php:112
522
  msgid "Change Default Role"
523
  msgstr "Cambiar el Rol predeterminado"
524
 
525
  # @ ure
526
+ #: user-role-editor/includes/ure-role-edit.php:114
527
  msgid "Restore Roles from backup copy. Be careful, backup was created when you started URE 1st time. All changes you made after that will be lost"
528
  msgstr "Restaurar Roles desde copia de respaldo. Ten cuidado, el respaldo se creó cuando iniciaste URE por primera vez. Todos los cambios posteriores serán eliminados."
529
 
530
  # @ ure
531
+ #: user-role-editor/includes/ure-role-edit.php:116
532
  msgid "Warning! Be careful - removing critical capability could crash some plugin or other custom code"
533
  msgstr "¡Advertencia! Ten cuidado. Remover Privilegios críticos podría inutilizar algún plugin o algún otro código personalizado."
534
 
535
  # @ ure
536
+ #: user-role-editor/includes/ure-role-edit.php:118
537
  msgid "Please confirm to continue"
538
  msgstr "Por favor confirma para continuar"
539
 
540
  # @ ure
541
+ #: user-role-editor/includes/ure-role-edit.php:155
542
  #, php-format
543
  msgid "Role \"%s\" update: please confirm to continue"
544
  msgstr "Actualizar Rol \"%s\": Por favor confirma para continuar"
545
 
546
  # @ ure
547
+ #: user-role-editor/includes/ure-role-edit.php:163
548
  msgid "Select Role and change its capabilities list"
549
  msgstr "Selecciona el Rol para cambiar su lista de Privilegios"
550
 
551
  # @ ure
552
+ #: user-role-editor/includes/ure-role-edit.php:165
553
  msgid "Select Role:"
554
  msgstr "Selecciona el Rol:"
555
 
556
  # @ ure
557
+ #: user-role-editor/includes/ure-role-edit.php:175
558
+ #: user-role-editor/includes/ure-user-edit.php:91
559
  msgid "Show capabilities in human readable form"
560
  msgstr "Mostrar Privilegios de forma legible"
561
 
562
  # @ ure
563
+ #: user-role-editor/includes/ure-role-edit.php:184
564
+ #: user-role-editor/includes/ure-user-edit.php:100
565
  msgid "Show deprecated capabilities"
566
  msgstr "Mostrar privilegios obsoletos"
567
 
568
  # @ default
569
+ #: user-role-editor/includes/ure-role-edit.php:188
570
  msgid "If checked, then apply action to ALL sites of this Network"
571
  msgstr "Si está marcado se aplicará la acción a TODOS los sitios de esta red"
572
 
573
  # @ ure
574
+ #: user-role-editor/includes/ure-role-edit.php:198
575
  msgid "Apply to All Sites"
576
  msgstr "Aplicar a todos los sitios"
577
 
578
  # @ ure
579
+ #: user-role-editor/includes/ure-role-edit.php:205
580
+ #: user-role-editor/includes/ure-user-edit.php:105
581
+ #, fuzzy
582
+ msgid "Core capabilities:"
583
+ msgstr "Privilegios"
584
+
585
+ # @ ure
586
+ #: user-role-editor/includes/ure-role-edit.php:268
587
+ #: user-role-editor/includes/ure-user-edit.php:167
588
+ #, fuzzy
589
+ msgid "Custom capabilities:"
590
+ msgstr "Privilegios"
591
+
592
+ # @ ure
593
+ #: user-role-editor/includes/ure-role-edit.php:319
594
+ #: user-role-editor/includes/ure-user-edit.php:222
595
  msgid "Update"
596
  msgstr "Actualizar"
597
 
598
  # @ ure
599
+ #: user-role-editor/includes/ure-role-edit.php:319
600
+ #: user-role-editor/includes/ure-user-edit.php:222
601
  msgid "Save Changes"
602
  msgstr "Guardar Cambios"
603
 
604
  # @ ure
605
+ #: user-role-editor/includes/ure-role-edit.php:320
606
+ #: user-role-editor/includes/ure-user-edit.php:223
607
  msgid "Cancel"
608
  msgstr "Cancelar"
609
 
610
  # @ ure
611
+ #: user-role-editor/includes/ure-role-edit.php:320
612
+ #: user-role-editor/includes/ure-user-edit.php:223
613
  msgid "Cancel not saved changes"
614
  msgstr "Cancelar cambios no guardados"
615
 
616
  # @ ure
617
+ #: user-role-editor/includes/ure-role-edit.php:323
618
  msgid "Select All"
619
  msgstr ""
620
 
621
  # @ ure
622
+ #: user-role-editor/includes/ure-role-edit.php:323
623
  msgid "Select All Capabilities"
624
  msgstr ""
625
 
626
+ #: user-role-editor/includes/ure-role-edit.php:327
627
  msgid "Unselect All"
628
  msgstr ""
629
 
630
  # @ ure
631
+ #: user-role-editor/includes/ure-role-edit.php:327
632
  msgid "Unselect All Capabilities"
633
  msgstr ""
634
 
635
+ #: user-role-editor/includes/ure-role-edit.php:328
636
  msgid "Reverse"
637
  msgstr ""
638
 
639
+ #: user-role-editor/includes/ure-role-edit.php:328
640
  msgid "Turn checked capabilities off and vise versa"
641
  msgstr ""
642
 
643
  # @ ure
644
+ #: user-role-editor/includes/ure-role-edit.php:334
645
  msgid "Reset"
646
  msgstr "Reiniciar"
647
 
648
  # @ ure
649
+ #: user-role-editor/includes/ure-role-edit.php:334
650
  msgid "Restore Roles from backup copy"
651
  msgstr "Restaurar Roles desde la copia de respaldo"
652
 
653
  # @ ure
654
+ #: user-role-editor/includes/ure-role-edit.php:344
655
  msgid "Add New Role"
656
  msgstr "Agregar nuevo Rol"
657
 
658
  # @ ure
659
+ #: user-role-editor/includes/ure-role-edit.php:346
660
  msgid "Name: "
661
  msgstr "Nombre:"
662
 
663
  # @ ure
664
+ #: user-role-editor/includes/ure-role-edit.php:350
665
  msgid "Make copy of: "
666
  msgstr "Hacer copia de:"
667
 
668
  # @ ure
669
+ #: user-role-editor/includes/ure-role-edit.php:353
670
+ #: user-role-editor/includes/ure-role-edit.php:382
671
  msgid "Add"
672
  msgstr "Agregar"
673
 
674
  # @ ure
675
+ #: user-role-editor/includes/ure-role-edit.php:353
676
  msgid "Add New User Role"
677
  msgstr "Agregar nuevo Rol de Usuario"
678
 
679
  # @ ure
680
+ #: user-role-editor/includes/ure-role-edit.php:357
681
  msgid "Default Role for New User"
682
  msgstr "Rol predeterminado para Nuevo Usuario"
683
 
684
  # @ ure
685
+ #: user-role-editor/includes/ure-role-edit.php:362
686
  msgid "Change"
687
  msgstr "Cambiar"
688
 
689
  # @ ure
690
+ #: user-role-editor/includes/ure-role-edit.php:362
691
  msgid "Set as Default User Role"
692
  msgstr "Asignar como Rol predeterminado de Usuario"
693
 
694
  # @ ure
695
+ #: user-role-editor/includes/ure-role-edit.php:372
696
  msgid "Delete"
697
  msgstr "Eliminar"
698
 
699
  # @ ure
700
+ #: user-role-editor/includes/ure-role-edit.php:372
701
  msgid "Delete User Role"
702
  msgstr "Eliminar Rol de Usuario"
703
 
704
  # @ ure
705
+ #: user-role-editor/includes/ure-role-edit.php:377
706
+ #: user-role-editor/includes/ure-role-edit.php:382
707
  msgid "Add New Capability"
708
  msgstr "Agregar nuevo Privilegio"
709
 
710
  # @ ure
711
+ #: user-role-editor/includes/ure-role-edit.php:387
712
  msgid "Remove Capability"
713
  msgstr "Eliminar Privilegio"
714
 
715
  # @ ure
716
+ #: user-role-editor/includes/ure-role-edit.php:392
717
  msgid "Remove"
718
  msgstr "Eliminar"
719
 
720
  # @ ure
721
+ #: user-role-editor/includes/ure-role-edit.php:392
722
  msgid "Remove User Capability"
723
  msgstr "Eliminar Privilegio de usuario"
724
 
725
  # @ ure
726
+ #: user-role-editor/includes/ure-user-edit.php:67
727
  #, php-format
728
  msgid "User \"%s\" update: please confirm to continue"
729
  msgstr "Actualizar usuario \"%s\": Por favor confirma para continuar"
730
 
731
  # @ ure
732
+ #: user-role-editor/includes/ure-user-edit.php:79
733
  msgid "Change capabilities for user"
734
  msgstr "Cambiar Privilegios de usuario"
735
 
736
  # @ ure
737
+ #: user-role-editor/includes/ure-user-edit.php:82
738
  msgid "Role:"
739
  msgstr "Rol"
740
 
741
  # @ ure
742
+ #: user-role-editor/includes/ure-user-edit.php:104
743
  msgid "Add capabilities to this user:"
744
  msgstr "Agregar Privilegios a este usuario"
745
 
746
  # @ ure
747
+ #: user-role-editor/includes/ure-options.php:59
748
  msgid "User Roles are restored from the backup data. "
749
  msgstr "Los roles de usuario han sido restaurados desde los datos de respaldo"
750
 
751
  # @ ure
752
+ #: user-role-editor/includes/ure-options.php:130
753
  msgid "Error: "
754
  msgstr "Error:"
755
 
756
  # @ ure
757
+ #: user-role-editor/includes/ure-options.php:130
758
+ #: user-role-editor/includes/ure-options.php:146
759
  msgid "Role"
760
  msgstr "Rol"
761
 
762
  # @ ure
763
+ #: user-role-editor/includes/ure-options.php:130
764
  msgid "does not exist"
765
  msgstr "no existe"
766
 
767
  # @ ure
768
+ #: user-role-editor/includes/ure-options.php:146
769
  msgid "is updated successfully"
770
  msgstr "se ha actualizado exitosamente"
771
 
772
  # @ ure
773
+ #: user-role-editor/includes/ure-options.php:154
774
  msgid "User"
775
  msgstr "Usuario"
776
 
777
  # @ ure
778
+ #: user-role-editor/includes/ure-options.php:154
779
  msgid "capabilities are updated successfully"
780
  msgstr "privilegios se han actualizado exitosamente"
781
 
782
  # @ ure
783
+ #: user-role-editor/includes/ure-options.php:232
784
  msgid "About this Plugin:"
785
  msgstr "Acerca de este plugin:"
786
 
787
  # @ ure
788
+ #: user-role-editor/includes/ure-options.php:233
789
  msgid "Author's website"
790
  msgstr "Sitio web del autor"
791
 
792
  # @ ure
793
+ #: user-role-editor/includes/ure-options.php:234
794
  msgid "Plugin webpage"
795
  msgstr "Página web del plugin"
796
 
797
  # @ ure
798
+ #: user-role-editor/includes/ure-options.php:236
799
  msgid "FAQ"
800
  msgstr "FAQ"
801
 
802
  # @ ure
803
+ #: user-role-editor/includes/ure-options.php:237
804
  msgid "Greetings"
805
  msgstr ""
806
 
807
  # @ ure
808
+ #: user-role-editor/includes/ure-options.php:259
809
  msgid "Greetings:"
810
  msgstr "Agradecimientos:"
811
 
812
  # @ ure
813
+ #: user-role-editor/includes/ure-options.php:260
814
  msgid "It's me, the author"
815
  msgstr "Soy yo, el autor"
816
 
817
  # @ ure
818
+ #: user-role-editor/includes/ure-options.php:261
819
  msgid "For the help with Belorussian translation"
820
  msgstr "Por la ayuda con la traducción al Bielorruso"
821
 
822
  # @ ure
823
+ #: user-role-editor/includes/ure-options.php:262
824
  msgid "For the help with Brasilian translation"
825
  msgstr "Por la ayuda con la traducción al Portugués Brasilero"
826
 
827
  # @ ure
828
+ #: user-role-editor/includes/ure-options.php:263
829
+ #, fuzzy
830
+ msgid "For the help with Brasilian Portuguese translation"
831
+ msgstr "Por la ayuda con la traducción al Portugués Brasilero"
832
+
833
+ # @ ure
834
+ #: user-role-editor/includes/ure-options.php:264
835
  msgid "For the help with Chinese translation"
836
  msgstr "Por la ayuda con la traducción al Chino"
837
 
838
  # @ ure
839
+ #: user-role-editor/includes/ure-options.php:265
840
  msgid "For the help with Dutch translation"
841
  msgstr "Por la ayuda con la traducción al Dutch"
842
 
843
  # @ ure
844
+ #: user-role-editor/includes/ure-options.php:266
845
  msgid "For the help with Finnish translation"
846
  msgstr "Por la ayuda con la traducción al Finnish"
847
 
848
  # @ ure
849
+ #: user-role-editor/includes/ure-options.php:267
850
+ #: user-role-editor/includes/ure-options.php:268
851
  msgid "For the help with French translation"
852
  msgstr "Por la ayuda con la traducción al Francés"
853
 
854
  # @ ure
855
+ #: user-role-editor/includes/ure-options.php:269
856
  msgid "For the help with German translation"
857
  msgstr "Por la ayuda con la traducción al Alemán"
858
 
859
  # @ ure
860
+ #: user-role-editor/includes/ure-options.php:270
861
+ #: user-role-editor/includes/ure-options.php:271
862
  msgid "For the help with Hebrew translation"
863
  msgstr ""
864
 
865
  # @ ure
866
+ #: user-role-editor/includes/ure-options.php:272
867
  msgid "For the help with Hindi translation"
868
  msgstr ""
869
 
870
  # @ ure
871
+ #: user-role-editor/includes/ure-options.php:273
872
  msgid "For the help with Hungarian translation"
873
  msgstr "Por la ayuda con la traducción al Húngaro"
874
 
875
  # @ ure
876
  # @ pgc
877
+ #: user-role-editor/includes/ure-options.php:274
878
+ #: user-role-editor/includes/ure-options.php:275
879
  msgid "For the help with Italian translation"
880
  msgstr "Por la ayuda con la traducción al Italiano"
881
 
882
  # @ ure
883
+ #: user-role-editor/includes/ure-options.php:276
884
  msgid "For the help with Japanese translation"
885
  msgstr "Por la ayuda con la traducción al Japonés"
886
 
887
  # @ ure
888
  # @ pgc
889
+ #: user-role-editor/includes/ure-options.php:277
890
  msgid "For the help with Lithuanian translation"
891
  msgstr ""
892
 
893
  # @ ure
894
+ #: user-role-editor/includes/ure-options.php:278
895
+ #: user-role-editor/includes/ure-options.php:279
896
+ #: user-role-editor/includes/ure-options.php:280
897
  msgid "For the help with Persian translation"
898
  msgstr "Por la ayuda con la traducción al Persa"
899
 
900
  # @ ure
901
+ #: user-role-editor/includes/ure-options.php:281
902
+ #: user-role-editor/includes/ure-options.php:282
903
  msgid "For the help with Polish translation"
904
  msgstr "Por la ayuda con la traducción al Polaco"
905
 
906
  # @ ure
907
+ #: user-role-editor/includes/ure-options.php:283
908
+ #: user-role-editor/includes/ure-options.php:284
909
  msgid "For the help with Spanish translation"
910
  msgstr "Por la ayuda con la traducción al Español"
911
 
912
  # @ ure
913
+ #: user-role-editor/includes/ure-options.php:285
914
  msgid "For the updated Swedish translation"
915
  msgstr "Para actualizar Swedish translation"
916
 
917
  # @ ure
918
+ #: user-role-editor/includes/ure-options.php:286
919
  msgid "For the help with Swedish translation"
920
  msgstr "Por la ayuda con la traducción al Swedish"
921
 
922
  # @ ure
923
+ #: user-role-editor/includes/ure-options.php:287
924
  msgid "For the help with Turkish translation"
925
  msgstr "Por la ayuda con la traducción al Turco"
926
 
927
  # @ ure
928
+ #: user-role-editor/includes/ure-options.php:289
929
  msgid "For the code to hide administrator role"
930
  msgstr "Por el código que oculta el Rol de Administrador"
931
 
932
  # @ ure
933
+ #: user-role-editor/includes/ure-options.php:290
934
  msgid "For the code enhancement suggestion"
935
  msgstr "Por las sugerencias de mejoramiento del código"
936
 
937
  # @ ure
938
+ #: user-role-editor/includes/ure-options.php:292
939
  msgid "Do you wish to see your name with link to your site here? You are welcome! Your help with translation and new ideas are very appreciated."
940
  msgstr "¿Deseas ver tu nombre enlazado a tu sitio web aquí? ¡Eres bienvenido! Tu ayuda en la traducción y nuevas ideas son bien apreciadas."
941
 
lang/ure-fa_IR.mo CHANGED
Binary file
lang/ure-fa_IR.po CHANGED
@@ -2,9 +2,9 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: User Role Editor\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2012-06-23 23:12+0700\n"
6
  "PO-Revision-Date: \n"
7
- "Last-Translator: Amir <am.kh70@gmail.com>\n"
8
  "Language-Team: Parsa <i@parsa.ws>\n"
9
  "Language: \n"
10
  "MIME-Version: 1.0\n"
@@ -31,714 +31,733 @@ msgstr "! لطفا بروزرسانی شود"
31
  msgid "User Role Editor requires PHP 5.0 or newer."
32
  msgstr "ویرایشگر نقش کاربر به پی‌اچ‌پی 5.0 یا جدیدتر احتیاج دارد"
33
 
34
- #: ../user-role-editor.php:65
35
  msgid "Only"
36
  msgstr "فقط"
37
 
38
- #: ../user-role-editor.php:65
39
  msgid "is allowed to use"
40
  msgstr "مجاز به استفاده از"
41
 
42
- #: ../user-role-editor.php:71
43
- #: ../user-role-editor.php:246
44
  msgid "User Role Editor"
45
  msgstr "ویرایش نقش کاربر"
46
 
47
- #: ../user-role-editor.php:218
48
  msgid "Settings"
49
  msgstr "تنظیمات"
50
 
51
- #: ../user-role-editor.php:228
52
- #: ../ure-options.php:218
53
  msgid "Changelog"
54
  msgstr "تاریخ تغییرات"
55
 
56
- #: ../user-role-editor.php:275
57
  msgid "Capabilities"
58
  msgstr "توانمندی‌ها"
59
 
60
- #: ../ure-lib.php:45
61
  msgid "Error is occur. Please check the log file."
62
  msgstr "اشکالی رخ داده، لطفاً لاگ عملیات را ببینید"
63
 
64
- #: ../ure-lib.php:155
65
  msgid "Database operation error. Check log file."
66
  msgstr "مشکل با دیتابیس. لطفاً لاگ عملیات را ببینید"
67
 
68
- #: ../ure-lib.php:188
69
  msgid "No backup data. It is created automatically before the first role data update."
70
  msgstr "اطلاعات پشتیبانی وجود ندارد. این پشتیبان به طور خودکار قبل از اولین بروزرسانی نقش ایجاد می شود"
71
 
72
- #: ../ure-lib.php:226
73
  msgid "Backup record is created for the current role capabilities"
74
  msgstr "اطلاعات پشتیبان برای تنظیمات نقش فعلی ذخیره شد"
75
 
76
- #: ../ure-lib.php:345
77
  msgid "Error: Role name must contain latin characters and digits only!"
78
  msgstr "مشکل: نام نقش باید فقط شامل کاراکترهای لاتین و اعداد باشد"
79
 
80
- #: ../ure-lib.php:352
81
  #, php-format
82
  msgid "Role %s exists already"
83
  msgstr "نقش %s وجود دارد"
84
 
85
- #: ../ure-lib.php:365
86
  msgid "Error is encountered during new role create operation"
87
  msgstr "در زمان ساخت نقش جدید مشکلی بوجود آمد"
88
 
89
- #: ../ure-lib.php:367
90
  #, php-format
91
  msgid "Role %s is created successfully"
92
  msgstr "نقش %s با موفقیت ساخته شد"
93
 
94
- #: ../ure-lib.php:451
95
  msgid "Error encountered during role delete operation"
96
  msgstr "اشکال در پاک کردن نقش"
97
 
98
- #: ../ure-lib.php:453
99
  #, php-format
100
  msgid "Role %s is deleted successfully"
101
  msgstr "نقش %s با موفقیت پاک شد "
102
 
103
- #: ../ure-lib.php:471
104
  msgid "Error encountered during default role change operation"
105
  msgstr "اشکال در عملیات تغییر نقش پیش فرض"
106
 
107
- #: ../ure-lib.php:477
108
  #, php-format
109
  msgid "Default role for new users is set to %s successfully"
110
  msgstr "نقش پیش فرض برای کاربران %s با موفقیت تنظیم شد "
111
 
112
- #: ../ure-lib.php:505
113
  msgid "Editor"
114
  msgstr "ویرایشگر"
115
 
116
- #: ../ure-lib.php:506
117
  msgid "Author"
118
  msgstr "نویسنده"
119
 
120
- #: ../ure-lib.php:507
121
  msgid "Contributor"
122
  msgstr "مشارکت کننده"
123
 
124
- #: ../ure-lib.php:508
125
  msgid "Subscriber"
126
  msgstr "مشترک"
127
 
128
- #: ../ure-lib.php:510
129
  msgid "Switch themes"
130
  msgstr "تغییر پوسته"
131
 
132
- #: ../ure-lib.php:511
133
  msgid "Edit themes"
134
  msgstr "ویرایش پوسته"
135
 
136
- #: ../ure-lib.php:512
137
  msgid "Activate plugins"
138
  msgstr "فعال سازی افزونه"
139
 
140
- #: ../ure-lib.php:513
141
  msgid "Edit plugins"
142
  msgstr "ویرایش افزونه"
143
 
144
- #: ../ure-lib.php:514
145
  msgid "Edit users"
146
  msgstr "ویرایش کاربران"
147
 
148
- #: ../ure-lib.php:515
149
  msgid "Edit files"
150
  msgstr "ویرایش فایلها"
151
 
152
- #: ../ure-lib.php:516
153
  msgid "Manage options"
154
  msgstr "مدیریت تنظیمات"
155
 
156
- #: ../ure-lib.php:517
157
  msgid "Moderate comments"
158
  msgstr "مدیریت نظرات"
159
 
160
- #: ../ure-lib.php:518
161
  msgid "Manage categories"
162
  msgstr "مدیریت دسته ها"
163
 
164
- #: ../ure-lib.php:519
165
  msgid "Manage links"
166
  msgstr "مدیریت لینکها"
167
 
168
- #: ../ure-lib.php:520
169
  msgid "Upload files"
170
  msgstr "آپلود فایل"
171
 
172
- #: ../ure-lib.php:521
173
  msgid "Import"
174
  msgstr "درون ریزی"
175
 
176
- #: ../ure-lib.php:522
177
  msgid "Unfiltered html"
178
  msgstr "بدون فیلتر html "
179
 
180
- #: ../ure-lib.php:523
181
  msgid "Edit posts"
182
  msgstr "ویرایش پستها"
183
 
184
- #: ../ure-lib.php:524
185
  msgid "Edit others posts"
186
  msgstr "ویرایش نوشته های دیگران"
187
 
188
- #: ../ure-lib.php:525
189
  msgid "Edit published posts"
190
  msgstr "ویرایش پستهای دیگران"
191
 
192
- #: ../ure-lib.php:526
193
  msgid "Publish posts"
194
  msgstr "انتشار نوشته"
195
 
196
- #: ../ure-lib.php:527
197
  msgid "Edit pages"
198
  msgstr "ویرایش برگه"
199
 
200
- #: ../ure-lib.php:528
201
  msgid "Read"
202
  msgstr "خواندن"
203
 
204
- #: ../ure-lib.php:529
205
  msgid "Level 10"
206
  msgstr "سطح 10"
207
 
208
- #: ../ure-lib.php:530
209
  msgid "Level 9"
210
  msgstr "سطح 9"
211
 
212
- #: ../ure-lib.php:531
213
  msgid "Level 8"
214
  msgstr "سطح 8"
215
 
216
- #: ../ure-lib.php:532
217
  msgid "Level 7"
218
  msgstr "سطح 7"
219
 
220
- #: ../ure-lib.php:533
221
  msgid "Level 6"
222
  msgstr "سطح 6"
223
 
224
- #: ../ure-lib.php:534
225
  msgid "Level 5"
226
  msgstr "سطح 5"
227
 
228
- #: ../ure-lib.php:535
229
  msgid "Level 4"
230
  msgstr "سطح 4"
231
 
232
- #: ../ure-lib.php:536
233
  msgid "Level 3"
234
  msgstr "سطح 3"
235
 
236
- #: ../ure-lib.php:537
237
  msgid "Level 2"
238
  msgstr "سطح 2"
239
 
240
- #: ../ure-lib.php:538
241
  msgid "Level 1"
242
  msgstr "سطح 1"
243
 
244
- #: ../ure-lib.php:539
245
  msgid "Level 0"
246
  msgstr "سطح 0"
247
 
248
- #: ../ure-lib.php:540
249
  msgid "Edit others pages"
250
  msgstr "ویرایش برگه های دیگران"
251
 
252
- #: ../ure-lib.php:541
253
  msgid "Edit published pages"
254
  msgstr "ویرایش برگه های منتشر شده"
255
 
256
- #: ../ure-lib.php:542
257
  msgid "Publish pages"
258
  msgstr "انتشار برگه"
259
 
260
- #: ../ure-lib.php:543
261
  msgid "Delete pages"
262
  msgstr "حذف برگه"
263
 
264
- #: ../ure-lib.php:544
265
  msgid "Delete others pages"
266
  msgstr "حذف برگه های دیگران"
267
 
268
- #: ../ure-lib.php:545
269
  msgid "Delete published pages"
270
  msgstr "حذف برگه های منتشر شده"
271
 
272
- #: ../ure-lib.php:546
273
  msgid "Delete posts"
274
  msgstr "حذف نوشته ها"
275
 
276
- #: ../ure-lib.php:547
277
  msgid "Delete others posts"
278
  msgstr "حذف نوشته های دیگران"
279
 
280
- #: ../ure-lib.php:548
281
  msgid "Delete published posts"
282
  msgstr "حذف نوشته های منتشر شده"
283
 
284
- #: ../ure-lib.php:549
285
  msgid "Delete private posts"
286
  msgstr "حذف نوشته های خصوصی"
287
 
288
- #: ../ure-lib.php:550
289
  msgid "Edit private posts"
290
  msgstr "ویرایش نوشته های خصوصی"
291
 
292
- #: ../ure-lib.php:551
293
  msgid "Read private posts"
294
  msgstr "خواندن نوشته های خصوصی"
295
 
296
- #: ../ure-lib.php:552
297
  msgid "Delete private pages"
298
  msgstr "حذف برگه های خصوصی"
299
 
300
- #: ../ure-lib.php:553
301
  msgid "Edit private pages"
302
  msgstr "ویرایش برگه های خصوصی"
303
 
304
- #: ../ure-lib.php:554
305
  msgid "Read private pages"
306
  msgstr "خواندن برگه های خصوصی"
307
 
308
- #: ../ure-lib.php:555
309
  msgid "Delete users"
310
  msgstr "حذف کاربران"
311
 
312
- #: ../ure-lib.php:556
313
  msgid "Create users"
314
  msgstr "ایجاد کاربر"
315
 
316
- #: ../ure-lib.php:557
317
  msgid "Unfiltered upload"
318
  msgstr "آپلود بدون محدودیت"
319
 
320
- #: ../ure-lib.php:558
321
  msgid "Edit dashboard"
322
  msgstr "ویرایش پیش خوان"
323
 
324
- #: ../ure-lib.php:559
325
  msgid "Update plugins"
326
  msgstr "بروز رسانی افزونه ها"
327
 
328
- #: ../ure-lib.php:560
329
  msgid "Delete plugins"
330
  msgstr "حذف افزونه ها"
331
 
332
- #: ../ure-lib.php:561
333
  msgid "Install plugins"
334
  msgstr "نصب افزونه ها"
335
 
336
- #: ../ure-lib.php:562
337
  msgid "Update themes"
338
  msgstr "بروز رسانی پوسته ها"
339
 
340
- #: ../ure-lib.php:563
341
  msgid "Install themes"
342
  msgstr "نصب پوسته"
343
 
344
- #: ../ure-lib.php:564
345
  msgid "Update core"
346
  msgstr "بروزرسانی وردپرس"
347
 
348
- #: ../ure-lib.php:565
349
  msgid "List users"
350
  msgstr "لیست کاربران"
351
 
352
- #: ../ure-lib.php:566
353
  msgid "Remove users"
354
  msgstr "حذف کاربران"
355
 
356
- #: ../ure-lib.php:567
357
  msgid "Add users"
358
  msgstr "افزودن کاربر"
359
 
360
- #: ../ure-lib.php:568
361
  msgid "Promote users"
362
  msgstr "ترفیع کاربران"
363
 
364
- #: ../ure-lib.php:569
365
  msgid "Edit theme options"
366
  msgstr "ویرایش تنظیمات پوشته"
367
 
368
- #: ../ure-lib.php:570
369
  msgid "Delete themes"
370
  msgstr "حذف پوسته ها"
371
 
372
- #: ../ure-lib.php:571
373
  msgid "Export"
374
  msgstr "برون ریزی"
375
 
376
- #: ../ure-lib.php:655
377
  msgid "Error: Capability name must contain latin characters and digits only!"
378
  msgstr "مشکل: نام نقش باید فقط شامل کاراکترهای لاتین و اعداد باشد"
379
 
380
- #: ../ure-lib.php:667
381
  #, php-format
382
  msgid "Capability %s is added successfully"
383
  msgstr "نقش %s با موفقیت ساخته شد"
384
 
385
- #: ../ure-lib.php:669
386
  #, php-format
387
  msgid "Capability %s exists already"
388
  msgstr "قابلیت %s در حال حاضر وجود دارد"
389
 
390
- #: ../ure-lib.php:818
391
  #, php-format
392
  msgid "Error! You do not have permission to delete this capability: %s!"
393
  msgstr "خطا! شما مجوز حذف این قابلیت را ندارید: %s!"
394
 
395
- #: ../ure-lib.php:840
396
  #, php-format
397
  msgid "Capability %s is removed successfully"
398
  msgstr "نقش %s با موفقیت ساخته شد"
399
 
400
- #: ../ure-lib.php:902
401
  msgid "Help"
402
  msgstr "راهنما"
403
 
404
- #: ../ure-role-edit.php:29
405
  msgid "None"
406
  msgstr "هیچ"
407
 
408
- #: ../ure-role-edit.php:93
409
  msgid " Name can not be empty!"
410
  msgstr "نام نقش نمی تواند خالی باشد"
411
 
412
- #: ../ure-role-edit.php:97
413
  msgid " Name must contain latin characters and digits only!"
414
  msgstr "نام نقش باید فقط شامل کاراکترهای لاتین و اعداد باشد"
415
 
416
- #: ../ure-role-edit.php:102
417
- #: ../ure-role-edit.php:293
418
  msgid "Delete Role"
419
  msgstr "حذف نقش"
420
 
421
- #: ../ure-role-edit.php:104
422
  msgid "Change Default Role"
423
  msgstr "تغییر نقش پیش فرض"
424
 
425
- #: ../ure-role-edit.php:106
426
  msgid "Restore Roles from backup copy. Be careful, backup was created when you started URE 1st time. All changes you made after that will be lost"
427
  msgstr "بازگردانی نقشها از بک‌آپ. با دقت، بک‌آپ هنگام اولین اجرای افزونه ایجاد میشود و تمام تغییرات به حالت اول برگردانده خواهد شد."
428
 
429
- #: ../ure-role-edit.php:108
430
  msgid "Warning! Be careful - removing critical capability could crash some plugin or other custom code"
431
  msgstr "هشدار! با دقت - حذف قابلیتهای بحرانی باعث از کار افتادن افزونه‌ها و دیگر حالتها خواهد شد"
432
 
433
- #: ../ure-role-edit.php:110
434
  msgid "Please confirm to continue"
435
  msgstr "برای ادامه دادن تأیید کنید"
436
 
437
- #: ../ure-role-edit.php:147
438
  #, php-format
439
  msgid "Role \"%s\" update: please confirm to continue"
440
  msgstr "برای تأیید کلیک کنید \"%s\" بروز رسانی نقش "
441
 
442
- #: ../ure-role-edit.php:155
443
  msgid "Select Role and change its capabilities list"
444
  msgstr "نقشی را انتخاب کنید و دسترسیهایش را درلیست زیر تغییر دهید"
445
 
446
- #: ../ure-role-edit.php:157
447
  msgid "Select Role:"
448
  msgstr "انتخاب نقش:"
449
 
450
- #: ../ure-role-edit.php:167
451
- #: ../ure-user-edit.php:91
452
  msgid "Show capabilities in human readable form"
453
  msgstr "نمایش دسترسیها به فرم قابل درک"
454
 
455
- #: ../ure-role-edit.php:176
456
- #: ../ure-user-edit.php:100
457
  msgid "Show deprecated capabilities"
458
  msgstr "نمایش قابلیت های بیهوده"
459
 
460
- #: ../ure-role-edit.php:180
461
  msgid "If checked, then apply action to ALL sites of this Network"
462
  msgstr "در صورت انتخاب، و سپس اعمال به همه سایت های این شبکه اعمال می شود"
463
 
464
- #: ../ure-role-edit.php:190
465
  msgid "Apply to All Sites"
466
  msgstr "اعمال به تمام سایتها"
467
 
468
- #: ../ure-role-edit.php:251
469
- #: ../ure-user-edit.php:163
 
 
 
 
 
 
 
 
 
 
 
 
470
  msgid "Update"
471
  msgstr "بروزرسانی"
472
 
473
- #: ../ure-role-edit.php:251
474
- #: ../ure-user-edit.php:163
475
  msgid "Save Changes"
476
  msgstr "ذخیرۀ تغییرات"
477
 
478
- #: ../ure-role-edit.php:252
479
- #: ../ure-user-edit.php:164
480
  msgid "Cancel"
481
  msgstr "لغو"
482
 
483
- #: ../ure-role-edit.php:252
484
- #: ../ure-user-edit.php:164
485
  msgid "Cancel not saved changes"
486
  msgstr "لغو تغییرات اعمال نشده"
487
 
488
- #: ../ure-role-edit.php:255
489
  msgid "Select All"
490
  msgstr "انتخاب همه"
491
 
492
- #: ../ure-role-edit.php:255
493
  msgid "Select All Capabilities"
494
  msgstr "انتخاب تمام قابلیتها"
495
 
496
- #: ../ure-role-edit.php:256
497
  msgid "Unselect All"
498
  msgstr "همه را از حالت انتخاب خارج کن"
499
 
500
- #: ../ure-role-edit.php:256
501
  msgid "Unselect All Capabilities"
502
  msgstr "همه قابلیتها را از حالت انتخاب خارج کن"
503
 
504
- #: ../ure-role-edit.php:257
505
  msgid "Reverse"
506
  msgstr "بازگرداندن"
507
 
508
- #: ../ure-role-edit.php:257
509
  msgid "Turn checked capabilities off and vise versa"
510
  msgstr "ویژگی های خاموش را روشن کن و بالعکس"
511
 
512
- #: ../ure-role-edit.php:260
513
  msgid "Reset"
514
  msgstr "تنظیم مجدد"
515
 
516
- #: ../ure-role-edit.php:260
517
  msgid "Restore Roles from backup copy"
518
  msgstr "بازیابی نقش ها از نسخۀ پشتیبان"
519
 
520
- #: ../ure-role-edit.php:270
521
  msgid "Add New Role"
522
  msgstr "اضافه کردن نقش جدید"
523
 
524
- #: ../ure-role-edit.php:272
525
  msgid "Name: "
526
  msgstr "نام:"
527
 
528
- #: ../ure-role-edit.php:276
529
  msgid "Make copy of: "
530
  msgstr "ساخت کپی از:"
531
 
532
- #: ../ure-role-edit.php:279
533
- #: ../ure-role-edit.php:308
534
  msgid "Add"
535
  msgstr "اضافه"
536
 
537
- #: ../ure-role-edit.php:279
538
  msgid "Add New User Role"
539
  msgstr "اضافه کردن نقش کاربری جدید"
540
 
541
- #: ../ure-role-edit.php:283
542
  msgid "Default Role for New User"
543
  msgstr "نقش پیش فرض برای کاربر جدید"
544
 
545
- #: ../ure-role-edit.php:288
546
  msgid "Change"
547
  msgstr "تغییر"
548
 
549
- #: ../ure-role-edit.php:288
550
  msgid "Set as Default User Role"
551
  msgstr "تنظیم به عنوان نقش پیش فرض کاربر"
552
 
553
- #: ../ure-role-edit.php:298
554
  msgid "Delete"
555
  msgstr "حذف"
556
 
557
- #: ../ure-role-edit.php:298
558
  msgid "Delete User Role"
559
  msgstr "حذف نقش کاربری"
560
 
561
- #: ../ure-role-edit.php:303
562
- #: ../ure-role-edit.php:308
563
  msgid "Add New Capability"
564
  msgstr "اضافه کردن نقش جدید"
565
 
566
- #: ../ure-role-edit.php:313
567
  msgid "Remove Capability"
568
  msgstr "حذف قابلیت"
569
 
570
- #: ../ure-role-edit.php:318
571
  msgid "Remove"
572
  msgstr "حذف"
573
 
574
- #: ../ure-role-edit.php:318
575
  msgid "Remove User Capability"
576
  msgstr "حذف قابلیت کاربر"
577
 
578
- #: ../ure-user-edit.php:67
579
  #, php-format
580
  msgid "User \"%s\" update: please confirm to continue"
581
  msgstr "برای تأیید کلیک کنید \"%s\" بروز رسانی نقش "
582
 
583
- #: ../ure-user-edit.php:79
584
  msgid "Change capabilities for user"
585
  msgstr "تغییر قابلیتهای برای کاربر"
586
 
587
- #: ../ure-user-edit.php:82
588
  msgid "Role:"
589
  msgstr "نقش:"
590
 
591
- #: ../ure-user-edit.php:104
592
  msgid "Add capabilities to this user:"
593
  msgstr "افزودن قابلیت برای این کاربر:"
594
 
595
- #: ../ure-options.php:59
596
  msgid "User Roles are restored from the backup data. "
597
  msgstr "دسترسیهای نقش از اطلاعات پشتیبان بازیابی شدند"
598
 
599
- #: ../ure-options.php:125
600
  msgid "Error: "
601
  msgstr "خطا:"
602
 
603
- #: ../ure-options.php:125
604
- #: ../ure-options.php:143
605
  msgid "Role"
606
  msgstr "نقش"
607
 
608
- #: ../ure-options.php:125
609
  msgid "does not exist"
610
  msgstr "پیدا نشد"
611
 
612
- #: ../ure-options.php:143
613
  msgid "is updated successfully"
614
  msgstr "با موفقیت بروزرسانی شد"
615
 
616
- #: ../ure-options.php:152
617
  msgid "User"
618
  msgstr "کاربر"
619
 
620
- #: ../ure-options.php:152
621
  msgid "capabilities are updated successfully"
622
  msgstr "با موفقیت بروزرسانی شد"
623
 
624
- #: ../ure-options.php:215
625
  msgid "About this Plugin:"
626
  msgstr "در مورد افزونه"
627
 
628
- #: ../ure-options.php:216
629
  msgid "Author's website"
630
  msgstr "سایت نویسنده"
631
 
632
- #: ../ure-options.php:217
633
  msgid "Plugin webpage"
634
  msgstr "وبسایت افزونه"
635
 
636
- #: ../ure-options.php:219
637
  msgid "FAQ"
638
  msgstr "سؤالات"
639
 
640
- #: ../ure-options.php:220
641
  msgid "Greetings"
642
  msgstr "خوشامدگویی ها"
643
 
644
- #: ../ure-options.php:242
645
  msgid "Greetings:"
646
  msgstr "تشکر از:"
647
 
648
- #: ../ure-options.php:243
649
  msgid "It's me, the author"
650
  msgstr "منم، نویسنده!"
651
 
652
- #: ../ure-options.php:244
653
  msgid "For the help with Belorussian translation"
654
  msgstr "برای ترجمه به زبان بلاروسی"
655
 
656
- #: ../ure-options.php:245
657
  msgid "For the help with Brasilian translation"
658
  msgstr "برای ترجمه به زبان برزیلی"
659
 
660
- #: ../ure-options.php:246
 
 
 
 
 
661
  msgid "For the help with Chinese translation"
662
  msgstr "برای ترجمه به زبان چینی"
663
 
664
- #: ../ure-options.php:247
665
  msgid "For the help with Dutch translation"
666
  msgstr "برای ترجمه به زبان هلندی"
667
 
668
- #: ../ure-options.php:248
669
  msgid "For the help with Finnish translation"
670
  msgstr "برای ترجمه به زبان فنلاندی"
671
 
672
- #: ../ure-options.php:249
673
- #: ../ure-options.php:250
674
  msgid "For the help with French translation"
675
  msgstr "برای ترجمه به زبان فرانسوی"
676
 
677
- #: ../ure-options.php:251
678
  msgid "For the help with German translation"
679
  msgstr "برای ترجمه به زبان آلمانی"
680
 
681
- #: ../ure-options.php:252
682
- #: ../ure-options.php:253
683
  msgid "For the help with Hebrew translation"
684
  msgstr "برای کمک ترجمه عبری"
685
 
686
- #: ../ure-options.php:254
687
  msgid "For the help with Hindi translation"
688
  msgstr "برای کمک ترجمه هندی"
689
 
690
- #: ../ure-options.php:255
691
  msgid "For the help with Hungarian translation"
692
  msgstr "برای ترجمه به زبان مجارستانی"
693
 
694
- #: ../ure-options.php:256
695
- #: ../ure-options.php:257
696
  msgid "For the help with Italian translation"
697
  msgstr "برای ترجمه به زبان ایتالیایی"
698
 
699
- #: ../ure-options.php:258
700
  msgid "For the help with Japanese translation"
701
  msgstr "برای ترجمه به زبان ژاپنی"
702
 
703
- #: ../ure-options.php:259
704
  msgid "For the help with Lithuanian translation"
705
  msgstr "برای کمک ترجمه لیتوانیایی"
706
 
707
- #: ../ure-options.php:260
708
- #: ../ure-options.php:261
 
709
  msgid "For the help with Persian translation"
710
  msgstr "برای ترجمه به زبان فارسی"
711
 
712
- #: ../ure-options.php:262
 
713
  msgid "For the help with Polish translation"
714
  msgstr "برای ترجمه به زبان لهستانی"
715
 
716
- #: ../ure-options.php:263
717
- #: ../ure-options.php:264
718
  msgid "For the help with Spanish translation"
719
  msgstr "برای ترجمه به زبان اسپانیایی"
720
 
721
- #: ../ure-options.php:265
722
  msgid "For the updated Swedish translation"
723
  msgstr "برای ترجمه به زبان سوئدی"
724
 
725
- #: ../ure-options.php:266
726
  msgid "For the help with Swedish translation"
727
  msgstr "برای ترجمه به زبان سوئدی"
728
 
729
- #: ../ure-options.php:267
730
  msgid "For the help with Turkish translation"
731
  msgstr "برای ترجمه به زبان ترکی"
732
 
733
- #: ../ure-options.php:269
734
  msgid "For the code to hide administrator role"
735
  msgstr "برای کد مخفی کنندۀ نقش مدیر"
736
 
737
- #: ../ure-options.php:270
738
  msgid "For the code enhancement suggestion"
739
  msgstr "برای کد افزایش پیشنهاد"
740
 
741
- #: ../ure-options.php:272
742
  msgid "Do you wish to see your name with link to your site here? You are welcome! Your help with translation and new ideas are very appreciated."
743
  msgstr "میخوایین اسم و لینک سایتتون رو اینجا ببینید؟ در ترجمه و ایده دهی کمک کنید"
744
 
2
  msgstr ""
3
  "Project-Id-Version: User Role Editor\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-09-01 08:43+0700\n"
6
  "PO-Revision-Date: \n"
7
+ "Last-Translator: Vladimir Garagulya <vladimir@shinephp.com>\n"
8
  "Language-Team: Parsa <i@parsa.ws>\n"
9
  "Language: \n"
10
  "MIME-Version: 1.0\n"
31
  msgid "User Role Editor requires PHP 5.0 or newer."
32
  msgstr "ویرایشگر نقش کاربر به پی‌اچ‌پی 5.0 یا جدیدتر احتیاج دارد"
33
 
34
+ #: ../user-role-editor.php:76
35
  msgid "Only"
36
  msgstr "فقط"
37
 
38
+ #: ../user-role-editor.php:76
39
  msgid "is allowed to use"
40
  msgstr "مجاز به استفاده از"
41
 
42
+ #: ../user-role-editor.php:82
43
+ #: ../user-role-editor.php:251
44
  msgid "User Role Editor"
45
  msgstr "ویرایش نقش کاربر"
46
 
47
+ #: ../user-role-editor.php:223
48
  msgid "Settings"
49
  msgstr "تنظیمات"
50
 
51
+ #: ../user-role-editor.php:233
52
+ #: ../includes/ure-options.php:235
53
  msgid "Changelog"
54
  msgstr "تاریخ تغییرات"
55
 
56
+ #: ../user-role-editor.php:280
57
  msgid "Capabilities"
58
  msgstr "توانمندی‌ها"
59
 
60
+ #: ../includes/ure-lib.php:34
61
  msgid "Error is occur. Please check the log file."
62
  msgstr "اشکالی رخ داده، لطفاً لاگ عملیات را ببینید"
63
 
64
+ #: ../includes/ure-lib.php:144
65
  msgid "Database operation error. Check log file."
66
  msgstr "مشکل با دیتابیس. لطفاً لاگ عملیات را ببینید"
67
 
68
+ #: ../includes/ure-lib.php:177
69
  msgid "No backup data. It is created automatically before the first role data update."
70
  msgstr "اطلاعات پشتیبانی وجود ندارد. این پشتیبان به طور خودکار قبل از اولین بروزرسانی نقش ایجاد می شود"
71
 
72
+ #: ../includes/ure-lib.php:215
73
  msgid "Backup record is created for the current role capabilities"
74
  msgstr "اطلاعات پشتیبان برای تنظیمات نقش فعلی ذخیره شد"
75
 
76
+ #: ../includes/ure-lib.php:329
77
  msgid "Error: Role name must contain latin characters and digits only!"
78
  msgstr "مشکل: نام نقش باید فقط شامل کاراکترهای لاتین و اعداد باشد"
79
 
80
+ #: ../includes/ure-lib.php:336
81
  #, php-format
82
  msgid "Role %s exists already"
83
  msgstr "نقش %s وجود دارد"
84
 
85
+ #: ../includes/ure-lib.php:349
86
  msgid "Error is encountered during new role create operation"
87
  msgstr "در زمان ساخت نقش جدید مشکلی بوجود آمد"
88
 
89
+ #: ../includes/ure-lib.php:351
90
  #, php-format
91
  msgid "Role %s is created successfully"
92
  msgstr "نقش %s با موفقیت ساخته شد"
93
 
94
+ #: ../includes/ure-lib.php:435
95
  msgid "Error encountered during role delete operation"
96
  msgstr "اشکال در پاک کردن نقش"
97
 
98
+ #: ../includes/ure-lib.php:437
99
  #, php-format
100
  msgid "Role %s is deleted successfully"
101
  msgstr "نقش %s با موفقیت پاک شد "
102
 
103
+ #: ../includes/ure-lib.php:455
104
  msgid "Error encountered during default role change operation"
105
  msgstr "اشکال در عملیات تغییر نقش پیش فرض"
106
 
107
+ #: ../includes/ure-lib.php:461
108
  #, php-format
109
  msgid "Default role for new users is set to %s successfully"
110
  msgstr "نقش پیش فرض برای کاربران %s با موفقیت تنظیم شد "
111
 
112
+ #: ../includes/ure-lib.php:489
113
  msgid "Editor"
114
  msgstr "ویرایشگر"
115
 
116
+ #: ../includes/ure-lib.php:490
117
  msgid "Author"
118
  msgstr "نویسنده"
119
 
120
+ #: ../includes/ure-lib.php:491
121
  msgid "Contributor"
122
  msgstr "مشارکت کننده"
123
 
124
+ #: ../includes/ure-lib.php:492
125
  msgid "Subscriber"
126
  msgstr "مشترک"
127
 
128
+ #: ../includes/ure-lib.php:494
129
  msgid "Switch themes"
130
  msgstr "تغییر پوسته"
131
 
132
+ #: ../includes/ure-lib.php:495
133
  msgid "Edit themes"
134
  msgstr "ویرایش پوسته"
135
 
136
+ #: ../includes/ure-lib.php:496
137
  msgid "Activate plugins"
138
  msgstr "فعال سازی افزونه"
139
 
140
+ #: ../includes/ure-lib.php:497
141
  msgid "Edit plugins"
142
  msgstr "ویرایش افزونه"
143
 
144
+ #: ../includes/ure-lib.php:498
145
  msgid "Edit users"
146
  msgstr "ویرایش کاربران"
147
 
148
+ #: ../includes/ure-lib.php:499
149
  msgid "Edit files"
150
  msgstr "ویرایش فایلها"
151
 
152
+ #: ../includes/ure-lib.php:500
153
  msgid "Manage options"
154
  msgstr "مدیریت تنظیمات"
155
 
156
+ #: ../includes/ure-lib.php:501
157
  msgid "Moderate comments"
158
  msgstr "مدیریت نظرات"
159
 
160
+ #: ../includes/ure-lib.php:502
161
  msgid "Manage categories"
162
  msgstr "مدیریت دسته ها"
163
 
164
+ #: ../includes/ure-lib.php:503
165
  msgid "Manage links"
166
  msgstr "مدیریت لینکها"
167
 
168
+ #: ../includes/ure-lib.php:504
169
  msgid "Upload files"
170
  msgstr "آپلود فایل"
171
 
172
+ #: ../includes/ure-lib.php:505
173
  msgid "Import"
174
  msgstr "درون ریزی"
175
 
176
+ #: ../includes/ure-lib.php:506
177
  msgid "Unfiltered html"
178
  msgstr "بدون فیلتر html "
179
 
180
+ #: ../includes/ure-lib.php:507
181
  msgid "Edit posts"
182
  msgstr "ویرایش پستها"
183
 
184
+ #: ../includes/ure-lib.php:508
185
  msgid "Edit others posts"
186
  msgstr "ویرایش نوشته های دیگران"
187
 
188
+ #: ../includes/ure-lib.php:509
189
  msgid "Edit published posts"
190
  msgstr "ویرایش پستهای دیگران"
191
 
192
+ #: ../includes/ure-lib.php:510
193
  msgid "Publish posts"
194
  msgstr "انتشار نوشته"
195
 
196
+ #: ../includes/ure-lib.php:511
197
  msgid "Edit pages"
198
  msgstr "ویرایش برگه"
199
 
200
+ #: ../includes/ure-lib.php:512
201
  msgid "Read"
202
  msgstr "خواندن"
203
 
204
+ #: ../includes/ure-lib.php:513
205
  msgid "Level 10"
206
  msgstr "سطح 10"
207
 
208
+ #: ../includes/ure-lib.php:514
209
  msgid "Level 9"
210
  msgstr "سطح 9"
211
 
212
+ #: ../includes/ure-lib.php:515
213
  msgid "Level 8"
214
  msgstr "سطح 8"
215
 
216
+ #: ../includes/ure-lib.php:516
217
  msgid "Level 7"
218
  msgstr "سطح 7"
219
 
220
+ #: ../includes/ure-lib.php:517
221
  msgid "Level 6"
222
  msgstr "سطح 6"
223
 
224
+ #: ../includes/ure-lib.php:518
225
  msgid "Level 5"
226
  msgstr "سطح 5"
227
 
228
+ #: ../includes/ure-lib.php:519
229
  msgid "Level 4"
230
  msgstr "سطح 4"
231
 
232
+ #: ../includes/ure-lib.php:520
233
  msgid "Level 3"
234
  msgstr "سطح 3"
235
 
236
+ #: ../includes/ure-lib.php:521
237
  msgid "Level 2"
238
  msgstr "سطح 2"
239
 
240
+ #: ../includes/ure-lib.php:522
241
  msgid "Level 1"
242
  msgstr "سطح 1"
243
 
244
+ #: ../includes/ure-lib.php:523
245
  msgid "Level 0"
246
  msgstr "سطح 0"
247
 
248
+ #: ../includes/ure-lib.php:524
249
  msgid "Edit others pages"
250
  msgstr "ویرایش برگه های دیگران"
251
 
252
+ #: ../includes/ure-lib.php:525
253
  msgid "Edit published pages"
254
  msgstr "ویرایش برگه های منتشر شده"
255
 
256
+ #: ../includes/ure-lib.php:526
257
  msgid "Publish pages"
258
  msgstr "انتشار برگه"
259
 
260
+ #: ../includes/ure-lib.php:527
261
  msgid "Delete pages"
262
  msgstr "حذف برگه"
263
 
264
+ #: ../includes/ure-lib.php:528
265
  msgid "Delete others pages"
266
  msgstr "حذف برگه های دیگران"
267
 
268
+ #: ../includes/ure-lib.php:529
269
  msgid "Delete published pages"
270
  msgstr "حذف برگه های منتشر شده"
271
 
272
+ #: ../includes/ure-lib.php:530
273
  msgid "Delete posts"
274
  msgstr "حذف نوشته ها"
275
 
276
+ #: ../includes/ure-lib.php:531
277
  msgid "Delete others posts"
278
  msgstr "حذف نوشته های دیگران"
279
 
280
+ #: ../includes/ure-lib.php:532
281
  msgid "Delete published posts"
282
  msgstr "حذف نوشته های منتشر شده"
283
 
284
+ #: ../includes/ure-lib.php:533
285
  msgid "Delete private posts"
286
  msgstr "حذف نوشته های خصوصی"
287
 
288
+ #: ../includes/ure-lib.php:534
289
  msgid "Edit private posts"
290
  msgstr "ویرایش نوشته های خصوصی"
291
 
292
+ #: ../includes/ure-lib.php:535
293
  msgid "Read private posts"
294
  msgstr "خواندن نوشته های خصوصی"
295
 
296
+ #: ../includes/ure-lib.php:536
297
  msgid "Delete private pages"
298
  msgstr "حذف برگه های خصوصی"
299
 
300
+ #: ../includes/ure-lib.php:537
301
  msgid "Edit private pages"
302
  msgstr "ویرایش برگه های خصوصی"
303
 
304
+ #: ../includes/ure-lib.php:538
305
  msgid "Read private pages"
306
  msgstr "خواندن برگه های خصوصی"
307
 
308
+ #: ../includes/ure-lib.php:539
309
  msgid "Delete users"
310
  msgstr "حذف کاربران"
311
 
312
+ #: ../includes/ure-lib.php:540
313
  msgid "Create users"
314
  msgstr "ایجاد کاربر"
315
 
316
+ #: ../includes/ure-lib.php:541
317
  msgid "Unfiltered upload"
318
  msgstr "آپلود بدون محدودیت"
319
 
320
+ #: ../includes/ure-lib.php:542
321
  msgid "Edit dashboard"
322
  msgstr "ویرایش پیش خوان"
323
 
324
+ #: ../includes/ure-lib.php:543
325
  msgid "Update plugins"
326
  msgstr "بروز رسانی افزونه ها"
327
 
328
+ #: ../includes/ure-lib.php:544
329
  msgid "Delete plugins"
330
  msgstr "حذف افزونه ها"
331
 
332
+ #: ../includes/ure-lib.php:545
333
  msgid "Install plugins"
334
  msgstr "نصب افزونه ها"
335
 
336
+ #: ../includes/ure-lib.php:546
337
  msgid "Update themes"
338
  msgstr "بروز رسانی پوسته ها"
339
 
340
+ #: ../includes/ure-lib.php:547
341
  msgid "Install themes"
342
  msgstr "نصب پوسته"
343
 
344
+ #: ../includes/ure-lib.php:548
345
  msgid "Update core"
346
  msgstr "بروزرسانی وردپرس"
347
 
348
+ #: ../includes/ure-lib.php:549
349
  msgid "List users"
350
  msgstr "لیست کاربران"
351
 
352
+ #: ../includes/ure-lib.php:550
353
  msgid "Remove users"
354
  msgstr "حذف کاربران"
355
 
356
+ #: ../includes/ure-lib.php:551
357
  msgid "Add users"
358
  msgstr "افزودن کاربر"
359
 
360
+ #: ../includes/ure-lib.php:552
361
  msgid "Promote users"
362
  msgstr "ترفیع کاربران"
363
 
364
+ #: ../includes/ure-lib.php:553
365
  msgid "Edit theme options"
366
  msgstr "ویرایش تنظیمات پوشته"
367
 
368
+ #: ../includes/ure-lib.php:554
369
  msgid "Delete themes"
370
  msgstr "حذف پوسته ها"
371
 
372
+ #: ../includes/ure-lib.php:555
373
  msgid "Export"
374
  msgstr "برون ریزی"
375
 
376
+ #: ../includes/ure-lib.php:639
377
  msgid "Error: Capability name must contain latin characters and digits only!"
378
  msgstr "مشکل: نام نقش باید فقط شامل کاراکترهای لاتین و اعداد باشد"
379
 
380
+ #: ../includes/ure-lib.php:651
381
  #, php-format
382
  msgid "Capability %s is added successfully"
383
  msgstr "نقش %s با موفقیت ساخته شد"
384
 
385
+ #: ../includes/ure-lib.php:653
386
  #, php-format
387
  msgid "Capability %s exists already"
388
  msgstr "قابلیت %s در حال حاضر وجود دارد"
389
 
390
+ #: ../includes/ure-lib.php:802
391
  #, php-format
392
  msgid "Error! You do not have permission to delete this capability: %s!"
393
  msgstr "خطا! شما مجوز حذف این قابلیت را ندارید: %s!"
394
 
395
+ #: ../includes/ure-lib.php:824
396
  #, php-format
397
  msgid "Capability %s is removed successfully"
398
  msgstr "نقش %s با موفقیت ساخته شد"
399
 
400
+ #: ../includes/ure-lib.php:889
401
  msgid "Help"
402
  msgstr "راهنما"
403
 
404
+ #: ../includes/ure-role-edit.php:29
405
  msgid "None"
406
  msgstr "هیچ"
407
 
408
+ #: ../includes/ure-role-edit.php:101
409
  msgid " Name can not be empty!"
410
  msgstr "نام نقش نمی تواند خالی باشد"
411
 
412
+ #: ../includes/ure-role-edit.php:105
413
  msgid " Name must contain latin characters and digits only!"
414
  msgstr "نام نقش باید فقط شامل کاراکترهای لاتین و اعداد باشد"
415
 
416
+ #: ../includes/ure-role-edit.php:110
417
+ #: ../includes/ure-role-edit.php:367
418
  msgid "Delete Role"
419
  msgstr "حذف نقش"
420
 
421
+ #: ../includes/ure-role-edit.php:112
422
  msgid "Change Default Role"
423
  msgstr "تغییر نقش پیش فرض"
424
 
425
+ #: ../includes/ure-role-edit.php:114
426
  msgid "Restore Roles from backup copy. Be careful, backup was created when you started URE 1st time. All changes you made after that will be lost"
427
  msgstr "بازگردانی نقشها از بک‌آپ. با دقت، بک‌آپ هنگام اولین اجرای افزونه ایجاد میشود و تمام تغییرات به حالت اول برگردانده خواهد شد."
428
 
429
+ #: ../includes/ure-role-edit.php:116
430
  msgid "Warning! Be careful - removing critical capability could crash some plugin or other custom code"
431
  msgstr "هشدار! با دقت - حذف قابلیتهای بحرانی باعث از کار افتادن افزونه‌ها و دیگر حالتها خواهد شد"
432
 
433
+ #: ../includes/ure-role-edit.php:118
434
  msgid "Please confirm to continue"
435
  msgstr "برای ادامه دادن تأیید کنید"
436
 
437
+ #: ../includes/ure-role-edit.php:155
438
  #, php-format
439
  msgid "Role \"%s\" update: please confirm to continue"
440
  msgstr "برای تأیید کلیک کنید \"%s\" بروز رسانی نقش "
441
 
442
+ #: ../includes/ure-role-edit.php:163
443
  msgid "Select Role and change its capabilities list"
444
  msgstr "نقشی را انتخاب کنید و دسترسیهایش را درلیست زیر تغییر دهید"
445
 
446
+ #: ../includes/ure-role-edit.php:165
447
  msgid "Select Role:"
448
  msgstr "انتخاب نقش:"
449
 
450
+ #: ../includes/ure-role-edit.php:175
451
+ #: ../includes/ure-user-edit.php:91
452
  msgid "Show capabilities in human readable form"
453
  msgstr "نمایش دسترسیها به فرم قابل درک"
454
 
455
+ #: ../includes/ure-role-edit.php:184
456
+ #: ../includes/ure-user-edit.php:100
457
  msgid "Show deprecated capabilities"
458
  msgstr "نمایش قابلیت های بیهوده"
459
 
460
+ #: ../includes/ure-role-edit.php:188
461
  msgid "If checked, then apply action to ALL sites of this Network"
462
  msgstr "در صورت انتخاب، و سپس اعمال به همه سایت های این شبکه اعمال می شود"
463
 
464
+ #: ../includes/ure-role-edit.php:198
465
  msgid "Apply to All Sites"
466
  msgstr "اعمال به تمام سایتها"
467
 
468
+ #: ../includes/ure-role-edit.php:205
469
+ #: ../includes/ure-user-edit.php:105
470
+ #, fuzzy
471
+ msgid "Core capabilities:"
472
+ msgstr "توانمندی‌ها"
473
+
474
+ #: ../includes/ure-role-edit.php:268
475
+ #: ../includes/ure-user-edit.php:167
476
+ #, fuzzy
477
+ msgid "Custom capabilities:"
478
+ msgstr "توانمندی‌ها"
479
+
480
+ #: ../includes/ure-role-edit.php:319
481
+ #: ../includes/ure-user-edit.php:222
482
  msgid "Update"
483
  msgstr "بروزرسانی"
484
 
485
+ #: ../includes/ure-role-edit.php:319
486
+ #: ../includes/ure-user-edit.php:222
487
  msgid "Save Changes"
488
  msgstr "ذخیرۀ تغییرات"
489
 
490
+ #: ../includes/ure-role-edit.php:320
491
+ #: ../includes/ure-user-edit.php:223
492
  msgid "Cancel"
493
  msgstr "لغو"
494
 
495
+ #: ../includes/ure-role-edit.php:320
496
+ #: ../includes/ure-user-edit.php:223
497
  msgid "Cancel not saved changes"
498
  msgstr "لغو تغییرات اعمال نشده"
499
 
500
+ #: ../includes/ure-role-edit.php:323
501
  msgid "Select All"
502
  msgstr "انتخاب همه"
503
 
504
+ #: ../includes/ure-role-edit.php:323
505
  msgid "Select All Capabilities"
506
  msgstr "انتخاب تمام قابلیتها"
507
 
508
+ #: ../includes/ure-role-edit.php:327
509
  msgid "Unselect All"
510
  msgstr "همه را از حالت انتخاب خارج کن"
511
 
512
+ #: ../includes/ure-role-edit.php:327
513
  msgid "Unselect All Capabilities"
514
  msgstr "همه قابلیتها را از حالت انتخاب خارج کن"
515
 
516
+ #: ../includes/ure-role-edit.php:328
517
  msgid "Reverse"
518
  msgstr "بازگرداندن"
519
 
520
+ #: ../includes/ure-role-edit.php:328
521
  msgid "Turn checked capabilities off and vise versa"
522
  msgstr "ویژگی های خاموش را روشن کن و بالعکس"
523
 
524
+ #: ../includes/ure-role-edit.php:334
525
  msgid "Reset"
526
  msgstr "تنظیم مجدد"
527
 
528
+ #: ../includes/ure-role-edit.php:334
529
  msgid "Restore Roles from backup copy"
530
  msgstr "بازیابی نقش ها از نسخۀ پشتیبان"
531
 
532
+ #: ../includes/ure-role-edit.php:344
533
  msgid "Add New Role"
534
  msgstr "اضافه کردن نقش جدید"
535
 
536
+ #: ../includes/ure-role-edit.php:346
537
  msgid "Name: "
538
  msgstr "نام:"
539
 
540
+ #: ../includes/ure-role-edit.php:350
541
  msgid "Make copy of: "
542
  msgstr "ساخت کپی از:"
543
 
544
+ #: ../includes/ure-role-edit.php:353
545
+ #: ../includes/ure-role-edit.php:382
546
  msgid "Add"
547
  msgstr "اضافه"
548
 
549
+ #: ../includes/ure-role-edit.php:353
550
  msgid "Add New User Role"
551
  msgstr "اضافه کردن نقش کاربری جدید"
552
 
553
+ #: ../includes/ure-role-edit.php:357
554
  msgid "Default Role for New User"
555
  msgstr "نقش پیش فرض برای کاربر جدید"
556
 
557
+ #: ../includes/ure-role-edit.php:362
558
  msgid "Change"
559
  msgstr "تغییر"
560
 
561
+ #: ../includes/ure-role-edit.php:362
562
  msgid "Set as Default User Role"
563
  msgstr "تنظیم به عنوان نقش پیش فرض کاربر"
564
 
565
+ #: ../includes/ure-role-edit.php:372
566
  msgid "Delete"
567
  msgstr "حذف"
568
 
569
+ #: ../includes/ure-role-edit.php:372
570
  msgid "Delete User Role"
571
  msgstr "حذف نقش کاربری"
572
 
573
+ #: ../includes/ure-role-edit.php:377
574
+ #: ../includes/ure-role-edit.php:382
575
  msgid "Add New Capability"
576
  msgstr "اضافه کردن نقش جدید"
577
 
578
+ #: ../includes/ure-role-edit.php:387
579
  msgid "Remove Capability"
580
  msgstr "حذف قابلیت"
581
 
582
+ #: ../includes/ure-role-edit.php:392
583
  msgid "Remove"
584
  msgstr "حذف"
585
 
586
+ #: ../includes/ure-role-edit.php:392
587
  msgid "Remove User Capability"
588
  msgstr "حذف قابلیت کاربر"
589
 
590
+ #: ../includes/ure-user-edit.php:67
591
  #, php-format
592
  msgid "User \"%s\" update: please confirm to continue"
593
  msgstr "برای تأیید کلیک کنید \"%s\" بروز رسانی نقش "
594
 
595
+ #: ../includes/ure-user-edit.php:79
596
  msgid "Change capabilities for user"
597
  msgstr "تغییر قابلیتهای برای کاربر"
598
 
599
+ #: ../includes/ure-user-edit.php:82
600
  msgid "Role:"
601
  msgstr "نقش:"
602
 
603
+ #: ../includes/ure-user-edit.php:104
604
  msgid "Add capabilities to this user:"
605
  msgstr "افزودن قابلیت برای این کاربر:"
606
 
607
+ #: ../includes/ure-options.php:59
608
  msgid "User Roles are restored from the backup data. "
609
  msgstr "دسترسیهای نقش از اطلاعات پشتیبان بازیابی شدند"
610
 
611
+ #: ../includes/ure-options.php:130
612
  msgid "Error: "
613
  msgstr "خطا:"
614
 
615
+ #: ../includes/ure-options.php:130
616
+ #: ../includes/ure-options.php:146
617
  msgid "Role"
618
  msgstr "نقش"
619
 
620
+ #: ../includes/ure-options.php:130
621
  msgid "does not exist"
622
  msgstr "پیدا نشد"
623
 
624
+ #: ../includes/ure-options.php:146
625
  msgid "is updated successfully"
626
  msgstr "با موفقیت بروزرسانی شد"
627
 
628
+ #: ../includes/ure-options.php:154
629
  msgid "User"
630
  msgstr "کاربر"
631
 
632
+ #: ../includes/ure-options.php:154
633
  msgid "capabilities are updated successfully"
634
  msgstr "با موفقیت بروزرسانی شد"
635
 
636
+ #: ../includes/ure-options.php:232
637
  msgid "About this Plugin:"
638
  msgstr "در مورد افزونه"
639
 
640
+ #: ../includes/ure-options.php:233
641
  msgid "Author's website"
642
  msgstr "سایت نویسنده"
643
 
644
+ #: ../includes/ure-options.php:234
645
  msgid "Plugin webpage"
646
  msgstr "وبسایت افزونه"
647
 
648
+ #: ../includes/ure-options.php:236
649
  msgid "FAQ"
650
  msgstr "سؤالات"
651
 
652
+ #: ../includes/ure-options.php:237
653
  msgid "Greetings"
654
  msgstr "خوشامدگویی ها"
655
 
656
+ #: ../includes/ure-options.php:259
657
  msgid "Greetings:"
658
  msgstr "تشکر از:"
659
 
660
+ #: ../includes/ure-options.php:260
661
  msgid "It's me, the author"
662
  msgstr "منم، نویسنده!"
663
 
664
+ #: ../includes/ure-options.php:261
665
  msgid "For the help with Belorussian translation"
666
  msgstr "برای ترجمه به زبان بلاروسی"
667
 
668
+ #: ../includes/ure-options.php:262
669
  msgid "For the help with Brasilian translation"
670
  msgstr "برای ترجمه به زبان برزیلی"
671
 
672
+ #: ../includes/ure-options.php:263
673
+ #, fuzzy
674
+ msgid "For the help with Brasilian Portuguese translation"
675
+ msgstr "برای ترجمه به زبان برزیلی"
676
+
677
+ #: ../includes/ure-options.php:264
678
  msgid "For the help with Chinese translation"
679
  msgstr "برای ترجمه به زبان چینی"
680
 
681
+ #: ../includes/ure-options.php:265
682
  msgid "For the help with Dutch translation"
683
  msgstr "برای ترجمه به زبان هلندی"
684
 
685
+ #: ../includes/ure-options.php:266
686
  msgid "For the help with Finnish translation"
687
  msgstr "برای ترجمه به زبان فنلاندی"
688
 
689
+ #: ../includes/ure-options.php:267
690
+ #: ../includes/ure-options.php:268
691
  msgid "For the help with French translation"
692
  msgstr "برای ترجمه به زبان فرانسوی"
693
 
694
+ #: ../includes/ure-options.php:269
695
  msgid "For the help with German translation"
696
  msgstr "برای ترجمه به زبان آلمانی"
697
 
698
+ #: ../includes/ure-options.php:270
699
+ #: ../includes/ure-options.php:271
700
  msgid "For the help with Hebrew translation"
701
  msgstr "برای کمک ترجمه عبری"
702
 
703
+ #: ../includes/ure-options.php:272
704
  msgid "For the help with Hindi translation"
705
  msgstr "برای کمک ترجمه هندی"
706
 
707
+ #: ../includes/ure-options.php:273
708
  msgid "For the help with Hungarian translation"
709
  msgstr "برای ترجمه به زبان مجارستانی"
710
 
711
+ #: ../includes/ure-options.php:274
712
+ #: ../includes/ure-options.php:275
713
  msgid "For the help with Italian translation"
714
  msgstr "برای ترجمه به زبان ایتالیایی"
715
 
716
+ #: ../includes/ure-options.php:276
717
  msgid "For the help with Japanese translation"
718
  msgstr "برای ترجمه به زبان ژاپنی"
719
 
720
+ #: ../includes/ure-options.php:277
721
  msgid "For the help with Lithuanian translation"
722
  msgstr "برای کمک ترجمه لیتوانیایی"
723
 
724
+ #: ../includes/ure-options.php:278
725
+ #: ../includes/ure-options.php:279
726
+ #: ../includes/ure-options.php:280
727
  msgid "For the help with Persian translation"
728
  msgstr "برای ترجمه به زبان فارسی"
729
 
730
+ #: ../includes/ure-options.php:281
731
+ #: ../includes/ure-options.php:282
732
  msgid "For the help with Polish translation"
733
  msgstr "برای ترجمه به زبان لهستانی"
734
 
735
+ #: ../includes/ure-options.php:283
736
+ #: ../includes/ure-options.php:284
737
  msgid "For the help with Spanish translation"
738
  msgstr "برای ترجمه به زبان اسپانیایی"
739
 
740
+ #: ../includes/ure-options.php:285
741
  msgid "For the updated Swedish translation"
742
  msgstr "برای ترجمه به زبان سوئدی"
743
 
744
+ #: ../includes/ure-options.php:286
745
  msgid "For the help with Swedish translation"
746
  msgstr "برای ترجمه به زبان سوئدی"
747
 
748
+ #: ../includes/ure-options.php:287
749
  msgid "For the help with Turkish translation"
750
  msgstr "برای ترجمه به زبان ترکی"
751
 
752
+ #: ../includes/ure-options.php:289
753
  msgid "For the code to hide administrator role"
754
  msgstr "برای کد مخفی کنندۀ نقش مدیر"
755
 
756
+ #: ../includes/ure-options.php:290
757
  msgid "For the code enhancement suggestion"
758
  msgstr "برای کد افزایش پیشنهاد"
759
 
760
+ #: ../includes/ure-options.php:292
761
  msgid "Do you wish to see your name with link to your site here? You are welcome! Your help with translation and new ideas are very appreciated."
762
  msgstr "میخوایین اسم و لینک سایتتون رو اینجا ببینید؟ در ترجمه و ایده دهی کمک کنید"
763
 
lang/ure-fi.mo CHANGED
Binary file
lang/ure-fi.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: 2012-06-23 23:13+0700\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Vladimir Garagulya <vladimir@shinephp.com>\n"
8
  "Language-Team: Lauri Merisaari <lauri@viidakkorumpu.fi>\n"
@@ -30,714 +30,733 @@ msgstr "Ole hyvä ja päivitä!"
30
  msgid "User Role Editor requires PHP 5.0 or newer."
31
  msgstr "User Role Editor tarvitsee PHP 5.0:n tai uudemman."
32
 
33
- #: ../user-role-editor.php:65
34
  msgid "Only"
35
  msgstr "Vain"
36
 
37
- #: ../user-role-editor.php:65
38
  msgid "is allowed to use"
39
  msgstr "sallitaan käyttää"
40
 
41
- #: ../user-role-editor.php:71
42
- #: ../user-role-editor.php:246
43
  msgid "User Role Editor"
44
  msgstr "User Role Editor"
45
 
46
- #: ../user-role-editor.php:218
47
  msgid "Settings"
48
  msgstr "Asetukset"
49
 
50
- #: ../user-role-editor.php:228
51
- #: ../ure-options.php:218
52
  msgid "Changelog"
53
  msgstr "Muutos loki"
54
 
55
- #: ../user-role-editor.php:275
56
  msgid "Capabilities"
57
  msgstr "Oikeudet"
58
 
59
- #: ../ure-lib.php:45
60
  msgid "Error is occur. Please check the log file."
61
  msgstr "Sattui virhe. Ole hyvä ja tarkista loki tiedosto."
62
 
63
- #: ../ure-lib.php:155
64
  msgid "Database operation error. Check log file."
65
  msgstr "Tietokanta virhe. Tarkista loki tiedosto."
66
 
67
- #: ../ure-lib.php:188
68
  msgid "No backup data. It is created automatically before the first role data update."
69
  msgstr "Ei varmuuskopio tietoja. Tiedot luodaan automaattisesti ennen ensimmäistä roolitietojen päivitystä."
70
 
71
- #: ../ure-lib.php:226
72
  msgid "Backup record is created for the current role capabilities"
73
  msgstr "Varmuuskopio luodaan nykyisiä rooli oikeuksia varten"
74
 
75
- #: ../ure-lib.php:345
76
  msgid "Error: Role name must contain latin characters and digits only!"
77
  msgstr "Virhe: Roolin nimi saa sisältää vain latinalaisia aakkosia ja numeroita!"
78
 
79
- #: ../ure-lib.php:352
80
  #, php-format
81
  msgid "Role %s exists already"
82
  msgstr "Rooli %s on jo olemassa"
83
 
84
- #: ../ure-lib.php:365
85
  msgid "Error is encountered during new role create operation"
86
  msgstr "Virhe sattui roolia luotaessa"
87
 
88
- #: ../ure-lib.php:367
89
  #, php-format
90
  msgid "Role %s is created successfully"
91
  msgstr "Rooli %s luotiin onnistuneesti"
92
 
93
- #: ../ure-lib.php:451
94
  msgid "Error encountered during role delete operation"
95
  msgstr "Sattui virhe rooli poistettaessa"
96
 
97
- #: ../ure-lib.php:453
98
  #, php-format
99
  msgid "Role %s is deleted successfully"
100
  msgstr "Rooli %s on poistettu onnistuneesti"
101
 
102
- #: ../ure-lib.php:471
103
  msgid "Error encountered during default role change operation"
104
  msgstr "Sattui virhe oletusroolia muutettaessa"
105
 
106
- #: ../ure-lib.php:477
107
  #, php-format
108
  msgid "Default role for new users is set to %s successfully"
109
  msgstr "Oletusrooli uusille käyttäjille asetettiin %s onnistuneesti"
110
 
111
- #: ../ure-lib.php:505
112
  msgid "Editor"
113
  msgstr "Päätoimittaja"
114
 
115
- #: ../ure-lib.php:506
116
  msgid "Author"
117
  msgstr "Kirjoittaja"
118
 
119
- #: ../ure-lib.php:507
120
  msgid "Contributor"
121
  msgstr "Avustaja"
122
 
123
- #: ../ure-lib.php:508
124
  msgid "Subscriber"
125
  msgstr "Tilaaja"
126
 
127
- #: ../ure-lib.php:510
128
  msgid "Switch themes"
129
  msgstr "Vaihda teema"
130
 
131
- #: ../ure-lib.php:511
132
  msgid "Edit themes"
133
  msgstr "Muokkaa teemoja"
134
 
135
- #: ../ure-lib.php:512
136
  msgid "Activate plugins"
137
  msgstr "Aktivoi lisäosia"
138
 
139
- #: ../ure-lib.php:513
140
  msgid "Edit plugins"
141
  msgstr "Muokkaa lisäosia"
142
 
143
- #: ../ure-lib.php:514
144
  msgid "Edit users"
145
  msgstr "Muokkaa käyttäjiä"
146
 
147
- #: ../ure-lib.php:515
148
  msgid "Edit files"
149
  msgstr "Muokkaa tiedostoja"
150
 
151
- #: ../ure-lib.php:516
152
  msgid "Manage options"
153
  msgstr "Hallitse asetuksia"
154
 
155
- #: ../ure-lib.php:517
156
  msgid "Moderate comments"
157
  msgstr "Suodata kommentteja"
158
 
159
- #: ../ure-lib.php:518
160
  msgid "Manage categories"
161
  msgstr "Hallitse kategorioita"
162
 
163
- #: ../ure-lib.php:519
164
  msgid "Manage links"
165
  msgstr "Hallitse linkkejä"
166
 
167
- #: ../ure-lib.php:520
168
  msgid "Upload files"
169
  msgstr "Lisää tiedostoja"
170
 
171
- #: ../ure-lib.php:521
172
  msgid "Import"
173
  msgstr "Tuo"
174
 
175
- #: ../ure-lib.php:522
176
  msgid "Unfiltered html"
177
  msgstr "Suodattamaton html"
178
 
179
- #: ../ure-lib.php:523
180
  msgid "Edit posts"
181
  msgstr "Muokkaa artikkeleja"
182
 
183
- #: ../ure-lib.php:524
184
  msgid "Edit others posts"
185
  msgstr "Muokkaa toisten artikkeleja"
186
 
187
- #: ../ure-lib.php:525
188
  msgid "Edit published posts"
189
  msgstr "Muokkaa julkaistuja artikkeleja"
190
 
191
- #: ../ure-lib.php:526
192
  msgid "Publish posts"
193
  msgstr "Julkaise artikkeleja"
194
 
195
- #: ../ure-lib.php:527
196
  msgid "Edit pages"
197
  msgstr "Muokkaa sivuja"
198
 
199
- #: ../ure-lib.php:528
200
  msgid "Read"
201
  msgstr "Lue"
202
 
203
- #: ../ure-lib.php:529
204
  msgid "Level 10"
205
  msgstr "Taso 10"
206
 
207
- #: ../ure-lib.php:530
208
  msgid "Level 9"
209
  msgstr "Taso 9"
210
 
211
- #: ../ure-lib.php:531
212
  msgid "Level 8"
213
  msgstr "Taso 8"
214
 
215
- #: ../ure-lib.php:532
216
  msgid "Level 7"
217
  msgstr "Taso 7"
218
 
219
- #: ../ure-lib.php:533
220
  msgid "Level 6"
221
  msgstr "Taso 6"
222
 
223
- #: ../ure-lib.php:534
224
  msgid "Level 5"
225
  msgstr "Taso 5"
226
 
227
- #: ../ure-lib.php:535
228
  msgid "Level 4"
229
  msgstr "Taso 4"
230
 
231
- #: ../ure-lib.php:536
232
  msgid "Level 3"
233
  msgstr "Taso 3"
234
 
235
- #: ../ure-lib.php:537
236
  msgid "Level 2"
237
  msgstr "Taso 2"
238
 
239
- #: ../ure-lib.php:538
240
  msgid "Level 1"
241
  msgstr "Taso 1"
242
 
243
- #: ../ure-lib.php:539
244
  msgid "Level 0"
245
  msgstr "Taso 0"
246
 
247
- #: ../ure-lib.php:540
248
  msgid "Edit others pages"
249
  msgstr "Muokkaa toisten sivuja"
250
 
251
- #: ../ure-lib.php:541
252
  msgid "Edit published pages"
253
  msgstr "Muokkaa julkaistuja sivuja"
254
 
255
- #: ../ure-lib.php:542
256
  msgid "Publish pages"
257
  msgstr "Julkaise sivuja"
258
 
259
- #: ../ure-lib.php:543
260
  msgid "Delete pages"
261
  msgstr "Poista sivuja"
262
 
263
- #: ../ure-lib.php:544
264
  msgid "Delete others pages"
265
  msgstr "Poista toisten sivuja"
266
 
267
- #: ../ure-lib.php:545
268
  msgid "Delete published pages"
269
  msgstr "Poista julkaistuja sivuja"
270
 
271
- #: ../ure-lib.php:546
272
  msgid "Delete posts"
273
  msgstr "Poista artikkeleja"
274
 
275
- #: ../ure-lib.php:547
276
  msgid "Delete others posts"
277
  msgstr "Poista toisten artikkeleja"
278
 
279
- #: ../ure-lib.php:548
280
  msgid "Delete published posts"
281
  msgstr "Poista julkaistuja artikkeleja"
282
 
283
- #: ../ure-lib.php:549
284
  msgid "Delete private posts"
285
  msgstr "Poista yksityisiä artikkeleja"
286
 
287
- #: ../ure-lib.php:550
288
  msgid "Edit private posts"
289
  msgstr "Muokkaa yksityisiä artikkeleja"
290
 
291
- #: ../ure-lib.php:551
292
  msgid "Read private posts"
293
  msgstr "Lue yksityisiä artikkeleja"
294
 
295
- #: ../ure-lib.php:552
296
  msgid "Delete private pages"
297
  msgstr "Poista yksityisiä sivuja"
298
 
299
- #: ../ure-lib.php:553
300
  msgid "Edit private pages"
301
  msgstr "Muokkaa yksityisiä sivuja"
302
 
303
- #: ../ure-lib.php:554
304
  msgid "Read private pages"
305
  msgstr "Lue yksityisiä sivuja"
306
 
307
- #: ../ure-lib.php:555
308
  msgid "Delete users"
309
  msgstr "Poista käyttäjiä"
310
 
311
- #: ../ure-lib.php:556
312
  msgid "Create users"
313
  msgstr "Luo käyttäjiä"
314
 
315
- #: ../ure-lib.php:557
316
  msgid "Unfiltered upload"
317
  msgstr "Suodattamaton tiedostojen lisäys"
318
 
319
- #: ../ure-lib.php:558
320
  msgid "Edit dashboard"
321
  msgstr "Muokkaa ohjausnäkymää"
322
 
323
- #: ../ure-lib.php:559
324
  msgid "Update plugins"
325
  msgstr "Päivitä lisäosia"
326
 
327
- #: ../ure-lib.php:560
328
  msgid "Delete plugins"
329
  msgstr "Poista lisäosia"
330
 
331
- #: ../ure-lib.php:561
332
  msgid "Install plugins"
333
  msgstr "Asenna lisäosia"
334
 
335
- #: ../ure-lib.php:562
336
  msgid "Update themes"
337
  msgstr "Päivitä teemoja"
338
 
339
- #: ../ure-lib.php:563
340
  msgid "Install themes"
341
  msgstr "Asenna teemoja"
342
 
343
- #: ../ure-lib.php:564
344
  msgid "Update core"
345
  msgstr "Päivitä ydin"
346
 
347
- #: ../ure-lib.php:565
348
  msgid "List users"
349
  msgstr "Listaa käyttäjät"
350
 
351
- #: ../ure-lib.php:566
352
  msgid "Remove users"
353
  msgstr "Poista käyttäjiä"
354
 
355
- #: ../ure-lib.php:567
356
  msgid "Add users"
357
  msgstr "Lisää käyttäjiä"
358
 
359
- #: ../ure-lib.php:568
360
  msgid "Promote users"
361
  msgstr "Ylennä käyttäjiä"
362
 
363
- #: ../ure-lib.php:569
364
  msgid "Edit theme options"
365
  msgstr "Muokkaa teeman asetuksia"
366
 
367
- #: ../ure-lib.php:570
368
  msgid "Delete themes"
369
  msgstr "Poista teemoja"
370
 
371
- #: ../ure-lib.php:571
372
  msgid "Export"
373
  msgstr "Vie"
374
 
375
- #: ../ure-lib.php:655
376
  msgid "Error: Capability name must contain latin characters and digits only!"
377
  msgstr "Virhe: Oikeuden nimi saa sisältää vain latinalaisia aakkosia ja numeroita!"
378
 
379
- #: ../ure-lib.php:667
380
  #, php-format
381
  msgid "Capability %s is added successfully"
382
  msgstr "Rooli %s luotiin onnistuneesti"
383
 
384
- #: ../ure-lib.php:669
385
  #, php-format
386
  msgid "Capability %s exists already"
387
  msgstr "Oikeus %s on jo määritelty"
388
 
389
- #: ../ure-lib.php:818
390
  #, php-format
391
  msgid "Error! You do not have permission to delete this capability: %s!"
392
  msgstr "Virhe! Sinulla ei ole lupaa poistaa tätä oikeutta: %s!"
393
 
394
- #: ../ure-lib.php:840
395
  #, php-format
396
  msgid "Capability %s is removed successfully"
397
  msgstr "Rooli %s poistettiin onnistuneesti"
398
 
399
- #: ../ure-lib.php:902
400
  msgid "Help"
401
  msgstr ""
402
 
403
- #: ../ure-role-edit.php:29
404
  msgid "None"
405
  msgstr ""
406
 
407
- #: ../ure-role-edit.php:93
408
  msgid " Name can not be empty!"
409
  msgstr " Roolin nimi ei voi olla tyhjä!"
410
 
411
- #: ../ure-role-edit.php:97
412
  msgid " Name must contain latin characters and digits only!"
413
  msgstr " Nimi saa sisältää vain latinalaisia aakkosia ja numeroita!"
414
 
415
- #: ../ure-role-edit.php:102
416
- #: ../ure-role-edit.php:293
417
  msgid "Delete Role"
418
  msgstr "Poista rooli"
419
 
420
- #: ../ure-role-edit.php:104
421
  msgid "Change Default Role"
422
  msgstr "Muuta oletus rooli"
423
 
424
- #: ../ure-role-edit.php:106
425
  msgid "Restore Roles from backup copy. Be careful, backup was created when you started URE 1st time. All changes you made after that will be lost"
426
  msgstr ""
427
 
428
- #: ../ure-role-edit.php:108
429
  msgid "Warning! Be careful - removing critical capability could crash some plugin or other custom code"
430
  msgstr "Varoitus! Ole varovainen - kriittisen oikeuden poistaminen voi rikkoa jonkun lisäosan tai muun muokatun koodin"
431
 
432
- #: ../ure-role-edit.php:110
433
  msgid "Please confirm to continue"
434
  msgstr "Varmista jatkaaksesi"
435
 
436
- #: ../ure-role-edit.php:147
437
  #, php-format
438
  msgid "Role \"%s\" update: please confirm to continue"
439
  msgstr "Roolin \"%s\" päivitys: varmista jatkaaksesi"
440
 
441
- #: ../ure-role-edit.php:155
442
  msgid "Select Role and change its capabilities list"
443
  msgstr "Valitse rooli ja muuta sen oikeuksia"
444
 
445
- #: ../ure-role-edit.php:157
446
  msgid "Select Role:"
447
  msgstr "Valitse rooli:"
448
 
449
- #: ../ure-role-edit.php:167
450
- #: ../ure-user-edit.php:91
451
  msgid "Show capabilities in human readable form"
452
  msgstr "Näytä oikeudet helpommin luettavassa muodossa suomeksi"
453
 
454
- #: ../ure-role-edit.php:176
455
- #: ../ure-user-edit.php:100
456
  msgid "Show deprecated capabilities"
457
  msgstr ""
458
 
459
- #: ../ure-role-edit.php:180
460
  msgid "If checked, then apply action to ALL sites of this Network"
461
  msgstr "Jos valittu, muutos toteutetaan KAIKILLA sivustoilla tässä verkossa"
462
 
463
- #: ../ure-role-edit.php:190
464
  msgid "Apply to All Sites"
465
  msgstr "Tee muutos kaikille sivustoille"
466
 
467
- #: ../ure-role-edit.php:251
468
- #: ../ure-user-edit.php:163
 
 
 
 
 
 
 
 
 
 
 
 
469
  msgid "Update"
470
  msgstr "Päivitä"
471
 
472
- #: ../ure-role-edit.php:251
473
- #: ../ure-user-edit.php:163
474
  msgid "Save Changes"
475
  msgstr "Tallenna muutokset"
476
 
477
- #: ../ure-role-edit.php:252
478
- #: ../ure-user-edit.php:164
479
  msgid "Cancel"
480
  msgstr "Peruuta"
481
 
482
- #: ../ure-role-edit.php:252
483
- #: ../ure-user-edit.php:164
484
  msgid "Cancel not saved changes"
485
  msgstr "Peruuta"
486
 
487
- #: ../ure-role-edit.php:255
488
  msgid "Select All"
489
  msgstr ""
490
 
491
- #: ../ure-role-edit.php:255
492
  msgid "Select All Capabilities"
493
  msgstr ""
494
 
495
- #: ../ure-role-edit.php:256
496
  msgid "Unselect All"
497
  msgstr ""
498
 
499
- #: ../ure-role-edit.php:256
500
  msgid "Unselect All Capabilities"
501
  msgstr ""
502
 
503
- #: ../ure-role-edit.php:257
504
  msgid "Reverse"
505
  msgstr ""
506
 
507
- #: ../ure-role-edit.php:257
508
  msgid "Turn checked capabilities off and vise versa"
509
  msgstr ""
510
 
511
- #: ../ure-role-edit.php:260
512
  msgid "Reset"
513
  msgstr "Palauta"
514
 
515
- #: ../ure-role-edit.php:260
516
  msgid "Restore Roles from backup copy"
517
  msgstr "Palauta rooli varmuuskopiosta"
518
 
519
- #: ../ure-role-edit.php:270
520
  msgid "Add New Role"
521
  msgstr "Lisää uusi rooli"
522
 
523
- #: ../ure-role-edit.php:272
524
  msgid "Name: "
525
  msgstr ""
526
 
527
- #: ../ure-role-edit.php:276
528
  msgid "Make copy of: "
529
  msgstr ""
530
 
531
- #: ../ure-role-edit.php:279
532
- #: ../ure-role-edit.php:308
533
  msgid "Add"
534
  msgstr "Lisää"
535
 
536
- #: ../ure-role-edit.php:279
537
  msgid "Add New User Role"
538
  msgstr "Lisää uusi käyttäjä rooli"
539
 
540
- #: ../ure-role-edit.php:283
541
  msgid "Default Role for New User"
542
  msgstr "Oletus rooli uusille käyttäjille"
543
 
544
- #: ../ure-role-edit.php:288
545
  msgid "Change"
546
  msgstr "Muuta"
547
 
548
- #: ../ure-role-edit.php:288
549
  msgid "Set as Default User Role"
550
  msgstr "Muuta oletus rooliksi"
551
 
552
- #: ../ure-role-edit.php:298
553
  msgid "Delete"
554
  msgstr "Poista"
555
 
556
- #: ../ure-role-edit.php:298
557
  msgid "Delete User Role"
558
  msgstr "Poista käyttäjän rooli"
559
 
560
- #: ../ure-role-edit.php:303
561
- #: ../ure-role-edit.php:308
562
  msgid "Add New Capability"
563
  msgstr "Lisää uusi oikeus"
564
 
565
- #: ../ure-role-edit.php:313
566
  msgid "Remove Capability"
567
  msgstr "Poista oikeus"
568
 
569
- #: ../ure-role-edit.php:318
570
  msgid "Remove"
571
  msgstr "Poista"
572
 
573
- #: ../ure-role-edit.php:318
574
  msgid "Remove User Capability"
575
  msgstr "Poista käyttäjän oikeudet"
576
 
577
- #: ../ure-user-edit.php:67
578
  #, php-format
579
  msgid "User \"%s\" update: please confirm to continue"
580
  msgstr "Roolin \"%s\" päivitys: varmista jatkaaksesi"
581
 
582
- #: ../ure-user-edit.php:79
583
  msgid "Change capabilities for user"
584
  msgstr "Muuta käyttäjän oikeuksia"
585
 
586
- #: ../ure-user-edit.php:82
587
  msgid "Role:"
588
  msgstr "Rooli:"
589
 
590
- #: ../ure-user-edit.php:104
591
  msgid "Add capabilities to this user:"
592
  msgstr "Lisää oikeudet käyttäjälle:"
593
 
594
- #: ../ure-options.php:59
595
  msgid "User Roles are restored from the backup data. "
596
  msgstr ""
597
 
598
- #: ../ure-options.php:125
599
  msgid "Error: "
600
  msgstr ""
601
 
602
- #: ../ure-options.php:125
603
- #: ../ure-options.php:143
604
  msgid "Role"
605
  msgstr "Rooli"
606
 
607
- #: ../ure-options.php:125
608
  msgid "does not exist"
609
  msgstr ""
610
 
611
- #: ../ure-options.php:143
612
  msgid "is updated successfully"
613
  msgstr "on päivitetty onnistuneesti"
614
 
615
- #: ../ure-options.php:152
616
  msgid "User"
617
  msgstr "Käyttäjä"
618
 
619
- #: ../ure-options.php:152
620
  msgid "capabilities are updated successfully"
621
  msgstr "Oikeudet on päivitetty onnistuneesti"
622
 
623
- #: ../ure-options.php:215
624
  msgid "About this Plugin:"
625
  msgstr "Tietoja lisäosasta:"
626
 
627
- #: ../ure-options.php:216
628
  msgid "Author's website"
629
  msgstr "Tekijän kotisivu"
630
 
631
- #: ../ure-options.php:217
632
  msgid "Plugin webpage"
633
  msgstr "Lisäosan kotisivu"
634
 
635
- #: ../ure-options.php:219
636
  msgid "FAQ"
637
  msgstr "Usein kysytyt kysymykset"
638
 
639
- #: ../ure-options.php:220
640
  msgid "Greetings"
641
  msgstr ""
642
 
643
- #: ../ure-options.php:242
644
  msgid "Greetings:"
645
  msgstr "Tervehdys:"
646
 
647
- #: ../ure-options.php:243
648
  msgid "It's me, the author"
649
  msgstr "Se olen minä tekijä"
650
 
651
- #: ../ure-options.php:244
652
  msgid "For the help with Belorussian translation"
653
  msgstr "Apua Valkovenäjän kieliseen käännökseen"
654
 
655
- #: ../ure-options.php:245
656
  msgid "For the help with Brasilian translation"
657
  msgstr "Apua Brasilian kieliseen käännökseen"
658
 
659
- #: ../ure-options.php:246
 
 
 
 
 
660
  msgid "For the help with Chinese translation"
661
  msgstr "Apua Kiinan kieliseen käännökseen"
662
 
663
- #: ../ure-options.php:247
664
  msgid "For the help with Dutch translation"
665
  msgstr "Apua Hollannin kieliseen käännökseen"
666
 
667
- #: ../ure-options.php:248
668
  msgid "For the help with Finnish translation"
669
  msgstr "Apua suomen kieliseen käännökseen"
670
 
671
- #: ../ure-options.php:249
672
- #: ../ure-options.php:250
673
  msgid "For the help with French translation"
674
  msgstr "Apua Ranskan kieliseen käännökseen"
675
 
676
- #: ../ure-options.php:251
677
  msgid "For the help with German translation"
678
  msgstr "Apua Saksan kieliseen käännökseen"
679
 
680
- #: ../ure-options.php:252
681
- #: ../ure-options.php:253
682
  msgid "For the help with Hebrew translation"
683
  msgstr ""
684
 
685
- #: ../ure-options.php:254
686
  msgid "For the help with Hindi translation"
687
  msgstr ""
688
 
689
- #: ../ure-options.php:255
690
  msgid "For the help with Hungarian translation"
691
  msgstr "Apua Unkarin kieliseen käännökseen"
692
 
693
- #: ../ure-options.php:256
694
- #: ../ure-options.php:257
695
  msgid "For the help with Italian translation"
696
  msgstr "Apua Italian kieliseen käännökseen"
697
 
698
- #: ../ure-options.php:258
699
  msgid "For the help with Japanese translation"
700
  msgstr "Apua Japanin kieliseen käännökseen"
701
 
702
- #: ../ure-options.php:259
703
  msgid "For the help with Lithuanian translation"
704
  msgstr ""
705
 
706
- #: ../ure-options.php:260
707
- #: ../ure-options.php:261
 
708
  msgid "For the help with Persian translation"
709
  msgstr "Apua Persialaiseen käännökseen"
710
 
711
- #: ../ure-options.php:262
 
712
  msgid "For the help with Polish translation"
713
  msgstr "Apua Puolalaiseen käännökseen"
714
 
715
- #: ../ure-options.php:263
716
- #: ../ure-options.php:264
717
  msgid "For the help with Spanish translation"
718
  msgstr "Apua Espanian kieliseen käännökseen"
719
 
720
- #: ../ure-options.php:265
721
  msgid "For the updated Swedish translation"
722
  msgstr ""
723
 
724
- #: ../ure-options.php:266
725
  msgid "For the help with Swedish translation"
726
  msgstr "Apua Swedish kieliseen käännökseen"
727
 
728
- #: ../ure-options.php:267
729
  msgid "For the help with Turkish translation"
730
  msgstr "Apua Turkin kieliseen käännökseen"
731
 
732
- #: ../ure-options.php:269
733
  msgid "For the code to hide administrator role"
734
  msgstr "Koodi Pääkäyttäjän roolin piilottamiseen"
735
 
736
- #: ../ure-options.php:270
737
  msgid "For the code enhancement suggestion"
738
  msgstr ""
739
 
740
- #: ../ure-options.php:272
741
  msgid "Do you wish to see your name with link to your site here? You are welcome! Your help with translation and new ideas are very appreciated."
742
  msgstr "Haluatko nähdä nimesi sekä linkin sivuillesi tässä? Olet tervetullut auttamaan käännöksen kanssa. Myös kaikista uusista ideoista ollaan kiitollisia."
743
 
2
  msgstr ""
3
  "Project-Id-Version: User Role Editor 2.0\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-09-01 08:44+0700\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Vladimir Garagulya <vladimir@shinephp.com>\n"
8
  "Language-Team: Lauri Merisaari <lauri@viidakkorumpu.fi>\n"
30
  msgid "User Role Editor requires PHP 5.0 or newer."
31
  msgstr "User Role Editor tarvitsee PHP 5.0:n tai uudemman."
32
 
33
+ #: ../user-role-editor.php:76
34
  msgid "Only"
35
  msgstr "Vain"
36
 
37
+ #: ../user-role-editor.php:76
38
  msgid "is allowed to use"
39
  msgstr "sallitaan käyttää"
40
 
41
+ #: ../user-role-editor.php:82
42
+ #: ../user-role-editor.php:251
43
  msgid "User Role Editor"
44
  msgstr "User Role Editor"
45
 
46
+ #: ../user-role-editor.php:223
47
  msgid "Settings"
48
  msgstr "Asetukset"
49
 
50
+ #: ../user-role-editor.php:233
51
+ #: ../includes/ure-options.php:235
52
  msgid "Changelog"
53
  msgstr "Muutos loki"
54
 
55
+ #: ../user-role-editor.php:280
56
  msgid "Capabilities"
57
  msgstr "Oikeudet"
58
 
59
+ #: ../includes/ure-lib.php:34
60
  msgid "Error is occur. Please check the log file."
61
  msgstr "Sattui virhe. Ole hyvä ja tarkista loki tiedosto."
62
 
63
+ #: ../includes/ure-lib.php:144
64
  msgid "Database operation error. Check log file."
65
  msgstr "Tietokanta virhe. Tarkista loki tiedosto."
66
 
67
+ #: ../includes/ure-lib.php:177
68
  msgid "No backup data. It is created automatically before the first role data update."
69
  msgstr "Ei varmuuskopio tietoja. Tiedot luodaan automaattisesti ennen ensimmäistä roolitietojen päivitystä."
70
 
71
+ #: ../includes/ure-lib.php:215
72
  msgid "Backup record is created for the current role capabilities"
73
  msgstr "Varmuuskopio luodaan nykyisiä rooli oikeuksia varten"
74
 
75
+ #: ../includes/ure-lib.php:329
76
  msgid "Error: Role name must contain latin characters and digits only!"
77
  msgstr "Virhe: Roolin nimi saa sisältää vain latinalaisia aakkosia ja numeroita!"
78
 
79
+ #: ../includes/ure-lib.php:336
80
  #, php-format
81
  msgid "Role %s exists already"
82
  msgstr "Rooli %s on jo olemassa"
83
 
84
+ #: ../includes/ure-lib.php:349
85
  msgid "Error is encountered during new role create operation"
86
  msgstr "Virhe sattui roolia luotaessa"
87
 
88
+ #: ../includes/ure-lib.php:351
89
  #, php-format
90
  msgid "Role %s is created successfully"
91
  msgstr "Rooli %s luotiin onnistuneesti"
92
 
93
+ #: ../includes/ure-lib.php:435
94
  msgid "Error encountered during role delete operation"
95
  msgstr "Sattui virhe rooli poistettaessa"
96
 
97
+ #: ../includes/ure-lib.php:437
98
  #, php-format
99
  msgid "Role %s is deleted successfully"
100
  msgstr "Rooli %s on poistettu onnistuneesti"
101
 
102
+ #: ../includes/ure-lib.php:455
103
  msgid "Error encountered during default role change operation"
104
  msgstr "Sattui virhe oletusroolia muutettaessa"
105
 
106
+ #: ../includes/ure-lib.php:461
107
  #, php-format
108
  msgid "Default role for new users is set to %s successfully"
109
  msgstr "Oletusrooli uusille käyttäjille asetettiin %s onnistuneesti"
110
 
111
+ #: ../includes/ure-lib.php:489
112
  msgid "Editor"
113
  msgstr "Päätoimittaja"
114
 
115
+ #: ../includes/ure-lib.php:490
116
  msgid "Author"
117
  msgstr "Kirjoittaja"
118
 
119
+ #: ../includes/ure-lib.php:491
120
  msgid "Contributor"
121
  msgstr "Avustaja"
122
 
123
+ #: ../includes/ure-lib.php:492
124
  msgid "Subscriber"
125
  msgstr "Tilaaja"
126
 
127
+ #: ../includes/ure-lib.php:494
128
  msgid "Switch themes"
129
  msgstr "Vaihda teema"
130
 
131
+ #: ../includes/ure-lib.php:495
132
  msgid "Edit themes"
133
  msgstr "Muokkaa teemoja"
134
 
135
+ #: ../includes/ure-lib.php:496
136
  msgid "Activate plugins"
137
  msgstr "Aktivoi lisäosia"
138
 
139
+ #: ../includes/ure-lib.php:497
140
  msgid "Edit plugins"
141
  msgstr "Muokkaa lisäosia"
142
 
143
+ #: ../includes/ure-lib.php:498
144
  msgid "Edit users"
145
  msgstr "Muokkaa käyttäjiä"
146
 
147
+ #: ../includes/ure-lib.php:499
148
  msgid "Edit files"
149
  msgstr "Muokkaa tiedostoja"
150
 
151
+ #: ../includes/ure-lib.php:500
152
  msgid "Manage options"
153
  msgstr "Hallitse asetuksia"
154
 
155
+ #: ../includes/ure-lib.php:501
156
  msgid "Moderate comments"
157
  msgstr "Suodata kommentteja"
158
 
159
+ #: ../includes/ure-lib.php:502
160
  msgid "Manage categories"
161
  msgstr "Hallitse kategorioita"
162
 
163
+ #: ../includes/ure-lib.php:503
164
  msgid "Manage links"
165
  msgstr "Hallitse linkkejä"
166
 
167
+ #: ../includes/ure-lib.php:504
168
  msgid "Upload files"
169
  msgstr "Lisää tiedostoja"
170
 
171
+ #: ../includes/ure-lib.php:505
172
  msgid "Import"
173
  msgstr "Tuo"
174
 
175
+ #: ../includes/ure-lib.php:506
176
  msgid "Unfiltered html"
177
  msgstr "Suodattamaton html"
178
 
179
+ #: ../includes/ure-lib.php:507
180
  msgid "Edit posts"
181
  msgstr "Muokkaa artikkeleja"
182
 
183
+ #: ../includes/ure-lib.php:508
184
  msgid "Edit others posts"
185
  msgstr "Muokkaa toisten artikkeleja"
186
 
187
+ #: ../includes/ure-lib.php:509
188
  msgid "Edit published posts"
189
  msgstr "Muokkaa julkaistuja artikkeleja"
190
 
191
+ #: ../includes/ure-lib.php:510
192
  msgid "Publish posts"
193
  msgstr "Julkaise artikkeleja"
194
 
195
+ #: ../includes/ure-lib.php:511
196
  msgid "Edit pages"
197
  msgstr "Muokkaa sivuja"
198
 
199
+ #: ../includes/ure-lib.php:512
200
  msgid "Read"
201
  msgstr "Lue"
202
 
203
+ #: ../includes/ure-lib.php:513
204
  msgid "Level 10"
205
  msgstr "Taso 10"
206
 
207
+ #: ../includes/ure-lib.php:514
208
  msgid "Level 9"
209
  msgstr "Taso 9"
210
 
211
+ #: ../includes/ure-lib.php:515
212
  msgid "Level 8"
213
  msgstr "Taso 8"
214
 
215
+ #: ../includes/ure-lib.php:516
216
  msgid "Level 7"
217
  msgstr "Taso 7"
218
 
219
+ #: ../includes/ure-lib.php:517
220
  msgid "Level 6"
221
  msgstr "Taso 6"
222
 
223
+ #: ../includes/ure-lib.php:518
224
  msgid "Level 5"
225
  msgstr "Taso 5"
226
 
227
+ #: ../includes/ure-lib.php:519
228
  msgid "Level 4"
229
  msgstr "Taso 4"
230
 
231
+ #: ../includes/ure-lib.php:520
232
  msgid "Level 3"
233
  msgstr "Taso 3"
234
 
235
+ #: ../includes/ure-lib.php:521
236
  msgid "Level 2"
237
  msgstr "Taso 2"
238
 
239
+ #: ../includes/ure-lib.php:522
240
  msgid "Level 1"
241
  msgstr "Taso 1"
242
 
243
+ #: ../includes/ure-lib.php:523
244
  msgid "Level 0"
245
  msgstr "Taso 0"
246
 
247
+ #: ../includes/ure-lib.php:524
248
  msgid "Edit others pages"
249
  msgstr "Muokkaa toisten sivuja"
250
 
251
+ #: ../includes/ure-lib.php:525
252
  msgid "Edit published pages"
253
  msgstr "Muokkaa julkaistuja sivuja"
254
 
255
+ #: ../includes/ure-lib.php:526
256
  msgid "Publish pages"
257
  msgstr "Julkaise sivuja"
258
 
259
+ #: ../includes/ure-lib.php:527
260
  msgid "Delete pages"
261
  msgstr "Poista sivuja"
262
 
263
+ #: ../includes/ure-lib.php:528
264
  msgid "Delete others pages"
265
  msgstr "Poista toisten sivuja"
266
 
267
+ #: ../includes/ure-lib.php:529
268
  msgid "Delete published pages"
269
  msgstr "Poista julkaistuja sivuja"
270
 
271
+ #: ../includes/ure-lib.php:530
272
  msgid "Delete posts"
273
  msgstr "Poista artikkeleja"
274
 
275
+ #: ../includes/ure-lib.php:531
276
  msgid "Delete others posts"
277
  msgstr "Poista toisten artikkeleja"
278
 
279
+ #: ../includes/ure-lib.php:532
280
  msgid "Delete published posts"
281
  msgstr "Poista julkaistuja artikkeleja"
282
 
283
+ #: ../includes/ure-lib.php:533
284
  msgid "Delete private posts"
285
  msgstr "Poista yksityisiä artikkeleja"
286
 
287
+ #: ../includes/ure-lib.php:534
288
  msgid "Edit private posts"
289
  msgstr "Muokkaa yksityisiä artikkeleja"
290
 
291
+ #: ../includes/ure-lib.php:535
292
  msgid "Read private posts"
293
  msgstr "Lue yksityisiä artikkeleja"
294
 
295
+ #: ../includes/ure-lib.php:536
296
  msgid "Delete private pages"
297
  msgstr "Poista yksityisiä sivuja"
298
 
299
+ #: ../includes/ure-lib.php:537
300
  msgid "Edit private pages"
301
  msgstr "Muokkaa yksityisiä sivuja"
302
 
303
+ #: ../includes/ure-lib.php:538
304
  msgid "Read private pages"
305
  msgstr "Lue yksityisiä sivuja"
306
 
307
+ #: ../includes/ure-lib.php:539
308
  msgid "Delete users"
309
  msgstr "Poista käyttäjiä"
310
 
311
+ #: ../includes/ure-lib.php:540
312
  msgid "Create users"
313
  msgstr "Luo käyttäjiä"
314
 
315
+ #: ../includes/ure-lib.php:541
316
  msgid "Unfiltered upload"
317
  msgstr "Suodattamaton tiedostojen lisäys"
318
 
319
+ #: ../includes/ure-lib.php:542
320
  msgid "Edit dashboard"
321
  msgstr "Muokkaa ohjausnäkymää"
322
 
323
+ #: ../includes/ure-lib.php:543
324
  msgid "Update plugins"
325
  msgstr "Päivitä lisäosia"
326
 
327
+ #: ../includes/ure-lib.php:544
328
  msgid "Delete plugins"
329
  msgstr "Poista lisäosia"
330
 
331
+ #: ../includes/ure-lib.php:545
332
  msgid "Install plugins"
333
  msgstr "Asenna lisäosia"
334
 
335
+ #: ../includes/ure-lib.php:546
336
  msgid "Update themes"
337
  msgstr "Päivitä teemoja"
338
 
339
+ #: ../includes/ure-lib.php:547
340
  msgid "Install themes"
341
  msgstr "Asenna teemoja"
342
 
343
+ #: ../includes/ure-lib.php:548
344
  msgid "Update core"
345
  msgstr "Päivitä ydin"
346
 
347
+ #: ../includes/ure-lib.php:549
348
  msgid "List users"
349
  msgstr "Listaa käyttäjät"
350
 
351
+ #: ../includes/ure-lib.php:550
352
  msgid "Remove users"
353
  msgstr "Poista käyttäjiä"
354
 
355
+ #: ../includes/ure-lib.php:551
356
  msgid "Add users"
357
  msgstr "Lisää käyttäjiä"
358
 
359
+ #: ../includes/ure-lib.php:552
360
  msgid "Promote users"
361
  msgstr "Ylennä käyttäjiä"
362
 
363
+ #: ../includes/ure-lib.php:553
364
  msgid "Edit theme options"
365
  msgstr "Muokkaa teeman asetuksia"
366
 
367
+ #: ../includes/ure-lib.php:554
368
  msgid "Delete themes"
369
  msgstr "Poista teemoja"
370
 
371
+ #: ../includes/ure-lib.php:555
372
  msgid "Export"
373
  msgstr "Vie"
374
 
375
+ #: ../includes/ure-lib.php:639
376
  msgid "Error: Capability name must contain latin characters and digits only!"
377
  msgstr "Virhe: Oikeuden nimi saa sisältää vain latinalaisia aakkosia ja numeroita!"
378
 
379
+ #: ../includes/ure-lib.php:651
380
  #, php-format
381
  msgid "Capability %s is added successfully"
382
  msgstr "Rooli %s luotiin onnistuneesti"
383
 
384
+ #: ../includes/ure-lib.php:653
385
  #, php-format
386
  msgid "Capability %s exists already"
387
  msgstr "Oikeus %s on jo määritelty"
388
 
389
+ #: ../includes/ure-lib.php:802
390
  #, php-format
391
  msgid "Error! You do not have permission to delete this capability: %s!"
392
  msgstr "Virhe! Sinulla ei ole lupaa poistaa tätä oikeutta: %s!"
393
 
394
+ #: ../includes/ure-lib.php:824
395
  #, php-format
396
  msgid "Capability %s is removed successfully"
397
  msgstr "Rooli %s poistettiin onnistuneesti"
398
 
399
+ #: ../includes/ure-lib.php:889
400
  msgid "Help"
401
  msgstr ""
402
 
403
+ #: ../includes/ure-role-edit.php:29
404
  msgid "None"
405
  msgstr ""
406
 
407
+ #: ../includes/ure-role-edit.php:101
408
  msgid " Name can not be empty!"
409
  msgstr " Roolin nimi ei voi olla tyhjä!"
410
 
411
+ #: ../includes/ure-role-edit.php:105
412
  msgid " Name must contain latin characters and digits only!"
413
  msgstr " Nimi saa sisältää vain latinalaisia aakkosia ja numeroita!"
414
 
415
+ #: ../includes/ure-role-edit.php:110
416
+ #: ../includes/ure-role-edit.php:367
417
  msgid "Delete Role"
418
  msgstr "Poista rooli"
419
 
420
+ #: ../includes/ure-role-edit.php:112
421
  msgid "Change Default Role"
422
  msgstr "Muuta oletus rooli"
423
 
424
+ #: ../includes/ure-role-edit.php:114
425
  msgid "Restore Roles from backup copy. Be careful, backup was created when you started URE 1st time. All changes you made after that will be lost"
426
  msgstr ""
427
 
428
+ #: ../includes/ure-role-edit.php:116
429
  msgid "Warning! Be careful - removing critical capability could crash some plugin or other custom code"
430
  msgstr "Varoitus! Ole varovainen - kriittisen oikeuden poistaminen voi rikkoa jonkun lisäosan tai muun muokatun koodin"
431
 
432
+ #: ../includes/ure-role-edit.php:118
433
  msgid "Please confirm to continue"
434
  msgstr "Varmista jatkaaksesi"
435
 
436
+ #: ../includes/ure-role-edit.php:155
437
  #, php-format
438
  msgid "Role \"%s\" update: please confirm to continue"
439
  msgstr "Roolin \"%s\" päivitys: varmista jatkaaksesi"
440
 
441
+ #: ../includes/ure-role-edit.php:163
442
  msgid "Select Role and change its capabilities list"
443
  msgstr "Valitse rooli ja muuta sen oikeuksia"
444
 
445
+ #: ../includes/ure-role-edit.php:165
446
  msgid "Select Role:"
447
  msgstr "Valitse rooli:"
448
 
449
+ #: ../includes/ure-role-edit.php:175
450
+ #: ../includes/ure-user-edit.php:91
451
  msgid "Show capabilities in human readable form"
452
  msgstr "Näytä oikeudet helpommin luettavassa muodossa suomeksi"
453
 
454
+ #: ../includes/ure-role-edit.php:184
455
+ #: ../includes/ure-user-edit.php:100
456
  msgid "Show deprecated capabilities"
457
  msgstr ""
458
 
459
+ #: ../includes/ure-role-edit.php:188
460
  msgid "If checked, then apply action to ALL sites of this Network"
461
  msgstr "Jos valittu, muutos toteutetaan KAIKILLA sivustoilla tässä verkossa"
462
 
463
+ #: ../includes/ure-role-edit.php:198
464
  msgid "Apply to All Sites"
465
  msgstr "Tee muutos kaikille sivustoille"
466
 
467
+ #: ../includes/ure-role-edit.php:205
468
+ #: ../includes/ure-user-edit.php:105
469
+ #, fuzzy
470
+ msgid "Core capabilities:"
471
+ msgstr "Oikeudet"
472
+
473
+ #: ../includes/ure-role-edit.php:268
474
+ #: ../includes/ure-user-edit.php:167
475
+ #, fuzzy
476
+ msgid "Custom capabilities:"
477
+ msgstr "Oikeudet"
478
+
479
+ #: ../includes/ure-role-edit.php:319
480
+ #: ../includes/ure-user-edit.php:222
481
  msgid "Update"
482
  msgstr "Päivitä"
483
 
484
+ #: ../includes/ure-role-edit.php:319
485
+ #: ../includes/ure-user-edit.php:222
486
  msgid "Save Changes"
487
  msgstr "Tallenna muutokset"
488
 
489
+ #: ../includes/ure-role-edit.php:320
490
+ #: ../includes/ure-user-edit.php:223
491
  msgid "Cancel"
492
  msgstr "Peruuta"
493
 
494
+ #: ../includes/ure-role-edit.php:320
495
+ #: ../includes/ure-user-edit.php:223
496
  msgid "Cancel not saved changes"
497
  msgstr "Peruuta"
498
 
499
+ #: ../includes/ure-role-edit.php:323
500
  msgid "Select All"
501
  msgstr ""
502
 
503
+ #: ../includes/ure-role-edit.php:323
504
  msgid "Select All Capabilities"
505
  msgstr ""
506
 
507
+ #: ../includes/ure-role-edit.php:327
508
  msgid "Unselect All"
509
  msgstr ""
510
 
511
+ #: ../includes/ure-role-edit.php:327
512
  msgid "Unselect All Capabilities"
513
  msgstr ""
514
 
515
+ #: ../includes/ure-role-edit.php:328
516
  msgid "Reverse"
517
  msgstr ""
518
 
519
+ #: ../includes/ure-role-edit.php:328
520
  msgid "Turn checked capabilities off and vise versa"
521
  msgstr ""
522
 
523
+ #: ../includes/ure-role-edit.php:334
524
  msgid "Reset"
525
  msgstr "Palauta"
526
 
527
+ #: ../includes/ure-role-edit.php:334
528
  msgid "Restore Roles from backup copy"
529
  msgstr "Palauta rooli varmuuskopiosta"
530
 
531
+ #: ../includes/ure-role-edit.php:344
532
  msgid "Add New Role"
533
  msgstr "Lisää uusi rooli"
534
 
535
+ #: ../includes/ure-role-edit.php:346
536
  msgid "Name: "
537
  msgstr ""
538
 
539
+ #: ../includes/ure-role-edit.php:350
540
  msgid "Make copy of: "
541
  msgstr ""
542
 
543
+ #: ../includes/ure-role-edit.php:353
544
+ #: ../includes/ure-role-edit.php:382
545
  msgid "Add"
546
  msgstr "Lisää"
547
 
548
+ #: ../includes/ure-role-edit.php:353
549
  msgid "Add New User Role"
550
  msgstr "Lisää uusi käyttäjä rooli"
551
 
552
+ #: ../includes/ure-role-edit.php:357
553
  msgid "Default Role for New User"
554
  msgstr "Oletus rooli uusille käyttäjille"
555
 
556
+ #: ../includes/ure-role-edit.php:362
557
  msgid "Change"
558
  msgstr "Muuta"
559
 
560
+ #: ../includes/ure-role-edit.php:362
561
  msgid "Set as Default User Role"
562
  msgstr "Muuta oletus rooliksi"
563
 
564
+ #: ../includes/ure-role-edit.php:372
565
  msgid "Delete"
566
  msgstr "Poista"
567
 
568
+ #: ../includes/ure-role-edit.php:372
569
  msgid "Delete User Role"
570
  msgstr "Poista käyttäjän rooli"
571
 
572
+ #: ../includes/ure-role-edit.php:377
573
+ #: ../includes/ure-role-edit.php:382
574
  msgid "Add New Capability"
575
  msgstr "Lisää uusi oikeus"
576
 
577
+ #: ../includes/ure-role-edit.php:387
578
  msgid "Remove Capability"
579
  msgstr "Poista oikeus"
580
 
581
+ #: ../includes/ure-role-edit.php:392
582
  msgid "Remove"
583
  msgstr "Poista"
584
 
585
+ #: ../includes/ure-role-edit.php:392
586
  msgid "Remove User Capability"
587
  msgstr "Poista käyttäjän oikeudet"
588
 
589
+ #: ../includes/ure-user-edit.php:67
590
  #, php-format
591
  msgid "User \"%s\" update: please confirm to continue"
592
  msgstr "Roolin \"%s\" päivitys: varmista jatkaaksesi"
593
 
594
+ #: ../includes/ure-user-edit.php:79
595
  msgid "Change capabilities for user"
596
  msgstr "Muuta käyttäjän oikeuksia"
597
 
598
+ #: ../includes/ure-user-edit.php:82
599
  msgid "Role:"
600
  msgstr "Rooli:"
601
 
602
+ #: ../includes/ure-user-edit.php:104
603
  msgid "Add capabilities to this user:"
604
  msgstr "Lisää oikeudet käyttäjälle:"
605
 
606
+ #: ../includes/ure-options.php:59
607
  msgid "User Roles are restored from the backup data. "
608
  msgstr ""
609
 
610
+ #: ../includes/ure-options.php:130
611
  msgid "Error: "
612
  msgstr ""
613
 
614
+ #: ../includes/ure-options.php:130
615
+ #: ../includes/ure-options.php:146
616
  msgid "Role"
617
  msgstr "Rooli"
618
 
619
+ #: ../includes/ure-options.php:130
620
  msgid "does not exist"
621
  msgstr ""
622
 
623
+ #: ../includes/ure-options.php:146
624
  msgid "is updated successfully"
625
  msgstr "on päivitetty onnistuneesti"
626
 
627
+ #: ../includes/ure-options.php:154
628
  msgid "User"
629
  msgstr "Käyttäjä"
630
 
631
+ #: ../includes/ure-options.php:154
632
  msgid "capabilities are updated successfully"
633
  msgstr "Oikeudet on päivitetty onnistuneesti"
634
 
635
+ #: ../includes/ure-options.php:232
636
  msgid "About this Plugin:"
637
  msgstr "Tietoja lisäosasta:"
638
 
639
+ #: ../includes/ure-options.php:233
640
  msgid "Author's website"
641
  msgstr "Tekijän kotisivu"
642
 
643
+ #: ../includes/ure-options.php:234
644
  msgid "Plugin webpage"
645
  msgstr "Lisäosan kotisivu"
646
 
647
+ #: ../includes/ure-options.php:236
648
  msgid "FAQ"
649
  msgstr "Usein kysytyt kysymykset"
650
 
651
+ #: ../includes/ure-options.php:237
652
  msgid "Greetings"
653
  msgstr ""
654
 
655
+ #: ../includes/ure-options.php:259
656
  msgid "Greetings:"
657
  msgstr "Tervehdys:"
658
 
659
+ #: ../includes/ure-options.php:260
660
  msgid "It's me, the author"
661
  msgstr "Se olen minä tekijä"
662
 
663
+ #: ../includes/ure-options.php:261
664
  msgid "For the help with Belorussian translation"
665
  msgstr "Apua Valkovenäjän kieliseen käännökseen"
666
 
667
+ #: ../includes/ure-options.php:262
668
  msgid "For the help with Brasilian translation"
669
  msgstr "Apua Brasilian kieliseen käännökseen"
670
 
671
+ #: ../includes/ure-options.php:263
672
+ #, fuzzy
673
+ msgid "For the help with Brasilian Portuguese translation"
674
+ msgstr "Apua Brasilian kieliseen käännökseen"
675
+
676
+ #: ../includes/ure-options.php:264
677
  msgid "For the help with Chinese translation"
678
  msgstr "Apua Kiinan kieliseen käännökseen"
679
 
680
+ #: ../includes/ure-options.php:265
681
  msgid "For the help with Dutch translation"
682
  msgstr "Apua Hollannin kieliseen käännökseen"
683
 
684
+ #: ../includes/ure-options.php:266
685
  msgid "For the help with Finnish translation"
686
  msgstr "Apua suomen kieliseen käännökseen"
687
 
688
+ #: ../includes/ure-options.php:267
689
+ #: ../includes/ure-options.php:268
690
  msgid "For the help with French translation"
691
  msgstr "Apua Ranskan kieliseen käännökseen"
692
 
693
+ #: ../includes/ure-options.php:269
694
  msgid "For the help with German translation"
695
  msgstr "Apua Saksan kieliseen käännökseen"
696
 
697
+ #: ../includes/ure-options.php:270
698
+ #: ../includes/ure-options.php:271
699
  msgid "For the help with Hebrew translation"
700
  msgstr ""
701
 
702
+ #: ../includes/ure-options.php:272
703
  msgid "For the help with Hindi translation"
704
  msgstr ""
705
 
706
+ #: ../includes/ure-options.php:273
707
  msgid "For the help with Hungarian translation"
708
  msgstr "Apua Unkarin kieliseen käännökseen"
709
 
710
+ #: ../includes/ure-options.php:274
711
+ #: ../includes/ure-options.php:275
712
  msgid "For the help with Italian translation"
713
  msgstr "Apua Italian kieliseen käännökseen"
714
 
715
+ #: ../includes/ure-options.php:276
716
  msgid "For the help with Japanese translation"
717
  msgstr "Apua Japanin kieliseen käännökseen"
718
 
719
+ #: ../includes/ure-options.php:277
720
  msgid "For the help with Lithuanian translation"
721
  msgstr ""
722
 
723
+ #: ../includes/ure-options.php:278
724
+ #: ../includes/ure-options.php:279
725
+ #: ../includes/ure-options.php:280
726
  msgid "For the help with Persian translation"
727
  msgstr "Apua Persialaiseen käännökseen"
728
 
729
+ #: ../includes/ure-options.php:281
730
+ #: ../includes/ure-options.php:282
731
  msgid "For the help with Polish translation"
732
  msgstr "Apua Puolalaiseen käännökseen"
733
 
734
+ #: ../includes/ure-options.php:283
735
+ #: ../includes/ure-options.php:284
736
  msgid "For the help with Spanish translation"
737
  msgstr "Apua Espanian kieliseen käännökseen"
738
 
739
+ #: ../includes/ure-options.php:285
740
  msgid "For the updated Swedish translation"
741
  msgstr ""
742
 
743
+ #: ../includes/ure-options.php:286
744
  msgid "For the help with Swedish translation"
745
  msgstr "Apua Swedish kieliseen käännökseen"
746
 
747
+ #: ../includes/ure-options.php:287
748
  msgid "For the help with Turkish translation"
749
  msgstr "Apua Turkin kieliseen käännökseen"
750
 
751
+ #: ../includes/ure-options.php:289
752
  msgid "For the code to hide administrator role"
753
  msgstr "Koodi Pääkäyttäjän roolin piilottamiseen"
754
 
755
+ #: ../includes/ure-options.php:290
756
  msgid "For the code enhancement suggestion"
757
  msgstr ""
758
 
759
+ #: ../includes/ure-options.php:292
760
  msgid "Do you wish to see your name with link to your site here? You are welcome! Your help with translation and new ideas are very appreciated."
761
  msgstr "Haluatko nähdä nimesi sekä linkin sivuillesi tässä? Olet tervetullut auttamaan käännöksen kanssa. Myös kaikista uusista ideoista ollaan kiitollisia."
762
 
lang/ure-fr_FR.mo CHANGED
Binary file
lang/ure-fr_FR.po CHANGED
@@ -2,7 +2,7 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: User Role Editor Plugin 3.5.2\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2012-06-23 23:09+0700\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Vladimir Garagulya <vladimir@shinephp.com>\n"
8
  "Language-Team: Presse et Multimedia <presseetmultimedia@gmail.com>\n"
@@ -28,715 +28,732 @@ msgstr "Veuillez mettre à jour&nbsp;!"
28
  msgid "User Role Editor requires PHP 5.0 or newer."
29
  msgstr "User Role Editor nécessite PHP 5.0 ou plus récent."
30
 
31
- #: ../user-role-editor.php:65
32
  msgid "Only"
33
  msgstr "Seulement"
34
 
35
- #: ../user-role-editor.php:65
36
  msgid "is allowed to use"
37
  msgstr "est autorisé à utiliser"
38
 
39
- #: ../user-role-editor.php:71
40
- #: ../user-role-editor.php:246
41
  msgid "User Role Editor"
42
  msgstr "Extension \"User Role Editor\""
43
 
44
- #: ../user-role-editor.php:218
45
  msgid "Settings"
46
  msgstr "Réglages"
47
 
48
- #: ../user-role-editor.php:228
49
- #: ../ure-options.php:218
50
  msgid "Changelog"
51
  msgstr "Changelog"
52
 
53
- #: ../user-role-editor.php:275
54
  msgid "Capabilities"
55
  msgstr "Capacités"
56
 
57
- #: ../ure-lib.php:45
58
  msgid "Error is occur. Please check the log file."
59
  msgstr "Une erreur s'est produite. Vérifiez le fichier journal."
60
 
61
- #: ../ure-lib.php:155
62
  msgid "Database operation error. Check log file."
63
  msgstr "Erreur d'opération de base de données. Vérifiez le fichier journal."
64
 
65
- #: ../ure-lib.php:188
66
  msgid "No backup data. It is created automatically before the first role data update."
67
  msgstr "Aucune donnée sauvegardée. La sauvegarde est automatique avant la première mise à jour des rôles."
68
 
69
- #: ../ure-lib.php:226
70
  msgid "Backup record is created for the current role capabilities"
71
  msgstr "L'enregistrement de sauvegarde a été créé pour les capacités du rôle actuel"
72
 
73
- #: ../ure-lib.php:345
74
  msgid "Error: Role name must contain latin characters and digits only!"
75
  msgstr "Erreur : le nom de rôle doit seulement contenir des caractères latins et chiffres !"
76
 
77
- #: ../ure-lib.php:352
78
  #, php-format
79
  msgid "Role %s exists already"
80
  msgstr "Rôle %s existe déjà"
81
 
82
- #: ../ure-lib.php:365
83
  msgid "Error is encountered during new role create operation"
84
  msgstr "Une erreur s'est produite lors de la création du nouveau rôle"
85
 
86
- #: ../ure-lib.php:367
87
  #, php-format
88
  msgid "Role %s is created successfully"
89
  msgstr "Rôle %s a été créé avec succès"
90
 
91
- #: ../ure-lib.php:451
92
  msgid "Error encountered during role delete operation"
93
  msgstr "Une erreur s'est produite lors de la suppression du rôle"
94
 
95
- #: ../ure-lib.php:453
96
  #, php-format
97
  msgid "Role %s is deleted successfully"
98
  msgstr "Rôle %s supprimé avec succès"
99
 
100
- #: ../ure-lib.php:471
101
  msgid "Error encountered during default role change operation"
102
  msgstr "Une erreur s'est produite pendant le changement du rôle par défaut"
103
 
104
- #: ../ure-lib.php:477
105
  #, php-format
106
  msgid "Default role for new users is set to %s successfully"
107
  msgstr "Rôle par défaut pour les nouveaux utilisateurs fixé à %s avec succès"
108
 
109
- #: ../ure-lib.php:505
110
  msgid "Editor"
111
  msgstr "Editeur"
112
 
113
- #: ../ure-lib.php:506
114
  msgid "Author"
115
  msgstr "Auteur"
116
 
117
- #: ../ure-lib.php:507
118
  msgid "Contributor"
119
  msgstr "Contributeur"
120
 
121
- #: ../ure-lib.php:508
122
  msgid "Subscriber"
123
  msgstr "Abonné"
124
 
125
- #: ../ure-lib.php:510
126
  msgid "Switch themes"
127
  msgstr "Changer de thème"
128
 
129
- #: ../ure-lib.php:511
130
  msgid "Edit themes"
131
  msgstr "Editer les thèmes"
132
 
133
- #: ../ure-lib.php:512
134
  msgid "Activate plugins"
135
  msgstr "Activer les extensions"
136
 
137
- #: ../ure-lib.php:513
138
  msgid "Edit plugins"
139
  msgstr "Editer les extensions"
140
 
141
- #: ../ure-lib.php:514
142
  msgid "Edit users"
143
  msgstr "Editer les utilisateurs"
144
 
145
- #: ../ure-lib.php:515
146
  msgid "Edit files"
147
  msgstr "Editer les fichiers"
148
 
149
- #: ../ure-lib.php:516
150
  msgid "Manage options"
151
  msgstr "Gérer les options"
152
 
153
- #: ../ure-lib.php:517
154
  msgid "Moderate comments"
155
  msgstr "Modérer les commentaires"
156
 
157
- #: ../ure-lib.php:518
158
  msgid "Manage categories"
159
  msgstr "Gérer les catégories"
160
 
161
- #: ../ure-lib.php:519
162
  msgid "Manage links"
163
  msgstr "Gérer les liens"
164
 
165
- #: ../ure-lib.php:520
166
  msgid "Upload files"
167
  msgstr "Transmettre des fichiers"
168
 
169
- #: ../ure-lib.php:521
170
  msgid "Import"
171
  msgstr "Importer"
172
 
173
- #: ../ure-lib.php:522
174
  msgid "Unfiltered html"
175
  msgstr "HTML non filtré"
176
 
177
- #: ../ure-lib.php:523
178
  msgid "Edit posts"
179
  msgstr "Editer les articles"
180
 
181
- #: ../ure-lib.php:524
182
  msgid "Edit others posts"
183
  msgstr "Editer les articles des autres"
184
 
185
- #: ../ure-lib.php:525
186
  msgid "Edit published posts"
187
  msgstr "Editer les articles publiés"
188
 
189
- #: ../ure-lib.php:526
190
  msgid "Publish posts"
191
  msgstr "Editer les articles"
192
 
193
- #: ../ure-lib.php:527
194
  msgid "Edit pages"
195
  msgstr "Editer les pages"
196
 
197
- #: ../ure-lib.php:528
198
  msgid "Read"
199
  msgstr "Lire"
200
 
201
- #: ../ure-lib.php:529
202
  msgid "Level 10"
203
  msgstr "Niveau 10"
204
 
205
- #: ../ure-lib.php:530
206
  msgid "Level 9"
207
  msgstr "Niveau 9"
208
 
209
- #: ../ure-lib.php:531
210
  msgid "Level 8"
211
  msgstr "Niveau 8"
212
 
213
- #: ../ure-lib.php:532
214
  msgid "Level 7"
215
  msgstr "Niveau 7"
216
 
217
- #: ../ure-lib.php:533
218
  msgid "Level 6"
219
  msgstr "Niveau 6"
220
 
221
- #: ../ure-lib.php:534
222
  msgid "Level 5"
223
  msgstr "Niveau 5"
224
 
225
- #: ../ure-lib.php:535
226
  msgid "Level 4"
227
  msgstr "Niveau 4"
228
 
229
- #: ../ure-lib.php:536
230
  msgid "Level 3"
231
  msgstr "Niveau 3"
232
 
233
- #: ../ure-lib.php:537
234
  msgid "Level 2"
235
  msgstr "Niveau 2"
236
 
237
- #: ../ure-lib.php:538
238
  msgid "Level 1"
239
  msgstr "Niveau 1"
240
 
241
- #: ../ure-lib.php:539
242
  msgid "Level 0"
243
  msgstr "Niveau 0"
244
 
245
- #: ../ure-lib.php:540
246
  msgid "Edit others pages"
247
  msgstr "Editer les pages des autres"
248
 
249
- #: ../ure-lib.php:541
250
  msgid "Edit published pages"
251
  msgstr "Editer les pages publiées"
252
 
253
- #: ../ure-lib.php:542
254
  msgid "Publish pages"
255
  msgstr "Publier des pages"
256
 
257
- #: ../ure-lib.php:543
258
  msgid "Delete pages"
259
  msgstr "Supprimer des pages"
260
 
261
- #: ../ure-lib.php:544
262
  msgid "Delete others pages"
263
  msgstr "Supprimer des pages des autres"
264
 
265
- #: ../ure-lib.php:545
266
  msgid "Delete published pages"
267
  msgstr "Supprimer des pages publiées"
268
 
269
- #: ../ure-lib.php:546
270
  msgid "Delete posts"
271
  msgstr "Supprimer des articles"
272
 
273
- #: ../ure-lib.php:547
274
  msgid "Delete others posts"
275
  msgstr "Supprimer des articles des autres"
276
 
277
- #: ../ure-lib.php:548
278
  msgid "Delete published posts"
279
  msgstr "Supprimer des articles publiés"
280
 
281
- #: ../ure-lib.php:549
282
  msgid "Delete private posts"
283
  msgstr "Supprimer des articles privés"
284
 
285
- #: ../ure-lib.php:550
286
  msgid "Edit private posts"
287
  msgstr "Editer des articles privés"
288
 
289
- #: ../ure-lib.php:551
290
  msgid "Read private posts"
291
  msgstr "Lire des articles privés"
292
 
293
- #: ../ure-lib.php:552
294
  msgid "Delete private pages"
295
  msgstr "Supprimer des pages privées"
296
 
297
- #: ../ure-lib.php:553
298
  msgid "Edit private pages"
299
  msgstr "Editer des pages privées"
300
 
301
- #: ../ure-lib.php:554
302
  msgid "Read private pages"
303
  msgstr "Lire des pages privées"
304
 
305
- #: ../ure-lib.php:555
306
  msgid "Delete users"
307
  msgstr "Supprimer des utilisateurs"
308
 
309
- #: ../ure-lib.php:556
310
  msgid "Create users"
311
  msgstr "Créer des utilisateurs"
312
 
313
- #: ../ure-lib.php:557
314
  msgid "Unfiltered upload"
315
  msgstr "Transmissions non filtrées"
316
 
317
- #: ../ure-lib.php:558
318
  msgid "Edit dashboard"
319
  msgstr "Editer le tableau de bord"
320
 
321
- #: ../ure-lib.php:559
322
  msgid "Update plugins"
323
  msgstr "Mettre à jour les extensions"
324
 
325
- #: ../ure-lib.php:560
326
  msgid "Delete plugins"
327
  msgstr "Supprimer des extensions"
328
 
329
- #: ../ure-lib.php:561
330
  msgid "Install plugins"
331
  msgstr "Installer des extensions"
332
 
333
- #: ../ure-lib.php:562
334
  msgid "Update themes"
335
  msgstr "Mettre à jour les thèmes"
336
 
337
- #: ../ure-lib.php:563
338
  msgid "Install themes"
339
  msgstr "Installer des thèmes"
340
 
341
- #: ../ure-lib.php:564
342
  msgid "Update core"
343
  msgstr "Mettre à jour le noyau"
344
 
345
- #: ../ure-lib.php:565
346
  msgid "List users"
347
  msgstr "Lister les utilisateurs"
348
 
349
- #: ../ure-lib.php:566
350
  msgid "Remove users"
351
  msgstr "Supprimer des utilisateurs"
352
 
353
- #: ../ure-lib.php:567
354
  msgid "Add users"
355
  msgstr "Ajouter des utilisateurs"
356
 
357
- #: ../ure-lib.php:568
358
  msgid "Promote users"
359
  msgstr "Promouvoir des utilisateurs"
360
 
361
- #: ../ure-lib.php:569
362
  msgid "Edit theme options"
363
  msgstr "Editer les options du thème"
364
 
365
- #: ../ure-lib.php:570
366
  msgid "Delete themes"
367
  msgstr "Supprimer des thèmes"
368
 
369
- #: ../ure-lib.php:571
370
  msgid "Export"
371
  msgstr "Exporter"
372
 
373
- #: ../ure-lib.php:655
374
  msgid "Error: Capability name must contain latin characters and digits only!"
375
  msgstr "Erreur&nbsp;: le nom de la capacité doit seulement contenir des caractères latins et chiffres&nbsp;!"
376
 
377
- #: ../ure-lib.php:667
378
  #, php-format
379
  msgid "Capability %s is added successfully"
380
  msgstr "Capacité %s a été ajoutée avec succès"
381
 
382
- #: ../ure-lib.php:669
383
  #, php-format
384
  msgid "Capability %s exists already"
385
  msgstr "La capacité %s existe déjà"
386
 
387
- #: ../ure-lib.php:818
388
  #, php-format
389
  msgid "Error! You do not have permission to delete this capability: %s!"
390
  msgstr "Erreur&nbsp;! Vous n'avez pas la permission de supprimer cette capacité&nbsp;: %s&nbsp;!"
391
 
392
- #: ../ure-lib.php:840
393
  #, php-format
394
  msgid "Capability %s is removed successfully"
395
  msgstr "Capacité %s a été supprimée avec succès"
396
 
397
- #: ../ure-lib.php:902
398
  msgid "Help"
399
  msgstr "Aide"
400
 
401
- #: ../ure-role-edit.php:29
402
  msgid "None"
403
  msgstr "Aucun"
404
 
405
- #: ../ure-role-edit.php:93
406
  msgid " Name can not be empty!"
407
  msgstr "Le nom ne peut pas être vide&nbsp;!"
408
 
409
- #: ../ure-role-edit.php:97
410
  msgid " Name must contain latin characters and digits only!"
411
  msgstr "Le nom doit uniquement contenir que des caractères latins et des chiffres&nbsp;!"
412
 
413
- #: ../ure-role-edit.php:102
414
- #: ../ure-role-edit.php:293
415
  msgid "Delete Role"
416
  msgstr "Supprimer le rôle"
417
 
418
- #: ../ure-role-edit.php:104
419
  msgid "Change Default Role"
420
  msgstr "Changer le rôle par défaut"
421
 
422
- #: ../ure-role-edit.php:106
423
  msgid "Restore Roles from backup copy. Be careful, backup was created when you started URE 1st time. All changes you made after that will be lost"
424
  msgstr "Restaurer les rôles depuis une sauvegarde. Attention, cette sauvegarde a été créée quand vous avez lancé URE pour le 1re fois. Toutes les modifications que vous avez effectuées depuis seront perdues"
425
 
426
- #: ../ure-role-edit.php:108
427
  msgid "Warning! Be careful - removing critical capability could crash some plugin or other custom code"
428
  msgstr "Attention ! Soyez prudent - supprimer une capacité critique peut crasher des extensions ou du code personnalisé"
429
 
430
- #: ../ure-role-edit.php:110
431
  msgid "Please confirm to continue"
432
  msgstr "Confirmez pour continuer"
433
 
434
- #: ../ure-role-edit.php:147
435
  #, php-format
436
  msgid "Role \"%s\" update: please confirm to continue"
437
  msgstr "Mise à jour du Rôle \"%s\" : Veuillez confirmer pour continuer"
438
 
439
- #: ../ure-role-edit.php:155
440
  msgid "Select Role and change its capabilities list"
441
  msgstr "Sélectionnez un Rôle et changez sa liste de capacités"
442
 
443
- #: ../ure-role-edit.php:157
444
  msgid "Select Role:"
445
  msgstr "Sélectionnez un rôle&nbsp;:"
446
 
447
- #: ../ure-role-edit.php:167
448
- #: ../ure-user-edit.php:91
449
  msgid "Show capabilities in human readable form"
450
  msgstr "Afficher les capacités en langage humain"
451
 
452
- #: ../ure-role-edit.php:176
453
- #: ../ure-user-edit.php:100
454
  msgid "Show deprecated capabilities"
455
  msgstr "Montrer les capacités obsolètes"
456
 
457
- #: ../ure-role-edit.php:180
458
  msgid "If checked, then apply action to ALL sites of this Network"
459
  msgstr "Si coché, alors l'action affecte TOUS les sites de ce réseau"
460
 
461
- #: ../ure-role-edit.php:190
462
  msgid "Apply to All Sites"
463
  msgstr "Appliquer à tous les sites"
464
 
465
- #: ../ure-role-edit.php:251
466
- #: ../ure-user-edit.php:163
 
 
 
 
 
 
 
 
 
 
 
 
467
  msgid "Update"
468
  msgstr "Mettre à jour"
469
 
470
- #: ../ure-role-edit.php:251
471
- #: ../ure-user-edit.php:163
472
  msgid "Save Changes"
473
  msgstr "Enregistrer les modifications"
474
 
475
- #: ../ure-role-edit.php:252
476
- #: ../ure-user-edit.php:164
477
  msgid "Cancel"
478
  msgstr "Annuler"
479
 
480
- #: ../ure-role-edit.php:252
481
- #: ../ure-user-edit.php:164
482
  msgid "Cancel not saved changes"
483
  msgstr "Annuler les changements"
484
 
485
- #: ../ure-role-edit.php:255
486
  msgid "Select All"
487
  msgstr ""
488
 
489
- #: ../ure-role-edit.php:255
490
  msgid "Select All Capabilities"
491
  msgstr ""
492
 
493
- #: ../ure-role-edit.php:256
494
  msgid "Unselect All"
495
  msgstr ""
496
 
497
- #: ../ure-role-edit.php:256
498
  msgid "Unselect All Capabilities"
499
  msgstr ""
500
 
501
- #: ../ure-role-edit.php:257
502
  msgid "Reverse"
503
  msgstr ""
504
 
505
- #: ../ure-role-edit.php:257
506
  msgid "Turn checked capabilities off and vise versa"
507
  msgstr ""
508
 
509
- #: ../ure-role-edit.php:260
510
  msgid "Reset"
511
  msgstr "Réinitialiser"
512
 
513
- #: ../ure-role-edit.php:260
514
  msgid "Restore Roles from backup copy"
515
  msgstr "Restaurer les Rôles à partir de la copie de sauvegarde"
516
 
517
- #: ../ure-role-edit.php:270
518
  msgid "Add New Role"
519
  msgstr "Ajouter un nouveau rôle"
520
 
521
- #: ../ure-role-edit.php:272
522
  msgid "Name: "
523
  msgstr "Nom :"
524
 
525
- #: ../ure-role-edit.php:276
526
  msgid "Make copy of: "
527
  msgstr "Faire une copie de :"
528
 
529
- #: ../ure-role-edit.php:279
530
- #: ../ure-role-edit.php:308
531
  msgid "Add"
532
  msgstr "Ajouter"
533
 
534
- #: ../ure-role-edit.php:279
535
  msgid "Add New User Role"
536
  msgstr "Ajouter un nouveau rôle utilisateur"
537
 
538
- #: ../ure-role-edit.php:283
539
  msgid "Default Role for New User"
540
  msgstr "Rôle par défaut pour les nouveaux utilisateurs"
541
 
542
- #: ../ure-role-edit.php:288
543
  msgid "Change"
544
  msgstr "Modifier"
545
 
546
- #: ../ure-role-edit.php:288
547
  msgid "Set as Default User Role"
548
  msgstr "Définir comme rôle d'utilisateur par défaut"
549
 
550
- #: ../ure-role-edit.php:298
551
  msgid "Delete"
552
  msgstr "Effacer"
553
 
554
- #: ../ure-role-edit.php:298
555
  msgid "Delete User Role"
556
  msgstr "Supprimer un rôle utilisateur"
557
 
558
- #: ../ure-role-edit.php:303
559
- #: ../ure-role-edit.php:308
560
  msgid "Add New Capability"
561
  msgstr "Ajouter une nouvelle capacité"
562
 
563
- #: ../ure-role-edit.php:313
564
  msgid "Remove Capability"
565
  msgstr "Supprimer Capacité"
566
 
567
- #: ../ure-role-edit.php:318
568
  msgid "Remove"
569
  msgstr "Supprimer"
570
 
571
- #: ../ure-role-edit.php:318
572
  msgid "Remove User Capability"
573
  msgstr "Supprimer Capacité de l'Utilisateur"
574
 
575
- #: ../ure-user-edit.php:67
576
  #, php-format
577
  msgid "User \"%s\" update: please confirm to continue"
578
  msgstr "Mise à jour de l'utilisateur \"%s\" : Veuillez confirmer pour continuer"
579
 
580
- #: ../ure-user-edit.php:79
581
  msgid "Change capabilities for user"
582
  msgstr "Modifier les capacités de l'utilisateur"
583
 
584
- #: ../ure-user-edit.php:82
585
  msgid "Role:"
586
  msgstr "Rôle&nbsp;:"
587
 
588
- #: ../ure-user-edit.php:104
589
  msgid "Add capabilities to this user:"
590
  msgstr "Ajouter des capacités à cet utilisateur&nbsp;:"
591
 
592
- #: ../ure-options.php:59
593
  msgid "User Roles are restored from the backup data. "
594
  msgstr "Les rôles des utilisateurs sont restaurés depuis les données de sauvegarde."
595
 
596
- #: ../ure-options.php:125
597
  msgid "Error: "
598
  msgstr "Erreur :"
599
 
600
- #: ../ure-options.php:125
601
- #: ../ure-options.php:143
602
  msgid "Role"
603
  msgstr "Rôle "
604
 
605
- #: ../ure-options.php:125
606
  msgid "does not exist"
607
  msgstr "n'existe pas"
608
 
609
- #: ../ure-options.php:143
610
  msgid "is updated successfully"
611
  msgstr "a été correctement mis à jour"
612
 
613
- #: ../ure-options.php:152
614
  msgid "User"
615
  msgstr "Utilisateur"
616
 
617
- #: ../ure-options.php:152
618
  msgid "capabilities are updated successfully"
619
  msgstr "capacités ont été correctement mises à jour"
620
 
621
- #: ../ure-options.php:215
622
  msgid "About this Plugin:"
623
  msgstr "A propos de cette extension&nbsp;:"
624
 
625
- #: ../ure-options.php:216
626
  msgid "Author's website"
627
  msgstr "Site Web de l'auteur"
628
 
629
- #: ../ure-options.php:217
630
  msgid "Plugin webpage"
631
  msgstr "Page Web de l'extension"
632
 
633
- #: ../ure-options.php:219
634
  msgid "FAQ"
635
  msgstr "FAQ"
636
 
637
- #: ../ure-options.php:220
638
  msgid "Greetings"
639
  msgstr ""
640
 
641
- #: ../ure-options.php:242
642
  msgid "Greetings:"
643
  msgstr "Remerciements&nbsp;:"
644
 
645
- #: ../ure-options.php:243
646
  msgid "It's me, the author"
647
  msgstr "C'est moi, l'auteur"
648
 
649
- #: ../ure-options.php:244
650
  msgid "For the help with Belorussian translation"
651
  msgstr "Pour l'aide avec la traduction biélorusse"
652
 
653
- #: ../ure-options.php:245
654
  msgid "For the help with Brasilian translation"
655
  msgstr "Pour l'aide avec la traduction brésilenne"
656
 
657
- #: ../ure-options.php:246
 
 
 
 
658
  msgid "For the help with Chinese translation"
659
  msgstr "Pour l'aide avec la traduction chinese"
660
 
661
- #: ../ure-options.php:247
662
  msgid "For the help with Dutch translation"
663
  msgstr "Pour l'aide avec la traduction Dutch"
664
 
665
- #: ../ure-options.php:248
666
  msgid "For the help with Finnish translation"
667
  msgstr "Pour l'aide avec la traduction finlandaise"
668
 
669
- #: ../ure-options.php:249
670
- #: ../ure-options.php:250
671
  msgid "For the help with French translation"
672
  msgstr "Pour l'aide avec la traduction française"
673
 
674
- #: ../ure-options.php:251
675
  msgid "For the help with German translation"
676
  msgstr "Pour l'aide avec la traduction allemande"
677
 
678
- #: ../ure-options.php:252
679
- #: ../ure-options.php:253
680
  msgid "For the help with Hebrew translation"
681
  msgstr "Pour l'aide avec la traduction"
682
 
683
- #: ../ure-options.php:254
684
  msgid "For the help with Hindi translation"
685
  msgstr ""
686
 
687
- #: ../ure-options.php:255
688
  msgid "For the help with Hungarian translation"
689
  msgstr "Pour l'aide avec la traduction Hungarian"
690
 
691
- #: ../ure-options.php:256
692
- #: ../ure-options.php:257
693
  msgid "For the help with Italian translation"
694
  msgstr "Pour l'aide avec la traduction italien"
695
 
696
- #: ../ure-options.php:258
697
  msgid "For the help with Japanese translation"
698
  msgstr "Pour l'aide avec la traduction italien"
699
 
700
- #: ../ure-options.php:259
701
  msgid "For the help with Lithuanian translation"
702
  msgstr ""
703
 
704
- #: ../ure-options.php:260
705
- #: ../ure-options.php:261
 
706
  msgid "For the help with Persian translation"
707
  msgstr "Pour l'aide avec la traduction perse"
708
 
709
- #: ../ure-options.php:262
 
710
  msgid "For the help with Polish translation"
711
  msgstr "Pour l'aide avec la traduction polonais"
712
 
713
- #: ../ure-options.php:263
714
- #: ../ure-options.php:264
715
  msgid "For the help with Spanish translation"
716
  msgstr "Pour l'aide avec la traduction polonais"
717
 
718
- #: ../ure-options.php:265
719
- #, fuzzy
720
  msgid "For the updated Swedish translation"
721
  msgstr "Pour l'aide avec la traduction suédoise"
722
 
723
- #: ../ure-options.php:266
724
  msgid "For the help with Swedish translation"
725
  msgstr "Pour l'aide avec la traduction suédoise"
726
 
727
- #: ../ure-options.php:267
728
  msgid "For the help with Turkish translation"
729
  msgstr "Pour l'aide avec la traduction turque"
730
 
731
- #: ../ure-options.php:269
732
  msgid "For the code to hide administrator role"
733
  msgstr "Pour le code qui cache le rôle d'administrateur"
734
 
735
- #: ../ure-options.php:270
736
  msgid "For the code enhancement suggestion"
737
  msgstr "Pour les suggestions d'évolution du code"
738
 
739
- #: ../ure-options.php:272
740
  msgid "Do you wish to see your name with link to your site here? You are welcome! Your help with translation and new ideas are very appreciated."
741
  msgstr "Vous souhaitez voir votre nom avec votre lien vers votre site Web ici ? Avec plaisir ! Votre aide avec la traduction ou de nouvelles idées seront très appréciées."
742
 
2
  msgstr ""
3
  "Project-Id-Version: User Role Editor Plugin 3.5.2\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-09-01 08:44+0700\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Vladimir Garagulya <vladimir@shinephp.com>\n"
8
  "Language-Team: Presse et Multimedia <presseetmultimedia@gmail.com>\n"
28
  msgid "User Role Editor requires PHP 5.0 or newer."
29
  msgstr "User Role Editor nécessite PHP 5.0 ou plus récent."
30
 
31
+ #: ../user-role-editor.php:76
32
  msgid "Only"
33
  msgstr "Seulement"
34
 
35
+ #: ../user-role-editor.php:76
36
  msgid "is allowed to use"
37
  msgstr "est autorisé à utiliser"
38
 
39
+ #: ../user-role-editor.php:82
40
+ #: ../user-role-editor.php:251
41
  msgid "User Role Editor"
42
  msgstr "Extension \"User Role Editor\""
43
 
44
+ #: ../user-role-editor.php:223
45
  msgid "Settings"
46
  msgstr "Réglages"
47
 
48
+ #: ../user-role-editor.php:233
49
+ #: ../includes/ure-options.php:235
50
  msgid "Changelog"
51
  msgstr "Changelog"
52
 
53
+ #: ../user-role-editor.php:280
54
  msgid "Capabilities"
55
  msgstr "Capacités"
56
 
57
+ #: ../includes/ure-lib.php:34
58
  msgid "Error is occur. Please check the log file."
59
  msgstr "Une erreur s'est produite. Vérifiez le fichier journal."
60
 
61
+ #: ../includes/ure-lib.php:144
62
  msgid "Database operation error. Check log file."
63
  msgstr "Erreur d'opération de base de données. Vérifiez le fichier journal."
64
 
65
+ #: ../includes/ure-lib.php:177
66
  msgid "No backup data. It is created automatically before the first role data update."
67
  msgstr "Aucune donnée sauvegardée. La sauvegarde est automatique avant la première mise à jour des rôles."
68
 
69
+ #: ../includes/ure-lib.php:215
70
  msgid "Backup record is created for the current role capabilities"
71
  msgstr "L'enregistrement de sauvegarde a été créé pour les capacités du rôle actuel"
72
 
73
+ #: ../includes/ure-lib.php:329
74
  msgid "Error: Role name must contain latin characters and digits only!"
75
  msgstr "Erreur : le nom de rôle doit seulement contenir des caractères latins et chiffres !"
76
 
77
+ #: ../includes/ure-lib.php:336
78
  #, php-format
79
  msgid "Role %s exists already"
80
  msgstr "Rôle %s existe déjà"
81
 
82
+ #: ../includes/ure-lib.php:349
83
  msgid "Error is encountered during new role create operation"
84
  msgstr "Une erreur s'est produite lors de la création du nouveau rôle"
85
 
86
+ #: ../includes/ure-lib.php:351
87
  #, php-format
88
  msgid "Role %s is created successfully"
89
  msgstr "Rôle %s a été créé avec succès"
90
 
91
+ #: ../includes/ure-lib.php:435
92
  msgid "Error encountered during role delete operation"
93
  msgstr "Une erreur s'est produite lors de la suppression du rôle"
94
 
95
+ #: ../includes/ure-lib.php:437
96
  #, php-format
97
  msgid "Role %s is deleted successfully"
98
  msgstr "Rôle %s supprimé avec succès"
99
 
100
+ #: ../includes/ure-lib.php:455
101
  msgid "Error encountered during default role change operation"
102
  msgstr "Une erreur s'est produite pendant le changement du rôle par défaut"
103
 
104
+ #: ../includes/ure-lib.php:461
105
  #, php-format
106
  msgid "Default role for new users is set to %s successfully"
107
  msgstr "Rôle par défaut pour les nouveaux utilisateurs fixé à %s avec succès"
108
 
109
+ #: ../includes/ure-lib.php:489
110
  msgid "Editor"
111
  msgstr "Editeur"
112
 
113
+ #: ../includes/ure-lib.php:490
114
  msgid "Author"
115
  msgstr "Auteur"
116
 
117
+ #: ../includes/ure-lib.php:491
118
  msgid "Contributor"
119
  msgstr "Contributeur"
120
 
121
+ #: ../includes/ure-lib.php:492
122
  msgid "Subscriber"
123
  msgstr "Abonné"
124
 
125
+ #: ../includes/ure-lib.php:494
126
  msgid "Switch themes"
127
  msgstr "Changer de thème"
128
 
129
+ #: ../includes/ure-lib.php:495
130
  msgid "Edit themes"
131
  msgstr "Editer les thèmes"
132
 
133
+ #: ../includes/ure-lib.php:496
134
  msgid "Activate plugins"
135
  msgstr "Activer les extensions"
136
 
137
+ #: ../includes/ure-lib.php:497
138
  msgid "Edit plugins"
139
  msgstr "Editer les extensions"
140
 
141
+ #: ../includes/ure-lib.php:498
142
  msgid "Edit users"
143
  msgstr "Editer les utilisateurs"
144
 
145
+ #: ../includes/ure-lib.php:499
146
  msgid "Edit files"
147
  msgstr "Editer les fichiers"
148
 
149
+ #: ../includes/ure-lib.php:500
150
  msgid "Manage options"
151
  msgstr "Gérer les options"
152
 
153
+ #: ../includes/ure-lib.php:501
154
  msgid "Moderate comments"
155
  msgstr "Modérer les commentaires"
156
 
157
+ #: ../includes/ure-lib.php:502
158
  msgid "Manage categories"
159
  msgstr "Gérer les catégories"
160
 
161
+ #: ../includes/ure-lib.php:503
162
  msgid "Manage links"
163
  msgstr "Gérer les liens"
164
 
165
+ #: ../includes/ure-lib.php:504
166
  msgid "Upload files"
167
  msgstr "Transmettre des fichiers"
168
 
169
+ #: ../includes/ure-lib.php:505
170
  msgid "Import"
171
  msgstr "Importer"
172
 
173
+ #: ../includes/ure-lib.php:506
174
  msgid "Unfiltered html"
175
  msgstr "HTML non filtré"
176
 
177
+ #: ../includes/ure-lib.php:507
178
  msgid "Edit posts"
179
  msgstr "Editer les articles"
180
 
181
+ #: ../includes/ure-lib.php:508
182
  msgid "Edit others posts"
183
  msgstr "Editer les articles des autres"
184
 
185
+ #: ../includes/ure-lib.php:509
186
  msgid "Edit published posts"
187
  msgstr "Editer les articles publiés"
188
 
189
+ #: ../includes/ure-lib.php:510
190
  msgid "Publish posts"
191
  msgstr "Editer les articles"
192
 
193
+ #: ../includes/ure-lib.php:511
194
  msgid "Edit pages"
195
  msgstr "Editer les pages"
196
 
197
+ #: ../includes/ure-lib.php:512
198
  msgid "Read"
199
  msgstr "Lire"
200
 
201
+ #: ../includes/ure-lib.php:513
202
  msgid "Level 10"
203
  msgstr "Niveau 10"
204
 
205
+ #: ../includes/ure-lib.php:514
206
  msgid "Level 9"
207
  msgstr "Niveau 9"
208
 
209
+ #: ../includes/ure-lib.php:515
210
  msgid "Level 8"
211
  msgstr "Niveau 8"
212
 
213
+ #: ../includes/ure-lib.php:516
214
  msgid "Level 7"
215
  msgstr "Niveau 7"
216
 
217
+ #: ../includes/ure-lib.php:517
218
  msgid "Level 6"
219
  msgstr "Niveau 6"
220
 
221
+ #: ../includes/ure-lib.php:518
222
  msgid "Level 5"
223
  msgstr "Niveau 5"
224
 
225
+ #: ../includes/ure-lib.php:519
226
  msgid "Level 4"
227
  msgstr "Niveau 4"
228
 
229
+ #: ../includes/ure-lib.php:520
230
  msgid "Level 3"
231
  msgstr "Niveau 3"
232
 
233
+ #: ../includes/ure-lib.php:521
234
  msgid "Level 2"
235
  msgstr "Niveau 2"
236
 
237
+ #: ../includes/ure-lib.php:522
238
  msgid "Level 1"
239
  msgstr "Niveau 1"
240
 
241
+ #: ../includes/ure-lib.php:523
242
  msgid "Level 0"
243
  msgstr "Niveau 0"
244
 
245
+ #: ../includes/ure-lib.php:524
246
  msgid "Edit others pages"
247
  msgstr "Editer les pages des autres"
248
 
249
+ #: ../includes/ure-lib.php:525
250
  msgid "Edit published pages"
251
  msgstr "Editer les pages publiées"
252
 
253
+ #: ../includes/ure-lib.php:526
254
  msgid "Publish pages"
255
  msgstr "Publier des pages"
256
 
257
+ #: ../includes/ure-lib.php:527
258
  msgid "Delete pages"
259
  msgstr "Supprimer des pages"
260
 
261
+ #: ../includes/ure-lib.php:528
262
  msgid "Delete others pages"
263
  msgstr "Supprimer des pages des autres"
264
 
265
+ #: ../includes/ure-lib.php:529
266
  msgid "Delete published pages"
267
  msgstr "Supprimer des pages publiées"
268
 
269
+ #: ../includes/ure-lib.php:530
270
  msgid "Delete posts"
271
  msgstr "Supprimer des articles"
272
 
273
+ #: ../includes/ure-lib.php:531
274
  msgid "Delete others posts"
275
  msgstr "Supprimer des articles des autres"
276
 
277
+ #: ../includes/ure-lib.php:532
278
  msgid "Delete published posts"
279
  msgstr "Supprimer des articles publiés"
280
 
281
+ #: ../includes/ure-lib.php:533
282
  msgid "Delete private posts"
283
  msgstr "Supprimer des articles privés"
284
 
285
+ #: ../includes/ure-lib.php:534
286
  msgid "Edit private posts"
287
  msgstr "Editer des articles privés"
288
 
289
+ #: ../includes/ure-lib.php:535
290
  msgid "Read private posts"
291
  msgstr "Lire des articles privés"
292
 
293
+ #: ../includes/ure-lib.php:536
294
  msgid "Delete private pages"
295
  msgstr "Supprimer des pages privées"
296
 
297
+ #: ../includes/ure-lib.php:537
298
  msgid "Edit private pages"
299
  msgstr "Editer des pages privées"
300
 
301
+ #: ../includes/ure-lib.php:538
302
  msgid "Read private pages"
303
  msgstr "Lire des pages privées"
304
 
305
+ #: ../includes/ure-lib.php:539
306
  msgid "Delete users"
307
  msgstr "Supprimer des utilisateurs"
308
 
309
+ #: ../includes/ure-lib.php:540
310
  msgid "Create users"
311
  msgstr "Créer des utilisateurs"
312
 
313
+ #: ../includes/ure-lib.php:541
314
  msgid "Unfiltered upload"
315
  msgstr "Transmissions non filtrées"
316
 
317
+ #: ../includes/ure-lib.php:542
318
  msgid "Edit dashboard"
319
  msgstr "Editer le tableau de bord"
320
 
321
+ #: ../includes/ure-lib.php:543
322
  msgid "Update plugins"
323
  msgstr "Mettre à jour les extensions"
324
 
325
+ #: ../includes/ure-lib.php:544
326
  msgid "Delete plugins"
327
  msgstr "Supprimer des extensions"
328
 
329
+ #: ../includes/ure-lib.php:545
330
  msgid "Install plugins"
331
  msgstr "Installer des extensions"
332
 
333
+ #: ../includes/ure-lib.php:546
334
  msgid "Update themes"
335
  msgstr "Mettre à jour les thèmes"
336
 
337
+ #: ../includes/ure-lib.php:547
338
  msgid "Install themes"
339
  msgstr "Installer des thèmes"
340
 
341
+ #: ../includes/ure-lib.php:548
342
  msgid "Update core"
343
  msgstr "Mettre à jour le noyau"
344
 
345
+ #: ../includes/ure-lib.php:549
346
  msgid "List users"
347
  msgstr "Lister les utilisateurs"
348
 
349
+ #: ../includes/ure-lib.php:550
350
  msgid "Remove users"
351
  msgstr "Supprimer des utilisateurs"
352
 
353
+ #: ../includes/ure-lib.php:551
354
  msgid "Add users"
355
  msgstr "Ajouter des utilisateurs"
356
 
357
+ #: ../includes/ure-lib.php:552
358
  msgid "Promote users"
359
  msgstr "Promouvoir des utilisateurs"
360
 
361
+ #: ../includes/ure-lib.php:553
362
  msgid "Edit theme options"
363
  msgstr "Editer les options du thème"
364
 
365
+ #: ../includes/ure-lib.php:554
366
  msgid "Delete themes"
367
  msgstr "Supprimer des thèmes"
368
 
369
+ #: ../includes/ure-lib.php:555
370
  msgid "Export"
371
  msgstr "Exporter"
372
 
373
+ #: ../includes/ure-lib.php:639
374
  msgid "Error: Capability name must contain latin characters and digits only!"
375
  msgstr "Erreur&nbsp;: le nom de la capacité doit seulement contenir des caractères latins et chiffres&nbsp;!"
376
 
377
+ #: ../includes/ure-lib.php:651
378
  #, php-format
379
  msgid "Capability %s is added successfully"
380
  msgstr "Capacité %s a été ajoutée avec succès"
381
 
382
+ #: ../includes/ure-lib.php:653
383
  #, php-format
384
  msgid "Capability %s exists already"
385
  msgstr "La capacité %s existe déjà"
386
 
387
+ #: ../includes/ure-lib.php:802
388
  #, php-format
389
  msgid "Error! You do not have permission to delete this capability: %s!"
390
  msgstr "Erreur&nbsp;! Vous n'avez pas la permission de supprimer cette capacité&nbsp;: %s&nbsp;!"
391
 
392
+ #: ../includes/ure-lib.php:824
393
  #, php-format
394
  msgid "Capability %s is removed successfully"
395
  msgstr "Capacité %s a été supprimée avec succès"
396
 
397
+ #: ../includes/ure-lib.php:889
398
  msgid "Help"
399
  msgstr "Aide"
400
 
401
+ #: ../includes/ure-role-edit.php:29
402
  msgid "None"
403
  msgstr "Aucun"
404
 
405
+ #: ../includes/ure-role-edit.php:101
406
  msgid " Name can not be empty!"
407
  msgstr "Le nom ne peut pas être vide&nbsp;!"
408
 
409
+ #: ../includes/ure-role-edit.php:105
410
  msgid " Name must contain latin characters and digits only!"
411
  msgstr "Le nom doit uniquement contenir que des caractères latins et des chiffres&nbsp;!"
412
 
413
+ #: ../includes/ure-role-edit.php:110
414
+ #: ../includes/ure-role-edit.php:367
415
  msgid "Delete Role"
416
  msgstr "Supprimer le rôle"
417
 
418
+ #: ../includes/ure-role-edit.php:112
419
  msgid "Change Default Role"
420
  msgstr "Changer le rôle par défaut"
421
 
422
+ #: ../includes/ure-role-edit.php:114
423
  msgid "Restore Roles from backup copy. Be careful, backup was created when you started URE 1st time. All changes you made after that will be lost"
424
  msgstr "Restaurer les rôles depuis une sauvegarde. Attention, cette sauvegarde a été créée quand vous avez lancé URE pour le 1re fois. Toutes les modifications que vous avez effectuées depuis seront perdues"
425
 
426
+ #: ../includes/ure-role-edit.php:116
427
  msgid "Warning! Be careful - removing critical capability could crash some plugin or other custom code"
428
  msgstr "Attention ! Soyez prudent - supprimer une capacité critique peut crasher des extensions ou du code personnalisé"
429
 
430
+ #: ../includes/ure-role-edit.php:118
431
  msgid "Please confirm to continue"
432
  msgstr "Confirmez pour continuer"
433
 
434
+ #: ../includes/ure-role-edit.php:155
435
  #, php-format
436
  msgid "Role \"%s\" update: please confirm to continue"
437
  msgstr "Mise à jour du Rôle \"%s\" : Veuillez confirmer pour continuer"
438
 
439
+ #: ../includes/ure-role-edit.php:163
440
  msgid "Select Role and change its capabilities list"
441
  msgstr "Sélectionnez un Rôle et changez sa liste de capacités"
442
 
443
+ #: ../includes/ure-role-edit.php:165
444
  msgid "Select Role:"
445
  msgstr "Sélectionnez un rôle&nbsp;:"
446
 
447
+ #: ../includes/ure-role-edit.php:175
448
+ #: ../includes/ure-user-edit.php:91
449
  msgid "Show capabilities in human readable form"
450
  msgstr "Afficher les capacités en langage humain"
451
 
452
+ #: ../includes/ure-role-edit.php:184
453
+ #: ../includes/ure-user-edit.php:100
454
  msgid "Show deprecated capabilities"
455
  msgstr "Montrer les capacités obsolètes"
456
 
457
+ #: ../includes/ure-role-edit.php:188
458
  msgid "If checked, then apply action to ALL sites of this Network"
459
  msgstr "Si coché, alors l'action affecte TOUS les sites de ce réseau"
460
 
461
+ #: ../includes/ure-role-edit.php:198
462
  msgid "Apply to All Sites"
463
  msgstr "Appliquer à tous les sites"
464
 
465
+ #: ../includes/ure-role-edit.php:205
466
+ #: ../includes/ure-user-edit.php:105
467
+ #, fuzzy
468
+ msgid "Core capabilities:"
469
+ msgstr "WordPress Capacités:"
470
+
471
+ #: ../includes/ure-role-edit.php:268
472
+ #: ../includes/ure-user-edit.php:167
473
+ #, fuzzy
474
+ msgid "Custom capabilities:"
475
+ msgstr "Capacités:"
476
+
477
+ #: ../includes/ure-role-edit.php:319
478
+ #: ../includes/ure-user-edit.php:222
479
  msgid "Update"
480
  msgstr "Mettre à jour"
481
 
482
+ #: ../includes/ure-role-edit.php:319
483
+ #: ../includes/ure-user-edit.php:222
484
  msgid "Save Changes"
485
  msgstr "Enregistrer les modifications"
486
 
487
+ #: ../includes/ure-role-edit.php:320
488
+ #: ../includes/ure-user-edit.php:223
489
  msgid "Cancel"
490
  msgstr "Annuler"
491
 
492
+ #: ../includes/ure-role-edit.php:320
493
+ #: ../includes/ure-user-edit.php:223
494
  msgid "Cancel not saved changes"
495
  msgstr "Annuler les changements"
496
 
497
+ #: ../includes/ure-role-edit.php:323
498
  msgid "Select All"
499
  msgstr ""
500
 
501
+ #: ../includes/ure-role-edit.php:323
502
  msgid "Select All Capabilities"
503
  msgstr ""
504
 
505
+ #: ../includes/ure-role-edit.php:327
506
  msgid "Unselect All"
507
  msgstr ""
508
 
509
+ #: ../includes/ure-role-edit.php:327
510
  msgid "Unselect All Capabilities"
511
  msgstr ""
512
 
513
+ #: ../includes/ure-role-edit.php:328
514
  msgid "Reverse"
515
  msgstr ""
516
 
517
+ #: ../includes/ure-role-edit.php:328
518
  msgid "Turn checked capabilities off and vise versa"
519
  msgstr ""
520
 
521
+ #: ../includes/ure-role-edit.php:334
522
  msgid "Reset"
523
  msgstr "Réinitialiser"
524
 
525
+ #: ../includes/ure-role-edit.php:334
526
  msgid "Restore Roles from backup copy"
527
  msgstr "Restaurer les Rôles à partir de la copie de sauvegarde"
528
 
529
+ #: ../includes/ure-role-edit.php:344
530
  msgid "Add New Role"
531
  msgstr "Ajouter un nouveau rôle"
532
 
533
+ #: ../includes/ure-role-edit.php:346
534
  msgid "Name: "
535
  msgstr "Nom :"
536
 
537
+ #: ../includes/ure-role-edit.php:350
538
  msgid "Make copy of: "
539
  msgstr "Faire une copie de :"
540
 
541
+ #: ../includes/ure-role-edit.php:353
542
+ #: ../includes/ure-role-edit.php:382
543
  msgid "Add"
544
  msgstr "Ajouter"
545
 
546
+ #: ../includes/ure-role-edit.php:353
547
  msgid "Add New User Role"
548
  msgstr "Ajouter un nouveau rôle utilisateur"
549
 
550
+ #: ../includes/ure-role-edit.php:357
551
  msgid "Default Role for New User"
552
  msgstr "Rôle par défaut pour les nouveaux utilisateurs"
553
 
554
+ #: ../includes/ure-role-edit.php:362
555
  msgid "Change"
556
  msgstr "Modifier"
557
 
558
+ #: ../includes/ure-role-edit.php:362
559
  msgid "Set as Default User Role"
560
  msgstr "Définir comme rôle d'utilisateur par défaut"
561
 
562
+ #: ../includes/ure-role-edit.php:372
563
  msgid "Delete"
564
  msgstr "Effacer"
565
 
566
+ #: ../includes/ure-role-edit.php:372
567
  msgid "Delete User Role"
568
  msgstr "Supprimer un rôle utilisateur"
569
 
570
+ #: ../includes/ure-role-edit.php:377
571
+ #: ../includes/ure-role-edit.php:382
572
  msgid "Add New Capability"
573
  msgstr "Ajouter une nouvelle capacité"
574
 
575
+ #: ../includes/ure-role-edit.php:387
576
  msgid "Remove Capability"
577
  msgstr "Supprimer Capacité"
578
 
579
+ #: ../includes/ure-role-edit.php:392
580
  msgid "Remove"
581
  msgstr "Supprimer"
582
 
583
+ #: ../includes/ure-role-edit.php:392
584
  msgid "Remove User Capability"
585
  msgstr "Supprimer Capacité de l'Utilisateur"
586
 
587
+ #: ../includes/ure-user-edit.php:67
588
  #, php-format
589
  msgid "User \"%s\" update: please confirm to continue"
590
  msgstr "Mise à jour de l'utilisateur \"%s\" : Veuillez confirmer pour continuer"
591
 
592
+ #: ../includes/ure-user-edit.php:79
593
  msgid "Change capabilities for user"
594
  msgstr "Modifier les capacités de l'utilisateur"
595
 
596
+ #: ../includes/ure-user-edit.php:82
597
  msgid "Role:"
598
  msgstr "Rôle&nbsp;:"
599
 
600
+ #: ../includes/ure-user-edit.php:104
601
  msgid "Add capabilities to this user:"
602
  msgstr "Ajouter des capacités à cet utilisateur&nbsp;:"
603
 
604
+ #: ../includes/ure-options.php:59
605
  msgid "User Roles are restored from the backup data. "
606
  msgstr "Les rôles des utilisateurs sont restaurés depuis les données de sauvegarde."
607
 
608
+ #: ../includes/ure-options.php:130
609
  msgid "Error: "
610
  msgstr "Erreur :"
611
 
612
+ #: ../includes/ure-options.php:130
613
+ #: ../includes/ure-options.php:146
614
  msgid "Role"
615
  msgstr "Rôle "
616
 
617
+ #: ../includes/ure-options.php:130
618
  msgid "does not exist"
619
  msgstr "n'existe pas"
620
 
621
+ #: ../includes/ure-options.php:146
622
  msgid "is updated successfully"
623
  msgstr "a été correctement mis à jour"
624
 
625
+ #: ../includes/ure-options.php:154
626
  msgid "User"
627
  msgstr "Utilisateur"
628
 
629
+ #: ../includes/ure-options.php:154
630
  msgid "capabilities are updated successfully"
631
  msgstr "capacités ont été correctement mises à jour"
632
 
633
+ #: ../includes/ure-options.php:232
634
  msgid "About this Plugin:"
635
  msgstr "A propos de cette extension&nbsp;:"
636
 
637
+ #: ../includes/ure-options.php:233
638
  msgid "Author's website"
639
  msgstr "Site Web de l'auteur"
640
 
641
+ #: ../includes/ure-options.php:234
642
  msgid "Plugin webpage"
643
  msgstr "Page Web de l'extension"
644
 
645
+ #: ../includes/ure-options.php:236
646
  msgid "FAQ"
647
  msgstr "FAQ"
648
 
649
+ #: ../includes/ure-options.php:237
650
  msgid "Greetings"
651
  msgstr ""
652
 
653
+ #: ../includes/ure-options.php:259
654
  msgid "Greetings:"
655
  msgstr "Remerciements&nbsp;:"
656
 
657
+ #: ../includes/ure-options.php:260
658
  msgid "It's me, the author"
659
  msgstr "C'est moi, l'auteur"
660
 
661
+ #: ../includes/ure-options.php:261
662
  msgid "For the help with Belorussian translation"
663
  msgstr "Pour l'aide avec la traduction biélorusse"
664
 
665
+ #: ../includes/ure-options.php:262
666
  msgid "For the help with Brasilian translation"
667
  msgstr "Pour l'aide avec la traduction brésilenne"
668
 
669
+ #: ../includes/ure-options.php:263
670
+ msgid "For the help with Brasilian Portuguese translation"
671
+ msgstr "Pour l'aide avec la traduction brésilenne"
672
+
673
+ #: ../includes/ure-options.php:264
674
  msgid "For the help with Chinese translation"
675
  msgstr "Pour l'aide avec la traduction chinese"
676
 
677
+ #: ../includes/ure-options.php:265
678
  msgid "For the help with Dutch translation"
679
  msgstr "Pour l'aide avec la traduction Dutch"
680
 
681
+ #: ../includes/ure-options.php:266
682
  msgid "For the help with Finnish translation"
683
  msgstr "Pour l'aide avec la traduction finlandaise"
684
 
685
+ #: ../includes/ure-options.php:267
686
+ #: ../includes/ure-options.php:268
687
  msgid "For the help with French translation"
688
  msgstr "Pour l'aide avec la traduction française"
689
 
690
+ #: ../includes/ure-options.php:269
691
  msgid "For the help with German translation"
692
  msgstr "Pour l'aide avec la traduction allemande"
693
 
694
+ #: ../includes/ure-options.php:270
695
+ #: ../includes/ure-options.php:271
696
  msgid "For the help with Hebrew translation"
697
  msgstr "Pour l'aide avec la traduction"
698
 
699
+ #: ../includes/ure-options.php:272
700
  msgid "For the help with Hindi translation"
701
  msgstr ""
702
 
703
+ #: ../includes/ure-options.php:273
704
  msgid "For the help with Hungarian translation"
705
  msgstr "Pour l'aide avec la traduction Hungarian"
706
 
707
+ #: ../includes/ure-options.php:274
708
+ #: ../includes/ure-options.php:275
709
  msgid "For the help with Italian translation"
710
  msgstr "Pour l'aide avec la traduction italien"
711
 
712
+ #: ../includes/ure-options.php:276
713
  msgid "For the help with Japanese translation"
714
  msgstr "Pour l'aide avec la traduction italien"
715
 
716
+ #: ../includes/ure-options.php:277
717
  msgid "For the help with Lithuanian translation"
718
  msgstr ""
719
 
720
+ #: ../includes/ure-options.php:278
721
+ #: ../includes/ure-options.php:279
722
+ #: ../includes/ure-options.php:280
723
  msgid "For the help with Persian translation"
724
  msgstr "Pour l'aide avec la traduction perse"
725
 
726
+ #: ../includes/ure-options.php:281
727
+ #: ../includes/ure-options.php:282
728
  msgid "For the help with Polish translation"
729
  msgstr "Pour l'aide avec la traduction polonais"
730
 
731
+ #: ../includes/ure-options.php:283
732
+ #: ../includes/ure-options.php:284
733
  msgid "For the help with Spanish translation"
734
  msgstr "Pour l'aide avec la traduction polonais"
735
 
736
+ #: ../includes/ure-options.php:285
 
737
  msgid "For the updated Swedish translation"
738
  msgstr "Pour l'aide avec la traduction suédoise"
739
 
740
+ #: ../includes/ure-options.php:286
741
  msgid "For the help with Swedish translation"
742
  msgstr "Pour l'aide avec la traduction suédoise"
743
 
744
+ #: ../includes/ure-options.php:287
745
  msgid "For the help with Turkish translation"
746
  msgstr "Pour l'aide avec la traduction turque"
747
 
748
+ #: ../includes/ure-options.php:289
749
  msgid "For the code to hide administrator role"
750
  msgstr "Pour le code qui cache le rôle d'administrateur"
751
 
752
+ #: ../includes/ure-options.php:290
753
  msgid "For the code enhancement suggestion"
754
  msgstr "Pour les suggestions d'évolution du code"
755
 
756
+ #: ../includes/ure-options.php:292
757
  msgid "Do you wish to see your name with link to your site here? You are welcome! Your help with translation and new ideas are very appreciated."
758
  msgstr "Vous souhaitez voir votre nom avec votre lien vers votre site Web ici ? Avec plaisir ! Votre aide avec la traduction ou de nouvelles idées seront très appréciées."
759
 
lang/ure-he.mo CHANGED
Binary file
lang/ure-he.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: 2012-06-23 23:16+0700\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Vladimir Garagulya <vladimir@shinephp.com>\n"
8
  "Language-Team: ShinePHP.com <vladimir@shinephp.com>\n"
@@ -30,714 +30,733 @@ msgstr "אנא עדכן!"
30
  msgid "User Role Editor requires PHP 5.0 or newer."
31
  msgstr "התוסף User Role Editor מחייב אחסון עם PHP 5.0 ומעלה"
32
 
33
- #: ../user-role-editor.php:65
34
  msgid "Only"
35
  msgstr "רק"
36
 
37
- #: ../user-role-editor.php:65
38
  msgid "is allowed to use"
39
  msgstr "מותר לשימוש"
40
 
41
- #: ../user-role-editor.php:71
42
- #: ../user-role-editor.php:246
43
  msgid "User Role Editor"
44
  msgstr "User Role Editor"
45
 
46
- #: ../user-role-editor.php:218
47
  msgid "Settings"
48
  msgstr "הגדרות"
49
 
50
- #: ../user-role-editor.php:228
51
- #: ../ure-options.php:218
52
  msgid "Changelog"
53
  msgstr "יומן שינויים"
54
 
55
- #: ../user-role-editor.php:275
56
  msgid "Capabilities"
57
  msgstr "יכולות"
58
 
59
- #: ../ure-lib.php:45
60
  msgid "Error is occur. Please check the log file."
61
  msgstr "ארעה שגיאה, אנא בדוק את קובץ היומן."
62
 
63
- #: ../ure-lib.php:155
64
  msgid "Database operation error. Check log file."
65
  msgstr "שגיאת מסד נתונים, אנא בדוק את קובץ היומן."
66
 
67
- #: ../ure-lib.php:188
68
  msgid "No backup data. It is created automatically before the first role data update."
69
  msgstr "אין קובץ גיבוי. מידע זה נוצר באופן אוטומטי לפני השינוי הראשון שאתם עושים בהגדרות סוגי המשתמשים."
70
 
71
- #: ../ure-lib.php:226
72
  msgid "Backup record is created for the current role capabilities"
73
  msgstr "גיבוי נוצר עבור יכולות סוגי המשתמשים הנוכחיים"
74
 
75
- #: ../ure-lib.php:345
76
  msgid "Error: Role name must contain latin characters and digits only!"
77
  msgstr "שגיאה! השם של סוג המשתמש חייב להיות מורכב מאותיות באנגלית וספרות בלבד"
78
 
79
- #: ../ure-lib.php:352
80
  #, php-format
81
  msgid "Role %s exists already"
82
  msgstr "סוג המשתמש %s כבר קיים"
83
 
84
- #: ../ure-lib.php:365
85
  msgid "Error is encountered during new role create operation"
86
  msgstr "ארעה שגיאה בעת יצירת סוג המשתמש החדש"
87
 
88
- #: ../ure-lib.php:367
89
  #, php-format
90
  msgid "Role %s is created successfully"
91
  msgstr "סוג המשתמש %s נוצר בהצלחה"
92
 
93
- #: ../ure-lib.php:451
94
  msgid "Error encountered during role delete operation"
95
  msgstr "ארעה שגיאה במהלך נסיון המחיקה של סוג המשתמש"
96
 
97
- #: ../ure-lib.php:453
98
  #, php-format
99
  msgid "Role %s is deleted successfully"
100
  msgstr "סוג המשתמש %s נמחק בהצלחה"
101
 
102
- #: ../ure-lib.php:471
103
  msgid "Error encountered during default role change operation"
104
  msgstr "ארעה שגיאה בעת הנסיון לשנות את סוג משתמש ברירת מחדל"
105
 
106
- #: ../ure-lib.php:477
107
  #, php-format
108
  msgid "Default role for new users is set to %s successfully"
109
  msgstr "סוג המשתמש %s נקבע כברירת מחדל"
110
 
111
- #: ../ure-lib.php:505
112
  msgid "Editor"
113
  msgstr "עורך"
114
 
115
- #: ../ure-lib.php:506
116
  msgid "Author"
117
  msgstr "כותב"
118
 
119
- #: ../ure-lib.php:507
120
  msgid "Contributor"
121
  msgstr "תורם"
122
 
123
- #: ../ure-lib.php:508
124
  msgid "Subscriber"
125
  msgstr "מנוי"
126
 
127
- #: ../ure-lib.php:510
128
  msgid "Switch themes"
129
  msgstr "החלפת תבניות"
130
 
131
- #: ../ure-lib.php:511
132
  msgid "Edit themes"
133
  msgstr "עריכת תבניות"
134
 
135
- #: ../ure-lib.php:512
136
  msgid "Activate plugins"
137
  msgstr "הפעלת תוספים"
138
 
139
- #: ../ure-lib.php:513
140
  msgid "Edit plugins"
141
  msgstr "עריכת תוספים"
142
 
143
- #: ../ure-lib.php:514
144
  msgid "Edit users"
145
  msgstr "עריכת משתמשים"
146
 
147
- #: ../ure-lib.php:515
148
  msgid "Edit files"
149
  msgstr "עריכת קבצים"
150
 
151
- #: ../ure-lib.php:516
152
  msgid "Manage options"
153
  msgstr "ניהול אפשרויות אתר"
154
 
155
- #: ../ure-lib.php:517
156
  msgid "Moderate comments"
157
  msgstr "ניהול תגובות"
158
 
159
- #: ../ure-lib.php:518
160
  msgid "Manage categories"
161
  msgstr "ניהול קטגוריות"
162
 
163
- #: ../ure-lib.php:519
164
  msgid "Manage links"
165
  msgstr "ניהול קישורים"
166
 
167
- #: ../ure-lib.php:520
168
  msgid "Upload files"
169
  msgstr "העלאת קבצים"
170
 
171
- #: ../ure-lib.php:521
172
  msgid "Import"
173
  msgstr "יבוא"
174
 
175
- #: ../ure-lib.php:522
176
  msgid "Unfiltered html"
177
  msgstr "עריכת HTML"
178
 
179
- #: ../ure-lib.php:523
180
  msgid "Edit posts"
181
  msgstr "עריכת פוסטים"
182
 
183
- #: ../ure-lib.php:524
184
  msgid "Edit others posts"
185
  msgstr "עריכת פוסטים של אחרים"
186
 
187
- #: ../ure-lib.php:525
188
  msgid "Edit published posts"
189
  msgstr "עריכת פוסטים שפורסמו"
190
 
191
- #: ../ure-lib.php:526
192
  msgid "Publish posts"
193
  msgstr "פוסטים שפורסמו"
194
 
195
- #: ../ure-lib.php:527
196
  msgid "Edit pages"
197
  msgstr "עריכת עמודים"
198
 
199
- #: ../ure-lib.php:528
200
  msgid "Read"
201
  msgstr "קורא"
202
 
203
- #: ../ure-lib.php:529
204
  msgid "Level 10"
205
  msgstr "דרגה 10"
206
 
207
- #: ../ure-lib.php:530
208
  msgid "Level 9"
209
  msgstr "דרגה 9"
210
 
211
- #: ../ure-lib.php:531
212
  msgid "Level 8"
213
  msgstr "דרגה 8"
214
 
215
- #: ../ure-lib.php:532
216
  msgid "Level 7"
217
  msgstr "דרגה 7"
218
 
219
- #: ../ure-lib.php:533
220
  msgid "Level 6"
221
  msgstr "דרגה 6"
222
 
223
- #: ../ure-lib.php:534
224
  msgid "Level 5"
225
  msgstr "דרגה 5"
226
 
227
- #: ../ure-lib.php:535
228
  msgid "Level 4"
229
  msgstr "דרגה 4"
230
 
231
- #: ../ure-lib.php:536
232
  msgid "Level 3"
233
  msgstr "דרגה 3"
234
 
235
- #: ../ure-lib.php:537
236
  msgid "Level 2"
237
  msgstr "דרגה 2"
238
 
239
- #: ../ure-lib.php:538
240
  msgid "Level 1"
241
  msgstr "דרגה 1"
242
 
243
- #: ../ure-lib.php:539
244
  msgid "Level 0"
245
  msgstr "דרגה 0"
246
 
247
- #: ../ure-lib.php:540
248
  msgid "Edit others pages"
249
  msgstr "עריכת דפים של אחרים"
250
 
251
- #: ../ure-lib.php:541
252
  msgid "Edit published pages"
253
  msgstr "עריכת דפים שפורסמו"
254
 
255
- #: ../ure-lib.php:542
256
  msgid "Publish pages"
257
  msgstr "פרסום דפים"
258
 
259
- #: ../ure-lib.php:543
260
  msgid "Delete pages"
261
  msgstr "מחיקת דפים"
262
 
263
- #: ../ure-lib.php:544
264
  msgid "Delete others pages"
265
  msgstr "מחיקת דפים של אחרים"
266
 
267
- #: ../ure-lib.php:545
268
  msgid "Delete published pages"
269
  msgstr "מחיקת דפים שפורסמו"
270
 
271
- #: ../ure-lib.php:546
272
  msgid "Delete posts"
273
  msgstr "מחיקת פוסטים"
274
 
275
- #: ../ure-lib.php:547
276
  msgid "Delete others posts"
277
  msgstr "מחיקת פוסטים של אחרים"
278
 
279
- #: ../ure-lib.php:548
280
  msgid "Delete published posts"
281
  msgstr "מחיקת פוסטים שפורסמו"
282
 
283
- #: ../ure-lib.php:549
284
  msgid "Delete private posts"
285
  msgstr "מחיקת פוסטים פרטיים"
286
 
287
- #: ../ure-lib.php:550
288
  msgid "Edit private posts"
289
  msgstr "עריכת פוסטים פרטיים"
290
 
291
- #: ../ure-lib.php:551
292
  msgid "Read private posts"
293
  msgstr "קריאת פוסטים פרטיים"
294
 
295
- #: ../ure-lib.php:552
296
  msgid "Delete private pages"
297
  msgstr "מחיקת עמודים פרטיים"
298
 
299
- #: ../ure-lib.php:553
300
  msgid "Edit private pages"
301
  msgstr "מחיקת עמודים פרטיים"
302
 
303
- #: ../ure-lib.php:554
304
  msgid "Read private pages"
305
  msgstr "קריאת עמודים פרטיים"
306
 
307
- #: ../ure-lib.php:555
308
  msgid "Delete users"
309
  msgstr "מחיקת משתמשים"
310
 
311
- #: ../ure-lib.php:556
312
  msgid "Create users"
313
  msgstr "יצירת משתמשים"
314
 
315
- #: ../ure-lib.php:557
316
  msgid "Unfiltered upload"
317
  msgstr "העלאת קבצים חופשית"
318
 
319
- #: ../ure-lib.php:558
320
  msgid "Edit dashboard"
321
  msgstr "שינוי לוח הבקרה"
322
 
323
- #: ../ure-lib.php:559
324
  msgid "Update plugins"
325
  msgstr "עדכון תוספים"
326
 
327
- #: ../ure-lib.php:560
328
  msgid "Delete plugins"
329
  msgstr "מחיקת תוספים"
330
 
331
- #: ../ure-lib.php:561
332
  msgid "Install plugins"
333
  msgstr "התקנת תוספים"
334
 
335
- #: ../ure-lib.php:562
336
  msgid "Update themes"
337
  msgstr "עדכון תבניות"
338
 
339
- #: ../ure-lib.php:563
340
  msgid "Install themes"
341
  msgstr "התקנת תבניות חדשות"
342
 
343
- #: ../ure-lib.php:564
344
  msgid "Update core"
345
  msgstr "עדכון וורדפרס"
346
 
347
- #: ../ure-lib.php:565
348
  msgid "List users"
349
  msgstr "בצפייה במשתמשים"
350
 
351
- #: ../ure-lib.php:566
352
  msgid "Remove users"
353
  msgstr "הסרת משתמשים"
354
 
355
- #: ../ure-lib.php:567
356
  msgid "Add users"
357
  msgstr "הוספת משתמשים"
358
 
359
- #: ../ure-lib.php:568
360
  msgid "Promote users"
361
  msgstr "שינוי משתמשים"
362
 
363
- #: ../ure-lib.php:569
364
  msgid "Edit theme options"
365
  msgstr "עריכת אפשרויות התבנית"
366
 
367
- #: ../ure-lib.php:570
368
  msgid "Delete themes"
369
  msgstr "מחיקת תבניות"
370
 
371
- #: ../ure-lib.php:571
372
  msgid "Export"
373
  msgstr "ייצוא תוכן"
374
 
375
- #: ../ure-lib.php:655
376
  msgid "Error: Capability name must contain latin characters and digits only!"
377
  msgstr "שגיאה! שם יכולת חייב להכיל אותיות באנגלית וספרות בלבד"
378
 
379
- #: ../ure-lib.php:667
380
  #, php-format
381
  msgid "Capability %s is added successfully"
382
  msgstr "היכולת %s נוספה בהצלחה"
383
 
384
- #: ../ure-lib.php:669
385
  #, php-format
386
  msgid "Capability %s exists already"
387
  msgstr "כבר קיימת יכולת בשם %s"
388
 
389
- #: ../ure-lib.php:818
390
  #, php-format
391
  msgid "Error! You do not have permission to delete this capability: %s!"
392
  msgstr "שגיאה! אין לך הרשאה למחוק את היכולת %s"
393
 
394
- #: ../ure-lib.php:840
395
  #, php-format
396
  msgid "Capability %s is removed successfully"
397
  msgstr "היכולת %s הוסרה בהצלחה"
398
 
399
- #: ../ure-lib.php:902
400
  msgid "Help"
401
  msgstr ""
402
 
403
- #: ../ure-role-edit.php:29
404
  msgid "None"
405
  msgstr ""
406
 
407
- #: ../ure-role-edit.php:93
408
  msgid " Name can not be empty!"
409
  msgstr "שם לא יכול להשאר ריק!"
410
 
411
- #: ../ure-role-edit.php:97
412
  msgid " Name must contain latin characters and digits only!"
413
  msgstr "שם חייב להכיל אותיות באנגלית וספרות בלבד!"
414
 
415
- #: ../ure-role-edit.php:102
416
- #: ../ure-role-edit.php:293
417
  msgid "Delete Role"
418
  msgstr "מחיקת סוג משתמש"
419
 
420
- #: ../ure-role-edit.php:104
421
  msgid "Change Default Role"
422
  msgstr "שנה את סוג משתמש המוגדר כברירת מחדל"
423
 
424
- #: ../ure-role-edit.php:106
425
  msgid "Restore Roles from backup copy. Be careful, backup was created when you started URE 1st time. All changes you made after that will be lost"
426
  msgstr ""
427
 
428
- #: ../ure-role-edit.php:108
429
  msgid "Warning! Be careful - removing critical capability could crash some plugin or other custom code"
430
  msgstr "זהירות! הסרה של אפשרויות קריטיות עשוי לגרום לתוספים מסוים או קוד נסמך שלא לעבוד כשורה"
431
 
432
- #: ../ure-role-edit.php:110
433
  msgid "Please confirm to continue"
434
  msgstr "אשר את הפעולה והמשך"
435
 
436
- #: ../ure-role-edit.php:147
437
  #, php-format
438
  msgid "Role \"%s\" update: please confirm to continue"
439
  msgstr "סוג המשתמש \"%s\" עודכן: אנא אשר והמשך"
440
 
441
- #: ../ure-role-edit.php:155
442
  msgid "Select Role and change its capabilities list"
443
  msgstr "בחר סוג משתמש ושנה את היכולות שלו"
444
 
445
- #: ../ure-role-edit.php:157
446
  msgid "Select Role:"
447
  msgstr "בחר סוג משתמש"
448
 
449
- #: ../ure-role-edit.php:167
450
- #: ../ure-user-edit.php:91
451
  msgid "Show capabilities in human readable form"
452
  msgstr "הראה יכולות משתמשים בשפה קריאה"
453
 
454
- #: ../ure-role-edit.php:176
455
- #: ../ure-user-edit.php:100
456
  msgid "Show deprecated capabilities"
457
  msgstr ""
458
 
459
- #: ../ure-role-edit.php:180
460
  msgid "If checked, then apply action to ALL sites of this Network"
461
  msgstr "אם סומן, החל פעולה על כל האתרים ברשת זאת"
462
 
463
- #: ../ure-role-edit.php:190
464
  msgid "Apply to All Sites"
465
  msgstr "החל לכל האתרים"
466
 
467
- #: ../ure-role-edit.php:251
468
- #: ../ure-user-edit.php:163
 
 
 
 
 
 
 
 
 
 
 
 
469
  msgid "Update"
470
  msgstr "עדכן"
471
 
472
- #: ../ure-role-edit.php:251
473
- #: ../ure-user-edit.php:163
474
  msgid "Save Changes"
475
  msgstr "שמור שינויים"
476
 
477
- #: ../ure-role-edit.php:252
478
- #: ../ure-user-edit.php:164
479
  msgid "Cancel"
480
  msgstr "ביטול"
481
 
482
- #: ../ure-role-edit.php:252
483
- #: ../ure-user-edit.php:164
484
  msgid "Cancel not saved changes"
485
  msgstr "בטל שינויים שלא נשמרו"
486
 
487
- #: ../ure-role-edit.php:255
488
  msgid "Select All"
489
  msgstr ""
490
 
491
- #: ../ure-role-edit.php:255
492
  msgid "Select All Capabilities"
493
  msgstr ""
494
 
495
- #: ../ure-role-edit.php:256
496
  msgid "Unselect All"
497
  msgstr ""
498
 
499
- #: ../ure-role-edit.php:256
500
  msgid "Unselect All Capabilities"
501
  msgstr ""
502
 
503
- #: ../ure-role-edit.php:257
504
  msgid "Reverse"
505
  msgstr ""
506
 
507
- #: ../ure-role-edit.php:257
508
  msgid "Turn checked capabilities off and vise versa"
509
  msgstr ""
510
 
511
- #: ../ure-role-edit.php:260
512
  msgid "Reset"
513
  msgstr "איפוס"
514
 
515
- #: ../ure-role-edit.php:260
516
  msgid "Restore Roles from backup copy"
517
  msgstr "שחזר סוגי משתמשים מהעתק הגיבוי"
518
 
519
- #: ../ure-role-edit.php:270
520
  msgid "Add New Role"
521
  msgstr "הוסף סוג משתמש חדש"
522
 
523
- #: ../ure-role-edit.php:272
524
  msgid "Name: "
525
  msgstr ""
526
 
527
- #: ../ure-role-edit.php:276
528
  msgid "Make copy of: "
529
  msgstr ""
530
 
531
- #: ../ure-role-edit.php:279
532
- #: ../ure-role-edit.php:308
533
  msgid "Add"
534
  msgstr "הוסף"
535
 
536
- #: ../ure-role-edit.php:279
537
  msgid "Add New User Role"
538
  msgstr "הוסף סוג משתמש חדש"
539
 
540
- #: ../ure-role-edit.php:283
541
  msgid "Default Role for New User"
542
  msgstr "סוג משתמש ברירת מחדל למשתמשים חדשים"
543
 
544
- #: ../ure-role-edit.php:288
545
  msgid "Change"
546
  msgstr "שנה"
547
 
548
- #: ../ure-role-edit.php:288
549
  msgid "Set as Default User Role"
550
  msgstr "קבע כסוג משתמש ברירת מחדל"
551
 
552
- #: ../ure-role-edit.php:298
553
  msgid "Delete"
554
  msgstr "למחוק"
555
 
556
- #: ../ure-role-edit.php:298
557
  msgid "Delete User Role"
558
  msgstr "מחק סוג משתמש"
559
 
560
- #: ../ure-role-edit.php:303
561
- #: ../ure-role-edit.php:308
562
  msgid "Add New Capability"
563
  msgstr "הוסף יכולת חדשה"
564
 
565
- #: ../ure-role-edit.php:313
566
  msgid "Remove Capability"
567
  msgstr "הסר יכולת"
568
 
569
- #: ../ure-role-edit.php:318
570
  msgid "Remove"
571
  msgstr "הסר"
572
 
573
- #: ../ure-role-edit.php:318
574
  msgid "Remove User Capability"
575
  msgstr "הסר יכולת משתמש"
576
 
577
- #: ../ure-user-edit.php:67
578
  #, php-format
579
  msgid "User \"%s\" update: please confirm to continue"
580
  msgstr "עדכון המשתמש \"%s\" : אנא אשר והמשך"
581
 
582
- #: ../ure-user-edit.php:79
583
  msgid "Change capabilities for user"
584
  msgstr "שינוי יכולות המשתמש"
585
 
586
- #: ../ure-user-edit.php:82
587
  msgid "Role:"
588
  msgstr "סוג משתמש"
589
 
590
- #: ../ure-user-edit.php:104
591
  msgid "Add capabilities to this user:"
592
  msgstr "הוסף יכולות למשתמש זה:"
593
 
594
- #: ../ure-options.php:59
595
  msgid "User Roles are restored from the backup data. "
596
  msgstr ""
597
 
598
- #: ../ure-options.php:125
599
  msgid "Error: "
600
  msgstr ""
601
 
602
- #: ../ure-options.php:125
603
- #: ../ure-options.php:143
604
  msgid "Role"
605
  msgstr "סוג משתמש:"
606
 
607
- #: ../ure-options.php:125
608
  msgid "does not exist"
609
  msgstr ""
610
 
611
- #: ../ure-options.php:143
612
  msgid "is updated successfully"
613
  msgstr "עודכן בהצלחה"
614
 
615
- #: ../ure-options.php:152
616
  msgid "User"
617
  msgstr "משתמש"
618
 
619
- #: ../ure-options.php:152
620
  msgid "capabilities are updated successfully"
621
  msgstr "היכולות עודכנו בהצלחה"
622
 
623
- #: ../ure-options.php:215
624
  msgid "About this Plugin:"
625
  msgstr "אודות תוסף זה:"
626
 
627
- #: ../ure-options.php:216
628
  msgid "Author's website"
629
  msgstr "אתר היוצר"
630
 
631
- #: ../ure-options.php:217
632
  msgid "Plugin webpage"
633
  msgstr "דף התוסף"
634
 
635
- #: ../ure-options.php:219
636
  msgid "FAQ"
637
  msgstr "שאלות נפוצות"
638
 
639
- #: ../ure-options.php:220
640
  msgid "Greetings"
641
  msgstr ""
642
 
643
- #: ../ure-options.php:242
644
  msgid "Greetings:"
645
  msgstr "ברכות:"
646
 
647
- #: ../ure-options.php:243
648
  msgid "It's me, the author"
649
  msgstr "זה אני, יוצר התוסף"
650
 
651
- #: ../ure-options.php:244
652
  msgid "For the help with Belorussian translation"
653
  msgstr "לעזרה עם תרגום לבלרוסית"
654
 
655
- #: ../ure-options.php:245
656
  msgid "For the help with Brasilian translation"
657
  msgstr "לעזרה עם תרגום לברזילאית"
658
 
659
- #: ../ure-options.php:246
 
 
 
 
 
660
  msgid "For the help with Chinese translation"
661
  msgstr "לעזרה עם תרגום לסינית"
662
 
663
- #: ../ure-options.php:247
664
  msgid "For the help with Dutch translation"
665
  msgstr "לעזרה עם תרגום להולנדית"
666
 
667
- #: ../ure-options.php:248
668
  msgid "For the help with Finnish translation"
669
  msgstr "לעזרה עם תרגום לפינית"
670
 
671
- #: ../ure-options.php:249
672
- #: ../ure-options.php:250
673
  msgid "For the help with French translation"
674
  msgstr "לעזרה עם תרגום לצרפתית"
675
 
676
- #: ../ure-options.php:251
677
  msgid "For the help with German translation"
678
  msgstr "לעזרה עם תרגום לגרמנית"
679
 
680
- #: ../ure-options.php:252
681
- #: ../ure-options.php:253
682
  msgid "For the help with Hebrew translation"
683
  msgstr ""
684
 
685
- #: ../ure-options.php:254
686
  msgid "For the help with Hindi translation"
687
  msgstr ""
688
 
689
- #: ../ure-options.php:255
690
  msgid "For the help with Hungarian translation"
691
  msgstr "לעזרה עם תרגום להונגרית"
692
 
693
- #: ../ure-options.php:256
694
- #: ../ure-options.php:257
695
  msgid "For the help with Italian translation"
696
  msgstr "לעזרה עם תרגום לאילטקית"
697
 
698
- #: ../ure-options.php:258
699
  msgid "For the help with Japanese translation"
700
  msgstr "לעזרה עם תרגום ליפנית"
701
 
702
- #: ../ure-options.php:259
703
  msgid "For the help with Lithuanian translation"
704
  msgstr ""
705
 
706
- #: ../ure-options.php:260
707
- #: ../ure-options.php:261
 
708
  msgid "For the help with Persian translation"
709
  msgstr "לעזרה עם תרגום לפרסית"
710
 
711
- #: ../ure-options.php:262
 
712
  msgid "For the help with Polish translation"
713
  msgstr "לעזרה עם תרגום לפולנית"
714
 
715
- #: ../ure-options.php:263
716
- #: ../ure-options.php:264
717
  msgid "For the help with Spanish translation"
718
  msgstr "לעזרה עם תרגום לספרדית"
719
 
720
- #: ../ure-options.php:265
721
  msgid "For the updated Swedish translation"
722
  msgstr ""
723
 
724
- #: ../ure-options.php:266
725
  msgid "For the help with Swedish translation"
726
  msgstr "לעזרה עם תרגום לשוודית"
727
 
728
- #: ../ure-options.php:267
729
  msgid "For the help with Turkish translation"
730
  msgstr "לעזרה עם תרגום לטורקית"
731
 
732
- #: ../ure-options.php:269
733
  msgid "For the code to hide administrator role"
734
  msgstr "עבור קוד כדי להחביא את סוג משתמש מנהל"
735
 
736
- #: ../ure-options.php:270
737
  msgid "For the code enhancement suggestion"
738
  msgstr ""
739
 
740
- #: ../ure-options.php:272
741
  msgid "Do you wish to see your name with link to your site here? You are welcome! Your help with translation and new ideas are very appreciated."
742
  msgstr "רוצה לראות את השם שלך עם קישור אל האתר שלך כאן? אתה מוזמן לעזור עם התרגום ועם רעיונות ושיפורים חדשים"
743
 
2
  msgstr ""
3
  "Project-Id-Version: User Role Editor 2.0\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-09-01 08: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"
30
  msgid "User Role Editor requires PHP 5.0 or newer."
31
  msgstr "התוסף User Role Editor מחייב אחסון עם PHP 5.0 ומעלה"
32
 
33
+ #: ../user-role-editor.php:76
34
  msgid "Only"
35
  msgstr "רק"
36
 
37
+ #: ../user-role-editor.php:76
38
  msgid "is allowed to use"
39
  msgstr "מותר לשימוש"
40
 
41
+ #: ../user-role-editor.php:82
42
+ #: ../user-role-editor.php:251
43
  msgid "User Role Editor"
44
  msgstr "User Role Editor"
45
 
46
+ #: ../user-role-editor.php:223
47
  msgid "Settings"
48
  msgstr "הגדרות"
49
 
50
+ #: ../user-role-editor.php:233
51
+ #: ../includes/ure-options.php:235
52
  msgid "Changelog"
53
  msgstr "יומן שינויים"
54
 
55
+ #: ../user-role-editor.php:280
56
  msgid "Capabilities"
57
  msgstr "יכולות"
58
 
59
+ #: ../includes/ure-lib.php:34
60
  msgid "Error is occur. Please check the log file."
61
  msgstr "ארעה שגיאה, אנא בדוק את קובץ היומן."
62
 
63
+ #: ../includes/ure-lib.php:144
64
  msgid "Database operation error. Check log file."
65
  msgstr "שגיאת מסד נתונים, אנא בדוק את קובץ היומן."
66
 
67
+ #: ../includes/ure-lib.php:177
68
  msgid "No backup data. It is created automatically before the first role data update."
69
  msgstr "אין קובץ גיבוי. מידע זה נוצר באופן אוטומטי לפני השינוי הראשון שאתם עושים בהגדרות סוגי המשתמשים."
70
 
71
+ #: ../includes/ure-lib.php:215
72
  msgid "Backup record is created for the current role capabilities"
73
  msgstr "גיבוי נוצר עבור יכולות סוגי המשתמשים הנוכחיים"
74
 
75
+ #: ../includes/ure-lib.php:329
76
  msgid "Error: Role name must contain latin characters and digits only!"
77
  msgstr "שגיאה! השם של סוג המשתמש חייב להיות מורכב מאותיות באנגלית וספרות בלבד"
78
 
79
+ #: ../includes/ure-lib.php:336
80
  #, php-format
81
  msgid "Role %s exists already"
82
  msgstr "סוג המשתמש %s כבר קיים"
83
 
84
+ #: ../includes/ure-lib.php:349
85
  msgid "Error is encountered during new role create operation"
86
  msgstr "ארעה שגיאה בעת יצירת סוג המשתמש החדש"
87
 
88
+ #: ../includes/ure-lib.php:351
89
  #, php-format
90
  msgid "Role %s is created successfully"
91
  msgstr "סוג המשתמש %s נוצר בהצלחה"
92
 
93
+ #: ../includes/ure-lib.php:435
94
  msgid "Error encountered during role delete operation"
95
  msgstr "ארעה שגיאה במהלך נסיון המחיקה של סוג המשתמש"
96
 
97
+ #: ../includes/ure-lib.php:437
98
  #, php-format
99
  msgid "Role %s is deleted successfully"
100
  msgstr "סוג המשתמש %s נמחק בהצלחה"
101
 
102
+ #: ../includes/ure-lib.php:455
103
  msgid "Error encountered during default role change operation"
104
  msgstr "ארעה שגיאה בעת הנסיון לשנות את סוג משתמש ברירת מחדל"
105
 
106
+ #: ../includes/ure-lib.php:461
107
  #, php-format
108
  msgid "Default role for new users is set to %s successfully"
109
  msgstr "סוג המשתמש %s נקבע כברירת מחדל"
110
 
111
+ #: ../includes/ure-lib.php:489
112
  msgid "Editor"
113
  msgstr "עורך"
114
 
115
+ #: ../includes/ure-lib.php:490
116
  msgid "Author"
117
  msgstr "כותב"
118
 
119
+ #: ../includes/ure-lib.php:491
120
  msgid "Contributor"
121
  msgstr "תורם"
122
 
123
+ #: ../includes/ure-lib.php:492
124
  msgid "Subscriber"
125
  msgstr "מנוי"
126
 
127
+ #: ../includes/ure-lib.php:494
128
  msgid "Switch themes"
129
  msgstr "החלפת תבניות"
130
 
131
+ #: ../includes/ure-lib.php:495
132
  msgid "Edit themes"
133
  msgstr "עריכת תבניות"
134
 
135
+ #: ../includes/ure-lib.php:496
136
  msgid "Activate plugins"
137
  msgstr "הפעלת תוספים"
138
 
139
+ #: ../includes/ure-lib.php:497
140
  msgid "Edit plugins"
141
  msgstr "עריכת תוספים"
142
 
143
+ #: ../includes/ure-lib.php:498
144
  msgid "Edit users"
145
  msgstr "עריכת משתמשים"
146
 
147
+ #: ../includes/ure-lib.php:499
148
  msgid "Edit files"
149
  msgstr "עריכת קבצים"
150
 
151
+ #: ../includes/ure-lib.php:500
152
  msgid "Manage options"
153
  msgstr "ניהול אפשרויות אתר"
154
 
155
+ #: ../includes/ure-lib.php:501
156
  msgid "Moderate comments"
157
  msgstr "ניהול תגובות"
158
 
159
+ #: ../includes/ure-lib.php:502
160
  msgid "Manage categories"
161
  msgstr "ניהול קטגוריות"
162
 
163
+ #: ../includes/ure-lib.php:503
164
  msgid "Manage links"
165
  msgstr "ניהול קישורים"
166
 
167
+ #: ../includes/ure-lib.php:504
168
  msgid "Upload files"
169
  msgstr "העלאת קבצים"
170
 
171
+ #: ../includes/ure-lib.php:505
172
  msgid "Import"
173
  msgstr "יבוא"
174
 
175
+ #: ../includes/ure-lib.php:506
176
  msgid "Unfiltered html"
177
  msgstr "עריכת HTML"
178
 
179
+ #: ../includes/ure-lib.php:507
180
  msgid "Edit posts"
181
  msgstr "עריכת פוסטים"
182
 
183
+ #: ../includes/ure-lib.php:508
184
  msgid "Edit others posts"
185
  msgstr "עריכת פוסטים של אחרים"
186
 
187
+ #: ../includes/ure-lib.php:509
188
  msgid "Edit published posts"
189
  msgstr "עריכת פוסטים שפורסמו"
190
 
191
+ #: ../includes/ure-lib.php:510
192
  msgid "Publish posts"
193
  msgstr "פוסטים שפורסמו"
194
 
195
+ #: ../includes/ure-lib.php:511
196
  msgid "Edit pages"
197
  msgstr "עריכת עמודים"
198
 
199
+ #: ../includes/ure-lib.php:512
200
  msgid "Read"
201
  msgstr "קורא"
202
 
203
+ #: ../includes/ure-lib.php:513
204
  msgid "Level 10"
205
  msgstr "דרגה 10"
206
 
207
+ #: ../includes/ure-lib.php:514
208
  msgid "Level 9"
209
  msgstr "דרגה 9"
210
 
211
+ #: ../includes/ure-lib.php:515
212
  msgid "Level 8"
213
  msgstr "דרגה 8"
214
 
215
+ #: ../includes/ure-lib.php:516
216
  msgid "Level 7"
217
  msgstr "דרגה 7"
218
 
219
+ #: ../includes/ure-lib.php:517
220
  msgid "Level 6"
221
  msgstr "דרגה 6"
222
 
223
+ #: ../includes/ure-lib.php:518
224
  msgid "Level 5"
225
  msgstr "דרגה 5"
226
 
227
+ #: ../includes/ure-lib.php:519
228
  msgid "Level 4"
229
  msgstr "דרגה 4"
230
 
231
+ #: ../includes/ure-lib.php:520
232
  msgid "Level 3"
233
  msgstr "דרגה 3"
234
 
235
+ #: ../includes/ure-lib.php:521
236
  msgid "Level 2"
237
  msgstr "דרגה 2"
238
 
239
+ #: ../includes/ure-lib.php:522
240
  msgid "Level 1"
241
  msgstr "דרגה 1"
242
 
243
+ #: ../includes/ure-lib.php:523
244
  msgid "Level 0"
245
  msgstr "דרגה 0"
246
 
247
+ #: ../includes/ure-lib.php:524
248
  msgid "Edit others pages"
249
  msgstr "עריכת דפים של אחרים"
250
 
251
+ #: ../includes/ure-lib.php:525
252
  msgid "Edit published pages"
253
  msgstr "עריכת דפים שפורסמו"
254
 
255
+ #: ../includes/ure-lib.php:526
256
  msgid "Publish pages"
257
  msgstr "פרסום דפים"
258
 
259
+ #: ../includes/ure-lib.php:527
260
  msgid "Delete pages"
261
  msgstr "מחיקת דפים"
262
 
263
+ #: ../includes/ure-lib.php:528
264
  msgid "Delete others pages"
265
  msgstr "מחיקת דפים של אחרים"
266
 
267
+ #: ../includes/ure-lib.php:529
268
  msgid "Delete published pages"
269
  msgstr "מחיקת דפים שפורסמו"
270
 
271
+ #: ../includes/ure-lib.php:530
272
  msgid "Delete posts"
273
  msgstr "מחיקת פוסטים"
274
 
275
+ #: ../includes/ure-lib.php:531
276
  msgid "Delete others posts"
277
  msgstr "מחיקת פוסטים של אחרים"
278
 
279
+ #: ../includes/ure-lib.php:532
280
  msgid "Delete published posts"
281
  msgstr "מחיקת פוסטים שפורסמו"
282
 
283
+ #: ../includes/ure-lib.php:533
284
  msgid "Delete private posts"
285
  msgstr "מחיקת פוסטים פרטיים"
286
 
287
+ #: ../includes/ure-lib.php:534
288
  msgid "Edit private posts"
289
  msgstr "עריכת פוסטים פרטיים"
290
 
291
+ #: ../includes/ure-lib.php:535
292
  msgid "Read private posts"
293
  msgstr "קריאת פוסטים פרטיים"
294
 
295
+ #: ../includes/ure-lib.php:536
296
  msgid "Delete private pages"
297
  msgstr "מחיקת עמודים פרטיים"
298
 
299
+ #: ../includes/ure-lib.php:537
300
  msgid "Edit private pages"
301
  msgstr "מחיקת עמודים פרטיים"
302
 
303
+ #: ../includes/ure-lib.php:538
304
  msgid "Read private pages"
305
  msgstr "קריאת עמודים פרטיים"
306
 
307
+ #: ../includes/ure-lib.php:539
308
  msgid "Delete users"
309
  msgstr "מחיקת משתמשים"
310
 
311
+ #: ../includes/ure-lib.php:540
312
  msgid "Create users"
313
  msgstr "יצירת משתמשים"
314
 
315
+ #: ../includes/ure-lib.php:541
316
  msgid "Unfiltered upload"
317
  msgstr "העלאת קבצים חופשית"
318
 
319
+ #: ../includes/ure-lib.php:542
320
  msgid "Edit dashboard"
321
  msgstr "שינוי לוח הבקרה"
322
 
323
+ #: ../includes/ure-lib.php:543
324
  msgid "Update plugins"
325
  msgstr "עדכון תוספים"
326
 
327
+ #: ../includes/ure-lib.php:544
328
  msgid "Delete plugins"
329
  msgstr "מחיקת תוספים"
330
 
331
+ #: ../includes/ure-lib.php:545
332
  msgid "Install plugins"
333
  msgstr "התקנת תוספים"
334
 
335
+ #: ../includes/ure-lib.php:546
336
  msgid "Update themes"
337
  msgstr "עדכון תבניות"
338
 
339
+ #: ../includes/ure-lib.php:547
340
  msgid "Install themes"
341
  msgstr "התקנת תבניות חדשות"
342
 
343
+ #: ../includes/ure-lib.php:548
344
  msgid "Update core"
345
  msgstr "עדכון וורדפרס"
346
 
347
+ #: ../includes/ure-lib.php:549
348
  msgid "List users"
349
  msgstr "בצפייה במשתמשים"
350
 
351
+ #: ../includes/ure-lib.php:550
352
  msgid "Remove users"
353
  msgstr "הסרת משתמשים"
354
 
355
+ #: ../includes/ure-lib.php:551
356
  msgid "Add users"
357
  msgstr "הוספת משתמשים"
358
 
359
+ #: ../includes/ure-lib.php:552
360
  msgid "Promote users"
361
  msgstr "שינוי משתמשים"
362
 
363
+ #: ../includes/ure-lib.php:553
364
  msgid "Edit theme options"
365
  msgstr "עריכת אפשרויות התבנית"
366
 
367
+ #: ../includes/ure-lib.php:554
368
  msgid "Delete themes"
369
  msgstr "מחיקת תבניות"
370
 
371
+ #: ../includes/ure-lib.php:555
372
  msgid "Export"
373
  msgstr "ייצוא תוכן"
374
 
375
+ #: ../includes/ure-lib.php:639
376
  msgid "Error: Capability name must contain latin characters and digits only!"
377
  msgstr "שגיאה! שם יכולת חייב להכיל אותיות באנגלית וספרות בלבד"
378
 
379
+ #: ../includes/ure-lib.php:651
380
  #, php-format
381
  msgid "Capability %s is added successfully"
382
  msgstr "היכולת %s נוספה בהצלחה"
383
 
384
+ #: ../includes/ure-lib.php:653
385
  #, php-format
386
  msgid "Capability %s exists already"
387
  msgstr "כבר קיימת יכולת בשם %s"
388
 
389
+ #: ../includes/ure-lib.php:802
390
  #, php-format
391
  msgid "Error! You do not have permission to delete this capability: %s!"
392
  msgstr "שגיאה! אין לך הרשאה למחוק את היכולת %s"
393
 
394
+ #: ../includes/ure-lib.php:824
395
  #, php-format
396
  msgid "Capability %s is removed successfully"
397
  msgstr "היכולת %s הוסרה בהצלחה"
398
 
399
+ #: ../includes/ure-lib.php:889
400
  msgid "Help"
401
  msgstr ""
402
 
403
+ #: ../includes/ure-role-edit.php:29
404
  msgid "None"
405
  msgstr ""
406
 
407
+ #: ../includes/ure-role-edit.php:101
408
  msgid " Name can not be empty!"
409
  msgstr "שם לא יכול להשאר ריק!"
410
 
411
+ #: ../includes/ure-role-edit.php:105
412
  msgid " Name must contain latin characters and digits only!"
413
  msgstr "שם חייב להכיל אותיות באנגלית וספרות בלבד!"
414
 
415
+ #: ../includes/ure-role-edit.php:110
416
+ #: ../includes/ure-role-edit.php:367
417
  msgid "Delete Role"
418
  msgstr "מחיקת סוג משתמש"
419
 
420
+ #: ../includes/ure-role-edit.php:112
421
  msgid "Change Default Role"
422
  msgstr "שנה את סוג משתמש המוגדר כברירת מחדל"
423
 
424
+ #: ../includes/ure-role-edit.php:114
425
  msgid "Restore Roles from backup copy. Be careful, backup was created when you started URE 1st time. All changes you made after that will be lost"
426
  msgstr ""
427
 
428
+ #: ../includes/ure-role-edit.php:116
429
  msgid "Warning! Be careful - removing critical capability could crash some plugin or other custom code"
430
  msgstr "זהירות! הסרה של אפשרויות קריטיות עשוי לגרום לתוספים מסוים או קוד נסמך שלא לעבוד כשורה"
431
 
432
+ #: ../includes/ure-role-edit.php:118
433
  msgid "Please confirm to continue"
434
  msgstr "אשר את הפעולה והמשך"
435
 
436
+ #: ../includes/ure-role-edit.php:155
437
  #, php-format
438
  msgid "Role \"%s\" update: please confirm to continue"
439
  msgstr "סוג המשתמש \"%s\" עודכן: אנא אשר והמשך"
440
 
441
+ #: ../includes/ure-role-edit.php:163
442
  msgid "Select Role and change its capabilities list"
443
  msgstr "בחר סוג משתמש ושנה את היכולות שלו"
444
 
445
+ #: ../includes/ure-role-edit.php:165
446
  msgid "Select Role:"
447
  msgstr "בחר סוג משתמש"
448
 
449
+ #: ../includes/ure-role-edit.php:175
450
+ #: ../includes/ure-user-edit.php:91
451
  msgid "Show capabilities in human readable form"
452
  msgstr "הראה יכולות משתמשים בשפה קריאה"
453
 
454
+ #: ../includes/ure-role-edit.php:184
455
+ #: ../includes/ure-user-edit.php:100
456
  msgid "Show deprecated capabilities"
457
  msgstr ""
458
 
459
+ #: ../includes/ure-role-edit.php:188
460
  msgid "If checked, then apply action to ALL sites of this Network"
461
  msgstr "אם סומן, החל פעולה על כל האתרים ברשת זאת"
462
 
463
+ #: ../includes/ure-role-edit.php:198
464
  msgid "Apply to All Sites"
465
  msgstr "החל לכל האתרים"
466
 
467
+ #: ../includes/ure-role-edit.php:205
468
+ #: ../includes/ure-user-edit.php:105
469
+ #, fuzzy
470
+ msgid "Core capabilities:"
471
+ msgstr "יכולות"
472
+
473
+ #: ../includes/ure-role-edit.php:268
474
+ #: ../includes/ure-user-edit.php:167
475
+ #, fuzzy
476
+ msgid "Custom capabilities:"
477
+ msgstr "יכולות"
478
+
479
+ #: ../includes/ure-role-edit.php:319
480
+ #: ../includes/ure-user-edit.php:222
481
  msgid "Update"
482
  msgstr "עדכן"
483
 
484
+ #: ../includes/ure-role-edit.php:319
485
+ #: ../includes/ure-user-edit.php:222
486
  msgid "Save Changes"
487
  msgstr "שמור שינויים"
488
 
489
+ #: ../includes/ure-role-edit.php:320
490
+ #: ../includes/ure-user-edit.php:223
491
  msgid "Cancel"
492
  msgstr "ביטול"
493
 
494
+ #: ../includes/ure-role-edit.php:320
495
+ #: ../includes/ure-user-edit.php:223
496
  msgid "Cancel not saved changes"
497
  msgstr "בטל שינויים שלא נשמרו"
498
 
499
+ #: ../includes/ure-role-edit.php:323
500
  msgid "Select All"
501
  msgstr ""
502
 
503
+ #: ../includes/ure-role-edit.php:323
504
  msgid "Select All Capabilities"
505
  msgstr ""
506
 
507
+ #: ../includes/ure-role-edit.php:327
508
  msgid "Unselect All"
509
  msgstr ""
510
 
511
+ #: ../includes/ure-role-edit.php:327
512
  msgid "Unselect All Capabilities"
513
  msgstr ""
514
 
515
+ #: ../includes/ure-role-edit.php:328
516
  msgid "Reverse"
517
  msgstr ""
518
 
519
+ #: ../includes/ure-role-edit.php:328
520
  msgid "Turn checked capabilities off and vise versa"
521
  msgstr ""
522
 
523
+ #: ../includes/ure-role-edit.php:334
524
  msgid "Reset"
525
  msgstr "איפוס"
526
 
527
+ #: ../includes/ure-role-edit.php:334
528
  msgid "Restore Roles from backup copy"
529
  msgstr "שחזר סוגי משתמשים מהעתק הגיבוי"
530
 
531
+ #: ../includes/ure-role-edit.php:344
532
  msgid "Add New Role"
533
  msgstr "הוסף סוג משתמש חדש"
534
 
535
+ #: ../includes/ure-role-edit.php:346
536
  msgid "Name: "
537
  msgstr ""
538
 
539
+ #: ../includes/ure-role-edit.php:350
540
  msgid "Make copy of: "
541
  msgstr ""
542
 
543
+ #: ../includes/ure-role-edit.php:353
544
+ #: ../includes/ure-role-edit.php:382
545
  msgid "Add"
546
  msgstr "הוסף"
547
 
548
+ #: ../includes/ure-role-edit.php:353
549
  msgid "Add New User Role"
550
  msgstr "הוסף סוג משתמש חדש"
551
 
552
+ #: ../includes/ure-role-edit.php:357
553
  msgid "Default Role for New User"
554
  msgstr "סוג משתמש ברירת מחדל למשתמשים חדשים"
555
 
556
+ #: ../includes/ure-role-edit.php:362
557
  msgid "Change"
558
  msgstr "שנה"
559
 
560
+ #: ../includes/ure-role-edit.php:362
561
  msgid "Set as Default User Role"
562
  msgstr "קבע כסוג משתמש ברירת מחדל"
563
 
564
+ #: ../includes/ure-role-edit.php:372
565
  msgid "Delete"
566
  msgstr "למחוק"
567
 
568
+ #: ../includes/ure-role-edit.php:372
569
  msgid "Delete User Role"
570
  msgstr "מחק סוג משתמש"
571
 
572
+ #: ../includes/ure-role-edit.php:377
573
+ #: ../includes/ure-role-edit.php:382
574
  msgid "Add New Capability"
575
  msgstr "הוסף יכולת חדשה"
576
 
577
+ #: ../includes/ure-role-edit.php:387
578
  msgid "Remove Capability"
579
  msgstr "הסר יכולת"
580
 
581
+ #: ../includes/ure-role-edit.php:392
582
  msgid "Remove"
583
  msgstr "הסר"
584
 
585
+ #: ../includes/ure-role-edit.php:392
586
  msgid "Remove User Capability"
587
  msgstr "הסר יכולת משתמש"
588
 
589
+ #: ../includes/ure-user-edit.php:67
590
  #, php-format
591
  msgid "User \"%s\" update: please confirm to continue"
592
  msgstr "עדכון המשתמש \"%s\" : אנא אשר והמשך"
593
 
594
+ #: ../includes/ure-user-edit.php:79
595
  msgid "Change capabilities for user"
596
  msgstr "שינוי יכולות המשתמש"
597
 
598
+ #: ../includes/ure-user-edit.php:82
599
  msgid "Role:"
600
  msgstr "סוג משתמש"
601
 
602
+ #: ../includes/ure-user-edit.php:104
603
  msgid "Add capabilities to this user:"
604
  msgstr "הוסף יכולות למשתמש זה:"
605
 
606
+ #: ../includes/ure-options.php:59
607
  msgid "User Roles are restored from the backup data. "
608
  msgstr ""
609
 
610
+ #: ../includes/ure-options.php:130
611
  msgid "Error: "
612
  msgstr ""
613
 
614
+ #: ../includes/ure-options.php:130
615
+ #: ../includes/ure-options.php:146
616
  msgid "Role"
617
  msgstr "סוג משתמש:"
618
 
619
+ #: ../includes/ure-options.php:130
620
  msgid "does not exist"
621
  msgstr ""
622
 
623
+ #: ../includes/ure-options.php:146
624
  msgid "is updated successfully"
625
  msgstr "עודכן בהצלחה"
626
 
627
+ #: ../includes/ure-options.php:154
628
  msgid "User"
629
  msgstr "משתמש"
630
 
631
+ #: ../includes/ure-options.php:154
632
  msgid "capabilities are updated successfully"
633
  msgstr "היכולות עודכנו בהצלחה"
634
 
635
+ #: ../includes/ure-options.php:232
636
  msgid "About this Plugin:"
637
  msgstr "אודות תוסף זה:"
638
 
639
+ #: ../includes/ure-options.php:233
640
  msgid "Author's website"
641
  msgstr "אתר היוצר"
642
 
643
+ #: ../includes/ure-options.php:234
644
  msgid "Plugin webpage"
645
  msgstr "דף התוסף"
646
 
647
+ #: ../includes/ure-options.php:236
648
  msgid "FAQ"
649
  msgstr "שאלות נפוצות"
650
 
651
+ #: ../includes/ure-options.php:237
652
  msgid "Greetings"
653
  msgstr ""
654
 
655
+ #: ../includes/ure-options.php:259
656
  msgid "Greetings:"
657
  msgstr "ברכות:"
658
 
659
+ #: ../includes/ure-options.php:260
660
  msgid "It's me, the author"
661
  msgstr "זה אני, יוצר התוסף"
662
 
663
+ #: ../includes/ure-options.php:261
664
  msgid "For the help with Belorussian translation"
665
  msgstr "לעזרה עם תרגום לבלרוסית"
666
 
667
+ #: ../includes/ure-options.php:262
668
  msgid "For the help with Brasilian translation"
669
  msgstr "לעזרה עם תרגום לברזילאית"
670
 
671
+ #: ../includes/ure-options.php:263
672
+ #, fuzzy
673
+ msgid "For the help with Brasilian Portuguese translation"
674
+ msgstr "לעזרה עם תרגום לברזילאית"
675
+
676
+ #: ../includes/ure-options.php:264
677
  msgid "For the help with Chinese translation"
678
  msgstr "לעזרה עם תרגום לסינית"
679
 
680
+ #: ../includes/ure-options.php:265
681
  msgid "For the help with Dutch translation"
682
  msgstr "לעזרה עם תרגום להולנדית"
683
 
684
+ #: ../includes/ure-options.php:266
685
  msgid "For the help with Finnish translation"
686
  msgstr "לעזרה עם תרגום לפינית"
687
 
688
+ #: ../includes/ure-options.php:267
689
+ #: ../includes/ure-options.php:268
690
  msgid "For the help with French translation"
691
  msgstr "לעזרה עם תרגום לצרפתית"
692
 
693
+ #: ../includes/ure-options.php:269
694
  msgid "For the help with German translation"
695
  msgstr "לעזרה עם תרגום לגרמנית"
696
 
697
+ #: ../includes/ure-options.php:270
698
+ #: ../includes/ure-options.php:271
699
  msgid "For the help with Hebrew translation"
700
  msgstr ""
701
 
702
+ #: ../includes/ure-options.php:272
703
  msgid "For the help with Hindi translation"
704
  msgstr ""
705
 
706
+ #: ../includes/ure-options.php:273
707
  msgid "For the help with Hungarian translation"
708
  msgstr "לעזרה עם תרגום להונגרית"
709
 
710
+ #: ../includes/ure-options.php:274
711
+ #: ../includes/ure-options.php:275
712
  msgid "For the help with Italian translation"
713
  msgstr "לעזרה עם תרגום לאילטקית"
714
 
715
+ #: ../includes/ure-options.php:276
716
  msgid "For the help with Japanese translation"
717
  msgstr "לעזרה עם תרגום ליפנית"
718
 
719
+ #: ../includes/ure-options.php:277
720
  msgid "For the help with Lithuanian translation"
721
  msgstr ""
722
 
723
+ #: ../includes/ure-options.php:278
724
+ #: ../includes/ure-options.php:279
725
+ #: ../includes/ure-options.php:280
726
  msgid "For the help with Persian translation"
727
  msgstr "לעזרה עם תרגום לפרסית"
728
 
729
+ #: ../includes/ure-options.php:281
730
+ #: ../includes/ure-options.php:282
731
  msgid "For the help with Polish translation"
732
  msgstr "לעזרה עם תרגום לפולנית"
733
 
734
+ #: ../includes/ure-options.php:283
735
+ #: ../includes/ure-options.php:284
736
  msgid "For the help with Spanish translation"
737
  msgstr "לעזרה עם תרגום לספרדית"
738
 
739
+ #: ../includes/ure-options.php:285
740
  msgid "For the updated Swedish translation"
741
  msgstr ""
742
 
743
+ #: ../includes/ure-options.php:286
744
  msgid "For the help with Swedish translation"
745
  msgstr "לעזרה עם תרגום לשוודית"
746
 
747
+ #: ../includes/ure-options.php:287
748
  msgid "For the help with Turkish translation"
749
  msgstr "לעזרה עם תרגום לטורקית"
750
 
751
+ #: ../includes/ure-options.php:289
752
  msgid "For the code to hide administrator role"
753
  msgstr "עבור קוד כדי להחביא את סוג משתמש מנהל"
754
 
755
+ #: ../includes/ure-options.php:290
756
  msgid "For the code enhancement suggestion"
757
  msgstr ""
758
 
759
+ #: ../includes/ure-options.php:292
760
  msgid "Do you wish to see your name with link to your site here? You are welcome! Your help with translation and new ideas are very appreciated."
761
  msgstr "רוצה לראות את השם שלך עם קישור אל האתר שלך כאן? אתה מוזמן לעזור עם התרגום ועם רעיונות ושיפורים חדשים"
762
 
lang/ure-he_IL.mo CHANGED
Binary file
lang/ure-he_IL.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: 2012-06-23 23:17+0700\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Vladimir Garagulya <vladimir@shinephp.com>\n"
8
  "Language-Team: ShinePHP.com <vladimir@shinephp.com>\n"
@@ -30,714 +30,733 @@ msgstr "אנא עדכן!"
30
  msgid "User Role Editor requires PHP 5.0 or newer."
31
  msgstr "התוסף User Role Editor מחייב אחסון עם PHP 5.0 ומעלה"
32
 
33
- #: ../user-role-editor.php:65
34
  msgid "Only"
35
  msgstr "רק"
36
 
37
- #: ../user-role-editor.php:65
38
  msgid "is allowed to use"
39
  msgstr "מותר לשימוש"
40
 
41
- #: ../user-role-editor.php:71
42
- #: ../user-role-editor.php:246
43
  msgid "User Role Editor"
44
  msgstr "User Role Editor"
45
 
46
- #: ../user-role-editor.php:218
47
  msgid "Settings"
48
  msgstr "הגדרות"
49
 
50
- #: ../user-role-editor.php:228
51
- #: ../ure-options.php:218
52
  msgid "Changelog"
53
  msgstr "יומן שינויים"
54
 
55
- #: ../user-role-editor.php:275
56
  msgid "Capabilities"
57
  msgstr "יכולות"
58
 
59
- #: ../ure-lib.php:45
60
  msgid "Error is occur. Please check the log file."
61
  msgstr "ארעה שגיאה, אנא בדוק את קובץ היומן."
62
 
63
- #: ../ure-lib.php:155
64
  msgid "Database operation error. Check log file."
65
  msgstr "שגיאת מסד נתונים, אנא בדוק את קובץ היומן."
66
 
67
- #: ../ure-lib.php:188
68
  msgid "No backup data. It is created automatically before the first role data update."
69
  msgstr "אין קובץ גיבוי. מידע זה נוצר באופן אוטומטי לפני השינוי הראשון שאתם עושים בהגדרות סוגי המשתמשים."
70
 
71
- #: ../ure-lib.php:226
72
  msgid "Backup record is created for the current role capabilities"
73
  msgstr "גיבוי נוצר עבור יכולות סוגי המשתמשים הנוכחיים"
74
 
75
- #: ../ure-lib.php:345
76
  msgid "Error: Role name must contain latin characters and digits only!"
77
  msgstr "שגיאה! השם של סוג המשתמש חייב להיות מורכב מאותיות באנגלית וספרות בלבד"
78
 
79
- #: ../ure-lib.php:352
80
  #, php-format
81
  msgid "Role %s exists already"
82
  msgstr "סוג המשתמש %s כבר קיים"
83
 
84
- #: ../ure-lib.php:365
85
  msgid "Error is encountered during new role create operation"
86
  msgstr "ארעה שגיאה בעת יצירת סוג המשתמש החדש"
87
 
88
- #: ../ure-lib.php:367
89
  #, php-format
90
  msgid "Role %s is created successfully"
91
  msgstr "סוג המשתמש %s נוצר בהצלחה"
92
 
93
- #: ../ure-lib.php:451
94
  msgid "Error encountered during role delete operation"
95
  msgstr "ארעה שגיאה במהלך נסיון המחיקה של סוג המשתמש"
96
 
97
- #: ../ure-lib.php:453
98
  #, php-format
99
  msgid "Role %s is deleted successfully"
100
  msgstr "סוג המשתמש %s נמחק בהצלחה"
101
 
102
- #: ../ure-lib.php:471
103
  msgid "Error encountered during default role change operation"
104
  msgstr "ארעה שגיאה בעת הנסיון לשנות את סוג משתמש ברירת מחדל"
105
 
106
- #: ../ure-lib.php:477
107
  #, php-format
108
  msgid "Default role for new users is set to %s successfully"
109
  msgstr "סוג המשתמש %s נקבע כברירת מחדל"
110
 
111
- #: ../ure-lib.php:505
112
  msgid "Editor"
113
  msgstr "עורך"
114
 
115
- #: ../ure-lib.php:506
116
  msgid "Author"
117
  msgstr "כותב"
118
 
119
- #: ../ure-lib.php:507
120
  msgid "Contributor"
121
  msgstr "תורם"
122
 
123
- #: ../ure-lib.php:508
124
  msgid "Subscriber"
125
  msgstr "מנוי"
126
 
127
- #: ../ure-lib.php:510
128
  msgid "Switch themes"
129
  msgstr "החלפת תבניות"
130
 
131
- #: ../ure-lib.php:511
132
  msgid "Edit themes"
133
  msgstr "עריכת תבניות"
134
 
135
- #: ../ure-lib.php:512
136
  msgid "Activate plugins"
137
  msgstr "הפעלת תוספים"
138
 
139
- #: ../ure-lib.php:513
140
  msgid "Edit plugins"
141
  msgstr "עריכת תוספים"
142
 
143
- #: ../ure-lib.php:514
144
  msgid "Edit users"
145
  msgstr "עריכת משתמשים"
146
 
147
- #: ../ure-lib.php:515
148
  msgid "Edit files"
149
  msgstr "עריכת קבצים"
150
 
151
- #: ../ure-lib.php:516
152
  msgid "Manage options"
153
  msgstr "ניהול אפשרויות אתר"
154
 
155
- #: ../ure-lib.php:517
156
  msgid "Moderate comments"
157
  msgstr "ניהול תגובות"
158
 
159
- #: ../ure-lib.php:518
160
  msgid "Manage categories"
161
  msgstr "ניהול קטגוריות"
162
 
163
- #: ../ure-lib.php:519
164
  msgid "Manage links"
165
  msgstr "ניהול קישורים"
166
 
167
- #: ../ure-lib.php:520
168
  msgid "Upload files"
169
  msgstr "העלאת קבצים"
170
 
171
- #: ../ure-lib.php:521
172
  msgid "Import"
173
  msgstr "יבוא"
174
 
175
- #: ../ure-lib.php:522
176
  msgid "Unfiltered html"
177
  msgstr "עריכת HTML"
178
 
179
- #: ../ure-lib.php:523
180
  msgid "Edit posts"
181
  msgstr "עריכת פוסטים"
182
 
183
- #: ../ure-lib.php:524
184
  msgid "Edit others posts"
185
  msgstr "עריכת פוסטים של אחרים"
186
 
187
- #: ../ure-lib.php:525
188
  msgid "Edit published posts"
189
  msgstr "עריכת פוסטים שפורסמו"
190
 
191
- #: ../ure-lib.php:526
192
  msgid "Publish posts"
193
  msgstr "פוסטים שפורסמו"
194
 
195
- #: ../ure-lib.php:527
196
  msgid "Edit pages"
197
  msgstr "עריכת עמודים"
198
 
199
- #: ../ure-lib.php:528
200
  msgid "Read"
201
  msgstr "קורא"
202
 
203
- #: ../ure-lib.php:529
204
  msgid "Level 10"
205
  msgstr "דרגה 10"
206
 
207
- #: ../ure-lib.php:530
208
  msgid "Level 9"
209
  msgstr "דרגה 9"
210
 
211
- #: ../ure-lib.php:531
212
  msgid "Level 8"
213
  msgstr "דרגה 8"
214
 
215
- #: ../ure-lib.php:532
216
  msgid "Level 7"
217
  msgstr "דרגה 7"
218
 
219
- #: ../ure-lib.php:533
220
  msgid "Level 6"
221
  msgstr "דרגה 6"
222
 
223
- #: ../ure-lib.php:534
224
  msgid "Level 5"
225
  msgstr "דרגה 5"
226
 
227
- #: ../ure-lib.php:535
228
  msgid "Level 4"
229
  msgstr "דרגה 4"
230
 
231
- #: ../ure-lib.php:536
232
  msgid "Level 3"
233
  msgstr "דרגה 3"
234
 
235
- #: ../ure-lib.php:537
236
  msgid "Level 2"
237
  msgstr "דרגה 2"
238
 
239
- #: ../ure-lib.php:538
240
  msgid "Level 1"
241
  msgstr "דרגה 1"
242
 
243
- #: ../ure-lib.php:539
244
  msgid "Level 0"
245
  msgstr "דרגה 0"
246
 
247
- #: ../ure-lib.php:540
248
  msgid "Edit others pages"
249
  msgstr "עריכת דפים של אחרים"
250
 
251
- #: ../ure-lib.php:541
252
  msgid "Edit published pages"
253
  msgstr "עריכת דפים שפורסמו"
254
 
255
- #: ../ure-lib.php:542
256
  msgid "Publish pages"
257
  msgstr "פרסום דפים"
258
 
259
- #: ../ure-lib.php:543
260
  msgid "Delete pages"
261
  msgstr "מחיקת דפים"
262
 
263
- #: ../ure-lib.php:544
264
  msgid "Delete others pages"
265
  msgstr "מחיקת דפים של אחרים"
266
 
267
- #: ../ure-lib.php:545
268
  msgid "Delete published pages"
269
  msgstr "מחיקת דפים שפורסמו"
270
 
271
- #: ../ure-lib.php:546
272
  msgid "Delete posts"
273
  msgstr "מחיקת פוסטים"
274
 
275
- #: ../ure-lib.php:547
276
  msgid "Delete others posts"
277
  msgstr "מחיקת פוסטים של אחרים"
278
 
279
- #: ../ure-lib.php:548
280
  msgid "Delete published posts"
281
  msgstr "מחיקת פוסטים שפורסמו"
282
 
283
- #: ../ure-lib.php:549
284
  msgid "Delete private posts"
285
  msgstr "מחיקת פוסטים פרטיים"
286
 
287
- #: ../ure-lib.php:550
288
  msgid "Edit private posts"
289
  msgstr "עריכת פוסטים פרטיים"
290
 
291
- #: ../ure-lib.php:551
292
  msgid "Read private posts"
293
  msgstr "קריאת פוסטים פרטיים"
294
 
295
- #: ../ure-lib.php:552
296
  msgid "Delete private pages"
297
  msgstr "מחיקת עמודים פרטיים"
298
 
299
- #: ../ure-lib.php:553
300
  msgid "Edit private pages"
301
  msgstr "מחיקת עמודים פרטיים"
302
 
303
- #: ../ure-lib.php:554
304
  msgid "Read private pages"
305
  msgstr "קריאת עמודים פרטיים"
306
 
307
- #: ../ure-lib.php:555
308
  msgid "Delete users"
309
  msgstr "מחיקת משתמשים"
310
 
311
- #: ../ure-lib.php:556
312
  msgid "Create users"
313
  msgstr "יצירת משתמשים"
314
 
315
- #: ../ure-lib.php:557
316
  msgid "Unfiltered upload"
317
  msgstr "העלאת קבצים חופשית"
318
 
319
- #: ../ure-lib.php:558
320
  msgid "Edit dashboard"
321
  msgstr "שינוי לוח הבקרה"
322
 
323
- #: ../ure-lib.php:559
324
  msgid "Update plugins"
325
  msgstr "עדכון תוספים"
326
 
327
- #: ../ure-lib.php:560
328
  msgid "Delete plugins"
329
  msgstr "מחיקת תוספים"
330
 
331
- #: ../ure-lib.php:561
332
  msgid "Install plugins"
333
  msgstr "התקנת תוספים"
334
 
335
- #: ../ure-lib.php:562
336
  msgid "Update themes"
337
  msgstr "עדכון תבניות"
338
 
339
- #: ../ure-lib.php:563
340
  msgid "Install themes"
341
  msgstr "התקנת תבניות חדשות"
342
 
343
- #: ../ure-lib.php:564
344
  msgid "Update core"
345
  msgstr "עדכון וורדפרס"
346
 
347
- #: ../ure-lib.php:565
348
  msgid "List users"
349
  msgstr "בצפייה במשתמשים"
350
 
351
- #: ../ure-lib.php:566
352
  msgid "Remove users"
353
  msgstr "הסרת משתמשים"
354
 
355
- #: ../ure-lib.php:567
356
  msgid "Add users"
357
  msgstr "הוספת משתמשים"
358
 
359
- #: ../ure-lib.php:568
360
  msgid "Promote users"
361
  msgstr "שינוי משתמשים"
362
 
363
- #: ../ure-lib.php:569
364
  msgid "Edit theme options"
365
  msgstr "עריכת אפשרויות התבנית"
366
 
367
- #: ../ure-lib.php:570
368
  msgid "Delete themes"
369
  msgstr "מחיקת תבניות"
370
 
371
- #: ../ure-lib.php:571
372
  msgid "Export"
373
  msgstr "ייצוא תוכן"
374
 
375
- #: ../ure-lib.php:655
376
  msgid "Error: Capability name must contain latin characters and digits only!"
377
  msgstr "שגיאה! שם יכולת חייב להכיל אותיות באנגלית וספרות בלבד"
378
 
379
- #: ../ure-lib.php:667
380
  #, php-format
381
  msgid "Capability %s is added successfully"
382
  msgstr "היכולת %s נוספה בהצלחה"
383
 
384
- #: ../ure-lib.php:669
385
  #, php-format
386
  msgid "Capability %s exists already"
387
  msgstr "כבר קיימת יכולת בשם %s"
388
 
389
- #: ../ure-lib.php:818
390
  #, php-format
391
  msgid "Error! You do not have permission to delete this capability: %s!"
392
  msgstr "שגיאה! אין לך הרשאה למחוק את היכולת %s"
393
 
394
- #: ../ure-lib.php:840
395
  #, php-format
396
  msgid "Capability %s is removed successfully"
397
  msgstr "היכולת %s הוסרה בהצלחה"
398
 
399
- #: ../ure-lib.php:902
400
  msgid "Help"
401
  msgstr "עזרה"
402
 
403
- #: ../ure-role-edit.php:29
404
  msgid "None"
405
  msgstr "תרום"
406
 
407
- #: ../ure-role-edit.php:93
408
  msgid " Name can not be empty!"
409
  msgstr "שם לא יכול להשאר ריק!"
410
 
411
- #: ../ure-role-edit.php:97
412
  msgid " Name must contain latin characters and digits only!"
413
  msgstr "שם חייב להכיל אותיות באנגלית וספרות בלבד!"
414
 
415
- #: ../ure-role-edit.php:102
416
- #: ../ure-role-edit.php:293
417
  msgid "Delete Role"
418
  msgstr "מחיקת סוג משתמש"
419
 
420
- #: ../ure-role-edit.php:104
421
  msgid "Change Default Role"
422
  msgstr "שנה את סוג משתמש המוגדר כברירת מחדל"
423
 
424
- #: ../ure-role-edit.php:106
425
  msgid "Restore Roles from backup copy. Be careful, backup was created when you started URE 1st time. All changes you made after that will be lost"
426
  msgstr "שחזור עותק גיבוי של תפקידים. שים לב: הגיבוי נוצר מתי שהתחלת להשתמש בתוסף בפעם הראשונה, כל השינויים שביצעת לאחר מכן יאבדו."
427
 
428
- #: ../ure-role-edit.php:108
429
  msgid "Warning! Be careful - removing critical capability could crash some plugin or other custom code"
430
  msgstr "זהירות! הסרה של אפשרויות קריטיות עשוי לגרום לתוספים מסוים או קוד נסמך שלא לעבוד כשורה"
431
 
432
- #: ../ure-role-edit.php:110
433
  msgid "Please confirm to continue"
434
  msgstr "אשר את הפעולה והמשך"
435
 
436
- #: ../ure-role-edit.php:147
437
  #, php-format
438
  msgid "Role \"%s\" update: please confirm to continue"
439
  msgstr "סוג המשתמש \"%s\" עודכן: אנא אשר והמשך"
440
 
441
- #: ../ure-role-edit.php:155
442
  msgid "Select Role and change its capabilities list"
443
  msgstr "בחר סוג משתמש ושנה את היכולות שלו"
444
 
445
- #: ../ure-role-edit.php:157
446
  msgid "Select Role:"
447
  msgstr "בחר סוג משתמש"
448
 
449
- #: ../ure-role-edit.php:167
450
- #: ../ure-user-edit.php:91
451
  msgid "Show capabilities in human readable form"
452
  msgstr "הראה יכולות משתמשים בשפה קריאה"
453
 
454
- #: ../ure-role-edit.php:176
455
- #: ../ure-user-edit.php:100
456
  msgid "Show deprecated capabilities"
457
  msgstr "הצג הרשאות לפי מספר"
458
 
459
- #: ../ure-role-edit.php:180
460
  msgid "If checked, then apply action to ALL sites of this Network"
461
  msgstr "אם סומן, החל פעולה על כל האתרים ברשת זאת"
462
 
463
- #: ../ure-role-edit.php:190
464
  msgid "Apply to All Sites"
465
  msgstr "החל על כל האתרים"
466
 
467
- #: ../ure-role-edit.php:251
468
- #: ../ure-user-edit.php:163
 
 
 
 
 
 
 
 
 
 
 
 
469
  msgid "Update"
470
  msgstr "עדכן"
471
 
472
- #: ../ure-role-edit.php:251
473
- #: ../ure-user-edit.php:163
474
  msgid "Save Changes"
475
  msgstr "שמור שינויים"
476
 
477
- #: ../ure-role-edit.php:252
478
- #: ../ure-user-edit.php:164
479
  msgid "Cancel"
480
  msgstr "ביטול"
481
 
482
- #: ../ure-role-edit.php:252
483
- #: ../ure-user-edit.php:164
484
  msgid "Cancel not saved changes"
485
  msgstr "בטל שינויים שלא נשמרו"
486
 
487
- #: ../ure-role-edit.php:255
488
  msgid "Select All"
489
  msgstr ""
490
 
491
- #: ../ure-role-edit.php:255
492
  msgid "Select All Capabilities"
493
  msgstr ""
494
 
495
- #: ../ure-role-edit.php:256
496
  msgid "Unselect All"
497
  msgstr ""
498
 
499
- #: ../ure-role-edit.php:256
500
  msgid "Unselect All Capabilities"
501
  msgstr ""
502
 
503
- #: ../ure-role-edit.php:257
504
  msgid "Reverse"
505
  msgstr ""
506
 
507
- #: ../ure-role-edit.php:257
508
  msgid "Turn checked capabilities off and vise versa"
509
  msgstr ""
510
 
511
- #: ../ure-role-edit.php:260
512
  msgid "Reset"
513
  msgstr "איפוס"
514
 
515
- #: ../ure-role-edit.php:260
516
  msgid "Restore Roles from backup copy"
517
  msgstr "שחזר סוגי משתמשים מהעתק הגיבוי"
518
 
519
- #: ../ure-role-edit.php:270
520
  msgid "Add New Role"
521
  msgstr "הוסף סוג משתמש חדש"
522
 
523
- #: ../ure-role-edit.php:272
524
  msgid "Name: "
525
  msgstr "שם:"
526
 
527
- #: ../ure-role-edit.php:276
528
  msgid "Make copy of: "
529
  msgstr "העתק:"
530
 
531
- #: ../ure-role-edit.php:279
532
- #: ../ure-role-edit.php:308
533
  msgid "Add"
534
  msgstr "הוסף"
535
 
536
- #: ../ure-role-edit.php:279
537
  msgid "Add New User Role"
538
  msgstr "הוסף סוג משתמש חדש"
539
 
540
- #: ../ure-role-edit.php:283
541
  msgid "Default Role for New User"
542
  msgstr "סוג משתמש ברירת מחדל למשתמשים חדשים"
543
 
544
- #: ../ure-role-edit.php:288
545
  msgid "Change"
546
  msgstr "שנה"
547
 
548
- #: ../ure-role-edit.php:288
549
  msgid "Set as Default User Role"
550
  msgstr "קבע כסוג משתמש ברירת מחדל"
551
 
552
- #: ../ure-role-edit.php:298
553
  msgid "Delete"
554
  msgstr "למחוק"
555
 
556
- #: ../ure-role-edit.php:298
557
  msgid "Delete User Role"
558
  msgstr "מחק סוג משתמש"
559
 
560
- #: ../ure-role-edit.php:303
561
- #: ../ure-role-edit.php:308
562
  msgid "Add New Capability"
563
  msgstr "הוסף יכולת חדשה"
564
 
565
- #: ../ure-role-edit.php:313
566
  msgid "Remove Capability"
567
  msgstr "הסר יכולת"
568
 
569
- #: ../ure-role-edit.php:318
570
  msgid "Remove"
571
  msgstr "הסר"
572
 
573
- #: ../ure-role-edit.php:318
574
  msgid "Remove User Capability"
575
  msgstr "הסר יכולת משתמש"
576
 
577
- #: ../ure-user-edit.php:67
578
  #, php-format
579
  msgid "User \"%s\" update: please confirm to continue"
580
  msgstr "עדכון המשתמש \"%s\" : אנא אשר והמשך"
581
 
582
- #: ../ure-user-edit.php:79
583
  msgid "Change capabilities for user"
584
  msgstr "שינוי יכולות המשתמש"
585
 
586
- #: ../ure-user-edit.php:82
587
  msgid "Role:"
588
  msgstr "סוג משתמש"
589
 
590
- #: ../ure-user-edit.php:104
591
  msgid "Add capabilities to this user:"
592
  msgstr "הוסף יכולות למשתמש זה:"
593
 
594
- #: ../ure-options.php:59
595
  msgid "User Roles are restored from the backup data. "
596
  msgstr "יכולות סוגי המשתמשים שוחזרו מקובץ הגיבוי"
597
 
598
- #: ../ure-options.php:125
599
  msgid "Error: "
600
  msgstr "שגיאה:"
601
 
602
- #: ../ure-options.php:125
603
- #: ../ure-options.php:143
604
  msgid "Role"
605
  msgstr "סוג משתמש:"
606
 
607
- #: ../ure-options.php:125
608
  msgid "does not exist"
609
  msgstr "לא נמצא"
610
 
611
- #: ../ure-options.php:143
612
  msgid "is updated successfully"
613
  msgstr "עודכן בהצלחה"
614
 
615
- #: ../ure-options.php:152
616
  msgid "User"
617
  msgstr "משתמש"
618
 
619
- #: ../ure-options.php:152
620
  msgid "capabilities are updated successfully"
621
  msgstr "היכולות עודכנו בהצלחה"
622
 
623
- #: ../ure-options.php:215
624
  msgid "About this Plugin:"
625
  msgstr "אודות תוסף זה:"
626
 
627
- #: ../ure-options.php:216
628
  msgid "Author's website"
629
  msgstr "אתר היוצר"
630
 
631
- #: ../ure-options.php:217
632
  msgid "Plugin webpage"
633
  msgstr "דף התוסף"
634
 
635
- #: ../ure-options.php:219
636
  msgid "FAQ"
637
  msgstr "שאלות נפוצות"
638
 
639
- #: ../ure-options.php:220
640
  msgid "Greetings"
641
  msgstr ""
642
 
643
- #: ../ure-options.php:242
644
  msgid "Greetings:"
645
  msgstr "ברכות:"
646
 
647
- #: ../ure-options.php:243
648
  msgid "It's me, the author"
649
  msgstr "זה אני, יוצר התוסף"
650
 
651
- #: ../ure-options.php:244
652
  msgid "For the help with Belorussian translation"
653
  msgstr "לעזרה עם תרגום לבלרוסית"
654
 
655
- #: ../ure-options.php:245
656
  msgid "For the help with Brasilian translation"
657
  msgstr "לעזרה עם תרגום לברזילאית"
658
 
659
- #: ../ure-options.php:246
 
 
 
 
 
660
  msgid "For the help with Chinese translation"
661
  msgstr "לעזרה עם תרגום לסינית"
662
 
663
- #: ../ure-options.php:247
664
  msgid "For the help with Dutch translation"
665
  msgstr "לעזרה עם תרגום להולנדית"
666
 
667
- #: ../ure-options.php:248
668
  msgid "For the help with Finnish translation"
669
  msgstr "לעזרה עם תרגום לפינית"
670
 
671
- #: ../ure-options.php:249
672
- #: ../ure-options.php:250
673
  msgid "For the help with French translation"
674
  msgstr "לעזרה עם תרגום לצרפתית"
675
 
676
- #: ../ure-options.php:251
677
  msgid "For the help with German translation"
678
  msgstr "לעזרה עם תרגום לגרמנית"
679
 
680
- #: ../ure-options.php:252
681
- #: ../ure-options.php:253
682
  msgid "For the help with Hebrew translation"
683
  msgstr ""
684
 
685
- #: ../ure-options.php:254
686
  msgid "For the help with Hindi translation"
687
  msgstr ""
688
 
689
- #: ../ure-options.php:255
690
  msgid "For the help with Hungarian translation"
691
  msgstr "לעזרה עם תרגום להונגרית"
692
 
693
- #: ../ure-options.php:256
694
- #: ../ure-options.php:257
695
  msgid "For the help with Italian translation"
696
  msgstr "לעזרה עם תרגום לאילטקית"
697
 
698
- #: ../ure-options.php:258
699
  msgid "For the help with Japanese translation"
700
  msgstr "לעזרה עם תרגום ליפנית"
701
 
702
- #: ../ure-options.php:259
703
  msgid "For the help with Lithuanian translation"
704
  msgstr ""
705
 
706
- #: ../ure-options.php:260
707
- #: ../ure-options.php:261
 
708
  msgid "For the help with Persian translation"
709
  msgstr "לעזרה עם תרגום לפרסית"
710
 
711
- #: ../ure-options.php:262
 
712
  msgid "For the help with Polish translation"
713
  msgstr "לעזרה עם תרגום לפולנית"
714
 
715
- #: ../ure-options.php:263
716
- #: ../ure-options.php:264
717
  msgid "For the help with Spanish translation"
718
  msgstr "לעזרה עם תרגום לספרדית"
719
 
720
- #: ../ure-options.php:265
721
  msgid "For the updated Swedish translation"
722
  msgstr ""
723
 
724
- #: ../ure-options.php:266
725
  msgid "For the help with Swedish translation"
726
  msgstr "לעזרה עם תרגום לשוודית"
727
 
728
- #: ../ure-options.php:267
729
  msgid "For the help with Turkish translation"
730
  msgstr "לעזרה עם תרגום לטורקית"
731
 
732
- #: ../ure-options.php:269
733
  msgid "For the code to hide administrator role"
734
  msgstr "עבור קוד כדי להחביא את סוג משתמש מנהל"
735
 
736
- #: ../ure-options.php:270
737
  msgid "For the code enhancement suggestion"
738
  msgstr "הצעות לשיפור קוד"
739
 
740
- #: ../ure-options.php:272
741
  msgid "Do you wish to see your name with link to your site here? You are welcome! Your help with translation and new ideas are very appreciated."
742
  msgstr "רוצה לראות את השם שלך עם קישור אל האתר שלך כאן? אתה מוזמן לעזור עם התרגום ועם רעיונות ושיפורים חדשים"
743
 
2
  msgstr ""
3
  "Project-Id-Version: User Role Editor\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-09-01 08:46+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"
30
  msgid "User Role Editor requires PHP 5.0 or newer."
31
  msgstr "התוסף User Role Editor מחייב אחסון עם PHP 5.0 ומעלה"
32
 
33
+ #: ../user-role-editor.php:76
34
  msgid "Only"
35
  msgstr "רק"
36
 
37
+ #: ../user-role-editor.php:76
38
  msgid "is allowed to use"
39
  msgstr "מותר לשימוש"
40
 
41
+ #: ../user-role-editor.php:82
42
+ #: ../user-role-editor.php:251
43
  msgid "User Role Editor"
44
  msgstr "User Role Editor"
45
 
46
+ #: ../user-role-editor.php:223
47
  msgid "Settings"
48
  msgstr "הגדרות"
49
 
50
+ #: ../user-role-editor.php:233
51
+ #: ../includes/ure-options.php:235
52
  msgid "Changelog"
53
  msgstr "יומן שינויים"
54
 
55
+ #: ../user-role-editor.php:280
56
  msgid "Capabilities"
57
  msgstr "יכולות"
58
 
59
+ #: ../includes/ure-lib.php:34
60
  msgid "Error is occur. Please check the log file."
61
  msgstr "ארעה שגיאה, אנא בדוק את קובץ היומן."
62
 
63
+ #: ../includes/ure-lib.php:144
64
  msgid "Database operation error. Check log file."
65
  msgstr "שגיאת מסד נתונים, אנא בדוק את קובץ היומן."
66
 
67
+ #: ../includes/ure-lib.php:177
68
  msgid "No backup data. It is created automatically before the first role data update."
69
  msgstr "אין קובץ גיבוי. מידע זה נוצר באופן אוטומטי לפני השינוי הראשון שאתם עושים בהגדרות סוגי המשתמשים."
70
 
71
+ #: ../includes/ure-lib.php:215
72
  msgid "Backup record is created for the current role capabilities"
73
  msgstr "גיבוי נוצר עבור יכולות סוגי המשתמשים הנוכחיים"
74
 
75
+ #: ../includes/ure-lib.php:329
76
  msgid "Error: Role name must contain latin characters and digits only!"
77
  msgstr "שגיאה! השם של סוג המשתמש חייב להיות מורכב מאותיות באנגלית וספרות בלבד"
78
 
79
+ #: ../includes/ure-lib.php:336
80
  #, php-format
81
  msgid "Role %s exists already"
82
  msgstr "סוג המשתמש %s כבר קיים"
83
 
84
+ #: ../includes/ure-lib.php:349
85
  msgid "Error is encountered during new role create operation"
86
  msgstr "ארעה שגיאה בעת יצירת סוג המשתמש החדש"
87
 
88
+ #: ../includes/ure-lib.php:351
89
  #, php-format
90
  msgid "Role %s is created successfully"
91
  msgstr "סוג המשתמש %s נוצר בהצלחה"
92
 
93
+ #: ../includes/ure-lib.php:435
94
  msgid "Error encountered during role delete operation"
95
  msgstr "ארעה שגיאה במהלך נסיון המחיקה של סוג המשתמש"
96
 
97
+ #: ../includes/ure-lib.php:437
98
  #, php-format
99
  msgid "Role %s is deleted successfully"
100
  msgstr "סוג המשתמש %s נמחק בהצלחה"
101
 
102
+ #: ../includes/ure-lib.php:455
103
  msgid "Error encountered during default role change operation"
104
  msgstr "ארעה שגיאה בעת הנסיון לשנות את סוג משתמש ברירת מחדל"
105
 
106
+ #: ../includes/ure-lib.php:461
107
  #, php-format
108
  msgid "Default role for new users is set to %s successfully"
109
  msgstr "סוג המשתמש %s נקבע כברירת מחדל"
110
 
111
+ #: ../includes/ure-lib.php:489
112
  msgid "Editor"
113
  msgstr "עורך"
114
 
115
+ #: ../includes/ure-lib.php:490
116
  msgid "Author"
117
  msgstr "כותב"
118
 
119
+ #: ../includes/ure-lib.php:491
120
  msgid "Contributor"
121
  msgstr "תורם"
122
 
123
+ #: ../includes/ure-lib.php:492
124
  msgid "Subscriber"
125
  msgstr "מנוי"
126
 
127
+ #: ../includes/ure-lib.php:494
128
  msgid "Switch themes"
129
  msgstr "החלפת תבניות"
130
 
131
+ #: ../includes/ure-lib.php:495
132
  msgid "Edit themes"
133
  msgstr "עריכת תבניות"
134
 
135
+ #: ../includes/ure-lib.php:496
136
  msgid "Activate plugins"
137
  msgstr "הפעלת תוספים"
138
 
139
+ #: ../includes/ure-lib.php:497
140
  msgid "Edit plugins"
141
  msgstr "עריכת תוספים"
142
 
143
+ #: ../includes/ure-lib.php:498
144
  msgid "Edit users"
145
  msgstr "עריכת משתמשים"
146
 
147
+ #: ../includes/ure-lib.php:499
148
  msgid "Edit files"
149
  msgstr "עריכת קבצים"
150
 
151
+ #: ../includes/ure-lib.php:500
152
  msgid "Manage options"
153
  msgstr "ניהול אפשרויות אתר"
154
 
155
+ #: ../includes/ure-lib.php:501
156
  msgid "Moderate comments"
157
  msgstr "ניהול תגובות"
158
 
159
+ #: ../includes/ure-lib.php:502
160
  msgid "Manage categories"
161
  msgstr "ניהול קטגוריות"
162
 
163
+ #: ../includes/ure-lib.php:503
164
  msgid "Manage links"
165
  msgstr "ניהול קישורים"
166
 
167
+ #: ../includes/ure-lib.php:504
168
  msgid "Upload files"
169
  msgstr "העלאת קבצים"
170
 
171
+ #: ../includes/ure-lib.php:505
172
  msgid "Import"
173
  msgstr "יבוא"
174
 
175
+ #: ../includes/ure-lib.php:506
176
  msgid "Unfiltered html"
177
  msgstr "עריכת HTML"
178
 
179
+ #: ../includes/ure-lib.php:507
180
  msgid "Edit posts"
181
  msgstr "עריכת פוסטים"
182
 
183
+ #: ../includes/ure-lib.php:508
184
  msgid "Edit others posts"
185
  msgstr "עריכת פוסטים של אחרים"
186
 
187
+ #: ../includes/ure-lib.php:509
188
  msgid "Edit published posts"
189
  msgstr "עריכת פוסטים שפורסמו"
190
 
191
+ #: ../includes/ure-lib.php:510
192
  msgid "Publish posts"
193
  msgstr "פוסטים שפורסמו"
194
 
195
+ #: ../includes/ure-lib.php:511
196
  msgid "Edit pages"
197
  msgstr "עריכת עמודים"
198
 
199
+ #: ../includes/ure-lib.php:512
200
  msgid "Read"
201
  msgstr "קורא"
202
 
203
+ #: ../includes/ure-lib.php:513
204
  msgid "Level 10"
205
  msgstr "דרגה 10"
206
 
207
+ #: ../includes/ure-lib.php:514
208
  msgid "Level 9"
209
  msgstr "דרגה 9"
210
 
211
+ #: ../includes/ure-lib.php:515
212
  msgid "Level 8"
213
  msgstr "דרגה 8"
214
 
215
+ #: ../includes/ure-lib.php:516
216
  msgid "Level 7"
217
  msgstr "דרגה 7"
218
 
219
+ #: ../includes/ure-lib.php:517
220
  msgid "Level 6"
221
  msgstr "דרגה 6"
222
 
223
+ #: ../includes/ure-lib.php:518
224
  msgid "Level 5"
225
  msgstr "דרגה 5"
226
 
227
+ #: ../includes/ure-lib.php:519
228
  msgid "Level 4"
229
  msgstr "דרגה 4"
230
 
231
+ #: ../includes/ure-lib.php:520
232
  msgid "Level 3"
233
  msgstr "דרגה 3"
234
 
235
+ #: ../includes/ure-lib.php:521
236
  msgid "Level 2"
237
  msgstr "דרגה 2"
238
 
239
+ #: ../includes/ure-lib.php:522
240
  msgid "Level 1"
241
  msgstr "דרגה 1"
242
 
243
+ #: ../includes/ure-lib.php:523
244
  msgid "Level 0"
245
  msgstr "דרגה 0"
246
 
247
+ #: ../includes/ure-lib.php:524
248
  msgid "Edit others pages"
249
  msgstr "עריכת דפים של אחרים"
250
 
251
+ #: ../includes/ure-lib.php:525
252
  msgid "Edit published pages"
253
  msgstr "עריכת דפים שפורסמו"
254
 
255
+ #: ../includes/ure-lib.php:526
256
  msgid "Publish pages"
257
  msgstr "פרסום דפים"
258
 
259
+ #: ../includes/ure-lib.php:527
260
  msgid "Delete pages"
261
  msgstr "מחיקת דפים"
262
 
263
+ #: ../includes/ure-lib.php:528
264
  msgid "Delete others pages"
265
  msgstr "מחיקת דפים של אחרים"
266
 
267
+ #: ../includes/ure-lib.php:529
268
  msgid "Delete published pages"
269
  msgstr "מחיקת דפים שפורסמו"
270
 
271
+ #: ../includes/ure-lib.php:530
272
  msgid "Delete posts"
273
  msgstr "מחיקת פוסטים"
274
 
275
+ #: ../includes/ure-lib.php:531
276
  msgid "Delete others posts"
277
  msgstr "מחיקת פוסטים של אחרים"
278
 
279
+ #: ../includes/ure-lib.php:532
280
  msgid "Delete published posts"
281
  msgstr "מחיקת פוסטים שפורסמו"
282
 
283
+ #: ../includes/ure-lib.php:533
284
  msgid "Delete private posts"
285
  msgstr "מחיקת פוסטים פרטיים"
286
 
287
+ #: ../includes/ure-lib.php:534
288
  msgid "Edit private posts"
289
  msgstr "עריכת פוסטים פרטיים"
290
 
291
+ #: ../includes/ure-lib.php:535
292
  msgid "Read private posts"
293
  msgstr "קריאת פוסטים פרטיים"
294
 
295
+ #: ../includes/ure-lib.php:536
296
  msgid "Delete private pages"
297
  msgstr "מחיקת עמודים פרטיים"
298
 
299
+ #: ../includes/ure-lib.php:537
300
  msgid "Edit private pages"
301
  msgstr "מחיקת עמודים פרטיים"
302
 
303
+ #: ../includes/ure-lib.php:538
304
  msgid "Read private pages"
305
  msgstr "קריאת עמודים פרטיים"
306
 
307
+ #: ../includes/ure-lib.php:539
308
  msgid "Delete users"
309
  msgstr "מחיקת משתמשים"
310
 
311
+ #: ../includes/ure-lib.php:540
312
  msgid "Create users"
313
  msgstr "יצירת משתמשים"
314
 
315
+ #: ../includes/ure-lib.php:541
316
  msgid "Unfiltered upload"
317
  msgstr "העלאת קבצים חופשית"
318
 
319
+ #: ../includes/ure-lib.php:542
320
  msgid "Edit dashboard"
321
  msgstr "שינוי לוח הבקרה"
322
 
323
+ #: ../includes/ure-lib.php:543
324
  msgid "Update plugins"
325
  msgstr "עדכון תוספים"
326
 
327
+ #: ../includes/ure-lib.php:544
328
  msgid "Delete plugins"
329
  msgstr "מחיקת תוספים"
330
 
331
+ #: ../includes/ure-lib.php:545
332
  msgid "Install plugins"
333
  msgstr "התקנת תוספים"
334
 
335
+ #: ../includes/ure-lib.php:546
336
  msgid "Update themes"
337
  msgstr "עדכון תבניות"
338
 
339
+ #: ../includes/ure-lib.php:547
340
  msgid "Install themes"
341
  msgstr "התקנת תבניות חדשות"
342
 
343
+ #: ../includes/ure-lib.php:548
344
  msgid "Update core"
345
  msgstr "עדכון וורדפרס"
346
 
347
+ #: ../includes/ure-lib.php:549
348
  msgid "List users"
349
  msgstr "בצפייה במשתמשים"
350
 
351
+ #: ../includes/ure-lib.php:550
352
  msgid "Remove users"
353
  msgstr "הסרת משתמשים"
354
 
355
+ #: ../includes/ure-lib.php:551
356
  msgid "Add users"
357
  msgstr "הוספת משתמשים"
358
 
359
+ #: ../includes/ure-lib.php:552
360
  msgid "Promote users"
361
  msgstr "שינוי משתמשים"
362
 
363
+ #: ../includes/ure-lib.php:553
364
  msgid "Edit theme options"
365
  msgstr "עריכת אפשרויות התבנית"
366
 
367
+ #: ../includes/ure-lib.php:554
368
  msgid "Delete themes"
369
  msgstr "מחיקת תבניות"
370
 
371
+ #: ../includes/ure-lib.php:555
372
  msgid "Export"
373
  msgstr "ייצוא תוכן"
374
 
375
+ #: ../includes/ure-lib.php:639
376
  msgid "Error: Capability name must contain latin characters and digits only!"
377
  msgstr "שגיאה! שם יכולת חייב להכיל אותיות באנגלית וספרות בלבד"
378
 
379
+ #: ../includes/ure-lib.php:651
380
  #, php-format
381
  msgid "Capability %s is added successfully"
382
  msgstr "היכולת %s נוספה בהצלחה"
383
 
384
+ #: ../includes/ure-lib.php:653
385
  #, php-format
386
  msgid "Capability %s exists already"
387
  msgstr "כבר קיימת יכולת בשם %s"
388
 
389
+ #: ../includes/ure-lib.php:802
390
  #, php-format
391
  msgid "Error! You do not have permission to delete this capability: %s!"
392
  msgstr "שגיאה! אין לך הרשאה למחוק את היכולת %s"
393
 
394
+ #: ../includes/ure-lib.php:824
395
  #, php-format
396
  msgid "Capability %s is removed successfully"
397
  msgstr "היכולת %s הוסרה בהצלחה"
398
 
399
+ #: ../includes/ure-lib.php:889
400
  msgid "Help"
401
  msgstr "עזרה"
402
 
403
+ #: ../includes/ure-role-edit.php:29
404
  msgid "None"
405
  msgstr "תרום"
406
 
407
+ #: ../includes/ure-role-edit.php:101
408
  msgid " Name can not be empty!"
409
  msgstr "שם לא יכול להשאר ריק!"
410
 
411
+ #: ../includes/ure-role-edit.php:105
412
  msgid " Name must contain latin characters and digits only!"
413
  msgstr "שם חייב להכיל אותיות באנגלית וספרות בלבד!"
414
 
415
+ #: ../includes/ure-role-edit.php:110
416
+ #: ../includes/ure-role-edit.php:367
417
  msgid "Delete Role"
418
  msgstr "מחיקת סוג משתמש"
419
 
420
+ #: ../includes/ure-role-edit.php:112
421
  msgid "Change Default Role"
422
  msgstr "שנה את סוג משתמש המוגדר כברירת מחדל"
423
 
424
+ #: ../includes/ure-role-edit.php:114
425
  msgid "Restore Roles from backup copy. Be careful, backup was created when you started URE 1st time. All changes you made after that will be lost"
426
  msgstr "שחזור עותק גיבוי של תפקידים. שים לב: הגיבוי נוצר מתי שהתחלת להשתמש בתוסף בפעם הראשונה, כל השינויים שביצעת לאחר מכן יאבדו."
427
 
428
+ #: ../includes/ure-role-edit.php:116
429
  msgid "Warning! Be careful - removing critical capability could crash some plugin or other custom code"
430
  msgstr "זהירות! הסרה של אפשרויות קריטיות עשוי לגרום לתוספים מסוים או קוד נסמך שלא לעבוד כשורה"
431
 
432
+ #: ../includes/ure-role-edit.php:118
433
  msgid "Please confirm to continue"
434
  msgstr "אשר את הפעולה והמשך"
435
 
436
+ #: ../includes/ure-role-edit.php:155
437
  #, php-format
438
  msgid "Role \"%s\" update: please confirm to continue"
439
  msgstr "סוג המשתמש \"%s\" עודכן: אנא אשר והמשך"
440
 
441
+ #: ../includes/ure-role-edit.php:163
442
  msgid "Select Role and change its capabilities list"
443
  msgstr "בחר סוג משתמש ושנה את היכולות שלו"
444
 
445
+ #: ../includes/ure-role-edit.php:165
446
  msgid "Select Role:"
447
  msgstr "בחר סוג משתמש"
448
 
449
+ #: ../includes/ure-role-edit.php:175
450
+ #: ../includes/ure-user-edit.php:91
451
  msgid "Show capabilities in human readable form"
452
  msgstr "הראה יכולות משתמשים בשפה קריאה"
453
 
454
+ #: ../includes/ure-role-edit.php:184
455
+ #: ../includes/ure-user-edit.php:100
456
  msgid "Show deprecated capabilities"
457
  msgstr "הצג הרשאות לפי מספר"
458
 
459
+ #: ../includes/ure-role-edit.php:188
460
  msgid "If checked, then apply action to ALL sites of this Network"
461
  msgstr "אם סומן, החל פעולה על כל האתרים ברשת זאת"
462
 
463
+ #: ../includes/ure-role-edit.php:198
464
  msgid "Apply to All Sites"
465
  msgstr "החל על כל האתרים"
466
 
467
+ #: ../includes/ure-role-edit.php:205
468
+ #: ../includes/ure-user-edit.php:105
469
+ #, fuzzy
470
+ msgid "Core capabilities:"
471
+ msgstr "יכולות"
472
+
473
+ #: ../includes/ure-role-edit.php:268
474
+ #: ../includes/ure-user-edit.php:167
475
+ #, fuzzy
476
+ msgid "Custom capabilities:"
477
+ msgstr "יכולות"
478
+
479
+ #: ../includes/ure-role-edit.php:319
480
+ #: ../includes/ure-user-edit.php:222
481
  msgid "Update"
482
  msgstr "עדכן"
483
 
484
+ #: ../includes/ure-role-edit.php:319
485
+ #: ../includes/ure-user-edit.php:222
486
  msgid "Save Changes"
487
  msgstr "שמור שינויים"
488
 
489
+ #: ../includes/ure-role-edit.php:320
490
+ #: ../includes/ure-user-edit.php:223
491
  msgid "Cancel"
492
  msgstr "ביטול"
493
 
494
+ #: ../includes/ure-role-edit.php:320
495
+ #: ../includes/ure-user-edit.php:223
496
  msgid "Cancel not saved changes"
497
  msgstr "בטל שינויים שלא נשמרו"
498
 
499
+ #: ../includes/ure-role-edit.php:323
500
  msgid "Select All"
501
  msgstr ""
502
 
503
+ #: ../includes/ure-role-edit.php:323
504
  msgid "Select All Capabilities"
505
  msgstr ""
506
 
507
+ #: ../includes/ure-role-edit.php:327
508
  msgid "Unselect All"
509
  msgstr ""
510
 
511
+ #: ../includes/ure-role-edit.php:327
512
  msgid "Unselect All Capabilities"
513
  msgstr ""
514
 
515
+ #: ../includes/ure-role-edit.php:328
516
  msgid "Reverse"
517
  msgstr ""
518
 
519
+ #: ../includes/ure-role-edit.php:328
520
  msgid "Turn checked capabilities off and vise versa"
521
  msgstr ""
522
 
523
+ #: ../includes/ure-role-edit.php:334
524
  msgid "Reset"
525
  msgstr "איפוס"
526
 
527
+ #: ../includes/ure-role-edit.php:334
528
  msgid "Restore Roles from backup copy"
529
  msgstr "שחזר סוגי משתמשים מהעתק הגיבוי"
530
 
531
+ #: ../includes/ure-role-edit.php:344
532
  msgid "Add New Role"
533
  msgstr "הוסף סוג משתמש חדש"
534
 
535
+ #: ../includes/ure-role-edit.php:346
536
  msgid "Name: "
537
  msgstr "שם:"
538
 
539
+ #: ../includes/ure-role-edit.php:350
540
  msgid "Make copy of: "
541
  msgstr "העתק:"
542
 
543
+ #: ../includes/ure-role-edit.php:353
544
+ #: ../includes/ure-role-edit.php:382
545
  msgid "Add"
546
  msgstr "הוסף"
547
 
548
+ #: ../includes/ure-role-edit.php:353
549
  msgid "Add New User Role"
550
  msgstr "הוסף סוג משתמש חדש"
551
 
552
+ #: ../includes/ure-role-edit.php:357
553
  msgid "Default Role for New User"
554
  msgstr "סוג משתמש ברירת מחדל למשתמשים חדשים"
555
 
556
+ #: ../includes/ure-role-edit.php:362
557
  msgid "Change"
558
  msgstr "שנה"
559
 
560
+ #: ../includes/ure-role-edit.php:362
561
  msgid "Set as Default User Role"
562
  msgstr "קבע כסוג משתמש ברירת מחדל"
563
 
564
+ #: ../includes/ure-role-edit.php:372
565
  msgid "Delete"
566
  msgstr "למחוק"
567
 
568
+ #: ../includes/ure-role-edit.php:372
569
  msgid "Delete User Role"
570
  msgstr "מחק סוג משתמש"
571
 
572
+ #: ../includes/ure-role-edit.php:377
573
+ #: ../includes/ure-role-edit.php:382
574
  msgid "Add New Capability"
575
  msgstr "הוסף יכולת חדשה"
576
 
577
+ #: ../includes/ure-role-edit.php:387
578
  msgid "Remove Capability"
579
  msgstr "הסר יכולת"
580
 
581
+ #: ../includes/ure-role-edit.php:392
582
  msgid "Remove"
583
  msgstr "הסר"
584
 
585
+ #: ../includes/ure-role-edit.php:392
586
  msgid "Remove User Capability"
587
  msgstr "הסר יכולת משתמש"
588
 
589
+ #: ../includes/ure-user-edit.php:67
590
  #, php-format
591
  msgid "User \"%s\" update: please confirm to continue"
592
  msgstr "עדכון המשתמש \"%s\" : אנא אשר והמשך"
593
 
594
+ #: ../includes/ure-user-edit.php:79
595
  msgid "Change capabilities for user"
596
  msgstr "שינוי יכולות המשתמש"
597
 
598
+ #: ../includes/ure-user-edit.php:82
599
  msgid "Role:"
600
  msgstr "סוג משתמש"
601
 
602
+ #: ../includes/ure-user-edit.php:104
603
  msgid "Add capabilities to this user:"
604
  msgstr "הוסף יכולות למשתמש זה:"
605
 
606
+ #: ../includes/ure-options.php:59
607
  msgid "User Roles are restored from the backup data. "
608
  msgstr "יכולות סוגי המשתמשים שוחזרו מקובץ הגיבוי"
609
 
610
+ #: ../includes/ure-options.php:130
611
  msgid "Error: "
612
  msgstr "שגיאה:"
613
 
614
+ #: ../includes/ure-options.php:130
615
+ #: ../includes/ure-options.php:146
616
  msgid "Role"
617
  msgstr "סוג משתמש:"
618
 
619
+ #: ../includes/ure-options.php:130
620
  msgid "does not exist"
621
  msgstr "לא נמצא"
622
 
623
+ #: ../includes/ure-options.php:146
624
  msgid "is updated successfully"
625
  msgstr "עודכן בהצלחה"
626
 
627
+ #: ../includes/ure-options.php:154
628
  msgid "User"
629
  msgstr "משתמש"
630
 
631
+ #: ../includes/ure-options.php:154
632
  msgid "capabilities are updated successfully"
633
  msgstr "היכולות עודכנו בהצלחה"
634
 
635
+ #: ../includes/ure-options.php:232
636
  msgid "About this Plugin:"
637
  msgstr "אודות תוסף זה:"
638
 
639
+ #: ../includes/ure-options.php:233
640
  msgid "Author's website"
641
  msgstr "אתר היוצר"
642
 
643
+ #: ../includes/ure-options.php:234
644
  msgid "Plugin webpage"
645
  msgstr "דף התוסף"
646
 
647
+ #: ../includes/ure-options.php:236
648
  msgid "FAQ"
649
  msgstr "שאלות נפוצות"
650
 
651
+ #: ../includes/ure-options.php:237
652
  msgid "Greetings"
653
  msgstr ""
654
 
655
+ #: ../includes/ure-options.php:259
656
  msgid "Greetings:"
657
  msgstr "ברכות:"
658
 
659
+ #: ../includes/ure-options.php:260
660
  msgid "It's me, the author"
661
  msgstr "זה אני, יוצר התוסף"
662
 
663
+ #: ../includes/ure-options.php:261
664
  msgid "For the help with Belorussian translation"
665
  msgstr "לעזרה עם תרגום לבלרוסית"
666
 
667
+ #: ../includes/ure-options.php:262
668
  msgid "For the help with Brasilian translation"
669
  msgstr "לעזרה עם תרגום לברזילאית"
670
 
671
+ #: ../includes/ure-options.php:263
672
+ #, fuzzy
673
+ msgid "For the help with Brasilian Portuguese translation"
674
+ msgstr "לעזרה עם תרגום לברזילאית"
675
+
676
+ #: ../includes/ure-options.php:264
677
  msgid "For the help with Chinese translation"
678
  msgstr "לעזרה עם תרגום לסינית"
679
 
680
+ #: ../includes/ure-options.php:265
681
  msgid "For the help with Dutch translation"
682
  msgstr "לעזרה עם תרגום להולנדית"
683
 
684
+ #: ../includes/ure-options.php:266
685
  msgid "For the help with Finnish translation"
686
  msgstr "לעזרה עם תרגום לפינית"
687
 
688
+ #: ../includes/ure-options.php:267
689
+ #: ../includes/ure-options.php:268
690
  msgid "For the help with French translation"
691
  msgstr "לעזרה עם תרגום לצרפתית"
692
 
693
+ #: ../includes/ure-options.php:269
694
  msgid "For the help with German translation"
695
  msgstr "לעזרה עם תרגום לגרמנית"
696
 
697
+ #: ../includes/ure-options.php:270
698
+ #: ../includes/ure-options.php:271
699
  msgid "For the help with Hebrew translation"
700
  msgstr ""
701
 
702
+ #: ../includes/ure-options.php:272
703
  msgid "For the help with Hindi translation"
704
  msgstr ""
705
 
706
+ #: ../includes/ure-options.php:273
707
  msgid "For the help with Hungarian translation"
708
  msgstr "לעזרה עם תרגום להונגרית"
709
 
710
+ #: ../includes/ure-options.php:274
711
+ #: ../includes/ure-options.php:275
712
  msgid "For the help with Italian translation"
713
  msgstr "לעזרה עם תרגום לאילטקית"
714
 
715
+ #: ../includes/ure-options.php:276
716
  msgid "For the help with Japanese translation"
717
  msgstr "לעזרה עם תרגום ליפנית"
718
 
719
+ #: ../includes/ure-options.php:277
720
  msgid "For the help with Lithuanian translation"
721
  msgstr ""
722
 
723
+ #: ../includes/ure-options.php:278
724
+ #: ../includes/ure-options.php:279
725
+ #: ../includes/ure-options.php:280
726
  msgid "For the help with Persian translation"
727
  msgstr "לעזרה עם תרגום לפרסית"
728
 
729
+ #: ../includes/ure-options.php:281
730
+ #: ../includes/ure-options.php:282
731
  msgid "For the help with Polish translation"
732
  msgstr "לעזרה עם תרגום לפולנית"
733
 
734
+ #: ../includes/ure-options.php:283
735
+ #: ../includes/ure-options.php:284
736
  msgid "For the help with Spanish translation"
737
  msgstr "לעזרה עם תרגום לספרדית"
738
 
739
+ #: ../includes/ure-options.php:285
740
  msgid "For the updated Swedish translation"
741
  msgstr ""
742
 
743
+ #: ../includes/ure-options.php:286
744
  msgid "For the help with Swedish translation"
745
  msgstr "לעזרה עם תרגום לשוודית"
746
 
747
+ #: ../includes/ure-options.php:287
748
  msgid "For the help with Turkish translation"
749
  msgstr "לעזרה עם תרגום לטורקית"
750
 
751
+ #: ../includes/ure-options.php:289
752
  msgid "For the code to hide administrator role"
753
  msgstr "עבור קוד כדי להחביא את סוג משתמש מנהל"
754
 
755
+ #: ../includes/ure-options.php:290
756
  msgid "For the code enhancement suggestion"
757
  msgstr "הצעות לשיפור קוד"
758
 
759
+ #: ../includes/ure-options.php:292
760
  msgid "Do you wish to see your name with link to your site here? You are welcome! Your help with translation and new ideas are very appreciated."
761
  msgstr "רוצה לראות את השם שלך עם קישור אל האתר שלך כאן? אתה מוזמן לעזור עם התרגום ועם רעיונות ושיפורים חדשים"
762
 
lang/ure-hi_IN.mo CHANGED
Binary file
lang/ure-hi_IN.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: 2012-06-23 23:18+0700\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Vladimir Garagulya <vladimir@shinephp.com>\n"
8
  "Language-Team: Team Outshine <ash.pr@outshinesolutions.com>\n"
@@ -30,714 +30,733 @@ msgstr "अपडेट करें!"
30
  msgid "User Role Editor requires PHP 5.0 or newer."
31
  msgstr "उपयोगकर्ता भूमिका संपादक PHP 5.0 या नए की आवश्यकता है.s"
32
 
33
- #: ../user-role-editor.php:65
34
  msgid "Only"
35
  msgstr "केवल"
36
 
37
- #: ../user-role-editor.php:65
38
  msgid "is allowed to use"
39
  msgstr "उपयोग करने की अनुमति दी"
40
 
41
- #: ../user-role-editor.php:71
42
- #: ../user-role-editor.php:246
43
  msgid "User Role Editor"
44
  msgstr "उपयोगकर्ता भूमिका संपादक"
45
 
46
- #: ../user-role-editor.php:218
47
  msgid "Settings"
48
  msgstr "सेटिंग्स"
49
 
50
- #: ../user-role-editor.php:228
51
- #: ../ure-options.php:218
52
  msgid "Changelog"
53
  msgstr "Changelog"
54
 
55
- #: ../user-role-editor.php:275
56
  msgid "Capabilities"
57
  msgstr "क्षमताएं"
58
 
59
- #: ../ure-lib.php:45
60
  msgid "Error is occur. Please check the log file."
61
  msgstr "त्रुटि हुई है. लॉग फ़ाइल की जाँच करें."
62
 
63
- #: ../ure-lib.php:155
64
  msgid "Database operation error. Check log file."
65
  msgstr "डेटाबेस आपरेशन त्रुटि. लॉग फ़ाइल की जाँच करें."
66
 
67
- #: ../ure-lib.php:188
68
  msgid "No backup data. It is created automatically before the first role data update."
69
  msgstr "बैकअप डेटानहीं है. यह पहली भूमिका डेटा अद्यतन करने से पहले स्वचालित रूप से बनाया जाता है."
70
 
71
- #: ../ure-lib.php:226
72
  msgid "Backup record is created for the current role capabilities"
73
  msgstr "बैकअप रिकॉर्ड वर्तमान भूमिका क्षमताओं के लिए बनाया जाता है"
74
 
75
- #: ../ure-lib.php:345
76
  msgid "Error: Role name must contain latin characters and digits only!"
77
  msgstr "त्रुटि: भूमिका नाम लैटिन अक्षर और अंक ही होना चाहिए!"
78
 
79
- #: ../ure-lib.php:352
80
  #, php-format
81
  msgid "Role %s exists already"
82
  msgstr "भूमिका %s पहले से मौजूद है"
83
 
84
- #: ../ure-lib.php:365
85
  msgid "Error is encountered during new role create operation"
86
  msgstr "त्रुटि आपरेशन बनाते नई भूमिका के दौरान सामना करना पड़ा है"
87
 
88
- #: ../ure-lib.php:367
89
  #, php-format
90
  msgid "Role %s is created successfully"
91
  msgstr "भूमिका सफलतापूर्वक बनाई गई है %s"
92
 
93
- #: ../ure-lib.php:451
94
  msgid "Error encountered during role delete operation"
95
  msgstr "भूमिका हटा आपरेशन के दौरान त्रुटि का सामना करना पड़ा"
96
 
97
- #: ../ure-lib.php:453
98
  #, php-format
99
  msgid "Role %s is deleted successfully"
100
  msgstr "भूमिका%s को सफलतापूर्वक नष्ट कर दिया है"
101
 
102
- #: ../ure-lib.php:471
103
  msgid "Error encountered during default role change operation"
104
  msgstr "डिफ़ॉल्ट भूमिका बदलने के ऑपरेशन के दौरान त्रुटि का सामना करना पड़ा"
105
 
106
- #: ../ure-lib.php:477
107
  #, php-format
108
  msgid "Default role for new users is set to %s successfully"
109
  msgstr "नए उपयोगकर्ताओं के लिए डिफ़ॉल्ट भूमिका%s करने के लिए सेट कर दिया जाता है "
110
 
111
- #: ../ure-lib.php:505
112
  msgid "Editor"
113
  msgstr "संपादक"
114
 
115
- #: ../ure-lib.php:506
116
  msgid "Author"
117
  msgstr "लेखक"
118
 
119
- #: ../ure-lib.php:507
120
  msgid "Contributor"
121
  msgstr "Contributor"
122
 
123
- #: ../ure-lib.php:508
124
  msgid "Subscriber"
125
  msgstr "ग्राहक"
126
 
127
- #: ../ure-lib.php:510
128
  msgid "Switch themes"
129
  msgstr "विषय स्विच करें"
130
 
131
- #: ../ure-lib.php:511
132
  msgid "Edit themes"
133
  msgstr "संपादन विषय"
134
 
135
- #: ../ure-lib.php:512
136
  msgid "Activate plugins"
137
  msgstr "प्लगिन सक्रिय करें"
138
 
139
- #: ../ure-lib.php:513
140
  msgid "Edit plugins"
141
  msgstr "संपादित करें प्लगिन"
142
 
143
- #: ../ure-lib.php:514
144
  msgid "Edit users"
145
  msgstr "उपयोगकर्ताओं को संपादित करें"
146
 
147
- #: ../ure-lib.php:515
148
  msgid "Edit files"
149
  msgstr "फ़ाइलों को संपादित करें"
150
 
151
- #: ../ure-lib.php:516
152
  msgid "Manage options"
153
  msgstr "विकल्पों को शासन"
154
 
155
- #: ../ure-lib.php:517
156
  msgid "Moderate comments"
157
  msgstr "मध्यम टिप्पणी"
158
 
159
- #: ../ure-lib.php:518
160
  msgid "Manage categories"
161
  msgstr "श्रेणियां प्रबंधित करें"
162
 
163
- #: ../ure-lib.php:519
164
  msgid "Manage links"
165
  msgstr "लिंक प्रबंधित करें"
166
 
167
- #: ../ure-lib.php:520
168
  msgid "Upload files"
169
  msgstr "फ़ाइलें अपलोड करें"
170
 
171
- #: ../ure-lib.php:521
172
  msgid "Import"
173
  msgstr "आयात"
174
 
175
- #: ../ure-lib.php:522
176
  msgid "Unfiltered html"
177
  msgstr "अनफ़िल्टर्ड एचटीएमएल"
178
 
179
- #: ../ure-lib.php:523
180
  msgid "Edit posts"
181
  msgstr "प्रविष्टियाँ संपादित करें"
182
 
183
- #: ../ure-lib.php:524
184
  msgid "Edit others posts"
185
  msgstr "दूसरों की प्रविष्टियाँ संपादित करें"
186
 
187
- #: ../ure-lib.php:525
188
  msgid "Edit published posts"
189
  msgstr "प्रकाशित पोस्ट को संपादित करें"
190
 
191
- #: ../ure-lib.php:526
192
  msgid "Publish posts"
193
  msgstr "पोस्ट प्रकाशित करें"
194
 
195
- #: ../ure-lib.php:527
196
  msgid "Edit pages"
197
  msgstr "पृष्ठों को संपादित"
198
 
199
- #: ../ure-lib.php:528
200
  msgid "Read"
201
  msgstr "पढ़ना"
202
 
203
- #: ../ure-lib.php:529
204
  msgid "Level 10"
205
  msgstr " स्तर 10"
206
 
207
- #: ../ure-lib.php:530
208
  msgid "Level 9"
209
  msgstr " स्तर 9"
210
 
211
- #: ../ure-lib.php:531
212
  msgid "Level 8"
213
  msgstr " स्तर 8"
214
 
215
- #: ../ure-lib.php:532
216
  msgid "Level 7"
217
  msgstr " स्तर 7"
218
 
219
- #: ../ure-lib.php:533
220
  msgid "Level 6"
221
  msgstr " स्तर 6"
222
 
223
- #: ../ure-lib.php:534
224
  msgid "Level 5"
225
  msgstr " स्तर 5"
226
 
227
- #: ../ure-lib.php:535
228
  msgid "Level 4"
229
  msgstr " स्तर 4"
230
 
231
- #: ../ure-lib.php:536
232
  msgid "Level 3"
233
  msgstr " स्तर 3"
234
 
235
- #: ../ure-lib.php:537
236
  msgid "Level 2"
237
  msgstr " स्तर 2"
238
 
239
- #: ../ure-lib.php:538
240
  msgid "Level 1"
241
  msgstr " स्तर 1"
242
 
243
- #: ../ure-lib.php:539
244
  msgid "Level 0"
245
  msgstr " स्तर 0"
246
 
247
- #: ../ure-lib.php:540
248
  msgid "Edit others pages"
249
  msgstr "दूसरों के पृष्ठों को संपादित करें"
250
 
251
- #: ../ure-lib.php:541
252
  msgid "Edit published pages"
253
  msgstr "प्रकाशित पृष्ठों को संपादित करें"
254
 
255
- #: ../ure-lib.php:542
256
  msgid "Publish pages"
257
  msgstr "पृष्ठों को प्रकाशित"
258
 
259
- #: ../ure-lib.php:543
260
  msgid "Delete pages"
261
  msgstr "पृष्ठों को हटा"
262
 
263
- #: ../ure-lib.php:544
264
  msgid "Delete others pages"
265
  msgstr "दूसरों के पृष्ठों को हटाएँ"
266
 
267
- #: ../ure-lib.php:545
268
  msgid "Delete published pages"
269
  msgstr "प्रकाशित पृष्ठों को हटाएँ"
270
 
271
- #: ../ure-lib.php:546
272
  msgid "Delete posts"
273
  msgstr "प्रविष्टियाँ हटाएँ"
274
 
275
- #: ../ure-lib.php:547
276
  msgid "Delete others posts"
277
  msgstr "दूसरों की प्रविष्टियाँ हटाएँ"
278
 
279
- #: ../ure-lib.php:548
280
  msgid "Delete published posts"
281
  msgstr "प्रकाशित पोस्ट हटाएँ"
282
 
283
- #: ../ure-lib.php:549
284
  msgid "Delete private posts"
285
  msgstr "निजी पोस्ट हटाएँ"
286
 
287
- #: ../ure-lib.php:550
288
  msgid "Edit private posts"
289
  msgstr "निजी पोस्ट को संपादित करें"
290
 
291
- #: ../ure-lib.php:551
292
  msgid "Read private posts"
293
  msgstr "निजी पोस्ट पढ़ें"
294
 
295
- #: ../ure-lib.php:552
296
  msgid "Delete private pages"
297
  msgstr "निजी पृष्ठों को हटाएँ"
298
 
299
- #: ../ure-lib.php:553
300
  msgid "Edit private pages"
301
  msgstr "निजी पृष्ठों को संपादित करें"
302
 
303
- #: ../ure-lib.php:554
304
  msgid "Read private pages"
305
  msgstr "निजी पृष्ठों पढ़ें"
306
 
307
- #: ../ure-lib.php:555
308
  msgid "Delete users"
309
  msgstr "उपयोगकर्ताओं को हटाएँ"
310
 
311
- #: ../ure-lib.php:556
312
  msgid "Create users"
313
  msgstr "उपयोगकर्ता बनाएँ"
314
 
315
- #: ../ure-lib.php:557
316
  msgid "Unfiltered upload"
317
  msgstr "अपलोड अनफ़िल्टर्ड"
318
 
319
- #: ../ure-lib.php:558
320
  msgid "Edit dashboard"
321
  msgstr "संपादन डैशबोर्ड"
322
 
323
- #: ../ure-lib.php:559
324
  msgid "Update plugins"
325
  msgstr "अपडेट प्लगिन"
326
 
327
- #: ../ure-lib.php:560
328
  msgid "Delete plugins"
329
  msgstr "प्लगिन हटाएँ"
330
 
331
- #: ../ure-lib.php:561
332
  msgid "Install plugins"
333
  msgstr "plugins स्थापित"
334
 
335
- #: ../ure-lib.php:562
336
  msgid "Update themes"
337
  msgstr "अपडेट विषय"
338
 
339
- #: ../ure-lib.php:563
340
  msgid "Install themes"
341
  msgstr "विषय स्थापित"
342
 
343
- #: ../ure-lib.php:564
344
  msgid "Update core"
345
  msgstr "कोर अपडेट"
346
 
347
- #: ../ure-lib.php:565
348
  msgid "List users"
349
  msgstr "उपयोगकर्ताओं की सूची"
350
 
351
- #: ../ure-lib.php:566
352
  msgid "Remove users"
353
  msgstr "उपयोगकर्ताओं को निकालना"
354
 
355
- #: ../ure-lib.php:567
356
  msgid "Add users"
357
  msgstr "उपयोगकर्ता जोड़ें"
358
 
359
- #: ../ure-lib.php:568
360
  msgid "Promote users"
361
  msgstr "उपयोगकर्ता को बढ़ावा देना"
362
 
363
- #: ../ure-lib.php:569
364
  msgid "Edit theme options"
365
  msgstr "विषय विकल्प संपादित करें"
366
 
367
- #: ../ure-lib.php:570
368
  msgid "Delete themes"
369
  msgstr "विषय हटाएँ"
370
 
371
- #: ../ure-lib.php:571
372
  msgid "Export"
373
  msgstr "निर्यात"
374
 
375
- #: ../ure-lib.php:655
376
  msgid "Error: Capability name must contain latin characters and digits only!"
377
  msgstr "त्रुटि: क्षमता के नाम लैटिन अक्षर और अंक ही होना चाहिए!"
378
 
379
- #: ../ure-lib.php:667
380
  #, php-format
381
  msgid "Capability %s is added successfully"
382
  msgstr "क्षमता%s सफलतापूर्वक जोड़ा जाता है"
383
 
384
- #: ../ure-lib.php:669
385
  #, php-format
386
  msgid "Capability %s exists already"
387
  msgstr "क्षमता%s पहले से मौजूद है"
388
 
389
- #: ../ure-lib.php:818
390
  #, php-format
391
  msgid "Error! You do not have permission to delete this capability: %s!"
392
  msgstr "रुटि!आपको इस क्षमता को नष्ट करने की अनुमति नहीं है: %s!"
393
 
394
- #: ../ure-lib.php:840
395
  #, php-format
396
  msgid "Capability %s is removed successfully"
397
  msgstr "क्षमता%s सफलतापूर्वक निकाल दिया जाता है"
398
 
399
- #: ../ure-lib.php:902
400
  msgid "Help"
401
  msgstr "मदद"
402
 
403
- #: ../ure-role-edit.php:29
404
  msgid "None"
405
  msgstr "कोई नहीं"
406
 
407
- #: ../ure-role-edit.php:93
408
  msgid " Name can not be empty!"
409
  msgstr "नाम खाली नहीं हो सकता!"
410
 
411
- #: ../ure-role-edit.php:97
412
  msgid " Name must contain latin characters and digits only!"
413
  msgstr "नाम लैटिन अक्षर और अंक ही होना चाहिए!"
414
 
415
- #: ../ure-role-edit.php:102
416
- #: ../ure-role-edit.php:293
417
  msgid "Delete Role"
418
  msgstr "भूमिका हटाएँ"
419
 
420
- #: ../ure-role-edit.php:104
421
  msgid "Change Default Role"
422
  msgstr "डिफ़ॉल्ट भूमिका बदलें"
423
 
424
- #: ../ure-role-edit.php:106
425
  msgid "Restore Roles from backup copy. Be careful, backup was created when you started URE 1st time. All changes you made after that will be lost"
426
  msgstr "बैकअप प्रतिलिपि से भूमिकाओं को पुनर्स्थापित करें. सावधान रहो, बैकअप बनाया गया था जब आप ure 1 बार शुरू कर दिया. आपने जो परिवर्तन किए के बाद कि खो जाएगा"
427
 
428
- #: ../ure-role-edit.php:108
429
  msgid "Warning! Be careful - removing critical capability could crash some plugin or other custom code"
430
  msgstr "चेतावनी!सावधान रहो - महत्वपूर्ण क्षमता को हटाने के लिए कुछ प्लगइन या अन्य कस्टम कोड दुर्घटना सकता है"
431
 
432
- #: ../ure-role-edit.php:110
433
  msgid "Please confirm to continue"
434
  msgstr "जारी रखने के लिए पुष्टि करें."
435
 
436
- #: ../ure-role-edit.php:147
437
  #, php-format
438
  msgid "Role \"%s\" update: please confirm to continue"
439
  msgstr "भूमिका \"%s\" अद्यतन: जारी रखने के लिए कृपया पुष्टि करें."
440
 
441
- #: ../ure-role-edit.php:155
442
  msgid "Select Role and change its capabilities list"
443
  msgstr "भूमिका का चयन करें और अपनी क्षमताओं की सूची परिवर्तन"
444
 
445
- #: ../ure-role-edit.php:157
446
  msgid "Select Role:"
447
  msgstr "भूमिका का चयन करें:"
448
 
449
- #: ../ure-role-edit.php:167
450
- #: ../ure-user-edit.php:91
451
  msgid "Show capabilities in human readable form"
452
  msgstr "मानव पठनीय रूप में क्षमताओं दिखाएँ"
453
 
454
- #: ../ure-role-edit.php:176
455
- #: ../ure-user-edit.php:100
456
  msgid "Show deprecated capabilities"
457
  msgstr "पदावनत क्षमताओं दिखाएँ"
458
 
459
- #: ../ure-role-edit.php:180
460
  msgid "If checked, then apply action to ALL sites of this Network"
461
  msgstr "यदि जाँच की, तो इस नेटवर्क के सभी साइटों के लिए कार्रवाई लागू"
462
 
463
- #: ../ure-role-edit.php:190
464
  msgid "Apply to All Sites"
465
  msgstr "सभी साइटों के लिए लागू"
466
 
467
- #: ../ure-role-edit.php:251
468
- #: ../ure-user-edit.php:163
 
 
 
 
 
 
 
 
 
 
 
 
469
  msgid "Update"
470
  msgstr "अपडेट"
471
 
472
- #: ../ure-role-edit.php:251
473
- #: ../ure-user-edit.php:163
474
  msgid "Save Changes"
475
  msgstr "परिवर्तन सहेजें"
476
 
477
- #: ../ure-role-edit.php:252
478
- #: ../ure-user-edit.php:164
479
  msgid "Cancel"
480
  msgstr "रद्द करना"
481
 
482
- #: ../ure-role-edit.php:252
483
- #: ../ure-user-edit.php:164
484
  msgid "Cancel not saved changes"
485
  msgstr "सहेजे गए परिवर्तन रद्दनहीं करें"
486
 
487
- #: ../ure-role-edit.php:255
488
  msgid "Select All"
489
  msgstr ""
490
 
491
- #: ../ure-role-edit.php:255
492
  msgid "Select All Capabilities"
493
  msgstr ""
494
 
495
- #: ../ure-role-edit.php:256
496
  msgid "Unselect All"
497
  msgstr ""
498
 
499
- #: ../ure-role-edit.php:256
500
  msgid "Unselect All Capabilities"
501
  msgstr ""
502
 
503
- #: ../ure-role-edit.php:257
504
  msgid "Reverse"
505
  msgstr ""
506
 
507
- #: ../ure-role-edit.php:257
508
  msgid "Turn checked capabilities off and vise versa"
509
  msgstr ""
510
 
511
- #: ../ure-role-edit.php:260
512
  msgid "Reset"
513
  msgstr "रीसेट करें"
514
 
515
- #: ../ure-role-edit.php:260
516
  msgid "Restore Roles from backup copy"
517
  msgstr "बैकअप प्रतिलिपि से भूमिकाओं को पुनर्स्थापित करें"
518
 
519
- #: ../ure-role-edit.php:270
520
  msgid "Add New Role"
521
  msgstr "नई भूमिका में जोड़ें"
522
 
523
- #: ../ure-role-edit.php:272
524
  msgid "Name: "
525
  msgstr "नाम:"
526
 
527
- #: ../ure-role-edit.php:276
528
  msgid "Make copy of: "
529
  msgstr "प्रतिलिपि बनाएँ:"
530
 
531
- #: ../ure-role-edit.php:279
532
- #: ../ure-role-edit.php:308
533
  msgid "Add"
534
  msgstr "जोड़ना"
535
 
536
- #: ../ure-role-edit.php:279
537
  msgid "Add New User Role"
538
  msgstr "नये उपयोगकर्ता भूमिका जोड़ें"
539
 
540
- #: ../ure-role-edit.php:283
541
  msgid "Default Role for New User"
542
  msgstr "नया उपयोगकर्ता के लिए डिफ़ॉल्ट भूमिका"
543
 
544
- #: ../ure-role-edit.php:288
545
  msgid "Change"
546
  msgstr "परिवर्तन"
547
 
548
- #: ../ure-role-edit.php:288
549
  msgid "Set as Default User Role"
550
  msgstr "डिफ़ॉल्ट उपयोगकर्ता भूमिका के रूप में सेट करें"
551
 
552
- #: ../ure-role-edit.php:298
553
  msgid "Delete"
554
  msgstr "हटाना"
555
 
556
- #: ../ure-role-edit.php:298
557
  msgid "Delete User Role"
558
  msgstr "उपयोगकर्ता भूमिका को हटाएँ"
559
 
560
- #: ../ure-role-edit.php:303
561
- #: ../ure-role-edit.php:308
562
  msgid "Add New Capability"
563
  msgstr "नई क्षमता जोड़ें"
564
 
565
- #: ../ure-role-edit.php:313
566
  msgid "Remove Capability"
567
  msgstr "क्षमता निकालें"
568
 
569
- #: ../ure-role-edit.php:318
570
  msgid "Remove"
571
  msgstr "हटाना"
572
 
573
- #: ../ure-role-edit.php:318
574
  msgid "Remove User Capability"
575
  msgstr "उपयोगकर्ता क्षमता निकालें"
576
 
577
- #: ../ure-user-edit.php:67
578
  #, php-format
579
  msgid "User \"%s\" update: please confirm to continue"
580
  msgstr "प्रयोक्ता \"%s\" अद्यतन: की पुष्टि जारी रखने के लिए कृपया"
581
 
582
- #: ../ure-user-edit.php:79
583
  msgid "Change capabilities for user"
584
  msgstr "उपयोगकर्ता के लिए क्षमताओं को बदलें"
585
 
586
- #: ../ure-user-edit.php:82
587
  msgid "Role:"
588
  msgstr "भूमिका"
589
 
590
- #: ../ure-user-edit.php:104
591
  msgid "Add capabilities to this user:"
592
  msgstr "इस उपयोगकर्ता के लिए क्षमताओं जोड़ें:"
593
 
594
- #: ../ure-options.php:59
595
  msgid "User Roles are restored from the backup data. "
596
  msgstr "उपयोगकर्ता भूमिकाएँ डेटा बैकअप से बहाल कर रहे हैं."
597
 
598
- #: ../ure-options.php:125
599
  msgid "Error: "
600
  msgstr "त्रुटि:"
601
 
602
- #: ../ure-options.php:125
603
- #: ../ure-options.php:143
604
  msgid "Role"
605
  msgstr "भूमिका"
606
 
607
- #: ../ure-options.php:125
608
  msgid "does not exist"
609
  msgstr "मौजूद नहीं है"
610
 
611
- #: ../ure-options.php:143
612
  msgid "is updated successfully"
613
  msgstr "सफलतापूर्वक अपडेट किया"
614
 
615
- #: ../ure-options.php:152
616
  msgid "User"
617
  msgstr "उपयोगकर्ता"
618
 
619
- #: ../ure-options.php:152
620
  msgid "capabilities are updated successfully"
621
  msgstr "क्षमताओं को सफलतापूर्वक नवीनीकृत कर रहे हैं"
622
 
623
- #: ../ure-options.php:215
624
  msgid "About this Plugin:"
625
  msgstr "इस प्लगइन के बारे में:"
626
 
627
- #: ../ure-options.php:216
628
  msgid "Author's website"
629
  msgstr "लेखक की वेबसाइट"
630
 
631
- #: ../ure-options.php:217
632
  msgid "Plugin webpage"
633
  msgstr "प्लगइन वेबपेज"
634
 
635
- #: ../ure-options.php:219
636
  msgid "FAQ"
637
  msgstr "अक्सर पूछे जाने वाले प्रश्न"
638
 
639
- #: ../ure-options.php:220
640
  msgid "Greetings"
641
  msgstr "बधाई"
642
 
643
- #: ../ure-options.php:242
644
  msgid "Greetings:"
645
  msgstr "नमस्ते:"
646
 
647
- #: ../ure-options.php:243
648
  msgid "It's me, the author"
649
  msgstr "यह मेरे लिए है, लेखक"
650
 
651
- #: ../ure-options.php:244
652
  msgid "For the help with Belorussian translation"
653
  msgstr "बेलोरूसि अनुवाद के साथ मदद के लिए"
654
 
655
- #: ../ure-options.php:245
656
  msgid "For the help with Brasilian translation"
657
  msgstr "ब्राजील के अनुवाद के साथ मदद के लिए"
658
 
659
- #: ../ure-options.php:246
 
 
 
 
 
660
  msgid "For the help with Chinese translation"
661
  msgstr "चीनी अनुवाद के साथ मदद के लिए"
662
 
663
- #: ../ure-options.php:247
664
  msgid "For the help with Dutch translation"
665
  msgstr "डच अनुवाद के साथ मदद के लिए"
666
 
667
- #: ../ure-options.php:248
668
  msgid "For the help with Finnish translation"
669
  msgstr "फिनिश अनुवाद के साथ मदद के लिए"
670
 
671
- #: ../ure-options.php:249
672
- #: ../ure-options.php:250
673
  msgid "For the help with French translation"
674
  msgstr "फ्रेंच अनुवाद के साथ मदद के लिए"
675
 
676
- #: ../ure-options.php:251
677
  msgid "For the help with German translation"
678
  msgstr "जर्मन अनुवाद के साथ मदद के लिए"
679
 
680
- #: ../ure-options.php:252
681
- #: ../ure-options.php:253
682
  msgid "For the help with Hebrew translation"
683
  msgstr "हिब्रू अनुवाद के साथ मदद के लिए"
684
 
685
- #: ../ure-options.php:254
686
  msgid "For the help with Hindi translation"
687
  msgstr ""
688
 
689
- #: ../ure-options.php:255
690
  msgid "For the help with Hungarian translation"
691
  msgstr "For the help with Hungarian translation"
692
 
693
- #: ../ure-options.php:256
694
- #: ../ure-options.php:257
695
  msgid "For the help with Italian translation"
696
  msgstr "इतालवी अनुवाद के साथ मदद के लिए"
697
 
698
- #: ../ure-options.php:258
699
  msgid "For the help with Japanese translation"
700
  msgstr "जापानी अनुवाद के साथ मदद के लिए"
701
 
702
- #: ../ure-options.php:259
703
  msgid "For the help with Lithuanian translation"
704
  msgstr "लिथुआनियाई अनुवाद के साथ मदद के लिए"
705
 
706
- #: ../ure-options.php:260
707
- #: ../ure-options.php:261
 
708
  msgid "For the help with Persian translation"
709
  msgstr "फारसी अनुवाद के साथ मदद के लिए"
710
 
711
- #: ../ure-options.php:262
 
712
  msgid "For the help with Polish translation"
713
  msgstr "पोलिश अनुवाद के साथ मदद के लिए"
714
 
715
- #: ../ure-options.php:263
716
- #: ../ure-options.php:264
717
  msgid "For the help with Spanish translation"
718
  msgstr "स्पेनिश अनुवाद के साथ मदद के लिए"
719
 
720
- #: ../ure-options.php:265
721
  msgid "For the updated Swedish translation"
722
  msgstr "अपडेट स्वीडिश अनुवाद के लिए"
723
 
724
- #: ../ure-options.php:266
725
  msgid "For the help with Swedish translation"
726
  msgstr "स्वीडिश अनुवाद के साथ मदद के लिए"
727
 
728
- #: ../ure-options.php:267
729
  msgid "For the help with Turkish translation"
730
  msgstr "तुर्की अनुवाद के साथ मदद के लिए"
731
 
732
- #: ../ure-options.php:269
733
  msgid "For the code to hide administrator role"
734
  msgstr "प्रशासक भूमिका को छुपाने के लिए कोड "
735
 
736
- #: ../ure-options.php:270
737
  msgid "For the code enhancement suggestion"
738
  msgstr "कोड वृद्धि सुझाव के लिए"
739
 
740
- #: ../ure-options.php:272
741
  msgid "Do you wish to see your name with link to your site here? You are welcome! Your help with translation and new ideas are very appreciated."
742
  msgstr "क्या आप अपनी साइट के लिए यहाँ के लिंक के साथ अपना नाम देखना चाहते हैं? आपका स्वागत है! अनुवाद और नए विचारों के साथ तुम्हारी मदद की बहुत सराहना की है."
743
 
2
  msgstr ""
3
  "Project-Id-Version: User Role Editor\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-09-01 08:46+0700\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Vladimir Garagulya <vladimir@shinephp.com>\n"
8
  "Language-Team: Team Outshine <ash.pr@outshinesolutions.com>\n"
30
  msgid "User Role Editor requires PHP 5.0 or newer."
31
  msgstr "उपयोगकर्ता भूमिका संपादक PHP 5.0 या नए की आवश्यकता है.s"
32
 
33
+ #: ../user-role-editor.php:76
34
  msgid "Only"
35
  msgstr "केवल"
36
 
37
+ #: ../user-role-editor.php:76
38
  msgid "is allowed to use"
39
  msgstr "उपयोग करने की अनुमति दी"
40
 
41
+ #: ../user-role-editor.php:82
42
+ #: ../user-role-editor.php:251
43
  msgid "User Role Editor"
44
  msgstr "उपयोगकर्ता भूमिका संपादक"
45
 
46
+ #: ../user-role-editor.php:223
47
  msgid "Settings"
48
  msgstr "सेटिंग्स"
49
 
50
+ #: ../user-role-editor.php:233
51
+ #: ../includes/ure-options.php:235
52
  msgid "Changelog"
53
  msgstr "Changelog"
54
 
55
+ #: ../user-role-editor.php:280
56
  msgid "Capabilities"
57
  msgstr "क्षमताएं"
58
 
59
+ #: ../includes/ure-lib.php:34
60
  msgid "Error is occur. Please check the log file."
61
  msgstr "त्रुटि हुई है. लॉग फ़ाइल की जाँच करें."
62
 
63
+ #: ../includes/ure-lib.php:144
64
  msgid "Database operation error. Check log file."
65
  msgstr "डेटाबेस आपरेशन त्रुटि. लॉग फ़ाइल की जाँच करें."
66
 
67
+ #: ../includes/ure-lib.php:177
68
  msgid "No backup data. It is created automatically before the first role data update."
69
  msgstr "बैकअप डेटानहीं है. यह पहली भूमिका डेटा अद्यतन करने से पहले स्वचालित रूप से बनाया जाता है."
70
 
71
+ #: ../includes/ure-lib.php:215
72
  msgid "Backup record is created for the current role capabilities"
73
  msgstr "बैकअप रिकॉर्ड वर्तमान भूमिका क्षमताओं के लिए बनाया जाता है"
74
 
75
+ #: ../includes/ure-lib.php:329
76
  msgid "Error: Role name must contain latin characters and digits only!"
77
  msgstr "त्रुटि: भूमिका नाम लैटिन अक्षर और अंक ही होना चाहिए!"
78
 
79
+ #: ../includes/ure-lib.php:336
80
  #, php-format
81
  msgid "Role %s exists already"
82
  msgstr "भूमिका %s पहले से मौजूद है"
83
 
84
+ #: ../includes/ure-lib.php:349
85
  msgid "Error is encountered during new role create operation"
86
  msgstr "त्रुटि आपरेशन बनाते नई भूमिका के दौरान सामना करना पड़ा है"
87
 
88
+ #: ../includes/ure-lib.php:351
89
  #, php-format
90
  msgid "Role %s is created successfully"
91
  msgstr "भूमिका सफलतापूर्वक बनाई गई है %s"
92
 
93
+ #: ../includes/ure-lib.php:435
94
  msgid "Error encountered during role delete operation"
95
  msgstr "भूमिका हटा आपरेशन के दौरान त्रुटि का सामना करना पड़ा"
96
 
97
+ #: ../includes/ure-lib.php:437
98
  #, php-format
99
  msgid "Role %s is deleted successfully"
100
  msgstr "भूमिका%s को सफलतापूर्वक नष्ट कर दिया है"
101
 
102
+ #: ../includes/ure-lib.php:455
103
  msgid "Error encountered during default role change operation"
104
  msgstr "डिफ़ॉल्ट भूमिका बदलने के ऑपरेशन के दौरान त्रुटि का सामना करना पड़ा"
105
 
106
+ #: ../includes/ure-lib.php:461
107
  #, php-format
108
  msgid "Default role for new users is set to %s successfully"
109
  msgstr "नए उपयोगकर्ताओं के लिए डिफ़ॉल्ट भूमिका%s करने के लिए सेट कर दिया जाता है "
110
 
111
+ #: ../includes/ure-lib.php:489
112
  msgid "Editor"
113
  msgstr "संपादक"
114
 
115
+ #: ../includes/ure-lib.php:490
116
  msgid "Author"
117
  msgstr "लेखक"
118
 
119
+ #: ../includes/ure-lib.php:491
120
  msgid "Contributor"
121
  msgstr "Contributor"
122
 
123
+ #: ../includes/ure-lib.php:492
124
  msgid "Subscriber"
125
  msgstr "ग्राहक"
126
 
127
+ #: ../includes/ure-lib.php:494
128
  msgid "Switch themes"
129
  msgstr "विषय स्विच करें"
130
 
131
+ #: ../includes/ure-lib.php:495
132
  msgid "Edit themes"
133
  msgstr "संपादन विषय"
134
 
135
+ #: ../includes/ure-lib.php:496
136
  msgid "Activate plugins"
137
  msgstr "प्लगिन सक्रिय करें"
138
 
139
+ #: ../includes/ure-lib.php:497
140
  msgid "Edit plugins"
141
  msgstr "संपादित करें प्लगिन"
142
 
143
+ #: ../includes/ure-lib.php:498
144
  msgid "Edit users"
145
  msgstr "उपयोगकर्ताओं को संपादित करें"
146
 
147
+ #: ../includes/ure-lib.php:499
148
  msgid "Edit files"
149
  msgstr "फ़ाइलों को संपादित करें"
150
 
151
+ #: ../includes/ure-lib.php:500
152
  msgid "Manage options"
153
  msgstr "विकल्पों को शासन"
154
 
155
+ #: ../includes/ure-lib.php:501
156
  msgid "Moderate comments"
157
  msgstr "मध्यम टिप्पणी"
158
 
159
+ #: ../includes/ure-lib.php:502
160
  msgid "Manage categories"
161
  msgstr "श्रेणियां प्रबंधित करें"
162
 
163
+ #: ../includes/ure-lib.php:503
164
  msgid "Manage links"
165
  msgstr "लिंक प्रबंधित करें"
166
 
167
+ #: ../includes/ure-lib.php:504
168
  msgid "Upload files"
169
  msgstr "फ़ाइलें अपलोड करें"
170
 
171
+ #: ../includes/ure-lib.php:505
172
  msgid "Import"
173
  msgstr "आयात"
174
 
175
+ #: ../includes/ure-lib.php:506
176
  msgid "Unfiltered html"
177
  msgstr "अनफ़िल्टर्ड एचटीएमएल"
178
 
179
+ #: ../includes/ure-lib.php:507
180
  msgid "Edit posts"
181
  msgstr "प्रविष्टियाँ संपादित करें"
182
 
183
+ #: ../includes/ure-lib.php:508
184
  msgid "Edit others posts"
185
  msgstr "दूसरों की प्रविष्टियाँ संपादित करें"
186
 
187
+ #: ../includes/ure-lib.php:509
188
  msgid "Edit published posts"
189
  msgstr "प्रकाशित पोस्ट को संपादित करें"
190
 
191
+ #: ../includes/ure-lib.php:510
192
  msgid "Publish posts"
193
  msgstr "पोस्ट प्रकाशित करें"
194
 
195
+ #: ../includes/ure-lib.php:511
196
  msgid "Edit pages"
197
  msgstr "पृष्ठों को संपादित"
198
 
199
+ #: ../includes/ure-lib.php:512
200
  msgid "Read"
201
  msgstr "पढ़ना"
202
 
203
+ #: ../includes/ure-lib.php:513
204
  msgid "Level 10"
205
  msgstr " स्तर 10"
206
 
207
+ #: ../includes/ure-lib.php:514
208
  msgid "Level 9"
209
  msgstr " स्तर 9"
210
 
211
+ #: ../includes/ure-lib.php:515
212
  msgid "Level 8"
213
  msgstr " स्तर 8"
214
 
215
+ #: ../includes/ure-lib.php:516
216
  msgid "Level 7"
217
  msgstr " स्तर 7"
218
 
219
+ #: ../includes/ure-lib.php:517
220
  msgid "Level 6"
221
  msgstr " स्तर 6"
222
 
223
+ #: ../includes/ure-lib.php:518
224
  msgid "Level 5"
225
  msgstr " स्तर 5"
226
 
227
+ #: ../includes/ure-lib.php:519
228
  msgid "Level 4"
229
  msgstr " स्तर 4"
230
 
231
+ #: ../includes/ure-lib.php:520
232
  msgid "Level 3"
233
  msgstr " स्तर 3"
234
 
235
+ #: ../includes/ure-lib.php:521
236
  msgid "Level 2"
237
  msgstr " स्तर 2"
238
 
239
+ #: ../includes/ure-lib.php:522
240
  msgid "Level 1"
241
  msgstr " स्तर 1"
242
 
243
+ #: ../includes/ure-lib.php:523
244
  msgid "Level 0"
245
  msgstr " स्तर 0"
246
 
247
+ #: ../includes/ure-lib.php:524
248
  msgid "Edit others pages"
249
  msgstr "दूसरों के पृष्ठों को संपादित करें"
250
 
251
+ #: ../includes/ure-lib.php:525
252
  msgid "Edit published pages"
253
  msgstr "प्रकाशित पृष्ठों को संपादित करें"
254
 
255
+ #: ../includes/ure-lib.php:526
256
  msgid "Publish pages"
257
  msgstr "पृष्ठों को प्रकाशित"
258
 
259
+ #: ../includes/ure-lib.php:527
260
  msgid "Delete pages"
261
  msgstr "पृष्ठों को हटा"
262
 
263
+ #: ../includes/ure-lib.php:528
264
  msgid "Delete others pages"
265
  msgstr "दूसरों के पृष्ठों को हटाएँ"
266
 
267
+ #: ../includes/ure-lib.php:529
268
  msgid "Delete published pages"
269
  msgstr "प्रकाशित पृष्ठों को हटाएँ"
270
 
271
+ #: ../includes/ure-lib.php:530
272
  msgid "Delete posts"
273
  msgstr "प्रविष्टियाँ हटाएँ"
274
 
275
+ #: ../includes/ure-lib.php:531
276
  msgid "Delete others posts"
277
  msgstr "दूसरों की प्रविष्टियाँ हटाएँ"
278
 
279
+ #: ../includes/ure-lib.php:532
280
  msgid "Delete published posts"
281
  msgstr "प्रकाशित पोस्ट हटाएँ"
282
 
283
+ #: ../includes/ure-lib.php:533
284
  msgid "Delete private posts"
285
  msgstr "निजी पोस्ट हटाएँ"
286
 
287
+ #: ../includes/ure-lib.php:534
288
  msgid "Edit private posts"
289
  msgstr "निजी पोस्ट को संपादित करें"
290
 
291
+ #: ../includes/ure-lib.php:535
292
  msgid "Read private posts"
293
  msgstr "निजी पोस्ट पढ़ें"
294
 
295
+ #: ../includes/ure-lib.php:536
296
  msgid "Delete private pages"
297
  msgstr "निजी पृष्ठों को हटाएँ"
298
 
299
+ #: ../includes/ure-lib.php:537
300
  msgid "Edit private pages"
301
  msgstr "निजी पृष्ठों को संपादित करें"
302
 
303
+ #: ../includes/ure-lib.php:538
304
  msgid "Read private pages"
305
  msgstr "निजी पृष्ठों पढ़ें"
306
 
307
+ #: ../includes/ure-lib.php:539
308
  msgid "Delete users"
309
  msgstr "उपयोगकर्ताओं को हटाएँ"
310
 
311
+ #: ../includes/ure-lib.php:540
312
  msgid "Create users"
313
  msgstr "उपयोगकर्ता बनाएँ"
314
 
315
+ #: ../includes/ure-lib.php:541
316
  msgid "Unfiltered upload"
317
  msgstr "अपलोड अनफ़िल्टर्ड"
318
 
319
+ #: ../includes/ure-lib.php:542
320
  msgid "Edit dashboard"
321
  msgstr "संपादन डैशबोर्ड"
322
 
323
+ #: ../includes/ure-lib.php:543
324
  msgid "Update plugins"
325
  msgstr "अपडेट प्लगिन"
326
 
327
+ #: ../includes/ure-lib.php:544
328
  msgid "Delete plugins"
329
  msgstr "प्लगिन हटाएँ"
330
 
331
+ #: ../includes/ure-lib.php:545
332
  msgid "Install plugins"
333
  msgstr "plugins स्थापित"
334
 
335
+ #: ../includes/ure-lib.php:546
336
  msgid "Update themes"
337
  msgstr "अपडेट विषय"
338
 
339
+ #: ../includes/ure-lib.php:547
340
  msgid "Install themes"
341
  msgstr "विषय स्थापित"
342
 
343
+ #: ../includes/ure-lib.php:548
344
  msgid "Update core"
345
  msgstr "कोर अपडेट"
346
 
347
+ #: ../includes/ure-lib.php:549
348
  msgid "List users"
349
  msgstr "उपयोगकर्ताओं की सूची"
350
 
351
+ #: ../includes/ure-lib.php:550
352
  msgid "Remove users"
353
  msgstr "उपयोगकर्ताओं को निकालना"
354
 
355
+ #: ../includes/ure-lib.php:551
356
  msgid "Add users"
357
  msgstr "उपयोगकर्ता जोड़ें"
358
 
359
+ #: ../includes/ure-lib.php:552
360
  msgid "Promote users"
361
  msgstr "उपयोगकर्ता को बढ़ावा देना"
362
 
363
+ #: ../includes/ure-lib.php:553
364
  msgid "Edit theme options"
365
  msgstr "विषय विकल्प संपादित करें"
366
 
367
+ #: ../includes/ure-lib.php:554
368
  msgid "Delete themes"
369
  msgstr "विषय हटाएँ"
370
 
371
+ #: ../includes/ure-lib.php:555
372
  msgid "Export"
373
  msgstr "निर्यात"
374
 
375
+ #: ../includes/ure-lib.php:639
376
  msgid "Error: Capability name must contain latin characters and digits only!"
377
  msgstr "त्रुटि: क्षमता के नाम लैटिन अक्षर और अंक ही होना चाहिए!"
378
 
379
+ #: ../includes/ure-lib.php:651
380
  #, php-format
381
  msgid "Capability %s is added successfully"
382
  msgstr "क्षमता%s सफलतापूर्वक जोड़ा जाता है"
383
 
384
+ #: ../includes/ure-lib.php:653
385
  #, php-format
386
  msgid "Capability %s exists already"
387
  msgstr "क्षमता%s पहले से मौजूद है"
388
 
389
+ #: ../includes/ure-lib.php:802
390
  #, php-format
391
  msgid "Error! You do not have permission to delete this capability: %s!"
392
  msgstr "रुटि!आपको इस क्षमता को नष्ट करने की अनुमति नहीं है: %s!"
393
 
394
+ #: ../includes/ure-lib.php:824
395
  #, php-format
396
  msgid "Capability %s is removed successfully"
397
  msgstr "क्षमता%s सफलतापूर्वक निकाल दिया जाता है"
398
 
399
+ #: ../includes/ure-lib.php:889
400
  msgid "Help"
401
  msgstr "मदद"
402
 
403
+ #: ../includes/ure-role-edit.php:29
404
  msgid "None"
405
  msgstr "कोई नहीं"
406
 
407
+ #: ../includes/ure-role-edit.php:101
408
  msgid " Name can not be empty!"
409
  msgstr "नाम खाली नहीं हो सकता!"
410
 
411
+ #: ../includes/ure-role-edit.php:105
412
  msgid " Name must contain latin characters and digits only!"
413
  msgstr "नाम लैटिन अक्षर और अंक ही होना चाहिए!"
414
 
415
+ #: ../includes/ure-role-edit.php:110
416
+ #: ../includes/ure-role-edit.php:367
417
  msgid "Delete Role"
418
  msgstr "भूमिका हटाएँ"
419
 
420
+ #: ../includes/ure-role-edit.php:112
421
  msgid "Change Default Role"
422
  msgstr "डिफ़ॉल्ट भूमिका बदलें"
423
 
424
+ #: ../includes/ure-role-edit.php:114
425
  msgid "Restore Roles from backup copy. Be careful, backup was created when you started URE 1st time. All changes you made after that will be lost"
426
  msgstr "बैकअप प्रतिलिपि से भूमिकाओं को पुनर्स्थापित करें. सावधान रहो, बैकअप बनाया गया था जब आप ure 1 बार शुरू कर दिया. आपने जो परिवर्तन किए के बाद कि खो जाएगा"
427
 
428
+ #: ../includes/ure-role-edit.php:116
429
  msgid "Warning! Be careful - removing critical capability could crash some plugin or other custom code"
430
  msgstr "चेतावनी!सावधान रहो - महत्वपूर्ण क्षमता को हटाने के लिए कुछ प्लगइन या अन्य कस्टम कोड दुर्घटना सकता है"
431
 
432
+ #: ../includes/ure-role-edit.php:118
433
  msgid "Please confirm to continue"
434
  msgstr "जारी रखने के लिए पुष्टि करें."
435
 
436
+ #: ../includes/ure-role-edit.php:155
437
  #, php-format
438
  msgid "Role \"%s\" update: please confirm to continue"
439
  msgstr "भूमिका \"%s\" अद्यतन: जारी रखने के लिए कृपया पुष्टि करें."
440
 
441
+ #: ../includes/ure-role-edit.php:163
442
  msgid "Select Role and change its capabilities list"
443
  msgstr "भूमिका का चयन करें और अपनी क्षमताओं की सूची परिवर्तन"
444
 
445
+ #: ../includes/ure-role-edit.php:165
446
  msgid "Select Role:"
447
  msgstr "भूमिका का चयन करें:"
448
 
449
+ #: ../includes/ure-role-edit.php:175
450
+ #: ../includes/ure-user-edit.php:91
451
  msgid "Show capabilities in human readable form"
452
  msgstr "मानव पठनीय रूप में क्षमताओं दिखाएँ"
453
 
454
+ #: ../includes/ure-role-edit.php:184
455
+ #: ../includes/ure-user-edit.php:100
456
  msgid "Show deprecated capabilities"
457
  msgstr "पदावनत क्षमताओं दिखाएँ"
458
 
459
+ #: ../includes/ure-role-edit.php:188
460
  msgid "If checked, then apply action to ALL sites of this Network"
461
  msgstr "यदि जाँच की, तो इस नेटवर्क के सभी साइटों के लिए कार्रवाई लागू"
462
 
463
+ #: ../includes/ure-role-edit.php:198
464
  msgid "Apply to All Sites"
465
  msgstr "सभी साइटों के लिए लागू"
466
 
467
+ #: ../includes/ure-role-edit.php:205
468
+ #: ../includes/ure-user-edit.php:105
469
+ #, fuzzy
470
+ msgid "Core capabilities:"
471
+ msgstr "क्षमताएं"
472
+
473
+ #: ../includes/ure-role-edit.php:268
474
+ #: ../includes/ure-user-edit.php:167
475
+ #, fuzzy
476
+ msgid "Custom capabilities:"
477
+ msgstr "क्षमताएं"
478
+
479
+ #: ../includes/ure-role-edit.php:319
480
+ #: ../includes/ure-user-edit.php:222
481
  msgid "Update"
482
  msgstr "अपडेट"
483
 
484
+ #: ../includes/ure-role-edit.php:319
485
+ #: ../includes/ure-user-edit.php:222
486
  msgid "Save Changes"
487
  msgstr "परिवर्तन सहेजें"
488
 
489
+ #: ../includes/ure-role-edit.php:320
490
+ #: ../includes/ure-user-edit.php:223
491
  msgid "Cancel"
492
  msgstr "रद्द करना"
493
 
494
+ #: ../includes/ure-role-edit.php:320
495
+ #: ../includes/ure-user-edit.php:223
496
  msgid "Cancel not saved changes"
497
  msgstr "सहेजे गए परिवर्तन रद्दनहीं करें"
498
 
499
+ #: ../includes/ure-role-edit.php:323
500
  msgid "Select All"
501
  msgstr ""
502
 
503
+ #: ../includes/ure-role-edit.php:323
504
  msgid "Select All Capabilities"
505
  msgstr ""
506
 
507
+ #: ../includes/ure-role-edit.php:327
508
  msgid "Unselect All"
509
  msgstr ""
510
 
511
+ #: ../includes/ure-role-edit.php:327
512
  msgid "Unselect All Capabilities"
513
  msgstr ""
514
 
515
+ #: ../includes/ure-role-edit.php:328
516
  msgid "Reverse"
517
  msgstr ""
518
 
519
+ #: ../includes/ure-role-edit.php:328
520
  msgid "Turn checked capabilities off and vise versa"
521
  msgstr ""
522
 
523
+ #: ../includes/ure-role-edit.php:334
524
  msgid "Reset"
525
  msgstr "रीसेट करें"
526
 
527
+ #: ../includes/ure-role-edit.php:334
528
  msgid "Restore Roles from backup copy"
529
  msgstr "बैकअप प्रतिलिपि से भूमिकाओं को पुनर्स्थापित करें"
530
 
531
+ #: ../includes/ure-role-edit.php:344
532
  msgid "Add New Role"
533
  msgstr "नई भूमिका में जोड़ें"
534
 
535
+ #: ../includes/ure-role-edit.php:346
536
  msgid "Name: "
537
  msgstr "नाम:"
538
 
539
+ #: ../includes/ure-role-edit.php:350
540
  msgid "Make copy of: "
541
  msgstr "प्रतिलिपि बनाएँ:"
542
 
543
+ #: ../includes/ure-role-edit.php:353
544
+ #: ../includes/ure-role-edit.php:382
545
  msgid "Add"
546
  msgstr "जोड़ना"
547
 
548
+ #: ../includes/ure-role-edit.php:353
549
  msgid "Add New User Role"
550
  msgstr "नये उपयोगकर्ता भूमिका जोड़ें"
551
 
552
+ #: ../includes/ure-role-edit.php:357
553
  msgid "Default Role for New User"
554
  msgstr "नया उपयोगकर्ता के लिए डिफ़ॉल्ट भूमिका"
555
 
556
+ #: ../includes/ure-role-edit.php:362
557
  msgid "Change"
558
  msgstr "परिवर्तन"
559
 
560
+ #: ../includes/ure-role-edit.php:362
561
  msgid "Set as Default User Role"
562
  msgstr "डिफ़ॉल्ट उपयोगकर्ता भूमिका के रूप में सेट करें"
563
 
564
+ #: ../includes/ure-role-edit.php:372
565
  msgid "Delete"
566
  msgstr "हटाना"
567
 
568
+ #: ../includes/ure-role-edit.php:372
569
  msgid "Delete User Role"
570
  msgstr "उपयोगकर्ता भूमिका को हटाएँ"
571
 
572
+ #: ../includes/ure-role-edit.php:377
573
+ #: ../includes/ure-role-edit.php:382
574
  msgid "Add New Capability"
575
  msgstr "नई क्षमता जोड़ें"
576
 
577
+ #: ../includes/ure-role-edit.php:387
578
  msgid "Remove Capability"
579
  msgstr "क्षमता निकालें"
580
 
581
+ #: ../includes/ure-role-edit.php:392
582
  msgid "Remove"
583
  msgstr "हटाना"
584
 
585
+ #: ../includes/ure-role-edit.php:392
586
  msgid "Remove User Capability"
587
  msgstr "उपयोगकर्ता क्षमता निकालें"
588
 
589
+ #: ../includes/ure-user-edit.php:67
590
  #, php-format
591
  msgid "User \"%s\" update: please confirm to continue"
592
  msgstr "प्रयोक्ता \"%s\" अद्यतन: की पुष्टि जारी रखने के लिए कृपया"
593
 
594
+ #: ../includes/ure-user-edit.php:79
595
  msgid "Change capabilities for user"
596
  msgstr "उपयोगकर्ता के लिए क्षमताओं को बदलें"
597
 
598
+ #: ../includes/ure-user-edit.php:82
599
  msgid "Role:"
600
  msgstr "भूमिका"
601
 
602
+ #: ../includes/ure-user-edit.php:104
603
  msgid "Add capabilities to this user:"
604
  msgstr "इस उपयोगकर्ता के लिए क्षमताओं जोड़ें:"
605
 
606
+ #: ../includes/ure-options.php:59
607
  msgid "User Roles are restored from the backup data. "
608
  msgstr "उपयोगकर्ता भूमिकाएँ डेटा बैकअप से बहाल कर रहे हैं."
609
 
610
+ #: ../includes/ure-options.php:130
611
  msgid "Error: "
612
  msgstr "त्रुटि:"
613
 
614
+ #: ../includes/ure-options.php:130
615
+ #: ../includes/ure-options.php:146
616
  msgid "Role"
617
  msgstr "भूमिका"
618
 
619
+ #: ../includes/ure-options.php:130
620
  msgid "does not exist"
621
  msgstr "मौजूद नहीं है"
622
 
623
+ #: ../includes/ure-options.php:146
624
  msgid "is updated successfully"
625
  msgstr "सफलतापूर्वक अपडेट किया"
626
 
627
+ #: ../includes/ure-options.php:154
628
  msgid "User"
629
  msgstr "उपयोगकर्ता"
630
 
631
+ #: ../includes/ure-options.php:154
632
  msgid "capabilities are updated successfully"
633
  msgstr "क्षमताओं को सफलतापूर्वक नवीनीकृत कर रहे हैं"
634
 
635
+ #: ../includes/ure-options.php:232
636
  msgid "About this Plugin:"
637
  msgstr "इस प्लगइन के बारे में:"
638
 
639
+ #: ../includes/ure-options.php:233
640
  msgid "Author's website"
641
  msgstr "लेखक की वेबसाइट"
642
 
643
+ #: ../includes/ure-options.php:234
644
  msgid "Plugin webpage"
645
  msgstr "प्लगइन वेबपेज"
646
 
647
+ #: ../includes/ure-options.php:236
648
  msgid "FAQ"
649
  msgstr "अक्सर पूछे जाने वाले प्रश्न"
650
 
651
+ #: ../includes/ure-options.php:237
652
  msgid "Greetings"
653
  msgstr "बधाई"
654
 
655
+ #: ../includes/ure-options.php:259
656
  msgid "Greetings:"
657
  msgstr "नमस्ते:"
658
 
659
+ #: ../includes/ure-options.php:260
660
  msgid "It's me, the author"
661
  msgstr "यह मेरे लिए है, लेखक"
662
 
663
+ #: ../includes/ure-options.php:261
664
  msgid "For the help with Belorussian translation"
665
  msgstr "बेलोरूसि अनुवाद के साथ मदद के लिए"
666
 
667
+ #: ../includes/ure-options.php:262
668
  msgid "For the help with Brasilian translation"
669
  msgstr "ब्राजील के अनुवाद के साथ मदद के लिए"
670
 
671
+ #: ../includes/ure-options.php:263
672
+ #, fuzzy
673
+ msgid "For the help with Brasilian Portuguese translation"
674
+ msgstr "ब्राजील के अनुवाद के साथ मदद के लिए"
675
+
676
+ #: ../includes/ure-options.php:264
677
  msgid "For the help with Chinese translation"
678
  msgstr "चीनी अनुवाद के साथ मदद के लिए"
679
 
680
+ #: ../includes/ure-options.php:265
681
  msgid "For the help with Dutch translation"
682
  msgstr "डच अनुवाद के साथ मदद के लिए"
683
 
684
+ #: ../includes/ure-options.php:266
685
  msgid "For the help with Finnish translation"
686
  msgstr "फिनिश अनुवाद के साथ मदद के लिए"
687
 
688
+ #: ../includes/ure-options.php:267
689
+ #: ../includes/ure-options.php:268
690
  msgid "For the help with French translation"
691
  msgstr "फ्रेंच अनुवाद के साथ मदद के लिए"
692
 
693
+ #: ../includes/ure-options.php:269
694
  msgid "For the help with German translation"
695
  msgstr "जर्मन अनुवाद के साथ मदद के लिए"
696
 
697
+ #: ../includes/ure-options.php:270
698
+ #: ../includes/ure-options.php:271
699
  msgid "For the help with Hebrew translation"
700
  msgstr "हिब्रू अनुवाद के साथ मदद के लिए"
701
 
702
+ #: ../includes/ure-options.php:272
703
  msgid "For the help with Hindi translation"
704
  msgstr ""
705
 
706
+ #: ../includes/ure-options.php:273
707
  msgid "For the help with Hungarian translation"
708
  msgstr "For the help with Hungarian translation"
709
 
710
+ #: ../includes/ure-options.php:274
711
+ #: ../includes/ure-options.php:275
712
  msgid "For the help with Italian translation"
713
  msgstr "इतालवी अनुवाद के साथ मदद के लिए"
714
 
715
+ #: ../includes/ure-options.php:276
716
  msgid "For the help with Japanese translation"
717
  msgstr "जापानी अनुवाद के साथ मदद के लिए"
718
 
719
+ #: ../includes/ure-options.php:277
720
  msgid "For the help with Lithuanian translation"
721
  msgstr "लिथुआनियाई अनुवाद के साथ मदद के लिए"
722
 
723
+ #: ../includes/ure-options.php:278
724
+ #: ../includes/ure-options.php:279
725
+ #: ../includes/ure-options.php:280
726
  msgid "For the help with Persian translation"
727
  msgstr "फारसी अनुवाद के साथ मदद के लिए"
728
 
729
+ #: ../includes/ure-options.php:281
730
+ #: ../includes/ure-options.php:282
731
  msgid "For the help with Polish translation"
732
  msgstr "पोलिश अनुवाद के साथ मदद के लिए"
733
 
734
+ #: ../includes/ure-options.php:283
735
+ #: ../includes/ure-options.php:284
736
  msgid "For the help with Spanish translation"
737
  msgstr "स्पेनिश अनुवाद के साथ मदद के लिए"
738
 
739
+ #: ../includes/ure-options.php:285
740
  msgid "For the updated Swedish translation"
741
  msgstr "अपडेट स्वीडिश अनुवाद के लिए"
742
 
743
+ #: ../includes/ure-options.php:286
744
  msgid "For the help with Swedish translation"
745
  msgstr "स्वीडिश अनुवाद के साथ मदद के लिए"
746
 
747
+ #: ../includes/ure-options.php:287
748
  msgid "For the help with Turkish translation"
749
  msgstr "तुर्की अनुवाद के साथ मदद के लिए"
750
 
751
+ #: ../includes/ure-options.php:289
752
  msgid "For the code to hide administrator role"
753
  msgstr "प्रशासक भूमिका को छुपाने के लिए कोड "
754
 
755
+ #: ../includes/ure-options.php:290
756
  msgid "For the code enhancement suggestion"
757
  msgstr "कोड वृद्धि सुझाव के लिए"
758
 
759
+ #: ../includes/ure-options.php:292
760
  msgid "Do you wish to see your name with link to your site here? You are welcome! Your help with translation and new ideas are very appreciated."
761
  msgstr "क्या आप अपनी साइट के लिए यहाँ के लिंक के साथ अपना नाम देखना चाहते हैं? आपका स्वागत है! अनुवाद और नए विचारों के साथ तुम्हारी मदद की बहुत सराहना की है."
762
 
lang/ure-hu_HU.mo CHANGED
Binary file
lang/ure-hu_HU.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: User Role Editor\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2012-06-23 23:21+0700\n"
6
- "PO-Revision-Date: 2012-06-23 23:21+0700\n"
7
  "Last-Translator: Vladimir Garagulya <vladimir@shinephp.com>\n"
8
  "Language-Team: shinephp.com <vladimir@shinephp.com>\n"
9
  "Language: \n"
@@ -32,720 +32,737 @@ msgstr "Kérem frissítsen!"
32
  msgid "User Role Editor requires PHP 5.0 or newer."
33
  msgstr ""
34
 
35
- #: user-role-editor.php:65
36
  msgid "Only"
37
  msgstr ""
38
 
39
- #: user-role-editor.php:65
40
  msgid "is allowed to use"
41
  msgstr ""
42
 
43
- #: user-role-editor.php:71
44
- #: user-role-editor.php:246
45
  msgid "User Role Editor"
46
  msgstr "Felhasználó Szerepkör Szerkesztő"
47
 
48
- #: user-role-editor.php:218
49
  msgid "Settings"
50
  msgstr "Beállítások"
51
 
52
- #: user-role-editor.php:228
53
- #: ure-options.php:218
54
  msgid "Changelog"
55
  msgstr "Changelog"
56
 
57
- #: user-role-editor.php:275
58
  msgid "Capabilities"
59
  msgstr ""
60
 
61
- #: ure-lib.php:45
62
  msgid "Error is occur. Please check the log file."
63
  msgstr "Hiba lépett fel! Nézd meg a log fájlt."
64
 
65
- #: ure-lib.php:155
66
  msgid "Database operation error. Check log file."
67
  msgstr "Adatbázis műveleti hiba! Nézd meg a log fájlt."
68
 
69
- #: ure-lib.php:188
70
  msgid "No backup data. It is created automatically before the first role data update."
71
  msgstr "Nincs biztonsági mentés! Ez automatikusan létrejön az első szerepkör frissítés előtt."
72
 
73
- #: ure-lib.php:226
74
  msgid "Backup record is created for the current role capabilities"
75
  msgstr "A biztonsági mentés elkészült a jelenlegi szerpkörhöz tartozó beállításokról"
76
 
77
- #: ure-lib.php:345
78
  msgid "Error: Role name must contain latin characters and digits only!"
79
  msgstr "Hiba: a szerepkör neve csak a latin ABC betűit és számokat tartalmazhat!"
80
 
81
- #: ure-lib.php:352
82
  #, php-format
83
  msgid "Role %s exists already"
84
  msgstr ""
85
 
86
- #: ure-lib.php:365
87
  msgid "Error is encountered during new role create operation"
88
  msgstr "Hiba lépett fel az új szerepkör létrehozása közben!"
89
 
90
- #: ure-lib.php:367
91
  #, php-format
92
  msgid "Role %s is created successfully"
93
  msgstr "A szerepkör: %s sikeresen létrehozva"
94
 
95
- #: ure-lib.php:451
96
  msgid "Error encountered during role delete operation"
97
  msgstr "Hiba lépett fel az új szerepkör törlése közben!"
98
 
99
- #: ure-lib.php:453
100
  #, php-format
101
  msgid "Role %s is deleted successfully"
102
  msgstr "A szerepkör: %s sikeresen törölve"
103
 
104
- #: ure-lib.php:471
105
  msgid "Error encountered during default role change operation"
106
  msgstr "Hiba lépett fel az alapértelmezett szerepkör megváltoztatása közben"
107
 
108
- #: ure-lib.php:477
109
  #, php-format
110
  msgid "Default role for new users is set to %s successfully"
111
  msgstr "Az alapértelmezett szerepkör az új feliratkozók számára sikeresen beállítva erre: %s"
112
 
113
- #: ure-lib.php:505
114
  msgid "Editor"
115
  msgstr "Szerkesztő"
116
 
117
- #: ure-lib.php:506
118
  msgid "Author"
119
  msgstr "Szerző"
120
 
121
- #: ure-lib.php:507
122
  msgid "Contributor"
123
  msgstr "Közreműködő"
124
 
125
- #: ure-lib.php:508
126
  msgid "Subscriber"
127
  msgstr "Feliratkozó"
128
 
129
- #: ure-lib.php:510
130
  msgid "Switch themes"
131
  msgstr "Sablon váltás"
132
 
133
- #: ure-lib.php:511
134
  msgid "Edit themes"
135
  msgstr "Sablon szerkesztés"
136
 
137
- #: ure-lib.php:512
138
  msgid "Activate plugins"
139
  msgstr "Plugin aktiválása"
140
 
141
- #: ure-lib.php:513
142
  msgid "Edit plugins"
143
  msgstr "Pluginok szerkesztése"
144
 
145
- #: ure-lib.php:514
146
  msgid "Edit users"
147
  msgstr "Felhasználók szerkesztése"
148
 
149
- #: ure-lib.php:515
150
  msgid "Edit files"
151
  msgstr "Fájlok szerkesztése"
152
 
153
- #: ure-lib.php:516
154
  msgid "Manage options"
155
  msgstr "Beállítások módosítása"
156
 
157
- #: ure-lib.php:517
158
  msgid "Moderate comments"
159
  msgstr "Kommentek moderálása"
160
 
161
- #: ure-lib.php:518
162
  msgid "Manage categories"
163
  msgstr "Kategóriák kezelése"
164
 
165
- #: ure-lib.php:519
166
  msgid "Manage links"
167
  msgstr "Linkek szerkesztése"
168
 
169
- #: ure-lib.php:520
170
  msgid "Upload files"
171
  msgstr "Fájlok feltöltése"
172
 
173
- #: ure-lib.php:521
174
  msgid "Import"
175
  msgstr "Importálás"
176
 
177
- #: ure-lib.php:522
178
  msgid "Unfiltered html"
179
  msgstr "Szűretlen HTML"
180
 
181
- #: ure-lib.php:523
182
  msgid "Edit posts"
183
  msgstr "Bejegyzések szerkesztése"
184
 
185
- #: ure-lib.php:524
186
  msgid "Edit others posts"
187
  msgstr "Mások bejegyzéseinek szerksztése"
188
 
189
- #: ure-lib.php:525
190
  msgid "Edit published posts"
191
  msgstr "Publikált bejegyzések szerkesztése"
192
 
193
- #: ure-lib.php:526
194
  msgid "Publish posts"
195
  msgstr "Bejegyzések közzététele"
196
 
197
- #: ure-lib.php:527
198
  msgid "Edit pages"
199
  msgstr "Oldalak szerkesztése"
200
 
201
- #: ure-lib.php:528
202
  msgid "Read"
203
  msgstr "Olvasás"
204
 
205
- #: ure-lib.php:529
206
  msgid "Level 10"
207
  msgstr "10. szint"
208
 
209
- #: ure-lib.php:530
210
  msgid "Level 9"
211
  msgstr "9. szint"
212
 
213
- #: ure-lib.php:531
214
  msgid "Level 8"
215
  msgstr "8. szint"
216
 
217
- #: ure-lib.php:532
218
  msgid "Level 7"
219
  msgstr "7. szint"
220
 
221
- #: ure-lib.php:533
222
  msgid "Level 6"
223
  msgstr "6. szint"
224
 
225
- #: ure-lib.php:534
226
  msgid "Level 5"
227
  msgstr "5. szint"
228
 
229
- #: ure-lib.php:535
230
  msgid "Level 4"
231
  msgstr "4. szint"
232
 
233
- #: ure-lib.php:536
234
  msgid "Level 3"
235
  msgstr "3. szint"
236
 
237
- #: ure-lib.php:537
238
  msgid "Level 2"
239
  msgstr "2. szint"
240
 
241
- #: ure-lib.php:538
242
  msgid "Level 1"
243
  msgstr "1. szint"
244
 
245
- #: ure-lib.php:539
246
  msgid "Level 0"
247
  msgstr "0. szint"
248
 
249
- #: ure-lib.php:540
250
  msgid "Edit others pages"
251
  msgstr "Mások oldalainak szerkesztése"
252
 
253
- #: ure-lib.php:541
254
  msgid "Edit published pages"
255
  msgstr "Közzétett oldalak szerkesztése"
256
 
257
- #: ure-lib.php:542
258
  msgid "Publish pages"
259
  msgstr "Oldalak közzététele"
260
 
261
- #: ure-lib.php:543
262
  msgid "Delete pages"
263
  msgstr "Oldalak törlése"
264
 
265
- #: ure-lib.php:544
266
  msgid "Delete others pages"
267
  msgstr "Mások oldalainak törlése"
268
 
269
- #: ure-lib.php:545
270
  msgid "Delete published pages"
271
  msgstr "Közzétett oldalak törlése"
272
 
273
- #: ure-lib.php:546
274
  msgid "Delete posts"
275
  msgstr "Bejgyzések törlése"
276
 
277
- #: ure-lib.php:547
278
  msgid "Delete others posts"
279
  msgstr "Mások bejegyzéseinek törlése"
280
 
281
- #: ure-lib.php:548
282
  msgid "Delete published posts"
283
  msgstr "Közzétett bejegyzések törlése"
284
 
285
- #: ure-lib.php:549
286
  msgid "Delete private posts"
287
  msgstr "Privát bejegyzések törlése"
288
 
289
- #: ure-lib.php:550
290
  msgid "Edit private posts"
291
  msgstr "Privát bejegyzések szerkesztése"
292
 
293
- #: ure-lib.php:551
294
  msgid "Read private posts"
295
  msgstr "Privát bejegyzések megtekintése"
296
 
297
- #: ure-lib.php:552
298
  msgid "Delete private pages"
299
  msgstr "Privát oldalak törlése"
300
 
301
- #: ure-lib.php:553
302
  msgid "Edit private pages"
303
  msgstr "Privát oldalak szerkesztése"
304
 
305
- #: ure-lib.php:554
306
  msgid "Read private pages"
307
  msgstr "Privát oldalak megtekintése"
308
 
309
- #: ure-lib.php:555
310
  msgid "Delete users"
311
  msgstr "Felhasználók törlése"
312
 
313
- #: ure-lib.php:556
314
  msgid "Create users"
315
  msgstr "Felhasználók létrehozása"
316
 
317
- #: ure-lib.php:557
318
  msgid "Unfiltered upload"
319
  msgstr "Ellenőrizetlen feltöltés"
320
 
321
- #: ure-lib.php:558
322
  msgid "Edit dashboard"
323
  msgstr "Dashboard szerkesztése"
324
 
325
- #: ure-lib.php:559
326
  msgid "Update plugins"
327
  msgstr "Pluginok frissítése"
328
 
329
- #: ure-lib.php:560
330
  msgid "Delete plugins"
331
  msgstr "Pluginok törlése"
332
 
333
- #: ure-lib.php:561
334
  msgid "Install plugins"
335
  msgstr "Pluginok telepítése"
336
 
337
- #: ure-lib.php:562
338
  msgid "Update themes"
339
  msgstr "Sablonok frissítése"
340
 
341
- #: ure-lib.php:563
342
  msgid "Install themes"
343
  msgstr "Sablonok telepítése"
344
 
345
- #: ure-lib.php:564
346
  msgid "Update core"
347
  msgstr ""
348
 
349
- #: ure-lib.php:565
350
  msgid "List users"
351
  msgstr ""
352
 
353
- #: ure-lib.php:566
354
  msgid "Remove users"
355
  msgstr ""
356
 
357
- #: ure-lib.php:567
358
  msgid "Add users"
359
  msgstr ""
360
 
361
- #: ure-lib.php:568
362
  msgid "Promote users"
363
  msgstr ""
364
 
365
- #: ure-lib.php:569
366
  msgid "Edit theme options"
367
  msgstr ""
368
 
369
- #: ure-lib.php:570
370
  msgid "Delete themes"
371
  msgstr ""
372
 
373
- #: ure-lib.php:571
374
  msgid "Export"
375
  msgstr ""
376
 
377
- #: ure-lib.php:655
378
  #, fuzzy
379
  msgid "Error: Capability name must contain latin characters and digits only!"
380
  msgstr "Hiba: a szerepkör neve csak a latin ABC betűit és számokat tartalmazhat!"
381
 
382
- #: ure-lib.php:667
383
  #, php-format
384
  msgid "Capability %s is added successfully"
385
  msgstr ""
386
 
387
- #: ure-lib.php:669
388
  #, php-format
389
  msgid "Capability %s exists already"
390
  msgstr ""
391
 
392
- #: ure-lib.php:818
393
  #, php-format
394
  msgid "Error! You do not have permission to delete this capability: %s!"
395
  msgstr ""
396
 
397
- #: ure-lib.php:840
398
  #, php-format
399
  msgid "Capability %s is removed successfully"
400
  msgstr ""
401
 
402
- #: ure-lib.php:902
403
  msgid "Help"
404
  msgstr ""
405
 
406
- #: ure-role-edit.php:29
407
  msgid "None"
408
  msgstr ""
409
 
410
- #: ure-role-edit.php:93
411
  msgid " Name can not be empty!"
412
  msgstr ""
413
 
414
- #: ure-role-edit.php:97
415
  #, fuzzy
416
  msgid " Name must contain latin characters and digits only!"
417
  msgstr "A szerepkör neve csak a latin ABC betűit és számokat tartalmazhat!"
418
 
419
- #: ure-role-edit.php:102
420
- #: ure-role-edit.php:293
421
  msgid "Delete Role"
422
  msgstr "Szerepkör törlése"
423
 
424
- #: ure-role-edit.php:104
425
  msgid "Change Default Role"
426
  msgstr "Alapértelmezett szerepkör megváltoztatása"
427
 
428
- #: ure-role-edit.php:106
429
  msgid "Restore Roles from backup copy. Be careful, backup was created when you started URE 1st time. All changes you made after that will be lost"
430
  msgstr ""
431
 
432
- #: ure-role-edit.php:108
433
  msgid "Warning! Be careful - removing critical capability could crash some plugin or other custom code"
434
  msgstr ""
435
 
436
- #: ure-role-edit.php:110
437
  msgid "Please confirm to continue"
438
  msgstr "A folytatás előtt, kérem hagyja jóva a műveletet"
439
 
440
- #: ure-role-edit.php:147
441
  #, php-format
442
  msgid "Role \"%s\" update: please confirm to continue"
443
  msgstr "Szerepkör frissítése \"%s\": kérem hagyja jóvá a folytatáshoz"
444
 
445
- #: ure-role-edit.php:155
446
  msgid "Select Role and change its capabilities list"
447
  msgstr "Szerepkör kiválasztása és lehetőségek módosítása"
448
 
449
- #: ure-role-edit.php:157
450
  msgid "Select Role:"
451
  msgstr "Szerepkör kiválasztása:"
452
 
453
- #: ure-role-edit.php:167
454
- #: ure-user-edit.php:91
455
  msgid "Show capabilities in human readable form"
456
  msgstr "Mutasd a beállításokat emberi olvasható formában"
457
 
458
- #: ure-role-edit.php:176
459
- #: ure-user-edit.php:100
460
  msgid "Show deprecated capabilities"
461
  msgstr ""
462
 
463
- #: ure-role-edit.php:180
464
  msgid "If checked, then apply action to ALL sites of this Network"
465
  msgstr ""
466
 
467
- #: ure-role-edit.php:190
468
  msgid "Apply to All Sites"
469
  msgstr ""
470
 
471
- #: ure-role-edit.php:251
472
- #: ure-user-edit.php:163
 
 
 
 
 
 
 
 
 
 
473
  msgid "Update"
474
  msgstr "Frissítés"
475
 
476
- #: ure-role-edit.php:251
477
- #: ure-user-edit.php:163
478
  msgid "Save Changes"
479
  msgstr "Beálltások mentése"
480
 
481
- #: ure-role-edit.php:252
482
- #: ure-user-edit.php:164
483
  msgid "Cancel"
484
  msgstr "Mégsem"
485
 
486
- #: ure-role-edit.php:252
487
- #: ure-user-edit.php:164
488
  msgid "Cancel not saved changes"
489
  msgstr "A nem mentett beállítások elvetése"
490
 
491
- #: ure-role-edit.php:255
492
  msgid "Select All"
493
  msgstr ""
494
 
495
- #: ure-role-edit.php:255
496
  msgid "Select All Capabilities"
497
  msgstr ""
498
 
499
- #: ure-role-edit.php:256
500
  msgid "Unselect All"
501
  msgstr ""
502
 
503
- #: ure-role-edit.php:256
504
  msgid "Unselect All Capabilities"
505
  msgstr ""
506
 
507
- #: ure-role-edit.php:257
508
  msgid "Reverse"
509
  msgstr ""
510
 
511
- #: ure-role-edit.php:257
512
  msgid "Turn checked capabilities off and vise versa"
513
  msgstr ""
514
 
515
- #: ure-role-edit.php:260
516
  msgid "Reset"
517
  msgstr "Reset"
518
 
519
- #: ure-role-edit.php:260
520
  msgid "Restore Roles from backup copy"
521
  msgstr "Szerepkör visszaállítása biztonsági mentésből"
522
 
523
- #: ure-role-edit.php:270
524
  msgid "Add New Role"
525
  msgstr "Új szerepkör"
526
 
527
- #: ure-role-edit.php:272
528
  msgid "Name: "
529
  msgstr ""
530
 
531
- #: ure-role-edit.php:276
532
  msgid "Make copy of: "
533
  msgstr ""
534
 
535
- #: ure-role-edit.php:279
536
- #: ure-role-edit.php:308
537
  msgid "Add"
538
  msgstr "Hozzáad"
539
 
540
- #: ure-role-edit.php:279
541
  msgid "Add New User Role"
542
  msgstr "Új felhasználói szerepkör hozzáadása"
543
 
544
- #: ure-role-edit.php:283
545
  msgid "Default Role for New User"
546
  msgstr "Új felhasználó alapértelmezett szerepköre"
547
 
548
- #: ure-role-edit.php:288
549
  msgid "Change"
550
  msgstr "Változtat"
551
 
552
- #: ure-role-edit.php:288
553
  msgid "Set as Default User Role"
554
  msgstr "Alapértelmezett szerepkörként beállít"
555
 
556
- #: ure-role-edit.php:298
557
  msgid "Delete"
558
  msgstr "Törlés"
559
 
560
- #: ure-role-edit.php:298
561
  msgid "Delete User Role"
562
  msgstr "Felhasználói szerepkör törlése"
563
 
564
- #: ure-role-edit.php:303
565
- #: ure-role-edit.php:308
566
  msgid "Add New Capability"
567
  msgstr ""
568
 
569
- #: ure-role-edit.php:313
570
  msgid "Remove Capability"
571
  msgstr ""
572
 
573
- #: ure-role-edit.php:318
574
  msgid "Remove"
575
  msgstr ""
576
 
577
- #: ure-role-edit.php:318
578
  msgid "Remove User Capability"
579
  msgstr ""
580
 
581
- #: ure-user-edit.php:67
582
  #, fuzzy, php-format
583
  msgid "User \"%s\" update: please confirm to continue"
584
  msgstr "Szerepkör frissítése \"%s\": kérem hagyja jóvá a folytatáshoz"
585
 
586
- #: ure-user-edit.php:79
587
  msgid "Change capabilities for user"
588
  msgstr ""
589
 
590
- #: ure-user-edit.php:82
591
  #, fuzzy
592
  msgid "Role:"
593
  msgstr "Szerepkör"
594
 
595
- #: ure-user-edit.php:104
596
  msgid "Add capabilities to this user:"
597
  msgstr ""
598
 
599
- #: ure-options.php:59
600
  #, fuzzy
601
  msgid "User Roles are restored from the backup data. "
602
  msgstr "A szerephez tartozó jogosultások visszaállítva a biztonásgi mentésből."
603
 
604
- #: ure-options.php:125
605
  msgid "Error: "
606
  msgstr ""
607
 
608
- #: ure-options.php:125
609
- #: ure-options.php:143
610
  msgid "Role"
611
  msgstr "Szerepkör"
612
 
613
- #: ure-options.php:125
614
  msgid "does not exist"
615
  msgstr ""
616
 
617
- #: ure-options.php:143
618
  msgid "is updated successfully"
619
  msgstr "sikeresen frissítve"
620
 
621
- #: ure-options.php:152
622
  msgid "User"
623
  msgstr ""
624
 
625
- #: ure-options.php:152
626
  #, fuzzy
627
  msgid "capabilities are updated successfully"
628
  msgstr "sikeresen frissítve"
629
 
630
- #: ure-options.php:215
631
  msgid "About this Plugin:"
632
  msgstr "A Pluginról:"
633
 
634
- #: ure-options.php:216
635
  msgid "Author's website"
636
  msgstr "A készítő weblapja"
637
 
638
- #: ure-options.php:217
639
  msgid "Plugin webpage"
640
  msgstr "A plugin weblapja"
641
 
642
- #: ure-options.php:219
643
  msgid "FAQ"
644
  msgstr "GYIK"
645
 
646
- #: ure-options.php:220
647
  msgid "Greetings"
648
  msgstr ""
649
 
650
- #: ure-options.php:242
651
  msgid "Greetings:"
652
  msgstr "Üdvözlet:"
653
 
654
- #: ure-options.php:243
655
  msgid "It's me, the author"
656
  msgstr "A készítő"
657
 
658
- #: ure-options.php:244
659
  msgid "For the help with Belorussian translation"
660
  msgstr "A Belorusz fordításért"
661
 
662
- #: ure-options.php:245
663
  msgid "For the help with Brasilian translation"
664
  msgstr ""
665
 
666
- #: ure-options.php:246
 
 
 
 
 
667
  msgid "For the help with Chinese translation"
668
  msgstr "A Chinese fordításért"
669
 
670
- #: ure-options.php:247
671
  msgid "For the help with Dutch translation"
672
  msgstr "A Dutch fordításért"
673
 
674
- #: ure-options.php:248
675
  msgid "For the help with Finnish translation"
676
  msgstr "A Finnish fordításért"
677
 
678
- #: ure-options.php:249
679
- #: ure-options.php:250
680
  msgid "For the help with French translation"
681
  msgstr "A francia fordításért"
682
 
683
- #: ure-options.php:251
684
  msgid "For the help with German translation"
685
  msgstr "A német fordításért"
686
 
687
- #: ure-options.php:252
688
- #: ure-options.php:253
689
  msgid "For the help with Hebrew translation"
690
  msgstr ""
691
 
692
- #: ure-options.php:254
693
  msgid "For the help with Hindi translation"
694
  msgstr ""
695
 
696
- #: ure-options.php:255
697
  msgid "For the help with Hungarian translation"
698
  msgstr "A magyar fordításért"
699
 
700
- #: ure-options.php:256
701
- #: ure-options.php:257
702
  msgid "For the help with Italian translation"
703
  msgstr "Az olasz fordításért"
704
 
705
- #: ure-options.php:258
706
  msgid "For the help with Japanese translation"
707
  msgstr "A japán fordításért"
708
 
709
- #: ure-options.php:259
710
  msgid "For the help with Lithuanian translation"
711
  msgstr ""
712
 
713
- #: ure-options.php:260
714
- #: ure-options.php:261
 
715
  msgid "For the help with Persian translation"
716
  msgstr ""
717
 
718
- #: ure-options.php:262
 
719
  msgid "For the help with Polish translation"
720
  msgstr "A lenygel fordításért"
721
 
722
- #: ure-options.php:263
723
- #: ure-options.php:264
724
  msgid "For the help with Spanish translation"
725
  msgstr "A spanyol fordításért"
726
 
727
- #: ure-options.php:265
728
  #, fuzzy
729
  msgid "For the updated Swedish translation"
730
  msgstr "A Swedish fordításért"
731
 
732
- #: ure-options.php:266
733
  msgid "For the help with Swedish translation"
734
  msgstr "A Swedish fordításért"
735
 
736
- #: ure-options.php:267
737
  msgid "For the help with Turkish translation"
738
  msgstr ""
739
 
740
- #: ure-options.php:269
741
  msgid "For the code to hide administrator role"
742
  msgstr "Az adminisztrátori szerepkör elrejtésére szolgáló kódért"
743
 
744
- #: ure-options.php:270
745
  msgid "For the code enhancement suggestion"
746
  msgstr ""
747
 
748
- #: ure-options.php:272
749
  msgid "Do you wish to see your name with link to your site here? You are welcome! Your help with translation and new ideas are very appreciated."
750
  msgstr "Szeretnéd itt látni a neved egy hivatkozással a weblapodra? Megoldható! Így háláljuk meg a fordításban nyújtott segítséged, és új ötleteidet."
751
 
2
  msgstr ""
3
  "Project-Id-Version: User Role Editor\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-09-01 08:46+0700\n"
6
+ "PO-Revision-Date: 2012-09-01 08:46+0700\n"
7
  "Last-Translator: Vladimir Garagulya <vladimir@shinephp.com>\n"
8
  "Language-Team: shinephp.com <vladimir@shinephp.com>\n"
9
  "Language: \n"
32
  msgid "User Role Editor requires PHP 5.0 or newer."
33
  msgstr ""
34
 
35
+ #: user-role-editor.php:76
36
  msgid "Only"
37
  msgstr ""
38
 
39
+ #: user-role-editor.php:76
40
  msgid "is allowed to use"
41
  msgstr ""
42
 
43
+ #: user-role-editor.php:82
44
+ #: user-role-editor.php:251
45
  msgid "User Role Editor"
46
  msgstr "Felhasználó Szerepkör Szerkesztő"
47
 
48
+ #: user-role-editor.php:223
49
  msgid "Settings"
50
  msgstr "Beállítások"
51
 
52
+ #: user-role-editor.php:233
53
+ #: includes/ure-options.php:235
54
  msgid "Changelog"
55
  msgstr "Changelog"
56
 
57
+ #: user-role-editor.php:280
58
  msgid "Capabilities"
59
  msgstr ""
60
 
61
+ #: includes/ure-lib.php:34
62
  msgid "Error is occur. Please check the log file."
63
  msgstr "Hiba lépett fel! Nézd meg a log fájlt."
64
 
65
+ #: includes/ure-lib.php:144
66
  msgid "Database operation error. Check log file."
67
  msgstr "Adatbázis műveleti hiba! Nézd meg a log fájlt."
68
 
69
+ #: includes/ure-lib.php:177
70
  msgid "No backup data. It is created automatically before the first role data update."
71
  msgstr "Nincs biztonsági mentés! Ez automatikusan létrejön az első szerepkör frissítés előtt."
72
 
73
+ #: includes/ure-lib.php:215
74
  msgid "Backup record is created for the current role capabilities"
75
  msgstr "A biztonsági mentés elkészült a jelenlegi szerpkörhöz tartozó beállításokról"
76
 
77
+ #: includes/ure-lib.php:329
78
  msgid "Error: Role name must contain latin characters and digits only!"
79
  msgstr "Hiba: a szerepkör neve csak a latin ABC betűit és számokat tartalmazhat!"
80
 
81
+ #: includes/ure-lib.php:336
82
  #, php-format
83
  msgid "Role %s exists already"
84
  msgstr ""
85
 
86
+ #: includes/ure-lib.php:349
87
  msgid "Error is encountered during new role create operation"
88
  msgstr "Hiba lépett fel az új szerepkör létrehozása közben!"
89
 
90
+ #: includes/ure-lib.php:351
91
  #, php-format
92
  msgid "Role %s is created successfully"
93
  msgstr "A szerepkör: %s sikeresen létrehozva"
94
 
95
+ #: includes/ure-lib.php:435
96
  msgid "Error encountered during role delete operation"
97
  msgstr "Hiba lépett fel az új szerepkör törlése közben!"
98
 
99
+ #: includes/ure-lib.php:437
100
  #, php-format
101
  msgid "Role %s is deleted successfully"
102
  msgstr "A szerepkör: %s sikeresen törölve"
103
 
104
+ #: includes/ure-lib.php:455
105
  msgid "Error encountered during default role change operation"
106
  msgstr "Hiba lépett fel az alapértelmezett szerepkör megváltoztatása közben"
107
 
108
+ #: includes/ure-lib.php:461
109
  #, php-format
110
  msgid "Default role for new users is set to %s successfully"
111
  msgstr "Az alapértelmezett szerepkör az új feliratkozók számára sikeresen beállítva erre: %s"
112
 
113
+ #: includes/ure-lib.php:489
114
  msgid "Editor"
115
  msgstr "Szerkesztő"
116
 
117
+ #: includes/ure-lib.php:490
118
  msgid "Author"
119
  msgstr "Szerző"
120
 
121
+ #: includes/ure-lib.php:491
122
  msgid "Contributor"
123
  msgstr "Közreműködő"
124
 
125
+ #: includes/ure-lib.php:492
126
  msgid "Subscriber"
127
  msgstr "Feliratkozó"
128
 
129
+ #: includes/ure-lib.php:494
130
  msgid "Switch themes"
131
  msgstr "Sablon váltás"
132
 
133
+ #: includes/ure-lib.php:495
134
  msgid "Edit themes"
135
  msgstr "Sablon szerkesztés"
136
 
137
+ #: includes/ure-lib.php:496
138
  msgid "Activate plugins"
139
  msgstr "Plugin aktiválása"
140
 
141
+ #: includes/ure-lib.php:497
142
  msgid "Edit plugins"
143
  msgstr "Pluginok szerkesztése"
144
 
145
+ #: includes/ure-lib.php:498
146
  msgid "Edit users"
147
  msgstr "Felhasználók szerkesztése"
148
 
149
+ #: includes/ure-lib.php:499
150
  msgid "Edit files"
151
  msgstr "Fájlok szerkesztése"
152
 
153
+ #: includes/ure-lib.php:500
154
  msgid "Manage options"
155
  msgstr "Beállítások módosítása"
156
 
157
+ #: includes/ure-lib.php:501
158
  msgid "Moderate comments"
159
  msgstr "Kommentek moderálása"
160
 
161
+ #: includes/ure-lib.php:502
162
  msgid "Manage categories"
163
  msgstr "Kategóriák kezelése"
164
 
165
+ #: includes/ure-lib.php:503
166
  msgid "Manage links"
167
  msgstr "Linkek szerkesztése"
168
 
169
+ #: includes/ure-lib.php:504
170
  msgid "Upload files"
171
  msgstr "Fájlok feltöltése"
172
 
173
+ #: includes/ure-lib.php:505
174
  msgid "Import"
175
  msgstr "Importálás"
176
 
177
+ #: includes/ure-lib.php:506
178
  msgid "Unfiltered html"
179
  msgstr "Szűretlen HTML"
180
 
181
+ #: includes/ure-lib.php:507
182
  msgid "Edit posts"
183
  msgstr "Bejegyzések szerkesztése"
184
 
185
+ #: includes/ure-lib.php:508
186
  msgid "Edit others posts"
187
  msgstr "Mások bejegyzéseinek szerksztése"
188
 
189
+ #: includes/ure-lib.php:509
190
  msgid "Edit published posts"
191
  msgstr "Publikált bejegyzések szerkesztése"
192
 
193
+ #: includes/ure-lib.php:510
194
  msgid "Publish posts"
195
  msgstr "Bejegyzések közzététele"
196
 
197
+ #: includes/ure-lib.php:511
198
  msgid "Edit pages"
199
  msgstr "Oldalak szerkesztése"
200
 
201
+ #: includes/ure-lib.php:512
202
  msgid "Read"
203
  msgstr "Olvasás"
204
 
205
+ #: includes/ure-lib.php:513
206
  msgid "Level 10"
207
  msgstr "10. szint"
208
 
209
+ #: includes/ure-lib.php:514
210
  msgid "Level 9"
211
  msgstr "9. szint"
212
 
213
+ #: includes/ure-lib.php:515
214
  msgid "Level 8"
215
  msgstr "8. szint"
216
 
217
+ #: includes/ure-lib.php:516
218
  msgid "Level 7"
219
  msgstr "7. szint"
220
 
221
+ #: includes/ure-lib.php:517
222
  msgid "Level 6"
223
  msgstr "6. szint"
224
 
225
+ #: includes/ure-lib.php:518
226
  msgid "Level 5"
227
  msgstr "5. szint"
228
 
229
+ #: includes/ure-lib.php:519
230
  msgid "Level 4"
231
  msgstr "4. szint"
232
 
233
+ #: includes/ure-lib.php:520
234
  msgid "Level 3"
235
  msgstr "3. szint"
236
 
237
+ #: includes/ure-lib.php:521
238
  msgid "Level 2"
239
  msgstr "2. szint"
240
 
241
+ #: includes/ure-lib.php:522
242
  msgid "Level 1"
243
  msgstr "1. szint"
244
 
245
+ #: includes/ure-lib.php:523
246
  msgid "Level 0"
247
  msgstr "0. szint"
248
 
249
+ #: includes/ure-lib.php:524
250
  msgid "Edit others pages"
251
  msgstr "Mások oldalainak szerkesztése"
252
 
253
+ #: includes/ure-lib.php:525
254
  msgid "Edit published pages"
255
  msgstr "Közzétett oldalak szerkesztése"
256
 
257
+ #: includes/ure-lib.php:526
258
  msgid "Publish pages"
259
  msgstr "Oldalak közzététele"
260
 
261
+ #: includes/ure-lib.php:527
262
  msgid "Delete pages"
263
  msgstr "Oldalak törlése"
264
 
265
+ #: includes/ure-lib.php:528
266
  msgid "Delete others pages"
267
  msgstr "Mások oldalainak törlése"
268
 
269
+ #: includes/ure-lib.php:529
270
  msgid "Delete published pages"
271
  msgstr "Közzétett oldalak törlése"
272
 
273
+ #: includes/ure-lib.php:530
274
  msgid "Delete posts"
275
  msgstr "Bejgyzések törlése"
276
 
277
+ #: includes/ure-lib.php:531
278
  msgid "Delete others posts"
279
  msgstr "Mások bejegyzéseinek törlése"
280
 
281
+ #: includes/ure-lib.php:532
282
  msgid "Delete published posts"
283
  msgstr "Közzétett bejegyzések törlése"
284
 
285
+ #: includes/ure-lib.php:533
286
  msgid "Delete private posts"
287
  msgstr "Privát bejegyzések törlése"
288
 
289
+ #: includes/ure-lib.php:534
290
  msgid "Edit private posts"
291
  msgstr "Privát bejegyzések szerkesztése"
292
 
293
+ #: includes/ure-lib.php:535
294
  msgid "Read private posts"
295
  msgstr "Privát bejegyzések megtekintése"
296
 
297
+ #: includes/ure-lib.php:536
298
  msgid "Delete private pages"
299
  msgstr "Privát oldalak törlése"
300
 
301
+ #: includes/ure-lib.php:537
302
  msgid "Edit private pages"
303
  msgstr "Privát oldalak szerkesztése"
304
 
305
+ #: includes/ure-lib.php:538
306
  msgid "Read private pages"
307
  msgstr "Privát oldalak megtekintése"
308
 
309
+ #: includes/ure-lib.php:539
310
  msgid "Delete users"
311
  msgstr "Felhasználók törlése"
312
 
313
+ #: includes/ure-lib.php:540
314
  msgid "Create users"
315
  msgstr "Felhasználók létrehozása"
316
 
317
+ #: includes/ure-lib.php:541
318
  msgid "Unfiltered upload"
319
  msgstr "Ellenőrizetlen feltöltés"
320
 
321
+ #: includes/ure-lib.php:542
322
  msgid "Edit dashboard"
323
  msgstr "Dashboard szerkesztése"
324
 
325
+ #: includes/ure-lib.php:543
326
  msgid "Update plugins"
327
  msgstr "Pluginok frissítése"
328
 
329
+ #: includes/ure-lib.php:544
330
  msgid "Delete plugins"
331
  msgstr "Pluginok törlése"
332
 
333
+ #: includes/ure-lib.php:545
334
  msgid "Install plugins"
335
  msgstr "Pluginok telepítése"
336
 
337
+ #: includes/ure-lib.php:546
338
  msgid "Update themes"
339
  msgstr "Sablonok frissítése"
340
 
341
+ #: includes/ure-lib.php:547
342
  msgid "Install themes"
343
  msgstr "Sablonok telepítése"
344
 
345
+ #: includes/ure-lib.php:548
346
  msgid "Update core"
347
  msgstr ""
348
 
349
+ #: includes/ure-lib.php:549
350
  msgid "List users"
351
  msgstr ""
352
 
353
+ #: includes/ure-lib.php:550
354
  msgid "Remove users"
355
  msgstr ""
356
 
357
+ #: includes/ure-lib.php:551
358
  msgid "Add users"
359
  msgstr ""
360
 
361
+ #: includes/ure-lib.php:552
362
  msgid "Promote users"
363
  msgstr ""
364
 
365
+ #: includes/ure-lib.php:553
366
  msgid "Edit theme options"
367
  msgstr ""
368
 
369
+ #: includes/ure-lib.php:554
370
  msgid "Delete themes"
371
  msgstr ""
372
 
373
+ #: includes/ure-lib.php:555
374
  msgid "Export"
375
  msgstr ""
376
 
377
+ #: includes/ure-lib.php:639
378
  #, fuzzy
379
  msgid "Error: Capability name must contain latin characters and digits only!"
380
  msgstr "Hiba: a szerepkör neve csak a latin ABC betűit és számokat tartalmazhat!"
381
 
382
+ #: includes/ure-lib.php:651
383
  #, php-format
384
  msgid "Capability %s is added successfully"
385
  msgstr ""
386
 
387
+ #: includes/ure-lib.php:653
388
  #, php-format
389
  msgid "Capability %s exists already"
390
  msgstr ""
391
 
392
+ #: includes/ure-lib.php:802
393
  #, php-format
394
  msgid "Error! You do not have permission to delete this capability: %s!"
395
  msgstr ""
396
 
397
+ #: includes/ure-lib.php:824
398
  #, php-format
399
  msgid "Capability %s is removed successfully"
400
  msgstr ""
401
 
402
+ #: includes/ure-lib.php:889
403
  msgid "Help"
404
  msgstr ""
405
 
406
+ #: includes/ure-role-edit.php:29
407
  msgid "None"
408
  msgstr ""
409
 
410
+ #: includes/ure-role-edit.php:101
411
  msgid " Name can not be empty!"
412
  msgstr ""
413
 
414
+ #: includes/ure-role-edit.php:105
415
  #, fuzzy
416
  msgid " Name must contain latin characters and digits only!"
417
  msgstr "A szerepkör neve csak a latin ABC betűit és számokat tartalmazhat!"
418
 
419
+ #: includes/ure-role-edit.php:110
420
+ #: includes/ure-role-edit.php:367
421
  msgid "Delete Role"
422
  msgstr "Szerepkör törlése"
423
 
424
+ #: includes/ure-role-edit.php:112
425
  msgid "Change Default Role"
426
  msgstr "Alapértelmezett szerepkör megváltoztatása"
427
 
428
+ #: includes/ure-role-edit.php:114
429
  msgid "Restore Roles from backup copy. Be careful, backup was created when you started URE 1st time. All changes you made after that will be lost"
430
  msgstr ""
431
 
432
+ #: includes/ure-role-edit.php:116
433
  msgid "Warning! Be careful - removing critical capability could crash some plugin or other custom code"
434
  msgstr ""
435
 
436
+ #: includes/ure-role-edit.php:118
437
  msgid "Please confirm to continue"
438
  msgstr "A folytatás előtt, kérem hagyja jóva a műveletet"
439
 
440
+ #: includes/ure-role-edit.php:155
441
  #, php-format
442
  msgid "Role \"%s\" update: please confirm to continue"
443
  msgstr "Szerepkör frissítése \"%s\": kérem hagyja jóvá a folytatáshoz"
444
 
445
+ #: includes/ure-role-edit.php:163
446
  msgid "Select Role and change its capabilities list"
447
  msgstr "Szerepkör kiválasztása és lehetőségek módosítása"
448
 
449
+ #: includes/ure-role-edit.php:165
450
  msgid "Select Role:"
451
  msgstr "Szerepkör kiválasztása:"
452
 
453
+ #: includes/ure-role-edit.php:175
454
+ #: includes/ure-user-edit.php:91
455
  msgid "Show capabilities in human readable form"
456
  msgstr "Mutasd a beállításokat emberi olvasható formában"
457
 
458
+ #: includes/ure-role-edit.php:184
459
+ #: includes/ure-user-edit.php:100
460
  msgid "Show deprecated capabilities"
461
  msgstr ""
462
 
463
+ #: includes/ure-role-edit.php:188
464
  msgid "If checked, then apply action to ALL sites of this Network"
465
  msgstr ""
466
 
467
+ #: includes/ure-role-edit.php:198
468
  msgid "Apply to All Sites"
469
  msgstr ""
470
 
471
+ #: includes/ure-role-edit.php:205
472
+ #: includes/ure-user-edit.php:105
473
+ msgid "Core capabilities:"
474
+ msgstr ""
475
+
476
+ #: includes/ure-role-edit.php:268
477
+ #: includes/ure-user-edit.php:167
478
+ msgid "Custom capabilities:"
479
+ msgstr ""
480
+
481
+ #: includes/ure-role-edit.php:319
482
+ #: includes/ure-user-edit.php:222
483
  msgid "Update"
484
  msgstr "Frissítés"
485
 
486
+ #: includes/ure-role-edit.php:319
487
+ #: includes/ure-user-edit.php:222
488
  msgid "Save Changes"
489
  msgstr "Beálltások mentése"
490
 
491
+ #: includes/ure-role-edit.php:320
492
+ #: includes/ure-user-edit.php:223
493
  msgid "Cancel"
494
  msgstr "Mégsem"
495
 
496
+ #: includes/ure-role-edit.php:320
497
+ #: includes/ure-user-edit.php:223
498
  msgid "Cancel not saved changes"
499
  msgstr "A nem mentett beállítások elvetése"
500
 
501
+ #: includes/ure-role-edit.php:323
502
  msgid "Select All"
503
  msgstr ""
504
 
505
+ #: includes/ure-role-edit.php:323
506
  msgid "Select All Capabilities"
507
  msgstr ""
508
 
509
+ #: includes/ure-role-edit.php:327
510
  msgid "Unselect All"
511
  msgstr ""
512
 
513
+ #: includes/ure-role-edit.php:327
514
  msgid "Unselect All Capabilities"
515
  msgstr ""
516
 
517
+ #: includes/ure-role-edit.php:328
518
  msgid "Reverse"
519
  msgstr ""
520
 
521
+ #: includes/ure-role-edit.php:328
522
  msgid "Turn checked capabilities off and vise versa"
523
  msgstr ""
524
 
525
+ #: includes/ure-role-edit.php:334
526
  msgid "Reset"
527
  msgstr "Reset"
528
 
529
+ #: includes/ure-role-edit.php:334
530
  msgid "Restore Roles from backup copy"
531
  msgstr "Szerepkör visszaállítása biztonsági mentésből"
532
 
533
+ #: includes/ure-role-edit.php:344
534
  msgid "Add New Role"
535
  msgstr "Új szerepkör"
536
 
537
+ #: includes/ure-role-edit.php:346
538
  msgid "Name: "
539
  msgstr ""
540
 
541
+ #: includes/ure-role-edit.php:350
542
  msgid "Make copy of: "
543
  msgstr ""
544
 
545
+ #: includes/ure-role-edit.php:353
546
+ #: includes/ure-role-edit.php:382
547
  msgid "Add"
548
  msgstr "Hozzáad"
549
 
550
+ #: includes/ure-role-edit.php:353
551
  msgid "Add New User Role"
552
  msgstr "Új felhasználói szerepkör hozzáadása"
553
 
554
+ #: includes/ure-role-edit.php:357
555
  msgid "Default Role for New User"
556
  msgstr "Új felhasználó alapértelmezett szerepköre"
557
 
558
+ #: includes/ure-role-edit.php:362
559
  msgid "Change"
560
  msgstr "Változtat"
561
 
562
+ #: includes/ure-role-edit.php:362
563
  msgid "Set as Default User Role"
564
  msgstr "Alapértelmezett szerepkörként beállít"
565
 
566
+ #: includes/ure-role-edit.php:372
567
  msgid "Delete"
568
  msgstr "Törlés"
569
 
570
+ #: includes/ure-role-edit.php:372
571
  msgid "Delete User Role"
572
  msgstr "Felhasználói szerepkör törlése"
573
 
574
+ #: includes/ure-role-edit.php:377
575
+ #: includes/ure-role-edit.php:382
576
  msgid "Add New Capability"
577
  msgstr ""
578
 
579
+ #: includes/ure-role-edit.php:387
580
  msgid "Remove Capability"
581
  msgstr ""
582
 
583
+ #: includes/ure-role-edit.php:392
584
  msgid "Remove"
585
  msgstr ""
586
 
587
+ #: includes/ure-role-edit.php:392
588
  msgid "Remove User Capability"
589
  msgstr ""
590
 
591
+ #: includes/ure-user-edit.php:67
592
  #, fuzzy, php-format
593
  msgid "User \"%s\" update: please confirm to continue"
594
  msgstr "Szerepkör frissítése \"%s\": kérem hagyja jóvá a folytatáshoz"
595
 
596
+ #: includes/ure-user-edit.php:79
597
  msgid "Change capabilities for user"
598
  msgstr ""
599
 
600
+ #: includes/ure-user-edit.php:82
601
  #, fuzzy
602
  msgid "Role:"
603
  msgstr "Szerepkör"
604
 
605
+ #: includes/ure-user-edit.php:104
606
  msgid "Add capabilities to this user:"
607
  msgstr ""
608
 
609
+ #: includes/ure-options.php:59
610
  #, fuzzy
611
  msgid "User Roles are restored from the backup data. "
612
  msgstr "A szerephez tartozó jogosultások visszaállítva a biztonásgi mentésből."
613
 
614
+ #: includes/ure-options.php:130
615
  msgid "Error: "
616
  msgstr ""
617
 
618
+ #: includes/ure-options.php:130
619
+ #: includes/ure-options.php:146
620
  msgid "Role"
621
  msgstr "Szerepkör"
622
 
623
+ #: includes/ure-options.php:130
624
  msgid "does not exist"
625
  msgstr ""
626
 
627
+ #: includes/ure-options.php:146
628
  msgid "is updated successfully"
629
  msgstr "sikeresen frissítve"
630
 
631
+ #: includes/ure-options.php:154
632
  msgid "User"
633
  msgstr ""
634
 
635
+ #: includes/ure-options.php:154
636
  #, fuzzy
637
  msgid "capabilities are updated successfully"
638
  msgstr "sikeresen frissítve"
639
 
640
+ #: includes/ure-options.php:232
641
  msgid "About this Plugin:"
642
  msgstr "A Pluginról:"
643
 
644
+ #: includes/ure-options.php:233
645
  msgid "Author's website"
646
  msgstr "A készítő weblapja"
647
 
648
+ #: includes/ure-options.php:234
649
  msgid "Plugin webpage"
650
  msgstr "A plugin weblapja"
651
 
652
+ #: includes/ure-options.php:236
653
  msgid "FAQ"
654
  msgstr "GYIK"
655
 
656
+ #: includes/ure-options.php:237
657
  msgid "Greetings"
658
  msgstr ""
659
 
660
+ #: includes/ure-options.php:259
661
  msgid "Greetings:"
662
  msgstr "Üdvözlet:"
663
 
664
+ #: includes/ure-options.php:260
665
  msgid "It's me, the author"
666
  msgstr "A készítő"
667
 
668
+ #: includes/ure-options.php:261
669
  msgid "For the help with Belorussian translation"
670
  msgstr "A Belorusz fordításért"
671
 
672
+ #: includes/ure-options.php:262
673
  msgid "For the help with Brasilian translation"
674
  msgstr ""
675
 
676
+ #: includes/ure-options.php:263
677
+ #, fuzzy
678
+ msgid "For the help with Brasilian Portuguese translation"
679
+ msgstr "A japán fordításért"
680
+
681
+ #: includes/ure-options.php:264
682
  msgid "For the help with Chinese translation"
683
  msgstr "A Chinese fordításért"
684
 
685
+ #: includes/ure-options.php:265
686
  msgid "For the help with Dutch translation"
687
  msgstr "A Dutch fordításért"
688
 
689
+ #: includes/ure-options.php:266
690
  msgid "For the help with Finnish translation"
691
  msgstr "A Finnish fordításért"
692
 
693
+ #: includes/ure-options.php:267
694
+ #: includes/ure-options.php:268
695
  msgid "For the help with French translation"
696
  msgstr "A francia fordításért"
697
 
698
+ #: includes/ure-options.php:269
699
  msgid "For the help with German translation"
700
  msgstr "A német fordításért"
701
 
702
+ #: includes/ure-options.php:270
703
+ #: includes/ure-options.php:271
704
  msgid "For the help with Hebrew translation"
705
  msgstr ""
706
 
707
+ #: includes/ure-options.php:272
708
  msgid "For the help with Hindi translation"
709
  msgstr ""
710
 
711
+ #: includes/ure-options.php:273
712
  msgid "For the help with Hungarian translation"
713
  msgstr "A magyar fordításért"
714
 
715
+ #: includes/ure-options.php:274
716
+ #: includes/ure-options.php:275
717
  msgid "For the help with Italian translation"
718
  msgstr "Az olasz fordításért"
719
 
720
+ #: includes/ure-options.php:276
721
  msgid "For the help with Japanese translation"
722
  msgstr "A japán fordításért"
723
 
724
+ #: includes/ure-options.php:277
725
  msgid "For the help with Lithuanian translation"
726
  msgstr ""
727
 
728
+ #: includes/ure-options.php:278
729
+ #: includes/ure-options.php:279
730
+ #: includes/ure-options.php:280
731
  msgid "For the help with Persian translation"
732
  msgstr ""
733
 
734
+ #: includes/ure-options.php:281
735
+ #: includes/ure-options.php:282
736
  msgid "For the help with Polish translation"
737
  msgstr "A lenygel fordításért"
738
 
739
+ #: includes/ure-options.php:283
740
+ #: includes/ure-options.php:284
741
  msgid "For the help with Spanish translation"
742
  msgstr "A spanyol fordításért"
743
 
744
+ #: includes/ure-options.php:285
745
  #, fuzzy
746
  msgid "For the updated Swedish translation"
747
  msgstr "A Swedish fordításért"
748
 
749
+ #: includes/ure-options.php:286
750
  msgid "For the help with Swedish translation"
751
  msgstr "A Swedish fordításért"
752
 
753
+ #: includes/ure-options.php:287
754
  msgid "For the help with Turkish translation"
755
  msgstr ""
756
 
757
+ #: includes/ure-options.php:289
758
  msgid "For the code to hide administrator role"
759
  msgstr "Az adminisztrátori szerepkör elrejtésére szolgáló kódért"
760
 
761
+ #: includes/ure-options.php:290
762
  msgid "For the code enhancement suggestion"
763
  msgstr ""
764
 
765
+ #: includes/ure-options.php:292
766
  msgid "Do you wish to see your name with link to your site here? You are welcome! Your help with translation and new ideas are very appreciated."
767
  msgstr "Szeretnéd itt látni a neved egy hivatkozással a weblapodra? Megoldható! Így háláljuk meg a fordításban nyújtott segítséged, és új ötleteidet."
768
 
lang/ure-id_ID.mo CHANGED
Binary file
lang/ure-id_ID.po CHANGED
@@ -2,7 +2,7 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: User Role Editor 2.0\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2012-06-23 23:22+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"
@@ -30,714 +30,730 @@ msgstr ""
30
  msgid "User Role Editor requires PHP 5.0 or newer."
31
  msgstr ""
32
 
33
- #: ../user-role-editor.php:65
34
  msgid "Only"
35
  msgstr ""
36
 
37
- #: ../user-role-editor.php:65
38
  msgid "is allowed to use"
39
  msgstr ""
40
 
41
- #: ../user-role-editor.php:71
42
- #: ../user-role-editor.php:246
43
  msgid "User Role Editor"
44
  msgstr ""
45
 
46
- #: ../user-role-editor.php:218
47
  msgid "Settings"
48
  msgstr ""
49
 
50
- #: ../user-role-editor.php:228
51
- #: ../ure-options.php:218
52
  msgid "Changelog"
53
  msgstr ""
54
 
55
- #: ../user-role-editor.php:275
56
  msgid "Capabilities"
57
  msgstr ""
58
 
59
- #: ../ure-lib.php:45
60
  msgid "Error is occur. Please check the log file."
61
  msgstr ""
62
 
63
- #: ../ure-lib.php:155
64
  msgid "Database operation error. Check log file."
65
  msgstr ""
66
 
67
- #: ../ure-lib.php:188
68
  msgid "No backup data. It is created automatically before the first role data update."
69
  msgstr ""
70
 
71
- #: ../ure-lib.php:226
72
  msgid "Backup record is created for the current role capabilities"
73
  msgstr ""
74
 
75
- #: ../ure-lib.php:345
76
  msgid "Error: Role name must contain latin characters and digits only!"
77
  msgstr ""
78
 
79
- #: ../ure-lib.php:352
80
  #, php-format
81
  msgid "Role %s exists already"
82
  msgstr ""
83
 
84
- #: ../ure-lib.php:365
85
  msgid "Error is encountered during new role create operation"
86
  msgstr ""
87
 
88
- #: ../ure-lib.php:367
89
  #, php-format
90
  msgid "Role %s is created successfully"
91
  msgstr ""
92
 
93
- #: ../ure-lib.php:451
94
  msgid "Error encountered during role delete operation"
95
  msgstr ""
96
 
97
- #: ../ure-lib.php:453
98
  #, php-format
99
  msgid "Role %s is deleted successfully"
100
  msgstr ""
101
 
102
- #: ../ure-lib.php:471
103
  msgid "Error encountered during default role change operation"
104
  msgstr ""
105
 
106
- #: ../ure-lib.php:477
107
  #, php-format
108
  msgid "Default role for new users is set to %s successfully"
109
  msgstr ""
110
 
111
- #: ../ure-lib.php:505
112
  msgid "Editor"
113
  msgstr ""
114
 
115
- #: ../ure-lib.php:506
116
  msgid "Author"
117
  msgstr ""
118
 
119
- #: ../ure-lib.php:507
120
  msgid "Contributor"
121
  msgstr ""
122
 
123
- #: ../ure-lib.php:508
124
  msgid "Subscriber"
125
  msgstr ""
126
 
127
- #: ../ure-lib.php:510
128
  msgid "Switch themes"
129
  msgstr ""
130
 
131
- #: ../ure-lib.php:511
132
  msgid "Edit themes"
133
  msgstr ""
134
 
135
- #: ../ure-lib.php:512
136
  msgid "Activate plugins"
137
  msgstr ""
138
 
139
- #: ../ure-lib.php:513
140
  msgid "Edit plugins"
141
  msgstr ""
142
 
143
- #: ../ure-lib.php:514
144
  msgid "Edit users"
145
  msgstr ""
146
 
147
- #: ../ure-lib.php:515
148
  msgid "Edit files"
149
  msgstr ""
150
 
151
- #: ../ure-lib.php:516
152
  msgid "Manage options"
153
  msgstr ""
154
 
155
- #: ../ure-lib.php:517
156
  msgid "Moderate comments"
157
  msgstr ""
158
 
159
- #: ../ure-lib.php:518
160
  msgid "Manage categories"
161
  msgstr ""
162
 
163
- #: ../ure-lib.php:519
164
  msgid "Manage links"
165
  msgstr ""
166
 
167
- #: ../ure-lib.php:520
168
  msgid "Upload files"
169
  msgstr ""
170
 
171
- #: ../ure-lib.php:521
172
  msgid "Import"
173
  msgstr ""
174
 
175
- #: ../ure-lib.php:522
176
  msgid "Unfiltered html"
177
  msgstr ""
178
 
179
- #: ../ure-lib.php:523
180
  msgid "Edit posts"
181
  msgstr ""
182
 
183
- #: ../ure-lib.php:524
184
  msgid "Edit others posts"
185
  msgstr ""
186
 
187
- #: ../ure-lib.php:525
188
  msgid "Edit published posts"
189
  msgstr ""
190
 
191
- #: ../ure-lib.php:526
192
  msgid "Publish posts"
193
  msgstr ""
194
 
195
- #: ../ure-lib.php:527
196
  msgid "Edit pages"
197
  msgstr ""
198
 
199
- #: ../ure-lib.php:528
200
  msgid "Read"
201
  msgstr ""
202
 
203
- #: ../ure-lib.php:529
204
  msgid "Level 10"
205
  msgstr ""
206
 
207
- #: ../ure-lib.php:530
208
  msgid "Level 9"
209
  msgstr ""
210
 
211
- #: ../ure-lib.php:531
212
  msgid "Level 8"
213
  msgstr ""
214
 
215
- #: ../ure-lib.php:532
216
  msgid "Level 7"
217
  msgstr ""
218
 
219
- #: ../ure-lib.php:533
220
  msgid "Level 6"
221
  msgstr ""
222
 
223
- #: ../ure-lib.php:534
224
  msgid "Level 5"
225
  msgstr ""
226
 
227
- #: ../ure-lib.php:535
228
  msgid "Level 4"
229
  msgstr ""
230
 
231
- #: ../ure-lib.php:536
232
  msgid "Level 3"
233
  msgstr ""
234
 
235
- #: ../ure-lib.php:537
236
  msgid "Level 2"
237
  msgstr ""
238
 
239
- #: ../ure-lib.php:538
240
  msgid "Level 1"
241
  msgstr ""
242
 
243
- #: ../ure-lib.php:539
244
  msgid "Level 0"
245
  msgstr ""
246
 
247
- #: ../ure-lib.php:540
248
  msgid "Edit others pages"
249
  msgstr ""
250
 
251
- #: ../ure-lib.php:541
252
  msgid "Edit published pages"
253
  msgstr ""
254
 
255
- #: ../ure-lib.php:542
256
  msgid "Publish pages"
257
  msgstr ""
258
 
259
- #: ../ure-lib.php:543
260
  msgid "Delete pages"
261
  msgstr ""
262
 
263
- #: ../ure-lib.php:544
264
  msgid "Delete others pages"
265
  msgstr ""
266
 
267
- #: ../ure-lib.php:545
268
  msgid "Delete published pages"
269
  msgstr ""
270
 
271
- #: ../ure-lib.php:546
272
  msgid "Delete posts"
273
  msgstr ""
274
 
275
- #: ../ure-lib.php:547
276
  msgid "Delete others posts"
277
  msgstr ""
278
 
279
- #: ../ure-lib.php:548
280
  msgid "Delete published posts"
281
  msgstr ""
282
 
283
- #: ../ure-lib.php:549
284
  msgid "Delete private posts"
285
  msgstr ""
286
 
287
- #: ../ure-lib.php:550
288
  msgid "Edit private posts"
289
  msgstr ""
290
 
291
- #: ../ure-lib.php:551
292
  msgid "Read private posts"
293
  msgstr ""
294
 
295
- #: ../ure-lib.php:552
296
  msgid "Delete private pages"
297
  msgstr ""
298
 
299
- #: ../ure-lib.php:553
300
  msgid "Edit private pages"
301
  msgstr ""
302
 
303
- #: ../ure-lib.php:554
304
  msgid "Read private pages"
305
  msgstr ""
306
 
307
- #: ../ure-lib.php:555
308
  msgid "Delete users"
309
  msgstr ""
310
 
311
- #: ../ure-lib.php:556
312
  msgid "Create users"
313
  msgstr ""
314
 
315
- #: ../ure-lib.php:557
316
  msgid "Unfiltered upload"
317
  msgstr ""
318
 
319
- #: ../ure-lib.php:558
320
  msgid "Edit dashboard"
321
  msgstr ""
322
 
323
- #: ../ure-lib.php:559
324
  msgid "Update plugins"
325
  msgstr ""
326
 
327
- #: ../ure-lib.php:560
328
  msgid "Delete plugins"
329
  msgstr ""
330
 
331
- #: ../ure-lib.php:561
332
  msgid "Install plugins"
333
  msgstr ""
334
 
335
- #: ../ure-lib.php:562
336
  msgid "Update themes"
337
  msgstr ""
338
 
339
- #: ../ure-lib.php:563
340
  msgid "Install themes"
341
  msgstr ""
342
 
343
- #: ../ure-lib.php:564
344
  msgid "Update core"
345
  msgstr ""
346
 
347
- #: ../ure-lib.php:565
348
  msgid "List users"
349
  msgstr ""
350
 
351
- #: ../ure-lib.php:566
352
  msgid "Remove users"
353
  msgstr ""
354
 
355
- #: ../ure-lib.php:567
356
  msgid "Add users"
357
  msgstr ""
358
 
359
- #: ../ure-lib.php:568
360
  msgid "Promote users"
361
  msgstr ""
362
 
363
- #: ../ure-lib.php:569
364
  msgid "Edit theme options"
365
  msgstr ""
366
 
367
- #: ../ure-lib.php:570
368
  msgid "Delete themes"
369
  msgstr ""
370
 
371
- #: ../ure-lib.php:571
372
  msgid "Export"
373
  msgstr ""
374
 
375
- #: ../ure-lib.php:655
376
  msgid "Error: Capability name must contain latin characters and digits only!"
377
  msgstr ""
378
 
379
- #: ../ure-lib.php:667
380
  #, php-format
381
  msgid "Capability %s is added successfully"
382
  msgstr ""
383
 
384
- #: ../ure-lib.php:669
385
  #, php-format
386
  msgid "Capability %s exists already"
387
  msgstr ""
388
 
389
- #: ../ure-lib.php:818
390
  #, php-format
391
  msgid "Error! You do not have permission to delete this capability: %s!"
392
  msgstr ""
393
 
394
- #: ../ure-lib.php:840
395
  #, php-format
396
  msgid "Capability %s is removed successfully"
397
  msgstr ""
398
 
399
- #: ../ure-lib.php:902
400
  msgid "Help"
401
  msgstr ""
402
 
403
- #: ../ure-role-edit.php:29
404
  msgid "None"
405
  msgstr ""
406
 
407
- #: ../ure-role-edit.php:93
408
  msgid " Name can not be empty!"
409
  msgstr ""
410
 
411
- #: ../ure-role-edit.php:97
412
  msgid " Name must contain latin characters and digits only!"
413
  msgstr ""
414
 
415
- #: ../ure-role-edit.php:102
416
- #: ../ure-role-edit.php:293
417
  msgid "Delete Role"
418
  msgstr ""
419
 
420
- #: ../ure-role-edit.php:104
421
  msgid "Change Default Role"
422
  msgstr ""
423
 
424
- #: ../ure-role-edit.php:106
425
  msgid "Restore Roles from backup copy. Be careful, backup was created when you started URE 1st time. All changes you made after that will be lost"
426
  msgstr ""
427
 
428
- #: ../ure-role-edit.php:108
429
  msgid "Warning! Be careful - removing critical capability could crash some plugin or other custom code"
430
  msgstr ""
431
 
432
- #: ../ure-role-edit.php:110
433
  msgid "Please confirm to continue"
434
  msgstr ""
435
 
436
- #: ../ure-role-edit.php:147
437
  #, php-format
438
  msgid "Role \"%s\" update: please confirm to continue"
439
  msgstr ""
440
 
441
- #: ../ure-role-edit.php:155
442
  msgid "Select Role and change its capabilities list"
443
  msgstr ""
444
 
445
- #: ../ure-role-edit.php:157
446
  msgid "Select Role:"
447
  msgstr ""
448
 
449
- #: ../ure-role-edit.php:167
450
- #: ../ure-user-edit.php:91
451
  msgid "Show capabilities in human readable form"
452
  msgstr ""
453
 
454
- #: ../ure-role-edit.php:176
455
- #: ../ure-user-edit.php:100
456
  msgid "Show deprecated capabilities"
457
  msgstr ""
458
 
459
- #: ../ure-role-edit.php:180
460
  msgid "If checked, then apply action to ALL sites of this Network"
461
  msgstr ""
462
 
463
- #: ../ure-role-edit.php:190
464
  msgid "Apply to All Sites"
465
  msgstr ""
466
 
467
- #: ../ure-role-edit.php:251
468
- #: ../ure-user-edit.php:163
 
 
 
 
 
 
 
 
 
 
469
  msgid "Update"
470
  msgstr ""
471
 
472
- #: ../ure-role-edit.php:251
473
- #: ../ure-user-edit.php:163
474
  msgid "Save Changes"
475
  msgstr ""
476
 
477
- #: ../ure-role-edit.php:252
478
- #: ../ure-user-edit.php:164
479
  msgid "Cancel"
480
  msgstr ""
481
 
482
- #: ../ure-role-edit.php:252
483
- #: ../ure-user-edit.php:164
484
  msgid "Cancel not saved changes"
485
  msgstr ""
486
 
487
- #: ../ure-role-edit.php:255
488
  msgid "Select All"
489
  msgstr ""
490
 
491
- #: ../ure-role-edit.php:255
492
  msgid "Select All Capabilities"
493
  msgstr ""
494
 
495
- #: ../ure-role-edit.php:256
496
  msgid "Unselect All"
497
  msgstr ""
498
 
499
- #: ../ure-role-edit.php:256
500
  msgid "Unselect All Capabilities"
501
  msgstr ""
502
 
503
- #: ../ure-role-edit.php:257
504
  msgid "Reverse"
505
  msgstr ""
506
 
507
- #: ../ure-role-edit.php:257
508
  msgid "Turn checked capabilities off and vise versa"
509
  msgstr ""
510
 
511
- #: ../ure-role-edit.php:260
512
  msgid "Reset"
513
  msgstr ""
514
 
515
- #: ../ure-role-edit.php:260
516
  msgid "Restore Roles from backup copy"
517
  msgstr ""
518
 
519
- #: ../ure-role-edit.php:270
520
  msgid "Add New Role"
521
  msgstr ""
522
 
523
- #: ../ure-role-edit.php:272
524
  msgid "Name: "
525
  msgstr ""
526
 
527
- #: ../ure-role-edit.php:276
528
  msgid "Make copy of: "
529
  msgstr ""
530
 
531
- #: ../ure-role-edit.php:279
532
- #: ../ure-role-edit.php:308
533
  msgid "Add"
534
  msgstr ""
535
 
536
- #: ../ure-role-edit.php:279
537
  msgid "Add New User Role"
538
  msgstr ""
539
 
540
- #: ../ure-role-edit.php:283
541
  msgid "Default Role for New User"
542
  msgstr ""
543
 
544
- #: ../ure-role-edit.php:288
545
  msgid "Change"
546
  msgstr ""
547
 
548
- #: ../ure-role-edit.php:288
549
  msgid "Set as Default User Role"
550
  msgstr ""
551
 
552
- #: ../ure-role-edit.php:298
553
  msgid "Delete"
554
  msgstr ""
555
 
556
- #: ../ure-role-edit.php:298
557
  msgid "Delete User Role"
558
  msgstr ""
559
 
560
- #: ../ure-role-edit.php:303
561
- #: ../ure-role-edit.php:308
562
  msgid "Add New Capability"
563
  msgstr ""
564
 
565
- #: ../ure-role-edit.php:313
566
  msgid "Remove Capability"
567
  msgstr ""
568
 
569
- #: ../ure-role-edit.php:318
570
  msgid "Remove"
571
  msgstr ""
572
 
573
- #: ../ure-role-edit.php:318
574
  msgid "Remove User Capability"
575
  msgstr ""
576
 
577
- #: ../ure-user-edit.php:67
578
  #, php-format
579
  msgid "User \"%s\" update: please confirm to continue"
580
  msgstr ""
581
 
582
- #: ../ure-user-edit.php:79
583
  msgid "Change capabilities for user"
584
  msgstr ""
585
 
586
- #: ../ure-user-edit.php:82
587
  msgid "Role:"
588
  msgstr ""
589
 
590
- #: ../ure-user-edit.php:104
591
  msgid "Add capabilities to this user:"
592
  msgstr ""
593
 
594
- #: ../ure-options.php:59
595
  msgid "User Roles are restored from the backup data. "
596
  msgstr ""
597
 
598
- #: ../ure-options.php:125
599
  msgid "Error: "
600
  msgstr ""
601
 
602
- #: ../ure-options.php:125
603
- #: ../ure-options.php:143
604
  msgid "Role"
605
  msgstr ""
606
 
607
- #: ../ure-options.php:125
608
  msgid "does not exist"
609
  msgstr ""
610
 
611
- #: ../ure-options.php:143
612
  msgid "is updated successfully"
613
  msgstr ""
614
 
615
- #: ../ure-options.php:152
616
  msgid "User"
617
  msgstr ""
618
 
619
- #: ../ure-options.php:152
620
  msgid "capabilities are updated successfully"
621
  msgstr ""
622
 
623
- #: ../ure-options.php:215
624
  msgid "About this Plugin:"
625
  msgstr ""
626
 
627
- #: ../ure-options.php:216
628
  msgid "Author's website"
629
  msgstr ""
630
 
631
- #: ../ure-options.php:217
632
  msgid "Plugin webpage"
633
  msgstr ""
634
 
635
- #: ../ure-options.php:219
636
  msgid "FAQ"
637
  msgstr ""
638
 
639
- #: ../ure-options.php:220
640
  msgid "Greetings"
641
  msgstr ""
642
 
643
- #: ../ure-options.php:242
644
  msgid "Greetings:"
645
  msgstr ""
646
 
647
- #: ../ure-options.php:243
648
  msgid "It's me, the author"
649
  msgstr ""
650
 
651
- #: ../ure-options.php:244
652
  msgid "For the help with Belorussian translation"
653
  msgstr ""
654
 
655
- #: ../ure-options.php:245
656
  msgid "For the help with Brasilian translation"
657
  msgstr ""
658
 
659
- #: ../ure-options.php:246
 
 
 
 
660
  msgid "For the help with Chinese translation"
661
  msgstr ""
662
 
663
- #: ../ure-options.php:247
664
  msgid "For the help with Dutch translation"
665
  msgstr ""
666
 
667
- #: ../ure-options.php:248
668
  msgid "For the help with Finnish translation"
669
  msgstr ""
670
 
671
- #: ../ure-options.php:249
672
- #: ../ure-options.php:250
673
  msgid "For the help with French translation"
674
  msgstr ""
675
 
676
- #: ../ure-options.php:251
677
  msgid "For the help with German translation"
678
  msgstr ""
679
 
680
- #: ../ure-options.php:252
681
- #: ../ure-options.php:253
682
  msgid "For the help with Hebrew translation"
683
  msgstr ""
684
 
685
- #: ../ure-options.php:254
686
  msgid "For the help with Hindi translation"
687
  msgstr ""
688
 
689
- #: ../ure-options.php:255
690
  msgid "For the help with Hungarian translation"
691
  msgstr ""
692
 
693
- #: ../ure-options.php:256
694
- #: ../ure-options.php:257
695
  msgid "For the help with Italian translation"
696
  msgstr ""
697
 
698
- #: ../ure-options.php:258
699
  msgid "For the help with Japanese translation"
700
  msgstr ""
701
 
702
- #: ../ure-options.php:259
703
  msgid "For the help with Lithuanian translation"
704
  msgstr ""
705
 
706
- #: ../ure-options.php:260
707
- #: ../ure-options.php:261
 
708
  msgid "For the help with Persian translation"
709
  msgstr ""
710
 
711
- #: ../ure-options.php:262
 
712
  msgid "For the help with Polish translation"
713
  msgstr ""
714
 
715
- #: ../ure-options.php:263
716
- #: ../ure-options.php:264
717
  msgid "For the help with Spanish translation"
718
  msgstr ""
719
 
720
- #: ../ure-options.php:265
721
  msgid "For the updated Swedish translation"
722
  msgstr ""
723
 
724
- #: ../ure-options.php:266
725
  msgid "For the help with Swedish translation"
726
  msgstr ""
727
 
728
- #: ../ure-options.php:267
729
  msgid "For the help with Turkish translation"
730
  msgstr ""
731
 
732
- #: ../ure-options.php:269
733
  msgid "For the code to hide administrator role"
734
  msgstr ""
735
 
736
- #: ../ure-options.php:270
737
  msgid "For the code enhancement suggestion"
738
  msgstr ""
739
 
740
- #: ../ure-options.php:272
741
  msgid "Do you wish to see your name with link to your site here? You are welcome! Your help with translation and new ideas are very appreciated."
742
  msgstr ""
743
 
2
  msgstr ""
3
  "Project-Id-Version: User Role Editor 2.0\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-09-01 08:44+0700\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Vladimir Garagulya <vladimir@shinephp.com>\n"
8
  "Language-Team: ShinePHP.com <vladimir@shinephp.com>\n"
30
  msgid "User Role Editor requires PHP 5.0 or newer."
31
  msgstr ""
32
 
33
+ #: ../user-role-editor.php:76
34
  msgid "Only"
35
  msgstr ""
36
 
37
+ #: ../user-role-editor.php:76
38
  msgid "is allowed to use"
39
  msgstr ""
40
 
41
+ #: ../user-role-editor.php:82
42
+ #: ../user-role-editor.php:251
43
  msgid "User Role Editor"
44
  msgstr ""
45
 
46
+ #: ../user-role-editor.php:223
47
  msgid "Settings"
48
  msgstr ""
49
 
50
+ #: ../user-role-editor.php:233
51
+ #: ../includes/ure-options.php:235
52
  msgid "Changelog"
53
  msgstr ""
54
 
55
+ #: ../user-role-editor.php:280
56
  msgid "Capabilities"
57
  msgstr ""
58
 
59
+ #: ../includes/ure-lib.php:34
60
  msgid "Error is occur. Please check the log file."
61
  msgstr ""
62
 
63
+ #: ../includes/ure-lib.php:144
64
  msgid "Database operation error. Check log file."
65
  msgstr ""
66
 
67
+ #: ../includes/ure-lib.php:177
68
  msgid "No backup data. It is created automatically before the first role data update."
69
  msgstr ""
70
 
71
+ #: ../includes/ure-lib.php:215
72
  msgid "Backup record is created for the current role capabilities"
73
  msgstr ""
74
 
75
+ #: ../includes/ure-lib.php:329
76
  msgid "Error: Role name must contain latin characters and digits only!"
77
  msgstr ""
78
 
79
+ #: ../includes/ure-lib.php:336
80
  #, php-format
81
  msgid "Role %s exists already"
82
  msgstr ""
83
 
84
+ #: ../includes/ure-lib.php:349
85
  msgid "Error is encountered during new role create operation"
86
  msgstr ""
87
 
88
+ #: ../includes/ure-lib.php:351
89
  #, php-format
90
  msgid "Role %s is created successfully"
91
  msgstr ""
92
 
93
+ #: ../includes/ure-lib.php:435
94
  msgid "Error encountered during role delete operation"
95
  msgstr ""
96
 
97
+ #: ../includes/ure-lib.php:437
98
  #, php-format
99
  msgid "Role %s is deleted successfully"
100
  msgstr ""
101
 
102
+ #: ../includes/ure-lib.php:455
103
  msgid "Error encountered during default role change operation"
104
  msgstr ""
105
 
106
+ #: ../includes/ure-lib.php:461
107
  #, php-format
108
  msgid "Default role for new users is set to %s successfully"
109
  msgstr ""
110
 
111
+ #: ../includes/ure-lib.php:489
112
  msgid "Editor"
113
  msgstr ""
114
 
115
+ #: ../includes/ure-lib.php:490
116
  msgid "Author"
117
  msgstr ""
118
 
119
+ #: ../includes/ure-lib.php:491
120
  msgid "Contributor"
121
  msgstr ""
122
 
123
+ #: ../includes/ure-lib.php:492
124
  msgid "Subscriber"
125
  msgstr ""
126
 
127
+ #: ../includes/ure-lib.php:494
128
  msgid "Switch themes"
129
  msgstr ""
130
 
131
+ #: ../includes/ure-lib.php:495
132
  msgid "Edit themes"
133
  msgstr ""
134
 
135
+ #: ../includes/ure-lib.php:496
136
  msgid "Activate plugins"
137
  msgstr ""
138
 
139
+ #: ../includes/ure-lib.php:497
140
  msgid "Edit plugins"
141
  msgstr ""
142
 
143
+ #: ../includes/ure-lib.php:498
144
  msgid "Edit users"
145
  msgstr ""
146
 
147
+ #: ../includes/ure-lib.php:499
148
  msgid "Edit files"
149
  msgstr ""
150
 
151
+ #: ../includes/ure-lib.php:500
152
  msgid "Manage options"
153
  msgstr ""
154
 
155
+ #: ../includes/ure-lib.php:501
156
  msgid "Moderate comments"
157
  msgstr ""
158
 
159
+ #: ../includes/ure-lib.php:502
160
  msgid "Manage categories"
161
  msgstr ""
162
 
163
+ #: ../includes/ure-lib.php:503
164
  msgid "Manage links"
165
  msgstr ""
166
 
167
+ #: ../includes/ure-lib.php:504
168
  msgid "Upload files"
169
  msgstr ""
170
 
171
+ #: ../includes/ure-lib.php:505
172
  msgid "Import"
173
  msgstr ""
174
 
175
+ #: ../includes/ure-lib.php:506
176
  msgid "Unfiltered html"
177
  msgstr ""
178
 
179
+ #: ../includes/ure-lib.php:507
180
  msgid "Edit posts"
181
  msgstr ""
182
 
183
+ #: ../includes/ure-lib.php:508
184
  msgid "Edit others posts"
185
  msgstr ""
186
 
187
+ #: ../includes/ure-lib.php:509
188
  msgid "Edit published posts"
189
  msgstr ""
190
 
191
+ #: ../includes/ure-lib.php:510
192
  msgid "Publish posts"
193
  msgstr ""
194
 
195
+ #: ../includes/ure-lib.php:511
196
  msgid "Edit pages"
197
  msgstr ""
198
 
199
+ #: ../includes/ure-lib.php:512
200
  msgid "Read"
201
  msgstr ""
202
 
203
+ #: ../includes/ure-lib.php:513
204
  msgid "Level 10"
205
  msgstr ""
206
 
207
+ #: ../includes/ure-lib.php:514
208
  msgid "Level 9"
209
  msgstr ""
210
 
211
+ #: ../includes/ure-lib.php:515
212
  msgid "Level 8"
213
  msgstr ""
214
 
215
+ #: ../includes/ure-lib.php:516
216
  msgid "Level 7"
217
  msgstr ""
218
 
219
+ #: ../includes/ure-lib.php:517
220
  msgid "Level 6"
221
  msgstr ""
222
 
223
+ #: ../includes/ure-lib.php:518
224
  msgid "Level 5"
225
  msgstr ""
226
 
227
+ #: ../includes/ure-lib.php:519
228
  msgid "Level 4"
229
  msgstr ""
230
 
231
+ #: ../includes/ure-lib.php:520
232
  msgid "Level 3"
233
  msgstr ""
234
 
235
+ #: ../includes/ure-lib.php:521
236
  msgid "Level 2"
237
  msgstr ""
238
 
239
+ #: ../includes/ure-lib.php:522
240
  msgid "Level 1"
241
  msgstr ""
242
 
243
+ #: ../includes/ure-lib.php:523
244
  msgid "Level 0"
245
  msgstr ""
246
 
247
+ #: ../includes/ure-lib.php:524
248
  msgid "Edit others pages"
249
  msgstr ""
250
 
251
+ #: ../includes/ure-lib.php:525
252
  msgid "Edit published pages"
253
  msgstr ""
254
 
255
+ #: ../includes/ure-lib.php:526
256
  msgid "Publish pages"
257
  msgstr ""
258
 
259
+ #: ../includes/ure-lib.php:527
260
  msgid "Delete pages"
261
  msgstr ""
262
 
263
+ #: ../includes/ure-lib.php:528
264
  msgid "Delete others pages"
265
  msgstr ""
266
 
267
+ #: ../includes/ure-lib.php:529
268
  msgid "Delete published pages"
269
  msgstr ""
270
 
271
+ #: ../includes/ure-lib.php:530
272
  msgid "Delete posts"
273
  msgstr ""
274
 
275
+ #: ../includes/ure-lib.php:531
276
  msgid "Delete others posts"
277
  msgstr ""
278
 
279
+ #: ../includes/ure-lib.php:532
280
  msgid "Delete published posts"
281
  msgstr ""
282
 
283
+ #: ../includes/ure-lib.php:533
284
  msgid "Delete private posts"
285
  msgstr ""
286
 
287
+ #: ../includes/ure-lib.php:534
288
  msgid "Edit private posts"
289
  msgstr ""
290
 
291
+ #: ../includes/ure-lib.php:535
292
  msgid "Read private posts"
293
  msgstr ""
294
 
295
+ #: ../includes/ure-lib.php:536
296
  msgid "Delete private pages"
297
  msgstr ""
298
 
299
+ #: ../includes/ure-lib.php:537
300
  msgid "Edit private pages"
301
  msgstr ""
302
 
303
+ #: ../includes/ure-lib.php:538
304
  msgid "Read private pages"
305
  msgstr ""
306
 
307
+ #: ../includes/ure-lib.php:539
308
  msgid "Delete users"
309
  msgstr ""
310
 
311
+ #: ../includes/ure-lib.php:540
312
  msgid "Create users"
313
  msgstr ""
314
 
315
+ #: ../includes/ure-lib.php:541
316
  msgid "Unfiltered upload"
317
  msgstr ""
318
 
319
+ #: ../includes/ure-lib.php:542
320
  msgid "Edit dashboard"
321
  msgstr ""
322
 
323
+ #: ../includes/ure-lib.php:543
324
  msgid "Update plugins"
325
  msgstr ""
326
 
327
+ #: ../includes/ure-lib.php:544
328
  msgid "Delete plugins"
329
  msgstr ""
330
 
331
+ #: ../includes/ure-lib.php:545
332
  msgid "Install plugins"
333
  msgstr ""
334
 
335
+ #: ../includes/ure-lib.php:546
336
  msgid "Update themes"
337
  msgstr ""
338
 
339
+ #: ../includes/ure-lib.php:547
340
  msgid "Install themes"
341
  msgstr ""
342
 
343
+ #: ../includes/ure-lib.php:548
344
  msgid "Update core"
345
  msgstr ""
346
 
347
+ #: ../includes/ure-lib.php:549
348
  msgid "List users"
349
  msgstr ""
350
 
351
+ #: ../includes/ure-lib.php:550
352
  msgid "Remove users"
353
  msgstr ""
354
 
355
+ #: ../includes/ure-lib.php:551
356
  msgid "Add users"
357
  msgstr ""
358
 
359
+ #: ../includes/ure-lib.php:552
360
  msgid "Promote users"
361
  msgstr ""
362
 
363
+ #: ../includes/ure-lib.php:553
364
  msgid "Edit theme options"
365
  msgstr ""
366
 
367
+ #: ../includes/ure-lib.php:554
368
  msgid "Delete themes"
369
  msgstr ""
370
 
371
+ #: ../includes/ure-lib.php:555
372
  msgid "Export"
373
  msgstr ""
374
 
375
+ #: ../includes/ure-lib.php:639
376
  msgid "Error: Capability name must contain latin characters and digits only!"
377
  msgstr ""
378
 
379
+ #: ../includes/ure-lib.php:651
380
  #, php-format
381
  msgid "Capability %s is added successfully"
382
  msgstr ""
383
 
384
+ #: ../includes/ure-lib.php:653
385
  #, php-format
386
  msgid "Capability %s exists already"
387
  msgstr ""
388
 
389
+ #: ../includes/ure-lib.php:802
390
  #, php-format
391
  msgid "Error! You do not have permission to delete this capability: %s!"
392
  msgstr ""
393
 
394
+ #: ../includes/ure-lib.php:824
395
  #, php-format
396
  msgid "Capability %s is removed successfully"
397
  msgstr ""
398
 
399
+ #: ../includes/ure-lib.php:889
400
  msgid "Help"
401
  msgstr ""
402
 
403
+ #: ../includes/ure-role-edit.php:29
404
  msgid "None"
405
  msgstr ""
406
 
407
+ #: ../includes/ure-role-edit.php:101
408
  msgid " Name can not be empty!"
409
  msgstr ""
410
 
411
+ #: ../includes/ure-role-edit.php:105
412
  msgid " Name must contain latin characters and digits only!"
413
  msgstr ""
414
 
415
+ #: ../includes/ure-role-edit.php:110
416
+ #: ../includes/ure-role-edit.php:367
417
  msgid "Delete Role"
418
  msgstr ""
419
 
420
+ #: ../includes/ure-role-edit.php:112
421
  msgid "Change Default Role"
422
  msgstr ""
423
 
424
+ #: ../includes/ure-role-edit.php:114
425
  msgid "Restore Roles from backup copy. Be careful, backup was created when you started URE 1st time. All changes you made after that will be lost"
426
  msgstr ""
427
 
428
+ #: ../includes/ure-role-edit.php:116
429
  msgid "Warning! Be careful - removing critical capability could crash some plugin or other custom code"
430
  msgstr ""
431
 
432
+ #: ../includes/ure-role-edit.php:118
433
  msgid "Please confirm to continue"
434
  msgstr ""
435
 
436
+ #: ../includes/ure-role-edit.php:155
437
  #, php-format
438
  msgid "Role \"%s\" update: please confirm to continue"
439
  msgstr ""
440
 
441
+ #: ../includes/ure-role-edit.php:163
442
  msgid "Select Role and change its capabilities list"
443
  msgstr ""
444
 
445
+ #: ../includes/ure-role-edit.php:165
446
  msgid "Select Role:"
447
  msgstr ""
448
 
449
+ #: ../includes/ure-role-edit.php:175
450
+ #: ../includes/ure-user-edit.php:91
451
  msgid "Show capabilities in human readable form"
452
  msgstr ""
453
 
454
+ #: ../includes/ure-role-edit.php:184
455
+ #: ../includes/ure-user-edit.php:100
456
  msgid "Show deprecated capabilities"
457
  msgstr ""
458
 
459
+ #: ../includes/ure-role-edit.php:188
460
  msgid "If checked, then apply action to ALL sites of this Network"
461
  msgstr ""
462
 
463
+ #: ../includes/ure-role-edit.php:198
464
  msgid "Apply to All Sites"
465
  msgstr ""
466
 
467
+ #: ../includes/ure-role-edit.php:205
468
+ #: ../includes/ure-user-edit.php:105
469
+ msgid "Core capabilities:"
470
+ msgstr ""
471
+
472
+ #: ../includes/ure-role-edit.php:268
473
+ #: ../includes/ure-user-edit.php:167
474
+ msgid "Custom capabilities:"
475
+ msgstr ""
476
+
477
+ #: ../includes/ure-role-edit.php:319
478
+ #: ../includes/ure-user-edit.php:222
479
  msgid "Update"
480
  msgstr ""
481
 
482
+ #: ../includes/ure-role-edit.php:319
483
+ #: ../includes/ure-user-edit.php:222
484
  msgid "Save Changes"
485
  msgstr ""
486
 
487
+ #: ../includes/ure-role-edit.php:320
488
+ #: ../includes/ure-user-edit.php:223
489
  msgid "Cancel"
490
  msgstr ""
491
 
492
+ #: ../includes/ure-role-edit.php:320
493
+ #: ../includes/ure-user-edit.php:223
494
  msgid "Cancel not saved changes"
495
  msgstr ""
496
 
497
+ #: ../includes/ure-role-edit.php:323
498
  msgid "Select All"
499
  msgstr ""
500
 
501
+ #: ../includes/ure-role-edit.php:323
502
  msgid "Select All Capabilities"
503
  msgstr ""
504
 
505
+ #: ../includes/ure-role-edit.php:327
506
  msgid "Unselect All"
507
  msgstr ""
508
 
509
+ #: ../includes/ure-role-edit.php:327
510
  msgid "Unselect All Capabilities"
511
  msgstr ""
512
 
513
+ #: ../includes/ure-role-edit.php:328
514
  msgid "Reverse"
515
  msgstr ""
516
 
517
+ #: ../includes/ure-role-edit.php:328
518
  msgid "Turn checked capabilities off and vise versa"
519
  msgstr ""
520
 
521
+ #: ../includes/ure-role-edit.php:334
522
  msgid "Reset"
523
  msgstr ""
524
 
525
+ #: ../includes/ure-role-edit.php:334
526
  msgid "Restore Roles from backup copy"
527
  msgstr ""
528
 
529
+ #: ../includes/ure-role-edit.php:344
530
  msgid "Add New Role"
531
  msgstr ""
532
 
533
+ #: ../includes/ure-role-edit.php:346
534
  msgid "Name: "
535
  msgstr ""
536
 
537
+ #: ../includes/ure-role-edit.php:350
538
  msgid "Make copy of: "
539
  msgstr ""
540
 
541
+ #: ../includes/ure-role-edit.php:353
542
+ #: ../includes/ure-role-edit.php:382
543
  msgid "Add"
544
  msgstr ""
545
 
546
+ #: ../includes/ure-role-edit.php:353
547
  msgid "Add New User Role"
548
  msgstr ""
549
 
550
+ #: ../includes/ure-role-edit.php:357
551
  msgid "Default Role for New User"
552
  msgstr ""
553
 
554
+ #: ../includes/ure-role-edit.php:362
555
  msgid "Change"
556
  msgstr ""
557
 
558
+ #: ../includes/ure-role-edit.php:362
559
  msgid "Set as Default User Role"
560
  msgstr ""
561
 
562
+ #: ../includes/ure-role-edit.php:372
563
  msgid "Delete"
564
  msgstr ""
565
 
566
+ #: ../includes/ure-role-edit.php:372
567
  msgid "Delete User Role"
568
  msgstr ""
569
 
570
+ #: ../includes/ure-role-edit.php:377
571
+ #: ../includes/ure-role-edit.php:382
572
  msgid "Add New Capability"
573
  msgstr ""
574
 
575
+ #: ../includes/ure-role-edit.php:387
576
  msgid "Remove Capability"
577
  msgstr ""
578
 
579
+ #: ../includes/ure-role-edit.php:392
580
  msgid "Remove"
581
  msgstr ""
582
 
583
+ #: ../includes/ure-role-edit.php:392
584
  msgid "Remove User Capability"
585
  msgstr ""
586
 
587
+ #: ../includes/ure-user-edit.php:67
588
  #, php-format
589
  msgid "User \"%s\" update: please confirm to continue"
590
  msgstr ""
591
 
592
+ #: ../includes/ure-user-edit.php:79
593
  msgid "Change capabilities for user"
594
  msgstr ""
595
 
596
+ #: ../includes/ure-user-edit.php:82
597
  msgid "Role:"
598
  msgstr ""
599
 
600
+ #: ../includes/ure-user-edit.php:104
601
  msgid "Add capabilities to this user:"
602
  msgstr ""
603
 
604
+ #: ../includes/ure-options.php:59
605
  msgid "User Roles are restored from the backup data. "
606
  msgstr ""
607
 
608
+ #: ../includes/ure-options.php:130
609
  msgid "Error: "
610
  msgstr ""
611
 
612
+ #: ../includes/ure-options.php:130
613
+ #: ../includes/ure-options.php:146
614
  msgid "Role"
615
  msgstr ""
616
 
617
+ #: ../includes/ure-options.php:130
618
  msgid "does not exist"
619
  msgstr ""
620
 
621
+ #: ../includes/ure-options.php:146
622
  msgid "is updated successfully"
623
  msgstr ""
624
 
625
+ #: ../includes/ure-options.php:154
626
  msgid "User"
627
  msgstr ""
628
 
629
+ #: ../includes/ure-options.php:154
630
  msgid "capabilities are updated successfully"
631
  msgstr ""
632
 
633
+ #: ../includes/ure-options.php:232
634
  msgid "About this Plugin:"
635
  msgstr ""
636
 
637
+ #: ../includes/ure-options.php:233
638
  msgid "Author's website"
639
  msgstr ""
640
 
641
+ #: ../includes/ure-options.php:234
642
  msgid "Plugin webpage"
643
  msgstr ""
644
 
645
+ #: ../includes/ure-options.php:236
646
  msgid "FAQ"
647
  msgstr ""
648
 
649
+ #: ../includes/ure-options.php:237
650
  msgid "Greetings"
651
  msgstr ""
652
 
653
+ #: ../includes/ure-options.php:259
654
  msgid "Greetings:"
655
  msgstr ""
656
 
657
+ #: ../includes/ure-options.php:260
658
  msgid "It's me, the author"
659
  msgstr ""
660
 
661
+ #: ../includes/ure-options.php:261
662
  msgid "For the help with Belorussian translation"
663
  msgstr ""
664
 
665
+ #: ../includes/ure-options.php:262
666
  msgid "For the help with Brasilian translation"
667
  msgstr ""
668
 
669
+ #: ../includes/ure-options.php:263
670
+ msgid "For the help with Brasilian Portuguese translation"
671
+ msgstr ""
672
+
673
+ #: ../includes/ure-options.php:264
674
  msgid "For the help with Chinese translation"
675
  msgstr ""
676
 
677
+ #: ../includes/ure-options.php:265
678
  msgid "For the help with Dutch translation"
679
  msgstr ""
680
 
681
+ #: ../includes/ure-options.php:266
682
  msgid "For the help with Finnish translation"
683
  msgstr ""
684
 
685
+ #: ../includes/ure-options.php:267
686
+ #: ../includes/ure-options.php:268
687
  msgid "For the help with French translation"
688
  msgstr ""
689
 
690
+ #: ../includes/ure-options.php:269
691
  msgid "For the help with German translation"
692
  msgstr ""
693
 
694
+ #: ../includes/ure-options.php:270
695
+ #: ../includes/ure-options.php:271
696
  msgid "For the help with Hebrew translation"
697
  msgstr ""
698
 
699
+ #: ../includes/ure-options.php:272
700
  msgid "For the help with Hindi translation"
701
  msgstr ""
702
 
703
+ #: ../includes/ure-options.php:273
704
  msgid "For the help with Hungarian translation"
705
  msgstr ""
706
 
707
+ #: ../includes/ure-options.php:274
708
+ #: ../includes/ure-options.php:275
709
  msgid "For the help with Italian translation"
710
  msgstr ""
711
 
712
+ #: ../includes/ure-options.php:276
713
  msgid "For the help with Japanese translation"
714
  msgstr ""
715
 
716
+ #: ../includes/ure-options.php:277
717
  msgid "For the help with Lithuanian translation"
718
  msgstr ""
719
 
720
+ #: ../includes/ure-options.php:278
721
+ #: ../includes/ure-options.php:279
722
+ #: ../includes/ure-options.php:280
723
  msgid "For the help with Persian translation"
724
  msgstr ""
725
 
726
+ #: ../includes/ure-options.php:281
727
+ #: ../includes/ure-options.php:282
728
  msgid "For the help with Polish translation"
729
  msgstr ""
730
 
731
+ #: ../includes/ure-options.php:283
732
+ #: ../includes/ure-options.php:284
733
  msgid "For the help with Spanish translation"
734
  msgstr ""
735
 
736
+ #: ../includes/ure-options.php:285
737
  msgid "For the updated Swedish translation"
738
  msgstr ""
739
 
740
+ #: ../includes/ure-options.php:286
741
  msgid "For the help with Swedish translation"
742
  msgstr ""
743
 
744
+ #: ../includes/ure-options.php:287
745
  msgid "For the help with Turkish translation"
746
  msgstr ""
747
 
748
+ #: ../includes/ure-options.php:289
749
  msgid "For the code to hide administrator role"
750
  msgstr ""
751
 
752
+ #: ../includes/ure-options.php:290
753
  msgid "For the code enhancement suggestion"
754
  msgstr ""
755
 
756
+ #: ../includes/ure-options.php:292
757
  msgid "Do you wish to see your name with link to your site here? You are welcome! Your help with translation and new ideas are very appreciated."
758
  msgstr ""
759
 
lang/ure-it_IT.mo CHANGED
Binary file
lang/ure-it_IT.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: User Role Editor 2.0\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2012-06-23 23:22+0700\n"
6
- "PO-Revision-Date: 2012-06-23 23:23+0700\n"
7
  "Last-Translator: Vladimir Garagulya <vladimir@shinephp.com>\n"
8
  "Language-Team: w3b.it <web@w3b.it>\n"
9
  "Language: \n"
@@ -35,864 +35,883 @@ msgstr "Per favore aggiorna!"
35
  msgid "User Role Editor requires PHP 5.0 or newer."
36
  msgstr "User Role Editor richiede PHP 5.0 o superiori."
37
 
38
- #: ../user-role-editor.php:65
39
  msgid "Only"
40
  msgstr "Solo"
41
 
42
- #: ../user-role-editor.php:65
43
  msgid "is allowed to use"
44
  msgstr "ha il permesso di usare"
45
 
46
  # @ ure
47
  # @ default
48
- #: ../user-role-editor.php:71
49
- #: ../user-role-editor.php:246
50
  msgid "User Role Editor"
51
  msgstr "Editor Ruoli Utente"
52
 
53
  # @ ure
54
- #: ../user-role-editor.php:218
55
  msgid "Settings"
56
  msgstr "Impostazioni"
57
 
58
  # @ ure
59
- #: ../user-role-editor.php:228
60
- #: ../ure-options.php:218
61
  msgid "Changelog"
62
  msgstr "Storico degli Aggiornamenti"
63
 
64
- #: ../user-role-editor.php:275
65
  msgid "Capabilities"
66
  msgstr "Permessi"
67
 
68
  # @ ure
69
- #: ../ure-lib.php:45
70
  msgid "Error is occur. Please check the log file."
71
  msgstr "Si è verificato un errore. Controllare il log."
72
 
73
  # @ ure
74
- #: ../ure-lib.php:155
75
  msgid "Database operation error. Check log file."
76
  msgstr "Errore del database. Controllare il log."
77
 
78
  # @ ure
79
- #: ../ure-lib.php:188
80
  msgid "No backup data. It is created automatically before the first role data update."
81
  msgstr "Nessun backup. Il primo backup viene creato automaticamente dopo il primo aggiornamento dei ruoli."
82
 
83
  # @ ure
84
- #: ../ure-lib.php:226
85
  msgid "Backup record is created for the current role capabilities"
86
  msgstr "Backup creato per i permessi attuali dei ruoli."
87
 
88
  # @ ure
89
- #: ../ure-lib.php:345
90
  msgid "Error: Role name must contain latin characters and digits only!"
91
  msgstr "Errore: il nome del ruolo deve contenere solo numeri e caratteri latini!"
92
 
93
  # @ ure
94
- #: ../ure-lib.php:352
95
  #, php-format
96
  msgid "Role %s exists already"
97
  msgstr "Il ruolo %s esiste già"
98
 
99
  # @ ure
100
- #: ../ure-lib.php:365
101
  msgid "Error is encountered during new role create operation"
102
  msgstr "Si è verificato un errore nella creazione di un nuovo ruolo"
103
 
104
  # @ ure
105
- #: ../ure-lib.php:367
106
  #, php-format
107
  msgid "Role %s is created successfully"
108
  msgstr "Il ruolo %s è stato creato con successo."
109
 
110
  # @ ure
111
- #: ../ure-lib.php:451
112
  msgid "Error encountered during role delete operation"
113
  msgstr "Si è verificato un errore nella cancellazione del ruolo"
114
 
115
  # @ ure
116
- #: ../ure-lib.php:453
117
  #, php-format
118
  msgid "Role %s is deleted successfully"
119
  msgstr "Ruolo %s cancellato con successo."
120
 
121
  # @ ure
122
- #: ../ure-lib.php:471
123
  msgid "Error encountered during default role change operation"
124
  msgstr "Si è verificato un errore nella modifica del ruolo di default."
125
 
126
  # @ ure
127
- #: ../ure-lib.php:477
128
  #, php-format
129
  msgid "Default role for new users is set to %s successfully"
130
  msgstr "Il ruolo di default per i nuovi utenti è stato impostato con successo su %s"
131
 
132
  # @ ure
133
- #: ../ure-lib.php:505
134
  msgid "Editor"
135
  msgstr "Editore"
136
 
137
  # @ ure
138
- #: ../ure-lib.php:506
139
  msgid "Author"
140
  msgstr "Autore"
141
 
142
  # @ ure
143
- #: ../ure-lib.php:507
144
  msgid "Contributor"
145
  msgstr "Collaboratore"
146
 
147
  # @ ure
148
- #: ../ure-lib.php:508
149
  msgid "Subscriber"
150
  msgstr "Sottoscrittore"
151
 
152
  # @ ure
153
- #: ../ure-lib.php:510
154
  msgid "Switch themes"
155
  msgstr "Cambiare tema"
156
 
157
  # @ ure
158
- #: ../ure-lib.php:511
159
  msgid "Edit themes"
160
  msgstr "Modificare temi"
161
 
162
  # @ ure
163
- #: ../ure-lib.php:512
164
  msgid "Activate plugins"
165
  msgstr "Attivare plugins"
166
 
167
  # @ ure
168
- #: ../ure-lib.php:513
169
  msgid "Edit plugins"
170
  msgstr "Modificare plugins"
171
 
172
  # @ ure
173
- #: ../ure-lib.php:514
174
  msgid "Edit users"
175
  msgstr "Modificare Utenti"
176
 
177
  # @ ure
178
- #: ../ure-lib.php:515
179
  msgid "Edit files"
180
  msgstr "Modificare file"
181
 
182
  # @ ure
183
- #: ../ure-lib.php:516
184
  msgid "Manage options"
185
  msgstr "Gestire le opzioni"
186
 
187
  # @ ure
188
- #: ../ure-lib.php:517
189
  msgid "Moderate comments"
190
  msgstr "Moderare i commenti"
191
 
192
  # @ ure
193
- #: ../ure-lib.php:518
194
  msgid "Manage categories"
195
  msgstr "Gestire le categorie"
196
 
197
  # @ ure
198
- #: ../ure-lib.php:519
199
  msgid "Manage links"
200
  msgstr "Gestire i link"
201
 
202
  # @ ure
203
- #: ../ure-lib.php:520
204
  msgid "Upload files"
205
  msgstr "Caricare file"
206
 
207
  # @ ure
208
- #: ../ure-lib.php:521
209
  msgid "Import"
210
  msgstr "Importare"
211
 
212
  # @ ure
213
- #: ../ure-lib.php:522
214
  msgid "Unfiltered html"
215
  msgstr "html non filtrato"
216
 
217
  # @ ure
218
- #: ../ure-lib.php:523
219
  msgid "Edit posts"
220
  msgstr "Modificare articoli"
221
 
222
  # @ ure
223
- #: ../ure-lib.php:524
224
  msgid "Edit others posts"
225
  msgstr "Modificare articoli di altri Utenti"
226
 
227
  # @ ure
228
- #: ../ure-lib.php:525
229
  msgid "Edit published posts"
230
  msgstr "Modificare articoli pubblicati"
231
 
232
  # @ ure
233
- #: ../ure-lib.php:526
234
  msgid "Publish posts"
235
  msgstr "Pubblicare articolo"
236
 
237
  # @ ure
238
- #: ../ure-lib.php:527
239
  msgid "Edit pages"
240
  msgstr "Modificare pagine"
241
 
242
  # @ ure
243
- #: ../ure-lib.php:528
244
  msgid "Read"
245
  msgstr "Leggere"
246
 
247
  # @ ure
248
- #: ../ure-lib.php:529
249
  msgid "Level 10"
250
  msgstr "Livello 10"
251
 
252
  # @ ure
253
- #: ../ure-lib.php:530
254
  msgid "Level 9"
255
  msgstr "Livello 9"
256
 
257
  # @ ure
258
- #: ../ure-lib.php:531
259
  msgid "Level 8"
260
  msgstr "Livello 8"
261
 
262
  # @ ure
263
- #: ../ure-lib.php:532
264
  msgid "Level 7"
265
  msgstr "Livello 7"
266
 
267
  # @ ure
268
- #: ../ure-lib.php:533
269
  msgid "Level 6"
270
  msgstr "Livello 6"
271
 
272
  # @ ure
273
- #: ../ure-lib.php:534
274
  msgid "Level 5"
275
  msgstr "Livello 5"
276
 
277
  # @ ure
278
- #: ../ure-lib.php:535
279
  msgid "Level 4"
280
  msgstr "Livello 4"
281
 
282
  # @ ure
283
- #: ../ure-lib.php:536
284
  msgid "Level 3"
285
  msgstr "Livello 3"
286
 
287
  # @ ure
288
- #: ../ure-lib.php:537
289
  msgid "Level 2"
290
  msgstr "Livello 2"
291
 
292
  # @ ure
293
- #: ../ure-lib.php:538
294
  msgid "Level 1"
295
  msgstr "Livello 1"
296
 
297
  # @ ure
298
- #: ../ure-lib.php:539
299
  msgid "Level 0"
300
  msgstr "Livello 0"
301
 
302
  # @ ure
303
- #: ../ure-lib.php:540
304
  msgid "Edit others pages"
305
  msgstr "Modificare pagine di altri Utenti"
306
 
307
  # @ ure
308
- #: ../ure-lib.php:541
309
  msgid "Edit published pages"
310
  msgstr "Modificare pagine pubblicate"
311
 
312
  # @ ure
313
- #: ../ure-lib.php:542
314
  msgid "Publish pages"
315
  msgstr "Pubblicare pagine"
316
 
317
  # @ ure
318
- #: ../ure-lib.php:543
319
  msgid "Delete pages"
320
  msgstr "Cancellare pagine"
321
 
322
  # @ ure
323
- #: ../ure-lib.php:544
324
  msgid "Delete others pages"
325
  msgstr "Cancellare pagine di altri Utenti"
326
 
327
  # @ ure
328
- #: ../ure-lib.php:545
329
  msgid "Delete published pages"
330
  msgstr "Cancellare pagine pubblicate"
331
 
332
  # @ ure
333
- #: ../ure-lib.php:546
334
  msgid "Delete posts"
335
  msgstr "Cancellare articoli"
336
 
337
  # @ ure
338
- #: ../ure-lib.php:547
339
  msgid "Delete others posts"
340
  msgstr "Cancellare articoli di altri Utenti"
341
 
342
  # @ ure
343
- #: ../ure-lib.php:548
344
  msgid "Delete published posts"
345
  msgstr "Cancellare articoli pubblicati"
346
 
347
  # @ ure
348
- #: ../ure-lib.php:549
349
  msgid "Delete private posts"
350
  msgstr "Cancellare articoli privati"
351
 
352
  # @ ure
353
- #: ../ure-lib.php:550
354
  msgid "Edit private posts"
355
  msgstr "Modificare articoli privati"
356
 
357
  # @ ure
358
- #: ../ure-lib.php:551
359
  msgid "Read private posts"
360
  msgstr "Leggere articoli privati"
361
 
362
  # @ ure
363
- #: ../ure-lib.php:552
364
  msgid "Delete private pages"
365
  msgstr "Cancellare pagine private"
366
 
367
  # @ ure
368
- #: ../ure-lib.php:553
369
  msgid "Edit private pages"
370
  msgstr "Modificare pagine private"
371
 
372
  # @ ure
373
- #: ../ure-lib.php:554
374
  msgid "Read private pages"
375
  msgstr "Leggere pagine private"
376
 
377
  # @ ure
378
- #: ../ure-lib.php:555
379
  msgid "Delete users"
380
  msgstr "Cancellare Utenti"
381
 
382
  # @ ure
383
- #: ../ure-lib.php:556
384
  msgid "Create users"
385
  msgstr "Creare Utenti"
386
 
387
  # @ ure
388
- #: ../ure-lib.php:557
389
  msgid "Unfiltered upload"
390
  msgstr "Upload non filtrato"
391
 
392
  # @ ure
393
- #: ../ure-lib.php:558
394
  msgid "Edit dashboard"
395
  msgstr "Modificare bacheca"
396
 
397
  # @ ure
398
- #: ../ure-lib.php:559
399
  msgid "Update plugins"
400
  msgstr "Aggiornare plugin"
401
 
402
  # @ ure
403
- #: ../ure-lib.php:560
404
  msgid "Delete plugins"
405
  msgstr "Cancellare plugin"
406
 
407
  # @ ure
408
- #: ../ure-lib.php:561
409
  msgid "Install plugins"
410
  msgstr "Installare plugin"
411
 
412
  # @ ure
413
- #: ../ure-lib.php:562
414
  msgid "Update themes"
415
  msgstr "Aggiornare temi"
416
 
417
  # @ ure
418
- #: ../ure-lib.php:563
419
  msgid "Install themes"
420
  msgstr "Installare temi"
421
 
422
  # @ ure
423
- #: ../ure-lib.php:564
424
  msgid "Update core"
425
  msgstr "Aggiornare il core"
426
 
427
  # @ ure
428
- #: ../ure-lib.php:565
429
  msgid "List users"
430
  msgstr "Lista Utenti"
431
 
432
  # @ ure
433
- #: ../ure-lib.php:566
434
  msgid "Remove users"
435
  msgstr "Rimuovere Utenti"
436
 
437
  # @ ure
438
- #: ../ure-lib.php:567
439
  msgid "Add users"
440
  msgstr "Aggiungere Utenti"
441
 
442
  # @ ure
443
- #: ../ure-lib.php:568
444
  msgid "Promote users"
445
  msgstr "Promuovere Utenti"
446
 
447
  # @ ure
448
- #: ../ure-lib.php:569
449
  msgid "Edit theme options"
450
  msgstr "Modificare le opzioni del tema"
451
 
452
  # @ ure
453
- #: ../ure-lib.php:570
454
  msgid "Delete themes"
455
  msgstr "Eliminare temi"
456
 
457
  # @ ure
458
- #: ../ure-lib.php:571
459
  msgid "Export"
460
  msgstr "Esportare"
461
 
462
  # @ ure
463
- #: ../ure-lib.php:655
464
  msgid "Error: Capability name must contain latin characters and digits only!"
465
  msgstr "Errore: il nome del permesso deve contenere solo numeri e caratteri latini!"
466
 
467
  # @ ure
468
- #: ../ure-lib.php:667
469
  #, php-format
470
  msgid "Capability %s is added successfully"
471
  msgstr "Il permesso %s è stato creato con successo."
472
 
473
- #: ../ure-lib.php:669
474
  #, php-format
475
  msgid "Capability %s exists already"
476
  msgstr "Il permesso %s esiste già"
477
 
478
- #: ../ure-lib.php:818
479
  #, php-format
480
  msgid "Error! You do not have permission to delete this capability: %s!"
481
  msgstr "Errore! non hai l'autorizzazione di rimuovere questo permesso: %s!"
482
 
483
  # @ ure
484
- #: ../ure-lib.php:840
485
  #, php-format
486
  msgid "Capability %s is removed successfully"
487
  msgstr "Il permesso %s è stato rimosso"
488
 
489
- #: ../ure-lib.php:902
490
  msgid "Help"
491
  msgstr "Aiuto"
492
 
493
  # @ ure
494
- #: ../ure-role-edit.php:29
495
  msgid "None"
496
  msgstr "Nessuno"
497
 
498
  # @ ure
499
- #: ../ure-role-edit.php:93
500
  msgid " Name can not be empty!"
501
  msgstr "Il nome non può essere vuoto!"
502
 
503
  # @ ure
504
- #: ../ure-role-edit.php:97
505
  msgid " Name must contain latin characters and digits only!"
506
  msgstr "Il nome deve contenere solo numeri e caratteri latini!"
507
 
508
  # @ ure
509
- #: ../ure-role-edit.php:102
510
- #: ../ure-role-edit.php:293
511
  msgid "Delete Role"
512
  msgstr "Elimina ruolo"
513
 
514
  # @ ure
515
- #: ../ure-role-edit.php:104
516
  msgid "Change Default Role"
517
  msgstr "Cambia ruolo di default"
518
 
519
- #: ../ure-role-edit.php:106
520
  msgid "Restore Roles from backup copy. Be careful, backup was created when you started URE 1st time. All changes you made after that will be lost"
521
  msgstr "Ripristina i Ruoli da una copia di backup. Attenzione, il backup è stato creato al primo avvio di URE, tutte le modifiche apportate in seguito andranno perse."
522
 
523
- #: ../ure-role-edit.php:108
524
  msgid "Warning! Be careful - removing critical capability could crash some plugin or other custom code"
525
  msgstr "Attenzione! rimuovere permessi critici potrebbe causare malfunzionamenti in alcuni plugin o in altro codice personalizzato"
526
 
527
  # @ ure
528
- #: ../ure-role-edit.php:110
529
  msgid "Please confirm to continue"
530
  msgstr "Conferma per continuare"
531
 
532
  # @ ure
533
- #: ../ure-role-edit.php:147
534
  #, php-format
535
  msgid "Role \"%s\" update: please confirm to continue"
536
  msgstr "Aggiornamento del ruolo %s : conferma per continuare"
537
 
538
  # @ ure
539
- #: ../ure-role-edit.php:155
540
  msgid "Select Role and change its capabilities list"
541
  msgstr "Seleziona ruolo e modifica la lista dei suoi permessi"
542
 
543
  # @ ure
544
- #: ../ure-role-edit.php:157
545
  msgid "Select Role:"
546
  msgstr "Seleziona ruolo:"
547
 
548
  # @ ure
549
- #: ../ure-role-edit.php:167
550
- #: ../ure-user-edit.php:91
551
  msgid "Show capabilities in human readable form"
552
  msgstr "Mostra permessi in forma leggibile per un uomo"
553
 
554
- #: ../ure-role-edit.php:176
555
- #: ../ure-user-edit.php:100
556
  msgid "Show deprecated capabilities"
557
  msgstr "Mostra permessi deprecati"
558
 
559
  # @ default
560
- #: ../ure-role-edit.php:180
561
  msgid "If checked, then apply action to ALL sites of this Network"
562
  msgstr "Se selezionato, applica l'impostazione a TUTTI i siti di questo Network"
563
 
564
  # @ ure
565
- #: ../ure-role-edit.php:190
566
  msgid "Apply to All Sites"
567
  msgstr "Applica a tutti i Siti"
568
 
 
 
 
 
 
 
 
 
 
 
 
 
569
  # @ ure
570
- #: ../ure-role-edit.php:251
571
- #: ../ure-user-edit.php:163
572
  msgid "Update"
573
  msgstr "Aggiorna"
574
 
575
  # @ ure
576
- #: ../ure-role-edit.php:251
577
- #: ../ure-user-edit.php:163
578
  msgid "Save Changes"
579
  msgstr "Salva le modifiche"
580
 
581
  # @ ure
582
- #: ../ure-role-edit.php:252
583
- #: ../ure-user-edit.php:164
584
  msgid "Cancel"
585
  msgstr "Annulla"
586
 
587
  # @ ure
588
- #: ../ure-role-edit.php:252
589
- #: ../ure-user-edit.php:164
590
  msgid "Cancel not saved changes"
591
  msgstr "Annulla modifiche non salvate"
592
 
593
  # @ ure
594
- #: ../ure-role-edit.php:255
595
  msgid "Select All"
596
  msgstr ""
597
 
598
- #: ../ure-role-edit.php:255
599
  msgid "Select All Capabilities"
600
  msgstr ""
601
 
602
- #: ../ure-role-edit.php:256
603
  msgid "Unselect All"
604
  msgstr ""
605
 
606
- #: ../ure-role-edit.php:256
607
  msgid "Unselect All Capabilities"
608
  msgstr ""
609
 
610
- #: ../ure-role-edit.php:257
611
  msgid "Reverse"
612
  msgstr ""
613
 
614
- #: ../ure-role-edit.php:257
615
  msgid "Turn checked capabilities off and vise versa"
616
  msgstr ""
617
 
618
  # @ ure
619
- #: ../ure-role-edit.php:260
620
  msgid "Reset"
621
  msgstr "Ripristina"
622
 
623
  # @ ure
624
- #: ../ure-role-edit.php:260
625
  msgid "Restore Roles from backup copy"
626
  msgstr "Ripristina ruoli da una copia di backup"
627
 
628
  # @ ure
629
- #: ../ure-role-edit.php:270
630
  msgid "Add New Role"
631
  msgstr "Aggiungi nuovo ruolo"
632
 
633
- #: ../ure-role-edit.php:272
634
  msgid "Name: "
635
  msgstr "Nome:"
636
 
637
- #: ../ure-role-edit.php:276
638
  msgid "Make copy of: "
639
  msgstr "Fai una copia di:"
640
 
641
  # @ ure
642
- #: ../ure-role-edit.php:279
643
- #: ../ure-role-edit.php:308
644
  msgid "Add"
645
  msgstr "Aggiungi"
646
 
647
  # @ ure
648
- #: ../ure-role-edit.php:279
649
  msgid "Add New User Role"
650
  msgstr "Aggiungi nuovo ruolo Utente"
651
 
652
  # @ ure
653
- #: ../ure-role-edit.php:283
654
  msgid "Default Role for New User"
655
  msgstr "Ruolo predefinito per un nuovo Utente"
656
 
657
  # @ ure
658
- #: ../ure-role-edit.php:288
659
  msgid "Change"
660
  msgstr "Cambia"
661
 
662
  # @ ure
663
- #: ../ure-role-edit.php:288
664
  msgid "Set as Default User Role"
665
  msgstr "Imposta come ruolo Utente predefinito"
666
 
667
  # @ ure
668
- #: ../ure-role-edit.php:298
669
  msgid "Delete"
670
  msgstr "Elimina"
671
 
672
  # @ ure
673
- #: ../ure-role-edit.php:298
674
  msgid "Delete User Role"
675
  msgstr "Elimina ruolo Utente"
676
 
677
  # @ ure
678
- #: ../ure-role-edit.php:303
679
- #: ../ure-role-edit.php:308
680
  msgid "Add New Capability"
681
  msgstr "Aggiungi nuovo permesso"
682
 
683
- #: ../ure-role-edit.php:313
684
  msgid "Remove Capability"
685
  msgstr "Rimuovi il permesso"
686
 
687
  # @ ure
688
- #: ../ure-role-edit.php:318
689
  msgid "Remove"
690
  msgstr "Rimuovi"
691
 
692
- #: ../ure-role-edit.php:318
693
  msgid "Remove User Capability"
694
  msgstr "Rimuovi il permesso Utente"
695
 
696
  # @ ure
697
- #: ../ure-user-edit.php:67
698
  #, php-format
699
  msgid "User \"%s\" update: please confirm to continue"
700
  msgstr "Aggiornamento dell'Utente %s : conferma per continuare"
701
 
702
- #: ../ure-user-edit.php:79
703
  msgid "Change capabilities for user"
704
  msgstr "Cambia i permessi per l'Utente"
705
 
706
  # @ ure
707
- #: ../ure-user-edit.php:82
708
  msgid "Role:"
709
  msgstr "Ruolo: "
710
 
711
- #: ../ure-user-edit.php:104
712
  msgid "Add capabilities to this user:"
713
  msgstr "Aggiungi permessi a questo Utente: "
714
 
715
  # @ ure
716
- #: ../ure-options.php:59
717
  msgid "User Roles are restored from the backup data. "
718
  msgstr "I Ruoli Utente sono stati ripristinati dai dati di backup."
719
 
720
- #: ../ure-options.php:125
721
  msgid "Error: "
722
  msgstr "Errore:"
723
 
724
  # @ ure
725
- #: ../ure-options.php:125
726
- #: ../ure-options.php:143
727
  msgid "Role"
728
  msgstr "Ruolo"
729
 
730
- #: ../ure-options.php:125
731
  msgid "does not exist"
732
  msgstr "non esiste"
733
 
734
  # @ ure
735
- #: ../ure-options.php:143
736
  msgid "is updated successfully"
737
  msgstr "è stato aggiornato con successo"
738
 
739
- #: ../ure-options.php:152
740
  msgid "User"
741
  msgstr "Utente"
742
 
743
  # @ ure
744
- #: ../ure-options.php:152
745
  msgid "capabilities are updated successfully"
746
  msgstr "i permessi sono stati aggiornati"
747
 
748
  # @ ure
749
- #: ../ure-options.php:215
750
  msgid "About this Plugin:"
751
  msgstr "Info su questo plugin:"
752
 
753
  # @ ure
754
- #: ../ure-options.php:216
755
  msgid "Author's website"
756
  msgstr "Sito Web dell'Autore"
757
 
758
  # @ ure
759
- #: ../ure-options.php:217
760
  msgid "Plugin webpage"
761
  msgstr "Pagina Web del plugin"
762
 
763
  # @ ure
764
- #: ../ure-options.php:219
765
  msgid "FAQ"
766
  msgstr "FAQ"
767
 
768
  # @ ure
769
- #: ../ure-options.php:220
770
  msgid "Greetings"
771
  msgstr "Ringraziamenti"
772
 
773
  # @ ure
774
- #: ../ure-options.php:242
775
  msgid "Greetings:"
776
  msgstr "Ringraziamenti:"
777
 
778
  # @ ure
779
- #: ../ure-options.php:243
780
  msgid "It's me, the author"
781
  msgstr "Sono io, l'autore"
782
 
783
  # @ ure
784
- #: ../ure-options.php:244
785
  msgid "For the help with Belorussian translation"
786
  msgstr "Per l'aiuto con la traduzione in Bielorusso"
787
 
788
  # @ ure
789
- #: ../ure-options.php:245
790
  msgid "For the help with Brasilian translation"
791
  msgstr "Per l'aiuto con la traduzione in Brasiliana"
792
 
793
  # @ ure
794
- #: ../ure-options.php:246
 
 
 
 
 
795
  msgid "For the help with Chinese translation"
796
  msgstr "per l'aiuto con la traduzione in Cinese"
797
 
798
  # @ ure
799
- #: ../ure-options.php:247
800
  msgid "For the help with Dutch translation"
801
  msgstr "Per l'aiuto con la traduzione in Olandese"
802
 
803
  # @ ure
804
- #: ../ure-options.php:248
805
  msgid "For the help with Finnish translation"
806
  msgstr "per l'aiuto con la traduzione in Finnish"
807
 
808
  # @ ure
809
- #: ../ure-options.php:249
810
- #: ../ure-options.php:250
811
  msgid "For the help with French translation"
812
  msgstr "Per l'aiuto con la traduzione in Francese"
813
 
814
  # @ ure
815
- #: ../ure-options.php:251
816
  msgid "For the help with German translation"
817
  msgstr "Per l'aiuto con la traduzione in Tedesco"
818
 
819
  # @ ure
820
- #: ../ure-options.php:252
821
- #: ../ure-options.php:253
822
  msgid "For the help with Hebrew translation"
823
  msgstr "Per l'aiuto con la traduzione in Ebraico"
824
 
825
  # @ ure
826
- #: ../ure-options.php:254
827
  msgid "For the help with Hindi translation"
828
  msgstr ""
829
 
830
  # @ ure
831
- #: ../ure-options.php:255
832
  msgid "For the help with Hungarian translation"
833
  msgstr "per l'aiuto con la traduzione in Ungherese"
834
 
835
  # @ ure
836
  # @ pgc
837
- #: ../ure-options.php:256
838
- #: ../ure-options.php:257
839
  msgid "For the help with Italian translation"
840
  msgstr "per l'aiuto con la traduzione in Italiano"
841
 
842
  # @ ure
843
- #: ../ure-options.php:258
844
  msgid "For the help with Japanese translation"
845
  msgstr "per l'aiuto con la traduzione in Giapponese"
846
 
847
  # @ ure
848
  # @ pgc
849
- #: ../ure-options.php:259
850
  msgid "For the help with Lithuanian translation"
851
  msgstr "Per l'aiuto con la traduzione in Lituano"
852
 
853
  # @ ure
854
- #: ../ure-options.php:260
855
- #: ../ure-options.php:261
 
856
  msgid "For the help with Persian translation"
857
  msgstr "per l'aiuto con la traduzione in Persiano"
858
 
859
  # @ ure
860
- #: ../ure-options.php:262
 
861
  msgid "For the help with Polish translation"
862
  msgstr "per l'aiuto con la traduzione in Polacca"
863
 
864
  # @ ure
865
- #: ../ure-options.php:263
866
- #: ../ure-options.php:264
867
  msgid "For the help with Spanish translation"
868
  msgstr "per l'aiuto con la traduzione in Spagnolo"
869
 
870
  # @ ure
871
- #: ../ure-options.php:265
872
  msgid "For the updated Swedish translation"
873
  msgstr "Per l'aiuto con la traduzione in Svedese"
874
 
875
  # @ ure
876
- #: ../ure-options.php:266
877
  msgid "For the help with Swedish translation"
878
  msgstr "per l'aiuto con la traduzione in Swedish"
879
 
880
  # @ ure
881
- #: ../ure-options.php:267
882
  msgid "For the help with Turkish translation"
883
  msgstr "Per l'aiuto con la traduzione in turco"
884
 
885
  # @ ure
886
- #: ../ure-options.php:269
887
  msgid "For the code to hide administrator role"
888
  msgstr "Per il codice che nasconde il ruolo di amministratore"
889
 
890
- #: ../ure-options.php:270
891
  msgid "For the code enhancement suggestion"
892
  msgstr "Per consigli su come migliorare il codice"
893
 
894
  # @ ure
895
- #: ../ure-options.php:272
896
  msgid "Do you wish to see your name with link to your site here? You are welcome! Your help with translation and new ideas are very appreciated."
897
  msgstr "Vorresti vedere il tuo nome e il link al tuo sito qui? Sono apprezzati aiuti nelle traduzioni e nuove idee."
898
 
2
  msgstr ""
3
  "Project-Id-Version: User Role Editor 2.0\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-09-01 08:47+0700\n"
6
+ "PO-Revision-Date: 2012-09-01 08:47+0700\n"
7
  "Last-Translator: Vladimir Garagulya <vladimir@shinephp.com>\n"
8
  "Language-Team: w3b.it <web@w3b.it>\n"
9
  "Language: \n"
35
  msgid "User Role Editor requires PHP 5.0 or newer."
36
  msgstr "User Role Editor richiede PHP 5.0 o superiori."
37
 
38
+ #: ../user-role-editor.php:76
39
  msgid "Only"
40
  msgstr "Solo"
41
 
42
+ #: ../user-role-editor.php:76
43
  msgid "is allowed to use"
44
  msgstr "ha il permesso di usare"
45
 
46
  # @ ure
47
  # @ default
48
+ #: ../user-role-editor.php:82
49
+ #: ../user-role-editor.php:251
50
  msgid "User Role Editor"
51
  msgstr "Editor Ruoli Utente"
52
 
53
  # @ ure
54
+ #: ../user-role-editor.php:223
55
  msgid "Settings"
56
  msgstr "Impostazioni"
57
 
58
  # @ ure
59
+ #: ../user-role-editor.php:233
60
+ #: ../includes/ure-options.php:235
61
  msgid "Changelog"
62
  msgstr "Storico degli Aggiornamenti"
63
 
64
+ #: ../user-role-editor.php:280
65
  msgid "Capabilities"
66
  msgstr "Permessi"
67
 
68
  # @ ure
69
+ #: ../includes/ure-lib.php:34
70
  msgid "Error is occur. Please check the log file."
71
  msgstr "Si è verificato un errore. Controllare il log."
72
 
73
  # @ ure
74
+ #: ../includes/ure-lib.php:144
75
  msgid "Database operation error. Check log file."
76
  msgstr "Errore del database. Controllare il log."
77
 
78
  # @ ure
79
+ #: ../includes/ure-lib.php:177
80
  msgid "No backup data. It is created automatically before the first role data update."
81
  msgstr "Nessun backup. Il primo backup viene creato automaticamente dopo il primo aggiornamento dei ruoli."
82
 
83
  # @ ure
84
+ #: ../includes/ure-lib.php:215
85
  msgid "Backup record is created for the current role capabilities"
86
  msgstr "Backup creato per i permessi attuali dei ruoli."
87
 
88
  # @ ure
89
+ #: ../includes/ure-lib.php:329
90
  msgid "Error: Role name must contain latin characters and digits only!"
91
  msgstr "Errore: il nome del ruolo deve contenere solo numeri e caratteri latini!"
92
 
93
  # @ ure
94
+ #: ../includes/ure-lib.php:336
95
  #, php-format
96
  msgid "Role %s exists already"
97
  msgstr "Il ruolo %s esiste già"
98
 
99
  # @ ure
100
+ #: ../includes/ure-lib.php:349
101
  msgid "Error is encountered during new role create operation"
102
  msgstr "Si è verificato un errore nella creazione di un nuovo ruolo"
103
 
104
  # @ ure
105
+ #: ../includes/ure-lib.php:351
106
  #, php-format
107
  msgid "Role %s is created successfully"
108
  msgstr "Il ruolo %s è stato creato con successo."
109
 
110
  # @ ure
111
+ #: ../includes/ure-lib.php:435
112
  msgid "Error encountered during role delete operation"
113
  msgstr "Si è verificato un errore nella cancellazione del ruolo"
114
 
115
  # @ ure
116
+ #: ../includes/ure-lib.php:437
117
  #, php-format
118
  msgid "Role %s is deleted successfully"
119
  msgstr "Ruolo %s cancellato con successo."
120
 
121
  # @ ure
122
+ #: ../includes/ure-lib.php:455
123
  msgid "Error encountered during default role change operation"
124
  msgstr "Si è verificato un errore nella modifica del ruolo di default."
125
 
126
  # @ ure
127
+ #: ../includes/ure-lib.php:461
128
  #, php-format
129
  msgid "Default role for new users is set to %s successfully"
130
  msgstr "Il ruolo di default per i nuovi utenti è stato impostato con successo su %s"
131
 
132
  # @ ure
133
+ #: ../includes/ure-lib.php:489
134
  msgid "Editor"
135
  msgstr "Editore"
136
 
137
  # @ ure
138
+ #: ../includes/ure-lib.php:490
139
  msgid "Author"
140
  msgstr "Autore"
141
 
142
  # @ ure
143
+ #: ../includes/ure-lib.php:491
144
  msgid "Contributor"
145
  msgstr "Collaboratore"
146
 
147
  # @ ure
148
+ #: ../includes/ure-lib.php:492
149
  msgid "Subscriber"
150
  msgstr "Sottoscrittore"
151
 
152
  # @ ure
153
+ #: ../includes/ure-lib.php:494
154
  msgid "Switch themes"
155
  msgstr "Cambiare tema"
156
 
157
  # @ ure
158
+ #: ../includes/ure-lib.php:495
159
  msgid "Edit themes"
160
  msgstr "Modificare temi"
161
 
162
  # @ ure
163
+ #: ../includes/ure-lib.php:496
164
  msgid "Activate plugins"
165
  msgstr "Attivare plugins"
166
 
167
  # @ ure
168
+ #: ../includes/ure-lib.php:497
169
  msgid "Edit plugins"
170
  msgstr "Modificare plugins"
171
 
172
  # @ ure
173
+ #: ../includes/ure-lib.php:498
174
  msgid "Edit users"
175
  msgstr "Modificare Utenti"
176
 
177
  # @ ure
178
+ #: ../includes/ure-lib.php:499
179
  msgid "Edit files"
180
  msgstr "Modificare file"
181
 
182
  # @ ure
183
+ #: ../includes/ure-lib.php:500
184
  msgid "Manage options"
185
  msgstr "Gestire le opzioni"
186
 
187
  # @ ure
188
+ #: ../includes/ure-lib.php:501
189
  msgid "Moderate comments"
190
  msgstr "Moderare i commenti"
191
 
192
  # @ ure
193
+ #: ../includes/ure-lib.php:502
194
  msgid "Manage categories"
195
  msgstr "Gestire le categorie"
196
 
197
  # @ ure
198
+ #: ../includes/ure-lib.php:503
199
  msgid "Manage links"
200
  msgstr "Gestire i link"
201
 
202
  # @ ure
203
+ #: ../includes/ure-lib.php:504
204
  msgid "Upload files"
205
  msgstr "Caricare file"
206
 
207
  # @ ure
208
+ #: ../includes/ure-lib.php:505
209
  msgid "Import"
210
  msgstr "Importare"
211
 
212
  # @ ure
213
+ #: ../includes/ure-lib.php:506
214
  msgid "Unfiltered html"
215
  msgstr "html non filtrato"
216
 
217
  # @ ure
218
+ #: ../includes/ure-lib.php:507
219
  msgid "Edit posts"
220
  msgstr "Modificare articoli"
221
 
222
  # @ ure
223
+ #: ../includes/ure-lib.php:508
224
  msgid "Edit others posts"
225
  msgstr "Modificare articoli di altri Utenti"
226
 
227
  # @ ure
228
+ #: ../includes/ure-lib.php:509
229
  msgid "Edit published posts"
230
  msgstr "Modificare articoli pubblicati"
231
 
232
  # @ ure
233
+ #: ../includes/ure-lib.php:510
234
  msgid "Publish posts"
235
  msgstr "Pubblicare articolo"
236
 
237
  # @ ure
238
+ #: ../includes/ure-lib.php:511
239
  msgid "Edit pages"
240
  msgstr "Modificare pagine"
241
 
242
  # @ ure
243
+ #: ../includes/ure-lib.php:512
244
  msgid "Read"
245
  msgstr "Leggere"
246
 
247
  # @ ure
248
+ #: ../includes/ure-lib.php:513
249
  msgid "Level 10"
250
  msgstr "Livello 10"
251
 
252
  # @ ure
253
+ #: ../includes/ure-lib.php:514
254
  msgid "Level 9"
255
  msgstr "Livello 9"
256
 
257
  # @ ure
258
+ #: ../includes/ure-lib.php:515
259
  msgid "Level 8"
260
  msgstr "Livello 8"
261
 
262
  # @ ure
263
+ #: ../includes/ure-lib.php:516
264
  msgid "Level 7"
265
  msgstr "Livello 7"
266
 
267
  # @ ure
268
+ #: ../includes/ure-lib.php:517
269
  msgid "Level 6"
270
  msgstr "Livello 6"
271
 
272
  # @ ure
273
+ #: ../includes/ure-lib.php:518
274
  msgid "Level 5"
275
  msgstr "Livello 5"
276
 
277
  # @ ure
278
+ #: ../includes/ure-lib.php:519
279
  msgid "Level 4"
280
  msgstr "Livello 4"
281
 
282
  # @ ure
283
+ #: ../includes/ure-lib.php:520
284
  msgid "Level 3"
285
  msgstr "Livello 3"
286
 
287
  # @ ure
288
+ #: ../includes/ure-lib.php:521
289
  msgid "Level 2"
290
  msgstr "Livello 2"
291
 
292
  # @ ure
293
+ #: ../includes/ure-lib.php:522
294
  msgid "Level 1"
295
  msgstr "Livello 1"
296
 
297
  # @ ure
298
+ #: ../includes/ure-lib.php:523
299
  msgid "Level 0"
300
  msgstr "Livello 0"
301
 
302
  # @ ure
303
+ #: ../includes/ure-lib.php:524
304
  msgid "Edit others pages"
305
  msgstr "Modificare pagine di altri Utenti"
306
 
307
  # @ ure
308
+ #: ../includes/ure-lib.php:525
309
  msgid "Edit published pages"
310
  msgstr "Modificare pagine pubblicate"
311
 
312
  # @ ure
313
+ #: ../includes/ure-lib.php:526
314
  msgid "Publish pages"
315
  msgstr "Pubblicare pagine"
316
 
317
  # @ ure
318
+ #: ../includes/ure-lib.php:527
319
  msgid "Delete pages"
320
  msgstr "Cancellare pagine"
321
 
322
  # @ ure
323
+ #: ../includes/ure-lib.php:528
324
  msgid "Delete others pages"
325
  msgstr "Cancellare pagine di altri Utenti"
326
 
327
  # @ ure
328
+ #: ../includes/ure-lib.php:529
329
  msgid "Delete published pages"
330
  msgstr "Cancellare pagine pubblicate"
331
 
332
  # @ ure
333
+ #: ../includes/ure-lib.php:530
334
  msgid "Delete posts"
335
  msgstr "Cancellare articoli"
336
 
337
  # @ ure
338
+ #: ../includes/ure-lib.php:531
339
  msgid "Delete others posts"
340
  msgstr "Cancellare articoli di altri Utenti"
341
 
342
  # @ ure
343
+ #: ../includes/ure-lib.php:532
344
  msgid "Delete published posts"
345
  msgstr "Cancellare articoli pubblicati"
346
 
347
  # @ ure
348
+ #: ../includes/ure-lib.php:533
349
  msgid "Delete private posts"
350
  msgstr "Cancellare articoli privati"
351
 
352
  # @ ure
353
+ #: ../includes/ure-lib.php:534
354
  msgid "Edit private posts"
355
  msgstr "Modificare articoli privati"
356
 
357
  # @ ure
358
+ #: ../includes/ure-lib.php:535
359
  msgid "Read private posts"
360
  msgstr "Leggere articoli privati"
361
 
362
  # @ ure
363
+ #: ../includes/ure-lib.php:536
364
  msgid "Delete private pages"
365
  msgstr "Cancellare pagine private"
366
 
367
  # @ ure
368
+ #: ../includes/ure-lib.php:537
369
  msgid "Edit private pages"
370
  msgstr "Modificare pagine private"
371
 
372
  # @ ure
373
+ #: ../includes/ure-lib.php:538
374
  msgid "Read private pages"
375
  msgstr "Leggere pagine private"
376
 
377
  # @ ure
378
+ #: ../includes/ure-lib.php:539
379
  msgid "Delete users"
380
  msgstr "Cancellare Utenti"
381
 
382
  # @ ure
383
+ #: ../includes/ure-lib.php:540
384
  msgid "Create users"
385
  msgstr "Creare Utenti"
386
 
387
  # @ ure
388
+ #: ../includes/ure-lib.php:541
389
  msgid "Unfiltered upload"
390
  msgstr "Upload non filtrato"
391
 
392
  # @ ure
393
+ #: ../includes/ure-lib.php:542
394
  msgid "Edit dashboard"
395
  msgstr "Modificare bacheca"
396
 
397
  # @ ure
398
+ #: ../includes/ure-lib.php:543
399
  msgid "Update plugins"
400
  msgstr "Aggiornare plugin"
401
 
402
  # @ ure
403
+ #: ../includes/ure-lib.php:544
404
  msgid "Delete plugins"
405
  msgstr "Cancellare plugin"
406
 
407
  # @ ure
408
+ #: ../includes/ure-lib.php:545
409
  msgid "Install plugins"
410
  msgstr "Installare plugin"
411
 
412
  # @ ure
413
+ #: ../includes/ure-lib.php:546
414
  msgid "Update themes"
415
  msgstr "Aggiornare temi"
416
 
417
  # @ ure
418
+ #: ../includes/ure-lib.php:547
419
  msgid "Install themes"
420
  msgstr "Installare temi"
421
 
422
  # @ ure
423
+ #: ../includes/ure-lib.php:548
424
  msgid "Update core"
425
  msgstr "Aggiornare il core"
426
 
427
  # @ ure
428
+ #: ../includes/ure-lib.php:549
429
  msgid "List users"
430
  msgstr "Lista Utenti"
431
 
432
  # @ ure
433
+ #: ../includes/ure-lib.php:550
434
  msgid "Remove users"
435
  msgstr "Rimuovere Utenti"
436
 
437
  # @ ure
438
+ #: ../includes/ure-lib.php:551
439
  msgid "Add users"
440
  msgstr "Aggiungere Utenti"
441
 
442
  # @ ure
443
+ #: ../includes/ure-lib.php:552
444
  msgid "Promote users"
445
  msgstr "Promuovere Utenti"
446
 
447
  # @ ure
448
+ #: ../includes/ure-lib.php:553
449
  msgid "Edit theme options"
450
  msgstr "Modificare le opzioni del tema"
451
 
452
  # @ ure
453
+ #: ../includes/ure-lib.php:554
454
  msgid "Delete themes"
455
  msgstr "Eliminare temi"
456
 
457
  # @ ure
458
+ #: ../includes/ure-lib.php:555
459
  msgid "Export"
460
  msgstr "Esportare"
461
 
462
  # @ ure
463
+ #: ../includes/ure-lib.php:639
464
  msgid "Error: Capability name must contain latin characters and digits only!"
465
  msgstr "Errore: il nome del permesso deve contenere solo numeri e caratteri latini!"
466
 
467
  # @ ure
468
+ #: ../includes/ure-lib.php:651
469
  #, php-format
470
  msgid "Capability %s is added successfully"
471
  msgstr "Il permesso %s è stato creato con successo."
472
 
473
+ #: ../includes/ure-lib.php:653
474
  #, php-format
475
  msgid "Capability %s exists already"
476
  msgstr "Il permesso %s esiste già"
477
 
478
+ #: ../includes/ure-lib.php:802
479
  #, php-format
480
  msgid "Error! You do not have permission to delete this capability: %s!"
481
  msgstr "Errore! non hai l'autorizzazione di rimuovere questo permesso: %s!"
482
 
483
  # @ ure
484
+ #: ../includes/ure-lib.php:824
485
  #, php-format
486
  msgid "Capability %s is removed successfully"
487
  msgstr "Il permesso %s è stato rimosso"
488
 
489
+ #: ../includes/ure-lib.php:889
490
  msgid "Help"
491
  msgstr "Aiuto"
492
 
493
  # @ ure
494
+ #: ../includes/ure-role-edit.php:29
495
  msgid "None"
496
  msgstr "Nessuno"
497
 
498
  # @ ure
499
+ #: ../includes/ure-role-edit.php:101
500
  msgid " Name can not be empty!"
501
  msgstr "Il nome non può essere vuoto!"
502
 
503
  # @ ure
504
+ #: ../includes/ure-role-edit.php:105
505
  msgid " Name must contain latin characters and digits only!"
506
  msgstr "Il nome deve contenere solo numeri e caratteri latini!"
507
 
508
  # @ ure
509
+ #: ../includes/ure-role-edit.php:110
510
+ #: ../includes/ure-role-edit.php:367
511
  msgid "Delete Role"
512
  msgstr "Elimina ruolo"
513
 
514
  # @ ure
515
+ #: ../includes/ure-role-edit.php:112
516
  msgid "Change Default Role"
517
  msgstr "Cambia ruolo di default"
518
 
519
+ #: ../includes/ure-role-edit.php:114
520
  msgid "Restore Roles from backup copy. Be careful, backup was created when you started URE 1st time. All changes you made after that will be lost"
521
  msgstr "Ripristina i Ruoli da una copia di backup. Attenzione, il backup è stato creato al primo avvio di URE, tutte le modifiche apportate in seguito andranno perse."
522
 
523
+ #: ../includes/ure-role-edit.php:116
524
  msgid "Warning! Be careful - removing critical capability could crash some plugin or other custom code"
525
  msgstr "Attenzione! rimuovere permessi critici potrebbe causare malfunzionamenti in alcuni plugin o in altro codice personalizzato"
526
 
527
  # @ ure
528
+ #: ../includes/ure-role-edit.php:118
529
  msgid "Please confirm to continue"
530
  msgstr "Conferma per continuare"
531
 
532
  # @ ure
533
+ #: ../includes/ure-role-edit.php:155
534
  #, php-format
535
  msgid "Role \"%s\" update: please confirm to continue"
536
  msgstr "Aggiornamento del ruolo %s : conferma per continuare"
537
 
538
  # @ ure
539
+ #: ../includes/ure-role-edit.php:163
540
  msgid "Select Role and change its capabilities list"
541
  msgstr "Seleziona ruolo e modifica la lista dei suoi permessi"
542
 
543
  # @ ure
544
+ #: ../includes/ure-role-edit.php:165
545
  msgid "Select Role:"
546
  msgstr "Seleziona ruolo:"
547
 
548
  # @ ure
549
+ #: ../includes/ure-role-edit.php:175
550
+ #: ../includes/ure-user-edit.php:91
551
  msgid "Show capabilities in human readable form"
552
  msgstr "Mostra permessi in forma leggibile per un uomo"
553
 
554
+ #: ../includes/ure-role-edit.php:184
555
+ #: ../includes/ure-user-edit.php:100
556
  msgid "Show deprecated capabilities"
557
  msgstr "Mostra permessi deprecati"
558
 
559
  # @ default
560
+ #: ../includes/ure-role-edit.php:188
561
  msgid "If checked, then apply action to ALL sites of this Network"
562
  msgstr "Se selezionato, applica l'impostazione a TUTTI i siti di questo Network"
563
 
564
  # @ ure
565
+ #: ../includes/ure-role-edit.php:198
566
  msgid "Apply to All Sites"
567
  msgstr "Applica a tutti i Siti"
568
 
569
+ #: ../includes/ure-role-edit.php:205
570
+ #: ../includes/ure-user-edit.php:105
571
+ #, fuzzy
572
+ msgid "Core capabilities:"
573
+ msgstr "WordPress Permessi:"
574
+
575
+ #: ../includes/ure-role-edit.php:268
576
+ #: ../includes/ure-user-edit.php:167
577
+ #, fuzzy
578
+ msgid "Custom capabilities:"
579
+ msgstr "Permessi:"
580
+
581
  # @ ure
582
+ #: ../includes/ure-role-edit.php:319
583
+ #: ../includes/ure-user-edit.php:222
584
  msgid "Update"
585
  msgstr "Aggiorna"
586
 
587
  # @ ure
588
+ #: ../includes/ure-role-edit.php:319
589
+ #: ../includes/ure-user-edit.php:222
590
  msgid "Save Changes"
591
  msgstr "Salva le modifiche"
592
 
593
  # @ ure
594
+ #: ../includes/ure-role-edit.php:320
595
+ #: ../includes/ure-user-edit.php:223
596
  msgid "Cancel"
597
  msgstr "Annulla"
598
 
599
  # @ ure
600
+ #: ../includes/ure-role-edit.php:320
601
+ #: ../includes/ure-user-edit.php:223
602
  msgid "Cancel not saved changes"
603
  msgstr "Annulla modifiche non salvate"
604
 
605
  # @ ure
606
+ #: ../includes/ure-role-edit.php:323
607
  msgid "Select All"
608
  msgstr ""
609
 
610
+ #: ../includes/ure-role-edit.php:323
611
  msgid "Select All Capabilities"
612
  msgstr ""
613
 
614
+ #: ../includes/ure-role-edit.php:327
615
  msgid "Unselect All"
616
  msgstr ""
617
 
618
+ #: ../includes/ure-role-edit.php:327
619
  msgid "Unselect All Capabilities"
620
  msgstr ""
621
 
622
+ #: ../includes/ure-role-edit.php:328
623
  msgid "Reverse"
624
  msgstr ""
625
 
626
+ #: ../includes/ure-role-edit.php:328
627
  msgid "Turn checked capabilities off and vise versa"
628
  msgstr ""
629
 
630
  # @ ure
631
+ #: ../includes/ure-role-edit.php:334
632
  msgid "Reset"
633
  msgstr "Ripristina"
634
 
635
  # @ ure
636
+ #: ../includes/ure-role-edit.php:334
637
  msgid "Restore Roles from backup copy"
638
  msgstr "Ripristina ruoli da una copia di backup"
639
 
640
  # @ ure
641
+ #: ../includes/ure-role-edit.php:344
642
  msgid "Add New Role"
643
  msgstr "Aggiungi nuovo ruolo"
644
 
645
+ #: ../includes/ure-role-edit.php:346
646
  msgid "Name: "
647
  msgstr "Nome:"
648
 
649
+ #: ../includes/ure-role-edit.php:350
650
  msgid "Make copy of: "
651
  msgstr "Fai una copia di:"
652
 
653
  # @ ure
654
+ #: ../includes/ure-role-edit.php:353
655
+ #: ../includes/ure-role-edit.php:382
656
  msgid "Add"
657
  msgstr "Aggiungi"
658
 
659
  # @ ure
660
+ #: ../includes/ure-role-edit.php:353
661
  msgid "Add New User Role"
662
  msgstr "Aggiungi nuovo ruolo Utente"
663
 
664
  # @ ure
665
+ #: ../includes/ure-role-edit.php:357
666
  msgid "Default Role for New User"
667
  msgstr "Ruolo predefinito per un nuovo Utente"
668
 
669
  # @ ure
670
+ #: ../includes/ure-role-edit.php:362
671
  msgid "Change"
672
  msgstr "Cambia"
673
 
674
  # @ ure
675
+ #: ../includes/ure-role-edit.php:362
676
  msgid "Set as Default User Role"
677
  msgstr "Imposta come ruolo Utente predefinito"
678
 
679
  # @ ure
680
+ #: ../includes/ure-role-edit.php:372
681
  msgid "Delete"
682
  msgstr "Elimina"
683
 
684
  # @ ure
685
+ #: ../includes/ure-role-edit.php:372
686
  msgid "Delete User Role"
687
  msgstr "Elimina ruolo Utente"
688
 
689
  # @ ure
690
+ #: ../includes/ure-role-edit.php:377
691
+ #: ../includes/ure-role-edit.php:382
692
  msgid "Add New Capability"
693
  msgstr "Aggiungi nuovo permesso"
694
 
695
+ #: ../includes/ure-role-edit.php:387
696
  msgid "Remove Capability"
697
  msgstr "Rimuovi il permesso"
698
 
699
  # @ ure
700
+ #: ../includes/ure-role-edit.php:392
701
  msgid "Remove"
702
  msgstr "Rimuovi"
703
 
704
+ #: ../includes/ure-role-edit.php:392
705
  msgid "Remove User Capability"
706
  msgstr "Rimuovi il permesso Utente"
707
 
708
  # @ ure
709
+ #: ../includes/ure-user-edit.php:67
710
  #, php-format
711
  msgid "User \"%s\" update: please confirm to continue"
712
  msgstr "Aggiornamento dell'Utente %s : conferma per continuare"
713
 
714
+ #: ../includes/ure-user-edit.php:79
715
  msgid "Change capabilities for user"
716
  msgstr "Cambia i permessi per l'Utente"
717
 
718
  # @ ure
719
+ #: ../includes/ure-user-edit.php:82
720
  msgid "Role:"
721
  msgstr "Ruolo: "
722
 
723
+ #: ../includes/ure-user-edit.php:104
724
  msgid "Add capabilities to this user:"
725
  msgstr "Aggiungi permessi a questo Utente: "
726
 
727
  # @ ure
728
+ #: ../includes/ure-options.php:59
729
  msgid "User Roles are restored from the backup data. "
730
  msgstr "I Ruoli Utente sono stati ripristinati dai dati di backup."
731
 
732
+ #: ../includes/ure-options.php:130
733
  msgid "Error: "
734
  msgstr "Errore:"
735
 
736
  # @ ure
737
+ #: ../includes/ure-options.php:130
738
+ #: ../includes/ure-options.php:146
739
  msgid "Role"
740
  msgstr "Ruolo"
741
 
742
+ #: ../includes/ure-options.php:130
743
  msgid "does not exist"
744
  msgstr "non esiste"
745
 
746
  # @ ure
747
+ #: ../includes/ure-options.php:146
748
  msgid "is updated successfully"
749
  msgstr "è stato aggiornato con successo"
750
 
751
+ #: ../includes/ure-options.php:154
752
  msgid "User"
753
  msgstr "Utente"
754
 
755
  # @ ure
756
+ #: ../includes/ure-options.php:154
757
  msgid "capabilities are updated successfully"
758
  msgstr "i permessi sono stati aggiornati"
759
 
760
  # @ ure
761
+ #: ../includes/ure-options.php:232
762
  msgid "About this Plugin:"
763
  msgstr "Info su questo plugin:"
764
 
765
  # @ ure
766
+ #: ../includes/ure-options.php:233
767
  msgid "Author's website"
768
  msgstr "Sito Web dell'Autore"
769
 
770
  # @ ure
771
+ #: ../includes/ure-options.php:234
772
  msgid "Plugin webpage"
773
  msgstr "Pagina Web del plugin"
774
 
775
  # @ ure
776
+ #: ../includes/ure-options.php:236
777
  msgid "FAQ"
778
  msgstr "FAQ"
779
 
780
  # @ ure
781
+ #: ../includes/ure-options.php:237
782
  msgid "Greetings"
783
  msgstr "Ringraziamenti"
784
 
785
  # @ ure
786
+ #: ../includes/ure-options.php:259
787
  msgid "Greetings:"
788
  msgstr "Ringraziamenti:"
789
 
790
  # @ ure
791
+ #: ../includes/ure-options.php:260
792
  msgid "It's me, the author"
793
  msgstr "Sono io, l'autore"
794
 
795
  # @ ure
796
+ #: ../includes/ure-options.php:261
797
  msgid "For the help with Belorussian translation"
798
  msgstr "Per l'aiuto con la traduzione in Bielorusso"
799
 
800
  # @ ure
801
+ #: ../includes/ure-options.php:262
802
  msgid "For the help with Brasilian translation"
803
  msgstr "Per l'aiuto con la traduzione in Brasiliana"
804
 
805
  # @ ure
806
+ #: ../includes/ure-options.php:263
807
+ msgid "For the help with Brasilian Portuguese translation"
808
+ msgstr "Per l'aiuto con la traduzione in Brasiliana"
809
+
810
+ # @ ure
811
+ #: ../includes/ure-options.php:264
812
  msgid "For the help with Chinese translation"
813
  msgstr "per l'aiuto con la traduzione in Cinese"
814
 
815
  # @ ure
816
+ #: ../includes/ure-options.php:265
817
  msgid "For the help with Dutch translation"
818
  msgstr "Per l'aiuto con la traduzione in Olandese"
819
 
820
  # @ ure
821
+ #: ../includes/ure-options.php:266
822
  msgid "For the help with Finnish translation"
823
  msgstr "per l'aiuto con la traduzione in Finnish"
824
 
825
  # @ ure
826
+ #: ../includes/ure-options.php:267
827
+ #: ../includes/ure-options.php:268
828
  msgid "For the help with French translation"
829
  msgstr "Per l'aiuto con la traduzione in Francese"
830
 
831
  # @ ure
832
+ #: ../includes/ure-options.php:269
833
  msgid "For the help with German translation"
834
  msgstr "Per l'aiuto con la traduzione in Tedesco"
835
 
836
  # @ ure
837
+ #: ../includes/ure-options.php:270
838
+ #: ../includes/ure-options.php:271
839
  msgid "For the help with Hebrew translation"
840
  msgstr "Per l'aiuto con la traduzione in Ebraico"
841
 
842
  # @ ure
843
+ #: ../includes/ure-options.php:272
844
  msgid "For the help with Hindi translation"
845
  msgstr ""
846
 
847
  # @ ure
848
+ #: ../includes/ure-options.php:273
849
  msgid "For the help with Hungarian translation"
850
  msgstr "per l'aiuto con la traduzione in Ungherese"
851
 
852
  # @ ure
853
  # @ pgc
854
+ #: ../includes/ure-options.php:274
855
+ #: ../includes/ure-options.php:275
856
  msgid "For the help with Italian translation"
857
  msgstr "per l'aiuto con la traduzione in Italiano"
858
 
859
  # @ ure
860
+ #: ../includes/ure-options.php:276
861
  msgid "For the help with Japanese translation"
862
  msgstr "per l'aiuto con la traduzione in Giapponese"
863
 
864
  # @ ure
865
  # @ pgc
866
+ #: ../includes/ure-options.php:277
867
  msgid "For the help with Lithuanian translation"
868
  msgstr "Per l'aiuto con la traduzione in Lituano"
869
 
870
  # @ ure
871
+ #: ../includes/ure-options.php:278
872
+ #: ../includes/ure-options.php:279
873
+ #: ../includes/ure-options.php:280
874
  msgid "For the help with Persian translation"
875
  msgstr "per l'aiuto con la traduzione in Persiano"
876
 
877
  # @ ure
878
+ #: ../includes/ure-options.php:281
879
+ #: ../includes/ure-options.php:282
880
  msgid "For the help with Polish translation"
881
  msgstr "per l'aiuto con la traduzione in Polacca"
882
 
883
  # @ ure
884
+ #: ../includes/ure-options.php:283
885
+ #: ../includes/ure-options.php:284
886
  msgid "For the help with Spanish translation"
887
  msgstr "per l'aiuto con la traduzione in Spagnolo"
888
 
889
  # @ ure
890
+ #: ../includes/ure-options.php:285
891
  msgid "For the updated Swedish translation"
892
  msgstr "Per l'aiuto con la traduzione in Svedese"
893
 
894
  # @ ure
895
+ #: ../includes/ure-options.php:286
896
  msgid "For the help with Swedish translation"
897
  msgstr "per l'aiuto con la traduzione in Swedish"
898
 
899
  # @ ure
900
+ #: ../includes/ure-options.php:287
901
  msgid "For the help with Turkish translation"
902
  msgstr "Per l'aiuto con la traduzione in turco"
903
 
904
  # @ ure
905
+ #: ../includes/ure-options.php:289
906
  msgid "For the code to hide administrator role"
907
  msgstr "Per il codice che nasconde il ruolo di amministratore"
908
 
909
+ #: ../includes/ure-options.php:290
910
  msgid "For the code enhancement suggestion"
911
  msgstr "Per consigli su come migliorare il codice"
912
 
913
  # @ ure
914
+ #: ../includes/ure-options.php:292
915
  msgid "Do you wish to see your name with link to your site here? You are welcome! Your help with translation and new ideas are very appreciated."
916
  msgstr "Vorresti vedere il tuo nome e il link al tuo sito qui? Sono apprezzati aiuti nelle traduzioni e nuove idee."
917
 
lang/ure-ja.mo CHANGED
Binary file
lang/ure-ja.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: User Role Editor\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2012-06-23 23:23+0700\n"
6
- "PO-Revision-Date: 2012-06-23 23:23+0700\n"
7
  "Last-Translator: Vladimir Garagulya <vladimir@shinephp.com>\n"
8
  "Language-Team: \n"
9
  "Language: \n"
@@ -32,715 +32,734 @@ msgstr "アップデートしてください!"
32
  msgid "User Role Editor requires PHP 5.0 or newer."
33
  msgstr "User Role Editor はPHP5.0以上の環境を必要とします。"
34
 
35
- #: user-role-editor.php:65
36
  msgid "Only"
37
  msgstr "のみ"
38
 
39
- #: user-role-editor.php:65
40
  msgid "is allowed to use"
41
  msgstr "使用が許可されています。"
42
 
43
- #: user-role-editor.php:71
44
- #: user-role-editor.php:246
45
  msgid "User Role Editor"
46
  msgstr "User Role Editor"
47
 
48
- #: user-role-editor.php:218
49
  msgid "Settings"
50
  msgstr "設定"
51
 
52
- #: user-role-editor.php:228
53
- #: ure-options.php:218
54
  msgid "Changelog"
55
  msgstr "変更ログ"
56
 
57
- #: user-role-editor.php:275
58
  msgid "Capabilities"
59
  msgstr "権限"
60
 
61
- #: ure-lib.php:45
62
  msgid "Error is occur. Please check the log file."
63
  msgstr "エラーが発生しました。ログファイルを確認してください。"
64
 
65
- #: ure-lib.php:155
66
  msgid "Database operation error. Check log file."
67
  msgstr "データベースエラーが発生しました。ログファイルを確認してください。"
68
 
69
- #: ure-lib.php:188
70
  msgid "No backup data. It is created automatically before the first role data update."
71
  msgstr "バックアップデータが存在しません。最初にロールデータが更新する前に自動生成されます。"
72
 
73
- #: ure-lib.php:226
74
  msgid "Backup record is created for the current role capabilities"
75
  msgstr "現在のロール権限によってバックアップレコードが作成されました。"
76
 
77
- #: ure-lib.php:345
78
  msgid "Error: Role name must contain latin characters and digits only!"
79
  msgstr "エラー:ロール名には半角英数字のみご入力ください!"
80
 
81
- #: ure-lib.php:352
82
  #, php-format
83
  msgid "Role %s exists already"
84
  msgstr "ロール「%s」は既に存在します。"
85
 
86
- #: ure-lib.php:365
87
  msgid "Error is encountered during new role create operation"
88
  msgstr "新規ロール作成の際にエラーが発生しました。"
89
 
90
- #: ure-lib.php:367
91
  #, php-format
92
  msgid "Role %s is created successfully"
93
  msgstr "%sが正常に作成されました。"
94
 
95
- #: ure-lib.php:451
96
  msgid "Error encountered during role delete operation"
97
  msgstr "ロール削除の際にエラーが発生しました。"
98
 
99
- #: ure-lib.php:453
100
  #, php-format
101
  msgid "Role %s is deleted successfully"
102
  msgstr "%sが正常に削除されました。"
103
 
104
- #: ure-lib.php:471
105
  msgid "Error encountered during default role change operation"
106
  msgstr "デフォルトロール変更の際にエラーが発生しました。"
107
 
108
- #: ure-lib.php:477
109
  #, php-format
110
  msgid "Default role for new users is set to %s successfully"
111
  msgstr "新規ユーザのデフォルトロールが%sに設定されました。"
112
 
113
- #: ure-lib.php:505
114
  msgid "Editor"
115
  msgstr "編集者"
116
 
117
- #: ure-lib.php:506
118
  msgid "Author"
119
  msgstr "投稿者"
120
 
121
- #: ure-lib.php:507
122
  msgid "Contributor"
123
  msgstr "寄稿者"
124
 
125
- #: ure-lib.php:508
126
  msgid "Subscriber"
127
  msgstr "購読者"
128
 
129
- #: ure-lib.php:510
130
  msgid "Switch themes"
131
  msgstr "テーマの切替"
132
 
133
- #: ure-lib.php:511
134
  msgid "Edit themes"
135
  msgstr "テーマの編集"
136
 
137
- #: ure-lib.php:512
138
  msgid "Activate plugins"
139
  msgstr "プラグインの有効化"
140
 
141
- #: ure-lib.php:513
142
  msgid "Edit plugins"
143
  msgstr "プラグインの編集"
144
 
145
- #: ure-lib.php:514
146
  msgid "Edit users"
147
  msgstr "ユーザの編集"
148
 
149
- #: ure-lib.php:515
150
  msgid "Edit files"
151
  msgstr "ファイルの編集"
152
 
153
- #: ure-lib.php:516
154
  msgid "Manage options"
155
  msgstr "オプション管理"
156
 
157
- #: ure-lib.php:517
158
  msgid "Moderate comments"
159
  msgstr "コメントの変更"
160
 
161
- #: ure-lib.php:518
162
  msgid "Manage categories"
163
  msgstr "カテゴリの管理"
164
 
165
- #: ure-lib.php:519
166
  msgid "Manage links"
167
  msgstr "リンクの管理"
168
 
169
- #: ure-lib.php:520
170
  msgid "Upload files"
171
  msgstr "ファイルのアップロード"
172
 
173
- #: ure-lib.php:521
174
  msgid "Import"
175
  msgstr "インポート"
176
 
177
- #: ure-lib.php:522
178
  msgid "Unfiltered html"
179
  msgstr "フィルタなしのHTML"
180
 
181
- #: ure-lib.php:523
182
  msgid "Edit posts"
183
  msgstr "投稿の編集"
184
 
185
- #: ure-lib.php:524
186
  msgid "Edit others posts"
187
  msgstr "他者投稿の編集"
188
 
189
- #: ure-lib.php:525
190
  msgid "Edit published posts"
191
  msgstr "公開済み投稿の編集"
192
 
193
- #: ure-lib.php:526
194
  msgid "Publish posts"
195
  msgstr "投稿の公開"
196
 
197
- #: ure-lib.php:527
198
  msgid "Edit pages"
199
  msgstr "ページの編集"
200
 
201
- #: ure-lib.php:528
202
  msgid "Read"
203
  msgstr "参照"
204
 
205
- #: ure-lib.php:529
206
  msgid "Level 10"
207
  msgstr "レベル10"
208
 
209
- #: ure-lib.php:530
210
  msgid "Level 9"
211
  msgstr "レベル9"
212
 
213
- #: ure-lib.php:531
214
  msgid "Level 8"
215
  msgstr "レベル8"
216
 
217
- #: ure-lib.php:532
218
  msgid "Level 7"
219
  msgstr "レベル7"
220
 
221
- #: ure-lib.php:533
222
  msgid "Level 6"
223
  msgstr "レベル6"
224
 
225
- #: ure-lib.php:534
226
  msgid "Level 5"
227
  msgstr "レベル5"
228
 
229
- #: ure-lib.php:535
230
  msgid "Level 4"
231
  msgstr "レベル4"
232
 
233
- #: ure-lib.php:536
234
  msgid "Level 3"
235
  msgstr "レベル3"
236
 
237
- #: ure-lib.php:537
238
  msgid "Level 2"
239
  msgstr "レベル2"
240
 
241
- #: ure-lib.php:538
242
  msgid "Level 1"
243
  msgstr "レベル1"
244
 
245
- #: ure-lib.php:539
246
  msgid "Level 0"
247
  msgstr "レベル0"
248
 
249
- #: ure-lib.php:540
250
  msgid "Edit others pages"
251
  msgstr "他者ページの編集"
252
 
253
- #: ure-lib.php:541
254
  msgid "Edit published pages"
255
  msgstr "公開済みページの編集"
256
 
257
- #: ure-lib.php:542
258
  msgid "Publish pages"
259
  msgstr "ページの公開"
260
 
261
- #: ure-lib.php:543
262
  msgid "Delete pages"
263
  msgstr "ページの削除"
264
 
265
- #: ure-lib.php:544
266
  msgid "Delete others pages"
267
  msgstr "他者ページの削除"
268
 
269
- #: ure-lib.php:545
270
  msgid "Delete published pages"
271
  msgstr "公開済みページの削除"
272
 
273
- #: ure-lib.php:546
274
  msgid "Delete posts"
275
  msgstr "投稿の削除"
276
 
277
- #: ure-lib.php:547
278
  msgid "Delete others posts"
279
  msgstr "他者投稿の削除"
280
 
281
- #: ure-lib.php:548
282
  msgid "Delete published posts"
283
  msgstr "公開済み投稿の削除"
284
 
285
- #: ure-lib.php:549
286
  msgid "Delete private posts"
287
  msgstr "プライベート投稿の削除"
288
 
289
- #: ure-lib.php:550
290
  msgid "Edit private posts"
291
  msgstr "プライベート投稿の編集"
292
 
293
- #: ure-lib.php:551
294
  msgid "Read private posts"
295
  msgstr "プライベート投稿の参照"
296
 
297
- #: ure-lib.php:552
298
  msgid "Delete private pages"
299
  msgstr "プライベートページの削除"
300
 
301
- #: ure-lib.php:553
302
  msgid "Edit private pages"
303
  msgstr "プライベートページの編集"
304
 
305
- #: ure-lib.php:554
306
  msgid "Read private pages"
307
  msgstr "プライベートページの参照"
308
 
309
- #: ure-lib.php:555
310
  msgid "Delete users"
311
  msgstr "ユーザの削除"
312
 
313
- #: ure-lib.php:556
314
  msgid "Create users"
315
  msgstr "ユーザ作成"
316
 
317
- #: ure-lib.php:557
318
  msgid "Unfiltered upload"
319
  msgstr "フィルタなしのアップロード"
320
 
321
- #: ure-lib.php:558
322
  msgid "Edit dashboard"
323
  msgstr "ダッシュボードの編集"
324
 
325
- #: ure-lib.php:559
326
  msgid "Update plugins"
327
  msgstr "プラグインのアップデート"
328
 
329
- #: ure-lib.php:560
330
  msgid "Delete plugins"
331
  msgstr "プラグインの削除"
332
 
333
- #: ure-lib.php:561
334
  msgid "Install plugins"
335
  msgstr "プラグインのインストール"
336
 
337
- #: ure-lib.php:562
338
  msgid "Update themes"
339
  msgstr "テーマのアップデート"
340
 
341
- #: ure-lib.php:563
342
  msgid "Install themes"
343
  msgstr "テーマのインストール"
344
 
345
- #: ure-lib.php:564
346
  msgid "Update core"
347
  msgstr "コアアップデート"
348
 
349
- #: ure-lib.php:565
350
  msgid "List users"
351
  msgstr "ユーザ一覧"
352
 
353
- #: ure-lib.php:566
354
  msgid "Remove users"
355
  msgstr "ユーザの削除"
356
 
357
- #: ure-lib.php:567
358
  msgid "Add users"
359
  msgstr "ユーザの追加"
360
 
361
- #: ure-lib.php:568
362
  msgid "Promote users"
363
  msgstr "ユーザの昇格"
364
 
365
- #: ure-lib.php:569
366
  msgid "Edit theme options"
367
  msgstr "テーマオプションの編集"
368
 
369
- #: ure-lib.php:570
370
  msgid "Delete themes"
371
  msgstr "テーマの削除"
372
 
373
- #: ure-lib.php:571
374
  msgid "Export"
375
  msgstr "エクスポート"
376
 
377
- #: ure-lib.php:655
378
  msgid "Error: Capability name must contain latin characters and digits only!"
379
  msgstr "エラー:権限名には半角英数字のみご入力ください!"
380
 
381
- #: ure-lib.php:667
382
  #, php-format
383
  msgid "Capability %s is added successfully"
384
  msgstr "権限「%s」が正常に追加されました。"
385
 
386
- #: ure-lib.php:669
387
  #, php-format
388
  msgid "Capability %s exists already"
389
  msgstr "権限「%s」は既に存在します。"
390
 
391
- #: ure-lib.php:818
392
  #, php-format
393
  msgid "Error! You do not have permission to delete this capability: %s!"
394
  msgstr "エラー!権限「%s」を削除する権限がありません。"
395
 
396
- #: ure-lib.php:840
397
  #, php-format
398
  msgid "Capability %s is removed successfully"
399
  msgstr "権限「%s」が正常に削除されました。"
400
 
401
- #: ure-lib.php:902
402
  msgid "Help"
403
  msgstr ""
404
 
405
- #: ure-role-edit.php:29
406
  msgid "None"
407
  msgstr ""
408
 
409
- #: ure-role-edit.php:93
410
  msgid " Name can not be empty!"
411
  msgstr "名前を入力してください!"
412
 
413
- #: ure-role-edit.php:97
414
  msgid " Name must contain latin characters and digits only!"
415
  msgstr "名前には半角英数字のみを入力してください!"
416
 
417
- #: ure-role-edit.php:102
418
- #: ure-role-edit.php:293
419
  msgid "Delete Role"
420
  msgstr "ロール削除"
421
 
422
- #: ure-role-edit.php:104
423
  msgid "Change Default Role"
424
  msgstr "デフォルトロールの変更"
425
 
426
- #: ure-role-edit.php:106
427
  msgid "Restore Roles from backup copy. Be careful, backup was created when you started URE 1st time. All changes you made after that will be lost"
428
  msgstr ""
429
 
430
- #: ure-role-edit.php:108
431
  msgid "Warning! Be careful - removing critical capability could crash some plugin or other custom code"
432
  msgstr "警告:重要な権限の削除はプラグインやその他のカスタムコードを破損させる可能性がありますので、ご注意ください!"
433
 
434
- #: ure-role-edit.php:110
435
  msgid "Please confirm to continue"
436
  msgstr "更新してもよろしいですか?"
437
 
438
- #: ure-role-edit.php:147
439
  #, php-format
440
  msgid "Role \"%s\" update: please confirm to continue"
441
  msgstr "\"%s\"の権限を更新してもよろしいですか?"
442
 
443
- #: ure-role-edit.php:155
444
  msgid "Select Role and change its capabilities list"
445
  msgstr "ロールを選択し、権限を変更してください。"
446
 
447
- #: ure-role-edit.php:157
448
  msgid "Select Role:"
449
  msgstr "ロール選択:"
450
 
451
- #: ure-role-edit.php:167
452
- #: ure-user-edit.php:91
453
  msgid "Show capabilities in human readable form"
454
  msgstr "各権限を概説で表示する"
455
 
456
- #: ure-role-edit.php:176
457
- #: ure-user-edit.php:100
458
  msgid "Show deprecated capabilities"
459
  msgstr ""
460
 
461
- #: ure-role-edit.php:180
462
  msgid "If checked, then apply action to ALL sites of this Network"
463
  msgstr "チェックされた場合は、ネットワーク上のすべてのサイトに適用してください。"
464
 
465
- #: ure-role-edit.php:190
466
  msgid "Apply to All Sites"
467
  msgstr "すべてのサイトに適用"
468
 
469
- #: ure-role-edit.php:251
470
- #: ure-user-edit.php:163
 
 
 
 
 
 
 
 
 
 
 
 
471
  msgid "Update"
472
  msgstr "保存"
473
 
474
- #: ure-role-edit.php:251
475
- #: ure-user-edit.php:163
476
  msgid "Save Changes"
477
  msgstr "変更を保存"
478
 
479
- #: ure-role-edit.php:252
480
- #: ure-user-edit.php:164
481
  msgid "Cancel"
482
  msgstr "キャンセル"
483
 
484
- #: ure-role-edit.php:252
485
- #: ure-user-edit.php:164
486
  msgid "Cancel not saved changes"
487
  msgstr "変更を保存せずにキャンセルする。"
488
 
489
- #: ure-role-edit.php:255
490
  msgid "Select All"
491
  msgstr ""
492
 
493
- #: ure-role-edit.php:255
494
  msgid "Select All Capabilities"
495
  msgstr ""
496
 
497
- #: ure-role-edit.php:256
498
  msgid "Unselect All"
499
  msgstr ""
500
 
501
- #: ure-role-edit.php:256
502
  msgid "Unselect All Capabilities"
503
  msgstr ""
504
 
505
- #: ure-role-edit.php:257
506
  msgid "Reverse"
507
  msgstr ""
508
 
509
- #: ure-role-edit.php:257
510
  msgid "Turn checked capabilities off and vise versa"
511
  msgstr ""
512
 
513
- #: ure-role-edit.php:260
514
  msgid "Reset"
515
  msgstr "リセット"
516
 
517
- #: ure-role-edit.php:260
518
  msgid "Restore Roles from backup copy"
519
  msgstr "バックアップからロールを読み込む"
520
 
521
- #: ure-role-edit.php:270
522
  msgid "Add New Role"
523
  msgstr "新しいロールの追加"
524
 
525
- #: ure-role-edit.php:272
526
  msgid "Name: "
527
  msgstr ""
528
 
529
- #: ure-role-edit.php:276
530
  msgid "Make copy of: "
531
  msgstr ""
532
 
533
- #: ure-role-edit.php:279
534
- #: ure-role-edit.php:308
535
  msgid "Add"
536
  msgstr "追加"
537
 
538
- #: ure-role-edit.php:279
539
  msgid "Add New User Role"
540
  msgstr "新しいユーザロールの追加"
541
 
542
- #: ure-role-edit.php:283
543
  msgid "Default Role for New User"
544
  msgstr "新規ユーザのデフォルトロール"
545
 
546
- #: ure-role-edit.php:288
547
  msgid "Change"
548
  msgstr "変更"
549
 
550
- #: ure-role-edit.php:288
551
  msgid "Set as Default User Role"
552
  msgstr "デフォルトロールとして設定"
553
 
554
- #: ure-role-edit.php:298
555
  msgid "Delete"
556
  msgstr "削除"
557
 
558
- #: ure-role-edit.php:298
559
  msgid "Delete User Role"
560
  msgstr "ロール削除"
561
 
562
- #: ure-role-edit.php:303
563
- #: ure-role-edit.php:308
564
  msgid "Add New Capability"
565
  msgstr "新しい権限の追加"
566
 
567
- #: ure-role-edit.php:313
568
  msgid "Remove Capability"
569
  msgstr "権限の削除"
570
 
571
- #: ure-role-edit.php:318
572
  msgid "Remove"
573
  msgstr "削除"
574
 
575
- #: ure-role-edit.php:318
576
  msgid "Remove User Capability"
577
  msgstr "ユーザ権限の削除"
578
 
579
- #: ure-user-edit.php:67
580
  #, php-format
581
  msgid "User \"%s\" update: please confirm to continue"
582
  msgstr "ユーザ「%s」の更新:続行してもよろしいでしょうか?"
583
 
584
- #: ure-user-edit.php:79
585
  msgid "Change capabilities for user"
586
  msgstr "ユーザ権限を変更"
587
 
588
- #: ure-user-edit.php:82
589
  msgid "Role:"
590
  msgstr "ロール:"
591
 
592
- #: ure-user-edit.php:104
593
  msgid "Add capabilities to this user:"
594
  msgstr "このユーザに権限を追加:"
595
 
596
- #: ure-options.php:59
597
  msgid "User Roles are restored from the backup data. "
598
  msgstr ""
599
 
600
- #: ure-options.php:125
601
  msgid "Error: "
602
  msgstr ""
603
 
604
- #: ure-options.php:125
605
- #: ure-options.php:143
606
  msgid "Role"
607
  msgstr "ロール"
608
 
609
- #: ure-options.php:125
610
  msgid "does not exist"
611
  msgstr ""
612
 
613
- #: ure-options.php:143
614
  msgid "is updated successfully"
615
  msgstr "正常に更新されました。"
616
 
617
- #: ure-options.php:152
618
  msgid "User"
619
  msgstr "ユーザ"
620
 
621
- #: ure-options.php:152
622
  msgid "capabilities are updated successfully"
623
  msgstr "権限は正常に更新されました。"
624
 
625
- #: ure-options.php:215
626
  msgid "About this Plugin:"
627
  msgstr "本プラグインについて:"
628
 
629
- #: ure-options.php:216
630
  msgid "Author's website"
631
  msgstr "作成者サイト"
632
 
633
- #: ure-options.php:217
634
  msgid "Plugin webpage"
635
  msgstr "プラグインサイト"
636
 
637
- #: ure-options.php:219
638
  msgid "FAQ"
639
  msgstr "FAQ"
640
 
641
- #: ure-options.php:220
642
  msgid "Greetings"
643
  msgstr ""
644
 
645
- #: ure-options.php:242
646
  msgid "Greetings:"
647
  msgstr "ごあいさつ:"
648
 
649
- #: ure-options.php:243
650
  msgid "It's me, the author"
651
  msgstr "作成者"
652
 
653
- #: ure-options.php:244
654
  msgid "For the help with Belorussian translation"
655
  msgstr "ベラルーシ語翻訳"
656
 
657
- #: ure-options.php:245
658
  msgid "For the help with Brasilian translation"
659
  msgstr "ポルトガル語翻訳"
660
 
661
- #: ure-options.php:246
 
 
 
 
 
662
  msgid "For the help with Chinese translation"
663
  msgstr "中国語翻訳"
664
 
665
- #: ure-options.php:247
666
  msgid "For the help with Dutch translation"
667
  msgstr "オランダ語翻訳"
668
 
669
- #: ure-options.php:248
670
  msgid "For the help with Finnish translation"
671
  msgstr "フィンランド語翻訳"
672
 
673
- #: ure-options.php:249
674
- #: ure-options.php:250
675
  msgid "For the help with French translation"
676
  msgstr "フランス語翻訳"
677
 
678
- #: ure-options.php:251
679
  msgid "For the help with German translation"
680
  msgstr "ドイツ語翻訳"
681
 
682
- #: ure-options.php:252
683
- #: ure-options.php:253
684
  msgid "For the help with Hebrew translation"
685
  msgstr ""
686
 
687
- #: ure-options.php:254
688
  msgid "For the help with Hindi translation"
689
  msgstr ""
690
 
691
- #: ure-options.php:255
692
  msgid "For the help with Hungarian translation"
693
  msgstr "ハンガリー語翻訳"
694
 
695
- #: ure-options.php:256
696
- #: ure-options.php:257
697
  msgid "For the help with Italian translation"
698
  msgstr "イタリア語翻訳"
699
 
700
- #: ure-options.php:258
701
  msgid "For the help with Japanese translation"
702
  msgstr "日本語翻訳"
703
 
704
- #: ure-options.php:259
705
  msgid "For the help with Lithuanian translation"
706
  msgstr ""
707
 
708
- #: ure-options.php:260
709
- #: ure-options.php:261
 
710
  msgid "For the help with Persian translation"
711
  msgstr "ペルシャ語翻訳"
712
 
713
- #: ure-options.php:262
 
714
  msgid "For the help with Polish translation"
715
  msgstr "ポーランド語翻訳"
716
 
717
- #: ure-options.php:263
718
- #: ure-options.php:264
719
  msgid "For the help with Spanish translation"
720
  msgstr "スペイン語翻訳"
721
 
722
- #: ure-options.php:265
723
  #, fuzzy
724
  msgid "For the updated Swedish translation"
725
  msgstr "スウェーデン語翻訳"
726
 
727
- #: ure-options.php:266
728
  msgid "For the help with Swedish translation"
729
  msgstr "スウェーデン語翻訳"
730
 
731
- #: ure-options.php:267
732
  msgid "For the help with Turkish translation"
733
  msgstr "トルコ語翻訳"
734
 
735
- #: ure-options.php:269
736
  msgid "For the code to hide administrator role"
737
  msgstr "管理者ロールを非表示にする方法"
738
 
739
- #: ure-options.php:270
740
  msgid "For the code enhancement suggestion"
741
  msgstr "コード向上提案"
742
 
743
- #: ure-options.php:272
744
  msgid "Do you wish to see your name with link to your site here? You are welcome! Your help with translation and new ideas are very appreciated."
745
  msgstr "<hr />あなたの名前を表示し、サイトへのリンクを張りますか?翻訳のお手伝いおよび新しいアイディアのご提供に感謝致します。"
746
 
2
  msgstr ""
3
  "Project-Id-Version: User Role Editor\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-09-01 08:48+0700\n"
6
+ "PO-Revision-Date: 2012-09-01 08:48+0700\n"
7
  "Last-Translator: Vladimir Garagulya <vladimir@shinephp.com>\n"
8
  "Language-Team: \n"
9
  "Language: \n"
32
  msgid "User Role Editor requires PHP 5.0 or newer."
33
  msgstr "User Role Editor はPHP5.0以上の環境を必要とします。"
34
 
35
+ #: user-role-editor.php:76
36
  msgid "Only"
37
  msgstr "のみ"
38
 
39
+ #: user-role-editor.php:76
40
  msgid "is allowed to use"
41
  msgstr "使用が許可されています。"
42
 
43
+ #: user-role-editor.php:82
44
+ #: user-role-editor.php:251
45
  msgid "User Role Editor"
46
  msgstr "User Role Editor"
47
 
48
+ #: user-role-editor.php:223
49
  msgid "Settings"
50
  msgstr "設定"
51
 
52
+ #: user-role-editor.php:233
53
+ #: includes/ure-options.php:235
54
  msgid "Changelog"
55
  msgstr "変更ログ"
56
 
57
+ #: user-role-editor.php:280
58
  msgid "Capabilities"
59
  msgstr "権限"
60
 
61
+ #: includes/ure-lib.php:34
62
  msgid "Error is occur. Please check the log file."
63
  msgstr "エラーが発生しました。ログファイルを確認してください。"
64
 
65
+ #: includes/ure-lib.php:144
66
  msgid "Database operation error. Check log file."
67
  msgstr "データベースエラーが発生しました。ログファイルを確認してください。"
68
 
69
+ #: includes/ure-lib.php:177
70
  msgid "No backup data. It is created automatically before the first role data update."
71
  msgstr "バックアップデータが存在しません。最初にロールデータが更新する前に自動生成されます。"
72
 
73
+ #: includes/ure-lib.php:215
74
  msgid "Backup record is created for the current role capabilities"
75
  msgstr "現在のロール権限によってバックアップレコードが作成されました。"
76
 
77
+ #: includes/ure-lib.php:329
78
  msgid "Error: Role name must contain latin characters and digits only!"
79
  msgstr "エラー:ロール名には半角英数字のみご入力ください!"
80
 
81
+ #: includes/ure-lib.php:336
82
  #, php-format
83
  msgid "Role %s exists already"
84
  msgstr "ロール「%s」は既に存在します。"
85
 
86
+ #: includes/ure-lib.php:349
87
  msgid "Error is encountered during new role create operation"
88
  msgstr "新規ロール作成の際にエラーが発生しました。"
89
 
90
+ #: includes/ure-lib.php:351
91
  #, php-format
92
  msgid "Role %s is created successfully"
93
  msgstr "%sが正常に作成されました。"
94
 
95
+ #: includes/ure-lib.php:435
96
  msgid "Error encountered during role delete operation"
97
  msgstr "ロール削除の際にエラーが発生しました。"
98
 
99
+ #: includes/ure-lib.php:437
100
  #, php-format
101
  msgid "Role %s is deleted successfully"
102
  msgstr "%sが正常に削除されました。"
103
 
104
+ #: includes/ure-lib.php:455
105
  msgid "Error encountered during default role change operation"
106
  msgstr "デフォルトロール変更の際にエラーが発生しました。"
107
 
108
+ #: includes/ure-lib.php:461
109
  #, php-format
110
  msgid "Default role for new users is set to %s successfully"
111
  msgstr "新規ユーザのデフォルトロールが%sに設定されました。"
112
 
113
+ #: includes/ure-lib.php:489
114
  msgid "Editor"
115
  msgstr "編集者"
116
 
117
+ #: includes/ure-lib.php:490
118
  msgid "Author"
119
  msgstr "投稿者"
120
 
121
+ #: includes/ure-lib.php:491
122
  msgid "Contributor"
123
  msgstr "寄稿者"
124
 
125
+ #: includes/ure-lib.php:492
126
  msgid "Subscriber"
127
  msgstr "購読者"
128
 
129
+ #: includes/ure-lib.php:494
130
  msgid "Switch themes"
131
  msgstr "テーマの切替"
132
 
133
+ #: includes/ure-lib.php:495
134
  msgid "Edit themes"
135
  msgstr "テーマの編集"
136
 
137
+ #: includes/ure-lib.php:496
138
  msgid "Activate plugins"
139
  msgstr "プラグインの有効化"
140
 
141
+ #: includes/ure-lib.php:497
142
  msgid "Edit plugins"
143
  msgstr "プラグインの編集"
144
 
145
+ #: includes/ure-lib.php:498
146
  msgid "Edit users"
147
  msgstr "ユーザの編集"
148
 
149
+ #: includes/ure-lib.php:499
150
  msgid "Edit files"
151
  msgstr "ファイルの編集"
152
 
153
+ #: includes/ure-lib.php:500
154
  msgid "Manage options"
155
  msgstr "オプション管理"
156
 
157
+ #: includes/ure-lib.php:501
158
  msgid "Moderate comments"
159
  msgstr "コメントの変更"
160
 
161
+ #: includes/ure-lib.php:502
162
  msgid "Manage categories"
163
  msgstr "カテゴリの管理"
164
 
165
+ #: includes/ure-lib.php:503
166
  msgid "Manage links"
167
  msgstr "リンクの管理"
168
 
169
+ #: includes/ure-lib.php:504
170
  msgid "Upload files"
171
  msgstr "ファイルのアップロード"
172
 
173
+ #: includes/ure-lib.php:505
174
  msgid "Import"
175
  msgstr "インポート"
176
 
177
+ #: includes/ure-lib.php:506
178
  msgid "Unfiltered html"
179
  msgstr "フィルタなしのHTML"
180
 
181
+ #: includes/ure-lib.php:507
182
  msgid "Edit posts"
183
  msgstr "投稿の編集"
184
 
185
+ #: includes/ure-lib.php:508
186
  msgid "Edit others posts"
187
  msgstr "他者投稿の編集"
188
 
189
+ #: includes/ure-lib.php:509
190
  msgid "Edit published posts"
191
  msgstr "公開済み投稿の編集"
192
 
193
+ #: includes/ure-lib.php:510
194
  msgid "Publish posts"
195
  msgstr "投稿の公開"
196
 
197
+ #: includes/ure-lib.php:511
198
  msgid "Edit pages"
199
  msgstr "ページの編集"
200
 
201
+ #: includes/ure-lib.php:512
202
  msgid "Read"
203
  msgstr "参照"
204
 
205
+ #: includes/ure-lib.php:513
206
  msgid "Level 10"
207
  msgstr "レベル10"
208
 
209
+ #: includes/ure-lib.php:514
210
  msgid "Level 9"
211
  msgstr "レベル9"
212
 
213
+ #: includes/ure-lib.php:515
214
  msgid "Level 8"
215
  msgstr "レベル8"
216
 
217
+ #: includes/ure-lib.php:516
218
  msgid "Level 7"
219
  msgstr "レベル7"
220
 
221
+ #: includes/ure-lib.php:517
222
  msgid "Level 6"
223
  msgstr "レベル6"
224
 
225
+ #: includes/ure-lib.php:518
226
  msgid "Level 5"
227
  msgstr "レベル5"
228
 
229
+ #: includes/ure-lib.php:519
230
  msgid "Level 4"
231
  msgstr "レベル4"
232
 
233
+ #: includes/ure-lib.php:520
234
  msgid "Level 3"
235
  msgstr "レベル3"
236
 
237
+ #: includes/ure-lib.php:521
238
  msgid "Level 2"
239
  msgstr "レベル2"
240
 
241
+ #: includes/ure-lib.php:522
242
  msgid "Level 1"
243
  msgstr "レベル1"
244
 
245
+ #: includes/ure-lib.php:523
246
  msgid "Level 0"
247
  msgstr "レベル0"
248
 
249
+ #: includes/ure-lib.php:524
250
  msgid "Edit others pages"
251
  msgstr "他者ページの編集"
252
 
253
+ #: includes/ure-lib.php:525
254
  msgid "Edit published pages"
255
  msgstr "公開済みページの編集"
256
 
257
+ #: includes/ure-lib.php:526
258
  msgid "Publish pages"
259
  msgstr "ページの公開"
260
 
261
+ #: includes/ure-lib.php:527
262
  msgid "Delete pages"
263
  msgstr "ページの削除"
264
 
265
+ #: includes/ure-lib.php:528
266
  msgid "Delete others pages"
267
  msgstr "他者ページの削除"
268
 
269
+ #: includes/ure-lib.php:529
270
  msgid "Delete published pages"
271
  msgstr "公開済みページの削除"
272
 
273
+ #: includes/ure-lib.php:530
274
  msgid "Delete posts"
275
  msgstr "投稿の削除"
276
 
277
+ #: includes/ure-lib.php:531
278
  msgid "Delete others posts"
279
  msgstr "他者投稿の削除"
280
 
281
+ #: includes/ure-lib.php:532
282
  msgid "Delete published posts"
283
  msgstr "公開済み投稿の削除"
284
 
285
+ #: includes/ure-lib.php:533
286
  msgid "Delete private posts"
287
  msgstr "プライベート投稿の削除"
288
 
289
+ #: includes/ure-lib.php:534
290
  msgid "Edit private posts"
291
  msgstr "プライベート投稿の編集"
292
 
293
+ #: includes/ure-lib.php:535
294
  msgid "Read private posts"
295
  msgstr "プライベート投稿の参照"
296
 
297
+ #: includes/ure-lib.php:536
298
  msgid "Delete private pages"
299
  msgstr "プライベートページの削除"
300
 
301
+ #: includes/ure-lib.php:537
302
  msgid "Edit private pages"
303
  msgstr "プライベートページの編集"
304
 
305
+ #: includes/ure-lib.php:538
306
  msgid "Read private pages"
307
  msgstr "プライベートページの参照"
308
 
309
+ #: includes/ure-lib.php:539
310
  msgid "Delete users"
311
  msgstr "ユーザの削除"
312
 
313
+ #: includes/ure-lib.php:540
314
  msgid "Create users"
315
  msgstr "ユーザ作成"
316
 
317
+ #: includes/ure-lib.php:541
318
  msgid "Unfiltered upload"
319
  msgstr "フィルタなしのアップロード"
320
 
321
+ #: includes/ure-lib.php:542
322
  msgid "Edit dashboard"
323
  msgstr "ダッシュボードの編集"
324
 
325
+ #: includes/ure-lib.php:543
326
  msgid "Update plugins"
327
  msgstr "プラグインのアップデート"
328
 
329
+ #: includes/ure-lib.php:544
330
  msgid "Delete plugins"
331
  msgstr "プラグインの削除"
332
 
333
+ #: includes/ure-lib.php:545
334
  msgid "Install plugins"
335
  msgstr "プラグインのインストール"
336
 
337
+ #: includes/ure-lib.php:546
338
  msgid "Update themes"
339
  msgstr "テーマのアップデート"
340
 
341
+ #: includes/ure-lib.php:547
342
  msgid "Install themes"
343
  msgstr "テーマのインストール"
344
 
345
+ #: includes/ure-lib.php:548
346
  msgid "Update core"
347
  msgstr "コアアップデート"
348
 
349
+ #: includes/ure-lib.php:549
350
  msgid "List users"
351
  msgstr "ユーザ一覧"
352
 
353
+ #: includes/ure-lib.php:550
354
  msgid "Remove users"
355
  msgstr "ユーザの削除"
356
 
357
+ #: includes/ure-lib.php:551
358
  msgid "Add users"
359
  msgstr "ユーザの追加"
360
 
361
+ #: includes/ure-lib.php:552
362
  msgid "Promote users"
363
  msgstr "ユーザの昇格"
364
 
365
+ #: includes/ure-lib.php:553
366
  msgid "Edit theme options"
367
  msgstr "テーマオプションの編集"
368
 
369
+ #: includes/ure-lib.php:554
370
  msgid "Delete themes"
371
  msgstr "テーマの削除"
372
 
373
+ #: includes/ure-lib.php:555
374
  msgid "Export"
375
  msgstr "エクスポート"
376
 
377
+ #: includes/ure-lib.php:639
378
  msgid "Error: Capability name must contain latin characters and digits only!"
379
  msgstr "エラー:権限名には半角英数字のみご入力ください!"
380
 
381
+ #: includes/ure-lib.php:651
382
  #, php-format
383
  msgid "Capability %s is added successfully"
384
  msgstr "権限「%s」が正常に追加されました。"
385
 
386
+ #: includes/ure-lib.php:653
387
  #, php-format
388
  msgid "Capability %s exists already"
389
  msgstr "権限「%s」は既に存在します。"
390
 
391
+ #: includes/ure-lib.php:802
392
  #, php-format
393
  msgid "Error! You do not have permission to delete this capability: %s!"
394
  msgstr "エラー!権限「%s」を削除する権限がありません。"
395
 
396
+ #: includes/ure-lib.php:824
397
  #, php-format
398
  msgid "Capability %s is removed successfully"
399
  msgstr "権限「%s」が正常に削除されました。"
400
 
401
+ #: includes/ure-lib.php:889
402
  msgid "Help"
403
  msgstr ""
404
 
405
+ #: includes/ure-role-edit.php:29
406
  msgid "None"
407
  msgstr ""
408
 
409
+ #: includes/ure-role-edit.php:101
410
  msgid " Name can not be empty!"
411
  msgstr "名前を入力してください!"
412
 
413
+ #: includes/ure-role-edit.php:105
414
  msgid " Name must contain latin characters and digits only!"
415
  msgstr "名前には半角英数字のみを入力してください!"
416
 
417
+ #: includes/ure-role-edit.php:110
418
+ #: includes/ure-role-edit.php:367
419
  msgid "Delete Role"
420
  msgstr "ロール削除"
421
 
422
+ #: includes/ure-role-edit.php:112
423
  msgid "Change Default Role"
424
  msgstr "デフォルトロールの変更"
425
 
426
+ #: includes/ure-role-edit.php:114
427
  msgid "Restore Roles from backup copy. Be careful, backup was created when you started URE 1st time. All changes you made after that will be lost"
428
  msgstr ""
429
 
430
+ #: includes/ure-role-edit.php:116
431
  msgid "Warning! Be careful - removing critical capability could crash some plugin or other custom code"
432
  msgstr "警告:重要な権限の削除はプラグインやその他のカスタムコードを破損させる可能性がありますので、ご注意ください!"
433
 
434
+ #: includes/ure-role-edit.php:118
435
  msgid "Please confirm to continue"
436
  msgstr "更新してもよろしいですか?"
437
 
438
+ #: includes/ure-role-edit.php:155
439
  #, php-format
440
  msgid "Role \"%s\" update: please confirm to continue"
441
  msgstr "\"%s\"の権限を更新してもよろしいですか?"
442
 
443
+ #: includes/ure-role-edit.php:163
444
  msgid "Select Role and change its capabilities list"
445
  msgstr "ロールを選択し、権限を変更してください。"
446
 
447
+ #: includes/ure-role-edit.php:165
448
  msgid "Select Role:"
449
  msgstr "ロール選択:"
450
 
451
+ #: includes/ure-role-edit.php:175
452
+ #: includes/ure-user-edit.php:91
453
  msgid "Show capabilities in human readable form"
454
  msgstr "各権限を概説で表示する"
455
 
456
+ #: includes/ure-role-edit.php:184
457
+ #: includes/ure-user-edit.php:100
458
  msgid "Show deprecated capabilities"
459
  msgstr ""
460
 
461
+ #: includes/ure-role-edit.php:188
462
  msgid "If checked, then apply action to ALL sites of this Network"
463
  msgstr "チェックされた場合は、ネットワーク上のすべてのサイトに適用してください。"
464
 
465
+ #: includes/ure-role-edit.php:198
466
  msgid "Apply to All Sites"
467
  msgstr "すべてのサイトに適用"
468
 
469
+ #: includes/ure-role-edit.php:205
470
+ #: includes/ure-user-edit.php:105
471
+ #, fuzzy
472
+ msgid "Core capabilities:"
473
+ msgstr "権限"
474
+
475
+ #: includes/ure-role-edit.php:268
476
+ #: includes/ure-user-edit.php:167
477
+ #, fuzzy
478
+ msgid "Custom capabilities:"
479
+ msgstr "権限"
480
+
481
+ #: includes/ure-role-edit.php:319
482
+ #: includes/ure-user-edit.php:222
483
  msgid "Update"
484
  msgstr "保存"
485
 
486
+ #: includes/ure-role-edit.php:319
487
+ #: includes/ure-user-edit.php:222
488
  msgid "Save Changes"
489
  msgstr "変更を保存"
490
 
491
+ #: includes/ure-role-edit.php:320
492
+ #: includes/ure-user-edit.php:223
493
  msgid "Cancel"
494
  msgstr "キャンセル"
495
 
496
+ #: includes/ure-role-edit.php:320
497
+ #: includes/ure-user-edit.php:223
498
  msgid "Cancel not saved changes"
499
  msgstr "変更を保存せずにキャンセルする。"
500
 
501
+ #: includes/ure-role-edit.php:323
502
  msgid "Select All"
503
  msgstr ""
504
 
505
+ #: includes/ure-role-edit.php:323
506
  msgid "Select All Capabilities"
507
  msgstr ""
508
 
509
+ #: includes/ure-role-edit.php:327
510
  msgid "Unselect All"
511
  msgstr ""
512
 
513
+ #: includes/ure-role-edit.php:327
514
  msgid "Unselect All Capabilities"
515
  msgstr ""
516
 
517
+ #: includes/ure-role-edit.php:328
518
  msgid "Reverse"
519
  msgstr ""
520
 
521
+ #: includes/ure-role-edit.php:328
522
  msgid "Turn checked capabilities off and vise versa"
523
  msgstr ""
524
 
525
+ #: includes/ure-role-edit.php:334
526
  msgid "Reset"
527
  msgstr "リセット"
528
 
529
+ #: includes/ure-role-edit.php:334
530
  msgid "Restore Roles from backup copy"
531
  msgstr "バックアップからロールを読み込む"
532
 
533
+ #: includes/ure-role-edit.php:344
534
  msgid "Add New Role"
535
  msgstr "新しいロールの追加"
536
 
537
+ #: includes/ure-role-edit.php:346
538
  msgid "Name: "
539
  msgstr ""
540
 
541
+ #: includes/ure-role-edit.php:350
542
  msgid "Make copy of: "
543
  msgstr ""
544
 
545
+ #: includes/ure-role-edit.php:353
546
+ #: includes/ure-role-edit.php:382
547
  msgid "Add"
548
  msgstr "追加"
549
 
550
+ #: includes/ure-role-edit.php:353
551
  msgid "Add New User Role"
552
  msgstr "新しいユーザロールの追加"
553
 
554
+ #: includes/ure-role-edit.php:357
555
  msgid "Default Role for New User"
556
  msgstr "新規ユーザのデフォルトロール"
557
 
558
+ #: includes/ure-role-edit.php:362
559
  msgid "Change"
560
  msgstr "変更"
561
 
562
+ #: includes/ure-role-edit.php:362
563
  msgid "Set as Default User Role"
564
  msgstr "デフォルトロールとして設定"
565
 
566
+ #: includes/ure-role-edit.php:372
567
  msgid "Delete"
568
  msgstr "削除"
569
 
570
+ #: includes/ure-role-edit.php:372
571
  msgid "Delete User Role"
572
  msgstr "ロール削除"
573
 
574
+ #: includes/ure-role-edit.php:377
575
+ #: includes/ure-role-edit.php:382
576
  msgid "Add New Capability"
577
  msgstr "新しい権限の追加"
578
 
579
+ #: includes/ure-role-edit.php:387
580
  msgid "Remove Capability"
581
  msgstr "権限の削除"
582
 
583
+ #: includes/ure-role-edit.php:392
584
  msgid "Remove"
585
  msgstr "削除"
586
 
587
+ #: includes/ure-role-edit.php:392
588
  msgid "Remove User Capability"
589
  msgstr "ユーザ権限の削除"
590
 
591
+ #: includes/ure-user-edit.php:67
592
  #, php-format
593
  msgid "User \"%s\" update: please confirm to continue"
594
  msgstr "ユーザ「%s」の更新:続行してもよろしいでしょうか?"
595
 
596
+ #: includes/ure-user-edit.php:79
597
  msgid "Change capabilities for user"
598
  msgstr "ユーザ権限を変更"
599
 
600
+ #: includes/ure-user-edit.php:82
601
  msgid "Role:"
602
  msgstr "ロール:"
603
 
604
+ #: includes/ure-user-edit.php:104
605
  msgid "Add capabilities to this user:"
606
  msgstr "このユーザに権限を追加:"
607
 
608
+ #: includes/ure-options.php:59
609
  msgid "User Roles are restored from the backup data. "
610
  msgstr ""
611
 
612
+ #: includes/ure-options.php:130
613
  msgid "Error: "
614
  msgstr ""
615
 
616
+ #: includes/ure-options.php:130
617
+ #: includes/ure-options.php:146
618
  msgid "Role"
619
  msgstr "ロール"
620
 
621
+ #: includes/ure-options.php:130
622
  msgid "does not exist"
623
  msgstr ""
624
 
625
+ #: includes/ure-options.php:146
626
  msgid "is updated successfully"
627
  msgstr "正常に更新されました。"
628
 
629
+ #: includes/ure-options.php:154
630
  msgid "User"
631
  msgstr "ユーザ"
632
 
633
+ #: includes/ure-options.php:154
634
  msgid "capabilities are updated successfully"
635
  msgstr "権限は正常に更新されました。"
636
 
637
+ #: includes/ure-options.php:232
638
  msgid "About this Plugin:"
639
  msgstr "本プラグインについて:"
640
 
641
+ #: includes/ure-options.php:233
642
  msgid "Author's website"
643
  msgstr "作成者サイト"
644
 
645
+ #: includes/ure-options.php:234
646
  msgid "Plugin webpage"
647
  msgstr "プラグインサイト"
648
 
649
+ #: includes/ure-options.php:236
650
  msgid "FAQ"
651
  msgstr "FAQ"
652
 
653
+ #: includes/ure-options.php:237
654
  msgid "Greetings"
655
  msgstr ""
656
 
657
+ #: includes/ure-options.php:259
658
  msgid "Greetings:"
659
  msgstr "ごあいさつ:"
660
 
661
+ #: includes/ure-options.php:260
662
  msgid "It's me, the author"
663
  msgstr "作成者"
664
 
665
+ #: includes/ure-options.php:261
666
  msgid "For the help with Belorussian translation"
667
  msgstr "ベラルーシ語翻訳"
668
 
669
+ #: includes/ure-options.php:262
670
  msgid "For the help with Brasilian translation"
671
  msgstr "ポルトガル語翻訳"
672
 
673
+ #: includes/ure-options.php:263
674
+ #, fuzzy
675
+ msgid "For the help with Brasilian Portuguese translation"
676
+ msgstr "ポルトガル語翻訳"
677
+
678
+ #: includes/ure-options.php:264
679
  msgid "For the help with Chinese translation"
680
  msgstr "中国語翻訳"
681
 
682
+ #: includes/ure-options.php:265
683
  msgid "For the help with Dutch translation"
684
  msgstr "オランダ語翻訳"
685
 
686
+ #: includes/ure-options.php:266
687
  msgid "For the help with Finnish translation"
688
  msgstr "フィンランド語翻訳"
689
 
690
+ #: includes/ure-options.php:267
691
+ #: includes/ure-options.php:268
692
  msgid "For the help with French translation"
693
  msgstr "フランス語翻訳"
694
 
695
+ #: includes/ure-options.php:269
696
  msgid "For the help with German translation"
697
  msgstr "ドイツ語翻訳"
698
 
699
+ #: includes/ure-options.php:270
700
+ #: includes/ure-options.php:271
701
  msgid "For the help with Hebrew translation"
702
  msgstr ""
703
 
704
+ #: includes/ure-options.php:272
705
  msgid "For the help with Hindi translation"
706
  msgstr ""
707
 
708
+ #: includes/ure-options.php:273
709
  msgid "For the help with Hungarian translation"
710
  msgstr "ハンガリー語翻訳"
711
 
712
+ #: includes/ure-options.php:274
713
+ #: includes/ure-options.php:275
714
  msgid "For the help with Italian translation"
715
  msgstr "イタリア語翻訳"
716
 
717
+ #: includes/ure-options.php:276
718
  msgid "For the help with Japanese translation"
719
  msgstr "日本語翻訳"
720
 
721
+ #: includes/ure-options.php:277
722
  msgid "For the help with Lithuanian translation"
723
  msgstr ""
724
 
725
+ #: includes/ure-options.php:278
726
+ #: includes/ure-options.php:279
727
+ #: includes/ure-options.php:280
728
  msgid "For the help with Persian translation"
729
  msgstr "ペルシャ語翻訳"
730
 
731
+ #: includes/ure-options.php:281
732
+ #: includes/ure-options.php:282
733
  msgid "For the help with Polish translation"
734
  msgstr "ポーランド語翻訳"
735
 
736
+ #: includes/ure-options.php:283
737
+ #: includes/ure-options.php:284
738
  msgid "For the help with Spanish translation"
739
  msgstr "スペイン語翻訳"
740
 
741
+ #: includes/ure-options.php:285
742
  #, fuzzy
743
  msgid "For the updated Swedish translation"
744
  msgstr "スウェーデン語翻訳"
745
 
746
+ #: includes/ure-options.php:286
747
  msgid "For the help with Swedish translation"
748
  msgstr "スウェーデン語翻訳"
749
 
750
+ #: includes/ure-options.php:287
751
  msgid "For the help with Turkish translation"
752
  msgstr "トルコ語翻訳"
753
 
754
+ #: includes/ure-options.php:289
755
  msgid "For the code to hide administrator role"
756
  msgstr "管理者ロールを非表示にする方法"
757
 
758
+ #: includes/ure-options.php:290
759
  msgid "For the code enhancement suggestion"
760
  msgstr "コード向上提案"
761
 
762
+ #: includes/ure-options.php:292
763
  msgid "Do you wish to see your name with link to your site here? You are welcome! Your help with translation and new ideas are very appreciated."
764
  msgstr "<hr />あなたの名前を表示し、サイトへのリンクを張りますか?翻訳のお手伝いおよび新しいアイディアのご提供に感謝致します。"
765
 
lang/ure-lt_LT.mo CHANGED
Binary file
lang/ure-lt_LT.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: User Role Editor v. 2.1.9\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2012-06-23 23:24+0700\n"
6
- "PO-Revision-Date: 2012-06-23 23:24+0700\n"
7
  "Last-Translator: Vladimir Garagulya <vladimir@shinephp.com>\n"
8
  "Language-Team: \n"
9
  "Language: \n"
@@ -35,859 +35,878 @@ msgstr "Prašome Atnaujinti!"
35
  msgid "User Role Editor requires PHP 5.0 or newer."
36
  msgstr "User Role Editor reikalauja PHP 5.0 arba naujesnio."
37
 
38
- #: user-role-editor.php:65
39
  msgid "Only"
40
  msgstr "Tik"
41
 
42
- #: user-role-editor.php:65
43
  msgid "is allowed to use"
44
  msgstr "gali naudoti"
45
 
46
  # @ ure
47
- #: user-role-editor.php:71
48
- #: user-role-editor.php:246
49
  msgid "User Role Editor"
50
  msgstr "User Role Editor"
51
 
52
  # @ ure
53
- #: user-role-editor.php:218
54
  msgid "Settings"
55
  msgstr "Nuostatos"
56
 
57
  # @ ure
58
- #: user-role-editor.php:228
59
- #: ure-options.php:218
60
  msgid "Changelog"
61
  msgstr "Pasikeitimų žurnalas"
62
 
63
- #: user-role-editor.php:275
64
  msgid "Capabilities"
65
  msgstr "Gebos"
66
 
67
  # @ ure
68
- #: ure-lib.php:45
69
  msgid "Error is occur. Please check the log file."
70
  msgstr "Įvyko klaida. Prašome patikrinti žurnalo rinkmeną."
71
 
72
  # @ ure
73
- #: ure-lib.php:155
74
  msgid "Database operation error. Check log file."
75
  msgstr "Duomenų bazės operacijos klaida. Patikrinkite žurnalo rinkmeną."
76
 
77
  # @ ure
78
- #: ure-lib.php:188
79
  msgid "No backup data. It is created automatically before the first role data update."
80
  msgstr "Nėra atsarginės kopijos duomenų. Tai sukuriama automatiškai prieš pirmą funkcijos duomenų atnaujinimą."
81
 
82
  # @ ure
83
- #: ure-lib.php:226
84
  msgid "Backup record is created for the current role capabilities"
85
  msgstr "Atsarginės kopijos įrašas sukurtas pagal dabartinės funkcijų gebas"
86
 
87
  # @ ure
88
- #: ure-lib.php:345
89
  msgid "Error: Role name must contain latin characters and digits only!"
90
  msgstr "Klaida: Funkcijos vardas turi būti sudarytas tik iš lotyniškų simbolių bei skaičių!"
91
 
92
  # @ ure
93
- #: ure-lib.php:352
94
  #, php-format
95
  msgid "Role %s exists already"
96
  msgstr "Funkcija %s jau egzistuoja"
97
 
98
  # @ ure
99
- #: ure-lib.php:365
100
  msgid "Error is encountered during new role create operation"
101
  msgstr "Naujos funkcijos sukūrimo metu įvyko klaida"
102
 
103
  # @ ure
104
- #: ure-lib.php:367
105
  #, php-format
106
  msgid "Role %s is created successfully"
107
  msgstr "Funkcija %s sėkmingai sukurta"
108
 
109
  # @ ure
110
- #: ure-lib.php:451
111
  msgid "Error encountered during role delete operation"
112
  msgstr "Funkcijos ištrynimo metu įvyko klaida"
113
 
114
  # @ ure
115
- #: ure-lib.php:453
116
  #, php-format
117
  msgid "Role %s is deleted successfully"
118
  msgstr "Funkcija %s sėkmingai ištrinta"
119
 
120
  # @ ure
121
- #: ure-lib.php:471
122
  msgid "Error encountered during default role change operation"
123
  msgstr "Numatytosios funkcijos keitimo metu įvyko klaida"
124
 
125
  # @ ure
126
- #: ure-lib.php:477
127
  #, php-format
128
  msgid "Default role for new users is set to %s successfully"
129
  msgstr "Numatytoji funkcija naujiems vartotojams sėkmingai nustatyta kaip %s"
130
 
131
  # @ ure
132
- #: ure-lib.php:505
133
  msgid "Editor"
134
  msgstr "Redaktorius"
135
 
136
  # @ ure
137
- #: ure-lib.php:506
138
  msgid "Author"
139
  msgstr "Autorius"
140
 
141
  # @ ure
142
- #: ure-lib.php:507
143
  msgid "Contributor"
144
  msgstr "Bendradarbis"
145
 
146
  # @ ure
147
- #: ure-lib.php:508
148
  msgid "Subscriber"
149
  msgstr "Prenumeratorius"
150
 
151
  # @ ure
152
- #: ure-lib.php:510
153
  msgid "Switch themes"
154
  msgstr "Pakeisti apipavidalinimus"
155
 
156
  # @ ure
157
- #: ure-lib.php:511
158
  msgid "Edit themes"
159
  msgstr "Redaguoti apipavidalinimus"
160
 
161
  # @ ure
162
- #: ure-lib.php:512
163
  msgid "Activate plugins"
164
  msgstr "Suaktyvinti papildinius"
165
 
166
  # @ ure
167
- #: ure-lib.php:513
168
  msgid "Edit plugins"
169
  msgstr "Redaguoti papildinius"
170
 
171
  # @ ure
172
- #: ure-lib.php:514
173
  msgid "Edit users"
174
  msgstr "Redaguoti vartotojus"
175
 
176
  # @ ure
177
- #: ure-lib.php:515
178
  msgid "Edit files"
179
  msgstr "Redaguoti rinkmenas"
180
 
181
  # @ ure
182
- #: ure-lib.php:516
183
  msgid "Manage options"
184
  msgstr "Valdyti parinktis"
185
 
186
  # @ ure
187
- #: ure-lib.php:517
188
  msgid "Moderate comments"
189
  msgstr "Prižiūrėti komentarus"
190
 
191
  # @ ure
192
- #: ure-lib.php:518
193
  msgid "Manage categories"
194
  msgstr "Valdyti kategorijas"
195
 
196
  # @ ure
197
- #: ure-lib.php:519
198
  msgid "Manage links"
199
  msgstr "Valdyti nuorodas"
200
 
201
  # @ ure
202
- #: ure-lib.php:520
203
  msgid "Upload files"
204
  msgstr "Išsiųsti rinkmenas"
205
 
206
  # @ ure
207
- #: ure-lib.php:521
208
  msgid "Import"
209
  msgstr "Importuoti"
210
 
211
  # @ ure
212
- #: ure-lib.php:522
213
  msgid "Unfiltered html"
214
  msgstr "Nefiltruotas html"
215
 
216
  # @ ure
217
- #: ure-lib.php:523
218
  msgid "Edit posts"
219
  msgstr "Redaguoti įrašus"
220
 
221
  # @ ure
222
- #: ure-lib.php:524
223
  msgid "Edit others posts"
224
  msgstr "Redaguoti kitų įrašus"
225
 
226
  # @ ure
227
- #: ure-lib.php:525
228
  msgid "Edit published posts"
229
  msgstr "Redaguoti paskelbtus įrašus"
230
 
231
  # @ ure
232
- #: ure-lib.php:526
233
  msgid "Publish posts"
234
  msgstr "Paskelbti įrašus"
235
 
236
  # @ ure
237
- #: ure-lib.php:527
238
  msgid "Edit pages"
239
  msgstr "Redaguoti puslapius"
240
 
241
  # @ ure
242
- #: ure-lib.php:528
243
  msgid "Read"
244
  msgstr "Skaityti"
245
 
246
  # @ ure
247
- #: ure-lib.php:529
248
  msgid "Level 10"
249
  msgstr "10 lygis"
250
 
251
  # @ ure
252
- #: ure-lib.php:530
253
  msgid "Level 9"
254
  msgstr "9 lygis"
255
 
256
  # @ ure
257
- #: ure-lib.php:531
258
  msgid "Level 8"
259
  msgstr "8 lygis"
260
 
261
  # @ ure
262
- #: ure-lib.php:532
263
  msgid "Level 7"
264
  msgstr "7 lygis"
265
 
266
  # @ ure
267
- #: ure-lib.php:533
268
  msgid "Level 6"
269
  msgstr "6 lygis"
270
 
271
  # @ ure
272
- #: ure-lib.php:534
273
  msgid "Level 5"
274
  msgstr "5 lygis"
275
 
276
  # @ ure
277
- #: ure-lib.php:535
278
  msgid "Level 4"
279
  msgstr "4 lygis"
280
 
281
  # @ ure
282
- #: ure-lib.php:536
283
  msgid "Level 3"
284
  msgstr "3 lygis"
285
 
286
  # @ ure
287
- #: ure-lib.php:537
288
  msgid "Level 2"
289
  msgstr "2 lygis"
290
 
291
  # @ ure
292
- #: ure-lib.php:538
293
  msgid "Level 1"
294
  msgstr "1 lygis"
295
 
296
  # @ ure
297
- #: ure-lib.php:539
298
  msgid "Level 0"
299
  msgstr "0 lygis"
300
 
301
  # @ ure
302
- #: ure-lib.php:540
303
  msgid "Edit others pages"
304
  msgstr "Redaguoti kitų puslapius"
305
 
306
  # @ ure
307
- #: ure-lib.php:541
308
  msgid "Edit published pages"
309
  msgstr "Redaguoti paskelbtus puslapius"
310
 
311
  # @ ure
312
- #: ure-lib.php:542
313
  msgid "Publish pages"
314
  msgstr "Paskelbti puslapius"
315
 
316
  # @ ure
317
- #: ure-lib.php:543
318
  msgid "Delete pages"
319
  msgstr "Ištrinti puslapius"
320
 
321
  # @ ure
322
- #: ure-lib.php:544
323
  msgid "Delete others pages"
324
  msgstr "Ištrinti kitų puslapius"
325
 
326
  # @ ure
327
- #: ure-lib.php:545
328
  msgid "Delete published pages"
329
  msgstr "Ištrinti paskelbtus puslapius"
330
 
331
  # @ ure
332
- #: ure-lib.php:546
333
  msgid "Delete posts"
334
  msgstr "Ištrinti įrašus"
335
 
336
  # @ ure
337
- #: ure-lib.php:547
338
  msgid "Delete others posts"
339
  msgstr "Ištrinti kitų įrašus"
340
 
341
  # @ ure
342
- #: ure-lib.php:548
343
  msgid "Delete published posts"
344
  msgstr "Ištrinti paskelbtus įrašus"
345
 
346
  # @ ure
347
- #: ure-lib.php:549
348
  msgid "Delete private posts"
349
  msgstr "Ištrinti privačius įrašus"
350
 
351
  # @ ure
352
- #: ure-lib.php:550
353
  msgid "Edit private posts"
354
  msgstr "Redaguoti privačius įrašus"
355
 
356
  # @ ure
357
- #: ure-lib.php:551
358
  msgid "Read private posts"
359
  msgstr "Skaityti privačius įrašus"
360
 
361
  # @ ure
362
- #: ure-lib.php:552
363
  msgid "Delete private pages"
364
  msgstr "Ištrinti privačius puslapius"
365
 
366
  # @ ure
367
- #: ure-lib.php:553
368
  msgid "Edit private pages"
369
  msgstr "Redaguoti privačius puslapius"
370
 
371
  # @ ure
372
- #: ure-lib.php:554
373
  msgid "Read private pages"
374
  msgstr "Skaityti privačius puslapius"
375
 
376
  # @ ure
377
- #: ure-lib.php:555
378
  msgid "Delete users"
379
  msgstr "Trinti vartotojus"
380
 
381
  # @ ure
382
- #: ure-lib.php:556
383
  msgid "Create users"
384
  msgstr "Sukurti vartotojus"
385
 
386
  # @ ure
387
- #: ure-lib.php:557
388
  msgid "Unfiltered upload"
389
  msgstr "Nefiltruojamas išsiuntimas"
390
 
391
  # @ ure
392
- #: ure-lib.php:558
393
  msgid "Edit dashboard"
394
  msgstr "Redaguoti prietaisų skydelį"
395
 
396
  # @ ure
397
- #: ure-lib.php:559
398
  msgid "Update plugins"
399
  msgstr "Atnaujinti papildinius"
400
 
401
  # @ ure
402
- #: ure-lib.php:560
403
  msgid "Delete plugins"
404
  msgstr "Ištrinti papildinius"
405
 
406
  # @ ure
407
- #: ure-lib.php:561
408
  msgid "Install plugins"
409
  msgstr "Įdiegti papildinius"
410
 
411
  # @ ure
412
- #: ure-lib.php:562
413
  msgid "Update themes"
414
  msgstr "Atnaujinti apipavidalinimus"
415
 
416
  # @ ure
417
- #: ure-lib.php:563
418
  msgid "Install themes"
419
  msgstr "Įdiegti apipavidalinimus"
420
 
421
  # @ ure
422
- #: ure-lib.php:564
423
  msgid "Update core"
424
  msgstr "Atnaujinti branduolį"
425
 
426
  # @ ure
427
- #: ure-lib.php:565
428
  msgid "List users"
429
  msgstr "Rodyti vartotojus"
430
 
431
  # @ ure
432
- #: ure-lib.php:566
433
  msgid "Remove users"
434
  msgstr "Šalinti vartotojus"
435
 
436
  # @ ure
437
- #: ure-lib.php:567
438
  msgid "Add users"
439
  msgstr "Pridėti vartotojus"
440
 
441
  # @ ure
442
- #: ure-lib.php:568
443
  msgid "Promote users"
444
  msgstr "Paaukštinti vartotojus"
445
 
446
  # @ ure
447
- #: ure-lib.php:569
448
  msgid "Edit theme options"
449
  msgstr "Redaguoti apipavidalinimo parinktis"
450
 
451
  # @ ure
452
- #: ure-lib.php:570
453
  msgid "Delete themes"
454
  msgstr "Ištrinti apipavidalinimus"
455
 
456
  # @ ure
457
- #: ure-lib.php:571
458
  msgid "Export"
459
  msgstr "Eksportuoti"
460
 
461
  # @ ure
462
- #: ure-lib.php:655
463
  msgid "Error: Capability name must contain latin characters and digits only!"
464
  msgstr "Klaida: Gebos pavadinimas turi susidaryti tik iš lotyniškų simbolių bei skaičių!"
465
 
466
  # @ ure
467
- #: ure-lib.php:667
468
  #, php-format
469
  msgid "Capability %s is added successfully"
470
  msgstr "Geba %s sėkmingai pridėta"
471
 
472
- #: ure-lib.php:669
473
  #, php-format
474
  msgid "Capability %s exists already"
475
  msgstr "Geba %s jau egzistuoja"
476
 
477
- #: ure-lib.php:818
478
  #, php-format
479
  msgid "Error! You do not have permission to delete this capability: %s!"
480
  msgstr "Klaida! Jūs neturite leidimo ištrinti šią gebą: %s!"
481
 
482
  # @ ure
483
- #: ure-lib.php:840
484
  #, php-format
485
  msgid "Capability %s is removed successfully"
486
  msgstr "Geba %s sėkmingai pašalinta"
487
 
488
- #: ure-lib.php:902
489
  msgid "Help"
490
  msgstr "Pagalba"
491
 
492
  # @ ure
493
- #: ure-role-edit.php:29
494
  msgid "None"
495
  msgstr "Nieko"
496
 
497
  # @ ure
498
- #: ure-role-edit.php:93
499
  msgid " Name can not be empty!"
500
  msgstr "Vardo laukelis negali būti tuščias!"
501
 
502
  # @ ure
503
- #: ure-role-edit.php:97
504
  msgid " Name must contain latin characters and digits only!"
505
  msgstr "Vardas turi susidaryti tik iš lotyniškų simbolių bei skaičių!"
506
 
507
  # @ ure
508
- #: ure-role-edit.php:102
509
- #: ure-role-edit.php:293
510
  msgid "Delete Role"
511
  msgstr "Ištrinti Funkciją"
512
 
513
  # @ ure
514
- #: ure-role-edit.php:104
515
  msgid "Change Default Role"
516
  msgstr "Pakeisti Numatytąją Funkciją"
517
 
518
- #: ure-role-edit.php:106
519
  msgid "Restore Roles from backup copy. Be careful, backup was created when you started URE 1st time. All changes you made after that will be lost"
520
  msgstr "Atstatyti funkcijas iš atsarginės kopijos. Būkite atsargus, atsarginė kopija buvo sukurta, kai pirmą kartą paleidote URE. Visi pakeitimai, kuriuos atlikote po to, bus prarasti"
521
 
522
- #: ure-role-edit.php:108
523
  msgid "Warning! Be careful - removing critical capability could crash some plugin or other custom code"
524
  msgstr "Dėmesio! Būkite atsargus - kritinės gebos pašalinimas gali nulemti kai kurių papildinių ar kitų individualizuotų kodų užstrigimą"
525
 
526
  # @ ure
527
- #: ure-role-edit.php:110
528
  msgid "Please confirm to continue"
529
  msgstr "Prašome patvirtinti, kad galėtumėte tęsti"
530
 
531
  # @ ure
532
- #: ure-role-edit.php:147
533
  #, php-format
534
  msgid "Role \"%s\" update: please confirm to continue"
535
  msgstr "Funkcijos \"%s\" atnaujinimas: Prašome patvirtinti, kad galėtumėte tęsti"
536
 
537
  # @ ure
538
- #: ure-role-edit.php:155
539
  msgid "Select Role and change its capabilities list"
540
  msgstr "Pasirinkti funkciją ir pakeisti jai priskirtų gebų sąrašą"
541
 
542
  # @ ure
543
- #: ure-role-edit.php:157
544
  msgid "Select Role:"
545
  msgstr "Pasirinkite Funkciją:"
546
 
547
  # @ ure
548
- #: ure-role-edit.php:167
549
- #: ure-user-edit.php:91
550
  msgid "Show capabilities in human readable form"
551
  msgstr "Rodyti gebas žmogui suprantama forma"
552
 
553
- #: ure-role-edit.php:176
554
- #: ure-user-edit.php:100
555
  msgid "Show deprecated capabilities"
556
  msgstr "Rodyti prieštaraujančias gebas"
557
 
558
- #: ure-role-edit.php:180
559
  msgid "If checked, then apply action to ALL sites of this Network"
560
  msgstr "Jeigu pažymėta, tuomet veiksmas pritaikomas VISIEMS šio Tinklo puslapiams"
561
 
562
- #: ure-role-edit.php:190
563
  msgid "Apply to All Sites"
564
  msgstr "Pritaikyti Visiems Puslapiams"
565
 
 
 
 
 
 
 
 
 
 
 
 
 
566
  # @ ure
567
- #: ure-role-edit.php:251
568
- #: ure-user-edit.php:163
569
  msgid "Update"
570
  msgstr "Atnaujinti"
571
 
572
  # @ ure
573
- #: ure-role-edit.php:251
574
- #: ure-user-edit.php:163
575
  msgid "Save Changes"
576
  msgstr "Įrašyti Pakeitimus"
577
 
578
  # @ ure
579
- #: ure-role-edit.php:252
580
- #: ure-user-edit.php:164
581
  msgid "Cancel"
582
  msgstr "Atšaukti"
583
 
584
  # @ ure
585
- #: ure-role-edit.php:252
586
- #: ure-user-edit.php:164
587
  msgid "Cancel not saved changes"
588
  msgstr "Atšaukti neįrašytus pakeitimus"
589
 
590
  # @ ure
591
- #: ure-role-edit.php:255
592
  msgid "Select All"
593
  msgstr ""
594
 
595
- #: ure-role-edit.php:255
596
  msgid "Select All Capabilities"
597
  msgstr ""
598
 
599
- #: ure-role-edit.php:256
600
  msgid "Unselect All"
601
  msgstr ""
602
 
603
- #: ure-role-edit.php:256
604
  msgid "Unselect All Capabilities"
605
  msgstr ""
606
 
607
- #: ure-role-edit.php:257
608
  msgid "Reverse"
609
  msgstr ""
610
 
611
- #: ure-role-edit.php:257
612
  msgid "Turn checked capabilities off and vise versa"
613
  msgstr ""
614
 
615
  # @ ure
616
- #: ure-role-edit.php:260
617
  msgid "Reset"
618
  msgstr "Atkurti"
619
 
620
  # @ ure
621
- #: ure-role-edit.php:260
622
  msgid "Restore Roles from backup copy"
623
  msgstr "Atkurti funkcijas pagal atsarginės kopijos duomenis"
624
 
625
  # @ ure
626
- #: ure-role-edit.php:270
627
  msgid "Add New Role"
628
  msgstr "Pridėti Naują Funkciją"
629
 
630
- #: ure-role-edit.php:272
631
  msgid "Name: "
632
  msgstr "Vardas:"
633
 
634
- #: ure-role-edit.php:276
635
  msgid "Make copy of: "
636
  msgstr "Padaryti kopiją:"
637
 
638
  # @ ure
639
- #: ure-role-edit.php:279
640
- #: ure-role-edit.php:308
641
  msgid "Add"
642
  msgstr "Pridėti"
643
 
644
  # @ ure
645
- #: ure-role-edit.php:279
646
  msgid "Add New User Role"
647
  msgstr "Pridėti Naują Vartotojo Funkciją"
648
 
649
  # @ ure
650
- #: ure-role-edit.php:283
651
  msgid "Default Role for New User"
652
  msgstr "Numatytoji Funkcija Naujam Vartotojui"
653
 
654
  # @ ure
655
- #: ure-role-edit.php:288
656
  msgid "Change"
657
  msgstr "Pakeisti"
658
 
659
  # @ ure
660
- #: ure-role-edit.php:288
661
  msgid "Set as Default User Role"
662
  msgstr "Nustatyti kaip Numatytąją Vartotojo Funkciją"
663
 
664
  # @ ure
665
- #: ure-role-edit.php:298
666
  msgid "Delete"
667
  msgstr "Ištrinti"
668
 
669
  # @ ure
670
- #: ure-role-edit.php:298
671
  msgid "Delete User Role"
672
  msgstr "Ištrinti Vartotojo Funkciją"
673
 
674
  # @ ure
675
- #: ure-role-edit.php:303
676
- #: ure-role-edit.php:308
677
  msgid "Add New Capability"
678
  msgstr "Pridėti Naują Gebą"
679
 
680
- #: ure-role-edit.php:313
681
  msgid "Remove Capability"
682
  msgstr "Pašalinti Gebą"
683
 
684
  # @ ure
685
- #: ure-role-edit.php:318
686
  msgid "Remove"
687
  msgstr "Pašalinti"
688
 
689
- #: ure-role-edit.php:318
690
  msgid "Remove User Capability"
691
  msgstr "Pašalinti Vartotojo Gebą"
692
 
693
  # @ ure
694
- #: ure-user-edit.php:67
695
  #, php-format
696
  msgid "User \"%s\" update: please confirm to continue"
697
  msgstr "Vartotojo \"%s\" atnaujinimas: prašome patvirtinti, kad tęstumėte"
698
 
699
- #: ure-user-edit.php:79
700
  msgid "Change capabilities for user"
701
  msgstr "Pakeisti šio vartotojo gebas"
702
 
703
  # @ ure
704
- #: ure-user-edit.php:82
705
  msgid "Role:"
706
  msgstr "Funkcija:"
707
 
708
- #: ure-user-edit.php:104
709
  msgid "Add capabilities to this user:"
710
  msgstr "Pridėti gebas šiam vartotojui:"
711
 
712
  # @ ure
713
- #: ure-options.php:59
714
  msgid "User Roles are restored from the backup data. "
715
  msgstr "Vartotojo Funkcijos atkurtos pagal atsarginės kopijos duomenis."
716
 
717
- #: ure-options.php:125
718
  msgid "Error: "
719
  msgstr "Klaida:"
720
 
721
  # @ ure
722
- #: ure-options.php:125
723
- #: ure-options.php:143
724
  msgid "Role"
725
  msgstr "Funkcija"
726
 
727
- #: ure-options.php:125
728
  msgid "does not exist"
729
  msgstr "neegzistuoja"
730
 
731
  # @ ure
732
- #: ure-options.php:143
733
  msgid "is updated successfully"
734
  msgstr "yra sėkmingai atnaujinta"
735
 
736
- #: ure-options.php:152
737
  msgid "User"
738
  msgstr "Vartotojas"
739
 
740
  # @ ure
741
- #: ure-options.php:152
742
  msgid "capabilities are updated successfully"
743
  msgstr "Gebos sėkmingai atnaujintos"
744
 
745
  # @ ure
746
- #: ure-options.php:215
747
  msgid "About this Plugin:"
748
  msgstr "Apie šį Papildinį:"
749
 
750
  # @ ure
751
- #: ure-options.php:216
752
  msgid "Author's website"
753
  msgstr "Autoriaus svetainė"
754
 
755
  # @ ure
756
- #: ure-options.php:217
757
  msgid "Plugin webpage"
758
  msgstr "Papildinio puslapis"
759
 
760
  # @ ure
761
- #: ure-options.php:219
762
  msgid "FAQ"
763
  msgstr "DUK"
764
 
765
  # @ ure
766
- #: ure-options.php:220
767
  msgid "Greetings"
768
  msgstr ""
769
 
770
  # @ ure
771
- #: ure-options.php:242
772
  msgid "Greetings:"
773
  msgstr "Pasisveikinimai:"
774
 
775
  # @ ure
776
- #: ure-options.php:243
777
  msgid "It's me, the author"
778
  msgstr "Čia aš, autorius"
779
 
780
  # @ ure
781
- #: ure-options.php:244
782
  msgid "For the help with Belorussian translation"
783
  msgstr "Ieškant pagalbos, verčiant į baltarusių kalbą"
784
 
785
  # @ ure
786
- #: ure-options.php:245
787
  msgid "For the help with Brasilian translation"
788
  msgstr "Ieškant pagalbos, verčiant į portugalų (Brazilija) kalbą"
789
 
790
  # @ ure
791
- #: ure-options.php:246
 
 
 
 
 
792
  msgid "For the help with Chinese translation"
793
  msgstr "Ieškant pagalbos, verčiant į kinų kalbą"
794
 
795
  # @ ure
796
- #: ure-options.php:247
797
  msgid "For the help with Dutch translation"
798
  msgstr "Ieškant pagalbos, verčiant į olandų kalbą"
799
 
800
  # @ ure
801
- #: ure-options.php:248
802
  msgid "For the help with Finnish translation"
803
  msgstr "Ieškant pagalbos, verčiant į suomių kalbą"
804
 
805
  # @ ure
806
- #: ure-options.php:249
807
- #: ure-options.php:250
808
  msgid "For the help with French translation"
809
  msgstr "Ieškant pagalbos, verčiant į prancūzų kalbą"
810
 
811
  # @ ure
812
- #: ure-options.php:251
813
  msgid "For the help with German translation"
814
  msgstr "Ieškant pagalbos, verčiant į vokiečių kalbą"
815
 
816
  # @ ure
817
- #: ure-options.php:252
818
- #: ure-options.php:253
819
  msgid "For the help with Hebrew translation"
820
  msgstr ""
821
 
822
  # @ ure
823
- #: ure-options.php:254
824
  msgid "For the help with Hindi translation"
825
  msgstr ""
826
 
827
  # @ ure
828
- #: ure-options.php:255
829
  msgid "For the help with Hungarian translation"
830
  msgstr "Ieškant pagalbos, verčiant į vengrų kalbą"
831
 
832
  # @ ure
833
- #: ure-options.php:256
834
- #: ure-options.php:257
835
  msgid "For the help with Italian translation"
836
  msgstr "Ieškant pagalbos, verčiant į italų kalbą"
837
 
838
  # @ ure
839
- #: ure-options.php:258
840
  msgid "For the help with Japanese translation"
841
  msgstr "Ieškant pagalbos, verčiant į japonų kalbą"
842
 
843
  # @ ure
844
- #: ure-options.php:259
845
  msgid "For the help with Lithuanian translation"
846
  msgstr ""
847
 
848
  # @ ure
849
- #: ure-options.php:260
850
- #: ure-options.php:261
 
851
  msgid "For the help with Persian translation"
852
  msgstr "Ieškant pagalbos, verčiant į persų kalbą"
853
 
854
  # @ ure
855
- #: ure-options.php:262
 
856
  msgid "For the help with Polish translation"
857
  msgstr "Ieškant pagalbos, verčiant į lenkų kalbą"
858
 
859
  # @ ure
860
- #: ure-options.php:263
861
- #: ure-options.php:264
862
  msgid "For the help with Spanish translation"
863
  msgstr "Ieškant pagalbos, verčiant į ispanų kalbą"
864
 
865
  # @ ure
866
- #: ure-options.php:265
867
  msgid "For the updated Swedish translation"
868
  msgstr ""
869
 
870
  # @ ure
871
- #: ure-options.php:266
872
  msgid "For the help with Swedish translation"
873
  msgstr "Ieškant pagalbos, verčiant į švedų kalbą"
874
 
875
  # @ ure
876
- #: ure-options.php:267
877
  msgid "For the help with Turkish translation"
878
  msgstr "Ieškant pagalbos, verčiant į turkų kalbą"
879
 
880
  # @ ure
881
- #: ure-options.php:269
882
  msgid "For the code to hide administrator role"
883
  msgstr "Kodui, paslėpti administratoriaus funkciją"
884
 
885
- #: ure-options.php:270
886
  msgid "For the code enhancement suggestion"
887
  msgstr "Kodo gerinimo pasiūlymams"
888
 
889
  # @ ure
890
- #: ure-options.php:272
891
  msgid "Do you wish to see your name with link to your site here? You are welcome! Your help with translation and new ideas are very appreciated."
892
  msgstr "Ar čia norėtumėte matyti savo vardą su nuoroda į Jūsų tinklapį? Maloniai prašome! Jūsų pagalba verčiant ir pateikiant naujas idėjas yra labai laukiama."
893
 
2
  msgstr ""
3
  "Project-Id-Version: User Role Editor v. 2.1.9\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-09-01 08:48+0700\n"
6
+ "PO-Revision-Date: 2012-09-01 08:48+0700\n"
7
  "Last-Translator: Vladimir Garagulya <vladimir@shinephp.com>\n"
8
  "Language-Team: \n"
9
  "Language: \n"
35
  msgid "User Role Editor requires PHP 5.0 or newer."
36
  msgstr "User Role Editor reikalauja PHP 5.0 arba naujesnio."
37
 
38
+ #: user-role-editor.php:76
39
  msgid "Only"
40
  msgstr "Tik"
41
 
42
+ #: user-role-editor.php:76
43
  msgid "is allowed to use"
44
  msgstr "gali naudoti"
45
 
46
  # @ ure
47
+ #: user-role-editor.php:82
48
+ #: user-role-editor.php:251
49
  msgid "User Role Editor"
50
  msgstr "User Role Editor"
51
 
52
  # @ ure
53
+ #: user-role-editor.php:223
54
  msgid "Settings"
55
  msgstr "Nuostatos"
56
 
57
  # @ ure
58
+ #: user-role-editor.php:233
59
+ #: includes/ure-options.php:235
60
  msgid "Changelog"
61
  msgstr "Pasikeitimų žurnalas"
62
 
63
+ #: user-role-editor.php:280
64
  msgid "Capabilities"
65
  msgstr "Gebos"
66
 
67
  # @ ure
68
+ #: includes/ure-lib.php:34
69
  msgid "Error is occur. Please check the log file."
70
  msgstr "Įvyko klaida. Prašome patikrinti žurnalo rinkmeną."
71
 
72
  # @ ure
73
+ #: includes/ure-lib.php:144
74
  msgid "Database operation error. Check log file."
75
  msgstr "Duomenų bazės operacijos klaida. Patikrinkite žurnalo rinkmeną."
76
 
77
  # @ ure
78
+ #: includes/ure-lib.php:177
79
  msgid "No backup data. It is created automatically before the first role data update."
80
  msgstr "Nėra atsarginės kopijos duomenų. Tai sukuriama automatiškai prieš pirmą funkcijos duomenų atnaujinimą."
81
 
82
  # @ ure
83
+ #: includes/ure-lib.php:215
84
  msgid "Backup record is created for the current role capabilities"
85
  msgstr "Atsarginės kopijos įrašas sukurtas pagal dabartinės funkcijų gebas"
86
 
87
  # @ ure
88
+ #: includes/ure-lib.php:329
89
  msgid "Error: Role name must contain latin characters and digits only!"
90
  msgstr "Klaida: Funkcijos vardas turi būti sudarytas tik iš lotyniškų simbolių bei skaičių!"
91
 
92
  # @ ure
93
+ #: includes/ure-lib.php:336
94
  #, php-format
95
  msgid "Role %s exists already"
96
  msgstr "Funkcija %s jau egzistuoja"
97
 
98
  # @ ure
99
+ #: includes/ure-lib.php:349
100
  msgid "Error is encountered during new role create operation"
101
  msgstr "Naujos funkcijos sukūrimo metu įvyko klaida"
102
 
103
  # @ ure
104
+ #: includes/ure-lib.php:351
105
  #, php-format
106
  msgid "Role %s is created successfully"
107
  msgstr "Funkcija %s sėkmingai sukurta"
108
 
109
  # @ ure
110
+ #: includes/ure-lib.php:435
111
  msgid "Error encountered during role delete operation"
112
  msgstr "Funkcijos ištrynimo metu įvyko klaida"
113
 
114
  # @ ure
115
+ #: includes/ure-lib.php:437
116
  #, php-format
117
  msgid "Role %s is deleted successfully"
118
  msgstr "Funkcija %s sėkmingai ištrinta"
119
 
120
  # @ ure
121
+ #: includes/ure-lib.php:455
122
  msgid "Error encountered during default role change operation"
123
  msgstr "Numatytosios funkcijos keitimo metu įvyko klaida"
124
 
125
  # @ ure
126
+ #: includes/ure-lib.php:461
127
  #, php-format
128
  msgid "Default role for new users is set to %s successfully"
129
  msgstr "Numatytoji funkcija naujiems vartotojams sėkmingai nustatyta kaip %s"
130
 
131
  # @ ure
132
+ #: includes/ure-lib.php:489
133
  msgid "Editor"
134
  msgstr "Redaktorius"
135
 
136
  # @ ure
137
+ #: includes/ure-lib.php:490
138
  msgid "Author"
139
  msgstr "Autorius"
140
 
141
  # @ ure
142
+ #: includes/ure-lib.php:491
143
  msgid "Contributor"
144
  msgstr "Bendradarbis"
145
 
146
  # @ ure
147
+ #: includes/ure-lib.php:492
148
  msgid "Subscriber"
149
  msgstr "Prenumeratorius"
150
 
151
  # @ ure
152
+ #: includes/ure-lib.php:494
153
  msgid "Switch themes"
154
  msgstr "Pakeisti apipavidalinimus"
155
 
156
  # @ ure
157
+ #: includes/ure-lib.php:495
158
  msgid "Edit themes"
159
  msgstr "Redaguoti apipavidalinimus"
160
 
161
  # @ ure
162
+ #: includes/ure-lib.php:496
163
  msgid "Activate plugins"
164
  msgstr "Suaktyvinti papildinius"
165
 
166
  # @ ure
167
+ #: includes/ure-lib.php:497
168
  msgid "Edit plugins"
169
  msgstr "Redaguoti papildinius"
170
 
171
  # @ ure
172
+ #: includes/ure-lib.php:498
173
  msgid "Edit users"
174
  msgstr "Redaguoti vartotojus"
175
 
176
  # @ ure
177
+ #: includes/ure-lib.php:499
178
  msgid "Edit files"
179
  msgstr "Redaguoti rinkmenas"
180
 
181
  # @ ure
182
+ #: includes/ure-lib.php:500
183
  msgid "Manage options"
184
  msgstr "Valdyti parinktis"
185
 
186
  # @ ure
187
+ #: includes/ure-lib.php:501
188
  msgid "Moderate comments"
189
  msgstr "Prižiūrėti komentarus"
190
 
191
  # @ ure
192
+ #: includes/ure-lib.php:502
193
  msgid "Manage categories"
194
  msgstr "Valdyti kategorijas"
195
 
196
  # @ ure
197
+ #: includes/ure-lib.php:503
198
  msgid "Manage links"
199
  msgstr "Valdyti nuorodas"
200
 
201
  # @ ure
202
+ #: includes/ure-lib.php:504
203
  msgid "Upload files"
204
  msgstr "Išsiųsti rinkmenas"
205
 
206
  # @ ure
207
+ #: includes/ure-lib.php:505
208
  msgid "Import"
209
  msgstr "Importuoti"
210
 
211
  # @ ure
212
+ #: includes/ure-lib.php:506
213
  msgid "Unfiltered html"
214
  msgstr "Nefiltruotas html"
215
 
216
  # @ ure
217
+ #: includes/ure-lib.php:507
218
  msgid "Edit posts"
219
  msgstr "Redaguoti įrašus"
220
 
221
  # @ ure
222
+ #: includes/ure-lib.php:508
223
  msgid "Edit others posts"
224
  msgstr "Redaguoti kitų įrašus"
225
 
226
  # @ ure
227
+ #: includes/ure-lib.php:509
228
  msgid "Edit published posts"
229
  msgstr "Redaguoti paskelbtus įrašus"
230
 
231
  # @ ure
232
+ #: includes/ure-lib.php:510
233
  msgid "Publish posts"
234
  msgstr "Paskelbti įrašus"
235
 
236
  # @ ure
237
+ #: includes/ure-lib.php:511
238
  msgid "Edit pages"
239
  msgstr "Redaguoti puslapius"
240
 
241
  # @ ure
242
+ #: includes/ure-lib.php:512
243
  msgid "Read"
244
  msgstr "Skaityti"
245
 
246
  # @ ure
247
+ #: includes/ure-lib.php:513
248
  msgid "Level 10"
249
  msgstr "10 lygis"
250
 
251
  # @ ure
252
+ #: includes/ure-lib.php:514
253
  msgid "Level 9"
254
  msgstr "9 lygis"
255
 
256
  # @ ure
257
+ #: includes/ure-lib.php:515
258
  msgid "Level 8"
259
  msgstr "8 lygis"
260
 
261
  # @ ure
262
+ #: includes/ure-lib.php:516
263
  msgid "Level 7"
264
  msgstr "7 lygis"
265
 
266
  # @ ure
267
+ #: includes/ure-lib.php:517
268
  msgid "Level 6"
269
  msgstr "6 lygis"
270
 
271
  # @ ure
272
+ #: includes/ure-lib.php:518
273
  msgid "Level 5"
274
  msgstr "5 lygis"
275
 
276
  # @ ure
277
+ #: includes/ure-lib.php:519
278
  msgid "Level 4"
279
  msgstr "4 lygis"
280
 
281
  # @ ure
282
+ #: includes/ure-lib.php:520
283
  msgid "Level 3"
284
  msgstr "3 lygis"
285
 
286
  # @ ure
287
+ #: includes/ure-lib.php:521
288
  msgid "Level 2"
289
  msgstr "2 lygis"
290
 
291
  # @ ure
292
+ #: includes/ure-lib.php:522
293
  msgid "Level 1"
294
  msgstr "1 lygis"
295
 
296
  # @ ure
297
+ #: includes/ure-lib.php:523
298
  msgid "Level 0"
299
  msgstr "0 lygis"
300
 
301
  # @ ure
302
+ #: includes/ure-lib.php:524
303
  msgid "Edit others pages"
304
  msgstr "Redaguoti kitų puslapius"
305
 
306
  # @ ure
307
+ #: includes/ure-lib.php:525
308
  msgid "Edit published pages"
309
  msgstr "Redaguoti paskelbtus puslapius"
310
 
311
  # @ ure
312
+ #: includes/ure-lib.php:526
313
  msgid "Publish pages"
314
  msgstr "Paskelbti puslapius"
315
 
316
  # @ ure
317
+ #: includes/ure-lib.php:527
318
  msgid "Delete pages"
319
  msgstr "Ištrinti puslapius"
320
 
321
  # @ ure
322
+ #: includes/ure-lib.php:528
323
  msgid "Delete others pages"
324
  msgstr "Ištrinti kitų puslapius"
325
 
326
  # @ ure
327
+ #: includes/ure-lib.php:529
328
  msgid "Delete published pages"
329
  msgstr "Ištrinti paskelbtus puslapius"
330
 
331
  # @ ure
332
+ #: includes/ure-lib.php:530
333
  msgid "Delete posts"
334
  msgstr "Ištrinti įrašus"
335
 
336
  # @ ure
337
+ #: includes/ure-lib.php:531
338
  msgid "Delete others posts"
339
  msgstr "Ištrinti kitų įrašus"
340
 
341
  # @ ure
342
+ #: includes/ure-lib.php:532
343
  msgid "Delete published posts"
344
  msgstr "Ištrinti paskelbtus įrašus"
345
 
346
  # @ ure
347
+ #: includes/ure-lib.php:533
348
  msgid "Delete private posts"
349
  msgstr "Ištrinti privačius įrašus"
350
 
351
  # @ ure
352
+ #: includes/ure-lib.php:534
353
  msgid "Edit private posts"
354
  msgstr "Redaguoti privačius įrašus"
355
 
356
  # @ ure
357
+ #: includes/ure-lib.php:535
358
  msgid "Read private posts"
359
  msgstr "Skaityti privačius įrašus"
360
 
361
  # @ ure
362
+ #: includes/ure-lib.php:536
363
  msgid "Delete private pages"
364
  msgstr "Ištrinti privačius puslapius"
365
 
366
  # @ ure
367
+ #: includes/ure-lib.php:537
368
  msgid "Edit private pages"
369
  msgstr "Redaguoti privačius puslapius"
370
 
371
  # @ ure
372
+ #: includes/ure-lib.php:538
373
  msgid "Read private pages"
374
  msgstr "Skaityti privačius puslapius"
375
 
376
  # @ ure
377
+ #: includes/ure-lib.php:539
378
  msgid "Delete users"
379
  msgstr "Trinti vartotojus"
380
 
381
  # @ ure
382
+ #: includes/ure-lib.php:540
383
  msgid "Create users"
384
  msgstr "Sukurti vartotojus"
385
 
386
  # @ ure
387
+ #: includes/ure-lib.php:541
388
  msgid "Unfiltered upload"
389
  msgstr "Nefiltruojamas išsiuntimas"
390
 
391
  # @ ure
392
+ #: includes/ure-lib.php:542
393
  msgid "Edit dashboard"
394
  msgstr "Redaguoti prietaisų skydelį"
395
 
396
  # @ ure
397
+ #: includes/ure-lib.php:543
398
  msgid "Update plugins"
399
  msgstr "Atnaujinti papildinius"
400
 
401
  # @ ure
402
+ #: includes/ure-lib.php:544
403
  msgid "Delete plugins"
404
  msgstr "Ištrinti papildinius"
405
 
406
  # @ ure
407
+ #: includes/ure-lib.php:545
408
  msgid "Install plugins"
409
  msgstr "Įdiegti papildinius"
410
 
411
  # @ ure
412
+ #: includes/ure-lib.php:546
413
  msgid "Update themes"
414
  msgstr "Atnaujinti apipavidalinimus"
415
 
416
  # @ ure
417
+ #: includes/ure-lib.php:547
418
  msgid "Install themes"
419
  msgstr "Įdiegti apipavidalinimus"
420
 
421
  # @ ure
422
+ #: includes/ure-lib.php:548
423
  msgid "Update core"
424
  msgstr "Atnaujinti branduolį"
425
 
426
  # @ ure
427
+ #: includes/ure-lib.php:549
428
  msgid "List users"
429
  msgstr "Rodyti vartotojus"
430
 
431
  # @ ure
432
+ #: includes/ure-lib.php:550
433
  msgid "Remove users"
434
  msgstr "Šalinti vartotojus"
435
 
436
  # @ ure
437
+ #: includes/ure-lib.php:551
438
  msgid "Add users"
439
  msgstr "Pridėti vartotojus"
440
 
441
  # @ ure
442
+ #: includes/ure-lib.php:552
443
  msgid "Promote users"
444
  msgstr "Paaukštinti vartotojus"
445
 
446
  # @ ure
447
+ #: includes/ure-lib.php:553
448
  msgid "Edit theme options"
449
  msgstr "Redaguoti apipavidalinimo parinktis"
450
 
451
  # @ ure
452
+ #: includes/ure-lib.php:554
453
  msgid "Delete themes"
454
  msgstr "Ištrinti apipavidalinimus"
455
 
456
  # @ ure
457
+ #: includes/ure-lib.php:555
458
  msgid "Export"
459
  msgstr "Eksportuoti"
460
 
461
  # @ ure
462
+ #: includes/ure-lib.php:639
463
  msgid "Error: Capability name must contain latin characters and digits only!"
464
  msgstr "Klaida: Gebos pavadinimas turi susidaryti tik iš lotyniškų simbolių bei skaičių!"
465
 
466
  # @ ure
467
+ #: includes/ure-lib.php:651
468
  #, php-format
469
  msgid "Capability %s is added successfully"
470
  msgstr "Geba %s sėkmingai pridėta"
471
 
472
+ #: includes/ure-lib.php:653
473
  #, php-format
474
  msgid "Capability %s exists already"
475
  msgstr "Geba %s jau egzistuoja"
476
 
477
+ #: includes/ure-lib.php:802
478
  #, php-format
479
  msgid "Error! You do not have permission to delete this capability: %s!"
480
  msgstr "Klaida! Jūs neturite leidimo ištrinti šią gebą: %s!"
481
 
482
  # @ ure
483
+ #: includes/ure-lib.php:824
484
  #, php-format
485
  msgid "Capability %s is removed successfully"
486
  msgstr "Geba %s sėkmingai pašalinta"
487
 
488
+ #: includes/ure-lib.php:889
489
  msgid "Help"
490
  msgstr "Pagalba"
491
 
492
  # @ ure
493
+ #: includes/ure-role-edit.php:29
494
  msgid "None"
495
  msgstr "Nieko"
496
 
497
  # @ ure
498
+ #: includes/ure-role-edit.php:101
499
  msgid " Name can not be empty!"
500
  msgstr "Vardo laukelis negali būti tuščias!"
501
 
502
  # @ ure
503
+ #: includes/ure-role-edit.php:105
504
  msgid " Name must contain latin characters and digits only!"
505
  msgstr "Vardas turi susidaryti tik iš lotyniškų simbolių bei skaičių!"
506
 
507
  # @ ure
508
+ #: includes/ure-role-edit.php:110
509
+ #: includes/ure-role-edit.php:367
510
  msgid "Delete Role"
511
  msgstr "Ištrinti Funkciją"
512
 
513
  # @ ure
514
+ #: includes/ure-role-edit.php:112
515
  msgid "Change Default Role"
516
  msgstr "Pakeisti Numatytąją Funkciją"
517
 
518
+ #: includes/ure-role-edit.php:114
519
  msgid "Restore Roles from backup copy. Be careful, backup was created when you started URE 1st time. All changes you made after that will be lost"
520
  msgstr "Atstatyti funkcijas iš atsarginės kopijos. Būkite atsargus, atsarginė kopija buvo sukurta, kai pirmą kartą paleidote URE. Visi pakeitimai, kuriuos atlikote po to, bus prarasti"
521
 
522
+ #: includes/ure-role-edit.php:116
523
  msgid "Warning! Be careful - removing critical capability could crash some plugin or other custom code"
524
  msgstr "Dėmesio! Būkite atsargus - kritinės gebos pašalinimas gali nulemti kai kurių papildinių ar kitų individualizuotų kodų užstrigimą"
525
 
526
  # @ ure
527
+ #: includes/ure-role-edit.php:118
528
  msgid "Please confirm to continue"
529
  msgstr "Prašome patvirtinti, kad galėtumėte tęsti"
530
 
531
  # @ ure
532
+ #: includes/ure-role-edit.php:155
533
  #, php-format
534
  msgid "Role \"%s\" update: please confirm to continue"
535
  msgstr "Funkcijos \"%s\" atnaujinimas: Prašome patvirtinti, kad galėtumėte tęsti"
536
 
537
  # @ ure
538
+ #: includes/ure-role-edit.php:163
539
  msgid "Select Role and change its capabilities list"
540
  msgstr "Pasirinkti funkciją ir pakeisti jai priskirtų gebų sąrašą"
541
 
542
  # @ ure
543
+ #: includes/ure-role-edit.php:165
544
  msgid "Select Role:"
545
  msgstr "Pasirinkite Funkciją:"
546
 
547
  # @ ure
548
+ #: includes/ure-role-edit.php:175
549
+ #: includes/ure-user-edit.php:91
550
  msgid "Show capabilities in human readable form"
551
  msgstr "Rodyti gebas žmogui suprantama forma"
552
 
553
+ #: includes/ure-role-edit.php:184
554
+ #: includes/ure-user-edit.php:100
555
  msgid "Show deprecated capabilities"
556
  msgstr "Rodyti prieštaraujančias gebas"
557
 
558
+ #: includes/ure-role-edit.php:188
559
  msgid "If checked, then apply action to ALL sites of this Network"
560
  msgstr "Jeigu pažymėta, tuomet veiksmas pritaikomas VISIEMS šio Tinklo puslapiams"
561
 
562
+ #: includes/ure-role-edit.php:198
563
  msgid "Apply to All Sites"
564
  msgstr "Pritaikyti Visiems Puslapiams"
565
 
566
+ #: includes/ure-role-edit.php:205
567
+ #: includes/ure-user-edit.php:105
568
+ #, fuzzy
569
+ msgid "Core capabilities:"
570
+ msgstr "WordPress Gebos:"
571
+
572
+ #: includes/ure-role-edit.php:268
573
+ #: includes/ure-user-edit.php:167
574
+ #, fuzzy
575
+ msgid "Custom capabilities:"
576
+ msgstr "Gebos:"
577
+
578
  # @ ure
579
+ #: includes/ure-role-edit.php:319
580
+ #: includes/ure-user-edit.php:222
581
  msgid "Update"
582
  msgstr "Atnaujinti"
583
 
584
  # @ ure
585
+ #: includes/ure-role-edit.php:319
586
+ #: includes/ure-user-edit.php:222
587
  msgid "Save Changes"
588
  msgstr "Įrašyti Pakeitimus"
589
 
590
  # @ ure
591
+ #: includes/ure-role-edit.php:320
592
+ #: includes/ure-user-edit.php:223
593
  msgid "Cancel"
594
  msgstr "Atšaukti"
595
 
596
  # @ ure
597
+ #: includes/ure-role-edit.php:320
598
+ #: includes/ure-user-edit.php:223
599
  msgid "Cancel not saved changes"
600
  msgstr "Atšaukti neįrašytus pakeitimus"
601
 
602
  # @ ure
603
+ #: includes/ure-role-edit.php:323
604
  msgid "Select All"
605
  msgstr ""
606
 
607
+ #: includes/ure-role-edit.php:323
608
  msgid "Select All Capabilities"
609
  msgstr ""
610
 
611
+ #: includes/ure-role-edit.php:327
612
  msgid "Unselect All"
613
  msgstr ""
614
 
615
+ #: includes/ure-role-edit.php:327
616
  msgid "Unselect All Capabilities"
617
  msgstr ""
618
 
619
+ #: includes/ure-role-edit.php:328
620
  msgid "Reverse"
621
  msgstr ""
622
 
623
+ #: includes/ure-role-edit.php:328
624
  msgid "Turn checked capabilities off and vise versa"
625
  msgstr ""
626
 
627
  # @ ure
628
+ #: includes/ure-role-edit.php:334
629
  msgid "Reset"
630
  msgstr "Atkurti"
631
 
632
  # @ ure
633
+ #: includes/ure-role-edit.php:334
634
  msgid "Restore Roles from backup copy"
635
  msgstr "Atkurti funkcijas pagal atsarginės kopijos duomenis"
636
 
637
  # @ ure
638
+ #: includes/ure-role-edit.php:344
639
  msgid "Add New Role"
640
  msgstr "Pridėti Naują Funkciją"
641
 
642
+ #: includes/ure-role-edit.php:346
643
  msgid "Name: "
644
  msgstr "Vardas:"
645
 
646
+ #: includes/ure-role-edit.php:350
647
  msgid "Make copy of: "
648
  msgstr "Padaryti kopiją:"
649
 
650
  # @ ure
651
+ #: includes/ure-role-edit.php:353
652
+ #: includes/ure-role-edit.php:382
653
  msgid "Add"
654
  msgstr "Pridėti"
655
 
656
  # @ ure
657
+ #: includes/ure-role-edit.php:353
658
  msgid "Add New User Role"
659
  msgstr "Pridėti Naują Vartotojo Funkciją"
660
 
661
  # @ ure
662
+ #: includes/ure-role-edit.php:357
663
  msgid "Default Role for New User"
664
  msgstr "Numatytoji Funkcija Naujam Vartotojui"
665
 
666
  # @ ure
667
+ #: includes/ure-role-edit.php:362
668
  msgid "Change"
669
  msgstr "Pakeisti"
670
 
671
  # @ ure
672
+ #: includes/ure-role-edit.php:362
673
  msgid "Set as Default User Role"
674
  msgstr "Nustatyti kaip Numatytąją Vartotojo Funkciją"
675
 
676
  # @ ure
677
+ #: includes/ure-role-edit.php:372
678
  msgid "Delete"
679
  msgstr "Ištrinti"
680
 
681
  # @ ure
682
+ #: includes/ure-role-edit.php:372
683
  msgid "Delete User Role"
684
  msgstr "Ištrinti Vartotojo Funkciją"
685
 
686
  # @ ure
687
+ #: includes/ure-role-edit.php:377
688
+ #: includes/ure-role-edit.php:382
689
  msgid "Add New Capability"
690
  msgstr "Pridėti Naują Gebą"
691
 
692
+ #: includes/ure-role-edit.php:387
693
  msgid "Remove Capability"
694
  msgstr "Pašalinti Gebą"
695
 
696
  # @ ure
697
+ #: includes/ure-role-edit.php:392
698
  msgid "Remove"
699
  msgstr "Pašalinti"
700
 
701
+ #: includes/ure-role-edit.php:392
702
  msgid "Remove User Capability"
703
  msgstr "Pašalinti Vartotojo Gebą"
704
 
705
  # @ ure
706
+ #: includes/ure-user-edit.php:67
707
  #, php-format
708
  msgid "User \"%s\" update: please confirm to continue"
709
  msgstr "Vartotojo \"%s\" atnaujinimas: prašome patvirtinti, kad tęstumėte"
710
 
711
+ #: includes/ure-user-edit.php:79
712
  msgid "Change capabilities for user"
713
  msgstr "Pakeisti šio vartotojo gebas"
714
 
715
  # @ ure
716
+ #: includes/ure-user-edit.php:82
717
  msgid "Role:"
718
  msgstr "Funkcija:"
719
 
720
+ #: includes/ure-user-edit.php:104
721
  msgid "Add capabilities to this user:"
722
  msgstr "Pridėti gebas šiam vartotojui:"
723
 
724
  # @ ure
725
+ #: includes/ure-options.php:59
726
  msgid "User Roles are restored from the backup data. "
727
  msgstr "Vartotojo Funkcijos atkurtos pagal atsarginės kopijos duomenis."
728
 
729
+ #: includes/ure-options.php:130
730
  msgid "Error: "
731
  msgstr "Klaida:"
732
 
733
  # @ ure
734
+ #: includes/ure-options.php:130
735
+ #: includes/ure-options.php:146
736
  msgid "Role"
737
  msgstr "Funkcija"
738
 
739
+ #: includes/ure-options.php:130
740
  msgid "does not exist"
741
  msgstr "neegzistuoja"
742
 
743
  # @ ure
744
+ #: includes/ure-options.php:146
745
  msgid "is updated successfully"
746
  msgstr "yra sėkmingai atnaujinta"
747
 
748
+ #: includes/ure-options.php:154
749
  msgid "User"
750
  msgstr "Vartotojas"
751
 
752
  # @ ure
753
+ #: includes/ure-options.php:154
754
  msgid "capabilities are updated successfully"
755
  msgstr "Gebos sėkmingai atnaujintos"
756
 
757
  # @ ure
758
+ #: includes/ure-options.php:232
759
  msgid "About this Plugin:"
760
  msgstr "Apie šį Papildinį:"
761
 
762
  # @ ure
763
+ #: includes/ure-options.php:233
764
  msgid "Author's website"
765
  msgstr "Autoriaus svetainė"
766
 
767
  # @ ure
768
+ #: includes/ure-options.php:234
769
  msgid "Plugin webpage"
770
  msgstr "Papildinio puslapis"
771
 
772
  # @ ure
773
+ #: includes/ure-options.php:236
774
  msgid "FAQ"
775
  msgstr "DUK"
776
 
777
  # @ ure
778
+ #: includes/ure-options.php:237
779
  msgid "Greetings"
780
  msgstr ""
781
 
782
  # @ ure
783
+ #: includes/ure-options.php:259
784
  msgid "Greetings:"
785
  msgstr "Pasisveikinimai:"
786
 
787
  # @ ure
788
+ #: includes/ure-options.php:260
789
  msgid "It's me, the author"
790
  msgstr "Čia aš, autorius"
791
 
792
  # @ ure
793
+ #: includes/ure-options.php:261
794
  msgid "For the help with Belorussian translation"
795
  msgstr "Ieškant pagalbos, verčiant į baltarusių kalbą"
796
 
797
  # @ ure
798
+ #: includes/ure-options.php:262
799
  msgid "For the help with Brasilian translation"
800
  msgstr "Ieškant pagalbos, verčiant į portugalų (Brazilija) kalbą"
801
 
802
  # @ ure
803
+ #: includes/ure-options.php:263
804
+ msgid "For the help with Brasilian Portuguese translation"
805
+ msgstr "Ieškant pagalbos, verčiant į portugalų (Brazilija) kalbą"
806
+
807
+ # @ ure
808
+ #: includes/ure-options.php:264
809
  msgid "For the help with Chinese translation"
810
  msgstr "Ieškant pagalbos, verčiant į kinų kalbą"
811
 
812
  # @ ure
813
+ #: includes/ure-options.php:265
814
  msgid "For the help with Dutch translation"
815
  msgstr "Ieškant pagalbos, verčiant į olandų kalbą"
816
 
817
  # @ ure
818
+ #: includes/ure-options.php:266
819
  msgid "For the help with Finnish translation"
820
  msgstr "Ieškant pagalbos, verčiant į suomių kalbą"
821
 
822
  # @ ure
823
+ #: includes/ure-options.php:267
824
+ #: includes/ure-options.php:268
825
  msgid "For the help with French translation"
826
  msgstr "Ieškant pagalbos, verčiant į prancūzų kalbą"
827
 
828
  # @ ure
829
+ #: includes/ure-options.php:269
830
  msgid "For the help with German translation"
831
  msgstr "Ieškant pagalbos, verčiant į vokiečių kalbą"
832
 
833
  # @ ure
834
+ #: includes/ure-options.php:270
835
+ #: includes/ure-options.php:271
836
  msgid "For the help with Hebrew translation"
837
  msgstr ""
838
 
839
  # @ ure
840
+ #: includes/ure-options.php:272
841
  msgid "For the help with Hindi translation"
842
  msgstr ""
843
 
844
  # @ ure
845
+ #: includes/ure-options.php:273
846
  msgid "For the help with Hungarian translation"
847
  msgstr "Ieškant pagalbos, verčiant į vengrų kalbą"
848
 
849
  # @ ure
850
+ #: includes/ure-options.php:274
851
+ #: includes/ure-options.php:275
852
  msgid "For the help with Italian translation"
853
  msgstr "Ieškant pagalbos, verčiant į italų kalbą"
854
 
855
  # @ ure
856
+ #: includes/ure-options.php:276
857
  msgid "For the help with Japanese translation"
858
  msgstr "Ieškant pagalbos, verčiant į japonų kalbą"
859
 
860
  # @ ure
861
+ #: includes/ure-options.php:277
862
  msgid "For the help with Lithuanian translation"
863
  msgstr ""
864
 
865
  # @ ure
866
+ #: includes/ure-options.php:278
867
+ #: includes/ure-options.php:279
868
+ #: includes/ure-options.php:280
869
  msgid "For the help with Persian translation"
870
  msgstr "Ieškant pagalbos, verčiant į persų kalbą"
871
 
872
  # @ ure
873
+ #: includes/ure-options.php:281
874
+ #: includes/ure-options.php:282
875
  msgid "For the help with Polish translation"
876
  msgstr "Ieškant pagalbos, verčiant į lenkų kalbą"
877
 
878
  # @ ure
879
+ #: includes/ure-options.php:283
880
+ #: includes/ure-options.php:284
881
  msgid "For the help with Spanish translation"
882
  msgstr "Ieškant pagalbos, verčiant į ispanų kalbą"
883
 
884
  # @ ure
885
+ #: includes/ure-options.php:285
886
  msgid "For the updated Swedish translation"
887
  msgstr ""
888
 
889
  # @ ure
890
+ #: includes/ure-options.php:286
891
  msgid "For the help with Swedish translation"
892
  msgstr "Ieškant pagalbos, verčiant į švedų kalbą"
893
 
894
  # @ ure
895
+ #: includes/ure-options.php:287
896
  msgid "For the help with Turkish translation"
897
  msgstr "Ieškant pagalbos, verčiant į turkų kalbą"
898
 
899
  # @ ure
900
+ #: includes/ure-options.php:289
901
  msgid "For the code to hide administrator role"
902
  msgstr "Kodui, paslėpti administratoriaus funkciją"
903
 
904
+ #: includes/ure-options.php:290
905
  msgid "For the code enhancement suggestion"
906
  msgstr "Kodo gerinimo pasiūlymams"
907
 
908
  # @ ure
909
+ #: includes/ure-options.php:292
910
  msgid "Do you wish to see your name with link to your site here? You are welcome! Your help with translation and new ideas are very appreciated."
911
  msgstr "Ar čia norėtumėte matyti savo vardą su nuoroda į Jūsų tinklapį? Maloniai prašome! Jūsų pagalba verčiant ir pateikiant naujas idėjas yra labai laukiama."
912
 
lang/ure-nl_BE.mo CHANGED
Binary file
lang/ure-nl_BE.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: 2012-06-23 23:25+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"
@@ -31,724 +31,741 @@ msgstr "Gelieve te Updaten"
31
  msgid "User Role Editor requires PHP 5.0 or newer."
32
  msgstr "User Role Editor vereist WordPress 3.0 of nieuwer."
33
 
34
- #: ../user-role-editor.php:65
35
  msgid "Only"
36
  msgstr ""
37
 
38
- #: ../user-role-editor.php:65
39
  msgid "is allowed to use"
40
  msgstr ""
41
 
42
- #: ../user-role-editor.php:71
43
- #: ../user-role-editor.php:246
44
  msgid "User Role Editor"
45
  msgstr "User Role Editor"
46
 
47
- #: ../user-role-editor.php:218
48
  msgid "Settings"
49
  msgstr "Instellingen"
50
 
51
- #: ../user-role-editor.php:228
52
- #: ../ure-options.php:218
53
  msgid "Changelog"
54
  msgstr "Changelog"
55
 
56
- #: ../user-role-editor.php:275
57
  msgid "Capabilities"
58
  msgstr ""
59
 
60
- #: ../ure-lib.php:45
61
  msgid "Error is occur. Please check the log file."
62
  msgstr "Er heeft zich een fout voorgedaan. Gelieve het logbestand na te zien."
63
 
64
- #: ../ure-lib.php:155
65
  msgid "Database operation error. Check log file."
66
  msgstr "Database operatie fout. Gelieve het logbestand na te zien."
67
 
68
- #: ../ure-lib.php:188
69
  msgid "No backup data. It is created automatically before the first role data update."
70
  msgstr "Er is geen reserve kopie. Een reserve kopie wordt automatisch aangemaakt voordat de eerste rol aangepast wordt."
71
 
72
- #: ../ure-lib.php:226
73
  msgid "Backup record is created for the current role capabilities"
74
  msgstr "De reservekopie is aangemaakt voor de huidige rol mogelijkheden"
75
 
76
- #: ../ure-lib.php:345
77
  msgid "Error: Role name must contain latin characters and digits only!"
78
  msgstr "Fout: Rol Naam mag enkel latijnse letters en cijfers bevatten!"
79
 
80
- #: ../ure-lib.php:352
81
  #, fuzzy, php-format
82
  msgid "Role %s exists already"
83
  msgstr "Rol %s is successvol aangemaakt"
84
 
85
- #: ../ure-lib.php:365
86
  msgid "Error is encountered during new role create operation"
87
  msgstr "Er heeft zich een fout voorgedaan tijdens het aanmaken van een nieuwe rol."
88
 
89
- #: ../ure-lib.php:367
90
  #, php-format
91
  msgid "Role %s is created successfully"
92
  msgstr "Rol %s is successvol aangemaakt"
93
 
94
- #: ../ure-lib.php:451
95
  msgid "Error encountered during role delete operation"
96
  msgstr "Er heeft zich een fout voorgedaan tijdens het verwijderen van de rol"
97
 
98
- #: ../ure-lib.php:453
99
  #, php-format
100
  msgid "Role %s is deleted successfully"
101
  msgstr "Rol %s is successvol verwijderd."
102
 
103
- #: ../ure-lib.php:471
104
  msgid "Error encountered during default role change operation"
105
  msgstr "Er heeft zich een fout voorgedaan tijdens het aanpassen van de standaard rol"
106
 
107
- #: ../ure-lib.php:477
108
  #, php-format
109
  msgid "Default role for new users is set to %s successfully"
110
  msgstr "De standaard rol voor nieuwe gebruikers is successvol ingesteld op %s"
111
 
112
- #: ../ure-lib.php:505
113
  msgid "Editor"
114
  msgstr "Editor"
115
 
116
- #: ../ure-lib.php:506
117
  msgid "Author"
118
  msgstr "Autheur"
119
 
120
- #: ../ure-lib.php:507
121
  msgid "Contributor"
122
  msgstr "Medewerker"
123
 
124
- #: ../ure-lib.php:508
125
  msgid "Subscriber"
126
  msgstr "Lid"
127
 
128
- #: ../ure-lib.php:510
129
  msgid "Switch themes"
130
  msgstr "Wissel Thema"
131
 
132
- #: ../ure-lib.php:511
133
  msgid "Edit themes"
134
  msgstr "Bewerk Thema"
135
 
136
- #: ../ure-lib.php:512
137
  msgid "Activate plugins"
138
  msgstr "Activeer Plugin"
139
 
140
- #: ../ure-lib.php:513
141
  msgid "Edit plugins"
142
  msgstr "Bewerk Plugin"
143
 
144
- #: ../ure-lib.php:514
145
  msgid "Edit users"
146
  msgstr "Bewerk gebruiker"
147
 
148
- #: ../ure-lib.php:515
149
  msgid "Edit files"
150
  msgstr "Bewerk bestanden"
151
 
152
- #: ../ure-lib.php:516
153
  msgid "Manage options"
154
  msgstr "Beheer Opties"
155
 
156
- #: ../ure-lib.php:517
157
  msgid "Moderate comments"
158
  msgstr "Beheer commentaar"
159
 
160
- #: ../ure-lib.php:518
161
  msgid "Manage categories"
162
  msgstr "Beheer Categorien"
163
 
164
- #: ../ure-lib.php:519
165
  msgid "Manage links"
166
  msgstr "Beheer HyperLinks"
167
 
168
- #: ../ure-lib.php:520
169
  msgid "Upload files"
170
  msgstr "Upload Bestanden"
171
 
172
- #: ../ure-lib.php:521
173
  msgid "Import"
174
  msgstr "Importeer"
175
 
176
- #: ../ure-lib.php:522
177
  msgid "Unfiltered html"
178
  msgstr "Ongefilterde HTML"
179
 
180
- #: ../ure-lib.php:523
181
  msgid "Edit posts"
182
  msgstr "Bewerk posts"
183
 
184
- #: ../ure-lib.php:524
185
  msgid "Edit others posts"
186
  msgstr "Bewerk Andere Posts"
187
 
188
- #: ../ure-lib.php:525
189
  msgid "Edit published posts"
190
  msgstr "Bewerk gepubliceerde Posts"
191
 
192
- #: ../ure-lib.php:526
193
  msgid "Publish posts"
194
  msgstr "Publiceer Posts"
195
 
196
- #: ../ure-lib.php:527
197
  msgid "Edit pages"
198
  msgstr "Bewerk Pagina's"
199
 
200
- #: ../ure-lib.php:528
201
  msgid "Read"
202
  msgstr "Lees"
203
 
204
- #: ../ure-lib.php:529
205
  msgid "Level 10"
206
  msgstr "Niveau1"
207
 
208
- #: ../ure-lib.php:530
209
  msgid "Level 9"
210
  msgstr "Niveau 9"
211
 
212
- #: ../ure-lib.php:531
213
  msgid "Level 8"
214
  msgstr "Niveau 8"
215
 
216
- #: ../ure-lib.php:532
217
  msgid "Level 7"
218
  msgstr "Niveau 7"
219
 
220
- #: ../ure-lib.php:533
221
  msgid "Level 6"
222
  msgstr "Niveau 6"
223
 
224
- #: ../ure-lib.php:534
225
  msgid "Level 5"
226
  msgstr "Niveau 5"
227
 
228
- #: ../ure-lib.php:535
229
  msgid "Level 4"
230
  msgstr "Niveau 4"
231
 
232
- #: ../ure-lib.php:536
233
  msgid "Level 3"
234
  msgstr "Niveau 3"
235
 
236
- #: ../ure-lib.php:537
237
  msgid "Level 2"
238
  msgstr "Niveau 2"
239
 
240
- #: ../ure-lib.php:538
241
  msgid "Level 1"
242
  msgstr "Niveau 1"
243
 
244
- #: ../ure-lib.php:539
245
  msgid "Level 0"
246
  msgstr "Niveau 0"
247
 
248
- #: ../ure-lib.php:540
249
  msgid "Edit others pages"
250
  msgstr "Bewerk Andere Pagina's"
251
 
252
- #: ../ure-lib.php:541
253
  msgid "Edit published pages"
254
  msgstr "Bewerk Gepubliceerde Pagina's"
255
 
256
- #: ../ure-lib.php:542
257
  msgid "Publish pages"
258
  msgstr "Publiceer Pagina's"
259
 
260
- #: ../ure-lib.php:543
261
  msgid "Delete pages"
262
  msgstr "Verwijder Pagina's"
263
 
264
- #: ../ure-lib.php:544
265
  msgid "Delete others pages"
266
  msgstr "Verwijder Andere Pagina's"
267
 
268
- #: ../ure-lib.php:545
269
  msgid "Delete published pages"
270
  msgstr "Verwijder Gepubliceerde Pagina's"
271
 
272
- #: ../ure-lib.php:546
273
  msgid "Delete posts"
274
  msgstr "Verwijder Posts"
275
 
276
- #: ../ure-lib.php:547
277
  msgid "Delete others posts"
278
  msgstr "Verwijder Andere Posts"
279
 
280
- #: ../ure-lib.php:548
281
  msgid "Delete published posts"
282
  msgstr "Verwijder Gepubliceerde Posts"
283
 
284
- #: ../ure-lib.php:549
285
  msgid "Delete private posts"
286
  msgstr "Verwijder private Posts"
287
 
288
- #: ../ure-lib.php:550
289
  msgid "Edit private posts"
290
  msgstr "Bewerk Private Posts"
291
 
292
- #: ../ure-lib.php:551
293
  msgid "Read private posts"
294
  msgstr "Lees Private posts"
295
 
296
- #: ../ure-lib.php:552
297
  msgid "Delete private pages"
298
  msgstr "Verwijder Private Pagina's"
299
 
300
- #: ../ure-lib.php:553
301
  msgid "Edit private pages"
302
  msgstr "Bewerk Private Pagina's"
303
 
304
- #: ../ure-lib.php:554
305
  msgid "Read private pages"
306
  msgstr "Lees Private Pagina's"
307
 
308
- #: ../ure-lib.php:555
309
  msgid "Delete users"
310
  msgstr "Verwijder Gebruikers"
311
 
312
- #: ../ure-lib.php:556
313
  msgid "Create users"
314
  msgstr "Maak Gebruiker"
315
 
316
- #: ../ure-lib.php:557
317
  msgid "Unfiltered upload"
318
  msgstr "Ongefilterde Upload"
319
 
320
- #: ../ure-lib.php:558
321
  msgid "Edit dashboard"
322
  msgstr "Bewerk Dashboard"
323
 
324
- #: ../ure-lib.php:559
325
  msgid "Update plugins"
326
  msgstr "Vernieuw Plugins"
327
 
328
- #: ../ure-lib.php:560
329
  msgid "Delete plugins"
330
  msgstr "Verwijder Plugins"
331
 
332
- #: ../ure-lib.php:561
333
  msgid "Install plugins"
334
  msgstr "Installeer Plugins"
335
 
336
- #: ../ure-lib.php:562
337
  msgid "Update themes"
338
  msgstr "Vernieuw Thema's"
339
 
340
- #: ../ure-lib.php:563
341
  msgid "Install themes"
342
  msgstr "Installeer Thema's"
343
 
344
- #: ../ure-lib.php:564
345
  msgid "Update core"
346
  msgstr ""
347
 
348
- #: ../ure-lib.php:565
349
  msgid "List users"
350
  msgstr ""
351
 
352
- #: ../ure-lib.php:566
353
  msgid "Remove users"
354
  msgstr ""
355
 
356
- #: ../ure-lib.php:567
357
  msgid "Add users"
358
  msgstr ""
359
 
360
- #: ../ure-lib.php:568
361
  msgid "Promote users"
362
  msgstr ""
363
 
364
- #: ../ure-lib.php:569
365
  msgid "Edit theme options"
366
  msgstr ""
367
 
368
- #: ../ure-lib.php:570
369
  msgid "Delete themes"
370
  msgstr ""
371
 
372
- #: ../ure-lib.php:571
373
  msgid "Export"
374
  msgstr ""
375
 
376
- #: ../ure-lib.php:655
377
  #, fuzzy
378
  msgid "Error: Capability name must contain latin characters and digits only!"
379
  msgstr "Fout: Rol Naam mag enkel latijnse letters en cijfers bevatten!"
380
 
381
- #: ../ure-lib.php:667
382
  #, fuzzy, php-format
383
  msgid "Capability %s is added successfully"
384
  msgstr "Rol %s is successvol aangemaakt"
385
 
386
- #: ../ure-lib.php:669
387
  #, php-format
388
  msgid "Capability %s exists already"
389
  msgstr ""
390
 
391
- #: ../ure-lib.php:818
392
  #, php-format
393
  msgid "Error! You do not have permission to delete this capability: %s!"
394
  msgstr ""
395
 
396
- #: ../ure-lib.php:840
397
  #, fuzzy, php-format
398
  msgid "Capability %s is removed successfully"
399
  msgstr "Rol %s is successvol aangemaakt"
400
 
401
- #: ../ure-lib.php:902
402
  msgid "Help"
403
  msgstr ""
404
 
405
- #: ../ure-role-edit.php:29
406
  #, fuzzy
407
  msgid "None"
408
  msgstr "Doneer"
409
 
410
- #: ../ure-role-edit.php:93
411
  #, fuzzy
412
  msgid " Name can not be empty!"
413
  msgstr "Rol Naam mag niet leeg zijn!"
414
 
415
- #: ../ure-role-edit.php:97
416
  #, fuzzy
417
  msgid " Name must contain latin characters and digits only!"
418
  msgstr "Rol Naam mag enkel latijnse letters en cijfers bevatten!"
419
 
420
- #: ../ure-role-edit.php:102
421
- #: ../ure-role-edit.php:293
422
  msgid "Delete Role"
423
  msgstr "Verwijder Rol"
424
 
425
- #: ../ure-role-edit.php:104
426
  msgid "Change Default Role"
427
  msgstr "Pas de standaard rol aan"
428
 
429
- #: ../ure-role-edit.php:106
430
  msgid "Restore Roles from backup copy. Be careful, backup was created when you started URE 1st time. All changes you made after that will be lost"
431
  msgstr ""
432
 
433
- #: ../ure-role-edit.php:108
434
  msgid "Warning! Be careful - removing critical capability could crash some plugin or other custom code"
435
  msgstr ""
436
 
437
- #: ../ure-role-edit.php:110
438
  msgid "Please confirm to continue"
439
  msgstr "Bevestig om verder te gaan"
440
 
441
- #: ../ure-role-edit.php:147
442
  #, php-format
443
  msgid "Role \"%s\" update: please confirm to continue"
444
  msgstr "Rol \"%s\" update: Gelieve te bevestigen om verder te gaan."
445
 
446
- #: ../ure-role-edit.php:155
447
  msgid "Select Role and change its capabilities list"
448
  msgstr "Selecteer de rol en pas de mogelijkheden lijst aan"
449
 
450
- #: ../ure-role-edit.php:157
451
  msgid "Select Role:"
452
  msgstr "Selecteer de Rol"
453
 
454
- #: ../ure-role-edit.php:167
455
- #: ../ure-user-edit.php:91
456
  msgid "Show capabilities in human readable form"
457
  msgstr "Toon de mogelijkheden in menselijke taal"
458
 
459
- #: ../ure-role-edit.php:176
460
- #: ../ure-user-edit.php:100
461
  msgid "Show deprecated capabilities"
462
  msgstr ""
463
 
464
- #: ../ure-role-edit.php:180
465
  msgid "If checked, then apply action to ALL sites of this Network"
466
  msgstr ""
467
 
468
- #: ../ure-role-edit.php:190
469
  msgid "Apply to All Sites"
470
  msgstr ""
471
 
472
- #: ../ure-role-edit.php:251
473
- #: ../ure-user-edit.php:163
 
 
 
 
 
 
 
 
 
 
474
  msgid "Update"
475
  msgstr "Vernieuw"
476
 
477
- #: ../ure-role-edit.php:251
478
- #: ../ure-user-edit.php:163
479
  msgid "Save Changes"
480
  msgstr "Opslaa"
481
 
482
- #: ../ure-role-edit.php:252
483
- #: ../ure-user-edit.php:164
484
  msgid "Cancel"
485
  msgstr "Annuleer"
486
 
487
- #: ../ure-role-edit.php:252
488
- #: ../ure-user-edit.php:164
489
  msgid "Cancel not saved changes"
490
  msgstr "Annuleer zonder op te slaan"
491
 
492
- #: ../ure-role-edit.php:255
493
  #, fuzzy
494
  msgid "Select All"
495
  msgstr "Selecteer de Rol"
496
 
497
- #: ../ure-role-edit.php:255
498
  msgid "Select All Capabilities"
499
  msgstr ""
500
 
501
- #: ../ure-role-edit.php:256
502
  msgid "Unselect All"
503
  msgstr ""
504
 
505
- #: ../ure-role-edit.php:256
506
  msgid "Unselect All Capabilities"
507
  msgstr ""
508
 
509
- #: ../ure-role-edit.php:257
510
  msgid "Reverse"
511
  msgstr ""
512
 
513
- #: ../ure-role-edit.php:257
514
  msgid "Turn checked capabilities off and vise versa"
515
  msgstr ""
516
 
517
- #: ../ure-role-edit.php:260
518
  msgid "Reset"
519
  msgstr "herstel"
520
 
521
- #: ../ure-role-edit.php:260
522
  msgid "Restore Roles from backup copy"
523
  msgstr "Herstel rollen vanaf herstelkopie."
524
 
525
- #: ../ure-role-edit.php:270
526
  msgid "Add New Role"
527
  msgstr "Voeg nieuwe rol toe"
528
 
529
- #: ../ure-role-edit.php:272
530
  msgid "Name: "
531
  msgstr ""
532
 
533
- #: ../ure-role-edit.php:276
534
  msgid "Make copy of: "
535
  msgstr ""
536
 
537
- #: ../ure-role-edit.php:279
538
- #: ../ure-role-edit.php:308
539
  msgid "Add"
540
  msgstr "Voeg Toe"
541
 
542
- #: ../ure-role-edit.php:279
543
  msgid "Add New User Role"
544
  msgstr "Voeg Nieuwe Gebruikersrol Toe"
545
 
546
- #: ../ure-role-edit.php:283
547
  msgid "Default Role for New User"
548
  msgstr "Standaard rol voor nieuwe gebruiker"
549
 
550
- #: ../ure-role-edit.php:288
551
  msgid "Change"
552
  msgstr "Pas Aan"
553
 
554
- #: ../ure-role-edit.php:288
555
  msgid "Set as Default User Role"
556
  msgstr "Stel in als Standaard Gebruikers Rol"
557
 
558
- #: ../ure-role-edit.php:298
559
  msgid "Delete"
560
  msgstr "Verwijder"
561
 
562
- #: ../ure-role-edit.php:298
563
  msgid "Delete User Role"
564
  msgstr "Verwijder Gebruikersrol"
565
 
566
- #: ../ure-role-edit.php:303
567
- #: ../ure-role-edit.php:308
568
  #, fuzzy
569
  msgid "Add New Capability"
570
  msgstr "Voeg nieuwe rol toe"
571
 
572
- #: ../ure-role-edit.php:313
573
  msgid "Remove Capability"
574
  msgstr ""
575
 
576
- #: ../ure-role-edit.php:318
577
  msgid "Remove"
578
  msgstr ""
579
 
580
- #: ../ure-role-edit.php:318
581
  msgid "Remove User Capability"
582
  msgstr ""
583
 
584
- #: ../ure-user-edit.php:67
585
  #, fuzzy, php-format
586
  msgid "User \"%s\" update: please confirm to continue"
587
  msgstr "Rol \"%s\" update: Gelieve te bevestigen om verder te gaan."
588
 
589
- #: ../ure-user-edit.php:79
590
  msgid "Change capabilities for user"
591
  msgstr ""
592
 
593
- #: ../ure-user-edit.php:82
594
  #, fuzzy
595
  msgid "Role:"
596
  msgstr "Rol"
597
 
598
- #: ../ure-user-edit.php:104
599
  msgid "Add capabilities to this user:"
600
  msgstr ""
601
 
602
- #: ../ure-options.php:59
603
  #, fuzzy
604
  msgid "User Roles are restored from the backup data. "
605
  msgstr "Rol mogelijkheden zijn hersteld vanaf de reservekopie."
606
 
607
- #: ../ure-options.php:125
608
  msgid "Error: "
609
  msgstr ""
610
 
611
- #: ../ure-options.php:125
612
- #: ../ure-options.php:143
613
  msgid "Role"
614
  msgstr "Rol"
615
 
616
- #: ../ure-options.php:125
617
  msgid "does not exist"
618
  msgstr ""
619
 
620
- #: ../ure-options.php:143
621
  msgid "is updated successfully"
622
  msgstr "is successvol vernieuwd."
623
 
624
- #: ../ure-options.php:152
625
  msgid "User"
626
  msgstr ""
627
 
628
- #: ../ure-options.php:152
629
  #, fuzzy
630
  msgid "capabilities are updated successfully"
631
  msgstr "is successvol vernieuwd."
632
 
633
- #: ../ure-options.php:215
634
  msgid "About this Plugin:"
635
  msgstr "Over deze Plugin:"
636
 
637
- #: ../ure-options.php:216
638
  msgid "Author's website"
639
  msgstr "site van de auteur"
640
 
641
- #: ../ure-options.php:217
642
  msgid "Plugin webpage"
643
  msgstr "Plugin Webpagina"
644
 
645
- #: ../ure-options.php:219
646
  msgid "FAQ"
647
  msgstr "FAQ"
648
 
649
- #: ../ure-options.php:220
650
  msgid "Greetings"
651
  msgstr ""
652
 
653
- #: ../ure-options.php:242
654
  msgid "Greetings:"
655
  msgstr "Begroetingen:"
656
 
657
- #: ../ure-options.php:243
658
  msgid "It's me, the author"
659
  msgstr "Dit ben Ik, De Auteur."
660
 
661
- #: ../ure-options.php:244
662
  msgid "For the help with Belorussian translation"
663
  msgstr "voor hulp met de Belorussische vertaling"
664
 
665
- #: ../ure-options.php:245
666
  msgid "For the help with Brasilian translation"
667
  msgstr ""
668
 
669
- #: ../ure-options.php:246
 
 
 
 
 
670
  msgid "For the help with Chinese translation"
671
  msgstr "voor hulp met de Chinese vertaling"
672
 
673
- #: ../ure-options.php:247
674
  msgid "For the help with Dutch translation"
675
  msgstr "voor het vertalen naar het Nederlands en een nuttig idee"
676
 
677
- #: ../ure-options.php:248
678
  msgid "For the help with Finnish translation"
679
  msgstr "Voor hulp met de Finnish vertaling"
680
 
681
- #: ../ure-options.php:249
682
- #: ../ure-options.php:250
683
  msgid "For the help with French translation"
684
  msgstr "voor hulp met de Franse vertaling"
685
 
686
- #: ../ure-options.php:251
687
  msgid "For the help with German translation"
688
  msgstr "voor hulp met de Duitse vertaling"
689
 
690
- #: ../ure-options.php:252
691
- #: ../ure-options.php:253
692
  msgid "For the help with Hebrew translation"
693
  msgstr ""
694
 
695
- #: ../ure-options.php:254
696
  msgid "For the help with Hindi translation"
697
  msgstr ""
698
 
699
- #: ../ure-options.php:255
700
  msgid "For the help with Hungarian translation"
701
  msgstr "voor hulp met de Honghaarse vertaling"
702
 
703
- #: ../ure-options.php:256
704
- #: ../ure-options.php:257
705
  msgid "For the help with Italian translation"
706
  msgstr "voor hulp met de Italiaanse vertaling"
707
 
708
- #: ../ure-options.php:258
709
  msgid "For the help with Japanese translation"
710
  msgstr "voor hulp met de Japanse vertaling"
711
 
712
- #: ../ure-options.php:259
713
  msgid "For the help with Lithuanian translation"
714
  msgstr ""
715
 
716
- #: ../ure-options.php:260
717
- #: ../ure-options.php:261
 
718
  msgid "For the help with Persian translation"
719
  msgstr ""
720
 
721
- #: ../ure-options.php:262
 
722
  msgid "For the help with Polish translation"
723
  msgstr "voor hulp met de Poolse vertaling"
724
 
725
- #: ../ure-options.php:263
726
- #: ../ure-options.php:264
727
  msgid "For the help with Spanish translation"
728
  msgstr "Voor hulp met de Spaanse vertaling"
729
 
730
- #: ../ure-options.php:265
731
  #, fuzzy
732
  msgid "For the updated Swedish translation"
733
  msgstr "Voor hulp met de Swedish vertaling"
734
 
735
- #: ../ure-options.php:266
736
  msgid "For the help with Swedish translation"
737
  msgstr "Voor hulp met de Swedish vertaling"
738
 
739
- #: ../ure-options.php:267
740
  msgid "For the help with Turkish translation"
741
  msgstr ""
742
 
743
- #: ../ure-options.php:269
744
  msgid "For the code to hide administrator role"
745
  msgstr "voor de code om de administratie rol te verbergen"
746
 
747
- #: ../ure-options.php:270
748
  msgid "For the code enhancement suggestion"
749
  msgstr ""
750
 
751
- #: ../ure-options.php:272
752
  msgid "Do you wish to see your name with link to your site here? You are welcome! Your help with translation and new ideas are very appreciated."
753
  msgstr "Wenst u uw naam met link naar uw website hier te zien? Geen probleem! Uw hulp met het vertalen en nieuwe ideen wordt sterk geappricieerd."
754
 
2
  msgstr ""
3
  "Project-Id-Version: User Role Editor 2.0\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-09-01 08:49+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"
31
  msgid "User Role Editor requires PHP 5.0 or newer."
32
  msgstr "User Role Editor vereist WordPress 3.0 of nieuwer."
33
 
34
+ #: ../user-role-editor.php:76
35
  msgid "Only"
36
  msgstr ""
37
 
38
+ #: ../user-role-editor.php:76
39
  msgid "is allowed to use"
40
  msgstr ""
41
 
42
+ #: ../user-role-editor.php:82
43
+ #: ../user-role-editor.php:251
44
  msgid "User Role Editor"
45
  msgstr "User Role Editor"
46
 
47
+ #: ../user-role-editor.php:223
48
  msgid "Settings"
49
  msgstr "Instellingen"
50
 
51
+ #: ../user-role-editor.php:233
52
+ #: ../includes/ure-options.php:235
53
  msgid "Changelog"
54
  msgstr "Changelog"
55
 
56
+ #: ../user-role-editor.php:280
57
  msgid "Capabilities"
58
  msgstr ""
59
 
60
+ #: ../includes/ure-lib.php:34
61
  msgid "Error is occur. Please check the log file."
62
  msgstr "Er heeft zich een fout voorgedaan. Gelieve het logbestand na te zien."
63
 
64
+ #: ../includes/ure-lib.php:144
65
  msgid "Database operation error. Check log file."
66
  msgstr "Database operatie fout. Gelieve het logbestand na te zien."
67
 
68
+ #: ../includes/ure-lib.php:177
69
  msgid "No backup data. It is created automatically before the first role data update."
70
  msgstr "Er is geen reserve kopie. Een reserve kopie wordt automatisch aangemaakt voordat de eerste rol aangepast wordt."
71
 
72
+ #: ../includes/ure-lib.php:215
73
  msgid "Backup record is created for the current role capabilities"
74
  msgstr "De reservekopie is aangemaakt voor de huidige rol mogelijkheden"
75
 
76
+ #: ../includes/ure-lib.php:329
77
  msgid "Error: Role name must contain latin characters and digits only!"
78
  msgstr "Fout: Rol Naam mag enkel latijnse letters en cijfers bevatten!"
79
 
80
+ #: ../includes/ure-lib.php:336
81
  #, fuzzy, php-format
82
  msgid "Role %s exists already"
83
  msgstr "Rol %s is successvol aangemaakt"
84
 
85
+ #: ../includes/ure-lib.php:349
86
  msgid "Error is encountered during new role create operation"
87
  msgstr "Er heeft zich een fout voorgedaan tijdens het aanmaken van een nieuwe rol."
88
 
89
+ #: ../includes/ure-lib.php:351
90
  #, php-format
91
  msgid "Role %s is created successfully"
92
  msgstr "Rol %s is successvol aangemaakt"
93
 
94
+ #: ../includes/ure-lib.php:435
95
  msgid "Error encountered during role delete operation"
96
  msgstr "Er heeft zich een fout voorgedaan tijdens het verwijderen van de rol"
97
 
98
+ #: ../includes/ure-lib.php:437
99
  #, php-format
100
  msgid "Role %s is deleted successfully"
101
  msgstr "Rol %s is successvol verwijderd."
102
 
103
+ #: ../includes/ure-lib.php:455
104
  msgid "Error encountered during default role change operation"
105
  msgstr "Er heeft zich een fout voorgedaan tijdens het aanpassen van de standaard rol"
106
 
107
+ #: ../includes/ure-lib.php:461
108
  #, php-format
109
  msgid "Default role for new users is set to %s successfully"
110
  msgstr "De standaard rol voor nieuwe gebruikers is successvol ingesteld op %s"
111
 
112
+ #: ../includes/ure-lib.php:489
113
  msgid "Editor"
114
  msgstr "Editor"
115
 
116
+ #: ../includes/ure-lib.php:490
117
  msgid "Author"
118
  msgstr "Autheur"
119
 
120
+ #: ../includes/ure-lib.php:491
121
  msgid "Contributor"
122
  msgstr "Medewerker"
123
 
124
+ #: ../includes/ure-lib.php:492
125
  msgid "Subscriber"
126
  msgstr "Lid"
127
 
128
+ #: ../includes/ure-lib.php:494
129
  msgid "Switch themes"
130
  msgstr "Wissel Thema"
131
 
132
+ #: ../includes/ure-lib.php:495
133
  msgid "Edit themes"
134
  msgstr "Bewerk Thema"
135
 
136
+ #: ../includes/ure-lib.php:496
137
  msgid "Activate plugins"
138
  msgstr "Activeer Plugin"
139
 
140
+ #: ../includes/ure-lib.php:497
141
  msgid "Edit plugins"
142
  msgstr "Bewerk Plugin"
143
 
144
+ #: ../includes/ure-lib.php:498
145
  msgid "Edit users"
146
  msgstr "Bewerk gebruiker"
147
 
148
+ #: ../includes/ure-lib.php:499
149
  msgid "Edit files"
150
  msgstr "Bewerk bestanden"
151
 
152
+ #: ../includes/ure-lib.php:500
153
  msgid "Manage options"
154
  msgstr "Beheer Opties"
155
 
156
+ #: ../includes/ure-lib.php:501
157
  msgid "Moderate comments"
158
  msgstr "Beheer commentaar"
159
 
160
+ #: ../includes/ure-lib.php:502
161
  msgid "Manage categories"
162
  msgstr "Beheer Categorien"
163
 
164
+ #: ../includes/ure-lib.php:503
165
  msgid "Manage links"
166
  msgstr "Beheer HyperLinks"
167
 
168
+ #: ../includes/ure-lib.php:504
169
  msgid "Upload files"
170
  msgstr "Upload Bestanden"
171
 
172
+ #: ../includes/ure-lib.php:505
173
  msgid "Import"
174
  msgstr "Importeer"
175
 
176
+ #: ../includes/ure-lib.php:506
177
  msgid "Unfiltered html"
178
  msgstr "Ongefilterde HTML"
179
 
180
+ #: ../includes/ure-lib.php:507
181
  msgid "Edit posts"
182
  msgstr "Bewerk posts"
183
 
184
+ #: ../includes/ure-lib.php:508
185
  msgid "Edit others posts"
186
  msgstr "Bewerk Andere Posts"
187
 
188
+ #: ../includes/ure-lib.php:509
189
  msgid "Edit published posts"
190
  msgstr "Bewerk gepubliceerde Posts"
191
 
192
+ #: ../includes/ure-lib.php:510
193
  msgid "Publish posts"
194
  msgstr "Publiceer Posts"
195
 
196
+ #: ../includes/ure-lib.php:511
197
  msgid "Edit pages"
198
  msgstr "Bewerk Pagina's"
199
 
200
+ #: ../includes/ure-lib.php:512
201
  msgid "Read"
202
  msgstr "Lees"
203
 
204
+ #: ../includes/ure-lib.php:513
205
  msgid "Level 10"
206
  msgstr "Niveau1"
207
 
208
+ #: ../includes/ure-lib.php:514
209
  msgid "Level 9"
210
  msgstr "Niveau 9"
211
 
212
+ #: ../includes/ure-lib.php:515
213
  msgid "Level 8"
214
  msgstr "Niveau 8"
215
 
216
+ #: ../includes/ure-lib.php:516
217
  msgid "Level 7"
218
  msgstr "Niveau 7"
219
 
220
+ #: ../includes/ure-lib.php:517
221
  msgid "Level 6"
222
  msgstr "Niveau 6"
223
 
224
+ #: ../includes/ure-lib.php:518
225
  msgid "Level 5"
226
  msgstr "Niveau 5"
227
 
228
+ #: ../includes/ure-lib.php:519
229
  msgid "Level 4"
230
  msgstr "Niveau 4"
231
 
232
+ #: ../includes/ure-lib.php:520
233
  msgid "Level 3"
234
  msgstr "Niveau 3"
235
 
236
+ #: ../includes/ure-lib.php:521
237
  msgid "Level 2"
238
  msgstr "Niveau 2"
239
 
240
+ #: ../includes/ure-lib.php:522
241
  msgid "Level 1"
242
  msgstr "Niveau 1"
243
 
244
+ #: ../includes/ure-lib.php:523
245
  msgid "Level 0"
246
  msgstr "Niveau 0"
247
 
248
+ #: ../includes/ure-lib.php:524
249
  msgid "Edit others pages"
250
  msgstr "Bewerk Andere Pagina's"
251
 
252
+ #: ../includes/ure-lib.php:525
253
  msgid "Edit published pages"
254
  msgstr "Bewerk Gepubliceerde Pagina's"
255
 
256
+ #: ../includes/ure-lib.php:526
257
  msgid "Publish pages"
258
  msgstr "Publiceer Pagina's"
259
 
260
+ #: ../includes/ure-lib.php:527
261
  msgid "Delete pages"
262
  msgstr "Verwijder Pagina's"
263
 
264
+ #: ../includes/ure-lib.php:528
265
  msgid "Delete others pages"
266
  msgstr "Verwijder Andere Pagina's"
267
 
268
+ #: ../includes/ure-lib.php:529
269
  msgid "Delete published pages"
270
  msgstr "Verwijder Gepubliceerde Pagina's"
271
 
272
+ #: ../includes/ure-lib.php:530
273
  msgid "Delete posts"
274
  msgstr "Verwijder Posts"
275
 
276
+ #: ../includes/ure-lib.php:531
277
  msgid "Delete others posts"
278
  msgstr "Verwijder Andere Posts"
279
 
280
+ #: ../includes/ure-lib.php:532
281
  msgid "Delete published posts"
282
  msgstr "Verwijder Gepubliceerde Posts"
283
 
284
+ #: ../includes/ure-lib.php:533
285
  msgid "Delete private posts"
286
  msgstr "Verwijder private Posts"
287
 
288
+ #: ../includes/ure-lib.php:534
289
  msgid "Edit private posts"
290
  msgstr "Bewerk Private Posts"
291
 
292
+ #: ../includes/ure-lib.php:535
293
  msgid "Read private posts"
294
  msgstr "Lees Private posts"
295
 
296
+ #: ../includes/ure-lib.php:536
297
  msgid "Delete private pages"
298
  msgstr "Verwijder Private Pagina's"
299
 
300
+ #: ../includes/ure-lib.php:537
301
  msgid "Edit private pages"
302
  msgstr "Bewerk Private Pagina's"
303
 
304
+ #: ../includes/ure-lib.php:538
305
  msgid "Read private pages"
306
  msgstr "Lees Private Pagina's"
307
 
308
+ #: ../includes/ure-lib.php:539
309
  msgid "Delete users"
310
  msgstr "Verwijder Gebruikers"
311
 
312
+ #: ../includes/ure-lib.php:540
313
  msgid "Create users"
314
  msgstr "Maak Gebruiker"
315
 
316
+ #: ../includes/ure-lib.php:541
317
  msgid "Unfiltered upload"
318
  msgstr "Ongefilterde Upload"
319
 
320
+ #: ../includes/ure-lib.php:542
321
  msgid "Edit dashboard"
322
  msgstr "Bewerk Dashboard"
323
 
324
+ #: ../includes/ure-lib.php:543
325
  msgid "Update plugins"
326
  msgstr "Vernieuw Plugins"
327
 
328
+ #: ../includes/ure-lib.php:544
329
  msgid "Delete plugins"
330
  msgstr "Verwijder Plugins"
331
 
332
+ #: ../includes/ure-lib.php:545
333
  msgid "Install plugins"
334
  msgstr "Installeer Plugins"
335
 
336
+ #: ../includes/ure-lib.php:546
337
  msgid "Update themes"
338
  msgstr "Vernieuw Thema's"
339
 
340
+ #: ../includes/ure-lib.php:547
341
  msgid "Install themes"
342
  msgstr "Installeer Thema's"
343
 
344
+ #: ../includes/ure-lib.php:548
345
  msgid "Update core"
346
  msgstr ""
347
 
348
+ #: ../includes/ure-lib.php:549
349
  msgid "List users"
350
  msgstr ""
351
 
352
+ #: ../includes/ure-lib.php:550
353
  msgid "Remove users"
354
  msgstr ""
355
 
356
+ #: ../includes/ure-lib.php:551
357
  msgid "Add users"
358
  msgstr ""
359
 
360
+ #: ../includes/ure-lib.php:552
361
  msgid "Promote users"
362
  msgstr ""
363
 
364
+ #: ../includes/ure-lib.php:553
365
  msgid "Edit theme options"
366
  msgstr ""
367
 
368
+ #: ../includes/ure-lib.php:554
369
  msgid "Delete themes"
370
  msgstr ""
371
 
372
+ #: ../includes/ure-lib.php:555
373
  msgid "Export"
374
  msgstr ""
375
 
376
+ #: ../includes/ure-lib.php:639
377
  #, fuzzy
378
  msgid "Error: Capability name must contain latin characters and digits only!"
379
  msgstr "Fout: Rol Naam mag enkel latijnse letters en cijfers bevatten!"
380
 
381
+ #: ../includes/ure-lib.php:651
382
  #, fuzzy, php-format
383
  msgid "Capability %s is added successfully"
384
  msgstr "Rol %s is successvol aangemaakt"
385
 
386
+ #: ../includes/ure-lib.php:653
387
  #, php-format
388
  msgid "Capability %s exists already"
389
  msgstr ""
390
 
391
+ #: ../includes/ure-lib.php:802
392
  #, php-format
393
  msgid "Error! You do not have permission to delete this capability: %s!"
394
  msgstr ""
395
 
396
+ #: ../includes/ure-lib.php:824
397
  #, fuzzy, php-format
398
  msgid "Capability %s is removed successfully"
399
  msgstr "Rol %s is successvol aangemaakt"
400
 
401
+ #: ../includes/ure-lib.php:889
402
  msgid "Help"
403
  msgstr ""
404
 
405
+ #: ../includes/ure-role-edit.php:29
406
  #, fuzzy
407
  msgid "None"
408
  msgstr "Doneer"
409
 
410
+ #: ../includes/ure-role-edit.php:101
411
  #, fuzzy
412
  msgid " Name can not be empty!"
413
  msgstr "Rol Naam mag niet leeg zijn!"
414
 
415
+ #: ../includes/ure-role-edit.php:105
416
  #, fuzzy
417
  msgid " Name must contain latin characters and digits only!"
418
  msgstr "Rol Naam mag enkel latijnse letters en cijfers bevatten!"
419
 
420
+ #: ../includes/ure-role-edit.php:110
421
+ #: ../includes/ure-role-edit.php:367
422
  msgid "Delete Role"
423
  msgstr "Verwijder Rol"
424
 
425
+ #: ../includes/ure-role-edit.php:112
426
  msgid "Change Default Role"
427
  msgstr "Pas de standaard rol aan"
428
 
429
+ #: ../includes/ure-role-edit.php:114
430
  msgid "Restore Roles from backup copy. Be careful, backup was created when you started URE 1st time. All changes you made after that will be lost"
431
  msgstr ""
432
 
433
+ #: ../includes/ure-role-edit.php:116
434
  msgid "Warning! Be careful - removing critical capability could crash some plugin or other custom code"
435
  msgstr ""
436
 
437
+ #: ../includes/ure-role-edit.php:118
438
  msgid "Please confirm to continue"
439
  msgstr "Bevestig om verder te gaan"
440
 
441
+ #: ../includes/ure-role-edit.php:155
442
  #, php-format
443
  msgid "Role \"%s\" update: please confirm to continue"
444
  msgstr "Rol \"%s\" update: Gelieve te bevestigen om verder te gaan."
445
 
446
+ #: ../includes/ure-role-edit.php:163
447
  msgid "Select Role and change its capabilities list"
448
  msgstr "Selecteer de rol en pas de mogelijkheden lijst aan"
449
 
450
+ #: ../includes/ure-role-edit.php:165
451
  msgid "Select Role:"
452
  msgstr "Selecteer de Rol"
453
 
454
+ #: ../includes/ure-role-edit.php:175
455
+ #: ../includes/ure-user-edit.php:91
456
  msgid "Show capabilities in human readable form"
457
  msgstr "Toon de mogelijkheden in menselijke taal"
458
 
459
+ #: ../includes/ure-role-edit.php:184
460
+ #: ../includes/ure-user-edit.php:100
461
  msgid "Show deprecated capabilities"
462
  msgstr ""
463
 
464
+ #: ../includes/ure-role-edit.php:188
465
  msgid "If checked, then apply action to ALL sites of this Network"
466
  msgstr ""
467
 
468
+ #: ../includes/ure-role-edit.php:198
469
  msgid "Apply to All Sites"
470
  msgstr ""
471
 
472
+ #: ../includes/ure-role-edit.php:205
473
+ #: ../includes/ure-user-edit.php:105
474
+ msgid "Core capabilities:"
475
+ msgstr ""
476
+
477
+ #: ../includes/ure-role-edit.php:268
478
+ #: ../includes/ure-user-edit.php:167
479
+ msgid "Custom capabilities:"
480
+ msgstr ""
481
+
482
+ #: ../includes/ure-role-edit.php:319
483
+ #: ../includes/ure-user-edit.php:222
484
  msgid "Update"
485
  msgstr "Vernieuw"
486
 
487
+ #: ../includes/ure-role-edit.php:319
488
+ #: ../includes/ure-user-edit.php:222
489
  msgid "Save Changes"
490
  msgstr "Opslaa"
491
 
492
+ #: ../includes/ure-role-edit.php:320
493
+ #: ../includes/ure-user-edit.php:223
494
  msgid "Cancel"
495
  msgstr "Annuleer"
496
 
497
+ #: ../includes/ure-role-edit.php:320
498
+ #: ../includes/ure-user-edit.php:223
499
  msgid "Cancel not saved changes"
500
  msgstr "Annuleer zonder op te slaan"
501
 
502
+ #: ../includes/ure-role-edit.php:323
503
  #, fuzzy
504
  msgid "Select All"
505
  msgstr "Selecteer de Rol"
506
 
507
+ #: ../includes/ure-role-edit.php:323
508
  msgid "Select All Capabilities"
509
  msgstr ""
510
 
511
+ #: ../includes/ure-role-edit.php:327
512
  msgid "Unselect All"
513
  msgstr ""
514
 
515
+ #: ../includes/ure-role-edit.php:327
516
  msgid "Unselect All Capabilities"
517
  msgstr ""
518
 
519
+ #: ../includes/ure-role-edit.php:328
520
  msgid "Reverse"
521
  msgstr ""
522
 
523
+ #: ../includes/ure-role-edit.php:328
524
  msgid "Turn checked capabilities off and vise versa"
525
  msgstr ""
526
 
527
+ #: ../includes/ure-role-edit.php:334
528
  msgid "Reset"
529
  msgstr "herstel"
530
 
531
+ #: ../includes/ure-role-edit.php:334
532
  msgid "Restore Roles from backup copy"
533
  msgstr "Herstel rollen vanaf herstelkopie."
534
 
535
+ #: ../includes/ure-role-edit.php:344
536
  msgid "Add New Role"
537
  msgstr "Voeg nieuwe rol toe"
538
 
539
+ #: ../includes/ure-role-edit.php:346
540
  msgid "Name: "
541
  msgstr ""
542
 
543
+ #: ../includes/ure-role-edit.php:350
544
  msgid "Make copy of: "
545
  msgstr ""
546
 
547
+ #: ../includes/ure-role-edit.php:353
548
+ #: ../includes/ure-role-edit.php:382
549
  msgid "Add"
550
  msgstr "Voeg Toe"
551
 
552
+ #: ../includes/ure-role-edit.php:353
553
  msgid "Add New User Role"
554
  msgstr "Voeg Nieuwe Gebruikersrol Toe"
555
 
556
+ #: ../includes/ure-role-edit.php:357
557
  msgid "Default Role for New User"
558
  msgstr "Standaard rol voor nieuwe gebruiker"
559
 
560
+ #: ../includes/ure-role-edit.php:362
561
  msgid "Change"
562
  msgstr "Pas Aan"
563
 
564
+ #: ../includes/ure-role-edit.php:362
565
  msgid "Set as Default User Role"
566
  msgstr "Stel in als Standaard Gebruikers Rol"
567
 
568
+ #: ../includes/ure-role-edit.php:372
569
  msgid "Delete"
570
  msgstr "Verwijder"
571
 
572
+ #: ../includes/ure-role-edit.php:372
573
  msgid "Delete User Role"
574
  msgstr "Verwijder Gebruikersrol"
575
 
576
+ #: ../includes/ure-role-edit.php:377
577
+ #: ../includes/ure-role-edit.php:382
578
  #, fuzzy
579
  msgid "Add New Capability"
580
  msgstr "Voeg nieuwe rol toe"
581
 
582
+ #: ../includes/ure-role-edit.php:387
583
  msgid "Remove Capability"
584
  msgstr ""
585
 
586
+ #: ../includes/ure-role-edit.php:392
587
  msgid "Remove"
588
  msgstr ""
589
 
590
+ #: ../includes/ure-role-edit.php:392
591
  msgid "Remove User Capability"
592
  msgstr ""
593
 
594
+ #: ../includes/ure-user-edit.php:67
595
  #, fuzzy, php-format
596
  msgid "User \"%s\" update: please confirm to continue"
597
  msgstr "Rol \"%s\" update: Gelieve te bevestigen om verder te gaan."
598
 
599
+ #: ../includes/ure-user-edit.php:79
600
  msgid "Change capabilities for user"
601
  msgstr ""
602
 
603
+ #: ../includes/ure-user-edit.php:82
604
  #, fuzzy
605
  msgid "Role:"
606
  msgstr "Rol"
607
 
608
+ #: ../includes/ure-user-edit.php:104
609
  msgid "Add capabilities to this user:"
610
  msgstr ""
611
 
612
+ #: ../includes/ure-options.php:59
613
  #, fuzzy
614
  msgid "User Roles are restored from the backup data. "
615
  msgstr "Rol mogelijkheden zijn hersteld vanaf de reservekopie."
616
 
617
+ #: ../includes/ure-options.php:130
618
  msgid "Error: "
619
  msgstr ""
620
 
621
+ #: ../includes/ure-options.php:130
622
+ #: ../includes/ure-options.php:146
623
  msgid "Role"
624
  msgstr "Rol"
625
 
626
+ #: ../includes/ure-options.php:130
627
  msgid "does not exist"
628
  msgstr ""
629
 
630
+ #: ../includes/ure-options.php:146
631
  msgid "is updated successfully"
632
  msgstr "is successvol vernieuwd."
633
 
634
+ #: ../includes/ure-options.php:154
635
  msgid "User"
636
  msgstr ""
637
 
638
+ #: ../includes/ure-options.php:154
639
  #, fuzzy
640
  msgid "capabilities are updated successfully"
641
  msgstr "is successvol vernieuwd."
642
 
643
+ #: ../includes/ure-options.php:232
644
  msgid "About this Plugin:"
645
  msgstr "Over deze Plugin:"
646
 
647
+ #: ../includes/ure-options.php:233
648
  msgid "Author's website"
649
  msgstr "site van de auteur"
650
 
651
+ #: ../includes/ure-options.php:234
652
  msgid "Plugin webpage"
653
  msgstr "Plugin Webpagina"
654
 
655
+ #: ../includes/ure-options.php:236
656
  msgid "FAQ"
657
  msgstr "FAQ"
658
 
659
+ #: ../includes/ure-options.php:237
660
  msgid "Greetings"
661
  msgstr ""
662
 
663
+ #: ../includes/ure-options.php:259
664
  msgid "Greetings:"
665
  msgstr "Begroetingen:"
666
 
667
+ #: ../includes/ure-options.php:260
668
  msgid "It's me, the author"
669
  msgstr "Dit ben Ik, De Auteur."
670
 
671
+ #: ../includes/ure-options.php:261
672
  msgid "For the help with Belorussian translation"
673
  msgstr "voor hulp met de Belorussische vertaling"
674
 
675
+ #: ../includes/ure-options.php:262
676
  msgid "For the help with Brasilian translation"
677
  msgstr ""
678
 
679
+ #: ../includes/ure-options.php:263
680
+ #, fuzzy
681
+ msgid "For the help with Brasilian Portuguese translation"
682
+ msgstr "voor hulp met de Japanse vertaling"
683
+
684
+ #: ../includes/ure-options.php:264
685
  msgid "For the help with Chinese translation"
686
  msgstr "voor hulp met de Chinese vertaling"
687
 
688
+ #: ../includes/ure-options.php:265
689
  msgid "For the help with Dutch translation"
690
  msgstr "voor het vertalen naar het Nederlands en een nuttig idee"
691
 
692
+ #: ../includes/ure-options.php:266
693
  msgid "For the help with Finnish translation"
694
  msgstr "Voor hulp met de Finnish vertaling"
695
 
696
+ #: ../includes/ure-options.php:267
697
+ #: ../includes/ure-options.php:268
698
  msgid "For the help with French translation"
699
  msgstr "voor hulp met de Franse vertaling"
700
 
701
+ #: ../includes/ure-options.php:269
702
  msgid "For the help with German translation"
703
  msgstr "voor hulp met de Duitse vertaling"
704
 
705
+ #: ../includes/ure-options.php:270
706
+ #: ../includes/ure-options.php:271
707
  msgid "For the help with Hebrew translation"
708
  msgstr ""
709
 
710
+ #: ../includes/ure-options.php:272
711
  msgid "For the help with Hindi translation"
712
  msgstr ""
713
 
714
+ #: ../includes/ure-options.php:273
715
  msgid "For the help with Hungarian translation"
716
  msgstr "voor hulp met de Honghaarse vertaling"
717
 
718
+ #: ../includes/ure-options.php:274
719
+ #: ../includes/ure-options.php:275
720
  msgid "For the help with Italian translation"
721
  msgstr "voor hulp met de Italiaanse vertaling"
722
 
723
+ #: ../includes/ure-options.php:276
724
  msgid "For the help with Japanese translation"
725
  msgstr "voor hulp met de Japanse vertaling"
726
 
727
+ #: ../includes/ure-options.php:277
728
  msgid "For the help with Lithuanian translation"
729
  msgstr ""
730
 
731
+ #: ../includes/ure-options.php:278
732
+ #: ../includes/ure-options.php:279
733
+ #: ../includes/ure-options.php:280
734
  msgid "For the help with Persian translation"
735
  msgstr ""
736
 
737
+ #: ../includes/ure-options.php:281
738
+ #: ../includes/ure-options.php:282
739
  msgid "For the help with Polish translation"
740
  msgstr "voor hulp met de Poolse vertaling"
741
 
742
+ #: ../includes/ure-options.php:283
743
+ #: ../includes/ure-options.php:284
744
  msgid "For the help with Spanish translation"
745
  msgstr "Voor hulp met de Spaanse vertaling"
746
 
747
+ #: ../includes/ure-options.php:285
748
  #, fuzzy
749
  msgid "For the updated Swedish translation"
750
  msgstr "Voor hulp met de Swedish vertaling"
751
 
752
+ #: ../includes/ure-options.php:286
753
  msgid "For the help with Swedish translation"
754
  msgstr "Voor hulp met de Swedish vertaling"
755
 
756
+ #: ../includes/ure-options.php:287
757
  msgid "For the help with Turkish translation"
758
  msgstr ""
759
 
760
+ #: ../includes/ure-options.php:289
761
  msgid "For the code to hide administrator role"
762
  msgstr "voor de code om de administratie rol te verbergen"
763
 
764
+ #: ../includes/ure-options.php:290
765
  msgid "For the code enhancement suggestion"
766
  msgstr ""
767
 
768
+ #: ../includes/ure-options.php:292
769
  msgid "Do you wish to see your name with link to your site here? You are welcome! Your help with translation and new ideas are very appreciated."
770
  msgstr "Wenst u uw naam met link naar uw website hier te zien? Geen probleem! Uw hulp met het vertalen en nieuwe ideen wordt sterk geappricieerd."
771
 
lang/ure-pl_PL.mo CHANGED
Binary file
lang/ure-pl_PL.po CHANGED
@@ -2,10 +2,11 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: User Role Editor 2.0\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2012-07-25 16:41+0100\n"
6
  "PO-Revision-Date: \n"
7
- "Last-Translator: Bartosz Arendt <info@digitalfactory.pl>\n"
8
  "Language-Team: Daywalker <dol_kryku@interia.pl>\n"
 
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
@@ -16,729 +17,747 @@ msgstr ""
16
  "X-Poedit-Country: POLAND\n"
17
  "X-Poedit-SearchPath-0: ..\n"
18
 
19
- #: ../ure-lib.php:45
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
20
  msgid "Error is occur. Please check the log file."
21
  msgstr "Wystąpił błąd. Sprawdź logi."
22
 
23
- #: ../ure-lib.php:155
24
  msgid "Database operation error. Check log file."
25
  msgstr "Błąd bazy danych. Sprawdź logi."
26
 
27
- #: ../ure-lib.php:188
28
  msgid "No backup data. It is created automatically before the first role data update."
29
  msgstr "Brak kopii zapasowej. Zostanie ona utworzona automatycznie przed pierwszą uktualizacją uprawnień."
30
 
31
- #: ../ure-lib.php:226
32
  msgid "Backup record is created for the current role capabilities"
33
  msgstr "Kopia zapasowa dla tej grupy została utworzona"
34
 
35
- #: ../ure-lib.php:345
36
  msgid "Error: Role name must contain latin characters and digits only!"
37
  msgstr "Błąd: Nazwa roli może zawierać tylko litery i cyfry"
38
 
39
- #: ../ure-lib.php:352
40
  #, php-format
41
  msgid "Role %s exists already"
42
  msgstr "Rola %s już istnieje"
43
 
44
- #: ../ure-lib.php:365
45
  msgid "Error is encountered during new role create operation"
46
  msgstr "Wystąpił błąd podczas tworzenia nowej roli"
47
 
48
- #: ../ure-lib.php:367
49
  #, php-format
50
  msgid "Role %s is created successfully"
51
  msgstr "Rola %s zastała utworzona "
52
 
53
- #: ../ure-lib.php:451
54
  msgid "Error encountered during role delete operation"
55
  msgstr "Wystąpił błąd podczas usuwania roli"
56
 
57
- #: ../ure-lib.php:453
58
  #, php-format
59
  msgid "Role %s is deleted successfully"
60
  msgstr "Rola %s została usunięta"
61
 
62
- #: ../ure-lib.php:471
63
  msgid "Error encountered during default role change operation"
64
  msgstr "Bład podczas zmiany domyślnej roli"
65
 
66
- #: ../ure-lib.php:477
67
  #, php-format
68
  msgid "Default role for new users is set to %s successfully"
69
  msgstr "Domyślna rola dla nowych użytkowników została zmieniona na %s"
70
 
71
- #: ../ure-lib.php:505
72
  msgid "Editor"
73
  msgstr "Redaktor"
74
 
75
- #: ../ure-lib.php:506
76
  msgid "Author"
77
  msgstr "Autor"
78
 
79
- #: ../ure-lib.php:507
80
  msgid "Contributor"
81
  msgstr "Współpracownik"
82
 
83
- #: ../ure-lib.php:508
84
  msgid "Subscriber"
85
  msgstr "Subskrybent"
86
 
87
- #: ../ure-lib.php:510
88
  msgid "Switch themes"
89
  msgstr "Zmienianie motywów"
90
 
91
- #: ../ure-lib.php:511
92
  msgid "Edit themes"
93
  msgstr "Edytowanie motywów"
94
 
95
- #: ../ure-lib.php:512
96
  msgid "Activate plugins"
97
  msgstr "Włączanie wtyczki"
98
 
99
- #: ../ure-lib.php:513
100
  msgid "Edit plugins"
101
  msgstr "Edytowanie wtyczek"
102
 
103
- #: ../ure-lib.php:514
104
  msgid "Edit users"
105
  msgstr "Edytowanie użytkowników"
106
 
107
- #: ../ure-lib.php:515
108
  msgid "Edit files"
109
  msgstr "Edytowanie plików"
110
 
111
- #: ../ure-lib.php:516
112
  msgid "Manage options"
113
  msgstr "Zarządzanie opcjami"
114
 
115
- #: ../ure-lib.php:517
116
  msgid "Moderate comments"
117
  msgstr "Edytowanie komentarzy"
118
 
119
- #: ../ure-lib.php:518
120
  msgid "Manage categories"
121
  msgstr "Zarządzanie kategoriami"
122
 
123
- #: ../ure-lib.php:519
124
  msgid "Manage links"
125
  msgstr "Zarządzanie linkami"
126
 
127
- #: ../ure-lib.php:520
128
  msgid "Upload files"
129
  msgstr "Wczytywanie plików"
130
 
131
- #: ../ure-lib.php:521
132
  msgid "Import"
133
  msgstr "Import"
134
 
135
- #: ../ure-lib.php:522
136
  msgid "Unfiltered html"
137
  msgstr "Niefiltrowany html"
138
 
139
- #: ../ure-lib.php:523
140
  msgid "Edit posts"
141
  msgstr "Edytowanie wpisów"
142
 
143
- #: ../ure-lib.php:524
144
  msgid "Edit others posts"
145
  msgstr "Edytowanie wpisów innych użytkowników"
146
 
147
- #: ../ure-lib.php:525
148
  msgid "Edit published posts"
149
  msgstr "Edytowanie opublikowanych wpisów"
150
 
151
- #: ../ure-lib.php:526
152
  msgid "Publish posts"
153
  msgstr "Publikowanie wpisów"
154
 
155
- #: ../ure-lib.php:527
156
  msgid "Edit pages"
157
  msgstr "Edytowanie stron"
158
 
159
- #: ../ure-lib.php:528
160
  msgid "Read"
161
  msgstr "Czytanie"
162
 
163
- #: ../ure-lib.php:529
164
  msgid "Level 10"
165
  msgstr "Poziom 10"
166
 
167
- #: ../ure-lib.php:530
168
  msgid "Level 9"
169
  msgstr "Poziom 9"
170
 
171
- #: ../ure-lib.php:531
172
  msgid "Level 8"
173
  msgstr "Poziom 8"
174
 
175
- #: ../ure-lib.php:532
176
  msgid "Level 7"
177
  msgstr "Poziom 7"
178
 
179
- #: ../ure-lib.php:533
180
  msgid "Level 6"
181
  msgstr "Poziom 6"
182
 
183
- #: ../ure-lib.php:534
184
  msgid "Level 5"
185
  msgstr "Poziom 5"
186
 
187
- #: ../ure-lib.php:535
188
  msgid "Level 4"
189
  msgstr "Poziom 4"
190
 
191
- #: ../ure-lib.php:536
192
  msgid "Level 3"
193
  msgstr "Poziom 3"
194
 
195
- #: ../ure-lib.php:537
196
  msgid "Level 2"
197
  msgstr "Poziom 2"
198
 
199
- #: ../ure-lib.php:538
200
  msgid "Level 1"
201
  msgstr "Poziom 1"
202
 
203
- #: ../ure-lib.php:539
204
  msgid "Level 0"
205
  msgstr "Poziom 0"
206
 
207
- #: ../ure-lib.php:540
208
  msgid "Edit others pages"
209
  msgstr "Edytowanie stron innych użytkowników"
210
 
211
- #: ../ure-lib.php:541
212
  msgid "Edit published pages"
213
  msgstr "Edytowanie opublikowanych stron"
214
 
215
- #: ../ure-lib.php:542
216
  msgid "Publish pages"
217
  msgstr "Publikowanie stron"
218
 
219
- #: ../ure-lib.php:543
220
  msgid "Delete pages"
221
  msgstr "Usuwanie stron"
222
 
223
- #: ../ure-lib.php:544
224
  msgid "Delete others pages"
225
  msgstr "Usuwanie stron innych użytkowników"
226
 
227
- #: ../ure-lib.php:545
228
  msgid "Delete published pages"
229
  msgstr "Usuwanie opublikowanych stron"
230
 
231
- #: ../ure-lib.php:546
232
  msgid "Delete posts"
233
  msgstr "Usuwanie wpisów"
234
 
235
- #: ../ure-lib.php:547
236
  msgid "Delete others posts"
237
  msgstr "Usuwanie wpisów innych użytkowników"
238
 
239
- #: ../ure-lib.php:548
240
  msgid "Delete published posts"
241
  msgstr "Usuwanie opublikowanych wpisów"
242
 
243
- #: ../ure-lib.php:549
244
  msgid "Delete private posts"
245
  msgstr "Usuwanie wpisów prywatnych"
246
 
247
- #: ../ure-lib.php:550
248
  msgid "Edit private posts"
249
  msgstr "Edytowanie wpisów prywatnych"
250
 
251
- #: ../ure-lib.php:551
252
  msgid "Read private posts"
253
  msgstr "Czytanie wpisów prywatnych"
254
 
255
- #: ../ure-lib.php:552
256
  msgid "Delete private pages"
257
  msgstr "Usuwanie stron prywatnych"
258
 
259
- #: ../ure-lib.php:553
260
  msgid "Edit private pages"
261
  msgstr "Edytowanie stron prywatnych"
262
 
263
- #: ../ure-lib.php:554
264
  msgid "Read private pages"
265
  msgstr "Czytanie stron prywatnych"
266
 
267
- #: ../ure-lib.php:555
268
  msgid "Delete users"
269
  msgstr "Usuwanie użytkowników"
270
 
271
- #: ../ure-lib.php:556
272
  msgid "Create users"
273
  msgstr "Tworzenie użytkowników"
274
 
275
- #: ../ure-lib.php:557
276
  msgid "Unfiltered upload"
277
  msgstr "Niefiltrowane wczytywanie plików"
278
 
279
- #: ../ure-lib.php:558
280
  msgid "Edit dashboard"
281
  msgstr "Edytowanie kokpitu"
282
 
283
- #: ../ure-lib.php:559
284
  msgid "Update plugins"
285
  msgstr "Aktualizowanie wtyczek"
286
 
287
- #: ../ure-lib.php:560
288
  msgid "Delete plugins"
289
  msgstr "Usuwanie wtyczek"
290
 
291
- #: ../ure-lib.php:561
292
  msgid "Install plugins"
293
  msgstr "Instalowanie wtyczek"
294
 
295
- #: ../ure-lib.php:562
296
  msgid "Update themes"
297
  msgstr "Aktualizowanie motywów"
298
 
299
- #: ../ure-lib.php:563
300
  msgid "Install themes"
301
  msgstr "Instalowanie motywów"
302
 
303
- #: ../ure-lib.php:564
304
  msgid "Update core"
305
  msgstr "Aktualizuj"
306
 
307
- #: ../ure-lib.php:565
308
  msgid "List users"
309
  msgstr "Wyświetlanie listy użytkowników"
310
 
311
- #: ../ure-lib.php:566
312
  msgid "Remove users"
313
  msgstr "Usuwanie użytkowników"
314
 
315
- #: ../ure-lib.php:567
316
  msgid "Add users"
317
  msgstr "Dodawanie użytkowników"
318
 
319
- #: ../ure-lib.php:568
320
  msgid "Promote users"
321
  msgstr "Promowanie użytkowników"
322
 
323
- #: ../ure-lib.php:569
324
  msgid "Edit theme options"
325
  msgstr "Edytowanie opcji motywu"
326
 
327
- #: ../ure-lib.php:570
328
  msgid "Delete themes"
329
  msgstr "Usuwanie motywów"
330
 
331
- #: ../ure-lib.php:571
332
  msgid "Export"
333
  msgstr "Eksport"
334
 
335
- #: ../ure-lib.php:655
336
  msgid "Error: Capability name must contain latin characters and digits only!"
337
  msgstr "Błąd: Nazwa uprawnienia może zawierać tylko litery i cyfry!"
338
 
339
- #: ../ure-lib.php:667
340
  #, php-format
341
  msgid "Capability %s is added successfully"
342
  msgstr "Uprawnienie %s zastało utworzone"
343
 
344
- #: ../ure-lib.php:669
345
  #, php-format
346
  msgid "Capability %s exists already"
347
  msgstr "Uprawnienie %s już istnieje"
348
 
349
- #: ../ure-lib.php:818
350
  #, php-format
351
  msgid "Error! You do not have permission to delete this capability: %s!"
352
  msgstr "Błąd! Nie masz wystarczających uprawnień aby usąć to uprawnienie: %s!"
353
 
354
- #: ../ure-lib.php:840
355
  #, php-format
356
  msgid "Capability %s is removed successfully"
357
  msgstr "Uprawnieni %s zastało usunięte"
358
 
359
- #: ../ure-lib.php:902
360
  msgid "Help"
361
  msgstr "Pomoc"
362
 
363
- #: ../ure-options.php:59
364
- msgid "User Roles are restored from the backup data. "
365
- msgstr "Uprawnienia zostały przywrócone z kopii zapasowej."
366
-
367
- #: ../ure-options.php:125
368
- msgid "Error: "
369
- msgstr "Błąd:"
370
-
371
- #: ../ure-options.php:125
372
- #: ../ure-options.php:143
373
- msgid "Role"
374
- msgstr "Rola"
375
-
376
- #: ../ure-options.php:125
377
- msgid "does not exist"
378
- msgstr "nie istnieje"
379
-
380
- #: ../ure-options.php:143
381
- msgid "is updated successfully"
382
- msgstr "została zaaktualizowana"
383
-
384
- #: ../ure-options.php:152
385
- msgid "User"
386
- msgstr "Użytkownik"
387
-
388
- #: ../ure-options.php:152
389
- msgid "capabilities are updated successfully"
390
- msgstr "uprawnienia zostały zaktualizowane"
391
-
392
- #: ../ure-options.php:215
393
- msgid "About this Plugin:"
394
- msgstr "O wtyczce:"
395
-
396
- #: ../ure-options.php:216
397
- msgid "Author's website"
398
- msgstr "Strona domowa autora"
399
-
400
- #: ../ure-options.php:217
401
- msgid "Plugin webpage"
402
- msgstr "Strona domowa wtyczki"
403
-
404
- #: ../ure-options.php:218
405
- #: ../user-role-editor.php:222
406
- msgid "Changelog"
407
- msgstr "Lista zmian"
408
-
409
- #: ../ure-options.php:219
410
- msgid "FAQ"
411
- msgstr "FAQ"
412
-
413
- #: ../ure-options.php:220
414
- msgid "Greetings"
415
- msgstr "Pozdrowienia"
416
-
417
- #: ../ure-options.php:242
418
- msgid "Greetings:"
419
- msgstr "Podziękowania:"
420
-
421
- #: ../ure-options.php:243
422
- msgid "It's me, the author"
423
- msgstr "To ja, autor"
424
-
425
- #: ../ure-options.php:244
426
- msgid "For the help with Belorussian translation"
427
- msgstr "Za tłumacznie Białoruskie"
428
-
429
- #: ../ure-options.php:245
430
- msgid "For the help with Brasilian translation"
431
- msgstr "Za tłumacznie Brazylijskie"
432
-
433
- #: ../ure-options.php:246
434
- msgid "For the help with Chinese translation"
435
- msgstr "Za tłumacznie Chinese"
436
-
437
- #: ../ure-options.php:247
438
- msgid "For the help with Dutch translation"
439
- msgstr "Za tłumacznie Dutch"
440
-
441
- #: ../ure-options.php:248
442
- msgid "For the help with Finnish translation"
443
- msgstr "Za tłumacznie Finnish"
444
-
445
- #: ../ure-options.php:249
446
- #: ../ure-options.php:250
447
- msgid "For the help with French translation"
448
- msgstr "Za tłumacznie Francuskie"
449
-
450
- #: ../ure-options.php:251
451
- msgid "For the help with German translation"
452
- msgstr "Za tłumacznie Niemieckie"
453
-
454
- #: ../ure-options.php:252
455
- #: ../ure-options.php:253
456
- msgid "For the help with Hebrew translation"
457
- msgstr "Za tłumacznie Hebrajskie"
458
-
459
- #: ../ure-options.php:254
460
- msgid "For the help with Hindi translation"
461
- msgstr "Za tłumacznie Fińskie"
462
-
463
- #: ../ure-options.php:255
464
- msgid "For the help with Hungarian translation"
465
- msgstr "Za tłumacznie Hungarian"
466
-
467
- #: ../ure-options.php:256
468
- #: ../ure-options.php:257
469
- msgid "For the help with Italian translation"
470
- msgstr "Za tłumacznie włoski"
471
-
472
- #: ../ure-options.php:258
473
- msgid "For the help with Japanese translation"
474
- msgstr "Za tłumacznie Japońskie"
475
-
476
- #: ../ure-options.php:259
477
- msgid "For the help with Lithuanian translation"
478
- msgstr "Za tłumacznie Litewskie"
479
-
480
- #: ../ure-options.php:260
481
- #: ../ure-options.php:261
482
- msgid "For the help with Persian translation"
483
- msgstr "Za tłumaczenie perskie"
484
-
485
- #: ../ure-options.php:262
486
- msgid "For the help with Polish translation"
487
- msgstr "Za tłumacznie Polski"
488
-
489
- #: ../ure-options.php:263
490
- #: ../ure-options.php:264
491
- msgid "For the help with Spanish translation"
492
- msgstr "Za tłumacznie Hiszpańskie"
493
-
494
- #: ../ure-options.php:265
495
- msgid "For the updated Swedish translation"
496
- msgstr "Za tłumacznie Szwedzkie"
497
-
498
- #: ../ure-options.php:266
499
- msgid "For the help with Swedish translation"
500
- msgstr "Za tłumacznie Swedish"
501
-
502
- #: ../ure-options.php:267
503
- msgid "For the help with Turkish translation"
504
- msgstr "Za tłumaczenie tureckie"
505
-
506
- #: ../ure-options.php:269
507
- msgid "For the code to hide administrator role"
508
- msgstr "Za zakodowanie \"ukrycia grupy administracji\""
509
-
510
- #: ../ure-options.php:270
511
- msgid "For the code enhancement suggestion"
512
- msgstr "Sugestie dotyczące modyfikacji kodu"
513
-
514
- #: ../ure-options.php:272
515
- msgid "Do you wish to see your name with link to your site here? You are welcome! Your help with translation and new ideas are very appreciated."
516
- msgstr "Chcesz by twoje imie się tutaj znalazło? Zapraszamy! Możesz pomóc nam tworzyć tłumaczyc i ulepszać wtyczkę!"
517
-
518
- #: ../ure-role-edit.php:29
519
  msgid "None"
520
  msgstr "Brak"
521
 
522
- #: ../ure-role-edit.php:93
523
  msgid " Name can not be empty!"
524
  msgstr "Nazwa nie może być pusta!"
525
 
526
- #: ../ure-role-edit.php:97
527
  msgid " Name must contain latin characters and digits only!"
528
  msgstr "Nazwa może zawierać tylko litery i cyfry!"
529
 
530
- #: ../ure-role-edit.php:102
531
- #: ../ure-role-edit.php:293
532
  msgid "Delete Role"
533
  msgstr "Usuń rolę"
534
 
535
- #: ../ure-role-edit.php:104
536
  msgid "Change Default Role"
537
  msgstr "Zmień domyślną rolę"
538
 
539
- #: ../ure-role-edit.php:106
540
  msgid "Restore Roles from backup copy. Be careful, backup was created when you started URE 1st time. All changes you made after that will be lost"
541
  msgstr "Przywróć role z kopii zapasowej. Bądź ostrożny, kopia została utworzona kiedy pierwszy raz użyłeś Uprawnień. Wszystkie zmiany, które od tego czasu zrobiłeś zostały utracone."
542
 
543
- #: ../ure-role-edit.php:108
544
  msgid "Warning! Be careful - removing critical capability could crash some plugin or other custom code"
545
  msgstr "Uwaga! Bądź ostrożny - usunięcie krytycznego uprawnienia może spowodować, że jakieś wtyczki przestaną działać"
546
 
547
- #: ../ure-role-edit.php:110
548
  msgid "Please confirm to continue"
549
  msgstr "Potwierdź by kontynuować"
550
 
551
- #: ../ure-role-edit.php:147
552
  #, php-format
553
  msgid "Role \"%s\" update: please confirm to continue"
554
  msgstr "Aktualizacja roli \"%s\": potwierdź by kontynuować"
555
 
556
- #: ../ure-role-edit.php:155
557
  msgid "Select Role and change its capabilities list"
558
  msgstr "Wybierz rolę by edytować jej uprawnienia"
559
 
560
- #: ../ure-role-edit.php:157
561
  msgid "Select Role:"
562
  msgstr "Wybierz rolę:"
563
 
564
- #: ../ure-role-edit.php:167
565
- #: ../ure-user-edit.php:91
566
  msgid "Show capabilities in human readable form"
567
  msgstr "Pokaż uprawnienia w łatwiej do przeczytania formie"
568
 
569
- #: ../ure-role-edit.php:176
570
- #: ../ure-user-edit.php:100
571
  msgid "Show deprecated capabilities"
572
  msgstr "Pokaż wycofywane uprawnienia"
573
 
574
- #: ../ure-role-edit.php:180
575
  msgid "If checked, then apply action to ALL sites of this Network"
576
  msgstr "Jeśli jest zaznaczone, wówczas to działanie obejmie wszystkie strony w tej sieci"
577
 
578
- #: ../ure-role-edit.php:190
579
  msgid "Apply to All Sites"
580
  msgstr "Zastosuj do wszystkich stron"
581
 
582
- #: ../ure-role-edit.php:251
583
- #: ../ure-user-edit.php:163
 
 
 
 
 
 
 
 
 
 
 
 
584
  msgid "Update"
585
  msgstr "Aktualizuj"
586
 
587
- #: ../ure-role-edit.php:251
588
- #: ../ure-user-edit.php:163
589
  msgid "Save Changes"
590
  msgstr "Zapisz zmiany"
591
 
592
- #: ../ure-role-edit.php:252
593
- #: ../ure-user-edit.php:164
594
  msgid "Cancel"
595
  msgstr "Anuluj"
596
 
597
- #: ../ure-role-edit.php:252
598
- #: ../ure-user-edit.php:164
599
  msgid "Cancel not saved changes"
600
  msgstr "Anuluj niezpisane zmiany"
601
 
602
- #: ../ure-role-edit.php:255
603
  msgid "Select All"
604
  msgstr "Zaznacz wszystkie"
605
 
606
- #: ../ure-role-edit.php:255
607
  msgid "Select All Capabilities"
608
  msgstr "Zaznacz wszystkie uprawnienia"
609
 
610
- #: ../ure-role-edit.php:256
611
  msgid "Unselect All"
612
  msgstr "Odznacz wszystkie"
613
 
614
- #: ../ure-role-edit.php:256
615
  msgid "Unselect All Capabilities"
616
  msgstr "Odznacz wszystkie uprawnienia"
617
 
618
- #: ../ure-role-edit.php:257
619
  msgid "Reverse"
620
  msgstr "Odwróć"
621
 
622
- #: ../ure-role-edit.php:257
623
  msgid "Turn checked capabilities off and vise versa"
624
  msgstr "Wyłącz zaznaczone uprawnienia i odwrotnie"
625
 
626
- #: ../ure-role-edit.php:260
627
  msgid "Reset"
628
  msgstr "Resetuj"
629
 
630
- #: ../ure-role-edit.php:260
631
  msgid "Restore Roles from backup copy"
632
  msgstr "Przywróć role z kopii zapasowej"
633
 
634
- #: ../ure-role-edit.php:270
635
  msgid "Add New Role"
636
  msgstr "Dodaj nową rolę"
637
 
638
- #: ../ure-role-edit.php:272
639
  msgid "Name: "
640
  msgstr "Imię:"
641
 
642
- #: ../ure-role-edit.php:276
643
  msgid "Make copy of: "
644
  msgstr "Zrób kopię dla:"
645
 
646
- #: ../ure-role-edit.php:279
647
- #: ../ure-role-edit.php:308
648
  msgid "Add"
649
  msgstr "Dodaj"
650
 
651
- #: ../ure-role-edit.php:279
652
  msgid "Add New User Role"
653
  msgstr "Dodaj nową rolę"
654
 
655
- #: ../ure-role-edit.php:283
656
  msgid "Default Role for New User"
657
  msgstr "Domyślna rola nowych użytkowników"
658
 
659
- #: ../ure-role-edit.php:288
660
  msgid "Change"
661
  msgstr "Zmień"
662
 
663
- #: ../ure-role-edit.php:288
664
  msgid "Set as Default User Role"
665
  msgstr "Ustaw jako rolę domyślną"
666
 
667
- #: ../ure-role-edit.php:298
668
  msgid "Delete"
669
  msgstr "Usuń"
670
 
671
- #: ../ure-role-edit.php:298
672
  msgid "Delete User Role"
673
  msgstr "Usuń rolę"
674
 
675
- #: ../ure-role-edit.php:303
676
- #: ../ure-role-edit.php:308
677
  msgid "Add New Capability"
678
  msgstr "Dodaj nowe uprawnienie"
679
 
680
- #: ../ure-role-edit.php:313
681
  msgid "Remove Capability"
682
  msgstr "Usuń uprawnienie"
683
 
684
- #: ../ure-role-edit.php:318
685
  msgid "Remove"
686
  msgstr "Usuń"
687
 
688
- #: ../ure-role-edit.php:318
689
  msgid "Remove User Capability"
690
  msgstr "Usuń uprawnienie użytkownika"
691
 
692
- #: ../ure-user-edit.php:67
693
  #, php-format
694
  msgid "User \"%s\" update: please confirm to continue"
695
  msgstr "Aktualizacja użytkownika \"%s\": potwierdź by kontynuować"
696
 
697
- #: ../ure-user-edit.php:79
698
  msgid "Change capabilities for user"
699
  msgstr "Zmień uprawnienia użytkownika"
700
 
701
- #: ../ure-user-edit.php:82
702
  msgid "Role:"
703
  msgstr "Rola:"
704
 
705
- #: ../ure-user-edit.php:104
706
  msgid "Add capabilities to this user:"
707
  msgstr "Dodaj uprawnienie dla tego użytkownika:"
708
 
709
- #: ../user-role-editor.php:35
710
- msgid "User Role Editor requires WordPress 3.0 or newer."
711
- msgstr "Uprawnienia wymagają WordPress'a w wersji 3.0 bądz nowszej."
712
 
713
- #: ../user-role-editor.php:35
714
- #: ../user-role-editor.php:40
715
- msgid "Please update!"
716
- msgstr "Prosze zaaktualizować wtyczkę!"
717
 
718
- #: ../user-role-editor.php:40
719
- msgid "User Role Editor requires PHP 5.0 or newer."
720
- msgstr "Uprawnienia wymagają PHP 5.0 lub nowszej."
 
721
 
722
- #: ../user-role-editor.php:65
723
- msgid "Only"
724
- msgstr "Tylko"
725
 
726
- #: ../user-role-editor.php:65
727
- msgid "is allowed to use"
728
- msgstr "jest uprawniony do"
729
 
730
- #: ../user-role-editor.php:71
731
- #: ../user-role-editor.php:240
732
- msgid "User Role Editor"
733
- msgstr "Uprawnienia"
734
 
735
- #: ../user-role-editor.php:212
736
- msgid "Settings"
737
- msgstr "Ustawnienia"
738
 
739
- #: ../user-role-editor.php:269
740
- msgid "Capabilities"
741
- msgstr "Uprawnienia"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
742
 
743
  #~ msgid "Roles list reading error is encountered"
744
  #~ msgstr "Błąd wczytywania grup"
2
  msgstr ""
3
  "Project-Id-Version: User Role Editor 2.0\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-09-01 08:49+0700\n"
6
  "PO-Revision-Date: \n"
7
+ "Last-Translator: Vladimir Garagulya <vladimir@shinephp.com>\n"
8
  "Language-Team: Daywalker <dol_kryku@interia.pl>\n"
9
+ "Language: \n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
17
  "X-Poedit-Country: POLAND\n"
18
  "X-Poedit-SearchPath-0: ..\n"
19
 
20
+ #: ../user-role-editor.php:35
21
+ msgid "User Role Editor requires WordPress 3.0 or newer."
22
+ msgstr "Uprawnienia wymagają WordPress'a w wersji 3.0 bądz nowszej."
23
+
24
+ #: ../user-role-editor.php:35
25
+ #: ../user-role-editor.php:40
26
+ msgid "Please update!"
27
+ msgstr "Prosze zaaktualizować wtyczkę!"
28
+
29
+ #: ../user-role-editor.php:40
30
+ msgid "User Role Editor requires PHP 5.0 or newer."
31
+ msgstr "Uprawnienia wymagają PHP 5.0 lub nowszej."
32
+
33
+ #: ../user-role-editor.php:76
34
+ msgid "Only"
35
+ msgstr "Tylko"
36
+
37
+ #: ../user-role-editor.php:76
38
+ msgid "is allowed to use"
39
+ msgstr "jest uprawniony do"
40
+
41
+ #: ../user-role-editor.php:82
42
+ #: ../user-role-editor.php:251
43
+ msgid "User Role Editor"
44
+ msgstr "Uprawnienia"
45
+
46
+ #: ../user-role-editor.php:223
47
+ msgid "Settings"
48
+ msgstr "Ustawnienia"
49
+
50
+ #: ../user-role-editor.php:233
51
+ #: ../includes/ure-options.php:235
52
+ msgid "Changelog"
53
+ msgstr "Lista zmian"
54
+
55
+ #: ../user-role-editor.php:280
56
+ msgid "Capabilities"
57
+ msgstr "Uprawnienia"
58
+
59
+ #: ../includes/ure-lib.php:34
60
  msgid "Error is occur. Please check the log file."
61
  msgstr "Wystąpił błąd. Sprawdź logi."
62
 
63
+ #: ../includes/ure-lib.php:144
64
  msgid "Database operation error. Check log file."
65
  msgstr "Błąd bazy danych. Sprawdź logi."
66
 
67
+ #: ../includes/ure-lib.php:177
68
  msgid "No backup data. It is created automatically before the first role data update."
69
  msgstr "Brak kopii zapasowej. Zostanie ona utworzona automatycznie przed pierwszą uktualizacją uprawnień."
70
 
71
+ #: ../includes/ure-lib.php:215
72
  msgid "Backup record is created for the current role capabilities"
73
  msgstr "Kopia zapasowa dla tej grupy została utworzona"
74
 
75
+ #: ../includes/ure-lib.php:329
76
  msgid "Error: Role name must contain latin characters and digits only!"
77
  msgstr "Błąd: Nazwa roli może zawierać tylko litery i cyfry"
78
 
79
+ #: ../includes/ure-lib.php:336
80
  #, php-format
81
  msgid "Role %s exists already"
82
  msgstr "Rola %s już istnieje"
83
 
84
+ #: ../includes/ure-lib.php:349
85
  msgid "Error is encountered during new role create operation"
86
  msgstr "Wystąpił błąd podczas tworzenia nowej roli"
87
 
88
+ #: ../includes/ure-lib.php:351
89
  #, php-format
90
  msgid "Role %s is created successfully"
91
  msgstr "Rola %s zastała utworzona "
92
 
93
+ #: ../includes/ure-lib.php:435
94
  msgid "Error encountered during role delete operation"
95
  msgstr "Wystąpił błąd podczas usuwania roli"
96
 
97
+ #: ../includes/ure-lib.php:437
98
  #, php-format
99
  msgid "Role %s is deleted successfully"
100
  msgstr "Rola %s została usunięta"
101
 
102
+ #: ../includes/ure-lib.php:455
103
  msgid "Error encountered during default role change operation"
104
  msgstr "Bład podczas zmiany domyślnej roli"
105
 
106
+ #: ../includes/ure-lib.php:461
107
  #, php-format
108
  msgid "Default role for new users is set to %s successfully"
109
  msgstr "Domyślna rola dla nowych użytkowników została zmieniona na %s"
110
 
111
+ #: ../includes/ure-lib.php:489
112
  msgid "Editor"
113
  msgstr "Redaktor"
114
 
115
+ #: ../includes/ure-lib.php:490
116
  msgid "Author"
117
  msgstr "Autor"
118
 
119
+ #: ../includes/ure-lib.php:491
120
  msgid "Contributor"
121
  msgstr "Współpracownik"
122
 
123
+ #: ../includes/ure-lib.php:492
124
  msgid "Subscriber"
125
  msgstr "Subskrybent"
126
 
127
+ #: ../includes/ure-lib.php:494
128
  msgid "Switch themes"
129
  msgstr "Zmienianie motywów"
130
 
131
+ #: ../includes/ure-lib.php:495
132
  msgid "Edit themes"
133
  msgstr "Edytowanie motywów"
134
 
135
+ #: ../includes/ure-lib.php:496
136
  msgid "Activate plugins"
137
  msgstr "Włączanie wtyczki"
138
 
139
+ #: ../includes/ure-lib.php:497
140
  msgid "Edit plugins"
141
  msgstr "Edytowanie wtyczek"
142
 
143
+ #: ../includes/ure-lib.php:498
144
  msgid "Edit users"
145
  msgstr "Edytowanie użytkowników"
146
 
147
+ #: ../includes/ure-lib.php:499
148
  msgid "Edit files"
149
  msgstr "Edytowanie plików"
150
 
151
+ #: ../includes/ure-lib.php:500
152
  msgid "Manage options"
153
  msgstr "Zarządzanie opcjami"
154
 
155
+ #: ../includes/ure-lib.php:501
156
  msgid "Moderate comments"
157
  msgstr "Edytowanie komentarzy"
158
 
159
+ #: ../includes/ure-lib.php:502
160
  msgid "Manage categories"
161
  msgstr "Zarządzanie kategoriami"
162
 
163
+ #: ../includes/ure-lib.php:503
164
  msgid "Manage links"
165
  msgstr "Zarządzanie linkami"
166
 
167
+ #: ../includes/ure-lib.php:504
168
  msgid "Upload files"
169
  msgstr "Wczytywanie plików"
170
 
171
+ #: ../includes/ure-lib.php:505
172
  msgid "Import"
173
  msgstr "Import"
174
 
175
+ #: ../includes/ure-lib.php:506
176
  msgid "Unfiltered html"
177
  msgstr "Niefiltrowany html"
178
 
179
+ #: ../includes/ure-lib.php:507
180
  msgid "Edit posts"
181
  msgstr "Edytowanie wpisów"
182
 
183
+ #: ../includes/ure-lib.php:508
184
  msgid "Edit others posts"
185
  msgstr "Edytowanie wpisów innych użytkowników"
186
 
187
+ #: ../includes/ure-lib.php:509
188
  msgid "Edit published posts"
189
  msgstr "Edytowanie opublikowanych wpisów"
190
 
191
+ #: ../includes/ure-lib.php:510
192
  msgid "Publish posts"
193
  msgstr "Publikowanie wpisów"
194
 
195
+ #: ../includes/ure-lib.php:511
196
  msgid "Edit pages"
197
  msgstr "Edytowanie stron"
198
 
199
+ #: ../includes/ure-lib.php:512
200
  msgid "Read"
201
  msgstr "Czytanie"
202
 
203
+ #: ../includes/ure-lib.php:513
204
  msgid "Level 10"
205
  msgstr "Poziom 10"
206
 
207
+ #: ../includes/ure-lib.php:514
208
  msgid "Level 9"
209
  msgstr "Poziom 9"
210
 
211
+ #: ../includes/ure-lib.php:515
212
  msgid "Level 8"
213
  msgstr "Poziom 8"
214
 
215
+ #: ../includes/ure-lib.php:516
216
  msgid "Level 7"
217
  msgstr "Poziom 7"
218
 
219
+ #: ../includes/ure-lib.php:517
220
  msgid "Level 6"
221
  msgstr "Poziom 6"
222
 
223
+ #: ../includes/ure-lib.php:518
224
  msgid "Level 5"
225
  msgstr "Poziom 5"
226
 
227
+ #: ../includes/ure-lib.php:519
228
  msgid "Level 4"
229
  msgstr "Poziom 4"
230
 
231
+ #: ../includes/ure-lib.php:520
232
  msgid "Level 3"
233
  msgstr "Poziom 3"
234
 
235
+ #: ../includes/ure-lib.php:521
236
  msgid "Level 2"
237
  msgstr "Poziom 2"
238
 
239
+ #: ../includes/ure-lib.php:522
240
  msgid "Level 1"
241
  msgstr "Poziom 1"
242
 
243
+ #: ../includes/ure-lib.php:523
244
  msgid "Level 0"
245
  msgstr "Poziom 0"
246
 
247
+ #: ../includes/ure-lib.php:524
248
  msgid "Edit others pages"
249
  msgstr "Edytowanie stron innych użytkowników"
250
 
251
+ #: ../includes/ure-lib.php:525
252
  msgid "Edit published pages"
253
  msgstr "Edytowanie opublikowanych stron"
254
 
255
+ #: ../includes/ure-lib.php:526
256
  msgid "Publish pages"
257
  msgstr "Publikowanie stron"
258
 
259
+ #: ../includes/ure-lib.php:527
260
  msgid "Delete pages"
261
  msgstr "Usuwanie stron"
262
 
263
+ #: ../includes/ure-lib.php:528
264
  msgid "Delete others pages"
265
  msgstr "Usuwanie stron innych użytkowników"
266
 
267
+ #: ../includes/ure-lib.php:529
268
  msgid "Delete published pages"
269
  msgstr "Usuwanie opublikowanych stron"
270
 
271
+ #: ../includes/ure-lib.php:530
272
  msgid "Delete posts"
273
  msgstr "Usuwanie wpisów"
274
 
275
+ #: ../includes/ure-lib.php:531
276
  msgid "Delete others posts"
277
  msgstr "Usuwanie wpisów innych użytkowników"
278
 
279
+ #: ../includes/ure-lib.php:532
280
  msgid "Delete published posts"
281
  msgstr "Usuwanie opublikowanych wpisów"
282
 
283
+ #: ../includes/ure-lib.php:533
284
  msgid "Delete private posts"
285
  msgstr "Usuwanie wpisów prywatnych"
286
 
287
+ #: ../includes/ure-lib.php:534
288
  msgid "Edit private posts"
289
  msgstr "Edytowanie wpisów prywatnych"
290
 
291
+ #: ../includes/ure-lib.php:535
292
  msgid "Read private posts"
293
  msgstr "Czytanie wpisów prywatnych"
294
 
295
+ #: ../includes/ure-lib.php:536
296
  msgid "Delete private pages"
297
  msgstr "Usuwanie stron prywatnych"
298
 
299
+ #: ../includes/ure-lib.php:537
300
  msgid "Edit private pages"
301
  msgstr "Edytowanie stron prywatnych"
302
 
303
+ #: ../includes/ure-lib.php:538
304
  msgid "Read private pages"
305
  msgstr "Czytanie stron prywatnych"
306
 
307
+ #: ../includes/ure-lib.php:539
308
  msgid "Delete users"
309
  msgstr "Usuwanie użytkowników"
310
 
311
+ #: ../includes/ure-lib.php:540
312
  msgid "Create users"
313
  msgstr "Tworzenie użytkowników"
314
 
315
+ #: ../includes/ure-lib.php:541
316
  msgid "Unfiltered upload"
317
  msgstr "Niefiltrowane wczytywanie plików"
318
 
319
+ #: ../includes/ure-lib.php:542
320
  msgid "Edit dashboard"
321
  msgstr "Edytowanie kokpitu"
322
 
323
+ #: ../includes/ure-lib.php:543
324
  msgid "Update plugins"
325
  msgstr "Aktualizowanie wtyczek"
326
 
327
+ #: ../includes/ure-lib.php:544
328
  msgid "Delete plugins"
329
  msgstr "Usuwanie wtyczek"
330
 
331
+ #: ../includes/ure-lib.php:545
332
  msgid "Install plugins"
333
  msgstr "Instalowanie wtyczek"
334
 
335
+ #: ../includes/ure-lib.php:546
336
  msgid "Update themes"
337
  msgstr "Aktualizowanie motywów"
338
 
339
+ #: ../includes/ure-lib.php:547
340
  msgid "Install themes"
341
  msgstr "Instalowanie motywów"
342
 
343
+ #: ../includes/ure-lib.php:548
344
  msgid "Update core"
345
  msgstr "Aktualizuj"
346
 
347
+ #: ../includes/ure-lib.php:549
348
  msgid "List users"
349
  msgstr "Wyświetlanie listy użytkowników"
350
 
351
+ #: ../includes/ure-lib.php:550
352
  msgid "Remove users"
353
  msgstr "Usuwanie użytkowników"
354
 
355
+ #: ../includes/ure-lib.php:551
356
  msgid "Add users"
357
  msgstr "Dodawanie użytkowników"
358
 
359
+ #: ../includes/ure-lib.php:552
360
  msgid "Promote users"
361
  msgstr "Promowanie użytkowników"
362
 
363
+ #: ../includes/ure-lib.php:553
364
  msgid "Edit theme options"
365
  msgstr "Edytowanie opcji motywu"
366
 
367
+ #: ../includes/ure-lib.php:554
368
  msgid "Delete themes"
369
  msgstr "Usuwanie motywów"
370
 
371
+ #: ../includes/ure-lib.php:555
372
  msgid "Export"
373
  msgstr "Eksport"
374
 
375
+ #: ../includes/ure-lib.php:639
376
  msgid "Error: Capability name must contain latin characters and digits only!"
377
  msgstr "Błąd: Nazwa uprawnienia może zawierać tylko litery i cyfry!"
378
 
379
+ #: ../includes/ure-lib.php:651
380
  #, php-format
381
  msgid "Capability %s is added successfully"
382
  msgstr "Uprawnienie %s zastało utworzone"
383
 
384
+ #: ../includes/ure-lib.php:653
385
  #, php-format
386
  msgid "Capability %s exists already"
387
  msgstr "Uprawnienie %s już istnieje"
388
 
389
+ #: ../includes/ure-lib.php:802
390
  #, php-format
391
  msgid "Error! You do not have permission to delete this capability: %s!"
392
  msgstr "Błąd! Nie masz wystarczających uprawnień aby usąć to uprawnienie: %s!"
393
 
394
+ #: ../includes/ure-lib.php:824
395
  #, php-format
396
  msgid "Capability %s is removed successfully"
397
  msgstr "Uprawnieni %s zastało usunięte"
398
 
399
+ #: ../includes/ure-lib.php:889
400
  msgid "Help"
401
  msgstr "Pomoc"
402
 
403
+ #: ../includes/ure-role-edit.php:29
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
404
  msgid "None"
405
  msgstr "Brak"
406
 
407
+ #: ../includes/ure-role-edit.php:101
408
  msgid " Name can not be empty!"
409
  msgstr "Nazwa nie może być pusta!"
410
 
411
+ #: ../includes/ure-role-edit.php:105
412
  msgid " Name must contain latin characters and digits only!"
413
  msgstr "Nazwa może zawierać tylko litery i cyfry!"
414
 
415
+ #: ../includes/ure-role-edit.php:110
416
+ #: ../includes/ure-role-edit.php:367
417
  msgid "Delete Role"
418
  msgstr "Usuń rolę"
419
 
420
+ #: ../includes/ure-role-edit.php:112
421
  msgid "Change Default Role"
422
  msgstr "Zmień domyślną rolę"
423
 
424
+ #: ../includes/ure-role-edit.php:114
425
  msgid "Restore Roles from backup copy. Be careful, backup was created when you started URE 1st time. All changes you made after that will be lost"
426
  msgstr "Przywróć role z kopii zapasowej. Bądź ostrożny, kopia została utworzona kiedy pierwszy raz użyłeś Uprawnień. Wszystkie zmiany, które od tego czasu zrobiłeś zostały utracone."
427
 
428
+ #: ../includes/ure-role-edit.php:116
429
  msgid "Warning! Be careful - removing critical capability could crash some plugin or other custom code"
430
  msgstr "Uwaga! Bądź ostrożny - usunięcie krytycznego uprawnienia może spowodować, że jakieś wtyczki przestaną działać"
431
 
432
+ #: ../includes/ure-role-edit.php:118
433
  msgid "Please confirm to continue"
434
  msgstr "Potwierdź by kontynuować"
435
 
436
+ #: ../includes/ure-role-edit.php:155
437
  #, php-format
438
  msgid "Role \"%s\" update: please confirm to continue"
439
  msgstr "Aktualizacja roli \"%s\": potwierdź by kontynuować"
440
 
441
+ #: ../includes/ure-role-edit.php:163
442
  msgid "Select Role and change its capabilities list"
443
  msgstr "Wybierz rolę by edytować jej uprawnienia"
444
 
445
+ #: ../includes/ure-role-edit.php:165
446
  msgid "Select Role:"
447
  msgstr "Wybierz rolę:"
448
 
449
+ #: ../includes/ure-role-edit.php:175
450
+ #: ../includes/ure-user-edit.php:91
451
  msgid "Show capabilities in human readable form"
452
  msgstr "Pokaż uprawnienia w łatwiej do przeczytania formie"
453
 
454
+ #: ../includes/ure-role-edit.php:184
455
+ #: ../includes/ure-user-edit.php:100
456
  msgid "Show deprecated capabilities"
457
  msgstr "Pokaż wycofywane uprawnienia"
458
 
459
+ #: ../includes/ure-role-edit.php:188
460
  msgid "If checked, then apply action to ALL sites of this Network"
461
  msgstr "Jeśli jest zaznaczone, wówczas to działanie obejmie wszystkie strony w tej sieci"
462
 
463
+ #: ../includes/ure-role-edit.php:198
464
  msgid "Apply to All Sites"
465
  msgstr "Zastosuj do wszystkich stron"
466
 
467
+ #: ../includes/ure-role-edit.php:205
468
+ #: ../includes/ure-user-edit.php:105
469
+ #, fuzzy
470
+ msgid "Core capabilities:"
471
+ msgstr "WordPress Uprawnienia:"
472
+
473
+ #: ../includes/ure-role-edit.php:268
474
+ #: ../includes/ure-user-edit.php:167
475
+ #, fuzzy
476
+ msgid "Custom capabilities:"
477
+ msgstr "Uprawnienia:"
478
+
479
+ #: ../includes/ure-role-edit.php:319
480
+ #: ../includes/ure-user-edit.php:222
481
  msgid "Update"
482
  msgstr "Aktualizuj"
483
 
484
+ #: ../includes/ure-role-edit.php:319
485
+ #: ../includes/ure-user-edit.php:222
486
  msgid "Save Changes"
487
  msgstr "Zapisz zmiany"
488
 
489
+ #: ../includes/ure-role-edit.php:320
490
+ #: ../includes/ure-user-edit.php:223
491
  msgid "Cancel"
492
  msgstr "Anuluj"
493
 
494
+ #: ../includes/ure-role-edit.php:320
495
+ #: ../includes/ure-user-edit.php:223
496
  msgid "Cancel not saved changes"
497
  msgstr "Anuluj niezpisane zmiany"
498
 
499
+ #: ../includes/ure-role-edit.php:323
500
  msgid "Select All"
501
  msgstr "Zaznacz wszystkie"
502
 
503
+ #: ../includes/ure-role-edit.php:323
504
  msgid "Select All Capabilities"
505
  msgstr "Zaznacz wszystkie uprawnienia"
506
 
507
+ #: ../includes/ure-role-edit.php:327
508
  msgid "Unselect All"
509
  msgstr "Odznacz wszystkie"
510
 
511
+ #: ../includes/ure-role-edit.php:327
512
  msgid "Unselect All Capabilities"
513
  msgstr "Odznacz wszystkie uprawnienia"
514
 
515
+ #: ../includes/ure-role-edit.php:328
516
  msgid "Reverse"
517
  msgstr "Odwróć"
518
 
519
+ #: ../includes/ure-role-edit.php:328
520
  msgid "Turn checked capabilities off and vise versa"
521
  msgstr "Wyłącz zaznaczone uprawnienia i odwrotnie"
522
 
523
+ #: ../includes/ure-role-edit.php:334
524
  msgid "Reset"
525
  msgstr "Resetuj"
526
 
527
+ #: ../includes/ure-role-edit.php:334
528
  msgid "Restore Roles from backup copy"
529
  msgstr "Przywróć role z kopii zapasowej"
530
 
531
+ #: ../includes/ure-role-edit.php:344
532
  msgid "Add New Role"
533
  msgstr "Dodaj nową rolę"
534
 
535
+ #: ../includes/ure-role-edit.php:346
536
  msgid "Name: "
537
  msgstr "Imię:"
538
 
539
+ #: ../includes/ure-role-edit.php:350
540
  msgid "Make copy of: "
541
  msgstr "Zrób kopię dla:"
542
 
543
+ #: ../includes/ure-role-edit.php:353
544
+ #: ../includes/ure-role-edit.php:382
545
  msgid "Add"
546
  msgstr "Dodaj"
547
 
548
+ #: ../includes/ure-role-edit.php:353
549
  msgid "Add New User Role"
550
  msgstr "Dodaj nową rolę"
551
 
552
+ #: ../includes/ure-role-edit.php:357
553
  msgid "Default Role for New User"
554
  msgstr "Domyślna rola nowych użytkowników"
555
 
556
+ #: ../includes/ure-role-edit.php:362
557
  msgid "Change"
558
  msgstr "Zmień"
559
 
560
+ #: ../includes/ure-role-edit.php:362
561
  msgid "Set as Default User Role"
562
  msgstr "Ustaw jako rolę domyślną"
563
 
564
+ #: ../includes/ure-role-edit.php:372
565
  msgid "Delete"
566
  msgstr "Usuń"
567
 
568
+ #: ../includes/ure-role-edit.php:372
569
  msgid "Delete User Role"
570
  msgstr "Usuń rolę"
571
 
572
+ #: ../includes/ure-role-edit.php:377
573
+ #: ../includes/ure-role-edit.php:382
574
  msgid "Add New Capability"
575
  msgstr "Dodaj nowe uprawnienie"
576
 
577
+ #: ../includes/ure-role-edit.php:387
578
  msgid "Remove Capability"
579
  msgstr "Usuń uprawnienie"
580
 
581
+ #: ../includes/ure-role-edit.php:392
582
  msgid "Remove"
583
  msgstr "Usuń"
584
 
585
+ #: ../includes/ure-role-edit.php:392
586
  msgid "Remove User Capability"
587
  msgstr "Usuń uprawnienie użytkownika"
588
 
589
+ #: ../includes/ure-user-edit.php:67
590
  #, php-format
591
  msgid "User \"%s\" update: please confirm to continue"
592
  msgstr "Aktualizacja użytkownika \"%s\": potwierdź by kontynuować"
593
 
594
+ #: ../includes/ure-user-edit.php:79
595
  msgid "Change capabilities for user"
596
  msgstr "Zmień uprawnienia użytkownika"
597
 
598
+ #: ../includes/ure-user-edit.php:82
599
  msgid "Role:"
600
  msgstr "Rola:"
601
 
602
+ #: ../includes/ure-user-edit.php:104
603
  msgid "Add capabilities to this user:"
604
  msgstr "Dodaj uprawnienie dla tego użytkownika:"
605
 
606
+ #: ../includes/ure-options.php:59
607
+ msgid "User Roles are restored from the backup data. "
608
+ msgstr "Uprawnienia zostały przywrócone z kopii zapasowej."
609
 
610
+ #: ../includes/ure-options.php:130
611
+ msgid "Error: "
612
+ msgstr "Błąd:"
 
613
 
614
+ #: ../includes/ure-options.php:130
615
+ #: ../includes/ure-options.php:146
616
+ msgid "Role"
617
+ msgstr "Rola"
618
 
619
+ #: ../includes/ure-options.php:130
620
+ msgid "does not exist"
621
+ msgstr "nie istnieje"
622
 
623
+ #: ../includes/ure-options.php:146
624
+ msgid "is updated successfully"
625
+ msgstr "została zaaktualizowana"
626
 
627
+ #: ../includes/ure-options.php:154
628
+ msgid "User"
629
+ msgstr "Użytkownik"
 
630
 
631
+ #: ../includes/ure-options.php:154
632
+ msgid "capabilities are updated successfully"
633
+ msgstr "uprawnienia zostały zaktualizowane"
634
 
635
+ #: ../includes/ure-options.php:232
636
+ msgid "About this Plugin:"
637
+ msgstr "O wtyczce:"
638
+
639
+ #: ../includes/ure-options.php:233
640
+ msgid "Author's website"
641
+ msgstr "Strona domowa autora"
642
+
643
+ #: ../includes/ure-options.php:234
644
+ msgid "Plugin webpage"
645
+ msgstr "Strona domowa wtyczki"
646
+
647
+ #: ../includes/ure-options.php:236
648
+ msgid "FAQ"
649
+ msgstr "FAQ"
650
+
651
+ #: ../includes/ure-options.php:237
652
+ msgid "Greetings"
653
+ msgstr "Pozdrowienia"
654
+
655
+ #: ../includes/ure-options.php:259
656
+ msgid "Greetings:"
657
+ msgstr "Podziękowania:"
658
+
659
+ #: ../includes/ure-options.php:260
660
+ msgid "It's me, the author"
661
+ msgstr "To ja, autor"
662
+
663
+ #: ../includes/ure-options.php:261
664
+ msgid "For the help with Belorussian translation"
665
+ msgstr "Za tłumacznie Białoruskie"
666
+
667
+ #: ../includes/ure-options.php:262
668
+ msgid "For the help with Brasilian translation"
669
+ msgstr "Za tłumacznie Brazylijskie"
670
+
671
+ #: ../includes/ure-options.php:263
672
+ msgid "For the help with Brasilian Portuguese translation"
673
+ msgstr "Za tłumacznie Brazylijskie"
674
+
675
+ #: ../includes/ure-options.php:264
676
+ msgid "For the help with Chinese translation"
677
+ msgstr "Za tłumacznie Chinese"
678
+
679
+ #: ../includes/ure-options.php:265
680
+ msgid "For the help with Dutch translation"
681
+ msgstr "Za tłumacznie Dutch"
682
+
683
+ #: ../includes/ure-options.php:266
684
+ msgid "For the help with Finnish translation"
685
+ msgstr "Za tłumacznie Finnish"
686
+
687
+ #: ../includes/ure-options.php:267
688
+ #: ../includes/ure-options.php:268
689
+ msgid "For the help with French translation"
690
+ msgstr "Za tłumacznie Francuskie"
691
+
692
+ #: ../includes/ure-options.php:269
693
+ msgid "For the help with German translation"
694
+ msgstr "Za tłumacznie Niemieckie"
695
+
696
+ #: ../includes/ure-options.php:270
697
+ #: ../includes/ure-options.php:271
698
+ msgid "For the help with Hebrew translation"
699
+ msgstr "Za tłumacznie Hebrajskie"
700
+
701
+ #: ../includes/ure-options.php:272
702
+ msgid "For the help with Hindi translation"
703
+ msgstr "Za tłumacznie Fińskie"
704
+
705
+ #: ../includes/ure-options.php:273
706
+ msgid "For the help with Hungarian translation"
707
+ msgstr "Za tłumacznie Hungarian"
708
+
709
+ #: ../includes/ure-options.php:274
710
+ #: ../includes/ure-options.php:275
711
+ msgid "For the help with Italian translation"
712
+ msgstr "Za tłumacznie włoski"
713
+
714
+ #: ../includes/ure-options.php:276
715
+ msgid "For the help with Japanese translation"
716
+ msgstr "Za tłumacznie Japońskie"
717
+
718
+ #: ../includes/ure-options.php:277
719
+ msgid "For the help with Lithuanian translation"
720
+ msgstr "Za tłumacznie Litewskie"
721
+
722
+ #: ../includes/ure-options.php:278
723
+ #: ../includes/ure-options.php:279
724
+ #: ../includes/ure-options.php:280
725
+ msgid "For the help with Persian translation"
726
+ msgstr "Za tłumaczenie perskie"
727
+
728
+ #: ../includes/ure-options.php:281
729
+ #: ../includes/ure-options.php:282
730
+ msgid "For the help with Polish translation"
731
+ msgstr "Za tłumacznie Polski"
732
+
733
+ #: ../includes/ure-options.php:283
734
+ #: ../includes/ure-options.php:284
735
+ msgid "For the help with Spanish translation"
736
+ msgstr "Za tłumacznie Hiszpańskie"
737
+
738
+ #: ../includes/ure-options.php:285
739
+ msgid "For the updated Swedish translation"
740
+ msgstr "Za tłumacznie Szwedzkie"
741
+
742
+ #: ../includes/ure-options.php:286
743
+ msgid "For the help with Swedish translation"
744
+ msgstr "Za tłumacznie Swedish"
745
+
746
+ #: ../includes/ure-options.php:287
747
+ msgid "For the help with Turkish translation"
748
+ msgstr "Za tłumaczenie tureckie"
749
+
750
+ #: ../includes/ure-options.php:289
751
+ msgid "For the code to hide administrator role"
752
+ msgstr "Za zakodowanie \"ukrycia grupy administracji\""
753
+
754
+ #: ../includes/ure-options.php:290
755
+ msgid "For the code enhancement suggestion"
756
+ msgstr "Sugestie dotyczące modyfikacji kodu"
757
+
758
+ #: ../includes/ure-options.php:292
759
+ msgid "Do you wish to see your name with link to your site here? You are welcome! Your help with translation and new ideas are very appreciated."
760
+ msgstr "Chcesz by twoje imie się tutaj znalazło? Zapraszamy! Możesz pomóc nam tworzyć tłumaczyc i ulepszać wtyczkę!"
761
 
762
  #~ msgid "Roles list reading error is encountered"
763
  #~ msgstr "Błąd wczytywania grup"
lang/ure-pt_BR.mo CHANGED
Binary file
lang/ure-pt_BR.po CHANGED
@@ -1,25 +1,27 @@
1
  msgid ""
2
  msgstr ""
3
- "Project-Id-Version: User Role Editor v.2.0\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2012-06-23 23:29+0700\n"
6
- "PO-Revision-Date: 2012-06-23 23:30+0700\n"
7
  "Last-Translator: Vladimir Garagulya <vladimir@shinephp.com>\n"
8
- "Language-Team: Rafael Galdêncio <bodocabdd@gmail.com>\n"
9
  "Language: \n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
- "X-Poedit-KeywordsList: _e;__\n"
14
- "X-Poedit-Basepath: .\n"
15
  "X-Poedit-Language: Portuguese\n"
16
  "X-Poedit-Country: BRAZIL\n"
17
  "X-Poedit-SourceCharset: utf-8\n"
 
 
18
  "X-Poedit-SearchPath-0: ..\n"
19
 
 
 
20
  #: ../user-role-editor.php:35
21
  msgid "User Role Editor requires WordPress 3.0 or newer."
22
- msgstr "Editor de Regras de Usuários requer Wordpress 3.0 ou mais novo."
23
 
24
  #: ../user-role-editor.php:35
25
  #: ../user-role-editor.php:40
@@ -27,731 +29,735 @@ msgid "Please update!"
27
  msgstr "Por favor, atualize!"
28
 
29
  #: ../user-role-editor.php:40
30
- #, fuzzy
31
  msgid "User Role Editor requires PHP 5.0 or newer."
32
- msgstr "Editor de Regras de Usuários requer Wordpress 3.0 ou mais novo."
33
 
34
- #: ../user-role-editor.php:65
35
  msgid "Only"
36
- msgstr ""
37
 
38
- #: ../user-role-editor.php:65
39
  msgid "is allowed to use"
40
- msgstr ""
41
 
42
- #: ../user-role-editor.php:71
43
- #: ../user-role-editor.php:246
44
  msgid "User Role Editor"
45
- msgstr "Editor de Regras de Usuários"
46
 
47
- #: ../user-role-editor.php:218
48
  msgid "Settings"
49
  msgstr "Configurações"
50
 
51
- #: ../user-role-editor.php:228
52
- #: ../ure-options.php:218
53
  msgid "Changelog"
54
- msgstr "Log de Alterações"
55
 
56
- #: ../user-role-editor.php:275
57
  msgid "Capabilities"
58
- msgstr ""
59
 
60
- #: ../ure-lib.php:45
61
  msgid "Error is occur. Please check the log file."
62
- msgstr "Ocorreu um erro. Por favor, verifique o log."
63
 
64
- #: ../ure-lib.php:155
65
  msgid "Database operation error. Check log file."
66
- msgstr "Erro em Operação de Banco de Dados. Verifique o log."
67
 
68
- #: ../ure-lib.php:188
69
  msgid "No backup data. It is created automatically before the first role data update."
70
- msgstr "Sem dados de backup. É criado automaticamente antes da primeira alteração de regra."
71
 
72
- #: ../ure-lib.php:226
73
  msgid "Backup record is created for the current role capabilities"
74
- msgstr "Registro de backup foi criado para a regra atual"
75
 
76
- #: ../ure-lib.php:345
77
  msgid "Error: Role name must contain latin characters and digits only!"
78
- msgstr "Erro: O nome da regra deve conter apenas caracteres latinos e dígitos."
79
 
80
- #: ../ure-lib.php:352
81
  #, php-format
82
  msgid "Role %s exists already"
83
- msgstr ""
84
 
85
- #: ../ure-lib.php:365
86
  msgid "Error is encountered during new role create operation"
87
- msgstr "Encontrado erro durante operação para criaçao de nova regra"
88
 
89
- #: ../ure-lib.php:367
90
  #, php-format
91
  msgid "Role %s is created successfully"
92
- msgstr "Regra %s foi criada com sucesso"
93
 
94
- #: ../ure-lib.php:451
95
  msgid "Error encountered during role delete operation"
96
- msgstr "Encontrado erro durante operação de deleção de regra"
97
 
98
- #: ../ure-lib.php:453
99
  #, php-format
100
  msgid "Role %s is deleted successfully"
101
- msgstr "Regra %s foi excluída com sucesso"
102
 
103
- #: ../ure-lib.php:471
104
  msgid "Error encountered during default role change operation"
105
- msgstr "Encontrado erro durante operação de mudança de regra padrão"
106
 
107
- #: ../ure-lib.php:477
108
  #, php-format
109
  msgid "Default role for new users is set to %s successfully"
110
- msgstr "Regra padrão para novo usuário foi alterado para %s com sucesso"
111
 
112
- #: ../ure-lib.php:505
113
  msgid "Editor"
114
  msgstr "Editor"
115
 
116
- #: ../ure-lib.php:506
117
  msgid "Author"
118
  msgstr "Autor"
119
 
120
- #: ../ure-lib.php:507
121
  msgid "Contributor"
122
  msgstr "Colaborador"
123
 
124
- #: ../ure-lib.php:508
125
  msgid "Subscriber"
126
  msgstr "Assinante"
127
 
128
- #: ../ure-lib.php:510
129
  msgid "Switch themes"
130
  msgstr "Trocar temas"
131
 
132
- #: ../ure-lib.php:511
133
  msgid "Edit themes"
134
  msgstr "Editar temas"
135
 
136
- #: ../ure-lib.php:512
137
  msgid "Activate plugins"
138
  msgstr "Ativar plugins"
139
 
140
- #: ../ure-lib.php:513
141
  msgid "Edit plugins"
142
  msgstr "Editar plugins"
143
 
144
- #: ../ure-lib.php:514
145
  msgid "Edit users"
146
  msgstr "Editar usuários"
147
 
148
- #: ../ure-lib.php:515
149
  msgid "Edit files"
150
  msgstr "Editar arquivos"
151
 
152
- #: ../ure-lib.php:516
153
  msgid "Manage options"
154
  msgstr "Gerenciar opções"
155
 
156
- #: ../ure-lib.php:517
157
  msgid "Moderate comments"
158
  msgstr "Moderar comentários"
159
 
160
- #: ../ure-lib.php:518
161
  msgid "Manage categories"
162
  msgstr "Gerenciar categorias"
163
 
164
- #: ../ure-lib.php:519
165
  msgid "Manage links"
166
  msgstr "Gerenciar links"
167
 
168
- #: ../ure-lib.php:520
169
  msgid "Upload files"
170
- msgstr "Upload de arquivos"
171
 
172
- #: ../ure-lib.php:521
173
  msgid "Import"
174
  msgstr "Importar"
175
 
176
- #: ../ure-lib.php:522
177
  msgid "Unfiltered html"
178
  msgstr "HTML não filtrado"
179
 
180
- #: ../ure-lib.php:523
181
  msgid "Edit posts"
182
  msgstr "Editar posts"
183
 
184
- #: ../ure-lib.php:524
185
  msgid "Edit others posts"
186
- msgstr "Editar post de outros"
187
 
188
- #: ../ure-lib.php:525
189
  msgid "Edit published posts"
190
  msgstr "Editar posts publicados"
191
 
192
- #: ../ure-lib.php:526
193
  msgid "Publish posts"
194
  msgstr "Publicar posts"
195
 
196
- #: ../ure-lib.php:527
197
  msgid "Edit pages"
198
  msgstr "Editar páginas"
199
 
200
- #: ../ure-lib.php:528
201
  msgid "Read"
202
  msgstr "Ler"
203
 
204
- #: ../ure-lib.php:529
205
  msgid "Level 10"
206
- msgstr "Level 10"
207
 
208
- #: ../ure-lib.php:530
209
  msgid "Level 9"
210
- msgstr "Level 9"
211
 
212
- #: ../ure-lib.php:531
213
  msgid "Level 8"
214
- msgstr "Level 8"
215
 
216
- #: ../ure-lib.php:532
217
  msgid "Level 7"
218
- msgstr "Level 7"
219
 
220
- #: ../ure-lib.php:533
221
  msgid "Level 6"
222
- msgstr "Level 6"
223
 
224
- #: ../ure-lib.php:534
225
  msgid "Level 5"
226
- msgstr "Level 5"
227
 
228
- #: ../ure-lib.php:535
229
  msgid "Level 4"
230
- msgstr "Level 4"
231
 
232
- #: ../ure-lib.php:536
233
  msgid "Level 3"
234
- msgstr "Level 3"
235
 
236
- #: ../ure-lib.php:537
237
  msgid "Level 2"
238
- msgstr "Level 2"
239
 
240
- #: ../ure-lib.php:538
241
  msgid "Level 1"
242
- msgstr "Level 1"
243
 
244
- #: ../ure-lib.php:539
245
  msgid "Level 0"
246
- msgstr "Level 0"
247
 
248
- #: ../ure-lib.php:540
249
  msgid "Edit others pages"
250
- msgstr "Editar páginas de outros"
251
 
252
- #: ../ure-lib.php:541
253
  msgid "Edit published pages"
254
  msgstr "Editar páginas publicadas"
255
 
256
- #: ../ure-lib.php:542
257
  msgid "Publish pages"
258
  msgstr "Publicar páginas"
259
 
260
- #: ../ure-lib.php:543
261
  msgid "Delete pages"
262
  msgstr "Excluir páginas"
263
 
264
- #: ../ure-lib.php:544
265
  msgid "Delete others pages"
266
- msgstr "Excluir páginas de outros"
267
 
268
- #: ../ure-lib.php:545
269
  msgid "Delete published pages"
270
  msgstr "Excluir páginas publicadas"
271
 
272
- #: ../ure-lib.php:546
273
  msgid "Delete posts"
274
  msgstr "Excluir posts"
275
 
276
- #: ../ure-lib.php:547
277
  msgid "Delete others posts"
278
- msgstr "Excluir posts de outros"
279
 
280
- #: ../ure-lib.php:548
281
  msgid "Delete published posts"
282
  msgstr "Excluir posts publicados"
283
 
284
- #: ../ure-lib.php:549
285
  msgid "Delete private posts"
286
  msgstr "Excluir posts privados"
287
 
288
- #: ../ure-lib.php:550
289
  msgid "Edit private posts"
290
  msgstr "Editar posts privados"
291
 
292
- #: ../ure-lib.php:551
293
  msgid "Read private posts"
294
  msgstr "Ler posts privados"
295
 
296
- #: ../ure-lib.php:552
297
  msgid "Delete private pages"
298
  msgstr "Excluir páginas privadas"
299
 
300
- #: ../ure-lib.php:553
301
  msgid "Edit private pages"
302
  msgstr "Editar páginas privadas"
303
 
304
- #: ../ure-lib.php:554
305
  msgid "Read private pages"
306
  msgstr "Ler páginas privadas"
307
 
308
- #: ../ure-lib.php:555
309
  msgid "Delete users"
310
  msgstr "Excluir usuários"
311
 
312
- #: ../ure-lib.php:556
313
  msgid "Create users"
314
  msgstr "Criar usuários"
315
 
316
- #: ../ure-lib.php:557
317
  msgid "Unfiltered upload"
318
- msgstr "Upload não filtrado"
319
 
320
- #: ../ure-lib.php:558
321
  msgid "Edit dashboard"
322
- msgstr "Editar painel"
323
 
324
- #: ../ure-lib.php:559
325
  msgid "Update plugins"
326
  msgstr "Atualizar plugins"
327
 
328
- #: ../ure-lib.php:560
329
  msgid "Delete plugins"
330
  msgstr "Excluir plugins"
331
 
332
- #: ../ure-lib.php:561
333
  msgid "Install plugins"
334
  msgstr "Instalar plugins"
335
 
336
- #: ../ure-lib.php:562
337
  msgid "Update themes"
338
  msgstr "Atualizar temas"
339
 
340
- #: ../ure-lib.php:563
341
  msgid "Install themes"
342
  msgstr "Instalar temas"
343
 
344
- #: ../ure-lib.php:564
345
  msgid "Update core"
346
- msgstr ""
347
 
348
- #: ../ure-lib.php:565
349
  msgid "List users"
350
  msgstr ""
351
 
352
- #: ../ure-lib.php:566
353
  msgid "Remove users"
354
- msgstr ""
355
 
356
- #: ../ure-lib.php:567
357
  msgid "Add users"
358
- msgstr ""
359
 
360
- #: ../ure-lib.php:568
361
  msgid "Promote users"
362
- msgstr ""
363
 
364
- #: ../ure-lib.php:569
365
  msgid "Edit theme options"
366
- msgstr ""
367
 
368
- #: ../ure-lib.php:570
369
  msgid "Delete themes"
370
- msgstr ""
371
 
372
- #: ../ure-lib.php:571
373
  msgid "Export"
374
- msgstr ""
375
 
376
- #: ../ure-lib.php:655
377
- #, fuzzy
378
  msgid "Error: Capability name must contain latin characters and digits only!"
379
- msgstr "Erro: O nome da regra deve conter apenas caracteres latinos e dígitos."
380
 
381
- #: ../ure-lib.php:667
382
- #, fuzzy, php-format
383
  msgid "Capability %s is added successfully"
384
- msgstr "Regra %s foi criada com sucesso"
385
 
386
- #: ../ure-lib.php:669
387
  #, php-format
388
  msgid "Capability %s exists already"
389
- msgstr ""
390
 
391
- #: ../ure-lib.php:818
392
  #, php-format
393
  msgid "Error! You do not have permission to delete this capability: %s!"
394
- msgstr ""
395
 
396
- #: ../ure-lib.php:840
397
  #, php-format
398
  msgid "Capability %s is removed successfully"
399
- msgstr ""
400
 
401
- #: ../ure-lib.php:902
402
  msgid "Help"
403
- msgstr ""
404
 
405
- #: ../ure-role-edit.php:29
406
- #, fuzzy
407
  msgid "None"
408
- msgstr "Doar"
409
 
410
- #: ../ure-role-edit.php:93
411
- #, fuzzy
412
  msgid " Name can not be empty!"
413
- msgstr "Nome da Regra não pode estar vazio!"
414
 
415
- #: ../ure-role-edit.php:97
416
- #, fuzzy
417
  msgid " Name must contain latin characters and digits only!"
418
- msgstr "Nome da Regra deve conter caracteres latinos e dígitos somente!"
419
 
420
- #: ../ure-role-edit.php:102
421
- #: ../ure-role-edit.php:293
422
  msgid "Delete Role"
423
- msgstr "Excluir regra"
424
 
425
- #: ../ure-role-edit.php:104
426
  msgid "Change Default Role"
427
- msgstr "Alterar Regra Padrão"
428
 
429
- #: ../ure-role-edit.php:106
430
  msgid "Restore Roles from backup copy. Be careful, backup was created when you started URE 1st time. All changes you made after that will be lost"
431
- msgstr ""
432
 
433
- #: ../ure-role-edit.php:108
434
  msgid "Warning! Be careful - removing critical capability could crash some plugin or other custom code"
435
- msgstr ""
436
 
437
- #: ../ure-role-edit.php:110
438
  msgid "Please confirm to continue"
439
  msgstr "Por favor, confirme para continuar"
440
 
441
- #: ../ure-role-edit.php:147
442
  #, php-format
443
  msgid "Role \"%s\" update: please confirm to continue"
444
- msgstr "Atualização da Regra \"%s\": por favor, confirme para continuar"
445
 
446
- #: ../ure-role-edit.php:155
447
  msgid "Select Role and change its capabilities list"
448
- msgstr "Selecione Regra e altere sua lista de capacidades"
449
 
450
- #: ../ure-role-edit.php:157
451
  msgid "Select Role:"
452
- msgstr "Selecione uma Regra:"
453
 
454
- #: ../ure-role-edit.php:167
455
- #: ../ure-user-edit.php:91
456
  msgid "Show capabilities in human readable form"
457
- msgstr "Mostrar capacidades em forma humanamente legível"
458
 
459
- #: ../ure-role-edit.php:176
460
- #: ../ure-user-edit.php:100
461
  msgid "Show deprecated capabilities"
462
- msgstr ""
463
 
464
- #: ../ure-role-edit.php:180
465
  msgid "If checked, then apply action to ALL sites of this Network"
466
- msgstr ""
467
 
468
- #: ../ure-role-edit.php:190
469
  msgid "Apply to All Sites"
470
- msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
471
 
472
- #: ../ure-role-edit.php:251
473
- #: ../ure-user-edit.php:163
474
  msgid "Update"
475
  msgstr "Atualizar"
476
 
477
- #: ../ure-role-edit.php:251
478
- #: ../ure-user-edit.php:163
479
  msgid "Save Changes"
480
- msgstr "Salvar Alterações"
481
 
482
- #: ../ure-role-edit.php:252
483
- #: ../ure-user-edit.php:164
484
  msgid "Cancel"
485
  msgstr "Cancelar"
486
 
487
- #: ../ure-role-edit.php:252
488
- #: ../ure-user-edit.php:164
489
  msgid "Cancel not saved changes"
490
- msgstr "Cancelar alterações não salvas"
491
 
492
- #: ../ure-role-edit.php:255
493
  msgid "Select All"
494
- msgstr ""
495
 
496
- #: ../ure-role-edit.php:255
497
  msgid "Select All Capabilities"
498
- msgstr ""
499
 
500
- #: ../ure-role-edit.php:256
501
  msgid "Unselect All"
502
- msgstr ""
503
 
504
- #: ../ure-role-edit.php:256
505
  msgid "Unselect All Capabilities"
506
- msgstr ""
507
 
508
- #: ../ure-role-edit.php:257
509
  msgid "Reverse"
510
- msgstr ""
511
 
512
- #: ../ure-role-edit.php:257
513
  msgid "Turn checked capabilities off and vise versa"
514
- msgstr ""
515
 
516
- #: ../ure-role-edit.php:260
517
  msgid "Reset"
518
- msgstr "Resetar"
519
 
520
- #: ../ure-role-edit.php:260
521
  msgid "Restore Roles from backup copy"
522
- msgstr "Restaurar Regras a partir de uma cópia de backup"
523
 
524
- #: ../ure-role-edit.php:270
525
  msgid "Add New Role"
526
- msgstr "Adicionar Nova Regra"
527
 
528
- #: ../ure-role-edit.php:272
529
  msgid "Name: "
530
- msgstr ""
531
 
532
- #: ../ure-role-edit.php:276
533
  msgid "Make copy of: "
534
- msgstr ""
535
 
536
- #: ../ure-role-edit.php:279
537
- #: ../ure-role-edit.php:308
538
  msgid "Add"
539
  msgstr "Adicionar"
540
 
541
- #: ../ure-role-edit.php:279
542
  msgid "Add New User Role"
543
- msgstr "Adicionar Nova Regra de Usuário"
544
 
545
- #: ../ure-role-edit.php:283
546
  msgid "Default Role for New User"
547
- msgstr "Regra Padrão para Novo Usuário"
548
 
549
- #: ../ure-role-edit.php:288
550
  msgid "Change"
551
  msgstr "Alterar"
552
 
553
- #: ../ure-role-edit.php:288
554
  msgid "Set as Default User Role"
555
- msgstr "Definir como Regra Padrão de Usuário"
556
 
557
- #: ../ure-role-edit.php:298
558
  msgid "Delete"
559
  msgstr "Excluir"
560
 
561
- #: ../ure-role-edit.php:298
562
  msgid "Delete User Role"
563
- msgstr "Excluir Regra de Usuário"
564
 
565
- #: ../ure-role-edit.php:303
566
- #: ../ure-role-edit.php:308
567
- #, fuzzy
568
  msgid "Add New Capability"
569
- msgstr "Adicionar Nova Regra"
570
 
571
- #: ../ure-role-edit.php:313
572
  msgid "Remove Capability"
573
- msgstr ""
574
 
575
- #: ../ure-role-edit.php:318
576
- #, fuzzy
577
  msgid "Remove"
578
- msgstr "Regra"
579
 
580
- #: ../ure-role-edit.php:318
581
  msgid "Remove User Capability"
582
- msgstr ""
583
 
584
- #: ../ure-user-edit.php:67
585
- #, fuzzy, php-format
586
  msgid "User \"%s\" update: please confirm to continue"
587
- msgstr "Atualização da Regra \"%s\": por favor, confirme para continuar"
588
 
589
- #: ../ure-user-edit.php:79
590
  msgid "Change capabilities for user"
591
- msgstr ""
592
 
593
- #: ../ure-user-edit.php:82
594
- #, fuzzy
595
  msgid "Role:"
596
- msgstr "Regra"
597
 
598
- #: ../ure-user-edit.php:104
599
  msgid "Add capabilities to this user:"
600
- msgstr ""
601
 
602
- #: ../ure-options.php:59
603
- #, fuzzy
604
  msgid "User Roles are restored from the backup data. "
605
- msgstr "Regras serão restauradas a partir dos dados de backup"
606
 
607
- #: ../ure-options.php:125
608
  msgid "Error: "
609
- msgstr ""
610
 
611
- #: ../ure-options.php:125
612
- #: ../ure-options.php:143
613
  msgid "Role"
614
- msgstr "Regra"
615
 
616
- #: ../ure-options.php:125
617
  msgid "does not exist"
618
- msgstr ""
619
 
620
- #: ../ure-options.php:143
621
  msgid "is updated successfully"
622
- msgstr "foi alterada com sucesso"
623
 
624
- #: ../ure-options.php:152
625
  msgid "User"
626
- msgstr ""
627
 
628
- #: ../ure-options.php:152
629
- #, fuzzy
630
  msgid "capabilities are updated successfully"
631
- msgstr "foi alterada com sucesso"
632
 
633
- #: ../ure-options.php:215
634
  msgid "About this Plugin:"
635
- msgstr "Sobre este plugin:"
636
 
637
- #: ../ure-options.php:216
638
  msgid "Author's website"
639
- msgstr "Website do autor"
640
 
641
- #: ../ure-options.php:217
642
  msgid "Plugin webpage"
643
- msgstr "Página do plugin"
644
 
645
- #: ../ure-options.php:219
646
  msgid "FAQ"
647
  msgstr "FAQ"
648
 
649
- #: ../ure-options.php:220
650
- #, fuzzy
651
  msgid "Greetings"
652
- msgstr "Agradecimentos:"
653
 
654
- #: ../ure-options.php:242
655
  msgid "Greetings:"
656
- msgstr "Agradecimentos:"
657
 
658
- #: ../ure-options.php:243
659
  msgid "It's me, the author"
660
  msgstr "Sou eu, o autor"
661
 
662
- #: ../ure-options.php:244
663
  msgid "For the help with Belorussian translation"
664
- msgstr "Pela ajuda com a tradução para Bielorusso"
665
 
666
- #: ../ure-options.php:245
667
  msgid "For the help with Brasilian translation"
668
- msgstr ""
669
 
670
- #: ../ure-options.php:246
 
 
 
 
671
  msgid "For the help with Chinese translation"
672
- msgstr "Pela ajuda com a tradução para Chinês"
673
 
674
- #: ../ure-options.php:247
675
  msgid "For the help with Dutch translation"
676
- msgstr "Pela ajuda com a tradução para Holandês"
677
 
678
- #: ../ure-options.php:248
679
  msgid "For the help with Finnish translation"
680
- msgstr "Pela ajuda com a tradução para Finnish"
681
 
682
- #: ../ure-options.php:249
683
- #: ../ure-options.php:250
684
  msgid "For the help with French translation"
685
- msgstr "Pela ajuda com a tradução para Francês"
686
 
687
- #: ../ure-options.php:251
688
  msgid "For the help with German translation"
689
- msgstr "Pela ajuda com a tradução para Alemão"
690
 
691
- #: ../ure-options.php:252
692
- #: ../ure-options.php:253
693
  msgid "For the help with Hebrew translation"
694
- msgstr ""
695
 
696
- #: ../ure-options.php:254
697
  msgid "For the help with Hindi translation"
698
- msgstr "Pela ajuda com a tradução para Hindi"
699
 
700
- #: ../ure-options.php:255
701
  msgid "For the help with Hungarian translation"
702
- msgstr "Pela ajuda com a tradução para Húngaro"
703
 
704
- #: ../ure-options.php:256
705
- #: ../ure-options.php:257
706
  msgid "For the help with Italian translation"
707
- msgstr "Pela ajuda com a tradução para Italiano"
708
 
709
- #: ../ure-options.php:258
710
  msgid "For the help with Japanese translation"
711
- msgstr "Pela ajuda com a tradução para Japonês"
712
 
713
- #: ../ure-options.php:259
714
  msgid "For the help with Lithuanian translation"
715
- msgstr ""
716
 
717
- #: ../ure-options.php:260
718
- #: ../ure-options.php:261
 
719
  msgid "For the help with Persian translation"
720
- msgstr ""
721
 
722
- #: ../ure-options.php:262
 
723
  msgid "For the help with Polish translation"
724
- msgstr "Pela ajuda com a tradução para Polonês"
725
 
726
- #: ../ure-options.php:263
727
- #: ../ure-options.php:264
728
  msgid "For the help with Spanish translation"
729
- msgstr "Pela ajuda com a tradução para Espanhol"
730
 
731
- #: ../ure-options.php:265
732
- #, fuzzy
733
  msgid "For the updated Swedish translation"
734
- msgstr "Pela ajuda com a tradução para Swedish"
735
 
736
- #: ../ure-options.php:266
737
  msgid "For the help with Swedish translation"
738
- msgstr "Pela ajuda com a tradução para Swedish"
739
 
740
- #: ../ure-options.php:267
741
  msgid "For the help with Turkish translation"
742
- msgstr ""
743
 
744
- #: ../ure-options.php:269
745
  msgid "For the code to hide administrator role"
746
- msgstr "Pelo código para ocultar a regra de administrador"
747
 
748
- #: ../ure-options.php:270
749
  msgid "For the code enhancement suggestion"
750
- msgstr ""
751
 
752
- #: ../ure-options.php:272
753
  msgid "Do you wish to see your name with link to your site here? You are welcome! Your help with translation and new ideas are very appreciated."
754
- msgstr "Você deseja ver o seu nome com um link para seu site aqui? Você é bem-vindo! Sua ajuda com tradução e novas idéias são sempre muito apreciadas."
755
 
756
- #~ msgid "Roles list reading error is encountered"
757
- #~ msgstr "Encontrado erro durante leitura da lista de regras"
1
  msgid ""
2
  msgstr ""
3
+ "Project-Id-Version: User Role Editor 2.0\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-09-01 08:50+0700\n"
6
+ "PO-Revision-Date: 2012-09-01 08:50+0700\n"
7
  "Last-Translator: Vladimir Garagulya <vladimir@shinephp.com>\n"
8
+ "Language-Team: Onbiz Team <contato@onbiz.com.br>\n"
9
  "Language: \n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
 
 
13
  "X-Poedit-Language: Portuguese\n"
14
  "X-Poedit-Country: BRAZIL\n"
15
  "X-Poedit-SourceCharset: utf-8\n"
16
+ "X-Poedit-KeywordsList: __;_e\n"
17
+ "X-Poedit-Basepath: .\n"
18
  "X-Poedit-SearchPath-0: ..\n"
19
 
20
+ # Role (Função ou Papel)
21
+ # Capability (Capacidade ou Permissão)
22
  #: ../user-role-editor.php:35
23
  msgid "User Role Editor requires WordPress 3.0 or newer."
24
+ msgstr "O User Role Editor requer WordPress 3.0 ou superior."
25
 
26
  #: ../user-role-editor.php:35
27
  #: ../user-role-editor.php:40
29
  msgstr "Por favor, atualize!"
30
 
31
  #: ../user-role-editor.php:40
 
32
  msgid "User Role Editor requires PHP 5.0 or newer."
33
+ msgstr "O User Role Editor requer PHP 5.0 ou superior."
34
 
35
+ #: ../user-role-editor.php:76
36
  msgid "Only"
37
+ msgstr "Apenas"
38
 
39
+ #: ../user-role-editor.php:76
40
  msgid "is allowed to use"
41
+ msgstr "pode usar"
42
 
43
+ #: ../user-role-editor.php:82
44
+ #: ../user-role-editor.php:251
45
  msgid "User Role Editor"
46
+ msgstr "User Role Editor"
47
 
48
+ #: ../user-role-editor.php:223
49
  msgid "Settings"
50
  msgstr "Configurações"
51
 
52
+ #: ../user-role-editor.php:233
53
+ #: ../includes/ure-options.php:235
54
  msgid "Changelog"
55
+ msgstr "Atualizações"
56
 
57
+ #: ../user-role-editor.php:280
58
  msgid "Capabilities"
59
+ msgstr "Capacidades"
60
 
61
+ #: ../includes/ure-lib.php:34
62
  msgid "Error is occur. Please check the log file."
63
+ msgstr "Ocorreu um erro. Por favor, verifique o arquivo de log."
64
 
65
+ #: ../includes/ure-lib.php:144
66
  msgid "Database operation error. Check log file."
67
+ msgstr "Erro de operação de banco de dados. Verifique o arquivo de log."
68
 
69
+ #: ../includes/ure-lib.php:177
70
  msgid "No backup data. It is created automatically before the first role data update."
71
+ msgstr "Nenhuma cópia de segurança. Ela é criada automaticamente antes da atualização da primeira Função."
72
 
73
+ #: ../includes/ure-lib.php:215
74
  msgid "Backup record is created for the current role capabilities"
75
+ msgstr "Cópia de segurança criada para as Capacidades da Função atual"
76
 
77
+ #: ../includes/ure-lib.php:329
78
  msgid "Error: Role name must contain latin characters and digits only!"
79
+ msgstr "Erro: o nome da Função deve conter apenas números e letras!"
80
 
81
+ #: ../includes/ure-lib.php:336
82
  #, php-format
83
  msgid "Role %s exists already"
84
+ msgstr "Função %s já existe"
85
 
86
+ #: ../includes/ure-lib.php:349
87
  msgid "Error is encountered during new role create operation"
88
+ msgstr "Um erro foi encontrado durante a criação de uma nova Função"
89
 
90
+ #: ../includes/ure-lib.php:351
91
  #, php-format
92
  msgid "Role %s is created successfully"
93
+ msgstr "Função %s foi criada com sucesso"
94
 
95
+ #: ../includes/ure-lib.php:435
96
  msgid "Error encountered during role delete operation"
97
+ msgstr "Erro encontrado durante a remoção de uma Função"
98
 
99
+ #: ../includes/ure-lib.php:437
100
  #, php-format
101
  msgid "Role %s is deleted successfully"
102
+ msgstr "Função %s foi excluída com sucesso"
103
 
104
+ #: ../includes/ure-lib.php:455
105
  msgid "Error encountered during default role change operation"
106
+ msgstr "Erro encontrado durante a alteração de uma Função padrão"
107
 
108
+ #: ../includes/ure-lib.php:461
109
  #, php-format
110
  msgid "Default role for new users is set to %s successfully"
111
+ msgstr "Função padrão para novos usuários foi alterada para %s com sucesso"
112
 
113
+ #: ../includes/ure-lib.php:489
114
  msgid "Editor"
115
  msgstr "Editor"
116
 
117
+ #: ../includes/ure-lib.php:490
118
  msgid "Author"
119
  msgstr "Autor"
120
 
121
+ #: ../includes/ure-lib.php:491
122
  msgid "Contributor"
123
  msgstr "Colaborador"
124
 
125
+ #: ../includes/ure-lib.php:492
126
  msgid "Subscriber"
127
  msgstr "Assinante"
128
 
129
+ #: ../includes/ure-lib.php:494
130
  msgid "Switch themes"
131
  msgstr "Trocar temas"
132
 
133
+ #: ../includes/ure-lib.php:495
134
  msgid "Edit themes"
135
  msgstr "Editar temas"
136
 
137
+ #: ../includes/ure-lib.php:496
138
  msgid "Activate plugins"
139
  msgstr "Ativar plugins"
140
 
141
+ #: ../includes/ure-lib.php:497
142
  msgid "Edit plugins"
143
  msgstr "Editar plugins"
144
 
145
+ #: ../includes/ure-lib.php:498
146
  msgid "Edit users"
147
  msgstr "Editar usuários"
148
 
149
+ #: ../includes/ure-lib.php:499
150
  msgid "Edit files"
151
  msgstr "Editar arquivos"
152
 
153
+ #: ../includes/ure-lib.php:500
154
  msgid "Manage options"
155
  msgstr "Gerenciar opções"
156
 
157
+ #: ../includes/ure-lib.php:501
158
  msgid "Moderate comments"
159
  msgstr "Moderar comentários"
160
 
161
+ #: ../includes/ure-lib.php:502
162
  msgid "Manage categories"
163
  msgstr "Gerenciar categorias"
164
 
165
+ #: ../includes/ure-lib.php:503
166
  msgid "Manage links"
167
  msgstr "Gerenciar links"
168
 
169
+ #: ../includes/ure-lib.php:504
170
  msgid "Upload files"
171
+ msgstr "Enviar arquivos"
172
 
173
+ #: ../includes/ure-lib.php:505
174
  msgid "Import"
175
  msgstr "Importar"
176
 
177
+ #: ../includes/ure-lib.php:506
178
  msgid "Unfiltered html"
179
  msgstr "HTML não filtrado"
180
 
181
+ #: ../includes/ure-lib.php:507
182
  msgid "Edit posts"
183
  msgstr "Editar posts"
184
 
185
+ #: ../includes/ure-lib.php:508
186
  msgid "Edit others posts"
187
+ msgstr "Editar posts dos outros"
188
 
189
+ #: ../includes/ure-lib.php:509
190
  msgid "Edit published posts"
191
  msgstr "Editar posts publicados"
192
 
193
+ #: ../includes/ure-lib.php:510
194
  msgid "Publish posts"
195
  msgstr "Publicar posts"
196
 
197
+ #: ../includes/ure-lib.php:511
198
  msgid "Edit pages"
199
  msgstr "Editar páginas"
200
 
201
+ #: ../includes/ure-lib.php:512
202
  msgid "Read"
203
  msgstr "Ler"
204
 
205
+ #: ../includes/ure-lib.php:513
206
  msgid "Level 10"
207
+ msgstr "Nível 10"
208
 
209
+ #: ../includes/ure-lib.php:514
210
  msgid "Level 9"
211
+ msgstr "Nível 9"
212
 
213
+ #: ../includes/ure-lib.php:515
214
  msgid "Level 8"
215
+ msgstr "Nível 8"
216
 
217
+ #: ../includes/ure-lib.php:516
218
  msgid "Level 7"
219
+ msgstr "Nível 7"
220
 
221
+ #: ../includes/ure-lib.php:517
222
  msgid "Level 6"
223
+ msgstr "Nível 6"
224
 
225
+ #: ../includes/ure-lib.php:518
226
  msgid "Level 5"
227
+ msgstr "Nível 5"
228
 
229
+ #: ../includes/ure-lib.php:519
230
  msgid "Level 4"
231
+ msgstr "Nível 4"
232
 
233
+ #: ../includes/ure-lib.php:520
234
  msgid "Level 3"
235
+ msgstr "Nível 3"
236
 
237
+ #: ../includes/ure-lib.php:521
238
  msgid "Level 2"
239
+ msgstr "Nível 2"
240
 
241
+ #: ../includes/ure-lib.php:522
242
  msgid "Level 1"
243
+ msgstr "Nível 1"
244
 
245
+ #: ../includes/ure-lib.php:523
246
  msgid "Level 0"
247
+ msgstr "Nível 0"
248
 
249
+ #: ../includes/ure-lib.php:524
250
  msgid "Edit others pages"
251
+ msgstr "Editar páginas dos outros"
252
 
253
+ #: ../includes/ure-lib.php:525
254
  msgid "Edit published pages"
255
  msgstr "Editar páginas publicadas"
256
 
257
+ #: ../includes/ure-lib.php:526
258
  msgid "Publish pages"
259
  msgstr "Publicar páginas"
260
 
261
+ #: ../includes/ure-lib.php:527
262
  msgid "Delete pages"
263
  msgstr "Excluir páginas"
264
 
265
+ #: ../includes/ure-lib.php:528
266
  msgid "Delete others pages"
267
+ msgstr "Excluir páginas dos outros"
268
 
269
+ #: ../includes/ure-lib.php:529
270
  msgid "Delete published pages"
271
  msgstr "Excluir páginas publicadas"
272
 
273
+ #: ../includes/ure-lib.php:530
274
  msgid "Delete posts"
275
  msgstr "Excluir posts"
276
 
277
+ #: ../includes/ure-lib.php:531
278
  msgid "Delete others posts"
279
+ msgstr "Excluir posts dos outros"
280
 
281
+ #: ../includes/ure-lib.php:532
282
  msgid "Delete published posts"
283
  msgstr "Excluir posts publicados"
284
 
285
+ #: ../includes/ure-lib.php:533
286
  msgid "Delete private posts"
287
  msgstr "Excluir posts privados"
288
 
289
+ #: ../includes/ure-lib.php:534
290
  msgid "Edit private posts"
291
  msgstr "Editar posts privados"
292
 
293
+ #: ../includes/ure-lib.php:535
294
  msgid "Read private posts"
295
  msgstr "Ler posts privados"
296
 
297
+ #: ../includes/ure-lib.php:536
298
  msgid "Delete private pages"
299
  msgstr "Excluir páginas privadas"
300
 
301
+ #: ../includes/ure-lib.php:537
302
  msgid "Edit private pages"
303
  msgstr "Editar páginas privadas"
304
 
305
+ #: ../includes/ure-lib.php:538
306
  msgid "Read private pages"
307
  msgstr "Ler páginas privadas"
308
 
309
+ #: ../includes/ure-lib.php:539
310
  msgid "Delete users"
311
  msgstr "Excluir usuários"
312
 
313
+ #: ../includes/ure-lib.php:540
314
  msgid "Create users"
315
  msgstr "Criar usuários"
316
 
317
+ #: ../includes/ure-lib.php:541
318
  msgid "Unfiltered upload"
319
+ msgstr "Envio não filtrado"
320
 
321
+ #: ../includes/ure-lib.php:542
322
  msgid "Edit dashboard"
323
+ msgstr "Editar Painel"
324
 
325
+ #: ../includes/ure-lib.php:543
326
  msgid "Update plugins"
327
  msgstr "Atualizar plugins"
328
 
329
+ #: ../includes/ure-lib.php:544
330
  msgid "Delete plugins"
331
  msgstr "Excluir plugins"
332
 
333
+ #: ../includes/ure-lib.php:545
334
  msgid "Install plugins"
335
  msgstr "Instalar plugins"
336
 
337
+ #: ../includes/ure-lib.php:546
338
  msgid "Update themes"
339
  msgstr "Atualizar temas"
340
 
341
+ #: ../includes/ure-lib.php:547
342
  msgid "Install themes"
343
  msgstr "Instalar temas"
344
 
345
+ #: ../includes/ure-lib.php:548
346
  msgid "Update core"
347
+ msgstr "Atualizar núcleo"
348
 
349
+ #: ../includes/ure-lib.php:549
350
  msgid "List users"
351
  msgstr ""
352
 
353
+ #: ../includes/ure-lib.php:550
354
  msgid "Remove users"
355
+ msgstr "Remover usuários"
356
 
357
+ #: ../includes/ure-lib.php:551
358
  msgid "Add users"
359
+ msgstr "Adicinar usuários"
360
 
361
+ #: ../includes/ure-lib.php:552
362
  msgid "Promote users"
363
+ msgstr "Promover usuários"
364
 
365
+ #: ../includes/ure-lib.php:553
366
  msgid "Edit theme options"
367
+ msgstr "Editar opções do tema"
368
 
369
+ #: ../includes/ure-lib.php:554
370
  msgid "Delete themes"
371
+ msgstr "Excluir temas"
372
 
373
+ #: ../includes/ure-lib.php:555
374
  msgid "Export"
375
+ msgstr "Exportar"
376
 
377
+ #: ../includes/ure-lib.php:639
 
378
  msgid "Error: Capability name must contain latin characters and digits only!"
379
+ msgstr "Erro: nome da Capacidade deve conter letras e números apenas!"
380
 
381
+ #: ../includes/ure-lib.php:651
382
+ #, php-format
383
  msgid "Capability %s is added successfully"
384
+ msgstr "Capacidade %s foi adicionada com sucesso"
385
 
386
+ #: ../includes/ure-lib.php:653
387
  #, php-format
388
  msgid "Capability %s exists already"
389
+ msgstr "Capacidade %s já existe"
390
 
391
+ #: ../includes/ure-lib.php:802
392
  #, php-format
393
  msgid "Error! You do not have permission to delete this capability: %s!"
394
+ msgstr "Erro! Você não tem permissão para excluir essa capacidade: %s!"
395
 
396
+ #: ../includes/ure-lib.php:824
397
  #, php-format
398
  msgid "Capability %s is removed successfully"
399
+ msgstr "Capacidade %s foi removida com sucesso"
400
 
401
+ #: ../includes/ure-lib.php:889
402
  msgid "Help"
403
+ msgstr "Ajuda"
404
 
405
+ #: ../includes/ure-role-edit.php:29
 
406
  msgid "None"
407
+ msgstr "Nenhum"
408
 
409
+ #: ../includes/ure-role-edit.php:101
 
410
  msgid " Name can not be empty!"
411
+ msgstr " Nome não pode ser vazio!"
412
 
413
+ #: ../includes/ure-role-edit.php:105
 
414
  msgid " Name must contain latin characters and digits only!"
415
+ msgstr " Nome deve conter letras e números apenas!"
416
 
417
+ #: ../includes/ure-role-edit.php:110
418
+ #: ../includes/ure-role-edit.php:367
419
  msgid "Delete Role"
420
+ msgstr "Excluir Função"
421
 
422
+ #: ../includes/ure-role-edit.php:112
423
  msgid "Change Default Role"
424
+ msgstr "Alterar Função Padrão"
425
 
426
+ #: ../includes/ure-role-edit.php:114
427
  msgid "Restore Roles from backup copy. Be careful, backup was created when you started URE 1st time. All changes you made after that will be lost"
428
+ msgstr "Restaurar Funções da cópia de segurança. Tenha cuidado, a cópia de segurança foi criada quando você iniciou o URE pela primeira vez. Todas as alterações feitas após isso serão perdidads"
429
 
430
+ #: ../includes/ure-role-edit.php:116
431
  msgid "Warning! Be careful - removing critical capability could crash some plugin or other custom code"
432
+ msgstr "Aviso! Tenha cuidado - remover Capacidades críticas pode afetar algum plugin ou outro código personalizado"
433
 
434
+ #: ../includes/ure-role-edit.php:118
435
  msgid "Please confirm to continue"
436
  msgstr "Por favor, confirme para continuar"
437
 
438
+ #: ../includes/ure-role-edit.php:155
439
  #, php-format
440
  msgid "Role \"%s\" update: please confirm to continue"
441
+ msgstr "Função \"%s\" atualizada: por favor, confirme para continuar"
442
 
443
+ #: ../includes/ure-role-edit.php:163
444
  msgid "Select Role and change its capabilities list"
445
+ msgstr "Selecione a Função e altere a sua lista de Capacidades"
446
 
447
+ #: ../includes/ure-role-edit.php:165
448
  msgid "Select Role:"
449
+ msgstr "Selecione a Função:"
450
 
451
+ #: ../includes/ure-role-edit.php:175
452
+ #: ../includes/ure-user-edit.php:91
453
  msgid "Show capabilities in human readable form"
454
+ msgstr "Exiba as Capacidades de uma forma legível por um ser humano"
455
 
456
+ #: ../includes/ure-role-edit.php:184
457
+ #: ../includes/ure-user-edit.php:100
458
  msgid "Show deprecated capabilities"
459
+ msgstr "Exiba as Capacidades obsoletas"
460
 
461
+ #: ../includes/ure-role-edit.php:188
462
  msgid "If checked, then apply action to ALL sites of this Network"
463
+ msgstr "Quando marcado, aplique as ações a TODOS os sites desta Rede"
464
 
465
+ #: ../includes/ure-role-edit.php:198
466
  msgid "Apply to All Sites"
467
+ msgstr "Aplicar a Todos os Sites"
468
+
469
+ #: ../includes/ure-role-edit.php:205
470
+ #: ../includes/ure-user-edit.php:105
471
+ #, fuzzy
472
+ msgid "Core capabilities:"
473
+ msgstr "WordPress Capacidades:"
474
+
475
+ #: ../includes/ure-role-edit.php:268
476
+ #: ../includes/ure-user-edit.php:167
477
+ #, fuzzy
478
+ msgid "Custom capabilities:"
479
+ msgstr "Capacidades:"
480
 
481
+ #: ../includes/ure-role-edit.php:319
482
+ #: ../includes/ure-user-edit.php:222
483
  msgid "Update"
484
  msgstr "Atualizar"
485
 
486
+ #: ../includes/ure-role-edit.php:319
487
+ #: ../includes/ure-user-edit.php:222
488
  msgid "Save Changes"
489
+ msgstr "Salvar alterações"
490
 
491
+ #: ../includes/ure-role-edit.php:320
492
+ #: ../includes/ure-user-edit.php:223
493
  msgid "Cancel"
494
  msgstr "Cancelar"
495
 
496
+ #: ../includes/ure-role-edit.php:320
497
+ #: ../includes/ure-user-edit.php:223
498
  msgid "Cancel not saved changes"
499
+ msgstr "Cancelar não salva as alterações"
500
 
501
+ #: ../includes/ure-role-edit.php:323
502
  msgid "Select All"
503
+ msgstr "Selecionar Todos"
504
 
505
+ #: ../includes/ure-role-edit.php:323
506
  msgid "Select All Capabilities"
507
+ msgstr "Selecionar Todas as Capacidades"
508
 
509
+ #: ../includes/ure-role-edit.php:327
510
  msgid "Unselect All"
511
+ msgstr "Desfazer seleção de Todos"
512
 
513
+ #: ../includes/ure-role-edit.php:327
514
  msgid "Unselect All Capabilities"
515
+ msgstr "Desfazer seleção de Todas as Capacidades"
516
 
517
+ #: ../includes/ure-role-edit.php:328
518
  msgid "Reverse"
519
+ msgstr "Reverter"
520
 
521
+ #: ../includes/ure-role-edit.php:328
522
  msgid "Turn checked capabilities off and vise versa"
523
+ msgstr "Desligar as Capacidades marcadas e vice-versa"
524
 
525
+ #: ../includes/ure-role-edit.php:334
526
  msgid "Reset"
527
+ msgstr "Limpar"
528
 
529
+ #: ../includes/ure-role-edit.php:334
530
  msgid "Restore Roles from backup copy"
531
+ msgstr "Restaurar Funções a partir de uma cópia de segurança"
532
 
533
+ #: ../includes/ure-role-edit.php:344
534
  msgid "Add New Role"
535
+ msgstr "Adicionar Nova Função"
536
 
537
+ #: ../includes/ure-role-edit.php:346
538
  msgid "Name: "
539
+ msgstr "Nome: "
540
 
541
+ #: ../includes/ure-role-edit.php:350
542
  msgid "Make copy of: "
543
+ msgstr "Fazer uma cópia de: "
544
 
545
+ #: ../includes/ure-role-edit.php:353
546
+ #: ../includes/ure-role-edit.php:382
547
  msgid "Add"
548
  msgstr "Adicionar"
549
 
550
+ #: ../includes/ure-role-edit.php:353
551
  msgid "Add New User Role"
552
+ msgstr "Adicionar Nova Função de Usuário"
553
 
554
+ #: ../includes/ure-role-edit.php:357
555
  msgid "Default Role for New User"
556
+ msgstr "Função Padrão para Novo Usuário"
557
 
558
+ #: ../includes/ure-role-edit.php:362
559
  msgid "Change"
560
  msgstr "Alterar"
561
 
562
+ #: ../includes/ure-role-edit.php:362
563
  msgid "Set as Default User Role"
564
+ msgstr "Usar como Função Padrão de Usuário"
565
 
566
+ #: ../includes/ure-role-edit.php:372
567
  msgid "Delete"
568
  msgstr "Excluir"
569
 
570
+ #: ../includes/ure-role-edit.php:372
571
  msgid "Delete User Role"
572
+ msgstr "Excluir Função de Usuário"
573
 
574
+ #: ../includes/ure-role-edit.php:377
575
+ #: ../includes/ure-role-edit.php:382
 
576
  msgid "Add New Capability"
577
+ msgstr "Adicionar Nova Capacidade"
578
 
579
+ #: ../includes/ure-role-edit.php:387
580
  msgid "Remove Capability"
581
+ msgstr "Remover Capacidade"
582
 
583
+ #: ../includes/ure-role-edit.php:392
 
584
  msgid "Remove"
585
+ msgstr "Remover"
586
 
587
+ #: ../includes/ure-role-edit.php:392
588
  msgid "Remove User Capability"
589
+ msgstr "Remover Capacidade de Usuário"
590
 
591
+ #: ../includes/ure-user-edit.php:67
592
+ #, php-format
593
  msgid "User \"%s\" update: please confirm to continue"
594
+ msgstr "Usuário \"%s\" atualizado: por favor, confirme para continuar"
595
 
596
+ #: ../includes/ure-user-edit.php:79
597
  msgid "Change capabilities for user"
598
+ msgstr "Altere as Capacidades do usuário"
599
 
600
+ #: ../includes/ure-user-edit.php:82
 
601
  msgid "Role:"
602
+ msgstr "Função:"
603
 
604
+ #: ../includes/ure-user-edit.php:104
605
  msgid "Add capabilities to this user:"
606
+ msgstr "Adicione Capacidades a este usuário:"
607
 
608
+ #: ../includes/ure-options.php:59
 
609
  msgid "User Roles are restored from the backup data. "
610
+ msgstr "Capacidades de Usuário foram restauradas da cópia de segurança."
611
 
612
+ #: ../includes/ure-options.php:130
613
  msgid "Error: "
614
+ msgstr "Erro:"
615
 
616
+ #: ../includes/ure-options.php:130
617
+ #: ../includes/ure-options.php:146
618
  msgid "Role"
619
+ msgstr "Função"
620
 
621
+ #: ../includes/ure-options.php:130
622
  msgid "does not exist"
623
+ msgstr "não existe"
624
 
625
+ #: ../includes/ure-options.php:146
626
  msgid "is updated successfully"
627
+ msgstr "foi atualizado com sucesso"
628
 
629
+ #: ../includes/ure-options.php:154
630
  msgid "User"
631
+ msgstr "Usuário"
632
 
633
+ #: ../includes/ure-options.php:154
 
634
  msgid "capabilities are updated successfully"
635
+ msgstr "Capacidades foram atualizadas com sucesso"
636
 
637
+ #: ../includes/ure-options.php:232
638
  msgid "About this Plugin:"
639
+ msgstr "Sobre este Plugin:"
640
 
641
+ #: ../includes/ure-options.php:233
642
  msgid "Author's website"
643
+ msgstr "Website do Autor"
644
 
645
+ #: ../includes/ure-options.php:234
646
  msgid "Plugin webpage"
647
+ msgstr "Página do Plugin"
648
 
649
+ #: ../includes/ure-options.php:236
650
  msgid "FAQ"
651
  msgstr "FAQ"
652
 
653
+ #: ../includes/ure-options.php:237
 
654
  msgid "Greetings"
655
+ msgstr "Saudações"
656
 
657
+ #: ../includes/ure-options.php:259
658
  msgid "Greetings:"
659
+ msgstr "Saudações"
660
 
661
+ #: ../includes/ure-options.php:260
662
  msgid "It's me, the author"
663
  msgstr "Sou eu, o autor"
664
 
665
+ #: ../includes/ure-options.php:261
666
  msgid "For the help with Belorussian translation"
667
+ msgstr "Para obter ajuda com a tradução Bielorrussa"
668
 
669
+ #: ../includes/ure-options.php:262
670
  msgid "For the help with Brasilian translation"
671
+ msgstr "Para obter ajuda com a tradução Portuguesa (Brasil)"
672
 
673
+ #: ../includes/ure-options.php:263
674
+ msgid "For the help with Brasilian Portuguese translation"
675
+ msgstr "Para obter ajuda com a tradução Portuguesa (Brasil)"
676
+
677
+ #: ../includes/ure-options.php:264
678
  msgid "For the help with Chinese translation"
679
+ msgstr "Para obter ajuda com a tradução Chinesa"
680
 
681
+ #: ../includes/ure-options.php:265
682
  msgid "For the help with Dutch translation"
683
+ msgstr "Para obter ajuda com a tradução Holandesa"
684
 
685
+ #: ../includes/ure-options.php:266
686
  msgid "For the help with Finnish translation"
687
+ msgstr "Para obter ajuda com a tradução Finlandesa"
688
 
689
+ #: ../includes/ure-options.php:267
690
+ #: ../includes/ure-options.php:268
691
  msgid "For the help with French translation"
692
+ msgstr "Para obter ajuda com a tradução Francesa"
693
 
694
+ #: ../includes/ure-options.php:269
695
  msgid "For the help with German translation"
696
+ msgstr "Para obter ajuda com a tradução Alemã"
697
 
698
+ #: ../includes/ure-options.php:270
699
+ #: ../includes/ure-options.php:271
700
  msgid "For the help with Hebrew translation"
701
+ msgstr "Para obter ajuda com a tradução Hebraica"
702
 
703
+ #: ../includes/ure-options.php:272
704
  msgid "For the help with Hindi translation"
705
+ msgstr "Para obter ajuda com a tradução Hindi"
706
 
707
+ #: ../includes/ure-options.php:273
708
  msgid "For the help with Hungarian translation"
709
+ msgstr "Para obter ajuda com a tradução Húngara"
710
 
711
+ #: ../includes/ure-options.php:274
712
+ #: ../includes/ure-options.php:275
713
  msgid "For the help with Italian translation"
714
+ msgstr "Para obter ajuda com a tradução Italiana"
715
 
716
+ #: ../includes/ure-options.php:276
717
  msgid "For the help with Japanese translation"
718
+ msgstr "Para obter ajuda com a tradução Japonesa"
719
 
720
+ #: ../includes/ure-options.php:277
721
  msgid "For the help with Lithuanian translation"
722
+ msgstr "Para obter ajuda com a tradução Lituana"
723
 
724
+ #: ../includes/ure-options.php:278
725
+ #: ../includes/ure-options.php:279
726
+ #: ../includes/ure-options.php:280
727
  msgid "For the help with Persian translation"
728
+ msgstr "Para obter ajuda com a tradução Persa"
729
 
730
+ #: ../includes/ure-options.php:281
731
+ #: ../includes/ure-options.php:282
732
  msgid "For the help with Polish translation"
733
+ msgstr "Para obter ajuda com a tradução Polonesa"
734
 
735
+ #: ../includes/ure-options.php:283
736
+ #: ../includes/ure-options.php:284
737
  msgid "For the help with Spanish translation"
738
+ msgstr "Para obter ajuda com a tradução Espanhola"
739
 
740
+ #: ../includes/ure-options.php:285
 
741
  msgid "For the updated Swedish translation"
742
+ msgstr "Para a tradução Sueca atualizada"
743
 
744
+ #: ../includes/ure-options.php:286
745
  msgid "For the help with Swedish translation"
746
+ msgstr "Para obter ajuda com a tradução Sueca"
747
 
748
+ #: ../includes/ure-options.php:287
749
  msgid "For the help with Turkish translation"
750
+ msgstr "Para obter ajuda com a tradução Turca"
751
 
752
+ #: ../includes/ure-options.php:289
753
  msgid "For the code to hide administrator role"
754
+ msgstr "Para o código para esconder o papel do administrador"
755
 
756
+ #: ../includes/ure-options.php:290
757
  msgid "For the code enhancement suggestion"
758
+ msgstr "Para sugerir melhorias"
759
 
760
+ #: ../includes/ure-options.php:292
761
  msgid "Do you wish to see your name with link to your site here? You are welcome! Your help with translation and new ideas are very appreciated."
762
+ msgstr "Você quer ver o seu nome com link para o seu site aqui? Você é bem-vindo! Sua ajuda nas traduções e novas idéias serão muito úteis."
763
 
 
 
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: 2012-06-23 23:30+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"
@@ -30,714 +30,730 @@ msgstr "Пожалуйста, обновите!"
30
  msgid "User Role Editor requires PHP 5.0 or newer."
31
  msgstr "Редактор ролей пользователей требует PHP 5.0 или выше."
32
 
33
- #: ../user-role-editor.php:65
34
  msgid "Only"
35
  msgstr "Только"
36
 
37
- #: ../user-role-editor.php:65
38
  msgid "is allowed to use"
39
  msgstr "разрешено использовать"
40
 
41
- #: ../user-role-editor.php:71
42
- #: ../user-role-editor.php:246
43
  msgid "User Role Editor"
44
  msgstr "Редактор ролей пользователей"
45
 
46
- #: ../user-role-editor.php:218
47
  msgid "Settings"
48
  msgstr "Установки"
49
 
50
- #: ../user-role-editor.php:228
51
- #: ../ure-options.php:218
52
  msgid "Changelog"
53
  msgstr "Журнал изменений"
54
 
55
- #: ../user-role-editor.php:275
56
  msgid "Capabilities"
57
  msgstr "Возможности"
58
 
59
- #: ../ure-lib.php:45
60
  msgid "Error is occur. Please check the log file."
61
  msgstr "Произошла ошибка. Проверьте лог-файл."
62
 
63
- #: ../ure-lib.php:155
64
  msgid "Database operation error. Check log file."
65
  msgstr "Ошибка работы с базой данных. Проверьте лог-файл."
66
 
67
- #: ../ure-lib.php:188
68
  msgid "No backup data. It is created automatically before the first role data update."
69
  msgstr "Нет резервной копии. Она создается автоматически перед первым изменением ролей."
70
 
71
- #: ../ure-lib.php:226
72
  msgid "Backup record is created for the current role capabilities"
73
  msgstr "Для текущего распределения возможностей по ролям создана резервная копия"
74
 
75
- #: ../ure-lib.php:345
76
  msgid "Error: Role name must contain latin characters and digits only!"
77
  msgstr "Ошибка: должно содержать только латинские буквы и цифры"
78
 
79
- #: ../ure-lib.php:352
80
  #, php-format
81
  msgid "Role %s exists already"
82
  msgstr "Роль %s уже существует"
83
 
84
- #: ../ure-lib.php:365
85
  msgid "Error is encountered during new role create operation"
86
  msgstr "Произошла ошибка при создании новой роли"
87
 
88
- #: ../ure-lib.php:367
89
  #, php-format
90
  msgid "Role %s is created successfully"
91
  msgstr "Роль %s создана успешно"
92
 
93
- #: ../ure-lib.php:451
94
  msgid "Error encountered during role delete operation"
95
  msgstr "Произошла ошибка при удалении роли"
96
 
97
- #: ../ure-lib.php:453
98
  #, php-format
99
  msgid "Role %s is deleted successfully"
100
  msgstr "Роль %s удалена успешно"
101
 
102
- #: ../ure-lib.php:471
103
  msgid "Error encountered during default role change operation"
104
  msgstr "Произошла ошибка при изменении роли по-умолчанию"
105
 
106
- #: ../ure-lib.php:477
107
  #, php-format
108
  msgid "Default role for new users is set to %s successfully"
109
  msgstr "Роль по-умолчанию для новых пользователй изменена на %s успешно."
110
 
111
- #: ../ure-lib.php:505
112
  msgid "Editor"
113
  msgstr "Редактор"
114
 
115
- #: ../ure-lib.php:506
116
  msgid "Author"
117
  msgstr "Автор"
118
 
119
- #: ../ure-lib.php:507
120
  msgid "Contributor"
121
  msgstr "Участник"
122
 
123
- #: ../ure-lib.php:508
124
  msgid "Subscriber"
125
  msgstr "Подписчик"
126
 
127
- #: ../ure-lib.php:510
128
  msgid "Switch themes"
129
  msgstr "Менять темы"
130
 
131
- #: ../ure-lib.php:511
132
  msgid "Edit themes"
133
  msgstr "Изменять темы"
134
 
135
- #: ../ure-lib.php:512
136
  msgid "Activate plugins"
137
  msgstr "Активировать плагины"
138
 
139
- #: ../ure-lib.php:513
140
  msgid "Edit plugins"
141
  msgstr "Редактировать плагины"
142
 
143
- #: ../ure-lib.php:514
144
  msgid "Edit users"
145
  msgstr "Изменять пользователей"
146
 
147
- #: ../ure-lib.php:515
148
  msgid "Edit files"
149
  msgstr "Изменять файлы"
150
 
151
- #: ../ure-lib.php:516
152
  msgid "Manage options"
153
  msgstr "Управлять установками"
154
 
155
- #: ../ure-lib.php:517
156
  msgid "Moderate comments"
157
  msgstr "Модерировать комментарии"
158
 
159
- #: ../ure-lib.php:518
160
  msgid "Manage categories"
161
  msgstr "Управлять категориями"
162
 
163
- #: ../ure-lib.php:519
164
  msgid "Manage links"
165
  msgstr "Управлять ссылками"
166
 
167
- #: ../ure-lib.php:520
168
  msgid "Upload files"
169
  msgstr "Загружать файлы"
170
 
171
- #: ../ure-lib.php:521
172
  msgid "Import"
173
  msgstr "Импорт"
174
 
175
- #: ../ure-lib.php:522
176
  msgid "Unfiltered html"
177
  msgstr "html без фильтра"
178
 
179
- #: ../ure-lib.php:523
180
  msgid "Edit posts"
181
  msgstr "Изменять статьи"
182
 
183
- #: ../ure-lib.php:524
184
  msgid "Edit others posts"
185
  msgstr "Изменять чужие статьи"
186
 
187
- #: ../ure-lib.php:525
188
  msgid "Edit published posts"
189
  msgstr "Редактировать опубликованные статьи"
190
 
191
- #: ../ure-lib.php:526
192
  msgid "Publish posts"
193
  msgstr "Публиковать статьи"
194
 
195
- #: ../ure-lib.php:527
196
  msgid "Edit pages"
197
  msgstr "Изменять страницы"
198
 
199
- #: ../ure-lib.php:528
200
  msgid "Read"
201
  msgstr "Чтение"
202
 
203
- #: ../ure-lib.php:529
204
  msgid "Level 10"
205
  msgstr "Уровень 10"
206
 
207
- #: ../ure-lib.php:530
208
  msgid "Level 9"
209
  msgstr "Уровень 9"
210
 
211
- #: ../ure-lib.php:531
212
  msgid "Level 8"
213
  msgstr "Уровень 9"
214
 
215
- #: ../ure-lib.php:532
216
  msgid "Level 7"
217
  msgstr "Уровень 7"
218
 
219
- #: ../ure-lib.php:533
220
  msgid "Level 6"
221
  msgstr "Уровень 6"
222
 
223
- #: ../ure-lib.php:534
224
  msgid "Level 5"
225
  msgstr "Уровень 5"
226
 
227
- #: ../ure-lib.php:535
228
  msgid "Level 4"
229
  msgstr "Уровень 4"
230
 
231
- #: ../ure-lib.php:536
232
  msgid "Level 3"
233
  msgstr "Уровень 3"
234
 
235
- #: ../ure-lib.php:537
236
  msgid "Level 2"
237
  msgstr "Уровень 2"
238
 
239
- #: ../ure-lib.php:538
240
  msgid "Level 1"
241
  msgstr "Уровень 1"
242
 
243
- #: ../ure-lib.php:539
244
  msgid "Level 0"
245
  msgstr "Уровень 0"
246
 
247
- #: ../ure-lib.php:540
248
  msgid "Edit others pages"
249
  msgstr "Редактировать чужие страницы"
250
 
251
- #: ../ure-lib.php:541
252
  msgid "Edit published pages"
253
  msgstr "Редактировать опубликованные страницы"
254
 
255
- #: ../ure-lib.php:542
256
  msgid "Publish pages"
257
  msgstr "Публиковать страницы"
258
 
259
- #: ../ure-lib.php:543
260
  msgid "Delete pages"
261
  msgstr "Удалять страницы"
262
 
263
- #: ../ure-lib.php:544
264
  msgid "Delete others pages"
265
  msgstr "Удалить чужие страницы"
266
 
267
- #: ../ure-lib.php:545
268
  msgid "Delete published pages"
269
  msgstr "Удалять опубликованные страницы"
270
 
271
- #: ../ure-lib.php:546
272
  msgid "Delete posts"
273
  msgstr "Удалять статьи"
274
 
275
- #: ../ure-lib.php:547
276
  msgid "Delete others posts"
277
  msgstr "Удалять чужие статьи"
278
 
279
- #: ../ure-lib.php:548
280
  msgid "Delete published posts"
281
  msgstr "Удалять опубликованные статьи"
282
 
283
- #: ../ure-lib.php:549
284
  msgid "Delete private posts"
285
  msgstr "Удалять частные статьи"
286
 
287
- #: ../ure-lib.php:550
288
  msgid "Edit private posts"
289
  msgstr "Редактировать частные статьи"
290
 
291
- #: ../ure-lib.php:551
292
  msgid "Read private posts"
293
  msgstr "Читать частные статьи"
294
 
295
- #: ../ure-lib.php:552
296
  msgid "Delete private pages"
297
  msgstr "Удалять частные страницы"
298
 
299
- #: ../ure-lib.php:553
300
  msgid "Edit private pages"
301
  msgstr "Редактировать частные страницы"
302
 
303
- #: ../ure-lib.php:554
304
  msgid "Read private pages"
305
  msgstr "Читать частные страницы"
306
 
307
- #: ../ure-lib.php:555
308
  msgid "Delete users"
309
  msgstr "Удалять пользователей"
310
 
311
- #: ../ure-lib.php:556
312
  msgid "Create users"
313
  msgstr "Создавать пользователей"
314
 
315
- #: ../ure-lib.php:557
316
  msgid "Unfiltered upload"
317
  msgstr "Загрузка без фильтра"
318
 
319
- #: ../ure-lib.php:558
320
  msgid "Edit dashboard"
321
  msgstr "Изменять панель администратора"
322
 
323
- #: ../ure-lib.php:559
324
  msgid "Update plugins"
325
  msgstr "Обновлять плагины"
326
 
327
- #: ../ure-lib.php:560
328
  msgid "Delete plugins"
329
  msgstr "Удалять плагины"
330
 
331
- #: ../ure-lib.php:561
332
  msgid "Install plugins"
333
  msgstr "Устанавливать плагины"
334
 
335
- #: ../ure-lib.php:562
336
  msgid "Update themes"
337
  msgstr "Обновлять темы"
338
 
339
- #: ../ure-lib.php:563
340
  msgid "Install themes"
341
  msgstr "Устанавливать темы"
342
 
343
- #: ../ure-lib.php:564
344
  msgid "Update core"
345
  msgstr "Обновлять ядро"
346
 
347
- #: ../ure-lib.php:565
348
  msgid "List users"
349
  msgstr "Список пользователей"
350
 
351
- #: ../ure-lib.php:566
352
  msgid "Remove users"
353
  msgstr "Удалять пользователей"
354
 
355
- #: ../ure-lib.php:567
356
  msgid "Add users"
357
  msgstr "Добавлять пользователей"
358
 
359
- #: ../ure-lib.php:568
360
  msgid "Promote users"
361
  msgstr "Продвигать пользователей"
362
 
363
- #: ../ure-lib.php:569
364
  msgid "Edit theme options"
365
  msgstr "Изменять настройки темы"
366
 
367
- #: ../ure-lib.php:570
368
  msgid "Delete themes"
369
  msgstr "Удалять темы"
370
 
371
- #: ../ure-lib.php:571
372
  msgid "Export"
373
  msgstr "Экспорт"
374
 
375
- #: ../ure-lib.php:655
376
  msgid "Error: Capability name must contain latin characters and digits only!"
377
  msgstr "Ошибка: Имя должно содержать только латинские буквы и цифры"
378
 
379
- #: ../ure-lib.php:667
380
  #, php-format
381
  msgid "Capability %s is added successfully"
382
  msgstr "Возможность %s добавлена успешно"
383
 
384
- #: ../ure-lib.php:669
385
  #, php-format
386
  msgid "Capability %s exists already"
387
  msgstr "Возможность %s уже существует"
388
 
389
- #: ../ure-lib.php:818
390
  #, php-format
391
  msgid "Error! You do not have permission to delete this capability: %s!"
392
  msgstr "Ошибка! Вам запрещено удалять эту возможность: %s!"
393
 
394
- #: ../ure-lib.php:840
395
  #, php-format
396
  msgid "Capability %s is removed successfully"
397
  msgstr "Возможность %s удалена успешно"
398
 
399
- #: ../ure-lib.php:902
400
  msgid "Help"
401
  msgstr "Помощь"
402
 
403
- #: ../ure-role-edit.php:29
404
  msgid "None"
405
  msgstr "Нет"
406
 
407
- #: ../ure-role-edit.php:93
408
  msgid " Name can not be empty!"
409
  msgstr "Наименование не может быть пустым!"
410
 
411
- #: ../ure-role-edit.php:97
412
  msgid " Name must contain latin characters and digits only!"
413
  msgstr " Наименование должно содержать только латинские буквы и цифры."
414
 
415
- #: ../ure-role-edit.php:102
416
- #: ../ure-role-edit.php:293
417
  msgid "Delete Role"
418
  msgstr "Удалить Роль"
419
 
420
- #: ../ure-role-edit.php:104
421
  msgid "Change Default Role"
422
  msgstr "Установить как роль по-умолчанию"
423
 
424
- #: ../ure-role-edit.php:106
425
  msgid "Restore Roles from backup copy. Be careful, backup was created when you started URE 1st time. All changes you made after that will be lost"
426
  msgstr "Восстановление ролей из резервной копии. Будьте внимательны, копия создана во время первого запуска этого плагина. Все внесенные после этого изменения будут потеряны"
427
 
428
- #: ../ure-role-edit.php:108
429
  msgid "Warning! Be careful - removing critical capability could crash some plugin or other custom code"
430
  msgstr "Внимание! Будьте осторожны - удаление критичной возможности может привести к прекращеню работы одного из плагинов или другого кода."
431
 
432
- #: ../ure-role-edit.php:110
433
  msgid "Please confirm to continue"
434
  msgstr "Пожалуйста, подтвердите продолжение "
435
 
436
- #: ../ure-role-edit.php:147
437
  #, php-format
438
  msgid "Role \"%s\" update: please confirm to continue"
439
  msgstr "Изменение роли \"%s\": пожалуйста, подтвердите продолжение "
440
 
441
- #: ../ure-role-edit.php:155
442
  msgid "Select Role and change its capabilities list"
443
  msgstr "Выбери Роль и измени список разрешённых операций"
444
 
445
- #: ../ure-role-edit.php:157
446
  msgid "Select Role:"
447
  msgstr "Выбери Роль:"
448
 
449
- #: ../ure-role-edit.php:167
450
- #: ../ure-user-edit.php:91
451
  msgid "Show capabilities in human readable form"
452
  msgstr "Показ возможностей в читабельной форме"
453
 
454
- #: ../ure-role-edit.php:176
455
- #: ../ure-user-edit.php:100
456
  msgid "Show deprecated capabilities"
457
  msgstr "Показать устаревшие разрешения"
458
 
459
- #: ../ure-role-edit.php:180
460
  msgid "If checked, then apply action to ALL sites of this Network"
461
  msgstr "Если включено, применить ко всем сайтам этой Сети"
462
 
463
- #: ../ure-role-edit.php:190
464
  msgid "Apply to All Sites"
465
  msgstr "Применить ко всем сайтам"
466
 
467
- #: ../ure-role-edit.php:251
468
- #: ../ure-user-edit.php:163
 
 
 
 
 
 
 
 
 
 
469
  msgid "Update"
470
  msgstr "Сохранить"
471
 
472
- #: ../ure-role-edit.php:251
473
- #: ../ure-user-edit.php:163
474
  msgid "Save Changes"
475
  msgstr "Сохранить изменения"
476
 
477
- #: ../ure-role-edit.php:252
478
- #: ../ure-user-edit.php:164
479
  msgid "Cancel"
480
  msgstr "Отмена"
481
 
482
- #: ../ure-role-edit.php:252
483
- #: ../ure-user-edit.php:164
484
  msgid "Cancel not saved changes"
485
  msgstr "Отказ от сохранения изменений"
486
 
487
- #: ../ure-role-edit.php:255
488
  msgid "Select All"
489
  msgstr "Выбрать Все:"
490
 
491
- #: ../ure-role-edit.php:255
492
  msgid "Select All Capabilities"
493
  msgstr "Выбрать все разрешения"
494
 
495
- #: ../ure-role-edit.php:256
496
  msgid "Unselect All"
497
  msgstr "Исключить все"
498
 
499
- #: ../ure-role-edit.php:256
500
  msgid "Unselect All Capabilities"
501
  msgstr "Исключить все возможности"
502
 
503
- #: ../ure-role-edit.php:257
504
  msgid "Reverse"
505
  msgstr "Обратить"
506
 
507
- #: ../ure-role-edit.php:257
508
  msgid "Turn checked capabilities off and vise versa"
509
  msgstr "Включить исключенные возможности и наоборот"
510
 
511
- #: ../ure-role-edit.php:260
512
  msgid "Reset"
513
  msgstr "Сброс"
514
 
515
- #: ../ure-role-edit.php:260
516
  msgid "Restore Roles from backup copy"
517
  msgstr "Восстановить Роли из резервной копии"
518
 
519
- #: ../ure-role-edit.php:270
520
  msgid "Add New Role"
521
  msgstr "Добавить новую Роль"
522
 
523
- #: ../ure-role-edit.php:272
524
  msgid "Name: "
525
  msgstr "Имя:"
526
 
527
- #: ../ure-role-edit.php:276
528
  msgid "Make copy of: "
529
  msgstr "Создать копию из:"
530
 
531
- #: ../ure-role-edit.php:279
532
- #: ../ure-role-edit.php:308
533
  msgid "Add"
534
  msgstr "Добавить"
535
 
536
- #: ../ure-role-edit.php:279
537
  msgid "Add New User Role"
538
  msgstr "Добавить новую Роль пользователя"
539
 
540
- #: ../ure-role-edit.php:283
541
  msgid "Default Role for New User"
542
  msgstr "Роль по-умолчанию"
543
 
544
- #: ../ure-role-edit.php:288
545
  msgid "Change"
546
  msgstr "Изменить"
547
 
548
- #: ../ure-role-edit.php:288
549
  msgid "Set as Default User Role"
550
  msgstr "Установить как роль по-умолчанию"
551
 
552
- #: ../ure-role-edit.php:298
553
  msgid "Delete"
554
  msgstr "Удалить"
555
 
556
- #: ../ure-role-edit.php:298
557
  msgid "Delete User Role"
558
  msgstr "Удалить Роль пользователя"
559
 
560
- #: ../ure-role-edit.php:303
561
- #: ../ure-role-edit.php:308
562
  msgid "Add New Capability"
563
  msgstr "Добавить новую Возможность"
564
 
565
- #: ../ure-role-edit.php:313
566
  msgid "Remove Capability"
567
  msgstr "Удалить Возможность"
568
 
569
- #: ../ure-role-edit.php:318
570
  msgid "Remove"
571
  msgstr "Удалить"
572
 
573
- #: ../ure-role-edit.php:318
574
  msgid "Remove User Capability"
575
  msgstr "Удалить возможность пользователя"
576
 
577
- #: ../ure-user-edit.php:67
578
  #, php-format
579
  msgid "User \"%s\" update: please confirm to continue"
580
  msgstr "Изменение пользователя \"%s\": пожалуйста, подтвердите для продолжения"
581
 
582
- #: ../ure-user-edit.php:79
583
  msgid "Change capabilities for user"
584
  msgstr "Изменить возможности для пользователя"
585
 
586
- #: ../ure-user-edit.php:82
587
  msgid "Role:"
588
  msgstr "Роль:"
589
 
590
- #: ../ure-user-edit.php:104
591
  msgid "Add capabilities to this user:"
592
  msgstr "Добавить возможности этому пользователю:"
593
 
594
- #: ../ure-options.php:59
595
  msgid "User Roles are restored from the backup data. "
596
  msgstr "Роли восстановлены из резервной копии"
597
 
598
- #: ../ure-options.php:125
599
  msgid "Error: "
600
  msgstr "Ошибка:"
601
 
602
- #: ../ure-options.php:125
603
- #: ../ure-options.php:143
604
  msgid "Role"
605
  msgstr "Роль"
606
 
607
- #: ../ure-options.php:125
608
  msgid "does not exist"
609
  msgstr "не существует"
610
 
611
- #: ../ure-options.php:143
612
  msgid "is updated successfully"
613
  msgstr "изменена успешно"
614
 
615
- #: ../ure-options.php:152
616
  msgid "User"
617
  msgstr "Пользователь"
618
 
619
- #: ../ure-options.php:152
620
  msgid "capabilities are updated successfully"
621
  msgstr "возможности изменены успешно"
622
 
623
- #: ../ure-options.php:215
624
  msgid "About this Plugin:"
625
  msgstr "Об этом плагине"
626
 
627
- #: ../ure-options.php:216
628
  msgid "Author's website"
629
  msgstr "Вебсайт автора"
630
 
631
- #: ../ure-options.php:217
632
  msgid "Plugin webpage"
633
  msgstr "Страница плагина"
634
 
635
- #: ../ure-options.php:219
636
  msgid "FAQ"
637
  msgstr "Часто задаваемые вопросы"
638
 
639
- #: ../ure-options.php:220
640
  msgid "Greetings"
641
  msgstr "Благодарности"
642
 
643
- #: ../ure-options.php:242
644
  msgid "Greetings:"
645
  msgstr "Приветствия"
646
 
647
- #: ../ure-options.php:243
648
  msgid "It's me, the author"
649
  msgstr "Это я, автор"
650
 
651
- #: ../ure-options.php:244
652
  msgid "For the help with Belorussian translation"
653
  msgstr "за помощь с белорусским переводом"
654
 
655
- #: ../ure-options.php:245
656
  msgid "For the help with Brasilian translation"
657
  msgstr "за помощь с бразильским переводом"
658
 
659
- #: ../ure-options.php:246
 
 
 
 
660
  msgid "For the help with Chinese translation"
661
  msgstr "за помощь с китайским переводом"
662
 
663
- #: ../ure-options.php:247
664
  msgid "For the help with Dutch translation"
665
  msgstr "за помощь с датским переводом"
666
 
667
- #: ../ure-options.php:248
668
  msgid "For the help with Finnish translation"
669
  msgstr "за помощь с финским переводом"
670
 
671
- #: ../ure-options.php:249
672
- #: ../ure-options.php:250
673
  msgid "For the help with French translation"
674
  msgstr "за помощь с французским переводом"
675
 
676
- #: ../ure-options.php:251
677
  msgid "For the help with German translation"
678
  msgstr "за помощь с немецким переводом"
679
 
680
- #: ../ure-options.php:252
681
- #: ../ure-options.php:253
682
  msgid "For the help with Hebrew translation"
683
  msgstr "за помощь с переводом на иврит"
684
 
685
- #: ../ure-options.php:254
686
  msgid "For the help with Hindi translation"
687
  msgstr "за помощь с индийским (Хинди) переводом"
688
 
689
- #: ../ure-options.php:255
690
  msgid "For the help with Hungarian translation"
691
  msgstr "за помощь с венгерским переводом"
692
 
693
- #: ../ure-options.php:256
694
- #: ../ure-options.php:257
695
  msgid "For the help with Italian translation"
696
  msgstr "за помощь с итальянским переводом"
697
 
698
- #: ../ure-options.php:258
699
  msgid "For the help with Japanese translation"
700
  msgstr "за помощь с японским переводом"
701
 
702
- #: ../ure-options.php:259
703
  msgid "For the help with Lithuanian translation"
704
  msgstr "за помощь с литовским переводом"
705
 
706
- #: ../ure-options.php:260
707
- #: ../ure-options.php:261
 
708
  msgid "For the help with Persian translation"
709
  msgstr "за помощь с переводом на иранский"
710
 
711
- #: ../ure-options.php:262
 
712
  msgid "For the help with Polish translation"
713
  msgstr "за помощь с польским переводом"
714
 
715
- #: ../ure-options.php:263
716
- #: ../ure-options.php:264
717
  msgid "For the help with Spanish translation"
718
  msgstr "за помощь с испанским переводом"
719
 
720
- #: ../ure-options.php:265
721
  msgid "For the updated Swedish translation"
722
  msgstr "за помощь со шведским переводом"
723
 
724
- #: ../ure-options.php:266
725
  msgid "For the help with Swedish translation"
726
  msgstr "за помощь со шведским переводом"
727
 
728
- #: ../ure-options.php:267
729
  msgid "For the help with Turkish translation"
730
  msgstr "за помощь с турецким переводом"
731
 
732
- #: ../ure-options.php:269
733
  msgid "For the code to hide administrator role"
734
  msgstr "За код, скрывающий роль администратора"
735
 
736
- #: ../ure-options.php:270
737
  msgid "For the code enhancement suggestion"
738
  msgstr "За предложения по улучшению кода"
739
 
740
- #: ../ure-options.php:272
741
  msgid "Do you wish to see your name with link to your site here? You are welcome! Your help with translation and new ideas are very appreciated."
742
  msgstr "Желаете увидеть свое имя и ссылку на Ваш сайт здесь? Добро пожаловать! Ваша помощь с переводом и новые идеи приветствуются."
743
 
2
  msgstr ""
3
  "Project-Id-Version: User Role Editor v.2.0\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-09-01 08:26+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"
30
  msgid "User Role Editor requires PHP 5.0 or newer."
31
  msgstr "Редактор ролей пользователей требует PHP 5.0 или выше."
32
 
33
+ #: ../user-role-editor.php:76
34
  msgid "Only"
35
  msgstr "Только"
36
 
37
+ #: ../user-role-editor.php:76
38
  msgid "is allowed to use"
39
  msgstr "разрешено использовать"
40
 
41
+ #: ../user-role-editor.php:82
42
+ #: ../user-role-editor.php:251
43
  msgid "User Role Editor"
44
  msgstr "Редактор ролей пользователей"
45
 
46
+ #: ../user-role-editor.php:223
47
  msgid "Settings"
48
  msgstr "Установки"
49
 
50
+ #: ../user-role-editor.php:233
51
+ #: ../includes/ure-options.php:235
52
  msgid "Changelog"
53
  msgstr "Журнал изменений"
54
 
55
+ #: ../user-role-editor.php:280
56
  msgid "Capabilities"
57
  msgstr "Возможности"
58
 
59
+ #: ../includes/ure-lib.php:34
60
  msgid "Error is occur. Please check the log file."
61
  msgstr "Произошла ошибка. Проверьте лог-файл."
62
 
63
+ #: ../includes/ure-lib.php:144
64
  msgid "Database operation error. Check log file."
65
  msgstr "Ошибка работы с базой данных. Проверьте лог-файл."
66
 
67
+ #: ../includes/ure-lib.php:177
68
  msgid "No backup data. It is created automatically before the first role data update."
69
  msgstr "Нет резервной копии. Она создается автоматически перед первым изменением ролей."
70
 
71
+ #: ../includes/ure-lib.php:215
72
  msgid "Backup record is created for the current role capabilities"
73
  msgstr "Для текущего распределения возможностей по ролям создана резервная копия"
74
 
75
+ #: ../includes/ure-lib.php:329
76
  msgid "Error: Role name must contain latin characters and digits only!"
77
  msgstr "Ошибка: должно содержать только латинские буквы и цифры"
78
 
79
+ #: ../includes/ure-lib.php:336
80
  #, php-format
81
  msgid "Role %s exists already"
82
  msgstr "Роль %s уже существует"
83
 
84
+ #: ../includes/ure-lib.php:349
85
  msgid "Error is encountered during new role create operation"
86
  msgstr "Произошла ошибка при создании новой роли"
87
 
88
+ #: ../includes/ure-lib.php:351
89
  #, php-format
90
  msgid "Role %s is created successfully"
91
  msgstr "Роль %s создана успешно"
92
 
93
+ #: ../includes/ure-lib.php:435
94
  msgid "Error encountered during role delete operation"
95
  msgstr "Произошла ошибка при удалении роли"
96
 
97
+ #: ../includes/ure-lib.php:437
98
  #, php-format
99
  msgid "Role %s is deleted successfully"
100
  msgstr "Роль %s удалена успешно"
101
 
102
+ #: ../includes/ure-lib.php:455
103
  msgid "Error encountered during default role change operation"
104
  msgstr "Произошла ошибка при изменении роли по-умолчанию"
105
 
106
+ #: ../includes/ure-lib.php:461
107
  #, php-format
108
  msgid "Default role for new users is set to %s successfully"
109
  msgstr "Роль по-умолчанию для новых пользователй изменена на %s успешно."
110
 
111
+ #: ../includes/ure-lib.php:489
112
  msgid "Editor"
113
  msgstr "Редактор"
114
 
115
+ #: ../includes/ure-lib.php:490
116
  msgid "Author"
117
  msgstr "Автор"
118
 
119
+ #: ../includes/ure-lib.php:491
120
  msgid "Contributor"
121
  msgstr "Участник"
122
 
123
+ #: ../includes/ure-lib.php:492
124
  msgid "Subscriber"
125
  msgstr "Подписчик"
126
 
127
+ #: ../includes/ure-lib.php:494
128
  msgid "Switch themes"
129
  msgstr "Менять темы"
130
 
131
+ #: ../includes/ure-lib.php:495
132
  msgid "Edit themes"
133
  msgstr "Изменять темы"
134
 
135
+ #: ../includes/ure-lib.php:496
136
  msgid "Activate plugins"
137
  msgstr "Активировать плагины"
138
 
139
+ #: ../includes/ure-lib.php:497
140
  msgid "Edit plugins"
141
  msgstr "Редактировать плагины"
142
 
143
+ #: ../includes/ure-lib.php:498
144
  msgid "Edit users"
145
  msgstr "Изменять пользователей"
146
 
147
+ #: ../includes/ure-lib.php:499
148
  msgid "Edit files"
149
  msgstr "Изменять файлы"
150
 
151
+ #: ../includes/ure-lib.php:500
152
  msgid "Manage options"
153
  msgstr "Управлять установками"
154
 
155
+ #: ../includes/ure-lib.php:501
156
  msgid "Moderate comments"
157
  msgstr "Модерировать комментарии"
158
 
159
+ #: ../includes/ure-lib.php:502
160
  msgid "Manage categories"
161
  msgstr "Управлять категориями"
162
 
163
+ #: ../includes/ure-lib.php:503
164
  msgid "Manage links"
165
  msgstr "Управлять ссылками"
166
 
167
+ #: ../includes/ure-lib.php:504
168
  msgid "Upload files"
169
  msgstr "Загружать файлы"
170
 
171
+ #: ../includes/ure-lib.php:505
172
  msgid "Import"
173
  msgstr "Импорт"
174
 
175
+ #: ../includes/ure-lib.php:506
176
  msgid "Unfiltered html"
177
  msgstr "html без фильтра"
178
 
179
+ #: ../includes/ure-lib.php:507
180
  msgid "Edit posts"
181
  msgstr "Изменять статьи"
182
 
183
+ #: ../includes/ure-lib.php:508
184
  msgid "Edit others posts"
185
  msgstr "Изменять чужие статьи"
186
 
187
+ #: ../includes/ure-lib.php:509
188
  msgid "Edit published posts"
189
  msgstr "Редактировать опубликованные статьи"
190
 
191
+ #: ../includes/ure-lib.php:510
192
  msgid "Publish posts"
193
  msgstr "Публиковать статьи"
194
 
195
+ #: ../includes/ure-lib.php:511
196
  msgid "Edit pages"
197
  msgstr "Изменять страницы"
198
 
199
+ #: ../includes/ure-lib.php:512
200
  msgid "Read"
201
  msgstr "Чтение"
202
 
203
+ #: ../includes/ure-lib.php:513
204
  msgid "Level 10"
205
  msgstr "Уровень 10"
206
 
207
+ #: ../includes/ure-lib.php:514
208
  msgid "Level 9"
209
  msgstr "Уровень 9"
210
 
211
+ #: ../includes/ure-lib.php:515
212
  msgid "Level 8"
213
  msgstr "Уровень 9"
214
 
215
+ #: ../includes/ure-lib.php:516
216
  msgid "Level 7"
217
  msgstr "Уровень 7"
218
 
219
+ #: ../includes/ure-lib.php:517
220
  msgid "Level 6"
221
  msgstr "Уровень 6"
222
 
223
+ #: ../includes/ure-lib.php:518
224
  msgid "Level 5"
225
  msgstr "Уровень 5"
226
 
227
+ #: ../includes/ure-lib.php:519
228
  msgid "Level 4"
229
  msgstr "Уровень 4"
230
 
231
+ #: ../includes/ure-lib.php:520
232
  msgid "Level 3"
233
  msgstr "Уровень 3"
234
 
235
+ #: ../includes/ure-lib.php:521
236
  msgid "Level 2"
237
  msgstr "Уровень 2"
238
 
239
+ #: ../includes/ure-lib.php:522
240
  msgid "Level 1"
241
  msgstr "Уровень 1"
242
 
243
+ #: ../includes/ure-lib.php:523
244
  msgid "Level 0"
245
  msgstr "Уровень 0"
246
 
247
+ #: ../includes/ure-lib.php:524
248
  msgid "Edit others pages"
249
  msgstr "Редактировать чужие страницы"
250
 
251
+ #: ../includes/ure-lib.php:525
252
  msgid "Edit published pages"
253
  msgstr "Редактировать опубликованные страницы"
254
 
255
+ #: ../includes/ure-lib.php:526
256
  msgid "Publish pages"
257
  msgstr "Публиковать страницы"
258
 
259
+ #: ../includes/ure-lib.php:527
260
  msgid "Delete pages"
261
  msgstr "Удалять страницы"
262
 
263
+ #: ../includes/ure-lib.php:528
264
  msgid "Delete others pages"
265
  msgstr "Удалить чужие страницы"
266
 
267
+ #: ../includes/ure-lib.php:529
268
  msgid "Delete published pages"
269
  msgstr "Удалять опубликованные страницы"
270
 
271
+ #: ../includes/ure-lib.php:530
272
  msgid "Delete posts"
273
  msgstr "Удалять статьи"
274
 
275
+ #: ../includes/ure-lib.php:531
276
  msgid "Delete others posts"
277
  msgstr "Удалять чужие статьи"
278
 
279
+ #: ../includes/ure-lib.php:532
280
  msgid "Delete published posts"
281
  msgstr "Удалять опубликованные статьи"
282
 
283
+ #: ../includes/ure-lib.php:533
284
  msgid "Delete private posts"
285
  msgstr "Удалять частные статьи"
286
 
287
+ #: ../includes/ure-lib.php:534
288
  msgid "Edit private posts"
289
  msgstr "Редактировать частные статьи"
290
 
291
+ #: ../includes/ure-lib.php:535
292
  msgid "Read private posts"
293
  msgstr "Читать частные статьи"
294
 
295
+ #: ../includes/ure-lib.php:536
296
  msgid "Delete private pages"
297
  msgstr "Удалять частные страницы"
298
 
299
+ #: ../includes/ure-lib.php:537
300
  msgid "Edit private pages"
301
  msgstr "Редактировать частные страницы"
302
 
303
+ #: ../includes/ure-lib.php:538
304
  msgid "Read private pages"
305
  msgstr "Читать частные страницы"
306
 
307
+ #: ../includes/ure-lib.php:539
308
  msgid "Delete users"
309
  msgstr "Удалять пользователей"
310
 
311
+ #: ../includes/ure-lib.php:540
312
  msgid "Create users"
313
  msgstr "Создавать пользователей"
314
 
315
+ #: ../includes/ure-lib.php:541
316
  msgid "Unfiltered upload"
317
  msgstr "Загрузка без фильтра"
318
 
319
+ #: ../includes/ure-lib.php:542
320
  msgid "Edit dashboard"
321
  msgstr "Изменять панель администратора"
322
 
323
+ #: ../includes/ure-lib.php:543
324
  msgid "Update plugins"
325
  msgstr "Обновлять плагины"
326
 
327
+ #: ../includes/ure-lib.php:544
328
  msgid "Delete plugins"
329
  msgstr "Удалять плагины"
330
 
331
+ #: ../includes/ure-lib.php:545
332
  msgid "Install plugins"
333
  msgstr "Устанавливать плагины"
334
 
335
+ #: ../includes/ure-lib.php:546
336
  msgid "Update themes"
337
  msgstr "Обновлять темы"
338
 
339
+ #: ../includes/ure-lib.php:547
340
  msgid "Install themes"
341
  msgstr "Устанавливать темы"
342
 
343
+ #: ../includes/ure-lib.php:548
344
  msgid "Update core"
345
  msgstr "Обновлять ядро"
346
 
347
+ #: ../includes/ure-lib.php:549
348
  msgid "List users"
349
  msgstr "Список пользователей"
350
 
351
+ #: ../includes/ure-lib.php:550
352
  msgid "Remove users"
353
  msgstr "Удалять пользователей"
354
 
355
+ #: ../includes/ure-lib.php:551
356
  msgid "Add users"
357
  msgstr "Добавлять пользователей"
358
 
359
+ #: ../includes/ure-lib.php:552
360
  msgid "Promote users"
361
  msgstr "Продвигать пользователей"
362
 
363
+ #: ../includes/ure-lib.php:553
364
  msgid "Edit theme options"
365
  msgstr "Изменять настройки темы"
366
 
367
+ #: ../includes/ure-lib.php:554
368
  msgid "Delete themes"
369
  msgstr "Удалять темы"
370
 
371
+ #: ../includes/ure-lib.php:555
372
  msgid "Export"
373
  msgstr "Экспорт"
374
 
375
+ #: ../includes/ure-lib.php:639
376
  msgid "Error: Capability name must contain latin characters and digits only!"
377
  msgstr "Ошибка: Имя должно содержать только латинские буквы и цифры"
378
 
379
+ #: ../includes/ure-lib.php:651
380
  #, php-format
381
  msgid "Capability %s is added successfully"
382
  msgstr "Возможность %s добавлена успешно"
383
 
384
+ #: ../includes/ure-lib.php:653
385
  #, php-format
386
  msgid "Capability %s exists already"
387
  msgstr "Возможность %s уже существует"
388
 
389
+ #: ../includes/ure-lib.php:802
390
  #, php-format
391
  msgid "Error! You do not have permission to delete this capability: %s!"
392
  msgstr "Ошибка! Вам запрещено удалять эту возможность: %s!"
393
 
394
+ #: ../includes/ure-lib.php:824
395
  #, php-format
396
  msgid "Capability %s is removed successfully"
397
  msgstr "Возможность %s удалена успешно"
398
 
399
+ #: ../includes/ure-lib.php:889
400
  msgid "Help"
401
  msgstr "Помощь"
402
 
403
+ #: ../includes/ure-role-edit.php:29
404
  msgid "None"
405
  msgstr "Нет"
406
 
407
+ #: ../includes/ure-role-edit.php:101
408
  msgid " Name can not be empty!"
409
  msgstr "Наименование не может быть пустым!"
410
 
411
+ #: ../includes/ure-role-edit.php:105
412
  msgid " Name must contain latin characters and digits only!"
413
  msgstr " Наименование должно содержать только латинские буквы и цифры."
414
 
415
+ #: ../includes/ure-role-edit.php:110
416
+ #: ../includes/ure-role-edit.php:361
417
  msgid "Delete Role"
418
  msgstr "Удалить Роль"
419
 
420
+ #: ../includes/ure-role-edit.php:112
421
  msgid "Change Default Role"
422
  msgstr "Установить как роль по-умолчанию"
423
 
424
+ #: ../includes/ure-role-edit.php:114
425
  msgid "Restore Roles from backup copy. Be careful, backup was created when you started URE 1st time. All changes you made after that will be lost"
426
  msgstr "Восстановление ролей из резервной копии. Будьте внимательны, копия создана во время первого запуска этого плагина. Все внесенные после этого изменения будут потеряны"
427
 
428
+ #: ../includes/ure-role-edit.php:116
429
  msgid "Warning! Be careful - removing critical capability could crash some plugin or other custom code"
430
  msgstr "Внимание! Будьте осторожны - удаление критичной возможности может привести к прекращеню работы одного из плагинов или другого кода."
431
 
432
+ #: ../includes/ure-role-edit.php:118
433
  msgid "Please confirm to continue"
434
  msgstr "Пожалуйста, подтвердите продолжение "
435
 
436
+ #: ../includes/ure-role-edit.php:155
437
  #, php-format
438
  msgid "Role \"%s\" update: please confirm to continue"
439
  msgstr "Изменение роли \"%s\": пожалуйста, подтвердите продолжение "
440
 
441
+ #: ../includes/ure-role-edit.php:163
442
  msgid "Select Role and change its capabilities list"
443
  msgstr "Выбери Роль и измени список разрешённых операций"
444
 
445
+ #: ../includes/ure-role-edit.php:165
446
  msgid "Select Role:"
447
  msgstr "Выбери Роль:"
448
 
449
+ #: ../includes/ure-role-edit.php:175
450
+ #: ../includes/ure-user-edit.php:91
451
  msgid "Show capabilities in human readable form"
452
  msgstr "Показ возможностей в читабельной форме"
453
 
454
+ #: ../includes/ure-role-edit.php:184
455
+ #: ../includes/ure-user-edit.php:100
456
  msgid "Show deprecated capabilities"
457
  msgstr "Показать устаревшие разрешения"
458
 
459
+ #: ../includes/ure-role-edit.php:188
460
  msgid "If checked, then apply action to ALL sites of this Network"
461
  msgstr "Если включено, применить ко всем сайтам этой Сети"
462
 
463
+ #: ../includes/ure-role-edit.php:198
464
  msgid "Apply to All Sites"
465
  msgstr "Применить ко всем сайтам"
466
 
467
+ #: ../includes/ure-role-edit.php:205
468
+ #: ../includes/ure-user-edit.php:105
469
+ msgid "Core capabilities:"
470
+ msgstr "Возможности ядра:"
471
+
472
+ #: ../includes/ure-role-edit.php:268
473
+ #: ../includes/ure-user-edit.php:167
474
+ msgid "Custom capabilities:"
475
+ msgstr "Дополнительные возможности :"
476
+
477
+ #: ../includes/ure-role-edit.php:319
478
+ #: ../includes/ure-user-edit.php:222
479
  msgid "Update"
480
  msgstr "Сохранить"
481
 
482
+ #: ../includes/ure-role-edit.php:319
483
+ #: ../includes/ure-user-edit.php:222
484
  msgid "Save Changes"
485
  msgstr "Сохранить изменения"
486
 
487
+ #: ../includes/ure-role-edit.php:320
488
+ #: ../includes/ure-user-edit.php:223
489
  msgid "Cancel"
490
  msgstr "Отмена"
491
 
492
+ #: ../includes/ure-role-edit.php:320
493
+ #: ../includes/ure-user-edit.php:223
494
  msgid "Cancel not saved changes"
495
  msgstr "Отказ от сохранения изменений"
496
 
497
+ #: ../includes/ure-role-edit.php:323
498
  msgid "Select All"
499
  msgstr "Выбрать Все:"
500
 
501
+ #: ../includes/ure-role-edit.php:323
502
  msgid "Select All Capabilities"
503
  msgstr "Выбрать все разрешения"
504
 
505
+ #: ../includes/ure-role-edit.php:324
506
  msgid "Unselect All"
507
  msgstr "Исключить все"
508
 
509
+ #: ../includes/ure-role-edit.php:324
510
  msgid "Unselect All Capabilities"
511
  msgstr "Исключить все возможности"
512
 
513
+ #: ../includes/ure-role-edit.php:325
514
  msgid "Reverse"
515
  msgstr "Обратить"
516
 
517
+ #: ../includes/ure-role-edit.php:325
518
  msgid "Turn checked capabilities off and vise versa"
519
  msgstr "Включить исключенные возможности и наоборот"
520
 
521
+ #: ../includes/ure-role-edit.php:328
522
  msgid "Reset"
523
  msgstr "Сброс"
524
 
525
+ #: ../includes/ure-role-edit.php:328
526
  msgid "Restore Roles from backup copy"
527
  msgstr "Восстановить Роли из резервной копии"
528
 
529
+ #: ../includes/ure-role-edit.php:338
530
  msgid "Add New Role"
531
  msgstr "Добавить новую Роль"
532
 
533
+ #: ../includes/ure-role-edit.php:340
534
  msgid "Name: "
535
  msgstr "Имя:"
536
 
537
+ #: ../includes/ure-role-edit.php:344
538
  msgid "Make copy of: "
539
  msgstr "Создать копию из:"
540
 
541
+ #: ../includes/ure-role-edit.php:347
542
+ #: ../includes/ure-role-edit.php:376
543
  msgid "Add"
544
  msgstr "Добавить"
545
 
546
+ #: ../includes/ure-role-edit.php:347
547
  msgid "Add New User Role"
548
  msgstr "Добавить новую Роль пользователя"
549
 
550
+ #: ../includes/ure-role-edit.php:351
551
  msgid "Default Role for New User"
552
  msgstr "Роль по-умолчанию"
553
 
554
+ #: ../includes/ure-role-edit.php:356
555
  msgid "Change"
556
  msgstr "Изменить"
557
 
558
+ #: ../includes/ure-role-edit.php:356
559
  msgid "Set as Default User Role"
560
  msgstr "Установить как роль по-умолчанию"
561
 
562
+ #: ../includes/ure-role-edit.php:366
563
  msgid "Delete"
564
  msgstr "Удалить"
565
 
566
+ #: ../includes/ure-role-edit.php:366
567
  msgid "Delete User Role"
568
  msgstr "Удалить Роль пользователя"
569
 
570
+ #: ../includes/ure-role-edit.php:371
571
+ #: ../includes/ure-role-edit.php:376
572
  msgid "Add New Capability"
573
  msgstr "Добавить новую Возможность"
574
 
575
+ #: ../includes/ure-role-edit.php:381
576
  msgid "Remove Capability"
577
  msgstr "Удалить Возможность"
578
 
579
+ #: ../includes/ure-role-edit.php:386
580
  msgid "Remove"
581
  msgstr "Удалить"
582
 
583
+ #: ../includes/ure-role-edit.php:386
584
  msgid "Remove User Capability"
585
  msgstr "Удалить возможность пользователя"
586
 
587
+ #: ../includes/ure-user-edit.php:67
588
  #, php-format
589
  msgid "User \"%s\" update: please confirm to continue"
590
  msgstr "Изменение пользователя \"%s\": пожалуйста, подтвердите для продолжения"
591
 
592
+ #: ../includes/ure-user-edit.php:79
593
  msgid "Change capabilities for user"
594
  msgstr "Изменить возможности для пользователя"
595
 
596
+ #: ../includes/ure-user-edit.php:82
597
  msgid "Role:"
598
  msgstr "Роль:"
599
 
600
+ #: ../includes/ure-user-edit.php:104
601
  msgid "Add capabilities to this user:"
602
  msgstr "Добавить возможности этому пользователю:"
603
 
604
+ #: ../includes/ure-options.php:59
605
  msgid "User Roles are restored from the backup data. "
606
  msgstr "Роли восстановлены из резервной копии"
607
 
608
+ #: ../includes/ure-options.php:130
609
  msgid "Error: "
610
  msgstr "Ошибка:"
611
 
612
+ #: ../includes/ure-options.php:130
613
+ #: ../includes/ure-options.php:146
614
  msgid "Role"
615
  msgstr "Роль"
616
 
617
+ #: ../includes/ure-options.php:130
618
  msgid "does not exist"
619
  msgstr "не существует"
620
 
621
+ #: ../includes/ure-options.php:146
622
  msgid "is updated successfully"
623
  msgstr "изменена успешно"
624
 
625
+ #: ../includes/ure-options.php:154
626
  msgid "User"
627
  msgstr "Пользователь"
628
 
629
+ #: ../includes/ure-options.php:154
630
  msgid "capabilities are updated successfully"
631
  msgstr "возможности изменены успешно"
632
 
633
+ #: ../includes/ure-options.php:232
634
  msgid "About this Plugin:"
635
  msgstr "Об этом плагине"
636
 
637
+ #: ../includes/ure-options.php:233
638
  msgid "Author's website"
639
  msgstr "Вебсайт автора"
640
 
641
+ #: ../includes/ure-options.php:234
642
  msgid "Plugin webpage"
643
  msgstr "Страница плагина"
644
 
645
+ #: ../includes/ure-options.php:236
646
  msgid "FAQ"
647
  msgstr "Часто задаваемые вопросы"
648
 
649
+ #: ../includes/ure-options.php:237
650
  msgid "Greetings"
651
  msgstr "Благодарности"
652
 
653
+ #: ../includes/ure-options.php:259
654
  msgid "Greetings:"
655
  msgstr "Приветствия"
656
 
657
+ #: ../includes/ure-options.php:260
658
  msgid "It's me, the author"
659
  msgstr "Это я, автор"
660
 
661
+ #: ../includes/ure-options.php:261
662
  msgid "For the help with Belorussian translation"
663
  msgstr "за помощь с белорусским переводом"
664
 
665
+ #: ../includes/ure-options.php:262
666
  msgid "For the help with Brasilian translation"
667
  msgstr "за помощь с бразильским переводом"
668
 
669
+ #: ../includes/ure-options.php:263
670
+ msgid "For the help with Brasilian Portuguese translation"
671
+ msgstr "за помощь с бразильским переводом"
672
+
673
+ #: ../includes/ure-options.php:264
674
  msgid "For the help with Chinese translation"
675
  msgstr "за помощь с китайским переводом"
676
 
677
+ #: ../includes/ure-options.php:265
678
  msgid "For the help with Dutch translation"
679
  msgstr "за помощь с датским переводом"
680
 
681
+ #: ../includes/ure-options.php:266
682
  msgid "For the help with Finnish translation"
683
  msgstr "за помощь с финским переводом"
684
 
685
+ #: ../includes/ure-options.php:267
686
+ #: ../includes/ure-options.php:268
687
  msgid "For the help with French translation"
688
  msgstr "за помощь с французским переводом"
689
 
690
+ #: ../includes/ure-options.php:269
691
  msgid "For the help with German translation"
692
  msgstr "за помощь с немецким переводом"
693
 
694
+ #: ../includes/ure-options.php:270
695
+ #: ../includes/ure-options.php:271
696
  msgid "For the help with Hebrew translation"
697
  msgstr "за помощь с переводом на иврит"
698
 
699
+ #: ../includes/ure-options.php:272
700
  msgid "For the help with Hindi translation"
701
  msgstr "за помощь с индийским (Хинди) переводом"
702
 
703
+ #: ../includes/ure-options.php:273
704
  msgid "For the help with Hungarian translation"
705
  msgstr "за помощь с венгерским переводом"
706
 
707
+ #: ../includes/ure-options.php:274
708
+ #: ../includes/ure-options.php:275
709
  msgid "For the help with Italian translation"
710
  msgstr "за помощь с итальянским переводом"
711
 
712
+ #: ../includes/ure-options.php:276
713
  msgid "For the help with Japanese translation"
714
  msgstr "за помощь с японским переводом"
715
 
716
+ #: ../includes/ure-options.php:277
717
  msgid "For the help with Lithuanian translation"
718
  msgstr "за помощь с литовским переводом"
719
 
720
+ #: ../includes/ure-options.php:278
721
+ #: ../includes/ure-options.php:279
722
+ #: ../includes/ure-options.php:280
723
  msgid "For the help with Persian translation"
724
  msgstr "за помощь с переводом на иранский"
725
 
726
+ #: ../includes/ure-options.php:281
727
+ #: ../includes/ure-options.php:282
728
  msgid "For the help with Polish translation"
729
  msgstr "за помощь с польским переводом"
730
 
731
+ #: ../includes/ure-options.php:283
732
+ #: ../includes/ure-options.php:284
733
  msgid "For the help with Spanish translation"
734
  msgstr "за помощь с испанским переводом"
735
 
736
+ #: ../includes/ure-options.php:285
737
  msgid "For the updated Swedish translation"
738
  msgstr "за помощь со шведским переводом"
739
 
740
+ #: ../includes/ure-options.php:286
741
  msgid "For the help with Swedish translation"
742
  msgstr "за помощь со шведским переводом"
743
 
744
+ #: ../includes/ure-options.php:287
745
  msgid "For the help with Turkish translation"
746
  msgstr "за помощь с турецким переводом"
747
 
748
+ #: ../includes/ure-options.php:289
749
  msgid "For the code to hide administrator role"
750
  msgstr "За код, скрывающий роль администратора"
751
 
752
+ #: ../includes/ure-options.php:290
753
  msgid "For the code enhancement suggestion"
754
  msgstr "За предложения по улучшению кода"
755
 
756
+ #: ../includes/ure-options.php:292
757
  msgid "Do you wish to see your name with link to your site here? You are welcome! Your help with translation and new ideas are very appreciated."
758
  msgstr "Желаете увидеть свое имя и ссылку на Ваш сайт здесь? Добро пожаловать! Ваша помощь с переводом и новые идеи приветствуются."
759
 
lang/ure-sv_SE.mo CHANGED
Binary file
lang/ure-sv_SE.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: 2012-06-23 23:32+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"
@@ -30,714 +30,732 @@ msgstr "Vänligen uppdatera!"
30
  msgid "User Role Editor requires PHP 5.0 or newer."
31
  msgstr "User Role Editor kräver PHP 5.0 eller nyare."
32
 
33
- #: ../user-role-editor.php:65
34
  msgid "Only"
35
  msgstr "Bara"
36
 
37
- #: ../user-role-editor.php:65
38
  msgid "is allowed to use"
39
  msgstr "får använda"
40
 
41
- #: ../user-role-editor.php:71
42
- #: ../user-role-editor.php:246
43
  msgid "User Role Editor"
44
  msgstr "User Role Editor"
45
 
46
- #: ../user-role-editor.php:218
47
  msgid "Settings"
48
  msgstr "Inställningar"
49
 
50
- #: ../user-role-editor.php:228
51
- #: ../ure-options.php:218
52
  msgid "Changelog"
53
  msgstr "Logg över ändringar"
54
 
55
- #: ../user-role-editor.php:275
56
  msgid "Capabilities"
57
  msgstr "Förmågor"
58
 
59
- #: ../ure-lib.php:45
60
  msgid "Error is occur. Please check the log file."
61
  msgstr "Ett fel inträffade. Vänligen kontrollera loggfilen."
62
 
63
- #: ../ure-lib.php:155
64
  msgid "Database operation error. Check log file."
65
  msgstr "Databasfel. Kontrollera loggfilen."
66
 
67
- #: ../ure-lib.php:188
68
  msgid "No backup data. It is created automatically before the first role data update."
69
  msgstr "Ingen säkerhetskopia tillgänglig. Data skapas automatiskt vid första rolluppdateringen."
70
 
71
- #: ../ure-lib.php:226
72
  msgid "Backup record is created for the current role capabilities"
73
  msgstr "Säkerhetskopia har skapats för aktuella rollresurser"
74
 
75
- #: ../ure-lib.php:345
76
  msgid "Error: Role name must contain latin characters and digits only!"
77
  msgstr "Fel: Rollnamnet får endast innehålla romerska tecken och siffror! "
78
 
79
- #: ../ure-lib.php:352
80
  #, php-format
81
  msgid "Role %s exists already"
82
  msgstr "Rollen %s existerar redan"
83
 
84
- #: ../ure-lib.php:365
85
  msgid "Error is encountered during new role create operation"
86
  msgstr "Fel uppstod vid skapande av ny roll"
87
 
88
- #: ../ure-lib.php:367
89
  #, php-format
90
  msgid "Role %s is created successfully"
91
  msgstr "Skapade rollen %s"
92
 
93
- #: ../ure-lib.php:451
94
  msgid "Error encountered during role delete operation"
95
  msgstr "Fel uppstod vid radering av roll"
96
 
97
- #: ../ure-lib.php:453
98
  #, php-format
99
  msgid "Role %s is deleted successfully"
100
  msgstr "Raderade rollen %s"
101
 
102
- #: ../ure-lib.php:471
103
  msgid "Error encountered during default role change operation"
104
  msgstr "Fel uppstod vid byte av standardroll"
105
 
106
- #: ../ure-lib.php:477
107
  #, php-format
108
  msgid "Default role for new users is set to %s successfully"
109
  msgstr "Standardroll för nya användare satt till %s"
110
 
111
- #: ../ure-lib.php:505
112
  msgid "Editor"
113
  msgstr "Utgivare"
114
 
115
- #: ../ure-lib.php:506
116
  msgid "Author"
117
  msgstr "Författare"
118
 
119
- #: ../ure-lib.php:507
120
  msgid "Contributor"
121
  msgstr "Medarbetare"
122
 
123
- #: ../ure-lib.php:508
124
  msgid "Subscriber"
125
  msgstr "Prenumerant"
126
 
127
- #: ../ure-lib.php:510
128
  msgid "Switch themes"
129
  msgstr "Byt teman"
130
 
131
- #: ../ure-lib.php:511
132
  msgid "Edit themes"
133
  msgstr "Redigera teman"
134
 
135
- #: ../ure-lib.php:512
136
  msgid "Activate plugins"
137
  msgstr "Aktivera tillägg"
138
 
139
- #: ../ure-lib.php:513
140
  msgid "Edit plugins"
141
  msgstr "Redigera tillägg"
142
 
143
- #: ../ure-lib.php:514
144
  msgid "Edit users"
145
  msgstr "Redigera användare"
146
 
147
- #: ../ure-lib.php:515
148
  msgid "Edit files"
149
  msgstr "Redigera filer"
150
 
151
- #: ../ure-lib.php:516
152
  msgid "Manage options"
153
  msgstr "Hantera inställningar"
154
 
155
- #: ../ure-lib.php:517
156
  msgid "Moderate comments"
157
  msgstr "Moderera kommentarer"
158
 
159
- #: ../ure-lib.php:518
160
  msgid "Manage categories"
161
  msgstr "Hantera kategorier"
162
 
163
- #: ../ure-lib.php:519
164
  msgid "Manage links"
165
  msgstr "Hantera länkar"
166
 
167
- #: ../ure-lib.php:520
168
  msgid "Upload files"
169
  msgstr "Ladda upp filer"
170
 
171
- #: ../ure-lib.php:521
172
  msgid "Import"
173
  msgstr "Importera"
174
 
175
- #: ../ure-lib.php:522
176
  msgid "Unfiltered html"
177
  msgstr "Ofiltrerad html"
178
 
179
- #: ../ure-lib.php:523
180
  msgid "Edit posts"
181
  msgstr "Redigera inlägg"
182
 
183
- #: ../ure-lib.php:524
184
  msgid "Edit others posts"
185
  msgstr "Redigera andras inlägg"
186
 
187
- #: ../ure-lib.php:525
188
  msgid "Edit published posts"
189
  msgstr "Redigera publicerade inlägg"
190
 
191
- #: ../ure-lib.php:526
192
  msgid "Publish posts"
193
  msgstr "Publicera inlägg"
194
 
195
- #: ../ure-lib.php:527
196
  msgid "Edit pages"
197
  msgstr "Redigera sidor"
198
 
199
- #: ../ure-lib.php:528
200
  msgid "Read"
201
  msgstr "Läsa"
202
 
203
- #: ../ure-lib.php:529
204
  msgid "Level 10"
205
  msgstr "Nivå 10"
206
 
207
- #: ../ure-lib.php:530
208
  msgid "Level 9"
209
  msgstr "Nivå 9"
210
 
211
- #: ../ure-lib.php:531
212
  msgid "Level 8"
213
  msgstr "Nivå 8"
214
 
215
- #: ../ure-lib.php:532
216
  msgid "Level 7"
217
  msgstr "Nivå 7"
218
 
219
- #: ../ure-lib.php:533
220
  msgid "Level 6"
221
  msgstr "Nivå 6"
222
 
223
- #: ../ure-lib.php:534
224
  msgid "Level 5"
225
  msgstr "Nivå 5"
226
 
227
- #: ../ure-lib.php:535
228
  msgid "Level 4"
229
  msgstr "Nivå 4"
230
 
231
- #: ../ure-lib.php:536
232
  msgid "Level 3"
233
  msgstr "Nivå 3"
234
 
235
- #: ../ure-lib.php:537
236
  msgid "Level 2"
237
  msgstr "Nivå 2"
238
 
239
- #: ../ure-lib.php:538
240
  msgid "Level 1"
241
  msgstr "Nivå 1"
242
 
243
- #: ../ure-lib.php:539
244
  msgid "Level 0"
245
  msgstr "Nivå 0"
246
 
247
- #: ../ure-lib.php:540
248
  msgid "Edit others pages"
249
  msgstr "Redigera andras sidor"
250
 
251
- #: ../ure-lib.php:541
252
  msgid "Edit published pages"
253
  msgstr "Redigera publicerade sidor"
254
 
255
- #: ../ure-lib.php:542
256
  msgid "Publish pages"
257
  msgstr "Publicera sidor"
258
 
259
- #: ../ure-lib.php:543
260
  msgid "Delete pages"
261
  msgstr "Radera sidor"
262
 
263
- #: ../ure-lib.php:544
264
  msgid "Delete others pages"
265
  msgstr "Radera andras sidor"
266
 
267
- #: ../ure-lib.php:545
268
  msgid "Delete published pages"
269
  msgstr "Radera publicerade sidor"
270
 
271
- #: ../ure-lib.php:546
272
  msgid "Delete posts"
273
  msgstr "Radera inlägg"
274
 
275
- #: ../ure-lib.php:547
276
  msgid "Delete others posts"
277
  msgstr "Radera andras inlägg"
278
 
279
- #: ../ure-lib.php:548
280
  msgid "Delete published posts"
281
  msgstr "Radera publicerade inlägg"
282
 
283
- #: ../ure-lib.php:549
284
  msgid "Delete private posts"
285
  msgstr "Radera privata inlägg"
286
 
287
- #: ../ure-lib.php:550
288
  msgid "Edit private posts"
289
  msgstr "Redigera privata inlägg"
290
 
291
- #: ../ure-lib.php:551
292
  msgid "Read private posts"
293
  msgstr "Läs privata inlägg"
294
 
295
- #: ../ure-lib.php:552
296
  msgid "Delete private pages"
297
  msgstr "Radera privata sidor"
298
 
299
- #: ../ure-lib.php:553
300
  msgid "Edit private pages"
301
  msgstr "Redigera privata sidor"
302
 
303
- #: ../ure-lib.php:554
304
  msgid "Read private pages"
305
  msgstr "Läs privata sidor"
306
 
307
- #: ../ure-lib.php:555
308
  msgid "Delete users"
309
  msgstr "Radera användare"
310
 
311
- #: ../ure-lib.php:556
312
  msgid "Create users"
313
  msgstr "Skapa användare"
314
 
315
- #: ../ure-lib.php:557
316
  msgid "Unfiltered upload"
317
  msgstr "Ofiltrerad uppladdning"
318
 
319
- #: ../ure-lib.php:558
320
  msgid "Edit dashboard"
321
  msgstr "Redigera panelen"
322
 
323
- #: ../ure-lib.php:559
324
  msgid "Update plugins"
325
  msgstr "Uppdatera tillägg"
326
 
327
- #: ../ure-lib.php:560
328
  msgid "Delete plugins"
329
  msgstr "Radera tillägg"
330
 
331
- #: ../ure-lib.php:561
332
  msgid "Install plugins"
333
  msgstr "Installera tillägg"
334
 
335
- #: ../ure-lib.php:562
336
  msgid "Update themes"
337
  msgstr "Uppdatera teman"
338
 
339
- #: ../ure-lib.php:563
340
  msgid "Install themes"
341
  msgstr "Installera teman"
342
 
343
- #: ../ure-lib.php:564
344
  msgid "Update core"
345
  msgstr "Uppdatera kärnan"
346
 
347
- #: ../ure-lib.php:565
348
  msgid "List users"
349
  msgstr "Lista användare"
350
 
351
- #: ../ure-lib.php:566
352
  msgid "Remove users"
353
  msgstr "Radera användare"
354
 
355
- #: ../ure-lib.php:567
356
  msgid "Add users"
357
  msgstr "Lägg till användare"
358
 
359
- #: ../ure-lib.php:568
360
  msgid "Promote users"
361
  msgstr "Befodra användare"
362
 
363
- #: ../ure-lib.php:569
364
  msgid "Edit theme options"
365
  msgstr "Redigera temainställningar"
366
 
367
- #: ../ure-lib.php:570
368
  msgid "Delete themes"
369
  msgstr "Radera teman"
370
 
371
- #: ../ure-lib.php:571
372
  msgid "Export"
373
  msgstr "Exportera"
374
 
375
- #: ../ure-lib.php:655
376
  msgid "Error: Capability name must contain latin characters and digits only!"
377
  msgstr "Fel: Namn på förmågor får endast innehålla romerska tecken och siffror!"
378
 
379
- #: ../ure-lib.php:667
380
  #, php-format
381
  msgid "Capability %s is added successfully"
382
  msgstr "Förmågan %s skapades"
383
 
384
- #: ../ure-lib.php:669
385
  #, php-format
386
  msgid "Capability %s exists already"
387
  msgstr "Förmågan %s existerar redan"
388
 
389
- #: ../ure-lib.php:818
390
  #, php-format
391
  msgid "Error! You do not have permission to delete this capability: %s!"
392
  msgstr "Fel! Du har inte tillstånd att radera denna förmågan: %s!"
393
 
394
- #: ../ure-lib.php:840
395
  #, php-format
396
  msgid "Capability %s is removed successfully"
397
  msgstr "Förmågan %s raderades"
398
 
399
- #: ../ure-lib.php:902
400
  msgid "Help"
401
  msgstr "Hjälp"
402
 
403
- #: ../ure-role-edit.php:29
404
  msgid "None"
405
  msgstr "Ingen"
406
 
407
- #: ../ure-role-edit.php:93
408
  msgid " Name can not be empty!"
409
  msgstr " Namnet får inte vara tomt!"
410
 
411
- #: ../ure-role-edit.php:97
412
  msgid " Name must contain latin characters and digits only!"
413
  msgstr " Namnet får endast innnehålla romerska tecken och siffror!"
414
 
415
- #: ../ure-role-edit.php:102
416
- #: ../ure-role-edit.php:293
417
  msgid "Delete Role"
418
  msgstr "Radera roll"
419
 
420
- #: ../ure-role-edit.php:104
421
  msgid "Change Default Role"
422
  msgstr "Byt standardroll"
423
 
424
- #: ../ure-role-edit.php:106
425
  msgid "Restore Roles from backup copy. Be careful, backup was created when you started URE 1st time. All changes you made after that will be lost"
426
  msgstr "Återställ roller from säkerhetskopia. Var försiktig, kopian gjordes när du använde User Role Editor första gången. Allting du ändrat därefter kommer gå förlorat. "
427
 
428
- #: ../ure-role-edit.php:108
429
  msgid "Warning! Be careful - removing critical capability could crash some plugin or other custom code"
430
  msgstr "Varning! Var försiktig - borttagning av kritiska förmågor kan krascha vissa tillägg"
431
 
432
- #: ../ure-role-edit.php:110
433
  msgid "Please confirm to continue"
434
  msgstr "Vänligen bekräfta för att fortsätta"
435
 
436
- #: ../ure-role-edit.php:147
437
  #, php-format
438
  msgid "Role \"%s\" update: please confirm to continue"
439
  msgstr "Roll \"%s\" uppdateras: vänligen bekräfta för att fortsätta"
440
 
441
- #: ../ure-role-edit.php:155
442
  msgid "Select Role and change its capabilities list"
443
  msgstr "Välj roll och ändra dess resurslista"
444
 
445
- #: ../ure-role-edit.php:157
446
  msgid "Select Role:"
447
  msgstr "Välj roll:"
448
 
449
- #: ../ure-role-edit.php:167
450
- #: ../ure-user-edit.php:91
451
  msgid "Show capabilities in human readable form"
452
  msgstr "Visa förmågor i mänskligt läsbar form"
453
 
454
- #: ../ure-role-edit.php:176
455
- #: ../ure-user-edit.php:100
456
  msgid "Show deprecated capabilities"
457
  msgstr "Visa föråldrade förmågor"
458
 
459
- #: ../ure-role-edit.php:180
460
  msgid "If checked, then apply action to ALL sites of this Network"
461
  msgstr "Tillämpa på alla webbplatser i detta nätverket, om ikryssad"
462
 
463
- #: ../ure-role-edit.php:190
464
  msgid "Apply to All Sites"
465
  msgstr "Tillämpa på alla webbplatser"
466
 
467
- #: ../ure-role-edit.php:251
468
- #: ../ure-user-edit.php:163
 
 
 
 
 
 
 
 
 
 
 
 
469
  msgid "Update"
470
  msgstr "Uppdatera"
471
 
472
- #: ../ure-role-edit.php:251
473
- #: ../ure-user-edit.php:163
474
  msgid "Save Changes"
475
  msgstr "Spara ändringar"
476
 
477
- #: ../ure-role-edit.php:252
478
- #: ../ure-user-edit.php:164
479
  msgid "Cancel"
480
  msgstr "Ångra"
481
 
482
- #: ../ure-role-edit.php:252
483
- #: ../ure-user-edit.php:164
484
  msgid "Cancel not saved changes"
485
  msgstr "Ångra ej sparade ändringar"
486
 
487
- #: ../ure-role-edit.php:255
488
  msgid "Select All"
489
  msgstr ""
490
 
491
- #: ../ure-role-edit.php:255
492
  msgid "Select All Capabilities"
493
  msgstr ""
494
 
495
- #: ../ure-role-edit.php:256
496
  msgid "Unselect All"
497
  msgstr ""
498
 
499
- #: ../ure-role-edit.php:256
500
  msgid "Unselect All Capabilities"
501
  msgstr ""
502
 
503
- #: ../ure-role-edit.php:257
504
  msgid "Reverse"
505
  msgstr ""
506
 
507
- #: ../ure-role-edit.php:257
508
  msgid "Turn checked capabilities off and vise versa"
509
  msgstr ""
510
 
511
- #: ../ure-role-edit.php:260
512
  msgid "Reset"
513
  msgstr "Återställ"
514
 
515
- #: ../ure-role-edit.php:260
516
  msgid "Restore Roles from backup copy"
517
  msgstr "Återställ roller från säkerhetskopia"
518
 
519
- #: ../ure-role-edit.php:270
520
  msgid "Add New Role"
521
  msgstr "Lägg till ny roll"
522
 
523
- #: ../ure-role-edit.php:272
524
  msgid "Name: "
525
  msgstr "Namn: "
526
 
527
- #: ../ure-role-edit.php:276
528
  msgid "Make copy of: "
529
  msgstr "Gör kopia av: "
530
 
531
- #: ../ure-role-edit.php:279
532
- #: ../ure-role-edit.php:308
533
  msgid "Add"
534
  msgstr "Lägg till"
535
 
536
- #: ../ure-role-edit.php:279
537
  msgid "Add New User Role"
538
  msgstr "Lägg till ny användarroll"
539
 
540
- #: ../ure-role-edit.php:283
541
  msgid "Default Role for New User"
542
  msgstr "Standardroll för nya användare"
543
 
544
- #: ../ure-role-edit.php:288
545
  msgid "Change"
546
  msgstr "Ändra"
547
 
548
- #: ../ure-role-edit.php:288
549
  msgid "Set as Default User Role"
550
  msgstr "Ange som standardroll"
551
 
552
- #: ../ure-role-edit.php:298
553
  msgid "Delete"
554
  msgstr "Radera"
555
 
556
- #: ../ure-role-edit.php:298
557
  msgid "Delete User Role"
558
  msgstr "Radera användarroll"
559
 
560
- #: ../ure-role-edit.php:303
561
- #: ../ure-role-edit.php:308
562
  msgid "Add New Capability"
563
  msgstr "Lägg till ny förmåga"
564
 
565
- #: ../ure-role-edit.php:313
566
  msgid "Remove Capability"
567
  msgstr "Ta bort förmåga"
568
 
569
- #: ../ure-role-edit.php:318
570
  msgid "Remove"
571
  msgstr "Ta bort"
572
 
573
- #: ../ure-role-edit.php:318
574
  msgid "Remove User Capability"
575
  msgstr "Ta bort användarförmåga"
576
 
577
- #: ../ure-user-edit.php:67
578
  #, php-format
579
  msgid "User \"%s\" update: please confirm to continue"
580
  msgstr "Användare \"%s\" uppdateras: vänligen bekräfta för att fortsätta"
581
 
582
- #: ../ure-user-edit.php:79
583
  msgid "Change capabilities for user"
584
  msgstr "Ändra förmågor för användare"
585
 
586
- #: ../ure-user-edit.php:82
587
  msgid "Role:"
588
  msgstr "Roll:"
589
 
590
- #: ../ure-user-edit.php:104
591
  msgid "Add capabilities to this user:"
592
  msgstr "Lägg till förmågor till denna användaren:"
593
 
594
- #: ../ure-options.php:59
595
  msgid "User Roles are restored from the backup data. "
596
  msgstr "Användarroller återställdes från säkerhetskopian"
597
 
598
- #: ../ure-options.php:125
599
  msgid "Error: "
600
  msgstr "Fel: "
601
 
602
- #: ../ure-options.php:125
603
- #: ../ure-options.php:143
604
  msgid "Role"
605
  msgstr "Roll"
606
 
607
- #: ../ure-options.php:125
608
  msgid "does not exist"
609
  msgstr "existerar inte"
610
 
611
- #: ../ure-options.php:143
612
  msgid "is updated successfully"
613
  msgstr "är uppdaterad"
614
 
615
- #: ../ure-options.php:152
616
  msgid "User"
617
  msgstr "Användare"
618
 
619
- #: ../ure-options.php:152
620
  msgid "capabilities are updated successfully"
621
  msgstr "förmågor uppdaterades"
622
 
623
- #: ../ure-options.php:215
624
  msgid "About this Plugin:"
625
  msgstr "Om detta tillägg:"
626
 
627
- #: ../ure-options.php:216
628
  msgid "Author's website"
629
  msgstr "Författarens hemsida"
630
 
631
- #: ../ure-options.php:217
632
  msgid "Plugin webpage"
633
  msgstr "Webbsida för tillägg"
634
 
635
- #: ../ure-options.php:219
636
  msgid "FAQ"
637
  msgstr "FAQ"
638
 
639
- #: ../ure-options.php:220
640
  msgid "Greetings"
641
  msgstr ""
642
 
643
- #: ../ure-options.php:242
644
  msgid "Greetings:"
645
  msgstr "Hälsningar:"
646
 
647
- #: ../ure-options.php:243
648
  msgid "It's me, the author"
649
  msgstr "Det är jag, skaparen"
650
 
651
- #: ../ure-options.php:244
652
  msgid "For the help with Belorussian translation"
653
  msgstr "För hjälpen med den vitryska översättningen"
654
 
655
- #: ../ure-options.php:245
656
  msgid "For the help with Brasilian translation"
657
  msgstr "För hjälpen med den brasilianska översättningen"
658
 
659
- #: ../ure-options.php:246
 
 
 
 
660
  msgid "For the help with Chinese translation"
661
  msgstr "För hjälpen med den kinesiska översättningen"
662
 
663
- #: ../ure-options.php:247
664
  msgid "For the help with Dutch translation"
665
  msgstr "För hjälpen med den nederländska översättningen"
666
 
667
- #: ../ure-options.php:248
668
  msgid "For the help with Finnish translation"
669
  msgstr "För hjälpen med den finska översättningen"
670
 
671
- #: ../ure-options.php:249
672
- #: ../ure-options.php:250
673
  msgid "For the help with French translation"
674
  msgstr "För hjälpen med den franska översättningen"
675
 
676
- #: ../ure-options.php:251
677
  msgid "For the help with German translation"
678
  msgstr "För hjälpen med den tyska översättningen"
679
 
680
- #: ../ure-options.php:252
681
- #: ../ure-options.php:253
682
  msgid "For the help with Hebrew translation"
683
  msgstr ""
684
 
685
- #: ../ure-options.php:254
686
  msgid "For the help with Hindi translation"
687
  msgstr ""
688
 
689
- #: ../ure-options.php:255
690
  msgid "For the help with Hungarian translation"
691
  msgstr "För hjälpen med den ungerska översättningen"
692
 
693
- #: ../ure-options.php:256
694
- #: ../ure-options.php:257
695
  msgid "For the help with Italian translation"
696
  msgstr "För hjälpen med den italienska översättningen"
697
 
698
- #: ../ure-options.php:258
699
  msgid "For the help with Japanese translation"
700
  msgstr "För hjälpen med den japanska översättningen"
701
 
702
- #: ../ure-options.php:259
703
  msgid "For the help with Lithuanian translation"
704
  msgstr ""
705
 
706
- #: ../ure-options.php:260
707
- #: ../ure-options.php:261
 
708
  msgid "For the help with Persian translation"
709
  msgstr "För hjälpen med den persiska översättningen"
710
 
711
- #: ../ure-options.php:262
 
712
  msgid "For the help with Polish translation"
713
  msgstr "För hjälpen med den polska översättningen"
714
 
715
- #: ../ure-options.php:263
716
- #: ../ure-options.php:264
717
  msgid "For the help with Spanish translation"
718
  msgstr "För hjälpen med den spanska översättningen"
719
 
720
- #: ../ure-options.php:265
721
  msgid "For the updated Swedish translation"
722
  msgstr ""
723
 
724
- #: ../ure-options.php:266
725
  msgid "For the help with Swedish translation"
726
  msgstr "För hjälpen med den svenska översättningen"
727
 
728
- #: ../ure-options.php:267
729
  msgid "For the help with Turkish translation"
730
  msgstr "För hjälpen med den turkiska översättningen"
731
 
732
- #: ../ure-options.php:269
733
  msgid "For the code to hide administrator role"
734
  msgstr "För koden att gömma administratörsrollen"
735
 
736
- #: ../ure-options.php:270
737
  msgid "For the code enhancement suggestion"
738
  msgstr "För kodförbättringsförslaget"
739
 
740
- #: ../ure-options.php:272
741
  msgid "Do you wish to see your name with link to your site here? You are welcome! Your help with translation and new ideas are very appreciated."
742
  msgstr "Hade du velat se ditt namn med en länk till din sida här? Varsågod! Din hjälp med översättningar och nya idéer är mycket uppskattade. "
743
 
2
  msgstr ""
3
  "Project-Id-Version: User Role Editor 2.0\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-09-01 08:50+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"
30
  msgid "User Role Editor requires PHP 5.0 or newer."
31
  msgstr "User Role Editor kräver PHP 5.0 eller nyare."
32
 
33
+ #: ../user-role-editor.php:76
34
  msgid "Only"
35
  msgstr "Bara"
36
 
37
+ #: ../user-role-editor.php:76
38
  msgid "is allowed to use"
39
  msgstr "får använda"
40
 
41
+ #: ../user-role-editor.php:82
42
+ #: ../user-role-editor.php:251
43
  msgid "User Role Editor"
44
  msgstr "User Role Editor"
45
 
46
+ #: ../user-role-editor.php:223
47
  msgid "Settings"
48
  msgstr "Inställningar"
49
 
50
+ #: ../user-role-editor.php:233
51
+ #: ../includes/ure-options.php:235
52
  msgid "Changelog"
53
  msgstr "Logg över ändringar"
54
 
55
+ #: ../user-role-editor.php:280
56
  msgid "Capabilities"
57
  msgstr "Förmågor"
58
 
59
+ #: ../includes/ure-lib.php:34
60
  msgid "Error is occur. Please check the log file."
61
  msgstr "Ett fel inträffade. Vänligen kontrollera loggfilen."
62
 
63
+ #: ../includes/ure-lib.php:144
64
  msgid "Database operation error. Check log file."
65
  msgstr "Databasfel. Kontrollera loggfilen."
66
 
67
+ #: ../includes/ure-lib.php:177
68
  msgid "No backup data. It is created automatically before the first role data update."
69
  msgstr "Ingen säkerhetskopia tillgänglig. Data skapas automatiskt vid första rolluppdateringen."
70
 
71
+ #: ../includes/ure-lib.php:215
72
  msgid "Backup record is created for the current role capabilities"
73
  msgstr "Säkerhetskopia har skapats för aktuella rollresurser"
74
 
75
+ #: ../includes/ure-lib.php:329
76
  msgid "Error: Role name must contain latin characters and digits only!"
77
  msgstr "Fel: Rollnamnet får endast innehålla romerska tecken och siffror! "
78
 
79
+ #: ../includes/ure-lib.php:336
80
  #, php-format
81
  msgid "Role %s exists already"
82
  msgstr "Rollen %s existerar redan"
83
 
84
+ #: ../includes/ure-lib.php:349
85
  msgid "Error is encountered during new role create operation"
86
  msgstr "Fel uppstod vid skapande av ny roll"
87
 
88
+ #: ../includes/ure-lib.php:351
89
  #, php-format
90
  msgid "Role %s is created successfully"
91
  msgstr "Skapade rollen %s"
92
 
93
+ #: ../includes/ure-lib.php:435
94
  msgid "Error encountered during role delete operation"
95
  msgstr "Fel uppstod vid radering av roll"
96
 
97
+ #: ../includes/ure-lib.php:437
98
  #, php-format
99
  msgid "Role %s is deleted successfully"
100
  msgstr "Raderade rollen %s"
101
 
102
+ #: ../includes/ure-lib.php:455
103
  msgid "Error encountered during default role change operation"
104
  msgstr "Fel uppstod vid byte av standardroll"
105
 
106
+ #: ../includes/ure-lib.php:461
107
  #, php-format
108
  msgid "Default role for new users is set to %s successfully"
109
  msgstr "Standardroll för nya användare satt till %s"
110
 
111
+ #: ../includes/ure-lib.php:489
112
  msgid "Editor"
113
  msgstr "Utgivare"
114
 
115
+ #: ../includes/ure-lib.php:490
116
  msgid "Author"
117
  msgstr "Författare"
118
 
119
+ #: ../includes/ure-lib.php:491
120
  msgid "Contributor"
121
  msgstr "Medarbetare"
122
 
123
+ #: ../includes/ure-lib.php:492
124
  msgid "Subscriber"
125
  msgstr "Prenumerant"
126
 
127
+ #: ../includes/ure-lib.php:494
128
  msgid "Switch themes"
129
  msgstr "Byt teman"
130
 
131
+ #: ../includes/ure-lib.php:495
132
  msgid "Edit themes"
133
  msgstr "Redigera teman"
134
 
135
+ #: ../includes/ure-lib.php:496
136
  msgid "Activate plugins"
137
  msgstr "Aktivera tillägg"
138
 
139
+ #: ../includes/ure-lib.php:497
140
  msgid "Edit plugins"
141
  msgstr "Redigera tillägg"
142
 
143
+ #: ../includes/ure-lib.php:498
144
  msgid "Edit users"
145
  msgstr "Redigera användare"
146
 
147
+ #: ../includes/ure-lib.php:499
148
  msgid "Edit files"
149
  msgstr "Redigera filer"
150
 
151
+ #: ../includes/ure-lib.php:500
152
  msgid "Manage options"
153
  msgstr "Hantera inställningar"
154
 
155
+ #: ../includes/ure-lib.php:501
156
  msgid "Moderate comments"
157
  msgstr "Moderera kommentarer"
158
 
159
+ #: ../includes/ure-lib.php:502
160
  msgid "Manage categories"
161
  msgstr "Hantera kategorier"
162
 
163
+ #: ../includes/ure-lib.php:503
164
  msgid "Manage links"
165
  msgstr "Hantera länkar"
166
 
167
+ #: ../includes/ure-lib.php:504
168
  msgid "Upload files"
169
  msgstr "Ladda upp filer"
170
 
171
+ #: ../includes/ure-lib.php:505
172
  msgid "Import"
173
  msgstr "Importera"
174
 
175
+ #: ../includes/ure-lib.php:506
176
  msgid "Unfiltered html"
177
  msgstr "Ofiltrerad html"
178
 
179
+ #: ../includes/ure-lib.php:507
180
  msgid "Edit posts"
181
  msgstr "Redigera inlägg"
182
 
183
+ #: ../includes/ure-lib.php:508
184
  msgid "Edit others posts"
185
  msgstr "Redigera andras inlägg"
186
 
187
+ #: ../includes/ure-lib.php:509
188
  msgid "Edit published posts"
189
  msgstr "Redigera publicerade inlägg"
190
 
191
+ #: ../includes/ure-lib.php:510
192
  msgid "Publish posts"
193
  msgstr "Publicera inlägg"
194
 
195
+ #: ../includes/ure-lib.php:511
196
  msgid "Edit pages"
197
  msgstr "Redigera sidor"
198
 
199
+ #: ../includes/ure-lib.php:512
200
  msgid "Read"
201
  msgstr "Läsa"
202
 
203
+ #: ../includes/ure-lib.php:513
204
  msgid "Level 10"
205
  msgstr "Nivå 10"
206
 
207
+ #: ../includes/ure-lib.php:514
208
  msgid "Level 9"
209
  msgstr "Nivå 9"
210
 
211
+ #: ../includes/ure-lib.php:515
212
  msgid "Level 8"
213
  msgstr "Nivå 8"
214
 
215
+ #: ../includes/ure-lib.php:516
216
  msgid "Level 7"
217
  msgstr "Nivå 7"
218
 
219
+ #: ../includes/ure-lib.php:517
220
  msgid "Level 6"
221
  msgstr "Nivå 6"
222
 
223
+ #: ../includes/ure-lib.php:518
224
  msgid "Level 5"
225
  msgstr "Nivå 5"
226
 
227
+ #: ../includes/ure-lib.php:519
228
  msgid "Level 4"
229
  msgstr "Nivå 4"
230
 
231
+ #: ../includes/ure-lib.php:520
232
  msgid "Level 3"
233
  msgstr "Nivå 3"
234
 
235
+ #: ../includes/ure-lib.php:521
236
  msgid "Level 2"
237
  msgstr "Nivå 2"
238
 
239
+ #: ../includes/ure-lib.php:522
240
  msgid "Level 1"
241
  msgstr "Nivå 1"
242
 
243
+ #: ../includes/ure-lib.php:523
244
  msgid "Level 0"
245
  msgstr "Nivå 0"
246
 
247
+ #: ../includes/ure-lib.php:524
248
  msgid "Edit others pages"
249
  msgstr "Redigera andras sidor"
250
 
251
+ #: ../includes/ure-lib.php:525
252
  msgid "Edit published pages"
253
  msgstr "Redigera publicerade sidor"
254
 
255
+ #: ../includes/ure-lib.php:526
256
  msgid "Publish pages"
257
  msgstr "Publicera sidor"
258
 
259
+ #: ../includes/ure-lib.php:527
260
  msgid "Delete pages"
261
  msgstr "Radera sidor"
262
 
263
+ #: ../includes/ure-lib.php:528
264
  msgid "Delete others pages"
265
  msgstr "Radera andras sidor"
266
 
267
+ #: ../includes/ure-lib.php:529
268
  msgid "Delete published pages"
269
  msgstr "Radera publicerade sidor"
270
 
271
+ #: ../includes/ure-lib.php:530
272
  msgid "Delete posts"
273
  msgstr "Radera inlägg"
274
 
275
+ #: ../includes/ure-lib.php:531
276
  msgid "Delete others posts"
277
  msgstr "Radera andras inlägg"
278
 
279
+ #: ../includes/ure-lib.php:532
280
  msgid "Delete published posts"
281
  msgstr "Radera publicerade inlägg"
282
 
283
+ #: ../includes/ure-lib.php:533
284
  msgid "Delete private posts"
285
  msgstr "Radera privata inlägg"
286
 
287
+ #: ../includes/ure-lib.php:534
288
  msgid "Edit private posts"
289
  msgstr "Redigera privata inlägg"
290
 
291
+ #: ../includes/ure-lib.php:535
292
  msgid "Read private posts"
293
  msgstr "Läs privata inlägg"
294
 
295
+ #: ../includes/ure-lib.php:536
296
  msgid "Delete private pages"
297
  msgstr "Radera privata sidor"
298
 
299
+ #: ../includes/ure-lib.php:537
300
  msgid "Edit private pages"
301
  msgstr "Redigera privata sidor"
302
 
303
+ #: ../includes/ure-lib.php:538
304
  msgid "Read private pages"
305
  msgstr "Läs privata sidor"
306
 
307
+ #: ../includes/ure-lib.php:539
308
  msgid "Delete users"
309
  msgstr "Radera användare"
310
 
311
+ #: ../includes/ure-lib.php:540
312
  msgid "Create users"
313
  msgstr "Skapa användare"
314
 
315
+ #: ../includes/ure-lib.php:541
316
  msgid "Unfiltered upload"
317
  msgstr "Ofiltrerad uppladdning"
318
 
319
+ #: ../includes/ure-lib.php:542
320
  msgid "Edit dashboard"
321
  msgstr "Redigera panelen"
322
 
323
+ #: ../includes/ure-lib.php:543
324
  msgid "Update plugins"
325
  msgstr "Uppdatera tillägg"
326
 
327
+ #: ../includes/ure-lib.php:544
328
  msgid "Delete plugins"
329
  msgstr "Radera tillägg"
330
 
331
+ #: ../includes/ure-lib.php:545
332
  msgid "Install plugins"
333
  msgstr "Installera tillägg"
334
 
335
+ #: ../includes/ure-lib.php:546
336
  msgid "Update themes"
337
  msgstr "Uppdatera teman"
338
 
339
+ #: ../includes/ure-lib.php:547
340
  msgid "Install themes"
341
  msgstr "Installera teman"
342
 
343
+ #: ../includes/ure-lib.php:548
344
  msgid "Update core"
345
  msgstr "Uppdatera kärnan"
346
 
347
+ #: ../includes/ure-lib.php:549
348
  msgid "List users"
349
  msgstr "Lista användare"
350
 
351
+ #: ../includes/ure-lib.php:550
352
  msgid "Remove users"
353
  msgstr "Radera användare"
354
 
355
+ #: ../includes/ure-lib.php:551
356
  msgid "Add users"
357
  msgstr "Lägg till användare"
358
 
359
+ #: ../includes/ure-lib.php:552
360
  msgid "Promote users"
361
  msgstr "Befodra användare"
362
 
363
+ #: ../includes/ure-lib.php:553
364
  msgid "Edit theme options"
365
  msgstr "Redigera temainställningar"
366
 
367
+ #: ../includes/ure-lib.php:554
368
  msgid "Delete themes"
369
  msgstr "Radera teman"
370
 
371
+ #: ../includes/ure-lib.php:555
372
  msgid "Export"
373
  msgstr "Exportera"
374
 
375
+ #: ../includes/ure-lib.php:639
376
  msgid "Error: Capability name must contain latin characters and digits only!"
377
  msgstr "Fel: Namn på förmågor får endast innehålla romerska tecken och siffror!"
378
 
379
+ #: ../includes/ure-lib.php:651
380
  #, php-format
381
  msgid "Capability %s is added successfully"
382
  msgstr "Förmågan %s skapades"
383
 
384
+ #: ../includes/ure-lib.php:653
385
  #, php-format
386
  msgid "Capability %s exists already"
387
  msgstr "Förmågan %s existerar redan"
388
 
389
+ #: ../includes/ure-lib.php:802
390
  #, php-format
391
  msgid "Error! You do not have permission to delete this capability: %s!"
392
  msgstr "Fel! Du har inte tillstånd att radera denna förmågan: %s!"
393
 
394
+ #: ../includes/ure-lib.php:824
395
  #, php-format
396
  msgid "Capability %s is removed successfully"
397
  msgstr "Förmågan %s raderades"
398
 
399
+ #: ../includes/ure-lib.php:889
400
  msgid "Help"
401
  msgstr "Hjälp"
402
 
403
+ #: ../includes/ure-role-edit.php:29
404
  msgid "None"
405
  msgstr "Ingen"
406
 
407
+ #: ../includes/ure-role-edit.php:101
408
  msgid " Name can not be empty!"
409
  msgstr " Namnet får inte vara tomt!"
410
 
411
+ #: ../includes/ure-role-edit.php:105
412
  msgid " Name must contain latin characters and digits only!"
413
  msgstr " Namnet får endast innnehålla romerska tecken och siffror!"
414
 
415
+ #: ../includes/ure-role-edit.php:110
416
+ #: ../includes/ure-role-edit.php:367
417
  msgid "Delete Role"
418
  msgstr "Radera roll"
419
 
420
+ #: ../includes/ure-role-edit.php:112
421
  msgid "Change Default Role"
422
  msgstr "Byt standardroll"
423
 
424
+ #: ../includes/ure-role-edit.php:114
425
  msgid "Restore Roles from backup copy. Be careful, backup was created when you started URE 1st time. All changes you made after that will be lost"
426
  msgstr "Återställ roller from säkerhetskopia. Var försiktig, kopian gjordes när du använde User Role Editor första gången. Allting du ändrat därefter kommer gå förlorat. "
427
 
428
+ #: ../includes/ure-role-edit.php:116
429
  msgid "Warning! Be careful - removing critical capability could crash some plugin or other custom code"
430
  msgstr "Varning! Var försiktig - borttagning av kritiska förmågor kan krascha vissa tillägg"
431
 
432
+ #: ../includes/ure-role-edit.php:118
433
  msgid "Please confirm to continue"
434
  msgstr "Vänligen bekräfta för att fortsätta"
435
 
436
+ #: ../includes/ure-role-edit.php:155
437
  #, php-format
438
  msgid "Role \"%s\" update: please confirm to continue"
439
  msgstr "Roll \"%s\" uppdateras: vänligen bekräfta för att fortsätta"
440
 
441
+ #: ../includes/ure-role-edit.php:163
442
  msgid "Select Role and change its capabilities list"
443
  msgstr "Välj roll och ändra dess resurslista"
444
 
445
+ #: ../includes/ure-role-edit.php:165
446
  msgid "Select Role:"
447
  msgstr "Välj roll:"
448
 
449
+ #: ../includes/ure-role-edit.php:175
450
+ #: ../includes/ure-user-edit.php:91
451
  msgid "Show capabilities in human readable form"
452
  msgstr "Visa förmågor i mänskligt läsbar form"
453
 
454
+ #: ../includes/ure-role-edit.php:184
455
+ #: ../includes/ure-user-edit.php:100
456
  msgid "Show deprecated capabilities"
457
  msgstr "Visa föråldrade förmågor"
458
 
459
+ #: ../includes/ure-role-edit.php:188
460
  msgid "If checked, then apply action to ALL sites of this Network"
461
  msgstr "Tillämpa på alla webbplatser i detta nätverket, om ikryssad"
462
 
463
+ #: ../includes/ure-role-edit.php:198
464
  msgid "Apply to All Sites"
465
  msgstr "Tillämpa på alla webbplatser"
466
 
467
+ #: ../includes/ure-role-edit.php:205
468
+ #: ../includes/ure-user-edit.php:105
469
+ #, fuzzy
470
+ msgid "Core capabilities:"
471
+ msgstr "WordPress Förmågor:"
472
+
473
+ #: ../includes/ure-role-edit.php:268
474
+ #: ../includes/ure-user-edit.php:167
475
+ #, fuzzy
476
+ msgid "Custom capabilities:"
477
+ msgstr "Förmågor:"
478
+
479
+ #: ../includes/ure-role-edit.php:319
480
+ #: ../includes/ure-user-edit.php:222
481
  msgid "Update"
482
  msgstr "Uppdatera"
483
 
484
+ #: ../includes/ure-role-edit.php:319
485
+ #: ../includes/ure-user-edit.php:222
486
  msgid "Save Changes"
487
  msgstr "Spara ändringar"
488
 
489
+ #: ../includes/ure-role-edit.php:320
490
+ #: ../includes/ure-user-edit.php:223
491
  msgid "Cancel"
492
  msgstr "Ångra"
493
 
494
+ #: ../includes/ure-role-edit.php:320
495
+ #: ../includes/ure-user-edit.php:223
496
  msgid "Cancel not saved changes"
497
  msgstr "Ångra ej sparade ändringar"
498
 
499
+ #: ../includes/ure-role-edit.php:323
500
  msgid "Select All"
501
  msgstr ""
502
 
503
+ #: ../includes/ure-role-edit.php:323
504
  msgid "Select All Capabilities"
505
  msgstr ""
506
 
507
+ #: ../includes/ure-role-edit.php:327
508
  msgid "Unselect All"
509
  msgstr ""
510
 
511
+ #: ../includes/ure-role-edit.php:327
512
  msgid "Unselect All Capabilities"
513
  msgstr ""
514
 
515
+ #: ../includes/ure-role-edit.php:328
516
  msgid "Reverse"
517
  msgstr ""
518
 
519
+ #: ../includes/ure-role-edit.php:328
520
  msgid "Turn checked capabilities off and vise versa"
521
  msgstr ""
522
 
523
+ #: ../includes/ure-role-edit.php:334
524
  msgid "Reset"
525
  msgstr "Återställ"
526
 
527
+ #: ../includes/ure-role-edit.php:334
528
  msgid "Restore Roles from backup copy"
529
  msgstr "Återställ roller från säkerhetskopia"
530
 
531
+ #: ../includes/ure-role-edit.php:344
532
  msgid "Add New Role"
533
  msgstr "Lägg till ny roll"
534
 
535
+ #: ../includes/ure-role-edit.php:346
536
  msgid "Name: "
537
  msgstr "Namn: "
538
 
539
+ #: ../includes/ure-role-edit.php:350
540
  msgid "Make copy of: "
541
  msgstr "Gör kopia av: "
542
 
543
+ #: ../includes/ure-role-edit.php:353
544
+ #: ../includes/ure-role-edit.php:382
545
  msgid "Add"
546
  msgstr "Lägg till"
547
 
548
+ #: ../includes/ure-role-edit.php:353
549
  msgid "Add New User Role"
550
  msgstr "Lägg till ny användarroll"
551
 
552
+ #: ../includes/ure-role-edit.php:357
553
  msgid "Default Role for New User"
554
  msgstr "Standardroll för nya användare"
555
 
556
+ #: ../includes/ure-role-edit.php:362
557
  msgid "Change"
558
  msgstr "Ändra"
559
 
560
+ #: ../includes/ure-role-edit.php:362
561
  msgid "Set as Default User Role"
562
  msgstr "Ange som standardroll"
563
 
564
+ #: ../includes/ure-role-edit.php:372
565
  msgid "Delete"
566
  msgstr "Radera"
567
 
568
+ #: ../includes/ure-role-edit.php:372
569
  msgid "Delete User Role"
570
  msgstr "Radera användarroll"
571
 
572
+ #: ../includes/ure-role-edit.php:377
573
+ #: ../includes/ure-role-edit.php:382
574
  msgid "Add New Capability"
575
  msgstr "Lägg till ny förmåga"
576
 
577
+ #: ../includes/ure-role-edit.php:387
578
  msgid "Remove Capability"
579
  msgstr "Ta bort förmåga"
580
 
581
+ #: ../includes/ure-role-edit.php:392
582
  msgid "Remove"
583
  msgstr "Ta bort"
584
 
585
+ #: ../includes/ure-role-edit.php:392
586
  msgid "Remove User Capability"
587
  msgstr "Ta bort användarförmåga"
588
 
589
+ #: ../includes/ure-user-edit.php:67
590
  #, php-format
591
  msgid "User \"%s\" update: please confirm to continue"
592
  msgstr "Användare \"%s\" uppdateras: vänligen bekräfta för att fortsätta"
593
 
594
+ #: ../includes/ure-user-edit.php:79
595
  msgid "Change capabilities for user"
596
  msgstr "Ändra förmågor för användare"
597
 
598
+ #: ../includes/ure-user-edit.php:82
599
  msgid "Role:"
600
  msgstr "Roll:"
601
 
602
+ #: ../includes/ure-user-edit.php:104
603
  msgid "Add capabilities to this user:"
604
  msgstr "Lägg till förmågor till denna användaren:"
605
 
606
+ #: ../includes/ure-options.php:59
607
  msgid "User Roles are restored from the backup data. "
608
  msgstr "Användarroller återställdes från säkerhetskopian"
609
 
610
+ #: ../includes/ure-options.php:130
611
  msgid "Error: "
612
  msgstr "Fel: "
613
 
614
+ #: ../includes/ure-options.php:130
615
+ #: ../includes/ure-options.php:146
616
  msgid "Role"
617
  msgstr "Roll"
618
 
619
+ #: ../includes/ure-options.php:130
620
  msgid "does not exist"
621
  msgstr "existerar inte"
622
 
623
+ #: ../includes/ure-options.php:146
624
  msgid "is updated successfully"
625
  msgstr "är uppdaterad"
626
 
627
+ #: ../includes/ure-options.php:154
628
  msgid "User"
629
  msgstr "Användare"
630
 
631
+ #: ../includes/ure-options.php:154
632
  msgid "capabilities are updated successfully"
633
  msgstr "förmågor uppdaterades"
634
 
635
+ #: ../includes/ure-options.php:232
636
  msgid "About this Plugin:"
637
  msgstr "Om detta tillägg:"
638
 
639
+ #: ../includes/ure-options.php:233
640
  msgid "Author's website"
641
  msgstr "Författarens hemsida"
642
 
643
+ #: ../includes/ure-options.php:234
644
  msgid "Plugin webpage"
645
  msgstr "Webbsida för tillägg"
646
 
647
+ #: ../includes/ure-options.php:236
648
  msgid "FAQ"
649
  msgstr "FAQ"
650
 
651
+ #: ../includes/ure-options.php:237
652
  msgid "Greetings"
653
  msgstr ""
654
 
655
+ #: ../includes/ure-options.php:259
656
  msgid "Greetings:"
657
  msgstr "Hälsningar:"
658
 
659
+ #: ../includes/ure-options.php:260
660
  msgid "It's me, the author"
661
  msgstr "Det är jag, skaparen"
662
 
663
+ #: ../includes/ure-options.php:261
664
  msgid "For the help with Belorussian translation"
665
  msgstr "För hjälpen med den vitryska översättningen"
666
 
667
+ #: ../includes/ure-options.php:262
668
  msgid "For the help with Brasilian translation"
669
  msgstr "För hjälpen med den brasilianska översättningen"
670
 
671
+ #: ../includes/ure-options.php:263
672
+ msgid "For the help with Brasilian Portuguese translation"
673
+ msgstr "För hjälpen med den brasilianska översättningen"
674
+
675
+ #: ../includes/ure-options.php:264
676
  msgid "For the help with Chinese translation"
677
  msgstr "För hjälpen med den kinesiska översättningen"
678
 
679
+ #: ../includes/ure-options.php:265
680
  msgid "For the help with Dutch translation"
681
  msgstr "För hjälpen med den nederländska översättningen"
682
 
683
+ #: ../includes/ure-options.php:266
684
  msgid "For the help with Finnish translation"
685
  msgstr "För hjälpen med den finska översättningen"
686
 
687
+ #: ../includes/ure-options.php:267
688
+ #: ../includes/ure-options.php:268
689
  msgid "For the help with French translation"
690
  msgstr "För hjälpen med den franska översättningen"
691
 
692
+ #: ../includes/ure-options.php:269
693
  msgid "For the help with German translation"
694
  msgstr "För hjälpen med den tyska översättningen"
695
 
696
+ #: ../includes/ure-options.php:270
697
+ #: ../includes/ure-options.php:271
698
  msgid "For the help with Hebrew translation"
699
  msgstr ""
700
 
701
+ #: ../includes/ure-options.php:272
702
  msgid "For the help with Hindi translation"
703
  msgstr ""
704
 
705
+ #: ../includes/ure-options.php:273
706
  msgid "For the help with Hungarian translation"
707
  msgstr "För hjälpen med den ungerska översättningen"
708
 
709
+ #: ../includes/ure-options.php:274
710
+ #: ../includes/ure-options.php:275
711
  msgid "For the help with Italian translation"
712
  msgstr "För hjälpen med den italienska översättningen"
713
 
714
+ #: ../includes/ure-options.php:276
715
  msgid "For the help with Japanese translation"
716
  msgstr "För hjälpen med den japanska översättningen"
717
 
718
+ #: ../includes/ure-options.php:277
719
  msgid "For the help with Lithuanian translation"
720
  msgstr ""
721
 
722
+ #: ../includes/ure-options.php:278
723
+ #: ../includes/ure-options.php:279
724
+ #: ../includes/ure-options.php:280
725
  msgid "For the help with Persian translation"
726
  msgstr "För hjälpen med den persiska översättningen"
727
 
728
+ #: ../includes/ure-options.php:281
729
+ #: ../includes/ure-options.php:282
730
  msgid "For the help with Polish translation"
731
  msgstr "För hjälpen med den polska översättningen"
732
 
733
+ #: ../includes/ure-options.php:283
734
+ #: ../includes/ure-options.php:284
735
  msgid "For the help with Spanish translation"
736
  msgstr "För hjälpen med den spanska översättningen"
737
 
738
+ #: ../includes/ure-options.php:285
739
  msgid "For the updated Swedish translation"
740
  msgstr ""
741
 
742
+ #: ../includes/ure-options.php:286
743
  msgid "For the help with Swedish translation"
744
  msgstr "För hjälpen med den svenska översättningen"
745
 
746
+ #: ../includes/ure-options.php:287
747
  msgid "For the help with Turkish translation"
748
  msgstr "För hjälpen med den turkiska översättningen"
749
 
750
+ #: ../includes/ure-options.php:289
751
  msgid "For the code to hide administrator role"
752
  msgstr "För koden att gömma administratörsrollen"
753
 
754
+ #: ../includes/ure-options.php:290
755
  msgid "For the code enhancement suggestion"
756
  msgstr "För kodförbättringsförslaget"
757
 
758
+ #: ../includes/ure-options.php:292
759
  msgid "Do you wish to see your name with link to your site here? You are welcome! Your help with translation and new ideas are very appreciated."
760
  msgstr "Hade du velat se ditt namn med en länk till din sida här? Varsågod! Din hjälp med översättningar och nya idéer är mycket uppskattade. "
761
 
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: 2012-04-30 22:10+0700\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Vladimir Garagulya <vladimir@shinephp.com>\n"
8
  "Language-Team: \n"
@@ -30,686 +30,733 @@ msgstr "Lütfen güncelleyin!"
30
  msgid "User Role Editor requires PHP 5.0 or newer."
31
  msgstr "User Role Editor eklentisi PHP 5.0 veya daha yüksek bir sürüme ihtiyaç duymaktadır."
32
 
33
- #: ../user-role-editor.php:65
34
  msgid "Only"
35
  msgstr "Sadece"
36
 
37
- #: ../user-role-editor.php:65
38
  msgid "is allowed to use"
39
  msgstr "kullanmak için yetkilidir"
40
 
41
- #: ../user-role-editor.php:71
42
- #: ../user-role-editor.php:240
43
  msgid "User Role Editor"
44
  msgstr "Kullanıcı Rol Editörü"
45
 
46
- #: ../user-role-editor.php:212
47
  msgid "Settings"
48
  msgstr "Ayarlar"
49
 
50
- #: ../user-role-editor.php:222
51
- #: ../ure-options.php:194
52
  msgid "Changelog"
53
  msgstr "Changelog"
54
 
55
- #: ../user-role-editor.php:269
56
  msgid "Capabilities"
57
  msgstr "Kabiliyetler"
58
 
59
- #: ../ure-lib.php:45
60
  msgid "Error is occur. Please check the log file."
61
  msgstr "Bir hata oluştu. Lütfen günlük dosyasını kontrol edin."
62
 
63
- #: ../ure-lib.php:155
64
  msgid "Database operation error. Check log file."
65
  msgstr "Veritabanı operasyonu hatası. Günlük dosyasını kontrol edin."
66
 
67
- #: ../ure-lib.php:188
68
  msgid "No backup data. It is created automatically before the first role data update."
69
  msgstr "Henüz yedekleme yapılmamış. İlk yedekleme, ilk rol verisi güncellemesi öncesi otomatik olarak yapılacaktır."
70
 
71
- #: ../ure-lib.php:226
72
  msgid "Backup record is created for the current role capabilities"
73
  msgstr "Güncel rol yeterlilikleri için yedek kayıt oluşturuldu"
74
 
75
- #: ../ure-lib.php:345
76
  msgid "Error: Role name must contain latin characters and digits only!"
77
  msgstr "Hata: Rol adı yalnızca latin karakterleri ve sayılardan oluşabilir."
78
 
79
- #: ../ure-lib.php:352
80
  #, php-format
81
  msgid "Role %s exists already"
82
  msgstr "%s rolü zaten mevcut"
83
 
84
- #: ../ure-lib.php:365
85
  msgid "Error is encountered during new role create operation"
86
  msgstr "Yeni rol oluşturma işlemi sırasında hata"
87
 
88
- #: ../ure-lib.php:367
89
  #, php-format
90
  msgid "Role %s is created successfully"
91
  msgstr "%s rolü başarıyla oluşturuldu"
92
 
93
- #: ../ure-lib.php:451
94
  msgid "Error encountered during role delete operation"
95
  msgstr "Rol silme işlemi sırasında hata"
96
 
97
- #: ../ure-lib.php:453
98
  #, php-format
99
  msgid "Role %s is deleted successfully"
100
  msgstr "%s rolü başarıyla silindi"
101
 
102
- #: ../ure-lib.php:471
103
  msgid "Error encountered during default role change operation"
104
  msgstr "Varsayılan rolü değiştirme işlemi sırasında hata"
105
 
106
- #: ../ure-lib.php:477
107
  #, php-format
108
  msgid "Default role for new users is set to %s successfully"
109
  msgstr "Yeni kullanıcılar için varsayılan rol %s olarak başarıyla değiştirildi"
110
 
111
- #: ../ure-lib.php:505
112
  msgid "Editor"
113
  msgstr "Editör"
114
 
115
- #: ../ure-lib.php:506
116
  msgid "Author"
117
  msgstr "Yazar"
118
 
119
- #: ../ure-lib.php:507
120
  msgid "Contributor"
121
  msgstr "İçerik Sağlayıcı"
122
 
123
- #: ../ure-lib.php:508
124
  msgid "Subscriber"
125
  msgstr "Üye"
126
 
127
- #: ../ure-lib.php:510
128
  msgid "Switch themes"
129
  msgstr "Temaları değiştir"
130
 
131
- #: ../ure-lib.php:511
132
  msgid "Edit themes"
133
  msgstr "Temaları düzenle"
134
 
135
- #: ../ure-lib.php:512
136
  msgid "Activate plugins"
137
  msgstr "Eklentileri aktive et"
138
 
139
- #: ../ure-lib.php:513
140
  msgid "Edit plugins"
141
  msgstr "Eklentileri düzenlemek"
142
 
143
- #: ../ure-lib.php:514
144
  msgid "Edit users"
145
  msgstr "Kullanıcıları düzenlemek"
146
 
147
- #: ../ure-lib.php:515
148
  msgid "Edit files"
149
  msgstr "Dosyaları düzenlemek"
150
 
151
- #: ../ure-lib.php:516
152
  msgid "Manage options"
153
  msgstr "Seçenekleri yönetmek"
154
 
155
- #: ../ure-lib.php:517
156
  msgid "Moderate comments"
157
  msgstr "Yorumları yönetmek"
158
 
159
- #: ../ure-lib.php:518
160
  msgid "Manage categories"
161
  msgstr "Kategorileri yönetmek"
162
 
163
- #: ../ure-lib.php:519
164
  msgid "Manage links"
165
  msgstr "Linkleri yönetmek"
166
 
167
- #: ../ure-lib.php:520
168
  msgid "Upload files"
169
  msgstr "Dosya yüklemek"
170
 
171
- #: ../ure-lib.php:521
172
  msgid "Import"
173
  msgstr "İçeri aktarmak"
174
 
175
- #: ../ure-lib.php:522
176
  msgid "Unfiltered html"
177
  msgstr "Filtrelenmemiş HTML"
178
 
179
- #: ../ure-lib.php:523
180
  msgid "Edit posts"
181
  msgstr "Yazıları düzenlemek"
182
 
183
- #: ../ure-lib.php:524
184
  msgid "Edit others posts"
185
  msgstr "Başkalarının yazılarını düzenlemek"
186
 
187
- #: ../ure-lib.php:525
188
  msgid "Edit published posts"
189
  msgstr "Yayınlanmış yazıları düzenlemek"
190
 
191
- #: ../ure-lib.php:526
192
  msgid "Publish posts"
193
  msgstr "Yazıları yayınlamak"
194
 
195
- #: ../ure-lib.php:527
196
  msgid "Edit pages"
197
  msgstr "Sayfaları düzenlemek"
198
 
199
- #: ../ure-lib.php:528
200
  msgid "Read"
201
  msgstr "Okumak"
202
 
203
- #: ../ure-lib.php:529
204
  msgid "Level 10"
205
  msgstr "Seviye 10"
206
 
207
- #: ../ure-lib.php:530
208
  msgid "Level 9"
209
  msgstr "Seviye 9"
210
 
211
- #: ../ure-lib.php:531
212
  msgid "Level 8"
213
  msgstr "Seviye 8"
214
 
215
- #: ../ure-lib.php:532
216
  msgid "Level 7"
217
  msgstr "Seviye 7"
218
 
219
- #: ../ure-lib.php:533
220
  msgid "Level 6"
221
  msgstr "Seviye 6"
222
 
223
- #: ../ure-lib.php:534
224
  msgid "Level 5"
225
  msgstr "Seviye 5"
226
 
227
- #: ../ure-lib.php:535
228
  msgid "Level 4"
229
  msgstr "Seviye 4"
230
 
231
- #: ../ure-lib.php:536
232
  msgid "Level 3"
233
  msgstr "Seviye 3"
234
 
235
- #: ../ure-lib.php:537
236
  msgid "Level 2"
237
  msgstr "Seviye 2"
238
 
239
- #: ../ure-lib.php:538
240
  msgid "Level 1"
241
  msgstr "Seviye 1"
242
 
243
- #: ../ure-lib.php:539
244
  msgid "Level 0"
245
  msgstr "Seviye 0"
246
 
247
- #: ../ure-lib.php:540
248
  msgid "Edit others pages"
249
  msgstr "Başkalarının sayfalarını düzenlemek"
250
 
251
- #: ../ure-lib.php:541
252
  msgid "Edit published pages"
253
  msgstr "Yayınlanmış sayfaları düzenlemek"
254
 
255
- #: ../ure-lib.php:542
256
  msgid "Publish pages"
257
  msgstr "Sayfaları yayınlamak"
258
 
259
- #: ../ure-lib.php:543
260
  msgid "Delete pages"
261
  msgstr "Sayfaları silmek"
262
 
263
- #: ../ure-lib.php:544
264
  msgid "Delete others pages"
265
  msgstr "Başkalarının sayfalarını silmek"
266
 
267
- #: ../ure-lib.php:545
268
  msgid "Delete published pages"
269
  msgstr "Yayınlanmış sayfaları silmek"
270
 
271
- #: ../ure-lib.php:546
272
  msgid "Delete posts"
273
  msgstr "Yazıları silmek"
274
 
275
- #: ../ure-lib.php:547
276
  msgid "Delete others posts"
277
  msgstr "Başkalarının yazılarını silmek"
278
 
279
- #: ../ure-lib.php:548
280
  msgid "Delete published posts"
281
  msgstr "Yayınlanmış yazıları silmek"
282
 
283
- #: ../ure-lib.php:549
284
  msgid "Delete private posts"
285
  msgstr "Özel yazıları silmek"
286
 
287
- #: ../ure-lib.php:550
288
  msgid "Edit private posts"
289
  msgstr "Özel yazıları düzenlemek"
290
 
291
- #: ../ure-lib.php:551
292
  msgid "Read private posts"
293
  msgstr "Özel yazıları okumak"
294
 
295
- #: ../ure-lib.php:552
296
  msgid "Delete private pages"
297
  msgstr "Özel sayfaları silmek"
298
 
299
- #: ../ure-lib.php:553
300
  msgid "Edit private pages"
301
  msgstr "Özel sayfaları düzenlemek"
302
 
303
- #: ../ure-lib.php:554
304
  msgid "Read private pages"
305
  msgstr "Özel yazıları okumak"
306
 
307
- #: ../ure-lib.php:555
308
  msgid "Delete users"
309
  msgstr "Kullanıcı silmek"
310
 
311
- #: ../ure-lib.php:556
312
  msgid "Create users"
313
  msgstr "Kullanıcı oluşturmak"
314
 
315
- #: ../ure-lib.php:557
316
  msgid "Unfiltered upload"
317
  msgstr "Filtrelenmemiş dosya yüklemek"
318
 
319
- #: ../ure-lib.php:558
320
  msgid "Edit dashboard"
321
  msgstr "Paneli düzenlemek"
322
 
323
- #: ../ure-lib.php:559
324
  msgid "Update plugins"
325
  msgstr "Eklentileri güncellemek"
326
 
327
- #: ../ure-lib.php:560
328
  msgid "Delete plugins"
329
  msgstr "Eklenti silmek"
330
 
331
- #: ../ure-lib.php:561
332
  msgid "Install plugins"
333
  msgstr "Eklenti yüklemek"
334
 
335
- #: ../ure-lib.php:562
336
  msgid "Update themes"
337
  msgstr "Temaları güncellemek"
338
 
339
- #: ../ure-lib.php:563
340
  msgid "Install themes"
341
  msgstr "Tema yüklemek"
342
 
343
- #: ../ure-lib.php:564
344
  msgid "Update core"
345
  msgstr "Güncelle"
346
 
347
- #: ../ure-lib.php:565
348
  msgid "List users"
349
  msgstr "Kullanıcıları listelemek"
350
 
351
- #: ../ure-lib.php:566
352
  msgid "Remove users"
353
  msgstr "Kullanıcı silmek"
354
 
355
- #: ../ure-lib.php:567
356
  msgid "Add users"
357
  msgstr "Kullanıcıları eklemek"
358
 
359
- #: ../ure-lib.php:568
360
  msgid "Promote users"
361
  msgstr "Kullanıcı yükseltmek"
362
 
363
- #: ../ure-lib.php:569
364
  msgid "Edit theme options"
365
  msgstr "Tema ayarlarını düzenlemek"
366
 
367
- #: ../ure-lib.php:570
368
  msgid "Delete themes"
369
  msgstr "Temaları silmek"
370
 
371
- #: ../ure-lib.php:571
372
  msgid "Export"
373
  msgstr "Dışa aktarmak"
374
 
375
- #: ../ure-lib.php:654
376
  msgid "Error: Capability name must contain latin characters and digits only!"
377
  msgstr "Hata: Kabiliyet adı yalnızca latin karakterleri ve sayılardan oluşabilir."
378
 
379
- #: ../ure-lib.php:666
380
  #, php-format
381
  msgid "Capability %s is added successfully"
382
  msgstr "%s kabiliyeti başarıyla eklendi"
383
 
384
- #: ../ure-lib.php:668
385
  #, php-format
386
  msgid "Capability %s exists already"
387
  msgstr "%s kabiliyeti zaten mevcut"
388
 
389
- #: ../ure-lib.php:817
390
  #, php-format
391
  msgid "Error! You do not have permission to delete this capability: %s!"
392
  msgstr "Hata! Bu kabiliyeti değiştirmek için yetkiniz yok: %s!"
393
 
394
- #: ../ure-lib.php:839
395
  #, php-format
396
  msgid "Capability %s is removed successfully"
397
  msgstr "%s kabiliyeti başarıyla oluşturuldu"
398
 
399
- #: ../ure-lib.php:898
400
  msgid "Help"
401
  msgstr "Yardım"
402
 
403
- #: ../ure-role-edit.php:29
404
  msgid "None"
405
  msgstr "Hiçbiri"
406
 
407
- #: ../ure-role-edit.php:94
408
  msgid " Name can not be empty!"
409
  msgstr "Ad boş bırakılamaz!"
410
 
411
- #: ../ure-role-edit.php:98
412
  msgid " Name must contain latin characters and digits only!"
413
  msgstr "Ad, yalnızca latin karakterleri ve sayılardan oluşabilir!"
414
 
415
- #: ../ure-role-edit.php:103
416
- #: ../ure-role-edit.php:288
417
  msgid "Delete Role"
418
  msgstr "Rolü Sil"
419
 
420
- #: ../ure-role-edit.php:105
421
  msgid "Change Default Role"
422
  msgstr "Varsayılan Rolü Değiştir"
423
 
424
- #: ../ure-role-edit.php:107
425
  msgid "Restore Roles from backup copy. Be careful, backup was created when you started URE 1st time. All changes you made after that will be lost"
426
  msgstr "Yedek kopyasında rolleri geri al. Dikkatli olun, Kullanıcı Rol Editörü`nü ilk defa çalıştırdığınızda yedek alındı. Ondan sonra yaptığınız değişklikler yok olacak"
427
 
428
- #: ../ure-role-edit.php:109
429
  msgid "Warning! Be careful - removing critical capability could crash some plugin or other custom code"
430
  msgstr "Uyarı! Dikkatli olun - önemli kabiliyetleri kaldırmak bazı eklentileri veya başka özel kodların bozulmasına sebep olabilir"
431
 
432
- #: ../ure-role-edit.php:111
433
  msgid "Please confirm to continue"
434
  msgstr "Devam etmek için lütfen onaylayın"
435
 
436
- #: ../ure-role-edit.php:148
437
  #, php-format
438
  msgid "Role \"%s\" update: please confirm to continue"
439
  msgstr "\"%s\" rolü güncellendi: Devam etmek için lütfen onaylayın"
440
 
441
- #: ../ure-role-edit.php:156
442
  msgid "Select Role and change its capabilities list"
443
  msgstr "Rolü seçin ve rolün yetki listesini değiştirin"
444
 
445
- #: ../ure-role-edit.php:158
446
  msgid "Select Role:"
447
  msgstr "Rolü Seçin:"
448
 
449
- #: ../ure-role-edit.php:168
450
- #: ../ure-user-edit.php:91
451
  msgid "Show capabilities in human readable form"
452
  msgstr "Yetkileri insan tarafından okunabilir biçimde göster"
453
 
454
- #: ../ure-role-edit.php:177
455
- #: ../ure-user-edit.php:100
456
  msgid "Show deprecated capabilities"
457
  msgstr "Önerilmeyen yetenekleri göster"
458
 
459
- #: ../ure-role-edit.php:181
460
  msgid "If checked, then apply action to ALL sites of this Network"
461
  msgstr "Eğer seçilirse, bu ağdaki tüm siteler için uygulanır"
462
 
463
- #: ../ure-role-edit.php:191
464
  msgid "Apply to All Sites"
465
  msgstr "Tüm sitelere uygula"
466
 
467
- #: ../ure-role-edit.php:251
468
- #: ../ure-user-edit.php:163
 
 
 
 
 
 
 
 
 
 
 
 
469
  msgid "Update"
470
  msgstr "Güncelle"
471
 
472
- #: ../ure-role-edit.php:251
473
- #: ../ure-user-edit.php:163
474
  msgid "Save Changes"
475
  msgstr "Değişiklikleri Kaydet"
476
 
477
- #: ../ure-role-edit.php:252
478
- #: ../ure-user-edit.php:164
479
  msgid "Cancel"
480
  msgstr "İptal"
481
 
482
- #: ../ure-role-edit.php:252
483
- #: ../ure-user-edit.php:164
484
  msgid "Cancel not saved changes"
485
  msgstr "Kaydedilmemiş değişiklikleri iptal et"
486
 
487
- #: ../ure-role-edit.php:255
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
488
  msgid "Reset"
489
  msgstr "Geri al"
490
 
491
- #: ../ure-role-edit.php:255
492
  msgid "Restore Roles from backup copy"
493
  msgstr "Rolleri yedekten geri yükle"
494
 
495
- #: ../ure-role-edit.php:265
496
  msgid "Add New Role"
497
  msgstr "Yeni Rol Ekle"
498
 
499
- #: ../ure-role-edit.php:267
500
  msgid "Name: "
501
  msgstr "İsim:"
502
 
503
- #: ../ure-role-edit.php:271
504
  msgid "Make copy of: "
505
  msgstr "Bundan kopyala:"
506
 
507
- #: ../ure-role-edit.php:274
508
- #: ../ure-role-edit.php:303
509
  msgid "Add"
510
  msgstr "Ekle"
511
 
512
- #: ../ure-role-edit.php:274
513
  msgid "Add New User Role"
514
  msgstr "Yeni Kullanıcı Rolü Ekle"
515
 
516
- #: ../ure-role-edit.php:278
517
  msgid "Default Role for New User"
518
  msgstr "Yeni Kullanıcılar için Varsayılan Rol"
519
 
520
- #: ../ure-role-edit.php:283
521
  msgid "Change"
522
  msgstr "Değiştir"
523
 
524
- #: ../ure-role-edit.php:283
525
  msgid "Set as Default User Role"
526
  msgstr "Varsayılan Kullanıcı Rolü olarak Seç"
527
 
528
- #: ../ure-role-edit.php:293
529
  msgid "Delete"
530
  msgstr "Sil"
531
 
532
- #: ../ure-role-edit.php:293
533
  msgid "Delete User Role"
534
  msgstr "Kullanıcı Rolünü Sil"
535
 
536
- #: ../ure-role-edit.php:298
537
- #: ../ure-role-edit.php:303
538
  msgid "Add New Capability"
539
  msgstr "Yeni Kabiliyet Ekle"
540
 
541
- #: ../ure-role-edit.php:308
542
  msgid "Remove Capability"
543
  msgstr "Kabiliyeti kaldır"
544
 
545
- #: ../ure-role-edit.php:313
546
  msgid "Remove"
547
  msgstr "Kaldır"
548
 
549
- #: ../ure-role-edit.php:313
550
  msgid "Remove User Capability"
551
  msgstr "Kullanıcının kabiliyetini kaldır"
552
 
553
- #: ../ure-user-edit.php:67
554
  #, php-format
555
  msgid "User \"%s\" update: please confirm to continue"
556
  msgstr "\"%s\" güncellendi: Devam etmek için lütfen onaylayın"
557
 
558
- #: ../ure-user-edit.php:79
559
  msgid "Change capabilities for user"
560
  msgstr "Kullanıcının kabiliyetlerini değiştir: "
561
 
562
- #: ../ure-user-edit.php:82
563
  msgid "Role:"
564
  msgstr "Rol:"
565
 
566
- #: ../ure-user-edit.php:104
567
  msgid "Add capabilities to this user:"
568
  msgstr "Bu kullanıcıya kabiliyetler ekle:"
569
 
570
- #: ../ure-options.php:59
571
  msgid "User Roles are restored from the backup data. "
572
  msgstr "Rol yetkileri yedek verilerden geri yüklendi."
573
 
574
- #: ../ure-options.php:125
575
  msgid "Error: "
576
  msgstr "Hata:"
577
 
578
- #: ../ure-options.php:125
579
- #: ../ure-options.php:143
580
  msgid "Role"
581
  msgstr "Rol:"
582
 
583
- #: ../ure-options.php:125
584
  msgid "does not exist"
585
  msgstr "bulunmuyor"
586
 
587
- #: ../ure-options.php:143
588
  msgid "is updated successfully"
589
  msgstr "başarıyla güncellendi"
590
 
591
- #: ../ure-options.php:152
592
  msgid "User"
593
  msgstr "Kullanıcı"
594
 
595
- #: ../ure-options.php:152
596
  msgid "capabilities are updated successfully"
597
  msgstr "başarıyla güncellendi"
598
 
599
- #: ../ure-options.php:191
600
  msgid "About this Plugin:"
601
  msgstr "Bu eklenti hakkında:"
602
 
603
- #: ../ure-options.php:192
604
  msgid "Author's website"
605
  msgstr "Hazırlayanın websitesi"
606
 
607
- #: ../ure-options.php:193
608
  msgid "Plugin webpage"
609
  msgstr "Eklentinin websitesi"
610
 
611
- #: ../ure-options.php:195
612
  msgid "FAQ"
613
  msgstr "SSS"
614
 
615
- #: ../ure-options.php:196
616
  msgid "Greetings"
617
  msgstr ""
618
 
619
- #: ../ure-options.php:218
620
  msgid "Greetings:"
621
  msgstr "Teşekkürlerimle:"
622
 
623
- #: ../ure-options.php:219
624
  msgid "It's me, the author"
625
  msgstr "Ben, hazırlayan"
626
 
627
- #: ../ure-options.php:220
628
  msgid "For the help with Belorussian translation"
629
  msgstr "Beyaz Rusça tercümesi için"
630
 
631
- #: ../ure-options.php:221
632
  msgid "For the help with Brasilian translation"
633
  msgstr "Brasilian tercümesi için"
634
 
635
- #: ../ure-options.php:222
 
 
 
 
636
  msgid "For the help with Chinese translation"
637
  msgstr "Chinese tercümesi için"
638
 
639
- #: ../ure-options.php:223
640
  msgid "For the help with Dutch translation"
641
  msgstr "Dutch tercümesi için"
642
 
643
- #: ../ure-options.php:224
644
  msgid "For the help with Finnish translation"
645
  msgstr "Finnish tercümesi için"
646
 
647
- #: ../ure-options.php:225
648
- #: ../ure-options.php:226
649
  msgid "For the help with French translation"
650
  msgstr "Fransızca tercümesi için"
651
 
652
- #: ../ure-options.php:227
653
  msgid "For the help with German translation"
654
  msgstr "Almanca tercümesi için"
655
 
656
- #: ../ure-options.php:228
657
- #: ../ure-options.php:229
658
  msgid "For the help with Hebrew translation"
659
  msgstr ""
660
 
661
- #: ../ure-options.php:230
 
 
 
 
 
662
  msgid "For the help with Hungarian translation"
663
  msgstr "Macarca tercümesi için"
664
 
665
- #: ../ure-options.php:231
666
- #: ../ure-options.php:232
667
  msgid "For the help with Italian translation"
668
  msgstr "İtalyanca tercümesi için"
669
 
670
- #: ../ure-options.php:233
671
  msgid "For the help with Japanese translation"
672
  msgstr "Japonca tercümesi için"
673
 
674
- #: ../ure-options.php:234
675
  msgid "For the help with Lithuanian translation"
676
  msgstr ""
677
 
678
- #: ../ure-options.php:235
679
- #: ../ure-options.php:236
 
680
  msgid "For the help with Persian translation"
681
  msgstr "Farsça tercümeye yardımları için"
682
 
683
- #: ../ure-options.php:237
 
684
  msgid "For the help with Polish translation"
685
  msgstr "Lehçe tercümesi için"
686
 
687
- #: ../ure-options.php:238
688
- #: ../ure-options.php:239
689
  msgid "For the help with Spanish translation"
690
  msgstr "İspanyolca tercümesi için"
691
 
692
- #: ../ure-options.php:240
693
  msgid "For the updated Swedish translation"
694
  msgstr ""
695
 
696
- #: ../ure-options.php:241
697
  msgid "For the help with Swedish translation"
698
  msgstr "Swedish tercümesi için"
699
 
700
- #: ../ure-options.php:242
701
  msgid "For the help with Turkish translation"
702
  msgstr "Türkçe tercümeye yardımları için"
703
 
704
- #: ../ure-options.php:244
705
  msgid "For the code to hide administrator role"
706
  msgstr "Yönetici rolünü saklayan kod katkısı için"
707
 
708
- #: ../ure-options.php:245
709
  msgid "For the code enhancement suggestion"
710
  msgstr "Kod geliştirme önerisi için"
711
 
712
- #: ../ure-options.php:247
713
  msgid "Do you wish to see your name with link to your site here? You are welcome! Your help with translation and new ideas are very appreciated."
714
  msgstr "İsminizi websitenize bir link ile birlikte burada görmek ister misiniz? Bu elbette mümkün! Tercüme yardımlarınız ve yeni fikirlerinize her zaman açığım."
715
 
@@ -1107,14 +1154,6 @@ msgstr "İsminizi websitenize bir link ile birlikte burada görmek ister misiniz
1107
  #~ msgid "Role updated."
1108
  #~ msgstr "Lütfen güncelleyin!"
1109
 
1110
- #, fuzzy
1111
- #~ msgid "Custom Capabilities"
1112
- #~ msgstr "Kabiliyetler"
1113
-
1114
- #, fuzzy
1115
- #~ msgid "Role Capabilities"
1116
- #~ msgstr "Kabiliyetler"
1117
-
1118
  #, fuzzy
1119
  #~ msgid "Sorry, but you do not have permission to view this content."
1120
  #~ msgstr "Hata! Bu kabiliyeti değiştirmek için yetkiniz yok: %s!"
2
  msgstr ""
3
  "Project-Id-Version: user-role-editor\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-09-01 08:44+0700\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Vladimir Garagulya <vladimir@shinephp.com>\n"
8
  "Language-Team: \n"
30
  msgid "User Role Editor requires PHP 5.0 or newer."
31
  msgstr "User Role Editor eklentisi PHP 5.0 veya daha yüksek bir sürüme ihtiyaç duymaktadır."
32
 
33
+ #: ../user-role-editor.php:76
34
  msgid "Only"
35
  msgstr "Sadece"
36
 
37
+ #: ../user-role-editor.php:76
38
  msgid "is allowed to use"
39
  msgstr "kullanmak için yetkilidir"
40
 
41
+ #: ../user-role-editor.php:82
42
+ #: ../user-role-editor.php:251
43
  msgid "User Role Editor"
44
  msgstr "Kullanıcı Rol Editörü"
45
 
46
+ #: ../user-role-editor.php:223
47
  msgid "Settings"
48
  msgstr "Ayarlar"
49
 
50
+ #: ../user-role-editor.php:233
51
+ #: ../includes/ure-options.php:235
52
  msgid "Changelog"
53
  msgstr "Changelog"
54
 
55
+ #: ../user-role-editor.php:280
56
  msgid "Capabilities"
57
  msgstr "Kabiliyetler"
58
 
59
+ #: ../includes/ure-lib.php:34
60
  msgid "Error is occur. Please check the log file."
61
  msgstr "Bir hata oluştu. Lütfen günlük dosyasını kontrol edin."
62
 
63
+ #: ../includes/ure-lib.php:144
64
  msgid "Database operation error. Check log file."
65
  msgstr "Veritabanı operasyonu hatası. Günlük dosyasını kontrol edin."
66
 
67
+ #: ../includes/ure-lib.php:177
68
  msgid "No backup data. It is created automatically before the first role data update."
69
  msgstr "Henüz yedekleme yapılmamış. İlk yedekleme, ilk rol verisi güncellemesi öncesi otomatik olarak yapılacaktır."
70
 
71
+ #: ../includes/ure-lib.php:215
72
  msgid "Backup record is created for the current role capabilities"
73
  msgstr "Güncel rol yeterlilikleri için yedek kayıt oluşturuldu"
74
 
75
+ #: ../includes/ure-lib.php:329
76
  msgid "Error: Role name must contain latin characters and digits only!"
77
  msgstr "Hata: Rol adı yalnızca latin karakterleri ve sayılardan oluşabilir."
78
 
79
+ #: ../includes/ure-lib.php:336
80
  #, php-format
81
  msgid "Role %s exists already"
82
  msgstr "%s rolü zaten mevcut"
83
 
84
+ #: ../includes/ure-lib.php:349
85
  msgid "Error is encountered during new role create operation"
86
  msgstr "Yeni rol oluşturma işlemi sırasında hata"
87
 
88
+ #: ../includes/ure-lib.php:351
89
  #, php-format
90
  msgid "Role %s is created successfully"
91
  msgstr "%s rolü başarıyla oluşturuldu"
92
 
93
+ #: ../includes/ure-lib.php:435
94
  msgid "Error encountered during role delete operation"
95
  msgstr "Rol silme işlemi sırasında hata"
96
 
97
+ #: ../includes/ure-lib.php:437
98
  #, php-format
99
  msgid "Role %s is deleted successfully"
100
  msgstr "%s rolü başarıyla silindi"
101
 
102
+ #: ../includes/ure-lib.php:455
103
  msgid "Error encountered during default role change operation"
104
  msgstr "Varsayılan rolü değiştirme işlemi sırasında hata"
105
 
106
+ #: ../includes/ure-lib.php:461
107
  #, php-format
108
  msgid "Default role for new users is set to %s successfully"
109
  msgstr "Yeni kullanıcılar için varsayılan rol %s olarak başarıyla değiştirildi"
110
 
111
+ #: ../includes/ure-lib.php:489
112
  msgid "Editor"
113
  msgstr "Editör"
114
 
115
+ #: ../includes/ure-lib.php:490
116
  msgid "Author"
117
  msgstr "Yazar"
118
 
119
+ #: ../includes/ure-lib.php:491
120
  msgid "Contributor"
121
  msgstr "İçerik Sağlayıcı"
122
 
123
+ #: ../includes/ure-lib.php:492
124
  msgid "Subscriber"
125
  msgstr "Üye"
126
 
127
+ #: ../includes/ure-lib.php:494
128
  msgid "Switch themes"
129
  msgstr "Temaları değiştir"
130
 
131
+ #: ../includes/ure-lib.php:495
132
  msgid "Edit themes"
133
  msgstr "Temaları düzenle"
134
 
135
+ #: ../includes/ure-lib.php:496
136
  msgid "Activate plugins"
137
  msgstr "Eklentileri aktive et"
138
 
139
+ #: ../includes/ure-lib.php:497
140
  msgid "Edit plugins"
141
  msgstr "Eklentileri düzenlemek"
142
 
143
+ #: ../includes/ure-lib.php:498
144
  msgid "Edit users"
145
  msgstr "Kullanıcıları düzenlemek"
146
 
147
+ #: ../includes/ure-lib.php:499
148
  msgid "Edit files"
149
  msgstr "Dosyaları düzenlemek"
150
 
151
+ #: ../includes/ure-lib.php:500
152
  msgid "Manage options"
153
  msgstr "Seçenekleri yönetmek"
154
 
155
+ #: ../includes/ure-lib.php:501
156
  msgid "Moderate comments"
157
  msgstr "Yorumları yönetmek"
158
 
159
+ #: ../includes/ure-lib.php:502
160
  msgid "Manage categories"
161
  msgstr "Kategorileri yönetmek"
162
 
163
+ #: ../includes/ure-lib.php:503
164
  msgid "Manage links"
165
  msgstr "Linkleri yönetmek"
166
 
167
+ #: ../includes/ure-lib.php:504
168
  msgid "Upload files"
169
  msgstr "Dosya yüklemek"
170
 
171
+ #: ../includes/ure-lib.php:505
172
  msgid "Import"
173
  msgstr "İçeri aktarmak"
174
 
175
+ #: ../includes/ure-lib.php:506
176
  msgid "Unfiltered html"
177
  msgstr "Filtrelenmemiş HTML"
178
 
179
+ #: ../includes/ure-lib.php:507
180
  msgid "Edit posts"
181
  msgstr "Yazıları düzenlemek"
182
 
183
+ #: ../includes/ure-lib.php:508
184
  msgid "Edit others posts"
185
  msgstr "Başkalarının yazılarını düzenlemek"
186
 
187
+ #: ../includes/ure-lib.php:509
188
  msgid "Edit published posts"
189
  msgstr "Yayınlanmış yazıları düzenlemek"
190
 
191
+ #: ../includes/ure-lib.php:510
192
  msgid "Publish posts"
193
  msgstr "Yazıları yayınlamak"
194
 
195
+ #: ../includes/ure-lib.php:511
196
  msgid "Edit pages"
197
  msgstr "Sayfaları düzenlemek"
198
 
199
+ #: ../includes/ure-lib.php:512
200
  msgid "Read"
201
  msgstr "Okumak"
202
 
203
+ #: ../includes/ure-lib.php:513
204
  msgid "Level 10"
205
  msgstr "Seviye 10"
206
 
207
+ #: ../includes/ure-lib.php:514
208
  msgid "Level 9"
209
  msgstr "Seviye 9"
210
 
211
+ #: ../includes/ure-lib.php:515
212
  msgid "Level 8"
213
  msgstr "Seviye 8"
214
 
215
+ #: ../includes/ure-lib.php:516
216
  msgid "Level 7"
217
  msgstr "Seviye 7"
218
 
219
+ #: ../includes/ure-lib.php:517
220
  msgid "Level 6"
221
  msgstr "Seviye 6"
222
 
223
+ #: ../includes/ure-lib.php:518
224
  msgid "Level 5"
225
  msgstr "Seviye 5"
226
 
227
+ #: ../includes/ure-lib.php:519
228
  msgid "Level 4"
229
  msgstr "Seviye 4"
230
 
231
+ #: ../includes/ure-lib.php:520
232
  msgid "Level 3"
233
  msgstr "Seviye 3"
234
 
235
+ #: ../includes/ure-lib.php:521
236
  msgid "Level 2"
237
  msgstr "Seviye 2"
238
 
239
+ #: ../includes/ure-lib.php:522
240
  msgid "Level 1"
241
  msgstr "Seviye 1"
242
 
243
+ #: ../includes/ure-lib.php:523
244
  msgid "Level 0"
245
  msgstr "Seviye 0"
246
 
247
+ #: ../includes/ure-lib.php:524
248
  msgid "Edit others pages"
249
  msgstr "Başkalarının sayfalarını düzenlemek"
250
 
251
+ #: ../includes/ure-lib.php:525
252
  msgid "Edit published pages"
253
  msgstr "Yayınlanmış sayfaları düzenlemek"
254
 
255
+ #: ../includes/ure-lib.php:526
256
  msgid "Publish pages"
257
  msgstr "Sayfaları yayınlamak"
258
 
259
+ #: ../includes/ure-lib.php:527
260
  msgid "Delete pages"
261
  msgstr "Sayfaları silmek"
262
 
263
+ #: ../includes/ure-lib.php:528
264
  msgid "Delete others pages"
265
  msgstr "Başkalarının sayfalarını silmek"
266
 
267
+ #: ../includes/ure-lib.php:529
268
  msgid "Delete published pages"
269
  msgstr "Yayınlanmış sayfaları silmek"
270
 
271
+ #: ../includes/ure-lib.php:530
272
  msgid "Delete posts"
273
  msgstr "Yazıları silmek"
274
 
275
+ #: ../includes/ure-lib.php:531
276
  msgid "Delete others posts"
277
  msgstr "Başkalarının yazılarını silmek"
278
 
279
+ #: ../includes/ure-lib.php:532
280
  msgid "Delete published posts"
281
  msgstr "Yayınlanmış yazıları silmek"
282
 
283
+ #: ../includes/ure-lib.php:533
284
  msgid "Delete private posts"
285
  msgstr "Özel yazıları silmek"
286
 
287
+ #: ../includes/ure-lib.php:534
288
  msgid "Edit private posts"
289
  msgstr "Özel yazıları düzenlemek"
290
 
291
+ #: ../includes/ure-lib.php:535
292
  msgid "Read private posts"
293
  msgstr "Özel yazıları okumak"
294
 
295
+ #: ../includes/ure-lib.php:536
296
  msgid "Delete private pages"
297
  msgstr "Özel sayfaları silmek"
298
 
299
+ #: ../includes/ure-lib.php:537
300
  msgid "Edit private pages"
301
  msgstr "Özel sayfaları düzenlemek"
302
 
303
+ #: ../includes/ure-lib.php:538
304
  msgid "Read private pages"
305
  msgstr "Özel yazıları okumak"
306
 
307
+ #: ../includes/ure-lib.php:539
308
  msgid "Delete users"
309
  msgstr "Kullanıcı silmek"
310
 
311
+ #: ../includes/ure-lib.php:540
312
  msgid "Create users"
313
  msgstr "Kullanıcı oluşturmak"
314
 
315
+ #: ../includes/ure-lib.php:541
316
  msgid "Unfiltered upload"
317
  msgstr "Filtrelenmemiş dosya yüklemek"
318
 
319
+ #: ../includes/ure-lib.php:542
320
  msgid "Edit dashboard"
321
  msgstr "Paneli düzenlemek"
322
 
323
+ #: ../includes/ure-lib.php:543
324
  msgid "Update plugins"
325
  msgstr "Eklentileri güncellemek"
326
 
327
+ #: ../includes/ure-lib.php:544
328
  msgid "Delete plugins"
329
  msgstr "Eklenti silmek"
330
 
331
+ #: ../includes/ure-lib.php:545
332
  msgid "Install plugins"
333
  msgstr "Eklenti yüklemek"
334
 
335
+ #: ../includes/ure-lib.php:546
336
  msgid "Update themes"
337
  msgstr "Temaları güncellemek"
338
 
339
+ #: ../includes/ure-lib.php:547
340
  msgid "Install themes"
341
  msgstr "Tema yüklemek"
342
 
343
+ #: ../includes/ure-lib.php:548
344
  msgid "Update core"
345
  msgstr "Güncelle"
346
 
347
+ #: ../includes/ure-lib.php:549
348
  msgid "List users"
349
  msgstr "Kullanıcıları listelemek"
350
 
351
+ #: ../includes/ure-lib.php:550
352
  msgid "Remove users"
353
  msgstr "Kullanıcı silmek"
354
 
355
+ #: ../includes/ure-lib.php:551
356
  msgid "Add users"
357
  msgstr "Kullanıcıları eklemek"
358
 
359
+ #: ../includes/ure-lib.php:552
360
  msgid "Promote users"
361
  msgstr "Kullanıcı yükseltmek"
362
 
363
+ #: ../includes/ure-lib.php:553
364
  msgid "Edit theme options"
365
  msgstr "Tema ayarlarını düzenlemek"
366
 
367
+ #: ../includes/ure-lib.php:554
368
  msgid "Delete themes"
369
  msgstr "Temaları silmek"
370
 
371
+ #: ../includes/ure-lib.php:555
372
  msgid "Export"
373
  msgstr "Dışa aktarmak"
374
 
375
+ #: ../includes/ure-lib.php:639
376
  msgid "Error: Capability name must contain latin characters and digits only!"
377
  msgstr "Hata: Kabiliyet adı yalnızca latin karakterleri ve sayılardan oluşabilir."
378
 
379
+ #: ../includes/ure-lib.php:651
380
  #, php-format
381
  msgid "Capability %s is added successfully"
382
  msgstr "%s kabiliyeti başarıyla eklendi"
383
 
384
+ #: ../includes/ure-lib.php:653
385
  #, php-format
386
  msgid "Capability %s exists already"
387
  msgstr "%s kabiliyeti zaten mevcut"
388
 
389
+ #: ../includes/ure-lib.php:802
390
  #, php-format
391
  msgid "Error! You do not have permission to delete this capability: %s!"
392
  msgstr "Hata! Bu kabiliyeti değiştirmek için yetkiniz yok: %s!"
393
 
394
+ #: ../includes/ure-lib.php:824
395
  #, php-format
396
  msgid "Capability %s is removed successfully"
397
  msgstr "%s kabiliyeti başarıyla oluşturuldu"
398
 
399
+ #: ../includes/ure-lib.php:889
400
  msgid "Help"
401
  msgstr "Yardım"
402
 
403
+ #: ../includes/ure-role-edit.php:29
404
  msgid "None"
405
  msgstr "Hiçbiri"
406
 
407
+ #: ../includes/ure-role-edit.php:101
408
  msgid " Name can not be empty!"
409
  msgstr "Ad boş bırakılamaz!"
410
 
411
+ #: ../includes/ure-role-edit.php:105
412
  msgid " Name must contain latin characters and digits only!"
413
  msgstr "Ad, yalnızca latin karakterleri ve sayılardan oluşabilir!"
414
 
415
+ #: ../includes/ure-role-edit.php:110
416
+ #: ../includes/ure-role-edit.php:367
417
  msgid "Delete Role"
418
  msgstr "Rolü Sil"
419
 
420
+ #: ../includes/ure-role-edit.php:112
421
  msgid "Change Default Role"
422
  msgstr "Varsayılan Rolü Değiştir"
423
 
424
+ #: ../includes/ure-role-edit.php:114
425
  msgid "Restore Roles from backup copy. Be careful, backup was created when you started URE 1st time. All changes you made after that will be lost"
426
  msgstr "Yedek kopyasında rolleri geri al. Dikkatli olun, Kullanıcı Rol Editörü`nü ilk defa çalıştırdığınızda yedek alındı. Ondan sonra yaptığınız değişklikler yok olacak"
427
 
428
+ #: ../includes/ure-role-edit.php:116
429
  msgid "Warning! Be careful - removing critical capability could crash some plugin or other custom code"
430
  msgstr "Uyarı! Dikkatli olun - önemli kabiliyetleri kaldırmak bazı eklentileri veya başka özel kodların bozulmasına sebep olabilir"
431
 
432
+ #: ../includes/ure-role-edit.php:118
433
  msgid "Please confirm to continue"
434
  msgstr "Devam etmek için lütfen onaylayın"
435
 
436
+ #: ../includes/ure-role-edit.php:155
437
  #, php-format
438
  msgid "Role \"%s\" update: please confirm to continue"
439
  msgstr "\"%s\" rolü güncellendi: Devam etmek için lütfen onaylayın"
440
 
441
+ #: ../includes/ure-role-edit.php:163
442
  msgid "Select Role and change its capabilities list"
443
  msgstr "Rolü seçin ve rolün yetki listesini değiştirin"
444
 
445
+ #: ../includes/ure-role-edit.php:165
446
  msgid "Select Role:"
447
  msgstr "Rolü Seçin:"
448
 
449
+ #: ../includes/ure-role-edit.php:175
450
+ #: ../includes/ure-user-edit.php:91
451
  msgid "Show capabilities in human readable form"
452
  msgstr "Yetkileri insan tarafından okunabilir biçimde göster"
453
 
454
+ #: ../includes/ure-role-edit.php:184
455
+ #: ../includes/ure-user-edit.php:100
456
  msgid "Show deprecated capabilities"
457
  msgstr "Önerilmeyen yetenekleri göster"
458
 
459
+ #: ../includes/ure-role-edit.php:188
460
  msgid "If checked, then apply action to ALL sites of this Network"
461
  msgstr "Eğer seçilirse, bu ağdaki tüm siteler için uygulanır"
462
 
463
+ #: ../includes/ure-role-edit.php:198
464
  msgid "Apply to All Sites"
465
  msgstr "Tüm sitelere uygula"
466
 
467
+ #: ../includes/ure-role-edit.php:205
468
+ #: ../includes/ure-user-edit.php:105
469
+ #, fuzzy
470
+ msgid "Core capabilities:"
471
+ msgstr "WordPress Kabiliyetler:"
472
+
473
+ #: ../includes/ure-role-edit.php:268
474
+ #: ../includes/ure-user-edit.php:167
475
+ #, fuzzy
476
+ msgid "Custom capabilities:"
477
+ msgstr "Kabiliyetler:"
478
+
479
+ #: ../includes/ure-role-edit.php:319
480
+ #: ../includes/ure-user-edit.php:222
481
  msgid "Update"
482
  msgstr "Güncelle"
483
 
484
+ #: ../includes/ure-role-edit.php:319
485
+ #: ../includes/ure-user-edit.php:222
486
  msgid "Save Changes"
487
  msgstr "Değişiklikleri Kaydet"
488
 
489
+ #: ../includes/ure-role-edit.php:320
490
+ #: ../includes/ure-user-edit.php:223
491
  msgid "Cancel"
492
  msgstr "İptal"
493
 
494
+ #: ../includes/ure-role-edit.php:320
495
+ #: ../includes/ure-user-edit.php:223
496
  msgid "Cancel not saved changes"
497
  msgstr "Kaydedilmemiş değişiklikleri iptal et"
498
 
499
+ #: ../includes/ure-role-edit.php:323
500
+ msgid "Select All"
501
+ msgstr ""
502
+
503
+ #: ../includes/ure-role-edit.php:323
504
+ msgid "Select All Capabilities"
505
+ msgstr ""
506
+
507
+ #: ../includes/ure-role-edit.php:327
508
+ msgid "Unselect All"
509
+ msgstr ""
510
+
511
+ #: ../includes/ure-role-edit.php:327
512
+ msgid "Unselect All Capabilities"
513
+ msgstr ""
514
+
515
+ #: ../includes/ure-role-edit.php:328
516
+ msgid "Reverse"
517
+ msgstr ""
518
+
519
+ #: ../includes/ure-role-edit.php:328
520
+ msgid "Turn checked capabilities off and vise versa"
521
+ msgstr ""
522
+
523
+ #: ../includes/ure-role-edit.php:334
524
  msgid "Reset"
525
  msgstr "Geri al"
526
 
527
+ #: ../includes/ure-role-edit.php:334
528
  msgid "Restore Roles from backup copy"
529
  msgstr "Rolleri yedekten geri yükle"
530
 
531
+ #: ../includes/ure-role-edit.php:344
532
  msgid "Add New Role"
533
  msgstr "Yeni Rol Ekle"
534
 
535
+ #: ../includes/ure-role-edit.php:346
536
  msgid "Name: "
537
  msgstr "İsim:"
538
 
539
+ #: ../includes/ure-role-edit.php:350
540
  msgid "Make copy of: "
541
  msgstr "Bundan kopyala:"
542
 
543
+ #: ../includes/ure-role-edit.php:353
544
+ #: ../includes/ure-role-edit.php:382
545
  msgid "Add"
546
  msgstr "Ekle"
547
 
548
+ #: ../includes/ure-role-edit.php:353
549
  msgid "Add New User Role"
550
  msgstr "Yeni Kullanıcı Rolü Ekle"
551
 
552
+ #: ../includes/ure-role-edit.php:357
553
  msgid "Default Role for New User"
554
  msgstr "Yeni Kullanıcılar için Varsayılan Rol"
555
 
556
+ #: ../includes/ure-role-edit.php:362
557
  msgid "Change"
558
  msgstr "Değiştir"
559
 
560
+ #: ../includes/ure-role-edit.php:362
561
  msgid "Set as Default User Role"
562
  msgstr "Varsayılan Kullanıcı Rolü olarak Seç"
563
 
564
+ #: ../includes/ure-role-edit.php:372
565
  msgid "Delete"
566
  msgstr "Sil"
567
 
568
+ #: ../includes/ure-role-edit.php:372
569
  msgid "Delete User Role"
570
  msgstr "Kullanıcı Rolünü Sil"
571
 
572
+ #: ../includes/ure-role-edit.php:377
573
+ #: ../includes/ure-role-edit.php:382
574
  msgid "Add New Capability"
575
  msgstr "Yeni Kabiliyet Ekle"
576
 
577
+ #: ../includes/ure-role-edit.php:387
578
  msgid "Remove Capability"
579
  msgstr "Kabiliyeti kaldır"
580
 
581
+ #: ../includes/ure-role-edit.php:392
582
  msgid "Remove"
583
  msgstr "Kaldır"
584
 
585
+ #: ../includes/ure-role-edit.php:392
586
  msgid "Remove User Capability"
587
  msgstr "Kullanıcının kabiliyetini kaldır"
588
 
589
+ #: ../includes/ure-user-edit.php:67
590
  #, php-format
591
  msgid "User \"%s\" update: please confirm to continue"
592
  msgstr "\"%s\" güncellendi: Devam etmek için lütfen onaylayın"
593
 
594
+ #: ../includes/ure-user-edit.php:79
595
  msgid "Change capabilities for user"
596
  msgstr "Kullanıcının kabiliyetlerini değiştir: "
597
 
598
+ #: ../includes/ure-user-edit.php:82
599
  msgid "Role:"
600
  msgstr "Rol:"
601
 
602
+ #: ../includes/ure-user-edit.php:104
603
  msgid "Add capabilities to this user:"
604
  msgstr "Bu kullanıcıya kabiliyetler ekle:"
605
 
606
+ #: ../includes/ure-options.php:59
607
  msgid "User Roles are restored from the backup data. "
608
  msgstr "Rol yetkileri yedek verilerden geri yüklendi."
609
 
610
+ #: ../includes/ure-options.php:130
611
  msgid "Error: "
612
  msgstr "Hata:"
613
 
614
+ #: ../includes/ure-options.php:130
615
+ #: ../includes/ure-options.php:146
616
  msgid "Role"
617
  msgstr "Rol:"
618
 
619
+ #: ../includes/ure-options.php:130
620
  msgid "does not exist"
621
  msgstr "bulunmuyor"
622
 
623
+ #: ../includes/ure-options.php:146
624
  msgid "is updated successfully"
625
  msgstr "başarıyla güncellendi"
626
 
627
+ #: ../includes/ure-options.php:154
628
  msgid "User"
629
  msgstr "Kullanıcı"
630
 
631
+ #: ../includes/ure-options.php:154
632
  msgid "capabilities are updated successfully"
633
  msgstr "başarıyla güncellendi"
634
 
635
+ #: ../includes/ure-options.php:232
636
  msgid "About this Plugin:"
637
  msgstr "Bu eklenti hakkında:"
638
 
639
+ #: ../includes/ure-options.php:233
640
  msgid "Author's website"
641
  msgstr "Hazırlayanın websitesi"
642
 
643
+ #: ../includes/ure-options.php:234
644
  msgid "Plugin webpage"
645
  msgstr "Eklentinin websitesi"
646
 
647
+ #: ../includes/ure-options.php:236
648
  msgid "FAQ"
649
  msgstr "SSS"
650
 
651
+ #: ../includes/ure-options.php:237
652
  msgid "Greetings"
653
  msgstr ""
654
 
655
+ #: ../includes/ure-options.php:259
656
  msgid "Greetings:"
657
  msgstr "Teşekkürlerimle:"
658
 
659
+ #: ../includes/ure-options.php:260
660
  msgid "It's me, the author"
661
  msgstr "Ben, hazırlayan"
662
 
663
+ #: ../includes/ure-options.php:261
664
  msgid "For the help with Belorussian translation"
665
  msgstr "Beyaz Rusça tercümesi için"
666
 
667
+ #: ../includes/ure-options.php:262
668
  msgid "For the help with Brasilian translation"
669
  msgstr "Brasilian tercümesi için"
670
 
671
+ #: ../includes/ure-options.php:263
672
+ msgid "For the help with Brasilian Portuguese translation"
673
+ msgstr "Brasilian tercümesi için"
674
+
675
+ #: ../includes/ure-options.php:264
676
  msgid "For the help with Chinese translation"
677
  msgstr "Chinese tercümesi için"
678
 
679
+ #: ../includes/ure-options.php:265
680
  msgid "For the help with Dutch translation"
681
  msgstr "Dutch tercümesi için"
682
 
683
+ #: ../includes/ure-options.php:266
684
  msgid "For the help with Finnish translation"
685
  msgstr "Finnish tercümesi için"
686
 
687
+ #: ../includes/ure-options.php:267
688
+ #: ../includes/ure-options.php:268
689
  msgid "For the help with French translation"
690
  msgstr "Fransızca tercümesi için"
691
 
692
+ #: ../includes/ure-options.php:269
693
  msgid "For the help with German translation"
694
  msgstr "Almanca tercümesi için"
695
 
696
+ #: ../includes/ure-options.php:270
697
+ #: ../includes/ure-options.php:271
698
  msgid "For the help with Hebrew translation"
699
  msgstr ""
700
 
701
+ #: ../includes/ure-options.php:272
702
+ #, fuzzy
703
+ msgid "For the help with Hindi translation"
704
+ msgstr "Hindi tercümesi için"
705
+
706
+ #: ../includes/ure-options.php:273
707
  msgid "For the help with Hungarian translation"
708
  msgstr "Macarca tercümesi için"
709
 
710
+ #: ../includes/ure-options.php:274
711
+ #: ../includes/ure-options.php:275
712
  msgid "For the help with Italian translation"
713
  msgstr "İtalyanca tercümesi için"
714
 
715
+ #: ../includes/ure-options.php:276
716
  msgid "For the help with Japanese translation"
717
  msgstr "Japonca tercümesi için"
718
 
719
+ #: ../includes/ure-options.php:277
720
  msgid "For the help with Lithuanian translation"
721
  msgstr ""
722
 
723
+ #: ../includes/ure-options.php:278
724
+ #: ../includes/ure-options.php:279
725
+ #: ../includes/ure-options.php:280
726
  msgid "For the help with Persian translation"
727
  msgstr "Farsça tercümeye yardımları için"
728
 
729
+ #: ../includes/ure-options.php:281
730
+ #: ../includes/ure-options.php:282
731
  msgid "For the help with Polish translation"
732
  msgstr "Lehçe tercümesi için"
733
 
734
+ #: ../includes/ure-options.php:283
735
+ #: ../includes/ure-options.php:284
736
  msgid "For the help with Spanish translation"
737
  msgstr "İspanyolca tercümesi için"
738
 
739
+ #: ../includes/ure-options.php:285
740
  msgid "For the updated Swedish translation"
741
  msgstr ""
742
 
743
+ #: ../includes/ure-options.php:286
744
  msgid "For the help with Swedish translation"
745
  msgstr "Swedish tercümesi için"
746
 
747
+ #: ../includes/ure-options.php:287
748
  msgid "For the help with Turkish translation"
749
  msgstr "Türkçe tercümeye yardımları için"
750
 
751
+ #: ../includes/ure-options.php:289
752
  msgid "For the code to hide administrator role"
753
  msgstr "Yönetici rolünü saklayan kod katkısı için"
754
 
755
+ #: ../includes/ure-options.php:290
756
  msgid "For the code enhancement suggestion"
757
  msgstr "Kod geliştirme önerisi için"
758
 
759
+ #: ../includes/ure-options.php:292
760
  msgid "Do you wish to see your name with link to your site here? You are welcome! Your help with translation and new ideas are very appreciated."
761
  msgstr "İsminizi websitenize bir link ile birlikte burada görmek ister misiniz? Bu elbette mümkün! Tercüme yardımlarınız ve yeni fikirlerinize her zaman açığım."
762
 
1154
  #~ msgid "Role updated."
1155
  #~ msgstr "Lütfen güncelleyin!"
1156
 
 
 
 
 
 
 
 
 
1157
  #, fuzzy
1158
  #~ msgid "Sorry, but you do not have permission to view this content."
1159
  #~ msgstr "Hata! Bu kabiliyeti değiştirmek için yetkiniz yok: %s!"
lang/ure-zh_CN.mo CHANGED
Binary file
lang/ure-zh_CN.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: 2012-06-23 23:34+0700\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Vladimir Garagulya <vladimir@shinephp.com>\n"
8
  "Language-Team: 南宫小骏 <jackytsu@vip.qq.com>\n"
@@ -30,714 +30,731 @@ msgstr "请更新!"
30
  msgid "User Role Editor requires PHP 5.0 or newer."
31
  msgstr ""
32
 
33
- #: ../user-role-editor.php:65
34
  msgid "Only"
35
  msgstr ""
36
 
37
- #: ../user-role-editor.php:65
38
  msgid "is allowed to use"
39
  msgstr ""
40
 
41
- #: ../user-role-editor.php:71
42
- #: ../user-role-editor.php:246
43
  msgid "User Role Editor"
44
  msgstr "用户角色编辑器"
45
 
46
- #: ../user-role-editor.php:218
47
  msgid "Settings"
48
  msgstr "设置"
49
 
50
- #: ../user-role-editor.php:228
51
- #: ../ure-options.php:218
52
  msgid "Changelog"
53
  msgstr "修订记录"
54
 
55
- #: ../user-role-editor.php:275
56
  msgid "Capabilities"
57
  msgstr ""
58
 
59
- #: ../ure-lib.php:45
60
  msgid "Error is occur. Please check the log file."
61
  msgstr "发生了错误,请查看日志文件。"
62
 
63
- #: ../ure-lib.php:155
64
  msgid "Database operation error. Check log file."
65
  msgstr "数据库操作出错,请查看日志文件。"
66
 
67
- #: ../ure-lib.php:188
68
  msgid "No backup data. It is created automatically before the first role data update."
69
  msgstr "没有备份数据。在首个角色数据更新前将会自动创建。"
70
 
71
- #: ../ure-lib.php:226
72
  msgid "Backup record is created for the current role capabilities"
73
  msgstr "已经为当前角色的权限创建了备份记录"
74
 
75
- #: ../ure-lib.php:345
76
  msgid "Error: Role name must contain latin characters and digits only!"
77
  msgstr "错误:角色名称只能由英文字母和数字组成!"
78
 
79
- #: ../ure-lib.php:352
80
  #, php-format
81
  msgid "Role %s exists already"
82
  msgstr ""
83
 
84
- #: ../ure-lib.php:365
85
  msgid "Error is encountered during new role create operation"
86
  msgstr "创建角色操作出错"
87
 
88
- #: ../ure-lib.php:367
89
  #, php-format
90
  msgid "Role %s is created successfully"
91
  msgstr "角色 %s 创建成功"
92
 
93
- #: ../ure-lib.php:451
94
  msgid "Error encountered during role delete operation"
95
  msgstr "删除角色操作出错"
96
 
97
- #: ../ure-lib.php:453
98
  #, php-format
99
  msgid "Role %s is deleted successfully"
100
  msgstr "角色 %s 删除成功"
101
 
102
- #: ../ure-lib.php:471
103
  msgid "Error encountered during default role change operation"
104
  msgstr "更改默认角色操作出错"
105
 
106
- #: ../ure-lib.php:477
107
  #, php-format
108
  msgid "Default role for new users is set to %s successfully"
109
  msgstr "将新用户默认角色设置为 %s 成功"
110
 
111
- #: ../ure-lib.php:505
112
  msgid "Editor"
113
  msgstr "编辑"
114
 
115
- #: ../ure-lib.php:506
116
  msgid "Author"
117
  msgstr "作者"
118
 
119
- #: ../ure-lib.php:507
120
  msgid "Contributor"
121
  msgstr "投稿者"
122
 
123
- #: ../ure-lib.php:508
124
  msgid "Subscriber"
125
  msgstr "订阅者"
126
 
127
- #: ../ure-lib.php:510
128
  msgid "Switch themes"
129
  msgstr "切换主题"
130
 
131
- #: ../ure-lib.php:511
132
  msgid "Edit themes"
133
  msgstr "编辑主题"
134
 
135
- #: ../ure-lib.php:512
136
  msgid "Activate plugins"
137
  msgstr "启用插件"
138
 
139
- #: ../ure-lib.php:513
140
  msgid "Edit plugins"
141
  msgstr "编辑插件"
142
 
143
- #: ../ure-lib.php:514
144
  msgid "Edit users"
145
  msgstr "修改用户"
146
 
147
- #: ../ure-lib.php:515
148
  msgid "Edit files"
149
  msgstr "修改文件"
150
 
151
- #: ../ure-lib.php:516
152
  msgid "Manage options"
153
  msgstr "管理选项"
154
 
155
- #: ../ure-lib.php:517
156
  msgid "Moderate comments"
157
  msgstr "审核评论"
158
 
159
- #: ../ure-lib.php:518
160
  msgid "Manage categories"
161
  msgstr "管理目录"
162
 
163
- #: ../ure-lib.php:519
164
  msgid "Manage links"
165
  msgstr "管理链接"
166
 
167
- #: ../ure-lib.php:520
168
  msgid "Upload files"
169
  msgstr "上传文件"
170
 
171
- #: ../ure-lib.php:521
172
  msgid "Import"
173
  msgstr "导入"
174
 
175
- #: ../ure-lib.php:522
176
  msgid "Unfiltered html"
177
  msgstr "不过滤 HTML 标签"
178
 
179
- #: ../ure-lib.php:523
180
  msgid "Edit posts"
181
  msgstr "编辑文章"
182
 
183
- #: ../ure-lib.php:524
184
  msgid "Edit others posts"
185
  msgstr "编辑他人文章"
186
 
187
- #: ../ure-lib.php:525
188
  msgid "Edit published posts"
189
  msgstr "编辑已发布的文章"
190
 
191
- #: ../ure-lib.php:526
192
  msgid "Publish posts"
193
  msgstr "发布文章"
194
 
195
- #: ../ure-lib.php:527
196
  msgid "Edit pages"
197
  msgstr "编辑页面"
198
 
199
- #: ../ure-lib.php:528
200
  msgid "Read"
201
  msgstr "浏览"
202
 
203
- #: ../ure-lib.php:529
204
  msgid "Level 10"
205
  msgstr "级别 10"
206
 
207
- #: ../ure-lib.php:530
208
  msgid "Level 9"
209
  msgstr "级别 9"
210
 
211
- #: ../ure-lib.php:531
212
  msgid "Level 8"
213
  msgstr "级别 8"
214
 
215
- #: ../ure-lib.php:532
216
  msgid "Level 7"
217
  msgstr "级别 7"
218
 
219
- #: ../ure-lib.php:533
220
  msgid "Level 6"
221
  msgstr "级别 6"
222
 
223
- #: ../ure-lib.php:534
224
  msgid "Level 5"
225
  msgstr "级别 5"
226
 
227
- #: ../ure-lib.php:535
228
  msgid "Level 4"
229
  msgstr "级别 4"
230
 
231
- #: ../ure-lib.php:536
232
  msgid "Level 3"
233
  msgstr "级别 3"
234
 
235
- #: ../ure-lib.php:537
236
  msgid "Level 2"
237
  msgstr "级别 2"
238
 
239
- #: ../ure-lib.php:538
240
  msgid "Level 1"
241
  msgstr "级别 1"
242
 
243
- #: ../ure-lib.php:539
244
  msgid "Level 0"
245
  msgstr "级别 0"
246
 
247
- #: ../ure-lib.php:540
248
  msgid "Edit others pages"
249
  msgstr "编辑他人页面"
250
 
251
- #: ../ure-lib.php:541
252
  msgid "Edit published pages"
253
  msgstr "编辑已发布的页面"
254
 
255
- #: ../ure-lib.php:542
256
  msgid "Publish pages"
257
  msgstr "发布页面"
258
 
259
- #: ../ure-lib.php:543
260
  msgid "Delete pages"
261
  msgstr "删除页面"
262
 
263
- #: ../ure-lib.php:544
264
  msgid "Delete others pages"
265
  msgstr "删除他人的页面"
266
 
267
- #: ../ure-lib.php:545
268
  msgid "Delete published pages"
269
  msgstr "删除已发布的页面"
270
 
271
- #: ../ure-lib.php:546
272
  msgid "Delete posts"
273
  msgstr "删除文章"
274
 
275
- #: ../ure-lib.php:547
276
  msgid "Delete others posts"
277
  msgstr "删除他人的文章"
278
 
279
- #: ../ure-lib.php:548
280
  msgid "Delete published posts"
281
  msgstr "删除已发布的文章"
282
 
283
- #: ../ure-lib.php:549
284
  msgid "Delete private posts"
285
  msgstr "删除私人文章"
286
 
287
- #: ../ure-lib.php:550
288
  msgid "Edit private posts"
289
  msgstr "编辑私人文章"
290
 
291
- #: ../ure-lib.php:551
292
  msgid "Read private posts"
293
  msgstr "浏览私人文章"
294
 
295
- #: ../ure-lib.php:552
296
  msgid "Delete private pages"
297
  msgstr "删除私人页面"
298
 
299
- #: ../ure-lib.php:553
300
  msgid "Edit private pages"
301
  msgstr "编辑私人页面"
302
 
303
- #: ../ure-lib.php:554
304
  msgid "Read private pages"
305
  msgstr "浏览私人页面"
306
 
307
- #: ../ure-lib.php:555
308
  msgid "Delete users"
309
  msgstr "删除用户"
310
 
311
- #: ../ure-lib.php:556
312
  msgid "Create users"
313
  msgstr "创建用户"
314
 
315
- #: ../ure-lib.php:557
316
  msgid "Unfiltered upload"
317
  msgstr "无限制上传"
318
 
319
- #: ../ure-lib.php:558
320
  msgid "Edit dashboard"
321
  msgstr "编辑主面板"
322
 
323
- #: ../ure-lib.php:559
324
  msgid "Update plugins"
325
  msgstr "更新插件"
326
 
327
- #: ../ure-lib.php:560
328
  msgid "Delete plugins"
329
  msgstr "删除插件"
330
 
331
- #: ../ure-lib.php:561
332
  msgid "Install plugins"
333
  msgstr "安装插件"
334
 
335
- #: ../ure-lib.php:562
336
  msgid "Update themes"
337
  msgstr "更新主题"
338
 
339
- #: ../ure-lib.php:563
340
  msgid "Install themes"
341
  msgstr "安装主题"
342
 
343
- #: ../ure-lib.php:564
344
  msgid "Update core"
345
  msgstr ""
346
 
347
- #: ../ure-lib.php:565
348
  msgid "List users"
349
  msgstr ""
350
 
351
- #: ../ure-lib.php:566
352
  msgid "Remove users"
353
  msgstr ""
354
 
355
- #: ../ure-lib.php:567
356
  msgid "Add users"
357
  msgstr ""
358
 
359
- #: ../ure-lib.php:568
360
  msgid "Promote users"
361
  msgstr ""
362
 
363
- #: ../ure-lib.php:569
364
  msgid "Edit theme options"
365
  msgstr ""
366
 
367
- #: ../ure-lib.php:570
368
  msgid "Delete themes"
369
  msgstr ""
370
 
371
- #: ../ure-lib.php:571
372
  msgid "Export"
373
  msgstr ""
374
 
375
- #: ../ure-lib.php:655
376
  msgid "Error: Capability name must contain latin characters and digits only!"
377
  msgstr ""
378
 
379
- #: ../ure-lib.php:667
380
  #, php-format
381
  msgid "Capability %s is added successfully"
382
  msgstr ""
383
 
384
- #: ../ure-lib.php:669
385
  #, php-format
386
  msgid "Capability %s exists already"
387
  msgstr ""
388
 
389
- #: ../ure-lib.php:818
390
  #, php-format
391
  msgid "Error! You do not have permission to delete this capability: %s!"
392
  msgstr ""
393
 
394
- #: ../ure-lib.php:840
395
  #, php-format
396
  msgid "Capability %s is removed successfully"
397
  msgstr ""
398
 
399
- #: ../ure-lib.php:902
400
  msgid "Help"
401
  msgstr ""
402
 
403
- #: ../ure-role-edit.php:29
404
  msgid "None"
405
  msgstr ""
406
 
407
- #: ../ure-role-edit.php:93
408
  msgid " Name can not be empty!"
409
  msgstr ""
410
 
411
- #: ../ure-role-edit.php:97
412
  msgid " Name must contain latin characters and digits only!"
413
  msgstr ""
414
 
415
- #: ../ure-role-edit.php:102
416
- #: ../ure-role-edit.php:293
417
  msgid "Delete Role"
418
  msgstr "删除角色"
419
 
420
- #: ../ure-role-edit.php:104
421
  msgid "Change Default Role"
422
  msgstr "修改默认角色"
423
 
424
- #: ../ure-role-edit.php:106
425
  msgid "Restore Roles from backup copy. Be careful, backup was created when you started URE 1st time. All changes you made after that will be lost"
426
  msgstr ""
427
 
428
- #: ../ure-role-edit.php:108
429
  msgid "Warning! Be careful - removing critical capability could crash some plugin or other custom code"
430
  msgstr ""
431
 
432
- #: ../ure-role-edit.php:110
433
  msgid "Please confirm to continue"
434
  msgstr "请确认继续"
435
 
436
- #: ../ure-role-edit.php:147
437
  #, php-format
438
  msgid "Role \"%s\" update: please confirm to continue"
439
  msgstr "更新角色 \"%s\" : 请确认继续"
440
 
441
- #: ../ure-role-edit.php:155
442
  msgid "Select Role and change its capabilities list"
443
  msgstr "选择一个角色并修改它的权限"
444
 
445
- #: ../ure-role-edit.php:157
446
  msgid "Select Role:"
447
  msgstr "选择角色:"
448
 
449
- #: ../ure-role-edit.php:167
450
- #: ../ure-user-edit.php:91
451
  msgid "Show capabilities in human readable form"
452
  msgstr "以易懂的方式显示权限列表"
453
 
454
- #: ../ure-role-edit.php:176
455
- #: ../ure-user-edit.php:100
456
  msgid "Show deprecated capabilities"
457
  msgstr ""
458
 
459
- #: ../ure-role-edit.php:180
460
  msgid "If checked, then apply action to ALL sites of this Network"
461
  msgstr ""
462
 
463
- #: ../ure-role-edit.php:190
464
  msgid "Apply to All Sites"
465
  msgstr ""
466
 
467
- #: ../ure-role-edit.php:251
468
- #: ../ure-user-edit.php:163
 
 
 
 
 
 
 
 
 
 
469
  msgid "Update"
470
  msgstr "更新"
471
 
472
- #: ../ure-role-edit.php:251
473
- #: ../ure-user-edit.php:163
474
  msgid "Save Changes"
475
  msgstr "保存更改"
476
 
477
- #: ../ure-role-edit.php:252
478
- #: ../ure-user-edit.php:164
479
  msgid "Cancel"
480
  msgstr "取消"
481
 
482
- #: ../ure-role-edit.php:252
483
- #: ../ure-user-edit.php:164
484
  msgid "Cancel not saved changes"
485
  msgstr "不保存所做的更改"
486
 
487
- #: ../ure-role-edit.php:255
488
  msgid "Select All"
489
  msgstr ""
490
 
491
- #: ../ure-role-edit.php:255
492
  msgid "Select All Capabilities"
493
  msgstr ""
494
 
495
- #: ../ure-role-edit.php:256
496
  msgid "Unselect All"
497
  msgstr ""
498
 
499
- #: ../ure-role-edit.php:256
500
  msgid "Unselect All Capabilities"
501
  msgstr ""
502
 
503
- #: ../ure-role-edit.php:257
504
  msgid "Reverse"
505
  msgstr ""
506
 
507
- #: ../ure-role-edit.php:257
508
  msgid "Turn checked capabilities off and vise versa"
509
  msgstr ""
510
 
511
- #: ../ure-role-edit.php:260
512
  msgid "Reset"
513
  msgstr "重置"
514
 
515
- #: ../ure-role-edit.php:260
516
  msgid "Restore Roles from backup copy"
517
  msgstr "从备份中恢复角色"
518
 
519
- #: ../ure-role-edit.php:270
520
  msgid "Add New Role"
521
  msgstr "添加角色"
522
 
523
- #: ../ure-role-edit.php:272
524
  msgid "Name: "
525
  msgstr ""
526
 
527
- #: ../ure-role-edit.php:276
528
  msgid "Make copy of: "
529
  msgstr ""
530
 
531
- #: ../ure-role-edit.php:279
532
- #: ../ure-role-edit.php:308
533
  msgid "Add"
534
  msgstr "添加"
535
 
536
- #: ../ure-role-edit.php:279
537
  msgid "Add New User Role"
538
  msgstr "添加新的用户角色"
539
 
540
- #: ../ure-role-edit.php:283
541
  msgid "Default Role for New User"
542
  msgstr "新用户的默认角色"
543
 
544
- #: ../ure-role-edit.php:288
545
  msgid "Change"
546
  msgstr "更改"
547
 
548
- #: ../ure-role-edit.php:288
549
  msgid "Set as Default User Role"
550
  msgstr "设置为默认用户角色"
551
 
552
- #: ../ure-role-edit.php:298
553
  msgid "Delete"
554
  msgstr "删除"
555
 
556
- #: ../ure-role-edit.php:298
557
  msgid "Delete User Role"
558
  msgstr "删除用户角色"
559
 
560
- #: ../ure-role-edit.php:303
561
- #: ../ure-role-edit.php:308
562
  msgid "Add New Capability"
563
  msgstr ""
564
 
565
- #: ../ure-role-edit.php:313
566
  msgid "Remove Capability"
567
  msgstr ""
568
 
569
- #: ../ure-role-edit.php:318
570
  msgid "Remove"
571
  msgstr ""
572
 
573
- #: ../ure-role-edit.php:318
574
  msgid "Remove User Capability"
575
  msgstr ""
576
 
577
- #: ../ure-user-edit.php:67
578
  #, php-format
579
  msgid "User \"%s\" update: please confirm to continue"
580
  msgstr ""
581
 
582
- #: ../ure-user-edit.php:79
583
  msgid "Change capabilities for user"
584
  msgstr ""
585
 
586
- #: ../ure-user-edit.php:82
587
  msgid "Role:"
588
  msgstr ""
589
 
590
- #: ../ure-user-edit.php:104
591
  msgid "Add capabilities to this user:"
592
  msgstr ""
593
 
594
- #: ../ure-options.php:59
595
  msgid "User Roles are restored from the backup data. "
596
  msgstr ""
597
 
598
- #: ../ure-options.php:125
599
  msgid "Error: "
600
  msgstr ""
601
 
602
- #: ../ure-options.php:125
603
- #: ../ure-options.php:143
604
  msgid "Role"
605
  msgstr "角色"
606
 
607
- #: ../ure-options.php:125
608
  msgid "does not exist"
609
  msgstr ""
610
 
611
- #: ../ure-options.php:143
612
  msgid "is updated successfully"
613
  msgstr "更新成功"
614
 
615
- #: ../ure-options.php:152
616
  msgid "User"
617
  msgstr ""
618
 
619
- #: ../ure-options.php:152
620
  msgid "capabilities are updated successfully"
621
  msgstr ""
622
 
623
- #: ../ure-options.php:215
624
  msgid "About this Plugin:"
625
  msgstr "关于此插件:"
626
 
627
- #: ../ure-options.php:216
628
  msgid "Author's website"
629
  msgstr "作者站点"
630
 
631
- #: ../ure-options.php:217
632
  msgid "Plugin webpage"
633
  msgstr "插件站点"
634
 
635
- #: ../ure-options.php:219
636
  msgid "FAQ"
637
  msgstr "常见问答"
638
 
639
- #: ../ure-options.php:220
640
  msgid "Greetings"
641
  msgstr ""
642
 
643
- #: ../ure-options.php:242
644
  msgid "Greetings:"
645
  msgstr "鸣谢:"
646
 
647
- #: ../ure-options.php:243
648
  msgid "It's me, the author"
649
  msgstr "就是我啦,插件的作者"
650
 
651
- #: ../ure-options.php:244
652
  msgid "For the help with Belorussian translation"
653
  msgstr "白俄罗斯语版本贡献者"
654
 
655
- #: ../ure-options.php:245
656
  msgid "For the help with Brasilian translation"
657
  msgstr ""
658
 
659
- #: ../ure-options.php:246
 
 
 
 
 
660
  msgid "For the help with Chinese translation"
661
  msgstr "简体中文版本贡献者"
662
 
663
- #: ../ure-options.php:247
664
  msgid "For the help with Dutch translation"
665
  msgstr "荷兰语版本贡献者"
666
 
667
- #: ../ure-options.php:248
668
  msgid "For the help with Finnish translation"
669
  msgstr ""
670
 
671
- #: ../ure-options.php:249
672
- #: ../ure-options.php:250
673
  msgid "For the help with French translation"
674
  msgstr "法语版本贡献者"
675
 
676
- #: ../ure-options.php:251
677
  msgid "For the help with German translation"
678
  msgstr "德语版本贡献者"
679
 
680
- #: ../ure-options.php:252
681
- #: ../ure-options.php:253
682
  msgid "For the help with Hebrew translation"
683
  msgstr ""
684
 
685
- #: ../ure-options.php:254
686
  msgid "For the help with Hindi translation"
687
  msgstr ""
688
 
689
- #: ../ure-options.php:255
690
  msgid "For the help with Hungarian translation"
691
  msgstr "匈牙利语版本贡献者"
692
 
693
- #: ../ure-options.php:256
694
- #: ../ure-options.php:257
695
  msgid "For the help with Italian translation"
696
  msgstr "意大利语版本贡献者"
697
 
698
- #: ../ure-options.php:258
699
  msgid "For the help with Japanese translation"
700
  msgstr "日语版本贡献者"
701
 
702
- #: ../ure-options.php:259
703
  msgid "For the help with Lithuanian translation"
704
  msgstr ""
705
 
706
- #: ../ure-options.php:260
707
- #: ../ure-options.php:261
 
708
  msgid "For the help with Persian translation"
709
  msgstr ""
710
 
711
- #: ../ure-options.php:262
 
712
  msgid "For the help with Polish translation"
713
  msgstr "波兰语版本贡献者"
714
 
715
- #: ../ure-options.php:263
716
- #: ../ure-options.php:264
717
  msgid "For the help with Spanish translation"
718
  msgstr "西班牙语贡献者"
719
 
720
- #: ../ure-options.php:265
721
  msgid "For the updated Swedish translation"
722
  msgstr ""
723
 
724
- #: ../ure-options.php:266
725
  msgid "For the help with Swedish translation"
726
  msgstr ""
727
 
728
- #: ../ure-options.php:267
729
  msgid "For the help with Turkish translation"
730
  msgstr ""
731
 
732
- #: ../ure-options.php:269
733
  msgid "For the code to hide administrator role"
734
  msgstr "隐藏站点管理员角色功能的代码贡献者"
735
 
736
- #: ../ure-options.php:270
737
  msgid "For the code enhancement suggestion"
738
  msgstr ""
739
 
740
- #: ../ure-options.php:272
741
  msgid "Do you wish to see your name with link to your site here? You are welcome! Your help with translation and new ideas are very appreciated."
742
  msgstr "想在这儿看到你的名字和站点链接吗?非常欢迎!凡是提供语言翻译或是新点子的行为我都会非常感激。"
743
 
2
  msgstr ""
3
  "Project-Id-Version: User Role Editor 2.0\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-09-01 08:53+0700\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Vladimir Garagulya <vladimir@shinephp.com>\n"
8
  "Language-Team: 南宫小骏 <jackytsu@vip.qq.com>\n"
30
  msgid "User Role Editor requires PHP 5.0 or newer."
31
  msgstr ""
32
 
33
+ #: ../user-role-editor.php:76
34
  msgid "Only"
35
  msgstr ""
36
 
37
+ #: ../user-role-editor.php:76
38
  msgid "is allowed to use"
39
  msgstr ""
40
 
41
+ #: ../user-role-editor.php:82
42
+ #: ../user-role-editor.php:251
43
  msgid "User Role Editor"
44
  msgstr "用户角色编辑器"
45
 
46
+ #: ../user-role-editor.php:223
47
  msgid "Settings"
48
  msgstr "设置"
49
 
50
+ #: ../user-role-editor.php:233
51
+ #: ../includes/ure-options.php:235
52
  msgid "Changelog"
53
  msgstr "修订记录"
54
 
55
+ #: ../user-role-editor.php:280
56
  msgid "Capabilities"
57
  msgstr ""
58
 
59
+ #: ../includes/ure-lib.php:34
60
  msgid "Error is occur. Please check the log file."
61
  msgstr "发生了错误,请查看日志文件。"
62
 
63
+ #: ../includes/ure-lib.php:144
64
  msgid "Database operation error. Check log file."
65
  msgstr "数据库操作出错,请查看日志文件。"
66
 
67
+ #: ../includes/ure-lib.php:177
68
  msgid "No backup data. It is created automatically before the first role data update."
69
  msgstr "没有备份数据。在首个角色数据更新前将会自动创建。"
70
 
71
+ #: ../includes/ure-lib.php:215
72
  msgid "Backup record is created for the current role capabilities"
73
  msgstr "已经为当前角色的权限创建了备份记录"
74
 
75
+ #: ../includes/ure-lib.php:329
76
  msgid "Error: Role name must contain latin characters and digits only!"
77
  msgstr "错误:角色名称只能由英文字母和数字组成!"
78
 
79
+ #: ../includes/ure-lib.php:336
80
  #, php-format
81
  msgid "Role %s exists already"
82
  msgstr ""
83
 
84
+ #: ../includes/ure-lib.php:349
85
  msgid "Error is encountered during new role create operation"
86
  msgstr "创建角色操作出错"
87
 
88
+ #: ../includes/ure-lib.php:351
89
  #, php-format
90
  msgid "Role %s is created successfully"
91
  msgstr "角色 %s 创建成功"
92
 
93
+ #: ../includes/ure-lib.php:435
94
  msgid "Error encountered during role delete operation"
95
  msgstr "删除角色操作出错"
96
 
97
+ #: ../includes/ure-lib.php:437
98
  #, php-format
99
  msgid "Role %s is deleted successfully"
100
  msgstr "角色 %s 删除成功"
101
 
102
+ #: ../includes/ure-lib.php:455
103
  msgid "Error encountered during default role change operation"
104
  msgstr "更改默认角色操作出错"
105
 
106
+ #: ../includes/ure-lib.php:461
107
  #, php-format
108
  msgid "Default role for new users is set to %s successfully"
109
  msgstr "将新用户默认角色设置为 %s 成功"
110
 
111
+ #: ../includes/ure-lib.php:489
112
  msgid "Editor"
113
  msgstr "编辑"
114
 
115
+ #: ../includes/ure-lib.php:490
116
  msgid "Author"
117
  msgstr "作者"
118
 
119
+ #: ../includes/ure-lib.php:491
120
  msgid "Contributor"
121
  msgstr "投稿者"
122
 
123
+ #: ../includes/ure-lib.php:492
124
  msgid "Subscriber"
125
  msgstr "订阅者"
126
 
127
+ #: ../includes/ure-lib.php:494
128
  msgid "Switch themes"
129
  msgstr "切换主题"
130
 
131
+ #: ../includes/ure-lib.php:495
132
  msgid "Edit themes"
133
  msgstr "编辑主题"
134
 
135
+ #: ../includes/ure-lib.php:496
136
  msgid "Activate plugins"
137
  msgstr "启用插件"
138
 
139
+ #: ../includes/ure-lib.php:497
140
  msgid "Edit plugins"
141
  msgstr "编辑插件"
142
 
143
+ #: ../includes/ure-lib.php:498
144
  msgid "Edit users"
145
  msgstr "修改用户"
146
 
147
+ #: ../includes/ure-lib.php:499
148
  msgid "Edit files"
149
  msgstr "修改文件"
150
 
151
+ #: ../includes/ure-lib.php:500
152
  msgid "Manage options"
153
  msgstr "管理选项"
154
 
155
+ #: ../includes/ure-lib.php:501
156
  msgid "Moderate comments"
157
  msgstr "审核评论"
158
 
159
+ #: ../includes/ure-lib.php:502
160
  msgid "Manage categories"
161
  msgstr "管理目录"
162
 
163
+ #: ../includes/ure-lib.php:503
164
  msgid "Manage links"
165
  msgstr "管理链接"
166
 
167
+ #: ../includes/ure-lib.php:504
168
  msgid "Upload files"
169
  msgstr "上传文件"
170
 
171
+ #: ../includes/ure-lib.php:505
172
  msgid "Import"
173
  msgstr "导入"
174
 
175
+ #: ../includes/ure-lib.php:506
176
  msgid "Unfiltered html"
177
  msgstr "不过滤 HTML 标签"
178
 
179
+ #: ../includes/ure-lib.php:507
180
  msgid "Edit posts"
181
  msgstr "编辑文章"
182
 
183
+ #: ../includes/ure-lib.php:508
184
  msgid "Edit others posts"
185
  msgstr "编辑他人文章"
186
 
187
+ #: ../includes/ure-lib.php:509
188
  msgid "Edit published posts"
189
  msgstr "编辑已发布的文章"
190
 
191
+ #: ../includes/ure-lib.php:510
192
  msgid "Publish posts"
193
  msgstr "发布文章"
194
 
195
+ #: ../includes/ure-lib.php:511
196
  msgid "Edit pages"
197
  msgstr "编辑页面"
198
 
199
+ #: ../includes/ure-lib.php:512
200
  msgid "Read"
201
  msgstr "浏览"
202
 
203
+ #: ../includes/ure-lib.php:513
204
  msgid "Level 10"
205
  msgstr "级别 10"
206
 
207
+ #: ../includes/ure-lib.php:514
208
  msgid "Level 9"
209
  msgstr "级别 9"
210
 
211
+ #: ../includes/ure-lib.php:515
212
  msgid "Level 8"
213
  msgstr "级别 8"
214
 
215
+ #: ../includes/ure-lib.php:516
216
  msgid "Level 7"
217
  msgstr "级别 7"
218
 
219
+ #: ../includes/ure-lib.php:517
220
  msgid "Level 6"
221
  msgstr "级别 6"
222
 
223
+ #: ../includes/ure-lib.php:518
224
  msgid "Level 5"
225
  msgstr "级别 5"
226
 
227
+ #: ../includes/ure-lib.php:519
228
  msgid "Level 4"
229
  msgstr "级别 4"
230
 
231
+ #: ../includes/ure-lib.php:520
232
  msgid "Level 3"
233
  msgstr "级别 3"
234
 
235
+ #: ../includes/ure-lib.php:521
236
  msgid "Level 2"
237
  msgstr "级别 2"
238
 
239
+ #: ../includes/ure-lib.php:522
240
  msgid "Level 1"
241
  msgstr "级别 1"
242
 
243
+ #: ../includes/ure-lib.php:523
244
  msgid "Level 0"
245
  msgstr "级别 0"
246
 
247
+ #: ../includes/ure-lib.php:524
248
  msgid "Edit others pages"
249
  msgstr "编辑他人页面"
250
 
251
+ #: ../includes/ure-lib.php:525
252
  msgid "Edit published pages"
253
  msgstr "编辑已发布的页面"
254
 
255
+ #: ../includes/ure-lib.php:526
256
  msgid "Publish pages"
257
  msgstr "发布页面"
258
 
259
+ #: ../includes/ure-lib.php:527
260
  msgid "Delete pages"
261
  msgstr "删除页面"
262
 
263
+ #: ../includes/ure-lib.php:528
264
  msgid "Delete others pages"
265
  msgstr "删除他人的页面"
266
 
267
+ #: ../includes/ure-lib.php:529
268
  msgid "Delete published pages"
269
  msgstr "删除已发布的页面"
270
 
271
+ #: ../includes/ure-lib.php:530
272
  msgid "Delete posts"
273
  msgstr "删除文章"
274
 
275
+ #: ../includes/ure-lib.php:531
276
  msgid "Delete others posts"
277
  msgstr "删除他人的文章"
278
 
279
+ #: ../includes/ure-lib.php:532
280
  msgid "Delete published posts"
281
  msgstr "删除已发布的文章"
282
 
283
+ #: ../includes/ure-lib.php:533
284
  msgid "Delete private posts"
285
  msgstr "删除私人文章"
286
 
287
+ #: ../includes/ure-lib.php:534
288
  msgid "Edit private posts"
289
  msgstr "编辑私人文章"
290
 
291
+ #: ../includes/ure-lib.php:535
292
  msgid "Read private posts"
293
  msgstr "浏览私人文章"
294
 
295
+ #: ../includes/ure-lib.php:536
296
  msgid "Delete private pages"
297
  msgstr "删除私人页面"
298
 
299
+ #: ../includes/ure-lib.php:537
300
  msgid "Edit private pages"
301
  msgstr "编辑私人页面"
302
 
303
+ #: ../includes/ure-lib.php:538
304
  msgid "Read private pages"
305
  msgstr "浏览私人页面"
306
 
307
+ #: ../includes/ure-lib.php:539
308
  msgid "Delete users"
309
  msgstr "删除用户"
310
 
311
+ #: ../includes/ure-lib.php:540
312
  msgid "Create users"
313
  msgstr "创建用户"
314
 
315
+ #: ../includes/ure-lib.php:541
316
  msgid "Unfiltered upload"
317
  msgstr "无限制上传"
318
 
319
+ #: ../includes/ure-lib.php:542
320
  msgid "Edit dashboard"
321
  msgstr "编辑主面板"
322
 
323
+ #: ../includes/ure-lib.php:543
324
  msgid "Update plugins"
325
  msgstr "更新插件"
326
 
327
+ #: ../includes/ure-lib.php:544
328
  msgid "Delete plugins"
329
  msgstr "删除插件"
330
 
331
+ #: ../includes/ure-lib.php:545
332
  msgid "Install plugins"
333
  msgstr "安装插件"
334
 
335
+ #: ../includes/ure-lib.php:546
336
  msgid "Update themes"
337
  msgstr "更新主题"
338
 
339
+ #: ../includes/ure-lib.php:547
340
  msgid "Install themes"
341
  msgstr "安装主题"
342
 
343
+ #: ../includes/ure-lib.php:548
344
  msgid "Update core"
345
  msgstr ""
346
 
347
+ #: ../includes/ure-lib.php:549
348
  msgid "List users"
349
  msgstr ""
350
 
351
+ #: ../includes/ure-lib.php:550
352
  msgid "Remove users"
353
  msgstr ""
354
 
355
+ #: ../includes/ure-lib.php:551
356
  msgid "Add users"
357
  msgstr ""
358
 
359
+ #: ../includes/ure-lib.php:552
360
  msgid "Promote users"
361
  msgstr ""
362
 
363
+ #: ../includes/ure-lib.php:553
364
  msgid "Edit theme options"
365
  msgstr ""
366
 
367
+ #: ../includes/ure-lib.php:554
368
  msgid "Delete themes"
369
  msgstr ""
370
 
371
+ #: ../includes/ure-lib.php:555
372
  msgid "Export"
373
  msgstr ""
374
 
375
+ #: ../includes/ure-lib.php:639
376
  msgid "Error: Capability name must contain latin characters and digits only!"
377
  msgstr ""
378
 
379
+ #: ../includes/ure-lib.php:651
380
  #, php-format
381
  msgid "Capability %s is added successfully"
382
  msgstr ""
383
 
384
+ #: ../includes/ure-lib.php:653
385
  #, php-format
386
  msgid "Capability %s exists already"
387
  msgstr ""
388
 
389
+ #: ../includes/ure-lib.php:802
390
  #, php-format
391
  msgid "Error! You do not have permission to delete this capability: %s!"
392
  msgstr ""
393
 
394
+ #: ../includes/ure-lib.php:824
395
  #, php-format
396
  msgid "Capability %s is removed successfully"
397
  msgstr ""
398
 
399
+ #: ../includes/ure-lib.php:889
400
  msgid "Help"
401
  msgstr ""
402
 
403
+ #: ../includes/ure-role-edit.php:29
404
  msgid "None"
405
  msgstr ""
406
 
407
+ #: ../includes/ure-role-edit.php:101
408
  msgid " Name can not be empty!"
409
  msgstr ""
410
 
411
+ #: ../includes/ure-role-edit.php:105
412
  msgid " Name must contain latin characters and digits only!"
413
  msgstr ""
414
 
415
+ #: ../includes/ure-role-edit.php:110
416
+ #: ../includes/ure-role-edit.php:367
417
  msgid "Delete Role"
418
  msgstr "删除角色"
419
 
420
+ #: ../includes/ure-role-edit.php:112
421
  msgid "Change Default Role"
422
  msgstr "修改默认角色"
423
 
424
+ #: ../includes/ure-role-edit.php:114
425
  msgid "Restore Roles from backup copy. Be careful, backup was created when you started URE 1st time. All changes you made after that will be lost"
426
  msgstr ""
427
 
428
+ #: ../includes/ure-role-edit.php:116
429
  msgid "Warning! Be careful - removing critical capability could crash some plugin or other custom code"
430
  msgstr ""
431
 
432
+ #: ../includes/ure-role-edit.php:118
433
  msgid "Please confirm to continue"
434
  msgstr "请确认继续"
435
 
436
+ #: ../includes/ure-role-edit.php:155
437
  #, php-format
438
  msgid "Role \"%s\" update: please confirm to continue"
439
  msgstr "更新角色 \"%s\" : 请确认继续"
440
 
441
+ #: ../includes/ure-role-edit.php:163
442
  msgid "Select Role and change its capabilities list"
443
  msgstr "选择一个角色并修改它的权限"
444
 
445
+ #: ../includes/ure-role-edit.php:165
446
  msgid "Select Role:"
447
  msgstr "选择角色:"
448
 
449
+ #: ../includes/ure-role-edit.php:175
450
+ #: ../includes/ure-user-edit.php:91
451
  msgid "Show capabilities in human readable form"
452
  msgstr "以易懂的方式显示权限列表"
453
 
454
+ #: ../includes/ure-role-edit.php:184
455
+ #: ../includes/ure-user-edit.php:100
456
  msgid "Show deprecated capabilities"
457
  msgstr ""
458
 
459
+ #: ../includes/ure-role-edit.php:188
460
  msgid "If checked, then apply action to ALL sites of this Network"
461
  msgstr ""
462
 
463
+ #: ../includes/ure-role-edit.php:198
464
  msgid "Apply to All Sites"
465
  msgstr ""
466
 
467
+ #: ../includes/ure-role-edit.php:205
468
+ #: ../includes/ure-user-edit.php:105
469
+ msgid "Core capabilities:"
470
+ msgstr ""
471
+
472
+ #: ../includes/ure-role-edit.php:268
473
+ #: ../includes/ure-user-edit.php:167
474
+ msgid "Custom capabilities:"
475
+ msgstr ""
476
+
477
+ #: ../includes/ure-role-edit.php:319
478
+ #: ../includes/ure-user-edit.php:222
479
  msgid "Update"
480
  msgstr "更新"
481
 
482
+ #: ../includes/ure-role-edit.php:319
483
+ #: ../includes/ure-user-edit.php:222
484
  msgid "Save Changes"
485
  msgstr "保存更改"
486
 
487
+ #: ../includes/ure-role-edit.php:320
488
+ #: ../includes/ure-user-edit.php:223
489
  msgid "Cancel"
490
  msgstr "取消"
491
 
492
+ #: ../includes/ure-role-edit.php:320
493
+ #: ../includes/ure-user-edit.php:223
494
  msgid "Cancel not saved changes"
495
  msgstr "不保存所做的更改"
496
 
497
+ #: ../includes/ure-role-edit.php:323
498
  msgid "Select All"
499
  msgstr ""
500
 
501
+ #: ../includes/ure-role-edit.php:323
502
  msgid "Select All Capabilities"
503
  msgstr ""
504
 
505
+ #: ../includes/ure-role-edit.php:327
506
  msgid "Unselect All"
507
  msgstr ""
508
 
509
+ #: ../includes/ure-role-edit.php:327
510
  msgid "Unselect All Capabilities"
511
  msgstr ""
512
 
513
+ #: ../includes/ure-role-edit.php:328
514
  msgid "Reverse"
515
  msgstr ""
516
 
517
+ #: ../includes/ure-role-edit.php:328
518
  msgid "Turn checked capabilities off and vise versa"
519
  msgstr ""
520
 
521
+ #: ../includes/ure-role-edit.php:334
522
  msgid "Reset"
523
  msgstr "重置"
524
 
525
+ #: ../includes/ure-role-edit.php:334
526
  msgid "Restore Roles from backup copy"
527
  msgstr "从备份中恢复角色"
528
 
529
+ #: ../includes/ure-role-edit.php:344
530
  msgid "Add New Role"
531
  msgstr "添加角色"
532
 
533
+ #: ../includes/ure-role-edit.php:346
534
  msgid "Name: "
535
  msgstr ""
536
 
537
+ #: ../includes/ure-role-edit.php:350
538
  msgid "Make copy of: "
539
  msgstr ""
540
 
541
+ #: ../includes/ure-role-edit.php:353
542
+ #: ../includes/ure-role-edit.php:382
543
  msgid "Add"
544
  msgstr "添加"
545
 
546
+ #: ../includes/ure-role-edit.php:353
547
  msgid "Add New User Role"
548
  msgstr "添加新的用户角色"
549
 
550
+ #: ../includes/ure-role-edit.php:357
551
  msgid "Default Role for New User"
552
  msgstr "新用户的默认角色"
553
 
554
+ #: ../includes/ure-role-edit.php:362
555
  msgid "Change"
556
  msgstr "更改"
557
 
558
+ #: ../includes/ure-role-edit.php:362
559
  msgid "Set as Default User Role"
560
  msgstr "设置为默认用户角色"
561
 
562
+ #: ../includes/ure-role-edit.php:372
563
  msgid "Delete"
564
  msgstr "删除"
565
 
566
+ #: ../includes/ure-role-edit.php:372
567
  msgid "Delete User Role"
568
  msgstr "删除用户角色"
569
 
570
+ #: ../includes/ure-role-edit.php:377
571
+ #: ../includes/ure-role-edit.php:382
572
  msgid "Add New Capability"
573
  msgstr ""
574
 
575
+ #: ../includes/ure-role-edit.php:387
576
  msgid "Remove Capability"
577
  msgstr ""
578
 
579
+ #: ../includes/ure-role-edit.php:392
580
  msgid "Remove"
581
  msgstr ""
582
 
583
+ #: ../includes/ure-role-edit.php:392
584
  msgid "Remove User Capability"
585
  msgstr ""
586
 
587
+ #: ../includes/ure-user-edit.php:67
588
  #, php-format
589
  msgid "User \"%s\" update: please confirm to continue"
590
  msgstr ""
591
 
592
+ #: ../includes/ure-user-edit.php:79
593
  msgid "Change capabilities for user"
594
  msgstr ""
595
 
596
+ #: ../includes/ure-user-edit.php:82
597
  msgid "Role:"
598
  msgstr ""
599
 
600
+ #: ../includes/ure-user-edit.php:104
601
  msgid "Add capabilities to this user:"
602
  msgstr ""
603
 
604
+ #: ../includes/ure-options.php:59
605
  msgid "User Roles are restored from the backup data. "
606
  msgstr ""
607
 
608
+ #: ../includes/ure-options.php:130
609
  msgid "Error: "
610
  msgstr ""
611
 
612
+ #: ../includes/ure-options.php:130
613
+ #: ../includes/ure-options.php:146
614
  msgid "Role"
615
  msgstr "角色"
616
 
617
+ #: ../includes/ure-options.php:130
618
  msgid "does not exist"
619
  msgstr ""
620
 
621
+ #: ../includes/ure-options.php:146
622
  msgid "is updated successfully"
623
  msgstr "更新成功"
624
 
625
+ #: ../includes/ure-options.php:154
626
  msgid "User"
627
  msgstr ""
628
 
629
+ #: ../includes/ure-options.php:154
630
  msgid "capabilities are updated successfully"
631
  msgstr ""
632
 
633
+ #: ../includes/ure-options.php:232
634
  msgid "About this Plugin:"
635
  msgstr "关于此插件:"
636
 
637
+ #: ../includes/ure-options.php:233
638
  msgid "Author's website"
639
  msgstr "作者站点"
640
 
641
+ #: ../includes/ure-options.php:234
642
  msgid "Plugin webpage"
643
  msgstr "插件站点"
644
 
645
+ #: ../includes/ure-options.php:236
646
  msgid "FAQ"
647
  msgstr "常见问答"
648
 
649
+ #: ../includes/ure-options.php:237
650
  msgid "Greetings"
651
  msgstr ""
652
 
653
+ #: ../includes/ure-options.php:259
654
  msgid "Greetings:"
655
  msgstr "鸣谢:"
656
 
657
+ #: ../includes/ure-options.php:260
658
  msgid "It's me, the author"
659
  msgstr "就是我啦,插件的作者"
660
 
661
+ #: ../includes/ure-options.php:261
662
  msgid "For the help with Belorussian translation"
663
  msgstr "白俄罗斯语版本贡献者"
664
 
665
+ #: ../includes/ure-options.php:262
666
  msgid "For the help with Brasilian translation"
667
  msgstr ""
668
 
669
+ #: ../includes/ure-options.php:263
670
+ #, fuzzy
671
+ msgid "For the help with Brasilian Portuguese translation"
672
+ msgstr "日语版本贡献者"
673
+
674
+ #: ../includes/ure-options.php:264
675
  msgid "For the help with Chinese translation"
676
  msgstr "简体中文版本贡献者"
677
 
678
+ #: ../includes/ure-options.php:265
679
  msgid "For the help with Dutch translation"
680
  msgstr "荷兰语版本贡献者"
681
 
682
+ #: ../includes/ure-options.php:266
683
  msgid "For the help with Finnish translation"
684
  msgstr ""
685
 
686
+ #: ../includes/ure-options.php:267
687
+ #: ../includes/ure-options.php:268
688
  msgid "For the help with French translation"
689
  msgstr "法语版本贡献者"
690
 
691
+ #: ../includes/ure-options.php:269
692
  msgid "For the help with German translation"
693
  msgstr "德语版本贡献者"
694
 
695
+ #: ../includes/ure-options.php:270
696
+ #: ../includes/ure-options.php:271
697
  msgid "For the help with Hebrew translation"
698
  msgstr ""
699
 
700
+ #: ../includes/ure-options.php:272
701
  msgid "For the help with Hindi translation"
702
  msgstr ""
703
 
704
+ #: ../includes/ure-options.php:273
705
  msgid "For the help with Hungarian translation"
706
  msgstr "匈牙利语版本贡献者"
707
 
708
+ #: ../includes/ure-options.php:274
709
+ #: ../includes/ure-options.php:275
710
  msgid "For the help with Italian translation"
711
  msgstr "意大利语版本贡献者"
712
 
713
+ #: ../includes/ure-options.php:276
714
  msgid "For the help with Japanese translation"
715
  msgstr "日语版本贡献者"
716
 
717
+ #: ../includes/ure-options.php:277
718
  msgid "For the help with Lithuanian translation"
719
  msgstr ""
720
 
721
+ #: ../includes/ure-options.php:278
722
+ #: ../includes/ure-options.php:279
723
+ #: ../includes/ure-options.php:280
724
  msgid "For the help with Persian translation"
725
  msgstr ""
726
 
727
+ #: ../includes/ure-options.php:281
728
+ #: ../includes/ure-options.php:282
729
  msgid "For the help with Polish translation"
730
  msgstr "波兰语版本贡献者"
731
 
732
+ #: ../includes/ure-options.php:283
733
+ #: ../includes/ure-options.php:284
734
  msgid "For the help with Spanish translation"
735
  msgstr "西班牙语贡献者"
736
 
737
+ #: ../includes/ure-options.php:285
738
  msgid "For the updated Swedish translation"
739
  msgstr ""
740
 
741
+ #: ../includes/ure-options.php:286
742
  msgid "For the help with Swedish translation"
743
  msgstr ""
744
 
745
+ #: ../includes/ure-options.php:287
746
  msgid "For the help with Turkish translation"
747
  msgstr ""
748
 
749
+ #: ../includes/ure-options.php:289
750
  msgid "For the code to hide administrator role"
751
  msgstr "隐藏站点管理员角色功能的代码贡献者"
752
 
753
+ #: ../includes/ure-options.php:290
754
  msgid "For the code enhancement suggestion"
755
  msgstr ""
756
 
757
+ #: ../includes/ure-options.php:292
758
  msgid "Do you wish to see your name with link to your site here? You are welcome! Your help with translation and new ideas are very appreciated."
759
  msgstr "想在这儿看到你的名字和站点链接吗?非常欢迎!凡是提供语言翻译或是新点子的行为我都会非常感激。"
760
 
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: 2012-06-23 23:09+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"
@@ -30,714 +30,730 @@ msgstr ""
30
  msgid "User Role Editor requires PHP 5.0 or newer."
31
  msgstr ""
32
 
33
- #: ../user-role-editor.php:65
34
  msgid "Only"
35
  msgstr ""
36
 
37
- #: ../user-role-editor.php:65
38
  msgid "is allowed to use"
39
  msgstr ""
40
 
41
- #: ../user-role-editor.php:71
42
- #: ../user-role-editor.php:246
43
  msgid "User Role Editor"
44
  msgstr ""
45
 
46
- #: ../user-role-editor.php:218
47
  msgid "Settings"
48
  msgstr ""
49
 
50
- #: ../user-role-editor.php:228
51
- #: ../ure-options.php:218
52
  msgid "Changelog"
53
  msgstr ""
54
 
55
- #: ../user-role-editor.php:275
56
  msgid "Capabilities"
57
  msgstr ""
58
 
59
- #: ../ure-lib.php:45
60
  msgid "Error is occur. Please check the log file."
61
  msgstr ""
62
 
63
- #: ../ure-lib.php:155
64
  msgid "Database operation error. Check log file."
65
  msgstr ""
66
 
67
- #: ../ure-lib.php:188
68
  msgid "No backup data. It is created automatically before the first role data update."
69
  msgstr ""
70
 
71
- #: ../ure-lib.php:226
72
  msgid "Backup record is created for the current role capabilities"
73
  msgstr ""
74
 
75
- #: ../ure-lib.php:345
76
  msgid "Error: Role name must contain latin characters and digits only!"
77
  msgstr ""
78
 
79
- #: ../ure-lib.php:352
80
  #, php-format
81
  msgid "Role %s exists already"
82
  msgstr ""
83
 
84
- #: ../ure-lib.php:365
85
  msgid "Error is encountered during new role create operation"
86
  msgstr ""
87
 
88
- #: ../ure-lib.php:367
89
  #, php-format
90
  msgid "Role %s is created successfully"
91
  msgstr ""
92
 
93
- #: ../ure-lib.php:451
94
  msgid "Error encountered during role delete operation"
95
  msgstr ""
96
 
97
- #: ../ure-lib.php:453
98
  #, php-format
99
  msgid "Role %s is deleted successfully"
100
  msgstr ""
101
 
102
- #: ../ure-lib.php:471
103
  msgid "Error encountered during default role change operation"
104
  msgstr ""
105
 
106
- #: ../ure-lib.php:477
107
  #, php-format
108
  msgid "Default role for new users is set to %s successfully"
109
  msgstr ""
110
 
111
- #: ../ure-lib.php:505
112
  msgid "Editor"
113
  msgstr ""
114
 
115
- #: ../ure-lib.php:506
116
  msgid "Author"
117
  msgstr ""
118
 
119
- #: ../ure-lib.php:507
120
  msgid "Contributor"
121
  msgstr ""
122
 
123
- #: ../ure-lib.php:508
124
  msgid "Subscriber"
125
  msgstr ""
126
 
127
- #: ../ure-lib.php:510
128
  msgid "Switch themes"
129
  msgstr ""
130
 
131
- #: ../ure-lib.php:511
132
  msgid "Edit themes"
133
  msgstr ""
134
 
135
- #: ../ure-lib.php:512
136
  msgid "Activate plugins"
137
  msgstr ""
138
 
139
- #: ../ure-lib.php:513
140
  msgid "Edit plugins"
141
  msgstr ""
142
 
143
- #: ../ure-lib.php:514
144
  msgid "Edit users"
145
  msgstr ""
146
 
147
- #: ../ure-lib.php:515
148
  msgid "Edit files"
149
  msgstr ""
150
 
151
- #: ../ure-lib.php:516
152
  msgid "Manage options"
153
  msgstr ""
154
 
155
- #: ../ure-lib.php:517
156
  msgid "Moderate comments"
157
  msgstr ""
158
 
159
- #: ../ure-lib.php:518
160
  msgid "Manage categories"
161
  msgstr ""
162
 
163
- #: ../ure-lib.php:519
164
  msgid "Manage links"
165
  msgstr ""
166
 
167
- #: ../ure-lib.php:520
168
  msgid "Upload files"
169
  msgstr ""
170
 
171
- #: ../ure-lib.php:521
172
  msgid "Import"
173
  msgstr ""
174
 
175
- #: ../ure-lib.php:522
176
  msgid "Unfiltered html"
177
  msgstr ""
178
 
179
- #: ../ure-lib.php:523
180
  msgid "Edit posts"
181
  msgstr ""
182
 
183
- #: ../ure-lib.php:524
184
  msgid "Edit others posts"
185
  msgstr ""
186
 
187
- #: ../ure-lib.php:525
188
  msgid "Edit published posts"
189
  msgstr ""
190
 
191
- #: ../ure-lib.php:526
192
  msgid "Publish posts"
193
  msgstr ""
194
 
195
- #: ../ure-lib.php:527
196
  msgid "Edit pages"
197
  msgstr ""
198
 
199
- #: ../ure-lib.php:528
200
  msgid "Read"
201
  msgstr ""
202
 
203
- #: ../ure-lib.php:529
204
  msgid "Level 10"
205
  msgstr ""
206
 
207
- #: ../ure-lib.php:530
208
  msgid "Level 9"
209
  msgstr ""
210
 
211
- #: ../ure-lib.php:531
212
  msgid "Level 8"
213
  msgstr ""
214
 
215
- #: ../ure-lib.php:532
216
  msgid "Level 7"
217
  msgstr ""
218
 
219
- #: ../ure-lib.php:533
220
  msgid "Level 6"
221
  msgstr ""
222
 
223
- #: ../ure-lib.php:534
224
  msgid "Level 5"
225
  msgstr ""
226
 
227
- #: ../ure-lib.php:535
228
  msgid "Level 4"
229
  msgstr ""
230
 
231
- #: ../ure-lib.php:536
232
  msgid "Level 3"
233
  msgstr ""
234
 
235
- #: ../ure-lib.php:537
236
  msgid "Level 2"
237
  msgstr ""
238
 
239
- #: ../ure-lib.php:538
240
  msgid "Level 1"
241
  msgstr ""
242
 
243
- #: ../ure-lib.php:539
244
  msgid "Level 0"
245
  msgstr ""
246
 
247
- #: ../ure-lib.php:540
248
  msgid "Edit others pages"
249
  msgstr ""
250
 
251
- #: ../ure-lib.php:541
252
  msgid "Edit published pages"
253
  msgstr ""
254
 
255
- #: ../ure-lib.php:542
256
  msgid "Publish pages"
257
  msgstr ""
258
 
259
- #: ../ure-lib.php:543
260
  msgid "Delete pages"
261
  msgstr ""
262
 
263
- #: ../ure-lib.php:544
264
  msgid "Delete others pages"
265
  msgstr ""
266
 
267
- #: ../ure-lib.php:545
268
  msgid "Delete published pages"
269
  msgstr ""
270
 
271
- #: ../ure-lib.php:546
272
  msgid "Delete posts"
273
  msgstr ""
274
 
275
- #: ../ure-lib.php:547
276
  msgid "Delete others posts"
277
  msgstr ""
278
 
279
- #: ../ure-lib.php:548
280
  msgid "Delete published posts"
281
  msgstr ""
282
 
283
- #: ../ure-lib.php:549
284
  msgid "Delete private posts"
285
  msgstr ""
286
 
287
- #: ../ure-lib.php:550
288
  msgid "Edit private posts"
289
  msgstr ""
290
 
291
- #: ../ure-lib.php:551
292
  msgid "Read private posts"
293
  msgstr ""
294
 
295
- #: ../ure-lib.php:552
296
  msgid "Delete private pages"
297
  msgstr ""
298
 
299
- #: ../ure-lib.php:553
300
  msgid "Edit private pages"
301
  msgstr ""
302
 
303
- #: ../ure-lib.php:554
304
  msgid "Read private pages"
305
  msgstr ""
306
 
307
- #: ../ure-lib.php:555
308
  msgid "Delete users"
309
  msgstr ""
310
 
311
- #: ../ure-lib.php:556
312
  msgid "Create users"
313
  msgstr ""
314
 
315
- #: ../ure-lib.php:557
316
  msgid "Unfiltered upload"
317
  msgstr ""
318
 
319
- #: ../ure-lib.php:558
320
  msgid "Edit dashboard"
321
  msgstr ""
322
 
323
- #: ../ure-lib.php:559
324
  msgid "Update plugins"
325
  msgstr ""
326
 
327
- #: ../ure-lib.php:560
328
  msgid "Delete plugins"
329
  msgstr ""
330
 
331
- #: ../ure-lib.php:561
332
  msgid "Install plugins"
333
  msgstr ""
334
 
335
- #: ../ure-lib.php:562
336
  msgid "Update themes"
337
  msgstr ""
338
 
339
- #: ../ure-lib.php:563
340
  msgid "Install themes"
341
  msgstr ""
342
 
343
- #: ../ure-lib.php:564
344
  msgid "Update core"
345
  msgstr ""
346
 
347
- #: ../ure-lib.php:565
348
  msgid "List users"
349
  msgstr ""
350
 
351
- #: ../ure-lib.php:566
352
  msgid "Remove users"
353
  msgstr ""
354
 
355
- #: ../ure-lib.php:567
356
  msgid "Add users"
357
  msgstr ""
358
 
359
- #: ../ure-lib.php:568
360
  msgid "Promote users"
361
  msgstr ""
362
 
363
- #: ../ure-lib.php:569
364
  msgid "Edit theme options"
365
  msgstr ""
366
 
367
- #: ../ure-lib.php:570
368
  msgid "Delete themes"
369
  msgstr ""
370
 
371
- #: ../ure-lib.php:571
372
  msgid "Export"
373
  msgstr ""
374
 
375
- #: ../ure-lib.php:655
376
  msgid "Error: Capability name must contain latin characters and digits only!"
377
  msgstr ""
378
 
379
- #: ../ure-lib.php:667
380
  #, php-format
381
  msgid "Capability %s is added successfully"
382
  msgstr ""
383
 
384
- #: ../ure-lib.php:669
385
  #, php-format
386
  msgid "Capability %s exists already"
387
  msgstr ""
388
 
389
- #: ../ure-lib.php:818
390
  #, php-format
391
  msgid "Error! You do not have permission to delete this capability: %s!"
392
  msgstr ""
393
 
394
- #: ../ure-lib.php:840
395
  #, php-format
396
  msgid "Capability %s is removed successfully"
397
  msgstr ""
398
 
399
- #: ../ure-lib.php:902
400
  msgid "Help"
401
  msgstr ""
402
 
403
- #: ../ure-role-edit.php:29
404
  msgid "None"
405
  msgstr ""
406
 
407
- #: ../ure-role-edit.php:93
408
  msgid " Name can not be empty!"
409
  msgstr ""
410
 
411
- #: ../ure-role-edit.php:97
412
  msgid " Name must contain latin characters and digits only!"
413
  msgstr ""
414
 
415
- #: ../ure-role-edit.php:102
416
- #: ../ure-role-edit.php:293
417
  msgid "Delete Role"
418
  msgstr ""
419
 
420
- #: ../ure-role-edit.php:104
421
  msgid "Change Default Role"
422
  msgstr ""
423
 
424
- #: ../ure-role-edit.php:106
425
  msgid "Restore Roles from backup copy. Be careful, backup was created when you started URE 1st time. All changes you made after that will be lost"
426
  msgstr ""
427
 
428
- #: ../ure-role-edit.php:108
429
  msgid "Warning! Be careful - removing critical capability could crash some plugin or other custom code"
430
  msgstr ""
431
 
432
- #: ../ure-role-edit.php:110
433
  msgid "Please confirm to continue"
434
  msgstr ""
435
 
436
- #: ../ure-role-edit.php:147
437
  #, php-format
438
  msgid "Role \"%s\" update: please confirm to continue"
439
  msgstr ""
440
 
441
- #: ../ure-role-edit.php:155
442
  msgid "Select Role and change its capabilities list"
443
  msgstr ""
444
 
445
- #: ../ure-role-edit.php:157
446
  msgid "Select Role:"
447
  msgstr ""
448
 
449
- #: ../ure-role-edit.php:167
450
- #: ../ure-user-edit.php:91
451
  msgid "Show capabilities in human readable form"
452
  msgstr ""
453
 
454
- #: ../ure-role-edit.php:176
455
- #: ../ure-user-edit.php:100
456
  msgid "Show deprecated capabilities"
457
  msgstr ""
458
 
459
- #: ../ure-role-edit.php:180
460
  msgid "If checked, then apply action to ALL sites of this Network"
461
  msgstr ""
462
 
463
- #: ../ure-role-edit.php:190
464
  msgid "Apply to All Sites"
465
  msgstr ""
466
 
467
- #: ../ure-role-edit.php:251
468
- #: ../ure-user-edit.php:163
 
 
 
 
 
 
 
 
 
 
469
  msgid "Update"
470
  msgstr ""
471
 
472
- #: ../ure-role-edit.php:251
473
- #: ../ure-user-edit.php:163
474
  msgid "Save Changes"
475
  msgstr ""
476
 
477
- #: ../ure-role-edit.php:252
478
- #: ../ure-user-edit.php:164
479
  msgid "Cancel"
480
  msgstr ""
481
 
482
- #: ../ure-role-edit.php:252
483
- #: ../ure-user-edit.php:164
484
  msgid "Cancel not saved changes"
485
  msgstr ""
486
 
487
- #: ../ure-role-edit.php:255
488
  msgid "Select All"
489
  msgstr ""
490
 
491
- #: ../ure-role-edit.php:255
492
  msgid "Select All Capabilities"
493
  msgstr ""
494
 
495
- #: ../ure-role-edit.php:256
496
  msgid "Unselect All"
497
  msgstr ""
498
 
499
- #: ../ure-role-edit.php:256
500
  msgid "Unselect All Capabilities"
501
  msgstr ""
502
 
503
- #: ../ure-role-edit.php:257
504
  msgid "Reverse"
505
  msgstr ""
506
 
507
- #: ../ure-role-edit.php:257
508
  msgid "Turn checked capabilities off and vise versa"
509
  msgstr ""
510
 
511
- #: ../ure-role-edit.php:260
512
  msgid "Reset"
513
  msgstr ""
514
 
515
- #: ../ure-role-edit.php:260
516
  msgid "Restore Roles from backup copy"
517
  msgstr ""
518
 
519
- #: ../ure-role-edit.php:270
520
  msgid "Add New Role"
521
  msgstr ""
522
 
523
- #: ../ure-role-edit.php:272
524
  msgid "Name: "
525
  msgstr ""
526
 
527
- #: ../ure-role-edit.php:276
528
  msgid "Make copy of: "
529
  msgstr ""
530
 
531
- #: ../ure-role-edit.php:279
532
- #: ../ure-role-edit.php:308
533
  msgid "Add"
534
  msgstr ""
535
 
536
- #: ../ure-role-edit.php:279
537
  msgid "Add New User Role"
538
  msgstr ""
539
 
540
- #: ../ure-role-edit.php:283
541
  msgid "Default Role for New User"
542
  msgstr ""
543
 
544
- #: ../ure-role-edit.php:288
545
  msgid "Change"
546
  msgstr ""
547
 
548
- #: ../ure-role-edit.php:288
549
  msgid "Set as Default User Role"
550
  msgstr ""
551
 
552
- #: ../ure-role-edit.php:298
553
  msgid "Delete"
554
  msgstr ""
555
 
556
- #: ../ure-role-edit.php:298
557
  msgid "Delete User Role"
558
  msgstr ""
559
 
560
- #: ../ure-role-edit.php:303
561
- #: ../ure-role-edit.php:308
562
  msgid "Add New Capability"
563
  msgstr ""
564
 
565
- #: ../ure-role-edit.php:313
566
  msgid "Remove Capability"
567
  msgstr ""
568
 
569
- #: ../ure-role-edit.php:318
570
  msgid "Remove"
571
  msgstr ""
572
 
573
- #: ../ure-role-edit.php:318
574
  msgid "Remove User Capability"
575
  msgstr ""
576
 
577
- #: ../ure-user-edit.php:67
578
  #, php-format
579
  msgid "User \"%s\" update: please confirm to continue"
580
  msgstr ""
581
 
582
- #: ../ure-user-edit.php:79
583
  msgid "Change capabilities for user"
584
  msgstr ""
585
 
586
- #: ../ure-user-edit.php:82
587
  msgid "Role:"
588
  msgstr ""
589
 
590
- #: ../ure-user-edit.php:104
591
  msgid "Add capabilities to this user:"
592
  msgstr ""
593
 
594
- #: ../ure-options.php:59
595
  msgid "User Roles are restored from the backup data. "
596
  msgstr ""
597
 
598
- #: ../ure-options.php:125
599
  msgid "Error: "
600
  msgstr ""
601
 
602
- #: ../ure-options.php:125
603
- #: ../ure-options.php:143
604
  msgid "Role"
605
  msgstr ""
606
 
607
- #: ../ure-options.php:125
608
  msgid "does not exist"
609
  msgstr ""
610
 
611
- #: ../ure-options.php:143
612
  msgid "is updated successfully"
613
  msgstr ""
614
 
615
- #: ../ure-options.php:152
616
  msgid "User"
617
  msgstr ""
618
 
619
- #: ../ure-options.php:152
620
  msgid "capabilities are updated successfully"
621
  msgstr ""
622
 
623
- #: ../ure-options.php:215
624
  msgid "About this Plugin:"
625
  msgstr ""
626
 
627
- #: ../ure-options.php:216
628
  msgid "Author's website"
629
  msgstr ""
630
 
631
- #: ../ure-options.php:217
632
  msgid "Plugin webpage"
633
  msgstr ""
634
 
635
- #: ../ure-options.php:219
636
  msgid "FAQ"
637
  msgstr ""
638
 
639
- #: ../ure-options.php:220
640
  msgid "Greetings"
641
  msgstr ""
642
 
643
- #: ../ure-options.php:242
644
  msgid "Greetings:"
645
  msgstr ""
646
 
647
- #: ../ure-options.php:243
648
  msgid "It's me, the author"
649
  msgstr ""
650
 
651
- #: ../ure-options.php:244
652
  msgid "For the help with Belorussian translation"
653
  msgstr ""
654
 
655
- #: ../ure-options.php:245
656
  msgid "For the help with Brasilian translation"
657
  msgstr ""
658
 
659
- #: ../ure-options.php:246
 
 
 
 
660
  msgid "For the help with Chinese translation"
661
  msgstr ""
662
 
663
- #: ../ure-options.php:247
664
  msgid "For the help with Dutch translation"
665
  msgstr ""
666
 
667
- #: ../ure-options.php:248
668
  msgid "For the help with Finnish translation"
669
  msgstr ""
670
 
671
- #: ../ure-options.php:249
672
- #: ../ure-options.php:250
673
  msgid "For the help with French translation"
674
  msgstr ""
675
 
676
- #: ../ure-options.php:251
677
  msgid "For the help with German translation"
678
  msgstr ""
679
 
680
- #: ../ure-options.php:252
681
- #: ../ure-options.php:253
682
  msgid "For the help with Hebrew translation"
683
  msgstr ""
684
 
685
- #: ../ure-options.php:254
686
  msgid "For the help with Hindi translation"
687
  msgstr ""
688
 
689
- #: ../ure-options.php:255
690
  msgid "For the help with Hungarian translation"
691
  msgstr ""
692
 
693
- #: ../ure-options.php:256
694
- #: ../ure-options.php:257
695
  msgid "For the help with Italian translation"
696
  msgstr ""
697
 
698
- #: ../ure-options.php:258
699
  msgid "For the help with Japanese translation"
700
  msgstr ""
701
 
702
- #: ../ure-options.php:259
703
  msgid "For the help with Lithuanian translation"
704
  msgstr ""
705
 
706
- #: ../ure-options.php:260
707
- #: ../ure-options.php:261
 
708
  msgid "For the help with Persian translation"
709
  msgstr ""
710
 
711
- #: ../ure-options.php:262
 
712
  msgid "For the help with Polish translation"
713
  msgstr ""
714
 
715
- #: ../ure-options.php:263
716
- #: ../ure-options.php:264
717
  msgid "For the help with Spanish translation"
718
  msgstr ""
719
 
720
- #: ../ure-options.php:265
721
  msgid "For the updated Swedish translation"
722
  msgstr ""
723
 
724
- #: ../ure-options.php:266
725
  msgid "For the help with Swedish translation"
726
  msgstr ""
727
 
728
- #: ../ure-options.php:267
729
  msgid "For the help with Turkish translation"
730
  msgstr ""
731
 
732
- #: ../ure-options.php:269
733
  msgid "For the code to hide administrator role"
734
  msgstr ""
735
 
736
- #: ../ure-options.php:270
737
  msgid "For the code enhancement suggestion"
738
  msgstr ""
739
 
740
- #: ../ure-options.php:272
741
  msgid "Do you wish to see your name with link to your site here? You are welcome! Your help with translation and new ideas are very appreciated."
742
  msgstr ""
743
 
2
  msgstr ""
3
  "Project-Id-Version: User Role Editor 2.0\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-09-01 08:44+0700\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Vladimir Garagulya <vladimir@shinephp.com>\n"
8
  "Language-Team: ShinePHP.com <vladimir@shinephp.com>\n"
30
  msgid "User Role Editor requires PHP 5.0 or newer."
31
  msgstr ""
32
 
33
+ #: ../user-role-editor.php:76
34
  msgid "Only"
35
  msgstr ""
36
 
37
+ #: ../user-role-editor.php:76
38
  msgid "is allowed to use"
39
  msgstr ""
40
 
41
+ #: ../user-role-editor.php:82
42
+ #: ../user-role-editor.php:251
43
  msgid "User Role Editor"
44
  msgstr ""
45
 
46
+ #: ../user-role-editor.php:223
47
  msgid "Settings"
48
  msgstr ""
49
 
50
+ #: ../user-role-editor.php:233
51
+ #: ../includes/ure-options.php:235
52
  msgid "Changelog"
53
  msgstr ""
54
 
55
+ #: ../user-role-editor.php:280
56
  msgid "Capabilities"
57
  msgstr ""
58
 
59
+ #: ../includes/ure-lib.php:34
60
  msgid "Error is occur. Please check the log file."
61
  msgstr ""
62
 
63
+ #: ../includes/ure-lib.php:144
64
  msgid "Database operation error. Check log file."
65
  msgstr ""
66
 
67
+ #: ../includes/ure-lib.php:177
68
  msgid "No backup data. It is created automatically before the first role data update."
69
  msgstr ""
70
 
71
+ #: ../includes/ure-lib.php:215
72
  msgid "Backup record is created for the current role capabilities"
73
  msgstr ""
74
 
75
+ #: ../includes/ure-lib.php:329
76
  msgid "Error: Role name must contain latin characters and digits only!"
77
  msgstr ""
78
 
79
+ #: ../includes/ure-lib.php:336
80
  #, php-format
81
  msgid "Role %s exists already"
82
  msgstr ""
83
 
84
+ #: ../includes/ure-lib.php:349
85
  msgid "Error is encountered during new role create operation"
86
  msgstr ""
87
 
88
+ #: ../includes/ure-lib.php:351
89
  #, php-format
90
  msgid "Role %s is created successfully"
91
  msgstr ""
92
 
93
+ #: ../includes/ure-lib.php:435
94
  msgid "Error encountered during role delete operation"
95
  msgstr ""
96
 
97
+ #: ../includes/ure-lib.php:437
98
  #, php-format
99
  msgid "Role %s is deleted successfully"
100
  msgstr ""
101
 
102
+ #: ../includes/ure-lib.php:455
103
  msgid "Error encountered during default role change operation"
104
  msgstr ""
105
 
106
+ #: ../includes/ure-lib.php:461
107
  #, php-format
108
  msgid "Default role for new users is set to %s successfully"
109
  msgstr ""
110
 
111
+ #: ../includes/ure-lib.php:489
112
  msgid "Editor"
113
  msgstr ""
114
 
115
+ #: ../includes/ure-lib.php:490
116
  msgid "Author"
117
  msgstr ""
118
 
119
+ #: ../includes/ure-lib.php:491
120
  msgid "Contributor"
121
  msgstr ""
122
 
123
+ #: ../includes/ure-lib.php:492
124
  msgid "Subscriber"
125
  msgstr ""
126
 
127
+ #: ../includes/ure-lib.php:494
128
  msgid "Switch themes"
129
  msgstr ""
130
 
131
+ #: ../includes/ure-lib.php:495
132
  msgid "Edit themes"
133
  msgstr ""
134
 
135
+ #: ../includes/ure-lib.php:496
136
  msgid "Activate plugins"
137
  msgstr ""
138
 
139
+ #: ../includes/ure-lib.php:497
140
  msgid "Edit plugins"
141
  msgstr ""
142
 
143
+ #: ../includes/ure-lib.php:498
144
  msgid "Edit users"
145
  msgstr ""
146
 
147
+ #: ../includes/ure-lib.php:499
148
  msgid "Edit files"
149
  msgstr ""
150
 
151
+ #: ../includes/ure-lib.php:500
152
  msgid "Manage options"
153
  msgstr ""
154
 
155
+ #: ../includes/ure-lib.php:501
156
  msgid "Moderate comments"
157
  msgstr ""
158
 
159
+ #: ../includes/ure-lib.php:502
160
  msgid "Manage categories"
161
  msgstr ""
162
 
163
+ #: ../includes/ure-lib.php:503
164
  msgid "Manage links"
165
  msgstr ""
166
 
167
+ #: ../includes/ure-lib.php:504
168
  msgid "Upload files"
169
  msgstr ""
170
 
171
+ #: ../includes/ure-lib.php:505
172
  msgid "Import"
173
  msgstr ""
174
 
175
+ #: ../includes/ure-lib.php:506
176
  msgid "Unfiltered html"
177
  msgstr ""
178
 
179
+ #: ../includes/ure-lib.php:507
180
  msgid "Edit posts"
181
  msgstr ""
182
 
183
+ #: ../includes/ure-lib.php:508
184
  msgid "Edit others posts"
185
  msgstr ""
186
 
187
+ #: ../includes/ure-lib.php:509
188
  msgid "Edit published posts"
189
  msgstr ""
190
 
191
+ #: ../includes/ure-lib.php:510
192
  msgid "Publish posts"
193
  msgstr ""
194
 
195
+ #: ../includes/ure-lib.php:511
196
  msgid "Edit pages"
197
  msgstr ""
198
 
199
+ #: ../includes/ure-lib.php:512
200
  msgid "Read"
201
  msgstr ""
202
 
203
+ #: ../includes/ure-lib.php:513
204
  msgid "Level 10"
205
  msgstr ""
206
 
207
+ #: ../includes/ure-lib.php:514
208
  msgid "Level 9"
209
  msgstr ""
210
 
211
+ #: ../includes/ure-lib.php:515
212
  msgid "Level 8"
213
  msgstr ""
214
 
215
+ #: ../includes/ure-lib.php:516
216
  msgid "Level 7"
217
  msgstr ""
218
 
219
+ #: ../includes/ure-lib.php:517
220
  msgid "Level 6"
221
  msgstr ""
222
 
223
+ #: ../includes/ure-lib.php:518
224
  msgid "Level 5"
225
  msgstr ""
226
 
227
+ #: ../includes/ure-lib.php:519
228
  msgid "Level 4"
229
  msgstr ""
230
 
231
+ #: ../includes/ure-lib.php:520
232
  msgid "Level 3"
233
  msgstr ""
234
 
235
+ #: ../includes/ure-lib.php:521
236
  msgid "Level 2"
237
  msgstr ""
238
 
239
+ #: ../includes/ure-lib.php:522
240
  msgid "Level 1"
241
  msgstr ""
242
 
243
+ #: ../includes/ure-lib.php:523
244
  msgid "Level 0"
245
  msgstr ""
246
 
247
+ #: ../includes/ure-lib.php:524
248
  msgid "Edit others pages"
249
  msgstr ""
250
 
251
+ #: ../includes/ure-lib.php:525
252
  msgid "Edit published pages"
253
  msgstr ""
254
 
255
+ #: ../includes/ure-lib.php:526
256
  msgid "Publish pages"
257
  msgstr ""
258
 
259
+ #: ../includes/ure-lib.php:527
260
  msgid "Delete pages"
261
  msgstr ""
262
 
263
+ #: ../includes/ure-lib.php:528
264
  msgid "Delete others pages"
265
  msgstr ""
266
 
267
+ #: ../includes/ure-lib.php:529
268
  msgid "Delete published pages"
269
  msgstr ""
270
 
271
+ #: ../includes/ure-lib.php:530
272
  msgid "Delete posts"
273
  msgstr ""
274
 
275
+ #: ../includes/ure-lib.php:531
276
  msgid "Delete others posts"
277
  msgstr ""
278
 
279
+ #: ../includes/ure-lib.php:532
280
  msgid "Delete published posts"
281
  msgstr ""
282
 
283
+ #: ../includes/ure-lib.php:533
284
  msgid "Delete private posts"
285
  msgstr ""
286
 
287
+ #: ../includes/ure-lib.php:534
288
  msgid "Edit private posts"
289
  msgstr ""
290
 
291
+ #: ../includes/ure-lib.php:535
292
  msgid "Read private posts"
293
  msgstr ""
294
 
295
+ #: ../includes/ure-lib.php:536
296
  msgid "Delete private pages"
297
  msgstr ""
298
 
299
+ #: ../includes/ure-lib.php:537
300
  msgid "Edit private pages"
301
  msgstr ""
302
 
303
+ #: ../includes/ure-lib.php:538
304
  msgid "Read private pages"
305
  msgstr ""
306
 
307
+ #: ../includes/ure-lib.php:539
308
  msgid "Delete users"
309
  msgstr ""
310
 
311
+ #: ../includes/ure-lib.php:540
312
  msgid "Create users"
313
  msgstr ""
314
 
315
+ #: ../includes/ure-lib.php:541
316
  msgid "Unfiltered upload"
317
  msgstr ""
318
 
319
+ #: ../includes/ure-lib.php:542
320
  msgid "Edit dashboard"
321
  msgstr ""
322
 
323
+ #: ../includes/ure-lib.php:543
324
  msgid "Update plugins"
325
  msgstr ""
326
 
327
+ #: ../includes/ure-lib.php:544
328
  msgid "Delete plugins"
329
  msgstr ""
330
 
331
+ #: ../includes/ure-lib.php:545
332
  msgid "Install plugins"
333
  msgstr ""
334
 
335
+ #: ../includes/ure-lib.php:546
336
  msgid "Update themes"
337
  msgstr ""
338
 
339
+ #: ../includes/ure-lib.php:547
340
  msgid "Install themes"
341
  msgstr ""
342
 
343
+ #: ../includes/ure-lib.php:548
344
  msgid "Update core"
345
  msgstr ""
346
 
347
+ #: ../includes/ure-lib.php:549
348
  msgid "List users"
349
  msgstr ""
350
 
351
+ #: ../includes/ure-lib.php:550
352
  msgid "Remove users"
353
  msgstr ""
354
 
355
+ #: ../includes/ure-lib.php:551
356
  msgid "Add users"
357
  msgstr ""
358
 
359
+ #: ../includes/ure-lib.php:552
360
  msgid "Promote users"
361
  msgstr ""
362
 
363
+ #: ../includes/ure-lib.php:553
364
  msgid "Edit theme options"
365
  msgstr ""
366
 
367
+ #: ../includes/ure-lib.php:554
368
  msgid "Delete themes"
369
  msgstr ""
370
 
371
+ #: ../includes/ure-lib.php:555
372
  msgid "Export"
373
  msgstr ""
374
 
375
+ #: ../includes/ure-lib.php:639
376
  msgid "Error: Capability name must contain latin characters and digits only!"
377
  msgstr ""
378
 
379
+ #: ../includes/ure-lib.php:651
380
  #, php-format
381
  msgid "Capability %s is added successfully"
382
  msgstr ""
383
 
384
+ #: ../includes/ure-lib.php:653
385
  #, php-format
386
  msgid "Capability %s exists already"
387
  msgstr ""
388
 
389
+ #: ../includes/ure-lib.php:802
390
  #, php-format
391
  msgid "Error! You do not have permission to delete this capability: %s!"
392
  msgstr ""
393
 
394
+ #: ../includes/ure-lib.php:824
395
  #, php-format
396
  msgid "Capability %s is removed successfully"
397
  msgstr ""
398
 
399
+ #: ../includes/ure-lib.php:889
400
  msgid "Help"
401
  msgstr ""
402
 
403
+ #: ../includes/ure-role-edit.php:29
404
  msgid "None"
405
  msgstr ""
406
 
407
+ #: ../includes/ure-role-edit.php:101
408
  msgid " Name can not be empty!"
409
  msgstr ""
410
 
411
+ #: ../includes/ure-role-edit.php:105
412
  msgid " Name must contain latin characters and digits only!"
413
  msgstr ""
414
 
415
+ #: ../includes/ure-role-edit.php:110
416
+ #: ../includes/ure-role-edit.php:367
417
  msgid "Delete Role"
418
  msgstr ""
419
 
420
+ #: ../includes/ure-role-edit.php:112
421
  msgid "Change Default Role"
422
  msgstr ""
423
 
424
+ #: ../includes/ure-role-edit.php:114
425
  msgid "Restore Roles from backup copy. Be careful, backup was created when you started URE 1st time. All changes you made after that will be lost"
426
  msgstr ""
427
 
428
+ #: ../includes/ure-role-edit.php:116
429
  msgid "Warning! Be careful - removing critical capability could crash some plugin or other custom code"
430
  msgstr ""
431
 
432
+ #: ../includes/ure-role-edit.php:118
433
  msgid "Please confirm to continue"
434
  msgstr ""
435
 
436
+ #: ../includes/ure-role-edit.php:155
437
  #, php-format
438
  msgid "Role \"%s\" update: please confirm to continue"
439
  msgstr ""
440
 
441
+ #: ../includes/ure-role-edit.php:163
442
  msgid "Select Role and change its capabilities list"
443
  msgstr ""
444
 
445
+ #: ../includes/ure-role-edit.php:165
446
  msgid "Select Role:"
447
  msgstr ""
448
 
449
+ #: ../includes/ure-role-edit.php:175
450
+ #: ../includes/ure-user-edit.php:91
451
  msgid "Show capabilities in human readable form"
452
  msgstr ""
453
 
454
+ #: ../includes/ure-role-edit.php:184
455
+ #: ../includes/ure-user-edit.php:100
456
  msgid "Show deprecated capabilities"
457
  msgstr ""
458
 
459
+ #: ../includes/ure-role-edit.php:188
460
  msgid "If checked, then apply action to ALL sites of this Network"
461
  msgstr ""
462
 
463
+ #: ../includes/ure-role-edit.php:198
464
  msgid "Apply to All Sites"
465
  msgstr ""
466
 
467
+ #: ../includes/ure-role-edit.php:205
468
+ #: ../includes/ure-user-edit.php:105
469
+ msgid "Core capabilities:"
470
+ msgstr ""
471
+
472
+ #: ../includes/ure-role-edit.php:268
473
+ #: ../includes/ure-user-edit.php:167
474
+ msgid "Custom capabilities:"
475
+ msgstr ""
476
+
477
+ #: ../includes/ure-role-edit.php:319
478
+ #: ../includes/ure-user-edit.php:222
479
  msgid "Update"
480
  msgstr ""
481
 
482
+ #: ../includes/ure-role-edit.php:319
483
+ #: ../includes/ure-user-edit.php:222
484
  msgid "Save Changes"
485
  msgstr ""
486
 
487
+ #: ../includes/ure-role-edit.php:320
488
+ #: ../includes/ure-user-edit.php:223
489
  msgid "Cancel"
490
  msgstr ""
491
 
492
+ #: ../includes/ure-role-edit.php:320
493
+ #: ../includes/ure-user-edit.php:223
494
  msgid "Cancel not saved changes"
495
  msgstr ""
496
 
497
+ #: ../includes/ure-role-edit.php:323
498
  msgid "Select All"
499
  msgstr ""
500
 
501
+ #: ../includes/ure-role-edit.php:323
502
  msgid "Select All Capabilities"
503
  msgstr ""
504
 
505
+ #: ../includes/ure-role-edit.php:327
506
  msgid "Unselect All"
507
  msgstr ""
508
 
509
+ #: ../includes/ure-role-edit.php:327
510
  msgid "Unselect All Capabilities"
511
  msgstr ""
512
 
513
+ #: ../includes/ure-role-edit.php:328
514
  msgid "Reverse"
515
  msgstr ""
516
 
517
+ #: ../includes/ure-role-edit.php:328
518
  msgid "Turn checked capabilities off and vise versa"
519
  msgstr ""
520
 
521
+ #: ../includes/ure-role-edit.php:334
522
  msgid "Reset"
523
  msgstr ""
524
 
525
+ #: ../includes/ure-role-edit.php:334
526
  msgid "Restore Roles from backup copy"
527
  msgstr ""
528
 
529
+ #: ../includes/ure-role-edit.php:344
530
  msgid "Add New Role"
531
  msgstr ""
532
 
533
+ #: ../includes/ure-role-edit.php:346
534
  msgid "Name: "
535
  msgstr ""
536
 
537
+ #: ../includes/ure-role-edit.php:350
538
  msgid "Make copy of: "
539
  msgstr ""
540
 
541
+ #: ../includes/ure-role-edit.php:353
542
+ #: ../includes/ure-role-edit.php:382
543
  msgid "Add"
544
  msgstr ""
545
 
546
+ #: ../includes/ure-role-edit.php:353
547
  msgid "Add New User Role"
548
  msgstr ""
549
 
550
+ #: ../includes/ure-role-edit.php:357
551
  msgid "Default Role for New User"
552
  msgstr ""
553
 
554
+ #: ../includes/ure-role-edit.php:362
555
  msgid "Change"
556
  msgstr ""
557
 
558
+ #: ../includes/ure-role-edit.php:362
559
  msgid "Set as Default User Role"
560
  msgstr ""
561
 
562
+ #: ../includes/ure-role-edit.php:372
563
  msgid "Delete"
564
  msgstr ""
565
 
566
+ #: ../includes/ure-role-edit.php:372
567
  msgid "Delete User Role"
568
  msgstr ""
569
 
570
+ #: ../includes/ure-role-edit.php:377
571
+ #: ../includes/ure-role-edit.php:382
572
  msgid "Add New Capability"
573
  msgstr ""
574
 
575
+ #: ../includes/ure-role-edit.php:387
576
  msgid "Remove Capability"
577
  msgstr ""
578
 
579
+ #: ../includes/ure-role-edit.php:392
580
  msgid "Remove"
581
  msgstr ""
582
 
583
+ #: ../includes/ure-role-edit.php:392
584
  msgid "Remove User Capability"
585
  msgstr ""
586
 
587
+ #: ../includes/ure-user-edit.php:67
588
  #, php-format
589
  msgid "User \"%s\" update: please confirm to continue"
590
  msgstr ""
591
 
592
+ #: ../includes/ure-user-edit.php:79
593
  msgid "Change capabilities for user"
594
  msgstr ""
595
 
596
+ #: ../includes/ure-user-edit.php:82
597
  msgid "Role:"
598
  msgstr ""
599
 
600
+ #: ../includes/ure-user-edit.php:104
601
  msgid "Add capabilities to this user:"
602
  msgstr ""
603
 
604
+ #: ../includes/ure-options.php:59
605
  msgid "User Roles are restored from the backup data. "
606
  msgstr ""
607
 
608
+ #: ../includes/ure-options.php:130
609
  msgid "Error: "
610
  msgstr ""
611
 
612
+ #: ../includes/ure-options.php:130
613
+ #: ../includes/ure-options.php:146
614
  msgid "Role"
615
  msgstr ""
616
 
617
+ #: ../includes/ure-options.php:130
618
  msgid "does not exist"
619
  msgstr ""
620
 
621
+ #: ../includes/ure-options.php:146
622
  msgid "is updated successfully"
623
  msgstr ""
624
 
625
+ #: ../includes/ure-options.php:154
626
  msgid "User"
627
  msgstr ""
628
 
629
+ #: ../includes/ure-options.php:154
630
  msgid "capabilities are updated successfully"
631
  msgstr ""
632
 
633
+ #: ../includes/ure-options.php:232
634
  msgid "About this Plugin:"
635
  msgstr ""
636
 
637
+ #: ../includes/ure-options.php:233
638
  msgid "Author's website"
639
  msgstr ""
640
 
641
+ #: ../includes/ure-options.php:234
642
  msgid "Plugin webpage"
643
  msgstr ""
644
 
645
+ #: ../includes/ure-options.php:236
646
  msgid "FAQ"
647
  msgstr ""
648
 
649
+ #: ../includes/ure-options.php:237
650
  msgid "Greetings"
651
  msgstr ""
652
 
653
+ #: ../includes/ure-options.php:259
654
  msgid "Greetings:"
655
  msgstr ""
656
 
657
+ #: ../includes/ure-options.php:260
658
  msgid "It's me, the author"
659
  msgstr ""
660
 
661
+ #: ../includes/ure-options.php:261
662
  msgid "For the help with Belorussian translation"
663
  msgstr ""
664
 
665
+ #: ../includes/ure-options.php:262
666
  msgid "For the help with Brasilian translation"
667
  msgstr ""
668
 
669
+ #: ../includes/ure-options.php:263
670
+ msgid "For the help with Brasilian Portuguese translation"
671
+ msgstr ""
672
+
673
+ #: ../includes/ure-options.php:264
674
  msgid "For the help with Chinese translation"
675
  msgstr ""
676
 
677
+ #: ../includes/ure-options.php:265
678
  msgid "For the help with Dutch translation"
679
  msgstr ""
680
 
681
+ #: ../includes/ure-options.php:266
682
  msgid "For the help with Finnish translation"
683
  msgstr ""
684
 
685
+ #: ../includes/ure-options.php:267
686
+ #: ../includes/ure-options.php:268
687
  msgid "For the help with French translation"
688
  msgstr ""
689
 
690
+ #: ../includes/ure-options.php:269
691
  msgid "For the help with German translation"
692
  msgstr ""
693
 
694
+ #: ../includes/ure-options.php:270
695
+ #: ../includes/ure-options.php:271
696
  msgid "For the help with Hebrew translation"
697
  msgstr ""
698
 
699
+ #: ../includes/ure-options.php:272
700
  msgid "For the help with Hindi translation"
701
  msgstr ""
702
 
703
+ #: ../includes/ure-options.php:273
704
  msgid "For the help with Hungarian translation"
705
  msgstr ""
706
 
707
+ #: ../includes/ure-options.php:274
708
+ #: ../includes/ure-options.php:275
709
  msgid "For the help with Italian translation"
710
  msgstr ""
711
 
712
+ #: ../includes/ure-options.php:276
713
  msgid "For the help with Japanese translation"
714
  msgstr ""
715
 
716
+ #: ../includes/ure-options.php:277
717
  msgid "For the help with Lithuanian translation"
718
  msgstr ""
719
 
720
+ #: ../includes/ure-options.php:278
721
+ #: ../includes/ure-options.php:279
722
+ #: ../includes/ure-options.php:280
723
  msgid "For the help with Persian translation"
724
  msgstr ""
725
 
726
+ #: ../includes/ure-options.php:281
727
+ #: ../includes/ure-options.php:282
728
  msgid "For the help with Polish translation"
729
  msgstr ""
730
 
731
+ #: ../includes/ure-options.php:283
732
+ #: ../includes/ure-options.php:284
733
  msgid "For the help with Spanish translation"
734
  msgstr ""
735
 
736
+ #: ../includes/ure-options.php:285
737
  msgid "For the updated Swedish translation"
738
  msgstr ""
739
 
740
+ #: ../includes/ure-options.php:286
741
  msgid "For the help with Swedish translation"
742
  msgstr ""
743
 
744
+ #: ../includes/ure-options.php:287
745
  msgid "For the help with Turkish translation"
746
  msgstr ""
747
 
748
+ #: ../includes/ure-options.php:289
749
  msgid "For the code to hide administrator role"
750
  msgstr ""
751
 
752
+ #: ../includes/ure-options.php:290
753
  msgid "For the code enhancement suggestion"
754
  msgstr ""
755
 
756
+ #: ../includes/ure-options.php:292
757
  msgid "Do you wish to see your name with link to your site here? You are welcome! Your help with translation and new ideas are very appreciated."
758
  msgstr ""
759
 
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.0
6
- Tested up to: 3.4.1
7
  Stable tag: trunk
8
 
9
  User Role Editor WordPress plugin makes the role capabilities changing easy. You can change any standard WordPress user role (except administrator).
@@ -54,6 +54,7 @@ To read more about 'User Role Editor' visit [this page](http://www.shinephp.com/
54
  * [FullThrottle](http://fullthrottledevelopment.com/how-to-hide-the-adminstrator-on-the-wordpress-users-screen) - For the code to hide administrator role at admin backend.
55
 
56
  = Translations =
 
57
  * Dutch: [Frank Groeneveld](http://ivaldi.nl), [Rémi Bruggeman](http://www.remisan.be)
58
  * French: [Presse et Multimedia](http://presse-et-multimedia.fr/blog), [Whiler](http://blogs.wittwer.fr/whiler)
59
  * German: [Peter](http://www.becker-heidmann.de)
@@ -72,7 +73,6 @@ To read more about 'User Role Editor' visit [this page](http://www.shinephp.com/
72
  * Finnish: [Lauri Merisaari](http://www.viidakkorumpu.fi)
73
  * Japanese: Kaz, [Technolog.jp](http://technolog.jp)
74
  * Belorussian: [Marsis G.](http://pc.de) - needs update
75
- * Brasilian Portuguese: [Rafael Galdencio](http://www.arquiteturailustrada.com.br) - needs update
76
  * Chinese: [Yackytsu](http://www.jackytsu.com) - needs update
77
  * Hungarian: [István](http://www.blacksnail.hu) - needs update
78
 
@@ -84,12 +84,22 @@ Share with me new ideas about plugin further development and link to your site w
84
 
85
 
86
  == Changelog ==
 
 
 
 
 
 
 
 
 
 
 
87
  = 3.7.5 =
88
  * 29.07.2012
89
  * Polish translation is updated. Thanks to Bartosz.
90
  * "User Role Editor" menu item could be shown in translated form now. Do not lose it - it is on the same place at the "Users" submenu.
91
 
92
-
93
  = 3.7.4 =
94
  * 26.07.2012
95
  * Persian translation is updated. Thanks to Amir Khalilnejad.
@@ -113,62 +123,8 @@ Share with me new ideas about plugin further development and link to your site w
113
  * Old versions used 'edit_users' capability to check if show/hide 'User Role Editor' menu item under 'Users' menu. Starting from version 3.7 'administrator' role is checked. Existed inconsistency, when non-admin user with 'edit_users' capability saws 'User Role Editor' menu, but got 'Only Administrator is allowed to use User Role Editor' error message, was removed.
114
  * Bug fix: if you work with WordPress admin via https, URE will use https instead of http, as it made in older versions.
115
 
116
- = 3.6.2 =
117
- * 23.05.2012
118
- * Hindi translation is added. Thanks to Love Chandel.
119
-
120
- = 3.6.1 =
121
- * 07.05.2012
122
- * Italian translation is updated. Thanks to Tristano Ajmone.
123
-
124
- = 3.6 =
125
- * 30.04.2012
126
- * CSS and page layout fix for compatibility with WordPress 3.4.
127
- * WordPress multi-site: when new blog created default role setting is copied for it from the main blog default role value now.
128
- * Minor translations files update, e.g Russian roles names in plugin are identical to those WordPress uses itself now, etc.
129
-
130
- = 3.5.4 =
131
- * 4.04.2012
132
- * Lithuanian translation is added, thanks to Vincent G.
133
- * Spanish translation is updated, thanks to Victor Ricardo Díaz.
134
-
135
- = 3.5.3 =
136
- * 24.03.2012
137
- * French translation is updated, thanks to Presse et Multimedia.
138
- * Hebrew translation is updated, thanks to Aryo Digital.
139
- * Persian translation is updated, thanks to Parsa.
140
- * Minor CSS fix to provide compatibility with RTL languages.
141
-
142
- = 3.5.2 =
143
- * 17.03.2012
144
- * Turkish translation is updated, thanks to Muhammed YILDIRIM.
145
- * Dutch translation is updated, thanks to Frank Groeneveld.
146
-
147
- = 3.5.1 =
148
- * 24.02.2012
149
- * Bugs for multi-site WordPress network installation were discovered and fixed: 1) blocked login to admin back-end; 2) empty users list for administrators of single sites; 3) empty authors drop down list at the post editor page.
150
- * If URE plugin is not enabled for single site administrator, then URE is automatically excluded from plugins list available to that administrator.
151
-
152
- = 3.5 =
153
- * 19.02.2012
154
- * User Role Editor could be available now for single site administrators (Administrator role) under multi-site environment. You should define URE_ENABLE_SIMPLE_ADMIN_FOR_MULTISITE constant in your blog wp-config.php file for that. Insert this line "define('URE_ENABLE_SIMPLE_ADMIN_FOR_MULTISITE', 1);" there, if you decide to give single site admin such opportunity.
155
- * One of "User Role Editor" users with 1100+ sites in the multi-site network reported that URE doesn't update roles for all sites, but stalls somewhere in the middle. Other network update method is realized as alternative. Due to my tests it works approximately 30 times faster. If you met the same problem, try it. It will be great if you share your experience with me. In order select alternative method of all sites update add this line to you blog wp-config.php file "define('URE_MULTISITE_DIRECT_UPDATE', 1);". But be careful. It's recommended to make 1st try on the backup copy, not on a live site.
156
- * Persian translation is updated. Thanks to [Parsa](http://parsa.ws).
157
-
158
- = 3.4 =
159
- * 21.01.2012
160
- * You can see/edit "Administrator" role now. Insert this line of code "define('URE_SHOW_ADMIN_ROLE', 1);" into your wp-config.php file and login with administrator account for that.
161
- If for some reason your Administrator role missed some capabilities added by plugins or themes, you can fix that. But be careful with changing "Administrator" role, do not turn off accidentally some critical capabilities to not block your admin users.
162
-
163
- = 3.3.3 =
164
- * 11.01.2012
165
- * Spanish (Dario) and Swedish (Andréas) translations update.
166
-
167
- = 3.3.2 =
168
- * 02.01.2012
169
- * Enhance server side validation for user input of new role name, minor bug fixes.
170
-
171
- Older records are available at [this page](http://www.shinephp.com/user-role-editor-wordpress-plugin/#changelog).
172
 
173
  == Additional Documentation ==
174
 
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.0
6
+ Tested up to: 3.4.2
7
  Stable tag: trunk
8
 
9
  User Role Editor WordPress plugin makes the role capabilities changing easy. You can change any standard WordPress user role (except administrator).
54
  * [FullThrottle](http://fullthrottledevelopment.com/how-to-hide-the-adminstrator-on-the-wordpress-users-screen) - For the code to hide administrator role at admin backend.
55
 
56
  = Translations =
57
+ * Brasilian Portuguese: [Onbiz](http://www.onbiz.com.br/), [Rafael Galdencio](http://www.arquiteturailustrada.com.br)
58
  * Dutch: [Frank Groeneveld](http://ivaldi.nl), [Rémi Bruggeman](http://www.remisan.be)
59
  * French: [Presse et Multimedia](http://presse-et-multimedia.fr/blog), [Whiler](http://blogs.wittwer.fr/whiler)
60
  * German: [Peter](http://www.becker-heidmann.de)
73
  * Finnish: [Lauri Merisaari](http://www.viidakkorumpu.fi)
74
  * Japanese: Kaz, [Technolog.jp](http://technolog.jp)
75
  * Belorussian: [Marsis G.](http://pc.de) - needs update
 
76
  * Chinese: [Yackytsu](http://www.jackytsu.com) - needs update
77
  * Hungarian: [István](http://www.blacksnail.hu) - needs update
78
 
84
 
85
 
86
  == Changelog ==
87
+ = 3.8 =
88
+ * 01.09.2012
89
+ * 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.
90
+ * WordPress core capabilities are shown separately from capabilities added by plugins and manually.
91
+ * 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.
92
+ * Brasilian Portuguese translation is updated. Thanks to [Onbiz](http://www.onbiz.com.br/).
93
+
94
+ = 3.7.5 =
95
+ * 11.08.2012
96
+ * Minor fix of German language translation file. One string translation was the reason of URE empty screen. Just replace your German language translation files in the ./lang directory with files from this package.
97
+
98
  = 3.7.5 =
99
  * 29.07.2012
100
  * Polish translation is updated. Thanks to Bartosz.
101
  * "User Role Editor" menu item could be shown in translated form now. Do not lose it - it is on the same place at the "Users" submenu.
102
 
 
103
  = 3.7.4 =
104
  * 26.07.2012
105
  * Persian translation is updated. Thanks to Amir Khalilnejad.
123
  * Old versions used 'edit_users' capability to check if show/hide 'User Role Editor' menu item under 'Users' menu. Starting from version 3.7 'administrator' role is checked. Existed inconsistency, when non-admin user with 'edit_users' capability saws 'User Role Editor' menu, but got 'Only Administrator is allowed to use User Role Editor' error message, was removed.
124
  * Bug fix: if you work with WordPress admin via https, URE will use https instead of http, as it made in older versions.
125
 
126
+ 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.
127
+
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
128
 
129
  == Additional Documentation ==
130
 
user-role-editor.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: User Role Editor
4
  Plugin URI: http://www.shinephp.com/user-role-editor-wordpress-plugin/
5
  Description: It allows you to change/add/delete any WordPress user role (except administrator) capabilities list with a few clicks.
6
- Version: 3.7.5
7
  Author: Vladimir Garagulya
8
  Author URI: http://www.shinephp.com
9
  Text Domain: ure
@@ -41,7 +41,18 @@ if (version_compare(PHP_VERSION, '5.0.0', '<')) {
41
  return ($exit_msg);
42
  }
43
 
44
- require_once('ure-lib.php');
 
 
 
 
 
 
 
 
 
 
 
45
 
46
  load_plugin_textdomain('ure','', $urePluginDirName.'/lang');
47
 
@@ -69,7 +80,7 @@ function ure_optionsPage() {
69
  <div class="wrap">
70
  <div class="icon32" id="icon-options-general"><br/></div>
71
  <h2><?php _e('User Role Editor', 'ure'); ?></h2>
72
- <?php require ('ure-options.php'); ?>
73
  </div>
74
  <?php
75
 
3
  Plugin Name: User Role Editor
4
  Plugin URI: http://www.shinephp.com/user-role-editor-wordpress-plugin/
5
  Description: It allows you to change/add/delete any WordPress user role (except administrator) capabilities list with a few clicks.
6
+ Version: 3.8
7
  Author: Vladimir Garagulya
8
  Author URI: http://www.shinephp.com
9
  Text Domain: ure
41
  return ($exit_msg);
42
  }
43
 
44
+ $ure_siteURL = get_site_url();
45
+ $urePluginDirName = substr(strrchr(dirname(__FILE__), DIRECTORY_SEPARATOR), 1);
46
+
47
+ define('URE_PLUGIN_URL', WP_PLUGIN_URL.'/'.$urePluginDirName);
48
+ define('URE_PLUGIN_DIR', WP_PLUGIN_DIR.'/'.$urePluginDirName);
49
+ define('URE_WP_ADMIN_URL', $ure_siteURL.'/wp-admin');
50
+ define('URE_ERROR', 'Error is encountered');
51
+ define('URE_SPACE_REPLACER', '_URE-SR_');
52
+ define('URE_PARENT', 'users.php');
53
+ define('URE_KEY_CAPABILITY', 'administrator');
54
+
55
+ require_once('includes/ure-lib.php');
56
 
57
  load_plugin_textdomain('ure','', $urePluginDirName.'/lang');
58
 
80
  <div class="wrap">
81
  <div class="icon32" id="icon-options-general"><br/></div>
82
  <h2><?php _e('User Role Editor', 'ure'); ?></h2>
83
+ <?php require_once('includes/ure-options.php'); ?>
84
  </div>
85
  <?php
86