add develop
authorSteve Sutton <steve@gaslightmedia.com>
Fri, 3 Oct 2014 20:06:11 +0000 (16:06 -0400)
committerSteve Sutton <steve@gaslightmedia.com>
Fri, 3 Oct 2014 20:06:11 +0000 (16:06 -0400)
31 files changed:
wp-content/plugins/user-role-editor/includes/class-garvs-wp-lib.php
wp-content/plugins/user-role-editor/includes/class-ure-lib.php
wp-content/plugins/user-role-editor/includes/class-ure-screen-help.php
wp-content/plugins/user-role-editor/includes/class-user-role-editor.php
wp-content/plugins/user-role-editor/includes/settings-template.php
wp-content/plugins/user-role-editor/includes/ure-role-edit.php
wp-content/plugins/user-role-editor/lang/ure-es_ES.mo
wp-content/plugins/user-role-editor/lang/ure-es_ES.po
wp-content/plugins/user-role-editor/lang/ure-fa_IR.mo
wp-content/plugins/user-role-editor/lang/ure-fa_IR.po
wp-content/plugins/user-role-editor/lang/ure-he_IL.mo
wp-content/plugins/user-role-editor/lang/ure-he_IL.po
wp-content/plugins/user-role-editor/lang/ure-hu_HU.mo [new file with mode: 0644]
wp-content/plugins/user-role-editor/lang/ure-hu_HU.po [new file with mode: 0644]
wp-content/plugins/user-role-editor/lang/ure-id_ID.mo
wp-content/plugins/user-role-editor/lang/ure-id_ID.po
wp-content/plugins/user-role-editor/lang/ure-nl.mo [new file with mode: 0644]
wp-content/plugins/user-role-editor/lang/ure-nl.po [new file with mode: 0644]
wp-content/plugins/user-role-editor/lang/ure-ru_RU.mo
wp-content/plugins/user-role-editor/lang/ure-ru_RU.po
wp-content/plugins/user-role-editor/lang/ure-tr_TR.mo
wp-content/plugins/user-role-editor/lang/ure-tr_TR.po
wp-content/plugins/user-role-editor/lang/ure.mo
wp-content/plugins/user-role-editor/lang/ure.pot
wp-content/plugins/user-role-editor/readme.txt
wp-content/plugins/user-role-editor/user-role-editor.php
wp-content/plugins/wordfence/lib/menu_countryBlocking.php
wp-content/plugins/wordfence/lib/wfLog.php
wp-content/plugins/wordfence/lib/wfUtils.php
wp-content/plugins/wordfence/readme.txt
wp-content/plugins/wordfence/wordfence.php

index b4f0081..130cc1c 100644 (file)
@@ -16,7 +16,8 @@ class Garvs_WP_Lib {
   private static $instance = null; // object exemplar reference  
   protected $options_id = ''; // identifire to save/retrieve plugin options to/from wp_option DB table
   protected $options = array(); // plugin options data
-  public $multisite = false;
+  public $multisite = false;  
+  public $active_for_network = false;
   public $blog_ids = null;
   protected $main_blog_id = 0; 
   public $log_to_file = false;  // set to true in order to record data about critical actions to log file
@@ -29,7 +30,7 @@ class Garvs_WP_Lib {
     public function __construct($options_id) {
 
         $this->multisite = function_exists('is_multisite') && is_multisite();
-        if ($this->multisite) {
+        if ($this->multisite) {            
             $this->blog_ids = $this->get_blog_ids();
             // get Id of 1st (main) blog
             $this->main_blog_id = $this->blog_ids[0][0];
index 7a6244b..12b462f 100644 (file)
@@ -17,7 +17,7 @@ class Ure_Lib extends Garvs_WP_Lib {
        public $notification = '';   // notification message to show on page
        public $apply_to_all = 0; 
        public $user_to_check = array();  // cached list of user IDs, who has Administrator role         
-  
+   
        protected $capabilities_to_save = null; 
        protected $current_role = '';
        protected $wp_default_role = '';
@@ -43,12 +43,21 @@ class Ure_Lib extends Garvs_WP_Lib {
      */
     public function __construct($options_id) {
                                            
-        parent::__construct($options_id);                
-         
+        parent::__construct($options_id);                        
         
     }
     // end of __construct()
-        
+
+    
+    /**
+     * Is this the Pro version?
+     * @return boolean
+     */ 
+    public function is_pro() {
+        return false;
+    }
+    // end of is_pro()
+    
     
     /**
      * get options for User Role Editor plugin
@@ -59,17 +68,26 @@ class Ure_Lib extends Garvs_WP_Lib {
         
         global $wpdb;
 
+        if ($this->multisite) { 
+            if ( ! function_exists( 'is_plugin_active_for_network' ) ) {    // Be sure the function is defined before trying to use it
+                require_once( ABSPATH . '/wp-admin/includes/plugin.php' );                
+            }
+            $this->active_for_network = is_plugin_active_for_network(URE_PLUGIN_BASE_NAME);
+        }
         $current_blog = $wpdb->blogid;
-        if ($this->multisite && $current_blog!=$this->main_blog_id) {            
-            switch_to_blog($this->main_blog_id);  // in order to get URE options from the main blog
+        if ($this->multisite && $current_blog!=$this->main_blog_id) {   
+            if ($this->active_for_network) {   // plugin is active for whole network, so get URE options from the main blog
+                switch_to_blog($this->main_blog_id);  
+            }
         }
         
         $this->options_id = $options_id;
         $this->options = get_option($options_id);
         
         if ($this->multisite && $current_blog!=$this->main_blog_id) {
-            // return back to the current blog
-            restore_current_blog();
+            if ($this->active_for_network) {   // plugin is active for whole network, so return back to the current blog
+                restore_current_blog();
+            }
         }
 
     }
@@ -83,9 +101,9 @@ class Ure_Lib extends Garvs_WP_Lib {
 
         global $wpdb;
         
-        if ($this->multisite) {
-            $current_blog = $wpdb->blogid;
-            if ($current_blog!==$this->main_blog_id) {
+        $current_blog = $wpdb->blogid;
+        if ($this->multisite && $current_blog!==$this->main_blog_id) {
+            if ($this->active_for_network) {   // plugin is active for whole network, so get URE options from the main blog
                 switch_to_blog($this->main_blog_id);  // in order to save URE options to the main blog
             }
         }
@@ -93,8 +111,9 @@ class Ure_Lib extends Garvs_WP_Lib {
         update_option($this->options_id, $this->options);
         
         if ($this->multisite && $current_blog!==$this->main_blog_id) {            
-            // return back to the current blog
-            restore_current_blog();
+            if ($this->active_for_network) {   // plugin is active for whole network, so return back to the current blog
+                restore_current_blog();
+            }
         }
         
     }
@@ -150,7 +169,7 @@ class Ure_Lib extends Garvs_WP_Lib {
     
     protected function advertisement() {
 
-        if (!class_exists('User_Role_Editor_Pro')) {
+        if (!$this->is_pro()) {
             $this->advert = new ure_Advertisement();
             $this->advert->display();
         }
@@ -271,7 +290,7 @@ class Ure_Lib extends Garvs_WP_Lib {
 
        // content of User Role Editor Pro advertisement slot - for direct call
        protected function advertise_pro_version() {
-               if (class_exists('User_Role_Editor_Pro')) {
+               if ($this->is_pro()) {
                        return;
                }
 ?>             
@@ -295,7 +314,7 @@ class Ure_Lib extends Garvs_WP_Lib {
 <?php          
                
        }
-       // end of user_role_editor()
+       // end of advertise_pro_version()
        
        
     // validate information about user we intend to edit
@@ -523,7 +542,7 @@ class Ure_Lib extends Garvs_WP_Lib {
 
         $this->init_full_capabilities();
 
-        if (!class_exists('User_Role_Editor_Pro')) {
+        if (!$this->is_pro()) {
             require_once(URE_PLUGIN_DIR . 'includes/class-advertisement.php');
         }
         
@@ -1021,7 +1040,7 @@ class Ure_Lib extends Garvs_WP_Lib {
      */
     protected function block_cap_for_single_admin($capability, $ignore_super_admin=false) {
         
-        if (!class_exists('User_Role_Editor_Pro')) {    // this functionality is for the Pro version only.
+        if (!$this->is_pro()) {    // this functionality is for the Pro version only.
             return false;
         }
         
@@ -2262,7 +2281,7 @@ class Ure_Lib extends Garvs_WP_Lib {
     
     
     public function about() {
-        if (class_exists('User_Role_Editor_Pro')) {
+        if ($this->is_pro()) {
             return;
         }
 
index 5adb760..ee181e7 100644 (file)
@@ -7,7 +7,7 @@
 
 class URE_Screen_Help {
     
-    protected function get_settings_overview_tab_help() {
+    protected function get_general_tab() {
     
         $text = '<h2>User Role Editor Options page help</h2>
             <p>
@@ -22,26 +22,86 @@ class URE_Screen_Help {
                 esc_html__('Capabilities like "level_0", "level_1" are deprecated and are not used by WordPress. '
                         . 'They are left at the user roles for the compatibility purpose with the old themes and plugins code. '
                         . 'Turning on this option will show those deprecated capabilities.', 'ure') . '</li>';
-        if (is_multisite()) {
-            $text .='
-                <li><strong>' . esc_html__('Allow create, edit and delete users to not super-admininstrators', 'ure').'</strong> - ' .
-                esc_html__('Super administrator only may create, edit and delete users under WordPress multi-site. ' 
-                        . 'Turn this option on in order to remove this limitation.','ure') . '</li>';
-        }
-        $text = apply_filters('ure_get_settings_overview_tab_help', $text);
+
+        $text = apply_filters('ure_get_settings_general_tab_help', $text);
         $text .='
             </ul>
                 </p>';
         
         return $text;
     }
-    // end of get_settings_overview_tab_help()
+    // end of get_general_tab()
+
+
+    protected function get_additional_modules_tab() {
+        $text = '<h2>User Role Editor Options page help</h2>
+            <p>
+            <ul>
+            <li><strong>' . esc_html__('Count users without role', 'ure').'</strong> - ' .
+                esc_html__('select roles below','ure') . '</li>';        
+        $text = apply_filters('ure_get_settings_additional_modules_tab_help', $text);
+        $text .='
+            </ul>
+                </p>';        
+        
+        return $text;
+    }
+    // end of get_additional_modules_tab()
+
+    
+    protected function get_default_roles_tab() {
+        $text = '<h2>User Role Editor Options page help</h2>
+            <p>
+            <ul>
+            <li><strong>' . esc_html__('Other default roles for new registered user', 'ure').'</strong> - ' .
+                esc_html__('select roles below to assign them to the new user automatically as an addition to the primary role. '.
+                'Note for multisite environment: take into account that other default roles should exist at the site, '. 
+                'in order to be assigned to the new registered users.','ure') . '</li>';        
+        
+        $text = apply_filters('ure_get_settings_default_roles_tab_help', $text);
+        $text .='
+            </ul>
+                </p>';
+        
+        return $text;
+    }
+    // end of get_default_roles_tab()
     
     
+    protected function get_multisite_tab() {
+        $text = '<h2>User Role Editor Options page help</h2>
+            <p>
+            <ul>
+                <li><strong>' . esc_html__('Allow non super-admininstrators to create, edit and delete users', 'ure').'</strong> - ' .
+                esc_html__('Super administrator only may create, edit and delete users under WordPress multi-site by default. ' 
+                        . 'Turn this option on in order to remove this limitation.','ure') . '</li>';
+        
+        $text = apply_filters('ure_get_settings_multisite_tab_help', $text);
+        $text .='
+            </ul>
+                </p>';
+        
+        return $text;
+    }
+    // end of get_multisite_tab()
+    
+            
     public function get_settings_help($tab_name) {
         switch ($tab_name) {
-            case 'overview':{
-                $text = $this->get_settings_overview_tab_help();
+            case 'general':{
+                $text = $this->get_general_tab();
+                break;
+            }
+            case 'additional_modules':{
+                $text = $this->get_additional_modules_tab();
+                break;
+            }
+            case 'default_roles':{
+                $text = $this->get_default_roles_tab();
+                break;
+            }
+            case 'multisite':{
+                $text = $this->get_multisite_tab();
                 break;
             }
             default: 
index 5a5bf47..9574824 100644 (file)
@@ -11,6 +11,7 @@
 class User_Role_Editor {
     // common code staff, including options data processor
     protected $lib = null;
+    
     // plugin's Settings page reference, we've got it from add_options_pages() call
     protected $setting_page_hook = null;
     // URE's key capability
@@ -24,7 +25,9 @@ class User_Role_Editor {
      */
     function __construct($library) {
 
-        if (class_exists('User_Role_Editor_Pro')) {
+        // get plugin specific library object
+        $this->lib = $library;        
+        if ($this->lib->is_pro()) {
          $this->ure_hook_suffixes = array('settings_page_settings-user-role-editor-pro', 'users_page_users-user-role-editor-pro');         
         } else {
          $this->ure_hook_suffixes = array('settings_page_settings-user-role-editor', 'users_page_users-user-role-editor');
@@ -35,10 +38,7 @@ class User_Role_Editor {
 
         // deactivation action
         register_deactivation_hook(URE_PLUGIN_FULL_PATH, array($this, 'cleanup'));
-
-        // get plugin specific library object
-        $this->lib = $library;
-               
+                       
         // Who may use this plugin
         $this->key_capability = $this->lib->get_key_capability();
         
@@ -67,7 +67,7 @@ class User_Role_Editor {
 
 
         // add a Settings link in the installed plugins page
-        add_filter('plugin_action_links', array($this, 'plugin_action_links'), 10, 2);
+        add_filter('plugin_action_links_'. URE_PLUGIN_BASE_NAME, array($this, 'plugin_action_links'), 10, 1);
 
         add_filter('plugin_row_meta', array($this, 'plugin_row_meta'), 10, 2);
         
@@ -75,7 +75,7 @@ class User_Role_Editor {
     // end of __construct()
 
     
-    /**
+  /**
    * Plugin initialization
    * 
    */
@@ -356,24 +356,23 @@ class User_Role_Editor {
      * @global wpdb $wpdb
      * @param  type $user_query
      */
-    public function exclude_administrators($user_query) 
-    {
+    public function exclude_administrators($user_query) {
 
         global $wpdb;
 
-               $result = false;
-               $links_to_block = array('profile.php', 'users.php');
-               foreach ( $links_to_block as $key => $value ) {
-                       $result = stripos($_SERVER['REQUEST_URI'], $value);
-                       if ( $result !== false ) {
-                               break;
-                       }
-               }
-
-               if ( $result===false ) {        // block the user edit stuff only
-                       return;
-               }
-                               
+        $result = false;
+        $links_to_block = array('profile.php', 'users.php');
+        foreach ($links_to_block as $key => $value) {
+            $result = stripos($_SERVER['REQUEST_URI'], $value);
+            if ($result !== false) {
+                break;
+            }
+        }
+
+        if ($result === false) { // block the user edit stuff only
+            return;
+        }
+
         // get user_id of users with 'Administrator' role  
         $tableName = (!$this->lib->multisite && defined('CUSTOM_USER_META_TABLE')) ? CUSTOM_USER_META_TABLE : $wpdb->usermeta;
         $meta_key = $wpdb->prefix . 'capabilities';
@@ -388,8 +387,8 @@ class User_Role_Editor {
         }
     }
     // end of exclude_administrators()
-       
-    
+
+
     /*
      * Exclude view of users with Administrator role
      * 
@@ -412,22 +411,22 @@ class User_Role_Editor {
    * @param type $user
    * @return string
    */
-  public function user_row($actions, $user) 
-  {
+    public function user_row($actions, $user) {
 
-    global $pagenow, $current_user;
+        global $pagenow, $current_user;
 
-    if ($pagenow == 'users.php') {                             
-               if ($current_user->has_cap($this->key_capability)) {
-          $actions['capabilities'] = '<a href="' . 
-                  wp_nonce_url("users.php?page=users-".URE_PLUGIN_FILE."&object=user&amp;user_id={$user->ID}", "ure_user_{$user->ID}") . 
-                  '">' . esc_html__('Capabilities', 'ure') . '</a>';
-        }      
+        if ($pagenow == 'users.php') {
+            if ($current_user->has_cap($this->key_capability)) {
+                $actions['capabilities'] = '<a href="' .
+                        wp_nonce_url("users.php?page=users-" . URE_PLUGIN_FILE . "&object=user&amp;user_id={$user->ID}", "ure_user_{$user->ID}") .
+                        '">' . esc_html__('Capabilities', 'ure') . '</a>';
+            }
+        }
+
+        return $actions;
     }
 
-    return $actions;
-  }
-  // end of user_row()
+    // end of user_row()
 
   
     /**
@@ -503,24 +502,20 @@ class User_Role_Editor {
     }
     // end of ure_load_translation()
 
+    
     /**
-     * Modify plugin actions link
+     * Modify plugin action links
      * 
      * @param array $links
-     * @param string $file
      * @return array
      */
-    public function plugin_action_links($links, $file) 
-    {
+    public function plugin_action_links($links) {
 
-        if ($file == plugin_basename(dirname(URE_PLUGIN_FULL_PATH).'/'.URE_PLUGIN_FILE)) {
-            $settings_link = "<a href='options-general.php?page=settings-".URE_PLUGIN_FILE."'>" . esc_html__('Settings', 'ure') . "</a>";
-            array_unshift($links, $settings_link);
-        }
+        $settings_link = "<a href='options-general.php?page=settings-" . URE_PLUGIN_FILE . "'>" . esc_html__('Settings', 'ure') . "</a>";
+        array_unshift($links, $settings_link);
 
         return $links;
     }
-
     // end of plugin_action_links()
 
 
@@ -548,9 +543,26 @@ class User_Role_Editor {
         }
         $screen_help = new Ure_Screen_Help();
         $screen->add_help_tab( array(
-            'id'       => 'overview',
-            'title'    => esc_html__('Overview'),
-            'content'  => $screen_help->get_settings_help('overview')
+            'id'       => 'general',
+            'title'    => esc_html__('General'),
+            'content'  => $screen_help->get_settings_help('general')
+            ));
+        if ($this->lib->pro || !$this->lib->multisite) {
+            $screen->add_help_tab( array(
+                'id'   => 'additional_modules',
+                'title'        => esc_html__('Additional Modules'),
+                'content'      => $screen_help->get_settings_help('additional_modules')
+                ));
+        }
+        $screen->add_help_tab( array(
+            'id'       => 'default_roles',
+            'title'    => esc_html__('Default Roles'),
+            'content'  => $screen_help->get_settings_help('default_roles')
+            ));
+        $screen->add_help_tab( array(
+            'id'       => 'multisite',
+            'title'    => esc_html__('Multisite'),
+            'content'  => $screen_help->get_settings_help('multisite')
             ));
     }
     // end of settings_screen_configure()
@@ -570,7 +582,7 @@ class User_Role_Editor {
             add_action("admin_print_styles-$ure_page", array($this, 'admin_css_action'));
         }
 
-        if (!$this->lib->multisite) {
+        if ( !$this->lib->multisite || ($this->lib->multisite && !$this->lib->active_for_network) ) {
             $this->settings_page_hook = add_options_page(
                     $translated_title,
                     $translated_title,
@@ -755,11 +767,15 @@ class User_Role_Editor {
                 
         do_action('ure_settings_load');        
 
-        if ($this->lib->multisite) {
+        if ($this->lib->multisite && is_network_admin()) {
             $link = 'settings.php';
         } else {
             $link = 'options-general.php';
         }
+        
+        $license_key_only = $this->lib->multisite && is_network_admin() && !$this->lib->active_for_network;
+
+        
         require_once(URE_PLUGIN_DIR . 'includes/settings-template.php');
     }
     // end of settings()
index 7e2aa59..2df30ae 100644 (file)
     <div id="ure_tabs" style="clear: left;">
         <ul>
             <li><a href="#ure_tabs-1"><?php esc_html_e('General', 'ure');?></a></li>
-            <li><a href="#ure_tabs-2"><?php esc_html_e('Additional Modules', 'ure');?></a></li>
-            <li><a href="#ure_tabs-3"><?php esc_html_e('Default Roles', 'ure');?></a></li>
 <?php
-    if ($this->lib->multisite) {
+if (!$license_key_only) {
+    if ($this->lib->is_pro() || !$this->lib->multisite) {
 ?>
-            <li><a href="#ure_tabs-4"><?php esc_html_e('Multisite', 'ure');?></a></li>
-<?php            
+            <li><a href="#ure_tabs-2"><?php esc_html_e('Additional Modules', 'ure'); ?></a></li>
+<?php
     }
+?>
+            <li><a href="#ure_tabs-3"><?php esc_html_e('Default Roles', 'ure'); ?></a></li>
+<?php
+    if ( $this->lib->multisite && ($this->lib->is_pro() || is_super_admin()) ) {
+?>
+            <li><a href="#ure_tabs-4"><?php esc_html_e('Multisite', 'ure'); ?></a></li>
+<?php
+    }
+}
 ?>
             <li><a href="#ure_tabs-5"><?php esc_html_e('About', 'ure');?></a></li>
         </ul>
@@ -34,6 +42,9 @@
     <div id="ure-settings-form">
         <form method="post" action="<?php echo $link; ?>?page=settings-<?php echo URE_PLUGIN_FILE; ?>" >   
             <table id="ure_settings">
+<?php
+if (!$license_key_only) {
+?>
                 <tr>
                     <td>
                         <input type="checkbox" name="show_admin_role" id="show_admin_role" value="1" 
@@ -58,8 +69,9 @@
                         <label for="show_deprecated_caps"><?php esc_html_e('Show deprecated capabilities', 'ure'); ?></label></td>
                     <td>                        
                     </td>
-                </tr>   
+                </tr>                   
 <?php
+}
     do_action('ure_settings_show1');
 ?>
             </table>
         </form>  
     </div>   
     </div> <!-- ure_tabs-1 -->
+<?php
+if (!$license_key_only) {
+    if ($this->lib->is_pro() || !$this->lib->multisite) {
+?>
     
     <div id="ure_tabs-2">
         <form name="ure_additional_modules" method="post" action="<?php echo $link; ?>?page=settings-<?php echo URE_PLUGIN_FILE; ?>" >
@@ -102,7 +118,9 @@ if (!$this->lib->multisite) {
                 
         </form>    
     </div>    
-    
+<?php
+    }
+?>
     
     <div id="ure_tabs-3">
         <form name="ure_default_roles" method="post" action="<?php echo $link; ?>?page=settings-<?php echo URE_PLUGIN_FILE; ?>" >
@@ -134,12 +152,15 @@ if (!$this->lib->multisite) {
     </div> <!-- ure_tabs-3 -->   
     
 <?php
-    if ($this->lib->multisite) {
+    if ( $this->lib->multisite && ($this->lib->is_pro() || is_super_admin())) {
 ?>
     <div id="ure_tabs-4">
         <div id="ure-settings-form-ms">
             <form name="ure_settings_ms" method="post" action="<?php echo $link; ?>?page=settings-<?php echo URE_PLUGIN_FILE; ?>" >
                 <table id="ure_settings_ms">
+<?php
+    if (is_super_admin()) {
+?>
                     <tr>
                          <td>
                              <input type="checkbox" name="allow_edit_users_to_not_super_admin" id="allow_edit_users_to_not_super_admin" value="1" 
@@ -148,9 +169,9 @@ if (!$this->lib->multisite) {
                          </td>
                          <td>
                          </td>
-                    </tr>      
-                    
+                    </tr>                          
 <?php
+    }
                     do_action('ure_settings_ms_show');                    
 ?>                    
                 </table>
@@ -164,6 +185,7 @@ if (!$this->lib->multisite) {
     </div>  <!-- ure_tabs-4 -->
 <?php
     }
+}   // if (!$license_key_only) {
 ?>
         <div id="ure_tabs-5">
             <?php $this->lib->about(); ?>
index 868045b..4f589e0 100644 (file)
@@ -23,7 +23,7 @@ if (!defined('URE_PLUGIN_URL')) {
     $checked = '';
   }
   $caps_access_restrict_for_simple_admin = $this->get_option('caps_access_restrict_for_simple_admin', 0);
-  if (is_super_admin() || !$this->multisite || !class_exists('User_Role_Editor_Pro') || !$caps_access_restrict_for_simple_admin) {
+  if (is_super_admin() || !$this->multisite || !$this->is_pro() || !$caps_access_restrict_for_simple_admin) {
 ?>              
             <input type="checkbox" name="ure_caps_readable" id="ure_caps_readable" value="1" 
                 <?php echo $checked; ?> onclick="ure_turn_caps_readable(0);"/>
@@ -40,7 +40,7 @@ if (!defined('URE_PLUGIN_URL')) {
             <label for="ure_show_deprecated_caps"><?php esc_html_e('Show deprecated capabilities', 'ure'); ?></label>              
 <?php
   }
-if (is_multisite() && !is_network_admin() && is_main_site( get_current_blog_id() ) && is_super_admin()) {
+if ($this->multisite && $this->active_for_network && !is_network_admin() && is_main_site( get_current_blog_id() ) && is_super_admin()) {
   $hint = esc_html__('If checked, then apply action to ALL sites of this Network');
   if ($this->apply_to_all) {
     $checked = 'checked="checked"';
index 4acd677..53e7bce 100644 (file)
Binary files a/wp-content/plugins/user-role-editor/lang/ure-es_ES.mo and b/wp-content/plugins/user-role-editor/lang/ure-es_ES.mo differ
index 6deab03..e4e8619 100644 (file)
@@ -2,7 +2,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: User Role Editor 2.0\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-09-08 21:33+0700\n"
+"POT-Creation-Date: 2014-10-01 12:45+0700\n"
 "PO-Revision-Date: \n"
 "Last-Translator: Vladimir Garagulya <vladimir@shinephp.com>\n"
 "Language-Team: ShinePHP.com <vladimir@shinephp.com>\n"
@@ -22,68 +22,73 @@ msgid "User Role Editor - Options"
 msgstr "Editor de Roles"
 
 #: ../includes/settings-template.php:21
+#: ../includes/class-user-role-editor.php:547
 msgid "General"
 msgstr ""
 
-#: ../includes/settings-template.php:22
+#: ../includes/settings-template.php:26
+#: ../includes/class-user-role-editor.php:553
 msgid "Additional Modules"
 msgstr ""
 
-#: ../includes/settings-template.php:23
+#: ../includes/settings-template.php:30
+#: ../includes/class-user-role-editor.php:559
 #, fuzzy
 msgid "Default Roles"
 msgstr "Rol Predeterminado"
 
-#: ../includes/settings-template.php:27
+#: ../includes/settings-template.php:34
+#: ../includes/class-user-role-editor.php:564
 msgid "Multisite"
 msgstr ""
 
-#: ../includes/settings-template.php:31
+#: ../includes/settings-template.php:39
 msgid "About"
 msgstr ""
 
-#: ../includes/settings-template.php:42
+#: ../includes/settings-template.php:53
 #: ../includes/class-ure-screen-help.php:15
 msgid "Show Administrator role at User Role Editor"
 msgstr ""
 
-#: ../includes/settings-template.php:50
+#: ../includes/settings-template.php:61
 #: ../includes/class-ure-screen-help.php:18
 #, fuzzy
 msgid "Show capabilities in the human readable form"
 msgstr "Mostrar Capacidades de forma legible"
 
-#: ../includes/settings-template.php:58 ../includes/ure-role-edit.php:40
+#: ../includes/settings-template.php:69 ../includes/ure-role-edit.php:40
 #: ../includes/ure-user-edit.php:63 ../includes/class-ure-screen-help.php:21
 msgid "Show deprecated capabilities"
 msgstr "Mostrar Capacidades obsoletas"
 
-#: ../includes/settings-template.php:69 ../includes/settings-template.php:101
-#: ../includes/settings-template.php:131 ../includes/settings-template.php:160
+#: ../includes/settings-template.php:81 ../includes/settings-template.php:117
+#: ../includes/settings-template.php:149 ../includes/settings-template.php:181
 msgid "Save"
 msgstr "Guardar"
 
-#: ../includes/settings-template.php:86
+#: ../includes/settings-template.php:102
+#: ../includes/class-ure-screen-help.php:40
 msgid "Count users without role"
 msgstr ""
 
-#: ../includes/settings-template.php:111
+#: ../includes/settings-template.php:129
 #, fuzzy
 msgid "Primary default role: "
 msgstr "Rol Primario:"
 
-#: ../includes/settings-template.php:118
+#: ../includes/settings-template.php:136
 msgid "Other default roles for new registered user: "
 msgstr ""
 
-#: ../includes/settings-template.php:124
+#: ../includes/settings-template.php:142
 msgid ""
 "Note for multisite environment: take into account that other default roles "
 "should exist at the site, in order to be assigned to the new registered "
 "users."
 msgstr ""
 
-#: ../includes/settings-template.php:147
+#: ../includes/settings-template.php:168
 msgid "Allow non super administrators to create, edit, and delete users"
 msgstr ""
 
@@ -104,86 +109,82 @@ msgstr ""
 msgid "You do not have permission to edit this user."
 msgstr "No tienes los suficientes permisos para editar este usuario"
 
-#: ../includes/class-user-role-editor.php:424
+#: ../includes/class-user-role-editor.php:422
 msgid "Capabilities"
 msgstr "Capacidades"
 
-#: ../includes/class-user-role-editor.php:517
+#: ../includes/class-user-role-editor.php:514
 msgid "Settings"
 msgstr "Configuración"
 
-#: ../includes/class-user-role-editor.php:530
-#: ../includes/class-ure-lib.php:2275
+#: ../includes/class-user-role-editor.php:525
+#: ../includes/class-ure-lib.php:2292
 msgid "Changelog"
 msgstr "Registro de cambios"
 
-#: ../includes/class-user-role-editor.php:552
-msgid "Overview"
-msgstr ""
-
-#: ../includes/class-user-role-editor.php:561
-#: ../includes/class-user-role-editor.php:589
-#: ../includes/class-user-role-editor.php:930
-#: ../includes/class-ure-lib.php:232
+#: ../includes/class-user-role-editor.php:573
+#: ../includes/class-user-role-editor.php:601
+#: ../includes/class-user-role-editor.php:946
+#: ../includes/class-ure-lib.php:248
 msgid "User Role Editor"
 msgstr "Editor de Roles"
 
-#: ../includes/class-user-role-editor.php:646
-#: ../includes/class-user-role-editor.php:664
-#: ../includes/class-user-role-editor.php:708
+#: ../includes/class-user-role-editor.php:658
+#: ../includes/class-user-role-editor.php:676
+#: ../includes/class-user-role-editor.php:720
 msgid "User Role Editor options are updated"
 msgstr "Opciones actualizadas"
 
-#: ../includes/class-user-role-editor.php:692
+#: ../includes/class-user-role-editor.php:704
 #, fuzzy
 msgid "Default Roles are updated"
 msgstr "Rol Predeterminado"
 
-#: ../includes/class-user-role-editor.php:716
+#: ../includes/class-user-role-editor.php:728
 msgid ""
 "You do not have sufficient permissions to manage options for User Role "
 "Editor."
 msgstr "Permisos insuficientes para trabajar"
 
-#: ../includes/class-user-role-editor.php:791
+#: ../includes/class-user-role-editor.php:807
 msgid "Insufficient permissions to work with User Role Editor"
 msgstr "Permisos insuficientes para trabajar con el Editor de Roles"
 
-#: ../includes/class-user-role-editor.php:872
+#: ../includes/class-user-role-editor.php:888
 msgid "Select All"
 msgstr "Seleccionar todo"
 
-#: ../includes/class-user-role-editor.php:873
+#: ../includes/class-user-role-editor.php:889
 msgid "Unselect All"
 msgstr "Deseleccionar todo"
 
-#: ../includes/class-user-role-editor.php:874
+#: ../includes/class-user-role-editor.php:890
 msgid "Reverse"
 msgstr "Revertir"
 
-#: ../includes/class-user-role-editor.php:875
+#: ../includes/class-user-role-editor.php:891
 msgid "Update"
 msgstr "Actualizar"
 
-#: ../includes/class-user-role-editor.php:876
+#: ../includes/class-user-role-editor.php:892
 msgid "Please confirm permissions update"
 msgstr "Por favor confirma las actualizaciones de permisos"
 
-#: ../includes/class-user-role-editor.php:877
+#: ../includes/class-user-role-editor.php:893
 msgid "Add New Role"
 msgstr "Agregar nuevo Rol"
 
-#: ../includes/class-user-role-editor.php:878
-#: ../includes/class-user-role-editor.php:883
+#: ../includes/class-user-role-editor.php:894
+#: ../includes/class-user-role-editor.php:899
 #, fuzzy
 msgid "Rename Role"
 msgstr "Eliminar Rol"
 
-#: ../includes/class-user-role-editor.php:879
+#: ../includes/class-user-role-editor.php:895
 msgid " Role name (ID) can not be empty!"
 msgstr "¡El nombre del Rol (ID) no puede estar vacío!"
 
-#: ../includes/class-user-role-editor.php:880
+#: ../includes/class-user-role-editor.php:896
 msgid ""
 " Role name (ID) must contain latin characters, digits, hyphens or underscore "
 "only!"
@@ -191,66 +192,66 @@ msgstr ""
 "¡El nombre del Rol (ID) sólo debe contener caracteres alfanuméricos, guiones "
 "altos o bajos!"
 
-#: ../includes/class-user-role-editor.php:881
+#: ../includes/class-user-role-editor.php:897
 msgid ""
 " WordPress does not support numeric Role name (ID). Add latin characters to "
 "it."
 msgstr ""
 
-#: ../includes/class-user-role-editor.php:882
+#: ../includes/class-user-role-editor.php:898
 msgid "Add Role"
 msgstr "Agregar Rol"
 
-#: ../includes/class-user-role-editor.php:884
+#: ../includes/class-user-role-editor.php:900
 msgid "Delete Role"
 msgstr "Eliminar Rol"
 
-#: ../includes/class-user-role-editor.php:885
+#: ../includes/class-user-role-editor.php:901
 msgid "Cancel"
 msgstr "Cancelar"
 
-#: ../includes/class-user-role-editor.php:886
+#: ../includes/class-user-role-editor.php:902
 msgid "Add Capability"
 msgstr "Agregar Capacidad"
 
-#: ../includes/class-user-role-editor.php:887
-#: ../includes/class-user-role-editor.php:896
+#: ../includes/class-user-role-editor.php:903
+#: ../includes/class-user-role-editor.php:912
 msgid "Delete Capability"
 msgstr "Eliminar Capacidades"
 
-#: ../includes/class-user-role-editor.php:888
+#: ../includes/class-user-role-editor.php:904
 msgid "Reset"
 msgstr "Reiniciar"
 
-#: ../includes/class-user-role-editor.php:889
+#: ../includes/class-user-role-editor.php:905
 msgid "DANGER! Resetting will restore default settings from WordPress Core."
 msgstr ""
 
-#: ../includes/class-user-role-editor.php:890
+#: ../includes/class-user-role-editor.php:906
 msgid ""
 "If any plugins have changed capabilities in any way upon installation (such "
 "as S2Member, WooCommerce, and many more), those capabilities will be DELETED!"
 msgstr ""
 
-#: ../includes/class-user-role-editor.php:891
+#: ../includes/class-user-role-editor.php:907
 msgid ""
 "For more information on how to undo changes and restore plugin capabilities "
 "go to"
 msgstr ""
 
-#: ../includes/class-user-role-editor.php:893
+#: ../includes/class-user-role-editor.php:909
 msgid "Continue?"
 msgstr ""
 
-#: ../includes/class-user-role-editor.php:894
+#: ../includes/class-user-role-editor.php:910
 msgid "Default Role"
 msgstr "Rol Predeterminado"
 
-#: ../includes/class-user-role-editor.php:895
+#: ../includes/class-user-role-editor.php:911
 msgid "Set New Default Role"
 msgstr "Establecer nuevo Rol"
 
-#: ../includes/class-user-role-editor.php:897
+#: ../includes/class-user-role-editor.php:913
 msgid ""
 "Warning! Be careful - removing critical capability could crash some plugin "
 "or other custom code"
@@ -258,11 +259,11 @@ msgstr ""
 "¡Atención! Ten cuidado - Eliminar Capacidadess esenciales podría inhabilitar "
 "algún plugin o código personalizado"
 
-#: ../includes/class-user-role-editor.php:898
+#: ../includes/class-user-role-editor.php:914
 msgid " Capability name (ID) can not be empty!"
 msgstr "¡El nombre de la Capacidad (ID) no puede estar vacío!"
 
-#: ../includes/class-user-role-editor.php:899
+#: ../includes/class-user-role-editor.php:915
 msgid ""
 " Capability name (ID) must contain latin characters, digits, hyphens or "
 "underscore only!"
@@ -270,12 +271,12 @@ msgstr ""
 "¡El nombre de la Capacidad (ID) sólo debe contener caracteres alfanuméricos, "
 "guiones altos o bajos!"
 
-#: ../includes/class-user-role-editor.php:933
-#: ../includes/class-user-role-editor.php:962
+#: ../includes/class-user-role-editor.php:949
+#: ../includes/class-user-role-editor.php:978
 msgid "Other Roles"
 msgstr "Otros Roles"
 
-#: ../includes/class-user-role-editor.php:944
+#: ../includes/class-user-role-editor.php:960
 msgid "Edit"
 msgstr "Editar"
 
@@ -309,80 +310,80 @@ msgstr "Filtro rápido:"
 msgid "Custom capabilities:"
 msgstr "Capacidades personalizadas:"
 
-#: ../includes/class-ure-lib.php:140
+#: ../includes/class-ure-lib.php:156
 msgid "Error: wrong request"
 msgstr "Error: Petición inválida"
 
-#: ../includes/class-ure-lib.php:173 ../includes/class-ure-lib.php:184
+#: ../includes/class-ure-lib.php:189 ../includes/class-ure-lib.php:200
 msgid "Role name (ID): "
 msgstr "Nombre del Rol (ID):"
 
-#: ../includes/class-ure-lib.php:175 ../includes/class-ure-lib.php:186
+#: ../includes/class-ure-lib.php:191 ../includes/class-ure-lib.php:202
 msgid "Display Role Name: "
 msgstr "Mostrar nombre del Rol:"
 
-#: ../includes/class-ure-lib.php:177
+#: ../includes/class-ure-lib.php:193
 msgid "Make copy of: "
 msgstr "Hacer copia de:"
 
-#: ../includes/class-ure-lib.php:193
+#: ../includes/class-ure-lib.php:209
 msgid "Select Role:"
 msgstr "Seleccionar Rol:"
 
-#: ../includes/class-ure-lib.php:208
+#: ../includes/class-ure-lib.php:224
 msgid "Delete:"
 msgstr "Eliminar:"
 
-#: ../includes/class-ure-lib.php:215
+#: ../includes/class-ure-lib.php:231
 msgid "Capability name (ID): "
 msgstr "Nombre de la Capacidad (ID):"
 
-#: ../includes/class-ure-lib.php:329
+#: ../includes/class-ure-lib.php:345
 msgid "Error: "
 msgstr "Error:"
 
-#: ../includes/class-ure-lib.php:329
+#: ../includes/class-ure-lib.php:345
 msgid "Role"
 msgstr "Rol"
 
-#: ../includes/class-ure-lib.php:330
+#: ../includes/class-ure-lib.php:346
 msgid "does not exist"
 msgstr "no existe"
 
-#: ../includes/class-ure-lib.php:373
+#: ../includes/class-ure-lib.php:389
 msgid "Role is updated successfully"
 msgstr "El Rol fue exitosamente actualizado"
 
-#: ../includes/class-ure-lib.php:375
+#: ../includes/class-ure-lib.php:391
 msgid "Roles are updated for all network"
 msgstr "Roles actualizados en toda la Red"
 
-#: ../includes/class-ure-lib.php:381
+#: ../includes/class-ure-lib.php:397
 msgid "Error occured during role(s) update"
 msgstr "Ocurrió un error durante la actualización del Rol"
 
-#: ../includes/class-ure-lib.php:388
+#: ../includes/class-ure-lib.php:404
 msgid "User capabilities are updated successfully"
 msgstr "Las Capacidades de Usuario fueron actualizadas exitosamente"
 
-#: ../includes/class-ure-lib.php:393
+#: ../includes/class-ure-lib.php:409
 msgid "Error occured during user update"
 msgstr "Ocurrió un error durante la actualización del Usuario"
 
-#: ../includes/class-ure-lib.php:451
+#: ../includes/class-ure-lib.php:467
 msgid "User Roles are restored to WordPress default values. "
 msgstr ""
 "Los Roles de Usuario fueron restaurados a los predeterminados de WordPress"
 
-#: ../includes/class-ure-lib.php:1317
+#: ../includes/class-ure-lib.php:1334
 msgid "Help"
 msgstr "Ayuda"
 
-#: ../includes/class-ure-lib.php:1675
+#: ../includes/class-ure-lib.php:1692
 msgid "Error is occur. Please check the log file."
 msgstr "Un error ha ocurrido. Por favor revisa el archivo de registro."
 
-#: ../includes/class-ure-lib.php:1718 ../includes/class-ure-lib.php:1785
+#: ../includes/class-ure-lib.php:1735 ../includes/class-ure-lib.php:1802
 msgid ""
 "Error: Role ID must contain latin characters, digits, hyphens or underscore "
 "only!"
@@ -390,386 +391,386 @@ msgstr ""
 "Error: ¡La ID del Rol sólo debe contener caracteres alfanuméricos, guiones "
 "altos o bajos!"
 
-#: ../includes/class-ure-lib.php:1722 ../includes/class-ure-lib.php:1789
+#: ../includes/class-ure-lib.php:1739 ../includes/class-ure-lib.php:1806
 msgid ""
 "Error: WordPress does not support numeric Role name (ID). Add latin "
 "characters to it."
 msgstr ""
 
-#: ../includes/class-ure-lib.php:1737
+#: ../includes/class-ure-lib.php:1754
 #, php-format
 msgid "Role %s exists already"
 msgstr "El Rol %s ya existe"
 
-#: ../includes/class-ure-lib.php:1752
+#: ../includes/class-ure-lib.php:1769
 msgid "Error is encountered during new role create operation"
 msgstr "Un error fue encontrado durante la creación del nuevo Rol"
 
-#: ../includes/class-ure-lib.php:1754
+#: ../includes/class-ure-lib.php:1771
 #, php-format
 msgid "Role %s is created successfully"
 msgstr "El Rol %s fue creado exitosamente"
 
-#: ../includes/class-ure-lib.php:1778
+#: ../includes/class-ure-lib.php:1795
 msgid "Error: Role ID is empty!"
 msgstr ""
 
-#: ../includes/class-ure-lib.php:1796
+#: ../includes/class-ure-lib.php:1813
 msgid "Error: Empty role display name is not allowed."
 msgstr ""
 
-#: ../includes/class-ure-lib.php:1803
+#: ../includes/class-ure-lib.php:1820
 #, fuzzy, php-format
 msgid "Role %s does not exists"
 msgstr "no existe"
 
-#: ../includes/class-ure-lib.php:1811
+#: ../includes/class-ure-lib.php:1828
 #, fuzzy, php-format
 msgid "Role %s is renamed to %s successfully"
 msgstr "El Rol %s fue creado exitosamente"
 
-#: ../includes/class-ure-lib.php:1878
+#: ../includes/class-ure-lib.php:1895
 msgid "Error encountered during role delete operation"
 msgstr "Un error fue encontrado durante la eliminación del Rol"
 
-#: ../includes/class-ure-lib.php:1880
+#: ../includes/class-ure-lib.php:1897
 msgid "Unused roles are deleted successfully"
 msgstr ""
 
-#: ../includes/class-ure-lib.php:1882
+#: ../includes/class-ure-lib.php:1899
 #, php-format
 msgid "Role %s is deleted successfully"
 msgstr "El Rol %s fue eliminado exitosamente"
 
-#: ../includes/class-ure-lib.php:1907
+#: ../includes/class-ure-lib.php:1924
 msgid "Error encountered during default role change operation"
 msgstr "Un error fue encontrado durante el cambio del Rol predeterminado"
 
-#: ../includes/class-ure-lib.php:1913
+#: ../includes/class-ure-lib.php:1930
 #, php-format
 msgid "Default role for new users is set to %s successfully"
 msgstr "El Rol predeterminado para nuevos usuarios ha sido establecido a %s"
 
-#: ../includes/class-ure-lib.php:1932
+#: ../includes/class-ure-lib.php:1949
 msgid "Editor"
 msgstr "Editor"
 
-#: ../includes/class-ure-lib.php:1933
+#: ../includes/class-ure-lib.php:1950
 msgid "Author"
 msgstr "Autor"
 
-#: ../includes/class-ure-lib.php:1934
+#: ../includes/class-ure-lib.php:1951
 msgid "Contributor"
 msgstr "Contribuyente"
 
-#: ../includes/class-ure-lib.php:1935
+#: ../includes/class-ure-lib.php:1952
 msgid "Subscriber"
 msgstr "Suscriptor"
 
-#: ../includes/class-ure-lib.php:1937
+#: ../includes/class-ure-lib.php:1954
 msgid "Switch themes"
 msgstr "Cambiar temas (plantillas)"
 
-#: ../includes/class-ure-lib.php:1938
+#: ../includes/class-ure-lib.php:1955
 msgid "Edit themes"
 msgstr "Editar temas (plantillas)"
 
-#: ../includes/class-ure-lib.php:1939
+#: ../includes/class-ure-lib.php:1956
 msgid "Activate plugins"
 msgstr "Activar plugins"
 
-#: ../includes/class-ure-lib.php:1940
+#: ../includes/class-ure-lib.php:1957
 msgid "Edit plugins"
 msgstr "Editar plugins"
 
-#: ../includes/class-ure-lib.php:1941
+#: ../includes/class-ure-lib.php:1958
 msgid "Edit users"
 msgstr "Editar usuarios"
 
-#: ../includes/class-ure-lib.php:1942
+#: ../includes/class-ure-lib.php:1959
 msgid "Edit files"
 msgstr "Editar archivos"
 
-#: ../includes/class-ure-lib.php:1943
+#: ../includes/class-ure-lib.php:1960
 msgid "Manage options"
 msgstr "Administrar opciones"
 
-#: ../includes/class-ure-lib.php:1944
+#: ../includes/class-ure-lib.php:1961
 msgid "Moderate comments"
 msgstr "Moderar comentarios"
 
-#: ../includes/class-ure-lib.php:1945
+#: ../includes/class-ure-lib.php:1962
 msgid "Manage categories"
 msgstr "Administrar categorías"
 
-#: ../includes/class-ure-lib.php:1946
+#: ../includes/class-ure-lib.php:1963
 msgid "Manage links"
 msgstr "Administrar enlaces"
 
-#: ../includes/class-ure-lib.php:1947
+#: ../includes/class-ure-lib.php:1964
 msgid "Upload files"
 msgstr "Subir archivos"
 
-#: ../includes/class-ure-lib.php:1948
+#: ../includes/class-ure-lib.php:1965
 msgid "Import"
 msgstr "Importar"
 
-#: ../includes/class-ure-lib.php:1949
+#: ../includes/class-ure-lib.php:1966
 msgid "Unfiltered html"
 msgstr "HTML sin filtrar"
 
-#: ../includes/class-ure-lib.php:1950
+#: ../includes/class-ure-lib.php:1967
 msgid "Edit posts"
 msgstr "Editar entradas"
 
-#: ../includes/class-ure-lib.php:1951
+#: ../includes/class-ure-lib.php:1968
 msgid "Edit others posts"
 msgstr "Editar entradas ajenas"
 
-#: ../includes/class-ure-lib.php:1952
+#: ../includes/class-ure-lib.php:1969
 msgid "Edit published posts"
 msgstr "Editar entradas publicadas"
 
-#: ../includes/class-ure-lib.php:1953
+#: ../includes/class-ure-lib.php:1970
 msgid "Publish posts"
 msgstr "Publicar entradas"
 
-#: ../includes/class-ure-lib.php:1954
+#: ../includes/class-ure-lib.php:1971
 msgid "Edit pages"
 msgstr "Editar páginas"
 
-#: ../includes/class-ure-lib.php:1955
+#: ../includes/class-ure-lib.php:1972
 msgid "Read"
 msgstr "Leer"
 
-#: ../includes/class-ure-lib.php:1956
+#: ../includes/class-ure-lib.php:1973
 msgid "Level 10"
 msgstr "Nivel 10"
 
-#: ../includes/class-ure-lib.php:1957
+#: ../includes/class-ure-lib.php:1974
 msgid "Level 9"
 msgstr "Nivel 9"
 
-#: ../includes/class-ure-lib.php:1958
+#: ../includes/class-ure-lib.php:1975
 msgid "Level 8"
 msgstr "Nivel 8"
 
-#: ../includes/class-ure-lib.php:1959
+#: ../includes/class-ure-lib.php:1976
 msgid "Level 7"
 msgstr "Nivel 7"
 
-#: ../includes/class-ure-lib.php:1960
+#: ../includes/class-ure-lib.php:1977
 msgid "Level 6"
 msgstr "Nivel 6"
 
-#: ../includes/class-ure-lib.php:1961
+#: ../includes/class-ure-lib.php:1978
 msgid "Level 5"
 msgstr "Nivel 5"
 
-#: ../includes/class-ure-lib.php:1962
+#: ../includes/class-ure-lib.php:1979
 msgid "Level 4"
 msgstr "Nivel 4"
 
-#: ../includes/class-ure-lib.php:1963
+#: ../includes/class-ure-lib.php:1980
 msgid "Level 3"
 msgstr "Nivel 3"
 
-#: ../includes/class-ure-lib.php:1964
+#: ../includes/class-ure-lib.php:1981
 msgid "Level 2"
 msgstr "Nivel 2"
 
-#: ../includes/class-ure-lib.php:1965
+#: ../includes/class-ure-lib.php:1982
 msgid "Level 1"
 msgstr "Nivel 1"
 
-#: ../includes/class-ure-lib.php:1966
+#: ../includes/class-ure-lib.php:1983
 msgid "Level 0"
 msgstr "Nivel 0"
 
-#: ../includes/class-ure-lib.php:1967
+#: ../includes/class-ure-lib.php:1984
 msgid "Edit others pages"
 msgstr "Editar páginas ajenas"
 
-#: ../includes/class-ure-lib.php:1968
+#: ../includes/class-ure-lib.php:1985
 msgid "Edit published pages"
 msgstr "Editar páginas publicadas"
 
-#: ../includes/class-ure-lib.php:1969
+#: ../includes/class-ure-lib.php:1986
 msgid "Publish pages"
 msgstr "Publicar páginas"
 
-#: ../includes/class-ure-lib.php:1970
+#: ../includes/class-ure-lib.php:1987
 msgid "Delete pages"
 msgstr "Eliminar páginas"
 
-#: ../includes/class-ure-lib.php:1971
+#: ../includes/class-ure-lib.php:1988
 msgid "Delete others pages"
 msgstr "Eliminar páginas ajenas"
 
-#: ../includes/class-ure-lib.php:1972
+#: ../includes/class-ure-lib.php:1989
 msgid "Delete published pages"
 msgstr "Eliminar páginas publicadas"
 
-#: ../includes/class-ure-lib.php:1973
+#: ../includes/class-ure-lib.php:1990
 msgid "Delete posts"
 msgstr "Eliminar entradas"
 
-#: ../includes/class-ure-lib.php:1974
+#: ../includes/class-ure-lib.php:1991
 msgid "Delete others posts"
 msgstr "Eliminar entradas ajenas"
 
-#: ../includes/class-ure-lib.php:1975
+#: ../includes/class-ure-lib.php:1992
 msgid "Delete published posts"
 msgstr "Eliminar entradas publicadas"
 
-#: ../includes/class-ure-lib.php:1976
+#: ../includes/class-ure-lib.php:1993
 msgid "Delete private posts"
 msgstr "Eliminar entradas privadas"
 
-#: ../includes/class-ure-lib.php:1977
+#: ../includes/class-ure-lib.php:1994
 msgid "Edit private posts"
 msgstr "Editar entradas privadas"
 
-#: ../includes/class-ure-lib.php:1978
+#: ../includes/class-ure-lib.php:1995
 msgid "Read private posts"
 msgstr "Leer entradas privadas"
 
-#: ../includes/class-ure-lib.php:1979
+#: ../includes/class-ure-lib.php:1996
 msgid "Delete private pages"
 msgstr "Eliminar páginas privadas"
 
-#: ../includes/class-ure-lib.php:1980
+#: ../includes/class-ure-lib.php:1997
 msgid "Edit private pages"
 msgstr "Editar páginas privadas"
 
-#: ../includes/class-ure-lib.php:1981
+#: ../includes/class-ure-lib.php:1998
 msgid "Read private pages"
 msgstr "Leer páginas privadas"
 
-#: ../includes/class-ure-lib.php:1982
+#: ../includes/class-ure-lib.php:1999
 msgid "Delete users"
 msgstr "Eliminar usuarios"
 
-#: ../includes/class-ure-lib.php:1983
+#: ../includes/class-ure-lib.php:2000
 msgid "Create users"
 msgstr "Crear usuarios"
 
-#: ../includes/class-ure-lib.php:1984
+#: ../includes/class-ure-lib.php:2001
 msgid "Unfiltered upload"
 msgstr "Subir sin filtrado"
 
-#: ../includes/class-ure-lib.php:1985
+#: ../includes/class-ure-lib.php:2002
 msgid "Edit dashboard"
 msgstr "Editar escritorio"
 
-#: ../includes/class-ure-lib.php:1986
+#: ../includes/class-ure-lib.php:2003
 msgid "Update plugins"
 msgstr "Actualizar plugins"
 
-#: ../includes/class-ure-lib.php:1987
+#: ../includes/class-ure-lib.php:2004
 msgid "Delete plugins"
 msgstr "Eliminar plugins"
 
-#: ../includes/class-ure-lib.php:1988
+#: ../includes/class-ure-lib.php:2005
 msgid "Install plugins"
 msgstr "Instalar plugins"
 
-#: ../includes/class-ure-lib.php:1989
+#: ../includes/class-ure-lib.php:2006
 msgid "Update themes"
 msgstr "Actualizar temas (plantillas)"
 
-#: ../includes/class-ure-lib.php:1990
+#: ../includes/class-ure-lib.php:2007
 msgid "Install themes"
 msgstr "Instalar temas (plantillas)"
 
-#: ../includes/class-ure-lib.php:1991
+#: ../includes/class-ure-lib.php:2008
 msgid "Update core"
 msgstr "Actualizar núcleo"
 
-#: ../includes/class-ure-lib.php:1992
+#: ../includes/class-ure-lib.php:2009
 msgid "List users"
 msgstr "Listar usuarios"
 
-#: ../includes/class-ure-lib.php:1993
+#: ../includes/class-ure-lib.php:2010
 msgid "Remove users"
 msgstr "Eliminar usuarios"
 
-#: ../includes/class-ure-lib.php:1994
+#: ../includes/class-ure-lib.php:2011
 msgid "Add users"
 msgstr "Agregar usuarios"
 
-#: ../includes/class-ure-lib.php:1995
+#: ../includes/class-ure-lib.php:2012
 msgid "Promote users"
 msgstr "Promover usuarios"
 
-#: ../includes/class-ure-lib.php:1996
+#: ../includes/class-ure-lib.php:2013
 msgid "Edit theme options"
 msgstr "Editar opciones del tema (plantilla)"
 
-#: ../includes/class-ure-lib.php:1997
+#: ../includes/class-ure-lib.php:2014
 msgid "Delete themes"
 msgstr "Eliminar temas (plantillas)"
 
-#: ../includes/class-ure-lib.php:1998
+#: ../includes/class-ure-lib.php:2015
 msgid "Export"
 msgstr "Exportar"
 
-#: ../includes/class-ure-lib.php:2108
+#: ../includes/class-ure-lib.php:2125
 msgid "Error: Capability name must contain latin characters and digits only!"
 msgstr ""
 "Error: El nombre de la Capacidad sólo debe contener caracteres alfanuméricos!"
 
-#: ../includes/class-ure-lib.php:2121
+#: ../includes/class-ure-lib.php:2138
 #, php-format
 msgid "Capability %s is added successfully"
 msgstr "La Capacidad %s fue agregada exitosamente"
 
-#: ../includes/class-ure-lib.php:2123
+#: ../includes/class-ure-lib.php:2140
 #, php-format
 msgid "Capability %s exists already"
 msgstr "La Capacidad %s ya existe"
 
-#: ../includes/class-ure-lib.php:2148
+#: ../includes/class-ure-lib.php:2165
 #, php-format
 msgid "Error! You do not have permission to delete this capability: %s!"
 msgstr ""
 "¡Error! No cuentas con suficientes permisos para eliminar esta Capacidad: %s!"
 
-#: ../includes/class-ure-lib.php:2167
+#: ../includes/class-ure-lib.php:2184
 #, php-format
 msgid "Capability %s is removed successfully"
 msgstr "La Capacidad %s fue eliminada exitosamente"
 
-#: ../includes/class-ure-lib.php:2271
+#: ../includes/class-ure-lib.php:2288
 msgid "Version:"
 msgstr ""
 
-#: ../includes/class-ure-lib.php:2272
+#: ../includes/class-ure-lib.php:2289
 msgid "Author's website"
 msgstr "Sitio web del Autor"
 
-#: ../includes/class-ure-lib.php:2273
+#: ../includes/class-ure-lib.php:2290
 msgid "Plugin webpage"
 msgstr "Página web del Plugin"
 
-#: ../includes/class-ure-lib.php:2274
+#: ../includes/class-ure-lib.php:2291
 #, fuzzy
 msgid "Plugin download"
 msgstr "Página web del Plugin"
 
-#: ../includes/class-ure-lib.php:2276
+#: ../includes/class-ure-lib.php:2293
 msgid "FAQ"
 msgstr "FAQ"
 
-#: ../includes/class-ure-lib.php:2324
+#: ../includes/class-ure-lib.php:2341
 msgid "None"
 msgstr "Ninguno"
 
-#: ../includes/class-ure-lib.php:2351
+#: ../includes/class-ure-lib.php:2368
 msgid "Delete All Unused Roles"
 msgstr ""
 
-#: ../includes/class-ure-lib.php:2375
+#: ../includes/class-ure-lib.php:2392
 msgid "&mdash; No role for this site &mdash;"
 msgstr ""
 
@@ -815,14 +816,32 @@ msgid ""
 "deprecated capabilities."
 msgstr ""
 
-#: ../includes/class-ure-screen-help.php:27
-msgid "Allow create, edit and delete users to not super-admininstrators"
+#: ../includes/class-ure-screen-help.php:41
+#, fuzzy
+msgid "select roles below"
+msgstr "Deseleccionar todo"
+
+#: ../includes/class-ure-screen-help.php:56
+msgid "Other default roles for new registered user"
+msgstr ""
+
+#: ../includes/class-ure-screen-help.php:57
+msgid ""
+"select roles below to assign them to the new user automatically as an "
+"addition to the primary role. Note for multisite environment: take into "
+"account that other default roles should exist at the site, in order to be "
+"assigned to the new registered users."
+msgstr ""
+
+#: ../includes/class-ure-screen-help.php:75
+msgid "Allow non super-admininstrators to create, edit and delete users"
 msgstr ""
 
-#: ../includes/class-ure-screen-help.php:28
+#: ../includes/class-ure-screen-help.php:76
 msgid ""
 "Super administrator only may create, edit and delete users under WordPress "
-"multi-site. Turn this option on in order to remove this limitation."
+"multi-site by default. Turn this option on in order to remove this "
+"limitation."
 msgstr ""
 
 #~ msgid "About this Plugin:"
index 2e9df39..aafcdc1 100644 (file)
Binary files a/wp-content/plugins/user-role-editor/lang/ure-fa_IR.mo and b/wp-content/plugins/user-role-editor/lang/ure-fa_IR.mo differ
index ee5821a..b3a4365 100644 (file)
@@ -2,7 +2,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: User Role Editor 2.0\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-09-08 21:33+0700\n"
+"POT-Creation-Date: 2014-10-01 12:45+0700\n"
 "PO-Revision-Date: \n"
 "Last-Translator: Vladimir Garagulya <vladimir@shinephp.com>\n"
 "Language-Team: Morteza Gholami <Morteza.Gholami@Yahoo.Com>\n"
@@ -22,58 +22,63 @@ msgid "User Role Editor - Options"
 msgstr "ویرایش‌گر نقش کاربر - تنظیمات"
 
 #: ../includes/settings-template.php:21
+#: ../includes/class-user-role-editor.php:547
 msgid "General"
 msgstr "عمومی"
 
-#: ../includes/settings-template.php:22
+#: ../includes/settings-template.php:26
+#: ../includes/class-user-role-editor.php:553
 msgid "Additional Modules"
 msgstr "ماژول‌های اضافی"
 
-#: ../includes/settings-template.php:23
+#: ../includes/settings-template.php:30
+#: ../includes/class-user-role-editor.php:559
 msgid "Default Roles"
 msgstr "نقش‌های پیش‌فرض"
 
-#: ../includes/settings-template.php:27
+#: ../includes/settings-template.php:34
+#: ../includes/class-user-role-editor.php:564
 msgid "Multisite"
 msgstr "چندسایتی"
 
-#: ../includes/settings-template.php:31
+#: ../includes/settings-template.php:39
 msgid "About"
 msgstr "درباره"
 
-#: ../includes/settings-template.php:42
+#: ../includes/settings-template.php:53
 #: ../includes/class-ure-screen-help.php:15
 msgid "Show Administrator role at User Role Editor"
 msgstr "نمایش نقش مدیر در ویرایش‌گر نقش کاربر"
 
-#: ../includes/settings-template.php:50
+#: ../includes/settings-template.php:61
 #: ../includes/class-ure-screen-help.php:18
 msgid "Show capabilities in the human readable form"
 msgstr "نمایش قابلیت‌ها در حالت قابل خواندن برای انسان"
 
-#: ../includes/settings-template.php:58 ../includes/ure-role-edit.php:40
+#: ../includes/settings-template.php:69 ../includes/ure-role-edit.php:40
 #: ../includes/ure-user-edit.php:63 ../includes/class-ure-screen-help.php:21
 msgid "Show deprecated capabilities"
 msgstr "نمایش قابلیت‌های بد دانسته ‌شده"
 
-#: ../includes/settings-template.php:69 ../includes/settings-template.php:101
-#: ../includes/settings-template.php:131 ../includes/settings-template.php:160
+#: ../includes/settings-template.php:81 ../includes/settings-template.php:117
+#: ../includes/settings-template.php:149 ../includes/settings-template.php:181
 msgid "Save"
 msgstr "ذخیره"
 
-#: ../includes/settings-template.php:86
+#: ../includes/settings-template.php:102
+#: ../includes/class-ure-screen-help.php:40
 msgid "Count users without role"
 msgstr "شمارش کاربران بدون نقش"
 
-#: ../includes/settings-template.php:111
+#: ../includes/settings-template.php:129
 msgid "Primary default role: "
 msgstr "نقش پیش‌فرض اولیه: "
 
-#: ../includes/settings-template.php:118
+#: ../includes/settings-template.php:136
 msgid "Other default roles for new registered user: "
 msgstr "دیگر نقش‌های پیش‌فرض برای کاربران تازه ثبت‌نام شده: "
 
-#: ../includes/settings-template.php:124
+#: ../includes/settings-template.php:142
 msgid ""
 "Note for multisite environment: take into account that other default roles "
 "should exist at the site, in order to be assigned to the new registered "
@@ -82,7 +87,7 @@ msgstr ""
 "قابل توجه محیط چند سایتی: رفتن به حسابی که در سایت نقش‌های پیش فرض دیگری "
 "موجود است، به منظور اختصاص دادن به کاربران تازه ثبت‌نام شده."
 
-#: ../includes/settings-template.php:147
+#: ../includes/settings-template.php:168
 msgid "Allow non super administrators to create, edit, and delete users"
 msgstr "اجازه به غیر مدیران اصلی برای ایجاد، ویرایش و حذف کاربران"
 
@@ -103,128 +108,124 @@ msgstr "ارائه‌ی نقش جدید"
 msgid "You do not have permission to edit this user."
 msgstr "شما اجازه‌ی ویرایش این کاربر را ندارید."
 
-#: ../includes/class-user-role-editor.php:424
+#: ../includes/class-user-role-editor.php:422
 msgid "Capabilities"
 msgstr "قابلیت‌ها"
 
-#: ../includes/class-user-role-editor.php:517
+#: ../includes/class-user-role-editor.php:514
 msgid "Settings"
 msgstr "تنظیمات"
 
-#: ../includes/class-user-role-editor.php:530
-#: ../includes/class-ure-lib.php:2275
+#: ../includes/class-user-role-editor.php:525
+#: ../includes/class-ure-lib.php:2292
 msgid "Changelog"
 msgstr "گزارش تغییرات"
 
-#: ../includes/class-user-role-editor.php:552
-msgid "Overview"
-msgstr "مرور کلی"
-
-#: ../includes/class-user-role-editor.php:561
-#: ../includes/class-user-role-editor.php:589
-#: ../includes/class-user-role-editor.php:930
-#: ../includes/class-ure-lib.php:232
+#: ../includes/class-user-role-editor.php:573
+#: ../includes/class-user-role-editor.php:601
+#: ../includes/class-user-role-editor.php:946
+#: ../includes/class-ure-lib.php:248
 msgid "User Role Editor"
 msgstr "ویرایش‌گر نقش کاربر"
 
-#: ../includes/class-user-role-editor.php:646
-#: ../includes/class-user-role-editor.php:664
-#: ../includes/class-user-role-editor.php:708
+#: ../includes/class-user-role-editor.php:658
+#: ../includes/class-user-role-editor.php:676
+#: ../includes/class-user-role-editor.php:720
 msgid "User Role Editor options are updated"
 msgstr "تنظیمات ویرایش‌گر نقش کاربر بروز شد"
 
-#: ../includes/class-user-role-editor.php:692
+#: ../includes/class-user-role-editor.php:704
 msgid "Default Roles are updated"
 msgstr "نقش‌های پیش فرض بروز شدند"
 
-#: ../includes/class-user-role-editor.php:716
+#: ../includes/class-user-role-editor.php:728
 msgid ""
 "You do not have sufficient permissions to manage options for User Role "
 "Editor."
 msgstr "شما مجوز کافی برای مدیریت تنظیمات ویرایش‌گر نقش کاربر را ندارید."
 
-#: ../includes/class-user-role-editor.php:791
+#: ../includes/class-user-role-editor.php:807
 msgid "Insufficient permissions to work with User Role Editor"
 msgstr "مجوز ناکافی برای کار با ویرایش‌گر نقش کاربر"
 
-#: ../includes/class-user-role-editor.php:872
+#: ../includes/class-user-role-editor.php:888
 msgid "Select All"
 msgstr "انتخاب همه"
 
-#: ../includes/class-user-role-editor.php:873
+#: ../includes/class-user-role-editor.php:889
 msgid "Unselect All"
 msgstr "عدم‌انتخاب همه"
 
-#: ../includes/class-user-role-editor.php:874
+#: ../includes/class-user-role-editor.php:890
 msgid "Reverse"
 msgstr "وارونه"
 
-#: ../includes/class-user-role-editor.php:875
+#: ../includes/class-user-role-editor.php:891
 msgid "Update"
 msgstr "بروزرسانی"
 
-#: ../includes/class-user-role-editor.php:876
+#: ../includes/class-user-role-editor.php:892
 msgid "Please confirm permissions update"
 msgstr "لطفا مجوز بروزرسانی را تایید کنید"
 
-#: ../includes/class-user-role-editor.php:877
+#: ../includes/class-user-role-editor.php:893
 msgid "Add New Role"
 msgstr "افزودن نقش جدید"
 
-#: ../includes/class-user-role-editor.php:878
-#: ../includes/class-user-role-editor.php:883
+#: ../includes/class-user-role-editor.php:894
+#: ../includes/class-user-role-editor.php:899
 #, fuzzy
 msgid "Rename Role"
 msgstr "حذف نقش"
 
-#: ../includes/class-user-role-editor.php:879
+#: ../includes/class-user-role-editor.php:895
 msgid " Role name (ID) can not be empty!"
 msgstr " نام نقش (شناسه) نمی تواند خالی باشد!"
 
-#: ../includes/class-user-role-editor.php:880
+#: ../includes/class-user-role-editor.php:896
 msgid ""
 " Role name (ID) must contain latin characters, digits, hyphens or underscore "
 "only!"
 msgstr ""
 " نام نقش (شناسه) باید فقط شامل حروف لاتین، اعداد، خط فاصله یا زیرخط باشد!"
 
-#: ../includes/class-user-role-editor.php:881
+#: ../includes/class-user-role-editor.php:897
 msgid ""
 " WordPress does not support numeric Role name (ID). Add latin characters to "
 "it."
 msgstr ""
 " وردپرس از نام نقش (شناسه) عددی پشتیبانی نمی‌کند. حروف لاتین به آن اضافه کنید."
 
-#: ../includes/class-user-role-editor.php:882
+#: ../includes/class-user-role-editor.php:898
 msgid "Add Role"
 msgstr "افزودن نقش"
 
-#: ../includes/class-user-role-editor.php:884
+#: ../includes/class-user-role-editor.php:900
 msgid "Delete Role"
 msgstr "حذف نقش"
 
-#: ../includes/class-user-role-editor.php:885
+#: ../includes/class-user-role-editor.php:901
 msgid "Cancel"
 msgstr "لغو"
 
-#: ../includes/class-user-role-editor.php:886
+#: ../includes/class-user-role-editor.php:902
 msgid "Add Capability"
 msgstr "افزودن قابلیت"
 
-#: ../includes/class-user-role-editor.php:887
-#: ../includes/class-user-role-editor.php:896
+#: ../includes/class-user-role-editor.php:903
+#: ../includes/class-user-role-editor.php:912
 msgid "Delete Capability"
 msgstr "حذف قابلیت"
 
-#: ../includes/class-user-role-editor.php:888
+#: ../includes/class-user-role-editor.php:904
 msgid "Reset"
 msgstr "بازنشانی"
 
-#: ../includes/class-user-role-editor.php:889
+#: ../includes/class-user-role-editor.php:905
 msgid "DANGER! Resetting will restore default settings from WordPress Core."
 msgstr "خطر! بازنشانی، تنظیمات پیش‌فرض را از هسته‌ی وردپرس بازمی‌گرداند."
 
-#: ../includes/class-user-role-editor.php:890
+#: ../includes/class-user-role-editor.php:906
 msgid ""
 "If any plugins have changed capabilities in any way upon installation (such "
 "as S2Member, WooCommerce, and many more), those capabilities will be DELETED!"
@@ -232,7 +233,7 @@ msgstr ""
 "اگر هریک از افزونه‌ها پس از نصب به هر نحو قابلیت‌ها را تغییر دهند (مانند "
 "S2Member ، WooCommerce و بسیاری دیگر) آن قابلیت‌ها حذف خواهند شد!"
 
-#: ../includes/class-user-role-editor.php:891
+#: ../includes/class-user-role-editor.php:907
 msgid ""
 "For more information on how to undo changes and restore plugin capabilities "
 "go to"
@@ -240,19 +241,19 @@ msgstr ""
 "برای کسب اطلاعات بیشتر درباره چگونگی خنثی‌سازی تغییرات و ترمیم‌کردن قابلیت ها "
 "مراجعه کنید به"
 
-#: ../includes/class-user-role-editor.php:893
+#: ../includes/class-user-role-editor.php:909
 msgid "Continue?"
 msgstr "ادامه؟"
 
-#: ../includes/class-user-role-editor.php:894
+#: ../includes/class-user-role-editor.php:910
 msgid "Default Role"
 msgstr "نقش پیش‌فرض"
 
-#: ../includes/class-user-role-editor.php:895
+#: ../includes/class-user-role-editor.php:911
 msgid "Set New Default Role"
 msgstr "نشاندن نقش پیش‌فرض جدید"
 
-#: ../includes/class-user-role-editor.php:897
+#: ../includes/class-user-role-editor.php:913
 msgid ""
 "Warning! Be careful - removing critical capability could crash some plugin "
 "or other custom code"
@@ -260,23 +261,23 @@ msgstr ""
 "اخطار! مراقب باشید - حذف قابلیت مهم می‌تواند برخی از افزونه‌ها یا دیگر کدهای "
 "سفارشی را دچار سانحه کند"
 
-#: ../includes/class-user-role-editor.php:898
+#: ../includes/class-user-role-editor.php:914
 msgid " Capability name (ID) can not be empty!"
 msgstr " نام قابلیت (شناسه) نمی تواند خالی باشد!"
 
-#: ../includes/class-user-role-editor.php:899
+#: ../includes/class-user-role-editor.php:915
 msgid ""
 " Capability name (ID) must contain latin characters, digits, hyphens or "
 "underscore only!"
 msgstr ""
 " نام قابلیت (شناسه) باید فقط شامل حروف لاتین، اعداد، خط فاصله یا زیرخط باشد!"
 
-#: ../includes/class-user-role-editor.php:933
-#: ../includes/class-user-role-editor.php:962
+#: ../includes/class-user-role-editor.php:949
+#: ../includes/class-user-role-editor.php:978
 msgid "Other Roles"
 msgstr "دیگر نقش‌ها"
 
-#: ../includes/class-user-role-editor.php:944
+#: ../includes/class-user-role-editor.php:960
 msgid "Edit"
 msgstr "ویرایش"
 
@@ -308,86 +309,86 @@ msgstr "فیلتر سریع:"
 msgid "Custom capabilities:"
 msgstr "قابلیت‌های سفارشی:"
 
-#: ../includes/class-ure-lib.php:140
+#: ../includes/class-ure-lib.php:156
 msgid "Error: wrong request"
 msgstr "خطا: درخواست اشتباه"
 
-#: ../includes/class-ure-lib.php:173 ../includes/class-ure-lib.php:184
+#: ../includes/class-ure-lib.php:189 ../includes/class-ure-lib.php:200
 msgid "Role name (ID): "
 msgstr "نام نقش (شناسه): "
 
-#: ../includes/class-ure-lib.php:175 ../includes/class-ure-lib.php:186
+#: ../includes/class-ure-lib.php:191 ../includes/class-ure-lib.php:202
 msgid "Display Role Name: "
 msgstr "نمایش نام نقش: "
 
-#: ../includes/class-ure-lib.php:177
+#: ../includes/class-ure-lib.php:193
 msgid "Make copy of: "
 msgstr "ایجاد رونوشت از: "
 
-#: ../includes/class-ure-lib.php:193
+#: ../includes/class-ure-lib.php:209
 msgid "Select Role:"
 msgstr "انتخاب نقش:"
 
-#: ../includes/class-ure-lib.php:208
+#: ../includes/class-ure-lib.php:224
 msgid "Delete:"
 msgstr "حذف:"
 
-#: ../includes/class-ure-lib.php:215
+#: ../includes/class-ure-lib.php:231
 msgid "Capability name (ID): "
 msgstr "نام قابلیت (شناسه): "
 
-#: ../includes/class-ure-lib.php:329
+#: ../includes/class-ure-lib.php:345
 msgid "Error: "
 msgstr "خطا: "
 
-#: ../includes/class-ure-lib.php:329
+#: ../includes/class-ure-lib.php:345
 msgid "Role"
 msgstr "نقش"
 
-#: ../includes/class-ure-lib.php:330
+#: ../includes/class-ure-lib.php:346
 msgid "does not exist"
 msgstr "موجود نمی‌باشد"
 
-#: ../includes/class-ure-lib.php:373
+#: ../includes/class-ure-lib.php:389
 msgid "Role is updated successfully"
 msgstr "نقش با موفقیت بروز شد"
 
-#: ../includes/class-ure-lib.php:375
+#: ../includes/class-ure-lib.php:391
 msgid "Roles are updated for all network"
 msgstr "نقش‌ها برای تمامی شبکه بروز شد"
 
-#: ../includes/class-ure-lib.php:381
+#: ../includes/class-ure-lib.php:397
 msgid "Error occured during role(s) update"
 msgstr "خطایی در هنگام بروزسانی نقش(ها) رخ داد"
 
-#: ../includes/class-ure-lib.php:388
+#: ../includes/class-ure-lib.php:404
 msgid "User capabilities are updated successfully"
 msgstr "قابلیت‌های کاربر با موفقیت بروز شدند"
 
-#: ../includes/class-ure-lib.php:393
+#: ../includes/class-ure-lib.php:409
 msgid "Error occured during user update"
 msgstr "خطایی در هنگام بروزرسانی کاربر رخ داد"
 
-#: ../includes/class-ure-lib.php:451
+#: ../includes/class-ure-lib.php:467
 msgid "User Roles are restored to WordPress default values. "
 msgstr "نقش‌های کاربر به مقدار پیش‌فرض وردپرس ترمیم شد."
 
-#: ../includes/class-ure-lib.php:1317
+#: ../includes/class-ure-lib.php:1334
 msgid "Help"
 msgstr "راهنما"
 
-#: ../includes/class-ure-lib.php:1675
+#: ../includes/class-ure-lib.php:1692
 msgid "Error is occur. Please check the log file."
 msgstr "خطایی رخ داده است. لطفا فایل گزارش را چک کنید."
 
-#: ../includes/class-ure-lib.php:1718 ../includes/class-ure-lib.php:1785
+#: ../includes/class-ure-lib.php:1735 ../includes/class-ure-lib.php:1802
 msgid ""
 "Error: Role ID must contain latin characters, digits, hyphens or underscore "
 "only!"
 msgstr ""
 "خطا: شناسه‌ی نقش باید فقط شامل حروف لاتین، اعداد، خط فاصله یا زیرخط باشد!"
 
-#: ../includes/class-ure-lib.php:1722 ../includes/class-ure-lib.php:1789
+#: ../includes/class-ure-lib.php:1739 ../includes/class-ure-lib.php:1806
 msgid ""
 "Error: WordPress does not support numeric Role name (ID). Add latin "
 "characters to it."
@@ -395,377 +396,377 @@ msgstr ""
 "خطا: وردپرس از نام نقش (شناسه) عددی پشتیبانی نمی‌کند. حروف لاتین به آن اضافه "
 "کنید."
 
-#: ../includes/class-ure-lib.php:1737
+#: ../includes/class-ure-lib.php:1754
 #, php-format
 msgid "Role %s exists already"
 msgstr "نقش %s از پیش موجود است"
 
-#: ../includes/class-ure-lib.php:1752
+#: ../includes/class-ure-lib.php:1769
 msgid "Error is encountered during new role create operation"
 msgstr "با خطایی در هنگام عملیات ساخت نقش جدید روبرو شدیم"
 
-#: ../includes/class-ure-lib.php:1754
+#: ../includes/class-ure-lib.php:1771
 #, php-format
 msgid "Role %s is created successfully"
 msgstr "نقش %s با موفقیت ایجاد شد"
 
-#: ../includes/class-ure-lib.php:1778
+#: ../includes/class-ure-lib.php:1795
 msgid "Error: Role ID is empty!"
 msgstr ""
 
-#: ../includes/class-ure-lib.php:1796
+#: ../includes/class-ure-lib.php:1813
 msgid "Error: Empty role display name is not allowed."
 msgstr ""
 
-#: ../includes/class-ure-lib.php:1803
+#: ../includes/class-ure-lib.php:1820
 #, fuzzy, php-format
 msgid "Role %s does not exists"
 msgstr "موجود نمی‌باشد"
 
-#: ../includes/class-ure-lib.php:1811
+#: ../includes/class-ure-lib.php:1828
 #, fuzzy, php-format
 msgid "Role %s is renamed to %s successfully"
 msgstr "نقش %s با موفقیت ایجاد شد"
 
-#: ../includes/class-ure-lib.php:1878
+#: ../includes/class-ure-lib.php:1895
 msgid "Error encountered during role delete operation"
 msgstr "با خطایی در هنگام عملیات حذف نقش روبرو شدیم"
 
-#: ../includes/class-ure-lib.php:1880
+#: ../includes/class-ure-lib.php:1897
 msgid "Unused roles are deleted successfully"
 msgstr "نقش‌های استفاده نشده با موفقیت حذف شدند"
 
-#: ../includes/class-ure-lib.php:1882
+#: ../includes/class-ure-lib.php:1899
 #, php-format
 msgid "Role %s is deleted successfully"
 msgstr "نقش %s با موفقیت حذف شد"
 
-#: ../includes/class-ure-lib.php:1907
+#: ../includes/class-ure-lib.php:1924
 msgid "Error encountered during default role change operation"
 msgstr "با خطایی در هنگام عملیات تغییر نقش پیش‌فرض روبرو شدیم"
 
-#: ../includes/class-ure-lib.php:1913
+#: ../includes/class-ure-lib.php:1930
 #, php-format
 msgid "Default role for new users is set to %s successfully"
 msgstr "نقش پیش‌فرض برای کاربران جدید با موفقیت روی %s نشانده شد"
 
-#: ../includes/class-ure-lib.php:1932
+#: ../includes/class-ure-lib.php:1949
 msgid "Editor"
 msgstr "ویرایش‌گر"
 
-#: ../includes/class-ure-lib.php:1933
+#: ../includes/class-ure-lib.php:1950
 msgid "Author"
 msgstr "نویسنده"
 
-#: ../includes/class-ure-lib.php:1934
+#: ../includes/class-ure-lib.php:1951
 msgid "Contributor"
 msgstr "مشارکت‌کننده"
 
-#: ../includes/class-ure-lib.php:1935
+#: ../includes/class-ure-lib.php:1952
 msgid "Subscriber"
 msgstr "مشترک"
 
-#: ../includes/class-ure-lib.php:1937
+#: ../includes/class-ure-lib.php:1954
 msgid "Switch themes"
 msgstr "تغییر پوسته‌ها"
 
-#: ../includes/class-ure-lib.php:1938
+#: ../includes/class-ure-lib.php:1955
 msgid "Edit themes"
 msgstr "ویرایش پوسته‌ها"
 
-#: ../includes/class-ure-lib.php:1939
+#: ../includes/class-ure-lib.php:1956
 msgid "Activate plugins"
 msgstr "فعال‌سازی افزونه‌ها"
 
-#: ../includes/class-ure-lib.php:1940
+#: ../includes/class-ure-lib.php:1957
 msgid "Edit plugins"
 msgstr "ویرایش افزونه‌ها"
 
-#: ../includes/class-ure-lib.php:1941
+#: ../includes/class-ure-lib.php:1958
 msgid "Edit users"
 msgstr "ویرایش کاربران"
 
-#: ../includes/class-ure-lib.php:1942
+#: ../includes/class-ure-lib.php:1959
 msgid "Edit files"
 msgstr "ویرایش فایل‌ها"
 
-#: ../includes/class-ure-lib.php:1943
+#: ../includes/class-ure-lib.php:1960
 msgid "Manage options"
 msgstr "مدیریت تنظیمات"
 
-#: ../includes/class-ure-lib.php:1944
+#: ../includes/class-ure-lib.php:1961
 msgid "Moderate comments"
 msgstr "مدیریت دیدگاه‌ها"
 
-#: ../includes/class-ure-lib.php:1945
+#: ../includes/class-ure-lib.php:1962
 msgid "Manage categories"
 msgstr "مدیریت دسته‌ها"
 
-#: ../includes/class-ure-lib.php:1946
+#: ../includes/class-ure-lib.php:1963
 msgid "Manage links"
 msgstr "مدیریت پیوندها"
 
-#: ../includes/class-ure-lib.php:1947
+#: ../includes/class-ure-lib.php:1964
 msgid "Upload files"
 msgstr "بارگذاری فایل‌ها"
 
-#: ../includes/class-ure-lib.php:1948
+#: ../includes/class-ure-lib.php:1965
 msgid "Import"
 msgstr "درون‌ریزی"
 
-#: ../includes/class-ure-lib.php:1949
+#: ../includes/class-ure-lib.php:1966
 msgid "Unfiltered html"
 msgstr "اچ‌تی‌ام‌ال فیلتر‌نشده"
 
-#: ../includes/class-ure-lib.php:1950
+#: ../includes/class-ure-lib.php:1967
 msgid "Edit posts"
 msgstr "ویرایش نوشته‌ها"
 
-#: ../includes/class-ure-lib.php:1951
+#: ../includes/class-ure-lib.php:1968
 msgid "Edit others posts"
 msgstr "ویرایش نوشته‌ی دیگران"
 
-#: ../includes/class-ure-lib.php:1952
+#: ../includes/class-ure-lib.php:1969
 msgid "Edit published posts"
 msgstr "ویرایش نوشته‌های منتشر‌شده"
 
-#: ../includes/class-ure-lib.php:1953
+#: ../includes/class-ure-lib.php:1970
 msgid "Publish posts"
 msgstr "انتشار نوشته‌ها"
 
-#: ../includes/class-ure-lib.php:1954
+#: ../includes/class-ure-lib.php:1971
 msgid "Edit pages"
 msgstr "ویرایش صفحات"
 
-#: ../includes/class-ure-lib.php:1955
+#: ../includes/class-ure-lib.php:1972
 msgid "Read"
 msgstr "خواندن"
 
-#: ../includes/class-ure-lib.php:1956
+#: ../includes/class-ure-lib.php:1973
 msgid "Level 10"
 msgstr "سطح ۱۰"
 
-#: ../includes/class-ure-lib.php:1957
+#: ../includes/class-ure-lib.php:1974
 msgid "Level 9"
 msgstr "سطح ۹"
 
-#: ../includes/class-ure-lib.php:1958
+#: ../includes/class-ure-lib.php:1975
 msgid "Level 8"
 msgstr "سطح ۸"
 
-#: ../includes/class-ure-lib.php:1959
+#: ../includes/class-ure-lib.php:1976
 msgid "Level 7"
 msgstr "سطح ۷"
 
-#: ../includes/class-ure-lib.php:1960
+#: ../includes/class-ure-lib.php:1977
 msgid "Level 6"
 msgstr "سطح ۶"
 
-#: ../includes/class-ure-lib.php:1961
+#: ../includes/class-ure-lib.php:1978
 msgid "Level 5"
 msgstr "سطح ۵"
 
-#: ../includes/class-ure-lib.php:1962
+#: ../includes/class-ure-lib.php:1979
 msgid "Level 4"
 msgstr "سطح ۴"
 
-#: ../includes/class-ure-lib.php:1963
+#: ../includes/class-ure-lib.php:1980
 msgid "Level 3"
 msgstr "سطح ۳"
 
-#: ../includes/class-ure-lib.php:1964
+#: ../includes/class-ure-lib.php:1981
 msgid "Level 2"
 msgstr "سطح ۲"
 
-#: ../includes/class-ure-lib.php:1965
+#: ../includes/class-ure-lib.php:1982
 msgid "Level 1"
 msgstr "سطح ۱"
 
-#: ../includes/class-ure-lib.php:1966
+#: ../includes/class-ure-lib.php:1983
 msgid "Level 0"
 msgstr "سطح ۰"
 
-#: ../includes/class-ure-lib.php:1967
+#: ../includes/class-ure-lib.php:1984
 msgid "Edit others pages"
 msgstr "ویرایش صفحات دیگران"
 
-#: ../includes/class-ure-lib.php:1968
+#: ../includes/class-ure-lib.php:1985
 msgid "Edit published pages"
 msgstr "ویرایش صفحات منتشر‌شده"
 
-#: ../includes/class-ure-lib.php:1969
+#: ../includes/class-ure-lib.php:1986
 msgid "Publish pages"
 msgstr "انتشار صفحات"
 
-#: ../includes/class-ure-lib.php:1970
+#: ../includes/class-ure-lib.php:1987
 msgid "Delete pages"
 msgstr "حذف صفحات"
 
-#: ../includes/class-ure-lib.php:1971
+#: ../includes/class-ure-lib.php:1988
 msgid "Delete others pages"
 msgstr "حذف صفحات دیگران"
 
-#: ../includes/class-ure-lib.php:1972
+#: ../includes/class-ure-lib.php:1989
 msgid "Delete published pages"
 msgstr "حذف صفحات منتشر‌شده"
 
-#: ../includes/class-ure-lib.php:1973
+#: ../includes/class-ure-lib.php:1990
 msgid "Delete posts"
 msgstr "حذف صفحات"
 
-#: ../includes/class-ure-lib.php:1974
+#: ../includes/class-ure-lib.php:1991
 msgid "Delete others posts"
 msgstr "حذف نوشته‌های دیگران"
 
-#: ../includes/class-ure-lib.php:1975
+#: ../includes/class-ure-lib.php:1992
 msgid "Delete published posts"
 msgstr "حذف نوشته‌های منتشر‌شده"
 
-#: ../includes/class-ure-lib.php:1976
+#: ../includes/class-ure-lib.php:1993
 msgid "Delete private posts"
 msgstr "حذف نوشته‌های خصوصی"
 
-#: ../includes/class-ure-lib.php:1977
+#: ../includes/class-ure-lib.php:1994
 msgid "Edit private posts"
 msgstr "ویرایش نوشته‌های خصوصی"
 
-#: ../includes/class-ure-lib.php:1978
+#: ../includes/class-ure-lib.php:1995
 msgid "Read private posts"
 msgstr "خواندن نوشته‌های خصوصی"
 
-#: ../includes/class-ure-lib.php:1979
+#: ../includes/class-ure-lib.php:1996
 msgid "Delete private pages"
 msgstr "حذف صفحات خصوصی"
 
-#: ../includes/class-ure-lib.php:1980
+#: ../includes/class-ure-lib.php:1997
 msgid "Edit private pages"
 msgstr "ویرایش صفحات خصوصی"
 
-#: ../includes/class-ure-lib.php:1981
+#: ../includes/class-ure-lib.php:1998
 msgid "Read private pages"
 msgstr "خواندن صفحات خصوصی"
 
-#: ../includes/class-ure-lib.php:1982
+#: ../includes/class-ure-lib.php:1999
 msgid "Delete users"
 msgstr "حذف کاربران"
 
-#: ../includes/class-ure-lib.php:1983
+#: ../includes/class-ure-lib.php:2000
 msgid "Create users"
 msgstr "ایجاد کاربران"
 
-#: ../includes/class-ure-lib.php:1984
+#: ../includes/class-ure-lib.php:2001
 msgid "Unfiltered upload"
 msgstr "بارگذاری فیلتر‌شده"
 
-#: ../includes/class-ure-lib.php:1985
+#: ../includes/class-ure-lib.php:2002
 msgid "Edit dashboard"
 msgstr "ویرایش پیشخوان"
 
-#: ../includes/class-ure-lib.php:1986
+#: ../includes/class-ure-lib.php:2003
 msgid "Update plugins"
 msgstr "بروزرسانی افزونه‌ها"
 
-#: ../includes/class-ure-lib.php:1987
+#: ../includes/class-ure-lib.php:2004
 msgid "Delete plugins"
 msgstr "حذف افزونه‌ها"
 
-#: ../includes/class-ure-lib.php:1988
+#: ../includes/class-ure-lib.php:2005
 msgid "Install plugins"
 msgstr "نصب افزونه‌ها"
 
-#: ../includes/class-ure-lib.php:1989
+#: ../includes/class-ure-lib.php:2006
 msgid "Update themes"
 msgstr "بروزرسانی پوسته‌ها"
 
-#: ../includes/class-ure-lib.php:1990
+#: ../includes/class-ure-lib.php:2007
 msgid "Install themes"
 msgstr "نصب پوسته‌ها"
 
-#: ../includes/class-ure-lib.php:1991
+#: ../includes/class-ure-lib.php:2008
 msgid "Update core"
 msgstr "بروزرسانی هسته"
 
-#: ../includes/class-ure-lib.php:1992
+#: ../includes/class-ure-lib.php:2009
 msgid "List users"
 msgstr "فهرست کاربران"
 
-#: ../includes/class-ure-lib.php:1993
+#: ../includes/class-ure-lib.php:2010
 msgid "Remove users"
 msgstr "حذف کابران"
 
-#: ../includes/class-ure-lib.php:1994
+#: ../includes/class-ure-lib.php:2011
 msgid "Add users"
 msgstr "افزودن کاربران"
 
-#: ../includes/class-ure-lib.php:1995
+#: ../includes/class-ure-lib.php:2012
 msgid "Promote users"
 msgstr "ارتقاء کاربران"
 
-#: ../includes/class-ure-lib.php:1996
+#: ../includes/class-ure-lib.php:2013
 msgid "Edit theme options"
 msgstr "ویرایش تنظیمات پوسته"
 
-#: ../includes/class-ure-lib.php:1997
+#: ../includes/class-ure-lib.php:2014
 msgid "Delete themes"
 msgstr "حذف پوسته‌ها"
 
-#: ../includes/class-ure-lib.php:1998
+#: ../includes/class-ure-lib.php:2015
 msgid "Export"
 msgstr "برون‌ریزی"
 
-#: ../includes/class-ure-lib.php:2108
+#: ../includes/class-ure-lib.php:2125
 msgid "Error: Capability name must contain latin characters and digits only!"
 msgstr "خطا: نام قابلیت باید فقط شامل حروف لاتین و اعداد باشد!"
 
-#: ../includes/class-ure-lib.php:2121
+#: ../includes/class-ure-lib.php:2138
 #, php-format
 msgid "Capability %s is added successfully"
 msgstr "قابلیت %s با موفقیت افزوده شد"
 
-#: ../includes/class-ure-lib.php:2123
+#: ../includes/class-ure-lib.php:2140
 #, php-format
 msgid "Capability %s exists already"
 msgstr "قابلیت %s از پیش موجود است"
 
-#: ../includes/class-ure-lib.php:2148
+#: ../includes/class-ure-lib.php:2165
 #, php-format
 msgid "Error! You do not have permission to delete this capability: %s!"
 msgstr "خطا! شما اجازه‌ی حذف این قابلیت را ندارید: %s!"
 
-#: ../includes/class-ure-lib.php:2167
+#: ../includes/class-ure-lib.php:2184
 #, php-format
 msgid "Capability %s is removed successfully"
 msgstr "قابلیت %s با موفقیت حذف شد"
 
-#: ../includes/class-ure-lib.php:2271
+#: ../includes/class-ure-lib.php:2288
 msgid "Version:"
 msgstr ""
 
-#: ../includes/class-ure-lib.php:2272
+#: ../includes/class-ure-lib.php:2289
 msgid "Author's website"
 msgstr "وبگاه نویسنده"
 
-#: ../includes/class-ure-lib.php:2273
+#: ../includes/class-ure-lib.php:2290
 msgid "Plugin webpage"
 msgstr "صفحه افزونه"
 
-#: ../includes/class-ure-lib.php:2274
+#: ../includes/class-ure-lib.php:2291
 msgid "Plugin download"
 msgstr "بارگیری افزونه"
 
-#: ../includes/class-ure-lib.php:2276
+#: ../includes/class-ure-lib.php:2293
 msgid "FAQ"
 msgstr "سوالات مکرر"
 
-#: ../includes/class-ure-lib.php:2324
+#: ../includes/class-ure-lib.php:2341
 msgid "None"
 msgstr "هیچ‌کدام"
 
-#: ../includes/class-ure-lib.php:2351
+#: ../includes/class-ure-lib.php:2368
 msgid "Delete All Unused Roles"
 msgstr "حذف همه‌ی نقش‌های استفاده‌نشده"
 
-#: ../includes/class-ure-lib.php:2375
+#: ../includes/class-ure-lib.php:2392
 msgid "&mdash; No role for this site &mdash;"
 msgstr "&mdash; هیچ نقشی برای این سایت &mdash;"
 
@@ -821,14 +822,44 @@ msgstr ""
 "کد افزونه‌ها باقی گذاشته شده‌اند. روشن کردن این گزینه، آن قابلیت‌های بد دانسته "
 "شده را نمایش می‌دهد."
 
-#: ../includes/class-ure-screen-help.php:27
-msgid "Allow create, edit and delete users to not super-admininstrators"
-msgstr "اجازه‌ی ایجاد، ویرایش و حذف کاربران به غیر مدیران اصلی"
+#: ../includes/class-ure-screen-help.php:41
+#, fuzzy
+msgid "select roles below"
+msgstr "عدم‌انتخاب همه"
+
+#: ../includes/class-ure-screen-help.php:56
+#, fuzzy
+msgid "Other default roles for new registered user"
+msgstr "دیگر نقش‌های پیش‌فرض برای کاربران تازه ثبت‌نام شده: "
 
-#: ../includes/class-ure-screen-help.php:28
+#: ../includes/class-ure-screen-help.php:57
+#, fuzzy
+msgid ""
+"select roles below to assign them to the new user automatically as an "
+"addition to the primary role. Note for multisite environment: take into "
+"account that other default roles should exist at the site, in order to be "
+"assigned to the new registered users."
+msgstr ""
+"قابل توجه محیط چند سایتی: رفتن به حسابی که در سایت نقش‌های پیش فرض دیگری "
+"موجود است، به منظور اختصاص دادن به کاربران تازه ثبت‌نام شده."
+
+#: ../includes/class-ure-screen-help.php:75
+#, fuzzy
+msgid "Allow non super-admininstrators to create, edit and delete users"
+msgstr "اجازه به غیر مدیران اصلی برای ایجاد، ویرایش و حذف کاربران"
+
+#: ../includes/class-ure-screen-help.php:76
+#, fuzzy
 msgid ""
 "Super administrator only may create, edit and delete users under WordPress "
-"multi-site. Turn this option on in order to remove this limitation."
+"multi-site by default. Turn this option on in order to remove this "
+"limitation."
 msgstr ""
 "در وردپرس چند سایتی تنها مدیران اصلی اجازه‌ی ایجاد، ویرایش و حذف کاربران را "
 "دارند. این "
+
+#~ msgid "Overview"
+#~ msgstr "مرور کلی"
+
+#~ msgid "Allow create, edit and delete users to not super-admininstrators"
+#~ msgstr "اجازه‌ی ایجاد، ویرایش و حذف کاربران به غیر مدیران اصلی"
index 43facda..5fc2d46 100644 (file)
Binary files a/wp-content/plugins/user-role-editor/lang/ure-he_IL.mo and b/wp-content/plugins/user-role-editor/lang/ure-he_IL.mo differ
index 8a32252..b3213ed 100644 (file)
@@ -5,7 +5,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: User Role Editor\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-09-08 21:33+0700\n"
+"POT-Creation-Date: 2014-10-01 12:45+0700\n"
 "PO-Revision-Date: \n"
 "Last-Translator: Vladimir Garagulya <vladimir@shinephp.com>\n"
 "Language-Team: Ahrale, Atar4U.com <contact@atar4u.com>\n"
@@ -26,10 +26,12 @@ msgid "User Role Editor - Options"
 msgstr "User Role Editor"
 
 #: ../includes/settings-template.php:21
+#: ../includes/class-user-role-editor.php:547
 msgid "General"
 msgstr ""
 
-#: ../includes/settings-template.php:22
+#: ../includes/settings-template.php:26
+#: ../includes/class-user-role-editor.php:553
 msgid "Additional Modules"
 msgstr ""
 
@@ -37,16 +39,18 @@ msgstr ""
 # 'default_role' => __('Default Role', 'ure'),
 # 'set_new_default_role' => __('Set New Default Role', 'ure'),
 # wpml-name: db135301eaf77a955b2b016f9b9d6a99
-#: ../includes/settings-template.php:23
+#: ../includes/settings-template.php:30
+#: ../includes/class-user-role-editor.php:559
 #, fuzzy
 msgid "Default Roles"
 msgstr "תפקיד ברירת מחדל"
 
-#: ../includes/settings-template.php:27
+#: ../includes/settings-template.php:34
+#: ../includes/class-user-role-editor.php:564
 msgid "Multisite"
 msgstr ""
 
-#: ../includes/settings-template.php:31
+#: ../includes/settings-template.php:39
 msgid "About"
 msgstr ""
 
@@ -54,7 +58,7 @@ msgstr ""
 # <td><label for="show_admin_role"><?php esc_html_e('Show Administrator role at User Role Editor:', 'ure'); ?></label></td>
 # <td><input type="checkbox" name="show_admin_role" id="show_admin_role" value="1"
 # wpml-name: 03c5b123f148104af580b68ade741c67
-#: ../includes/settings-template.php:42
+#: ../includes/settings-template.php:53
 #: ../includes/class-ure-screen-help.php:15
 msgid "Show Administrator role at User Role Editor"
 msgstr ""
@@ -63,7 +67,7 @@ msgstr ""
 # <td><label for="caps_readable"><?php esc_html_e('Show capabilities in the human readable form:', 'ure'); ?></label></td>
 # <td>
 # wpml-name: a19a4f985d31bbbd3d3b6d5dbd368ef0
-#: ../includes/settings-template.php:50
+#: ../includes/settings-template.php:61
 #: ../includes/class-ure-screen-help.php:18
 msgid "Show capabilities in the human readable form"
 msgstr ""
@@ -72,7 +76,7 @@ msgstr ""
 # <label for="ure_show_deprecated_caps"><?php _e('Show deprecated capabilities', 'ure'); ?></label>
 # </td>
 # wpml-name: 130b09deaec4b13948be95555d546f25
-#: ../includes/settings-template.php:58 ../includes/ure-role-edit.php:40
+#: ../includes/settings-template.php:69 ../includes/ure-role-edit.php:40
 #: ../includes/ure-user-edit.php:63 ../includes/class-ure-screen-help.php:21
 msgid "Show deprecated capabilities"
 msgstr "הצג הרשאות לפי מספר"
@@ -81,31 +85,32 @@ msgstr "הצג הרשאות לפי מספר"
 # <input type="submit" class="button-primary" name="user_role_editor_settings_update" value="<?php _e('Save', 'ure') ?>" />
 # </p>
 # wpml-name: c9cc8cce247e49bae79f15173ce97354
-#: ../includes/settings-template.php:69 ../includes/settings-template.php:101
-#: ../includes/settings-template.php:131 ../includes/settings-template.php:160
+#: ../includes/settings-template.php:81 ../includes/settings-template.php:117
+#: ../includes/settings-template.php:149 ../includes/settings-template.php:181
 msgid "Save"
 msgstr "שמירה"
 
-#: ../includes/settings-template.php:86
+#: ../includes/settings-template.php:102
+#: ../includes/class-ure-screen-help.php:40
 msgid "Count users without role"
 msgstr ""
 
-#: ../includes/settings-template.php:111
+#: ../includes/settings-template.php:129
 msgid "Primary default role: "
 msgstr ""
 
-#: ../includes/settings-template.php:118
+#: ../includes/settings-template.php:136
 msgid "Other default roles for new registered user: "
 msgstr ""
 
-#: ../includes/settings-template.php:124
+#: ../includes/settings-template.php:142
 msgid ""
 "Note for multisite environment: take into account that other default roles "
 "should exist at the site, in order to be assigned to the new registered "
 "users."
 msgstr ""
 
-#: ../includes/settings-template.php:147
+#: ../includes/settings-template.php:168
 msgid "Allow non super administrators to create, edit, and delete users"
 msgstr ""
 
@@ -134,7 +139,7 @@ msgstr ""
 # '">' . __('Capabilities', 'ure') . '</a>';
 # }
 # wpml-name: 82ec2cd6fda87713f588da75c3b1d0ed
-#: ../includes/class-user-role-editor.php:424
+#: ../includes/class-user-role-editor.php:422
 msgid "Capabilities"
 msgstr "יכולות"
 
@@ -142,7 +147,7 @@ msgstr "יכולות"
 # $settings_link = "<a href='options-general.php?page=settings-".URE_PLUGIN_FILE."'>" . __('Settings', 'ure') . "</a>";
 # array_unshift($links, $settings_link);
 # wpml-name: f4f70727dc34561dfde1a3c529b6205c
-#: ../includes/class-user-role-editor.php:517
+#: ../includes/class-user-role-editor.php:514
 msgid "Settings"
 msgstr "הגדרות"
 
@@ -150,23 +155,19 @@ msgstr "הגדרות"
 # $links[] = '<a target="_blank" href="http://role-editor.com/changelog">' . __('Changelog', 'ure') . '</a>';
 # }
 # wpml-name: c49182dc0c7a70b9cd2e10853d9ec6c7
-#: ../includes/class-user-role-editor.php:530
-#: ../includes/class-ure-lib.php:2275
+#: ../includes/class-user-role-editor.php:525
+#: ../includes/class-ure-lib.php:2292
 msgid "Changelog"
 msgstr "יומן שינויים"
 
-#: ../includes/class-user-role-editor.php:552
-msgid "Overview"
-msgstr ""
-
 # esc_html__('User Role Editor', 'ure'),
 # esc_html__('User Role Editor', 'ure'),
 # $this->key_capability, 'settings-'.URE_PLUGIN_FILE, array(&$this, 'settings'));
 # wpml-name: c26ad3b67c7211a5872194d68cb5a8eb
-#: ../includes/class-user-role-editor.php:561
-#: ../includes/class-user-role-editor.php:589
-#: ../includes/class-user-role-editor.php:930
-#: ../includes/class-ure-lib.php:232
+#: ../includes/class-user-role-editor.php:573
+#: ../includes/class-user-role-editor.php:601
+#: ../includes/class-user-role-editor.php:946
+#: ../includes/class-ure-lib.php:248
 msgid "User Role Editor"
 msgstr "User Role Editor"
 
@@ -174,9 +175,9 @@ msgstr "User Role Editor"
 # $this->lib->show_message(__('User Role Editor options are updated', 'ure'));
 # } else { // get options from the options storage
 # wpml-name: aef323fbbd25d577170fff17c15cf857
-#: ../includes/class-user-role-editor.php:646
-#: ../includes/class-user-role-editor.php:664
-#: ../includes/class-user-role-editor.php:708
+#: ../includes/class-user-role-editor.php:658
+#: ../includes/class-user-role-editor.php:676
+#: ../includes/class-user-role-editor.php:720
 msgid "User Role Editor options are updated"
 msgstr "אפשרויות עורך תפקיד משתמש עודכנו"
 
@@ -184,18 +185,18 @@ msgstr "אפשרויות עורך תפקיד משתמש עודכנו"
 # 'default_role' => __('Default Role', 'ure'),
 # 'set_new_default_role' => __('Set New Default Role', 'ure'),
 # wpml-name: db135301eaf77a955b2b016f9b9d6a99
-#: ../includes/class-user-role-editor.php:692
+#: ../includes/class-user-role-editor.php:704
 #, fuzzy
 msgid "Default Roles are updated"
 msgstr "תפקיד ברירת מחדל"
 
-#: ../includes/class-user-role-editor.php:716
+#: ../includes/class-user-role-editor.php:728
 msgid ""
 "You do not have sufficient permissions to manage options for User Role "
 "Editor."
 msgstr ""
 
-#: ../includes/class-user-role-editor.php:791
+#: ../includes/class-user-role-editor.php:807
 msgid "Insufficient permissions to work with User Role Editor"
 msgstr ""
 
@@ -203,7 +204,7 @@ msgstr ""
 # 'select_all' => __('Select All', 'ure'),
 # 'unselect_all' => __('Unselect All', 'ure'),
 # wpml-name: 45e96c0a422ce8a1a6ec1bd5eb9625c6
-#: ../includes/class-user-role-editor.php:872
+#: ../includes/class-user-role-editor.php:888
 msgid "Select All"
 msgstr "בחירת הכל"
 
@@ -211,7 +212,7 @@ msgstr "בחירת הכל"
 # 'unselect_all' => __('Unselect All', 'ure'),
 # 'reverse' => __('Reverse', 'ure'),
 # wpml-name: 016269c0d83a19a19a2ee0a4294740b4
-#: ../includes/class-user-role-editor.php:873
+#: ../includes/class-user-role-editor.php:889
 msgid "Unselect All"
 msgstr "לא לבחור שום דבר"
 
@@ -219,7 +220,7 @@ msgstr "לא לבחור שום דבר"
 # 'reverse' => __('Reverse', 'ure'),
 # 'update' => __('Update', 'ure'),
 # wpml-name: 67f115c1fddc4ce1aeb1c754001585bc
-#: ../includes/class-user-role-editor.php:874
+#: ../includes/class-user-role-editor.php:890
 msgid "Reverse"
 msgstr "להפוך"
 
@@ -227,7 +228,7 @@ msgstr "להפוך"
 # 'update' => __('Update', 'ure'),
 # 'confirm_submit' => __('Please confirm permissions update', 'ure'),
 # wpml-name: 06933067aafd48425d67bcb01bba5cb6
-#: ../includes/class-user-role-editor.php:875
+#: ../includes/class-user-role-editor.php:891
 msgid "Update"
 msgstr "עדכן"
 
@@ -235,7 +236,7 @@ msgstr "עדכן"
 # 'confirm_submit' => __('Please confirm permissions update', 'ure'),
 # 'add_new_role_title' => __('Add New Role', 'ure'),
 # wpml-name: 85251872440cc94c6080a90451e018c4
-#: ../includes/class-user-role-editor.php:876
+#: ../includes/class-user-role-editor.php:892
 msgid "Please confirm permissions update"
 msgstr "נא לאשר את עדכון ההרשאות"
 
@@ -243,7 +244,7 @@ msgstr "נא לאשר את עדכון ההרשאות"
 # 'add_new_role_title' => __('Add New Role', 'ure'),
 # 'role_name_required' => __(' Role name (ID) can not be empty!', 'ure'),
 # wpml-name: cf46e7fb1093a47a76f35fc61ab5d432
-#: ../includes/class-user-role-editor.php:877
+#: ../includes/class-user-role-editor.php:893
 msgid "Add New Role"
 msgstr "הוסף סוג משתמש חדש"
 
@@ -251,8 +252,8 @@ msgstr "הוסף סוג משתמש חדש"
 # 'delete_role' => __('Delete Role', 'ure'),
 # 'cancel' =>  __('Cancel', 'ure'),
 # wpml-name: 4e2626418b461869a386850b0f3b437f
-#: ../includes/class-user-role-editor.php:878
-#: ../includes/class-user-role-editor.php:883
+#: ../includes/class-user-role-editor.php:894
+#: ../includes/class-user-role-editor.php:899
 #, fuzzy
 msgid "Rename Role"
 msgstr "מחיקת סוג משתמש"
@@ -261,7 +262,7 @@ msgstr "מחיקת סוג משתמש"
 # 'role_name_required' => __(' Role name (ID) can not be empty!', 'ure'),
 # 'role_name_valid_chars' => __(' Role name (ID) must contain latin characters, digits, hyphens or underscore only!', 'ure'),
 # wpml-name: 1400ecabfd5a7c9527f71723da18dad0
-#: ../includes/class-user-role-editor.php:879
+#: ../includes/class-user-role-editor.php:895
 msgid " Role name (ID) can not be empty!"
 msgstr " שם התפקיד (מזהה) אינו יכול להישאר ריק!"
 
@@ -269,14 +270,14 @@ msgstr " שם התפקיד (מזהה) אינו יכול להישאר ריק!"
 # 'role_name_valid_chars' => __(' Role name (ID) must contain latin characters, digits, hyphens or underscore only!', 'ure'),
 # 'add_role' => __('Add Role', 'ure'),
 # wpml-name: 7b94f04285f5efc287652bd40338e730
-#: ../includes/class-user-role-editor.php:880
+#: ../includes/class-user-role-editor.php:896
 msgid ""
 " Role name (ID) must contain latin characters, digits, hyphens or underscore "
 "only!"
 msgstr ""
 " שם התפקיד (מזהה) חייב להכיל אותיות לטיניות, ספרות, מקפים או קו תחתון בלבד!"
 
-#: ../includes/class-user-role-editor.php:881
+#: ../includes/class-user-role-editor.php:897
 msgid ""
 " WordPress does not support numeric Role name (ID). Add latin characters to "
 "it."
@@ -286,7 +287,7 @@ msgstr ""
 # 'add_role' => __('Add Role', 'ure'),
 # 'delete_role' => __('Delete Role', 'ure'),
 # wpml-name: 1453b39dcc15a372640d960c6db7db25
-#: ../includes/class-user-role-editor.php:882
+#: ../includes/class-user-role-editor.php:898
 msgid "Add Role"
 msgstr "הוספת תפקיד"
 
@@ -294,7 +295,7 @@ msgstr "הוספת תפקיד"
 # 'delete_role' => __('Delete Role', 'ure'),
 # 'cancel' =>  __('Cancel', 'ure'),
 # wpml-name: 4e2626418b461869a386850b0f3b437f
-#: ../includes/class-user-role-editor.php:884
+#: ../includes/class-user-role-editor.php:900
 msgid "Delete Role"
 msgstr "מחיקת סוג משתמש"
 
@@ -302,7 +303,7 @@ msgstr "מחיקת סוג משתמש"
 # 'cancel' =>  __('Cancel', 'ure'),
 # 'add_capability' => __('Add Capability', 'ure'),
 # wpml-name: ea4788705e6873b424c65e91c2846b19
-#: ../includes/class-user-role-editor.php:885
+#: ../includes/class-user-role-editor.php:901
 msgid "Cancel"
 msgstr "ביטול"
 
@@ -310,7 +311,7 @@ msgstr "ביטול"
 # 'add_capability' => __('Add Capability', 'ure'),
 # 'delete_capability' => __('Delete Capability', 'ure'),
 # wpml-name: 39cc0b416ba0d26679547346b8c5cf8d
-#: ../includes/class-user-role-editor.php:886
+#: ../includes/class-user-role-editor.php:902
 msgid "Add Capability"
 msgstr "הוספת יכולת"
 
@@ -318,8 +319,8 @@ msgstr "הוספת יכולת"
 # 'delete_capability' => __('Delete Capability', 'ure'),
 # 'delete_capability_warning' => __('Warning! Be careful - removing critical capability could crash some plugin or other custom code', 'ure'),
 # wpml-name: 06844dd4ec4b29fa8a354aaacbd4861a
-#: ../includes/class-user-role-editor.php:887
-#: ../includes/class-user-role-editor.php:896
+#: ../includes/class-user-role-editor.php:903
+#: ../includes/class-user-role-editor.php:912
 msgid "Delete Capability"
 msgstr "מחיקת יכולת"
 
@@ -327,21 +328,21 @@ msgstr "מחיקת יכולת"
 # 'reset' => __('Reset', 'ure'),
 # 'reset_warning' => __('Reset Roles to WordPress defaults. Be careful, all changes made by you or plugins will be lost. Some plugins, e.g. S2Member, WooCommerce reactivation could be needed. Continue?', 'ure'),
 # wpml-name: 526d688f37a86d3c3f27d0c5016eb71d
-#: ../includes/class-user-role-editor.php:888
+#: ../includes/class-user-role-editor.php:904
 msgid "Reset"
 msgstr "איפוס"
 
-#: ../includes/class-user-role-editor.php:889
+#: ../includes/class-user-role-editor.php:905
 msgid "DANGER! Resetting will restore default settings from WordPress Core."
 msgstr ""
 
-#: ../includes/class-user-role-editor.php:890
+#: ../includes/class-user-role-editor.php:906
 msgid ""
 "If any plugins have changed capabilities in any way upon installation (such "
 "as S2Member, WooCommerce, and many more), those capabilities will be DELETED!"
 msgstr ""
 
-#: ../includes/class-user-role-editor.php:891
+#: ../includes/class-user-role-editor.php:907
 msgid ""
 "For more information on how to undo changes and restore plugin capabilities "
 "go to"
@@ -351,7 +352,7 @@ msgstr ""
 # __('Contributor', 'ure');
 # __('Subscriber', 'ure');
 # wpml-name: 23d21ad4dea7aadf907e5e601b1905e6
-#: ../includes/class-user-role-editor.php:893
+#: ../includes/class-user-role-editor.php:909
 msgid "Continue?"
 msgstr ""
 
@@ -359,7 +360,7 @@ msgstr ""
 # 'default_role' => __('Default Role', 'ure'),
 # 'set_new_default_role' => __('Set New Default Role', 'ure'),
 # wpml-name: db135301eaf77a955b2b016f9b9d6a99
-#: ../includes/class-user-role-editor.php:894
+#: ../includes/class-user-role-editor.php:910
 msgid "Default Role"
 msgstr "תפקיד ברירת מחדל"
 
@@ -367,7 +368,7 @@ msgstr "תפקיד ברירת מחדל"
 # 'set_new_default_role' => __('Set New Default Role', 'ure'),
 # 'delete_capability' => __('Delete Capability', 'ure'),
 # wpml-name: f28d52a1096a73cff427d1216dc578ad
-#: ../includes/class-user-role-editor.php:895
+#: ../includes/class-user-role-editor.php:911
 msgid "Set New Default Role"
 msgstr "הגדר תפקיד ברירת מחדל חדש"
 
@@ -375,7 +376,7 @@ msgstr "הגדר תפקיד ברירת מחדל חדש"
 # 'delete_capability_warning' => __('Warning! Be careful - removing critical capability could crash some plugin or other custom code', 'ure'),
 # 'capability_name_required' => __(' Capability name (ID) can not be empty!', 'ure'),
 # wpml-name: b8827a096ab461b8e26931adf82c8d85
-#: ../includes/class-user-role-editor.php:897
+#: ../includes/class-user-role-editor.php:913
 msgid ""
 "Warning! Be careful - removing critical capability could crash some plugin "
 "or other custom code"
@@ -387,7 +388,7 @@ msgstr ""
 # 'capability_name_required' => __(' Capability name (ID) can not be empty!', 'ure'),
 # 'capability_name_valid_chars' => __(' Capability name (ID) must contain latin characters, digits, hyphens or underscore only!', 'ure'),
 # wpml-name: ba38256d66e3ae37b7b16052a0f94729
-#: ../includes/class-user-role-editor.php:898
+#: ../includes/class-user-role-editor.php:914
 msgid " Capability name (ID) can not be empty!"
 msgstr " שם היכולת (מזהה) לא יכול להיות ריק!"
 
@@ -395,7 +396,7 @@ msgstr " שם היכולת (מזהה) לא יכול להיות ריק!"
 # 'capability_name_valid_chars' => __(' Capability name (ID) must contain latin characters, digits, hyphens or underscore only!', 'ure'),
 # ) );
 # wpml-name: 6d4c115be3e7b4f1fd70112642c9a72d
-#: ../includes/class-user-role-editor.php:899
+#: ../includes/class-user-role-editor.php:915
 msgid ""
 " Capability name (ID) must contain latin characters, digits, hyphens or "
 "underscore only!"
@@ -406,8 +407,8 @@ msgstr ""
 # <th scope="row"><?php _e('Other Roles', 'ure'); ?></th>
 # <td>
 # wpml-name: a5f40dc2b5f2552187d0326e77e267eb
-#: ../includes/class-user-role-editor.php:933
-#: ../includes/class-user-role-editor.php:962
+#: ../includes/class-user-role-editor.php:949
+#: ../includes/class-user-role-editor.php:978
 msgid "Other Roles"
 msgstr "תפקידים אחרים"
 
@@ -415,7 +416,7 @@ msgstr "תפקידים אחרים"
 # echo $output . '&nbsp;&nbsp;&gt;&gt;&nbsp;<a href="' . wp_nonce_url("users.php?page=users-".URE_PLUGIN_FILE."&object=user&amp;user_id={$user->ID}", "ure_user_{$user->ID}") . '">' . __('Edit', 'ure') . '</a>';
 # ?>
 # wpml-name: 7dce122004969d56ae2e0245cb754d35
-#: ../includes/class-user-role-editor.php:944
+#: ../includes/class-user-role-editor.php:960
 msgid "Edit"
 msgstr "עריכה"
 
@@ -465,7 +466,7 @@ msgstr "יכולות"
 # $this->show_message(__('Error: wrong request', 'URE'));
 # return false;
 # wpml-name: a4b9ac7e09dc5996d763f6bae29fd31a
-#: ../includes/class-ure-lib.php:140
+#: ../includes/class-ure-lib.php:156
 msgid "Error: wrong request"
 msgstr "שגיאה: בקשה מוטעית"
 
@@ -473,16 +474,16 @@ msgstr "שגיאה: בקשה מוטעית"
 # 'role_name_required' => __(' Role name (ID) can not be empty!', 'ure'),
 # 'role_name_valid_chars' => __(' Role name (ID) must contain latin characters, digits, hyphens or underscore only!', 'ure'),
 # wpml-name: 1400ecabfd5a7c9527f71723da18dad0
-#: ../includes/class-ure-lib.php:173 ../includes/class-ure-lib.php:184
+#: ../includes/class-ure-lib.php:189 ../includes/class-ure-lib.php:200
 #, fuzzy
 msgid "Role name (ID): "
 msgstr " שם התפקיד (מזהה) אינו יכול להישאר ריק!"
 
-#: ../includes/class-ure-lib.php:175 ../includes/class-ure-lib.php:186
+#: ../includes/class-ure-lib.php:191 ../includes/class-ure-lib.php:202
 msgid "Display Role Name: "
 msgstr ""
 
-#: ../includes/class-ure-lib.php:177
+#: ../includes/class-ure-lib.php:193
 msgid "Make copy of: "
 msgstr ""
 
@@ -490,7 +491,7 @@ msgstr ""
 # 'delete_role' => __('Delete Role', 'ure'),
 # 'cancel' =>  __('Cancel', 'ure'),
 # wpml-name: 4e2626418b461869a386850b0f3b437f
-#: ../includes/class-ure-lib.php:193
+#: ../includes/class-ure-lib.php:209
 #, fuzzy
 msgid "Select Role:"
 msgstr "מחיקת סוג משתמש"
@@ -499,7 +500,7 @@ msgstr "מחיקת סוג משתמש"
 # 'delete_role' => __('Delete Role', 'ure'),
 # 'cancel' =>  __('Cancel', 'ure'),
 # wpml-name: 4e2626418b461869a386850b0f3b437f
-#: ../includes/class-ure-lib.php:208
+#: ../includes/class-ure-lib.php:224
 #, fuzzy
 msgid "Delete:"
 msgstr "מחיקת סוג משתמש"
@@ -508,7 +509,7 @@ msgstr "מחיקת סוג משתמש"
 # 'capability_name_required' => __(' Capability name (ID) can not be empty!', 'ure'),
 # 'capability_name_valid_chars' => __(' Capability name (ID) must contain latin characters, digits, hyphens or underscore only!', 'ure'),
 # wpml-name: ba38256d66e3ae37b7b16052a0f94729
-#: ../includes/class-ure-lib.php:215
+#: ../includes/class-ure-lib.php:231
 #, fuzzy
 msgid "Capability name (ID): "
 msgstr " שם היכולת (מזהה) לא יכול להיות ריק!"
@@ -517,7 +518,7 @@ msgstr " שם היכולת (מזהה) לא יכול להיות ריק!"
 # $mess = __('Error: ', 'ure') . __('Role', 'ure') . ' <em>' . esc_html($_POST['user_role']) . '</em> ' . __('does not exist', 'ure');
 # $this->current_role = '';
 # wpml-name: f97d2eb0a66987899d02bb180936afa3
-#: ../includes/class-ure-lib.php:329
+#: ../includes/class-ure-lib.php:345
 msgid "Error: "
 msgstr "שגיאה:"
 
@@ -525,7 +526,7 @@ msgstr "שגיאה:"
 # $mess = __('Error: ', 'ure') . __('Role', 'ure') . ' <em>' . esc_html($_POST['user_role']) . '</em> ' . __('does not exist', 'ure');
 # $this->current_role = '';
 # wpml-name: bbbabdbe1b262f75d99d62880b953be1
-#: ../includes/class-ure-lib.php:329
+#: ../includes/class-ure-lib.php:345
 msgid "Role"
 msgstr "סוג משתמש:"
 
@@ -533,7 +534,7 @@ msgstr "סוג משתמש:"
 # $mess = __('Error: ', 'ure') . __('Role', 'ure') . ' <em>' . esc_html($_POST['user_role']) . '</em> ' . __('does not exist', 'ure');
 # $this->current_role = '';
 # wpml-name: 9416a531e05cf18f1c26b97263e3c96b
-#: ../includes/class-ure-lib.php:330
+#: ../includes/class-ure-lib.php:346
 msgid "does not exist"
 msgstr "לא נמצא"
 
@@ -541,7 +542,7 @@ msgstr "לא נמצא"
 # $mess = __('Role is updated successfully', 'ure');
 # } else {
 # wpml-name: 9fd866f99b55510d60384b7efeb22018
-#: ../includes/class-ure-lib.php:373
+#: ../includes/class-ure-lib.php:389
 msgid "Role is updated successfully"
 msgstr "התפקיד עודכן בהצלחה"
 
@@ -549,7 +550,7 @@ msgstr "התפקיד עודכן בהצלחה"
 # $mess = __('Roles are updated for all network', 'ure');
 # }
 # wpml-name: f89c187756348dad944b0fcca790fde6
-#: ../includes/class-ure-lib.php:375
+#: ../includes/class-ure-lib.php:391
 msgid "Roles are updated for all network"
 msgstr "התפקידים עודכנו עבור כל הרשת"
 
@@ -557,7 +558,7 @@ msgstr "התפקידים עודכנו עבור כל הרשת"
 # $mess = __('Error occured during role(s) update', 'ure');
 # }
 # wpml-name: 9f528ca4741155f636c4331b19f2b170
-#: ../includes/class-ure-lib.php:381
+#: ../includes/class-ure-lib.php:397
 msgid "Error occured during role(s) update"
 msgstr "קרתה שגיאה בעת עדכון תפקידי המשתמש"
 
@@ -565,7 +566,7 @@ msgstr "קרתה שגיאה בעת עדכון תפקידי המשתמש"
 # $mess = __('User capabilities are updated successfully', 'ure');
 # } else {
 # wpml-name: ee37618edaa53156b3a18d543ec60412
-#: ../includes/class-ure-lib.php:388
+#: ../includes/class-ure-lib.php:404
 msgid "User capabilities are updated successfully"
 msgstr "יכולות המשתמש עודכנו בהצלחה"
 
@@ -573,7 +574,7 @@ msgstr "יכולות המשתמש עודכנו בהצלחה"
 # $mess = __('Error occured during user update', 'ure');
 # }
 # wpml-name: f7283da5501e7e1cb13255d323859feb
-#: ../includes/class-ure-lib.php:393
+#: ../includes/class-ure-lib.php:409
 msgid "Error occured during user update"
 msgstr "קרתה שגיאה בזמן עדכון המשתמש"
 
@@ -581,7 +582,7 @@ msgstr "קרתה שגיאה בזמן עדכון המשתמש"
 # $this->notification = __('User Roles are restored to WordPress default values. ', 'ure');
 # } else if ($action == 'update') {
 # wpml-name: 7182950b4f92d446844be24cfea6276a
-#: ../includes/class-ure-lib.php:451
+#: ../includes/class-ure-lib.php:467
 msgid "User Roles are restored to WordPress default values. "
 msgstr "תפקידי משתמש שוחזרו לערכי ברירת המחדל של וורדפרס."
 
@@ -589,7 +590,7 @@ msgstr "תפקידי משתמש שוחזרו לערכי ברירת המחדל ש
 # $link = '<a href="' . $url . '" title="read about ' . $capability . ' user capability" target="new"><img src="' . URE_PLUGIN_URL . '/images/help.png" alt="' . __('Help', 'ure') . '" /></a>';
 # } else {
 # wpml-name: 6a26f548831e6a8c26bfbbd9f6ec61e0
-#: ../includes/class-ure-lib.php:1317
+#: ../includes/class-ure-lib.php:1334
 msgid "Help"
 msgstr "עזרה"
 
@@ -597,7 +598,7 @@ msgstr "עזרה"
 # $this->show_message('Error! ' . __('Error is occur. Please check the log file.', 'ure'));
 # }
 # wpml-name: 766a60ac9e13c76c28bdf714ddecaa25
-#: ../includes/class-ure-lib.php:1675
+#: ../includes/class-ure-lib.php:1692
 msgid "Error is occur. Please check the log file."
 msgstr "ארעה שגיאה, אנא בדוק את קובץ היומן."
 
@@ -605,14 +606,14 @@ msgstr "ארעה שגיאה, אנא בדוק את קובץ היומן."
 # return __('Error: Role ID must contain latin characters, digits, hyphens or underscore only!', 'ure');
 # }
 # wpml-name: f9182094e24a9e2fbb7317b1724a69c9
-#: ../includes/class-ure-lib.php:1718 ../includes/class-ure-lib.php:1785
+#: ../includes/class-ure-lib.php:1735 ../includes/class-ure-lib.php:1802
 msgid ""
 "Error: Role ID must contain latin characters, digits, hyphens or underscore "
 "only!"
 msgstr ""
 "שגיאה: תפקיד המשתמש חייב לכלול אותיות לטיניות, ספרות, מקפים וקו תחתון בלבד!"
 
-#: ../includes/class-ure-lib.php:1722 ../includes/class-ure-lib.php:1789
+#: ../includes/class-ure-lib.php:1739 ../includes/class-ure-lib.php:1806
 msgid ""
 "Error: WordPress does not support numeric Role name (ID). Add latin "
 "characters to it."
@@ -622,7 +623,7 @@ msgstr ""
 # return sprintf('Error! ' . __('Role %s exists already', 'ure'), $user_role_id);
 # }
 # wpml-name: 61b6d86154b5437be56e6565f2820391
-#: ../includes/class-ure-lib.php:1737
+#: ../includes/class-ure-lib.php:1754
 #, php-format
 msgid "Role %s exists already"
 msgstr "סוג המשתמש %s כבר קיים"
@@ -631,7 +632,7 @@ msgstr "סוג המשתמש %s כבר קיים"
 # $mess = 'Error! ' . __('Error is encountered during new role create operation', 'ure');
 # } else {
 # wpml-name: e0618b1a4160611a46b1b95acab0821c
-#: ../includes/class-ure-lib.php:1752
+#: ../includes/class-ure-lib.php:1769
 msgid "Error is encountered during new role create operation"
 msgstr "ארעה שגיאה בעת יצירת סוג המשתמש החדש"
 
@@ -639,16 +640,16 @@ msgstr "ארעה שגיאה בעת יצירת סוג המשתמש החדש"
 # $mess = sprintf(__('Role %s is created successfully', 'ure'), $user_role_name);
 # }
 # wpml-name: 1613afddcbdf86bd48660e5443be00ff
-#: ../includes/class-ure-lib.php:1754
+#: ../includes/class-ure-lib.php:1771
 #, php-format
 msgid "Role %s is created successfully"
 msgstr "סוג המשתמש %s נוצר בהצלחה"
 
-#: ../includes/class-ure-lib.php:1778
+#: ../includes/class-ure-lib.php:1795
 msgid "Error: Role ID is empty!"
 msgstr ""
 
-#: ../includes/class-ure-lib.php:1796
+#: ../includes/class-ure-lib.php:1813
 msgid "Error: Empty role display name is not allowed."
 msgstr ""
 
@@ -656,7 +657,7 @@ msgstr ""
 # $mess = __('Error: ', 'ure') . __('Role', 'ure') . ' <em>' . esc_html($_POST['user_role']) . '</em> ' . __('does not exist', 'ure');
 # $this->current_role = '';
 # wpml-name: 9416a531e05cf18f1c26b97263e3c96b
-#: ../includes/class-ure-lib.php:1803
+#: ../includes/class-ure-lib.php:1820
 #, fuzzy, php-format
 msgid "Role %s does not exists"
 msgstr "לא נמצא"
@@ -665,7 +666,7 @@ msgstr "לא נמצא"
 # $mess = sprintf(__('Role %s is created successfully', 'ure'), $user_role_name);
 # }
 # wpml-name: 1613afddcbdf86bd48660e5443be00ff
-#: ../includes/class-ure-lib.php:1811
+#: ../includes/class-ure-lib.php:1828
 #, fuzzy, php-format
 msgid "Role %s is renamed to %s successfully"
 msgstr "סוג המשתמש %s נוצר בהצלחה"
@@ -674,7 +675,7 @@ msgstr "סוג המשתמש %s נוצר בהצלחה"
 # $mess = 'Error! ' . __('Error encountered during role delete operation', 'ure');
 # } else {
 # wpml-name: 5ca27dda122445e597586a22e18088e6
-#: ../includes/class-ure-lib.php:1878
+#: ../includes/class-ure-lib.php:1895
 msgid "Error encountered during role delete operation"
 msgstr "ארעה שגיאה במהלך נסיון המחיקה של סוג המשתמש"
 
@@ -682,7 +683,7 @@ msgstr "ארעה שגיאה במהלך נסיון המחיקה של סוג המ
 # $mess = sprintf(__('Role %s is deleted successfully', 'ure'), $role);
 # }
 # wpml-name: 53552ec95bc8303219e8c39375763370
-#: ../includes/class-ure-lib.php:1880
+#: ../includes/class-ure-lib.php:1897
 msgid "Unused roles are deleted successfully"
 msgstr ""
 
@@ -690,7 +691,7 @@ msgstr ""
 # $mess = sprintf(__('Role %s is deleted successfully', 'ure'), $role);
 # }
 # wpml-name: 53552ec95bc8303219e8c39375763370
-#: ../includes/class-ure-lib.php:1882
+#: ../includes/class-ure-lib.php:1899
 #, php-format
 msgid "Role %s is deleted successfully"
 msgstr "סוג המשתמש %s נמחק בהצלחה"
@@ -699,7 +700,7 @@ msgstr "סוג המשתמש %s נמחק בהצלחה"
 # $errorMessage = 'Error! ' . __('Error encountered during default role change operation', 'ure');
 # if (isset($wp_roles->role_objects[$user_role_id]) && $user_role_id !== 'administrator') {
 # wpml-name: b64bfe4842bc0638b79a24687976394e
-#: ../includes/class-ure-lib.php:1907
+#: ../includes/class-ure-lib.php:1924
 msgid "Error encountered during default role change operation"
 msgstr "ארעה שגיאה בעת הנסיון לשנות את סוג משתמש ברירת מחדל"
 
@@ -707,7 +708,7 @@ msgstr "ארעה שגיאה בעת הנסיון לשנות את סוג משתמ
 # $mess = sprintf(__('Default role for new users is set to %s successfully', 'ure'), $wp_roles->role_names[$user_role_id]);
 # }
 # wpml-name: 94978d82edc73eba0f44bc7bceb299f4
-#: ../includes/class-ure-lib.php:1913
+#: ../includes/class-ure-lib.php:1930
 #, php-format
 msgid "Default role for new users is set to %s successfully"
 msgstr "סוג המשתמש %s נקבע כברירת מחדל"
@@ -716,7 +717,7 @@ msgstr "סוג המשתמש %s נקבע כברירת מחדל"
 # __('Editor', 'ure');
 # __('Author', 'ure');
 # wpml-name: 344a7f427fb765610ef96eb7bce95257
-#: ../includes/class-ure-lib.php:1932
+#: ../includes/class-ure-lib.php:1949
 msgid "Editor"
 msgstr "עורך"
 
@@ -724,7 +725,7 @@ msgstr "עורך"
 # __('Author', 'ure');
 # __('Contributor', 'ure');
 # wpml-name: a517747c3d12f99244ae598910d979c5
-#: ../includes/class-ure-lib.php:1933
+#: ../includes/class-ure-lib.php:1950
 msgid "Author"
 msgstr "כותב"
 
@@ -732,7 +733,7 @@ msgstr "כותב"
 # __('Contributor', 'ure');
 # __('Subscriber', 'ure');
 # wpml-name: 23d21ad4dea7aadf907e5e601b1905e6
-#: ../includes/class-ure-lib.php:1934
+#: ../includes/class-ure-lib.php:1951
 msgid "Contributor"
 msgstr "תורם"
 
@@ -740,7 +741,7 @@ msgstr "תורם"
 # __('Subscriber', 'ure');
 # // Standard WordPress capabilities
 # wpml-name: 992c4a5b4628d8ebf671cf460254ee81
-#: ../includes/class-ure-lib.php:1935
+#: ../includes/class-ure-lib.php:1952
 msgid "Subscriber"
 msgstr "מנוי"
 
@@ -748,7 +749,7 @@ msgstr "מנוי"
 # __('Switch themes', 'ure');
 # __('Edit themes', 'ure');
 # wpml-name: 87d980c0c79638536655ce7fa0a4b85d
-#: ../includes/class-ure-lib.php:1937
+#: ../includes/class-ure-lib.php:1954
 msgid "Switch themes"
 msgstr "החלפת תבניות"
 
@@ -756,7 +757,7 @@ msgstr "החלפת תבניות"
 # __('Edit themes', 'ure');
 # __('Activate plugins', 'ure');
 # wpml-name: 8395d1904c778ee1b2762e07a6a03878
-#: ../includes/class-ure-lib.php:1938
+#: ../includes/class-ure-lib.php:1955
 msgid "Edit themes"
 msgstr "עריכת תבניות"
 
@@ -764,7 +765,7 @@ msgstr "עריכת תבניות"
 # __('Activate plugins', 'ure');
 # __('Edit plugins', 'ure');
 # wpml-name: c38bc47406355ef06ad3e10a98505536
-#: ../includes/class-ure-lib.php:1939
+#: ../includes/class-ure-lib.php:1956
 msgid "Activate plugins"
 msgstr "הפעלת תוספים"
 
@@ -772,7 +773,7 @@ msgstr "הפעלת תוספים"
 # __('Edit plugins', 'ure');
 # __('Edit users', 'ure');
 # wpml-name: a6e42eb142c87e881a0d0c92acf4ef9f
-#: ../includes/class-ure-lib.php:1940
+#: ../includes/class-ure-lib.php:1957
 msgid "Edit plugins"
 msgstr "עריכת תוספים"
 
@@ -780,7 +781,7 @@ msgstr "עריכת תוספים"
 # __('Edit users', 'ure');
 # __('Edit files', 'ure');
 # wpml-name: 70118d8574d7c13da8c0a7c2acc0f659
-#: ../includes/class-ure-lib.php:1941
+#: ../includes/class-ure-lib.php:1958
 msgid "Edit users"
 msgstr "עריכת משתמשים"
 
@@ -788,7 +789,7 @@ msgstr "עריכת משתמשים"
 # __('Edit files', 'ure');
 # __('Manage options', 'ure');
 # wpml-name: 91c6e7a54b91cdc161f71958c597ed11
-#: ../includes/class-ure-lib.php:1942
+#: ../includes/class-ure-lib.php:1959
 msgid "Edit files"
 msgstr "עריכת קבצים"
 
@@ -796,7 +797,7 @@ msgstr "עריכת קבצים"
 # __('Manage options', 'ure');
 # __('Moderate comments', 'ure');
 # wpml-name: 9f285ad90d3e9f5122241f2e8abd3836
-#: ../includes/class-ure-lib.php:1943
+#: ../includes/class-ure-lib.php:1960
 msgid "Manage options"
 msgstr "ניהול אפשרויות אתר"
 
@@ -804,7 +805,7 @@ msgstr "ניהול אפשרויות אתר"
 # __('Moderate comments', 'ure');
 # __('Manage categories', 'ure');
 # wpml-name: abb293cb5d17f4acca429ea13d74c593
-#: ../includes/class-ure-lib.php:1944
+#: ../includes/class-ure-lib.php:1961
 msgid "Moderate comments"
 msgstr "ניהול תגובות"
 
@@ -812,7 +813,7 @@ msgstr "ניהול תגובות"
 # __('Manage categories', 'ure');
 # __('Manage links', 'ure');
 # wpml-name: 74c12b9adae95b65772e8c9c9c8e5af3
-#: ../includes/class-ure-lib.php:1945
+#: ../includes/class-ure-lib.php:1962
 msgid "Manage categories"
 msgstr "ניהול קטגוריות"
 
@@ -820,7 +821,7 @@ msgstr "ניהול קטגוריות"
 # __('Manage links', 'ure');
 # __('Upload files', 'ure');
 # wpml-name: fa1a08e2a749c9f330c9a8e60cac9cc3
-#: ../includes/class-ure-lib.php:1946
+#: ../includes/class-ure-lib.php:1963
 msgid "Manage links"
 msgstr "ניהול קישורים"
 
@@ -828,7 +829,7 @@ msgstr "ניהול קישורים"
 # __('Upload files', 'ure');
 # __('Import', 'ure');
 # wpml-name: c7de86f69db264c3950d8ae46ed2e33f
-#: ../includes/class-ure-lib.php:1947
+#: ../includes/class-ure-lib.php:1964
 msgid "Upload files"
 msgstr "העלאת קבצים"
 
@@ -836,7 +837,7 @@ msgstr "העלאת קבצים"
 # __('Import', 'ure');
 # __('Unfiltered html', 'ure');
 # wpml-name: 72d6d7a1885885bb55a565fd1070581a
-#: ../includes/class-ure-lib.php:1948
+#: ../includes/class-ure-lib.php:1965
 msgid "Import"
 msgstr "יבוא"
 
@@ -844,7 +845,7 @@ msgstr "יבוא"
 # __('Unfiltered html', 'ure');
 # __('Edit posts', 'ure');
 # wpml-name: fdd95e5640d6d73230b7544ac261457a
-#: ../includes/class-ure-lib.php:1949
+#: ../includes/class-ure-lib.php:1966
 msgid "Unfiltered html"
 msgstr "עריכת HTML"
 
@@ -852,7 +853,7 @@ msgstr "עריכת HTML"
 # __('Edit posts', 'ure');
 # __('Edit others posts', 'ure');
 # wpml-name: 9cd92b1d45220e13e5e257f185f3fec3
-#: ../includes/class-ure-lib.php:1950
+#: ../includes/class-ure-lib.php:1967
 msgid "Edit posts"
 msgstr "עריכת פוסטים"
 
@@ -860,7 +861,7 @@ msgstr "עריכת פוסטים"
 # __('Edit others posts', 'ure');
 # __('Edit published posts', 'ure');
 # wpml-name: 5fbf3fd2d5fd1e393df2c639fa16dbc9
-#: ../includes/class-ure-lib.php:1951
+#: ../includes/class-ure-lib.php:1968
 msgid "Edit others posts"
 msgstr "עריכת פוסטים של אחרים"
 
@@ -868,7 +869,7 @@ msgstr "עריכת פוסטים של אחרים"
 # __('Edit published posts', 'ure');
 # __('Publish posts', 'ure');
 # wpml-name: d42efc04e7900de59ed3667c971e9e9d
-#: ../includes/class-ure-lib.php:1952
+#: ../includes/class-ure-lib.php:1969
 msgid "Edit published posts"
 msgstr "עריכת פוסטים שפורסמו"
 
@@ -876,7 +877,7 @@ msgstr "עריכת פוסטים שפורסמו"
 # __('Publish posts', 'ure');
 # __('Edit pages', 'ure');
 # wpml-name: 64a4f8f7a855c54e1ca7c910439f5e90
-#: ../includes/class-ure-lib.php:1953
+#: ../includes/class-ure-lib.php:1970
 msgid "Publish posts"
 msgstr "פוסטים שפורסמו"
 
@@ -884,7 +885,7 @@ msgstr "פוסטים שפורסמו"
 # __('Edit pages', 'ure');
 # __('Read', 'ure');
 # wpml-name: e7a51430fa0fbb32587c083ffae4b525
-#: ../includes/class-ure-lib.php:1954
+#: ../includes/class-ure-lib.php:1971
 msgid "Edit pages"
 msgstr "עריכת עמודים"
 
@@ -892,7 +893,7 @@ msgstr "עריכת עמודים"
 # __('Read', 'ure');
 # __('Level 10', 'ure');
 # wpml-name: 7a1a5f3e79fdc91edf2f5ead9d66abb4
-#: ../includes/class-ure-lib.php:1955
+#: ../includes/class-ure-lib.php:1972
 msgid "Read"
 msgstr "קורא"
 
@@ -900,7 +901,7 @@ msgstr "קורא"
 # __('Level 10', 'ure');
 # __('Level 9', 'ure');
 # wpml-name: b3ef2f43e2782f8d95a4c22d577cb1bc
-#: ../includes/class-ure-lib.php:1956
+#: ../includes/class-ure-lib.php:1973
 msgid "Level 10"
 msgstr "דרגה 10"
 
@@ -908,7 +909,7 @@ msgstr "דרגה 10"
 # __('Level 9', 'ure');
 # __('Level 8', 'ure');
 # wpml-name: d48252bc9cffec4bed5028a7c71d8196
-#: ../includes/class-ure-lib.php:1957
+#: ../includes/class-ure-lib.php:1974
 msgid "Level 9"
 msgstr "דרגה 9"
 
@@ -916,7 +917,7 @@ msgstr "דרגה 9"
 # __('Level 8', 'ure');
 # __('Level 7', 'ure');
 # wpml-name: 625fef0c34a92b3685266a47f16c85dd
-#: ../includes/class-ure-lib.php:1958
+#: ../includes/class-ure-lib.php:1975
 msgid "Level 8"
 msgstr "דרגה 8"
 
@@ -924,7 +925,7 @@ msgstr "דרגה 8"
 # __('Level 7', 'ure');
 # __('Level 6', 'ure');
 # wpml-name: a9acd6f427950dc61cac50b4e9ee6bc4
-#: ../includes/class-ure-lib.php:1959
+#: ../includes/class-ure-lib.php:1976
 msgid "Level 7"
 msgstr "דרגה 7"
 
@@ -932,7 +933,7 @@ msgstr "דרגה 7"
 # __('Level 6', 'ure');
 # __('Level 5', 'ure');
 # wpml-name: b30ce92fb9295725ef29254ba5ae17e1
-#: ../includes/class-ure-lib.php:1960
+#: ../includes/class-ure-lib.php:1977
 msgid "Level 6"
 msgstr "דרגה 6"
 
@@ -940,7 +941,7 @@ msgstr "דרגה 6"
 # __('Level 5', 'ure');
 # __('Level 4', 'ure');
 # wpml-name: 05988e43e8f2eb5efdddc2b467c4b2f3
-#: ../includes/class-ure-lib.php:1961
+#: ../includes/class-ure-lib.php:1978
 msgid "Level 5"
 msgstr "דרגה 5"
 
@@ -948,7 +949,7 @@ msgstr "דרגה 5"
 # __('Level 4', 'ure');
 # __('Level 3', 'ure');
 # wpml-name: 309531bbe9a9d3228cd0687ec6e66bed
-#: ../includes/class-ure-lib.php:1962
+#: ../includes/class-ure-lib.php:1979
 msgid "Level 4"
 msgstr "דרגה 4"
 
@@ -956,7 +957,7 @@ msgstr "דרגה 4"
 # __('Level 3', 'ure');
 # __('Level 2', 'ure');
 # wpml-name: 8f60a63315c55e659b1a2dd5064ceae8
-#: ../includes/class-ure-lib.php:1963
+#: ../includes/class-ure-lib.php:1980
 msgid "Level 3"
 msgstr "דרגה 3"
 
@@ -964,7 +965,7 @@ msgstr "דרגה 3"
 # __('Level 2', 'ure');
 # __('Level 1', 'ure');
 # wpml-name: 228e9da47384bacde793a2b78d488bb0
-#: ../includes/class-ure-lib.php:1964
+#: ../includes/class-ure-lib.php:1981
 msgid "Level 2"
 msgstr "דרגה 2"
 
@@ -972,7 +973,7 @@ msgstr "דרגה 2"
 # __('Level 1', 'ure');
 # __('Level 0', 'ure');
 # wpml-name: 5afaf1679ad0887adebaddb40e0bd3f7
-#: ../includes/class-ure-lib.php:1965
+#: ../includes/class-ure-lib.php:1982
 msgid "Level 1"
 msgstr "דרגה 1"
 
@@ -980,7 +981,7 @@ msgstr "דרגה 1"
 # __('Level 0', 'ure');
 # __('Edit others pages', 'ure');
 # wpml-name: 057e95a59e032dbed970592dd1245092
-#: ../includes/class-ure-lib.php:1966
+#: ../includes/class-ure-lib.php:1983
 msgid "Level 0"
 msgstr "דרגה 0"
 
@@ -988,7 +989,7 @@ msgstr "דרגה 0"
 # __('Edit others pages', 'ure');
 # __('Edit published pages', 'ure');
 # wpml-name: b10af907824940fe6a5aa0a77c62be6f
-#: ../includes/class-ure-lib.php:1967
+#: ../includes/class-ure-lib.php:1984
 msgid "Edit others pages"
 msgstr "עריכת דפים של אחרים"
 
@@ -996,7 +997,7 @@ msgstr "עריכת דפים של אחרים"
 # __('Edit published pages', 'ure');
 # __('Publish pages', 'ure');
 # wpml-name: c5bfc24b0b891c9465134b83b2c6c259
-#: ../includes/class-ure-lib.php:1968
+#: ../includes/class-ure-lib.php:1985
 msgid "Edit published pages"
 msgstr "עריכת דפים שפורסמו"
 
@@ -1004,7 +1005,7 @@ msgstr "עריכת דפים שפורסמו"
 # __('Publish pages', 'ure');
 # __('Delete pages', 'ure');
 # wpml-name: 70d789f104acf7aa83b1c5ab230f8e7c
-#: ../includes/class-ure-lib.php:1969
+#: ../includes/class-ure-lib.php:1986
 msgid "Publish pages"
 msgstr "פרסום דפים"
 
@@ -1012,7 +1013,7 @@ msgstr "פרסום דפים"
 # __('Delete pages', 'ure');
 # __('Delete others pages', 'ure');
 # wpml-name: b665a2b3cb33c08decc52b8a3f3d1742
-#: ../includes/class-ure-lib.php:1970
+#: ../includes/class-ure-lib.php:1987
 msgid "Delete pages"
 msgstr "מחיקת דפים"
 
@@ -1020,7 +1021,7 @@ msgstr "מחיקת דפים"
 # __('Delete others pages', 'ure');
 # __('Delete published pages', 'ure');
 # wpml-name: 23eaa8e106fde2a76d80bc907f55ab7e
-#: ../includes/class-ure-lib.php:1971
+#: ../includes/class-ure-lib.php:1988
 msgid "Delete others pages"
 msgstr "מחיקת דפים של אחרים"
 
@@ -1028,7 +1029,7 @@ msgstr "מחיקת דפים של אחרים"
 # __('Delete published pages', 'ure');
 # __('Delete posts', 'ure');
 # wpml-name: 75c6bfee9157bbc48bfc4d50baab89e0
-#: ../includes/class-ure-lib.php:1972
+#: ../includes/class-ure-lib.php:1989
 msgid "Delete published pages"
 msgstr "מחיקת דפים שפורסמו"
 
@@ -1036,7 +1037,7 @@ msgstr "מחיקת דפים שפורסמו"
 # __('Delete posts', 'ure');
 # __('Delete others posts', 'ure');
 # wpml-name: 3dce6f688c85f06c63224b5c3be13919
-#: ../includes/class-ure-lib.php:1973
+#: ../includes/class-ure-lib.php:1990
 msgid "Delete posts"
 msgstr "מחיקת פוסטים"
 
@@ -1044,7 +1045,7 @@ msgstr "מחיקת פוסטים"
 # __('Delete others posts', 'ure');
 # __('Delete published posts', 'ure');
 # wpml-name: c0496287732814df690c8966027a58d6
-#: ../includes/class-ure-lib.php:1974
+#: ../includes/class-ure-lib.php:1991
 msgid "Delete others posts"
 msgstr "מחיקת פוסטים של אחרים"
 
@@ -1052,7 +1053,7 @@ msgstr "מחיקת פוסטים של אחרים"
 # __('Delete published posts', 'ure');
 # __('Delete private posts', 'ure');
 # wpml-name: b0a2d2039494d73f81f4e476bfda24da
-#: ../includes/class-ure-lib.php:1975
+#: ../includes/class-ure-lib.php:1992
 msgid "Delete published posts"
 msgstr "מחיקת פוסטים שפורסמו"
 
@@ -1060,7 +1061,7 @@ msgstr "מחיקת פוסטים שפורסמו"
 # __('Delete private posts', 'ure');
 # __('Edit private posts', 'ure');
 # wpml-name: dcd02c374764e49b36f0f959cc2917bb
-#: ../includes/class-ure-lib.php:1976
+#: ../includes/class-ure-lib.php:1993
 msgid "Delete private posts"
 msgstr "מחיקת פוסטים פרטיים"
 
@@ -1068,7 +1069,7 @@ msgstr "מחיקת פוסטים פרטיים"
 # __('Edit private posts', 'ure');
 # __('Read private posts', 'ure');
 # wpml-name: da9ee842794f7caf9fa32271073d5f7a
-#: ../includes/class-ure-lib.php:1977
+#: ../includes/class-ure-lib.php:1994
 msgid "Edit private posts"
 msgstr "עריכת פוסטים פרטיים"
 
@@ -1076,7 +1077,7 @@ msgstr "עריכת פוסטים פרטיים"
 # __('Read private posts', 'ure');
 # __('Delete private pages', 'ure');
 # wpml-name: eab0355307288f6480f8c53a0d953d79
-#: ../includes/class-ure-lib.php:1978
+#: ../includes/class-ure-lib.php:1995
 msgid "Read private posts"
 msgstr "קריאת פוסטים פרטיים"
 
@@ -1084,7 +1085,7 @@ msgstr "קריאת פוסטים פרטיים"
 # __('Delete private pages', 'ure');
 # __('Edit private pages', 'ure');
 # wpml-name: 2136c12e2beeadfe0da80a36ef967eca
-#: ../includes/class-ure-lib.php:1979
+#: ../includes/class-ure-lib.php:1996
 msgid "Delete private pages"
 msgstr "מחיקת עמודים פרטיים"
 
@@ -1092,7 +1093,7 @@ msgstr "מחיקת עמודים פרטיים"
 # __('Edit private pages', 'ure');
 # __('Read private pages', 'ure');
 # wpml-name: 4f3859ba470cb61f22a600a93c4ce11f
-#: ../includes/class-ure-lib.php:1980
+#: ../includes/class-ure-lib.php:1997
 msgid "Edit private pages"
 msgstr "מחיקת עמודים פרטיים"
 
@@ -1100,7 +1101,7 @@ msgstr "מחיקת עמודים פרטיים"
 # __('Read private pages', 'ure');
 # __('Delete users', 'ure');
 # wpml-name: 5faa3f2e9585e107dc5f23748a825882
-#: ../includes/class-ure-lib.php:1981
+#: ../includes/class-ure-lib.php:1998
 msgid "Read private pages"
 msgstr "קריאת עמודים פרטיים"
 
@@ -1108,7 +1109,7 @@ msgstr "קריאת עמודים פרטיים"
 # __('Delete users', 'ure');
 # __('Create users', 'ure');
 # wpml-name: 61c484c7f1638a9dd4237cb666b91c1f
-#: ../includes/class-ure-lib.php:1982
+#: ../includes/class-ure-lib.php:1999
 msgid "Delete users"
 msgstr "מחיקת משתמשים"
 
@@ -1116,7 +1117,7 @@ msgstr "מחיקת משתמשים"
 # __('Create users', 'ure');
 # __('Unfiltered upload', 'ure');
 # wpml-name: 6cf6d76fc00f8dd12af98a37d11f623e
-#: ../includes/class-ure-lib.php:1983
+#: ../includes/class-ure-lib.php:2000
 msgid "Create users"
 msgstr "יצירת משתמשים"
 
@@ -1124,7 +1125,7 @@ msgstr "יצירת משתמשים"
 # __('Unfiltered upload', 'ure');
 # __('Edit dashboard', 'ure');
 # wpml-name: 7110d42a34cbb3316d6d0c658fa34c86
-#: ../includes/class-ure-lib.php:1984
+#: ../includes/class-ure-lib.php:2001
 msgid "Unfiltered upload"
 msgstr "העלאת קבצים חופשית"
 
@@ -1132,7 +1133,7 @@ msgstr "העלאת קבצים חופשית"
 # __('Edit dashboard', 'ure');
 # __('Update plugins', 'ure');
 # wpml-name: b5577d27ebfdd60a3bda83ae726d574b
-#: ../includes/class-ure-lib.php:1985
+#: ../includes/class-ure-lib.php:2002
 msgid "Edit dashboard"
 msgstr "שינוי לוח הבקרה"
 
@@ -1140,7 +1141,7 @@ msgstr "שינוי לוח הבקרה"
 # __('Update plugins', 'ure');
 # __('Delete plugins', 'ure');
 # wpml-name: 23c5b17dc24e40fa47ca6588932d32f7
-#: ../includes/class-ure-lib.php:1986
+#: ../includes/class-ure-lib.php:2003
 msgid "Update plugins"
 msgstr "עדכון תוספים"
 
@@ -1148,7 +1149,7 @@ msgstr "עדכון תוספים"
 # __('Delete plugins', 'ure');
 # __('Install plugins', 'ure');
 # wpml-name: f2a839940dae3934317d8d6a6f647ebd
-#: ../includes/class-ure-lib.php:1987
+#: ../includes/class-ure-lib.php:2004
 msgid "Delete plugins"
 msgstr "מחיקת תוספים"
 
@@ -1156,7 +1157,7 @@ msgstr "מחיקת תוספים"
 # __('Install plugins', 'ure');
 # __('Update themes', 'ure');
 # wpml-name: 9d06472988c53bfc768bc7b6a788b697
-#: ../includes/class-ure-lib.php:1988
+#: ../includes/class-ure-lib.php:2005
 msgid "Install plugins"
 msgstr "התקנת תוספים"
 
@@ -1164,7 +1165,7 @@ msgstr "התקנת תוספים"
 # __('Update themes', 'ure');
 # __('Install themes', 'ure');
 # wpml-name: 504ea4a27260ac1e8822c5877ffe526b
-#: ../includes/class-ure-lib.php:1989
+#: ../includes/class-ure-lib.php:2006
 msgid "Update themes"
 msgstr "עדכון תבניות"
 
@@ -1172,7 +1173,7 @@ msgstr "עדכון תבניות"
 # __('Install themes', 'ure');
 # __('Update core', 'ure');
 # wpml-name: a7d67fb17876569a4590902d3566a6fd
-#: ../includes/class-ure-lib.php:1990
+#: ../includes/class-ure-lib.php:2007
 msgid "Install themes"
 msgstr "התקנת תבניות חדשות"
 
@@ -1180,7 +1181,7 @@ msgstr "התקנת תבניות חדשות"
 # __('Update core', 'ure');
 # __('List users', 'ure');
 # wpml-name: e56e5b87db548cd42be7a8a0f916205d
-#: ../includes/class-ure-lib.php:1991
+#: ../includes/class-ure-lib.php:2008
 msgid "Update core"
 msgstr "עדכון וורדפרס"
 
@@ -1188,7 +1189,7 @@ msgstr "עדכון וורדפרס"
 # __('List users', 'ure');
 # __('Remove users', 'ure');
 # wpml-name: f923f903857a5387d3db70494e074632
-#: ../includes/class-ure-lib.php:1992
+#: ../includes/class-ure-lib.php:2009
 msgid "List users"
 msgstr "בצפייה במשתמשים"
 
@@ -1196,7 +1197,7 @@ msgstr "בצפייה במשתמשים"
 # __('Remove users', 'ure');
 # __('Add users', 'ure');
 # wpml-name: 8c7e9f2dfcd0125922dfbce36a1a4c2a
-#: ../includes/class-ure-lib.php:1993
+#: ../includes/class-ure-lib.php:2010
 msgid "Remove users"
 msgstr "הסרת משתמשים"
 
@@ -1204,7 +1205,7 @@ msgstr "הסרת משתמשים"
 # __('Add users', 'ure');
 # __('Promote users', 'ure');
 # wpml-name: 3bf6330f5f4c7c3dfddc9670cfaf4a22
-#: ../includes/class-ure-lib.php:1994
+#: ../includes/class-ure-lib.php:2011
 msgid "Add users"
 msgstr "הוספת משתמשים"
 
@@ -1212,7 +1213,7 @@ msgstr "הוספת משתמשים"
 # __('Promote users', 'ure');
 # __('Edit theme options', 'ure');
 # wpml-name: 12f4ba95cdfd04b791820b9c20887913
-#: ../includes/class-ure-lib.php:1995
+#: ../includes/class-ure-lib.php:2012
 msgid "Promote users"
 msgstr "שינוי משתמשים"
 
@@ -1220,7 +1221,7 @@ msgstr "שינוי משתמשים"
 # __('Edit theme options', 'ure');
 # __('Delete themes', 'ure');
 # wpml-name: 8841974497684dad4d55beaf2b6c52ef
-#: ../includes/class-ure-lib.php:1996
+#: ../includes/class-ure-lib.php:2013
 msgid "Edit theme options"
 msgstr "עריכת אפשרויות התבנית"
 
@@ -1228,7 +1229,7 @@ msgstr "עריכת אפשרויות התבנית"
 # __('Delete themes', 'ure');
 # __('Export', 'ure');
 # wpml-name: 335e9dea5f21dc3f591f3aceefdeed54
-#: ../includes/class-ure-lib.php:1997
+#: ../includes/class-ure-lib.php:2014
 msgid "Delete themes"
 msgstr "מחיקת תבניות"
 
@@ -1236,7 +1237,7 @@ msgstr "מחיקת תבניות"
 # __('Export', 'ure');
 # }
 # wpml-name: 0095a9fa74d1713e43e370a7d7846224
-#: ../includes/class-ure-lib.php:1998
+#: ../includes/class-ure-lib.php:2015
 msgid "Export"
 msgstr "ייצוא תוכן"
 
@@ -1244,7 +1245,7 @@ msgstr "ייצוא תוכן"
 # return 'Error! ' . __('Error: Capability name must contain latin characters and digits only!', 'ure');
 # ;
 # wpml-name: 03766b9586d3012af6fc788e85d39530
-#: ../includes/class-ure-lib.php:2108
+#: ../includes/class-ure-lib.php:2125
 msgid "Error: Capability name must contain latin characters and digits only!"
 msgstr "שגיאה! שם יכולת חייב להכיל אותיות באנגלית וספרות בלבד"
 
@@ -1252,7 +1253,7 @@ msgstr "שגיאה! שם יכולת חייב להכיל אותיות באנגל
 # $mess = sprintf(__('Capability %s is added successfully', 'ure'), $user_capability);
 # } else {
 # wpml-name: 6dcaae98207ba2673da987515b02fe31
-#: ../includes/class-ure-lib.php:2121
+#: ../includes/class-ure-lib.php:2138
 #, php-format
 msgid "Capability %s is added successfully"
 msgstr "היכולת %s נוספה בהצלחה"
@@ -1261,7 +1262,7 @@ msgstr "היכולת %s נוספה בהצלחה"
 # $mess = sprintf('Error! ' . __('Capability %s exists already', 'ure'), $user_capability);
 # }
 # wpml-name: d5c1ec0556aadfa88cadffb62266b83d
-#: ../includes/class-ure-lib.php:2123
+#: ../includes/class-ure-lib.php:2140
 #, php-format
 msgid "Capability %s exists already"
 msgstr "כבר קיימת יכולת בשם %s"
@@ -1270,7 +1271,7 @@ msgstr "כבר קיימת יכולת בשם %s"
 # return sprintf(__('Error! You do not have permission to delete this capability: %s!', 'ure'), $capability_id);
 # }
 # wpml-name: 0e132e68574d9609d956f9be409f7384
-#: ../includes/class-ure-lib.php:2148
+#: ../includes/class-ure-lib.php:2165
 #, php-format
 msgid "Error! You do not have permission to delete this capability: %s!"
 msgstr "שגיאה! אין לך הרשאה למחוק את היכולת %s"
@@ -1279,12 +1280,12 @@ msgstr "שגיאה! אין לך הרשאה למחוק את היכולת %s"
 # $mess = sprintf(__('Capability %s is removed successfully', 'ure'), $capability_id);
 # }
 # wpml-name: d819128cbb44d0e2fe4eb8b8b6397871
-#: ../includes/class-ure-lib.php:2167
+#: ../includes/class-ure-lib.php:2184
 #, php-format
 msgid "Capability %s is removed successfully"
 msgstr "היכולת %s הוסרה בהצלחה"
 
-#: ../includes/class-ure-lib.php:2271
+#: ../includes/class-ure-lib.php:2288
 msgid "Version:"
 msgstr ""
 
@@ -1292,7 +1293,7 @@ msgstr ""
 # <a class="ure_rsb_link" style="background-image:url(<?php echo URE_PLUGIN_URL . 'images/vladimir.png'; ?>);" target="_blank" href="http://www.shinephp.com/"><?php _e("Author's website", 'ure'); ?></a>
 # <a class="ure_rsb_link" style="background-image:url(<?php echo URE_PLUGIN_URL . 'images/user-role-editor-icon.png'; ?>);" target="_blank" href="http://role-editor.com"><?php _e('Plugin webpage', 'ure'); ?></a>
 # wpml-name: b63bc6c033363c8ee66beaf4ea4d5bc3
-#: ../includes/class-ure-lib.php:2272
+#: ../includes/class-ure-lib.php:2289
 msgid "Author's website"
 msgstr "אתר היוצר"
 
@@ -1300,7 +1301,7 @@ msgstr "אתר היוצר"
 # <a class="ure_rsb_link" style="background-image:url(<?php echo URE_PLUGIN_URL . 'images/user-role-editor-icon.png'; ?>);" target="_blank" href="http://role-editor.com"><?php _e('Plugin webpage', 'ure'); ?></a>
 # <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>
 # wpml-name: f919d1248270e1eca5cc6a39253264f7
-#: ../includes/class-ure-lib.php:2273
+#: ../includes/class-ure-lib.php:2290
 msgid "Plugin webpage"
 msgstr "דף התוסף"
 
@@ -1308,7 +1309,7 @@ msgstr "דף התוסף"
 # <a class="ure_rsb_link" style="background-image:url(<?php echo URE_PLUGIN_URL . 'images/user-role-editor-icon.png'; ?>);" target="_blank" href="http://role-editor.com"><?php _e('Plugin webpage', 'ure'); ?></a>
 # <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>
 # wpml-name: f919d1248270e1eca5cc6a39253264f7
-#: ../includes/class-ure-lib.php:2274
+#: ../includes/class-ure-lib.php:2291
 #, fuzzy
 msgid "Plugin download"
 msgstr "דף התוסף"
@@ -1317,7 +1318,7 @@ msgstr "דף התוסף"
 # <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>
 # <?php
 # wpml-name: 1fe917b01f9a3f87fa2d7d3b7643fac1
-#: ../includes/class-ure-lib.php:2276
+#: ../includes/class-ure-lib.php:2293
 msgid "FAQ"
 msgstr "שאלות נפוצות"
 
@@ -1325,7 +1326,7 @@ msgstr "שאלות נפוצות"
 # <option value="none" selected="selected">' . __('None', 'ure') . '</option>';
 # $this->role_select_html = '<select id="user_role" name="user_role" onchange="ure_role_change(this.value);">';
 # wpml-name: 6adf97f83acf6453d4a6a4b1070f3754
-#: ../includes/class-ure-lib.php:2324
+#: ../includes/class-ure-lib.php:2341
 msgid "None"
 msgstr "תרום"
 
@@ -1333,11 +1334,11 @@ msgstr "תרום"
 #
 #
 # wpml-name: 7aa3fd37413ab803143d28fcc65287cf
-#: ../includes/class-ure-lib.php:2351
+#: ../includes/class-ure-lib.php:2368
 msgid "Delete All Unused Roles"
 msgstr ""
 
-#: ../includes/class-ure-lib.php:2375
+#: ../includes/class-ure-lib.php:2392
 msgid "&mdash; No role for this site &mdash;"
 msgstr ""
 
@@ -1396,16 +1397,34 @@ msgid ""
 "deprecated capabilities."
 msgstr ""
 
-# <tr>
-# <td><label for="allow_edit_users_to_not_super_admin"><?php esc_html_e('Allow create, edit and delete user to not super-admininstrators:', 'ure'); ?></label></td>
-# <td>
-# wpml-name: 4bc50461b16d09d4cea688ef6c286c6f
-#: ../includes/class-ure-screen-help.php:27
-msgid "Allow create, edit and delete users to not super-admininstrators"
+# 'select_all' => __('Select All', 'ure'),
+# 'unselect_all' => __('Unselect All', 'ure'),
+# 'reverse' => __('Reverse', 'ure'),
+# wpml-name: 016269c0d83a19a19a2ee0a4294740b4
+#: ../includes/class-ure-screen-help.php:41
+#, fuzzy
+msgid "select roles below"
+msgstr "לא לבחור שום דבר"
+
+#: ../includes/class-ure-screen-help.php:56
+msgid "Other default roles for new registered user"
+msgstr ""
+
+#: ../includes/class-ure-screen-help.php:57
+msgid ""
+"select roles below to assign them to the new user automatically as an "
+"addition to the primary role. Note for multisite environment: take into "
+"account that other default roles should exist at the site, in order to be "
+"assigned to the new registered users."
+msgstr ""
+
+#: ../includes/class-ure-screen-help.php:75
+msgid "Allow non super-admininstrators to create, edit and delete users"
 msgstr ""
 
-#: ../includes/class-ure-screen-help.php:28
+#: ../includes/class-ure-screen-help.php:76
 msgid ""
 "Super administrator only may create, edit and delete users under WordPress "
-"multi-site. Turn this option on in order to remove this limitation."
+"multi-site by default. Turn this option on in order to remove this "
+"limitation."
 msgstr ""
diff --git a/wp-content/plugins/user-role-editor/lang/ure-hu_HU.mo b/wp-content/plugins/user-role-editor/lang/ure-hu_HU.mo
new file mode 100644 (file)
index 0000000..b40b406
Binary files /dev/null and b/wp-content/plugins/user-role-editor/lang/ure-hu_HU.mo differ
diff --git a/wp-content/plugins/user-role-editor/lang/ure-hu_HU.po b/wp-content/plugins/user-role-editor/lang/ure-hu_HU.po
new file mode 100644 (file)
index 0000000..d7df254
--- /dev/null
@@ -0,0 +1,879 @@
+msgid ""
+msgstr ""
+"Project-Id-Version: User Role Editor 4.16\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2014-10-01 12:45+0700\n"
+"PO-Revision-Date: \n"
+"Last-Translator: Vladimir Garagulya <vladimir@shinephp.com>\n"
+"Language-Team: \n"
+"Language: hu_HU\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Poedit-SourceCharset: UTF-8\n"
+"X-Poedit-KeywordsList: __;_e;esc_html__;esc_html_e\n"
+"X-Poedit-Basepath: .\n"
+"X-Generator: Poedit 1.5.4\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Poedit-SearchPath-0: ..\n"
+
+#: ../includes/settings-template.php:17
+msgid "User Role Editor - Options"
+msgstr "Szerepkör szerkesztő - Beállítások"
+
+#: ../includes/settings-template.php:21
+#: ../includes/class-user-role-editor.php:547
+msgid "General"
+msgstr "Általános"
+
+#: ../includes/settings-template.php:26
+#: ../includes/class-user-role-editor.php:553
+msgid "Additional Modules"
+msgstr "További modulok"
+
+#: ../includes/settings-template.php:30
+#: ../includes/class-user-role-editor.php:559
+msgid "Default Roles"
+msgstr "Alap szerepkörök"
+
+#: ../includes/settings-template.php:34
+#: ../includes/class-user-role-editor.php:564
+msgid "Multisite"
+msgstr "Multisite"
+
+#: ../includes/settings-template.php:39
+msgid "About"
+msgstr "Névjegy"
+
+#: ../includes/settings-template.php:53
+#: ../includes/class-ure-screen-help.php:15
+msgid "Show Administrator role at User Role Editor"
+msgstr "Adminisztrátor szerepkör megjelenítése a Szerepkör szerkesztőben"
+
+#: ../includes/settings-template.php:61
+#: ../includes/class-ure-screen-help.php:18
+msgid "Show capabilities in the human readable form"
+msgstr "Képességek megjelenítése könnyen olvasható formában"
+
+#: ../includes/settings-template.php:69 ../includes/ure-role-edit.php:40
+#: ../includes/ure-user-edit.php:63 ../includes/class-ure-screen-help.php:21
+msgid "Show deprecated capabilities"
+msgstr "Elavult képességek megjelenítése"
+
+#: ../includes/settings-template.php:81 ../includes/settings-template.php:117
+#: ../includes/settings-template.php:149 ../includes/settings-template.php:181
+msgid "Save"
+msgstr "Mentés"
+
+#: ../includes/settings-template.php:102
+#: ../includes/class-ure-screen-help.php:40
+msgid "Count users without role"
+msgstr "Szerepkör nélküli felhasználók számlálása"
+
+#: ../includes/settings-template.php:129
+msgid "Primary default role: "
+msgstr "Elsődleges alap szerepkör:"
+
+#: ../includes/settings-template.php:136
+msgid "Other default roles for new registered user: "
+msgstr "Egyéb alap szerepkörök újonnan regisztrált felhasználók számára:"
+
+#: ../includes/settings-template.php:142
+msgid ""
+"Note for multisite environment: take into account that other default roles "
+"should exist at the site, in order to be assigned to the new registered "
+"users."
+msgstr ""
+"Megjegyzés a MultiSite környezethez: vegye figyelembe, hogy több alap "
+"szerepkörnek is léteznie kell a weboldalon, az új felhasználók "
+"létrehozásához."
+
+#: ../includes/settings-template.php:168
+msgid "Allow non super administrators to create, edit, and delete users"
+msgstr ""
+"Nem szuperadminok is hozhassanak létre, módosíthassanak és törölhessenek "
+"felhasználókat"
+
+#: ../includes/class-user-role-editor.php:195
+msgid "Change role for users without role"
+msgstr "Szerepkör nélküli felhasználók szerepkörének megadása"
+
+#: ../includes/class-user-role-editor.php:196
+msgid "No rights"
+msgstr "Nincs jogosultság"
+
+#: ../includes/class-user-role-editor.php:197
+msgid "Provide new role"
+msgstr "Új szerepkör megadása"
+
+#: ../includes/class-user-role-editor.php:281
+#: ../includes/class-user-role-editor.php:283
+msgid "You do not have permission to edit this user."
+msgstr "Nincs jogosultsága a felhasználó szerkesztéséhez."
+
+#: ../includes/class-user-role-editor.php:422
+msgid "Capabilities"
+msgstr "Képességek"
+
+#: ../includes/class-user-role-editor.php:514
+msgid "Settings"
+msgstr "Beállítások"
+
+#: ../includes/class-user-role-editor.php:525
+#: ../includes/class-ure-lib.php:2292
+msgid "Changelog"
+msgstr "Változások naplója"
+
+#: ../includes/class-user-role-editor.php:573
+#: ../includes/class-user-role-editor.php:601
+#: ../includes/class-user-role-editor.php:946
+#: ../includes/class-ure-lib.php:248
+msgid "User Role Editor"
+msgstr "Szerepkör szerkesztő"
+
+#: ../includes/class-user-role-editor.php:658
+#: ../includes/class-user-role-editor.php:676
+#: ../includes/class-user-role-editor.php:720
+msgid "User Role Editor options are updated"
+msgstr "Szerepkör szerkesztő beállításai frissítve"
+
+#: ../includes/class-user-role-editor.php:704
+msgid "Default Roles are updated"
+msgstr "Alap szerepkörök frissítve"
+
+#: ../includes/class-user-role-editor.php:728
+msgid ""
+"You do not have sufficient permissions to manage options for User Role "
+"Editor."
+msgstr ""
+"Nincs elég jogosultsága a Szerepkör szerkesztő beállításainak kezeléséhez."
+
+#: ../includes/class-user-role-editor.php:807
+msgid "Insufficient permissions to work with User Role Editor"
+msgstr "Nincs elég jogosultsága a Szerepkör szerkesztő használatához"
+
+#: ../includes/class-user-role-editor.php:888
+msgid "Select All"
+msgstr "Összeset kijelöl"
+
+#: ../includes/class-user-role-editor.php:889
+msgid "Unselect All"
+msgstr "Kijelölés megszünt."
+
+#: ../includes/class-user-role-editor.php:890
+msgid "Reverse"
+msgstr "Fordított kijelölés"
+
+#: ../includes/class-user-role-editor.php:891
+msgid "Update"
+msgstr "Frissítés"
+
+#: ../includes/class-user-role-editor.php:892
+msgid "Please confirm permissions update"
+msgstr "Képességek frissítésének megersőítése"
+
+#: ../includes/class-user-role-editor.php:893
+msgid "Add New Role"
+msgstr "Új szerepkör létrehozása"
+
+#: ../includes/class-user-role-editor.php:894
+#: ../includes/class-user-role-editor.php:899
+msgid "Rename Role"
+msgstr "Szerepkör átnevezés"
+
+#: ../includes/class-user-role-editor.php:895
+msgid " Role name (ID) can not be empty!"
+msgstr "A szerepkör neve (azonosító) nem lehet üres!"
+
+#: ../includes/class-user-role-editor.php:896
+msgid ""
+" Role name (ID) must contain latin characters, digits, hyphens or underscore "
+"only!"
+msgstr ""
+"A szerepkör neve (azonosítója) csak latin betűket, szűmokat, kötőjelet és "
+"aláhúzást tartalmazhat."
+
+#: ../includes/class-user-role-editor.php:897
+msgid ""
+" WordPress does not support numeric Role name (ID). Add latin characters to "
+"it."
+msgstr ""
+"A WordPress nem támoagtja a numeriks szerepkör neveket (azonosító). Kell "
+"bele legalább egy latin betű."
+
+#: ../includes/class-user-role-editor.php:898
+msgid "Add Role"
+msgstr "Új szerepkör"
+
+#: ../includes/class-user-role-editor.php:900
+msgid "Delete Role"
+msgstr "Szerepkör törlése"
+
+#: ../includes/class-user-role-editor.php:901
+msgid "Cancel"
+msgstr "Mégse"
+
+#: ../includes/class-user-role-editor.php:902
+msgid "Add Capability"
+msgstr "Új képesség"
+
+#: ../includes/class-user-role-editor.php:903
+#: ../includes/class-user-role-editor.php:912
+msgid "Delete Capability"
+msgstr "Képesség törlése"
+
+#: ../includes/class-user-role-editor.php:904
+msgid "Reset"
+msgstr "Alaphelyzet"
+
+#: ../includes/class-user-role-editor.php:905
+msgid "DANGER! Resetting will restore default settings from WordPress Core."
+msgstr ""
+"VESZÉLY! Az alaphelyzetre állítás a WordPress mag beállításait állítja be "
+"újra."
+
+#: ../includes/class-user-role-editor.php:906
+msgid ""
+"If any plugins have changed capabilities in any way upon installation (such "
+"as S2Member, WooCommerce, and many more), those capabilities will be DELETED!"
+msgstr ""
+"Ha bármilyen bővítmény módosított a képességeket bármilyen módon (pl.: "
+"S2Member, WooCommerce, és sok másik), ezek a módosítások TÖRÖLVE lesznek!"
+
+#: ../includes/class-user-role-editor.php:907
+msgid ""
+"For more information on how to undo changes and restore plugin capabilities "
+"go to"
+msgstr ""
+"További információ a képességek módosításainak visszavonásáról és "
+"helyreállításáról"
+
+#: ../includes/class-user-role-editor.php:909
+msgid "Continue?"
+msgstr "Folytassuk?"
+
+#: ../includes/class-user-role-editor.php:910
+msgid "Default Role"
+msgstr "Alap szerepkör"
+
+#: ../includes/class-user-role-editor.php:911
+msgid "Set New Default Role"
+msgstr "Új alap szerepkör beállítása"
+
+#: ../includes/class-user-role-editor.php:913
+msgid ""
+"Warning! Be careful - removing critical capability could crash some plugin "
+"or other custom code"
+msgstr ""
+"Figyelem! Legyen óvatos - kritikus képesség törlésétől leállhat néhány "
+"bővítmény vagy egyedi kód."
+
+#: ../includes/class-user-role-editor.php:914
+msgid " Capability name (ID) can not be empty!"
+msgstr "A képesség név (azonosító) nem lehet üres."
+
+#: ../includes/class-user-role-editor.php:915
+msgid ""
+" Capability name (ID) must contain latin characters, digits, hyphens or "
+"underscore only!"
+msgstr ""
+"A képesség név (azonosító) csak latin betűkből, számokból, kötőjelből és "
+"aláhúzásból állhat."
+
+#: ../includes/class-user-role-editor.php:949
+#: ../includes/class-user-role-editor.php:978
+msgid "Other Roles"
+msgstr "Más szerepkörök"
+
+#: ../includes/class-user-role-editor.php:960
+msgid "Edit"
+msgstr "Szerkeszt"
+
+#: ../includes/ure-role-edit.php:17
+msgid "Select Role and change its capabilities:"
+msgstr "Szerepkör kiválasztása a képességeinek módosításához:"
+
+#: ../includes/ure-role-edit.php:30 ../includes/ure-user-edit.php:53
+msgid "Show capabilities in human readable form"
+msgstr "Képességek megjelenítése olvasható formában"
+
+#: ../includes/ure-role-edit.php:44
+msgid "If checked, then apply action to ALL sites of this Network"
+msgstr ""
+"Ha bejelölve, akkor a művelet a hálózat minden weboldalára érvényesülni fog"
+
+#: ../includes/ure-role-edit.php:56
+msgid "Apply to All Sites"
+msgstr "Alkalmazás minden oldalra"
+
+#: ../includes/ure-role-edit.php:63 ../includes/ure-user-edit.php:109
+msgid "Core capabilities:"
+msgstr "Gyári képességek:"
+
+#: ../includes/ure-role-edit.php:65 ../includes/ure-user-edit.php:111
+msgid "Quick filter:"
+msgstr "Gyors szűrés:"
+
+#: ../includes/ure-role-edit.php:83 ../includes/ure-user-edit.php:130
+msgid "Custom capabilities:"
+msgstr "Egyedi képességek:"
+
+#: ../includes/class-ure-lib.php:156
+msgid "Error: wrong request"
+msgstr "Hiba: hibás kérés"
+
+#: ../includes/class-ure-lib.php:189 ../includes/class-ure-lib.php:200
+msgid "Role name (ID): "
+msgstr "Szerepkör név (azonosító):"
+
+#: ../includes/class-ure-lib.php:191 ../includes/class-ure-lib.php:202
+msgid "Display Role Name: "
+msgstr "Szerepkör megnevezése:"
+
+#: ../includes/class-ure-lib.php:193
+msgid "Make copy of: "
+msgstr "Ennek a másolata:"
+
+#: ../includes/class-ure-lib.php:209
+msgid "Select Role:"
+msgstr "Válasszon szerepkört:"
+
+#: ../includes/class-ure-lib.php:224
+msgid "Delete:"
+msgstr "Törlés:"
+
+#: ../includes/class-ure-lib.php:231
+msgid "Capability name (ID): "
+msgstr "Képesség név (azonosító):"
+
+#: ../includes/class-ure-lib.php:345
+msgid "Error: "
+msgstr "Hiba:"
+
+#: ../includes/class-ure-lib.php:345
+msgid "Role"
+msgstr "Szerepkör"
+
+#: ../includes/class-ure-lib.php:346
+msgid "does not exist"
+msgstr "nem létezik"
+
+#: ../includes/class-ure-lib.php:389
+msgid "Role is updated successfully"
+msgstr "Szerepkör sikeresen frissítve"
+
+#: ../includes/class-ure-lib.php:391
+msgid "Roles are updated for all network"
+msgstr "Szerepkörök frissítése a teljes hálózaton"
+
+#: ../includes/class-ure-lib.php:397
+msgid "Error occured during role(s) update"
+msgstr "Hiba történt a szerepkör(ök) frissítése során"
+
+#: ../includes/class-ure-lib.php:404
+msgid "User capabilities are updated successfully"
+msgstr "Felhasználó képességei sikeresen frissítve"
+
+#: ../includes/class-ure-lib.php:409
+msgid "Error occured during user update"
+msgstr "Hiba történt a felhasználó frissítése során"
+
+#: ../includes/class-ure-lib.php:467
+msgid "User Roles are restored to WordPress default values. "
+msgstr "Felhasználói szerepkörök visszaállítva a WordPress alaphelyzetébe."
+
+#: ../includes/class-ure-lib.php:1334
+msgid "Help"
+msgstr "Súgó"
+
+#: ../includes/class-ure-lib.php:1692
+msgid "Error is occur. Please check the log file."
+msgstr "Hiba történt. Nézze meg a naplófájlt!"
+
+#: ../includes/class-ure-lib.php:1735 ../includes/class-ure-lib.php:1802
+msgid ""
+"Error: Role ID must contain latin characters, digits, hyphens or underscore "
+"only!"
+msgstr ""
+"Hiba: a szerepkör azonosító csak latin betűkből, számokból, kötőjelből és "
+"aláhúzásból állhat."
+
+#: ../includes/class-ure-lib.php:1739 ../includes/class-ure-lib.php:1806
+msgid ""
+"Error: WordPress does not support numeric Role name (ID). Add latin "
+"characters to it."
+msgstr ""
+"Hiba: a WordPress nem támogatja a numerikus szerepkör neveket "
+"(azonosítókat). Legyen benn legalább egy latin betű."
+
+#: ../includes/class-ure-lib.php:1754
+#, php-format
+msgid "Role %s exists already"
+msgstr "%s szerepkör már létezik"
+
+#: ../includes/class-ure-lib.php:1769
+msgid "Error is encountered during new role create operation"
+msgstr "Hiba történt az új szerepkör létrehozása során."
+
+#: ../includes/class-ure-lib.php:1771
+#, php-format
+msgid "Role %s is created successfully"
+msgstr "%s szerepkör sikeresen létrehozva"
+
+#: ../includes/class-ure-lib.php:1795
+msgid "Error: Role ID is empty!"
+msgstr "Hiba: a szerepkör azonosító üres!"
+
+#: ../includes/class-ure-lib.php:1813
+msgid "Error: Empty role display name is not allowed."
+msgstr "Hiba: nem lehet üres a szerepkör megjelenítendő neve."
+
+#: ../includes/class-ure-lib.php:1820
+#, php-format
+msgid "Role %s does not exists"
+msgstr "%s szerepkör nem létezik"
+
+#: ../includes/class-ure-lib.php:1828
+#, php-format
+msgid "Role %s is renamed to %s successfully"
+msgstr "%s szerepkör sikeresen átnevezve erre: %s"
+
+#: ../includes/class-ure-lib.php:1895
+msgid "Error encountered during role delete operation"
+msgstr "Hiba történt a szerepkör törlése során."
+
+#: ../includes/class-ure-lib.php:1897
+msgid "Unused roles are deleted successfully"
+msgstr "A nem használt szerepkörök sikeresen törölve lettek."
+
+#: ../includes/class-ure-lib.php:1899
+#, php-format
+msgid "Role %s is deleted successfully"
+msgstr "%s szerepkör sikeresen törölve lett."
+
+#: ../includes/class-ure-lib.php:1924
+msgid "Error encountered during default role change operation"
+msgstr "Hiba történt az alap szerepkör módosítása során."
+
+#: ../includes/class-ure-lib.php:1930
+#, php-format
+msgid "Default role for new users is set to %s successfully"
+msgstr "Az új felhasználók alap szerepköre sikeresen módosítva erre: %s"
+
+#: ../includes/class-ure-lib.php:1949
+msgid "Editor"
+msgstr "Szerkesztő"
+
+#: ../includes/class-ure-lib.php:1950
+msgid "Author"
+msgstr "Szerző"
+
+#: ../includes/class-ure-lib.php:1951
+msgid "Contributor"
+msgstr "Közreműködő"
+
+#: ../includes/class-ure-lib.php:1952
+msgid "Subscriber"
+msgstr "Feliratkozó"
+
+#: ../includes/class-ure-lib.php:1954
+msgid "Switch themes"
+msgstr "Sablon kiválasztása"
+
+#: ../includes/class-ure-lib.php:1955
+msgid "Edit themes"
+msgstr "Sablonok szerkesztése"
+
+#: ../includes/class-ure-lib.php:1956
+msgid "Activate plugins"
+msgstr "Bővítmény bekapcsolása"
+
+#: ../includes/class-ure-lib.php:1957
+msgid "Edit plugins"
+msgstr "Bővítmények szerkesztése"
+
+#: ../includes/class-ure-lib.php:1958
+msgid "Edit users"
+msgstr "Felhasználók szerkesztése"
+
+#: ../includes/class-ure-lib.php:1959
+msgid "Edit files"
+msgstr "Fájlok szerkesztése"
+
+#: ../includes/class-ure-lib.php:1960
+msgid "Manage options"
+msgstr "Beállítások kezelése"
+
+#: ../includes/class-ure-lib.php:1961
+msgid "Moderate comments"
+msgstr "Hozzászólások moderálása"
+
+#: ../includes/class-ure-lib.php:1962
+msgid "Manage categories"
+msgstr "Kategóriák kezelése"
+
+#: ../includes/class-ure-lib.php:1963
+msgid "Manage links"
+msgstr "Hivatkozások kezelése"
+
+#: ../includes/class-ure-lib.php:1964
+msgid "Upload files"
+msgstr "Fájlok feltöltése"
+
+#: ../includes/class-ure-lib.php:1965
+msgid "Import"
+msgstr "Importálás"
+
+#: ../includes/class-ure-lib.php:1966
+msgid "Unfiltered html"
+msgstr "Szűretlen HTML"
+
+#: ../includes/class-ure-lib.php:1967
+msgid "Edit posts"
+msgstr "Bejegyzések szerkesztése"
+
+#: ../includes/class-ure-lib.php:1968
+msgid "Edit others posts"
+msgstr "Mások bejegyzéseinek szerkeszése"
+
+#: ../includes/class-ure-lib.php:1969
+msgid "Edit published posts"
+msgstr "Közzétett bejegyzések szerkesztése"
+
+#: ../includes/class-ure-lib.php:1970
+msgid "Publish posts"
+msgstr "Bejegyzések közzététele"
+
+#: ../includes/class-ure-lib.php:1971
+msgid "Edit pages"
+msgstr "Oldalak szerkesztése"
+
+#: ../includes/class-ure-lib.php:1972
+msgid "Read"
+msgstr "Olvasás"
+
+#: ../includes/class-ure-lib.php:1973
+msgid "Level 10"
+msgstr "10. szint"
+
+#: ../includes/class-ure-lib.php:1974
+msgid "Level 9"
+msgstr "9. szint"
+
+#: ../includes/class-ure-lib.php:1975
+msgid "Level 8"
+msgstr "8. szint"
+
+#: ../includes/class-ure-lib.php:1976
+msgid "Level 7"
+msgstr "7. szint"
+
+#: ../includes/class-ure-lib.php:1977
+msgid "Level 6"
+msgstr "6. szint"
+
+#: ../includes/class-ure-lib.php:1978
+msgid "Level 5"
+msgstr "5. szint"
+
+#: ../includes/class-ure-lib.php:1979
+msgid "Level 4"
+msgstr "4. szint"
+
+#: ../includes/class-ure-lib.php:1980
+msgid "Level 3"
+msgstr "3. szint"
+
+#: ../includes/class-ure-lib.php:1981
+msgid "Level 2"
+msgstr "2. szint"
+
+#: ../includes/class-ure-lib.php:1982
+msgid "Level 1"
+msgstr "1. szint"
+
+#: ../includes/class-ure-lib.php:1983
+msgid "Level 0"
+msgstr "0. szint"
+
+#: ../includes/class-ure-lib.php:1984
+msgid "Edit others pages"
+msgstr "Mások oldalainak szerkesztése"
+
+#: ../includes/class-ure-lib.php:1985
+msgid "Edit published pages"
+msgstr "Közzétett oldalak szerkesztése"
+
+#: ../includes/class-ure-lib.php:1986
+msgid "Publish pages"
+msgstr "Oldalak közzététele"
+
+#: ../includes/class-ure-lib.php:1987
+msgid "Delete pages"
+msgstr "Oldalak törlése"
+
+#: ../includes/class-ure-lib.php:1988
+msgid "Delete others pages"
+msgstr "Mások oldalainak törlése"
+
+#: ../includes/class-ure-lib.php:1989
+msgid "Delete published pages"
+msgstr "Közzétett oldalak törlése"
+
+#: ../includes/class-ure-lib.php:1990
+msgid "Delete posts"
+msgstr "Bejegyzések törlése"
+
+#: ../includes/class-ure-lib.php:1991
+msgid "Delete others posts"
+msgstr "Mások bejegyzéseinek törlése"
+
+#: ../includes/class-ure-lib.php:1992
+msgid "Delete published posts"
+msgstr "Közzétett bejegyzések törlése"
+
+#: ../includes/class-ure-lib.php:1993
+msgid "Delete private posts"
+msgstr "Privát bejegyzések törlése"
+
+#: ../includes/class-ure-lib.php:1994
+msgid "Edit private posts"
+msgstr "Privát bejegyzések szerkesztése"
+
+#: ../includes/class-ure-lib.php:1995
+msgid "Read private posts"
+msgstr "Privát bejegyzések olvasása"
+
+#: ../includes/class-ure-lib.php:1996
+msgid "Delete private pages"
+msgstr "Privát oldalak törlése"
+
+#: ../includes/class-ure-lib.php:1997
+msgid "Edit private pages"
+msgstr "Privát oldalak szerkesztése"
+
+#: ../includes/class-ure-lib.php:1998
+msgid "Read private pages"
+msgstr "Privát oldalak olvasása"
+
+#: ../includes/class-ure-lib.php:1999
+msgid "Delete users"
+msgstr "Felhasználók törlése"
+
+#: ../includes/class-ure-lib.php:2000
+msgid "Create users"
+msgstr "Felhasználók létrehozása"
+
+#: ../includes/class-ure-lib.php:2001
+msgid "Unfiltered upload"
+msgstr "Szűretlen feltöltés"
+
+#: ../includes/class-ure-lib.php:2002
+msgid "Edit dashboard"
+msgstr "Vezérlőpult szerkesztése"
+
+#: ../includes/class-ure-lib.php:2003
+msgid "Update plugins"
+msgstr "Bővítmények frissítése"
+
+#: ../includes/class-ure-lib.php:2004
+msgid "Delete plugins"
+msgstr "Bővítmények törlése"
+
+#: ../includes/class-ure-lib.php:2005
+msgid "Install plugins"
+msgstr "Bővítmények telepítése"
+
+#: ../includes/class-ure-lib.php:2006
+msgid "Update themes"
+msgstr "Sablonok frissítése"
+
+#: ../includes/class-ure-lib.php:2007
+msgid "Install themes"
+msgstr "Sablonok telepítése"
+
+#: ../includes/class-ure-lib.php:2008
+msgid "Update core"
+msgstr "Mag frissítése"
+
+#: ../includes/class-ure-lib.php:2009
+msgid "List users"
+msgstr "Felhasználók listázása"
+
+#: ../includes/class-ure-lib.php:2010
+msgid "Remove users"
+msgstr "Felhasználók törlése"
+
+#: ../includes/class-ure-lib.php:2011
+msgid "Add users"
+msgstr "Felhasználók hozzáadása"
+
+#: ../includes/class-ure-lib.php:2012
+msgid "Promote users"
+msgstr "Felhasználók előléptetése"
+
+#: ../includes/class-ure-lib.php:2013
+msgid "Edit theme options"
+msgstr "Sablon beállítások módosítása"
+
+#: ../includes/class-ure-lib.php:2014
+msgid "Delete themes"
+msgstr "Sablonok törlése"
+
+#: ../includes/class-ure-lib.php:2015
+msgid "Export"
+msgstr "Exportálás"
+
+#: ../includes/class-ure-lib.php:2125
+msgid "Error: Capability name must contain latin characters and digits only!"
+msgstr "Hiba: a képesség neve csak latin betűkből és számokból állhat."
+
+#: ../includes/class-ure-lib.php:2138
+#, php-format
+msgid "Capability %s is added successfully"
+msgstr "%s képesség sikeresen hozzáadva"
+
+#: ../includes/class-ure-lib.php:2140
+#, php-format
+msgid "Capability %s exists already"
+msgstr "%s képesség már létezik"
+
+#: ../includes/class-ure-lib.php:2165
+#, php-format
+msgid "Error! You do not have permission to delete this capability: %s!"
+msgstr "Hiba! Nincs jogosultsága a képesség (%s) törléséhez."
+
+#: ../includes/class-ure-lib.php:2184
+#, php-format
+msgid "Capability %s is removed successfully"
+msgstr "%s képesség sikeresen törölve"
+
+#: ../includes/class-ure-lib.php:2288
+msgid "Version:"
+msgstr "Verzió:"
+
+#: ../includes/class-ure-lib.php:2289
+msgid "Author's website"
+msgstr "Szerző weboldala"
+
+#: ../includes/class-ure-lib.php:2290
+msgid "Plugin webpage"
+msgstr "Bővítmény weboldala"
+
+#: ../includes/class-ure-lib.php:2291
+msgid "Plugin download"
+msgstr "Bővítmény letöltése"
+
+#: ../includes/class-ure-lib.php:2293
+msgid "FAQ"
+msgstr "GyIK"
+
+#: ../includes/class-ure-lib.php:2341
+msgid "None"
+msgstr "Nincs"
+
+#: ../includes/class-ure-lib.php:2368
+msgid "Delete All Unused Roles"
+msgstr "Minden nem használt szerepkör törlése"
+
+#: ../includes/class-ure-lib.php:2392
+msgid "&mdash; No role for this site &mdash;"
+msgstr "&mdash; Nincs szerepköre ezen az oldalon &mdash;"
+
+#: ../includes/ure-user-edit.php:31
+msgid "Network Super Admin"
+msgstr "Multisite Szuperadmin"
+
+#: ../includes/ure-user-edit.php:34
+msgid "Change capabilities for user"
+msgstr "Szerepkör módosítása -"
+
+#: ../includes/ure-user-edit.php:71
+msgid "Primary Role:"
+msgstr "Elsődleges szerepkör:"
+
+#: ../includes/ure-user-edit.php:81
+msgid "bbPress Role:"
+msgstr "bbPress szerepkör:"
+
+#: ../includes/ure-user-edit.php:91
+msgid "Other Roles:"
+msgstr "Más szerepkörök:"
+
+#: ../includes/class-ure-screen-help.php:16
+msgid ""
+"turn this option on in order to make the \"Administrator\" role available at "
+"the User Role Editor roles selection drop-down list. It is hidden by default "
+"for security reasons."
+msgstr ""
+"ha engedélyezve van, akkor az „Adminisztrátor” szerepkör is megjelenik a "
+"legördülő listákban a Szerepkör szerkesztőben. Alapértelmezésként el van "
+"rejtve biztonsági okok miatt."
+
+#: ../includes/class-ure-screen-help.php:19
+msgid ""
+"automatically converts capability names from the technical form for internal "
+"use like \"edit_others_posts\" to more user friendly form, e.g. \"Edit "
+"others posts\"."
+msgstr ""
+"olvashatóvá alakítja (pl: „Mások bejegyzéseinek szerkesztése”) a belső "
+"használatra szánt technikai formát (pl: ”edit_others_posts”)."
+
+#: ../includes/class-ure-screen-help.php:22
+msgid ""
+"Capabilities like \"level_0\", \"level_1\" are deprecated and are not used "
+"by WordPress. They are left at the user roles for the compatibility purpose "
+"with the old themes and plugins code. Turning on this option will show those "
+"deprecated capabilities."
+msgstr ""
+"pár képesség (pl: ‟level_0”, ‟level_1”) elavult, és a WordPress már nem "
+"használja. Csak a régi sablonokkal és bővítményekkel való kompatíbilitás "
+"miatt maradtak meg. Ez az opció ezeket az elavult képességeket jeleníti meg."
+
+#: ../includes/class-ure-screen-help.php:41
+#, fuzzy
+msgid "select roles below"
+msgstr "Kijelölés megszünt."
+
+#: ../includes/class-ure-screen-help.php:56
+#, fuzzy
+msgid "Other default roles for new registered user"
+msgstr "Egyéb alap szerepkörök újonnan regisztrált felhasználók számára:"
+
+#: ../includes/class-ure-screen-help.php:57
+#, fuzzy
+msgid ""
+"select roles below to assign them to the new user automatically as an "
+"addition to the primary role. Note for multisite environment: take into "
+"account that other default roles should exist at the site, in order to be "
+"assigned to the new registered users."
+msgstr ""
+"Megjegyzés a MultiSite környezethez: vegye figyelembe, hogy több alap "
+"szerepkörnek is léteznie kell a weboldalon, az új felhasználók "
+"létrehozásához."
+
+#: ../includes/class-ure-screen-help.php:75
+#, fuzzy
+msgid "Allow non super-admininstrators to create, edit and delete users"
+msgstr ""
+"Nem szuperadminok is hozhassanak létre, módosíthassanak és törölhessenek "
+"felhasználókat"
+
+#: ../includes/class-ure-screen-help.php:76
+#, fuzzy
+msgid ""
+"Super administrator only may create, edit and delete users under WordPress "
+"multi-site by default. Turn this option on in order to remove this "
+"limitation."
+msgstr ""
+"WordPress MultiSite esetén csak a szuperadminok hozhatnak létre, "
+"módosíthatnak és törölhetnek felhasználókat. Ezzel az opcióval ez a megkötés "
+"feloldható."
+
+#~ msgid "Allow create, edit and delete users to not super-admininstrators"
+#~ msgstr ""
+#~ "Engedély felhasználó létrehozására, módosítására és törlésére a nem "
+#~ "szuperadminoknak"
+
+#~ msgid "Overview"
+#~ msgstr "Áttekintés"
index e20f381..778160f 100644 (file)
Binary files a/wp-content/plugins/user-role-editor/lang/ure-id_ID.mo and b/wp-content/plugins/user-role-editor/lang/ure-id_ID.mo differ
index 78db27f..0c6fe84 100644 (file)
@@ -2,7 +2,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: User Role Editor 2.0\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-09-08 21:33+0700\n"
+"POT-Creation-Date: 2014-10-01 12:45+0700\n"
 "PO-Revision-Date: \n"
 "Last-Translator: Vladimir Garagulya <vladimir@shinephp.com>\n"
 "Language-Team: http://al-badar.net <nasrulhaq81@gmail.com>\n"
@@ -22,67 +22,72 @@ msgid "User Role Editor - Options"
 msgstr "User Role Editor"
 
 #: ../includes/settings-template.php:21
+#: ../includes/class-user-role-editor.php:547
 msgid "General"
 msgstr ""
 
-#: ../includes/settings-template.php:22
+#: ../includes/settings-template.php:26
+#: ../includes/class-user-role-editor.php:553
 msgid "Additional Modules"
 msgstr ""
 
-#: ../includes/settings-template.php:23
+#: ../includes/settings-template.php:30
+#: ../includes/class-user-role-editor.php:559
 #, fuzzy
 msgid "Default Roles"
 msgstr "Peran "
 
-#: ../includes/settings-template.php:27
+#: ../includes/settings-template.php:34
+#: ../includes/class-user-role-editor.php:564
 msgid "Multisite"
 msgstr ""
 
-#: ../includes/settings-template.php:31
+#: ../includes/settings-template.php:39
 msgid "About"
 msgstr ""
 
-#: ../includes/settings-template.php:42
+#: ../includes/settings-template.php:53
 #: ../includes/class-ure-screen-help.php:15
 msgid "Show Administrator role at User Role Editor"
 msgstr "Tampilkan peran Administrator di User Role Editor"
 
-#: ../includes/settings-template.php:50
+#: ../includes/settings-template.php:61
 #: ../includes/class-ure-screen-help.php:18
 msgid "Show capabilities in the human readable form"
 msgstr "Tampilkan kemampuan dalam bentuk yang dapat dibaca manusia"
 
-#: ../includes/settings-template.php:58 ../includes/ure-role-edit.php:40
+#: ../includes/settings-template.php:69 ../includes/ure-role-edit.php:40
 #: ../includes/ure-user-edit.php:63 ../includes/class-ure-screen-help.php:21
 msgid "Show deprecated capabilities"
 msgstr "Tampilkan kemampuan usang"
 
-#: ../includes/settings-template.php:69 ../includes/settings-template.php:101
-#: ../includes/settings-template.php:131 ../includes/settings-template.php:160
+#: ../includes/settings-template.php:81 ../includes/settings-template.php:117
+#: ../includes/settings-template.php:149 ../includes/settings-template.php:181
 msgid "Save"
 msgstr "Simpan"
 
-#: ../includes/settings-template.php:86
+#: ../includes/settings-template.php:102
+#: ../includes/class-ure-screen-help.php:40
 msgid "Count users without role"
 msgstr ""
 
-#: ../includes/settings-template.php:111
+#: ../includes/settings-template.php:129
 #, fuzzy
 msgid "Primary default role: "
 msgstr "Peran Utama:"
 
-#: ../includes/settings-template.php:118
+#: ../includes/settings-template.php:136
 msgid "Other default roles for new registered user: "
 msgstr ""
 
-#: ../includes/settings-template.php:124
+#: ../includes/settings-template.php:142
 msgid ""
 "Note for multisite environment: take into account that other default roles "
 "should exist at the site, in order to be assigned to the new registered "
 "users."
 msgstr ""
 
-#: ../includes/settings-template.php:147
+#: ../includes/settings-template.php:168
 msgid "Allow non super administrators to create, edit, and delete users"
 msgstr ""
 
@@ -103,42 +108,38 @@ msgstr ""
 msgid "You do not have permission to edit this user."
 msgstr "Anda tidak diizinkan untuk menyunting user ini. "
 
-#: ../includes/class-user-role-editor.php:424
+#: ../includes/class-user-role-editor.php:422
 msgid "Capabilities"
 msgstr "Kemampuan"
 
-#: ../includes/class-user-role-editor.php:517
+#: ../includes/class-user-role-editor.php:514
 msgid "Settings"
 msgstr "Pengaturan"
 
-#: ../includes/class-user-role-editor.php:530
-#: ../includes/class-ure-lib.php:2275
+#: ../includes/class-user-role-editor.php:525
+#: ../includes/class-ure-lib.php:2292
 msgid "Changelog"
 msgstr "log Perubahan"
 
-#: ../includes/class-user-role-editor.php:552
-msgid "Overview"
-msgstr "Ikhtisar"
-
-#: ../includes/class-user-role-editor.php:561
-#: ../includes/class-user-role-editor.php:589
-#: ../includes/class-user-role-editor.php:930
-#: ../includes/class-ure-lib.php:232
+#: ../includes/class-user-role-editor.php:573
+#: ../includes/class-user-role-editor.php:601
+#: ../includes/class-user-role-editor.php:946
+#: ../includes/class-ure-lib.php:248
 msgid "User Role Editor"
 msgstr "User Role Editor"
 
-#: ../includes/class-user-role-editor.php:646
-#: ../includes/class-user-role-editor.php:664
-#: ../includes/class-user-role-editor.php:708
+#: ../includes/class-user-role-editor.php:658
+#: ../includes/class-user-role-editor.php:676
+#: ../includes/class-user-role-editor.php:720
 msgid "User Role Editor options are updated"
 msgstr "Pilihan User Role Editor diperbarui"
 
-#: ../includes/class-user-role-editor.php:692
+#: ../includes/class-user-role-editor.php:704
 #, fuzzy
 msgid "Default Roles are updated"
 msgstr "Peran "
 
-#: ../includes/class-user-role-editor.php:716
+#: ../includes/class-user-role-editor.php:728
 msgid ""
 "You do not have sufficient permissions to manage options for User Role "
 "Editor."
@@ -146,45 +147,45 @@ msgstr ""
 "Anda tidak memiliki izin yang memadai untuk mengelola pilihan User Role "
 "Editor."
 
-#: ../includes/class-user-role-editor.php:791
+#: ../includes/class-user-role-editor.php:807
 msgid "Insufficient permissions to work with User Role Editor"
 msgstr "Izin yang tidak sesuai untuk bekerja dengan User Role Editor"
 
-#: ../includes/class-user-role-editor.php:872
+#: ../includes/class-user-role-editor.php:888
 msgid "Select All"
 msgstr "Pilih Semua"
 
-#: ../includes/class-user-role-editor.php:873
+#: ../includes/class-user-role-editor.php:889
 msgid "Unselect All"
 msgstr "Batalkan Semua"
 
-#: ../includes/class-user-role-editor.php:874
+#: ../includes/class-user-role-editor.php:890
 msgid "Reverse"
 msgstr "Memutar"
 
-#: ../includes/class-user-role-editor.php:875
+#: ../includes/class-user-role-editor.php:891
 msgid "Update"
 msgstr "Pembaruan"
 
-#: ../includes/class-user-role-editor.php:876
+#: ../includes/class-user-role-editor.php:892
 msgid "Please confirm permissions update"
 msgstr "Harap konfirmasi pembaruan izin"
 
-#: ../includes/class-user-role-editor.php:877
+#: ../includes/class-user-role-editor.php:893
 msgid "Add New Role"
 msgstr "Tambah Peran Baru"
 
-#: ../includes/class-user-role-editor.php:878
-#: ../includes/class-user-role-editor.php:883
+#: ../includes/class-user-role-editor.php:894
+#: ../includes/class-user-role-editor.php:899
 #, fuzzy
 msgid "Rename Role"
 msgstr "Hapus Peran"
 
-#: ../includes/class-user-role-editor.php:879
+#: ../includes/class-user-role-editor.php:895
 msgid " Role name (ID) can not be empty!"
 msgstr "Nama peran (ID) tidak boleh kosong!"
 
-#: ../includes/class-user-role-editor.php:880
+#: ../includes/class-user-role-editor.php:896
 msgid ""
 " Role name (ID) must contain latin characters, digits, hyphens or underscore "
 "only!"
@@ -192,43 +193,43 @@ msgstr ""
 "Nama peran (ID) harus berisi karakter latin, angka, tanda hubung atau garis "
 "bawah saja!"
 
-#: ../includes/class-user-role-editor.php:881
+#: ../includes/class-user-role-editor.php:897
 msgid ""
 " WordPress does not support numeric Role name (ID). Add latin characters to "
 "it."
 msgstr ""
 
-#: ../includes/class-user-role-editor.php:882
+#: ../includes/class-user-role-editor.php:898
 msgid "Add Role"
 msgstr "Tambah Peran"
 
-#: ../includes/class-user-role-editor.php:884
+#: ../includes/class-user-role-editor.php:900
 msgid "Delete Role"
 msgstr "Hapus Peran"
 
-#: ../includes/class-user-role-editor.php:885
+#: ../includes/class-user-role-editor.php:901
 msgid "Cancel"
 msgstr "Batalkan"
 
-#: ../includes/class-user-role-editor.php:886
+#: ../includes/class-user-role-editor.php:902
 msgid "Add Capability"
 msgstr "Tambah Kemampuan"
 
-#: ../includes/class-user-role-editor.php:887
-#: ../includes/class-user-role-editor.php:896
+#: ../includes/class-user-role-editor.php:903
+#: ../includes/class-user-role-editor.php:912
 msgid "Delete Capability"
 msgstr "Hapus Kemampuan"
 
-#: ../includes/class-user-role-editor.php:888
+#: ../includes/class-user-role-editor.php:904
 msgid "Reset"
 msgstr "Atur Ulang"
 
-#: ../includes/class-user-role-editor.php:889
+#: ../includes/class-user-role-editor.php:905
 msgid "DANGER! Resetting will restore default settings from WordPress Core."
 msgstr ""
 "BAHAYA! Reset akan mengembalikan pengaturan default dari WordPress Inti."
 
-#: ../includes/class-user-role-editor.php:890
+#: ../includes/class-user-role-editor.php:906
 msgid ""
 "If any plugins have changed capabilities in any way upon installation (such "
 "as S2Member, WooCommerce, and many more), those capabilities will be DELETED!"
@@ -237,7 +238,7 @@ msgstr ""
 "(seperti S2Member, WooCommerce, dan banyak lagi), kemampuan mereka akan "
 "DIHAPUS!"
 
-#: ../includes/class-user-role-editor.php:891
+#: ../includes/class-user-role-editor.php:907
 msgid ""
 "For more information on how to undo changes and restore plugin capabilities "
 "go to"
@@ -245,19 +246,19 @@ msgstr ""
 "Untuk informasi lebih lanjut tentang cara membatalkan perubahan dan "
 "mengembalikan kemampuan Plugin pergi ke"
 
-#: ../includes/class-user-role-editor.php:893
+#: ../includes/class-user-role-editor.php:909
 msgid "Continue?"
 msgstr "Lanjut?"
 
-#: ../includes/class-user-role-editor.php:894
+#: ../includes/class-user-role-editor.php:910
 msgid "Default Role"
 msgstr "Peran "
 
-#: ../includes/class-user-role-editor.php:895
+#: ../includes/class-user-role-editor.php:911
 msgid "Set New Default Role"
 msgstr "Atur Peran Baru Default"
 
-#: ../includes/class-user-role-editor.php:897
+#: ../includes/class-user-role-editor.php:913
 msgid ""
 "Warning! Be careful - removing critical capability could crash some plugin "
 "or other custom code"
@@ -265,11 +266,11 @@ msgstr ""
 "Peringatan! Hati-hati - menghapus kemampuan kritis dapat menyebabkan crash "
 "beberapa Plugin atau kode kustom lainnya"
 
-#: ../includes/class-user-role-editor.php:898
+#: ../includes/class-user-role-editor.php:914
 msgid " Capability name (ID) can not be empty!"
 msgstr "Nama Kemampuan (ID) tidak boleh kosong!"
 
-#: ../includes/class-user-role-editor.php:899
+#: ../includes/class-user-role-editor.php:915
 msgid ""
 " Capability name (ID) must contain latin characters, digits, hyphens or "
 "underscore only!"
@@ -277,12 +278,12 @@ msgstr ""
 "Nama Kemampuan (ID) harus mengandung karakter latin, angka, kata penghubung "
 "atau garis bawah saja!"
 
-#: ../includes/class-user-role-editor.php:933
-#: ../includes/class-user-role-editor.php:962
+#: ../includes/class-user-role-editor.php:949
+#: ../includes/class-user-role-editor.php:978
 msgid "Other Roles"
 msgstr "Peran Lainnya"
 
-#: ../includes/class-user-role-editor.php:944
+#: ../includes/class-user-role-editor.php:960
 msgid "Edit"
 msgstr "Sunting"
 
@@ -316,79 +317,79 @@ msgstr "Saring Cepat:"
 msgid "Custom capabilities:"
 msgstr "Kustom kemampuan:"
 
-#: ../includes/class-ure-lib.php:140
+#: ../includes/class-ure-lib.php:156
 msgid "Error: wrong request"
 msgstr "Salah: salah permintaan"
 
-#: ../includes/class-ure-lib.php:173 ../includes/class-ure-lib.php:184
+#: ../includes/class-ure-lib.php:189 ../includes/class-ure-lib.php:200
 msgid "Role name (ID): "
 msgstr "Nama Peran (ID):"
 
-#: ../includes/class-ure-lib.php:175 ../includes/class-ure-lib.php:186
+#: ../includes/class-ure-lib.php:191 ../includes/class-ure-lib.php:202
 msgid "Display Role Name: "
 msgstr "Tampilkan Nama Peran:"
 
-#: ../includes/class-ure-lib.php:177
+#: ../includes/class-ure-lib.php:193
 msgid "Make copy of: "
 msgstr "buat salinan:"
 
-#: ../includes/class-ure-lib.php:193
+#: ../includes/class-ure-lib.php:209
 msgid "Select Role:"
 msgstr "Pilih Peran:"
 
-#: ../includes/class-ure-lib.php:208
+#: ../includes/class-ure-lib.php:224
 msgid "Delete:"
 msgstr "Hapus:"
 
-#: ../includes/class-ure-lib.php:215
+#: ../includes/class-ure-lib.php:231
 msgid "Capability name (ID): "
 msgstr "Nama Kemampuan (ID):"
 
-#: ../includes/class-ure-lib.php:329
+#: ../includes/class-ure-lib.php:345
 msgid "Error: "
 msgstr "Salah:"
 
-#: ../includes/class-ure-lib.php:329
+#: ../includes/class-ure-lib.php:345
 msgid "Role"
 msgstr "Peran"
 
-#: ../includes/class-ure-lib.php:330
+#: ../includes/class-ure-lib.php:346
 msgid "does not exist"
 msgstr "tidak ada"
 
-#: ../includes/class-ure-lib.php:373
+#: ../includes/class-ure-lib.php:389
 msgid "Role is updated successfully"
 msgstr "Peran berhasil diperbarui"
 
-#: ../includes/class-ure-lib.php:375
+#: ../includes/class-ure-lib.php:391
 msgid "Roles are updated for all network"
 msgstr "Peran diperbarui untuk semua jaringan"
 
-#: ../includes/class-ure-lib.php:381
+#: ../includes/class-ure-lib.php:397
 msgid "Error occured during role(s) update"
 msgstr "Kesalahan terjadi selama pembaruan peran"
 
-#: ../includes/class-ure-lib.php:388
+#: ../includes/class-ure-lib.php:404
 msgid "User capabilities are updated successfully"
 msgstr "Kemampuan pengguna berhasil diperbarui"
 
-#: ../includes/class-ure-lib.php:393
+#: ../includes/class-ure-lib.php:409
 msgid "Error occured during user update"
 msgstr "Kesalahan terjadi sepanjang pembaruan pengguna"
 
-#: ../includes/class-ure-lib.php:451
+#: ../includes/class-ure-lib.php:467
 msgid "User Roles are restored to WordPress default values. "
 msgstr "Peran Pengguna dikembalikan ke nilai Wordpress default."
 
-#: ../includes/class-ure-lib.php:1317
+#: ../includes/class-ure-lib.php:1334
 msgid "Help"
 msgstr "Bantuan"
 
-#: ../includes/class-ure-lib.php:1675
+#: ../includes/class-ure-lib.php:1692
 msgid "Error is occur. Please check the log file."
 msgstr "kesalahan terjadi, Harap periksa log data."
 
-#: ../includes/class-ure-lib.php:1718 ../includes/class-ure-lib.php:1785
+#: ../includes/class-ure-lib.php:1735 ../includes/class-ure-lib.php:1802
 msgid ""
 "Error: Role ID must contain latin characters, digits, hyphens or underscore "
 "only!"
@@ -396,384 +397,384 @@ msgstr ""
 "Kesalahan: ID Peran harus mengandung karakter latin, angka, kata penghubung "
 "dan garis bawah saja!"
 
-#: ../includes/class-ure-lib.php:1722 ../includes/class-ure-lib.php:1789
+#: ../includes/class-ure-lib.php:1739 ../includes/class-ure-lib.php:1806
 msgid ""
 "Error: WordPress does not support numeric Role name (ID). Add latin "
 "characters to it."
 msgstr ""
 
-#: ../includes/class-ure-lib.php:1737
+#: ../includes/class-ure-lib.php:1754
 #, php-format
 msgid "Role %s exists already"
 msgstr "Peran %s telah ada"
 
-#: ../includes/class-ure-lib.php:1752
+#: ../includes/class-ure-lib.php:1769
 msgid "Error is encountered during new role create operation"
 msgstr "Kesalahan ditemui selama peran baru membuat operasi"
 
-#: ../includes/class-ure-lib.php:1754
+#: ../includes/class-ure-lib.php:1771
 #, php-format
 msgid "Role %s is created successfully"
 msgstr "Peran %s berhasil dibuat"
 
-#: ../includes/class-ure-lib.php:1778
+#: ../includes/class-ure-lib.php:1795
 msgid "Error: Role ID is empty!"
 msgstr ""
 
-#: ../includes/class-ure-lib.php:1796
+#: ../includes/class-ure-lib.php:1813
 msgid "Error: Empty role display name is not allowed."
 msgstr ""
 
-#: ../includes/class-ure-lib.php:1803
+#: ../includes/class-ure-lib.php:1820
 #, fuzzy, php-format
 msgid "Role %s does not exists"
 msgstr "tidak ada"
 
-#: ../includes/class-ure-lib.php:1811
+#: ../includes/class-ure-lib.php:1828
 #, fuzzy, php-format
 msgid "Role %s is renamed to %s successfully"
 msgstr "Peran %s berhasil dibuat"
 
-#: ../includes/class-ure-lib.php:1878
+#: ../includes/class-ure-lib.php:1895
 msgid "Error encountered during role delete operation"
 msgstr "Kesalahan ditemui selama operasi penghapusan peran"
 
-#: ../includes/class-ure-lib.php:1880
+#: ../includes/class-ure-lib.php:1897
 msgid "Unused roles are deleted successfully"
 msgstr "Peran yang tidak digunakan berhasil dihapus"
 
-#: ../includes/class-ure-lib.php:1882
+#: ../includes/class-ure-lib.php:1899
 #, php-format
 msgid "Role %s is deleted successfully"
 msgstr "Peran %s berhasil dihapus"
 
-#: ../includes/class-ure-lib.php:1907
+#: ../includes/class-ure-lib.php:1924
 msgid "Error encountered during default role change operation"
 msgstr "Kesalahan ditemui selama operasi perubahan peran standar"
 
-#: ../includes/class-ure-lib.php:1913
+#: ../includes/class-ure-lib.php:1930
 #, php-format
 msgid "Default role for new users is set to %s successfully"
 msgstr "Peran standar untuk pengguna  baru  diatur ke %s dengan sukses"
 
-#: ../includes/class-ure-lib.php:1932
+#: ../includes/class-ure-lib.php:1949
 msgid "Editor"
 msgstr "Penyunting"
 
-#: ../includes/class-ure-lib.php:1933
+#: ../includes/class-ure-lib.php:1950
 msgid "Author"
 msgstr "Pengarang"
 
-#: ../includes/class-ure-lib.php:1934
+#: ../includes/class-ure-lib.php:1951
 msgid "Contributor"
 msgstr "Kontributor"
 
-#: ../includes/class-ure-lib.php:1935
+#: ../includes/class-ure-lib.php:1952
 msgid "Subscriber"
 msgstr "Pelanggan"
 
-#: ../includes/class-ure-lib.php:1937
+#: ../includes/class-ure-lib.php:1954
 msgid "Switch themes"
 msgstr "Ganti tema"
 
-#: ../includes/class-ure-lib.php:1938
+#: ../includes/class-ure-lib.php:1955
 msgid "Edit themes"
 msgstr "Sunting tema"
 
-#: ../includes/class-ure-lib.php:1939
+#: ../includes/class-ure-lib.php:1956
 msgid "Activate plugins"
 msgstr "Aktifkan plugin"
 
-#: ../includes/class-ure-lib.php:1940
+#: ../includes/class-ure-lib.php:1957
 msgid "Edit plugins"
 msgstr "Sunting plugin"
 
-#: ../includes/class-ure-lib.php:1941
+#: ../includes/class-ure-lib.php:1958
 msgid "Edit users"
 msgstr "Sunting pengguna"
 
-#: ../includes/class-ure-lib.php:1942
+#: ../includes/class-ure-lib.php:1959
 msgid "Edit files"
 msgstr "Sunting data"
 
-#: ../includes/class-ure-lib.php:1943
+#: ../includes/class-ure-lib.php:1960
 msgid "Manage options"
 msgstr "kelola pilihan"
 
-#: ../includes/class-ure-lib.php:1944
+#: ../includes/class-ure-lib.php:1961
 msgid "Moderate comments"
 msgstr "Moderasi komentar"
 
-#: ../includes/class-ure-lib.php:1945
+#: ../includes/class-ure-lib.php:1962
 msgid "Manage categories"
 msgstr "Kelola kategori"
 
-#: ../includes/class-ure-lib.php:1946
+#: ../includes/class-ure-lib.php:1963
 msgid "Manage links"
 msgstr "Kelola tautan"
 
-#: ../includes/class-ure-lib.php:1947
+#: ../includes/class-ure-lib.php:1964
 msgid "Upload files"
 msgstr "Unggah data"
 
-#: ../includes/class-ure-lib.php:1948
+#: ../includes/class-ure-lib.php:1965
 msgid "Import"
 msgstr "Impor"
 
-#: ../includes/class-ure-lib.php:1949
+#: ../includes/class-ure-lib.php:1966
 msgid "Unfiltered html"
 msgstr "HTML tidak tersaring"
 
-#: ../includes/class-ure-lib.php:1950
+#: ../includes/class-ure-lib.php:1967
 msgid "Edit posts"
 msgstr "Sunting posting"
 
-#: ../includes/class-ure-lib.php:1951
+#: ../includes/class-ure-lib.php:1968
 msgid "Edit others posts"
 msgstr "Sunting posting lainnya"
 
-#: ../includes/class-ure-lib.php:1952
+#: ../includes/class-ure-lib.php:1969
 msgid "Edit published posts"
 msgstr "Sunting posting terpublikasi"
 
-#: ../includes/class-ure-lib.php:1953
+#: ../includes/class-ure-lib.php:1970
 msgid "Publish posts"
 msgstr "Publikasi posting"
 
-#: ../includes/class-ure-lib.php:1954
+#: ../includes/class-ure-lib.php:1971
 msgid "Edit pages"
 msgstr "Sunting halaman"
 
-#: ../includes/class-ure-lib.php:1955
+#: ../includes/class-ure-lib.php:1972
 msgid "Read"
 msgstr "Baca"
 
-#: ../includes/class-ure-lib.php:1956
+#: ../includes/class-ure-lib.php:1973
 msgid "Level 10"
 msgstr "Tingkat 10"
 
-#: ../includes/class-ure-lib.php:1957
+#: ../includes/class-ure-lib.php:1974
 msgid "Level 9"
 msgstr "Tingkat 9"
 
-#: ../includes/class-ure-lib.php:1958
+#: ../includes/class-ure-lib.php:1975
 msgid "Level 8"
 msgstr "Tingkat 8"
 
-#: ../includes/class-ure-lib.php:1959
+#: ../includes/class-ure-lib.php:1976
 msgid "Level 7"
 msgstr "Tingkat 7"
 
-#: ../includes/class-ure-lib.php:1960
+#: ../includes/class-ure-lib.php:1977
 msgid "Level 6"
 msgstr "Tingkat 6"
 
-#: ../includes/class-ure-lib.php:1961
+#: ../includes/class-ure-lib.php:1978
 msgid "Level 5"
 msgstr "Tingkat 5"
 
-#: ../includes/class-ure-lib.php:1962
+#: ../includes/class-ure-lib.php:1979
 msgid "Level 4"
 msgstr "Tingkat 4"
 
-#: ../includes/class-ure-lib.php:1963
+#: ../includes/class-ure-lib.php:1980
 msgid "Level 3"
 msgstr "Tingkat 3"
 
-#: ../includes/class-ure-lib.php:1964
+#: ../includes/class-ure-lib.php:1981
 msgid "Level 2"
 msgstr "Tingkat 2"
 
-#: ../includes/class-ure-lib.php:1965
+#: ../includes/class-ure-lib.php:1982
 msgid "Level 1"
 msgstr "Tingkat 1"
 
-#: ../includes/class-ure-lib.php:1966
+#: ../includes/class-ure-lib.php:1983
 msgid "Level 0"
 msgstr "Tingkat 0"
 
-#: ../includes/class-ure-lib.php:1967
+#: ../includes/class-ure-lib.php:1984
 msgid "Edit others pages"
 msgstr "Sunting halaman lainnya"
 
-#: ../includes/class-ure-lib.php:1968
+#: ../includes/class-ure-lib.php:1985
 msgid "Edit published pages"
 msgstr "Sunting halaman terpublikasi"
 
-#: ../includes/class-ure-lib.php:1969
+#: ../includes/class-ure-lib.php:1986
 msgid "Publish pages"
 msgstr "Publikasi halaman"
 
-#: ../includes/class-ure-lib.php:1970
+#: ../includes/class-ure-lib.php:1987
 msgid "Delete pages"
 msgstr "Hapus halaman"
 
-#: ../includes/class-ure-lib.php:1971
+#: ../includes/class-ure-lib.php:1988
 msgid "Delete others pages"
 msgstr "Hapus halaman lainnya"
 
-#: ../includes/class-ure-lib.php:1972
+#: ../includes/class-ure-lib.php:1989
 msgid "Delete published pages"
 msgstr "Hapus halaman terpublikasi"
 
-#: ../includes/class-ure-lib.php:1973
+#: ../includes/class-ure-lib.php:1990
 msgid "Delete posts"
 msgstr "hapus posting"
 
-#: ../includes/class-ure-lib.php:1974
+#: ../includes/class-ure-lib.php:1991
 msgid "Delete others posts"
 msgstr "Hapus posting lainnya"
 
-#: ../includes/class-ure-lib.php:1975
+#: ../includes/class-ure-lib.php:1992
 msgid "Delete published posts"
 msgstr "Hapus posting terpublikasi"
 
-#: ../includes/class-ure-lib.php:1976
+#: ../includes/class-ure-lib.php:1993
 msgid "Delete private posts"
 msgstr "Hapus posting pribadi"
 
-#: ../includes/class-ure-lib.php:1977
+#: ../includes/class-ure-lib.php:1994
 msgid "Edit private posts"
 msgstr "Sunting posting pribadi"
 
-#: ../includes/class-ure-lib.php:1978
+#: ../includes/class-ure-lib.php:1995
 msgid "Read private posts"
 msgstr "Baca posting pribadi"
 
-#: ../includes/class-ure-lib.php:1979
+#: ../includes/class-ure-lib.php:1996
 msgid "Delete private pages"
 msgstr "Hapus halaman pribadi"
 
-#: ../includes/class-ure-lib.php:1980
+#: ../includes/class-ure-lib.php:1997
 msgid "Edit private pages"
 msgstr "Sunting halaman pribadi"
 
-#: ../includes/class-ure-lib.php:1981
+#: ../includes/class-ure-lib.php:1998
 msgid "Read private pages"
 msgstr "baca halaman pribadi"
 
-#: ../includes/class-ure-lib.php:1982
+#: ../includes/class-ure-lib.php:1999
 msgid "Delete users"
 msgstr "Hapus pengguna"
 
-#: ../includes/class-ure-lib.php:1983
+#: ../includes/class-ure-lib.php:2000
 msgid "Create users"
 msgstr "Buat pengguna"
 
-#: ../includes/class-ure-lib.php:1984
+#: ../includes/class-ure-lib.php:2001
 msgid "Unfiltered upload"
 msgstr "Unggahan tidak tersaring"
 
-#: ../includes/class-ure-lib.php:1985
+#: ../includes/class-ure-lib.php:2002
 msgid "Edit dashboard"
 msgstr "Sunting dasbor"
 
-#: ../includes/class-ure-lib.php:1986
+#: ../includes/class-ure-lib.php:2003
 msgid "Update plugins"
 msgstr "Perbarui plugin"
 
-#: ../includes/class-ure-lib.php:1987
+#: ../includes/class-ure-lib.php:2004
 msgid "Delete plugins"
 msgstr "Hapus plugin"
 
-#: ../includes/class-ure-lib.php:1988
+#: ../includes/class-ure-lib.php:2005
 msgid "Install plugins"
 msgstr "Pasang plugin"
 
-#: ../includes/class-ure-lib.php:1989
+#: ../includes/class-ure-lib.php:2006
 msgid "Update themes"
 msgstr "Perbarui tema"
 
-#: ../includes/class-ure-lib.php:1990
+#: ../includes/class-ure-lib.php:2007
 msgid "Install themes"
 msgstr "Pasang tema"
 
-#: ../includes/class-ure-lib.php:1991
+#: ../includes/class-ure-lib.php:2008
 msgid "Update core"
 msgstr "Perbarui inti"
 
-#: ../includes/class-ure-lib.php:1992
+#: ../includes/class-ure-lib.php:2009
 msgid "List users"
 msgstr "Daftar pengguna"
 
-#: ../includes/class-ure-lib.php:1993
+#: ../includes/class-ure-lib.php:2010
 msgid "Remove users"
 msgstr "Hapus pengguna"
 
-#: ../includes/class-ure-lib.php:1994
+#: ../includes/class-ure-lib.php:2011
 msgid "Add users"
 msgstr "Tambah pengguna"
 
-#: ../includes/class-ure-lib.php:1995
+#: ../includes/class-ure-lib.php:2012
 msgid "Promote users"
 msgstr "Promosi pengguna"
 
-#: ../includes/class-ure-lib.php:1996
+#: ../includes/class-ure-lib.php:2013
 msgid "Edit theme options"
 msgstr "Sunting pilihan tema"
 
-#: ../includes/class-ure-lib.php:1997
+#: ../includes/class-ure-lib.php:2014
 msgid "Delete themes"
 msgstr "Hapus tema"
 
-#: ../includes/class-ure-lib.php:1998
+#: ../includes/class-ure-lib.php:2015
 msgid "Export"
 msgstr "Ekspor"
 
-#: ../includes/class-ure-lib.php:2108
+#: ../includes/class-ure-lib.php:2125
 msgid "Error: Capability name must contain latin characters and digits only!"
 msgstr "Salah: Kemampuan nama harus mengandung karakter latin dan angka saja!"
 
-#: ../includes/class-ure-lib.php:2121
+#: ../includes/class-ure-lib.php:2138
 #, php-format
 msgid "Capability %s is added successfully"
 msgstr "Kemampuan %s berhasil ditambahkan"
 
-#: ../includes/class-ure-lib.php:2123
+#: ../includes/class-ure-lib.php:2140
 #, php-format
 msgid "Capability %s exists already"
 msgstr "Kemampuan %s telah ada"
 
-#: ../includes/class-ure-lib.php:2148
+#: ../includes/class-ure-lib.php:2165
 #, php-format
 msgid "Error! You do not have permission to delete this capability: %s!"
 msgstr "Salah! Anda tidak memiliki izin untuk menghapus kemampuan ini: %s!"
 
-#: ../includes/class-ure-lib.php:2167
+#: ../includes/class-ure-lib.php:2184
 #, php-format
 msgid "Capability %s is removed successfully"
 msgstr "Kemampuan %s berhasil dihapus"
 
-#: ../includes/class-ure-lib.php:2271
+#: ../includes/class-ure-lib.php:2288
 msgid "Version:"
 msgstr ""
 
-#: ../includes/class-ure-lib.php:2272
+#: ../includes/class-ure-lib.php:2289
 msgid "Author's website"
 msgstr "Website pengarang"
 
-#: ../includes/class-ure-lib.php:2273
+#: ../includes/class-ure-lib.php:2290
 msgid "Plugin webpage"
 msgstr "Halaman web Plugin"
 
-#: ../includes/class-ure-lib.php:2274
+#: ../includes/class-ure-lib.php:2291
 #, fuzzy
 msgid "Plugin download"
 msgstr "Halaman web Plugin"
 
-#: ../includes/class-ure-lib.php:2276
+#: ../includes/class-ure-lib.php:2293
 msgid "FAQ"
 msgstr "FAQ"
 
-#: ../includes/class-ure-lib.php:2324
+#: ../includes/class-ure-lib.php:2341
 msgid "None"
 msgstr "Nihil"
 
-#: ../includes/class-ure-lib.php:2351
+#: ../includes/class-ure-lib.php:2368
 msgid "Delete All Unused Roles"
 msgstr "Hapus Peran Tidak Terpakai"
 
-#: ../includes/class-ure-lib.php:2375
+#: ../includes/class-ure-lib.php:2392
 msgid "&mdash; No role for this site &mdash;"
 msgstr "&mdash; Tidak ada peran untuk situs ini &mdash;"
 
@@ -829,20 +830,45 @@ msgstr ""
 "kompatibilitas dengan tema lama dan kode plugin. Menyalakan opsi ini akan "
 "menunjukkan kemampuan mereka usang."
 
-#: ../includes/class-ure-screen-help.php:27
-msgid "Allow create, edit and delete users to not super-admininstrators"
+#: ../includes/class-ure-screen-help.php:41
+#, fuzzy
+msgid "select roles below"
+msgstr "Batalkan Semua"
+
+#: ../includes/class-ure-screen-help.php:56
+msgid "Other default roles for new registered user"
 msgstr ""
-"Izinkan membuat, menyunting dan menghapus pengguna untuk yang bukan super-"
-"administrator"
 
-#: ../includes/class-ure-screen-help.php:28
+#: ../includes/class-ure-screen-help.php:57
+msgid ""
+"select roles below to assign them to the new user automatically as an "
+"addition to the primary role. Note for multisite environment: take into "
+"account that other default roles should exist at the site, in order to be "
+"assigned to the new registered users."
+msgstr ""
+
+#: ../includes/class-ure-screen-help.php:75
+msgid "Allow non super-admininstrators to create, edit and delete users"
+msgstr ""
+
+#: ../includes/class-ure-screen-help.php:76
+#, fuzzy
 msgid ""
 "Super administrator only may create, edit and delete users under WordPress "
-"multi-site. Turn this option on in order to remove this limitation."
+"multi-site by default. Turn this option on in order to remove this "
+"limitation."
 msgstr ""
 "Super administrator hanya dapat membuat, mengedit dan menghapus pengguna di "
 "bawah WordPress multi-situs. Aktifkan pilihan ini dalam rangka menghapus "
 "keterbatasan ini."
 
+#~ msgid "Overview"
+#~ msgstr "Ikhtisar"
+
+#~ msgid "Allow create, edit and delete users to not super-admininstrators"
+#~ msgstr ""
+#~ "Izinkan membuat, menyunting dan menghapus pengguna untuk yang bukan super-"
+#~ "administrator"
+
 #~ msgid "About this Plugin:"
 #~ msgstr "Tentang Plugin ini:"
diff --git a/wp-content/plugins/user-role-editor/lang/ure-nl.mo b/wp-content/plugins/user-role-editor/lang/ure-nl.mo
new file mode 100644 (file)
index 0000000..f57b003
Binary files /dev/null and b/wp-content/plugins/user-role-editor/lang/ure-nl.mo differ
diff --git a/wp-content/plugins/user-role-editor/lang/ure-nl.po b/wp-content/plugins/user-role-editor/lang/ure-nl.po
new file mode 100644 (file)
index 0000000..d0b9cf8
--- /dev/null
@@ -0,0 +1,883 @@
+msgid ""
+msgstr ""
+"Project-Id-Version: User Role Editor 2.0\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2014-10-01 12:45+0700\n"
+"PO-Revision-Date: \n"
+"Last-Translator: Vladimir Garagulya <vladimir@shinephp.com>\n"
+"Language-Team: ShinePHP.com <vladimir@shinephp.com>\n"
+"Language: nl\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Poedit-SourceCharset: UTF-8\n"
+"X-Poedit-KeywordsList: __;_e;esc_html__;esc_html_e\n"
+"X-Poedit-Basepath: .\n"
+"X-Generator: Poedit 1.5.4\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Poedit-SearchPath-0: ..\n"
+
+#: ../includes/settings-template.php:17
+msgid "User Role Editor - Options"
+msgstr "User Rol Editor - Opties"
+
+#: ../includes/settings-template.php:21
+#: ../includes/class-user-role-editor.php:547
+msgid "General"
+msgstr "Algemeen"
+
+#: ../includes/settings-template.php:26
+#: ../includes/class-user-role-editor.php:553
+msgid "Additional Modules"
+msgstr "Aanvullende modules"
+
+#: ../includes/settings-template.php:30
+#: ../includes/class-user-role-editor.php:559
+msgid "Default Roles"
+msgstr "Standaard Rollen"
+
+#: ../includes/settings-template.php:34
+#: ../includes/class-user-role-editor.php:564
+msgid "Multisite"
+msgstr "Multisite"
+
+#: ../includes/settings-template.php:39
+msgid "About"
+msgstr "Over"
+
+#: ../includes/settings-template.php:53
+#: ../includes/class-ure-screen-help.php:15
+msgid "Show Administrator role at User Role Editor"
+msgstr "Toon Beheerders Rol in de Gebruikers Rol Editor"
+
+#: ../includes/settings-template.php:61
+#: ../includes/class-ure-screen-help.php:18
+msgid "Show capabilities in the human readable form"
+msgstr "Toon de rechten in een leesbare vorm"
+
+#: ../includes/settings-template.php:69 ../includes/ure-role-edit.php:40
+#: ../includes/ure-user-edit.php:63 ../includes/class-ure-screen-help.php:21
+msgid "Show deprecated capabilities"
+msgstr "Toon afgekeurde rechten"
+
+#: ../includes/settings-template.php:81 ../includes/settings-template.php:117
+#: ../includes/settings-template.php:149 ../includes/settings-template.php:181
+msgid "Save"
+msgstr "Opslaan"
+
+#: ../includes/settings-template.php:102
+#: ../includes/class-ure-screen-help.php:40
+msgid "Count users without role"
+msgstr "Het aantal Gebruikers zonder rol"
+
+#: ../includes/settings-template.php:129
+msgid "Primary default role: "
+msgstr "Standaard rol:"
+
+#: ../includes/settings-template.php:136
+msgid "Other default roles for new registered user: "
+msgstr "Andere standaard rollen voor nieuw geregistreerde gebruiker:"
+
+#: ../includes/settings-template.php:142
+msgid ""
+"Note for multisite environment: take into account that other default roles "
+"should exist at the site, in order to be assigned to the new registered "
+"users."
+msgstr ""
+"Noot voor multisite-omgeving: houdt er rekening mee dat er andere standaard "
+"functies op de site moeten bestaan, om toegewezen te kunnen worden aan nieuw "
+"geregistreerde gebruikers."
+
+#: ../includes/settings-template.php:168
+msgid "Allow non super administrators to create, edit, and delete users"
+msgstr ""
+"Sta niet super beheerders toe om gebruikers aan te maken, te bewerken en te "
+"verwijderen"
+
+#: ../includes/class-user-role-editor.php:195
+msgid "Change role for users without role"
+msgstr "Wijzig de rol van gebruikers zonder rol"
+
+#: ../includes/class-user-role-editor.php:196
+msgid "No rights"
+msgstr "Geen rechten"
+
+#: ../includes/class-user-role-editor.php:197
+msgid "Provide new role"
+msgstr "Creëer een nieuwe rol"
+
+#: ../includes/class-user-role-editor.php:281
+#: ../includes/class-user-role-editor.php:283
+msgid "You do not have permission to edit this user."
+msgstr "Je hebt toestemming om gegevens van deze gebruiker te wijzigen"
+
+#: ../includes/class-user-role-editor.php:422
+msgid "Capabilities"
+msgstr "Rechten"
+
+#: ../includes/class-user-role-editor.php:514
+msgid "Settings"
+msgstr "Instellingen"
+
+#: ../includes/class-user-role-editor.php:525
+#: ../includes/class-ure-lib.php:2292
+msgid "Changelog"
+msgstr "Changelog"
+
+#: ../includes/class-user-role-editor.php:573
+#: ../includes/class-user-role-editor.php:601
+#: ../includes/class-user-role-editor.php:946
+#: ../includes/class-ure-lib.php:248
+msgid "User Role Editor"
+msgstr "User Rol Editor"
+
+#: ../includes/class-user-role-editor.php:658
+#: ../includes/class-user-role-editor.php:676
+#: ../includes/class-user-role-editor.php:720
+msgid "User Role Editor options are updated"
+msgstr "User Role Editor opties zijn ge-update"
+
+#: ../includes/class-user-role-editor.php:704
+msgid "Default Roles are updated"
+msgstr "Standaard Rollen zijn ge-update"
+
+#: ../includes/class-user-role-editor.php:728
+msgid ""
+"You do not have sufficient permissions to manage options for User Role "
+"Editor."
+msgstr "Je hebt onvoldoende rechten om de User Role Editor te beheren."
+
+#: ../includes/class-user-role-editor.php:807
+msgid "Insufficient permissions to work with User Role Editor"
+msgstr "Onvoldoende rechten om te werken met User Role Editor"
+
+#: ../includes/class-user-role-editor.php:888
+msgid "Select All"
+msgstr "Alles selecteren"
+
+#: ../includes/class-user-role-editor.php:889
+msgid "Unselect All"
+msgstr "Alles deselecteren"
+
+#: ../includes/class-user-role-editor.php:890
+msgid "Reverse"
+msgstr "Omzetten"
+
+#: ../includes/class-user-role-editor.php:891
+msgid "Update"
+msgstr "Update"
+
+#: ../includes/class-user-role-editor.php:892
+msgid "Please confirm permissions update"
+msgstr "Bevestig toestemming om te mogen updaten"
+
+#: ../includes/class-user-role-editor.php:893
+msgid "Add New Role"
+msgstr "Nieuwe Rol Toevoegen"
+
+#: ../includes/class-user-role-editor.php:894
+#: ../includes/class-user-role-editor.php:899
+msgid "Rename Role"
+msgstr "Hernoem Rol"
+
+#: ../includes/class-user-role-editor.php:895
+msgid " Role name (ID) can not be empty!"
+msgstr "Rol naam (ID) kan niet leeg zijn!"
+
+#: ../includes/class-user-role-editor.php:896
+msgid ""
+" Role name (ID) must contain latin characters, digits, hyphens or underscore "
+"only!"
+msgstr ""
+"Rol naam (ID) moet latijnse letters, cijfers, koppeltekens of een underscore "
+"bevatten!"
+
+#: ../includes/class-user-role-editor.php:897
+msgid ""
+" WordPress does not support numeric Role name (ID). Add latin characters to "
+"it."
+msgstr ""
+"WordPress ondersteund geen numerieke Rol naam (ID). Voeg er latijnse tekens "
+"aan toe."
+
+#: ../includes/class-user-role-editor.php:898
+msgid "Add Role"
+msgstr "Rol toevoegen"
+
+#: ../includes/class-user-role-editor.php:900
+msgid "Delete Role"
+msgstr "Rol verwijderen"
+
+#: ../includes/class-user-role-editor.php:901
+msgid "Cancel"
+msgstr "Annuleren"
+
+#: ../includes/class-user-role-editor.php:902
+msgid "Add Capability"
+msgstr "Recht toevoegen"
+
+#: ../includes/class-user-role-editor.php:903
+#: ../includes/class-user-role-editor.php:912
+msgid "Delete Capability"
+msgstr "Recht verwijderen"
+
+#: ../includes/class-user-role-editor.php:904
+msgid "Reset"
+msgstr "Terugkeren naar de basisinstellingen"
+
+#: ../includes/class-user-role-editor.php:905
+msgid "DANGER! Resetting will restore default settings from WordPress Core."
+msgstr ""
+"OPGELET! Opnieuw instellen zal de basisinstellingen herstellen van WordPress "
+"Core"
+
+#: ../includes/class-user-role-editor.php:906
+msgid ""
+"If any plugins have changed capabilities in any way upon installation (such "
+"as S2Member, WooCommerce, and many more), those capabilities will be DELETED!"
+msgstr ""
+"Als plugins op enigerlei wijz instellingen gewijzigd hebben bij de "
+"installatie (zoals S2Member, WooCommerce, en nog veel meer), zullen deze "
+"instellingen worden VERWIJDERD!"
+
+#: ../includes/class-user-role-editor.php:907
+msgid ""
+"For more information on how to undo changes and restore plugin capabilities "
+"go to"
+msgstr ""
+"Voor meer informatie over hoe u wijzigingen ongedaan kunt maken en rechten "
+"van de plugin kunt herstellen ga naar"
+
+#: ../includes/class-user-role-editor.php:909
+msgid "Continue?"
+msgstr "Doorgaan?"
+
+#: ../includes/class-user-role-editor.php:910
+msgid "Default Role"
+msgstr "Standaard Rol"
+
+#: ../includes/class-user-role-editor.php:911
+msgid "Set New Default Role"
+msgstr "Maak een nieuwe standaard rol aan"
+
+#: ../includes/class-user-role-editor.php:913
+msgid ""
+"Warning! Be careful - removing critical capability could crash some plugin "
+"or other custom code"
+msgstr ""
+"Waarschuwing! Wees voorzichtig - het verwijderen van een recht laat sommige "
+"plugins of aangepaste code crashen"
+
+#: ../includes/class-user-role-editor.php:914
+msgid " Capability name (ID) can not be empty!"
+msgstr "Een recht naam (ID) kan niet leeg zijn!"
+
+#: ../includes/class-user-role-editor.php:915
+msgid ""
+" Capability name (ID) must contain latin characters, digits, hyphens or "
+"underscore only!"
+msgstr ""
+"Naam van het recht (ID) moet Latijnse letters, cijfers, koppeltekens of "
+"underscores bevatten!!"
+
+#: ../includes/class-user-role-editor.php:949
+#: ../includes/class-user-role-editor.php:978
+msgid "Other Roles"
+msgstr "Andere Rollen"
+
+#: ../includes/class-user-role-editor.php:960
+msgid "Edit"
+msgstr "Wijzigen"
+
+#: ../includes/ure-role-edit.php:17
+msgid "Select Role and change its capabilities:"
+msgstr "Selecteer de Rol en wijzig de rechten"
+
+#: ../includes/ure-role-edit.php:30 ../includes/ure-user-edit.php:53
+msgid "Show capabilities in human readable form"
+msgstr "Toon rechten in leesbare vorm"
+
+#: ../includes/ure-role-edit.php:44
+msgid "If checked, then apply action to ALL sites of this Network"
+msgstr ""
+"Indien aangevinkt, worden alle acties toegepast op ALLE locaties van dit "
+"netwerk"
+
+#: ../includes/ure-role-edit.php:56
+msgid "Apply to All Sites"
+msgstr "Pas toe op alle Sites"
+
+#: ../includes/ure-role-edit.php:63 ../includes/ure-user-edit.php:109
+msgid "Core capabilities:"
+msgstr "Core rechten:"
+
+#: ../includes/ure-role-edit.php:65 ../includes/ure-user-edit.php:111
+msgid "Quick filter:"
+msgstr "Snel filter:"
+
+#: ../includes/ure-role-edit.php:83 ../includes/ure-user-edit.php:130
+msgid "Custom capabilities:"
+msgstr "Gebruikelijke rechten:"
+
+#: ../includes/class-ure-lib.php:156
+msgid "Error: wrong request"
+msgstr "Fout: verkeerde aanvraag"
+
+#: ../includes/class-ure-lib.php:189 ../includes/class-ure-lib.php:200
+msgid "Role name (ID): "
+msgstr "Naam Rol (ID):"
+
+#: ../includes/class-ure-lib.php:191 ../includes/class-ure-lib.php:202
+msgid "Display Role Name: "
+msgstr "Maak de Naam van de Rol zichtbaar:"
+
+#: ../includes/class-ure-lib.php:193
+msgid "Make copy of: "
+msgstr "Maak een kopie van:"
+
+#: ../includes/class-ure-lib.php:209
+msgid "Select Role:"
+msgstr "Selecteer een Rol:"
+
+#: ../includes/class-ure-lib.php:224
+msgid "Delete:"
+msgstr "Verwijder:"
+
+#: ../includes/class-ure-lib.php:231
+msgid "Capability name (ID): "
+msgstr "Naam recht (ID):"
+
+#: ../includes/class-ure-lib.php:345
+msgid "Error: "
+msgstr "Fout:"
+
+#: ../includes/class-ure-lib.php:345
+msgid "Role"
+msgstr "Rol"
+
+#: ../includes/class-ure-lib.php:346
+msgid "does not exist"
+msgstr "Bestaat niet"
+
+#: ../includes/class-ure-lib.php:389
+msgid "Role is updated successfully"
+msgstr "Rol is succesvol ge-update"
+
+#: ../includes/class-ure-lib.php:391
+msgid "Roles are updated for all network"
+msgstr "Rollen van het gehele netwerk zijn ge-update"
+
+#: ../includes/class-ure-lib.php:397
+msgid "Error occured during role(s) update"
+msgstr "Er is een fout opgetreden tijdens het updaten van de rol(len)"
+
+#: ../includes/class-ure-lib.php:404
+msgid "User capabilities are updated successfully"
+msgstr "Rechten van de gebruiker zijn succesvol geupdate"
+
+#: ../includes/class-ure-lib.php:409
+msgid "Error occured during user update"
+msgstr "Er is een fout opgetreden tijdens het updaten van de gebruiker"
+
+#: ../includes/class-ure-lib.php:467
+msgid "User Roles are restored to WordPress default values. "
+msgstr "Gebruikers rollen worden hersteld naar WordPress standaardwaarden."
+
+#: ../includes/class-ure-lib.php:1334
+msgid "Help"
+msgstr "Help"
+
+#: ../includes/class-ure-lib.php:1692
+msgid "Error is occur. Please check the log file."
+msgstr "Er heeft zich een fout voorgedaan. Controleer het log bestand."
+
+#: ../includes/class-ure-lib.php:1735 ../includes/class-ure-lib.php:1802
+msgid ""
+"Error: Role ID must contain latin characters, digits, hyphens or underscore "
+"only!"
+msgstr ""
+"Fout: Een Rol (ID) moet Latijnse letters, cijfers, koppeltekens of "
+"underscores bevatten!"
+
+#: ../includes/class-ure-lib.php:1739 ../includes/class-ure-lib.php:1806
+msgid ""
+"Error: WordPress does not support numeric Role name (ID). Add latin "
+"characters to it."
+msgstr ""
+"Fout: WordPress ondersteund geen numerieke Rol naam (ID). Voeg er latijnse "
+"tekens aan toe."
+
+#: ../includes/class-ure-lib.php:1754
+#, php-format
+msgid "Role %s exists already"
+msgstr "Deze Rol %s bestaat al"
+
+#: ../includes/class-ure-lib.php:1769
+msgid "Error is encountered during new role create operation"
+msgstr "Er is een fout opgetreden tijdens het creëren van een nieuwe rol"
+
+#: ../includes/class-ure-lib.php:1771
+#, php-format
+msgid "Role %s is created successfully"
+msgstr "De Rol %s werd succesvol gecreërd"
+
+#: ../includes/class-ure-lib.php:1795
+msgid "Error: Role ID is empty!"
+msgstr "Fout: Rol ID is niet gevuld!"
+
+#: ../includes/class-ure-lib.php:1813
+msgid "Error: Empty role display name is not allowed."
+msgstr "Fout: De weergave van een lege naam van een rol is niet toegestaan."
+
+#: ../includes/class-ure-lib.php:1820
+#, php-format
+msgid "Role %s does not exists"
+msgstr "Rol %s bestaat niet"
+
+#: ../includes/class-ure-lib.php:1828
+#, php-format
+msgid "Role %s is renamed to %s successfully"
+msgstr "Rol %s is succesvol vernoemd naar %s"
+
+#: ../includes/class-ure-lib.php:1895
+msgid "Error encountered during role delete operation"
+msgstr "Er is een fout opgetreden bij het vewijderen van de rol"
+
+#: ../includes/class-ure-lib.php:1897
+msgid "Unused roles are deleted successfully"
+msgstr "Ongebruikte rollen zijn succesvol verwijderd"
+
+#: ../includes/class-ure-lib.php:1899
+#, php-format
+msgid "Role %s is deleted successfully"
+msgstr "Rol %s succesvol verwijderd"
+
+#: ../includes/class-ure-lib.php:1924
+msgid "Error encountered during default role change operation"
+msgstr "Er is een fout opgetreden tijdens het wijzigen van de standaard rol"
+
+#: ../includes/class-ure-lib.php:1930
+#, php-format
+msgid "Default role for new users is set to %s successfully"
+msgstr "De standaard rol voor nieuwe gebruikers is met succes ingesteld op %s"
+
+#: ../includes/class-ure-lib.php:1949
+msgid "Editor"
+msgstr "Redacteur"
+
+#: ../includes/class-ure-lib.php:1950
+msgid "Author"
+msgstr "Editor"
+
+#: ../includes/class-ure-lib.php:1951
+msgid "Contributor"
+msgstr "Inzender"
+
+#: ../includes/class-ure-lib.php:1952
+msgid "Subscriber"
+msgstr "Abonnee"
+
+#: ../includes/class-ure-lib.php:1954
+msgid "Switch themes"
+msgstr "Van thema wisselen"
+
+#: ../includes/class-ure-lib.php:1955
+msgid "Edit themes"
+msgstr "Thema's bewerken"
+
+#: ../includes/class-ure-lib.php:1956
+msgid "Activate plugins"
+msgstr "Plugins activeren"
+
+#: ../includes/class-ure-lib.php:1957
+msgid "Edit plugins"
+msgstr "Plugins bewerken"
+
+#: ../includes/class-ure-lib.php:1958
+msgid "Edit users"
+msgstr "Gebruikers bewerken"
+
+#: ../includes/class-ure-lib.php:1959
+msgid "Edit files"
+msgstr "Bestanden bewerken"
+
+#: ../includes/class-ure-lib.php:1960
+msgid "Manage options"
+msgstr "Opties beheren"
+
+#: ../includes/class-ure-lib.php:1961
+msgid "Moderate comments"
+msgstr "Reacties beheren"
+
+#: ../includes/class-ure-lib.php:1962
+msgid "Manage categories"
+msgstr "Categorieën beheren"
+
+#: ../includes/class-ure-lib.php:1963
+msgid "Manage links"
+msgstr "Links beheren"
+
+#: ../includes/class-ure-lib.php:1964
+msgid "Upload files"
+msgstr "Bestanden uploaden"
+
+#: ../includes/class-ure-lib.php:1965
+msgid "Import"
+msgstr "Importeren"
+
+#: ../includes/class-ure-lib.php:1966
+msgid "Unfiltered html"
+msgstr "Ongefilterd html"
+
+#: ../includes/class-ure-lib.php:1967
+msgid "Edit posts"
+msgstr "Berichten bewerken"
+
+#: ../includes/class-ure-lib.php:1968
+msgid "Edit others posts"
+msgstr "Berichten van anderen bewerken"
+
+#: ../includes/class-ure-lib.php:1969
+msgid "Edit published posts"
+msgstr "Gepubliceerde berichten bewerken"
+
+#: ../includes/class-ure-lib.php:1970
+msgid "Publish posts"
+msgstr "Berichten publiceren"
+
+#: ../includes/class-ure-lib.php:1971
+msgid "Edit pages"
+msgstr "Pagina's bewerken"
+
+#: ../includes/class-ure-lib.php:1972
+msgid "Read"
+msgstr "Lezen"
+
+#: ../includes/class-ure-lib.php:1973
+msgid "Level 10"
+msgstr "Level 10"
+
+#: ../includes/class-ure-lib.php:1974
+msgid "Level 9"
+msgstr "Level 9"
+
+#: ../includes/class-ure-lib.php:1975
+msgid "Level 8"
+msgstr "Level 8"
+
+#: ../includes/class-ure-lib.php:1976
+msgid "Level 7"
+msgstr "Level 7"
+
+#: ../includes/class-ure-lib.php:1977
+msgid "Level 6"
+msgstr "Level 6"
+
+#: ../includes/class-ure-lib.php:1978
+msgid "Level 5"
+msgstr "Level 5"
+
+#: ../includes/class-ure-lib.php:1979
+msgid "Level 4"
+msgstr "Level 4"
+
+#: ../includes/class-ure-lib.php:1980
+msgid "Level 3"
+msgstr "Level 3"
+
+#: ../includes/class-ure-lib.php:1981
+msgid "Level 2"
+msgstr "Level 2"
+
+#: ../includes/class-ure-lib.php:1982
+msgid "Level 1"
+msgstr "Level 1"
+
+#: ../includes/class-ure-lib.php:1983
+msgid "Level 0"
+msgstr "Level 0"
+
+#: ../includes/class-ure-lib.php:1984
+msgid "Edit others pages"
+msgstr "Pagina's van anderen bewerken"
+
+#: ../includes/class-ure-lib.php:1985
+msgid "Edit published pages"
+msgstr "Gepubliceerde pagina's bewerken"
+
+#: ../includes/class-ure-lib.php:1986
+msgid "Publish pages"
+msgstr "Pagina's publiceren"
+
+#: ../includes/class-ure-lib.php:1987
+msgid "Delete pages"
+msgstr "Pagina's verwijderen"
+
+#: ../includes/class-ure-lib.php:1988
+msgid "Delete others pages"
+msgstr "Pagina's verwijderen van anderen"
+
+#: ../includes/class-ure-lib.php:1989
+msgid "Delete published pages"
+msgstr "Gepubliceerde pagina's verwijderen"
+
+#: ../includes/class-ure-lib.php:1990
+msgid "Delete posts"
+msgstr "Berichten verwijderen"
+
+#: ../includes/class-ure-lib.php:1991
+msgid "Delete others posts"
+msgstr "Verwijder berichten van anderen"
+
+#: ../includes/class-ure-lib.php:1992
+msgid "Delete published posts"
+msgstr "Gepubliceerde berichten verwijderen"
+
+#: ../includes/class-ure-lib.php:1993
+msgid "Delete private posts"
+msgstr "Privé berichten verwijderen"
+
+#: ../includes/class-ure-lib.php:1994
+msgid "Edit private posts"
+msgstr "Privé berichten bewerken"
+
+#: ../includes/class-ure-lib.php:1995
+msgid "Read private posts"
+msgstr "Privé berichten lezen"
+
+#: ../includes/class-ure-lib.php:1996
+msgid "Delete private pages"
+msgstr "Privé berichten verwijderen"
+
+#: ../includes/class-ure-lib.php:1997
+msgid "Edit private pages"
+msgstr "Privé pagina's bewerken"
+
+#: ../includes/class-ure-lib.php:1998
+msgid "Read private pages"
+msgstr "Privé pagina's lezen"
+
+#: ../includes/class-ure-lib.php:1999
+msgid "Delete users"
+msgstr "Gebruikers verwijderen"
+
+#: ../includes/class-ure-lib.php:2000
+msgid "Create users"
+msgstr "Maak gebruikers aan"
+
+#: ../includes/class-ure-lib.php:2001
+msgid "Unfiltered upload"
+msgstr "Ongefilterd uploaden"
+
+#: ../includes/class-ure-lib.php:2002
+msgid "Edit dashboard"
+msgstr "Bewerk het dashboard"
+
+#: ../includes/class-ure-lib.php:2003
+msgid "Update plugins"
+msgstr "Plugins updaten"
+
+#: ../includes/class-ure-lib.php:2004
+msgid "Delete plugins"
+msgstr "Plugins verwijderen"
+
+#: ../includes/class-ure-lib.php:2005
+msgid "Install plugins"
+msgstr "Plugins installeren"
+
+#: ../includes/class-ure-lib.php:2006
+msgid "Update themes"
+msgstr "Thema's updaten"
+
+#: ../includes/class-ure-lib.php:2007
+msgid "Install themes"
+msgstr "Thema's installeren"
+
+#: ../includes/class-ure-lib.php:2008
+msgid "Update core"
+msgstr "Core updaten"
+
+#: ../includes/class-ure-lib.php:2009
+msgid "List users"
+msgstr "Lijst van gebruikers aanmaken"
+
+#: ../includes/class-ure-lib.php:2010
+msgid "Remove users"
+msgstr "Gebruikers verwijderen"
+
+#: ../includes/class-ure-lib.php:2011
+msgid "Add users"
+msgstr "Gebruikers toevoegen"
+
+#: ../includes/class-ure-lib.php:2012
+msgid "Promote users"
+msgstr "Gebruikers bevorderen"
+
+#: ../includes/class-ure-lib.php:2013
+msgid "Edit theme options"
+msgstr "Thema opties bewerken"
+
+#: ../includes/class-ure-lib.php:2014
+msgid "Delete themes"
+msgstr "Thema's verwijderen"
+
+#: ../includes/class-ure-lib.php:2015
+msgid "Export"
+msgstr "Exporteren"
+
+#: ../includes/class-ure-lib.php:2125
+msgid "Error: Capability name must contain latin characters and digits only!"
+msgstr ""
+"Fout: De naam van een recht mag alleen latijnse letters en cijfers bevatten!"
+
+#: ../includes/class-ure-lib.php:2138
+#, php-format
+msgid "Capability %s is added successfully"
+msgstr "Recht %s is succesvol toegevoegd"
+
+#: ../includes/class-ure-lib.php:2140
+#, php-format
+msgid "Capability %s exists already"
+msgstr "Recht %s bestaat al"
+
+#: ../includes/class-ure-lib.php:2165
+#, php-format
+msgid "Error! You do not have permission to delete this capability: %s!"
+msgstr "Fout! U heeft geen toestemming om dit recht te verwijderen: % s!"
+
+#: ../includes/class-ure-lib.php:2184
+#, php-format
+msgid "Capability %s is removed successfully"
+msgstr "Recht %s is succesvol verwijderd"
+
+#: ../includes/class-ure-lib.php:2288
+msgid "Version:"
+msgstr "Versie:"
+
+#: ../includes/class-ure-lib.php:2289
+msgid "Author's website"
+msgstr "Website van de auteur"
+
+#: ../includes/class-ure-lib.php:2290
+msgid "Plugin webpage"
+msgstr "Plugin webpagina "
+
+#: ../includes/class-ure-lib.php:2291
+msgid "Plugin download"
+msgstr "Plugin download "
+
+#: ../includes/class-ure-lib.php:2293
+msgid "FAQ"
+msgstr "FAQ"
+
+#: ../includes/class-ure-lib.php:2341
+msgid "None"
+msgstr "Geen"
+
+#: ../includes/class-ure-lib.php:2368
+msgid "Delete All Unused Roles"
+msgstr "Verwijder alle niet gebruikte Rollen"
+
+#: ../includes/class-ure-lib.php:2392
+msgid "&mdash; No role for this site &mdash;"
+msgstr "&mdash; Geen rol voor deze website &mdash;"
+
+#: ../includes/ure-user-edit.php:31
+msgid "Network Super Admin"
+msgstr "Network Super Beheerder"
+
+#: ../includes/ure-user-edit.php:34
+msgid "Change capabilities for user"
+msgstr "Wijzig de rechten van deze gebruiker"
+
+#: ../includes/ure-user-edit.php:71
+msgid "Primary Role:"
+msgstr "Primaire Rol:"
+
+#: ../includes/ure-user-edit.php:81
+msgid "bbPress Role:"
+msgstr "bbPress Rol:"
+
+#: ../includes/ure-user-edit.php:91
+msgid "Other Roles:"
+msgstr "Andere Rollen:"
+
+#: ../includes/class-ure-screen-help.php:16
+msgid ""
+"turn this option on in order to make the \"Administrator\" role available at "
+"the User Role Editor roles selection drop-down list. It is hidden by default "
+"for security reasons."
+msgstr ""
+"zet deze optie aan om de \"Administrator \" rol te zichtbaar te maken in de "
+"Userr Role Editor rollen selectie keuzelijst. Het wordt standaard verborgen "
+"om veiligheidsredenen."
+
+#: ../includes/class-ure-screen-help.php:19
+msgid ""
+"automatically converts capability names from the technical form for internal "
+"use like \"edit_others_posts\" to more user friendly form, e.g. \"Edit "
+"others posts\"."
+msgstr ""
+"converteert automatisch de namen van de rechten uit het technische formulier "
+"voor intern gebruik zoals \"edit_berichten_van_anderen \" naar een meer "
+"gebruiksvriendelijke vorm, bijvoorbeeld \"Edit berichten van anderen \"."
+
+#: ../includes/class-ure-screen-help.php:22
+msgid ""
+"Capabilities like \"level_0\", \"level_1\" are deprecated and are not used "
+"by WordPress. They are left at the user roles for the compatibility purpose "
+"with the old themes and plugins code. Turning on this option will show those "
+"deprecated capabilities."
+msgstr ""
+"Rechten zoals \"level_0 \", \"level_1 \" zijn verouderd en worden niet meer "
+"gebruikt door WordPress. Ze worden gekoppeld aan de  rollen van een "
+"gebruiker met als reden compatibiliteits doeleinden met oude thema's en "
+"plugins code. Het inschakelen van deze optie zal de afgekeurde rechten tonen."
+
+#: ../includes/class-ure-screen-help.php:41
+#, fuzzy
+msgid "select roles below"
+msgstr "Alles deselecteren"
+
+#: ../includes/class-ure-screen-help.php:56
+#, fuzzy
+msgid "Other default roles for new registered user"
+msgstr "Andere standaard rollen voor nieuw geregistreerde gebruiker:"
+
+#: ../includes/class-ure-screen-help.php:57
+#, fuzzy
+msgid ""
+"select roles below to assign them to the new user automatically as an "
+"addition to the primary role. Note for multisite environment: take into "
+"account that other default roles should exist at the site, in order to be "
+"assigned to the new registered users."
+msgstr ""
+"Noot voor multisite-omgeving: houdt er rekening mee dat er andere standaard "
+"functies op de site moeten bestaan, om toegewezen te kunnen worden aan nieuw "
+"geregistreerde gebruikers."
+
+#: ../includes/class-ure-screen-help.php:75
+#, fuzzy
+msgid "Allow non super-admininstrators to create, edit and delete users"
+msgstr ""
+"Sta niet super beheerders toe om gebruikers aan te maken, te bewerken en te "
+"verwijderen"
+
+#: ../includes/class-ure-screen-help.php:76
+#, fuzzy
+msgid ""
+"Super administrator only may create, edit and delete users under WordPress "
+"multi-site by default. Turn this option on in order to remove this "
+"limitation."
+msgstr ""
+"Alleen de super beheerder kan gebruikers aanmaken, bewerken en verwijderen "
+"in WordPress multi-site. Schakel deze optie aan om deze beperking te "
+"verwijderen."
+
+#~ msgid "Overview"
+#~ msgstr "Overzicht"
+
+#~ msgid "Allow create, edit and delete users to not super-admininstrators"
+#~ msgstr ""
+#~ "Het toestaan van het aanmaken, bewerken en verwijderen van gebruikers "
+#~ "naar niet super-admininstrators"
index 6feda42..0ee0b9d 100644 (file)
Binary files a/wp-content/plugins/user-role-editor/lang/ure-ru_RU.mo and b/wp-content/plugins/user-role-editor/lang/ure-ru_RU.mo differ
index 2139379..63f34de 100644 (file)
@@ -2,7 +2,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: User Role Editor v.2.0\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-09-08 21:33+0700\n"
+"POT-Creation-Date: 2014-10-01 12:45+0700\n"
 "PO-Revision-Date: \n"
 "Last-Translator: Vladimir Garagulya <vladimir@shinephp.com>\n"
 "Language-Team: ShinePHP.com <vladimir@shinephp.com>\n"
@@ -21,58 +21,63 @@ msgid "User Role Editor - Options"
 msgstr "Редактор ролей пользователей - Опции"
 
 #: ../includes/settings-template.php:21
+#: ../includes/class-user-role-editor.php:547
 msgid "General"
 msgstr "Общие"
 
-#: ../includes/settings-template.php:22
+#: ../includes/settings-template.php:26
+#: ../includes/class-user-role-editor.php:553
 msgid "Additional Modules"
 msgstr "Дополнительные модули"
 
-#: ../includes/settings-template.php:23
+#: ../includes/settings-template.php:30
+#: ../includes/class-user-role-editor.php:559
 msgid "Default Roles"
 msgstr "Роли по-умолчанию"
 
-#: ../includes/settings-template.php:27
+#: ../includes/settings-template.php:34
+#: ../includes/class-user-role-editor.php:564
 msgid "Multisite"
 msgstr "Многосайтовые"
 
-#: ../includes/settings-template.php:31
+#: ../includes/settings-template.php:39
 msgid "About"
 msgstr "О плагине"
 
-#: ../includes/settings-template.php:42
+#: ../includes/settings-template.php:53
 #: ../includes/class-ure-screen-help.php:15
 msgid "Show Administrator role at User Role Editor"
 msgstr "Отобразить роль Администратор в Редакторе ролей пользователей"
 
-#: ../includes/settings-template.php:50
+#: ../includes/settings-template.php:61
 #: ../includes/class-ure-screen-help.php:18
 msgid "Show capabilities in the human readable form"
 msgstr "Показ прав доступа в читабельной форме"
 
-#: ../includes/settings-template.php:58 ../includes/ure-role-edit.php:40
+#: ../includes/settings-template.php:69 ../includes/ure-role-edit.php:40
 #: ../includes/ure-user-edit.php:63 ../includes/class-ure-screen-help.php:21
 msgid "Show deprecated capabilities"
 msgstr "Показать устаревшие разрешения"
 
-#: ../includes/settings-template.php:69 ../includes/settings-template.php:101
-#: ../includes/settings-template.php:131 ../includes/settings-template.php:160
+#: ../includes/settings-template.php:81 ../includes/settings-template.php:117
+#: ../includes/settings-template.php:149 ../includes/settings-template.php:181
 msgid "Save"
 msgstr "Сохранить"
 
-#: ../includes/settings-template.php:86
+#: ../includes/settings-template.php:102
+#: ../includes/class-ure-screen-help.php:40
 msgid "Count users without role"
 msgstr "Подсчёт пользователей без роли"
 
-#: ../includes/settings-template.php:111
+#: ../includes/settings-template.php:129
 msgid "Primary default role: "
 msgstr "Основная роль по-умолчанию:"
 
-#: ../includes/settings-template.php:118
+#: ../includes/settings-template.php:136
 msgid "Other default roles for new registered user: "
 msgstr "Другие роли по-умолчанию для вновь зарегистрированного пользователя:"
 
-#: ../includes/settings-template.php:124
+#: ../includes/settings-template.php:142
 msgid ""
 "Note for multisite environment: take into account that other default roles "
 "should exist at the site, in order to be assigned to the new registered "
@@ -82,7 +87,7 @@ msgstr ""
 "вновь зарегистрированному пользователю дополнительных ролей по-умолчанию эти "
 "роли должны существовать на этом сайте."
 
-#: ../includes/settings-template.php:147
+#: ../includes/settings-template.php:168
 msgid "Allow non super administrators to create, edit, and delete users"
 msgstr ""
 "Разрешить простым администраторам создавать, изменять, удалять пользователей"
@@ -104,84 +109,80 @@ msgstr "Выберите новую роль"
 msgid "You do not have permission to edit this user."
 msgstr "Нет прав на редактирование этого пользователя"
 
-#: ../includes/class-user-role-editor.php:424
+#: ../includes/class-user-role-editor.php:422
 msgid "Capabilities"
 msgstr "Возможности"
 
-#: ../includes/class-user-role-editor.php:517
+#: ../includes/class-user-role-editor.php:514
 msgid "Settings"
 msgstr "Установки"
 
-#: ../includes/class-user-role-editor.php:530
-#: ../includes/class-ure-lib.php:2275
+#: ../includes/class-user-role-editor.php:525
+#: ../includes/class-ure-lib.php:2292
 msgid "Changelog"
 msgstr "Журнал изменений"
 
-#: ../includes/class-user-role-editor.php:552
-msgid "Overview"
-msgstr "Обзор"
-
-#: ../includes/class-user-role-editor.php:561
-#: ../includes/class-user-role-editor.php:589
-#: ../includes/class-user-role-editor.php:930
-#: ../includes/class-ure-lib.php:232
+#: ../includes/class-user-role-editor.php:573
+#: ../includes/class-user-role-editor.php:601
+#: ../includes/class-user-role-editor.php:946
+#: ../includes/class-ure-lib.php:248
 msgid "User Role Editor"
 msgstr "Редактор ролей пользователей"
 
-#: ../includes/class-user-role-editor.php:646
-#: ../includes/class-user-role-editor.php:664
-#: ../includes/class-user-role-editor.php:708
+#: ../includes/class-user-role-editor.php:658
+#: ../includes/class-user-role-editor.php:676
+#: ../includes/class-user-role-editor.php:720
 msgid "User Role Editor options are updated"
 msgstr "Изменения в настройках Редактора ролей пользователей сохранены"
 
-#: ../includes/class-user-role-editor.php:692
+#: ../includes/class-user-role-editor.php:704
 msgid "Default Roles are updated"
 msgstr "Изменения в роли по-умолчанию сохранены"
 
-#: ../includes/class-user-role-editor.php:716
+#: ../includes/class-user-role-editor.php:728
 msgid ""
 "You do not have sufficient permissions to manage options for User Role "
 "Editor."
 msgstr "У вас нет прав на изменение настроек плагина"
 
-#: ../includes/class-user-role-editor.php:791
+#: ../includes/class-user-role-editor.php:807
 msgid "Insufficient permissions to work with User Role Editor"
 msgstr "Не достаточно прав для работы с User Role Editor"
 
-#: ../includes/class-user-role-editor.php:872
+#: ../includes/class-user-role-editor.php:888
 msgid "Select All"
 msgstr "Выбрать все"
 
-#: ../includes/class-user-role-editor.php:873
+#: ../includes/class-user-role-editor.php:889
 msgid "Unselect All"
 msgstr "Исключить все"
 
-#: ../includes/class-user-role-editor.php:874
+#: ../includes/class-user-role-editor.php:890
 msgid "Reverse"
 msgstr "Обратить"
 
-#: ../includes/class-user-role-editor.php:875
+#: ../includes/class-user-role-editor.php:891
 msgid "Update"
 msgstr "Сохранить"
 
-#: ../includes/class-user-role-editor.php:876
+#: ../includes/class-user-role-editor.php:892
 msgid "Please confirm permissions update"
 msgstr "Пожалуйста, подтвердите продолжение "
 
-#: ../includes/class-user-role-editor.php:877
+#: ../includes/class-user-role-editor.php:893
 msgid "Add New Role"
 msgstr "Добавить новую роль"
 
-#: ../includes/class-user-role-editor.php:878
-#: ../includes/class-user-role-editor.php:883
+#: ../includes/class-user-role-editor.php:894
+#: ../includes/class-user-role-editor.php:899
 msgid "Rename Role"
 msgstr "Переименовать роль"
 
-#: ../includes/class-user-role-editor.php:879
+#: ../includes/class-user-role-editor.php:895
 msgid " Role name (ID) can not be empty!"
 msgstr "Идентификатор роли (ID) не может быть пустым!"
 
-#: ../includes/class-user-role-editor.php:880
+#: ../includes/class-user-role-editor.php:896
 msgid ""
 " Role name (ID) must contain latin characters, digits, hyphens or underscore "
 "only!"
@@ -189,7 +190,7 @@ msgstr ""
 "Ошибка: идентификатор роли может содержать только латинские буквы, цифры, "
 "тире и знак подчеркивания"
 
-#: ../includes/class-user-role-editor.php:881
+#: ../includes/class-user-role-editor.php:897
 msgid ""
 " WordPress does not support numeric Role name (ID). Add latin characters to "
 "it."
@@ -197,38 +198,38 @@ msgstr ""
 "WordPress не поддерживает цифровые идентификаторы ролей. Начните имя роли с "
 "латинских символов."
 
-#: ../includes/class-user-role-editor.php:882
+#: ../includes/class-user-role-editor.php:898
 msgid "Add Role"
 msgstr "Добавить роль"
 
-#: ../includes/class-user-role-editor.php:884
+#: ../includes/class-user-role-editor.php:900
 msgid "Delete Role"
 msgstr "Удалить роль"
 
-#: ../includes/class-user-role-editor.php:885
+#: ../includes/class-user-role-editor.php:901
 msgid "Cancel"
 msgstr "Отмена"
 
-#: ../includes/class-user-role-editor.php:886
+#: ../includes/class-user-role-editor.php:902
 msgid "Add Capability"
 msgstr "Новая возм."
 
-#: ../includes/class-user-role-editor.php:887
-#: ../includes/class-user-role-editor.php:896
+#: ../includes/class-user-role-editor.php:903
+#: ../includes/class-user-role-editor.php:912
 msgid "Delete Capability"
 msgstr "Удалить возм."
 
-#: ../includes/class-user-role-editor.php:888
+#: ../includes/class-user-role-editor.php:904
 msgid "Reset"
 msgstr "Сброс"
 
-#: ../includes/class-user-role-editor.php:889
+#: ../includes/class-user-role-editor.php:905
 msgid "DANGER! Resetting will restore default settings from WordPress Core."
 msgstr ""
 "ВНИМАНИЕ! Очистка восстановит роли по состоянию на момент установки "
 "WordPress."
 
-#: ../includes/class-user-role-editor.php:890
+#: ../includes/class-user-role-editor.php:906
 msgid ""
 "If any plugins have changed capabilities in any way upon installation (such "
 "as S2Member, WooCommerce, and many more), those capabilities will be DELETED!"
@@ -236,7 +237,7 @@ msgstr ""
 "Если плагины изменяли пользовательские права после установки WordPress "
 "(S2Member, WooCommerce и др.), права, созданные плагинами будут УДАЛЕНЫ!"
 
-#: ../includes/class-user-role-editor.php:891
+#: ../includes/class-user-role-editor.php:907
 msgid ""
 "For more information on how to undo changes and restore plugin capabilities "
 "go to"
@@ -244,19 +245,19 @@ msgstr ""
 "Подробнее о том, как откатить сделанные изменения и восстановить разрешения "
 "для плагинов, можно узнать здесь"
 
-#: ../includes/class-user-role-editor.php:893
+#: ../includes/class-user-role-editor.php:909
 msgid "Continue?"
 msgstr "Продолжить?"
 
-#: ../includes/class-user-role-editor.php:894
+#: ../includes/class-user-role-editor.php:910
 msgid "Default Role"
 msgstr "Роль по-умолчанию"
 
-#: ../includes/class-user-role-editor.php:895
+#: ../includes/class-user-role-editor.php:911
 msgid "Set New Default Role"
 msgstr "Установить"
 
-#: ../includes/class-user-role-editor.php:897
+#: ../includes/class-user-role-editor.php:913
 msgid ""
 "Warning! Be careful - removing critical capability could crash some plugin "
 "or other custom code"
@@ -264,11 +265,11 @@ msgstr ""
 "Внимание! Будьте осторожны - удаление критичной возможности может привести к "
 "прекращеню работы одного из плагинов или другого кода."
 
-#: ../includes/class-user-role-editor.php:898
+#: ../includes/class-user-role-editor.php:914
 msgid " Capability name (ID) can not be empty!"
 msgstr "Идентификатор возможности (ID) не может быть пустым!"
 
-#: ../includes/class-user-role-editor.php:899
+#: ../includes/class-user-role-editor.php:915
 msgid ""
 " Capability name (ID) must contain latin characters, digits, hyphens or "
 "underscore only!"
@@ -276,12 +277,12 @@ msgstr ""
 "Ошибка: Наименование возможности должно содержать только латинские буквы и "
 "цифры, знаки подчеркивания"
 
-#: ../includes/class-user-role-editor.php:933
-#: ../includes/class-user-role-editor.php:962
+#: ../includes/class-user-role-editor.php:949
+#: ../includes/class-user-role-editor.php:978
 msgid "Other Roles"
 msgstr "Другие роли"
 
-#: ../includes/class-user-role-editor.php:944
+#: ../includes/class-user-role-editor.php:960
 msgid "Edit"
 msgstr "Изменить"
 
@@ -313,79 +314,79 @@ msgstr "Фильтр:"
 msgid "Custom capabilities:"
 msgstr "Дополнительные возможности :"
 
-#: ../includes/class-ure-lib.php:140
+#: ../includes/class-ure-lib.php:156
 msgid "Error: wrong request"
 msgstr "Ошибка: неверный запрос"
 
-#: ../includes/class-ure-lib.php:173 ../includes/class-ure-lib.php:184
+#: ../includes/class-ure-lib.php:189 ../includes/class-ure-lib.php:200
 msgid "Role name (ID): "
 msgstr "Идентификатор роли (ID):"
 
-#: ../includes/class-ure-lib.php:175 ../includes/class-ure-lib.php:186
+#: ../includes/class-ure-lib.php:191 ../includes/class-ure-lib.php:202
 msgid "Display Role Name: "
 msgstr "Наименование роли:"
 
-#: ../includes/class-ure-lib.php:177
+#: ../includes/class-ure-lib.php:193
 msgid "Make copy of: "
 msgstr "Создать копию из:"
 
-#: ../includes/class-ure-lib.php:193
+#: ../includes/class-ure-lib.php:209
 msgid "Select Role:"
 msgstr "Выбери Роль:"
 
-#: ../includes/class-ure-lib.php:208
+#: ../includes/class-ure-lib.php:224
 msgid "Delete:"
 msgstr "Удалить"
 
-#: ../includes/class-ure-lib.php:215
+#: ../includes/class-ure-lib.php:231
 msgid "Capability name (ID): "
 msgstr "Идентификатор (ID):"
 
-#: ../includes/class-ure-lib.php:329
+#: ../includes/class-ure-lib.php:345
 msgid "Error: "
 msgstr "Ошибка:"
 
-#: ../includes/class-ure-lib.php:329
+#: ../includes/class-ure-lib.php:345
 msgid "Role"
 msgstr "Роль"
 
-#: ../includes/class-ure-lib.php:330
+#: ../includes/class-ure-lib.php:346
 msgid "does not exist"
 msgstr "не существует"
 
-#: ../includes/class-ure-lib.php:373
+#: ../includes/class-ure-lib.php:389
 msgid "Role is updated successfully"
 msgstr "Роль изменена успешно"
 
-#: ../includes/class-ure-lib.php:375
+#: ../includes/class-ure-lib.php:391
 msgid "Roles are updated for all network"
 msgstr "Роли изменены для всей сети"
 
-#: ../includes/class-ure-lib.php:381
+#: ../includes/class-ure-lib.php:397
 msgid "Error occured during role(s) update"
 msgstr "При изменении роли произошла ошибка"
 
-#: ../includes/class-ure-lib.php:388
+#: ../includes/class-ure-lib.php:404
 msgid "User capabilities are updated successfully"
 msgstr "Права пользователя изменены успешно"
 
-#: ../includes/class-ure-lib.php:393
+#: ../includes/class-ure-lib.php:409
 msgid "Error occured during user update"
 msgstr "При изменении прав пользователя произошла ошибка "
 
-#: ../includes/class-ure-lib.php:451
+#: ../includes/class-ure-lib.php:467
 msgid "User Roles are restored to WordPress default values. "
 msgstr "Роли возвращены к начальному состоянию"
 
-#: ../includes/class-ure-lib.php:1317
+#: ../includes/class-ure-lib.php:1334
 msgid "Help"
 msgstr "Помощь"
 
-#: ../includes/class-ure-lib.php:1675
+#: ../includes/class-ure-lib.php:1692
 msgid "Error is occur. Please check the log file."
 msgstr "Произошла ошибка. Проверьте лог-файл."
 
-#: ../includes/class-ure-lib.php:1718 ../includes/class-ure-lib.php:1785
+#: ../includes/class-ure-lib.php:1735 ../includes/class-ure-lib.php:1802
 msgid ""
 "Error: Role ID must contain latin characters, digits, hyphens or underscore "
 "only!"
@@ -393,7 +394,7 @@ msgstr ""
 "Ошибка: идентификатор роли (ID) должен содержать только латинские буквы, "
 "цифры, знак подчеркивания и дефис."
 
-#: ../includes/class-ure-lib.php:1722 ../includes/class-ure-lib.php:1789
+#: ../includes/class-ure-lib.php:1739 ../includes/class-ure-lib.php:1806
 msgid ""
 "Error: WordPress does not support numeric Role name (ID). Add latin "
 "characters to it."
@@ -401,377 +402,377 @@ msgstr ""
 "Ошибка: WordPress не поддерживает цифровые идентификаторы ролей. Начните имя "
 "роли с латинских символов."
 
-#: ../includes/class-ure-lib.php:1737
+#: ../includes/class-ure-lib.php:1754
 #, php-format
 msgid "Role %s exists already"
 msgstr "Роль %s уже существует"
 
-#: ../includes/class-ure-lib.php:1752
+#: ../includes/class-ure-lib.php:1769
 msgid "Error is encountered during new role create operation"
 msgstr "Произошла ошибка при создании новой роли"
 
-#: ../includes/class-ure-lib.php:1754
+#: ../includes/class-ure-lib.php:1771
 #, php-format
 msgid "Role %s is created successfully"
 msgstr "Роль %s создана успешно"
 
-#: ../includes/class-ure-lib.php:1778
+#: ../includes/class-ure-lib.php:1795
 msgid "Error: Role ID is empty!"
 msgstr "Ошибка: пустой идентификатор (ID) роли!"
 
-#: ../includes/class-ure-lib.php:1796
+#: ../includes/class-ure-lib.php:1813
 msgid "Error: Empty role display name is not allowed."
 msgstr "Ошибка: пустое наименование роли не допускается"
 
-#: ../includes/class-ure-lib.php:1803
+#: ../includes/class-ure-lib.php:1820
 #, php-format
 msgid "Role %s does not exists"
 msgstr "Роль %s не существует"
 
-#: ../includes/class-ure-lib.php:1811
+#: ../includes/class-ure-lib.php:1828
 #, php-format
 msgid "Role %s is renamed to %s successfully"
 msgstr "Роль %s успешно переименована в %s"
 
-#: ../includes/class-ure-lib.php:1878
+#: ../includes/class-ure-lib.php:1895
 msgid "Error encountered during role delete operation"
 msgstr "Произошла ошибка при удалении роли"
 
-#: ../includes/class-ure-lib.php:1880
+#: ../includes/class-ure-lib.php:1897
 msgid "Unused roles are deleted successfully"
 msgstr "Неиспользуемые роли удалены успешно"
 
-#: ../includes/class-ure-lib.php:1882
+#: ../includes/class-ure-lib.php:1899
 #, php-format
 msgid "Role %s is deleted successfully"
 msgstr "Роль %s удалена успешно"
 
-#: ../includes/class-ure-lib.php:1907
+#: ../includes/class-ure-lib.php:1924
 msgid "Error encountered during default role change operation"
 msgstr "Произошла ошибка при изменении роли по-умолчанию"
 
-#: ../includes/class-ure-lib.php:1913
+#: ../includes/class-ure-lib.php:1930
 #, php-format
 msgid "Default role for new users is set to %s successfully"
 msgstr "Роль по-умолчанию для новых пользователй изменена на %s успешно."
 
-#: ../includes/class-ure-lib.php:1932
+#: ../includes/class-ure-lib.php:1949
 msgid "Editor"
 msgstr "Редактор"
 
-#: ../includes/class-ure-lib.php:1933
+#: ../includes/class-ure-lib.php:1950
 msgid "Author"
 msgstr "Автор"
 
-#: ../includes/class-ure-lib.php:1934
+#: ../includes/class-ure-lib.php:1951
 msgid "Contributor"
 msgstr "Участник"
 
-#: ../includes/class-ure-lib.php:1935
+#: ../includes/class-ure-lib.php:1952
 msgid "Subscriber"
 msgstr "Подписчик"
 
-#: ../includes/class-ure-lib.php:1937
+#: ../includes/class-ure-lib.php:1954
 msgid "Switch themes"
 msgstr "Менять темы"
 
-#: ../includes/class-ure-lib.php:1938
+#: ../includes/class-ure-lib.php:1955
 msgid "Edit themes"
 msgstr "Изменять темы"
 
-#: ../includes/class-ure-lib.php:1939
+#: ../includes/class-ure-lib.php:1956
 msgid "Activate plugins"
 msgstr "Активировать плагины"
 
-#: ../includes/class-ure-lib.php:1940
+#: ../includes/class-ure-lib.php:1957
 msgid "Edit plugins"
 msgstr "Редактировать плагины"
 
-#: ../includes/class-ure-lib.php:1941
+#: ../includes/class-ure-lib.php:1958
 msgid "Edit users"
 msgstr "Изменять пользователей"
 
-#: ../includes/class-ure-lib.php:1942
+#: ../includes/class-ure-lib.php:1959
 msgid "Edit files"
 msgstr "Изменять файлы"
 
-#: ../includes/class-ure-lib.php:1943
+#: ../includes/class-ure-lib.php:1960
 msgid "Manage options"
 msgstr "Управлять установками"
 
-#: ../includes/class-ure-lib.php:1944
+#: ../includes/class-ure-lib.php:1961
 msgid "Moderate comments"
 msgstr "Модерировать комментарии"
 
-#: ../includes/class-ure-lib.php:1945
+#: ../includes/class-ure-lib.php:1962
 msgid "Manage categories"
 msgstr "Управлять категориями"
 
-#: ../includes/class-ure-lib.php:1946
+#: ../includes/class-ure-lib.php:1963
 msgid "Manage links"
 msgstr "Управлять ссылками"
 
-#: ../includes/class-ure-lib.php:1947
+#: ../includes/class-ure-lib.php:1964
 msgid "Upload files"
 msgstr "Загружать файлы"
 
-#: ../includes/class-ure-lib.php:1948
+#: ../includes/class-ure-lib.php:1965
 msgid "Import"
 msgstr "Импорт"
 
-#: ../includes/class-ure-lib.php:1949
+#: ../includes/class-ure-lib.php:1966
 msgid "Unfiltered html"
 msgstr "html без фильтра"
 
-#: ../includes/class-ure-lib.php:1950
+#: ../includes/class-ure-lib.php:1967
 msgid "Edit posts"
 msgstr "Изменять статьи"
 
-#: ../includes/class-ure-lib.php:1951
+#: ../includes/class-ure-lib.php:1968
 msgid "Edit others posts"
 msgstr "Изменять чужие статьи"
 
-#: ../includes/class-ure-lib.php:1952
+#: ../includes/class-ure-lib.php:1969
 msgid "Edit published posts"
 msgstr "Редактировать опубликованные статьи"
 
-#: ../includes/class-ure-lib.php:1953
+#: ../includes/class-ure-lib.php:1970
 msgid "Publish posts"
 msgstr "Публиковать статьи"
 
-#: ../includes/class-ure-lib.php:1954
+#: ../includes/class-ure-lib.php:1971
 msgid "Edit pages"
 msgstr "Изменять страницы"
 
-#: ../includes/class-ure-lib.php:1955
+#: ../includes/class-ure-lib.php:1972
 msgid "Read"
 msgstr "Чтение"
 
-#: ../includes/class-ure-lib.php:1956
+#: ../includes/class-ure-lib.php:1973
 msgid "Level 10"
 msgstr "Уровень 10"
 
-#: ../includes/class-ure-lib.php:1957
+#: ../includes/class-ure-lib.php:1974
 msgid "Level 9"
 msgstr "Уровень 9"
 
-#: ../includes/class-ure-lib.php:1958
+#: ../includes/class-ure-lib.php:1975
 msgid "Level 8"
 msgstr "Уровень 9"
 
-#: ../includes/class-ure-lib.php:1959
+#: ../includes/class-ure-lib.php:1976
 msgid "Level 7"
 msgstr "Уровень 7"
 
-#: ../includes/class-ure-lib.php:1960
+#: ../includes/class-ure-lib.php:1977
 msgid "Level 6"
 msgstr "Уровень 6"
 
-#: ../includes/class-ure-lib.php:1961
+#: ../includes/class-ure-lib.php:1978
 msgid "Level 5"
 msgstr "Уровень 5"
 
-#: ../includes/class-ure-lib.php:1962
+#: ../includes/class-ure-lib.php:1979
 msgid "Level 4"
 msgstr "Уровень 4"
 
-#: ../includes/class-ure-lib.php:1963
+#: ../includes/class-ure-lib.php:1980
 msgid "Level 3"
 msgstr "Уровень 3"
 
-#: ../includes/class-ure-lib.php:1964
+#: ../includes/class-ure-lib.php:1981
 msgid "Level 2"
 msgstr "Уровень 2"
 
-#: ../includes/class-ure-lib.php:1965
+#: ../includes/class-ure-lib.php:1982
 msgid "Level 1"
 msgstr "Уровень 1"
 
-#: ../includes/class-ure-lib.php:1966
+#: ../includes/class-ure-lib.php:1983
 msgid "Level 0"
 msgstr "Уровень 0"
 
-#: ../includes/class-ure-lib.php:1967
+#: ../includes/class-ure-lib.php:1984
 msgid "Edit others pages"
 msgstr "Редактировать чужие страницы"
 
-#: ../includes/class-ure-lib.php:1968
+#: ../includes/class-ure-lib.php:1985
 msgid "Edit published pages"
 msgstr "Редактировать опубликованные страницы"
 
-#: ../includes/class-ure-lib.php:1969
+#: ../includes/class-ure-lib.php:1986
 msgid "Publish pages"
 msgstr "Публиковать страницы"
 
-#: ../includes/class-ure-lib.php:1970
+#: ../includes/class-ure-lib.php:1987
 msgid "Delete pages"
 msgstr "Удалять страницы"
 
-#: ../includes/class-ure-lib.php:1971
+#: ../includes/class-ure-lib.php:1988
 msgid "Delete others pages"
 msgstr "Удалить чужие страницы"
 
-#: ../includes/class-ure-lib.php:1972
+#: ../includes/class-ure-lib.php:1989
 msgid "Delete published pages"
 msgstr "Удалять опубликованные страницы"
 
-#: ../includes/class-ure-lib.php:1973
+#: ../includes/class-ure-lib.php:1990
 msgid "Delete posts"
 msgstr "Удалять статьи"
 
-#: ../includes/class-ure-lib.php:1974
+#: ../includes/class-ure-lib.php:1991
 msgid "Delete others posts"
 msgstr "Удалять чужие статьи"
 
-#: ../includes/class-ure-lib.php:1975
+#: ../includes/class-ure-lib.php:1992
 msgid "Delete published posts"
 msgstr "Удалять опубликованные статьи"
 
-#: ../includes/class-ure-lib.php:1976
+#: ../includes/class-ure-lib.php:1993
 msgid "Delete private posts"
 msgstr "Удалять частные статьи"
 
-#: ../includes/class-ure-lib.php:1977
+#: ../includes/class-ure-lib.php:1994
 msgid "Edit private posts"
 msgstr "Редактировать частные статьи"
 
-#: ../includes/class-ure-lib.php:1978
+#: ../includes/class-ure-lib.php:1995
 msgid "Read private posts"
 msgstr "Читать частные статьи"
 
-#: ../includes/class-ure-lib.php:1979
+#: ../includes/class-ure-lib.php:1996
 msgid "Delete private pages"
 msgstr "Удалять частные страницы"
 
-#: ../includes/class-ure-lib.php:1980
+#: ../includes/class-ure-lib.php:1997
 msgid "Edit private pages"
 msgstr "Редактировать частные страницы"
 
-#: ../includes/class-ure-lib.php:1981
+#: ../includes/class-ure-lib.php:1998
 msgid "Read private pages"
 msgstr "Читать частные страницы"
 
-#: ../includes/class-ure-lib.php:1982
+#: ../includes/class-ure-lib.php:1999
 msgid "Delete users"
 msgstr "Удалять пользователей"
 
-#: ../includes/class-ure-lib.php:1983
+#: ../includes/class-ure-lib.php:2000
 msgid "Create users"
 msgstr "Создавать пользователей"
 
-#: ../includes/class-ure-lib.php:1984
+#: ../includes/class-ure-lib.php:2001
 msgid "Unfiltered upload"
 msgstr "Загрузка без фильтра"
 
-#: ../includes/class-ure-lib.php:1985
+#: ../includes/class-ure-lib.php:2002
 msgid "Edit dashboard"
 msgstr "Изменять панель администратора"
 
-#: ../includes/class-ure-lib.php:1986
+#: ../includes/class-ure-lib.php:2003
 msgid "Update plugins"
 msgstr "Обновлять плагины"
 
-#: ../includes/class-ure-lib.php:1987
+#: ../includes/class-ure-lib.php:2004
 msgid "Delete plugins"
 msgstr "Удалять плагины"
 
-#: ../includes/class-ure-lib.php:1988
+#: ../includes/class-ure-lib.php:2005
 msgid "Install plugins"
 msgstr "Устанавливать плагины"
 
-#: ../includes/class-ure-lib.php:1989
+#: ../includes/class-ure-lib.php:2006
 msgid "Update themes"
 msgstr "Обновлять темы"
 
-#: ../includes/class-ure-lib.php:1990
+#: ../includes/class-ure-lib.php:2007
 msgid "Install themes"
 msgstr "Устанавливать темы"
 
-#: ../includes/class-ure-lib.php:1991
+#: ../includes/class-ure-lib.php:2008
 msgid "Update core"
 msgstr "Обновлять ядро"
 
-#: ../includes/class-ure-lib.php:1992
+#: ../includes/class-ure-lib.php:2009
 msgid "List users"
 msgstr "Список пользователей"
 
-#: ../includes/class-ure-lib.php:1993
+#: ../includes/class-ure-lib.php:2010
 msgid "Remove users"
 msgstr "Удалять пользователей"
 
-#: ../includes/class-ure-lib.php:1994
+#: ../includes/class-ure-lib.php:2011
 msgid "Add users"
 msgstr "Добавлять пользователей"
 
-#: ../includes/class-ure-lib.php:1995
+#: ../includes/class-ure-lib.php:2012
 msgid "Promote users"
 msgstr "Продвигать пользователей"
 
-#: ../includes/class-ure-lib.php:1996
+#: ../includes/class-ure-lib.php:2013
 msgid "Edit theme options"
 msgstr "Изменять настройки темы"
 
-#: ../includes/class-ure-lib.php:1997
+#: ../includes/class-ure-lib.php:2014
 msgid "Delete themes"
 msgstr "Удалять темы"
 
-#: ../includes/class-ure-lib.php:1998
+#: ../includes/class-ure-lib.php:2015
 msgid "Export"
 msgstr "Экспорт"
 
-#: ../includes/class-ure-lib.php:2108
+#: ../includes/class-ure-lib.php:2125
 msgid "Error: Capability name must contain latin characters and digits only!"
 msgstr "Ошибка: Имя должно содержать только латинские буквы и цифры"
 
-#: ../includes/class-ure-lib.php:2121
+#: ../includes/class-ure-lib.php:2138
 #, php-format
 msgid "Capability %s is added successfully"
 msgstr "Возможность %s добавлена успешно"
 
-#: ../includes/class-ure-lib.php:2123
+#: ../includes/class-ure-lib.php:2140
 #, php-format
 msgid "Capability %s exists already"
 msgstr "Возможность %s уже существует"
 
-#: ../includes/class-ure-lib.php:2148
+#: ../includes/class-ure-lib.php:2165
 #, php-format
 msgid "Error! You do not have permission to delete this capability: %s!"
 msgstr "Ошибка! Вам запрещено удалять эту возможность: %s!"
 
-#: ../includes/class-ure-lib.php:2167
+#: ../includes/class-ure-lib.php:2184
 #, php-format
 msgid "Capability %s is removed successfully"
 msgstr "Возможность %s удалена успешно"
 
-#: ../includes/class-ure-lib.php:2271
+#: ../includes/class-ure-lib.php:2288
 msgid "Version:"
 msgstr "Версия:"
 
-#: ../includes/class-ure-lib.php:2272
+#: ../includes/class-ure-lib.php:2289
 msgid "Author's website"
 msgstr "Вебсайт автора"
 
-#: ../includes/class-ure-lib.php:2273
+#: ../includes/class-ure-lib.php:2290
 msgid "Plugin webpage"
 msgstr "Страница плагина"
 
-#: ../includes/class-ure-lib.php:2274
+#: ../includes/class-ure-lib.php:2291
 msgid "Plugin download"
 msgstr "Загрузить плагин"
 
-#: ../includes/class-ure-lib.php:2276
+#: ../includes/class-ure-lib.php:2293
 msgid "FAQ"
 msgstr "Часто задаваемые вопросы"
 
-#: ../includes/class-ure-lib.php:2324
+#: ../includes/class-ure-lib.php:2341
 msgid "None"
 msgstr "Нет"
 
-#: ../includes/class-ure-lib.php:2351
+#: ../includes/class-ure-lib.php:2368
 msgid "Delete All Unused Roles"
 msgstr "Удалить все неиспользуемые роли"
 
-#: ../includes/class-ure-lib.php:2375
+#: ../includes/class-ure-lib.php:2392
 msgid "&mdash; No role for this site &mdash;"
 msgstr "&mdash; Нет роли для этого сайта &mdash;"
 
@@ -827,20 +828,50 @@ msgstr ""
 "обеспечения совместимости со старыми темами и плагинами. Включение данной "
 "опции покажет все устаревшие права пользователей."
 
-#: ../includes/class-ure-screen-help.php:27
-msgid "Allow create, edit and delete users to not super-admininstrators"
+#: ../includes/class-ure-screen-help.php:41
+msgid "select roles below"
+msgstr "выберите роли ниже"
+
+#: ../includes/class-ure-screen-help.php:56
+msgid "Other default roles for new registered user"
+msgstr "Другие роли по-умолчанию для вновь зарегистрированного пользователя:"
+
+#: ../includes/class-ure-screen-help.php:57
+msgid ""
+"select roles below to assign them to the new user automatically as an "
+"addition to the primary role. Note for multisite environment: take into "
+"account that other default roles should exist at the site, in order to be "
+"assigned to the new registered users."
 msgstr ""
-"Разрешить создание, изменение и удаление пользователей простым "
-"администраторам"
+"выберите роли из расположенного ниже списка, чтобы присваивать их новым "
+"пользователям автоматически в дополнение к основной роли.Заметка для "
+"WordPress с несколькими сайтами: учтите, что для присвоения вновь "
+"зарегистрированному пользователю дополнительных ролей по-умолчанию эти роли "
+"должны существовать на этом сайте."
+
+#: ../includes/class-ure-screen-help.php:75
+msgid "Allow non super-admininstrators to create, edit and delete users"
+msgstr ""
+"Разрешить локальным администраторам сайтов (не суперадмин) создавать, "
+"изменять, удалять пользователей на своих сайтах"
 
-#: ../includes/class-ure-screen-help.php:28
+#: ../includes/class-ure-screen-help.php:76
 msgid ""
 "Super administrator only may create, edit and delete users under WordPress "
-"multi-site. Turn this option on in order to remove this limitation."
+"multi-site by default. Turn this option on in order to remove this "
+"limitation."
 msgstr ""
 "Только супер-администратор может создавать, изменять и удалять пользователей "
 "в многосайтовой сети WordPress. Включите эту опцию, чтобы отменить это "
-"ограничение"
+"ограничение."
+
+#~ msgid "Overview"
+#~ msgstr "Обзор"
+
+#~ msgid "Allow create, edit and delete users to not super-admininstrators"
+#~ msgstr ""
+#~ "Разрешить создание, изменение и удаление пользователей простым "
+#~ "администраторам"
 
 #~ msgid "About this Plugin:"
 #~ msgstr "Об этом плагине"
index 08450db..17817f5 100644 (file)
Binary files a/wp-content/plugins/user-role-editor/lang/ure-tr_TR.mo and b/wp-content/plugins/user-role-editor/lang/ure-tr_TR.mo differ
index 8bcbbae..c9d5110 100644 (file)
@@ -2,7 +2,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: user-role-editor\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-09-08 21:33+0700\n"
+"POT-Creation-Date: 2014-10-01 12:45+0700\n"
 "PO-Revision-Date: \n"
 "Last-Translator: Vladimir Garagulya <vladimir@shinephp.com>\n"
 "Language-Team: \n"
@@ -22,70 +22,75 @@ msgid "User Role Editor - Options"
 msgstr "Kullanıcı Rol Editörü"
 
 #: ../includes/settings-template.php:21
+#: ../includes/class-user-role-editor.php:547
 #, fuzzy
 msgid "General"
 msgstr "Seçenekleri yönetmek"
 
-#: ../includes/settings-template.php:22
+#: ../includes/settings-template.php:26
+#: ../includes/class-user-role-editor.php:553
 msgid "Additional Modules"
 msgstr ""
 
-#: ../includes/settings-template.php:23
+#: ../includes/settings-template.php:30
+#: ../includes/class-user-role-editor.php:559
 #, fuzzy
 msgid "Default Roles"
 msgstr "Öntanımlı Rol"
 
-#: ../includes/settings-template.php:27
+#: ../includes/settings-template.php:34
+#: ../includes/class-user-role-editor.php:564
 msgid "Multisite"
 msgstr ""
 
-#: ../includes/settings-template.php:31
+#: ../includes/settings-template.php:39
 msgid "About"
 msgstr ""
 
-#: ../includes/settings-template.php:42
+#: ../includes/settings-template.php:53
 #: ../includes/class-ure-screen-help.php:15
 msgid "Show Administrator role at User Role Editor"
 msgstr ""
 
-#: ../includes/settings-template.php:50
+#: ../includes/settings-template.php:61
 #: ../includes/class-ure-screen-help.php:18
 #, fuzzy
 msgid "Show capabilities in the human readable form"
 msgstr "Yetkileri insan tarafından okunabilir biçimde göster"
 
-#: ../includes/settings-template.php:58 ../includes/ure-role-edit.php:40
+#: ../includes/settings-template.php:69 ../includes/ure-role-edit.php:40
 #: ../includes/ure-user-edit.php:63 ../includes/class-ure-screen-help.php:21
 msgid "Show deprecated capabilities"
 msgstr "Önerilmeyen yetenekleri göster"
 
-#: ../includes/settings-template.php:69 ../includes/settings-template.php:101
-#: ../includes/settings-template.php:131 ../includes/settings-template.php:160
+#: ../includes/settings-template.php:81 ../includes/settings-template.php:117
+#: ../includes/settings-template.php:149 ../includes/settings-template.php:181
 msgid "Save"
 msgstr ""
 
-#: ../includes/settings-template.php:86
+#: ../includes/settings-template.php:102
+#: ../includes/class-ure-screen-help.php:40
 #, fuzzy
 msgid "Count users without role"
 msgstr "Varsayılan Rolü Değiştir"
 
-#: ../includes/settings-template.php:111
+#: ../includes/settings-template.php:129
 #, fuzzy
 msgid "Primary default role: "
 msgstr "Birincil rol:"
 
-#: ../includes/settings-template.php:118
+#: ../includes/settings-template.php:136
 msgid "Other default roles for new registered user: "
 msgstr ""
 
-#: ../includes/settings-template.php:124
+#: ../includes/settings-template.php:142
 msgid ""
 "Note for multisite environment: take into account that other default roles "
 "should exist at the site, in order to be assigned to the new registered "
 "users."
 msgstr ""
 
-#: ../includes/settings-template.php:147
+#: ../includes/settings-template.php:168
 msgid "Allow non super administrators to create, edit, and delete users"
 msgstr ""
 
@@ -107,86 +112,82 @@ msgstr ""
 msgid "You do not have permission to edit this user."
 msgstr ""
 
-#: ../includes/class-user-role-editor.php:424
+#: ../includes/class-user-role-editor.php:422
 msgid "Capabilities"
 msgstr "Kabiliyetler"
 
-#: ../includes/class-user-role-editor.php:517
+#: ../includes/class-user-role-editor.php:514
 msgid "Settings"
 msgstr "Ayarlar"
 
-#: ../includes/class-user-role-editor.php:530
-#: ../includes/class-ure-lib.php:2275
+#: ../includes/class-user-role-editor.php:525
+#: ../includes/class-ure-lib.php:2292
 msgid "Changelog"
 msgstr "Changelog"
 
-#: ../includes/class-user-role-editor.php:552
-msgid "Overview"
-msgstr ""
-
-#: ../includes/class-user-role-editor.php:561
-#: ../includes/class-user-role-editor.php:589
-#: ../includes/class-user-role-editor.php:930
-#: ../includes/class-ure-lib.php:232
+#: ../includes/class-user-role-editor.php:573
+#: ../includes/class-user-role-editor.php:601
+#: ../includes/class-user-role-editor.php:946
+#: ../includes/class-ure-lib.php:248
 msgid "User Role Editor"
 msgstr "Kullanıcı Rol Editörü"
 
-#: ../includes/class-user-role-editor.php:646
-#: ../includes/class-user-role-editor.php:664
-#: ../includes/class-user-role-editor.php:708
+#: ../includes/class-user-role-editor.php:658
+#: ../includes/class-user-role-editor.php:676
+#: ../includes/class-user-role-editor.php:720
 msgid "User Role Editor options are updated"
 msgstr ""
 
-#: ../includes/class-user-role-editor.php:692
+#: ../includes/class-user-role-editor.php:704
 #, fuzzy
 msgid "Default Roles are updated"
 msgstr "Yeni Kullanıcılar için Varsayılan Rol"
 
-#: ../includes/class-user-role-editor.php:716
+#: ../includes/class-user-role-editor.php:728
 msgid ""
 "You do not have sufficient permissions to manage options for User Role "
 "Editor."
 msgstr ""
 
-#: ../includes/class-user-role-editor.php:791
+#: ../includes/class-user-role-editor.php:807
 msgid "Insufficient permissions to work with User Role Editor"
 msgstr ""
 
-#: ../includes/class-user-role-editor.php:872
+#: ../includes/class-user-role-editor.php:888
 msgid "Select All"
 msgstr "Tümünü Seç"
 
-#: ../includes/class-user-role-editor.php:873
+#: ../includes/class-user-role-editor.php:889
 msgid "Unselect All"
 msgstr "Seçimi Kaldır"
 
-#: ../includes/class-user-role-editor.php:874
+#: ../includes/class-user-role-editor.php:890
 msgid "Reverse"
 msgstr "Seçimi Tersine Çevir"
 
-#: ../includes/class-user-role-editor.php:875
+#: ../includes/class-user-role-editor.php:891
 msgid "Update"
 msgstr "Güncelle"
 
-#: ../includes/class-user-role-editor.php:876
+#: ../includes/class-user-role-editor.php:892
 msgid "Please confirm permissions update"
 msgstr "İzinleri güncelleştirmek için lütfen onaylayın"
 
-#: ../includes/class-user-role-editor.php:877
+#: ../includes/class-user-role-editor.php:893
 msgid "Add New Role"
 msgstr "Yeni Rol Ekle"
 
-#: ../includes/class-user-role-editor.php:878
-#: ../includes/class-user-role-editor.php:883
+#: ../includes/class-user-role-editor.php:894
+#: ../includes/class-user-role-editor.php:899
 #, fuzzy
 msgid "Rename Role"
 msgstr "Rolü Sil"
 
-#: ../includes/class-user-role-editor.php:879
+#: ../includes/class-user-role-editor.php:895
 msgid " Role name (ID) can not be empty!"
 msgstr "Ad (ID) boş bırakılamaz!"
 
-#: ../includes/class-user-role-editor.php:880
+#: ../includes/class-user-role-editor.php:896
 msgid ""
 " Role name (ID) must contain latin characters, digits, hyphens or underscore "
 "only!"
@@ -194,66 +195,66 @@ msgstr ""
 "Rol adı (ID) yalnızca latin karakterleri, sayılar, tire veya altçizgiden  "
 "oluşabilir."
 
-#: ../includes/class-user-role-editor.php:881
+#: ../includes/class-user-role-editor.php:897
 msgid ""
 " WordPress does not support numeric Role name (ID). Add latin characters to "
 "it."
 msgstr ""
 
-#: ../includes/class-user-role-editor.php:882
+#: ../includes/class-user-role-editor.php:898
 msgid "Add Role"
 msgstr "Rol Ekle"
 
-#: ../includes/class-user-role-editor.php:884
+#: ../includes/class-user-role-editor.php:900
 msgid "Delete Role"
 msgstr "Rolü Sil"
 
-#: ../includes/class-user-role-editor.php:885
+#: ../includes/class-user-role-editor.php:901
 msgid "Cancel"
 msgstr "İptal"
 
-#: ../includes/class-user-role-editor.php:886
+#: ../includes/class-user-role-editor.php:902
 msgid "Add Capability"
 msgstr "Kabiliyet Ekle"
 
-#: ../includes/class-user-role-editor.php:887
-#: ../includes/class-user-role-editor.php:896
+#: ../includes/class-user-role-editor.php:903
+#: ../includes/class-user-role-editor.php:912
 msgid "Delete Capability"
 msgstr "Kabiliyeti kaldır"
 
-#: ../includes/class-user-role-editor.php:888
+#: ../includes/class-user-role-editor.php:904
 msgid "Reset"
 msgstr "Geri al"
 
-#: ../includes/class-user-role-editor.php:889
+#: ../includes/class-user-role-editor.php:905
 msgid "DANGER! Resetting will restore default settings from WordPress Core."
 msgstr ""
 
-#: ../includes/class-user-role-editor.php:890
+#: ../includes/class-user-role-editor.php:906
 msgid ""
 "If any plugins have changed capabilities in any way upon installation (such "
 "as S2Member, WooCommerce, and many more), those capabilities will be DELETED!"
 msgstr ""
 
-#: ../includes/class-user-role-editor.php:891
+#: ../includes/class-user-role-editor.php:907
 msgid ""
 "For more information on how to undo changes and restore plugin capabilities "
 "go to"
 msgstr ""
 
-#: ../includes/class-user-role-editor.php:893
+#: ../includes/class-user-role-editor.php:909
 msgid "Continue?"
 msgstr ""
 
-#: ../includes/class-user-role-editor.php:894
+#: ../includes/class-user-role-editor.php:910
 msgid "Default Role"
 msgstr "Öntanımlı Rol"
 
-#: ../includes/class-user-role-editor.php:895
+#: ../includes/class-user-role-editor.php:911
 msgid "Set New Default Role"
 msgstr "Yeni Öntanımlı Rol Seç"
 
-#: ../includes/class-user-role-editor.php:897
+#: ../includes/class-user-role-editor.php:913
 msgid ""
 "Warning! Be careful - removing critical capability could crash some plugin "
 "or other custom code"
@@ -261,11 +262,11 @@ msgstr ""
 "Uyarı! Dikkatli olun - önemli kabiliyetleri kaldırmak bazı eklentileri veya "
 "başka özel kodların bozulmasına sebep olabilir"
 
-#: ../includes/class-user-role-editor.php:898
+#: ../includes/class-user-role-editor.php:914
 msgid " Capability name (ID) can not be empty!"
 msgstr "Ad (ID) boş bırakılamaz!"
 
-#: ../includes/class-user-role-editor.php:899
+#: ../includes/class-user-role-editor.php:915
 msgid ""
 " Capability name (ID) must contain latin characters, digits, hyphens or "
 "underscore only!"
@@ -273,12 +274,12 @@ msgstr ""
 "Kabiliyet adı (ID) yalnızca latin karakterleri, sayılar, tire veya "
 "altçizgiden oluşabilir."
 
-#: ../includes/class-user-role-editor.php:933
-#: ../includes/class-user-role-editor.php:962
+#: ../includes/class-user-role-editor.php:949
+#: ../includes/class-user-role-editor.php:978
 msgid "Other Roles"
 msgstr "Diğer Roller"
 
-#: ../includes/class-user-role-editor.php:944
+#: ../includes/class-user-role-editor.php:960
 msgid "Edit"
 msgstr "Düzenle"
 
@@ -311,79 +312,79 @@ msgstr ""
 msgid "Custom capabilities:"
 msgstr "Özel Kabiliyetler:"
 
-#: ../includes/class-ure-lib.php:140
+#: ../includes/class-ure-lib.php:156
 msgid "Error: wrong request"
 msgstr ""
 
-#: ../includes/class-ure-lib.php:173 ../includes/class-ure-lib.php:184
+#: ../includes/class-ure-lib.php:189 ../includes/class-ure-lib.php:200
 msgid "Role name (ID): "
 msgstr "Rol adı (ID):"
 
-#: ../includes/class-ure-lib.php:175 ../includes/class-ure-lib.php:186
+#: ../includes/class-ure-lib.php:191 ../includes/class-ure-lib.php:202
 msgid "Display Role Name: "
 msgstr "Görünecek Rol Adı:"
 
-#: ../includes/class-ure-lib.php:177
+#: ../includes/class-ure-lib.php:193
 msgid "Make copy of: "
 msgstr "Bundan kopyala:"
 
-#: ../includes/class-ure-lib.php:193
+#: ../includes/class-ure-lib.php:209
 msgid "Select Role:"
 msgstr "Rolü Seçin:"
 
-#: ../includes/class-ure-lib.php:208
+#: ../includes/class-ure-lib.php:224
 msgid "Delete:"
 msgstr "Sil:"
 
-#: ../includes/class-ure-lib.php:215
+#: ../includes/class-ure-lib.php:231
 msgid "Capability name (ID): "
 msgstr "Yetenek adı (ID): "
 
-#: ../includes/class-ure-lib.php:329
+#: ../includes/class-ure-lib.php:345
 msgid "Error: "
 msgstr "Hata:"
 
-#: ../includes/class-ure-lib.php:329
+#: ../includes/class-ure-lib.php:345
 msgid "Role"
 msgstr "Rol:"
 
-#: ../includes/class-ure-lib.php:330
+#: ../includes/class-ure-lib.php:346
 msgid "does not exist"
 msgstr "bulunmuyor"
 
-#: ../includes/class-ure-lib.php:373
+#: ../includes/class-ure-lib.php:389
 msgid "Role is updated successfully"
 msgstr ""
 
-#: ../includes/class-ure-lib.php:375
+#: ../includes/class-ure-lib.php:391
 msgid "Roles are updated for all network"
 msgstr ""
 
-#: ../includes/class-ure-lib.php:381
+#: ../includes/class-ure-lib.php:397
 msgid "Error occured during role(s) update"
 msgstr ""
 
-#: ../includes/class-ure-lib.php:388
+#: ../includes/class-ure-lib.php:404
 msgid "User capabilities are updated successfully"
 msgstr ""
 
-#: ../includes/class-ure-lib.php:393
+#: ../includes/class-ure-lib.php:409
 msgid "Error occured during user update"
 msgstr ""
 
-#: ../includes/class-ure-lib.php:451
+#: ../includes/class-ure-lib.php:467
 msgid "User Roles are restored to WordPress default values. "
 msgstr "Rol yetkileri WordPress öntanımlılarına geri yüklendi."
 
-#: ../includes/class-ure-lib.php:1317
+#: ../includes/class-ure-lib.php:1334
 msgid "Help"
 msgstr "Yardım"
 
-#: ../includes/class-ure-lib.php:1675
+#: ../includes/class-ure-lib.php:1692
 msgid "Error is occur. Please check the log file."
 msgstr "Bir hata oluştu. Lütfen günlük dosyasını kontrol edin."
 
-#: ../includes/class-ure-lib.php:1718 ../includes/class-ure-lib.php:1785
+#: ../includes/class-ure-lib.php:1735 ../includes/class-ure-lib.php:1802
 msgid ""
 "Error: Role ID must contain latin characters, digits, hyphens or underscore "
 "only!"
@@ -391,385 +392,385 @@ msgstr ""
 "Hata: Rol ID yalnızca latin karakterleri, sayılar, tire veya altçizgiden "
 "oluşabilir."
 
-#: ../includes/class-ure-lib.php:1722 ../includes/class-ure-lib.php:1789
+#: ../includes/class-ure-lib.php:1739 ../includes/class-ure-lib.php:1806
 msgid ""
 "Error: WordPress does not support numeric Role name (ID). Add latin "
 "characters to it."
 msgstr ""
 
-#: ../includes/class-ure-lib.php:1737
+#: ../includes/class-ure-lib.php:1754
 #, php-format
 msgid "Role %s exists already"
 msgstr "%s rolü zaten mevcut"
 
-#: ../includes/class-ure-lib.php:1752
+#: ../includes/class-ure-lib.php:1769
 msgid "Error is encountered during new role create operation"
 msgstr "Yeni rol oluşturma işlemi sırasında hata"
 
-#: ../includes/class-ure-lib.php:1754
+#: ../includes/class-ure-lib.php:1771
 #, php-format
 msgid "Role %s is created successfully"
 msgstr "%s rolü başarıyla oluşturuldu"
 
-#: ../includes/class-ure-lib.php:1778
+#: ../includes/class-ure-lib.php:1795
 msgid "Error: Role ID is empty!"
 msgstr ""
 
-#: ../includes/class-ure-lib.php:1796
+#: ../includes/class-ure-lib.php:1813
 msgid "Error: Empty role display name is not allowed."
 msgstr ""
 
-#: ../includes/class-ure-lib.php:1803
+#: ../includes/class-ure-lib.php:1820
 #, fuzzy, php-format
 msgid "Role %s does not exists"
 msgstr "bulunmuyor"
 
-#: ../includes/class-ure-lib.php:1811
+#: ../includes/class-ure-lib.php:1828
 #, fuzzy, php-format
 msgid "Role %s is renamed to %s successfully"
 msgstr "%s rolü başarıyla oluşturuldu"
 
-#: ../includes/class-ure-lib.php:1878
+#: ../includes/class-ure-lib.php:1895
 msgid "Error encountered during role delete operation"
 msgstr "Rol silme işlemi sırasında hata"
 
-#: ../includes/class-ure-lib.php:1880
+#: ../includes/class-ure-lib.php:1897
 msgid "Unused roles are deleted successfully"
 msgstr ""
 
-#: ../includes/class-ure-lib.php:1882
+#: ../includes/class-ure-lib.php:1899
 #, php-format
 msgid "Role %s is deleted successfully"
 msgstr "%s rolü başarıyla silindi"
 
-#: ../includes/class-ure-lib.php:1907
+#: ../includes/class-ure-lib.php:1924
 msgid "Error encountered during default role change operation"
 msgstr "Varsayılan rolü değiştirme işlemi sırasında hata"
 
-#: ../includes/class-ure-lib.php:1913
+#: ../includes/class-ure-lib.php:1930
 #, php-format
 msgid "Default role for new users is set to %s successfully"
 msgstr "Yeni kullanıcılar için varsayılan rol %s olarak başarıyla değiştirildi"
 
-#: ../includes/class-ure-lib.php:1932
+#: ../includes/class-ure-lib.php:1949
 msgid "Editor"
 msgstr "Editör"
 
-#: ../includes/class-ure-lib.php:1933
+#: ../includes/class-ure-lib.php:1950
 msgid "Author"
 msgstr "Yazar"
 
-#: ../includes/class-ure-lib.php:1934
+#: ../includes/class-ure-lib.php:1951
 msgid "Contributor"
 msgstr "İçerik Sağlayıcı"
 
-#: ../includes/class-ure-lib.php:1935
+#: ../includes/class-ure-lib.php:1952
 msgid "Subscriber"
 msgstr "Üye"
 
-#: ../includes/class-ure-lib.php:1937
+#: ../includes/class-ure-lib.php:1954
 msgid "Switch themes"
 msgstr "Temaları değiştir"
 
-#: ../includes/class-ure-lib.php:1938
+#: ../includes/class-ure-lib.php:1955
 msgid "Edit themes"
 msgstr "Temaları düzenle"
 
-#: ../includes/class-ure-lib.php:1939
+#: ../includes/class-ure-lib.php:1956
 msgid "Activate plugins"
 msgstr "Eklentileri aktive et"
 
-#: ../includes/class-ure-lib.php:1940
+#: ../includes/class-ure-lib.php:1957
 msgid "Edit plugins"
 msgstr "Eklentileri düzenlemek"
 
-#: ../includes/class-ure-lib.php:1941
+#: ../includes/class-ure-lib.php:1958
 msgid "Edit users"
 msgstr "Kullanıcıları düzenlemek"
 
-#: ../includes/class-ure-lib.php:1942
+#: ../includes/class-ure-lib.php:1959
 msgid "Edit files"
 msgstr "Dosyaları düzenlemek"
 
-#: ../includes/class-ure-lib.php:1943
+#: ../includes/class-ure-lib.php:1960
 msgid "Manage options"
 msgstr "Seçenekleri yönetmek"
 
-#: ../includes/class-ure-lib.php:1944
+#: ../includes/class-ure-lib.php:1961
 msgid "Moderate comments"
 msgstr "Yorumları yönetmek"
 
-#: ../includes/class-ure-lib.php:1945
+#: ../includes/class-ure-lib.php:1962
 msgid "Manage categories"
 msgstr "Kategorileri yönetmek"
 
-#: ../includes/class-ure-lib.php:1946
+#: ../includes/class-ure-lib.php:1963
 msgid "Manage links"
 msgstr "Linkleri yönetmek"
 
-#: ../includes/class-ure-lib.php:1947
+#: ../includes/class-ure-lib.php:1964
 msgid "Upload files"
 msgstr "Dosya yüklemek"
 
-#: ../includes/class-ure-lib.php:1948
+#: ../includes/class-ure-lib.php:1965
 msgid "Import"
 msgstr "İçeri aktarmak"
 
-#: ../includes/class-ure-lib.php:1949
+#: ../includes/class-ure-lib.php:1966
 msgid "Unfiltered html"
 msgstr "Filtrelenmemiş HTML"
 
-#: ../includes/class-ure-lib.php:1950
+#: ../includes/class-ure-lib.php:1967
 msgid "Edit posts"
 msgstr "Yazıları düzenlemek"
 
-#: ../includes/class-ure-lib.php:1951
+#: ../includes/class-ure-lib.php:1968
 msgid "Edit others posts"
 msgstr "Başkalarının yazılarını düzenlemek"
 
-#: ../includes/class-ure-lib.php:1952
+#: ../includes/class-ure-lib.php:1969
 msgid "Edit published posts"
 msgstr "Yayınlanmış yazıları düzenlemek"
 
-#: ../includes/class-ure-lib.php:1953
+#: ../includes/class-ure-lib.php:1970
 msgid "Publish posts"
 msgstr "Yazıları yayınlamak"
 
-#: ../includes/class-ure-lib.php:1954
+#: ../includes/class-ure-lib.php:1971
 msgid "Edit pages"
 msgstr "Sayfaları düzenlemek"
 
-#: ../includes/class-ure-lib.php:1955
+#: ../includes/class-ure-lib.php:1972
 msgid "Read"
 msgstr "Okumak"
 
-#: ../includes/class-ure-lib.php:1956
+#: ../includes/class-ure-lib.php:1973
 msgid "Level 10"
 msgstr "Seviye 10"
 
-#: ../includes/class-ure-lib.php:1957
+#: ../includes/class-ure-lib.php:1974
 msgid "Level 9"
 msgstr "Seviye 9"
 
-#: ../includes/class-ure-lib.php:1958
+#: ../includes/class-ure-lib.php:1975
 msgid "Level 8"
 msgstr "Seviye 8"
 
-#: ../includes/class-ure-lib.php:1959
+#: ../includes/class-ure-lib.php:1976
 msgid "Level 7"
 msgstr "Seviye 7"
 
-#: ../includes/class-ure-lib.php:1960
+#: ../includes/class-ure-lib.php:1977
 msgid "Level 6"
 msgstr "Seviye 6"
 
-#: ../includes/class-ure-lib.php:1961
+#: ../includes/class-ure-lib.php:1978
 msgid "Level 5"
 msgstr "Seviye 5"
 
-#: ../includes/class-ure-lib.php:1962
+#: ../includes/class-ure-lib.php:1979
 msgid "Level 4"
 msgstr "Seviye 4"
 
-#: ../includes/class-ure-lib.php:1963
+#: ../includes/class-ure-lib.php:1980
 msgid "Level 3"
 msgstr "Seviye 3"
 
-#: ../includes/class-ure-lib.php:1964
+#: ../includes/class-ure-lib.php:1981
 msgid "Level 2"
 msgstr "Seviye 2"
 
-#: ../includes/class-ure-lib.php:1965
+#: ../includes/class-ure-lib.php:1982
 msgid "Level 1"
 msgstr "Seviye 1"
 
-#: ../includes/class-ure-lib.php:1966
+#: ../includes/class-ure-lib.php:1983
 msgid "Level 0"
 msgstr "Seviye 0"
 
-#: ../includes/class-ure-lib.php:1967
+#: ../includes/class-ure-lib.php:1984
 msgid "Edit others pages"
 msgstr "Başkalarının sayfalarını düzenlemek"
 
-#: ../includes/class-ure-lib.php:1968
+#: ../includes/class-ure-lib.php:1985
 msgid "Edit published pages"
 msgstr "Yayınlanmış sayfaları düzenlemek"
 
-#: ../includes/class-ure-lib.php:1969
+#: ../includes/class-ure-lib.php:1986
 msgid "Publish pages"
 msgstr "Sayfaları yayınlamak"
 
-#: ../includes/class-ure-lib.php:1970
+#: ../includes/class-ure-lib.php:1987
 msgid "Delete pages"
 msgstr "Sayfaları silmek"
 
-#: ../includes/class-ure-lib.php:1971
+#: ../includes/class-ure-lib.php:1988
 msgid "Delete others pages"
 msgstr "Başkalarının sayfalarını silmek"
 
-#: ../includes/class-ure-lib.php:1972
+#: ../includes/class-ure-lib.php:1989
 msgid "Delete published pages"
 msgstr "Yayınlanmış sayfaları silmek"
 
-#: ../includes/class-ure-lib.php:1973
+#: ../includes/class-ure-lib.php:1990
 msgid "Delete posts"
 msgstr "Yazıları silmek"
 
-#: ../includes/class-ure-lib.php:1974
+#: ../includes/class-ure-lib.php:1991
 msgid "Delete others posts"
 msgstr "Başkalarının yazılarını silmek"
 
-#: ../includes/class-ure-lib.php:1975
+#: ../includes/class-ure-lib.php:1992
 msgid "Delete published posts"
 msgstr "Yayınlanmış yazıları silmek"
 
-#: ../includes/class-ure-lib.php:1976
+#: ../includes/class-ure-lib.php:1993
 msgid "Delete private posts"
 msgstr "Özel yazıları silmek"
 
-#: ../includes/class-ure-lib.php:1977
+#: ../includes/class-ure-lib.php:1994
 msgid "Edit private posts"
 msgstr "Özel yazıları düzenlemek"
 
-#: ../includes/class-ure-lib.php:1978
+#: ../includes/class-ure-lib.php:1995
 msgid "Read private posts"
 msgstr "Özel yazıları okumak"
 
-#: ../includes/class-ure-lib.php:1979
+#: ../includes/class-ure-lib.php:1996
 msgid "Delete private pages"
 msgstr "Özel sayfaları silmek"
 
-#: ../includes/class-ure-lib.php:1980
+#: ../includes/class-ure-lib.php:1997
 msgid "Edit private pages"
 msgstr "Özel sayfaları düzenlemek"
 
-#: ../includes/class-ure-lib.php:1981
+#: ../includes/class-ure-lib.php:1998
 msgid "Read private pages"
 msgstr "Özel yazıları okumak"
 
-#: ../includes/class-ure-lib.php:1982
+#: ../includes/class-ure-lib.php:1999
 msgid "Delete users"
 msgstr "Kullanıcı silmek"
 
-#: ../includes/class-ure-lib.php:1983
+#: ../includes/class-ure-lib.php:2000
 msgid "Create users"
 msgstr "Kullanıcı oluşturmak"
 
-#: ../includes/class-ure-lib.php:1984
+#: ../includes/class-ure-lib.php:2001
 msgid "Unfiltered upload"
 msgstr "Filtrelenmemiş dosya yüklemek"
 
-#: ../includes/class-ure-lib.php:1985
+#: ../includes/class-ure-lib.php:2002
 msgid "Edit dashboard"
 msgstr "Paneli düzenlemek"
 
-#: ../includes/class-ure-lib.php:1986
+#: ../includes/class-ure-lib.php:2003
 msgid "Update plugins"
 msgstr "Eklentileri güncellemek"
 
-#: ../includes/class-ure-lib.php:1987
+#: ../includes/class-ure-lib.php:2004
 msgid "Delete plugins"
 msgstr "Eklenti silmek"
 
-#: ../includes/class-ure-lib.php:1988
+#: ../includes/class-ure-lib.php:2005
 msgid "Install plugins"
 msgstr "Eklenti yüklemek"
 
-#: ../includes/class-ure-lib.php:1989
+#: ../includes/class-ure-lib.php:2006
 msgid "Update themes"
 msgstr "Temaları güncellemek"
 
-#: ../includes/class-ure-lib.php:1990
+#: ../includes/class-ure-lib.php:2007
 msgid "Install themes"
 msgstr "Tema yüklemek"
 
-#: ../includes/class-ure-lib.php:1991
+#: ../includes/class-ure-lib.php:2008
 msgid "Update core"
 msgstr "Güncelle"
 
-#: ../includes/class-ure-lib.php:1992
+#: ../includes/class-ure-lib.php:2009
 msgid "List users"
 msgstr "Kullanıcıları listelemek"
 
-#: ../includes/class-ure-lib.php:1993
+#: ../includes/class-ure-lib.php:2010
 msgid "Remove users"
 msgstr "Kullanıcı silmek"
 
-#: ../includes/class-ure-lib.php:1994
+#: ../includes/class-ure-lib.php:2011
 msgid "Add users"
 msgstr "Kullanıcıları eklemek"
 
-#: ../includes/class-ure-lib.php:1995
+#: ../includes/class-ure-lib.php:2012
 msgid "Promote users"
 msgstr "Kullanıcı yükseltmek"
 
-#: ../includes/class-ure-lib.php:1996
+#: ../includes/class-ure-lib.php:2013
 msgid "Edit theme options"
 msgstr "Tema ayarlarını düzenlemek"
 
-#: ../includes/class-ure-lib.php:1997
+#: ../includes/class-ure-lib.php:2014
 msgid "Delete themes"
 msgstr "Temaları silmek"
 
-#: ../includes/class-ure-lib.php:1998
+#: ../includes/class-ure-lib.php:2015
 msgid "Export"
 msgstr "Dışa aktarmak"
 
-#: ../includes/class-ure-lib.php:2108
+#: ../includes/class-ure-lib.php:2125
 msgid "Error: Capability name must contain latin characters and digits only!"
 msgstr ""
 "Hata: Kabiliyet adı yalnızca latin karakterleri ve sayılardan oluşabilir."
 
-#: ../includes/class-ure-lib.php:2121
+#: ../includes/class-ure-lib.php:2138
 #, php-format
 msgid "Capability %s is added successfully"
 msgstr "%s kabiliyeti başarıyla eklendi"
 
-#: ../includes/class-ure-lib.php:2123
+#: ../includes/class-ure-lib.php:2140
 #, php-format
 msgid "Capability %s exists already"
 msgstr "%s kabiliyeti zaten mevcut"
 
-#: ../includes/class-ure-lib.php:2148
+#: ../includes/class-ure-lib.php:2165
 #, php-format
 msgid "Error! You do not have permission to delete this capability: %s!"
 msgstr "Hata! Bu kabiliyeti değiştirmek için yetkiniz yok: %s!"
 
-#: ../includes/class-ure-lib.php:2167
+#: ../includes/class-ure-lib.php:2184
 #, php-format
 msgid "Capability %s is removed successfully"
 msgstr "%s kabiliyeti başarıyla oluşturuldu"
 
-#: ../includes/class-ure-lib.php:2271
+#: ../includes/class-ure-lib.php:2288
 msgid "Version:"
 msgstr ""
 
-#: ../includes/class-ure-lib.php:2272
+#: ../includes/class-ure-lib.php:2289
 msgid "Author's website"
 msgstr "Hazırlayanın websitesi"
 
-#: ../includes/class-ure-lib.php:2273
+#: ../includes/class-ure-lib.php:2290
 msgid "Plugin webpage"
 msgstr "Eklentinin websitesi"
 
-#: ../includes/class-ure-lib.php:2274
+#: ../includes/class-ure-lib.php:2291
 #, fuzzy
 msgid "Plugin download"
 msgstr "Başkalarının sayfalarını silmek"
 
-#: ../includes/class-ure-lib.php:2276
+#: ../includes/class-ure-lib.php:2293
 msgid "FAQ"
 msgstr "SSS"
 
-#: ../includes/class-ure-lib.php:2324
+#: ../includes/class-ure-lib.php:2341
 msgid "None"
 msgstr "Hiçbiri"
 
-#: ../includes/class-ure-lib.php:2351
+#: ../includes/class-ure-lib.php:2368
 msgid "Delete All Unused Roles"
 msgstr ""
 
-#: ../includes/class-ure-lib.php:2375
+#: ../includes/class-ure-lib.php:2392
 msgid "&mdash; No role for this site &mdash;"
 msgstr ""
 
@@ -815,14 +816,32 @@ msgid ""
 "deprecated capabilities."
 msgstr ""
 
-#: ../includes/class-ure-screen-help.php:27
-msgid "Allow create, edit and delete users to not super-admininstrators"
+#: ../includes/class-ure-screen-help.php:41
+#, fuzzy
+msgid "select roles below"
+msgstr "Seçimi Kaldır"
+
+#: ../includes/class-ure-screen-help.php:56
+msgid "Other default roles for new registered user"
+msgstr ""
+
+#: ../includes/class-ure-screen-help.php:57
+msgid ""
+"select roles below to assign them to the new user automatically as an "
+"addition to the primary role. Note for multisite environment: take into "
+"account that other default roles should exist at the site, in order to be "
+"assigned to the new registered users."
+msgstr ""
+
+#: ../includes/class-ure-screen-help.php:75
+msgid "Allow non super-admininstrators to create, edit and delete users"
 msgstr ""
 
-#: ../includes/class-ure-screen-help.php:28
+#: ../includes/class-ure-screen-help.php:76
 msgid ""
 "Super administrator only may create, edit and delete users under WordPress "
-"multi-site. Turn this option on in order to remove this limitation."
+"multi-site by default. Turn this option on in order to remove this "
+"limitation."
 msgstr ""
 
 #~ msgid "About this Plugin:"
index 4fab05f..ad5895d 100644 (file)
Binary files a/wp-content/plugins/user-role-editor/lang/ure.mo and b/wp-content/plugins/user-role-editor/lang/ure.mo differ
index 4a433c4..40f03d5 100644 (file)
@@ -2,7 +2,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: User Role Editor 2.0\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-09-08 21:33+0700\n"
+"POT-Creation-Date: 2014-10-01 12:45+0700\n"
 "PO-Revision-Date: \n"
 "Last-Translator: Vladimir Garagulya <vladimir@shinephp.com>\n"
 "Language-Team: ShinePHP.com <vladimir@shinephp.com>\n"
@@ -21,65 +21,70 @@ msgid "User Role Editor - Options"
 msgstr ""
 
 #: ../includes/settings-template.php:21
+#: ../includes/class-user-role-editor.php:547
 msgid "General"
 msgstr ""
 
-#: ../includes/settings-template.php:22
+#: ../includes/settings-template.php:26
+#: ../includes/class-user-role-editor.php:553
 msgid "Additional Modules"
 msgstr ""
 
-#: ../includes/settings-template.php:23
+#: ../includes/settings-template.php:30
+#: ../includes/class-user-role-editor.php:559
 msgid "Default Roles"
 msgstr ""
 
-#: ../includes/settings-template.php:27
+#: ../includes/settings-template.php:34
+#: ../includes/class-user-role-editor.php:564
 msgid "Multisite"
 msgstr ""
 
-#: ../includes/settings-template.php:31
+#: ../includes/settings-template.php:39
 msgid "About"
 msgstr ""
 
-#: ../includes/settings-template.php:42
+#: ../includes/settings-template.php:53
 #: ../includes/class-ure-screen-help.php:15
 msgid "Show Administrator role at User Role Editor"
 msgstr ""
 
-#: ../includes/settings-template.php:50
+#: ../includes/settings-template.php:61
 #: ../includes/class-ure-screen-help.php:18
 msgid "Show capabilities in the human readable form"
 msgstr ""
 
-#: ../includes/settings-template.php:58 ../includes/ure-role-edit.php:40
+#: ../includes/settings-template.php:69 ../includes/ure-role-edit.php:40
 #: ../includes/ure-user-edit.php:63 ../includes/class-ure-screen-help.php:21
 msgid "Show deprecated capabilities"
 msgstr ""
 
-#: ../includes/settings-template.php:69 ../includes/settings-template.php:101
-#: ../includes/settings-template.php:131 ../includes/settings-template.php:160
+#: ../includes/settings-template.php:81 ../includes/settings-template.php:117
+#: ../includes/settings-template.php:149 ../includes/settings-template.php:181
 msgid "Save"
 msgstr ""
 
-#: ../includes/settings-template.php:86
+#: ../includes/settings-template.php:102
+#: ../includes/class-ure-screen-help.php:40
 msgid "Count users without role"
 msgstr ""
 
-#: ../includes/settings-template.php:111
+#: ../includes/settings-template.php:129
 msgid "Primary default role: "
 msgstr ""
 
-#: ../includes/settings-template.php:118
+#: ../includes/settings-template.php:136
 msgid "Other default roles for new registered user: "
 msgstr ""
 
-#: ../includes/settings-template.php:124
+#: ../includes/settings-template.php:142
 msgid ""
 "Note for multisite environment: take into account that other default roles "
 "should exist at the site, in order to be assigned to the new registered "
 "users."
 msgstr ""
 
-#: ../includes/settings-template.php:147
+#: ../includes/settings-template.php:168
 msgid "Allow non super administrators to create, edit, and delete users"
 msgstr ""
 
@@ -100,170 +105,166 @@ msgstr ""
 msgid "You do not have permission to edit this user."
 msgstr ""
 
-#: ../includes/class-user-role-editor.php:424
+#: ../includes/class-user-role-editor.php:422
 msgid "Capabilities"
 msgstr ""
 
-#: ../includes/class-user-role-editor.php:517
+#: ../includes/class-user-role-editor.php:514
 msgid "Settings"
 msgstr ""
 
-#: ../includes/class-user-role-editor.php:530
-#: ../includes/class-ure-lib.php:2275
+#: ../includes/class-user-role-editor.php:525
+#: ../includes/class-ure-lib.php:2292
 msgid "Changelog"
 msgstr ""
 
-#: ../includes/class-user-role-editor.php:552
-msgid "Overview"
-msgstr ""
-
-#: ../includes/class-user-role-editor.php:561
-#: ../includes/class-user-role-editor.php:589
-#: ../includes/class-user-role-editor.php:930
-#: ../includes/class-ure-lib.php:232
+#: ../includes/class-user-role-editor.php:573
+#: ../includes/class-user-role-editor.php:601
+#: ../includes/class-user-role-editor.php:946
+#: ../includes/class-ure-lib.php:248
 msgid "User Role Editor"
 msgstr ""
 
-#: ../includes/class-user-role-editor.php:646
-#: ../includes/class-user-role-editor.php:664
-#: ../includes/class-user-role-editor.php:708
+#: ../includes/class-user-role-editor.php:658
+#: ../includes/class-user-role-editor.php:676
+#: ../includes/class-user-role-editor.php:720
 msgid "User Role Editor options are updated"
 msgstr ""
 
-#: ../includes/class-user-role-editor.php:692
+#: ../includes/class-user-role-editor.php:704
 msgid "Default Roles are updated"
 msgstr ""
 
-#: ../includes/class-user-role-editor.php:716
+#: ../includes/class-user-role-editor.php:728
 msgid ""
 "You do not have sufficient permissions to manage options for User Role "
 "Editor."
 msgstr ""
 
-#: ../includes/class-user-role-editor.php:791
+#: ../includes/class-user-role-editor.php:807
 msgid "Insufficient permissions to work with User Role Editor"
 msgstr ""
 
-#: ../includes/class-user-role-editor.php:872
+#: ../includes/class-user-role-editor.php:888
 msgid "Select All"
 msgstr ""
 
-#: ../includes/class-user-role-editor.php:873
+#: ../includes/class-user-role-editor.php:889
 msgid "Unselect All"
 msgstr ""
 
-#: ../includes/class-user-role-editor.php:874
+#: ../includes/class-user-role-editor.php:890
 msgid "Reverse"
 msgstr ""
 
-#: ../includes/class-user-role-editor.php:875
+#: ../includes/class-user-role-editor.php:891
 msgid "Update"
 msgstr ""
 
-#: ../includes/class-user-role-editor.php:876
+#: ../includes/class-user-role-editor.php:892
 msgid "Please confirm permissions update"
 msgstr ""
 
-#: ../includes/class-user-role-editor.php:877
+#: ../includes/class-user-role-editor.php:893
 msgid "Add New Role"
 msgstr ""
 
-#: ../includes/class-user-role-editor.php:878
-#: ../includes/class-user-role-editor.php:883
+#: ../includes/class-user-role-editor.php:894
+#: ../includes/class-user-role-editor.php:899
 msgid "Rename Role"
 msgstr ""
 
-#: ../includes/class-user-role-editor.php:879
+#: ../includes/class-user-role-editor.php:895
 msgid " Role name (ID) can not be empty!"
 msgstr ""
 
-#: ../includes/class-user-role-editor.php:880
+#: ../includes/class-user-role-editor.php:896
 msgid ""
 " Role name (ID) must contain latin characters, digits, hyphens or underscore "
 "only!"
 msgstr ""
 
-#: ../includes/class-user-role-editor.php:881
+#: ../includes/class-user-role-editor.php:897
 msgid ""
 " WordPress does not support numeric Role name (ID). Add latin characters to "
 "it."
 msgstr ""
 
-#: ../includes/class-user-role-editor.php:882
+#: ../includes/class-user-role-editor.php:898
 msgid "Add Role"
 msgstr ""
 
-#: ../includes/class-user-role-editor.php:884
+#: ../includes/class-user-role-editor.php:900
 msgid "Delete Role"
 msgstr ""
 
-#: ../includes/class-user-role-editor.php:885
+#: ../includes/class-user-role-editor.php:901
 msgid "Cancel"
 msgstr ""
 
-#: ../includes/class-user-role-editor.php:886
+#: ../includes/class-user-role-editor.php:902
 msgid "Add Capability"
 msgstr ""
 
-#: ../includes/class-user-role-editor.php:887
-#: ../includes/class-user-role-editor.php:896
+#: ../includes/class-user-role-editor.php:903
+#: ../includes/class-user-role-editor.php:912
 msgid "Delete Capability"
 msgstr ""
 
-#: ../includes/class-user-role-editor.php:888
+#: ../includes/class-user-role-editor.php:904
 msgid "Reset"
 msgstr ""
 
-#: ../includes/class-user-role-editor.php:889
+#: ../includes/class-user-role-editor.php:905
 msgid "DANGER! Resetting will restore default settings from WordPress Core."
 msgstr ""
 
-#: ../includes/class-user-role-editor.php:890
+#: ../includes/class-user-role-editor.php:906
 msgid ""
 "If any plugins have changed capabilities in any way upon installation (such "
 "as S2Member, WooCommerce, and many more), those capabilities will be DELETED!"
 msgstr ""
 
-#: ../includes/class-user-role-editor.php:891
+#: ../includes/class-user-role-editor.php:907
 msgid ""
 "For more information on how to undo changes and restore plugin capabilities "
 "go to"
 msgstr ""
 
-#: ../includes/class-user-role-editor.php:893
+#: ../includes/class-user-role-editor.php:909
 msgid "Continue?"
 msgstr ""
 
-#: ../includes/class-user-role-editor.php:894
+#: ../includes/class-user-role-editor.php:910
 msgid "Default Role"
 msgstr ""
 
-#: ../includes/class-user-role-editor.php:895
+#: ../includes/class-user-role-editor.php:911
 msgid "Set New Default Role"
 msgstr ""
 
-#: ../includes/class-user-role-editor.php:897
+#: ../includes/class-user-role-editor.php:913
 msgid ""
 "Warning! Be careful - removing critical capability could crash some plugin "
 "or other custom code"
 msgstr ""
 
-#: ../includes/class-user-role-editor.php:898
+#: ../includes/class-user-role-editor.php:914
 msgid " Capability name (ID) can not be empty!"
 msgstr ""
 
-#: ../includes/class-user-role-editor.php:899
+#: ../includes/class-user-role-editor.php:915
 msgid ""
 " Capability name (ID) must contain latin characters, digits, hyphens or "
 "underscore only!"
 msgstr ""
 
-#: ../includes/class-user-role-editor.php:933
-#: ../includes/class-user-role-editor.php:962
+#: ../includes/class-user-role-editor.php:949
+#: ../includes/class-user-role-editor.php:978
 msgid "Other Roles"
 msgstr ""
 
-#: ../includes/class-user-role-editor.php:944
+#: ../includes/class-user-role-editor.php:960
 msgid "Edit"
 msgstr ""
 
@@ -295,461 +296,461 @@ msgstr ""
 msgid "Custom capabilities:"
 msgstr ""
 
-#: ../includes/class-ure-lib.php:140
+#: ../includes/class-ure-lib.php:156
 msgid "Error: wrong request"
 msgstr ""
 
-#: ../includes/class-ure-lib.php:173 ../includes/class-ure-lib.php:184
+#: ../includes/class-ure-lib.php:189 ../includes/class-ure-lib.php:200
 msgid "Role name (ID): "
 msgstr ""
 
-#: ../includes/class-ure-lib.php:175 ../includes/class-ure-lib.php:186
+#: ../includes/class-ure-lib.php:191 ../includes/class-ure-lib.php:202
 msgid "Display Role Name: "
 msgstr ""
 
-#: ../includes/class-ure-lib.php:177
+#: ../includes/class-ure-lib.php:193
 msgid "Make copy of: "
 msgstr ""
 
-#: ../includes/class-ure-lib.php:193
+#: ../includes/class-ure-lib.php:209
 msgid "Select Role:"
 msgstr ""
 
-#: ../includes/class-ure-lib.php:208
+#: ../includes/class-ure-lib.php:224
 msgid "Delete:"
 msgstr ""
 
-#: ../includes/class-ure-lib.php:215
+#: ../includes/class-ure-lib.php:231
 msgid "Capability name (ID): "
 msgstr ""
 
-#: ../includes/class-ure-lib.php:329
+#: ../includes/class-ure-lib.php:345
 msgid "Error: "
 msgstr ""
 
-#: ../includes/class-ure-lib.php:329
+#: ../includes/class-ure-lib.php:345
 msgid "Role"
 msgstr ""
 
-#: ../includes/class-ure-lib.php:330
+#: ../includes/class-ure-lib.php:346
 msgid "does not exist"
 msgstr ""
 
-#: ../includes/class-ure-lib.php:373
+#: ../includes/class-ure-lib.php:389
 msgid "Role is updated successfully"
 msgstr ""
 
-#: ../includes/class-ure-lib.php:375
+#: ../includes/class-ure-lib.php:391
 msgid "Roles are updated for all network"
 msgstr ""
 
-#: ../includes/class-ure-lib.php:381
+#: ../includes/class-ure-lib.php:397
 msgid "Error occured during role(s) update"
 msgstr ""
 
-#: ../includes/class-ure-lib.php:388
+#: ../includes/class-ure-lib.php:404
 msgid "User capabilities are updated successfully"
 msgstr ""
 
-#: ../includes/class-ure-lib.php:393
+#: ../includes/class-ure-lib.php:409
 msgid "Error occured during user update"
 msgstr ""
 
-#: ../includes/class-ure-lib.php:451
+#: ../includes/class-ure-lib.php:467
 msgid "User Roles are restored to WordPress default values. "
 msgstr ""
 
-#: ../includes/class-ure-lib.php:1317
+#: ../includes/class-ure-lib.php:1334
 msgid "Help"
 msgstr ""
 
-#: ../includes/class-ure-lib.php:1675
+#: ../includes/class-ure-lib.php:1692
 msgid "Error is occur. Please check the log file."
 msgstr ""
 
-#: ../includes/class-ure-lib.php:1718 ../includes/class-ure-lib.php:1785
+#: ../includes/class-ure-lib.php:1735 ../includes/class-ure-lib.php:1802
 msgid ""
 "Error: Role ID must contain latin characters, digits, hyphens or underscore "
 "only!"
 msgstr ""
 
-#: ../includes/class-ure-lib.php:1722 ../includes/class-ure-lib.php:1789
+#: ../includes/class-ure-lib.php:1739 ../includes/class-ure-lib.php:1806
 msgid ""
 "Error: WordPress does not support numeric Role name (ID). Add latin "
 "characters to it."
 msgstr ""
 
-#: ../includes/class-ure-lib.php:1737
+#: ../includes/class-ure-lib.php:1754
 #, php-format
 msgid "Role %s exists already"
 msgstr ""
 
-#: ../includes/class-ure-lib.php:1752
+#: ../includes/class-ure-lib.php:1769
 msgid "Error is encountered during new role create operation"
 msgstr ""
 
-#: ../includes/class-ure-lib.php:1754
+#: ../includes/class-ure-lib.php:1771
 #, php-format
 msgid "Role %s is created successfully"
 msgstr ""
 
-#: ../includes/class-ure-lib.php:1778
+#: ../includes/class-ure-lib.php:1795
 msgid "Error: Role ID is empty!"
 msgstr ""
 
-#: ../includes/class-ure-lib.php:1796
+#: ../includes/class-ure-lib.php:1813
 msgid "Error: Empty role display name is not allowed."
 msgstr ""
 
-#: ../includes/class-ure-lib.php:1803
+#: ../includes/class-ure-lib.php:1820
 #, php-format
 msgid "Role %s does not exists"
 msgstr ""
 
-#: ../includes/class-ure-lib.php:1811
+#: ../includes/class-ure-lib.php:1828
 #, php-format
 msgid "Role %s is renamed to %s successfully"
 msgstr ""
 
-#: ../includes/class-ure-lib.php:1878
+#: ../includes/class-ure-lib.php:1895
 msgid "Error encountered during role delete operation"
 msgstr ""
 
-#: ../includes/class-ure-lib.php:1880
+#: ../includes/class-ure-lib.php:1897
 msgid "Unused roles are deleted successfully"
 msgstr ""
 
-#: ../includes/class-ure-lib.php:1882
+#: ../includes/class-ure-lib.php:1899
 #, php-format
 msgid "Role %s is deleted successfully"
 msgstr ""
 
-#: ../includes/class-ure-lib.php:1907
+#: ../includes/class-ure-lib.php:1924
 msgid "Error encountered during default role change operation"
 msgstr ""
 
-#: ../includes/class-ure-lib.php:1913
+#: ../includes/class-ure-lib.php:1930
 #, php-format
 msgid "Default role for new users is set to %s successfully"
 msgstr ""
 
-#: ../includes/class-ure-lib.php:1932
+#: ../includes/class-ure-lib.php:1949
 msgid "Editor"
 msgstr ""
 
-#: ../includes/class-ure-lib.php:1933
+#: ../includes/class-ure-lib.php:1950
 msgid "Author"
 msgstr ""
 
-#: ../includes/class-ure-lib.php:1934
+#: ../includes/class-ure-lib.php:1951
 msgid "Contributor"
 msgstr ""
 
-#: ../includes/class-ure-lib.php:1935
+#: ../includes/class-ure-lib.php:1952
 msgid "Subscriber"
 msgstr ""
 
-#: ../includes/class-ure-lib.php:1937
+#: ../includes/class-ure-lib.php:1954
 msgid "Switch themes"
 msgstr ""
 
-#: ../includes/class-ure-lib.php:1938
+#: ../includes/class-ure-lib.php:1955
 msgid "Edit themes"
 msgstr ""
 
-#: ../includes/class-ure-lib.php:1939
+#: ../includes/class-ure-lib.php:1956
 msgid "Activate plugins"
 msgstr ""
 
-#: ../includes/class-ure-lib.php:1940
+#: ../includes/class-ure-lib.php:1957
 msgid "Edit plugins"
 msgstr ""
 
-#: ../includes/class-ure-lib.php:1941
+#: ../includes/class-ure-lib.php:1958
 msgid "Edit users"
 msgstr ""
 
-#: ../includes/class-ure-lib.php:1942
+#: ../includes/class-ure-lib.php:1959
 msgid "Edit files"
 msgstr ""
 
-#: ../includes/class-ure-lib.php:1943
+#: ../includes/class-ure-lib.php:1960
 msgid "Manage options"
 msgstr ""
 
-#: ../includes/class-ure-lib.php:1944
+#: ../includes/class-ure-lib.php:1961
 msgid "Moderate comments"
 msgstr ""
 
-#: ../includes/class-ure-lib.php:1945
+#: ../includes/class-ure-lib.php:1962
 msgid "Manage categories"
 msgstr ""
 
-#: ../includes/class-ure-lib.php:1946
+#: ../includes/class-ure-lib.php:1963
 msgid "Manage links"
 msgstr ""
 
-#: ../includes/class-ure-lib.php:1947
+#: ../includes/class-ure-lib.php:1964
 msgid "Upload files"
 msgstr ""
 
-#: ../includes/class-ure-lib.php:1948
+#: ../includes/class-ure-lib.php:1965
 msgid "Import"
 msgstr ""
 
-#: ../includes/class-ure-lib.php:1949
+#: ../includes/class-ure-lib.php:1966
 msgid "Unfiltered html"
 msgstr ""
 
-#: ../includes/class-ure-lib.php:1950
+#: ../includes/class-ure-lib.php:1967
 msgid "Edit posts"
 msgstr ""
 
-#: ../includes/class-ure-lib.php:1951
+#: ../includes/class-ure-lib.php:1968
 msgid "Edit others posts"
 msgstr ""
 
-#: ../includes/class-ure-lib.php:1952
+#: ../includes/class-ure-lib.php:1969
 msgid "Edit published posts"
 msgstr ""
 
-#: ../includes/class-ure-lib.php:1953
+#: ../includes/class-ure-lib.php:1970
 msgid "Publish posts"
 msgstr ""
 
-#: ../includes/class-ure-lib.php:1954
+#: ../includes/class-ure-lib.php:1971
 msgid "Edit pages"
 msgstr ""
 
-#: ../includes/class-ure-lib.php:1955
+#: ../includes/class-ure-lib.php:1972
 msgid "Read"
 msgstr ""
 
-#: ../includes/class-ure-lib.php:1956
+#: ../includes/class-ure-lib.php:1973
 msgid "Level 10"
 msgstr ""
 
-#: ../includes/class-ure-lib.php:1957
+#: ../includes/class-ure-lib.php:1974
 msgid "Level 9"
 msgstr ""
 
-#: ../includes/class-ure-lib.php:1958
+#: ../includes/class-ure-lib.php:1975
 msgid "Level 8"
 msgstr ""
 
-#: ../includes/class-ure-lib.php:1959
+#: ../includes/class-ure-lib.php:1976
 msgid "Level 7"
 msgstr ""
 
-#: ../includes/class-ure-lib.php:1960
+#: ../includes/class-ure-lib.php:1977
 msgid "Level 6"
 msgstr ""
 
-#: ../includes/class-ure-lib.php:1961
+#: ../includes/class-ure-lib.php:1978
 msgid "Level 5"
 msgstr ""
 
-#: ../includes/class-ure-lib.php:1962
+#: ../includes/class-ure-lib.php:1979
 msgid "Level 4"
 msgstr ""
 
-#: ../includes/class-ure-lib.php:1963
+#: ../includes/class-ure-lib.php:1980
 msgid "Level 3"
 msgstr ""
 
-#: ../includes/class-ure-lib.php:1964
+#: ../includes/class-ure-lib.php:1981
 msgid "Level 2"
 msgstr ""
 
-#: ../includes/class-ure-lib.php:1965
+#: ../includes/class-ure-lib.php:1982
 msgid "Level 1"
 msgstr ""
 
-#: ../includes/class-ure-lib.php:1966
+#: ../includes/class-ure-lib.php:1983
 msgid "Level 0"
 msgstr ""
 
-#: ../includes/class-ure-lib.php:1967
+#: ../includes/class-ure-lib.php:1984
 msgid "Edit others pages"
 msgstr ""
 
-#: ../includes/class-ure-lib.php:1968
+#: ../includes/class-ure-lib.php:1985
 msgid "Edit published pages"
 msgstr ""
 
-#: ../includes/class-ure-lib.php:1969
+#: ../includes/class-ure-lib.php:1986
 msgid "Publish pages"
 msgstr ""
 
-#: ../includes/class-ure-lib.php:1970
+#: ../includes/class-ure-lib.php:1987
 msgid "Delete pages"
 msgstr ""
 
-#: ../includes/class-ure-lib.php:1971
+#: ../includes/class-ure-lib.php:1988
 msgid "Delete others pages"
 msgstr ""
 
-#: ../includes/class-ure-lib.php:1972
+#: ../includes/class-ure-lib.php:1989
 msgid "Delete published pages"
 msgstr ""
 
-#: ../includes/class-ure-lib.php:1973
+#: ../includes/class-ure-lib.php:1990
 msgid "Delete posts"
 msgstr ""
 
-#: ../includes/class-ure-lib.php:1974
+#: ../includes/class-ure-lib.php:1991
 msgid "Delete others posts"
 msgstr ""
 
-#: ../includes/class-ure-lib.php:1975
+#: ../includes/class-ure-lib.php:1992
 msgid "Delete published posts"
 msgstr ""
 
-#: ../includes/class-ure-lib.php:1976
+#: ../includes/class-ure-lib.php:1993
 msgid "Delete private posts"
 msgstr ""
 
-#: ../includes/class-ure-lib.php:1977
+#: ../includes/class-ure-lib.php:1994
 msgid "Edit private posts"
 msgstr ""
 
-#: ../includes/class-ure-lib.php:1978
+#: ../includes/class-ure-lib.php:1995
 msgid "Read private posts"
 msgstr ""
 
-#: ../includes/class-ure-lib.php:1979
+#: ../includes/class-ure-lib.php:1996
 msgid "Delete private pages"
 msgstr ""
 
-#: ../includes/class-ure-lib.php:1980
+#: ../includes/class-ure-lib.php:1997
 msgid "Edit private pages"
 msgstr ""
 
-#: ../includes/class-ure-lib.php:1981
+#: ../includes/class-ure-lib.php:1998
 msgid "Read private pages"
 msgstr ""
 
-#: ../includes/class-ure-lib.php:1982
+#: ../includes/class-ure-lib.php:1999
 msgid "Delete users"
 msgstr ""
 
-#: ../includes/class-ure-lib.php:1983
+#: ../includes/class-ure-lib.php:2000
 msgid "Create users"
 msgstr ""
 
-#: ../includes/class-ure-lib.php:1984
+#: ../includes/class-ure-lib.php:2001
 msgid "Unfiltered upload"
 msgstr ""
 
-#: ../includes/class-ure-lib.php:1985
+#: ../includes/class-ure-lib.php:2002
 msgid "Edit dashboard"
 msgstr ""
 
-#: ../includes/class-ure-lib.php:1986
+#: ../includes/class-ure-lib.php:2003
 msgid "Update plugins"
 msgstr ""
 
-#: ../includes/class-ure-lib.php:1987
+#: ../includes/class-ure-lib.php:2004
 msgid "Delete plugins"
 msgstr ""
 
-#: ../includes/class-ure-lib.php:1988
+#: ../includes/class-ure-lib.php:2005
 msgid "Install plugins"
 msgstr ""
 
-#: ../includes/class-ure-lib.php:1989
+#: ../includes/class-ure-lib.php:2006
 msgid "Update themes"
 msgstr ""
 
-#: ../includes/class-ure-lib.php:1990
+#: ../includes/class-ure-lib.php:2007
 msgid "Install themes"
 msgstr ""
 
-#: ../includes/class-ure-lib.php:1991
+#: ../includes/class-ure-lib.php:2008
 msgid "Update core"
 msgstr ""
 
-#: ../includes/class-ure-lib.php:1992
+#: ../includes/class-ure-lib.php:2009
 msgid "List users"
 msgstr ""
 
-#: ../includes/class-ure-lib.php:1993
+#: ../includes/class-ure-lib.php:2010
 msgid "Remove users"
 msgstr ""
 
-#: ../includes/class-ure-lib.php:1994
+#: ../includes/class-ure-lib.php:2011
 msgid "Add users"
 msgstr ""
 
-#: ../includes/class-ure-lib.php:1995
+#: ../includes/class-ure-lib.php:2012
 msgid "Promote users"
 msgstr ""
 
-#: ../includes/class-ure-lib.php:1996
+#: ../includes/class-ure-lib.php:2013
 msgid "Edit theme options"
 msgstr ""
 
-#: ../includes/class-ure-lib.php:1997
+#: ../includes/class-ure-lib.php:2014
 msgid "Delete themes"
 msgstr ""
 
-#: ../includes/class-ure-lib.php:1998
+#: ../includes/class-ure-lib.php:2015
 msgid "Export"
 msgstr ""
 
-#: ../includes/class-ure-lib.php:2108
+#: ../includes/class-ure-lib.php:2125
 msgid "Error: Capability name must contain latin characters and digits only!"
 msgstr ""
 
-#: ../includes/class-ure-lib.php:2121
+#: ../includes/class-ure-lib.php:2138
 #, php-format
 msgid "Capability %s is added successfully"
 msgstr ""
 
-#: ../includes/class-ure-lib.php:2123
+#: ../includes/class-ure-lib.php:2140
 #, php-format
 msgid "Capability %s exists already"
 msgstr ""
 
-#: ../includes/class-ure-lib.php:2148
+#: ../includes/class-ure-lib.php:2165
 #, php-format
 msgid "Error! You do not have permission to delete this capability: %s!"
 msgstr ""
 
-#: ../includes/class-ure-lib.php:2167
+#: ../includes/class-ure-lib.php:2184
 #, php-format
 msgid "Capability %s is removed successfully"
 msgstr ""
 
-#: ../includes/class-ure-lib.php:2271
+#: ../includes/class-ure-lib.php:2288
 msgid "Version:"
 msgstr ""
 
-#: ../includes/class-ure-lib.php:2272
+#: ../includes/class-ure-lib.php:2289
 msgid "Author's website"
 msgstr ""
 
-#: ../includes/class-ure-lib.php:2273
+#: ../includes/class-ure-lib.php:2290
 msgid "Plugin webpage"
 msgstr ""
 
-#: ../includes/class-ure-lib.php:2274
+#: ../includes/class-ure-lib.php:2291
 msgid "Plugin download"
 msgstr ""
 
-#: ../includes/class-ure-lib.php:2276
+#: ../includes/class-ure-lib.php:2293
 msgid "FAQ"
 msgstr ""
 
-#: ../includes/class-ure-lib.php:2324
+#: ../includes/class-ure-lib.php:2341
 msgid "None"
 msgstr ""
 
-#: ../includes/class-ure-lib.php:2351
+#: ../includes/class-ure-lib.php:2368
 msgid "Delete All Unused Roles"
 msgstr ""
 
-#: ../includes/class-ure-lib.php:2375
+#: ../includes/class-ure-lib.php:2392
 msgid "&mdash; No role for this site &mdash;"
 msgstr ""
 
@@ -795,12 +796,29 @@ msgid ""
 "deprecated capabilities."
 msgstr ""
 
-#: ../includes/class-ure-screen-help.php:27
-msgid "Allow create, edit and delete users to not super-admininstrators"
+#: ../includes/class-ure-screen-help.php:41
+msgid "select roles below"
+msgstr ""
+
+#: ../includes/class-ure-screen-help.php:56
+msgid "Other default roles for new registered user"
+msgstr ""
+
+#: ../includes/class-ure-screen-help.php:57
+msgid ""
+"select roles below to assign them to the new user automatically as an "
+"addition to the primary role. Note for multisite environment: take into "
+"account that other default roles should exist at the site, in order to be "
+"assigned to the new registered users."
+msgstr ""
+
+#: ../includes/class-ure-screen-help.php:75
+msgid "Allow non super-admininstrators to create, edit and delete users"
 msgstr ""
 
-#: ../includes/class-ure-screen-help.php:28
+#: ../includes/class-ure-screen-help.php:76
 msgid ""
 "Super administrator only may create, edit and delete users under WordPress "
-"multi-site. Turn this option on in order to remove this limitation."
+"multi-site by default. Turn this option on in order to remove this "
+"limitation."
 msgstr ""
index 66ee2b6..5ae3f36 100644 (file)
@@ -32,6 +32,7 @@ Pro version includes extra modules:
 <li>Block selected widgets under "Appearance" menu for role.</li>
 <li>"Export/Import" module. You can export user roles to the local file and import them then to any WordPress site or other sites of the multi-site WordPress network.</li> 
 <li>Roles and Users permissions management via Network Admin  for multisite configuration. One click Synchronization to the whole network.</li>
+<li>"Other roles access" module allows to define which other roles user with current role may see at WordPress: dropdown menus, e.g assign role to user editing user profile, etc.</li>
 <li>Per posts/pages users access management to post/page editing functionality.</li>
 <li>Per plugin users access management for plugins activate/deactivate operations.</li>
 <li>Per form users access management for Gravity Forms plugin.</li>
@@ -67,23 +68,41 @@ To read full FAQ section visit [this page](http://www.shinephp.com/user-role-edi
 To read more about 'User Role Editor' visit [this page](http://www.shinephp.com/user-role-editor-wordpress-plugin/) at [shinephp.com](shinephp.com).
 
 = Translations =
-* Catalan: [Efraim Bayarri](http://replicantsfactory.com/);
-* Hebrew: [atar4u](http://atar4u.com)
-* Korean: [Taek Yoon](http://www.ajinsys.com)
-* Persian: Morteza
-* Russian: [Vladimir Garagulya](http://role-editor.com)
-* Spanish: [Dario Ferrer](http://darioferrer.com/);
-* Turkish: [Muhammed YILDIRIM](http://ben.muhammed.im);
+* Catalan: [Efraim Bayarri](http://replicantsfactory.com/) - needs update;
+* Dutch: Arjan Bosch;
+* Hebrew: [atar4u](http://atar4u.com) - needs update;
+* Hungarian: Németh Balázs;
+* Persian: Morteza - needs update;
+* Russian: [Vladimir Garagulya](https://www.role-editor.com)
+* Spanish: [Dario Ferrer](http://darioferrer.com/) - needs update;
+* Turkish: [Muhammed YILDIRIM](http://ben.muhammed.im) - needs update.
 
-Information for translators: All translations (except Russian) are outdated and need update for new added text.
 
 Dear plugin User!
-If you wish to help me with this plugin translation I very appreciate it. Please send your language .po and .mo files to vladimir[at-sign]shinephp.com email. Do not forget include you site link in order I can show it with greetings for the translation help at shinephp.com, plugin settings page and in this readme.txt file.
-If you have better translation for some phrases, send it to me and it will be taken into consideration. You are welcome!
-Share with me new ideas about plugin further development and link to your site will appear here.
+If you wish to help me with this plugin translation I very appreciate it. Please send your language .po and .mo files to vladimir[at-sign]shinephp.com email. Do not forget include you site link in order to show it with greetings for the translation help in this readme.txt file.
+Some translations may be outdated. If you have better translation for some phrases, send it to me and it will be taken into consideration. You are welcome!
 
 
 == Changelog ==
+= 4.17.1 =
+* 01.10.2014
+* Bug fix for the PHP Fatal error: Call to undefined function is_plugin_active_for_network(). It may take place under multisite only, 
+in case no one of the other active plugins load file with this function already before User Role Editor v. 4.17 tries to call it.
+
+= 4.17 =
+* 01.10.2014
+* Multisite (update for cases when URE was not network activated): It is possible to use own settings for single site activated instances of User Role Editor. 
+  Earlier User Role Editor used the settings values from the main blog only located under "Network Admin - Settings".
+  Some critical options were hidden from the "Multisite" tab for single site administrators and visible to the superadmin only. 
+  Single site admin should not have access to the options which purpose is to restrict him.
+  Important! In case you decide to allow single site administrator activate/deactivate User Role Editor himself, setup this PHP constant at the wp-config.php file:
+  define('URE_ENABLE_SIMPLE_ADMIN_FOR_MULTISITE', 1);
+  Otherwise single site admin will not see User Role Editor in the plugins list after its activation. User Role Editor hides itself under multisite from all users except superadmin by default.
+* Help screen for the Settings page was updated.
+* Hungarian translation was added. Thanks to Németh Balázs.
+* Dutch translation was added. Thanks to Arjan Bosch.
+
+  
 = 4.16 =
 * 11.09.2014
 * "create_sites" user capability was added to the list of built-in WordPress user capabilities for WordPress multisite. It does not exist by default. But it is used to control "Add New" button at the "Sites" page under WordPress multisite network admin.
@@ -156,43 +175,6 @@ what user capability restrict access to what admin menu item.
 * Pro version: Bug was fixed: Plugins activation assess restriction section was not shown for selected user under multi-site environment.
 
 
-= 4.8 =
-* 10.12.2013
-* Role ID validation rule was added to prohibit numeric role ID - WordPress does not support them.
-* Plugin "Options" page was divided into sections (tabs): General, Multisite, About. Section with information about plugin author, his site, etc. was moved from User Role Editor main page to its "Options" page - "About" tab.
-* HTML markup was updated to provide compatibility with upcoming WordPress 3.8 new administrator backend theme "MP6".
-* Restore previous blog 'switch_to_blog($old_blog_id)' call was replaced to 'restore_current_blog()' where it is possible to provide better compatibility with WordPress API.
-After use 'switch_to_blog()' in cycle, URE clears '_wp_switched_stack' global variable directly instead of call 'restore_current_blog()' inside the cycle to work faster.
-* Pro version: It is possible to restrict access of single sites administrators to the selected user capabilities and Add/Delete role operations inside User Role Editor.
-* Pro version:  Shortcode [user_role_editor roles="none"]text for not logged in users[/user_role_editor] is available. Recursive processing of other shortcodes inside enclosed text is available now.
-* Pro version: Gravity Forms available at "Export Entries", "Export Forms" pages is under URE access restriction now, if such one was set for the user.
-* Pro version: Gravity Forms import was set under "gravityforms_import" user capability control.
-* Pro version: Option was added to show/hide help links (question signs) near the capabilities from single site administrators.
-
-= 4.7 =
-* 04.11.2013
-* "Delete Role" menu has "Delete All Unused Roles" menu item now.
-* More detailed warning was added before fulfill "Reset" roles command in order to reduce accident use of this critical operation.
-* Bug was fixed at Ure_Lib::reset_user_roles() method. Method did not work correctly for the rest sites of the network except the main blog.
-* Pro version: Post/Pages editing restriction could be setup for the user by one of two modes: 'Allow' or 'Prohibit'.
-* Pro version: Shortcode [user_role_editor roles="role1, role2, ..."]bla-bla[/user_role_editor] for posts and pages was added. 
-You may restrict access to content inside this shortcode tags this way to the users only who have one of the roles noted at the "roles" attribute.
-* Pro version: If license key was installed it is shown as asterisks at the input field.
-* Pro version: In case site domain change you should input license key at the Settings page again.
-
-= 4.6 =
-* 21.10.2013
-* Multi-site: 'unfiltered_html' capability marked as deprecated one. Read this post for more information (http://shinephp.com/is-unfiltered_html-capability-deprecated/).
-* Multi-site: 'manage_network%' capabilities were included into WordPress core capabilities list.
-* On screen help was added to the "User Role Editor Options" page - click "Help" at the top right corner to read it.
-* Bug fix: turning off capability at the Administrator role fully removed that capability from capabilities list.
-* Various internal code enhancements.
-* Information about GPLv2 license was added to show apparently - "User Role Editor" is licensed under GPLv2 or later.
-* Pro version only: Multi-site: Assign roles and capabilities to the users from one point at the Network Admin. Add user with his permissions together to all sites of your network with one click.
-* Pro version only: 'wp-content/uploads' folder is used now instead of plugin's own one to process file with importing roles data.
-* Pro version only: Bug fix: Nonexistent method was called to notify user about folder write permission error during roles import.
-
-
 Click [here](http://role-editor.com/changelog)</a> to look at [the full list of changes](http://role-editor.com/changelog) of User Role Editor plugin.
 
 
index dcb766c..ab7fdd1 100644 (file)
@@ -3,7 +3,7 @@
 Plugin Name: User Role Editor
 Plugin URI: http://role-editor.com
 Description: Change/add/delete WordPress user roles and capabilities.
-Version: 4.16
+Version: 4.17.1
 Author: Vladimir Garagulya
 Author URI: http://www.shinephp.com
 Text Domain: ure
@@ -23,9 +23,10 @@ if (defined('URE_PLUGIN_URL')) {
    wp_die('It seems that other version of User Role Editor is active. Please deactivate it before use this version');
 }
 
-define('URE_VERSION', '4.16');
+define('URE_VERSION', '4.17.1');
 define('URE_PLUGIN_URL', plugin_dir_url(__FILE__));
 define('URE_PLUGIN_DIR', plugin_dir_path(__FILE__));
+define('URE_PLUGIN_BASE_NAME', plugin_basename(__FILE__));
 define('URE_PLUGIN_FILE', basename(__FILE__));
 define('URE_PLUGIN_FULL_PATH', __FILE__);
 
index 0e4bc1b..cea9d92 100644 (file)
@@ -38,7 +38,9 @@ WFAD.countryMap = <?php echo json_encode($wfBulkCountries); ?>;
                                <option value="redir"<?php if(wfConfig::get('cbl_action') == 'redir'){ echo ' selected'; } ?>>Redirect to the URL below</option>
                        </select>
                        </td></tr>
-               <tr><th>URL to redirect blocked users to:</th><td><input type="text" id="wfRedirURL" value="<?php if(wfConfig::get('cbl_redirURL')){ echo wp_kses(wfConfig::get('cbl_redirURL'), array()); } ?>" /></td></tr>
+               <tr><th>URL to redirect blocked users to:</th><td><input type="text" id="wfRedirURL" size="40" value="<?php if(wfConfig::get('cbl_redirURL')){ echo wp_kses(wfConfig::get('cbl_redirURL'), array()); } ?>" />
+               <br />
+               <span style="color: #999;">Must start with http:// for example http://yoursite.com/blocked/</span></td></tr>
                <tr><th>Block countries even if they are logged in:</th><td><input type="checkbox" id="wfLoggedInBlocked" value="1" <?php if(wfConfig::get('cbl_loggedInBlocked')){ echo 'checked'; } ?> /></td></tr>
                <tr><th>Block access to the login form:</th><td><input type="checkbox" id="wfLoginFormBlocked" value="1" <?php if(wfConfig::get('cbl_loginFormBlocked')){ echo 'checked'; } ?> /></td></tr>
                <tr><th>Block access to the rest of the site (outside the login form):</th><td><input type="checkbox" id="wfRestOfSiteBlocked" value="1" <?php if(wfConfig::get('cbl_restOfSiteBlocked')){ echo 'checked'; } ?> /></td></tr>
index 1106859..7801be8 100644 (file)
@@ -720,7 +720,12 @@ class wfLog {
                                                if(strtoupper($blocked) == strtoupper($country)){ //At this point we know the user has been blocked
                                                        if(wfConfig::get('cbl_action') == 'redir'){
                                                                $redirURL = wfConfig::get('cbl_redirURL');
-                                                               if(wfUtils::extractBareURI($redirURL) == $bareRequestURI){ //Is this the URI we want to redirect to, then don't block it
+                                                               $eRedirHost = wfUtils::extractHostname($redirURL);
+                                                               $isExternalRedir = false;
+                                                               if($eRedirHost && $eRedirHost != wfUtils::extractHostname(home_url())){ //It's an external redirect...
+                                                                       $isExternalRedir = true;
+                                                               }
+                                                               if( (! $isExternalRedir) && wfUtils::extractBareURI($redirURL) == $bareRequestURI){ //Is this the URI we want to redirect to, then don't block it
                                                                        //Do nothing
                                                                /* Uncomment the following if page components aren't loading for the page we redirect to.
                                                                   Uncommenting is not recommended because it means that anyone from a blocked country
index ab5072f..0c3ed1e 100644 (file)
@@ -173,9 +173,16 @@ class wfUtils {
                        return false;
                }
        }
+       public static function extractHostname($str){
+               if(preg_match('/https?:\/\/([a-zA-Z0-9\.\-]+)(?:\/|$)/i', $str, $matches)){
+                       return strtolower($matches[1]);
+               } else {
+                       return false;
+               }
+       }
        public static function getIP(){
                //For debugging. 
-               //return '105.2.33.57';
+               //return '54.232.205.132';
                //return self::makeRandomIP();
                $howGet = wfConfig::get('howGetIPs', false);
                if($howGet){
index 391ff1c..7a2c3a1 100644 (file)
@@ -3,7 +3,7 @@ Contributors: mmaunder
 Tags: wordpress, security, performance, speed, caching, cache, caching plugin, wordpress cache, wordpress caching, wordpress security, security plugin, secure, anti-virus, malware, firewall, antivirus, virus, google safe browsing, phishing, scrapers, hacking, wordfence, securty, secrity, secure, two factor, cellphone sign-in, cellphone signin, cellphone, twofactor, security, secure, htaccess, login, log, users, login alerts, lock, chmod, maintenance, plugin, private, privacy, protection, permissions, 503, base64, injection, code, encode, script, attack, hack, hackers, block, blocked, prevent, prevention, RFI, XSS, CRLF, CSRF, SQL Injection, vulnerability, website security, WordPress security, security log, logging, HTTP log, error log, login security, personal security, infrastructure security, firewall security, front-end security, web server security, proxy security, reverse proxy security, secure website, secure login, two factor security, maximum login security, heartbleed, heart bleed, heartbleed vulnerability, openssl vulnerability, nginx, litespeed, php5-fpm, woocommerce support, woocommerce caching
 Requires at least: 3.3.1
 Tested up to: 4.0
-Stable tag: 5.2.5
+Stable tag: 5.2.6
 
 Wordfence Security is a free enterprise class security and performance plugin that makes your site up to 50 times faster and more secure. 
 
@@ -163,6 +163,10 @@ cause a security hole on your site.
 
 == Changelog ==
 
+= 5.2.6 =
+* Fixed bug that caused country blocking and redirecting to an external URL to not work if the external URL's relative path matched the current page's relative path.
+* Made it clear that country blocking URL's require absolute URL's. 
+
 = 5.2.5 =
 * Security release. Update immediately. Thanks to Julio Potier. 
 * Code hardening including improved sanitization and an additional nonce for unlock email form. Special thanks to Ryan Satterfield for the hard work.
index af1fc6c..d332778 100644 (file)
@@ -4,13 +4,13 @@ Plugin Name: Wordfence Security
 Plugin URI: http://www.wordfence.com/
 Description: Wordfence Security - Anti-virus, Firewall and High Speed Cache
 Author: Wordfence
-Version: 5.2.5
+Version: 5.2.6
 Author URI: http://www.wordfence.com/
 */
 if(defined('WP_INSTALLING') && WP_INSTALLING){
        return;
 }
-define('WORDFENCE_VERSION', '5.2.5');
+define('WORDFENCE_VERSION', '5.2.6');
 if(get_option('wordfenceActivated') != 1){
        add_action('activated_plugin','wordfence_save_activation_error'); function wordfence_save_activation_error(){ update_option('wf_plugin_act_error',  ob_get_contents()); }
 }