User Role Editor - Version 3.9

Version Description

  • 07.01.2013
  • Compatibility with bbPress 2.2 new user roles model is provided. More details about the reason of such update at http://shinephp.com/bbpress-user-role-editor-conflict-fix/
  • "Reset" button works differently now. It restores WordPress roles data to its 1st, default state, exactly that, what WordPress has just after fresh install/latest version update. Be careful with it, make database backup copy before fulfill this operation. Some plugin could require reactivation to function properly after roles reset.
  • Arabic translation is added. Thanks to Yaser
  • Slovak translation is added. Thanks to Branco
Download this release

Release Info

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

Code changes from version 3.8.3 to 3.9

images/branco.png ADDED
Binary file
images/yaser.png ADDED
Binary file
includes/ure-lib.php CHANGED
@@ -120,15 +120,23 @@ function ure_showMessage($message) {
120
 
121
 
122
  function ure_getUserRoles() {
123
- global $wp_roles, $wp_user_roles;
124
 
125
- if (!isset($wp_roles)) {
126
  $wp_roles = new WP_Roles();
127
  }
128
 
129
- $ure_roles = $wp_roles->roles;
130
- if (is_array($ure_roles)) {
131
- asort($ure_roles);
 
 
 
 
 
 
 
 
132
  }
133
 
134
  return $ure_roles;
@@ -136,6 +144,122 @@ function ure_getUserRoles() {
136
  // end of ure_getUserRoles()
137
 
138
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
139
  // restores User Roles from the backup record
140
  function ure_restore_user_roles() {
141
 
@@ -183,7 +307,7 @@ function ure_restore_user_roles() {
183
  return $mess;
184
  }
185
  // end of ure_restore_user_roles()
186
-
187
 
188
  function ure_makeRolesBackup() {
189
  global $wpdb, $mess, $ure_roles, $ure_toldAboutBackup;
120
 
121
 
122
  function ure_getUserRoles() {
123
+ global $wp_roles;
124
 
125
+ if (!isset( $wp_roles ) ) {
126
  $wp_roles = new WP_Roles();
127
  }
128
 
129
+ if ( function_exists('bbp_filter_blog_editable_roles') ) { // bbPress plugin is active
130
+ $ure_roles = bbp_filter_blog_editable_roles( $wp_roles->roles ); // exclude bbPress roles
131
+ $bbp_full_caps = bbp_get_caps_for_role( bbp_get_keymaster_role() );
132
+ // add bbPress keymaster caps to Administrator role
133
+ $ure_roles['administrator']['capabilities'] = array_merge( $ure_roles[ 'administrator' ]['capabilities'], $bbp_full_caps );
134
+ } else {
135
+ $ure_roles = $wp_roles->roles;
136
+ }
137
+
138
+ if ( is_array( $ure_roles ) && count( $ure_roles ) > 0 ) {
139
+ asort( $ure_roles );
140
  }
141
 
142
  return $ure_roles;
144
  // end of ure_getUserRoles()
145
 
146
 
147
+ /**
148
+ * deactivate all active plugins
149
+ *
150
+ * return array $plugins - active plugins which were deactivated
151
+ */
152
+ function ure_deactivate_plugins() {
153
+
154
+ $plugins = get_option( 'active_plugins', array() );
155
+ $active_plugins = array();
156
+ foreach ($plugins as $plugin) {
157
+ if ( is_plugin_active($plugin) ) {
158
+ //Deactivate the plugin silently, Prevent deactivation hooks from running.
159
+ deactivate_plugins($plugin, true);
160
+ $active_plugins[] = $plugin;
161
+ }
162
+ }
163
+
164
+ return $active_plugins;
165
+
166
+ }
167
+ // end of ure_deactivate_plugins()
168
+
169
+
170
+ /**
171
+ * Go through all users and if user has non-existing role lower him to Subscriber role
172
+ *
173
+ */
174
+ function ure_validate_user_roles() {
175
+
176
+ global $wp_roles, $ure_fullCapabilities;
177
+
178
+ $default_role = get_option('default_role');
179
+ if (empty($default_role)) {
180
+ $default_role = 'subscriber';
181
+ }
182
+ $users_query = new WP_User_Query(array('fields' => 'ID'));
183
+ $users = $users_query->get_results();
184
+ foreach ($users as $user_id) {
185
+ $user = get_user_by('id', $user_id);
186
+ if (is_array($user->roles) && count($user->roles) > 0) {
187
+ foreach ($user->roles as $role) {
188
+ $user_role = $role;
189
+ break;
190
+ }
191
+ } else {
192
+ $user_role = is_array($user->roles) ? '' : $user->roles;
193
+ }
194
+ if (!empty($user_role) && !isset($wp_roles->roles[$user_role])) { // role doesn't exists
195
+ $user->set_role($default_role); // set the lowest level role for this user
196
+ $user_role = '';
197
+ }
198
+
199
+ if (empty($user_role)) {
200
+ // Cleanup users level capabilities from non-existed roles
201
+ $cap_removed = true;
202
+ while (count($user->caps) > 0 && $cap_removed) {
203
+ foreach ($user->caps as $capability => $value) {
204
+ if (!isset($ure_fullCapabilities[$capability])) {
205
+ $user->remove_cap( $capability );
206
+ $cap_removed = true;
207
+ break;
208
+ }
209
+ $cap_removed = false;
210
+ }
211
+ } // while ()
212
+ }
213
+
214
+ } // foreach()
215
+
216
+ }
217
+ // end of ure_validate_user_roles()
218
+
219
+
220
+ /**
221
+ * reset user roles to WordPress default roles
222
+ */
223
+ function ure_reset_user_roles() {
224
+ global $wp_roles;
225
+
226
+ //$active_plugins = ure_deactivate_plugins(); // deactivate all plugins
227
+
228
+ $wp_roles->roles = array();
229
+ $wp_roles->role_objects = array();
230
+ $wp_roles->role_names = array();
231
+ $wp_roles->use_db = true;
232
+
233
+ require_once(ABSPATH . DIRECTORY_SEPARATOR .'wp-admin' . DIRECTORY_SEPARATOR . 'includes' . DIRECTORY_SEPARATOR . 'schema.php');
234
+ populate_roles();
235
+ $wp_roles->reinit();
236
+
237
+
238
+ $reload_link = wp_get_referer();
239
+ $reload_link = remove_query_arg('action', $reload_link);
240
+ $reload_link = add_query_arg('action', 'roles_restore_note', $reload_link);
241
+
242
+ /*
243
+ // return recently deactivated plugins to its original state
244
+ if ( is_array( $active_plugins ) && count( $active_plugins ) > 0 ) {
245
+ activate_plugins( $active_plugins, $reload_link);
246
+ }
247
+ //ure_validate_user_roles(); // if user has non-existing role lower him to Subscriber role
248
+ */
249
+
250
+ ?>
251
+ <script type="text/javascript" >
252
+ document.location = '<?php echo $reload_link; ?>';
253
+ </script>
254
+ <?php
255
+
256
+ return '';
257
+
258
+ }
259
+ // end of ure_reset_user_roles()
260
+
261
+
262
+ /*
263
  // restores User Roles from the backup record
264
  function ure_restore_user_roles() {
265
 
307
  return $mess;
308
  }
309
  // end of ure_restore_user_roles()
310
+ */
311
 
312
  function ure_makeRolesBackup() {
313
  global $wpdb, $mess, $ure_roles, $ure_toldAboutBackup;
includes/ure-options.php CHANGED
@@ -26,7 +26,7 @@ if (isset($_REQUEST['action'])) {
26
  $action = $_REQUEST['action'];
27
  // restore roles capabilities from the backup record
28
  if ($action=='reset') {
29
- $mess = ure_restore_user_roles();
30
  if (!$mess) {
31
  return;
32
  }
@@ -56,7 +56,7 @@ if (isset($_REQUEST['action'])) {
56
  } else if ($action=='removeusercapability') {
57
  $mess = ure_RemoveCapability();
58
  } else if ($action=='roles_restore_note') {
59
- $mess = __('User Roles are restored from the backup data. ', 'ure');
60
  }
61
  } else {
62
  $action = '';
@@ -258,6 +258,7 @@ ure_showMessage($mess);
258
  <hr />
259
  <h3><a name="greetings"><?php _e('Greetings', 'ure'); ?></a></h3>
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>
@@ -281,6 +282,7 @@ ure_showMessage($mess);
281
  <a class="ure_rsb_link" style="background-image:url(<?php echo URE_PLUGIN_URL . '/images/tagsite.png'; ?>)" target="_blank" title="<?php _e("For the help with Polish translation", 'ure'); ?>" href="http://www.tagsite.eu">TagSite</a>
282
  <a class="ure_rsb_link" style="background-image:url(<?php echo URE_PLUGIN_URL . '/images/bartosz.png'; ?>)" target="_blank" title="<?php _e("For the help with Polish translation", 'ure'); ?>" href="http://www.digitalfactory.pl">Bartosz</a>
283
  <a class="ure_rsb_link" style="background-image:url(<?php echo URE_PLUGIN_URL . '/images/wpcouponshop.png'; ?>)" target="_blank" title="<?php _e("For the help with Serbian translation", 'ure'); ?>" href="http://wpcouponshop.com">Diana</a>
 
284
  <a class="ure_rsb_link" style="background-image:url(<?php echo URE_PLUGIN_URL . '/images/infomed.png'; ?>)" target="_blank" title="<?php _e("For the help with Spanish translation", 'ure'); ?>" href="http://www.sld.cu">Victor Ricardo Díaz (INFOMED)</a>
285
  <span title="<?php _e("For the help with Spanish translation", 'ure'); ?>" >Dario Ferrer</span>
286
  <a class="ure_rsb_link" style="background-image:url(<?php echo URE_PLUGIN_URL . '/images/andreas.png'; ?>)" target="_blank" title="<?php _e("For the updated Swedish translation", 'ure'); ?>" href="http://adevade.com/">Andréas Lundgren</a>
26
  $action = $_REQUEST['action'];
27
  // restore roles capabilities from the backup record
28
  if ($action=='reset') {
29
+ $mess = ure_reset_user_roles();
30
  if (!$mess) {
31
  return;
32
  }
56
  } else if ($action=='removeusercapability') {
57
  $mess = ure_RemoveCapability();
58
  } else if ($action=='roles_restore_note') {
59
+ $mess = __('User Roles are restored to WordPress default values. ', 'ure');
60
  }
61
  } else {
62
  $action = '';
258
  <hr />
259
  <h3><a name="greetings"><?php _e('Greetings', 'ure'); ?></a></h3>
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/yaser.png'; ?>)" target="_blank" title="<?php _e("For the help with Arabic translation", 'ure'); ?>" href="http://www.englize.com/">Yaser</a>
262
  <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>
263
  <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>
264
  <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>
282
  <a class="ure_rsb_link" style="background-image:url(<?php echo URE_PLUGIN_URL . '/images/tagsite.png'; ?>)" target="_blank" title="<?php _e("For the help with Polish translation", 'ure'); ?>" href="http://www.tagsite.eu">TagSite</a>
283
  <a class="ure_rsb_link" style="background-image:url(<?php echo URE_PLUGIN_URL . '/images/bartosz.png'; ?>)" target="_blank" title="<?php _e("For the help with Polish translation", 'ure'); ?>" href="http://www.digitalfactory.pl">Bartosz</a>
284
  <a class="ure_rsb_link" style="background-image:url(<?php echo URE_PLUGIN_URL . '/images/wpcouponshop.png'; ?>)" target="_blank" title="<?php _e("For the help with Serbian translation", 'ure'); ?>" href="http://wpcouponshop.com">Diana</a>
285
+ <a class="ure_rsb_link" style="background-image:url(<?php echo URE_PLUGIN_URL . '/images/branco.png'; ?>)" target="_blank" title="<?php _e("For the help with Slovak translation", 'ure'); ?>" href="http://webhostinggeeks.com/blog/">Branco (WebHostingGeeks.com)</a>
286
  <a class="ure_rsb_link" style="background-image:url(<?php echo URE_PLUGIN_URL . '/images/infomed.png'; ?>)" target="_blank" title="<?php _e("For the help with Spanish translation", 'ure'); ?>" href="http://www.sld.cu">Victor Ricardo Díaz (INFOMED)</a>
287
  <span title="<?php _e("For the help with Spanish translation", 'ure'); ?>" >Dario Ferrer</span>
288
  <a class="ure_rsb_link" style="background-image:url(<?php echo URE_PLUGIN_URL . '/images/andreas.png'; ?>)" target="_blank" title="<?php _e("For the updated Swedish translation", 'ure'); ?>" href="http://adevade.com/">Andréas Lundgren</a>
includes/ure-role-edit.php CHANGED
@@ -115,7 +115,7 @@ if (is_multisite()) {
115
  } else if (action=='default') {
116
  actionText = '<?php _e('Change Default Role', 'ure'); ?>';
117
  } else if (action=='reset') {
118
- actionText = '<?php _e('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', 'ure'); ?>';
119
  } else if (action=='removeusercapability') {
120
  actionText = '<?php _e('Warning! Be careful - removing critical capability could crash some plugin or other custom code', 'ure'); ?>';
121
  }
@@ -235,7 +235,8 @@ if (is_multisite() && is_super_admin()) {
235
  $labelStyle = '';
236
  }
237
  $checked = '';
238
- if (isset($ure_roles[$ure_currentRole]['capabilities'][$capability['inner']])) {
 
239
  $checked = 'checked="checked"';
240
  }
241
  $cap_id = str_replace(' ', URE_SPACE_REPLACER, $capability['inner']);
@@ -282,7 +283,8 @@ foreach ($ure_fullCapabilities as $capability) {
282
  continue;
283
  }
284
  $checked = '';
285
- if (isset($ure_roles[$ure_currentRole]['capabilities'][$capability['inner']])) {
 
286
  $checked = 'checked="checked"';
287
  }
288
  $cap_id = str_replace(' ', URE_SPACE_REPLACER, $capability['inner']);
@@ -335,7 +337,7 @@ foreach ($ure_fullCapabilities as $capability) {
335
  ?>
336
  </div>
337
  <div style="float:right; padding-bottom: 10px;">
338
- <input type="button" name="default" value="<?php _e('Reset', 'ure') ?>" title="<?php _e('Restore Roles from backup copy', 'ure'); ?>" onclick="ure_Actions('reset');"/>
339
  </div>
340
  </div>
341
  <?php
115
  } else if (action=='default') {
116
  actionText = '<?php _e('Change Default Role', 'ure'); ?>';
117
  } else if (action=='reset') {
118
+ actionText = '<?php _e('Reset Roles to WordPress defaults. Be careful, all changes made by you or plugins will be lost. Some plugins, e.g. S2Member, reactivation could be needed', 'ure'); ?>';
119
  } else if (action=='removeusercapability') {
120
  actionText = '<?php _e('Warning! Be careful - removing critical capability could crash some plugin or other custom code', 'ure'); ?>';
121
  }
235
  $labelStyle = '';
236
  }
237
  $checked = '';
238
+ if ( isset( $ure_roles[ $ure_currentRole ][ 'capabilities' ][ $capability[ 'inner' ] ] ) &&
239
+ !empty( $ure_roles[ $ure_currentRole ][ 'capabilities' ][ $capability[ 'inner' ] ] ) ) {
240
  $checked = 'checked="checked"';
241
  }
242
  $cap_id = str_replace(' ', URE_SPACE_REPLACER, $capability['inner']);
283
  continue;
284
  }
285
  $checked = '';
286
+ if ( isset( $ure_roles[ $ure_currentRole ][ 'capabilities' ][ $capability[ 'inner' ] ] ) &&
287
+ !empty( $ure_roles[ $ure_currentRole ][ 'capabilities' ][ $capability[ 'inner' ] ] ) ) {
288
  $checked = 'checked="checked"';
289
  }
290
  $cap_id = str_replace(' ', URE_SPACE_REPLACER, $capability['inner']);
337
  ?>
338
  </div>
339
  <div style="float:right; padding-bottom: 10px;">
340
+ <input type="button" name="default" value="<?php _e('Reset', 'ure') ?>" title="<?php _e('Reset Roles to WordPress defaults. All your changes will be lost', 'ure'); ?>" onclick="ure_Actions('reset');"/>
341
  </div>
342
  </div>
343
  <?php
includes/ure-user-edit.php CHANGED
@@ -127,7 +127,8 @@ $roleSelectHTML .= '</select>';
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']])) {
@@ -177,8 +178,12 @@ $roleSelectHTML .= '</select>';
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"';
183
  $disabled = 'disabled="disabled"';
184
  } else if (isset($ure_userToEdit->caps[$capability['inner']])) {
127
  }
128
  $checked = '';
129
  $disabled = '';
130
+ if ( isset( $ure_roles[ $ure_currentRole ][ 'capabilities' ][ $capability[ 'inner' ] ] ) &&
131
+ !empty( $ure_roles[ $ure_currentRole ][ 'capabilities' ][ $capability[ 'inner' ] ] ) ) {
132
  $checked = 'checked="checked"';
133
  $disabled = 'disabled="disabled"';
134
  } else if (isset($ure_userToEdit->caps[$capability['inner']])) {
178
  if ( $capability['wp_core'] ) { // show plugins or user added capabilities
179
  continue;
180
  }
181
+ $checked = ''; $disabled = '';
182
+ if ( isset( $ure_roles[ $ure_currentRole ][ 'capabilities' ][ $capability[ 'inner' ] ] ) &&
183
+ !empty( $ure_roles[ $ure_currentRole ][ 'capabilities' ][ $capability[ 'inner' ] ] ) ) {
184
+
185
+
186
+
187
  $checked = 'checked="checked"';
188
  $disabled = 'disabled="disabled"';
189
  } else if (isset($ure_userToEdit->caps[$capability['inner']])) {
lang/ure-ar.mo ADDED
Binary file
lang/ure-ar.po ADDED
@@ -0,0 +1,768 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: User Role Editor 2.0\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-09-01 08:44+0700\n"
6
+ "PO-Revision-Date: \n"
7
+ "Last-Translator: Yaser Maadan | Englize.com <yaser@englize.com>\n"
8
+ "Language-Team: Yaser Maadan | Englize.com <yaser@englize.com>\n"
9
+ "Language: Arabic\n"
10
+ "MIME-Version: 1.0\n"
11
+ "Content-Type: text/plain; charset=UTF-8\n"
12
+ "Content-Transfer-Encoding: 8bit\n"
13
+ "X-Poedit-SourceCharset: UTF-8\n"
14
+ "X-Poedit-KeywordsList: __;_e\n"
15
+ "X-Poedit-Basepath: .\n"
16
+ "X-Generator: Poedit 1.5.4\n"
17
+ "X-Poedit-SearchPath-0: ..\n"
18
+
19
+ #: ../user-role-editor.php:35
20
+ msgid "User Role Editor requires WordPress 3.0 or newer."
21
+ msgstr "هذه الإضافة تتطلب نسخة ووردبريس 3.0 أو احدث"
22
+
23
+ #: ../user-role-editor.php:35 ../user-role-editor.php:40
24
+ msgid "Please update!"
25
+ msgstr "الرجاء التحديث!"
26
+
27
+ #: ../user-role-editor.php:40
28
+ msgid "User Role Editor requires PHP 5.0 or newer."
29
+ msgstr "هذه الإضافة تتطلب استخدام بي اتش بي 5.0 أو احدث."
30
+
31
+ #: ../user-role-editor.php:76
32
+ msgid "Only"
33
+ msgstr "فقط"
34
+
35
+ #: ../user-role-editor.php:76
36
+ msgid "is allowed to use"
37
+ msgstr "مسموح للأستخدام"
38
+
39
+ #: ../user-role-editor.php:82 ../user-role-editor.php:251
40
+ msgid "User Role Editor"
41
+ msgstr "محرر دور المستخدم"
42
+
43
+ #: ../user-role-editor.php:223
44
+ msgid "Settings"
45
+ msgstr "الإعدادات"
46
+
47
+ #: ../user-role-editor.php:233 ../includes/ure-options.php:235
48
+ msgid "Changelog"
49
+ msgstr "سجل التغييرات"
50
+
51
+ #: ../user-role-editor.php:280
52
+ msgid "Capabilities"
53
+ msgstr "الامكانيات"
54
+
55
+ #: ../includes/ure-lib.php:34
56
+ msgid "Error is occur. Please check the log file."
57
+ msgstr "حدث خطأ. الرجاء فحص ملف السجل."
58
+
59
+ #: ../includes/ure-lib.php:144
60
+ msgid "Database operation error. Check log file."
61
+ msgstr "خطأ في عمليات قاعدة البيانات. الرجاء افحص ملف السجل."
62
+
63
+ #: ../includes/ure-lib.php:177
64
+ msgid ""
65
+ "No backup data. It is created automatically before the first role data "
66
+ "update."
67
+ msgstr "لا نسخ احتياطية متوفرة. لقد انشئت تلقائياً قبل التحديث الأول للدور."
68
+
69
+ #: ../includes/ure-lib.php:215
70
+ msgid "Backup record is created for the current role capabilities"
71
+ msgstr "سجل النسخة الاحتياطية تم انشاءه لقدرات الدور الحالية"
72
+
73
+ #: ../includes/ure-lib.php:329
74
+ msgid "Error: Role name must contain latin characters and digits only!"
75
+ msgstr "خطأ: اسم الدور يجب أن يحتوي على حروف لاتينية وأرقام فقط!"
76
+
77
+ #: ../includes/ure-lib.php:336
78
+ #, php-format
79
+ msgid "Role %s exists already"
80
+ msgstr "الدور %s موجود أصلاً"
81
+
82
+ #: ../includes/ure-lib.php:349
83
+ msgid "Error is encountered during new role create operation"
84
+ msgstr "حدث خطأ اثناء عملية إنشاء دور جديد"
85
+
86
+ #: ../includes/ure-lib.php:351
87
+ #, php-format
88
+ msgid "Role %s is created successfully"
89
+ msgstr "الدور %s تم انشاءه بنجاح"
90
+
91
+ #: ../includes/ure-lib.php:435
92
+ msgid "Error encountered during role delete operation"
93
+ msgstr "حدث خطأ اثناء عملية حذف الدور"
94
+
95
+ #: ../includes/ure-lib.php:437
96
+ #, php-format
97
+ msgid "Role %s is deleted successfully"
98
+ msgstr "الدور %s تم حذفه بنجاح"
99
+
100
+ #: ../includes/ure-lib.php:455
101
+ msgid "Error encountered during default role change operation"
102
+ msgstr "هناك خطأ اثناء محاولة وضع الدور الافتراضي"
103
+
104
+ #: ../includes/ure-lib.php:461
105
+ #, php-format
106
+ msgid "Default role for new users is set to %s successfully"
107
+ msgstr "الدور الافتراضي للمستخدمين الجدد تم وضعه على %s بنجاح"
108
+
109
+ #: ../includes/ure-lib.php:489
110
+ msgid "Editor"
111
+ msgstr "محرر"
112
+
113
+ #: ../includes/ure-lib.php:490
114
+ msgid "Author"
115
+ msgstr "كاتب"
116
+
117
+ #: ../includes/ure-lib.php:491
118
+ msgid "Contributor"
119
+ msgstr "مساهم"
120
+
121
+ #: ../includes/ure-lib.php:492
122
+ msgid "Subscriber"
123
+ msgstr "مشترك"
124
+
125
+ #: ../includes/ure-lib.php:494
126
+ msgid "Switch themes"
127
+ msgstr "تبديل القوالب"
128
+
129
+ #: ../includes/ure-lib.php:495
130
+ msgid "Edit themes"
131
+ msgstr "تحرير القوالب"
132
+
133
+ #: ../includes/ure-lib.php:496
134
+ msgid "Activate plugins"
135
+ msgstr "تنشيط الإضافات"
136
+
137
+ #: ../includes/ure-lib.php:497
138
+ msgid "Edit plugins"
139
+ msgstr "تحرير الاضافات"
140
+
141
+ #: ../includes/ure-lib.php:498
142
+ msgid "Edit users"
143
+ msgstr "تحرير المستخدمين"
144
+
145
+ #: ../includes/ure-lib.php:499
146
+ msgid "Edit files"
147
+ msgstr "تحرير الملفات"
148
+
149
+ #: ../includes/ure-lib.php:500
150
+ msgid "Manage options"
151
+ msgstr "إدارة الخيارات"
152
+
153
+ #: ../includes/ure-lib.php:501
154
+ msgid "Moderate comments"
155
+ msgstr "ادارة التعليقات"
156
+
157
+ #: ../includes/ure-lib.php:502
158
+ msgid "Manage categories"
159
+ msgstr "ادارة الأقسام"
160
+
161
+ #: ../includes/ure-lib.php:503
162
+ msgid "Manage links"
163
+ msgstr "ادارة الروابط"
164
+
165
+ #: ../includes/ure-lib.php:504
166
+ msgid "Upload files"
167
+ msgstr "رفع الملفات"
168
+
169
+ #: ../includes/ure-lib.php:505
170
+ msgid "Import"
171
+ msgstr "استيراد"
172
+
173
+ #: ../includes/ure-lib.php:506
174
+ msgid "Unfiltered html"
175
+ msgstr "هتمل غير مفلتر"
176
+
177
+ #: ../includes/ure-lib.php:507
178
+ msgid "Edit posts"
179
+ msgstr "تحرير التدوينات"
180
+
181
+ #: ../includes/ure-lib.php:508
182
+ msgid "Edit others posts"
183
+ msgstr "تحرير تدوينات الغير"
184
+
185
+ #: ../includes/ure-lib.php:509
186
+ msgid "Edit published posts"
187
+ msgstr "تحرير التدوينات المنشورة"
188
+
189
+ #: ../includes/ure-lib.php:510
190
+ msgid "Publish posts"
191
+ msgstr "نشر التدوينات"
192
+
193
+ #: ../includes/ure-lib.php:511
194
+ msgid "Edit pages"
195
+ msgstr "تحرير الصفحات"
196
+
197
+ #: ../includes/ure-lib.php:512
198
+ msgid "Read"
199
+ msgstr "قراءة"
200
+
201
+ #: ../includes/ure-lib.php:513
202
+ msgid "Level 10"
203
+ msgstr "المستوى 10"
204
+
205
+ #: ../includes/ure-lib.php:514
206
+ msgid "Level 9"
207
+ msgstr "مستوى 9"
208
+
209
+ #: ../includes/ure-lib.php:515
210
+ msgid "Level 8"
211
+ msgstr "مستوى 8"
212
+
213
+ #: ../includes/ure-lib.php:516
214
+ msgid "Level 7"
215
+ msgstr "مستوى 7"
216
+
217
+ #: ../includes/ure-lib.php:517
218
+ msgid "Level 6"
219
+ msgstr "مستوى 6"
220
+
221
+ #: ../includes/ure-lib.php:518
222
+ msgid "Level 5"
223
+ msgstr "مستوى 5"
224
+
225
+ #: ../includes/ure-lib.php:519
226
+ msgid "Level 4"
227
+ msgstr "مستوى 4"
228
+
229
+ #: ../includes/ure-lib.php:520
230
+ msgid "Level 3"
231
+ msgstr "مستوى 3"
232
+
233
+ #: ../includes/ure-lib.php:521
234
+ msgid "Level 2"
235
+ msgstr "مستوى 2"
236
+
237
+ #: ../includes/ure-lib.php:522
238
+ msgid "Level 1"
239
+ msgstr "مستوى 1"
240
+
241
+ #: ../includes/ure-lib.php:523
242
+ msgid "Level 0"
243
+ msgstr "مستوى 0"
244
+
245
+ #: ../includes/ure-lib.php:524
246
+ msgid "Edit others pages"
247
+ msgstr "تحرير صفحات الغير"
248
+
249
+ #: ../includes/ure-lib.php:525
250
+ msgid "Edit published pages"
251
+ msgstr "تحرير الصفحات المنشورة"
252
+
253
+ #: ../includes/ure-lib.php:526
254
+ msgid "Publish pages"
255
+ msgstr "نشر الصفحات"
256
+
257
+ #: ../includes/ure-lib.php:527
258
+ msgid "Delete pages"
259
+ msgstr "حذف الصفحات"
260
+
261
+ #: ../includes/ure-lib.php:528
262
+ msgid "Delete others pages"
263
+ msgstr "حذف صفحات الغير"
264
+
265
+ #: ../includes/ure-lib.php:529
266
+ msgid "Delete published pages"
267
+ msgstr "حذف الصفحات المنشورة"
268
+
269
+ #: ../includes/ure-lib.php:530
270
+ msgid "Delete posts"
271
+ msgstr "حذف التدوينات"
272
+
273
+ #: ../includes/ure-lib.php:531
274
+ msgid "Delete others posts"
275
+ msgstr "حذف تدوينات الغير"
276
+
277
+ #: ../includes/ure-lib.php:532
278
+ msgid "Delete published posts"
279
+ msgstr "حذف التدوينات المنشورة"
280
+
281
+ #: ../includes/ure-lib.php:533
282
+ msgid "Delete private posts"
283
+ msgstr "حذف التدوينات الخاصة"
284
+
285
+ #: ../includes/ure-lib.php:534
286
+ msgid "Edit private posts"
287
+ msgstr "تحرير التدوينات الخاصة"
288
+
289
+ #: ../includes/ure-lib.php:535
290
+ msgid "Read private posts"
291
+ msgstr "قراءة التدوينات الخاصة"
292
+
293
+ #: ../includes/ure-lib.php:536
294
+ msgid "Delete private pages"
295
+ msgstr "حذف الصفحات الخاصة"
296
+
297
+ #: ../includes/ure-lib.php:537
298
+ msgid "Edit private pages"
299
+ msgstr "تحرير الصفحات الخاصة"
300
+
301
+ #: ../includes/ure-lib.php:538
302
+ msgid "Read private pages"
303
+ msgstr "قراءة الصفحات الخاصة"
304
+
305
+ #: ../includes/ure-lib.php:539
306
+ msgid "Delete users"
307
+ msgstr "حذف المستخدمين"
308
+
309
+ #: ../includes/ure-lib.php:540
310
+ msgid "Create users"
311
+ msgstr "إنشاء المستخدمين"
312
+
313
+ #: ../includes/ure-lib.php:541
314
+ msgid "Unfiltered upload"
315
+ msgstr "الرفع غير المفلتر"
316
+
317
+ #: ../includes/ure-lib.php:542
318
+ msgid "Edit dashboard"
319
+ msgstr "تحرير واجهة لوحة التحكم"
320
+
321
+ #: ../includes/ure-lib.php:543
322
+ msgid "Update plugins"
323
+ msgstr "تحديث الإضافات"
324
+
325
+ #: ../includes/ure-lib.php:544
326
+ msgid "Delete plugins"
327
+ msgstr "حذف الإضافات"
328
+
329
+ #: ../includes/ure-lib.php:545
330
+ msgid "Install plugins"
331
+ msgstr "تنصيب الإضافات"
332
+
333
+ #: ../includes/ure-lib.php:546
334
+ msgid "Update themes"
335
+ msgstr "تحديث القوالب"
336
+
337
+ #: ../includes/ure-lib.php:547
338
+ msgid "Install themes"
339
+ msgstr "تنصيب القوالب"
340
+
341
+ #: ../includes/ure-lib.php:548
342
+ msgid "Update core"
343
+ msgstr "تحديث ووردبريس"
344
+
345
+ #: ../includes/ure-lib.php:549
346
+ msgid "List users"
347
+ msgstr "قائمة المستخدمين"
348
+
349
+ #: ../includes/ure-lib.php:550
350
+ msgid "Remove users"
351
+ msgstr "إزالة المستخدمين"
352
+
353
+ #: ../includes/ure-lib.php:551
354
+ msgid "Add users"
355
+ msgstr "إضافة مستخدمين"
356
+
357
+ #: ../includes/ure-lib.php:552
358
+ msgid "Promote users"
359
+ msgstr "ترقيّة مستخدمين"
360
+
361
+ #: ../includes/ure-lib.php:553
362
+ msgid "Edit theme options"
363
+ msgstr "تحرير خيارات القالب"
364
+
365
+ #: ../includes/ure-lib.php:554
366
+ msgid "Delete themes"
367
+ msgstr "حذف القوالب"
368
+
369
+ #: ../includes/ure-lib.php:555
370
+ msgid "Export"
371
+ msgstr "تصدير"
372
+
373
+ #: ../includes/ure-lib.php:639
374
+ msgid "Error: Capability name must contain latin characters and digits only!"
375
+ msgstr "خطأ: الإسم يجب أن يحتوي على أحرف لاتينية وأرقام فقط!"
376
+
377
+ #: ../includes/ure-lib.php:651
378
+ #, php-format
379
+ msgid "Capability %s is added successfully"
380
+ msgstr "القدرة %s تمت اضافتها بنجاح"
381
+
382
+ #: ../includes/ure-lib.php:653
383
+ #, php-format
384
+ msgid "Capability %s exists already"
385
+ msgstr "القدرة %s موجودة أصلاً"
386
+
387
+ #: ../includes/ure-lib.php:802
388
+ #, php-format
389
+ msgid "Error! You do not have permission to delete this capability: %s!"
390
+ msgstr "خطأ! ليست لديك الصلاحيّة لحذف هذه القدرة: %s!"
391
+
392
+ #: ../includes/ure-lib.php:824
393
+ #, php-format
394
+ msgid "Capability %s is removed successfully"
395
+ msgstr "القدرة %s تم حذفها بنجاح"
396
+
397
+ #: ../includes/ure-lib.php:889
398
+ msgid "Help"
399
+ msgstr "مساعدة"
400
+
401
+ #: ../includes/ure-role-edit.php:29
402
+ msgid "None"
403
+ msgstr "لا شيء"
404
+
405
+ #: ../includes/ure-role-edit.php:101
406
+ msgid " Name can not be empty!"
407
+ msgstr "الإسم لا يمكن أن يكون فارغاً!"
408
+
409
+ #: ../includes/ure-role-edit.php:105
410
+ msgid " Name must contain latin characters and digits only!"
411
+ msgstr "الإسم يجب أن يحتوي على أحرف لاتينية وأرقام فقط!"
412
+
413
+ #: ../includes/ure-role-edit.php:110 ../includes/ure-role-edit.php:367
414
+ msgid "Delete Role"
415
+ msgstr "حذف الدور"
416
+
417
+ #: ../includes/ure-role-edit.php:112
418
+ msgid "Change Default Role"
419
+ msgstr "تغيير الدور الافتراضي"
420
+
421
+ #: ../includes/ure-role-edit.php:114
422
+ msgid ""
423
+ "Restore Roles from backup copy. Be careful, backup was created when you "
424
+ "started URE 1st time. All changes you made after that will be lost"
425
+ msgstr ""
426
+ "استعادة الأدوار من نسخة احتياطية. كن حذراً، النسخة الإحتياطية تم إنشاؤها "
427
+ "عندما بدأت بإستخدام الإضافة لأول مرة. كل التغييرات التي حصلت بعد هذا سوف تضيع"
428
+
429
+ #: ../includes/ure-role-edit.php:116
430
+ msgid ""
431
+ "Warning! Be careful - removing critical capability could crash some plugin "
432
+ "or other custom code"
433
+ msgstr ""
434
+ "تحذير! كن حذراً - إزالة القدرات المهمة قد تدمر بعض الخصائص والأكواد الإضافية"
435
+
436
+ #: ../includes/ure-role-edit.php:118
437
+ msgid "Please confirm to continue"
438
+ msgstr "الرجاء التأكيد لإكمال العملية"
439
+
440
+ #: ../includes/ure-role-edit.php:155
441
+ #, php-format
442
+ msgid "Role \"%s\" update: please confirm to continue"
443
+ msgstr "تحديث الدور \"%s\" : الرجاء التأكيد لإكمال العملية"
444
+
445
+ #: ../includes/ure-role-edit.php:163
446
+ msgid "Select Role and change its capabilities list"
447
+ msgstr "اختر الدور و غيّر قائمة قدراته"
448
+
449
+ #: ../includes/ure-role-edit.php:165
450
+ msgid "Select Role:"
451
+ msgstr "احتر الدور:"
452
+
453
+ #: ../includes/ure-role-edit.php:175 ../includes/ure-user-edit.php:91
454
+ msgid "Show capabilities in human readable form"
455
+ msgstr "عرض القدرات بطريقة سهلة القراءة للمستخدمين"
456
+
457
+ #: ../includes/ure-role-edit.php:184 ../includes/ure-user-edit.php:100
458
+ msgid "Show deprecated capabilities"
459
+ msgstr "عرض القدرات المنتقصة"
460
+
461
+ #: ../includes/ure-role-edit.php:188
462
+ msgid "If checked, then apply action to ALL sites of this Network"
463
+ msgstr "اذا أخترت، إذن طبق العملية على كل المواقع في الشبكة"
464
+
465
+ #: ../includes/ure-role-edit.php:198
466
+ msgid "Apply to All Sites"
467
+ msgstr "طبق على كل المواقع"
468
+
469
+ #: ../includes/ure-role-edit.php:205 ../includes/ure-user-edit.php:105
470
+ msgid "Core capabilities:"
471
+ msgstr "قدرات اساسية:"
472
+
473
+ #: ../includes/ure-role-edit.php:268 ../includes/ure-user-edit.php:167
474
+ msgid "Custom capabilities:"
475
+ msgstr "قدرات مخصصة:"
476
+
477
+ #: ../includes/ure-role-edit.php:319 ../includes/ure-user-edit.php:222
478
+ msgid "Update"
479
+ msgstr "تحديث"
480
+
481
+ #: ../includes/ure-role-edit.php:319 ../includes/ure-user-edit.php:222
482
+ msgid "Save Changes"
483
+ msgstr "حفظ التغييرات"
484
+
485
+ #: ../includes/ure-role-edit.php:320 ../includes/ure-user-edit.php:223
486
+ msgid "Cancel"
487
+ msgstr "إلغاء"
488
+
489
+ #: ../includes/ure-role-edit.php:320 ../includes/ure-user-edit.php:223
490
+ msgid "Cancel not saved changes"
491
+ msgstr "إلغاء التغييرات غير المحفوظة"
492
+
493
+ #: ../includes/ure-role-edit.php:323
494
+ msgid "Select All"
495
+ msgstr "اختر الكل"
496
+
497
+ #: ../includes/ure-role-edit.php:323
498
+ msgid "Select All Capabilities"
499
+ msgstr "اختر كافة القدرات"
500
+
501
+ #: ../includes/ure-role-edit.php:327
502
+ msgid "Unselect All"
503
+ msgstr "إلغاء اختيار الكل"
504
+
505
+ #: ../includes/ure-role-edit.php:327
506
+ msgid "Unselect All Capabilities"
507
+ msgstr "إلغاء اختيار كافة القدرات"
508
+
509
+ #: ../includes/ure-role-edit.php:328
510
+ msgid "Reverse"
511
+ msgstr "عكس"
512
+
513
+ #: ../includes/ure-role-edit.php:328
514
+ msgid "Turn checked capabilities off and vise versa"
515
+ msgstr "إقلب القدرات المُختارة العكس بالعكس"
516
+
517
+ #: ../includes/ure-role-edit.php:334
518
+ msgid "Reset"
519
+ msgstr "إعادة"
520
+
521
+ #: ../includes/ure-role-edit.php:334
522
+ msgid "Restore Roles from backup copy"
523
+ msgstr "استعادة الادوار من نسخة احتياطية"
524
+
525
+ #: ../includes/ure-role-edit.php:344
526
+ msgid "Add New Role"
527
+ msgstr "اضف دور جديد"
528
+
529
+ #: ../includes/ure-role-edit.php:346
530
+ msgid "Name: "
531
+ msgstr "الاسم:"
532
+
533
+ #: ../includes/ure-role-edit.php:350
534
+ msgid "Make copy of: "
535
+ msgstr "خذ نسخة من:"
536
+
537
+ #: ../includes/ure-role-edit.php:353 ../includes/ure-role-edit.php:382
538
+ msgid "Add"
539
+ msgstr "اضف"
540
+
541
+ #: ../includes/ure-role-edit.php:353
542
+ msgid "Add New User Role"
543
+ msgstr "اضافة دور لمستخدم جديد"
544
+
545
+ #: ../includes/ure-role-edit.php:357
546
+ msgid "Default Role for New User"
547
+ msgstr "الدور الافتراضي للمستخدم الجديد"
548
+
549
+ #: ../includes/ure-role-edit.php:362
550
+ msgid "Change"
551
+ msgstr "تغيير"
552
+
553
+ #: ../includes/ure-role-edit.php:362
554
+ msgid "Set as Default User Role"
555
+ msgstr "اجعله كـدور افتراضي للمستخدم"
556
+
557
+ #: ../includes/ure-role-edit.php:372
558
+ msgid "Delete"
559
+ msgstr "حذف"
560
+
561
+ #: ../includes/ure-role-edit.php:372
562
+ msgid "Delete User Role"
563
+ msgstr "حذف دور المستخدم"
564
+
565
+ #: ../includes/ure-role-edit.php:377 ../includes/ure-role-edit.php:382
566
+ msgid "Add New Capability"
567
+ msgstr "إضافة قدرة جديدة"
568
+
569
+ #: ../includes/ure-role-edit.php:387
570
+ msgid "Remove Capability"
571
+ msgstr "أزالة القدرات"
572
+
573
+ #: ../includes/ure-role-edit.php:392
574
+ msgid "Remove"
575
+ msgstr "إزالة"
576
+
577
+ #: ../includes/ure-role-edit.php:392
578
+ msgid "Remove User Capability"
579
+ msgstr "إزالة قدرات المستخدم"
580
+
581
+ #: ../includes/ure-user-edit.php:67
582
+ #, php-format
583
+ msgid "User \"%s\" update: please confirm to continue"
584
+ msgstr "تحديث \"%s\" المستخدم: الرجاء التأكيد لإكمال العملية"
585
+
586
+ #: ../includes/ure-user-edit.php:79
587
+ msgid "Change capabilities for user"
588
+ msgstr "تغيير القدرات لهذا المستخدم"
589
+
590
+ #: ../includes/ure-user-edit.php:82
591
+ msgid "Role:"
592
+ msgstr "دور:"
593
+
594
+ #: ../includes/ure-user-edit.php:104
595
+ msgid "Add capabilities to this user:"
596
+ msgstr "أضف قدرات الى هذا المستخدم:"
597
+
598
+ #: ../includes/ure-options.php:59
599
+ msgid "User Roles are restored from the backup data. "
600
+ msgstr "أدوار المستخدمين ام استعادتها من النسخة الاحتياطية."
601
+
602
+ #: ../includes/ure-options.php:130
603
+ msgid "Error: "
604
+ msgstr "خطأ"
605
+
606
+ #: ../includes/ure-options.php:130 ../includes/ure-options.php:146
607
+ msgid "Role"
608
+ msgstr "دور"
609
+
610
+ #: ../includes/ure-options.php:130
611
+ msgid "does not exist"
612
+ msgstr "غير موجود"
613
+
614
+ #: ../includes/ure-options.php:146
615
+ msgid "is updated successfully"
616
+ msgstr "تم تحديثه بنجاح"
617
+
618
+ #: ../includes/ure-options.php:154
619
+ msgid "User"
620
+ msgstr "مستخدم"
621
+
622
+ #: ../includes/ure-options.php:154
623
+ msgid "capabilities are updated successfully"
624
+ msgstr "تم تحديث القدرات بنجاح"
625
+
626
+ #: ../includes/ure-options.php:232
627
+ msgid "About this Plugin:"
628
+ msgstr "عن الإضافة:"
629
+
630
+ #: ../includes/ure-options.php:233
631
+ msgid "Author's website"
632
+ msgstr "موقع المؤلف"
633
+
634
+ #: ../includes/ure-options.php:234
635
+ msgid "Plugin webpage"
636
+ msgstr "صفحة الإضافة"
637
+
638
+ #: ../includes/ure-options.php:236
639
+ msgid "FAQ"
640
+ msgstr "الأسئلة الشائعة"
641
+
642
+ #: ../includes/ure-options.php:237
643
+ msgid "Greetings"
644
+ msgstr "التحيات"
645
+
646
+ #: ../includes/ure-options.php:259
647
+ msgid "Greetings:"
648
+ msgstr "التحيات:"
649
+
650
+ #: ../includes/ure-options.php:260
651
+ msgid "It's me, the author"
652
+ msgstr "هذا أنا، المؤلف"
653
+
654
+ # لا توجد جدوى من ترجمة هذه العبارة والأفضل جعلها كما هي لتفيد غير المتحدثين باللغة العربية نحو لغات أخرى.
655
+ #: ../includes/ure-options.php:261
656
+ msgid "For the help with Belorussian translation"
657
+ msgstr "For the help with Belorussian translation"
658
+
659
+ # لا توجد جدوى من ترجمة هذه العبارة والأفضل جعلها كما هي لتفيد غير المتحدثين باللغة العربية نحو لغات أخرى.
660
+ #: ../includes/ure-options.php:262
661
+ msgid "For the help with Brasilian translation"
662
+ msgstr "For the help with Brasilian translation"
663
+
664
+ # لا توجد جدوى من ترجمة هذه العبارة والأفضل جعلها كما هي لتفيد غير المتحدثين باللغة العربية نحو لغات أخرى.
665
+ #: ../includes/ure-options.php:263
666
+ msgid "For the help with Brasilian Portuguese translation"
667
+ msgstr "For the help with Brasilian Portuguese translation"
668
+
669
+ # لا توجد جدوى من ترجمة هذه العبارة والأفضل جعلها كما هي لتفيد غير المتحدثين باللغة العربية نحو لغات أخرى.
670
+ #: ../includes/ure-options.php:264
671
+ msgid "For the help with Chinese translation"
672
+ msgstr "For the help with Chinese translation"
673
+
674
+ # لا توجد جدوى من ترجمة هذه العبارة والأفضل جعلها كما هي لتفيد غير المتحدثين باللغة العربية نحو لغات أخرى.
675
+ #: ../includes/ure-options.php:265
676
+ msgid "For the help with Dutch translation"
677
+ msgstr "For the help with Dutch translation"
678
+
679
+ # لا توجد جدوى من ترجمة هذه العبارة والأفضل جعلها كما هي لتفيد غير المتحدثين باللغة العربية نحو لغات أخرى.
680
+ #: ../includes/ure-options.php:266
681
+ msgid "For the help with Finnish translation"
682
+ msgstr "For the help with Finnish translation"
683
+
684
+ # لا توجد جدوى من ترجمة هذه العبارة والأفضل جعلها كما هي لتفيد غير المتحدثين باللغة العربية نحو لغات أخرى.
685
+ #: ../includes/ure-options.php:267 ../includes/ure-options.php:268
686
+ msgid "For the help with French translation"
687
+ msgstr "For the help with French translation"
688
+
689
+ # لا توجد جدوى من ترجمة هذه العبارة والأفضل جعلها كما هي لتفيد غير المتحدثين باللغة العربية نحو لغات أخرى.
690
+ #: ../includes/ure-options.php:269
691
+ msgid "For the help with German translation"
692
+ msgstr "For the help with German translation"
693
+
694
+ # لا توجد جدوى من ترجمة هذه العبارة والأفضل جعلها كما هي لتفيد غير المتحدثين باللغة العربية نحو لغات أخرى.
695
+ #: ../includes/ure-options.php:270 ../includes/ure-options.php:271
696
+ msgid "For the help with Hebrew translation"
697
+ msgstr "For the help with Hebrew translation"
698
+
699
+ # لا توجد جدوى من ترجمة هذه العبارة والأفضل جعلها كما هي لتفيد غير المتحدثين باللغة العربية نحو لغات أخرى.
700
+ #: ../includes/ure-options.php:272
701
+ msgid "For the help with Hindi translation"
702
+ msgstr "For the help with Hindi translation"
703
+
704
+ # لا توجد جدوى من ترجمة هذه العبارة والأفضل جعلها كما هي لتفيد غير المتحدثين باللغة العربية نحو لغات أخرى.
705
+ #: ../includes/ure-options.php:273
706
+ msgid "For the help with Hungarian translation"
707
+ msgstr "For the help with Hungarian translation"
708
+
709
+ # لا توجد جدوى من ترجمة هذه العبارة والأفضل جعلها كما هي لتفيد غير المتحدثين باللغة العربية نحو لغات أخرى.
710
+ #: ../includes/ure-options.php:274 ../includes/ure-options.php:275
711
+ msgid "For the help with Italian translation"
712
+ msgstr "For the help with Italian translation"
713
+
714
+ # لا توجد جدوى من ترجمة هذه العبارة والأفضل جعلها كما هي لتفيد غير المتحدثين باللغة العربية نحو لغات أخرى.
715
+ #: ../includes/ure-options.php:276
716
+ msgid "For the help with Japanese translation"
717
+ msgstr "For the help with Japanese translation"
718
+
719
+ # لا توجد جدوى من ترجمة هذه العبارة والأفضل جعلها كما هي لتفيد غير المتحدثين باللغة العربية نحو لغات أخرى.
720
+ #: ../includes/ure-options.php:277
721
+ msgid "For the help with Lithuanian translation"
722
+ msgstr "For the help with Lithuanian translation"
723
+
724
+ # لا توجد جدوى من ترجمة هذه العبارة والأفضل جعلها كما هي لتفيد غير المتحدثين باللغة العربية نحو لغات أخرى.
725
+ #: ../includes/ure-options.php:278 ../includes/ure-options.php:279
726
+ #: ../includes/ure-options.php:280
727
+ msgid "For the help with Persian translation"
728
+ msgstr "For the help with Persian translation"
729
+
730
+ # لا توجد جدوى من ترجمة هذه العبارة والأفضل جعلها كما هي لتفيد غير المتحدثين باللغة العربية نحو لغات أخرى.
731
+ #: ../includes/ure-options.php:281 ../includes/ure-options.php:282
732
+ msgid "For the help with Polish translation"
733
+ msgstr "For the help with Polish translation"
734
+
735
+ # لا توجد جدوى من ترجمة هذه العبارة والأفضل جعلها كما هي لتفيد غير المتحدثين باللغة العربية نحو لغات أخرى.
736
+ #: ../includes/ure-options.php:283 ../includes/ure-options.php:284
737
+ msgid "For the help with Spanish translation"
738
+ msgstr "For the help with Spanish translation"
739
+
740
+ # لا توجد جدوى من ترجمة هذه العبارة والأفضل جعلها كما هي لتفيد غير المتحدثين باللغة العربية نحو لغات أخرى.
741
+ #: ../includes/ure-options.php:285
742
+ msgid "For the updated Swedish translation"
743
+ msgstr "For the updated Swedish translation"
744
+
745
+ # لا توجد جدوى من ترجمة هذه العبارة والأفضل جعلها كما هي لتفيد غير المتحدثين باللغة العربية نحو لغات أخرى.
746
+ #: ../includes/ure-options.php:286
747
+ msgid "For the help with Swedish translation"
748
+ msgstr "For the help with Swedish translation"
749
+
750
+ #: ../includes/ure-options.php:287
751
+ msgid "For the help with Turkish translation"
752
+ msgstr "For the help with Turkish translation"
753
+
754
+ #: ../includes/ure-options.php:289
755
+ msgid "For the code to hide administrator role"
756
+ msgstr "إخفاء دور المدير"
757
+
758
+ #: ../includes/ure-options.php:290
759
+ msgid "For the code enhancement suggestion"
760
+ msgstr "الإقتراحات التعزيزية"
761
+
762
+ #: ../includes/ure-options.php:292
763
+ msgid ""
764
+ "Do you wish to see your name with link to your site here? You are welcome! "
765
+ "Your help with translation and new ideas are very appreciated."
766
+ msgstr ""
767
+ "خل تتمنى أن ترى أسمك ورابط موقعك هنا؟ مرحباً بك! مساعدتك في الترجمة أو "
768
+ "الأفكار الجديدة مقدّرة."
lang/ure-sk_SK.mo ADDED
Binary file
lang/ure-sk_SK.po ADDED
@@ -0,0 +1,753 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: User Role Editor 2.0\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-09-01 08:44+0700\n"
6
+ "PO-Revision-Date: \n"
7
+ "Last-Translator: Vladimir Garagulya <vladimir@shinephp.com>\n"
8
+ "Language-Team: ShinePHP.com <vladimir@shinephp.com>\n"
9
+ "Language: en_RU\n"
10
+ "MIME-Version: 1.0\n"
11
+ "Content-Type: text/plain; charset=UTF-8\n"
12
+ "Content-Transfer-Encoding: 8bit\n"
13
+ "X-Poedit-SourceCharset: utf-8\n"
14
+ "X-Poedit-KeywordsList: __;_e\n"
15
+ "X-Poedit-Basepath: .\n"
16
+ "X-Generator: Poedit 1.5.4\n"
17
+ "X-Poedit-SearchPath-0: ..\n"
18
+
19
+ #: ../user-role-editor.php:35
20
+ msgid "User Role Editor requires WordPress 3.0 or newer."
21
+ msgstr "Používateľ úlohu Editor vyžaduje WordPress 3.0 alebo novšie."
22
+
23
+ #: ../user-role-editor.php:35 ../user-role-editor.php:40
24
+ msgid "Please update!"
25
+ msgstr "Prosím aktualizujte!"
26
+
27
+ #: ../user-role-editor.php:40
28
+ msgid "User Role Editor requires PHP 5.0 or newer."
29
+ msgstr "Používateľ úlohu Editor vyžaduje PHP 5.0 alebo novší."
30
+
31
+ #: ../user-role-editor.php:76
32
+ msgid "Only"
33
+ msgstr "Len"
34
+
35
+ #: ../user-role-editor.php:76
36
+ msgid "is allowed to use"
37
+ msgstr "je dovolené používať"
38
+
39
+ #: ../user-role-editor.php:82 ../user-role-editor.php:251
40
+ msgid "User Role Editor"
41
+ msgstr "Používateľ úlohu Editor"
42
+
43
+ #: ../user-role-editor.php:223
44
+ msgid "Settings"
45
+ msgstr "Nastavenia"
46
+
47
+ #: ../user-role-editor.php:233 ../includes/ure-options.php:235
48
+ msgid "Changelog"
49
+ msgstr "Changelog"
50
+
51
+ #: ../user-role-editor.php:280
52
+ msgid "Capabilities"
53
+ msgstr "Schopnosti"
54
+
55
+ #: ../includes/ure-lib.php:34
56
+ msgid "Error is occur. Please check the log file."
57
+ msgstr "Vyskytnúť chyba. Skontrolujte súbor denníka."
58
+
59
+ #: ../includes/ure-lib.php:144
60
+ msgid "Database operation error. Check log file."
61
+ msgstr "Databáza Chyba operácie. Skontrolujte súbor denníka."
62
+
63
+ #: ../includes/ure-lib.php:177
64
+ msgid ""
65
+ "No backup data. It is created automatically before the first role data "
66
+ "update."
67
+ msgstr ""
68
+ "Žiadne zálohovanie dát. Je vytvorený automaticky pred prvej aktualizácii "
69
+ "údajov úlohu."
70
+
71
+ #: ../includes/ure-lib.php:215
72
+ msgid "Backup record is created for the current role capabilities"
73
+ msgstr "Zálohovanie záznamov je vytvorený pre aktuálnu úlohu schopnosti"
74
+
75
+ #: ../includes/ure-lib.php:329
76
+ msgid "Error: Role name must contain latin characters and digits only!"
77
+ msgstr "Chyba: Názov roly musí obsahovať latinku a len číslice!"
78
+
79
+ #: ../includes/ure-lib.php:336
80
+ #, php-format
81
+ msgid "Role %s exists already"
82
+ msgstr "Úlohu %s už existuje"
83
+
84
+ #: ../includes/ure-lib.php:349
85
+ msgid "Error is encountered during new role create operation"
86
+ msgstr "K chybe počas nová úloha vytvoriť prevádzky"
87
+
88
+ #: ../includes/ure-lib.php:351
89
+ #, php-format
90
+ msgid "Role %s is created successfully"
91
+ msgstr "Úlohu %s sa úspešne vytvorila"
92
+
93
+ #: ../includes/ure-lib.php:435
94
+ msgid "Error encountered during role delete operation"
95
+ msgstr "Počas úlohy sa vyskytla chyba operácie odstránenia"
96
+
97
+ #: ../includes/ure-lib.php:437
98
+ #, php-format
99
+ msgid "Role %s is deleted successfully"
100
+ msgstr "Úlohu %s sa úspešne vypúšťa"
101
+
102
+ #: ../includes/ure-lib.php:455
103
+ msgid "Error encountered during default role change operation"
104
+ msgstr "Počas predvolenú úlohu Zmena činnosť sa vyskytla chyba."
105
+
106
+ #: ../includes/ure-lib.php:461
107
+ #, php-format
108
+ msgid "Default role for new users is set to %s successfully"
109
+ msgstr "Predvolená funkcia pre nových používateľov je nastavená na %s úspešne"
110
+
111
+ #: ../includes/ure-lib.php:489
112
+ msgid "Editor"
113
+ msgstr "Editor"
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 "Prispievateľ"
122
+
123
+ #: ../includes/ure-lib.php:492
124
+ msgid "Subscriber"
125
+ msgstr "Účastníka"
126
+
127
+ #: ../includes/ure-lib.php:494
128
+ msgid "Switch themes"
129
+ msgstr "Prepínať medzi motívmi"
130
+
131
+ #: ../includes/ure-lib.php:495
132
+ msgid "Edit themes"
133
+ msgstr "Upraviť témy"
134
+
135
+ #: ../includes/ure-lib.php:496
136
+ msgid "Activate plugins"
137
+ msgstr "Aktivovať pluginy"
138
+
139
+ #: ../includes/ure-lib.php:497
140
+ msgid "Edit plugins"
141
+ msgstr "Upraviť pluginy"
142
+
143
+ #: ../includes/ure-lib.php:498
144
+ msgid "Edit users"
145
+ msgstr "Upraviť používateľom"
146
+
147
+ #: ../includes/ure-lib.php:499
148
+ msgid "Edit files"
149
+ msgstr "Upraviť súbory"
150
+
151
+ #: ../includes/ure-lib.php:500
152
+ msgid "Manage options"
153
+ msgstr "Spravovať možnosti"
154
+
155
+ #: ../includes/ure-lib.php:501
156
+ msgid "Moderate comments"
157
+ msgstr "Umiernené komentáre"
158
+
159
+ #: ../includes/ure-lib.php:502
160
+ msgid "Manage categories"
161
+ msgstr "Spravujte kategórie"
162
+
163
+ #: ../includes/ure-lib.php:503
164
+ msgid "Manage links"
165
+ msgstr "Spravovať prepojenia"
166
+
167
+ #: ../includes/ure-lib.php:504
168
+ msgid "Upload files"
169
+ msgstr "Upload súborov"
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 "Nefiltrované html"
178
+
179
+ #: ../includes/ure-lib.php:507
180
+ msgid "Edit posts"
181
+ msgstr "Upravovať príspevky"
182
+
183
+ #: ../includes/ure-lib.php:508
184
+ msgid "Edit others posts"
185
+ msgstr "Upraviť ďalšie príspevky"
186
+
187
+ #: ../includes/ure-lib.php:509
188
+ msgid "Edit published posts"
189
+ msgstr "Upraviť uverejnené príspevky"
190
+
191
+ #: ../includes/ure-lib.php:510
192
+ msgid "Publish posts"
193
+ msgstr "Publikovať príspevky"
194
+
195
+ #: ../includes/ure-lib.php:511
196
+ msgid "Edit pages"
197
+ msgstr "Upravovať stránky"
198
+
199
+ #: ../includes/ure-lib.php:512
200
+ msgid "Read"
201
+ msgstr "Čítanie"
202
+
203
+ #: ../includes/ure-lib.php:513
204
+ msgid "Level 10"
205
+ msgstr "Úrovne 10"
206
+
207
+ #: ../includes/ure-lib.php:514
208
+ msgid "Level 9"
209
+ msgstr "Úroveň 9"
210
+
211
+ #: ../includes/ure-lib.php:515
212
+ msgid "Level 8"
213
+ msgstr "Úroveň 8"
214
+
215
+ #: ../includes/ure-lib.php:516
216
+ msgid "Level 7"
217
+ msgstr "Úroveň 7"
218
+
219
+ #: ../includes/ure-lib.php:517
220
+ msgid "Level 6"
221
+ msgstr "Úroveň 6"
222
+
223
+ #: ../includes/ure-lib.php:518
224
+ msgid "Level 5"
225
+ msgstr "Úroveň 5"
226
+
227
+ #: ../includes/ure-lib.php:519
228
+ msgid "Level 4"
229
+ msgstr "Úroveň 4"
230
+
231
+ #: ../includes/ure-lib.php:520
232
+ msgid "Level 3"
233
+ msgstr "Úroveň 3"
234
+
235
+ #: ../includes/ure-lib.php:521
236
+ msgid "Level 2"
237
+ msgstr "Úroveň 2"
238
+
239
+ #: ../includes/ure-lib.php:522
240
+ msgid "Level 1"
241
+ msgstr "Úroveň 1"
242
+
243
+ #: ../includes/ure-lib.php:523
244
+ msgid "Level 0"
245
+ msgstr "Úroveň 0"
246
+
247
+ #: ../includes/ure-lib.php:524
248
+ msgid "Edit others pages"
249
+ msgstr "Upraviť iné stránky"
250
+
251
+ #: ../includes/ure-lib.php:525
252
+ msgid "Edit published pages"
253
+ msgstr "Upraviť Publikované stránky"
254
+
255
+ #: ../includes/ure-lib.php:526
256
+ msgid "Publish pages"
257
+ msgstr "Publikovanie stránok"
258
+
259
+ #: ../includes/ure-lib.php:527
260
+ msgid "Delete pages"
261
+ msgstr "Odstrániť strany"
262
+
263
+ #: ../includes/ure-lib.php:528
264
+ msgid "Delete others pages"
265
+ msgstr "Ostatné odstrániť stránky"
266
+
267
+ #: ../includes/ure-lib.php:529
268
+ msgid "Delete published pages"
269
+ msgstr "Odstrániť Publikované stránky"
270
+
271
+ #: ../includes/ure-lib.php:530
272
+ msgid "Delete posts"
273
+ msgstr "Mazať príspevky"
274
+
275
+ #: ../includes/ure-lib.php:531
276
+ msgid "Delete others posts"
277
+ msgstr "Odstrániť ďalšie príspevky"
278
+
279
+ #: ../includes/ure-lib.php:532
280
+ msgid "Delete published posts"
281
+ msgstr "Uverejnené príspevky mazať"
282
+
283
+ #: ../includes/ure-lib.php:533
284
+ msgid "Delete private posts"
285
+ msgstr "Súkromné príspevky mazať"
286
+
287
+ #: ../includes/ure-lib.php:534
288
+ msgid "Edit private posts"
289
+ msgstr "Upravovať súkromnú príspevky"
290
+
291
+ #: ../includes/ure-lib.php:535
292
+ msgid "Read private posts"
293
+ msgstr "Čítať súkromné príspevky"
294
+
295
+ #: ../includes/ure-lib.php:536
296
+ msgid "Delete private pages"
297
+ msgstr "Odstrániť súkromné stránky"
298
+
299
+ #: ../includes/ure-lib.php:537
300
+ msgid "Edit private pages"
301
+ msgstr "Upravovať súkromnú stránky"
302
+
303
+ #: ../includes/ure-lib.php:538
304
+ msgid "Read private pages"
305
+ msgstr "Čítať súkromné stránky"
306
+
307
+ #: ../includes/ure-lib.php:539
308
+ msgid "Delete users"
309
+ msgstr "Odstránenie používateľov"
310
+
311
+ #: ../includes/ure-lib.php:540
312
+ msgid "Create users"
313
+ msgstr "Vytvorte používateľov"
314
+
315
+ #: ../includes/ure-lib.php:541
316
+ msgid "Unfiltered upload"
317
+ msgstr "Nefiltrované upload"
318
+
319
+ #: ../includes/ure-lib.php:542
320
+ msgid "Edit dashboard"
321
+ msgstr "Úprava tabule (dashboard)"
322
+
323
+ #: ../includes/ure-lib.php:543
324
+ msgid "Update plugins"
325
+ msgstr "Aktualizácia pluginy"
326
+
327
+ #: ../includes/ure-lib.php:544
328
+ msgid "Delete plugins"
329
+ msgstr "Odstránenie pluginy"
330
+
331
+ #: ../includes/ure-lib.php:545
332
+ msgid "Install plugins"
333
+ msgstr "Inštalovať pluginy"
334
+
335
+ #: ../includes/ure-lib.php:546
336
+ msgid "Update themes"
337
+ msgstr "Aktualizovať témy"
338
+
339
+ #: ../includes/ure-lib.php:547
340
+ msgid "Install themes"
341
+ msgstr "Nainštalovať témy"
342
+
343
+ #: ../includes/ure-lib.php:548
344
+ msgid "Update core"
345
+ msgstr "Aktualizácia jadra"
346
+
347
+ #: ../includes/ure-lib.php:549
348
+ msgid "List users"
349
+ msgstr "Zoznam užívateľov"
350
+
351
+ #: ../includes/ure-lib.php:550
352
+ msgid "Remove users"
353
+ msgstr "Odstránenie používateľov"
354
+
355
+ #: ../includes/ure-lib.php:551
356
+ msgid "Add users"
357
+ msgstr "Pridať používateľov"
358
+
359
+ #: ../includes/ure-lib.php:552
360
+ msgid "Promote users"
361
+ msgstr "Podporovať užívateľov"
362
+
363
+ #: ../includes/ure-lib.php:553
364
+ msgid "Edit theme options"
365
+ msgstr "Téma možnosti editovania"
366
+
367
+ #: ../includes/ure-lib.php:554
368
+ msgid "Delete themes"
369
+ msgstr "Odstrániť témy"
370
+
371
+ #: ../includes/ure-lib.php:555
372
+ msgid "Export"
373
+ msgstr "Export"
374
+
375
+ #: ../includes/ure-lib.php:639
376
+ msgid "Error: Capability name must contain latin characters and digits only!"
377
+ msgstr "Chyba: Schopnosť meno musí obsahovať latinku a len číslice!"
378
+
379
+ #: ../includes/ure-lib.php:651
380
+ #, php-format
381
+ msgid "Capability %s is added successfully"
382
+ msgstr "Schopnosť %s sa úspešne pridaný"
383
+
384
+ #: ../includes/ure-lib.php:653
385
+ #, php-format
386
+ msgid "Capability %s exists already"
387
+ msgstr "Schopnosť %s už existuje"
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 "Chyba! Nemáte povolenie na odstránenie tejto schopnosti: % s!"
393
+
394
+ #: ../includes/ure-lib.php:824
395
+ #, php-format
396
+ msgid "Capability %s is removed successfully"
397
+ msgstr "Schopnosť %s sa úspešne odstránené"
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 "Žiadny"
406
+
407
+ #: ../includes/ure-role-edit.php:101
408
+ msgid " Name can not be empty!"
409
+ msgstr " Názov nemôže byť prázdny!"
410
+
411
+ #: ../includes/ure-role-edit.php:105
412
+ msgid " Name must contain latin characters and digits only!"
413
+ msgstr " Názov musí obsahovať latinku a len číslice!"
414
+
415
+ #: ../includes/ure-role-edit.php:110 ../includes/ure-role-edit.php:367
416
+ msgid "Delete Role"
417
+ msgstr "Odstrániť úlohu"
418
+
419
+ #: ../includes/ure-role-edit.php:112
420
+ msgid "Change Default Role"
421
+ msgstr "Zmena predvoleného úlohu"
422
+
423
+ #: ../includes/ure-role-edit.php:114
424
+ msgid ""
425
+ "Restore Roles from backup copy. Be careful, backup was created when you "
426
+ "started URE 1st time. All changes you made after that will be lost"
427
+ msgstr ""
428
+ "Obnovenie úlohy zo záložnej kópie. Buďte opatrní, keď ste začal 1. URE čas "
429
+ "vytvorenia zálohy. Všetky zmeny vykonané po ktoré sa stratia"
430
+
431
+ #: ../includes/ure-role-edit.php:116
432
+ msgid ""
433
+ "Warning! Be careful - removing critical capability could crash some plugin "
434
+ "or other custom code"
435
+ msgstr ""
436
+ "Upozornenie! Pozor - odstránenie kritické schopnosti mohol pád nejaký plugin "
437
+ "alebo iné vlastného kódu"
438
+
439
+ #: ../includes/ure-role-edit.php:118
440
+ msgid "Please confirm to continue"
441
+ msgstr "Potvrďte, že chcete pokračovať"
442
+
443
+ #: ../includes/ure-role-edit.php:155
444
+ #, php-format
445
+ msgid "Role \"%s\" update: please confirm to continue"
446
+ msgstr "Úlohu \"%s\" aktualizovať: potvrďte, prosím, pokračovať"
447
+
448
+ #: ../includes/ure-role-edit.php:163
449
+ msgid "Select Role and change its capabilities list"
450
+ msgstr "Vyberte úlohu a jej schopnosti zoznam zmien"
451
+
452
+ #: ../includes/ure-role-edit.php:165
453
+ msgid "Select Role:"
454
+ msgstr "Vyberte úlohu:"
455
+
456
+ #: ../includes/ure-role-edit.php:175 ../includes/ure-user-edit.php:91
457
+ msgid "Show capabilities in human readable form"
458
+ msgstr "Zobraziť možnosti formou ľudské čitateľné"
459
+
460
+ #: ../includes/ure-role-edit.php:184 ../includes/ure-user-edit.php:100
461
+ msgid "Show deprecated capabilities"
462
+ msgstr "Zobraziť nahradenú schopnosti"
463
+
464
+ #: ../includes/ure-role-edit.php:188
465
+ msgid "If checked, then apply action to ALL sites of this Network"
466
+ msgstr ""
467
+ "Ak kontrolované, potom použite akciu na všetkých lokalitách tejto siete"
468
+
469
+ #: ../includes/ure-role-edit.php:198
470
+ msgid "Apply to All Sites"
471
+ msgstr "Vzťahovať na všetky lokality"
472
+
473
+ #: ../includes/ure-role-edit.php:205 ../includes/ure-user-edit.php:105
474
+ msgid "Core capabilities:"
475
+ msgstr "Základné možnosti:"
476
+
477
+ #: ../includes/ure-role-edit.php:268 ../includes/ure-user-edit.php:167
478
+ msgid "Custom capabilities:"
479
+ msgstr "Vlastné schopnosti:"
480
+
481
+ #: ../includes/ure-role-edit.php:319 ../includes/ure-user-edit.php:222
482
+ msgid "Update"
483
+ msgstr "Aktualizácia"
484
+
485
+ #: ../includes/ure-role-edit.php:319 ../includes/ure-user-edit.php:222
486
+ msgid "Save Changes"
487
+ msgstr "Uložiť zmeny"
488
+
489
+ #: ../includes/ure-role-edit.php:320 ../includes/ure-user-edit.php:223
490
+ msgid "Cancel"
491
+ msgstr "Zrušiť"
492
+
493
+ #: ../includes/ure-role-edit.php:320 ../includes/ure-user-edit.php:223
494
+ msgid "Cancel not saved changes"
495
+ msgstr "Zrušiť uložené zmeny"
496
+
497
+ #: ../includes/ure-role-edit.php:323
498
+ msgid "Select All"
499
+ msgstr "Vybrať všetko"
500
+
501
+ #: ../includes/ure-role-edit.php:323
502
+ msgid "Select All Capabilities"
503
+ msgstr "Vyberte všetky možnosti"
504
+
505
+ #: ../includes/ure-role-edit.php:327
506
+ msgid "Unselect All"
507
+ msgstr "Zrušiť výber"
508
+
509
+ #: ../includes/ure-role-edit.php:327
510
+ msgid "Unselect All Capabilities"
511
+ msgstr "Zrušiť všetky možnosti"
512
+
513
+ #: ../includes/ure-role-edit.php:328
514
+ msgid "Reverse"
515
+ msgstr "Zvrátiť"
516
+
517
+ #: ../includes/ure-role-edit.php:328
518
+ msgid "Turn checked capabilities off and vise versa"
519
+ msgstr "Chcete skontrolovať možnosti vypnúť a zverák versa"
520
+
521
+ #: ../includes/ure-role-edit.php:334
522
+ msgid "Reset"
523
+ msgstr "Reset"
524
+
525
+ #: ../includes/ure-role-edit.php:334
526
+ msgid "Restore Roles from backup copy"
527
+ msgstr "Obnovenie úlohy zo záložnej kópie"
528
+
529
+ #: ../includes/ure-role-edit.php:344
530
+ msgid "Add New Role"
531
+ msgstr "Pridať novú úlohu"
532
+
533
+ #: ../includes/ure-role-edit.php:346
534
+ msgid "Name: "
535
+ msgstr "meno: "
536
+
537
+ #: ../includes/ure-role-edit.php:350
538
+ msgid "Make copy of: "
539
+ msgstr "Vytvoriť kópiu: "
540
+
541
+ #: ../includes/ure-role-edit.php:353 ../includes/ure-role-edit.php:382
542
+ msgid "Add"
543
+ msgstr "Pridať"
544
+
545
+ #: ../includes/ure-role-edit.php:353
546
+ msgid "Add New User Role"
547
+ msgstr "Pridať nové roly používateľov"
548
+
549
+ #: ../includes/ure-role-edit.php:357
550
+ msgid "Default Role for New User"
551
+ msgstr "Štandardné úloha pre nového používateľa"
552
+
553
+ #: ../includes/ure-role-edit.php:362
554
+ msgid "Change"
555
+ msgstr "Zmena"
556
+
557
+ #: ../includes/ure-role-edit.php:362
558
+ msgid "Set as Default User Role"
559
+ msgstr "Nastaviť ako predvolené roly používateľov"
560
+
561
+ #: ../includes/ure-role-edit.php:372
562
+ msgid "Delete"
563
+ msgstr "Odstrániť"
564
+
565
+ #: ../includes/ure-role-edit.php:372
566
+ msgid "Delete User Role"
567
+ msgstr "Odstrániť roly používateľov"
568
+
569
+ #: ../includes/ure-role-edit.php:377 ../includes/ure-role-edit.php:382
570
+ msgid "Add New Capability"
571
+ msgstr "Nepridáva nové"
572
+
573
+ #: ../includes/ure-role-edit.php:387
574
+ msgid "Remove Capability"
575
+ msgstr "Odstránenie schopnosť"
576
+
577
+ #: ../includes/ure-role-edit.php:392
578
+ msgid "Remove"
579
+ msgstr "Odstrániť"
580
+
581
+ #: ../includes/ure-role-edit.php:392
582
+ msgid "Remove User Capability"
583
+ msgstr "Odstrániť používateľa schopnosti"
584
+
585
+ #: ../includes/ure-user-edit.php:67
586
+ #, php-format
587
+ msgid "User \"%s\" update: please confirm to continue"
588
+ msgstr "Užívateľ \"%s\" aktualizovať: potvrďte, prosím, pokračovať"
589
+
590
+ #: ../includes/ure-user-edit.php:79
591
+ msgid "Change capabilities for user"
592
+ msgstr "Zmeniť možnosti pre používateľa"
593
+
594
+ #: ../includes/ure-user-edit.php:82
595
+ msgid "Role:"
596
+ msgstr "Úloha:"
597
+
598
+ #: ../includes/ure-user-edit.php:104
599
+ msgid "Add capabilities to this user:"
600
+ msgstr "Pridať možnosti tohto používateľa:"
601
+
602
+ #: ../includes/ure-options.php:59
603
+ msgid "User Roles are restored from the backup data. "
604
+ msgstr "Roly používateľov sú obnovené z zálohovanie dát. "
605
+
606
+ #: ../includes/ure-options.php:130
607
+ msgid "Error: "
608
+ msgstr "Chyba: "
609
+
610
+ #: ../includes/ure-options.php:130 ../includes/ure-options.php:146
611
+ msgid "Role"
612
+ msgstr "Úlohu"
613
+
614
+ #: ../includes/ure-options.php:130
615
+ msgid "does not exist"
616
+ msgstr "neexistuje"
617
+
618
+ #: ../includes/ure-options.php:146
619
+ msgid "is updated successfully"
620
+ msgstr "je úspešne aktualizovaný"
621
+
622
+ #: ../includes/ure-options.php:154
623
+ msgid "User"
624
+ msgstr "Používateľ"
625
+
626
+ #: ../includes/ure-options.php:154
627
+ msgid "capabilities are updated successfully"
628
+ msgstr "schopnosti sú úspešne aktualizovaný"
629
+
630
+ #: ../includes/ure-options.php:232
631
+ msgid "About this Plugin:"
632
+ msgstr "O tento Plugin:"
633
+
634
+ #: ../includes/ure-options.php:233
635
+ msgid "Author's website"
636
+ msgstr "Autora na webovej stránke"
637
+
638
+ #: ../includes/ure-options.php:234
639
+ msgid "Plugin webpage"
640
+ msgstr "Plugin webovej stránky"
641
+
642
+ #: ../includes/ure-options.php:236
643
+ msgid "FAQ"
644
+ msgstr "FAQ"
645
+
646
+ #: ../includes/ure-options.php:237
647
+ msgid "Greetings"
648
+ msgstr "Pozdravy"
649
+
650
+ #: ../includes/ure-options.php:259
651
+ msgid "Greetings:"
652
+ msgstr "Pozdravy:"
653
+
654
+ #: ../includes/ure-options.php:260
655
+ msgid "It's me, the author"
656
+ msgstr "Je to mnou, autor"
657
+
658
+ #: ../includes/ure-options.php:261
659
+ msgid "For the help with Belorussian translation"
660
+ msgstr "Za pomoc s prekladom"
661
+
662
+ #: ../includes/ure-options.php:262
663
+ msgid "For the help with Brasilian translation"
664
+ msgstr "Za pomoc s prekladom Brasilian"
665
+
666
+ #: ../includes/ure-options.php:263
667
+ msgid "For the help with Brasilian Portuguese translation"
668
+ msgstr "Pomocníka pre brazílska portugalčina preklad"
669
+
670
+ #: ../includes/ure-options.php:264
671
+ msgid "For the help with Chinese translation"
672
+ msgstr "Pomocníka pre čínsky preklad"
673
+
674
+ #: ../includes/ure-options.php:265
675
+ msgid "For the help with Dutch translation"
676
+ msgstr "Pomocníka pre preklad do holandštiny"
677
+
678
+ #: ../includes/ure-options.php:266
679
+ msgid "For the help with Finnish translation"
680
+ msgstr "Pomocníka pre fínsky preklad"
681
+
682
+ #: ../includes/ure-options.php:267 ../includes/ure-options.php:268
683
+ msgid "For the help with French translation"
684
+ msgstr "Pomocníka pre francúzsky preklad"
685
+
686
+ #: ../includes/ure-options.php:269
687
+ msgid "For the help with German translation"
688
+ msgstr "Pomocníka pre nemecký preklad"
689
+
690
+ #: ../includes/ure-options.php:270 ../includes/ure-options.php:271
691
+ msgid "For the help with Hebrew translation"
692
+ msgstr "Pomocníka pre hebrejský preklad"
693
+
694
+ #: ../includes/ure-options.php:272
695
+ msgid "For the help with Hindi translation"
696
+ msgstr "Pomocníka pre Hindčina preklad"
697
+
698
+ #: ../includes/ure-options.php:273
699
+ msgid "For the help with Hungarian translation"
700
+ msgstr "Pomocníka pre maďarský preklad"
701
+
702
+ #: ../includes/ure-options.php:274 ../includes/ure-options.php:275
703
+ msgid "For the help with Italian translation"
704
+ msgstr "Pomocníka pre taliansky preklad"
705
+
706
+ #: ../includes/ure-options.php:276
707
+ msgid "For the help with Japanese translation"
708
+ msgstr "Pomocníka pre japonský preklad"
709
+
710
+ #: ../includes/ure-options.php:277
711
+ msgid "For the help with Lithuanian translation"
712
+ msgstr "Pomocníka pre preklad do litovčiny"
713
+
714
+ #: ../includes/ure-options.php:278 ../includes/ure-options.php:279
715
+ #: ../includes/ure-options.php:280
716
+ msgid "For the help with Persian translation"
717
+ msgstr "Pomocníka pre perzský preklad"
718
+
719
+ #: ../includes/ure-options.php:281 ../includes/ure-options.php:282
720
+ msgid "For the help with Polish translation"
721
+ msgstr "Pomocníka pre poľský preklad"
722
+
723
+ #: ../includes/ure-options.php:283 ../includes/ure-options.php:284
724
+ msgid "For the help with Spanish translation"
725
+ msgstr "Pomocníka pre španielskeho prekladu"
726
+
727
+ #: ../includes/ure-options.php:285
728
+ msgid "For the updated Swedish translation"
729
+ msgstr "Aktualizované švédsky preklad"
730
+
731
+ #: ../includes/ure-options.php:286
732
+ msgid "For the help with Swedish translation"
733
+ msgstr "Pomocníka pre švédsky preklad"
734
+
735
+ #: ../includes/ure-options.php:287
736
+ msgid "For the help with Turkish translation"
737
+ msgstr "Pomocníka pre tureckého prekladu"
738
+
739
+ #: ../includes/ure-options.php:289
740
+ msgid "For the code to hide administrator role"
741
+ msgstr "Pre kód skryť rolou správcu"
742
+
743
+ #: ../includes/ure-options.php:290
744
+ msgid "For the code enhancement suggestion"
745
+ msgstr "Za návrh vylepšenie kód"
746
+
747
+ #: ../includes/ure-options.php:292
748
+ msgid ""
749
+ "Do you wish to see your name with link to your site here? You are welcome! "
750
+ "Your help with translation and new ideas are very appreciated."
751
+ msgstr ""
752
+ "Želáte si vidieť svoje meno s odkaz na vaše stránky tu? rado sa stalo! Vašu "
753
+ "pomoc s prekladom a nové nápady sú veľmi ocenila."
readme.txt CHANGED
@@ -2,11 +2,11 @@
2
  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.5
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).
10
 
11
  == Description ==
12
 
@@ -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
  * 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)
@@ -66,6 +67,7 @@ To read more about 'User Role Editor' visit [this page](http://www.shinephp.com/
66
  * Polish: [TagSite](http://www.tagsite.eu), [Bartosz](www.digitalfactory.pl)
67
  * Russian: [Vladimir Garagulya](http://shinephp.com)
68
  * Serbian: [Diana](http://wpcouponshop.com)
 
69
  * Spanish: [Victor Ricardo Díaz (INFOMED)](http://www.sld.cu)
70
  * Swedish: [Christer Dahlbacka](www.startlinks.eu), [Andréas Lundgren](http://adevade.com/)
71
  * Traditional Chinese (Jingxin Lai)
@@ -87,6 +89,13 @@ Share with me new ideas about plugin further development and link to your site w
87
 
88
  == Changelog ==
89
 
 
 
 
 
 
 
 
90
  = 3.8.3 =
91
  * 14.12.2012
92
  * Compatibility issue with WordPress 3.5 was found (thanks to Sonja) and fixed: $wpdb->prepare() was called without 2nd $args parameter - removed.
@@ -109,38 +118,6 @@ Share with me new ideas about plugin further development and link to your site w
109
  * 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.
110
  * Brasilian Portuguese translation is updated. Thanks to [Onbiz](http://www.onbiz.com.br/).
111
 
112
- = 3.7.5 =
113
- * 11.08.2012
114
- * 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.
115
-
116
- = 3.7.5 =
117
- * 29.07.2012
118
- * Polish translation is updated. Thanks to Bartosz.
119
- * "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.
120
-
121
- = 3.7.4 =
122
- * 26.07.2012
123
- * Persian translation is updated. Thanks to Amir Khalilnejad.
124
-
125
- = 3.7.3 =
126
- * 25.07.2012
127
- * German translation is updated. Thanks to Piter.
128
-
129
- = 3.7.2 =
130
- * 20.07.2012
131
- * SQL-injection vulnerability was found and fixed. Thanks to DDave for reporting it, look this [thread](http://shinephp.com/community/topic/little-bug-in-ure_has_administrator_role#post-819) for the details.
132
-
133
- = 3.7.1 =
134
- * 25.06.2012
135
- * Bug fix for "Fatal error: Call to a member function get_role() on a non-object in .../wp-content/plugins/user-role-editor/user-role-editor.php on line 185"
136
-
137
- = 3.7 =
138
- * 23.06.2012
139
- * 'Select All', 'Unselect All', 'Inverse' buttons were added to the from for more convenient capabilities management while role editing.
140
- * Role and capability name could be started from digit, and underscore '_' character. Hyphen '-' character could be included into such name too.
141
- * 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.
142
- * Bug fix: if you work with WordPress admin via https, URE will use https instead of http, as it made in older versions.
143
-
144
  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.
145
 
146
 
2
  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.2
6
  Tested up to: 3.5
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.
10
 
11
  == Description ==
12
 
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
+ * Arabic: [Yaser](http://www.englize.com/)
58
  * Brasilian Portuguese: [Onbiz](http://www.onbiz.com.br/), [Rafael Galdencio](http://www.arquiteturailustrada.com.br)
59
  * Dutch: [Frank Groeneveld](http://ivaldi.nl), [Rémi Bruggeman](http://www.remisan.be)
60
  * French: [Presse et Multimedia](http://presse-et-multimedia.fr/blog), [Whiler](http://blogs.wittwer.fr/whiler)
67
  * Polish: [TagSite](http://www.tagsite.eu), [Bartosz](www.digitalfactory.pl)
68
  * Russian: [Vladimir Garagulya](http://shinephp.com)
69
  * Serbian: [Diana](http://wpcouponshop.com)
70
+ * Slovak: [Branco (WebHostingGeeks.com)](http://webhostinggeeks.com/blog/)
71
  * Spanish: [Victor Ricardo Díaz (INFOMED)](http://www.sld.cu)
72
  * Swedish: [Christer Dahlbacka](www.startlinks.eu), [Andréas Lundgren](http://adevade.com/)
73
  * Traditional Chinese (Jingxin Lai)
89
 
90
  == Changelog ==
91
 
92
+ = 3.9 =
93
+ * 07.01.2013
94
+ * Compatibility with bbPress 2.2 new user roles model is provided. More details about the reason of such update at http://shinephp.com/bbpress-user-role-editor-conflict-fix/
95
+ * "Reset" button works differently now. It restores WordPress roles data to its 1st, default state, exactly that, what WordPress has just after fresh install/latest version update. Be careful with it, make database backup copy before fulfill this operation. Some plugin could require reactivation to function properly after roles reset.
96
+ * Arabic translation is added. Thanks to [Yaser](http://www.englize.com/)
97
+ * Slovak translation is added. Thanks to [Branco](http://webhostinggeeks.com/blog/)
98
+
99
  = 3.8.3 =
100
  * 14.12.2012
101
  * Compatibility issue with WordPress 3.5 was found (thanks to Sonja) and fixed: $wpdb->prepare() was called without 2nd $args parameter - removed.
118
  * 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.
119
  * Brasilian Portuguese translation is updated. Thanks to [Onbiz](http://www.onbiz.com.br/).
120
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
121
  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.
122
 
123
 
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.8.3
7
  Author: Vladimir Garagulya
8
  Author URI: http://www.shinephp.com
9
  Text Domain: ure
@@ -29,16 +29,18 @@ if (!function_exists("get_option")) {
29
  die; // Silence is golden, direct call is prohibited
30
  }
31
 
32
- global $wp_version, $current_user;
33
-
34
- if (version_compare($wp_version,"3.0","<")) {
35
- $exit_msg = __('User Role Editor requires WordPress 3.0 or newer.', 'ure').'<a href="http://codex.wordpress.org/Upgrading_WordPress">'.__('Please update!', 'ure').'</a>';
36
- return ($exit_msg);
37
  }
38
 
39
- if (version_compare(PHP_VERSION, '5.0.0', '<')) {
40
- $exit_msg = __('User Role Editor requires PHP 5.0 or newer.', 'ure').'<a href="http://codex.wordpress.org/Upgrading_WordPress">'.__('Please update!', 'ure').'</a>';
41
- return ($exit_msg);
 
 
42
  }
43
 
44
  $ure_siteURL = get_site_url();
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.9
7
  Author: Vladimir Garagulya
8
  Author URI: http://www.shinephp.com
9
  Text Domain: ure
29
  die; // Silence is golden, direct call is prohibited
30
  }
31
 
32
+ $ure_wp_version = get_bloginfo('version'); // as global $wp_version could be unavailable.
33
+ if (version_compare( $ure_wp_version, '3.2', '<' ) ) {
34
+ $exit_msg = sprintf( __( 'User Role Editor requires WordPress %s or newer.', 'ure' ), $ure_wp_version ) .
35
+ '<a href="http://codex.wordpress.org/Upgrading_WordPress"> ' . __('Please update!', 'ure') . '</a>';
36
+ wp_die($exit_msg);
37
  }
38
 
39
+ $ure_php_version = '5.2.4';
40
+ if (version_compare(PHP_VERSION, '5.2.4', '<')) {
41
+ $exit_msg = sprintf( __( 'User Role Editor requires PHP %s or newer.', 'ure' ), $ure_php_version) .
42
+ '<a href="http://codex.wordpress.org/Upgrading_WordPress"> ' . __( 'Please update!', 'ure' ) . '</a>';
43
+ wp_die($exit_msg);
44
  }
45
 
46
  $ure_siteURL = get_site_url();