WPFront User Role Editor - Version 2.5

Version Description

  • Navigation menu permissions added. Documentation.
  • Compatibility fix with "The Events Calendar".
Download this release

Release Info

Developer syammohanm
Plugin Icon 128x128 WPFront User Role Editor
Version 2.5
Comparing to
See all releases

Code changes from version 2.4 to 2.5

Files changed (38) hide show
  1. classes/base/class-wpfront-base-menu.php +10 -6
  2. classes/base/class-wpfront-base.php +7 -3
  3. classes/base/class-wpfront-entity-base.php +4 -0
  4. classes/base/class-wpfront-options-base.php +8 -4
  5. classes/base/class-wpfront-static.php +5 -1
  6. classes/class-wpfront-user-role-editor-add-edit.php +3 -0
  7. classes/class-wpfront-user-role-editor-assign-roles.php +5 -2
  8. classes/class-wpfront-user-role-editor-controller-base.php +8 -4
  9. classes/class-wpfront-user-role-editor-delete.php +3 -0
  10. classes/class-wpfront-user-role-editor-entity-base.php +4 -0
  11. classes/class-wpfront-user-role-editor-go-pro.php +5 -1
  12. classes/class-wpfront-user-role-editor-list.php +6 -2
  13. classes/class-wpfront-user-role-editor-nav-menu-walker.php +238 -0
  14. classes/class-wpfront-user-role-editor-nav-menu.php +234 -0
  15. classes/class-wpfront-user-role-editor-options.php +4 -0
  16. classes/class-wpfront-user-role-editor-restore.php +3 -0
  17. classes/class-wpfront-user-role-editor.php +19 -10
  18. classes/entities/class-wpfront-user-role-editor-entity-options.php +10 -5
  19. classes/integration/plugins/class-wpfront-user-role-editor-plugin-integration.php +5 -1
  20. classes/integration/plugins/duplicator/class-wpfront-user-role-editor-plugin-duplicator.php +9 -6
  21. css/nav-menu.css +19 -0
  22. css/options.css +2 -2
  23. css/style.css +161 -161
  24. js/nav-menu.js +14 -0
  25. languages/wpfront-user-role-editor-pt_BR/wpfront-user-role-editor-pt_BR.po +1782 -1782
  26. languages/wpfront-user-role-editor.po +1821 -1821
  27. license.txt +621 -621
  28. readme.txt +170 -160
  29. templates/add-edit-role.php +6 -0
  30. templates/assign-roles.php +39 -33
  31. templates/delete-role.php +5 -1
  32. templates/go-pro-table +160 -160
  33. templates/go-pro.php +6 -0
  34. templates/list-roles.php +72 -66
  35. templates/options-template.php +24 -5
  36. templates/restore-role.php +6 -0
  37. uninstall.php +40 -40
  38. wpfront-user-role-editor.php +4 -1
classes/base/class-wpfront-base-menu.php CHANGED
@@ -21,6 +21,10 @@
21
  SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
22
  */
23
 
 
 
 
 
24
  if (!class_exists('WPFront_Base_Menu')) {
25
 
26
  class WPFront_Base_Menu {
@@ -132,12 +136,12 @@ if (!class_exists('WPFront_Base_Menu')) {
132
  $description = strip_tags($plugin['description']);
133
  if (strlen($description) > 400)
134
  $description = mb_substr($description, 0, 400) . '…';
135
- //remove any trailing entities
136
  $description = preg_replace('/&[^;\s]{0,6}$/', '', $description);
137
- //strip leading/trailing & multiple consecutive lines
138
  $description = trim($description);
139
  $description = preg_replace("|(\r?\n)+|", "\n", $description);
140
- //\n => <br>
141
  $description = nl2br($description);
142
  $version = wp_kses($plugin['version'], $plugins_allowedtags);
143
 
@@ -221,7 +225,7 @@ if (!class_exists('WPFront_Base_Menu')) {
221
  return;
222
  }
223
 
224
- //$extra_menu = array_pop($submenu[$menu_slug]);
225
 
226
  foreach ($menu_data as $value) {
227
  $flag = FALSE;
@@ -242,8 +246,8 @@ if (!class_exists('WPFront_Base_Menu')) {
242
  add_action('admin_print_styles-' . $page_hook_suffix, array($value['this'], 'enqueue_options_styles'));
243
  }
244
 
245
- //usort($submenu[$menu_slug], array('WPFront_Base', 'submenu_compare'));
246
- //$submenu[$menu_slug][] = $extra_menu;
247
  }
248
 
249
  public static function admin_menu($menu_data) {
21
  SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
22
  */
23
 
24
+ if (!defined('ABSPATH')) {
25
+ exit();
26
+ }
27
+
28
  if (!class_exists('WPFront_Base_Menu')) {
29
 
30
  class WPFront_Base_Menu {
136
  $description = strip_tags($plugin['description']);
137
  if (strlen($description) > 400)
138
  $description = mb_substr($description, 0, 400) . '&#8230;';
139
+ //remove any trailing entities
140
  $description = preg_replace('/&[^;\s]{0,6}$/', '', $description);
141
+ //strip leading/trailing & multiple consecutive lines
142
  $description = trim($description);
143
  $description = preg_replace("|(\r?\n)+|", "\n", $description);
144
+ //\n => <br>
145
  $description = nl2br($description);
146
  $version = wp_kses($plugin['version'], $plugins_allowedtags);
147
 
225
  return;
226
  }
227
 
228
+ //$extra_menu = array_pop($submenu[$menu_slug]);
229
 
230
  foreach ($menu_data as $value) {
231
  $flag = FALSE;
246
  add_action('admin_print_styles-' . $page_hook_suffix, array($value['this'], 'enqueue_options_styles'));
247
  }
248
 
249
+ //usort($submenu[$menu_slug], array('WPFront_Base', 'submenu_compare'));
250
+ //$submenu[$menu_slug][] = $extra_menu;
251
  }
252
 
253
  public static function admin_menu($menu_data) {
classes/base/class-wpfront-base.php CHANGED
@@ -22,6 +22,10 @@
22
  SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
23
  */
24
 
 
 
 
 
25
  require_once(plugin_dir_path(__FILE__) . "class-wpfront-static.php");
26
  require_once(plugin_dir_path(__FILE__) . "class-wpfront-base-menu.php");
27
 
@@ -63,7 +67,7 @@ if (!class_exists('WPFront_Base_URE')) {
63
  add_action('wp_enqueue_scripts', array(&$this, 'enqueue_scripts'));
64
  }
65
  }
66
-
67
  protected function plugin_dir_suffix() {
68
  return '';
69
  }
@@ -111,7 +115,7 @@ if (!class_exists('WPFront_Base_URE')) {
111
  }
112
  return $links;
113
  }
114
-
115
  protected function plugin_action_links_file() {
116
  return $this->plugin_slug . $this->plugin_dir_suffix() . '/' . $this->plugin_slug . '.php';
117
  }
@@ -191,7 +195,7 @@ if (!class_exists('WPFront_Base_URE')) {
191
  echo '</div>';
192
  echo '</div>';
193
  }
194
-
195
  //returns localized string
196
  public function __($key) {
197
  return __($key, $this->plugin_slug);
22
  SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
23
  */
24
 
25
+ if (!defined('ABSPATH')) {
26
+ exit();
27
+ }
28
+
29
  require_once(plugin_dir_path(__FILE__) . "class-wpfront-static.php");
30
  require_once(plugin_dir_path(__FILE__) . "class-wpfront-base-menu.php");
31
 
67
  add_action('wp_enqueue_scripts', array(&$this, 'enqueue_scripts'));
68
  }
69
  }
70
+
71
  protected function plugin_dir_suffix() {
72
  return '';
73
  }
115
  }
116
  return $links;
117
  }
118
+
119
  protected function plugin_action_links_file() {
120
  return $this->plugin_slug . $this->plugin_dir_suffix() . '/' . $this->plugin_slug . '.php';
121
  }
195
  echo '</div>';
196
  echo '</div>';
197
  }
198
+
199
  //returns localized string
200
  public function __($key) {
201
  return __($key, $this->plugin_slug);
classes/base/class-wpfront-entity-base.php CHANGED
@@ -22,6 +22,10 @@
22
  SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
23
  */
24
 
 
 
 
 
25
  require_once(plugin_dir_path(__FILE__) . "class-wpfront-static.php");
26
 
27
  if (!class_exists('WPFront_Entity_Base')) {
22
  SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
23
  */
24
 
25
+ if (!defined('ABSPATH')) {
26
+ exit();
27
+ }
28
+
29
  require_once(plugin_dir_path(__FILE__) . "class-wpfront-static.php");
30
 
31
  if (!class_exists('WPFront_Entity_Base')) {
classes/base/class-wpfront-options-base.php CHANGED
@@ -22,6 +22,10 @@
22
  SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
23
  */
24
 
 
 
 
 
25
  if (!class_exists('WPFront_Options_Base')) {
26
 
27
  /**
@@ -63,7 +67,7 @@ if (!class_exists('WPFront_Options_Base')) {
63
  $this->__data[$name]['type'] = $type;
64
  $this->__data[$name]['default'] = $default;
65
  $this->__data[$name]['validate'] = isset($validate) ? $validate : array(&$this, 'validate_default');
66
-
67
  //dynamic function returning option value
68
  $this->__data[$name]['func'] = create_function('$self, $data', '
69
  $value = NULL;
@@ -71,15 +75,15 @@ if (!class_exists('WPFront_Options_Base')) {
71
  $value = $self->__options[$data["name"]];
72
  return $self->get_value($data["type"], $value, $data["default"], $data["validate"]);
73
  ');
74
-
75
  $this->__data[$name . '_name'] = $this->__data[$name];
76
  //dynamic function returning option name for settings page
77
  $this->__data[$name . '_name']['func'] = create_function('$self, $data', '
78
  return $self->__optionName . "[" . $data["name"] . "]";
79
  ');
80
-
81
  $this->__data[$name . '_label'] = $this->__data[$name];
82
-
83
  //dynamic function returning option label for settings page
84
  $this->__data[$name . '_label']['func'] = create_function('$self, $data', '
85
  return __($data["label"], $self->__localizeSlug);
22
  SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
23
  */
24
 
25
+ if (!defined('ABSPATH')) {
26
+ exit();
27
+ }
28
+
29
  if (!class_exists('WPFront_Options_Base')) {
30
 
31
  /**
67
  $this->__data[$name]['type'] = $type;
68
  $this->__data[$name]['default'] = $default;
69
  $this->__data[$name]['validate'] = isset($validate) ? $validate : array(&$this, 'validate_default');
70
+
71
  //dynamic function returning option value
72
  $this->__data[$name]['func'] = create_function('$self, $data', '
73
  $value = NULL;
75
  $value = $self->__options[$data["name"]];
76
  return $self->get_value($data["type"], $value, $data["default"], $data["validate"]);
77
  ');
78
+
79
  $this->__data[$name . '_name'] = $this->__data[$name];
80
  //dynamic function returning option name for settings page
81
  $this->__data[$name . '_name']['func'] = create_function('$self, $data', '
82
  return $self->__optionName . "[" . $data["name"] . "]";
83
  ');
84
+
85
  $this->__data[$name . '_label'] = $this->__data[$name];
86
+
87
  //dynamic function returning option label for settings page
88
  $this->__data[$name . '_label']['func'] = create_function('$self, $data', '
89
  return __($data["label"], $self->__localizeSlug);
classes/base/class-wpfront-static.php CHANGED
@@ -22,6 +22,10 @@
22
  SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
23
  */
24
 
 
 
 
 
25
  if (!class_exists('WPFront_Static')) {
26
 
27
  /**
@@ -51,7 +55,7 @@ if (!class_exists('WPFront_Static')) {
51
  if (defined('DOING_AJAX') && DOING_AJAX) {
52
  return TRUE;
53
  }
54
-
55
  if (defined('XMLRPC_REQUEST') && XMLRPC_REQUEST) {
56
  return TRUE;
57
  }
22
  SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
23
  */
24
 
25
+ if (!defined('ABSPATH')) {
26
+ exit();
27
+ }
28
+
29
  if (!class_exists('WPFront_Static')) {
30
 
31
  /**
55
  if (defined('DOING_AJAX') && DOING_AJAX) {
56
  return TRUE;
57
  }
58
+
59
  if (defined('XMLRPC_REQUEST') && XMLRPC_REQUEST) {
60
  return TRUE;
61
  }
classes/class-wpfront-user-role-editor-add-edit.php CHANGED
@@ -21,6 +21,9 @@
21
  SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
22
  */
23
 
 
 
 
24
 
25
  if (!class_exists('WPFront_User_Role_Editor_Add_Edit')) {
26
 
21
  SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
22
  */
23
 
24
+ if (!defined('ABSPATH')) {
25
+ exit();
26
+ }
27
 
28
  if (!class_exists('WPFront_User_Role_Editor_Add_Edit')) {
29
 
classes/class-wpfront-user-role-editor-assign-roles.php CHANGED
@@ -21,6 +21,9 @@
21
  SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
22
  */
23
 
 
 
 
24
 
25
  if (!class_exists('WPFront_User_Role_Editor_Assign_Roles')) {
26
 
@@ -82,7 +85,7 @@ if (!class_exists('WPFront_User_Role_Editor_Assign_Roles')) {
82
  public function edit_user_profile($user) {
83
  if(is_multisite() && is_network_admin())
84
  return;
85
-
86
  if (!$this->can_assign_roles())
87
  return;
88
 
@@ -113,7 +116,7 @@ if (!class_exists('WPFront_User_Role_Editor_Assign_Roles')) {
113
  public function edit_user_profile_update($user_id) {
114
  if(is_multisite() && is_network_admin())
115
  return;
116
-
117
  if (!$this->can_assign_roles())
118
  return;
119
 
21
  SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
22
  */
23
 
24
+ if (!defined('ABSPATH')) {
25
+ exit();
26
+ }
27
 
28
  if (!class_exists('WPFront_User_Role_Editor_Assign_Roles')) {
29
 
85
  public function edit_user_profile($user) {
86
  if(is_multisite() && is_network_admin())
87
  return;
88
+
89
  if (!$this->can_assign_roles())
90
  return;
91
 
116
  public function edit_user_profile_update($user_id) {
117
  if(is_multisite() && is_network_admin())
118
  return;
119
+
120
  if (!$this->can_assign_roles())
121
  return;
122
 
classes/class-wpfront-user-role-editor-controller-base.php CHANGED
@@ -22,6 +22,10 @@
22
  SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
23
  */
24
 
 
 
 
 
25
  if (!class_exists('WPFront_User_Role_Editor_Controller_Base')) {
26
 
27
  /**
@@ -88,9 +92,9 @@ if (!class_exists('WPFront_User_Role_Editor_Controller_Base')) {
88
  $s .= '<p><a target="_blank" href="http://wpfront.com/support/">' . $this->__('Support') . '</a></p>';
89
  $s .= '<p><a target="_blank" href="https://wordpress.org/support/view/plugin-reviews/wpfront-user-role-editor">' . $this->__('Review') . '</a></p>';
90
  $s .= '<p><a target="_blank" href="http://wpfront.com/contact/">' . $this->__('Contact') . '</a></p>';
91
-
92
-
93
-
94
  $screen->set_help_sidebar($s);
95
  }
96
  }
@@ -154,7 +158,7 @@ if (!class_exists('WPFront_User_Role_Editor_Controller_Base')) {
154
  public function set_default_url() {
155
  return admin_url('admin.php') . '?page=' . WPFront_User_Role_Editor_List::MENU_SLUG . '&nonce=' . wp_create_nonce($this->list_url()) . '&set_default_role=';
156
  }
157
-
158
  public function settings_url() {
159
  return admin_url('admin.php') . '?page=' . WPFront_User_Role_Editor_Options::MENU_SLUG;
160
  }
22
  SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
23
  */
24
 
25
+ if (!defined('ABSPATH')) {
26
+ exit();
27
+ }
28
+
29
  if (!class_exists('WPFront_User_Role_Editor_Controller_Base')) {
30
 
31
  /**
92
  $s .= '<p><a target="_blank" href="http://wpfront.com/support/">' . $this->__('Support') . '</a></p>';
93
  $s .= '<p><a target="_blank" href="https://wordpress.org/support/view/plugin-reviews/wpfront-user-role-editor">' . $this->__('Review') . '</a></p>';
94
  $s .= '<p><a target="_blank" href="http://wpfront.com/contact/">' . $this->__('Contact') . '</a></p>';
95
+
96
+
97
+
98
  $screen->set_help_sidebar($s);
99
  }
100
  }
158
  public function set_default_url() {
159
  return admin_url('admin.php') . '?page=' . WPFront_User_Role_Editor_List::MENU_SLUG . '&nonce=' . wp_create_nonce($this->list_url()) . '&set_default_role=';
160
  }
161
+
162
  public function settings_url() {
163
  return admin_url('admin.php') . '?page=' . WPFront_User_Role_Editor_Options::MENU_SLUG;
164
  }
classes/class-wpfront-user-role-editor-delete.php CHANGED
@@ -22,6 +22,9 @@
22
  SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
23
  */
24
 
 
 
 
25
 
26
  if (!class_exists('WPFront_User_Role_Editor_Delete')) {
27
 
22
  SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
23
  */
24
 
25
+ if (!defined('ABSPATH')) {
26
+ exit();
27
+ }
28
 
29
  if (!class_exists('WPFront_User_Role_Editor_Delete')) {
30
 
classes/class-wpfront-user-role-editor-entity-base.php CHANGED
@@ -1,5 +1,9 @@
1
  <?php
2
 
 
 
 
 
3
  require_once(plugin_dir_path(__FILE__) . "base/class-wpfront-entity-base.php");
4
 
5
  if (!class_exists('WPFront_User_Role_Editor_Entity_Base')) {
1
  <?php
2
 
3
+ if (!defined('ABSPATH')) {
4
+ exit();
5
+ }
6
+
7
  require_once(plugin_dir_path(__FILE__) . "base/class-wpfront-entity-base.php");
8
 
9
  if (!class_exists('WPFront_User_Role_Editor_Entity_Base')) {
classes/class-wpfront-user-role-editor-go-pro.php CHANGED
@@ -22,6 +22,10 @@
22
  SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
23
  */
24
 
 
 
 
 
25
  if (!class_exists('WPFront_User_Role_Editor_Go_Pro')) {
26
 
27
  /**
@@ -90,7 +94,7 @@ if (!class_exists('WPFront_User_Role_Editor_Go_Pro')) {
90
  if ($this->pro_html === NULL)
91
  $this->pro_html = '';
92
  }
93
-
94
  if($this->pro_html === '') {
95
  $this->pro_html = file_get_contents($this->main->pluginDIR() . 'templates/go-pro-table');
96
  }
22
  SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
23
  */
24
 
25
+ if (!defined('ABSPATH')) {
26
+ exit();
27
+ }
28
+
29
  if (!class_exists('WPFront_User_Role_Editor_Go_Pro')) {
30
 
31
  /**
94
  if ($this->pro_html === NULL)
95
  $this->pro_html = '';
96
  }
97
+
98
  if($this->pro_html === '') {
99
  $this->pro_html = file_get_contents($this->main->pluginDIR() . 'templates/go-pro-table');
100
  }
classes/class-wpfront-user-role-editor-list.php CHANGED
@@ -21,6 +21,10 @@
21
  SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
22
  */
23
 
 
 
 
 
24
  require_once(plugin_dir_path(__FILE__) . "class-wpfront-user-role-editor-add-edit.php");
25
 
26
  if (!class_exists('WPFront_User_Role_Editor_List')) {
@@ -131,7 +135,7 @@ if (!class_exists('WPFront_User_Role_Editor_List')) {
131
 
132
  $count_users = count_users();
133
  $count_users = $count_users['avail_roles'];
134
-
135
  foreach ($roles as $key => $value) {
136
  $this->role_data[$key] = array(
137
  'role_name' => $key,
@@ -288,7 +292,7 @@ if (!class_exists('WPFront_User_Role_Editor_List')) {
288
 
289
  $count_users = count_users();
290
  $count_users = $count_users['avail_roles'];
291
-
292
  $count = 0;
293
  foreach ($role_data as $key => $value) {
294
  if(isset($count_users[$key]) && $count_users[$key] > 0) //if (count(get_users(array('role' => $key))) > 0)
21
  SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
22
  */
23
 
24
+ if (!defined('ABSPATH')) {
25
+ exit();
26
+ }
27
+
28
  require_once(plugin_dir_path(__FILE__) . "class-wpfront-user-role-editor-add-edit.php");
29
 
30
  if (!class_exists('WPFront_User_Role_Editor_List')) {
135
 
136
  $count_users = count_users();
137
  $count_users = $count_users['avail_roles'];
138
+
139
  foreach ($roles as $key => $value) {
140
  $this->role_data[$key] = array(
141
  'role_name' => $key,
292
 
293
  $count_users = count_users();
294
  $count_users = $count_users['avail_roles'];
295
+
296
  $count = 0;
297
  foreach ($role_data as $key => $value) {
298
  if(isset($count_users[$key]) && $count_users[$key] > 0) //if (count(get_users(array('role' => $key))) > 0)
classes/class-wpfront-user-role-editor-nav-menu-walker.php ADDED
@@ -0,0 +1,238 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ /*
4
+ WPFront User Role Editor Plugin
5
+ Copyright (C) 2014, WPFront.com
6
+ Website: wpfront.com
7
+ Contact: syam@wpfront.com
8
+
9
+ WPFront User Role Editor Plugin is distributed under the GNU General Public License, Version 3,
10
+ June 2007. Copyright (C) 2007 Free Software Foundation, Inc., 51 Franklin
11
+ St, Fifth Floor, Boston, MA 02110, USA
12
+
13
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
14
+ ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
15
+ WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
16
+ DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
17
+ ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
18
+ (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
19
+ LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
20
+ ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
21
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
22
+ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
23
+ */
24
+
25
+ if (!defined('ABSPATH')) {
26
+ exit();
27
+ }
28
+
29
+ require_once ABSPATH . 'wp-admin/includes/nav-menu.php';
30
+
31
+ if (!class_exists('WPFront_User_Role_Editor_Nav_Menu_Walker')) {
32
+
33
+ /**
34
+ * Create HTML list of nav menu input items.
35
+ *
36
+ * Copied from nav-menu.php
37
+ */
38
+ class WPFront_User_Role_Editor_Nav_Menu_Walker extends Walker_Nav_Menu_Edit {
39
+
40
+ /**
41
+ * Start the element output.
42
+ *
43
+ * @see Walker_Nav_Menu::start_el()
44
+ * @since 3.0.0
45
+ *
46
+ * @param string $output Passed by reference. Used to append additional content.
47
+ * @param object $item Menu item data object.
48
+ * @param int $depth Depth of menu item. Used for padding.
49
+ * @param array $args Not used.
50
+ * @param int $id Not used.
51
+ */
52
+ public function start_el( &$output, $item, $depth = 0, $args = array(), $id = 0 ) {
53
+ global $_wp_nav_menu_max_depth;
54
+ $_wp_nav_menu_max_depth = $depth > $_wp_nav_menu_max_depth ? $depth : $_wp_nav_menu_max_depth;
55
+
56
+ ob_start();
57
+ $item_id = esc_attr( $item->ID );
58
+ $removed_args = array(
59
+ 'action',
60
+ 'customlink-tab',
61
+ 'edit-menu-item',
62
+ 'menu-item',
63
+ 'page-tab',
64
+ '_wpnonce',
65
+ );
66
+
67
+ $original_title = '';
68
+ if ( 'taxonomy' == $item->type ) {
69
+ $original_title = get_term_field( 'name', $item->object_id, $item->object, 'raw' );
70
+ if ( is_wp_error( $original_title ) )
71
+ $original_title = false;
72
+ } elseif ( 'post_type' == $item->type ) {
73
+ $original_object = get_post( $item->object_id );
74
+ $original_title = get_the_title( $original_object->ID );
75
+ }
76
+
77
+ $classes = array(
78
+ 'menu-item menu-item-depth-' . $depth,
79
+ 'menu-item-' . esc_attr( $item->object ),
80
+ 'menu-item-edit-' . ( ( isset( $_GET['edit-menu-item'] ) && $item_id == $_GET['edit-menu-item'] ) ? 'active' : 'inactive'),
81
+ );
82
+
83
+ $title = $item->title;
84
+
85
+ if ( ! empty( $item->_invalid ) ) {
86
+ $classes[] = 'menu-item-invalid';
87
+ /* translators: %s: title of menu item which is invalid */
88
+ $title = sprintf( __( '%s (Invalid)' ), $item->title );
89
+ } elseif ( isset( $item->post_status ) && 'draft' == $item->post_status ) {
90
+ $classes[] = 'pending';
91
+ /* translators: %s: title of menu item in draft status */
92
+ $title = sprintf( __('%s (Pending)'), $item->title );
93
+ }
94
+
95
+ $title = ( ! isset( $item->label ) || '' == $item->label ) ? $title : $item->label;
96
+
97
+ $submenu_text = '';
98
+ if ( 0 == $depth )
99
+ $submenu_text = 'style="display: none;"';
100
+
101
+ ?>
102
+ <li id="menu-item-<?php echo $item_id; ?>" class="<?php echo implode(' ', $classes ); ?>">
103
+ <dl class="menu-item-bar">
104
+ <dt class="menu-item-handle">
105
+ <span class="item-title"><span class="menu-item-title"><?php echo esc_html( $title ); ?></span> <span class="is-submenu" <?php echo $submenu_text; ?>><?php _e( 'sub item' ); ?></span><?php do_action( 'wp_nav_menu_item_title_user_restriction_type', $item_id, $item, $depth, $args ); ?></span>
106
+ <span class="item-controls">
107
+ <span class="item-type"><?php echo esc_html( $item->type_label ); ?></span>
108
+ <span class="item-order hide-if-js">
109
+ <a href="<?php
110
+ echo wp_nonce_url(
111
+ add_query_arg(
112
+ array(
113
+ 'action' => 'move-up-menu-item',
114
+ 'menu-item' => $item_id,
115
+ ),
116
+ remove_query_arg($removed_args, admin_url( 'nav-menus.php' ) )
117
+ ),
118
+ 'move-menu_item'
119
+ );
120
+ ?>" class="item-move-up"><abbr title="<?php esc_attr_e('Move up'); ?>">&#8593;</abbr></a>
121
+ |
122
+ <a href="<?php
123
+ echo wp_nonce_url(
124
+ add_query_arg(
125
+ array(
126
+ 'action' => 'move-down-menu-item',
127
+ 'menu-item' => $item_id,
128
+ ),
129
+ remove_query_arg($removed_args, admin_url( 'nav-menus.php' ) )
130
+ ),
131
+ 'move-menu_item'
132
+ );
133
+ ?>" class="item-move-down"><abbr title="<?php esc_attr_e('Move down'); ?>">&#8595;</abbr></a>
134
+ </span>
135
+ <a class="item-edit" id="edit-<?php echo $item_id; ?>" title="<?php esc_attr_e('Edit Menu Item'); ?>" href="<?php
136
+ echo ( isset( $_GET['edit-menu-item'] ) && $item_id == $_GET['edit-menu-item'] ) ? admin_url( 'nav-menus.php' ) : add_query_arg( 'edit-menu-item', $item_id, remove_query_arg( $removed_args, admin_url( 'nav-menus.php#menu-item-settings-' . $item_id ) ) );
137
+ ?>"><?php _e( 'Edit Menu Item' ); ?></a>
138
+ </span>
139
+ </dt>
140
+ </dl>
141
+
142
+ <div class="menu-item-settings" id="menu-item-settings-<?php echo $item_id; ?>">
143
+ <?php if( 'custom' == $item->type ) : ?>
144
+ <p class="field-url description description-wide">
145
+ <label for="edit-menu-item-url-<?php echo $item_id; ?>">
146
+ <?php _e( 'URL' ); ?><br />
147
+ <input type="text" id="edit-menu-item-url-<?php echo $item_id; ?>" class="widefat code edit-menu-item-url" name="menu-item-url[<?php echo $item_id; ?>]" value="<?php echo esc_attr( $item->url ); ?>" />
148
+ </label>
149
+ </p>
150
+ <?php endif; ?>
151
+ <p class="description description-thin">
152
+ <label for="edit-menu-item-title-<?php echo $item_id; ?>">
153
+ <?php _e( 'Navigation Label' ); ?><br />
154
+ <input type="text" id="edit-menu-item-title-<?php echo $item_id; ?>" class="widefat edit-menu-item-title" name="menu-item-title[<?php echo $item_id; ?>]" value="<?php echo esc_attr( $item->title ); ?>" />
155
+ </label>
156
+ </p>
157
+ <p class="description description-thin">
158
+ <label for="edit-menu-item-attr-title-<?php echo $item_id; ?>">
159
+ <?php _e( 'Title Attribute' ); ?><br />
160
+ <input type="text" id="edit-menu-item-attr-title-<?php echo $item_id; ?>" class="widefat edit-menu-item-attr-title" name="menu-item-attr-title[<?php echo $item_id; ?>]" value="<?php echo esc_attr( $item->post_excerpt ); ?>" />
161
+ </label>
162
+ </p>
163
+ <p class="field-link-target description">
164
+ <label for="edit-menu-item-target-<?php echo $item_id; ?>">
165
+ <input type="checkbox" id="edit-menu-item-target-<?php echo $item_id; ?>" value="_blank" name="menu-item-target[<?php echo $item_id; ?>]"<?php checked( $item->target, '_blank' ); ?> />
166
+ <?php _e( 'Open link in a new window/tab' ); ?>
167
+ </label>
168
+ </p>
169
+ <p class="field-css-classes description description-thin">
170
+ <label for="edit-menu-item-classes-<?php echo $item_id; ?>">
171
+ <?php _e( 'CSS Classes (optional)' ); ?><br />
172
+ <input type="text" id="edit-menu-item-classes-<?php echo $item_id; ?>" class="widefat code edit-menu-item-classes" name="menu-item-classes[<?php echo $item_id; ?>]" value="<?php echo esc_attr( implode(' ', $item->classes ) ); ?>" />
173
+ </label>
174
+ </p>
175
+ <p class="field-xfn description description-thin">
176
+ <label for="edit-menu-item-xfn-<?php echo $item_id; ?>">
177
+ <?php _e( 'Link Relationship (XFN)' ); ?><br />
178
+ <input type="text" id="edit-menu-item-xfn-<?php echo $item_id; ?>" class="widefat code edit-menu-item-xfn" name="menu-item-xfn[<?php echo $item_id; ?>]" value="<?php echo esc_attr( $item->xfn ); ?>" />
179
+ </label>
180
+ </p>
181
+ <p class="field-description description description-wide">
182
+ <label for="edit-menu-item-description-<?php echo $item_id; ?>">
183
+ <?php _e( 'Description' ); ?><br />
184
+ <textarea id="edit-menu-item-description-<?php echo $item_id; ?>" class="widefat edit-menu-item-description" rows="3" cols="20" name="menu-item-description[<?php echo $item_id; ?>]"><?php echo esc_html( $item->description ); // textarea_escaped ?></textarea>
185
+ <span class="description"><?php _e('The description will be displayed in the menu if the current theme supports it.'); ?></span>
186
+ </label>
187
+ </p>
188
+
189
+ <?php
190
+ do_action( 'wp_nav_menu_item_custom_fields', $item_id, $item, $depth, $args );
191
+ ?>
192
+
193
+ <p class="field-move hide-if-no-js description description-wide">
194
+ <label>
195
+ <span><?php _e( 'Move' ); ?></span>
196
+ <a href="#" class="menus-move-up"><?php _e( 'Up one' ); ?></a>
197
+ <a href="#" class="menus-move-down"><?php _e( 'Down one' ); ?></a>
198
+ <a href="#" class="menus-move-left"></a>
199
+ <a href="#" class="menus-move-right"></a>
200
+ <a href="#" class="menus-move-top"><?php _e( 'To the top' ); ?></a>
201
+ </label>
202
+ </p>
203
+
204
+ <div class="menu-item-actions description-wide submitbox">
205
+ <?php if( 'custom' != $item->type && $original_title !== false ) : ?>
206
+ <p class="link-to-original">
207
+ <?php printf( __('Original: %s'), '<a href="' . esc_attr( $item->url ) . '">' . esc_html( $original_title ) . '</a>' ); ?>
208
+ </p>
209
+ <?php endif; ?>
210
+ <a class="item-delete submitdelete deletion" id="delete-<?php echo $item_id; ?>" href="<?php
211
+ echo wp_nonce_url(
212
+ add_query_arg(
213
+ array(
214
+ 'action' => 'delete-menu-item',
215
+ 'menu-item' => $item_id,
216
+ ),
217
+ admin_url( 'nav-menus.php' )
218
+ ),
219
+ 'delete-menu_item_' . $item_id
220
+ ); ?>"><?php _e( 'Remove' ); ?></a> <span class="meta-sep hide-if-no-js"> | </span> <a class="item-cancel submitcancel hide-if-no-js" id="cancel-<?php echo $item_id; ?>" href="<?php echo esc_url( add_query_arg( array( 'edit-menu-item' => $item_id, 'cancel' => time() ), admin_url( 'nav-menus.php' ) ) );
221
+ ?>#menu-item-settings-<?php echo $item_id; ?>"><?php _e('Cancel'); ?></a>
222
+ </div>
223
+
224
+ <input class="menu-item-data-db-id" type="hidden" name="menu-item-db-id[<?php echo $item_id; ?>]" value="<?php echo $item_id; ?>" />
225
+ <input class="menu-item-data-object-id" type="hidden" name="menu-item-object-id[<?php echo $item_id; ?>]" value="<?php echo esc_attr( $item->object_id ); ?>" />
226
+ <input class="menu-item-data-object" type="hidden" name="menu-item-object[<?php echo $item_id; ?>]" value="<?php echo esc_attr( $item->object ); ?>" />
227
+ <input class="menu-item-data-parent-id" type="hidden" name="menu-item-parent-id[<?php echo $item_id; ?>]" value="<?php echo esc_attr( $item->menu_item_parent ); ?>" />
228
+ <input class="menu-item-data-position" type="hidden" name="menu-item-position[<?php echo $item_id; ?>]" value="<?php echo esc_attr( $item->menu_order ); ?>" />
229
+ <input class="menu-item-data-type" type="hidden" name="menu-item-type[<?php echo $item_id; ?>]" value="<?php echo esc_attr( $item->type ); ?>" />
230
+ </div><!-- .menu-item-settings-->
231
+ <ul class="menu-item-transport"></ul>
232
+ <?php
233
+ $output .= ob_get_clean();
234
+ }
235
+
236
+ } // Walker_Nav_Menu_Edit
237
+
238
+ }
classes/class-wpfront-user-role-editor-nav-menu.php ADDED
@@ -0,0 +1,234 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /*
3
+ WPFront User Role Editor Plugin
4
+ Copyright (C) 2014, WPFront.com
5
+ Website: wpfront.com
6
+ Contact: syam@wpfront.com
7
+
8
+ WPFront User Role Editor Plugin is distributed under the GNU General Public License, Version 3,
9
+ June 2007. Copyright (C) 2007 Free Software Foundation, Inc., 51 Franklin
10
+ St, Fifth Floor, Boston, MA 02110, USA
11
+
12
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
13
+ ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
14
+ WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
15
+ DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
16
+ ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
17
+ (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
18
+ LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
19
+ ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
20
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
21
+ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
22
+ */
23
+
24
+ if (!defined('ABSPATH')) {
25
+ exit();
26
+ }
27
+
28
+ require_once plugin_dir_path(__FILE__) . 'class-wpfront-user-role-editor-nav-menu-walker.php';
29
+
30
+ if (!class_exists('WPFront_User_Role_Editor_Nav_Menu')) {
31
+
32
+ /**
33
+ * Navigation Menu Controller
34
+ *
35
+ * @author Syam Mohan <syam@wpfront.com>
36
+ * @copyright 2015 WPFront.com
37
+ */
38
+ class WPFront_User_Role_Editor_Nav_Menu extends WPFront_User_Role_Editor_Controller_Base {
39
+
40
+ protected static $ALL_USERS = 1;
41
+ protected static $LOGGEDIN_USERS = 2;
42
+ protected static $GUEST_USERS = 3;
43
+ protected static $ROLE_USERS = 4;
44
+ protected static $META_DATA_KEY = 'wpfront-user-role-editor-nav-menu-data';
45
+
46
+ public function __construct($main) {
47
+ parent::__construct($main);
48
+
49
+ add_filter('wp_edit_nav_menu_walker', array($this, 'override_edit_nav_menu_walker'));
50
+
51
+ add_action('wp_nav_menu_item_custom_fields', array($this, 'menu_item_custom_fields'), 10, 4);
52
+ add_action('wp_nav_menu_item_title_user_restriction_type', array($this, 'menu_item_title_user_restriction_type'), 10, 4);
53
+ add_filter('wp_nav_menu_item_custom_fields_roles_list', array($this, 'menu_item_custom_fields_roles_list'), 10, 5);
54
+
55
+ add_action('wp_update_nav_menu_item', array($this, 'update_nav_menu_item'), 10, 3);
56
+ add_filter('wp_get_nav_menu_items', array($this, 'override_nav_menu_items'), 10, 3);
57
+
58
+ add_action('admin_print_scripts-nav-menus.php', array($this, 'enqueue_menu_scripts'));
59
+ add_action('admin_print_styles-nav-menus.php', array($this, 'enqueue_menu_styles'));
60
+ }
61
+
62
+ public static function nav_menu_help_url() {
63
+ return 'https://wpfront.com/user-role-editor-pro/navigation-menu-permissions/';
64
+ }
65
+
66
+ public static function override_edit_nav_menu_walker() {
67
+ return 'WPFront_User_Role_Editor_Nav_Menu_Walker';
68
+ }
69
+
70
+ public function menu_item_title_user_restriction_type($item_id, $item, $depth, $args) {
71
+ if(!current_user_can('edit_nav_menu_permissions'))
72
+ return;
73
+
74
+ $data = $this->get_meta_data($item_id);
75
+ $text = $this->__('All Users');
76
+
77
+ switch ($data->type) {
78
+ case self::$LOGGEDIN_USERS:
79
+ $text = $this->__('Logged in Users');
80
+ break;
81
+ case self::$GUEST_USERS:
82
+ $text = $this->__('Guest Users');
83
+ break;
84
+ case self::$ROLE_USERS:
85
+ $text = $this->__('Users by Role');
86
+ break;
87
+ }
88
+ ?>
89
+ <span class="is-submenu">
90
+ <?php echo '(' . $text . ')'; ?>
91
+ </span>
92
+ <?php
93
+ }
94
+
95
+ public function menu_item_custom_fields_roles_list($s, $item_id, $item, $depth, $args) {
96
+ return sprintf($this->__('%s to limit based on roles.'), '<a target="_blank" href="https://wpfront.com/navmenu">Upgrade to Pro</a>');
97
+ }
98
+
99
+ public function menu_item_custom_fields($item_id, $item, $depth, $args) {
100
+ if(!current_user_can('edit_nav_menu_permissions'))
101
+ return;
102
+
103
+ $data = $this->get_meta_data($item_id);
104
+ $this->main->create_nonce($item_id);
105
+ ?>
106
+ <p class="description description-wide"></p>
107
+ <p class="description description-wide">
108
+ <label><?php echo $this->__('User Restrictions'); ?></label>
109
+ <span class="user-restriction-container">
110
+ <label><input class="user-restriction-type" type="radio" name="<?php echo 'user-restriction-type-' . $item_id; ?>" value="<?php echo self::$ALL_USERS; ?>" <?php echo $data->type === self::$ALL_USERS ? 'checked' : ''; ?> /><?php echo $this->__('All Users'); ?></label>
111
+ <label><input class="user-restriction-type" type="radio" name="<?php echo 'user-restriction-type-' . $item_id; ?>" value="<?php echo self::$LOGGEDIN_USERS; ?>" <?php echo $data->type === self::$LOGGEDIN_USERS ? 'checked' : ''; ?> /><?php echo $this->__('Logged in Users'); ?></label>
112
+ <label><input class="user-restriction-type" type="radio" name="<?php echo 'user-restriction-type-' . $item_id; ?>" value="<?php echo self::$GUEST_USERS; ?>" <?php echo $data->type === self::$GUEST_USERS ? 'checked' : ''; ?> /><?php echo $this->__('Guest Users'); ?></label>
113
+ <label><input class="user-restriction-type" type="radio" name="<?php echo 'user-restriction-type-' . $item_id; ?>" value="<?php echo self::$ROLE_USERS; ?>" <?php echo $data->type === self::$ROLE_USERS ? 'checked' : ''; ?> /><?php echo $this->__('Users by Role'); ?></label>
114
+ <span class="roles-container <?php echo $data->type === self::$ROLE_USERS ? '' : 'hidden'; ?>">
115
+ <?php echo apply_filters('wp_nav_menu_item_custom_fields_roles_list', '', $item_id, $item, $depth, $args); ?>
116
+ </span>
117
+ </span>
118
+ </p>
119
+ <?php
120
+ }
121
+
122
+ protected function update_nav_menu_item_sub($menu_id, $menu_item_db_id, $args, $data) {
123
+ return $data;
124
+ }
125
+
126
+ public function update_nav_menu_item($menu_id, $menu_item_db_id, $args) {
127
+ if(!current_user_can('edit_nav_menu_permissions'))
128
+ return;
129
+
130
+ $data = $this->get_meta_data($menu_item_db_id);
131
+
132
+ if (!empty($_POST['user-restriction-type-' . $menu_item_db_id])) {
133
+ $this->main->verify_nonce($menu_item_db_id);
134
+
135
+ $data->type = intval($_POST['user-restriction-type-' . $menu_item_db_id]);
136
+
137
+ $data = $this->update_nav_menu_item_sub($menu_id, $menu_item_db_id, $args, $data);
138
+ }
139
+
140
+ update_post_meta($menu_item_db_id, self::$META_DATA_KEY, $data);
141
+ }
142
+
143
+ protected function override_nav_menu_items_sub($item, $data) {
144
+ return FALSE;
145
+ }
146
+
147
+ public function override_nav_menu_items($items, $menu, $args) {
148
+ if (is_admin()) {
149
+ return $items;
150
+ }
151
+
152
+ $remove_parent = array();
153
+
154
+ foreach ($items as $key => $item) {
155
+ $data = $this->get_meta_data($item->db_id);
156
+
157
+ $remove = FALSE;
158
+
159
+ switch ($data->type) {
160
+ case self::$LOGGEDIN_USERS:
161
+ $remove = !is_user_logged_in();
162
+ break;
163
+ case self::$GUEST_USERS:
164
+ $remove = is_user_logged_in();
165
+ break;
166
+ case self::$ROLE_USERS:
167
+ $remove = $this->override_nav_menu_items_sub($item, $data);
168
+ default:
169
+ break;
170
+ }
171
+
172
+ if ($remove) {
173
+ $remove_parent[] = $item->ID;
174
+ unset($items[$key]);
175
+ }
176
+ }
177
+
178
+ while (!empty($remove_parent)) {
179
+ $continue = FALSE;
180
+
181
+ foreach ($items as $key => $item) {
182
+ if (empty($item)) {
183
+ continue;
184
+ }
185
+
186
+ if (intval($item->menu_item_parent) === intval($remove_parent[0])) {
187
+ $remove_parent[] = $item->ID;
188
+ unset($items[$key]);
189
+ $continue = TRUE;
190
+ }
191
+ }
192
+
193
+ if ($continue)
194
+ continue;
195
+
196
+ array_shift($remove_parent);
197
+ }
198
+
199
+ return array_values($items);
200
+ }
201
+
202
+ protected function get_meta_data($menu_item_db_id) {
203
+ $data = get_post_meta($menu_item_db_id, self::$META_DATA_KEY, true);
204
+
205
+ if (empty($data)) {
206
+ $data = (OBJECT) array('type' => self::$ALL_USERS);
207
+ }
208
+
209
+ switch (intval($data->type)) {
210
+ case self::$LOGGEDIN_USERS:
211
+ case self::$GUEST_USERS:
212
+ case self::$ROLE_USERS:
213
+ $data->type = intval($data->type);
214
+ break;
215
+ default:
216
+ $data->type = self::$ALL_USERS;
217
+ break;
218
+ }
219
+
220
+ return $data;
221
+ }
222
+
223
+ public function enqueue_menu_scripts() {
224
+ wp_enqueue_script('jquery');
225
+ wp_enqueue_script('wpfront-user-role-editor-nav-menu-js', $this->main->pluginURL() . 'js/nav-menu.js', array('jquery'), WPFront_User_Role_Editor::VERSION);
226
+ }
227
+
228
+ public function enqueue_menu_styles() {
229
+ wp_enqueue_style('wpfront-user-role-editor-nav-menu-css', $this->main->pluginURL() . 'css/nav-menu.css', array(), WPFront_User_Role_Editor::VERSION);
230
+ }
231
+
232
+ }
233
+
234
+ }
classes/class-wpfront-user-role-editor-options.php CHANGED
@@ -22,6 +22,10 @@
22
  SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
23
  */
24
 
 
 
 
 
25
  require_once(plugin_dir_path(__FILE__) . "entities/class-wpfront-user-role-editor-entity-options.php");
26
 
27
  if (!class_exists('WPFront_User_Role_Editor_Options')) {
22
  SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
23
  */
24
 
25
+ if (!defined('ABSPATH')) {
26
+ exit();
27
+ }
28
+
29
  require_once(plugin_dir_path(__FILE__) . "entities/class-wpfront-user-role-editor-entity-options.php");
30
 
31
  if (!class_exists('WPFront_User_Role_Editor_Options')) {
classes/class-wpfront-user-role-editor-restore.php CHANGED
@@ -22,6 +22,9 @@
22
  SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
23
  */
24
 
 
 
 
25
 
26
  if (!class_exists('WPFront_User_Role_Editor_Restore')) {
27
 
22
  SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
23
  */
24
 
25
+ if (!defined('ABSPATH')) {
26
+ exit();
27
+ }
28
 
29
  if (!class_exists('WPFront_User_Role_Editor_Restore')) {
30
 
classes/class-wpfront-user-role-editor.php CHANGED
@@ -21,6 +21,10 @@
21
  SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
22
  */
23
 
 
 
 
 
24
  require_once(plugin_dir_path(__FILE__) . "base/class-wpfront-base.php");
25
 
26
  if (!class_exists('WPFront_User_Role_Editor')) {
@@ -34,13 +38,13 @@ if (!class_exists('WPFront_User_Role_Editor')) {
34
  class WPFront_User_Role_Editor extends WPFront_Base_URE {
35
 
36
  //Constants
37
- const VERSION = '2.4';
38
  const OPTIONS_GROUP_NAME = 'wpfront-user-role-editor-options-group';
39
  const OPTION_NAME = 'wpfront-user-role-editor-options';
40
  const PLUGIN_SLUG = 'wpfront-user-role-editor';
41
 
42
  public static $DYNAMIC_CAPS = array();
43
- public static $ROLE_CAPS = array('list_roles', 'create_roles', 'edit_roles', 'delete_roles', 'edit_role_menus', 'edit_posts_role_permissions', 'edit_pages_role_permissions');
44
  public static $DEFAULT_ROLES = array('administrator', 'editor', 'author', 'contributor', 'subscriber');
45
  public static $STANDARD_CAPABILITIES = array(
46
  'Dashboard' => array(
@@ -147,6 +151,7 @@ if (!class_exists('WPFront_User_Role_Editor')) {
147
  protected $objRestore;
148
  protected $objAssignUsers;
149
  protected $objGoPro;
 
150
 
151
  function __construct() {
152
  parent::__construct(__FILE__, self::PLUGIN_SLUG);
@@ -161,6 +166,8 @@ if (!class_exists('WPFront_User_Role_Editor')) {
161
  $this->objAddEdit = new WPFront_User_Role_Editor_Add_Edit($this);
162
  $this->objRestore = new WPFront_User_Role_Editor_Restore($this);
163
  $this->objAssignUsers = new WPFront_User_Role_Editor_Assign_Roles($this);
 
 
164
  }
165
  }
166
 
@@ -178,7 +185,8 @@ if (!class_exists('WPFront_User_Role_Editor')) {
178
  public function admin_init() {
179
  register_setting(self::OPTIONS_GROUP_NAME, self::OPTION_NAME);
180
 
181
- $this->rename_role_capabilities();
 
182
  }
183
 
184
  protected function add_submenu_page($position, $title, $name, $capability, $slug, $func, $scripts = NULL, $styles = NULL, $controller = NULL) {
@@ -290,25 +298,25 @@ if (!class_exists('WPFront_User_Role_Editor')) {
290
  }
291
  }
292
 
293
- public function create_nonce() {
294
  if (empty($_SERVER['REQUEST_URI'])) {
295
  $this->permission_denied();
296
  exit;
297
  return;
298
  }
299
  $referer = $_SERVER['REQUEST_URI'];
300
- echo '<input type = "hidden" name = "_wpnonce" value = "' . wp_create_nonce($referer) . '" />';
301
- echo '<input type = "hidden" name = "_wp_http_referer" value = "' . $referer . '" />';
302
  }
303
 
304
- public function verify_nonce() {
305
  if (strtolower($_SERVER['REQUEST_METHOD']) === 'post') {
306
  $flag = TRUE;
307
- if (empty($_POST['_wpnonce'])) {
308
  $flag = FALSE;
309
- } else if (empty($_POST['_wp_http_referer'])) {
310
  $flag = FALSE;
311
- } else if (!wp_verify_nonce($_POST['_wpnonce'], $_POST['_wp_http_referer'])) {
312
  $flag = FALSE;
313
  }
314
 
@@ -579,6 +587,7 @@ require_once(plugin_dir_path(__FILE__) . "class-wpfront-user-role-editor-delete.
579
  require_once(plugin_dir_path(__FILE__) . "class-wpfront-user-role-editor-restore.php");
580
  require_once(plugin_dir_path(__FILE__) . "class-wpfront-user-role-editor-assign-roles.php");
581
  require_once(plugin_dir_path(__FILE__) . "class-wpfront-user-role-editor-go-pro.php");
 
582
  require_once(plugin_dir_path(__FILE__) . "integration/plugins/class-wpfront-user-role-editor-plugin-integration.php");
583
 
584
 
21
  SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
22
  */
23
 
24
+ if (!defined('ABSPATH')) {
25
+ exit();
26
+ }
27
+
28
  require_once(plugin_dir_path(__FILE__) . "base/class-wpfront-base.php");
29
 
30
  if (!class_exists('WPFront_User_Role_Editor')) {
38
  class WPFront_User_Role_Editor extends WPFront_Base_URE {
39
 
40
  //Constants
41
+ const VERSION = '2.5';
42
  const OPTIONS_GROUP_NAME = 'wpfront-user-role-editor-options-group';
43
  const OPTION_NAME = 'wpfront-user-role-editor-options';
44
  const PLUGIN_SLUG = 'wpfront-user-role-editor';
45
 
46
  public static $DYNAMIC_CAPS = array();
47
+ public static $ROLE_CAPS = array('list_roles', 'create_roles', 'edit_roles', 'delete_roles', 'edit_role_menus', 'edit_posts_role_permissions', 'edit_pages_role_permissions', 'edit_nav_menu_permissions');
48
  public static $DEFAULT_ROLES = array('administrator', 'editor', 'author', 'contributor', 'subscriber');
49
  public static $STANDARD_CAPABILITIES = array(
50
  'Dashboard' => array(
151
  protected $objRestore;
152
  protected $objAssignUsers;
153
  protected $objGoPro;
154
+ protected $objNavMenu = NULL;
155
 
156
  function __construct() {
157
  parent::__construct(__FILE__, self::PLUGIN_SLUG);
166
  $this->objAddEdit = new WPFront_User_Role_Editor_Add_Edit($this);
167
  $this->objRestore = new WPFront_User_Role_Editor_Restore($this);
168
  $this->objAssignUsers = new WPFront_User_Role_Editor_Assign_Roles($this);
169
+ if ($this->objNavMenu === NULL)
170
+ $this->objNavMenu = new WPFront_User_Role_Editor_Nav_Menu($this);
171
  }
172
  }
173
 
185
  public function admin_init() {
186
  register_setting(self::OPTIONS_GROUP_NAME, self::OPTION_NAME);
187
 
188
+ //removed in version 2.5
189
+ //$this->rename_role_capabilities();
190
  }
191
 
192
  protected function add_submenu_page($position, $title, $name, $capability, $slug, $func, $scripts = NULL, $styles = NULL, $controller = NULL) {
298
  }
299
  }
300
 
301
+ public function create_nonce($id = '') {
302
  if (empty($_SERVER['REQUEST_URI'])) {
303
  $this->permission_denied();
304
  exit;
305
  return;
306
  }
307
  $referer = $_SERVER['REQUEST_URI'];
308
+ echo '<input type = "hidden" name = "_wpnonce' . $id . '" value = "' . wp_create_nonce($referer . $id) . '" />';
309
+ echo '<input type = "hidden" name = "_wp_http_referer' . $id . '" value = "' . $referer . '" />';
310
  }
311
 
312
+ public function verify_nonce($id = '') {
313
  if (strtolower($_SERVER['REQUEST_METHOD']) === 'post') {
314
  $flag = TRUE;
315
+ if (empty($_POST['_wpnonce' . $id])) {
316
  $flag = FALSE;
317
+ } else if (empty($_POST['_wp_http_referer' . $id])) {
318
  $flag = FALSE;
319
+ } else if (!wp_verify_nonce($_POST['_wpnonce' . $id], $_POST['_wp_http_referer' . $id] . $id)) {
320
  $flag = FALSE;
321
  }
322
 
587
  require_once(plugin_dir_path(__FILE__) . "class-wpfront-user-role-editor-restore.php");
588
  require_once(plugin_dir_path(__FILE__) . "class-wpfront-user-role-editor-assign-roles.php");
589
  require_once(plugin_dir_path(__FILE__) . "class-wpfront-user-role-editor-go-pro.php");
590
+ require_once(plugin_dir_path(__FILE__) . "class-wpfront-user-role-editor-nav-menu.php");
591
  require_once(plugin_dir_path(__FILE__) . "integration/plugins/class-wpfront-user-role-editor-plugin-integration.php");
592
 
593
 
classes/entities/class-wpfront-user-role-editor-entity-options.php CHANGED
@@ -1,5 +1,9 @@
1
  <?php
2
 
 
 
 
 
3
  require_once(plugin_dir_path(__FILE__) . "../class-wpfront-user-role-editor-entity-base.php");
4
 
5
  if (!class_exists('WPFront_User_Role_Editor_Entity_Options')) {
@@ -22,12 +26,12 @@ if (!class_exists('WPFront_User_Role_Editor_Entity_Options')) {
22
  $this->db_data_field('option_value', 'longtext'),
23
  );
24
  }
25
-
26
  public function get_option($key) {
27
  $entity = $this->get_by_option_name($key);
28
  if($entity === NULL)
29
  return NULL;
30
-
31
  return $entity->get_option_value();
32
  }
33
 
@@ -40,19 +44,20 @@ if (!class_exists('WPFront_User_Role_Editor_Entity_Options')) {
40
  $entity->set_option_value($value);
41
  $entity->save();
42
  }
43
-
44
  public function delete_option($key) {
45
  $entity = $this->get_by_option_name($key);
46
  if($entity !== NULL)
47
  $entity->delete();
48
  }
49
-
50
  public static function uninstall() {
51
  self::$UNINSTALL = TRUE;
52
-
53
  $entity = new WPFront_User_Role_Editor_Entity_Options();
54
  $entity->uninstall_action();
55
  }
 
56
  }
57
 
58
  }
1
  <?php
2
 
3
+ if (!defined('ABSPATH')) {
4
+ exit();
5
+ }
6
+
7
  require_once(plugin_dir_path(__FILE__) . "../class-wpfront-user-role-editor-entity-base.php");
8
 
9
  if (!class_exists('WPFront_User_Role_Editor_Entity_Options')) {
26
  $this->db_data_field('option_value', 'longtext'),
27
  );
28
  }
29
+
30
  public function get_option($key) {
31
  $entity = $this->get_by_option_name($key);
32
  if($entity === NULL)
33
  return NULL;
34
+
35
  return $entity->get_option_value();
36
  }
37
 
44
  $entity->set_option_value($value);
45
  $entity->save();
46
  }
47
+
48
  public function delete_option($key) {
49
  $entity = $this->get_by_option_name($key);
50
  if($entity !== NULL)
51
  $entity->delete();
52
  }
53
+
54
  public static function uninstall() {
55
  self::$UNINSTALL = TRUE;
56
+
57
  $entity = new WPFront_User_Role_Editor_Entity_Options();
58
  $entity->uninstall_action();
59
  }
60
+
61
  }
62
 
63
  }
classes/integration/plugins/class-wpfront-user-role-editor-plugin-integration.php CHANGED
@@ -22,6 +22,10 @@
22
  SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
23
  */
24
 
 
 
 
 
25
  if (!class_exists('WPFront_User_Role_Editor_Plugin_Integration')) {
26
 
27
  /**
@@ -44,7 +48,7 @@ if (!class_exists('WPFront_User_Role_Editor_Plugin_Integration')) {
44
  add_filter("wpfront_user_role_editor_{$slug}_integration_ready", array($this, '_integration_ready'));
45
  add_filter("wpfront_user_role_editor_{$slug}_translate_capability", array($this, '_translate_capability'));
46
  }
47
-
48
  public function _init($params) {
49
  $this->initialized = TRUE;
50
  $this->init($params);
22
  SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
23
  */
24
 
25
+ if (!defined('ABSPATH')) {
26
+ exit();
27
+ }
28
+
29
  if (!class_exists('WPFront_User_Role_Editor_Plugin_Integration')) {
30
 
31
  /**
48
  add_filter("wpfront_user_role_editor_{$slug}_integration_ready", array($this, '_integration_ready'));
49
  add_filter("wpfront_user_role_editor_{$slug}_translate_capability", array($this, '_translate_capability'));
50
  }
51
+
52
  public function _init($params) {
53
  $this->initialized = TRUE;
54
  $this->init($params);
classes/integration/plugins/duplicator/class-wpfront-user-role-editor-plugin-duplicator.php CHANGED
@@ -21,6 +21,10 @@
21
  SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
22
  */
23
 
 
 
 
 
24
  if (!class_exists('WPFront_User_Role_Editor_Plugin_Duplicator')) {
25
 
26
  /**
@@ -32,11 +36,11 @@ if (!class_exists('WPFront_User_Role_Editor_Plugin_Duplicator')) {
32
  class WPFront_User_Role_Editor_Plugin_Duplicator extends WPFront_User_Role_Editor_Plugin_Integration {
33
 
34
  private static $slug = 'duplicator';
35
-
36
  public function __construct() {
37
  parent::__construct(self::$slug);
38
  }
39
-
40
  protected function init($params) {
41
  $admin_role = get_role('administrator');
42
  $caps = array();
@@ -48,14 +52,13 @@ if (!class_exists('WPFront_User_Role_Editor_Plugin_Duplicator')) {
48
 
49
  add_role(self::$slug, 'Duplicator', $caps);
50
  }
51
-
52
  protected function translate_capability($capability) {
53
  return self::$slug . '_' . $capability;
54
  }
55
-
56
  }
57
-
58
- new WPFront_User_Role_Editor_Plugin_Duplicator();
59
 
 
60
  }
61
 
21
  SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
22
  */
23
 
24
+ if (!defined('ABSPATH')) {
25
+ exit();
26
+ }
27
+
28
  if (!class_exists('WPFront_User_Role_Editor_Plugin_Duplicator')) {
29
 
30
  /**
36
  class WPFront_User_Role_Editor_Plugin_Duplicator extends WPFront_User_Role_Editor_Plugin_Integration {
37
 
38
  private static $slug = 'duplicator';
39
+
40
  public function __construct() {
41
  parent::__construct(self::$slug);
42
  }
43
+
44
  protected function init($params) {
45
  $admin_role = get_role('administrator');
46
  $caps = array();
52
 
53
  add_role(self::$slug, 'Duplicator', $caps);
54
  }
55
+
56
  protected function translate_capability($capability) {
57
  return self::$slug . '_' . $capability;
58
  }
59
+
60
  }
 
 
61
 
62
+ new WPFront_User_Role_Editor_Plugin_Duplicator();
63
  }
64
 
css/nav-menu.css ADDED
@@ -0,0 +1,19 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ p.description.description-wide span.user-restriction-container {
2
+ display: block;
3
+ }
4
+
5
+ p.description.description-wide span.user-restriction-container label {
6
+ font-style: normal;
7
+ float: left;
8
+ width: 50%;
9
+ }
10
+
11
+ p.description.description-wide span.user-restriction-container span.roles-container {
12
+ display: inline-block;
13
+ width: 100%;
14
+ margin-top: 3px;
15
+ }
16
+
17
+ p.description.description-wide span.user-restriction-container span.roles-container.hidden {
18
+ display: none;
19
+ }
css/options.css CHANGED
@@ -1,3 +1,3 @@
1
- #icon-wpfront-user-role-editor {
2
- background: url("../images/settings32x32.png") no-repeat scroll 0 0 rgba(0, 0, 0, 0);
3
  }
1
+ #icon-wpfront-user-role-editor {
2
+ background: url("../images/settings32x32.png") no-repeat scroll 0 0 rgba(0, 0, 0, 0);
3
  }
css/style.css CHANGED
@@ -1,161 +1,161 @@
1
- /*
2
- WPFront User Role Editor Plugin
3
- Copyright (C) 2014, WPFront.com
4
- Website: wpfront.com
5
- Contact: syam@wpfront.com
6
-
7
- WPFront User Role Editor Plugin is distributed under the GNU General Public License, Version 3,
8
- June 2007. Copyright (C) 2007 Free Software Foundation, Inc., 51 Franklin
9
- St, Fifth Floor, Boston, MA 02110, USA
10
-
11
- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
12
- ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
13
- WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
14
- DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
15
- ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
16
- (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
17
- LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
18
- ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
19
- (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
20
- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
21
- */
22
-
23
- #adminmenu ul.wp-submenu li a span.wpfront-go-pro {
24
- color: #F18500;
25
- }
26
-
27
- #adminmenu ul.wp-submenu li.current a.current span.wpfront-go-pro {
28
- color: inherit;
29
- }
30
-
31
- div.wrap div.footer {
32
- text-align: center;
33
- }
34
-
35
- #wpfront-user-role-editor-options table div.options-list {
36
- float: left;
37
- width: 200px;
38
- }
39
-
40
- div.list-roles img.user-default {
41
- width: 16px;
42
- height: 16px;
43
- }
44
-
45
- div.list-roles table div.row-actions {
46
- /*white-space: nowrap;*/
47
- }
48
-
49
- @media screen and (max-width:782px) {
50
- div.list-roles table .column-roletype,
51
- div.list-roles table .column-userdefault,
52
- div.list-roles table .column-usercount,
53
- div.list-roles table .column-capscount,
54
- div.list-roles table .column-edited_menu_column_key {
55
- display: none;
56
- }
57
- }
58
-
59
- div.role-add-new form#createuser table.sub-head {
60
- width: 100%;
61
- }
62
-
63
- div.role-add-new form#createuser table.sub-head th.sub-head {
64
- text-align: left;
65
- padding: 0px;
66
- }
67
-
68
- div.role-add-new form#createuser table.sub-head th.sub-head h3 {
69
- }
70
-
71
- div.role-add-new form#createuser table.sub-head td.sub-head-controls {
72
- text-align: right;
73
- padding: 0px;
74
- }
75
-
76
- div.role-add-new form#createuser table.sub-head td.sub-head-controls div {
77
- display: inline-block;
78
- vertical-align: top;
79
- }
80
-
81
- div.role-add-new form#createuser table.sub-head td.sub-head-controls div.spacer {
82
- width: 10px;
83
- height: 0px;
84
- }
85
-
86
- div.role-add-new form#createuser table.sub-head td.sub-head-controls input.select-all, div.role-add-new form#createuser table.sub-head td.sub-head-controls input.select-none {
87
- width: 100px;
88
- }
89
-
90
- #wpbody-content div.role-add-new div.metabox-holder {
91
- padding-top: 0px;
92
- }
93
-
94
- div.role-add-new div.metabox-holder div.postbox {
95
- margin-bottom: 8px;
96
- }
97
-
98
- div.role-add-new div.metabox-holder .deprecated {
99
- filter: alpha(opacity=80);
100
- opacity: 0.8;
101
- }
102
-
103
- div.role-add-new div.metabox-holder div.postbox h3.hndle {
104
-
105
- }
106
-
107
- div.role-add-new div.metabox-holder div.postbox div.inside div.main div {
108
- padding: 2px 0px;
109
- display: inline-block;
110
- width: 250px;
111
- }
112
-
113
- div.role-add-new div.metabox-holder div.postbox div.inside div.main div.no-capability {
114
- width: auto;
115
- }
116
-
117
- div.role-add-new div.metabox-holder div.postbox label {
118
- vertical-align: top;
119
- max-width: 205px;
120
- overflow: hidden;
121
- display: inline-block;
122
- white-space: nowrap;
123
- text-overflow: ellipsis;
124
- }
125
-
126
- div.role-add-new div.metabox-holder div.postbox h3.hndle label {
127
- max-width: 85%;
128
- }
129
-
130
- div.role-add-new div.metabox-holder div.postbox div.main img.help {
131
- width: 12px;
132
- height: 12px;
133
- opacity: 0.8;
134
- }
135
-
136
- div.role-add-new div.footer {
137
- text-align: center;
138
- }
139
-
140
- div.role-restore table.form-table td div.restore-role-button-container,
141
- div.role-restore table.form-table td div.restore-role-loader,
142
- div.role-restore table.form-table td div.restore-role-success {
143
- display: none;
144
- }
145
-
146
- div.wrap.assign-roles div.role-list div.role-list-item {
147
- padding-bottom: 5px;
148
- }
149
-
150
- div.wrap.go-pro div.license-container {
151
- margin-bottom: 25px;
152
- }
153
-
154
- div.wrap.go-pro #license_key {
155
- padding-top: 5px;
156
- padding-bottom: 5px;
157
- }
158
-
159
- div.wrap.go-pro div.license-container table.form-table td.expired {
160
- color: red;
161
- }
1
+ /*
2
+ WPFront User Role Editor Plugin
3
+ Copyright (C) 2014, WPFront.com
4
+ Website: wpfront.com
5
+ Contact: syam@wpfront.com
6
+
7
+ WPFront User Role Editor Plugin is distributed under the GNU General Public License, Version 3,
8
+ June 2007. Copyright (C) 2007 Free Software Foundation, Inc., 51 Franklin
9
+ St, Fifth Floor, Boston, MA 02110, USA
10
+
11
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
12
+ ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
13
+ WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
14
+ DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
15
+ ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
16
+ (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
17
+ LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
18
+ ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
19
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
20
+ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
21
+ */
22
+
23
+ #adminmenu ul.wp-submenu li a span.wpfront-go-pro {
24
+ color: #F18500;
25
+ }
26
+
27
+ #adminmenu ul.wp-submenu li.current a.current span.wpfront-go-pro {
28
+ color: inherit;
29
+ }
30
+
31
+ div.wrap div.footer {
32
+ text-align: center;
33
+ }
34
+
35
+ #wpfront-user-role-editor-options table div.options-list {
36
+ float: left;
37
+ width: 200px;
38
+ }
39
+
40
+ div.list-roles img.user-default {
41
+ width: 16px;
42
+ height: 16px;
43
+ }
44
+
45
+ div.list-roles table div.row-actions {
46
+ /*white-space: nowrap;*/
47
+ }
48
+
49
+ @media screen and (max-width:782px) {
50
+ div.list-roles table .column-roletype,
51
+ div.list-roles table .column-userdefault,
52
+ div.list-roles table .column-usercount,
53
+ div.list-roles table .column-capscount,
54
+ div.list-roles table .column-edited_menu_column_key {
55
+ display: none;
56
+ }
57
+ }
58
+
59
+ div.role-add-new form#createuser table.sub-head {
60
+ width: 100%;
61
+ }
62
+
63
+ div.role-add-new form#createuser table.sub-head th.sub-head {
64
+ text-align: left;
65
+ padding: 0px;
66
+ }
67
+
68
+ div.role-add-new form#createuser table.sub-head th.sub-head h3 {
69
+ }
70
+
71
+ div.role-add-new form#createuser table.sub-head td.sub-head-controls {
72
+ text-align: right;
73
+ padding: 0px;
74
+ }
75
+
76
+ div.role-add-new form#createuser table.sub-head td.sub-head-controls div {
77
+ display: inline-block;
78
+ vertical-align: top;
79
+ }
80
+
81
+ div.role-add-new form#createuser table.sub-head td.sub-head-controls div.spacer {
82
+ width: 10px;
83
+ height: 0px;
84
+ }
85
+
86
+ div.role-add-new form#createuser table.sub-head td.sub-head-controls input.select-all, div.role-add-new form#createuser table.sub-head td.sub-head-controls input.select-none {
87
+ width: 100px;
88
+ }
89
+
90
+ #wpbody-content div.role-add-new div.metabox-holder {
91
+ padding-top: 0px;
92
+ }
93
+
94
+ div.role-add-new div.metabox-holder div.postbox {
95
+ margin-bottom: 8px;
96
+ }
97
+
98
+ div.role-add-new div.metabox-holder .deprecated {
99
+ filter: alpha(opacity=80);
100
+ opacity: 0.8;
101
+ }
102
+
103
+ div.role-add-new div.metabox-holder div.postbox h3.hndle {
104
+
105
+ }
106
+
107
+ div.role-add-new div.metabox-holder div.postbox div.inside div.main div {
108
+ padding: 2px 0px;
109
+ display: inline-block;
110
+ width: 250px;
111
+ }
112
+
113
+ div.role-add-new div.metabox-holder div.postbox div.inside div.main div.no-capability {
114
+ width: auto;
115
+ }
116
+
117
+ div.role-add-new div.metabox-holder div.postbox label {
118
+ vertical-align: top;
119
+ max-width: 205px;
120
+ overflow: hidden;
121
+ display: inline-block;
122
+ white-space: nowrap;
123
+ text-overflow: ellipsis;
124
+ }
125
+
126
+ div.role-add-new div.metabox-holder div.postbox h3.hndle label {
127
+ max-width: 85%;
128
+ }
129
+
130
+ div.role-add-new div.metabox-holder div.postbox div.main img.help {
131
+ width: 12px;
132
+ height: 12px;
133
+ opacity: 0.8;
134
+ }
135
+
136
+ div.role-add-new div.footer {
137
+ text-align: center;
138
+ }
139
+
140
+ div.role-restore table.form-table td div.restore-role-button-container,
141
+ div.role-restore table.form-table td div.restore-role-loader,
142
+ div.role-restore table.form-table td div.restore-role-success {
143
+ display: none;
144
+ }
145
+
146
+ div.wrap.assign-roles div.role-list div.role-list-item {
147
+ padding-bottom: 5px;
148
+ }
149
+
150
+ div.wrap.go-pro div.license-container {
151
+ margin-bottom: 25px;
152
+ }
153
+
154
+ div.wrap.go-pro #license_key {
155
+ padding-top: 5px;
156
+ padding-bottom: 5px;
157
+ }
158
+
159
+ div.wrap.go-pro div.license-container table.form-table td.expired {
160
+ color: red;
161
+ }
js/nav-menu.js ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ (function ($) {
2
+ var ROLES_USERS = 4;
3
+
4
+ $(function () {
5
+ $('#menu-to-edit').on('change', 'input.user-restriction-type', function () {
6
+ var $this = $(this);
7
+ if ($this.val() == ROLES_USERS) {
8
+ $this.closest('span.user-restriction-container').find('span.roles-container').removeClass('hidden');
9
+ } else {
10
+ $this.closest('span.user-restriction-container').find('span.roles-container').addClass('hidden');
11
+ }
12
+ });
13
+ });
14
+ })(jQuery);
languages/wpfront-user-role-editor-pt_BR/wpfront-user-role-editor-pt_BR.po CHANGED
@@ -1,1782 +1,1782 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: WPFront Notification Bar\n"
4
- "POT-Creation-Date: 2014-10-17 22:13-0700\n"
5
- "PO-Revision-Date: 2015-01-07 17:14-0300\n"
6
- "Last-Translator: Mauro Mascarenhas <mauro.mascarenhas@nintersoft.ml>\n"
7
- "Language-Team: WPFront <contact@wpfront.com>\n"
8
- "MIME-Version: 1.0\n"
9
- "Content-Type: text/plain; charset=UTF-8\n"
10
- "Content-Transfer-Encoding: 8bit\n"
11
- "X-Generator: Poedit 1.7.1\n"
12
- "X-Poedit-Basepath: .\n"
13
- "Plural-Forms: nplurals=2; plural=(n > 1);\n"
14
- "X-Poedit-SourceCharset: UTF-8\n"
15
- "X-Poedit-KeywordsList: __;_e\n"
16
- "Language: pt_BR\n"
17
- "X-Poedit-SearchPath-0: ..\n"
18
-
19
- #: ../classes/base/class-wpfront-base-menu.php:52
20
- #: ../templates/personal-pro/menu-editor.php:132
21
- msgid "Name"
22
- msgstr "Nome"
23
-
24
- #: ../classes/base/class-wpfront-base-menu.php:53
25
- msgid "Version"
26
- msgstr "Versão"
27
-
28
- #: ../classes/base/class-wpfront-base-menu.php:54
29
- msgid "Rating"
30
- msgstr "Classificação"
31
-
32
- #: ../classes/base/class-wpfront-base-menu.php:55
33
- msgid "Description"
34
- msgstr "Descrição"
35
-
36
- #: ../classes/base/class-wpfront-base-menu.php:69
37
- #, php-format
38
- msgid "based on %s rating(s)"
39
- msgstr "baseado em %s estrela(s)"
40
-
41
- #: ../classes/base/class-wpfront-base-menu.php:105
42
- msgid "Unable to communicate with WordPress.org"
43
- msgstr "Não pôde comunicar-se à WordPress.org"
44
-
45
- #: ../classes/base/class-wpfront-base-menu.php:123
46
- #: ../classes/base/class-wpfront-base-menu.php:217
47
- msgid "WPFront Plugins"
48
- msgstr "WPFront Plugins"
49
-
50
- #: ../classes/base/class-wpfront-base-menu.php:147
51
- #, php-format
52
- msgid "By %s"
53
- msgstr "Por %s"
54
-
55
- #: ../classes/base/class-wpfront-base-menu.php:154
56
- #, php-format
57
- msgid "More information about %s"
58
- msgstr "Mais informações sobre %s"
59
-
60
- #: ../classes/base/class-wpfront-base-menu.php:154
61
- #: ../classes/class-wpfront-user-role-editor-go-pro.php:217
62
- msgid "Details"
63
- msgstr "Detalhes"
64
-
65
- #: ../classes/base/class-wpfront-base-menu.php:163
66
- #, php-format
67
- msgid "Install %s"
68
- msgstr "Instalar %s"
69
-
70
- #: ../classes/base/class-wpfront-base-menu.php:163
71
- msgid "Install Now"
72
- msgstr "Instale agora"
73
-
74
- #: ../classes/base/class-wpfront-base-menu.php:168
75
- #, php-format
76
- msgid "Update to version %s"
77
- msgstr "Atualizar para a versão %s"
78
-
79
- #: ../classes/base/class-wpfront-base-menu.php:168
80
- msgid "Update Now"
81
- msgstr "Atualizar Agora"
82
-
83
- #: ../classes/base/class-wpfront-base-menu.php:173
84
- msgid "This plugin is already installed and is up to date"
85
- msgstr "Este plugin já está instalado e atualizado"
86
-
87
- #: ../classes/base/class-wpfront-base-menu.php:173
88
- msgid "Installed"
89
- msgstr "Instalado"
90
-
91
- #: ../classes/base/class-wpfront-base-menu.php:175
92
- #: ../classes/base/class-wpfront-base.php:109
93
- #: ../classes/business-pro/class-wpfront-user-role-editor-business-pro.php:104
94
- #: ../classes/class-wpfront-user-role-editor-options.php:198
95
- #: ../classes/class-wpfront-user-role-editor.php:205
96
- msgid "Settings"
97
- msgstr "Configurações"
98
-
99
- #: ../classes/base/class-wpfront-base-menu.php:177
100
- #: ../classes/personal-pro/class-wpfront-user-role-editor-personal-pro.php:88
101
- #: ../templates/go-pro.php:65 ../templates/go-pro.php:66
102
- msgid "Activate"
103
- msgstr "Ativar"
104
-
105
- #: ../classes/base/class-wpfront-base-menu.php:199
106
- #: ../classes/class-wpfront-user-role-editor.php:314
107
- msgid "Feedback"
108
- msgstr "Feedback"
109
-
110
- #: ../classes/base/class-wpfront-base-menu.php:216
111
- msgid "WPFront"
112
- msgstr "WPFront"
113
-
114
- #: ../classes/base/class-wpfront-base-menu.php:217
115
- msgid "All Plugins"
116
- msgstr "Todos os plugins"
117
-
118
- #: ../classes/base/class-wpfront-base.php:138
119
- #: ../classes/class-wpfront-user-role-editor.php:263
120
- msgid "You do not have sufficient permissions to access this page."
121
- msgstr "Você não tem permissões suficientes para acessar esta página."
122
-
123
- #: ../classes/base/class-wpfront-base.php:158
124
- msgid ""
125
- "If you have a caching plugin, clear the cache for the new settings to take effect."
126
- msgstr ""
127
- "Se você possui um plugin que faz cache, limpe a cache para as novas mudanças terem "
128
- "efeito."
129
-
130
- #: ../classes/base/class-wpfront-base.php:205
131
- #: ../templates/personal-pro/menu-editor.php:226
132
- msgid "Save Changes"
133
- msgstr "Salvar alterações"
134
-
135
- #: ../classes/business-pro/class-wpfront-user-role-editor-business-pro.php:81
136
- #: ../classes/business-pro/class-wpfront-user-role-editor-business-pro.php:84
137
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:74
138
- #: ../classes/class-wpfront-user-role-editor.php:202
139
- #: ../classes/class-wpfront-user-role-editor.php:209 ../templates/list-roles.php:37
140
- msgid "Roles"
141
- msgstr "Funções"
142
-
143
- #: ../classes/business-pro/class-wpfront-user-role-editor-business-pro.php:84
144
- #: ../classes/class-wpfront-user-role-editor.php:202
145
- msgid "All Roles"
146
- msgstr "Todas as funções"
147
-
148
- #: ../classes/business-pro/class-wpfront-user-role-editor-business-pro.php:89
149
- #: ../classes/class-wpfront-user-role-editor.php:203 ../templates/add-edit-role.php:35
150
- #: ../templates/add-edit-role.php:154
151
- msgid "Add New Role"
152
- msgstr "Adicionar nova função"
153
-
154
- #: ../classes/business-pro/class-wpfront-user-role-editor-business-pro.php:89
155
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:77
156
- #: ../classes/class-wpfront-user-role-editor.php:203 ../templates/add-edit-role.php:37
157
- #: ../templates/list-roles.php:40
158
- msgid "Add New"
159
- msgstr "Adicionar nova"
160
-
161
- #: ../classes/business-pro/class-wpfront-user-role-editor-business-pro.php:94
162
- #: ../classes/class-wpfront-user-role-editor.php:204 ../templates/restore-role.php:34
163
- msgid "Restore Role"
164
- msgstr "Restaurar função"
165
-
166
- #: ../classes/business-pro/class-wpfront-user-role-editor-business-pro.php:94
167
- #: ../classes/class-wpfront-user-role-editor.php:204 ../templates/restore-role.php:46
168
- msgid "Restore"
169
- msgstr "Restaurar"
170
-
171
- #: ../classes/business-pro/class-wpfront-user-role-editor-business-pro.php:99
172
- #: ../templates/business-pro/sync-roles.php:11
173
- #: ../templates/business-pro/sync-roles.php:297
174
- msgid "Sync Roles"
175
- msgstr "Sincronizar regras"
176
-
177
- #: ../classes/business-pro/class-wpfront-user-role-editor-business-pro.php:99
178
- msgid "Sync"
179
- msgstr "Sincronizar"
180
-
181
- #: ../classes/business-pro/class-wpfront-user-role-editor-business-pro.php:110
182
- #: ../classes/class-wpfront-user-role-editor.php:188
183
- msgid "Go Pro"
184
- msgstr "Atualizar para Pro"
185
-
186
- #: ../classes/business-pro/class-wpfront-user-role-editor-business-pro.php:121
187
- msgid ""
188
- "You have a large network of sites (usually 10,000 or more sites). Roles "
189
- "functionalities will be CPU and memory intensive on large networks. Use the settings "
190
- "screen to turn on these CPU and memory intensive functionalities."
191
- msgstr ""
192
- "Você tem uma vasta rede de sites (normalmente 10.000 ou mais sites). As "
193
- "funcionalidades irão ser intensas na CPU e na memória em grandes redes. Use a tela "
194
- "de configurações para ligar esta funcionalidade de uso intensivo de CPU e memória."
195
-
196
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-add-edit.php:213
197
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:114
198
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:148
199
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:162
200
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-restore.php:84
201
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:223
202
- #: ../classes/class-wpfront-user-role-editor-add-edit.php:303
203
- #: ../classes/class-wpfront-user-role-editor-assign-roles.php:296
204
- #: ../classes/class-wpfront-user-role-editor-list.php:351
205
- #: ../classes/class-wpfront-user-role-editor-list.php:385
206
- #: ../classes/class-wpfront-user-role-editor-list.php:402
207
- #: ../classes/class-wpfront-user-role-editor-options.php:191
208
- #: ../classes/class-wpfront-user-role-editor-options.php:233
209
- #: ../classes/class-wpfront-user-role-editor-restore.php:165
210
- #: ../classes/personal-pro/class-wpfront-user-role-editor-export.php:126
211
- #: ../classes/personal-pro/class-wpfront-user-role-editor-import.php:225
212
- #: ../classes/personal-pro/class-wpfront-user-role-editor-menu-editor.php:563
213
- msgid "Overview"
214
- msgstr "Revisão"
215
-
216
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-add-edit.php:215
217
- msgid "This screen allows you to add a new role within your network."
218
- msgstr "Esta tela permite que você adicione uma nova função em sua rede."
219
-
220
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-add-edit.php:218
221
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:119
222
- #: ../classes/class-wpfront-user-role-editor-add-edit.php:308
223
- #: ../classes/class-wpfront-user-role-editor-list.php:356
224
- msgid ""
225
- "You can copy capabilities from existing roles using the Copy from drop down list. "
226
- "Select the role you want to copy from, then click Apply to copy the capabilities. "
227
- "You can select or deselect capabilities even after you copy."
228
- msgstr ""
229
- "Você pode copiar capacidades de regras existentes usando a Cópia da lista suspensa. "
230
- "Selecione a regra que você deseja copiar, então clique em Aplicar para copiar estas "
231
- "capacidades. Você pode selecionar ou não selecionar capacidades mesmo após a cópia."
232
-
233
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-add-edit.php:223
234
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:124
235
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:179
236
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-roles-list-table.php:161
237
- #: ../classes/class-wpfront-user-role-editor-add-edit.php:313
238
- #: ../classes/class-wpfront-user-role-editor-list.php:218
239
- #: ../classes/class-wpfront-user-role-editor-list.php:361
240
- #: ../classes/class-wpfront-user-role-editor-list.php:414
241
- #: ../templates/add-edit-role.php:71
242
- msgid "Display Name"
243
- msgstr "Mostrar nome"
244
-
245
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-add-edit.php:225
246
- #: ../classes/class-wpfront-user-role-editor-add-edit.php:315
247
- msgid ""
248
- "Use the Display Name field to set the display name for the new role. WordPress uses "
249
- "display name to display this role within your site. This field is required."
250
- msgstr ""
251
- "Use o campo Mostrar nome para definir o nome a ser mostrado na nova regra. WordPress "
252
- "usa o Mostrar nome para mostrar esta regra em seu site. Este campo é necessário."
253
-
254
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-add-edit.php:230
255
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:131
256
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:174
257
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-roles-list-table.php:160
258
- #: ../classes/class-wpfront-user-role-editor-add-edit.php:320
259
- #: ../classes/class-wpfront-user-role-editor-list.php:221
260
- #: ../classes/class-wpfront-user-role-editor-list.php:368
261
- #: ../classes/class-wpfront-user-role-editor-list.php:419
262
- #: ../templates/add-edit-role.php:81
263
- msgid "Role Name"
264
- msgstr "Nome da função"
265
-
266
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-add-edit.php:232
267
- #: ../classes/class-wpfront-user-role-editor-add-edit.php:322
268
- msgid ""
269
- "Use the Role Name field to set the role name for the new role. WordPress uses role "
270
- "name to identify this role within your site. Once set role name cannot be changed. "
271
- "This field is required. This plugin will auto populate role name from the display "
272
- "name you have given, but you can change it."
273
- msgstr ""
274
- "Use o campo nome da função para definir o nome para a nova função. WordPress utiliza "
275
- "o nome da função para identificar esta regra em seu site. Uma vez definido, o nome "
276
- "da função não pode ser alterado. Este campo é necessário. Este plug-ins irá gerar o "
277
- "nome da função automaticamente através do Nome a ser mostrado que você deu, mas você "
278
- "pode alterá-lo."
279
-
280
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-add-edit.php:237
281
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:138
282
- #: ../classes/class-wpfront-user-role-editor-add-edit.php:327
283
- #: ../classes/class-wpfront-user-role-editor-list.php:233
284
- #: ../classes/class-wpfront-user-role-editor-list.php:375
285
- #: ../classes/class-wpfront-user-role-editor-list.php:439
286
- #: ../templates/add-edit-role.php:95
287
- msgid "Capabilities"
288
- msgstr "Capacidades"
289
-
290
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-add-edit.php:239
291
- #: ../classes/class-wpfront-user-role-editor-add-edit.php:329
292
- msgid ""
293
- "Capabilities are displayed as different groups for easy access. The Roles section "
294
- "displays capabilities created by this plugin. The Other Capabilities section "
295
- "displays non-standard capabilities within your site. These are usually created by "
296
- "plugins and themes. Use the check boxes to select the capabilities required for this "
297
- "new role."
298
- msgstr ""
299
- "Capacidades são mostradas como grupos diferentes para fácil acesso. A sessão de "
300
- "funções mostra capacidades criadas pelo plugin. As outras sessões de capacidades "
301
- "para capacidades não-padrão em são site. Estas são criadas normalmente por plug-ins "
302
- "e temas. Use as caixas de marcação para selecionar as capacidades requeridas para "
303
- "esta nova regra."
304
-
305
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-add-edit.php:248
306
- msgid "Documentation on Multisite Add New Role"
307
- msgstr "Documentação no Adicionar Função Multisite"
308
-
309
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:86
310
- #: ../templates/list-roles.php:62 ../templates/list-roles.php:64
311
- msgid "Search Roles"
312
- msgstr "Buscar funções"
313
-
314
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:116
315
- msgid "This screen allows you to edit a role within your network."
316
- msgstr "Esta tela permite que você edite uma regra em sua rede."
317
-
318
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:126
319
- #: ../classes/class-wpfront-user-role-editor-list.php:363
320
- msgid ""
321
- "Use the Display Name field to edit display name of the role. WordPress uses display "
322
- "name to display this role within your site. This field is required."
323
- msgstr ""
324
- "Use o campo Mostrar nome para editar o nome da função a ser mostrado. WordPress usa "
325
- "Mostrar nome para mostrar esta função em seu site. Este campo é obrigatório."
326
-
327
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:133
328
- #: ../classes/class-wpfront-user-role-editor-list.php:370
329
- msgid ""
330
- "Role Name is read only. WordPress uses role name to identify this role within your "
331
- "site."
332
- msgstr ""
333
- "O nome da função é apenas leitura. WordPress utiliza o nome da regra para "
334
- "identificar esta regra em seu site."
335
-
336
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:140
337
- #: ../classes/class-wpfront-user-role-editor-list.php:377
338
- msgid ""
339
- "Capabilities are displayed as different groups for easy access. The Roles section "
340
- "displays capabilities created by this plugin. The Other Capabilities section "
341
- "displays non-standard capabilities within your site. These are usually created by "
342
- "plugins and themes. Use the check boxes to select the capabilities required."
343
- msgstr ""
344
- "Capacidades são mostradas em grupos diferentes para fácil acesso. A sessão regras "
345
- "mostra capacidades criadas por este plugin. As outras capacidades da sessão mostra "
346
- "capacidades não-padrões de seu site. Estas são normalmente ciada por plug-ins e "
347
- "temas. Use as caixas de marcar para selecionar as capacidades necessárias."
348
-
349
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:150
350
- msgid "This screen allows you to delete roles from your network sites."
351
- msgstr "Esta tela permite que você delete funções de sua rede de sites."
352
-
353
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:153
354
- #: ../classes/class-wpfront-user-role-editor-list.php:390
355
- msgid ""
356
- "Use the Roles List screen to select the roles you want to delete. You can delete "
357
- "individual roles using the Delete row action link or delete multiple roles at the "
358
- "same time using the bulk action."
359
- msgstr ""
360
- "A tela de lista de funções de usuários serve para selecionar regras que você deseja "
361
- "excluir. Você pode excluir regras individuais usando a linha de ação Excluir ou "
362
- "excluir múltiplas funções ao mesmo tempo utilizando a função de marcação."
363
-
364
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:164
365
- msgid "This screen displays all the roles existing within your multisite network."
366
- msgstr "Esta tela mostra todas as funções existentes em sua rede multisites."
367
-
368
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:167
369
- #: ../classes/class-wpfront-user-role-editor-list.php:407
370
- msgid ""
371
- "To add a new role, click the Add New button at the top of the screen or Add New in "
372
- "the Roles menu section."
373
- msgstr ""
374
- "Para adicionar uma nova função, clique no botão Adicionar novo no topo da página ou "
375
- "Adicionar novo na sessão de Regras do menu."
376
-
377
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:172
378
- #: ../classes/class-wpfront-user-role-editor-list.php:412
379
- msgid "Columns"
380
- msgstr "Colunas"
381
-
382
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:176
383
- #: ../classes/class-wpfront-user-role-editor-list.php:421
384
- msgid "Is used by WordPress to identify this role."
385
- msgstr "É usado pelo WordPress para identificar esta regra."
386
-
387
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:181
388
- msgid ""
389
- "WordPress uses display name to display this role within the site. You can have "
390
- "different display names for the same role within the network."
391
- msgstr ""
392
- "WordPress usa o Mostrar nome para mostrar esta função em seu site. Você pode ter "
393
- "diferentes nomes para mostrar para a mesma regra em sua rede."
394
-
395
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:184
396
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-roles-list-table.php:162
397
- msgid "Role Type"
398
- msgstr "Tipo de regra"
399
-
400
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:186
401
- msgid "Displays whether that role is a built-in role or a custom role."
402
- msgstr "Mostra onde esta regra é construída ou uma regra personalizada."
403
-
404
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:189
405
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-roles-list-table.php:163
406
- msgid "Sites"
407
- msgstr "Sites"
408
-
409
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:191
410
- msgid ""
411
- "Display the sites that role belongs to. [All Sites] mean, that role is part of every "
412
- "site within the network. Else it will display the number of sites as a link. "
413
- "Clicking on the link will display the site list."
414
- msgstr ""
415
- "Mostra os sites onde as regras se aplicam. [Todos os site] significa que a regra é "
416
- "parte de todos os sites em sua rede. Em outro caso, isto irá mostrar o número de "
417
- "sites como um link. Clicando no link irá mostrar a lista de sites."
418
-
419
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:196
420
- #: ../classes/class-wpfront-user-role-editor-list.php:451
421
- msgid "Actions"
422
- msgstr "Ações"
423
-
424
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:198
425
- #: ../classes/class-wpfront-user-role-editor-list.php:453
426
- msgid ""
427
- "Hovering over a row in the roles list will display action links that allow you to "
428
- "manage roles. You can perform the following actions:"
429
- msgstr ""
430
- "Passando por cima de uma linha nas funções mostrara os links de ação que permite-o "
431
- "gerenciar as funções. Você pode realizar as seguintes ações:"
432
-
433
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:201
434
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-roles-list-table.php:222
435
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-roles-list-table.php:272
436
- #: ../classes/class-wpfront-user-role-editor-list.php:456
437
- #: ../templates/list-roles.php:98
438
- msgid "View"
439
- msgstr "Ver"
440
-
441
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:203
442
- #: ../classes/class-wpfront-user-role-editor-list.php:458
443
- msgid ""
444
- "Display details about the role. You can see the capabilities assigned for that role. "
445
- "View link will only appear when you do not have permission to edit that role."
446
- msgstr ""
447
- "Mostra detalhes sobre esta regra. Você pode ver capacidades assinadas para esta "
448
- "regra. O link ver aparecerá apenas quando você não tiver permissão para editar esta "
449
- "regra."
450
-
451
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:206
452
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-roles-list-table.php:219
453
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-roles-list-table.php:260
454
- #: ../classes/class-wpfront-user-role-editor-list.php:461
455
- #: ../templates/list-roles.php:98
456
- #: ../templates/personal-pro/post-type-permissions.php:28
457
- msgid "Edit"
458
- msgstr "Editar"
459
-
460
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:208
461
- #: ../classes/class-wpfront-user-role-editor-list.php:463
462
- msgid ""
463
- "Allows you to edit that role. You can see the capabilities assigned for that role "
464
- "and also edit them. Edit link will only appear when you have permission to edit that "
465
- "role."
466
- msgstr ""
467
- "Permite que você edite esta regra. Você poderá ver as capacidades assinadas para "
468
- "esta regra e também editá-las. O link de edição aparecerá apenas quando você tiver "
469
- "permissões para editar esta regra."
470
-
471
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:211
472
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-roles-list-table.php:110
473
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-roles-list-table.php:220
474
- #: ../classes/class-wpfront-user-role-editor-list.php:253
475
- #: ../classes/class-wpfront-user-role-editor-list.php:466
476
- #: ../templates/list-roles.php:101
477
- #: ../templates/personal-pro/post-type-permissions.php:29
478
- msgid "Delete"
479
- msgstr "Excluir"
480
-
481
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:213
482
- msgid "Allows you to delete that role."
483
- msgstr "Permite excluir esta regra."
484
-
485
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:225
486
- msgid "Documentation on Multisite Edit Role"
487
- msgstr "Documentação na edição de regras no multisite"
488
-
489
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:232
490
- msgid "Documentation on Multisite Delete Roles"
491
- msgstr "Documentação na exclusão de regras no multisite"
492
-
493
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:240
494
- msgid "Documentation on Multisite Roles"
495
- msgstr "Documentação de regras no multisite"
496
-
497
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-restore.php:44
498
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-restore.php:73
499
- #: ../classes/class-wpfront-user-role-editor-go-pro.php:174
500
- #: ../classes/class-wpfront-user-role-editor-go-pro.php:176
501
- #: ../classes/class-wpfront-user-role-editor-go-pro.php:196
502
- #: ../classes/class-wpfront-user-role-editor-go-pro.php:215
503
- #: ../classes/class-wpfront-user-role-editor-go-pro.php:224
504
- #: ../classes/class-wpfront-user-role-editor-restore.php:84
505
- #: ../templates/add-edit-role.php:45 ../templates/add-edit-role.php:53
506
- #: ../templates/business-pro/sync-roles.php:17
507
- msgid "ERROR"
508
- msgstr "ERRO"
509
-
510
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-restore.php:44
511
- msgid "Permission denied."
512
- msgstr "Permissão negada."
513
-
514
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-restore.php:71
515
- msgid "Partial Failure"
516
- msgstr "Falha parcial"
517
-
518
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-restore.php:86
519
- #: ../classes/class-wpfront-user-role-editor-restore.php:167
520
- msgid ""
521
- "This screen allow you to restore WordPress built-in roles to its standard capability "
522
- "settings."
523
- msgstr ""
524
- "A tela permite que você restaure as funções padrões do WordPress para suas opções de "
525
- "capacidade padrão."
526
-
527
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-restore.php:89
528
- #: ../classes/class-wpfront-user-role-editor-restore.php:170
529
- msgid "To restore a role, click the Restore button then Confirm."
530
- msgstr "Para restaurar uma função, clique no botão Restaurar e então confirme."
531
-
532
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-restore.php:98
533
- msgid "Documentation on Multisite Restore"
534
- msgstr "Documentação na restauração multisite"
535
-
536
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-roles-list-table.php:116
537
- msgid "No roles found."
538
- msgstr "Sem funções encontradas."
539
-
540
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-roles-list-table.php:142
541
- #, php-format
542
- msgid "All <span class=\"count\">(%s)</span>"
543
- msgstr "Tudo <span class=\"count\">(%s)</span>"
544
-
545
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-roles-list-table.php:145
546
- #, php-format
547
- msgid "Built-In <span class=\"count\">(%s)</span>"
548
- msgstr "Padrões <span class=\"count\">(%s)</span>"
549
-
550
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-roles-list-table.php:148
551
- #, php-format
552
- msgid "Custom <span class=\"count\">(%s)</span>"
553
- msgstr "Personalizados <span class=\"count\">(%s)</span>"
554
-
555
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-roles-list-table.php:198
556
- #: ../templates/personal-pro/menu-editor.php:155
557
- #: ../templates/personal-pro/menu-editor.php:191
558
- #, php-format
559
- msgid "Select %s"
560
- msgstr "Selecionar %s"
561
-
562
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-roles-list-table.php:244
563
- msgid "[All Sites]"
564
- msgstr "[Todos os sites]"
565
-
566
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-roles-list-table.php:246
567
- #, php-format
568
- msgid "%d Site(s)"
569
- msgstr "%d Site(s)"
570
-
571
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:56
572
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:64
573
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:83
574
- msgid "Source site not selected."
575
- msgstr "O site de fonte não foi selecionado"
576
-
577
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:67
578
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:86
579
- msgid "Destination type not selected."
580
- msgstr "O tipo de destino não foi selecionado."
581
-
582
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:74
583
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:93
584
- msgid "Destination sites not selected."
585
- msgstr "Os sites de destino não foram selecionados."
586
-
587
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:225
588
- msgid "This screen allows you to sync the roles between the network."
589
- msgstr "Esta tela permite que você sincronize as regras entre a rede."
590
-
591
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:228
592
- msgid ""
593
- "You will select a site as source, then sync the roles to selected sites or entire "
594
- "sites within the network."
595
- msgstr ""
596
- "Você irá selecionar um site como base, então sincronizará as regras para os sites "
597
- "selecionados ou para toda a rede de sites."
598
-
599
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:233
600
- msgid "Step 1"
601
- msgstr "Passo 1"
602
-
603
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:235
604
- msgid "Select source site."
605
- msgstr "Selecione o site fonte."
606
-
607
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:238
608
- msgid "You will select the source site in this step."
609
- msgstr "Você selecionará a fonte neste passo."
610
-
611
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:243
612
- msgid "Step 2"
613
- msgstr "Passo 2"
614
-
615
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:245
616
- msgid "Select destination sites."
617
- msgstr "Selecione os sites de destino."
618
-
619
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:248
620
- msgid "You will select the destination sites in this step."
621
- msgstr "Você selecionará os sites de destino neste passo."
622
-
623
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:251
624
- msgid ""
625
- "Use \"All Sites\" to select all the sites within the network or you can select "
626
- "individual sites using \"Selected Sites\"."
627
- msgstr ""
628
- "Use \"Todos os sites\" para selecionar todos os sites na rede ou você pode "
629
- "selecionar sites individuais utilizando \"Sites selecionados\"."
630
-
631
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:256
632
- msgid "Step 3"
633
- msgstr "Passo 3"
634
-
635
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:258
636
- msgid "Choose settings."
637
- msgstr "Selecione as configurações."
638
-
639
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:261
640
- #: ../templates/business-pro/sync-roles.php:222
641
- msgid "Add roles existing only in source"
642
- msgstr "Adiciona regras existente apenas na fonte"
643
-
644
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:263
645
- msgid "Roles existing in source and do not existing in destination will be created."
646
- msgstr "Funções existentes na fonte e não existentes no destino serão criadas."
647
-
648
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:266
649
- #: ../templates/business-pro/sync-roles.php:227
650
- msgid "Overwrite existing roles"
651
- msgstr "Sobrescrever funções existentes"
652
-
653
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:268
654
- msgid "If the role from source already exists in destination, it will be overwritten."
655
- msgstr "Se a função da fonte já existe no destino, ela será sobrescrita."
656
-
657
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:271
658
- #: ../templates/business-pro/sync-roles.php:232
659
- msgid "Remove roles existing only in destination"
660
- msgstr "Remover funções existentes apenas no destino"
661
-
662
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:273
663
- msgid "If a role do not exist in source, but exists in destination it will be removed."
664
- msgstr "Se uma função não existir na fonte, mas existe no destino, esta será excluída."
665
-
666
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:276
667
- #: ../templates/business-pro/sync-roles.php:237
668
- msgid "Update new user default role"
669
- msgstr "Atualizar a nova função padrão do usuário"
670
-
671
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:278
672
- msgid "The destination new user default role will be updated as same as source."
673
- msgstr "O destino dos padrões de novos usuários serão atualizados bem como a fonte."
674
-
675
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:283
676
- msgid "Step 4"
677
- msgstr "Passo 4"
678
-
679
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:285
680
- msgid "Confirm and Sync"
681
- msgstr "Confirmar e sincronizar"
682
-
683
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:288
684
- msgid "You can verify your settings and start syncing."
685
- msgstr "Você pode verificar suas configurações e começar a sincronizar."
686
-
687
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:291
688
- msgid "Click Sync Roles to start syncing."
689
- msgstr "Clique em sincronizar para iniciar a sincronização;"
690
-
691
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:300
692
- msgid "Documentation on Multisite Sync"
693
- msgstr "Documentação da sincronização do multisite"
694
-
695
- #: ../classes/class-wpfront-user-role-editor-add-edit.php:305
696
- msgid "This screen allows you to add a new role within your site."
697
- msgstr "Esta tela permite que você adicione uma nova função em seu site."
698
-
699
- #: ../classes/class-wpfront-user-role-editor-add-edit.php:338
700
- msgid "Documentation on Add New Role"
701
- msgstr "Documentação da Adição de Funções"
702
-
703
- #: ../classes/class-wpfront-user-role-editor-assign-roles.php:59
704
- #: ../classes/class-wpfront-user-role-editor-assign-roles.php:270
705
- msgid "Secondary Roles"
706
- msgstr "Funções secundárias"
707
-
708
- #: ../classes/class-wpfront-user-role-editor-assign-roles.php:74
709
- #: ../classes/class-wpfront-user-role-editor-assign-roles.php:303
710
- #: ../templates/assign-roles.php:36 ../templates/assign-roles.php:88
711
- msgid "Assign Roles"
712
- msgstr "Assinar funções"
713
-
714
- #: ../classes/class-wpfront-user-role-editor-assign-roles.php:111
715
- msgid "No role for this site"
716
- msgstr "Sem funções para este site"
717
-
718
- #: ../classes/class-wpfront-user-role-editor-assign-roles.php:127
719
- msgid "Invalid user."
720
- msgstr "Usuário inválido."
721
-
722
- #: ../classes/class-wpfront-user-role-editor-assign-roles.php:155
723
- msgid "Roles updated successfully."
724
- msgstr "Funções atualizadas com sucesso."
725
-
726
- #: ../classes/class-wpfront-user-role-editor-assign-roles.php:157
727
- msgid "Invalid primary role specified."
728
- msgstr "Função primária especificada inválida."
729
-
730
- #: ../classes/class-wpfront-user-role-editor-assign-roles.php:175
731
- #: ../classes/class-wpfront-user-role-editor-assign-roles.php:185
732
- msgid "Invalid primary role."
733
- msgstr "Função primária inválida."
734
-
735
- #: ../classes/class-wpfront-user-role-editor-assign-roles.php:207
736
- #, php-format
737
- msgid "%d user(s) migrated."
738
- msgstr "%d usuário(s) migrado(s)."
739
-
740
- #: ../classes/class-wpfront-user-role-editor-assign-roles.php:252
741
- msgid "Primary Role"
742
- msgstr "Regra primária"
743
-
744
- #: ../classes/class-wpfront-user-role-editor-assign-roles.php:298
745
- msgid ""
746
- "This screen allows you to assign multiple roles to a user and also allows you to "
747
- "migrate users from a role to another role."
748
- msgstr ""
749
- "Esta tela permite que você assine múltiplas regras para um usuário e também permite "
750
- "você migrar usuários de uma regra para outra."
751
-
752
- #: ../classes/class-wpfront-user-role-editor-assign-roles.php:305
753
- msgid ""
754
- "To assign multiple roles to a user, select that user within the User drop down list "
755
- "and select the primary role you want for that user using the Primary Role drop down "
756
- "list. Select the secondary roles using the check boxes below, then click Assign "
757
- "Roles."
758
- msgstr ""
759
- "Para assinar múltiplas funções à um usuário, selecione este usuário na lista "
760
- "suspensa e selecione a regra primária que você deseja para este usuário usando a "
761
- "lista suspensa de função primária. Selecione as regras secundárias usando as caixas "
762
- "de marcação a seguir, então clique em assinar funções."
763
-
764
- #: ../classes/class-wpfront-user-role-editor-assign-roles.php:310
765
- #: ../templates/assign-roles.php:93 ../templates/assign-roles.php:126
766
- msgid "Migrate Users"
767
- msgstr "Migrar usuários"
768
-
769
- #: ../classes/class-wpfront-user-role-editor-assign-roles.php:312
770
- msgid ""
771
- "To migrate users from one role to another role or to add secondary roles to users "
772
- "belonging to a particular primary role, use the migrate users functionality."
773
- msgstr ""
774
- "Para migrar usuários de uma função para outra, ou adicionar funções secundárias "
775
- "pertencentes à uma função primária particular, use a funcionalidades de migrar "
776
- "usuários."
777
-
778
- #: ../classes/class-wpfront-user-role-editor-assign-roles.php:315
779
- msgid ""
780
- "Select the users using the From Primary Role drop down, to primary role using the "
781
- "Primary Role drop down and secondary roles using the check boxes then click Migrate "
782
- "Users."
783
- msgstr ""
784
- "Seçecione os usuários da lista suspensa de função primária, para a função primária "
785
- "usando a lista suspensa de funções primárias e funções secundárias utilizando as "
786
- "caixas de marcação, então clique em migrar usuários."
787
-
788
- #: ../classes/class-wpfront-user-role-editor-assign-roles.php:324
789
- msgid "Documentation on Assign / Migrate Users"
790
- msgstr "Documentação em Assinar/Migrar usuários"
791
-
792
- #: ../classes/class-wpfront-user-role-editor-controller-base.php:81
793
- msgid "Links:"
794
- msgstr "Links:"
795
-
796
- #: ../classes/class-wpfront-user-role-editor-controller-base.php:87
797
- msgid "FAQ"
798
- msgstr "FAQ"
799
-
800
- #: ../classes/class-wpfront-user-role-editor-controller-base.php:88
801
- msgid "Support"
802
- msgstr "Suporte"
803
-
804
- #: ../classes/class-wpfront-user-role-editor-controller-base.php:89
805
- msgid "Review"
806
- msgstr "Revisão"
807
-
808
- #: ../classes/class-wpfront-user-role-editor-controller-base.php:90
809
- msgid "Contact"
810
- msgstr "Contato"
811
-
812
- #: ../classes/class-wpfront-user-role-editor-go-pro.php:174
813
- msgid "License key activation limit reached"
814
- msgstr "Limite de ativação de chaves de licença atingido"
815
-
816
- #: ../classes/class-wpfront-user-role-editor-go-pro.php:176
817
- msgid "Invalid license key"
818
- msgstr "Chave de licença inválida"
819
-
820
- #: ../classes/class-wpfront-user-role-editor-go-pro.php:196
821
- msgid "Unable to deactivate, expired license?"
822
- msgstr "Não pôde desativar, licença expirada?"
823
-
824
- #: ../classes/class-wpfront-user-role-editor-go-pro.php:215
825
- msgid "Unable to contact wpfront.com"
826
- msgstr "Não pôde contatar wpfront.com"
827
-
828
- #: ../classes/class-wpfront-user-role-editor-go-pro.php:224
829
- msgid "Unable to parse response"
830
- msgstr "Não pôde analisar resposta"
831
-
832
- #: ../classes/class-wpfront-user-role-editor-list.php:214
833
- #: ../templates/add-edit-role.php:111 ../templates/personal-pro/menu-editor.php:126
834
- msgid "Select All"
835
- msgstr "Selecionar tudo"
836
-
837
- #: ../classes/class-wpfront-user-role-editor-list.php:224
838
- #: ../classes/class-wpfront-user-role-editor-list.php:424
839
- msgid "Type"
840
- msgstr "Tipo"
841
-
842
- #: ../classes/class-wpfront-user-role-editor-list.php:227
843
- #: ../classes/class-wpfront-user-role-editor-list.php:429
844
- msgid "User Default"
845
- msgstr "Padrão do usuário"
846
-
847
- #: ../classes/class-wpfront-user-role-editor-list.php:230
848
- #: ../classes/class-wpfront-user-role-editor-list.php:434
849
- msgid "Users"
850
- msgstr "Usuários"
851
-
852
- #: ../classes/class-wpfront-user-role-editor-list.php:251
853
- msgid "Bulk Actions"
854
- msgstr "Ações agendadas"
855
-
856
- #: ../classes/class-wpfront-user-role-editor-list.php:256
857
- #: ../templates/add-edit-role.php:107 ../templates/personal-pro/menu-editor.php:94
858
- msgid "Apply"
859
- msgstr "Aplicar"
860
-
861
- #: ../classes/class-wpfront-user-role-editor-list.php:258
862
- #, php-format
863
- msgid "%s item(s)"
864
- msgstr "%s item(s)"
865
-
866
- #: ../classes/class-wpfront-user-role-editor-list.php:281
867
- msgid "All"
868
- msgstr "Tudo"
869
-
870
- #: ../classes/class-wpfront-user-role-editor-list.php:292
871
- msgid "Having Users"
872
- msgstr "Tendo usuários"
873
-
874
- #: ../classes/class-wpfront-user-role-editor-list.php:298
875
- msgid "No Users"
876
- msgstr "Sem usuários"
877
-
878
- #: ../classes/class-wpfront-user-role-editor-list.php:309
879
- #: ../templates/list-roles.php:118
880
- msgid "Built-In"
881
- msgstr "Padrões"
882
-
883
- #: ../classes/class-wpfront-user-role-editor-list.php:315
884
- #: ../templates/list-roles.php:118
885
- msgid "Custom"
886
- msgstr "Personalizados"
887
-
888
- #: ../classes/class-wpfront-user-role-editor-list.php:353
889
- msgid "This screen allows you to edit a role within your site."
890
- msgstr "Esta tela permite que você edite uma função em seu site."
891
-
892
- #: ../classes/class-wpfront-user-role-editor-list.php:387
893
- msgid "This screen allows you to delete roles from your WordPress site."
894
- msgstr "Esta tela permite que você exclua funções de seu site WordPress."
895
-
896
- #: ../classes/class-wpfront-user-role-editor-list.php:393
897
- msgid ""
898
- "You cannot delete administrator role, current user’s role and roles you do not have "
899
- "permission to."
900
- msgstr ""
901
- "Você não pode excluir a função de administrador, a regra do usuário atual e funções "
902
- "que você não tem permissões de mudar."
903
-
904
- #: ../classes/class-wpfront-user-role-editor-list.php:404
905
- msgid "This screen lists all the existing roles within your site."
906
- msgstr "Este tela lista todas as funções existentes em seu site."
907
-
908
- #: ../classes/class-wpfront-user-role-editor-list.php:416
909
- msgid "Used to display this role within this site."
910
- msgstr "Usado para mostrar esta função neste site."
911
-
912
- #: ../classes/class-wpfront-user-role-editor-list.php:426
913
- msgid ""
914
- "Says whether the role is a WordPress built-in role or not. There are five built-in "
915
- "roles."
916
- msgstr "Diz se a função é uma das padrões WordPress ou não. Há cinco funções padrões."
917
-
918
- #: ../classes/class-wpfront-user-role-editor-list.php:431
919
- msgid "Displays whether a role is the default role of a new user."
920
- msgstr "Mostra se a função é a padrão para um novo usuário."
921
-
922
- #: ../classes/class-wpfront-user-role-editor-list.php:436
923
- msgid "Number of users in that role."
924
- msgstr "Número de usuários nesta função."
925
-
926
- #: ../classes/class-wpfront-user-role-editor-list.php:441
927
- msgid "Number of capabilities that role have."
928
- msgstr "Número de capacidades que esta função possui."
929
-
930
- #: ../classes/class-wpfront-user-role-editor-list.php:444
931
- msgid "Menu Edited"
932
- msgstr "Menu editado"
933
-
934
- #: ../classes/class-wpfront-user-role-editor-list.php:446
935
- msgid "Displays whether the menu has been edited for this role. This is a pro feature."
936
- msgstr "Mostra onde o menu foi editado nesta função. Esta é uma ferramenta Pro."
937
-
938
- #: ../classes/class-wpfront-user-role-editor-list.php:468
939
- msgid ""
940
- "Allows you to delete that role. Delete action will not appear if you do not have "
941
- "permission to delete that role."
942
- msgstr ""
943
- "Permite que você exclua esta função. A ação de exclusão não aparecerá se você não "
944
- "tem permissão para excluir esta função."
945
-
946
- #: ../classes/class-wpfront-user-role-editor-list.php:471
947
- #: ../templates/list-roles.php:104
948
- msgid "Default"
949
- msgstr "Padrão"
950
-
951
- #: ../classes/class-wpfront-user-role-editor-list.php:473
952
- msgid "Allows you to set that role as the default role for new user registration."
953
- msgstr ""
954
- "Permite que você defina que regra será a padrão para o registro de novos usuários."
955
-
956
- #: ../classes/class-wpfront-user-role-editor-list.php:476
957
- #: ../classes/personal-pro/class-wpfront-user-role-editor-menu-editor.php:555
958
- msgid "Edit Menu"
959
- msgstr "Editar menu"
960
-
961
- #: ../classes/class-wpfront-user-role-editor-list.php:478
962
- msgid ""
963
- "Takes you to the menu editor screen for that role. You need \"edit_role_menus\" "
964
- "capability for this link to appear. This is a pro feature."
965
- msgstr ""
966
- "O leva à tela de editor de menu para esta função. Você precisa da capacidade "
967
- "\"edit_role_menus\" para este link aparecer. Esta é uma ferramenta Pro."
968
-
969
- #: ../classes/class-wpfront-user-role-editor-list.php:490
970
- msgid "Documentation on Edit Role"
971
- msgstr "Documentação da edição de funções"
972
-
973
- #: ../classes/class-wpfront-user-role-editor-list.php:497
974
- msgid "Documentation on Delete Roles"
975
- msgstr "Documentação na exclusão de funções"
976
-
977
- #: ../classes/class-wpfront-user-role-editor-list.php:505
978
- msgid "Documentation on Roles"
979
- msgstr "Documentação nas funções"
980
-
981
- #: ../classes/class-wpfront-user-role-editor-options.php:193
982
- msgid ""
983
- "These settings are applicable for the network admin dashboard. Also these settings "
984
- "will propagate to the individual sites unless its overridden within that site’s "
985
- "settings."
986
- msgstr ""
987
- "Estas configurações são aplicáveis ao painel de controle do administrador de rede. "
988
- "Também estas configurações se propagarão para sites individuais menos se isto for "
989
- "substituído nestas configurações de site."
990
-
991
- #: ../classes/class-wpfront-user-role-editor-options.php:200
992
- #: ../templates/options-template.php:40
993
- msgid "Enable Large Network Functionalities"
994
- msgstr "Ativar funcionalidades de grande rede"
995
-
996
- #: ../classes/class-wpfront-user-role-editor-options.php:202
997
- msgid "This setting is only visible when you have a large network."
998
- msgstr "Esta configuração é visível apenas quando você possui uma grande rede."
999
-
1000
- #: ../classes/class-wpfront-user-role-editor-options.php:204
1001
- msgid "More details"
1002
- msgstr "Mais detelhes"
1003
-
1004
- #: ../classes/class-wpfront-user-role-editor-options.php:208
1005
- #: ../classes/class-wpfront-user-role-editor-options.php:235
1006
- #: ../templates/options-template.php:49
1007
- msgid "Display Deprecated Capabilities"
1008
- msgstr "Mostra capacidades obsoletas"
1009
-
1010
- #: ../classes/class-wpfront-user-role-editor-options.php:210
1011
- #: ../classes/class-wpfront-user-role-editor-options.php:237
1012
- msgid ""
1013
- "If enabled, deprecated capabilities will be displayed within the add/edit screens."
1014
- msgstr ""
1015
- "Se ativado, capacidades obsoletas serão mostradas nas telas de adicionar/editar."
1016
-
1017
- #: ../classes/class-wpfront-user-role-editor-options.php:213
1018
- #: ../classes/class-wpfront-user-role-editor-options.php:240
1019
- #: ../templates/options-template.php:57
1020
- msgid "Remove Non-Standard Capabilities on Restore"
1021
- msgstr "Remover capacidades não-padrões na restauração"
1022
-
1023
- #: ../classes/class-wpfront-user-role-editor-options.php:215
1024
- #: ../classes/class-wpfront-user-role-editor-options.php:242
1025
- msgid ""
1026
- "If enabled, while restoring WordPress built-in capabilities non-standard "
1027
- "capabilities will be removed."
1028
- msgstr ""
1029
- "Se ativado, enquanto restaura as capacidades padrões do WordPress capacidades não-"
1030
- "padrões serão removidas."
1031
-
1032
- #: ../classes/class-wpfront-user-role-editor-options.php:218
1033
- #: ../classes/class-wpfront-user-role-editor-options.php:245
1034
- #: ../templates/options-template.php:65
1035
- msgid "Override Edit Permissions"
1036
- msgstr "Substituir permissões de edição"
1037
-
1038
- #: ../classes/class-wpfront-user-role-editor-options.php:220
1039
- #: ../classes/class-wpfront-user-role-editor-options.php:247
1040
- msgid "If enabled, ignores the check to the function get_editable_roles."
1041
- msgstr "Se ativado, ignorará marcar a função get_editable_roles."
1042
-
1043
- #: ../classes/class-wpfront-user-role-editor-options.php:223
1044
- #: ../classes/class-wpfront-user-role-editor-options.php:250
1045
- #: ../templates/options-template.php:74
1046
- msgid "Remove Data on Uninstall"
1047
- msgstr "Remover dados na desinstalação"
1048
-
1049
- #: ../classes/class-wpfront-user-role-editor-options.php:225
1050
- #: ../classes/class-wpfront-user-role-editor-options.php:252
1051
- msgid ""
1052
- "If enabled, removes all data related to this plugin from database (except roles "
1053
- "data) including license information if any. This will not deactivate the license "
1054
- "automatically."
1055
- msgstr ""
1056
- "Se ativado, remove todos os dados relativos à este plugin da base de dados (exceto "
1057
- "dados de funções) incluindo as informações de chaves de licenças, se houver. Isto "
1058
- "não desativará a licença automaticamente."
1059
-
1060
- #: ../classes/class-wpfront-user-role-editor-options.php:263
1061
- msgid "Documentation on Multisite Settings"
1062
- msgstr "Documentação nas configurações de multisite"
1063
-
1064
- #: ../classes/class-wpfront-user-role-editor-options.php:270
1065
- msgid "Documentation on Settings"
1066
- msgstr "Documentação nas configurações"
1067
-
1068
- #: ../classes/class-wpfront-user-role-editor-restore.php:179
1069
- msgid "Documentation on Restore"
1070
- msgstr "Documentações na restauração"
1071
-
1072
- #: ../classes/class-wpfront-user-role-editor.php:221
1073
- msgid "Assign Roles | Migrate Users"
1074
- msgstr "Assinar funções | Migrar usuários"
1075
-
1076
- #: ../classes/class-wpfront-user-role-editor.php:221
1077
- msgid "Assign / Migrate"
1078
- msgstr "Assinar / Migrar"
1079
-
1080
- #: ../classes/class-wpfront-user-role-editor.php:316
1081
- msgid "Buy me a Beer"
1082
- msgstr "Compre-me uma cerveja"
1083
-
1084
- #: ../classes/personal-pro/class-wpfront-user-role-editor-export.php:128
1085
- msgid ""
1086
- "This screen allows you to export the roles existing within your site and import into "
1087
- "the same site or a different site."
1088
- msgstr ""
1089
- "Esta tela permite que você exporte as funções existentes em seu site e importe para "
1090
- "o mesmo site ou à um diferente."
1091
-
1092
- #: ../classes/personal-pro/class-wpfront-user-role-editor-export.php:131
1093
- msgid "Select the roles to export, then click Download Export File."
1094
- msgstr ""
1095
- "Selecione as funções para exportar, então clique em Baixar Arquivo de Exportação."
1096
-
1097
- #: ../classes/personal-pro/class-wpfront-user-role-editor-export.php:140
1098
- msgid "Documentation on Export"
1099
- msgstr "Documentação na exportação"
1100
-
1101
- #: ../classes/personal-pro/class-wpfront-user-role-editor-import.php:33
1102
- msgid "This functionality requires SimpleXML extension, which is not loaded."
1103
- msgstr "Esta funcionalidades requerem a extensão SimpleXML, que não está lida."
1104
-
1105
- #: ../classes/personal-pro/class-wpfront-user-role-editor-import.php:81
1106
- #, php-format
1107
- msgid "%d role(s) imported."
1108
- msgstr "%d funções(s) importadas."
1109
-
1110
- #: ../classes/personal-pro/class-wpfront-user-role-editor-import.php:102
1111
- #, php-format
1112
- msgid ""
1113
- "The export file could not be found at <code>%s</code>. It is likely that this was "
1114
- "caused by a permissions problem."
1115
- msgstr ""
1116
- "O arquivo exportado não foi encontrado em <code>%s</code>. Isto é como isto foi "
1117
- "causado por um problema de permissões."
1118
-
1119
- #: ../classes/personal-pro/class-wpfront-user-role-editor-import.php:133
1120
- #: ../classes/personal-pro/class-wpfront-user-role-editor-import.php:141
1121
- msgid "There was an error when reading this export file"
1122
- msgstr "Houve um erro ao ler o este arquivo exportado"
1123
-
1124
- #: ../classes/personal-pro/class-wpfront-user-role-editor-import.php:158
1125
- #, php-format
1126
- msgid ""
1127
- "Please update the plugin to latest version. This export file requires plugin version "
1128
- "%s or higher."
1129
- msgstr ""
1130
- "Por favor atualize o plugin para a última versão. Este arquivo de exportação requer "
1131
- "a versão %s ou superior."
1132
-
1133
- #: ../classes/personal-pro/class-wpfront-user-role-editor-import.php:214
1134
- msgid "This file does not appears to be a valid export file."
1135
- msgstr "Este arquivo não parece ser um arquivo de exportação válido."
1136
-
1137
- #: ../classes/personal-pro/class-wpfront-user-role-editor-import.php:227
1138
- msgid ""
1139
- "Step 1: Select export file using the Browse button. Then click Upload file and "
1140
- "Import."
1141
- msgstr ""
1142
- "Passo 1: Selecione o arquivo de exportação usando o botão Navegador. Então clique em "
1143
- "Carregar arquivo e impertar."
1144
-
1145
- #: ../classes/personal-pro/class-wpfront-user-role-editor-import.php:230
1146
- msgid ""
1147
- "Step 2: Select the roles you want to import using the check boxes and click Import "
1148
- "Roles."
1149
- msgstr ""
1150
- "Passo 2: Selecione as funções que você deseja importar usando as caixas de marcar e "
1151
- "clique em Importar funções."
1152
-
1153
- #: ../classes/personal-pro/class-wpfront-user-role-editor-import.php:239
1154
- msgid "Documentation on Import"
1155
- msgstr "Importar documentação"
1156
-
1157
- #: ../classes/personal-pro/class-wpfront-user-role-editor-menu-editor.php:157
1158
- msgid "Menu changes saved."
1159
- msgstr "Alterações no menu salvas."
1160
-
1161
- #: ../classes/personal-pro/class-wpfront-user-role-editor-menu-editor.php:170
1162
- msgid "Menu defaults restored."
1163
- msgstr "Padrões de menu restaurados."
1164
-
1165
- #: ../classes/personal-pro/class-wpfront-user-role-editor-menu-editor.php:185
1166
- msgid "No editable roles found on this site."
1167
- msgstr "Funções não editáveis encontradas neste site."
1168
-
1169
- #: ../classes/personal-pro/class-wpfront-user-role-editor-menu-editor.php:565
1170
- msgid "This screen allows you to enable and disable admin menus for a particular role."
1171
- msgstr ""
1172
- "Esta tela permite que você ative ou desative menus administrativos para uma regra "
1173
- "particular."
1174
-
1175
- #: ../classes/personal-pro/class-wpfront-user-role-editor-menu-editor.php:568
1176
- msgid "Deselect a menu from the grid to remove that menu."
1177
- msgstr "Desmarca um menu da grade para remover este menu."
1178
-
1179
- #: ../classes/personal-pro/class-wpfront-user-role-editor-menu-editor.php:571
1180
- msgid ""
1181
- "Disabled menu items are already hidden, because the selected role doesn't have the "
1182
- "capability to display that menu. Grid displays menus which the current user has "
1183
- "access to."
1184
- msgstr ""
1185
- "Itens desativados do menu ainda estão escondidos, porque a função selecionada não "
1186
- "tem capacidade para mostrar este menu. A grade mostra menus que o usuário atual tem "
1187
- "acesso."
1188
-
1189
- #: ../classes/personal-pro/class-wpfront-user-role-editor-menu-editor.php:576
1190
- msgid "Fields"
1191
- msgstr "Campos"
1192
-
1193
- #: ../classes/personal-pro/class-wpfront-user-role-editor-menu-editor.php:578
1194
- #: ../templates/personal-pro/menu-editor.php:33
1195
- msgid "Override Role"
1196
- msgstr "Funções substituídas"
1197
-
1198
- #: ../classes/personal-pro/class-wpfront-user-role-editor-menu-editor.php:580
1199
- msgid "The role you want to override."
1200
- msgstr "A função que você quer substituir."
1201
-
1202
- #: ../classes/personal-pro/class-wpfront-user-role-editor-menu-editor.php:583
1203
- #: ../templates/personal-pro/menu-editor.php:50
1204
- msgid "Override Type"
1205
- msgstr "Tipo de substituição"
1206
-
1207
- #: ../classes/personal-pro/class-wpfront-user-role-editor-menu-editor.php:585
1208
- msgid ""
1209
- "Soft - Pages may be available through directly typing the URL. Hard - Even URLs will "
1210
- "be blocked."
1211
- msgstr ""
1212
- "Leve - Páginas podem estar disponíveis diretamente digitando a URL. Duro - Até mesmo "
1213
- "URLs serão bloqueadas."
1214
-
1215
- #: ../classes/personal-pro/class-wpfront-user-role-editor-menu-editor.php:588
1216
- #: ../templates/personal-pro/menu-editor.php:61
1217
- msgid "Hide New Menus"
1218
- msgstr "Esconder novos menus"
1219
-
1220
- #: ../classes/personal-pro/class-wpfront-user-role-editor-menu-editor.php:590
1221
- msgid "Allow you to hide future menus."
1222
- msgstr "Permite que você esconda futuros menus."
1223
-
1224
- #: ../classes/personal-pro/class-wpfront-user-role-editor-menu-editor.php:593
1225
- #: ../templates/personal-pro/menu-editor.php:69
1226
- msgid "Disable For Secondary Role"
1227
- msgstr "Desativas para funções secundárias"
1228
-
1229
- #: ../classes/personal-pro/class-wpfront-user-role-editor-menu-editor.php:595
1230
- msgid "Disables menu settings while the selected role is a secondary role."
1231
- msgstr "Desativa configurações do menu enquanto a função selecionada é uma secundária."
1232
-
1233
- #: ../classes/personal-pro/class-wpfront-user-role-editor-menu-editor.php:600
1234
- msgid "Restore Default"
1235
- msgstr "Restaurar padrão"
1236
-
1237
- #: ../classes/personal-pro/class-wpfront-user-role-editor-menu-editor.php:602
1238
- msgid "Select \"Restore default\" from the \"Copy from\" drop down and click apply."
1239
- msgstr ""
1240
- "Selecione \"Restaurar padrão\" de \"Copiar da\" lista suspensa e clique aplicar."
1241
-
1242
- #: ../classes/personal-pro/class-wpfront-user-role-editor-menu-editor.php:611
1243
- msgid "Documentation on Menu Editor"
1244
- msgstr "Documentação no Editor de Menu"
1245
-
1246
- #: ../classes/personal-pro/class-wpfront-user-role-editor-personal-pro.php:65
1247
- #: ../templates/personal-pro/menu-editor.php:3
1248
- msgid "Menu Editor"
1249
- msgstr "Editor de Menu"
1250
-
1251
- #: ../classes/personal-pro/class-wpfront-user-role-editor-personal-pro.php:66
1252
- #: ../templates/personal-pro/export-roles.php:3
1253
- msgid "Export Roles"
1254
- msgstr "Exportar funções"
1255
-
1256
- #: ../classes/personal-pro/class-wpfront-user-role-editor-personal-pro.php:66
1257
- msgid "Export"
1258
- msgstr "Exportar"
1259
-
1260
- #: ../classes/personal-pro/class-wpfront-user-role-editor-personal-pro.php:67
1261
- #: ../templates/personal-pro/import-roles.php:3
1262
- #: ../templates/personal-pro/import-roles.php:82
1263
- msgid "Import Roles"
1264
- msgstr "Importar funções"
1265
-
1266
- #: ../classes/personal-pro/class-wpfront-user-role-editor-personal-pro.php:67
1267
- msgid "Import"
1268
- msgstr "Importar"
1269
-
1270
- #: ../classes/personal-pro/class-wpfront-user-role-editor-personal-pro.php:87
1271
- #, php-format
1272
- msgid "%s license not activated."
1273
- msgstr "%s licença não ativada"
1274
-
1275
- #: ../classes/personal-pro/class-wpfront-user-role-editor-post-type-permissions.php:44
1276
- #: ../classes/personal-pro/class-wpfront-user-role-editor-post-type-permissions.php:269
1277
- msgid "Role Permissions"
1278
- msgstr "Permissões da função"
1279
-
1280
- #: ../templates/add-edit-role.php:35
1281
- msgid "Edit Role"
1282
- msgstr "Editar função"
1283
-
1284
- #: ../templates/add-edit-role.php:45
1285
- msgid "This role already exists in this site."
1286
- msgstr "Esta função ainda existe neste site."
1287
-
1288
- #: ../templates/add-edit-role.php:53
1289
- msgid "There was an unexpected error while performing this action."
1290
- msgstr "Houve um erro inesperado enquanto realizávamos esta ação."
1291
-
1292
- #: ../templates/add-edit-role.php:60
1293
- msgid "Create a brand new role and add it to this site."
1294
- msgstr "Criar uma marca nova função e adicioná-la à este site."
1295
-
1296
- #: ../templates/add-edit-role.php:71 ../templates/add-edit-role.php:81
1297
- msgid "required"
1298
- msgstr "requerido"
1299
-
1300
- #: ../templates/add-edit-role.php:100 ../templates/personal-pro/menu-editor.php:83
1301
- msgid "Copy from"
1302
- msgstr "Copiar de "
1303
-
1304
- #: ../templates/add-edit-role.php:112
1305
- msgid "Select None"
1306
- msgstr "Selecionar nenhum"
1307
-
1308
- #: ../templates/add-edit-role.php:154
1309
- msgid "Update Role"
1310
- msgstr "Atualizar função"
1311
-
1312
- #: ../templates/assign-roles.php:62
1313
- msgid "User"
1314
- msgstr "Usuário"
1315
-
1316
- #: ../templates/assign-roles.php:103
1317
- msgid "From Primary Role"
1318
- msgstr "Da função primária"
1319
-
1320
- #: ../templates/business-pro/sync-roles.php:25
1321
- msgid "Step 1: Select the source site"
1322
- msgstr "Passo 1: Selecione o site fonte"
1323
-
1324
- #: ../templates/business-pro/sync-roles.php:34
1325
- #: ../templates/business-pro/sync-roles.php:84
1326
- msgid "Search Sites"
1327
- msgstr "Buscar sites"
1328
-
1329
- #: ../templates/business-pro/sync-roles.php:40
1330
- #: ../templates/business-pro/sync-roles.php:95
1331
- #: ../templates/business-pro/sync-roles.php:245
1332
- msgid "Next Step"
1333
- msgstr "Próximo passo"
1334
-
1335
- #: ../templates/business-pro/sync-roles.php:70
1336
- msgid "Step 2: Select destination sites"
1337
- msgstr "Passo 2: Selecionar sites de destino"
1338
-
1339
- #: ../templates/business-pro/sync-roles.php:74
1340
- #: ../templates/business-pro/sync-roles.php:269
1341
- msgid "All Sites"
1342
- msgstr "Todos os sites"
1343
-
1344
- #: ../templates/business-pro/sync-roles.php:77
1345
- msgid "Selected Sites"
1346
- msgstr "Sites selecionados"
1347
-
1348
- #: ../templates/business-pro/sync-roles.php:216
1349
- msgid "Step 3: Choose settings"
1350
- msgstr "Passo 3: Selecionar configurações"
1351
-
1352
- #: ../templates/business-pro/sync-roles.php:255
1353
- msgid "Step 4: Confirm and Sync"
1354
- msgstr "Passo 4: Confirmar e sincronizar"
1355
-
1356
- #: ../templates/business-pro/sync-roles.php:260
1357
- msgid "Source: "
1358
- msgstr "Fonte:"
1359
-
1360
- #: ../templates/business-pro/sync-roles.php:268
1361
- msgid "Destination: "
1362
- msgstr "Destino:"
1363
-
1364
- #: ../templates/business-pro/sync-roles.php:269
1365
- msgid "Selected sites"
1366
- msgstr "Sites selecionados"
1367
-
1368
- #: ../templates/business-pro/sync-roles.php:269
1369
- #, php-format
1370
- msgid "%s site(s) selected"
1371
- msgstr "%s site(s) selecionados"
1372
-
1373
- #: ../templates/business-pro/sync-roles.php:274
1374
- msgid "Add roles existing only in source: "
1375
- msgstr "Adicionar funções existentes apenas na fonte:"
1376
-
1377
- #: ../templates/business-pro/sync-roles.php:275
1378
- #: ../templates/business-pro/sync-roles.php:281
1379
- #: ../templates/business-pro/sync-roles.php:287
1380
- #: ../templates/business-pro/sync-roles.php:293
1381
- msgid "Yes"
1382
- msgstr "Sim"
1383
-
1384
- #: ../templates/business-pro/sync-roles.php:275
1385
- #: ../templates/business-pro/sync-roles.php:281
1386
- #: ../templates/business-pro/sync-roles.php:287
1387
- #: ../templates/business-pro/sync-roles.php:293
1388
- msgid "No"
1389
- msgstr "Não"
1390
-
1391
- #: ../templates/business-pro/sync-roles.php:280
1392
- msgid "Overwrite existing roles: "
1393
- msgstr "Sobrescrever funções existentes:"
1394
-
1395
- #: ../templates/business-pro/sync-roles.php:286
1396
- msgid "Remove roles existing only in destination: "
1397
- msgstr "Remover funções existentes apenas no destino: "
1398
-
1399
- #: ../templates/business-pro/sync-roles.php:292
1400
- msgid "Update new user default role: "
1401
- msgstr "Atualizar a função padrão de novo usuário: "
1402
-
1403
- #: ../templates/business-pro/sync-roles.php:344
1404
- msgid "SUCCESS"
1405
- msgstr "SUCESSO"
1406
-
1407
- #: ../templates/business-pro/sync-roles.php:347
1408
- msgid "FAIL"
1409
- msgstr "FALHA"
1410
-
1411
- #: ../templates/business-pro/sync-roles.php:370
1412
- msgid "Synching site"
1413
- msgstr "Sincronizando site"
1414
-
1415
- #: ../templates/delete-role.php:37
1416
- msgid "Delete Roles"
1417
- msgstr "Excluindo funções"
1418
-
1419
- #: ../templates/delete-role.php:38
1420
- msgid "You have specified these roles for deletion"
1421
- msgstr "Você especificou estas regras para excluir"
1422
-
1423
- #: ../templates/delete-role.php:45
1424
- msgid "Role"
1425
- msgstr "Regra"
1426
-
1427
- #: ../templates/delete-role.php:57
1428
- msgid "Confirm Deletion"
1429
- msgstr "Confirmar exclusão"
1430
-
1431
- #: ../templates/go-pro.php:36
1432
- msgid "WPFront User Role Editor Pro"
1433
- msgstr "WPFront User Role Editor Pro"
1434
-
1435
- #: ../templates/go-pro.php:59
1436
- msgid "License Key"
1437
- msgstr "Chave de Licença"
1438
-
1439
- #: ../templates/go-pro.php:68 ../templates/go-pro.php:69
1440
- msgid "Deactivate"
1441
- msgstr "Desativar"
1442
-
1443
- #: ../templates/go-pro.php:76
1444
- msgid "License Expires"
1445
- msgstr "Licença Expirada"
1446
-
1447
- #: ../templates/options-template.php:32
1448
- msgid "WPFront User Role Editor Settings"
1449
- msgstr "Configurações WPFront User Role Editor"
1450
-
1451
- #: ../templates/personal-pro/export-roles.php:7
1452
- msgid "Select the roles to be uploaded"
1453
- msgstr "Selecionar as funções a serem carregadas"
1454
-
1455
- #: ../templates/personal-pro/export-roles.php:34
1456
- msgid "Download Export File"
1457
- msgstr "Baixar arquivo exportado"
1458
-
1459
- #: ../templates/personal-pro/import-roles.php:15
1460
- msgid "ERROR:"
1461
- msgstr "ERRO:"
1462
-
1463
- #: ../templates/personal-pro/import-roles.php:24
1464
- msgid ""
1465
- "Choose a WPFront User Role Editor export file (.xml) to upload, then click Upload "
1466
- "file and import."
1467
- msgstr ""
1468
- "Selecione um arquivo de exportação WPFront User Role Editor (.xml) para carregar, "
1469
- "então clique em Carregar arquivo e importe."
1470
-
1471
- #: ../templates/personal-pro/import-roles.php:33
1472
- #, php-format
1473
- msgid "Roles exported from %s on %s by user %s."
1474
- msgstr "Funções exportadas de %s em %s pelo usuário %s."
1475
-
1476
- #: ../templates/personal-pro/import-roles.php:33
1477
- msgid "UTC"
1478
- msgstr "UTC"
1479
-
1480
- #: ../templates/personal-pro/import-roles.php:40
1481
- msgid "Zero roles found in this export file to import."
1482
- msgstr "Sem funções encontradas neste arquivo a ser importado."
1483
-
1484
- #: ../templates/personal-pro/import-roles.php:46
1485
- msgid "Select roles to import"
1486
- msgstr "Selecione funções para importar"
1487
-
1488
- #: ../templates/personal-pro/import-roles.php:75
1489
- msgid ""
1490
- "* These roles already exist in this site. Importing them will overwrite existing "
1491
- "roles."
1492
- msgstr ""
1493
- "*Estas funções já existem neste site. Importando elas, irá sobrescrever as funções "
1494
- "já existentes."
1495
-
1496
- #: ../templates/personal-pro/menu-editor.php:20
1497
- msgid ""
1498
- "Select a role below to edit menu for that role. Deselect a menu from the grid to "
1499
- "remove that menu. Disabled menu items are already hidden, because the selected role "
1500
- "doesn't have the capability to display that menu. Grid displays menus which the "
1501
- "current user has access to. "
1502
- msgstr ""
1503
- "Selecione uma função a seguir para editar o menu para esta função. Não selecione um "
1504
- "menu da grade para remover este menu. Itens do menu desativado já estão escondido, "
1505
- "porque a função selecionada não tem a capacidade de mostrar este menu. A grade "
1506
- "mostre menus que o usuário tem acesso atualmente. "
1507
-
1508
- #: ../templates/personal-pro/menu-editor.php:54
1509
- msgid "Soft"
1510
- msgstr "Leve"
1511
-
1512
- #: ../templates/personal-pro/menu-editor.php:55
1513
- msgid "Hard"
1514
- msgstr "Duro"
1515
-
1516
- #: ../templates/personal-pro/menu-editor.php:86
1517
- msgid "Restore default"
1518
- msgstr "Restaurar padões"
1519
-
1520
- #: ../templates/personal-pro/menu-editor.php:99
1521
- msgid "Hide deselected item(s)"
1522
- msgstr "Esconder item(ns) não selecionado(s)"
1523
-
1524
- #: ../templates/personal-pro/menu-editor.php:104
1525
- msgid "Hide disabled item(s)"
1526
- msgstr "Esconder item(ns) desativado(s)"
1527
-
1528
- #: ../templates/personal-pro/menu-editor.php:110
1529
- msgid "Has Capability"
1530
- msgstr "Tem capacidade"
1531
-
1532
- #: ../templates/personal-pro/menu-editor.php:115
1533
- msgid "No Capability"
1534
- msgstr "Sem capacidade"
1535
-
1536
- #: ../templates/personal-pro/menu-editor.php:135
1537
- msgid "Capability"
1538
- msgstr "Capacidade"
1539
-
1540
- #: ../templates/personal-pro/menu-editor.php:138
1541
- msgid "Menu Slug"
1542
- msgstr "Abreviação do menu"
1543
-
1544
- #: ../templates/personal-pro/post-type-permissions.php:19
1545
- msgid "Enable Role Permissions"
1546
- msgstr "Ativar permissões de função"
1547
-
1548
- #: ../templates/personal-pro/post-type-permissions.php:27
1549
- msgid "Read"
1550
- msgstr "Ler"
1551
-
1552
- #: ../templates/restore-role.php:48
1553
- msgid "Cancel"
1554
- msgstr "Cancelar"
1555
-
1556
- #: ../templates/restore-role.php:49
1557
- msgid "Confirm"
1558
- msgstr "Confirmar"
1559
-
1560
- #: ../templates/restore-role.php:57
1561
- msgid "Restored"
1562
- msgstr "Restaurado"
1563
-
1564
- #: ../templates/restore-role.php:101
1565
- msgid "Unexpected error / Timed out"
1566
- msgstr "Erro inesperado / Expirado"
1567
-
1568
- msgid "Settings Description"
1569
- msgstr "Configurações para descrição"
1570
-
1571
- msgid "Plugin FAQ"
1572
- msgstr "FAQ do plugin"
1573
-
1574
- msgid "Feature Request"
1575
- msgstr "Pedido em destaque"
1576
-
1577
- msgid "Report Bug"
1578
- msgstr "Reportar bug"
1579
-
1580
- msgid "Buy me a Beer or Coffee"
1581
- msgstr "Compre-me uma cerveja ou café"
1582
-
1583
- msgid "Add Role Capabilities"
1584
- msgstr "Adicionar capacidades de funções"
1585
-
1586
- msgid "User Role Editor"
1587
- msgstr "Edição de Funções de Usuários"
1588
-
1589
- msgid "Enabled"
1590
- msgstr "Ativado"
1591
-
1592
- msgid "Position"
1593
- msgstr "Posição"
1594
-
1595
- msgid "Bar Height"
1596
- msgstr "Comprimento da barra"
1597
-
1598
- msgid "Message Text"
1599
- msgstr "Texto de mensagem"
1600
-
1601
- msgid "Display After"
1602
- msgstr "Mostrar após"
1603
-
1604
- msgid "Animation Duration"
1605
- msgstr "Duração da animação"
1606
-
1607
- msgid "Display Close Button"
1608
- msgstr "Mostrar botão de fechar"
1609
-
1610
- msgid "Auto Close After"
1611
- msgstr "Fechar automaticamente após"
1612
-
1613
- msgid "Display Button"
1614
- msgstr "Mostrar botão"
1615
-
1616
- msgid "Button Text"
1617
- msgstr "Texto do botão"
1618
-
1619
- msgid "Open URL:"
1620
- msgstr "Abrir URL:"
1621
-
1622
- msgid "Open URL in new tab/window"
1623
- msgstr "Abrir URL em uma nova aba/janela"
1624
-
1625
- msgid "Execute JavaScript"
1626
- msgstr "Executar JavaScript"
1627
-
1628
- msgid "Close Bar on Button Click"
1629
- msgstr "Fechar barra no clique do botão"
1630
-
1631
- msgid "Display Shadow"
1632
- msgstr "Mostrar sombra"
1633
-
1634
- msgid "Fixed at Position"
1635
- msgstr "Fixado na posição"
1636
-
1637
- msgid "Message Text Color"
1638
- msgstr "Cor de texto na mensagem"
1639
-
1640
- msgid "From Color"
1641
- msgstr "Da cor"
1642
-
1643
- msgid "To Color"
1644
- msgstr "Para a cor"
1645
-
1646
- msgid "Button Text Color"
1647
- msgstr "Cor do texto do botão"
1648
-
1649
- msgid "Display on Pages"
1650
- msgstr "Mostrar nas páginas"
1651
-
1652
- msgid "Display Reopen Button"
1653
- msgstr "Mostrar botão reabrir"
1654
-
1655
- msgid "Reopen Button Color"
1656
- msgstr "Cor do botão reabrir"
1657
-
1658
- msgid "Keep Closed"
1659
- msgstr "Manter fechado"
1660
-
1661
- msgid "Keep Closed For"
1662
- msgstr "Manter fechado para"
1663
-
1664
- msgid "Position Offset"
1665
- msgstr "Offset da posição"
1666
-
1667
- msgid "Close Button Color"
1668
- msgstr "Cor do botão fechar"
1669
-
1670
- msgid "WPFront Notification Bar"
1671
- msgstr "Barra de notificação WPFront"
1672
-
1673
- msgid "Notification Bar"
1674
- msgstr "Barra de notificação"
1675
-
1676
- msgid "[Page]"
1677
- msgstr "[Página]"
1678
-
1679
- msgid "Home"
1680
- msgstr "Início"
1681
-
1682
- msgid "[Post]"
1683
- msgstr "[Publicação]"
1684
-
1685
- msgid "Top"
1686
- msgstr "Acima"
1687
-
1688
- msgid "Bottom"
1689
- msgstr "Abaixo"
1690
-
1691
- msgid "[Sticky Bar, bar will stay at position regardless of scrolling.]"
1692
- msgstr "[Barra pegajosa, a barra ficará na posição independentemente da rolagem.]"
1693
-
1694
- msgid "px"
1695
- msgstr "px"
1696
-
1697
- msgid "Set 0px to auto fit contents."
1698
- msgstr "Defina 0px para caber o conteúdo automaticamente."
1699
-
1700
- msgid ""
1701
- "(Top bar only) If you find the bar overlapping, try increasing this value. (eg. "
1702
- "WordPress 3.8 Twenty Fourteen theme, set 48px)"
1703
- msgstr ""
1704
- "(Apenas barra superior) se você encontrar a barra sobrepondo-se, tente incrementar "
1705
- "este valor . (ex. WordPress 3.8 Twenty Fourteen theme, defina 48px)"
1706
-
1707
- msgid "second(s)"
1708
- msgstr "segundo(s)"
1709
-
1710
- msgid "Set 0 second(s) to display immediately."
1711
- msgstr "Defina 0 segundo(s) para mostrar imediatamente."
1712
-
1713
- msgid "Set 0 second(s) for no animation."
1714
- msgstr "Defina 0 segundo(s) para ficar sem animação."
1715
-
1716
- msgid "[Displays a close button at the top right corner of the bar.]"
1717
- msgstr "[Mostra um botão fechar no canto superior direito da barra.]"
1718
-
1719
- msgid "Set 0 second(s) to disable auto close."
1720
- msgstr "Defina 0 segundo(s) para desativar fechar automaticamente."
1721
-
1722
- msgid "A reopen button will be displayed after the bar is closed."
1723
- msgstr "Um botão de reabrir será mostrado após a barra ser fechada."
1724
-
1725
- msgid "Once closed, bar will display closed on other pages."
1726
- msgstr "Uma vez fechada, a barra irá mostrar-se fechada em outras páginas."
1727
-
1728
- msgid "day(s)"
1729
- msgstr "dia(s)"
1730
-
1731
- msgid "Bar will be kept closed for the number of days specified from last closed date."
1732
- msgstr ""
1733
- "A barra irá manter-se fechada pelo número de dias especificados da última data de "
1734
- "fechamento."
1735
-
1736
- msgid "Content"
1737
- msgstr "Conteúdo"
1738
-
1739
- msgid "[HTML tags are allowed. e.g. Add <br /> for break.]"
1740
- msgstr "[HTML tags são permitidas. ex. Adicionar <br /> para quebrar.]"
1741
-
1742
- msgid "[Displays a button next to the message.]"
1743
- msgstr "[Mostra um botão próximo à mensagem.]"
1744
-
1745
- msgid "Filter"
1746
- msgstr "Filtro"
1747
-
1748
- msgid "Only in landing page."
1749
- msgstr "Apenas na página de desembarque."
1750
-
1751
- msgid "Include in following pages"
1752
- msgstr "Incluir nas seguintes páginas"
1753
-
1754
- msgid "Exclude in following pages"
1755
- msgstr "Excluir na seguintes páginas"
1756
-
1757
- msgid "Color"
1758
- msgstr "Color"
1759
-
1760
- msgid "Bar Color"
1761
- msgstr "Cor da barra"
1762
-
1763
- msgid "[Select two different colors to create a gradient.]"
1764
- msgstr "[Selecione duas cores diferentes para criar gradiente.]"
1765
-
1766
- msgid "Button Color"
1767
- msgstr "Cor do botão"
1768
-
1769
- msgid "[Normal, Hover, X]"
1770
- msgstr "[Normal, Hover, X]"
1771
-
1772
- msgid "CSS"
1773
- msgstr "CSS"
1774
-
1775
- msgid "Plugin Ideas"
1776
- msgstr "Ideias do plugin"
1777
-
1778
- msgid "Animate Display"
1779
- msgstr "Mostrar animação"
1780
-
1781
- msgid "Animate Display Delay"
1782
- msgstr "Atraso na mostra da animação"
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: WPFront Notification Bar\n"
4
+ "POT-Creation-Date: 2014-10-17 22:13-0700\n"
5
+ "PO-Revision-Date: 2015-01-07 17:14-0300\n"
6
+ "Last-Translator: Mauro Mascarenhas <mauro.mascarenhas@nintersoft.ml>\n"
7
+ "Language-Team: WPFront <contact@wpfront.com>\n"
8
+ "MIME-Version: 1.0\n"
9
+ "Content-Type: text/plain; charset=UTF-8\n"
10
+ "Content-Transfer-Encoding: 8bit\n"
11
+ "X-Generator: Poedit 1.7.1\n"
12
+ "X-Poedit-Basepath: .\n"
13
+ "Plural-Forms: nplurals=2; plural=(n > 1);\n"
14
+ "X-Poedit-SourceCharset: UTF-8\n"
15
+ "X-Poedit-KeywordsList: __;_e\n"
16
+ "Language: pt_BR\n"
17
+ "X-Poedit-SearchPath-0: ..\n"
18
+
19
+ #: ../classes/base/class-wpfront-base-menu.php:52
20
+ #: ../templates/personal-pro/menu-editor.php:132
21
+ msgid "Name"
22
+ msgstr "Nome"
23
+
24
+ #: ../classes/base/class-wpfront-base-menu.php:53
25
+ msgid "Version"
26
+ msgstr "Versão"
27
+
28
+ #: ../classes/base/class-wpfront-base-menu.php:54
29
+ msgid "Rating"
30
+ msgstr "Classificação"
31
+
32
+ #: ../classes/base/class-wpfront-base-menu.php:55
33
+ msgid "Description"
34
+ msgstr "Descrição"
35
+
36
+ #: ../classes/base/class-wpfront-base-menu.php:69
37
+ #, php-format
38
+ msgid "based on %s rating(s)"
39
+ msgstr "baseado em %s estrela(s)"
40
+
41
+ #: ../classes/base/class-wpfront-base-menu.php:105
42
+ msgid "Unable to communicate with WordPress.org"
43
+ msgstr "Não pôde comunicar-se à WordPress.org"
44
+
45
+ #: ../classes/base/class-wpfront-base-menu.php:123
46
+ #: ../classes/base/class-wpfront-base-menu.php:217
47
+ msgid "WPFront Plugins"
48
+ msgstr "WPFront Plugins"
49
+
50
+ #: ../classes/base/class-wpfront-base-menu.php:147
51
+ #, php-format
52
+ msgid "By %s"
53
+ msgstr "Por %s"
54
+
55
+ #: ../classes/base/class-wpfront-base-menu.php:154
56
+ #, php-format
57
+ msgid "More information about %s"
58
+ msgstr "Mais informações sobre %s"
59
+
60
+ #: ../classes/base/class-wpfront-base-menu.php:154
61
+ #: ../classes/class-wpfront-user-role-editor-go-pro.php:217
62
+ msgid "Details"
63
+ msgstr "Detalhes"
64
+
65
+ #: ../classes/base/class-wpfront-base-menu.php:163
66
+ #, php-format
67
+ msgid "Install %s"
68
+ msgstr "Instalar %s"
69
+
70
+ #: ../classes/base/class-wpfront-base-menu.php:163
71
+ msgid "Install Now"
72
+ msgstr "Instale agora"
73
+
74
+ #: ../classes/base/class-wpfront-base-menu.php:168
75
+ #, php-format
76
+ msgid "Update to version %s"
77
+ msgstr "Atualizar para a versão %s"
78
+
79
+ #: ../classes/base/class-wpfront-base-menu.php:168
80
+ msgid "Update Now"
81
+ msgstr "Atualizar Agora"
82
+
83
+ #: ../classes/base/class-wpfront-base-menu.php:173
84
+ msgid "This plugin is already installed and is up to date"
85
+ msgstr "Este plugin já está instalado e atualizado"
86
+
87
+ #: ../classes/base/class-wpfront-base-menu.php:173
88
+ msgid "Installed"
89
+ msgstr "Instalado"
90
+
91
+ #: ../classes/base/class-wpfront-base-menu.php:175
92
+ #: ../classes/base/class-wpfront-base.php:109
93
+ #: ../classes/business-pro/class-wpfront-user-role-editor-business-pro.php:104
94
+ #: ../classes/class-wpfront-user-role-editor-options.php:198
95
+ #: ../classes/class-wpfront-user-role-editor.php:205
96
+ msgid "Settings"
97
+ msgstr "Configurações"
98
+
99
+ #: ../classes/base/class-wpfront-base-menu.php:177
100
+ #: ../classes/personal-pro/class-wpfront-user-role-editor-personal-pro.php:88
101
+ #: ../templates/go-pro.php:65 ../templates/go-pro.php:66
102
+ msgid "Activate"
103
+ msgstr "Ativar"
104
+
105
+ #: ../classes/base/class-wpfront-base-menu.php:199
106
+ #: ../classes/class-wpfront-user-role-editor.php:314
107
+ msgid "Feedback"
108
+ msgstr "Feedback"
109
+
110
+ #: ../classes/base/class-wpfront-base-menu.php:216
111
+ msgid "WPFront"
112
+ msgstr "WPFront"
113
+
114
+ #: ../classes/base/class-wpfront-base-menu.php:217
115
+ msgid "All Plugins"
116
+ msgstr "Todos os plugins"
117
+
118
+ #: ../classes/base/class-wpfront-base.php:138
119
+ #: ../classes/class-wpfront-user-role-editor.php:263
120
+ msgid "You do not have sufficient permissions to access this page."
121
+ msgstr "Você não tem permissões suficientes para acessar esta página."
122
+
123
+ #: ../classes/base/class-wpfront-base.php:158
124
+ msgid ""
125
+ "If you have a caching plugin, clear the cache for the new settings to take effect."
126
+ msgstr ""
127
+ "Se você possui um plugin que faz cache, limpe a cache para as novas mudanças terem "
128
+ "efeito."
129
+
130
+ #: ../classes/base/class-wpfront-base.php:205
131
+ #: ../templates/personal-pro/menu-editor.php:226
132
+ msgid "Save Changes"
133
+ msgstr "Salvar alterações"
134
+
135
+ #: ../classes/business-pro/class-wpfront-user-role-editor-business-pro.php:81
136
+ #: ../classes/business-pro/class-wpfront-user-role-editor-business-pro.php:84
137
+ #: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:74
138
+ #: ../classes/class-wpfront-user-role-editor.php:202
139
+ #: ../classes/class-wpfront-user-role-editor.php:209 ../templates/list-roles.php:37
140
+ msgid "Roles"
141
+ msgstr "Funções"
142
+
143
+ #: ../classes/business-pro/class-wpfront-user-role-editor-business-pro.php:84
144
+ #: ../classes/class-wpfront-user-role-editor.php:202
145
+ msgid "All Roles"
146
+ msgstr "Todas as funções"
147
+
148
+ #: ../classes/business-pro/class-wpfront-user-role-editor-business-pro.php:89
149
+ #: ../classes/class-wpfront-user-role-editor.php:203 ../templates/add-edit-role.php:35
150
+ #: ../templates/add-edit-role.php:154
151
+ msgid "Add New Role"
152
+ msgstr "Adicionar nova função"
153
+
154
+ #: ../classes/business-pro/class-wpfront-user-role-editor-business-pro.php:89
155
+ #: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:77
156
+ #: ../classes/class-wpfront-user-role-editor.php:203 ../templates/add-edit-role.php:37
157
+ #: ../templates/list-roles.php:40
158
+ msgid "Add New"
159
+ msgstr "Adicionar nova"
160
+
161
+ #: ../classes/business-pro/class-wpfront-user-role-editor-business-pro.php:94
162
+ #: ../classes/class-wpfront-user-role-editor.php:204 ../templates/restore-role.php:34
163
+ msgid "Restore Role"
164
+ msgstr "Restaurar função"
165
+
166
+ #: ../classes/business-pro/class-wpfront-user-role-editor-business-pro.php:94
167
+ #: ../classes/class-wpfront-user-role-editor.php:204 ../templates/restore-role.php:46
168
+ msgid "Restore"
169
+ msgstr "Restaurar"
170
+
171
+ #: ../classes/business-pro/class-wpfront-user-role-editor-business-pro.php:99
172
+ #: ../templates/business-pro/sync-roles.php:11
173
+ #: ../templates/business-pro/sync-roles.php:297
174
+ msgid "Sync Roles"
175
+ msgstr "Sincronizar regras"
176
+
177
+ #: ../classes/business-pro/class-wpfront-user-role-editor-business-pro.php:99
178
+ msgid "Sync"
179
+ msgstr "Sincronizar"
180
+
181
+ #: ../classes/business-pro/class-wpfront-user-role-editor-business-pro.php:110
182
+ #: ../classes/class-wpfront-user-role-editor.php:188
183
+ msgid "Go Pro"
184
+ msgstr "Atualizar para Pro"
185
+
186
+ #: ../classes/business-pro/class-wpfront-user-role-editor-business-pro.php:121
187
+ msgid ""
188
+ "You have a large network of sites (usually 10,000 or more sites). Roles "
189
+ "functionalities will be CPU and memory intensive on large networks. Use the settings "
190
+ "screen to turn on these CPU and memory intensive functionalities."
191
+ msgstr ""
192
+ "Você tem uma vasta rede de sites (normalmente 10.000 ou mais sites). As "
193
+ "funcionalidades irão ser intensas na CPU e na memória em grandes redes. Use a tela "
194
+ "de configurações para ligar esta funcionalidade de uso intensivo de CPU e memória."
195
+
196
+ #: ../classes/business-pro/class-wpfront-user-role-editor-ms-add-edit.php:213
197
+ #: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:114
198
+ #: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:148
199
+ #: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:162
200
+ #: ../classes/business-pro/class-wpfront-user-role-editor-ms-restore.php:84
201
+ #: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:223
202
+ #: ../classes/class-wpfront-user-role-editor-add-edit.php:303
203
+ #: ../classes/class-wpfront-user-role-editor-assign-roles.php:296
204
+ #: ../classes/class-wpfront-user-role-editor-list.php:351
205
+ #: ../classes/class-wpfront-user-role-editor-list.php:385
206
+ #: ../classes/class-wpfront-user-role-editor-list.php:402
207
+ #: ../classes/class-wpfront-user-role-editor-options.php:191
208
+ #: ../classes/class-wpfront-user-role-editor-options.php:233
209
+ #: ../classes/class-wpfront-user-role-editor-restore.php:165
210
+ #: ../classes/personal-pro/class-wpfront-user-role-editor-export.php:126
211
+ #: ../classes/personal-pro/class-wpfront-user-role-editor-import.php:225
212
+ #: ../classes/personal-pro/class-wpfront-user-role-editor-menu-editor.php:563
213
+ msgid "Overview"
214
+ msgstr "Revisão"
215
+
216
+ #: ../classes/business-pro/class-wpfront-user-role-editor-ms-add-edit.php:215
217
+ msgid "This screen allows you to add a new role within your network."
218
+ msgstr "Esta tela permite que você adicione uma nova função em sua rede."
219
+
220
+ #: ../classes/business-pro/class-wpfront-user-role-editor-ms-add-edit.php:218
221
+ #: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:119
222
+ #: ../classes/class-wpfront-user-role-editor-add-edit.php:308
223
+ #: ../classes/class-wpfront-user-role-editor-list.php:356
224
+ msgid ""
225
+ "You can copy capabilities from existing roles using the Copy from drop down list. "
226
+ "Select the role you want to copy from, then click Apply to copy the capabilities. "
227
+ "You can select or deselect capabilities even after you copy."
228
+ msgstr ""
229
+ "Você pode copiar capacidades de regras existentes usando a Cópia da lista suspensa. "
230
+ "Selecione a regra que você deseja copiar, então clique em Aplicar para copiar estas "
231
+ "capacidades. Você pode selecionar ou não selecionar capacidades mesmo após a cópia."
232
+
233
+ #: ../classes/business-pro/class-wpfront-user-role-editor-ms-add-edit.php:223
234
+ #: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:124
235
+ #: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:179
236
+ #: ../classes/business-pro/class-wpfront-user-role-editor-ms-roles-list-table.php:161
237
+ #: ../classes/class-wpfront-user-role-editor-add-edit.php:313
238
+ #: ../classes/class-wpfront-user-role-editor-list.php:218
239
+ #: ../classes/class-wpfront-user-role-editor-list.php:361
240
+ #: ../classes/class-wpfront-user-role-editor-list.php:414
241
+ #: ../templates/add-edit-role.php:71
242
+ msgid "Display Name"
243
+ msgstr "Mostrar nome"
244
+
245
+ #: ../classes/business-pro/class-wpfront-user-role-editor-ms-add-edit.php:225
246
+ #: ../classes/class-wpfront-user-role-editor-add-edit.php:315
247
+ msgid ""
248
+ "Use the Display Name field to set the display name for the new role. WordPress uses "
249
+ "display name to display this role within your site. This field is required."
250
+ msgstr ""
251
+ "Use o campo Mostrar nome para definir o nome a ser mostrado na nova regra. WordPress "
252
+ "usa o Mostrar nome para mostrar esta regra em seu site. Este campo é necessário."
253
+
254
+ #: ../classes/business-pro/class-wpfront-user-role-editor-ms-add-edit.php:230
255
+ #: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:131
256
+ #: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:174
257
+ #: ../classes/business-pro/class-wpfront-user-role-editor-ms-roles-list-table.php:160
258
+ #: ../classes/class-wpfront-user-role-editor-add-edit.php:320
259
+ #: ../classes/class-wpfront-user-role-editor-list.php:221
260
+ #: ../classes/class-wpfront-user-role-editor-list.php:368
261
+ #: ../classes/class-wpfront-user-role-editor-list.php:419
262
+ #: ../templates/add-edit-role.php:81
263
+ msgid "Role Name"
264
+ msgstr "Nome da função"
265
+
266
+ #: ../classes/business-pro/class-wpfront-user-role-editor-ms-add-edit.php:232
267
+ #: ../classes/class-wpfront-user-role-editor-add-edit.php:322
268
+ msgid ""
269
+ "Use the Role Name field to set the role name for the new role. WordPress uses role "
270
+ "name to identify this role within your site. Once set role name cannot be changed. "
271
+ "This field is required. This plugin will auto populate role name from the display "
272
+ "name you have given, but you can change it."
273
+ msgstr ""
274
+ "Use o campo nome da função para definir o nome para a nova função. WordPress utiliza "
275
+ "o nome da função para identificar esta regra em seu site. Uma vez definido, o nome "
276
+ "da função não pode ser alterado. Este campo é necessário. Este plug-ins irá gerar o "
277
+ "nome da função automaticamente através do Nome a ser mostrado que você deu, mas você "
278
+ "pode alterá-lo."
279
+
280
+ #: ../classes/business-pro/class-wpfront-user-role-editor-ms-add-edit.php:237
281
+ #: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:138
282
+ #: ../classes/class-wpfront-user-role-editor-add-edit.php:327
283
+ #: ../classes/class-wpfront-user-role-editor-list.php:233
284
+ #: ../classes/class-wpfront-user-role-editor-list.php:375
285
+ #: ../classes/class-wpfront-user-role-editor-list.php:439
286
+ #: ../templates/add-edit-role.php:95
287
+ msgid "Capabilities"
288
+ msgstr "Capacidades"
289
+
290
+ #: ../classes/business-pro/class-wpfront-user-role-editor-ms-add-edit.php:239
291
+ #: ../classes/class-wpfront-user-role-editor-add-edit.php:329
292
+ msgid ""
293
+ "Capabilities are displayed as different groups for easy access. The Roles section "
294
+ "displays capabilities created by this plugin. The Other Capabilities section "
295
+ "displays non-standard capabilities within your site. These are usually created by "
296
+ "plugins and themes. Use the check boxes to select the capabilities required for this "
297
+ "new role."
298
+ msgstr ""
299
+ "Capacidades são mostradas como grupos diferentes para fácil acesso. A sessão de "
300
+ "funções mostra capacidades criadas pelo plugin. As outras sessões de capacidades "
301
+ "para capacidades não-padrão em são site. Estas são criadas normalmente por plug-ins "
302
+ "e temas. Use as caixas de marcação para selecionar as capacidades requeridas para "
303
+ "esta nova regra."
304
+
305
+ #: ../classes/business-pro/class-wpfront-user-role-editor-ms-add-edit.php:248
306
+ msgid "Documentation on Multisite Add New Role"
307
+ msgstr "Documentação no Adicionar Função Multisite"
308
+
309
+ #: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:86
310
+ #: ../templates/list-roles.php:62 ../templates/list-roles.php:64
311
+ msgid "Search Roles"
312
+ msgstr "Buscar funções"
313
+
314
+ #: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:116
315
+ msgid "This screen allows you to edit a role within your network."
316
+ msgstr "Esta tela permite que você edite uma regra em sua rede."
317
+
318
+ #: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:126
319
+ #: ../classes/class-wpfront-user-role-editor-list.php:363
320
+ msgid ""
321
+ "Use the Display Name field to edit display name of the role. WordPress uses display "
322
+ "name to display this role within your site. This field is required."
323
+ msgstr ""
324
+ "Use o campo Mostrar nome para editar o nome da função a ser mostrado. WordPress usa "
325
+ "Mostrar nome para mostrar esta função em seu site. Este campo é obrigatório."
326
+
327
+ #: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:133
328
+ #: ../classes/class-wpfront-user-role-editor-list.php:370
329
+ msgid ""
330
+ "Role Name is read only. WordPress uses role name to identify this role within your "
331
+ "site."
332
+ msgstr ""
333
+ "O nome da função é apenas leitura. WordPress utiliza o nome da regra para "
334
+ "identificar esta regra em seu site."
335
+
336
+ #: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:140
337
+ #: ../classes/class-wpfront-user-role-editor-list.php:377
338
+ msgid ""
339
+ "Capabilities are displayed as different groups for easy access. The Roles section "
340
+ "displays capabilities created by this plugin. The Other Capabilities section "
341
+ "displays non-standard capabilities within your site. These are usually created by "
342
+ "plugins and themes. Use the check boxes to select the capabilities required."
343
+ msgstr ""
344
+ "Capacidades são mostradas em grupos diferentes para fácil acesso. A sessão regras "
345
+ "mostra capacidades criadas por este plugin. As outras capacidades da sessão mostra "
346
+ "capacidades não-padrões de seu site. Estas são normalmente ciada por plug-ins e "
347
+ "temas. Use as caixas de marcar para selecionar as capacidades necessárias."
348
+
349
+ #: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:150
350
+ msgid "This screen allows you to delete roles from your network sites."
351
+ msgstr "Esta tela permite que você delete funções de sua rede de sites."
352
+
353
+ #: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:153
354
+ #: ../classes/class-wpfront-user-role-editor-list.php:390
355
+ msgid ""
356
+ "Use the Roles List screen to select the roles you want to delete. You can delete "
357
+ "individual roles using the Delete row action link or delete multiple roles at the "
358
+ "same time using the bulk action."
359
+ msgstr ""
360
+ "A tela de lista de funções de usuários serve para selecionar regras que você deseja "
361
+ "excluir. Você pode excluir regras individuais usando a linha de ação Excluir ou "
362
+ "excluir múltiplas funções ao mesmo tempo utilizando a função de marcação."
363
+
364
+ #: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:164
365
+ msgid "This screen displays all the roles existing within your multisite network."
366
+ msgstr "Esta tela mostra todas as funções existentes em sua rede multisites."
367
+
368
+ #: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:167
369
+ #: ../classes/class-wpfront-user-role-editor-list.php:407
370
+ msgid ""
371
+ "To add a new role, click the Add New button at the top of the screen or Add New in "
372
+ "the Roles menu section."
373
+ msgstr ""
374
+ "Para adicionar uma nova função, clique no botão Adicionar novo no topo da página ou "
375
+ "Adicionar novo na sessão de Regras do menu."
376
+
377
+ #: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:172
378
+ #: ../classes/class-wpfront-user-role-editor-list.php:412
379
+ msgid "Columns"
380
+ msgstr "Colunas"
381
+
382
+ #: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:176
383
+ #: ../classes/class-wpfront-user-role-editor-list.php:421
384
+ msgid "Is used by WordPress to identify this role."
385
+ msgstr "É usado pelo WordPress para identificar esta regra."
386
+
387
+ #: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:181
388
+ msgid ""
389
+ "WordPress uses display name to display this role within the site. You can have "
390
+ "different display names for the same role within the network."
391
+ msgstr ""
392
+ "WordPress usa o Mostrar nome para mostrar esta função em seu site. Você pode ter "
393
+ "diferentes nomes para mostrar para a mesma regra em sua rede."
394
+
395
+ #: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:184
396
+ #: ../classes/business-pro/class-wpfront-user-role-editor-ms-roles-list-table.php:162
397
+ msgid "Role Type"
398
+ msgstr "Tipo de regra"
399
+
400
+ #: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:186
401
+ msgid "Displays whether that role is a built-in role or a custom role."
402
+ msgstr "Mostra onde esta regra é construída ou uma regra personalizada."
403
+
404
+ #: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:189
405
+ #: ../classes/business-pro/class-wpfront-user-role-editor-ms-roles-list-table.php:163
406
+ msgid "Sites"
407
+ msgstr "Sites"
408
+
409
+ #: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:191
410
+ msgid ""
411
+ "Display the sites that role belongs to. [All Sites] mean, that role is part of every "
412
+ "site within the network. Else it will display the number of sites as a link. "
413
+ "Clicking on the link will display the site list."
414
+ msgstr ""
415
+ "Mostra os sites onde as regras se aplicam. [Todos os site] significa que a regra é "
416
+ "parte de todos os sites em sua rede. Em outro caso, isto irá mostrar o número de "
417
+ "sites como um link. Clicando no link irá mostrar a lista de sites."
418
+
419
+ #: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:196
420
+ #: ../classes/class-wpfront-user-role-editor-list.php:451
421
+ msgid "Actions"
422
+ msgstr "Ações"
423
+
424
+ #: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:198
425
+ #: ../classes/class-wpfront-user-role-editor-list.php:453
426
+ msgid ""
427
+ "Hovering over a row in the roles list will display action links that allow you to "
428
+ "manage roles. You can perform the following actions:"
429
+ msgstr ""
430
+ "Passando por cima de uma linha nas funções mostrara os links de ação que permite-o "
431
+ "gerenciar as funções. Você pode realizar as seguintes ações:"
432
+
433
+ #: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:201
434
+ #: ../classes/business-pro/class-wpfront-user-role-editor-ms-roles-list-table.php:222
435
+ #: ../classes/business-pro/class-wpfront-user-role-editor-ms-roles-list-table.php:272
436
+ #: ../classes/class-wpfront-user-role-editor-list.php:456
437
+ #: ../templates/list-roles.php:98
438
+ msgid "View"
439
+ msgstr "Ver"
440
+
441
+ #: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:203
442
+ #: ../classes/class-wpfront-user-role-editor-list.php:458
443
+ msgid ""
444
+ "Display details about the role. You can see the capabilities assigned for that role. "
445
+ "View link will only appear when you do not have permission to edit that role."
446
+ msgstr ""
447
+ "Mostra detalhes sobre esta regra. Você pode ver capacidades assinadas para esta "
448
+ "regra. O link ver aparecerá apenas quando você não tiver permissão para editar esta "
449
+ "regra."
450
+
451
+ #: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:206
452
+ #: ../classes/business-pro/class-wpfront-user-role-editor-ms-roles-list-table.php:219
453
+ #: ../classes/business-pro/class-wpfront-user-role-editor-ms-roles-list-table.php:260
454
+ #: ../classes/class-wpfront-user-role-editor-list.php:461
455
+ #: ../templates/list-roles.php:98
456
+ #: ../templates/personal-pro/post-type-permissions.php:28
457
+ msgid "Edit"
458
+ msgstr "Editar"
459
+
460
+ #: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:208
461
+ #: ../classes/class-wpfront-user-role-editor-list.php:463
462
+ msgid ""
463
+ "Allows you to edit that role. You can see the capabilities assigned for that role "
464
+ "and also edit them. Edit link will only appear when you have permission to edit that "
465
+ "role."
466
+ msgstr ""
467
+ "Permite que você edite esta regra. Você poderá ver as capacidades assinadas para "
468
+ "esta regra e também editá-las. O link de edição aparecerá apenas quando você tiver "
469
+ "permissões para editar esta regra."
470
+
471
+ #: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:211
472
+ #: ../classes/business-pro/class-wpfront-user-role-editor-ms-roles-list-table.php:110
473
+ #: ../classes/business-pro/class-wpfront-user-role-editor-ms-roles-list-table.php:220
474
+ #: ../classes/class-wpfront-user-role-editor-list.php:253
475
+ #: ../classes/class-wpfront-user-role-editor-list.php:466
476
+ #: ../templates/list-roles.php:101
477
+ #: ../templates/personal-pro/post-type-permissions.php:29
478
+ msgid "Delete"
479
+ msgstr "Excluir"
480
+
481
+ #: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:213
482
+ msgid "Allows you to delete that role."
483
+ msgstr "Permite excluir esta regra."
484
+
485
+ #: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:225
486
+ msgid "Documentation on Multisite Edit Role"
487
+ msgstr "Documentação na edição de regras no multisite"
488
+
489
+ #: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:232
490
+ msgid "Documentation on Multisite Delete Roles"
491
+ msgstr "Documentação na exclusão de regras no multisite"
492
+
493
+ #: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:240
494
+ msgid "Documentation on Multisite Roles"
495
+ msgstr "Documentação de regras no multisite"
496
+
497
+ #: ../classes/business-pro/class-wpfront-user-role-editor-ms-restore.php:44
498
+ #: ../classes/business-pro/class-wpfront-user-role-editor-ms-restore.php:73
499
+ #: ../classes/class-wpfront-user-role-editor-go-pro.php:174
500
+ #: ../classes/class-wpfront-user-role-editor-go-pro.php:176
501
+ #: ../classes/class-wpfront-user-role-editor-go-pro.php:196
502
+ #: ../classes/class-wpfront-user-role-editor-go-pro.php:215
503
+ #: ../classes/class-wpfront-user-role-editor-go-pro.php:224
504
+ #: ../classes/class-wpfront-user-role-editor-restore.php:84
505
+ #: ../templates/add-edit-role.php:45 ../templates/add-edit-role.php:53
506
+ #: ../templates/business-pro/sync-roles.php:17
507
+ msgid "ERROR"
508
+ msgstr "ERRO"
509
+
510
+ #: ../classes/business-pro/class-wpfront-user-role-editor-ms-restore.php:44
511
+ msgid "Permission denied."
512
+ msgstr "Permissão negada."
513
+
514
+ #: ../classes/business-pro/class-wpfront-user-role-editor-ms-restore.php:71
515
+ msgid "Partial Failure"
516
+ msgstr "Falha parcial"
517
+
518
+ #: ../classes/business-pro/class-wpfront-user-role-editor-ms-restore.php:86
519
+ #: ../classes/class-wpfront-user-role-editor-restore.php:167
520
+ msgid ""
521
+ "This screen allow you to restore WordPress built-in roles to its standard capability "
522
+ "settings."
523
+ msgstr ""
524
+ "A tela permite que você restaure as funções padrões do WordPress para suas opções de "
525
+ "capacidade padrão."
526
+
527
+ #: ../classes/business-pro/class-wpfront-user-role-editor-ms-restore.php:89
528
+ #: ../classes/class-wpfront-user-role-editor-restore.php:170
529
+ msgid "To restore a role, click the Restore button then Confirm."
530
+ msgstr "Para restaurar uma função, clique no botão Restaurar e então confirme."
531
+
532
+ #: ../classes/business-pro/class-wpfront-user-role-editor-ms-restore.php:98
533
+ msgid "Documentation on Multisite Restore"
534
+ msgstr "Documentação na restauração multisite"
535
+
536
+ #: ../classes/business-pro/class-wpfront-user-role-editor-ms-roles-list-table.php:116
537
+ msgid "No roles found."
538
+ msgstr "Sem funções encontradas."
539
+
540
+ #: ../classes/business-pro/class-wpfront-user-role-editor-ms-roles-list-table.php:142
541
+ #, php-format
542
+ msgid "All <span class=\"count\">(%s)</span>"
543
+ msgstr "Tudo <span class=\"count\">(%s)</span>"
544
+
545
+ #: ../classes/business-pro/class-wpfront-user-role-editor-ms-roles-list-table.php:145
546
+ #, php-format
547
+ msgid "Built-In <span class=\"count\">(%s)</span>"
548
+ msgstr "Padrões <span class=\"count\">(%s)</span>"
549
+
550
+ #: ../classes/business-pro/class-wpfront-user-role-editor-ms-roles-list-table.php:148
551
+ #, php-format
552
+ msgid "Custom <span class=\"count\">(%s)</span>"
553
+ msgstr "Personalizados <span class=\"count\">(%s)</span>"
554
+
555
+ #: ../classes/business-pro/class-wpfront-user-role-editor-ms-roles-list-table.php:198
556
+ #: ../templates/personal-pro/menu-editor.php:155
557
+ #: ../templates/personal-pro/menu-editor.php:191
558
+ #, php-format
559
+ msgid "Select %s"
560
+ msgstr "Selecionar %s"
561
+
562
+ #: ../classes/business-pro/class-wpfront-user-role-editor-ms-roles-list-table.php:244
563
+ msgid "[All Sites]"
564
+ msgstr "[Todos os sites]"
565
+
566
+ #: ../classes/business-pro/class-wpfront-user-role-editor-ms-roles-list-table.php:246
567
+ #, php-format
568
+ msgid "%d Site(s)"
569
+ msgstr "%d Site(s)"
570
+
571
+ #: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:56
572
+ #: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:64
573
+ #: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:83
574
+ msgid "Source site not selected."
575
+ msgstr "O site de fonte não foi selecionado"
576
+
577
+ #: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:67
578
+ #: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:86
579
+ msgid "Destination type not selected."
580
+ msgstr "O tipo de destino não foi selecionado."
581
+
582
+ #: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:74
583
+ #: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:93
584
+ msgid "Destination sites not selected."
585
+ msgstr "Os sites de destino não foram selecionados."
586
+
587
+ #: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:225
588
+ msgid "This screen allows you to sync the roles between the network."
589
+ msgstr "Esta tela permite que você sincronize as regras entre a rede."
590
+
591
+ #: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:228
592
+ msgid ""
593
+ "You will select a site as source, then sync the roles to selected sites or entire "
594
+ "sites within the network."
595
+ msgstr ""
596
+ "Você irá selecionar um site como base, então sincronizará as regras para os sites "
597
+ "selecionados ou para toda a rede de sites."
598
+
599
+ #: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:233
600
+ msgid "Step 1"
601
+ msgstr "Passo 1"
602
+
603
+ #: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:235
604
+ msgid "Select source site."
605
+ msgstr "Selecione o site fonte."
606
+
607
+ #: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:238
608
+ msgid "You will select the source site in this step."
609
+ msgstr "Você selecionará a fonte neste passo."
610
+
611
+ #: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:243
612
+ msgid "Step 2"
613
+ msgstr "Passo 2"
614
+
615
+ #: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:245
616
+ msgid "Select destination sites."
617
+ msgstr "Selecione os sites de destino."
618
+
619
+ #: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:248
620
+ msgid "You will select the destination sites in this step."
621
+ msgstr "Você selecionará os sites de destino neste passo."
622
+
623
+ #: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:251
624
+ msgid ""
625
+ "Use \"All Sites\" to select all the sites within the network or you can select "
626
+ "individual sites using \"Selected Sites\"."
627
+ msgstr ""
628
+ "Use \"Todos os sites\" para selecionar todos os sites na rede ou você pode "
629
+ "selecionar sites individuais utilizando \"Sites selecionados\"."
630
+
631
+ #: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:256
632
+ msgid "Step 3"
633
+ msgstr "Passo 3"
634
+
635
+ #: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:258
636
+ msgid "Choose settings."
637
+ msgstr "Selecione as configurações."
638
+
639
+ #: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:261
640
+ #: ../templates/business-pro/sync-roles.php:222
641
+ msgid "Add roles existing only in source"
642
+ msgstr "Adiciona regras existente apenas na fonte"
643
+
644
+ #: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:263
645
+ msgid "Roles existing in source and do not existing in destination will be created."
646
+ msgstr "Funções existentes na fonte e não existentes no destino serão criadas."
647
+
648
+ #: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:266
649
+ #: ../templates/business-pro/sync-roles.php:227
650
+ msgid "Overwrite existing roles"
651
+ msgstr "Sobrescrever funções existentes"
652
+
653
+ #: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:268
654
+ msgid "If the role from source already exists in destination, it will be overwritten."
655
+ msgstr "Se a função da fonte já existe no destino, ela será sobrescrita."
656
+
657
+ #: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:271
658
+ #: ../templates/business-pro/sync-roles.php:232
659
+ msgid "Remove roles existing only in destination"
660
+ msgstr "Remover funções existentes apenas no destino"
661
+
662
+ #: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:273
663
+ msgid "If a role do not exist in source, but exists in destination it will be removed."
664
+ msgstr "Se uma função não existir na fonte, mas existe no destino, esta será excluída."
665
+
666
+ #: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:276
667
+ #: ../templates/business-pro/sync-roles.php:237
668
+ msgid "Update new user default role"
669
+ msgstr "Atualizar a nova função padrão do usuário"
670
+
671
+ #: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:278
672
+ msgid "The destination new user default role will be updated as same as source."
673
+ msgstr "O destino dos padrões de novos usuários serão atualizados bem como a fonte."
674
+
675
+ #: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:283
676
+ msgid "Step 4"
677
+ msgstr "Passo 4"
678
+
679
+ #: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:285
680
+ msgid "Confirm and Sync"
681
+ msgstr "Confirmar e sincronizar"
682
+
683
+ #: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:288
684
+ msgid "You can verify your settings and start syncing."
685
+ msgstr "Você pode verificar suas configurações e começar a sincronizar."
686
+
687
+ #: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:291
688
+ msgid "Click Sync Roles to start syncing."
689
+ msgstr "Clique em sincronizar para iniciar a sincronização;"
690
+
691
+ #: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:300
692
+ msgid "Documentation on Multisite Sync"
693
+ msgstr "Documentação da sincronização do multisite"
694
+
695
+ #: ../classes/class-wpfront-user-role-editor-add-edit.php:305
696
+ msgid "This screen allows you to add a new role within your site."
697
+ msgstr "Esta tela permite que você adicione uma nova função em seu site."
698
+
699
+ #: ../classes/class-wpfront-user-role-editor-add-edit.php:338
700
+ msgid "Documentation on Add New Role"
701
+ msgstr "Documentação da Adição de Funções"
702
+
703
+ #: ../classes/class-wpfront-user-role-editor-assign-roles.php:59
704
+ #: ../classes/class-wpfront-user-role-editor-assign-roles.php:270
705
+ msgid "Secondary Roles"
706
+ msgstr "Funções secundárias"
707
+
708
+ #: ../classes/class-wpfront-user-role-editor-assign-roles.php:74
709
+ #: ../classes/class-wpfront-user-role-editor-assign-roles.php:303
710
+ #: ../templates/assign-roles.php:36 ../templates/assign-roles.php:88
711
+ msgid "Assign Roles"
712
+ msgstr "Assinar funções"
713
+
714
+ #: ../classes/class-wpfront-user-role-editor-assign-roles.php:111
715
+ msgid "No role for this site"
716
+ msgstr "Sem funções para este site"
717
+
718
+ #: ../classes/class-wpfront-user-role-editor-assign-roles.php:127
719
+ msgid "Invalid user."
720
+ msgstr "Usuário inválido."
721
+
722
+ #: ../classes/class-wpfront-user-role-editor-assign-roles.php:155
723
+ msgid "Roles updated successfully."
724
+ msgstr "Funções atualizadas com sucesso."
725
+
726
+ #: ../classes/class-wpfront-user-role-editor-assign-roles.php:157
727
+ msgid "Invalid primary role specified."
728
+ msgstr "Função primária especificada inválida."
729
+
730
+ #: ../classes/class-wpfront-user-role-editor-assign-roles.php:175
731
+ #: ../classes/class-wpfront-user-role-editor-assign-roles.php:185
732
+ msgid "Invalid primary role."
733
+ msgstr "Função primária inválida."
734
+
735
+ #: ../classes/class-wpfront-user-role-editor-assign-roles.php:207
736
+ #, php-format
737
+ msgid "%d user(s) migrated."
738
+ msgstr "%d usuário(s) migrado(s)."
739
+
740
+ #: ../classes/class-wpfront-user-role-editor-assign-roles.php:252
741
+ msgid "Primary Role"
742
+ msgstr "Regra primária"
743
+
744
+ #: ../classes/class-wpfront-user-role-editor-assign-roles.php:298
745
+ msgid ""
746
+ "This screen allows you to assign multiple roles to a user and also allows you to "
747
+ "migrate users from a role to another role."
748
+ msgstr ""
749
+ "Esta tela permite que você assine múltiplas regras para um usuário e também permite "
750
+ "você migrar usuários de uma regra para outra."
751
+
752
+ #: ../classes/class-wpfront-user-role-editor-assign-roles.php:305
753
+ msgid ""
754
+ "To assign multiple roles to a user, select that user within the User drop down list "
755
+ "and select the primary role you want for that user using the Primary Role drop down "
756
+ "list. Select the secondary roles using the check boxes below, then click Assign "
757
+ "Roles."
758
+ msgstr ""
759
+ "Para assinar múltiplas funções à um usuário, selecione este usuário na lista "
760
+ "suspensa e selecione a regra primária que você deseja para este usuário usando a "
761
+ "lista suspensa de função primária. Selecione as regras secundárias usando as caixas "
762
+ "de marcação a seguir, então clique em assinar funções."
763
+
764
+ #: ../classes/class-wpfront-user-role-editor-assign-roles.php:310
765
+ #: ../templates/assign-roles.php:93 ../templates/assign-roles.php:126
766
+ msgid "Migrate Users"
767
+ msgstr "Migrar usuários"
768
+
769
+ #: ../classes/class-wpfront-user-role-editor-assign-roles.php:312
770
+ msgid ""
771
+ "To migrate users from one role to another role or to add secondary roles to users "
772
+ "belonging to a particular primary role, use the migrate users functionality."
773
+ msgstr ""
774
+ "Para migrar usuários de uma função para outra, ou adicionar funções secundárias "
775
+ "pertencentes à uma função primária particular, use a funcionalidades de migrar "
776
+ "usuários."
777
+
778
+ #: ../classes/class-wpfront-user-role-editor-assign-roles.php:315
779
+ msgid ""
780
+ "Select the users using the From Primary Role drop down, to primary role using the "
781
+ "Primary Role drop down and secondary roles using the check boxes then click Migrate "
782
+ "Users."
783
+ msgstr ""
784
+ "Seçecione os usuários da lista suspensa de função primária, para a função primária "
785
+ "usando a lista suspensa de funções primárias e funções secundárias utilizando as "
786
+ "caixas de marcação, então clique em migrar usuários."
787
+
788
+ #: ../classes/class-wpfront-user-role-editor-assign-roles.php:324
789
+ msgid "Documentation on Assign / Migrate Users"
790
+ msgstr "Documentação em Assinar/Migrar usuários"
791
+
792
+ #: ../classes/class-wpfront-user-role-editor-controller-base.php:81
793
+ msgid "Links:"
794
+ msgstr "Links:"
795
+
796
+ #: ../classes/class-wpfront-user-role-editor-controller-base.php:87
797
+ msgid "FAQ"
798
+ msgstr "FAQ"
799
+
800
+ #: ../classes/class-wpfront-user-role-editor-controller-base.php:88
801
+ msgid "Support"
802
+ msgstr "Suporte"
803
+
804
+ #: ../classes/class-wpfront-user-role-editor-controller-base.php:89
805
+ msgid "Review"
806
+ msgstr "Revisão"
807
+
808
+ #: ../classes/class-wpfront-user-role-editor-controller-base.php:90
809
+ msgid "Contact"
810
+ msgstr "Contato"
811
+
812
+ #: ../classes/class-wpfront-user-role-editor-go-pro.php:174
813
+ msgid "License key activation limit reached"
814
+ msgstr "Limite de ativação de chaves de licença atingido"
815
+
816
+ #: ../classes/class-wpfront-user-role-editor-go-pro.php:176
817
+ msgid "Invalid license key"
818
+ msgstr "Chave de licença inválida"
819
+
820
+ #: ../classes/class-wpfront-user-role-editor-go-pro.php:196
821
+ msgid "Unable to deactivate, expired license?"
822
+ msgstr "Não pôde desativar, licença expirada?"
823
+
824
+ #: ../classes/class-wpfront-user-role-editor-go-pro.php:215
825
+ msgid "Unable to contact wpfront.com"
826
+ msgstr "Não pôde contatar wpfront.com"
827
+
828
+ #: ../classes/class-wpfront-user-role-editor-go-pro.php:224
829
+ msgid "Unable to parse response"
830
+ msgstr "Não pôde analisar resposta"
831
+
832
+ #: ../classes/class-wpfront-user-role-editor-list.php:214
833
+ #: ../templates/add-edit-role.php:111 ../templates/personal-pro/menu-editor.php:126
834
+ msgid "Select All"
835
+ msgstr "Selecionar tudo"
836
+
837
+ #: ../classes/class-wpfront-user-role-editor-list.php:224
838
+ #: ../classes/class-wpfront-user-role-editor-list.php:424
839
+ msgid "Type"
840
+ msgstr "Tipo"
841
+
842
+ #: ../classes/class-wpfront-user-role-editor-list.php:227
843
+ #: ../classes/class-wpfront-user-role-editor-list.php:429
844
+ msgid "User Default"
845
+ msgstr "Padrão do usuário"
846
+
847
+ #: ../classes/class-wpfront-user-role-editor-list.php:230
848
+ #: ../classes/class-wpfront-user-role-editor-list.php:434
849
+ msgid "Users"
850
+ msgstr "Usuários"
851
+
852
+ #: ../classes/class-wpfront-user-role-editor-list.php:251
853
+ msgid "Bulk Actions"
854
+ msgstr "Ações agendadas"
855
+
856
+ #: ../classes/class-wpfront-user-role-editor-list.php:256
857
+ #: ../templates/add-edit-role.php:107 ../templates/personal-pro/menu-editor.php:94
858
+ msgid "Apply"
859
+ msgstr "Aplicar"
860
+
861
+ #: ../classes/class-wpfront-user-role-editor-list.php:258
862
+ #, php-format
863
+ msgid "%s item(s)"
864
+ msgstr "%s item(s)"
865
+
866
+ #: ../classes/class-wpfront-user-role-editor-list.php:281
867
+ msgid "All"
868
+ msgstr "Tudo"
869
+
870
+ #: ../classes/class-wpfront-user-role-editor-list.php:292
871
+ msgid "Having Users"
872
+ msgstr "Tendo usuários"
873
+
874
+ #: ../classes/class-wpfront-user-role-editor-list.php:298
875
+ msgid "No Users"
876
+ msgstr "Sem usuários"
877
+
878
+ #: ../classes/class-wpfront-user-role-editor-list.php:309
879
+ #: ../templates/list-roles.php:118
880
+ msgid "Built-In"
881
+ msgstr "Padrões"
882
+
883
+ #: ../classes/class-wpfront-user-role-editor-list.php:315
884
+ #: ../templates/list-roles.php:118
885
+ msgid "Custom"
886
+ msgstr "Personalizados"
887
+
888
+ #: ../classes/class-wpfront-user-role-editor-list.php:353
889
+ msgid "This screen allows you to edit a role within your site."
890
+ msgstr "Esta tela permite que você edite uma função em seu site."
891
+
892
+ #: ../classes/class-wpfront-user-role-editor-list.php:387
893
+ msgid "This screen allows you to delete roles from your WordPress site."
894
+ msgstr "Esta tela permite que você exclua funções de seu site WordPress."
895
+
896
+ #: ../classes/class-wpfront-user-role-editor-list.php:393
897
+ msgid ""
898
+ "You cannot delete administrator role, current user’s role and roles you do not have "
899
+ "permission to."
900
+ msgstr ""
901
+ "Você não pode excluir a função de administrador, a regra do usuário atual e funções "
902
+ "que você não tem permissões de mudar."
903
+
904
+ #: ../classes/class-wpfront-user-role-editor-list.php:404
905
+ msgid "This screen lists all the existing roles within your site."
906
+ msgstr "Este tela lista todas as funções existentes em seu site."
907
+
908
+ #: ../classes/class-wpfront-user-role-editor-list.php:416
909
+ msgid "Used to display this role within this site."
910
+ msgstr "Usado para mostrar esta função neste site."
911
+
912
+ #: ../classes/class-wpfront-user-role-editor-list.php:426
913
+ msgid ""
914
+ "Says whether the role is a WordPress built-in role or not. There are five built-in "
915
+ "roles."
916
+ msgstr "Diz se a função é uma das padrões WordPress ou não. Há cinco funções padrões."
917
+
918
+ #: ../classes/class-wpfront-user-role-editor-list.php:431
919
+ msgid "Displays whether a role is the default role of a new user."
920
+ msgstr "Mostra se a função é a padrão para um novo usuário."
921
+
922
+ #: ../classes/class-wpfront-user-role-editor-list.php:436
923
+ msgid "Number of users in that role."
924
+ msgstr "Número de usuários nesta função."
925
+
926
+ #: ../classes/class-wpfront-user-role-editor-list.php:441
927
+ msgid "Number of capabilities that role have."
928
+ msgstr "Número de capacidades que esta função possui."
929
+
930
+ #: ../classes/class-wpfront-user-role-editor-list.php:444
931
+ msgid "Menu Edited"
932
+ msgstr "Menu editado"
933
+
934
+ #: ../classes/class-wpfront-user-role-editor-list.php:446
935
+ msgid "Displays whether the menu has been edited for this role. This is a pro feature."
936
+ msgstr "Mostra onde o menu foi editado nesta função. Esta é uma ferramenta Pro."
937
+
938
+ #: ../classes/class-wpfront-user-role-editor-list.php:468
939
+ msgid ""
940
+ "Allows you to delete that role. Delete action will not appear if you do not have "
941
+ "permission to delete that role."
942
+ msgstr ""
943
+ "Permite que você exclua esta função. A ação de exclusão não aparecerá se você não "
944
+ "tem permissão para excluir esta função."
945
+
946
+ #: ../classes/class-wpfront-user-role-editor-list.php:471
947
+ #: ../templates/list-roles.php:104
948
+ msgid "Default"
949
+ msgstr "Padrão"
950
+
951
+ #: ../classes/class-wpfront-user-role-editor-list.php:473
952
+ msgid "Allows you to set that role as the default role for new user registration."
953
+ msgstr ""
954
+ "Permite que você defina que regra será a padrão para o registro de novos usuários."
955
+
956
+ #: ../classes/class-wpfront-user-role-editor-list.php:476
957
+ #: ../classes/personal-pro/class-wpfront-user-role-editor-menu-editor.php:555
958
+ msgid "Edit Menu"
959
+ msgstr "Editar menu"
960
+
961
+ #: ../classes/class-wpfront-user-role-editor-list.php:478
962
+ msgid ""
963
+ "Takes you to the menu editor screen for that role. You need \"edit_role_menus\" "
964
+ "capability for this link to appear. This is a pro feature."
965
+ msgstr ""
966
+ "O leva à tela de editor de menu para esta função. Você precisa da capacidade "
967
+ "\"edit_role_menus\" para este link aparecer. Esta é uma ferramenta Pro."
968
+
969
+ #: ../classes/class-wpfront-user-role-editor-list.php:490
970
+ msgid "Documentation on Edit Role"
971
+ msgstr "Documentação da edição de funções"
972
+
973
+ #: ../classes/class-wpfront-user-role-editor-list.php:497
974
+ msgid "Documentation on Delete Roles"
975
+ msgstr "Documentação na exclusão de funções"
976
+
977
+ #: ../classes/class-wpfront-user-role-editor-list.php:505
978
+ msgid "Documentation on Roles"
979
+ msgstr "Documentação nas funções"
980
+
981
+ #: ../classes/class-wpfront-user-role-editor-options.php:193
982
+ msgid ""
983
+ "These settings are applicable for the network admin dashboard. Also these settings "
984
+ "will propagate to the individual sites unless its overridden within that site’s "
985
+ "settings."
986
+ msgstr ""
987
+ "Estas configurações são aplicáveis ao painel de controle do administrador de rede. "
988
+ "Também estas configurações se propagarão para sites individuais menos se isto for "
989
+ "substituído nestas configurações de site."
990
+
991
+ #: ../classes/class-wpfront-user-role-editor-options.php:200
992
+ #: ../templates/options-template.php:40
993
+ msgid "Enable Large Network Functionalities"
994
+ msgstr "Ativar funcionalidades de grande rede"
995
+
996
+ #: ../classes/class-wpfront-user-role-editor-options.php:202
997
+ msgid "This setting is only visible when you have a large network."
998
+ msgstr "Esta configuração é visível apenas quando você possui uma grande rede."
999
+
1000
+ #: ../classes/class-wpfront-user-role-editor-options.php:204
1001
+ msgid "More details"
1002
+ msgstr "Mais detelhes"
1003
+
1004
+ #: ../classes/class-wpfront-user-role-editor-options.php:208
1005
+ #: ../classes/class-wpfront-user-role-editor-options.php:235
1006
+ #: ../templates/options-template.php:49
1007
+ msgid "Display Deprecated Capabilities"
1008
+ msgstr "Mostra capacidades obsoletas"
1009
+
1010
+ #: ../classes/class-wpfront-user-role-editor-options.php:210
1011
+ #: ../classes/class-wpfront-user-role-editor-options.php:237
1012
+ msgid ""
1013
+ "If enabled, deprecated capabilities will be displayed within the add/edit screens."
1014
+ msgstr ""
1015
+ "Se ativado, capacidades obsoletas serão mostradas nas telas de adicionar/editar."
1016
+
1017
+ #: ../classes/class-wpfront-user-role-editor-options.php:213
1018
+ #: ../classes/class-wpfront-user-role-editor-options.php:240
1019
+ #: ../templates/options-template.php:57
1020
+ msgid "Remove Non-Standard Capabilities on Restore"
1021
+ msgstr "Remover capacidades não-padrões na restauração"
1022
+
1023
+ #: ../classes/class-wpfront-user-role-editor-options.php:215
1024
+ #: ../classes/class-wpfront-user-role-editor-options.php:242
1025
+ msgid ""
1026
+ "If enabled, while restoring WordPress built-in capabilities non-standard "
1027
+ "capabilities will be removed."
1028
+ msgstr ""
1029
+ "Se ativado, enquanto restaura as capacidades padrões do WordPress capacidades não-"
1030
+ "padrões serão removidas."
1031
+
1032
+ #: ../classes/class-wpfront-user-role-editor-options.php:218
1033
+ #: ../classes/class-wpfront-user-role-editor-options.php:245
1034
+ #: ../templates/options-template.php:65
1035
+ msgid "Override Edit Permissions"
1036
+ msgstr "Substituir permissões de edição"
1037
+
1038
+ #: ../classes/class-wpfront-user-role-editor-options.php:220
1039
+ #: ../classes/class-wpfront-user-role-editor-options.php:247
1040
+ msgid "If enabled, ignores the check to the function get_editable_roles."
1041
+ msgstr "Se ativado, ignorará marcar a função get_editable_roles."
1042
+
1043
+ #: ../classes/class-wpfront-user-role-editor-options.php:223
1044
+ #: ../classes/class-wpfront-user-role-editor-options.php:250
1045
+ #: ../templates/options-template.php:74
1046
+ msgid "Remove Data on Uninstall"
1047
+ msgstr "Remover dados na desinstalação"
1048
+
1049
+ #: ../classes/class-wpfront-user-role-editor-options.php:225
1050
+ #: ../classes/class-wpfront-user-role-editor-options.php:252
1051
+ msgid ""
1052
+ "If enabled, removes all data related to this plugin from database (except roles "
1053
+ "data) including license information if any. This will not deactivate the license "
1054
+ "automatically."
1055
+ msgstr ""
1056
+ "Se ativado, remove todos os dados relativos à este plugin da base de dados (exceto "
1057
+ "dados de funções) incluindo as informações de chaves de licenças, se houver. Isto "
1058
+ "não desativará a licença automaticamente."
1059
+
1060
+ #: ../classes/class-wpfront-user-role-editor-options.php:263
1061
+ msgid "Documentation on Multisite Settings"
1062
+ msgstr "Documentação nas configurações de multisite"
1063
+
1064
+ #: ../classes/class-wpfront-user-role-editor-options.php:270
1065
+ msgid "Documentation on Settings"
1066
+ msgstr "Documentação nas configurações"
1067
+
1068
+ #: ../classes/class-wpfront-user-role-editor-restore.php:179
1069
+ msgid "Documentation on Restore"
1070
+ msgstr "Documentações na restauração"
1071
+
1072
+ #: ../classes/class-wpfront-user-role-editor.php:221
1073
+ msgid "Assign Roles | Migrate Users"
1074
+ msgstr "Assinar funções | Migrar usuários"
1075
+
1076
+ #: ../classes/class-wpfront-user-role-editor.php:221
1077
+ msgid "Assign / Migrate"
1078
+ msgstr "Assinar / Migrar"
1079
+
1080
+ #: ../classes/class-wpfront-user-role-editor.php:316
1081
+ msgid "Buy me a Beer"
1082
+ msgstr "Compre-me uma cerveja"
1083
+
1084
+ #: ../classes/personal-pro/class-wpfront-user-role-editor-export.php:128
1085
+ msgid ""
1086
+ "This screen allows you to export the roles existing within your site and import into "
1087
+ "the same site or a different site."
1088
+ msgstr ""
1089
+ "Esta tela permite que você exporte as funções existentes em seu site e importe para "
1090
+ "o mesmo site ou à um diferente."
1091
+
1092
+ #: ../classes/personal-pro/class-wpfront-user-role-editor-export.php:131
1093
+ msgid "Select the roles to export, then click Download Export File."
1094
+ msgstr ""
1095
+ "Selecione as funções para exportar, então clique em Baixar Arquivo de Exportação."
1096
+
1097
+ #: ../classes/personal-pro/class-wpfront-user-role-editor-export.php:140
1098
+ msgid "Documentation on Export"
1099
+ msgstr "Documentação na exportação"
1100
+
1101
+ #: ../classes/personal-pro/class-wpfront-user-role-editor-import.php:33
1102
+ msgid "This functionality requires SimpleXML extension, which is not loaded."
1103
+ msgstr "Esta funcionalidades requerem a extensão SimpleXML, que não está lida."
1104
+
1105
+ #: ../classes/personal-pro/class-wpfront-user-role-editor-import.php:81
1106
+ #, php-format
1107
+ msgid "%d role(s) imported."
1108
+ msgstr "%d funções(s) importadas."
1109
+
1110
+ #: ../classes/personal-pro/class-wpfront-user-role-editor-import.php:102
1111
+ #, php-format
1112
+ msgid ""
1113
+ "The export file could not be found at <code>%s</code>. It is likely that this was "
1114
+ "caused by a permissions problem."
1115
+ msgstr ""
1116
+ "O arquivo exportado não foi encontrado em <code>%s</code>. Isto é como isto foi "
1117
+ "causado por um problema de permissões."
1118
+
1119
+ #: ../classes/personal-pro/class-wpfront-user-role-editor-import.php:133
1120
+ #: ../classes/personal-pro/class-wpfront-user-role-editor-import.php:141
1121
+ msgid "There was an error when reading this export file"
1122
+ msgstr "Houve um erro ao ler o este arquivo exportado"
1123
+
1124
+ #: ../classes/personal-pro/class-wpfront-user-role-editor-import.php:158
1125
+ #, php-format
1126
+ msgid ""
1127
+ "Please update the plugin to latest version. This export file requires plugin version "
1128
+ "%s or higher."
1129
+ msgstr ""
1130
+ "Por favor atualize o plugin para a última versão. Este arquivo de exportação requer "
1131
+ "a versão %s ou superior."
1132
+
1133
+ #: ../classes/personal-pro/class-wpfront-user-role-editor-import.php:214
1134
+ msgid "This file does not appears to be a valid export file."
1135
+ msgstr "Este arquivo não parece ser um arquivo de exportação válido."
1136
+
1137
+ #: ../classes/personal-pro/class-wpfront-user-role-editor-import.php:227
1138
+ msgid ""
1139
+ "Step 1: Select export file using the Browse button. Then click Upload file and "
1140
+ "Import."
1141
+ msgstr ""
1142
+ "Passo 1: Selecione o arquivo de exportação usando o botão Navegador. Então clique em "
1143
+ "Carregar arquivo e impertar."
1144
+
1145
+ #: ../classes/personal-pro/class-wpfront-user-role-editor-import.php:230
1146
+ msgid ""
1147
+ "Step 2: Select the roles you want to import using the check boxes and click Import "
1148
+ "Roles."
1149
+ msgstr ""
1150
+ "Passo 2: Selecione as funções que você deseja importar usando as caixas de marcar e "
1151
+ "clique em Importar funções."
1152
+
1153
+ #: ../classes/personal-pro/class-wpfront-user-role-editor-import.php:239
1154
+ msgid "Documentation on Import"
1155
+ msgstr "Importar documentação"
1156
+
1157
+ #: ../classes/personal-pro/class-wpfront-user-role-editor-menu-editor.php:157
1158
+ msgid "Menu changes saved."
1159
+ msgstr "Alterações no menu salvas."
1160
+
1161
+ #: ../classes/personal-pro/class-wpfront-user-role-editor-menu-editor.php:170
1162
+ msgid "Menu defaults restored."
1163
+ msgstr "Padrões de menu restaurados."
1164
+
1165
+ #: ../classes/personal-pro/class-wpfront-user-role-editor-menu-editor.php:185
1166
+ msgid "No editable roles found on this site."
1167
+ msgstr "Funções não editáveis encontradas neste site."
1168
+
1169
+ #: ../classes/personal-pro/class-wpfront-user-role-editor-menu-editor.php:565
1170
+ msgid "This screen allows you to enable and disable admin menus for a particular role."
1171
+ msgstr ""
1172
+ "Esta tela permite que você ative ou desative menus administrativos para uma regra "
1173
+ "particular."
1174
+
1175
+ #: ../classes/personal-pro/class-wpfront-user-role-editor-menu-editor.php:568
1176
+ msgid "Deselect a menu from the grid to remove that menu."
1177
+ msgstr "Desmarca um menu da grade para remover este menu."
1178
+
1179
+ #: ../classes/personal-pro/class-wpfront-user-role-editor-menu-editor.php:571
1180
+ msgid ""
1181
+ "Disabled menu items are already hidden, because the selected role doesn't have the "
1182
+ "capability to display that menu. Grid displays menus which the current user has "
1183
+ "access to."
1184
+ msgstr ""
1185
+ "Itens desativados do menu ainda estão escondidos, porque a função selecionada não "
1186
+ "tem capacidade para mostrar este menu. A grade mostra menus que o usuário atual tem "
1187
+ "acesso."
1188
+
1189
+ #: ../classes/personal-pro/class-wpfront-user-role-editor-menu-editor.php:576
1190
+ msgid "Fields"
1191
+ msgstr "Campos"
1192
+
1193
+ #: ../classes/personal-pro/class-wpfront-user-role-editor-menu-editor.php:578
1194
+ #: ../templates/personal-pro/menu-editor.php:33
1195
+ msgid "Override Role"
1196
+ msgstr "Funções substituídas"
1197
+
1198
+ #: ../classes/personal-pro/class-wpfront-user-role-editor-menu-editor.php:580
1199
+ msgid "The role you want to override."
1200
+ msgstr "A função que você quer substituir."
1201
+
1202
+ #: ../classes/personal-pro/class-wpfront-user-role-editor-menu-editor.php:583
1203
+ #: ../templates/personal-pro/menu-editor.php:50
1204
+ msgid "Override Type"
1205
+ msgstr "Tipo de substituição"
1206
+
1207
+ #: ../classes/personal-pro/class-wpfront-user-role-editor-menu-editor.php:585
1208
+ msgid ""
1209
+ "Soft - Pages may be available through directly typing the URL. Hard - Even URLs will "
1210
+ "be blocked."
1211
+ msgstr ""
1212
+ "Leve - Páginas podem estar disponíveis diretamente digitando a URL. Duro - Até mesmo "
1213
+ "URLs serão bloqueadas."
1214
+
1215
+ #: ../classes/personal-pro/class-wpfront-user-role-editor-menu-editor.php:588
1216
+ #: ../templates/personal-pro/menu-editor.php:61
1217
+ msgid "Hide New Menus"
1218
+ msgstr "Esconder novos menus"
1219
+
1220
+ #: ../classes/personal-pro/class-wpfront-user-role-editor-menu-editor.php:590
1221
+ msgid "Allow you to hide future menus."
1222
+ msgstr "Permite que você esconda futuros menus."
1223
+
1224
+ #: ../classes/personal-pro/class-wpfront-user-role-editor-menu-editor.php:593
1225
+ #: ../templates/personal-pro/menu-editor.php:69
1226
+ msgid "Disable For Secondary Role"
1227
+ msgstr "Desativas para funções secundárias"
1228
+
1229
+ #: ../classes/personal-pro/class-wpfront-user-role-editor-menu-editor.php:595
1230
+ msgid "Disables menu settings while the selected role is a secondary role."
1231
+ msgstr "Desativa configurações do menu enquanto a função selecionada é uma secundária."
1232
+
1233
+ #: ../classes/personal-pro/class-wpfront-user-role-editor-menu-editor.php:600
1234
+ msgid "Restore Default"
1235
+ msgstr "Restaurar padrão"
1236
+
1237
+ #: ../classes/personal-pro/class-wpfront-user-role-editor-menu-editor.php:602
1238
+ msgid "Select \"Restore default\" from the \"Copy from\" drop down and click apply."
1239
+ msgstr ""
1240
+ "Selecione \"Restaurar padrão\" de \"Copiar da\" lista suspensa e clique aplicar."
1241
+
1242
+ #: ../classes/personal-pro/class-wpfront-user-role-editor-menu-editor.php:611
1243
+ msgid "Documentation on Menu Editor"
1244
+ msgstr "Documentação no Editor de Menu"
1245
+
1246
+ #: ../classes/personal-pro/class-wpfront-user-role-editor-personal-pro.php:65
1247
+ #: ../templates/personal-pro/menu-editor.php:3
1248
+ msgid "Menu Editor"
1249
+ msgstr "Editor de Menu"
1250
+
1251
+ #: ../classes/personal-pro/class-wpfront-user-role-editor-personal-pro.php:66
1252
+ #: ../templates/personal-pro/export-roles.php:3
1253
+ msgid "Export Roles"
1254
+ msgstr "Exportar funções"
1255
+
1256
+ #: ../classes/personal-pro/class-wpfront-user-role-editor-personal-pro.php:66
1257
+ msgid "Export"
1258
+ msgstr "Exportar"
1259
+
1260
+ #: ../classes/personal-pro/class-wpfront-user-role-editor-personal-pro.php:67
1261
+ #: ../templates/personal-pro/import-roles.php:3
1262
+ #: ../templates/personal-pro/import-roles.php:82
1263
+ msgid "Import Roles"
1264
+ msgstr "Importar funções"
1265
+
1266
+ #: ../classes/personal-pro/class-wpfront-user-role-editor-personal-pro.php:67
1267
+ msgid "Import"
1268
+ msgstr "Importar"
1269
+
1270
+ #: ../classes/personal-pro/class-wpfront-user-role-editor-personal-pro.php:87
1271
+ #, php-format
1272
+ msgid "%s license not activated."
1273
+ msgstr "%s licença não ativada"
1274
+
1275
+ #: ../classes/personal-pro/class-wpfront-user-role-editor-post-type-permissions.php:44
1276
+ #: ../classes/personal-pro/class-wpfront-user-role-editor-post-type-permissions.php:269
1277
+ msgid "Role Permissions"
1278
+ msgstr "Permissões da função"
1279
+
1280
+ #: ../templates/add-edit-role.php:35
1281
+ msgid "Edit Role"
1282
+ msgstr "Editar função"
1283
+
1284
+ #: ../templates/add-edit-role.php:45
1285
+ msgid "This role already exists in this site."
1286
+ msgstr "Esta função ainda existe neste site."
1287
+
1288
+ #: ../templates/add-edit-role.php:53
1289
+ msgid "There was an unexpected error while performing this action."
1290
+ msgstr "Houve um erro inesperado enquanto realizávamos esta ação."
1291
+
1292
+ #: ../templates/add-edit-role.php:60
1293
+ msgid "Create a brand new role and add it to this site."
1294
+ msgstr "Criar uma marca nova função e adicioná-la à este site."
1295
+
1296
+ #: ../templates/add-edit-role.php:71 ../templates/add-edit-role.php:81
1297
+ msgid "required"
1298
+ msgstr "requerido"
1299
+
1300
+ #: ../templates/add-edit-role.php:100 ../templates/personal-pro/menu-editor.php:83
1301
+ msgid "Copy from"
1302
+ msgstr "Copiar de "
1303
+
1304
+ #: ../templates/add-edit-role.php:112
1305
+ msgid "Select None"
1306
+ msgstr "Selecionar nenhum"
1307
+
1308
+ #: ../templates/add-edit-role.php:154
1309
+ msgid "Update Role"
1310
+ msgstr "Atualizar função"
1311
+
1312
+ #: ../templates/assign-roles.php:62
1313
+ msgid "User"
1314
+ msgstr "Usuário"
1315
+
1316
+ #: ../templates/assign-roles.php:103
1317
+ msgid "From Primary Role"
1318
+ msgstr "Da função primária"
1319
+
1320
+ #: ../templates/business-pro/sync-roles.php:25
1321
+ msgid "Step 1: Select the source site"
1322
+ msgstr "Passo 1: Selecione o site fonte"
1323
+
1324
+ #: ../templates/business-pro/sync-roles.php:34
1325
+ #: ../templates/business-pro/sync-roles.php:84
1326
+ msgid "Search Sites"
1327
+ msgstr "Buscar sites"
1328
+
1329
+ #: ../templates/business-pro/sync-roles.php:40
1330
+ #: ../templates/business-pro/sync-roles.php:95
1331
+ #: ../templates/business-pro/sync-roles.php:245
1332
+ msgid "Next Step"
1333
+ msgstr "Próximo passo"
1334
+
1335
+ #: ../templates/business-pro/sync-roles.php:70
1336
+ msgid "Step 2: Select destination sites"
1337
+ msgstr "Passo 2: Selecionar sites de destino"
1338
+
1339
+ #: ../templates/business-pro/sync-roles.php:74
1340
+ #: ../templates/business-pro/sync-roles.php:269
1341
+ msgid "All Sites"
1342
+ msgstr "Todos os sites"
1343
+
1344
+ #: ../templates/business-pro/sync-roles.php:77
1345
+ msgid "Selected Sites"
1346
+ msgstr "Sites selecionados"
1347
+
1348
+ #: ../templates/business-pro/sync-roles.php:216
1349
+ msgid "Step 3: Choose settings"
1350
+ msgstr "Passo 3: Selecionar configurações"
1351
+
1352
+ #: ../templates/business-pro/sync-roles.php:255
1353
+ msgid "Step 4: Confirm and Sync"
1354
+ msgstr "Passo 4: Confirmar e sincronizar"
1355
+
1356
+ #: ../templates/business-pro/sync-roles.php:260
1357
+ msgid "Source: "
1358
+ msgstr "Fonte:"
1359
+
1360
+ #: ../templates/business-pro/sync-roles.php:268
1361
+ msgid "Destination: "
1362
+ msgstr "Destino:"
1363
+
1364
+ #: ../templates/business-pro/sync-roles.php:269
1365
+ msgid "Selected sites"
1366
+ msgstr "Sites selecionados"
1367
+
1368
+ #: ../templates/business-pro/sync-roles.php:269
1369
+ #, php-format
1370
+ msgid "%s site(s) selected"
1371
+ msgstr "%s site(s) selecionados"
1372
+
1373
+ #: ../templates/business-pro/sync-roles.php:274
1374
+ msgid "Add roles existing only in source: "
1375
+ msgstr "Adicionar funções existentes apenas na fonte:"
1376
+
1377
+ #: ../templates/business-pro/sync-roles.php:275
1378
+ #: ../templates/business-pro/sync-roles.php:281
1379
+ #: ../templates/business-pro/sync-roles.php:287
1380
+ #: ../templates/business-pro/sync-roles.php:293
1381
+ msgid "Yes"
1382
+ msgstr "Sim"
1383
+
1384
+ #: ../templates/business-pro/sync-roles.php:275
1385
+ #: ../templates/business-pro/sync-roles.php:281
1386
+ #: ../templates/business-pro/sync-roles.php:287
1387
+ #: ../templates/business-pro/sync-roles.php:293
1388
+ msgid "No"
1389
+ msgstr "Não"
1390
+
1391
+ #: ../templates/business-pro/sync-roles.php:280
1392
+ msgid "Overwrite existing roles: "
1393
+ msgstr "Sobrescrever funções existentes:"
1394
+
1395
+ #: ../templates/business-pro/sync-roles.php:286
1396
+ msgid "Remove roles existing only in destination: "
1397
+ msgstr "Remover funções existentes apenas no destino: "
1398
+
1399
+ #: ../templates/business-pro/sync-roles.php:292
1400
+ msgid "Update new user default role: "
1401
+ msgstr "Atualizar a função padrão de novo usuário: "
1402
+
1403
+ #: ../templates/business-pro/sync-roles.php:344
1404
+ msgid "SUCCESS"
1405
+ msgstr "SUCESSO"
1406
+
1407
+ #: ../templates/business-pro/sync-roles.php:347
1408
+ msgid "FAIL"
1409
+ msgstr "FALHA"
1410
+
1411
+ #: ../templates/business-pro/sync-roles.php:370
1412
+ msgid "Synching site"
1413
+ msgstr "Sincronizando site"
1414
+
1415
+ #: ../templates/delete-role.php:37
1416
+ msgid "Delete Roles"
1417
+ msgstr "Excluindo funções"
1418
+
1419
+ #: ../templates/delete-role.php:38
1420
+ msgid "You have specified these roles for deletion"
1421
+ msgstr "Você especificou estas regras para excluir"
1422
+
1423
+ #: ../templates/delete-role.php:45
1424
+ msgid "Role"
1425
+ msgstr "Regra"
1426
+
1427
+ #: ../templates/delete-role.php:57
1428
+ msgid "Confirm Deletion"
1429
+ msgstr "Confirmar exclusão"
1430
+
1431
+ #: ../templates/go-pro.php:36
1432
+ msgid "WPFront User Role Editor Pro"
1433
+ msgstr "WPFront User Role Editor Pro"
1434
+
1435
+ #: ../templates/go-pro.php:59
1436
+ msgid "License Key"
1437
+ msgstr "Chave de Licença"
1438
+
1439
+ #: ../templates/go-pro.php:68 ../templates/go-pro.php:69
1440
+ msgid "Deactivate"
1441
+ msgstr "Desativar"
1442
+
1443
+ #: ../templates/go-pro.php:76
1444
+ msgid "License Expires"
1445
+ msgstr "Licença Expirada"
1446
+
1447
+ #: ../templates/options-template.php:32
1448
+ msgid "WPFront User Role Editor Settings"
1449
+ msgstr "Configurações WPFront User Role Editor"
1450
+
1451
+ #: ../templates/personal-pro/export-roles.php:7
1452
+ msgid "Select the roles to be uploaded"
1453
+ msgstr "Selecionar as funções a serem carregadas"
1454
+
1455
+ #: ../templates/personal-pro/export-roles.php:34
1456
+ msgid "Download Export File"
1457
+ msgstr "Baixar arquivo exportado"
1458
+
1459
+ #: ../templates/personal-pro/import-roles.php:15
1460
+ msgid "ERROR:"
1461
+ msgstr "ERRO:"
1462
+
1463
+ #: ../templates/personal-pro/import-roles.php:24
1464
+ msgid ""
1465
+ "Choose a WPFront User Role Editor export file (.xml) to upload, then click Upload "
1466
+ "file and import."
1467
+ msgstr ""
1468
+ "Selecione um arquivo de exportação WPFront User Role Editor (.xml) para carregar, "
1469
+ "então clique em Carregar arquivo e importe."
1470
+
1471
+ #: ../templates/personal-pro/import-roles.php:33
1472
+ #, php-format
1473
+ msgid "Roles exported from %s on %s by user %s."
1474
+ msgstr "Funções exportadas de %s em %s pelo usuário %s."
1475
+
1476
+ #: ../templates/personal-pro/import-roles.php:33
1477
+ msgid "UTC"
1478
+ msgstr "UTC"
1479
+
1480
+ #: ../templates/personal-pro/import-roles.php:40
1481
+ msgid "Zero roles found in this export file to import."
1482
+ msgstr "Sem funções encontradas neste arquivo a ser importado."
1483
+
1484
+ #: ../templates/personal-pro/import-roles.php:46
1485
+ msgid "Select roles to import"
1486
+ msgstr "Selecione funções para importar"
1487
+
1488
+ #: ../templates/personal-pro/import-roles.php:75
1489
+ msgid ""
1490
+ "* These roles already exist in this site. Importing them will overwrite existing "
1491
+ "roles."
1492
+ msgstr ""
1493
+ "*Estas funções já existem neste site. Importando elas, irá sobrescrever as funções "
1494
+ "já existentes."
1495
+
1496
+ #: ../templates/personal-pro/menu-editor.php:20
1497
+ msgid ""
1498
+ "Select a role below to edit menu for that role. Deselect a menu from the grid to "
1499
+ "remove that menu. Disabled menu items are already hidden, because the selected role "
1500
+ "doesn't have the capability to display that menu. Grid displays menus which the "
1501
+ "current user has access to. "
1502
+ msgstr ""
1503
+ "Selecione uma função a seguir para editar o menu para esta função. Não selecione um "
1504
+ "menu da grade para remover este menu. Itens do menu desativado já estão escondido, "
1505
+ "porque a função selecionada não tem a capacidade de mostrar este menu. A grade "
1506
+ "mostre menus que o usuário tem acesso atualmente. "
1507
+
1508
+ #: ../templates/personal-pro/menu-editor.php:54
1509
+ msgid "Soft"
1510
+ msgstr "Leve"
1511
+
1512
+ #: ../templates/personal-pro/menu-editor.php:55
1513
+ msgid "Hard"
1514
+ msgstr "Duro"
1515
+
1516
+ #: ../templates/personal-pro/menu-editor.php:86
1517
+ msgid "Restore default"
1518
+ msgstr "Restaurar padões"
1519
+
1520
+ #: ../templates/personal-pro/menu-editor.php:99
1521
+ msgid "Hide deselected item(s)"
1522
+ msgstr "Esconder item(ns) não selecionado(s)"
1523
+
1524
+ #: ../templates/personal-pro/menu-editor.php:104
1525
+ msgid "Hide disabled item(s)"
1526
+ msgstr "Esconder item(ns) desativado(s)"
1527
+
1528
+ #: ../templates/personal-pro/menu-editor.php:110
1529
+ msgid "Has Capability"
1530
+ msgstr "Tem capacidade"
1531
+
1532
+ #: ../templates/personal-pro/menu-editor.php:115
1533
+ msgid "No Capability"
1534
+ msgstr "Sem capacidade"
1535
+
1536
+ #: ../templates/personal-pro/menu-editor.php:135
1537
+ msgid "Capability"
1538
+ msgstr "Capacidade"
1539
+
1540
+ #: ../templates/personal-pro/menu-editor.php:138
1541
+ msgid "Menu Slug"
1542
+ msgstr "Abreviação do menu"
1543
+
1544
+ #: ../templates/personal-pro/post-type-permissions.php:19
1545
+ msgid "Enable Role Permissions"
1546
+ msgstr "Ativar permissões de função"
1547
+
1548
+ #: ../templates/personal-pro/post-type-permissions.php:27
1549
+ msgid "Read"
1550
+ msgstr "Ler"
1551
+
1552
+ #: ../templates/restore-role.php:48
1553
+ msgid "Cancel"
1554
+ msgstr "Cancelar"
1555
+
1556
+ #: ../templates/restore-role.php:49
1557
+ msgid "Confirm"
1558
+ msgstr "Confirmar"
1559
+
1560
+ #: ../templates/restore-role.php:57
1561
+ msgid "Restored"
1562
+ msgstr "Restaurado"
1563
+
1564
+ #: ../templates/restore-role.php:101
1565
+ msgid "Unexpected error / Timed out"
1566
+ msgstr "Erro inesperado / Expirado"
1567
+
1568
+ msgid "Settings Description"
1569
+ msgstr "Configurações para descrição"
1570
+
1571
+ msgid "Plugin FAQ"
1572
+ msgstr "FAQ do plugin"
1573
+
1574
+ msgid "Feature Request"
1575
+ msgstr "Pedido em destaque"
1576
+
1577
+ msgid "Report Bug"
1578
+ msgstr "Reportar bug"
1579
+
1580
+ msgid "Buy me a Beer or Coffee"
1581
+ msgstr "Compre-me uma cerveja ou café"
1582
+
1583
+ msgid "Add Role Capabilities"
1584
+ msgstr "Adicionar capacidades de funções"
1585
+
1586
+ msgid "User Role Editor"
1587
+ msgstr "Edição de Funções de Usuários"
1588
+
1589
+ msgid "Enabled"
1590
+ msgstr "Ativado"
1591
+
1592
+ msgid "Position"
1593
+ msgstr "Posição"
1594
+
1595
+ msgid "Bar Height"
1596
+ msgstr "Comprimento da barra"
1597
+
1598
+ msgid "Message Text"
1599
+ msgstr "Texto de mensagem"
1600
+
1601
+ msgid "Display After"
1602
+ msgstr "Mostrar após"
1603
+
1604
+ msgid "Animation Duration"
1605
+ msgstr "Duração da animação"
1606
+
1607
+ msgid "Display Close Button"
1608
+ msgstr "Mostrar botão de fechar"
1609
+
1610
+ msgid "Auto Close After"
1611
+ msgstr "Fechar automaticamente após"
1612
+
1613
+ msgid "Display Button"
1614
+ msgstr "Mostrar botão"
1615
+
1616
+ msgid "Button Text"
1617
+ msgstr "Texto do botão"
1618
+
1619
+ msgid "Open URL:"
1620
+ msgstr "Abrir URL:"
1621
+
1622
+ msgid "Open URL in new tab/window"
1623
+ msgstr "Abrir URL em uma nova aba/janela"
1624
+
1625
+ msgid "Execute JavaScript"
1626
+ msgstr "Executar JavaScript"
1627
+
1628
+ msgid "Close Bar on Button Click"
1629
+ msgstr "Fechar barra no clique do botão"
1630
+
1631
+ msgid "Display Shadow"
1632
+ msgstr "Mostrar sombra"
1633
+
1634
+ msgid "Fixed at Position"
1635
+ msgstr "Fixado na posição"
1636
+
1637
+ msgid "Message Text Color"
1638
+ msgstr "Cor de texto na mensagem"
1639
+
1640
+ msgid "From Color"
1641
+ msgstr "Da cor"
1642
+
1643
+ msgid "To Color"
1644
+ msgstr "Para a cor"
1645
+
1646
+ msgid "Button Text Color"
1647
+ msgstr "Cor do texto do botão"
1648
+
1649
+ msgid "Display on Pages"
1650
+ msgstr "Mostrar nas páginas"
1651
+
1652
+ msgid "Display Reopen Button"
1653
+ msgstr "Mostrar botão reabrir"
1654
+
1655
+ msgid "Reopen Button Color"
1656
+ msgstr "Cor do botão reabrir"
1657
+
1658
+ msgid "Keep Closed"
1659
+ msgstr "Manter fechado"
1660
+
1661
+ msgid "Keep Closed For"
1662
+ msgstr "Manter fechado para"
1663
+
1664
+ msgid "Position Offset"
1665
+ msgstr "Offset da posição"
1666
+
1667
+ msgid "Close Button Color"
1668
+ msgstr "Cor do botão fechar"
1669
+
1670
+ msgid "WPFront Notification Bar"
1671
+ msgstr "Barra de notificação WPFront"
1672
+
1673
+ msgid "Notification Bar"
1674
+ msgstr "Barra de notificação"
1675
+
1676
+ msgid "[Page]"
1677
+ msgstr "[Página]"
1678
+
1679
+ msgid "Home"
1680
+ msgstr "Início"
1681
+
1682
+ msgid "[Post]"
1683
+ msgstr "[Publicação]"
1684
+
1685
+ msgid "Top"
1686
+ msgstr "Acima"
1687
+
1688
+ msgid "Bottom"
1689
+ msgstr "Abaixo"
1690
+
1691
+ msgid "[Sticky Bar, bar will stay at position regardless of scrolling.]"
1692
+ msgstr "[Barra pegajosa, a barra ficará na posição independentemente da rolagem.]"
1693
+
1694
+ msgid "px"
1695
+ msgstr "px"
1696
+
1697
+ msgid "Set 0px to auto fit contents."
1698
+ msgstr "Defina 0px para caber o conteúdo automaticamente."
1699
+
1700
+ msgid ""
1701
+ "(Top bar only) If you find the bar overlapping, try increasing this value. (eg. "
1702
+ "WordPress 3.8 Twenty Fourteen theme, set 48px)"
1703
+ msgstr ""
1704
+ "(Apenas barra superior) se você encontrar a barra sobrepondo-se, tente incrementar "
1705
+ "este valor . (ex. WordPress 3.8 Twenty Fourteen theme, defina 48px)"
1706
+
1707
+ msgid "second(s)"
1708
+ msgstr "segundo(s)"
1709
+
1710
+ msgid "Set 0 second(s) to display immediately."
1711
+ msgstr "Defina 0 segundo(s) para mostrar imediatamente."
1712
+
1713
+ msgid "Set 0 second(s) for no animation."
1714
+ msgstr "Defina 0 segundo(s) para ficar sem animação."
1715
+
1716
+ msgid "[Displays a close button at the top right corner of the bar.]"
1717
+ msgstr "[Mostra um botão fechar no canto superior direito da barra.]"
1718
+
1719
+ msgid "Set 0 second(s) to disable auto close."
1720
+ msgstr "Defina 0 segundo(s) para desativar fechar automaticamente."
1721
+
1722
+ msgid "A reopen button will be displayed after the bar is closed."
1723
+ msgstr "Um botão de reabrir será mostrado após a barra ser fechada."
1724
+
1725
+ msgid "Once closed, bar will display closed on other pages."
1726
+ msgstr "Uma vez fechada, a barra irá mostrar-se fechada em outras páginas."
1727
+
1728
+ msgid "day(s)"
1729
+ msgstr "dia(s)"
1730
+
1731
+ msgid "Bar will be kept closed for the number of days specified from last closed date."
1732
+ msgstr ""
1733
+ "A barra irá manter-se fechada pelo número de dias especificados da última data de "
1734
+ "fechamento."
1735
+
1736
+ msgid "Content"
1737
+ msgstr "Conteúdo"
1738
+
1739
+ msgid "[HTML tags are allowed. e.g. Add <br /> for break.]"
1740
+ msgstr "[HTML tags são permitidas. ex. Adicionar <br /> para quebrar.]"
1741
+
1742
+ msgid "[Displays a button next to the message.]"
1743
+ msgstr "[Mostra um botão próximo à mensagem.]"
1744
+
1745
+ msgid "Filter"
1746
+ msgstr "Filtro"
1747
+
1748
+ msgid "Only in landing page."
1749
+ msgstr "Apenas na página de desembarque."
1750
+
1751
+ msgid "Include in following pages"
1752
+ msgstr "Incluir nas seguintes páginas"
1753
+
1754
+ msgid "Exclude in following pages"
1755
+ msgstr "Excluir na seguintes páginas"
1756
+
1757
+ msgid "Color"
1758
+ msgstr "Color"
1759
+
1760
+ msgid "Bar Color"
1761
+ msgstr "Cor da barra"
1762
+
1763
+ msgid "[Select two different colors to create a gradient.]"
1764
+ msgstr "[Selecione duas cores diferentes para criar gradiente.]"
1765
+
1766
+ msgid "Button Color"
1767
+ msgstr "Cor do botão"
1768
+
1769
+ msgid "[Normal, Hover, X]"
1770
+ msgstr "[Normal, Hover, X]"
1771
+
1772
+ msgid "CSS"
1773
+ msgstr "CSS"
1774
+
1775
+ msgid "Plugin Ideas"
1776
+ msgstr "Ideias do plugin"
1777
+
1778
+ msgid "Animate Display"
1779
+ msgstr "Mostrar animação"
1780
+
1781
+ msgid "Animate Display Delay"
1782
+ msgstr "Atraso na mostra da animação"
languages/wpfront-user-role-editor.po CHANGED
@@ -1,1821 +1,1821 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: WPFront Notification Bar\n"
4
- "POT-Creation-Date: 2014-10-17 22:13-0700\n"
5
- "PO-Revision-Date: 2014-10-17 22:16-0700\n"
6
- "Last-Translator: \n"
7
- "Language-Team: WPFront <contact@wpfront.com>\n"
8
- "Language: en\n"
9
- "MIME-Version: 1.0\n"
10
- "Content-Type: text/plain; charset=UTF-8\n"
11
- "Content-Transfer-Encoding: 8bit\n"
12
- "X-Generator: Poedit 1.6.4\n"
13
- "X-Poedit-Basepath: .\n"
14
- "Plural-Forms: nplurals=2; plural=(n != 1);\n"
15
- "X-Poedit-SourceCharset: UTF-8\n"
16
- "X-Poedit-KeywordsList: __;_e\n"
17
- "X-Poedit-SearchPath-0: ..\n"
18
-
19
- #: ../classes/base/class-wpfront-base-menu.php:52
20
- #: ../templates/personal-pro/menu-editor.php:132
21
- msgid "Name"
22
- msgstr "Name"
23
-
24
- #: ../classes/base/class-wpfront-base-menu.php:53
25
- msgid "Version"
26
- msgstr "Version"
27
-
28
- #: ../classes/base/class-wpfront-base-menu.php:54
29
- msgid "Rating"
30
- msgstr "Rating"
31
-
32
- #: ../classes/base/class-wpfront-base-menu.php:55
33
- msgid "Description"
34
- msgstr "Description"
35
-
36
- #: ../classes/base/class-wpfront-base-menu.php:69
37
- #, php-format
38
- msgid "based on %s rating(s)"
39
- msgstr "based on %s rating(s)"
40
-
41
- #: ../classes/base/class-wpfront-base-menu.php:105
42
- msgid "Unable to communicate with WordPress.org"
43
- msgstr "Unable to communicate with WordPress.org"
44
-
45
- #: ../classes/base/class-wpfront-base-menu.php:123
46
- #: ../classes/base/class-wpfront-base-menu.php:217
47
- msgid "WPFront Plugins"
48
- msgstr "WPFront Plugins"
49
-
50
- #: ../classes/base/class-wpfront-base-menu.php:147
51
- #, php-format
52
- msgid "By %s"
53
- msgstr "By %s"
54
-
55
- #: ../classes/base/class-wpfront-base-menu.php:154
56
- #, php-format
57
- msgid "More information about %s"
58
- msgstr "More information about %s"
59
-
60
- #: ../classes/base/class-wpfront-base-menu.php:154
61
- #: ../classes/class-wpfront-user-role-editor-go-pro.php:217
62
- msgid "Details"
63
- msgstr "Details"
64
-
65
- #: ../classes/base/class-wpfront-base-menu.php:163
66
- #, php-format
67
- msgid "Install %s"
68
- msgstr "Install %s"
69
-
70
- #: ../classes/base/class-wpfront-base-menu.php:163
71
- msgid "Install Now"
72
- msgstr "Install Now"
73
-
74
- #: ../classes/base/class-wpfront-base-menu.php:168
75
- #, php-format
76
- msgid "Update to version %s"
77
- msgstr "Update to version %s"
78
-
79
- #: ../classes/base/class-wpfront-base-menu.php:168
80
- msgid "Update Now"
81
- msgstr "Update Now"
82
-
83
- #: ../classes/base/class-wpfront-base-menu.php:173
84
- msgid "This plugin is already installed and is up to date"
85
- msgstr "This plugin is already installed and is up to date"
86
-
87
- #: ../classes/base/class-wpfront-base-menu.php:173
88
- msgid "Installed"
89
- msgstr "Installed"
90
-
91
- #: ../classes/base/class-wpfront-base-menu.php:175
92
- #: ../classes/base/class-wpfront-base.php:109
93
- #: ../classes/business-pro/class-wpfront-user-role-editor-business-pro.php:104
94
- #: ../classes/class-wpfront-user-role-editor-options.php:198
95
- #: ../classes/class-wpfront-user-role-editor.php:205
96
- msgid "Settings"
97
- msgstr "Settings"
98
-
99
- #: ../classes/base/class-wpfront-base-menu.php:177
100
- #: ../classes/personal-pro/class-wpfront-user-role-editor-personal-pro.php:88
101
- #: ../templates/go-pro.php:65 ../templates/go-pro.php:66
102
- msgid "Activate"
103
- msgstr "Activate"
104
-
105
- #: ../classes/base/class-wpfront-base-menu.php:199
106
- #: ../classes/class-wpfront-user-role-editor.php:314
107
- msgid "Feedback"
108
- msgstr "Feedback"
109
-
110
- #: ../classes/base/class-wpfront-base-menu.php:216
111
- msgid "WPFront"
112
- msgstr "WPFront"
113
-
114
- #: ../classes/base/class-wpfront-base-menu.php:217
115
- msgid "All Plugins"
116
- msgstr "All Plugins"
117
-
118
- #: ../classes/base/class-wpfront-base.php:138
119
- #: ../classes/class-wpfront-user-role-editor.php:263
120
- msgid "You do not have sufficient permissions to access this page."
121
- msgstr "You do not have sufficient permissions to access this page."
122
-
123
- #: ../classes/base/class-wpfront-base.php:158
124
- msgid ""
125
- "If you have a caching plugin, clear the cache for the new settings to take "
126
- "effect."
127
- msgstr ""
128
- "If you have a caching plugin, clear the cache for the new settings to take "
129
- "effect."
130
-
131
- #: ../classes/base/class-wpfront-base.php:205
132
- #: ../templates/personal-pro/menu-editor.php:226
133
- msgid "Save Changes"
134
- msgstr "Save Changes"
135
-
136
- #: ../classes/business-pro/class-wpfront-user-role-editor-business-pro.php:81
137
- #: ../classes/business-pro/class-wpfront-user-role-editor-business-pro.php:84
138
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:74
139
- #: ../classes/class-wpfront-user-role-editor.php:202
140
- #: ../classes/class-wpfront-user-role-editor.php:209
141
- #: ../templates/list-roles.php:37
142
- msgid "Roles"
143
- msgstr "Roles"
144
-
145
- #: ../classes/business-pro/class-wpfront-user-role-editor-business-pro.php:84
146
- #: ../classes/class-wpfront-user-role-editor.php:202
147
- msgid "All Roles"
148
- msgstr "All Roles"
149
-
150
- #: ../classes/business-pro/class-wpfront-user-role-editor-business-pro.php:89
151
- #: ../classes/class-wpfront-user-role-editor.php:203
152
- #: ../templates/add-edit-role.php:35 ../templates/add-edit-role.php:154
153
- msgid "Add New Role"
154
- msgstr "Add New Role"
155
-
156
- #: ../classes/business-pro/class-wpfront-user-role-editor-business-pro.php:89
157
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:77
158
- #: ../classes/class-wpfront-user-role-editor.php:203
159
- #: ../templates/add-edit-role.php:37 ../templates/list-roles.php:40
160
- msgid "Add New"
161
- msgstr "Add New"
162
-
163
- #: ../classes/business-pro/class-wpfront-user-role-editor-business-pro.php:94
164
- #: ../classes/class-wpfront-user-role-editor.php:204
165
- #: ../templates/restore-role.php:34
166
- msgid "Restore Role"
167
- msgstr "Restore Role"
168
-
169
- #: ../classes/business-pro/class-wpfront-user-role-editor-business-pro.php:94
170
- #: ../classes/class-wpfront-user-role-editor.php:204
171
- #: ../templates/restore-role.php:46
172
- msgid "Restore"
173
- msgstr "Restore"
174
-
175
- #: ../classes/business-pro/class-wpfront-user-role-editor-business-pro.php:99
176
- #: ../templates/business-pro/sync-roles.php:11
177
- #: ../templates/business-pro/sync-roles.php:297
178
- msgid "Sync Roles"
179
- msgstr "Sync Roles"
180
-
181
- #: ../classes/business-pro/class-wpfront-user-role-editor-business-pro.php:99
182
- msgid "Sync"
183
- msgstr "Sync"
184
-
185
- #: ../classes/business-pro/class-wpfront-user-role-editor-business-pro.php:110
186
- #: ../classes/class-wpfront-user-role-editor.php:188
187
- msgid "Go Pro"
188
- msgstr "Go Pro"
189
-
190
- #: ../classes/business-pro/class-wpfront-user-role-editor-business-pro.php:121
191
- msgid ""
192
- "You have a large network of sites (usually 10,000 or more sites). Roles "
193
- "functionalities will be CPU and memory intensive on large networks. Use the "
194
- "settings screen to turn on these CPU and memory intensive functionalities."
195
- msgstr ""
196
- "You have a large network of sites (usually 10,000 or more sites). Roles "
197
- "functionalities will be CPU and memory intensive on large networks. Use the "
198
- "settings screen to turn on these CPU and memory intensive functionalities."
199
-
200
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-add-edit.php:213
201
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:114
202
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:148
203
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:162
204
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-restore.php:84
205
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:223
206
- #: ../classes/class-wpfront-user-role-editor-add-edit.php:303
207
- #: ../classes/class-wpfront-user-role-editor-assign-roles.php:296
208
- #: ../classes/class-wpfront-user-role-editor-list.php:351
209
- #: ../classes/class-wpfront-user-role-editor-list.php:385
210
- #: ../classes/class-wpfront-user-role-editor-list.php:402
211
- #: ../classes/class-wpfront-user-role-editor-options.php:191
212
- #: ../classes/class-wpfront-user-role-editor-options.php:233
213
- #: ../classes/class-wpfront-user-role-editor-restore.php:165
214
- #: ../classes/personal-pro/class-wpfront-user-role-editor-export.php:126
215
- #: ../classes/personal-pro/class-wpfront-user-role-editor-import.php:225
216
- #: ../classes/personal-pro/class-wpfront-user-role-editor-menu-editor.php:563
217
- msgid "Overview"
218
- msgstr "Overview"
219
-
220
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-add-edit.php:215
221
- msgid "This screen allows you to add a new role within your network."
222
- msgstr "This screen allows you to add a new role within your network."
223
-
224
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-add-edit.php:218
225
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:119
226
- #: ../classes/class-wpfront-user-role-editor-add-edit.php:308
227
- #: ../classes/class-wpfront-user-role-editor-list.php:356
228
- msgid ""
229
- "You can copy capabilities from existing roles using the Copy from drop down "
230
- "list. Select the role you want to copy from, then click Apply to copy the "
231
- "capabilities. You can select or deselect capabilities even after you copy."
232
- msgstr ""
233
- "You can copy capabilities from existing roles using the Copy from drop down "
234
- "list. Select the role you want to copy from, then click Apply to copy the "
235
- "capabilities. You can select or deselect capabilities even after you copy."
236
-
237
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-add-edit.php:223
238
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:124
239
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:179
240
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-roles-list-table.php:161
241
- #: ../classes/class-wpfront-user-role-editor-add-edit.php:313
242
- #: ../classes/class-wpfront-user-role-editor-list.php:218
243
- #: ../classes/class-wpfront-user-role-editor-list.php:361
244
- #: ../classes/class-wpfront-user-role-editor-list.php:414
245
- #: ../templates/add-edit-role.php:71
246
- msgid "Display Name"
247
- msgstr "Display Name"
248
-
249
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-add-edit.php:225
250
- #: ../classes/class-wpfront-user-role-editor-add-edit.php:315
251
- msgid ""
252
- "Use the Display Name field to set the display name for the new role. "
253
- "WordPress uses display name to display this role within your site. This "
254
- "field is required."
255
- msgstr ""
256
- "Use the Display Name field to set the display name for the new role. "
257
- "WordPress uses display name to display this role within your site. This "
258
- "field is required."
259
-
260
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-add-edit.php:230
261
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:131
262
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:174
263
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-roles-list-table.php:160
264
- #: ../classes/class-wpfront-user-role-editor-add-edit.php:320
265
- #: ../classes/class-wpfront-user-role-editor-list.php:221
266
- #: ../classes/class-wpfront-user-role-editor-list.php:368
267
- #: ../classes/class-wpfront-user-role-editor-list.php:419
268
- #: ../templates/add-edit-role.php:81
269
- msgid "Role Name"
270
- msgstr "Role Name"
271
-
272
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-add-edit.php:232
273
- #: ../classes/class-wpfront-user-role-editor-add-edit.php:322
274
- msgid ""
275
- "Use the Role Name field to set the role name for the new role. WordPress "
276
- "uses role name to identify this role within your site. Once set role name "
277
- "cannot be changed. This field is required. This plugin will auto populate "
278
- "role name from the display name you have given, but you can change it."
279
- msgstr ""
280
- "Use the Role Name field to set the role name for the new role. WordPress "
281
- "uses role name to identify this role within your site. Once set role name "
282
- "cannot be changed. This field is required. This plugin will auto populate "
283
- "role name from the display name you have given, but you can change it."
284
-
285
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-add-edit.php:237
286
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:138
287
- #: ../classes/class-wpfront-user-role-editor-add-edit.php:327
288
- #: ../classes/class-wpfront-user-role-editor-list.php:233
289
- #: ../classes/class-wpfront-user-role-editor-list.php:375
290
- #: ../classes/class-wpfront-user-role-editor-list.php:439
291
- #: ../templates/add-edit-role.php:95
292
- msgid "Capabilities"
293
- msgstr "Capabilities"
294
-
295
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-add-edit.php:239
296
- #: ../classes/class-wpfront-user-role-editor-add-edit.php:329
297
- msgid ""
298
- "Capabilities are displayed as different groups for easy access. The Roles "
299
- "section displays capabilities created by this plugin. The Other Capabilities "
300
- "section displays non-standard capabilities within your site. These are "
301
- "usually created by plugins and themes. Use the check boxes to select the "
302
- "capabilities required for this new role."
303
- msgstr ""
304
- "Capabilities are displayed as different groups for easy access. The Roles "
305
- "section displays capabilities created by this plugin. The Other Capabilities "
306
- "section displays non-standard capabilities within your site. These are "
307
- "usually created by plugins and themes. Use the check boxes to select the "
308
- "capabilities required for this new role."
309
-
310
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-add-edit.php:248
311
- msgid "Documentation on Multisite Add New Role"
312
- msgstr "Documentation on Multisite Add New Role"
313
-
314
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:86
315
- #: ../templates/list-roles.php:62 ../templates/list-roles.php:64
316
- msgid "Search Roles"
317
- msgstr "Search Roles"
318
-
319
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:116
320
- msgid "This screen allows you to edit a role within your network."
321
- msgstr "This screen allows you to edit a role within your network."
322
-
323
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:126
324
- #: ../classes/class-wpfront-user-role-editor-list.php:363
325
- msgid ""
326
- "Use the Display Name field to edit display name of the role. WordPress uses "
327
- "display name to display this role within your site. This field is required."
328
- msgstr ""
329
- "Use the Display Name field to edit display name of the role. WordPress uses "
330
- "display name to display this role within your site. This field is required."
331
-
332
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:133
333
- #: ../classes/class-wpfront-user-role-editor-list.php:370
334
- msgid ""
335
- "Role Name is read only. WordPress uses role name to identify this role "
336
- "within your site."
337
- msgstr ""
338
- "Role Name is read only. WordPress uses role name to identify this role "
339
- "within your site."
340
-
341
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:140
342
- #: ../classes/class-wpfront-user-role-editor-list.php:377
343
- msgid ""
344
- "Capabilities are displayed as different groups for easy access. The Roles "
345
- "section displays capabilities created by this plugin. The Other Capabilities "
346
- "section displays non-standard capabilities within your site. These are "
347
- "usually created by plugins and themes. Use the check boxes to select the "
348
- "capabilities required."
349
- msgstr ""
350
- "Capabilities are displayed as different groups for easy access. The Roles "
351
- "section displays capabilities created by this plugin. The Other Capabilities "
352
- "section displays non-standard capabilities within your site. These are "
353
- "usually created by plugins and themes. Use the check boxes to select the "
354
- "capabilities required."
355
-
356
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:150
357
- msgid "This screen allows you to delete roles from your network sites."
358
- msgstr "This screen allows you to delete roles from your network sites."
359
-
360
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:153
361
- #: ../classes/class-wpfront-user-role-editor-list.php:390
362
- msgid ""
363
- "Use the Roles List screen to select the roles you want to delete. You can "
364
- "delete individual roles using the Delete row action link or delete multiple "
365
- "roles at the same time using the bulk action."
366
- msgstr ""
367
- "Use the Roles List screen to select the roles you want to delete. You can "
368
- "delete individual roles using the Delete row action link or delete multiple "
369
- "roles at the same time using the bulk action."
370
-
371
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:164
372
- msgid ""
373
- "This screen displays all the roles existing within your multisite network."
374
- msgstr ""
375
- "This screen displays all the roles existing within your multisite network."
376
-
377
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:167
378
- #: ../classes/class-wpfront-user-role-editor-list.php:407
379
- msgid ""
380
- "To add a new role, click the Add New button at the top of the screen or Add "
381
- "New in the Roles menu section."
382
- msgstr ""
383
- "To add a new role, click the Add New button at the top of the screen or Add "
384
- "New in the Roles menu section."
385
-
386
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:172
387
- #: ../classes/class-wpfront-user-role-editor-list.php:412
388
- msgid "Columns"
389
- msgstr "Columns"
390
-
391
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:176
392
- #: ../classes/class-wpfront-user-role-editor-list.php:421
393
- msgid "Is used by WordPress to identify this role."
394
- msgstr "Is used by WordPress to identify this role."
395
-
396
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:181
397
- msgid ""
398
- "WordPress uses display name to display this role within the site. You can "
399
- "have different display names for the same role within the network."
400
- msgstr ""
401
- "WordPress uses display name to display this role within the site. You can "
402
- "have different display names for the same role within the network."
403
-
404
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:184
405
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-roles-list-table.php:162
406
- msgid "Role Type"
407
- msgstr "Role Type"
408
-
409
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:186
410
- msgid "Displays whether that role is a built-in role or a custom role."
411
- msgstr "Displays whether that role is a built-in role or a custom role."
412
-
413
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:189
414
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-roles-list-table.php:163
415
- msgid "Sites"
416
- msgstr "Sites"
417
-
418
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:191
419
- msgid ""
420
- "Display the sites that role belongs to. [All Sites] mean, that role is part "
421
- "of every site within the network. Else it will display the number of sites "
422
- "as a link. Clicking on the link will display the site list."
423
- msgstr ""
424
- "Display the sites that role belongs to. [All Sites] mean, that role is part "
425
- "of every site within the network. Else it will display the number of sites "
426
- "as a link. Clicking on the link will display the site list."
427
-
428
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:196
429
- #: ../classes/class-wpfront-user-role-editor-list.php:451
430
- msgid "Actions"
431
- msgstr "Actions"
432
-
433
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:198
434
- #: ../classes/class-wpfront-user-role-editor-list.php:453
435
- msgid ""
436
- "Hovering over a row in the roles list will display action links that allow "
437
- "you to manage roles. You can perform the following actions:"
438
- msgstr ""
439
- "Hovering over a row in the roles list will display action links that allow "
440
- "you to manage roles. You can perform the following actions:"
441
-
442
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:201
443
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-roles-list-table.php:222
444
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-roles-list-table.php:272
445
- #: ../classes/class-wpfront-user-role-editor-list.php:456
446
- #: ../templates/list-roles.php:98
447
- msgid "View"
448
- msgstr "View"
449
-
450
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:203
451
- #: ../classes/class-wpfront-user-role-editor-list.php:458
452
- msgid ""
453
- "Display details about the role. You can see the capabilities assigned for "
454
- "that role. View link will only appear when you do not have permission to "
455
- "edit that role."
456
- msgstr ""
457
- "Display details about the role. You can see the capabilities assigned for "
458
- "that role. View link will only appear when you do not have permission to "
459
- "edit that role."
460
-
461
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:206
462
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-roles-list-table.php:219
463
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-roles-list-table.php:260
464
- #: ../classes/class-wpfront-user-role-editor-list.php:461
465
- #: ../templates/list-roles.php:98
466
- #: ../templates/personal-pro/post-type-permissions.php:28
467
- msgid "Edit"
468
- msgstr "Edit"
469
-
470
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:208
471
- #: ../classes/class-wpfront-user-role-editor-list.php:463
472
- msgid ""
473
- "Allows you to edit that role. You can see the capabilities assigned for that "
474
- "role and also edit them. Edit link will only appear when you have permission "
475
- "to edit that role."
476
- msgstr ""
477
- "Allows you to edit that role. You can see the capabilities assigned for that "
478
- "role and also edit them. Edit link will only appear when you have permission "
479
- "to edit that role."
480
-
481
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:211
482
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-roles-list-table.php:110
483
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-roles-list-table.php:220
484
- #: ../classes/class-wpfront-user-role-editor-list.php:253
485
- #: ../classes/class-wpfront-user-role-editor-list.php:466
486
- #: ../templates/list-roles.php:101
487
- #: ../templates/personal-pro/post-type-permissions.php:29
488
- msgid "Delete"
489
- msgstr "Delete"
490
-
491
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:213
492
- msgid "Allows you to delete that role."
493
- msgstr "Allows you to delete that role."
494
-
495
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:225
496
- msgid "Documentation on Multisite Edit Role"
497
- msgstr "Documentation on Multisite Edit Role"
498
-
499
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:232
500
- msgid "Documentation on Multisite Delete Roles"
501
- msgstr "Documentation on Multisite Delete Roles"
502
-
503
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:240
504
- msgid "Documentation on Multisite Roles"
505
- msgstr "Documentation on Multisite Roles"
506
-
507
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-restore.php:44
508
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-restore.php:73
509
- #: ../classes/class-wpfront-user-role-editor-go-pro.php:174
510
- #: ../classes/class-wpfront-user-role-editor-go-pro.php:176
511
- #: ../classes/class-wpfront-user-role-editor-go-pro.php:196
512
- #: ../classes/class-wpfront-user-role-editor-go-pro.php:215
513
- #: ../classes/class-wpfront-user-role-editor-go-pro.php:224
514
- #: ../classes/class-wpfront-user-role-editor-restore.php:84
515
- #: ../templates/add-edit-role.php:45 ../templates/add-edit-role.php:53
516
- #: ../templates/business-pro/sync-roles.php:17
517
- msgid "ERROR"
518
- msgstr "ERROR"
519
-
520
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-restore.php:44
521
- msgid "Permission denied."
522
- msgstr "Permission denied."
523
-
524
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-restore.php:71
525
- msgid "Partial Failure"
526
- msgstr "Partial Failure"
527
-
528
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-restore.php:86
529
- #: ../classes/class-wpfront-user-role-editor-restore.php:167
530
- msgid ""
531
- "This screen allow you to restore WordPress built-in roles to its standard "
532
- "capability settings."
533
- msgstr ""
534
- "This screen allow you to restore WordPress built-in roles to its standard "
535
- "capability settings."
536
-
537
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-restore.php:89
538
- #: ../classes/class-wpfront-user-role-editor-restore.php:170
539
- msgid "To restore a role, click the Restore button then Confirm."
540
- msgstr "To restore a role, click the Restore button then Confirm."
541
-
542
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-restore.php:98
543
- msgid "Documentation on Multisite Restore"
544
- msgstr "Documentation on Multisite Restore"
545
-
546
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-roles-list-table.php:116
547
- msgid "No roles found."
548
- msgstr "No roles found."
549
-
550
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-roles-list-table.php:142
551
- #, php-format
552
- msgid "All <span class=\"count\">(%s)</span>"
553
- msgstr "All <span class=\"count\">(%s)</span>"
554
-
555
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-roles-list-table.php:145
556
- #, php-format
557
- msgid "Built-In <span class=\"count\">(%s)</span>"
558
- msgstr "Built-In <span class=\"count\">(%s)</span>"
559
-
560
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-roles-list-table.php:148
561
- #, php-format
562
- msgid "Custom <span class=\"count\">(%s)</span>"
563
- msgstr "Custom <span class=\"count\">(%s)</span>"
564
-
565
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-roles-list-table.php:198
566
- #: ../templates/personal-pro/menu-editor.php:155
567
- #: ../templates/personal-pro/menu-editor.php:191
568
- #, php-format
569
- msgid "Select %s"
570
- msgstr "Select %s"
571
-
572
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-roles-list-table.php:244
573
- msgid "[All Sites]"
574
- msgstr "[All Sites]"
575
-
576
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-roles-list-table.php:246
577
- #, php-format
578
- msgid "%d Site(s)"
579
- msgstr "%d Site(s)"
580
-
581
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:56
582
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:64
583
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:83
584
- msgid "Source site not selected."
585
- msgstr "Source site not selected."
586
-
587
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:67
588
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:86
589
- msgid "Destination type not selected."
590
- msgstr "Destination type not selected."
591
-
592
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:74
593
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:93
594
- msgid "Destination sites not selected."
595
- msgstr "Destination sites not selected."
596
-
597
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:225
598
- msgid "This screen allows you to sync the roles between the network."
599
- msgstr "This screen allows you to sync the roles between the network."
600
-
601
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:228
602
- msgid ""
603
- "You will select a site as source, then sync the roles to selected sites or "
604
- "entire sites within the network."
605
- msgstr ""
606
- "You will select a site as source, then sync the roles to selected sites or "
607
- "entire sites within the network."
608
-
609
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:233
610
- msgid "Step 1"
611
- msgstr "Step 1"
612
-
613
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:235
614
- msgid "Select source site."
615
- msgstr "Select source site."
616
-
617
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:238
618
- msgid "You will select the source site in this step."
619
- msgstr "You will select the source site in this step."
620
-
621
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:243
622
- msgid "Step 2"
623
- msgstr "Step 2"
624
-
625
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:245
626
- msgid "Select destination sites."
627
- msgstr "Select destination sites."
628
-
629
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:248
630
- msgid "You will select the destination sites in this step."
631
- msgstr "You will select the destination sites in this step."
632
-
633
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:251
634
- msgid ""
635
- "Use \"All Sites\" to select all the sites within the network or you can "
636
- "select individual sites using \"Selected Sites\"."
637
- msgstr ""
638
- "Use \"All Sites\" to select all the sites within the network or you can "
639
- "select individual sites using \"Selected Sites\"."
640
-
641
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:256
642
- msgid "Step 3"
643
- msgstr "Step 3"
644
-
645
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:258
646
- msgid "Choose settings."
647
- msgstr "Choose settings."
648
-
649
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:261
650
- #: ../templates/business-pro/sync-roles.php:222
651
- msgid "Add roles existing only in source"
652
- msgstr "Add roles existing only in source"
653
-
654
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:263
655
- msgid ""
656
- "Roles existing in source and do not existing in destination will be created."
657
- msgstr ""
658
- "Roles existing in source and do not existing in destination will be created."
659
-
660
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:266
661
- #: ../templates/business-pro/sync-roles.php:227
662
- msgid "Overwrite existing roles"
663
- msgstr "Overwrite existing roles"
664
-
665
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:268
666
- msgid ""
667
- "If the role from source already exists in destination, it will be "
668
- "overwritten."
669
- msgstr ""
670
- "If the role from source already exists in destination, it will be "
671
- "overwritten."
672
-
673
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:271
674
- #: ../templates/business-pro/sync-roles.php:232
675
- msgid "Remove roles existing only in destination"
676
- msgstr "Remove roles existing only in destination"
677
-
678
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:273
679
- msgid ""
680
- "If a role do not exist in source, but exists in destination it will be "
681
- "removed."
682
- msgstr ""
683
- "If a role do not exist in source, but exists in destination it will be "
684
- "removed."
685
-
686
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:276
687
- #: ../templates/business-pro/sync-roles.php:237
688
- msgid "Update new user default role"
689
- msgstr "Update new user default role"
690
-
691
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:278
692
- msgid ""
693
- "The destination new user default role will be updated as same as source."
694
- msgstr ""
695
- "The destination new user default role will be updated as same as source."
696
-
697
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:283
698
- msgid "Step 4"
699
- msgstr "Step 4"
700
-
701
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:285
702
- msgid "Confirm and Sync"
703
- msgstr "Confirm and Sync"
704
-
705
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:288
706
- msgid "You can verify your settings and start syncing."
707
- msgstr "You can verify your settings and start syncing."
708
-
709
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:291
710
- msgid "Click Sync Roles to start syncing."
711
- msgstr "Click Sync Roles to start syncing."
712
-
713
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:300
714
- msgid "Documentation on Multisite Sync"
715
- msgstr "Documentation on Multisite Sync"
716
-
717
- #: ../classes/class-wpfront-user-role-editor-add-edit.php:305
718
- msgid "This screen allows you to add a new role within your site."
719
- msgstr "This screen allows you to add a new role within your site."
720
-
721
- #: ../classes/class-wpfront-user-role-editor-add-edit.php:338
722
- msgid "Documentation on Add New Role"
723
- msgstr "Documentation on Add New Role"
724
-
725
- #: ../classes/class-wpfront-user-role-editor-assign-roles.php:59
726
- #: ../classes/class-wpfront-user-role-editor-assign-roles.php:270
727
- msgid "Secondary Roles"
728
- msgstr "Secondary Roles"
729
-
730
- #: ../classes/class-wpfront-user-role-editor-assign-roles.php:74
731
- #: ../classes/class-wpfront-user-role-editor-assign-roles.php:303
732
- #: ../templates/assign-roles.php:36 ../templates/assign-roles.php:88
733
- msgid "Assign Roles"
734
- msgstr "Assign Roles"
735
-
736
- #: ../classes/class-wpfront-user-role-editor-assign-roles.php:111
737
- msgid "No role for this site"
738
- msgstr "No role for this site"
739
-
740
- #: ../classes/class-wpfront-user-role-editor-assign-roles.php:127
741
- msgid "Invalid user."
742
- msgstr "Invalid user."
743
-
744
- #: ../classes/class-wpfront-user-role-editor-assign-roles.php:155
745
- msgid "Roles updated successfully."
746
- msgstr "Roles updated successfully."
747
-
748
- #: ../classes/class-wpfront-user-role-editor-assign-roles.php:157
749
- msgid "Invalid primary role specified."
750
- msgstr "Invalid primary role specified."
751
-
752
- #: ../classes/class-wpfront-user-role-editor-assign-roles.php:175
753
- #: ../classes/class-wpfront-user-role-editor-assign-roles.php:185
754
- msgid "Invalid primary role."
755
- msgstr "Invalid primary role."
756
-
757
- #: ../classes/class-wpfront-user-role-editor-assign-roles.php:207
758
- #, php-format
759
- msgid "%d user(s) migrated."
760
- msgstr "%d user(s) migrated."
761
-
762
- #: ../classes/class-wpfront-user-role-editor-assign-roles.php:252
763
- msgid "Primary Role"
764
- msgstr "Primary Role"
765
-
766
- #: ../classes/class-wpfront-user-role-editor-assign-roles.php:298
767
- msgid ""
768
- "This screen allows you to assign multiple roles to a user and also allows "
769
- "you to migrate users from a role to another role."
770
- msgstr ""
771
- "This screen allows you to assign multiple roles to a user and also allows "
772
- "you to migrate users from a role to another role."
773
-
774
- #: ../classes/class-wpfront-user-role-editor-assign-roles.php:305
775
- msgid ""
776
- "To assign multiple roles to a user, select that user within the User drop "
777
- "down list and select the primary role you want for that user using the "
778
- "Primary Role drop down list. Select the secondary roles using the check "
779
- "boxes below, then click Assign Roles."
780
- msgstr ""
781
- "To assign multiple roles to a user, select that user within the User drop "
782
- "down list and select the primary role you want for that user using the "
783
- "Primary Role drop down list. Select the secondary roles using the check "
784
- "boxes below, then click Assign Roles."
785
-
786
- #: ../classes/class-wpfront-user-role-editor-assign-roles.php:310
787
- #: ../templates/assign-roles.php:93 ../templates/assign-roles.php:126
788
- msgid "Migrate Users"
789
- msgstr "Migrate Users"
790
-
791
- #: ../classes/class-wpfront-user-role-editor-assign-roles.php:312
792
- msgid ""
793
- "To migrate users from one role to another role or to add secondary roles to "
794
- "users belonging to a particular primary role, use the migrate users "
795
- "functionality."
796
- msgstr ""
797
- "To migrate users from one role to another role or to add secondary roles to "
798
- "users belonging to a particular primary role, use the migrate users "
799
- "functionality."
800
-
801
- #: ../classes/class-wpfront-user-role-editor-assign-roles.php:315
802
- msgid ""
803
- "Select the users using the From Primary Role drop down, to primary role "
804
- "using the Primary Role drop down and secondary roles using the check boxes "
805
- "then click Migrate Users."
806
- msgstr ""
807
- "Select the users using the From Primary Role drop down, to primary role "
808
- "using the Primary Role drop down and secondary roles using the check boxes "
809
- "then click Migrate Users."
810
-
811
- #: ../classes/class-wpfront-user-role-editor-assign-roles.php:324
812
- msgid "Documentation on Assign / Migrate Users"
813
- msgstr "Documentation on Assign / Migrate Users"
814
-
815
- #: ../classes/class-wpfront-user-role-editor-controller-base.php:81
816
- msgid "Links:"
817
- msgstr "Links:"
818
-
819
- #: ../classes/class-wpfront-user-role-editor-controller-base.php:87
820
- msgid "FAQ"
821
- msgstr "FAQ"
822
-
823
- #: ../classes/class-wpfront-user-role-editor-controller-base.php:88
824
- msgid "Support"
825
- msgstr "Support"
826
-
827
- #: ../classes/class-wpfront-user-role-editor-controller-base.php:89
828
- msgid "Review"
829
- msgstr "Review"
830
-
831
- #: ../classes/class-wpfront-user-role-editor-controller-base.php:90
832
- msgid "Contact"
833
- msgstr "Contact"
834
-
835
- #: ../classes/class-wpfront-user-role-editor-go-pro.php:174
836
- msgid "License key activation limit reached"
837
- msgstr "License key activation limit reached"
838
-
839
- #: ../classes/class-wpfront-user-role-editor-go-pro.php:176
840
- msgid "Invalid license key"
841
- msgstr "Invalid license key"
842
-
843
- #: ../classes/class-wpfront-user-role-editor-go-pro.php:196
844
- msgid "Unable to deactivate, expired license?"
845
- msgstr "Unable to deactivate, expired license?"
846
-
847
- #: ../classes/class-wpfront-user-role-editor-go-pro.php:215
848
- msgid "Unable to contact wpfront.com"
849
- msgstr "Unable to contact wpfront.com"
850
-
851
- #: ../classes/class-wpfront-user-role-editor-go-pro.php:224
852
- msgid "Unable to parse response"
853
- msgstr "Unable to parse response"
854
-
855
- #: ../classes/class-wpfront-user-role-editor-list.php:214
856
- #: ../templates/add-edit-role.php:111
857
- #: ../templates/personal-pro/menu-editor.php:126
858
- msgid "Select All"
859
- msgstr "Select All"
860
-
861
- #: ../classes/class-wpfront-user-role-editor-list.php:224
862
- #: ../classes/class-wpfront-user-role-editor-list.php:424
863
- msgid "Type"
864
- msgstr "Type"
865
-
866
- #: ../classes/class-wpfront-user-role-editor-list.php:227
867
- #: ../classes/class-wpfront-user-role-editor-list.php:429
868
- msgid "User Default"
869
- msgstr "User Default"
870
-
871
- #: ../classes/class-wpfront-user-role-editor-list.php:230
872
- #: ../classes/class-wpfront-user-role-editor-list.php:434
873
- msgid "Users"
874
- msgstr "Users"
875
-
876
- #: ../classes/class-wpfront-user-role-editor-list.php:251
877
- msgid "Bulk Actions"
878
- msgstr "Bulk Actions"
879
-
880
- #: ../classes/class-wpfront-user-role-editor-list.php:256
881
- #: ../templates/add-edit-role.php:107
882
- #: ../templates/personal-pro/menu-editor.php:94
883
- msgid "Apply"
884
- msgstr "Apply"
885
-
886
- #: ../classes/class-wpfront-user-role-editor-list.php:258
887
- #, php-format
888
- msgid "%s item(s)"
889
- msgstr "%s item(s)"
890
-
891
- #: ../classes/class-wpfront-user-role-editor-list.php:281
892
- msgid "All"
893
- msgstr "All"
894
-
895
- #: ../classes/class-wpfront-user-role-editor-list.php:292
896
- msgid "Having Users"
897
- msgstr "Having Users"
898
-
899
- #: ../classes/class-wpfront-user-role-editor-list.php:298
900
- msgid "No Users"
901
- msgstr "No Users"
902
-
903
- #: ../classes/class-wpfront-user-role-editor-list.php:309
904
- #: ../templates/list-roles.php:118
905
- msgid "Built-In"
906
- msgstr "Built-In"
907
-
908
- #: ../classes/class-wpfront-user-role-editor-list.php:315
909
- #: ../templates/list-roles.php:118
910
- msgid "Custom"
911
- msgstr "Custom"
912
-
913
- #: ../classes/class-wpfront-user-role-editor-list.php:353
914
- msgid "This screen allows you to edit a role within your site."
915
- msgstr "This screen allows you to edit a role within your site."
916
-
917
- #: ../classes/class-wpfront-user-role-editor-list.php:387
918
- msgid "This screen allows you to delete roles from your WordPress site."
919
- msgstr "This screen allows you to delete roles from your WordPress site."
920
-
921
- #: ../classes/class-wpfront-user-role-editor-list.php:393
922
- msgid ""
923
- "You cannot delete administrator role, current user’s role and roles you do "
924
- "not have permission to."
925
- msgstr ""
926
- "You cannot delete administrator role, current user’s role and roles you do "
927
- "not have permission to."
928
-
929
- #: ../classes/class-wpfront-user-role-editor-list.php:404
930
- msgid "This screen lists all the existing roles within your site."
931
- msgstr "This screen lists all the existing roles within your site."
932
-
933
- #: ../classes/class-wpfront-user-role-editor-list.php:416
934
- msgid "Used to display this role within this site."
935
- msgstr "Used to display this role within this site."
936
-
937
- #: ../classes/class-wpfront-user-role-editor-list.php:426
938
- msgid ""
939
- "Says whether the role is a WordPress built-in role or not. There are five "
940
- "built-in roles."
941
- msgstr ""
942
- "Says whether the role is a WordPress built-in role or not. There are five "
943
- "built-in roles."
944
-
945
- #: ../classes/class-wpfront-user-role-editor-list.php:431
946
- msgid "Displays whether a role is the default role of a new user."
947
- msgstr "Displays whether a role is the default role of a new user."
948
-
949
- #: ../classes/class-wpfront-user-role-editor-list.php:436
950
- msgid "Number of users in that role."
951
- msgstr "Number of users in that role."
952
-
953
- #: ../classes/class-wpfront-user-role-editor-list.php:441
954
- msgid "Number of capabilities that role have."
955
- msgstr "Number of capabilities that role have."
956
-
957
- #: ../classes/class-wpfront-user-role-editor-list.php:444
958
- msgid "Menu Edited"
959
- msgstr "Menu Edited"
960
-
961
- #: ../classes/class-wpfront-user-role-editor-list.php:446
962
- msgid ""
963
- "Displays whether the menu has been edited for this role. This is a pro "
964
- "feature."
965
- msgstr ""
966
- "Displays whether the menu has been edited for this role. This is a pro "
967
- "feature."
968
-
969
- #: ../classes/class-wpfront-user-role-editor-list.php:468
970
- msgid ""
971
- "Allows you to delete that role. Delete action will not appear if you do not "
972
- "have permission to delete that role."
973
- msgstr ""
974
- "Allows you to delete that role. Delete action will not appear if you do not "
975
- "have permission to delete that role."
976
-
977
- #: ../classes/class-wpfront-user-role-editor-list.php:471
978
- #: ../templates/list-roles.php:104
979
- msgid "Default"
980
- msgstr "Default"
981
-
982
- #: ../classes/class-wpfront-user-role-editor-list.php:473
983
- msgid ""
984
- "Allows you to set that role as the default role for new user registration."
985
- msgstr ""
986
- "Allows you to set that role as the default role for new user registration."
987
-
988
- #: ../classes/class-wpfront-user-role-editor-list.php:476
989
- #: ../classes/personal-pro/class-wpfront-user-role-editor-menu-editor.php:555
990
- msgid "Edit Menu"
991
- msgstr "Edit Menu"
992
-
993
- #: ../classes/class-wpfront-user-role-editor-list.php:478
994
- msgid ""
995
- "Takes you to the menu editor screen for that role. You need \"edit_role_menus"
996
- "\" capability for this link to appear. This is a pro feature."
997
- msgstr ""
998
- "Takes you to the menu editor screen for that role. You need \"edit_role_menus"
999
- "\" capability for this link to appear. This is a pro feature."
1000
-
1001
- #: ../classes/class-wpfront-user-role-editor-list.php:490
1002
- msgid "Documentation on Edit Role"
1003
- msgstr "Documentation on Edit Role"
1004
-
1005
- #: ../classes/class-wpfront-user-role-editor-list.php:497
1006
- msgid "Documentation on Delete Roles"
1007
- msgstr "Documentation on Delete Roles"
1008
-
1009
- #: ../classes/class-wpfront-user-role-editor-list.php:505
1010
- msgid "Documentation on Roles"
1011
- msgstr "Documentation on Roles"
1012
-
1013
- #: ../classes/class-wpfront-user-role-editor-options.php:193
1014
- msgid ""
1015
- "These settings are applicable for the network admin dashboard. Also these "
1016
- "settings will propagate to the individual sites unless its overridden within "
1017
- "that site’s settings."
1018
- msgstr ""
1019
- "These settings are applicable for the network admin dashboard. Also these "
1020
- "settings will propagate to the individual sites unless its overridden within "
1021
- "that site’s settings."
1022
-
1023
- #: ../classes/class-wpfront-user-role-editor-options.php:200
1024
- #: ../templates/options-template.php:40
1025
- msgid "Enable Large Network Functionalities"
1026
- msgstr "Enable Large Network Functionalities"
1027
-
1028
- #: ../classes/class-wpfront-user-role-editor-options.php:202
1029
- msgid "This setting is only visible when you have a large network."
1030
- msgstr "This setting is only visible when you have a large network."
1031
-
1032
- #: ../classes/class-wpfront-user-role-editor-options.php:204
1033
- msgid "More details"
1034
- msgstr "More details"
1035
-
1036
- #: ../classes/class-wpfront-user-role-editor-options.php:208
1037
- #: ../classes/class-wpfront-user-role-editor-options.php:235
1038
- #: ../templates/options-template.php:49
1039
- msgid "Display Deprecated Capabilities"
1040
- msgstr "Display Deprecated Capabilities"
1041
-
1042
- #: ../classes/class-wpfront-user-role-editor-options.php:210
1043
- #: ../classes/class-wpfront-user-role-editor-options.php:237
1044
- msgid ""
1045
- "If enabled, deprecated capabilities will be displayed within the add/edit "
1046
- "screens."
1047
- msgstr ""
1048
- "If enabled, deprecated capabilities will be displayed within the add/edit "
1049
- "screens."
1050
-
1051
- #: ../classes/class-wpfront-user-role-editor-options.php:213
1052
- #: ../classes/class-wpfront-user-role-editor-options.php:240
1053
- #: ../templates/options-template.php:57
1054
- msgid "Remove Non-Standard Capabilities on Restore"
1055
- msgstr "Remove Non-Standard Capabilities on Restore"
1056
-
1057
- #: ../classes/class-wpfront-user-role-editor-options.php:215
1058
- #: ../classes/class-wpfront-user-role-editor-options.php:242
1059
- msgid ""
1060
- "If enabled, while restoring WordPress built-in capabilities non-standard "
1061
- "capabilities will be removed."
1062
- msgstr ""
1063
- "If enabled, while restoring WordPress built-in capabilities non-standard "
1064
- "capabilities will be removed."
1065
-
1066
- #: ../classes/class-wpfront-user-role-editor-options.php:218
1067
- #: ../classes/class-wpfront-user-role-editor-options.php:245
1068
- #: ../templates/options-template.php:65
1069
- msgid "Override Edit Permissions"
1070
- msgstr "Override Edit Permissions"
1071
-
1072
- #: ../classes/class-wpfront-user-role-editor-options.php:220
1073
- #: ../classes/class-wpfront-user-role-editor-options.php:247
1074
- msgid "If enabled, ignores the check to the function get_editable_roles."
1075
- msgstr "If enabled, ignores the check to the function get_editable_roles."
1076
-
1077
- #: ../classes/class-wpfront-user-role-editor-options.php:223
1078
- #: ../classes/class-wpfront-user-role-editor-options.php:250
1079
- #: ../templates/options-template.php:74
1080
- msgid "Remove Data on Uninstall"
1081
- msgstr "Remove Data on Uninstall"
1082
-
1083
- #: ../classes/class-wpfront-user-role-editor-options.php:225
1084
- #: ../classes/class-wpfront-user-role-editor-options.php:252
1085
- msgid ""
1086
- "If enabled, removes all data related to this plugin from database (except "
1087
- "roles data) including license information if any. This will not deactivate "
1088
- "the license automatically."
1089
- msgstr ""
1090
- "If enabled, removes all data related to this plugin from database (except "
1091
- "roles data) including license information if any. This will not deactivate "
1092
- "the license automatically."
1093
-
1094
- #: ../classes/class-wpfront-user-role-editor-options.php:263
1095
- msgid "Documentation on Multisite Settings"
1096
- msgstr "Documentation on Multisite Settings"
1097
-
1098
- #: ../classes/class-wpfront-user-role-editor-options.php:270
1099
- msgid "Documentation on Settings"
1100
- msgstr "Documentation on Settings"
1101
-
1102
- #: ../classes/class-wpfront-user-role-editor-restore.php:179
1103
- msgid "Documentation on Restore"
1104
- msgstr "Documentation on Restore"
1105
-
1106
- #: ../classes/class-wpfront-user-role-editor.php:221
1107
- msgid "Assign Roles | Migrate Users"
1108
- msgstr "Assign Roles | Migrate Users"
1109
-
1110
- #: ../classes/class-wpfront-user-role-editor.php:221
1111
- msgid "Assign / Migrate"
1112
- msgstr "Assign / Migrate"
1113
-
1114
- #: ../classes/class-wpfront-user-role-editor.php:316
1115
- msgid "Buy me a Beer"
1116
- msgstr "Buy me a Beer"
1117
-
1118
- #: ../classes/personal-pro/class-wpfront-user-role-editor-export.php:128
1119
- msgid ""
1120
- "This screen allows you to export the roles existing within your site and "
1121
- "import into the same site or a different site."
1122
- msgstr ""
1123
- "This screen allows you to export the roles existing within your site and "
1124
- "import into the same site or a different site."
1125
-
1126
- #: ../classes/personal-pro/class-wpfront-user-role-editor-export.php:131
1127
- msgid "Select the roles to export, then click Download Export File."
1128
- msgstr "Select the roles to export, then click Download Export File."
1129
-
1130
- #: ../classes/personal-pro/class-wpfront-user-role-editor-export.php:140
1131
- msgid "Documentation on Export"
1132
- msgstr "Documentation on Export"
1133
-
1134
- #: ../classes/personal-pro/class-wpfront-user-role-editor-import.php:33
1135
- msgid "This functionality requires SimpleXML extension, which is not loaded."
1136
- msgstr "This functionality requires SimpleXML extension, which is not loaded."
1137
-
1138
- #: ../classes/personal-pro/class-wpfront-user-role-editor-import.php:81
1139
- #, php-format
1140
- msgid "%d role(s) imported."
1141
- msgstr "%d role(s) imported."
1142
-
1143
- #: ../classes/personal-pro/class-wpfront-user-role-editor-import.php:102
1144
- #, php-format
1145
- msgid ""
1146
- "The export file could not be found at <code>%s</code>. It is likely that "
1147
- "this was caused by a permissions problem."
1148
- msgstr ""
1149
- "The export file could not be found at <code>%s</code>. It is likely that "
1150
- "this was caused by a permissions problem."
1151
-
1152
- #: ../classes/personal-pro/class-wpfront-user-role-editor-import.php:133
1153
- #: ../classes/personal-pro/class-wpfront-user-role-editor-import.php:141
1154
- msgid "There was an error when reading this export file"
1155
- msgstr "There was an error when reading this export file"
1156
-
1157
- #: ../classes/personal-pro/class-wpfront-user-role-editor-import.php:158
1158
- #, php-format
1159
- msgid ""
1160
- "Please update the plugin to latest version. This export file requires plugin "
1161
- "version %s or higher."
1162
- msgstr ""
1163
- "Please update the plugin to latest version. This export file requires plugin "
1164
- "version %s or higher."
1165
-
1166
- #: ../classes/personal-pro/class-wpfront-user-role-editor-import.php:214
1167
- msgid "This file does not appears to be a valid export file."
1168
- msgstr "This file does not appears to be a valid export file."
1169
-
1170
- #: ../classes/personal-pro/class-wpfront-user-role-editor-import.php:227
1171
- msgid ""
1172
- "Step 1: Select export file using the Browse button. Then click Upload file "
1173
- "and Import."
1174
- msgstr ""
1175
- "Step 1: Select export file using the Browse button. Then click Upload file "
1176
- "and Import."
1177
-
1178
- #: ../classes/personal-pro/class-wpfront-user-role-editor-import.php:230
1179
- msgid ""
1180
- "Step 2: Select the roles you want to import using the check boxes and click "
1181
- "Import Roles."
1182
- msgstr ""
1183
- "Step 2: Select the roles you want to import using the check boxes and click "
1184
- "Import Roles."
1185
-
1186
- #: ../classes/personal-pro/class-wpfront-user-role-editor-import.php:239
1187
- msgid "Documentation on Import"
1188
- msgstr "Documentation on Import"
1189
-
1190
- #: ../classes/personal-pro/class-wpfront-user-role-editor-menu-editor.php:157
1191
- msgid "Menu changes saved."
1192
- msgstr "Menu changes saved."
1193
-
1194
- #: ../classes/personal-pro/class-wpfront-user-role-editor-menu-editor.php:170
1195
- msgid "Menu defaults restored."
1196
- msgstr "Menu defaults restored."
1197
-
1198
- #: ../classes/personal-pro/class-wpfront-user-role-editor-menu-editor.php:185
1199
- msgid "No editable roles found on this site."
1200
- msgstr "No editable roles found on this site."
1201
-
1202
- #: ../classes/personal-pro/class-wpfront-user-role-editor-menu-editor.php:565
1203
- msgid ""
1204
- "This screen allows you to enable and disable admin menus for a particular "
1205
- "role."
1206
- msgstr ""
1207
- "This screen allows you to enable and disable admin menus for a particular "
1208
- "role."
1209
-
1210
- #: ../classes/personal-pro/class-wpfront-user-role-editor-menu-editor.php:568
1211
- msgid "Deselect a menu from the grid to remove that menu."
1212
- msgstr "Deselect a menu from the grid to remove that menu."
1213
-
1214
- #: ../classes/personal-pro/class-wpfront-user-role-editor-menu-editor.php:571
1215
- msgid ""
1216
- "Disabled menu items are already hidden, because the selected role doesn't "
1217
- "have the capability to display that menu. Grid displays menus which the "
1218
- "current user has access to."
1219
- msgstr ""
1220
- "Disabled menu items are already hidden, because the selected role doesn't "
1221
- "have the capability to display that menu. Grid displays menus which the "
1222
- "current user has access to."
1223
-
1224
- #: ../classes/personal-pro/class-wpfront-user-role-editor-menu-editor.php:576
1225
- msgid "Fields"
1226
- msgstr "Fields"
1227
-
1228
- #: ../classes/personal-pro/class-wpfront-user-role-editor-menu-editor.php:578
1229
- #: ../templates/personal-pro/menu-editor.php:33
1230
- msgid "Override Role"
1231
- msgstr "Override Role"
1232
-
1233
- #: ../classes/personal-pro/class-wpfront-user-role-editor-menu-editor.php:580
1234
- msgid "The role you want to override."
1235
- msgstr "The role you want to override."
1236
-
1237
- #: ../classes/personal-pro/class-wpfront-user-role-editor-menu-editor.php:583
1238
- #: ../templates/personal-pro/menu-editor.php:50
1239
- msgid "Override Type"
1240
- msgstr "Override Type"
1241
-
1242
- #: ../classes/personal-pro/class-wpfront-user-role-editor-menu-editor.php:585
1243
- msgid ""
1244
- "Soft - Pages may be available through directly typing the URL. Hard - Even "
1245
- "URLs will be blocked."
1246
- msgstr ""
1247
- "Soft - Pages may be available through directly typing the URL. Hard - Even "
1248
- "URLs will be blocked."
1249
-
1250
- #: ../classes/personal-pro/class-wpfront-user-role-editor-menu-editor.php:588
1251
- #: ../templates/personal-pro/menu-editor.php:61
1252
- msgid "Hide New Menus"
1253
- msgstr "Hide New Menus"
1254
-
1255
- #: ../classes/personal-pro/class-wpfront-user-role-editor-menu-editor.php:590
1256
- msgid "Allow you to hide future menus."
1257
- msgstr "Allow you to hide future menus."
1258
-
1259
- #: ../classes/personal-pro/class-wpfront-user-role-editor-menu-editor.php:593
1260
- #: ../templates/personal-pro/menu-editor.php:69
1261
- msgid "Disable For Secondary Role"
1262
- msgstr "Disable For Secondary Role"
1263
-
1264
- #: ../classes/personal-pro/class-wpfront-user-role-editor-menu-editor.php:595
1265
- msgid "Disables menu settings while the selected role is a secondary role."
1266
- msgstr "Disables menu settings while the selected role is a secondary role."
1267
-
1268
- #: ../classes/personal-pro/class-wpfront-user-role-editor-menu-editor.php:600
1269
- msgid "Restore Default"
1270
- msgstr "Restore Default"
1271
-
1272
- #: ../classes/personal-pro/class-wpfront-user-role-editor-menu-editor.php:602
1273
- msgid ""
1274
- "Select \"Restore default\" from the \"Copy from\" drop down and click apply."
1275
- msgstr ""
1276
- "Select \"Restore default\" from the \"Copy from\" drop down and click apply."
1277
-
1278
- #: ../classes/personal-pro/class-wpfront-user-role-editor-menu-editor.php:611
1279
- msgid "Documentation on Menu Editor"
1280
- msgstr "Documentation on Menu Editor"
1281
-
1282
- #: ../classes/personal-pro/class-wpfront-user-role-editor-personal-pro.php:65
1283
- #: ../templates/personal-pro/menu-editor.php:3
1284
- msgid "Menu Editor"
1285
- msgstr "Menu Editor"
1286
-
1287
- #: ../classes/personal-pro/class-wpfront-user-role-editor-personal-pro.php:66
1288
- #: ../templates/personal-pro/export-roles.php:3
1289
- msgid "Export Roles"
1290
- msgstr "Export Roles"
1291
-
1292
- #: ../classes/personal-pro/class-wpfront-user-role-editor-personal-pro.php:66
1293
- msgid "Export"
1294
- msgstr "Export"
1295
-
1296
- #: ../classes/personal-pro/class-wpfront-user-role-editor-personal-pro.php:67
1297
- #: ../templates/personal-pro/import-roles.php:3
1298
- #: ../templates/personal-pro/import-roles.php:82
1299
- msgid "Import Roles"
1300
- msgstr "Import Roles"
1301
-
1302
- #: ../classes/personal-pro/class-wpfront-user-role-editor-personal-pro.php:67
1303
- msgid "Import"
1304
- msgstr "Import"
1305
-
1306
- #: ../classes/personal-pro/class-wpfront-user-role-editor-personal-pro.php:87
1307
- #, php-format
1308
- msgid "%s license not activated."
1309
- msgstr "%s license not activated."
1310
-
1311
- #: ../classes/personal-pro/class-wpfront-user-role-editor-post-type-permissions.php:44
1312
- #: ../classes/personal-pro/class-wpfront-user-role-editor-post-type-permissions.php:269
1313
- msgid "Role Permissions"
1314
- msgstr "Role Permissions"
1315
-
1316
- #: ../templates/add-edit-role.php:35
1317
- msgid "Edit Role"
1318
- msgstr "Edit Role"
1319
-
1320
- #: ../templates/add-edit-role.php:45
1321
- msgid "This role already exists in this site."
1322
- msgstr "This role already exists in this site."
1323
-
1324
- #: ../templates/add-edit-role.php:53
1325
- msgid "There was an unexpected error while performing this action."
1326
- msgstr "There was an unexpected error while performing this action."
1327
-
1328
- #: ../templates/add-edit-role.php:60
1329
- msgid "Create a brand new role and add it to this site."
1330
- msgstr "Create a brand new role and add it to this site."
1331
-
1332
- #: ../templates/add-edit-role.php:71 ../templates/add-edit-role.php:81
1333
- msgid "required"
1334
- msgstr "required"
1335
-
1336
- #: ../templates/add-edit-role.php:100
1337
- #: ../templates/personal-pro/menu-editor.php:83
1338
- msgid "Copy from"
1339
- msgstr "Copy from"
1340
-
1341
- #: ../templates/add-edit-role.php:112
1342
- msgid "Select None"
1343
- msgstr "Select None"
1344
-
1345
- #: ../templates/add-edit-role.php:154
1346
- msgid "Update Role"
1347
- msgstr "Update Role"
1348
-
1349
- #: ../templates/assign-roles.php:62
1350
- msgid "User"
1351
- msgstr "User"
1352
-
1353
- #: ../templates/assign-roles.php:103
1354
- msgid "From Primary Role"
1355
- msgstr "From Primary Role"
1356
-
1357
- #: ../templates/business-pro/sync-roles.php:25
1358
- msgid "Step 1: Select the source site"
1359
- msgstr "Step 1: Select the source site"
1360
-
1361
- #: ../templates/business-pro/sync-roles.php:34
1362
- #: ../templates/business-pro/sync-roles.php:84
1363
- msgid "Search Sites"
1364
- msgstr "Search Sites"
1365
-
1366
- #: ../templates/business-pro/sync-roles.php:40
1367
- #: ../templates/business-pro/sync-roles.php:95
1368
- #: ../templates/business-pro/sync-roles.php:245
1369
- msgid "Next Step"
1370
- msgstr "Next Step"
1371
-
1372
- #: ../templates/business-pro/sync-roles.php:70
1373
- msgid "Step 2: Select destination sites"
1374
- msgstr "Step 2: Select destination sites"
1375
-
1376
- #: ../templates/business-pro/sync-roles.php:74
1377
- #: ../templates/business-pro/sync-roles.php:269
1378
- msgid "All Sites"
1379
- msgstr "All Sites"
1380
-
1381
- #: ../templates/business-pro/sync-roles.php:77
1382
- msgid "Selected Sites"
1383
- msgstr "Selected Sites"
1384
-
1385
- #: ../templates/business-pro/sync-roles.php:216
1386
- msgid "Step 3: Choose settings"
1387
- msgstr "Step 3: Choose settings"
1388
-
1389
- #: ../templates/business-pro/sync-roles.php:255
1390
- msgid "Step 4: Confirm and Sync"
1391
- msgstr "Step 4: Confirm and Sync"
1392
-
1393
- #: ../templates/business-pro/sync-roles.php:260
1394
- msgid "Source: "
1395
- msgstr "Source: "
1396
-
1397
- #: ../templates/business-pro/sync-roles.php:268
1398
- msgid "Destination: "
1399
- msgstr "Destination: "
1400
-
1401
- #: ../templates/business-pro/sync-roles.php:269
1402
- msgid "Selected sites"
1403
- msgstr "Selected sites"
1404
-
1405
- #: ../templates/business-pro/sync-roles.php:269
1406
- #, php-format
1407
- msgid "%s site(s) selected"
1408
- msgstr "%s site(s) selected"
1409
-
1410
- #: ../templates/business-pro/sync-roles.php:274
1411
- msgid "Add roles existing only in source: "
1412
- msgstr "Add roles existing only in source: "
1413
-
1414
- #: ../templates/business-pro/sync-roles.php:275
1415
- #: ../templates/business-pro/sync-roles.php:281
1416
- #: ../templates/business-pro/sync-roles.php:287
1417
- #: ../templates/business-pro/sync-roles.php:293
1418
- msgid "Yes"
1419
- msgstr "Yes"
1420
-
1421
- #: ../templates/business-pro/sync-roles.php:275
1422
- #: ../templates/business-pro/sync-roles.php:281
1423
- #: ../templates/business-pro/sync-roles.php:287
1424
- #: ../templates/business-pro/sync-roles.php:293
1425
- msgid "No"
1426
- msgstr "No"
1427
-
1428
- #: ../templates/business-pro/sync-roles.php:280
1429
- msgid "Overwrite existing roles: "
1430
- msgstr "Overwrite existing roles: "
1431
-
1432
- #: ../templates/business-pro/sync-roles.php:286
1433
- msgid "Remove roles existing only in destination: "
1434
- msgstr "Remove roles existing only in destination: "
1435
-
1436
- #: ../templates/business-pro/sync-roles.php:292
1437
- msgid "Update new user default role: "
1438
- msgstr "Update new user default role: "
1439
-
1440
- #: ../templates/business-pro/sync-roles.php:344
1441
- msgid "SUCCESS"
1442
- msgstr "SUCCESS"
1443
-
1444
- #: ../templates/business-pro/sync-roles.php:347
1445
- msgid "FAIL"
1446
- msgstr "FAIL"
1447
-
1448
- #: ../templates/business-pro/sync-roles.php:370
1449
- msgid "Synching site"
1450
- msgstr "Synching site"
1451
-
1452
- #: ../templates/delete-role.php:37
1453
- msgid "Delete Roles"
1454
- msgstr "Delete Roles"
1455
-
1456
- #: ../templates/delete-role.php:38
1457
- msgid "You have specified these roles for deletion"
1458
- msgstr "You have specified these roles for deletion"
1459
-
1460
- #: ../templates/delete-role.php:45
1461
- msgid "Role"
1462
- msgstr "Role"
1463
-
1464
- #: ../templates/delete-role.php:57
1465
- msgid "Confirm Deletion"
1466
- msgstr "Confirm Deletion"
1467
-
1468
- #: ../templates/go-pro.php:36
1469
- msgid "WPFront User Role Editor Pro"
1470
- msgstr "WPFront User Role Editor Pro"
1471
-
1472
- #: ../templates/go-pro.php:59
1473
- msgid "License Key"
1474
- msgstr "License Key"
1475
-
1476
- #: ../templates/go-pro.php:68 ../templates/go-pro.php:69
1477
- msgid "Deactivate"
1478
- msgstr "Deactivate"
1479
-
1480
- #: ../templates/go-pro.php:76
1481
- msgid "License Expires"
1482
- msgstr "License Expires"
1483
-
1484
- #: ../templates/options-template.php:32
1485
- msgid "WPFront User Role Editor Settings"
1486
- msgstr "WPFront User Role Editor Settings"
1487
-
1488
- #: ../templates/personal-pro/export-roles.php:7
1489
- msgid "Select the roles to be uploaded"
1490
- msgstr "Select the roles to be uploaded"
1491
-
1492
- #: ../templates/personal-pro/export-roles.php:34
1493
- msgid "Download Export File"
1494
- msgstr "Download Export File"
1495
-
1496
- #: ../templates/personal-pro/import-roles.php:15
1497
- msgid "ERROR:"
1498
- msgstr "ERROR:"
1499
-
1500
- #: ../templates/personal-pro/import-roles.php:24
1501
- msgid ""
1502
- "Choose a WPFront User Role Editor export file (.xml) to upload, then click "
1503
- "Upload file and import."
1504
- msgstr ""
1505
- "Choose a WPFront User Role Editor export file (.xml) to upload, then click "
1506
- "Upload file and import."
1507
-
1508
- #: ../templates/personal-pro/import-roles.php:33
1509
- #, php-format
1510
- msgid "Roles exported from %s on %s by user %s."
1511
- msgstr "Roles exported from %s on %s by user %s."
1512
-
1513
- #: ../templates/personal-pro/import-roles.php:33
1514
- msgid "UTC"
1515
- msgstr "UTC"
1516
-
1517
- #: ../templates/personal-pro/import-roles.php:40
1518
- msgid "Zero roles found in this export file to import."
1519
- msgstr "Zero roles found in this export file to import."
1520
-
1521
- #: ../templates/personal-pro/import-roles.php:46
1522
- msgid "Select roles to import"
1523
- msgstr "Select roles to import"
1524
-
1525
- #: ../templates/personal-pro/import-roles.php:75
1526
- msgid ""
1527
- "* These roles already exist in this site. Importing them will overwrite "
1528
- "existing roles."
1529
- msgstr ""
1530
- "* These roles already exist in this site. Importing them will overwrite "
1531
- "existing roles."
1532
-
1533
- #: ../templates/personal-pro/menu-editor.php:20
1534
- msgid ""
1535
- "Select a role below to edit menu for that role. Deselect a menu from the "
1536
- "grid to remove that menu. Disabled menu items are already hidden, because "
1537
- "the selected role doesn't have the capability to display that menu. Grid "
1538
- "displays menus which the current user has access to. "
1539
- msgstr ""
1540
- "Select a role below to edit menu for that role. Deselect a menu from the "
1541
- "grid to remove that menu. Disabled menu items are already hidden, because "
1542
- "the selected role doesn't have the capability to display that menu. Grid "
1543
- "displays menus which the current user has access to. "
1544
-
1545
- #: ../templates/personal-pro/menu-editor.php:54
1546
- msgid "Soft"
1547
- msgstr "Soft"
1548
-
1549
- #: ../templates/personal-pro/menu-editor.php:55
1550
- msgid "Hard"
1551
- msgstr "Hard"
1552
-
1553
- #: ../templates/personal-pro/menu-editor.php:86
1554
- msgid "Restore default"
1555
- msgstr "Restore default"
1556
-
1557
- #: ../templates/personal-pro/menu-editor.php:99
1558
- msgid "Hide deselected item(s)"
1559
- msgstr "Hide deselected item(s)"
1560
-
1561
- #: ../templates/personal-pro/menu-editor.php:104
1562
- msgid "Hide disabled item(s)"
1563
- msgstr "Hide disabled item(s)"
1564
-
1565
- #: ../templates/personal-pro/menu-editor.php:110
1566
- msgid "Has Capability"
1567
- msgstr "Has Capability"
1568
-
1569
- #: ../templates/personal-pro/menu-editor.php:115
1570
- msgid "No Capability"
1571
- msgstr "No Capability"
1572
-
1573
- #: ../templates/personal-pro/menu-editor.php:135
1574
- msgid "Capability"
1575
- msgstr "Capability"
1576
-
1577
- #: ../templates/personal-pro/menu-editor.php:138
1578
- msgid "Menu Slug"
1579
- msgstr "Menu Slug"
1580
-
1581
- #: ../templates/personal-pro/post-type-permissions.php:19
1582
- msgid "Enable Role Permissions"
1583
- msgstr "Enable Role Permissions"
1584
-
1585
- #: ../templates/personal-pro/post-type-permissions.php:27
1586
- msgid "Read"
1587
- msgstr "Read"
1588
-
1589
- #: ../templates/restore-role.php:48
1590
- msgid "Cancel"
1591
- msgstr "Cancel"
1592
-
1593
- #: ../templates/restore-role.php:49
1594
- msgid "Confirm"
1595
- msgstr "Confirm"
1596
-
1597
- #: ../templates/restore-role.php:57
1598
- msgid "Restored"
1599
- msgstr "Restored"
1600
-
1601
- #: ../templates/restore-role.php:101
1602
- msgid "Unexpected error / Timed out"
1603
- msgstr "Unexpected error / Timed out"
1604
-
1605
- #~ msgid "Settings Description"
1606
- #~ msgstr "Settings Description"
1607
-
1608
- #~ msgid "Plugin FAQ"
1609
- #~ msgstr "Plugin FAQ"
1610
-
1611
- #~ msgid "Feature Request"
1612
- #~ msgstr "Feature Request"
1613
-
1614
- #~ msgid "Report Bug"
1615
- #~ msgstr "Report Bug"
1616
-
1617
- #~ msgid "Buy me a Beer or Coffee"
1618
- #~ msgstr "Buy me a Beer or Coffee"
1619
-
1620
- #~ msgid "Add Role Capabilities"
1621
- #~ msgstr "Add Role Capabilities"
1622
-
1623
- #~ msgid "User Role Editor"
1624
- #~ msgstr "User Role Editor"
1625
-
1626
- #~ msgid "Enabled"
1627
- #~ msgstr "Enabled"
1628
-
1629
- #~ msgid "Position"
1630
- #~ msgstr "Position"
1631
-
1632
- #~ msgid "Bar Height"
1633
- #~ msgstr "Bar Height"
1634
-
1635
- #~ msgid "Message Text"
1636
- #~ msgstr "Message Text"
1637
-
1638
- #~ msgid "Display After"
1639
- #~ msgstr "Display After"
1640
-
1641
- #~ msgid "Animation Duration"
1642
- #~ msgstr "Animation Duration"
1643
-
1644
- #~ msgid "Display Close Button"
1645
- #~ msgstr "Display Close Button"
1646
-
1647
- #~ msgid "Auto Close After"
1648
- #~ msgstr "Auto Close After"
1649
-
1650
- #~ msgid "Display Button"
1651
- #~ msgstr "Display Button"
1652
-
1653
- #~ msgid "Button Text"
1654
- #~ msgstr "Button Text"
1655
-
1656
- #~ msgid "Open URL:"
1657
- #~ msgstr "Open URL:"
1658
-
1659
- #~ msgid "Open URL in new tab/window"
1660
- #~ msgstr "Open URL in new tab/window"
1661
-
1662
- #~ msgid "Execute JavaScript"
1663
- #~ msgstr "Execute JavaScript"
1664
-
1665
- #~ msgid "Close Bar on Button Click"
1666
- #~ msgstr "Close Bar on Button Click"
1667
-
1668
- #~ msgid "Display Shadow"
1669
- #~ msgstr "Display Shadow"
1670
-
1671
- #~ msgid "Fixed at Position"
1672
- #~ msgstr "Fixed at Position"
1673
-
1674
- #~ msgid "Message Text Color"
1675
- #~ msgstr "Message Text Color"
1676
-
1677
- #~ msgid "From Color"
1678
- #~ msgstr "From Color"
1679
-
1680
- #~ msgid "To Color"
1681
- #~ msgstr "To Color"
1682
-
1683
- #~ msgid "Button Text Color"
1684
- #~ msgstr "Button Text Color"
1685
-
1686
- #~ msgid "Display on Pages"
1687
- #~ msgstr "Display on Pages"
1688
-
1689
- #~ msgid "Display Reopen Button"
1690
- #~ msgstr "Display Reopen Button"
1691
-
1692
- #~ msgid "Reopen Button Color"
1693
- #~ msgstr "Reopen Button Color"
1694
-
1695
- #~ msgid "Keep Closed"
1696
- #~ msgstr "Keep Closed"
1697
-
1698
- #~ msgid "Keep Closed For"
1699
- #~ msgstr "Keep Closed For"
1700
-
1701
- #~ msgid "Position Offset"
1702
- #~ msgstr "Position Offset"
1703
-
1704
- #~ msgid "Close Button Color"
1705
- #~ msgstr "Close Button Color"
1706
-
1707
- #~ msgid "WPFront Notification Bar"
1708
- #~ msgstr "WPFront Notification Bar"
1709
-
1710
- #~ msgid "Notification Bar"
1711
- #~ msgstr "Notification Bar"
1712
-
1713
- #~ msgid "[Page]"
1714
- #~ msgstr "[Page]"
1715
-
1716
- #~ msgid "Home"
1717
- #~ msgstr "Home"
1718
-
1719
- #~ msgid "[Post]"
1720
- #~ msgstr "[Post]"
1721
-
1722
- #~ msgid "Top"
1723
- #~ msgstr "Top"
1724
-
1725
- #~ msgid "Bottom"
1726
- #~ msgstr "Bottom"
1727
-
1728
- #~ msgid "[Sticky Bar, bar will stay at position regardless of scrolling.]"
1729
- #~ msgstr "[Sticky Bar, bar will stay at position regardless of scrolling.]"
1730
-
1731
- #~ msgid "px"
1732
- #~ msgstr "px"
1733
-
1734
- #~ msgid "Set 0px to auto fit contents."
1735
- #~ msgstr "Set 0px to auto fit contents."
1736
-
1737
- #~ msgid ""
1738
- #~ "(Top bar only) If you find the bar overlapping, try increasing this "
1739
- #~ "value. (eg. WordPress 3.8 Twenty Fourteen theme, set 48px)"
1740
- #~ msgstr ""
1741
- #~ "(Top bar only) If you find the bar overlapping, try increasing this "
1742
- #~ "value. (eg. WordPress 3.8 Twenty Fourteen theme, set 48px)"
1743
-
1744
- #~ msgid "second(s)"
1745
- #~ msgstr "second(s)"
1746
-
1747
- #~ msgid "Set 0 second(s) to display immediately."
1748
- #~ msgstr "Set 0 second(s) to display immediately."
1749
-
1750
- #~ msgid "Set 0 second(s) for no animation."
1751
- #~ msgstr "Set 0 second(s) for no animation."
1752
-
1753
- #~ msgid "[Displays a close button at the top right corner of the bar.]"
1754
- #~ msgstr "[Displays a close button at the top right corner of the bar.]"
1755
-
1756
- #~ msgid "Set 0 second(s) to disable auto close."
1757
- #~ msgstr "Set 0 second(s) to disable auto close."
1758
-
1759
- #~ msgid "A reopen button will be displayed after the bar is closed."
1760
- #~ msgstr "A reopen button will be displayed after the bar is closed."
1761
-
1762
- #~ msgid "Once closed, bar will display closed on other pages."
1763
- #~ msgstr "Once closed, bar will display closed on other pages."
1764
-
1765
- #~ msgid "day(s)"
1766
- #~ msgstr "day(s)"
1767
-
1768
- #~ msgid ""
1769
- #~ "Bar will be kept closed for the number of days specified from last closed "
1770
- #~ "date."
1771
- #~ msgstr ""
1772
- #~ "Bar will be kept closed for the number of days specified from last closed "
1773
- #~ "date."
1774
-
1775
- #~ msgid "Content"
1776
- #~ msgstr "Content"
1777
-
1778
- #~ msgid "[HTML tags are allowed. e.g. Add <br /> for break.]"
1779
- #~ msgstr "[HTML tags are allowed. e.g. Add <br /> for break.]"
1780
-
1781
- #~ msgid "[Displays a button next to the message.]"
1782
- #~ msgstr "[Displays a button next to the message.]"
1783
-
1784
- #~ msgid "Filter"
1785
- #~ msgstr "Filter"
1786
-
1787
- #~ msgid "Only in landing page."
1788
- #~ msgstr "Only in landing page."
1789
-
1790
- #~ msgid "Include in following pages"
1791
- #~ msgstr "Include in following pages"
1792
-
1793
- #~ msgid "Exclude in following pages"
1794
- #~ msgstr "Exclude in following pages"
1795
-
1796
- #~ msgid "Color"
1797
- #~ msgstr "Color"
1798
-
1799
- #~ msgid "Bar Color"
1800
- #~ msgstr "Bar Color"
1801
-
1802
- #~ msgid "[Select two different colors to create a gradient.]"
1803
- #~ msgstr "[Select two different colors to create a gradient.]"
1804
-
1805
- #~ msgid "Button Color"
1806
- #~ msgstr "Button Color"
1807
-
1808
- #~ msgid "[Normal, Hover, X]"
1809
- #~ msgstr "[Normal, Hover, X]"
1810
-
1811
- #~ msgid "CSS"
1812
- #~ msgstr "CSS"
1813
-
1814
- #~ msgid "Plugin Ideas"
1815
- #~ msgstr "Plugin Ideas"
1816
-
1817
- #~ msgid "Animate Display"
1818
- #~ msgstr "Animate Display"
1819
-
1820
- #~ msgid "Animate Display Delay"
1821
- #~ msgstr "Animate Display Delay"
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: WPFront Notification Bar\n"
4
+ "POT-Creation-Date: 2014-10-17 22:13-0700\n"
5
+ "PO-Revision-Date: 2014-10-17 22:16-0700\n"
6
+ "Last-Translator: \n"
7
+ "Language-Team: WPFront <contact@wpfront.com>\n"
8
+ "Language: en\n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Generator: Poedit 1.6.4\n"
13
+ "X-Poedit-Basepath: .\n"
14
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
15
+ "X-Poedit-SourceCharset: UTF-8\n"
16
+ "X-Poedit-KeywordsList: __;_e\n"
17
+ "X-Poedit-SearchPath-0: ..\n"
18
+
19
+ #: ../classes/base/class-wpfront-base-menu.php:52
20
+ #: ../templates/personal-pro/menu-editor.php:132
21
+ msgid "Name"
22
+ msgstr "Name"
23
+
24
+ #: ../classes/base/class-wpfront-base-menu.php:53
25
+ msgid "Version"
26
+ msgstr "Version"
27
+
28
+ #: ../classes/base/class-wpfront-base-menu.php:54
29
+ msgid "Rating"
30
+ msgstr "Rating"
31
+
32
+ #: ../classes/base/class-wpfront-base-menu.php:55
33
+ msgid "Description"
34
+ msgstr "Description"
35
+
36
+ #: ../classes/base/class-wpfront-base-menu.php:69
37
+ #, php-format
38
+ msgid "based on %s rating(s)"
39
+ msgstr "based on %s rating(s)"
40
+
41
+ #: ../classes/base/class-wpfront-base-menu.php:105
42
+ msgid "Unable to communicate with WordPress.org"
43
+ msgstr "Unable to communicate with WordPress.org"
44
+
45
+ #: ../classes/base/class-wpfront-base-menu.php:123
46
+ #: ../classes/base/class-wpfront-base-menu.php:217
47
+ msgid "WPFront Plugins"
48
+ msgstr "WPFront Plugins"
49
+
50
+ #: ../classes/base/class-wpfront-base-menu.php:147
51
+ #, php-format
52
+ msgid "By %s"
53
+ msgstr "By %s"
54
+
55
+ #: ../classes/base/class-wpfront-base-menu.php:154
56
+ #, php-format
57
+ msgid "More information about %s"
58
+ msgstr "More information about %s"
59
+
60
+ #: ../classes/base/class-wpfront-base-menu.php:154
61
+ #: ../classes/class-wpfront-user-role-editor-go-pro.php:217
62
+ msgid "Details"
63
+ msgstr "Details"
64
+
65
+ #: ../classes/base/class-wpfront-base-menu.php:163
66
+ #, php-format
67
+ msgid "Install %s"
68
+ msgstr "Install %s"
69
+
70
+ #: ../classes/base/class-wpfront-base-menu.php:163
71
+ msgid "Install Now"
72
+ msgstr "Install Now"
73
+
74
+ #: ../classes/base/class-wpfront-base-menu.php:168
75
+ #, php-format
76
+ msgid "Update to version %s"
77
+ msgstr "Update to version %s"
78
+
79
+ #: ../classes/base/class-wpfront-base-menu.php:168
80
+ msgid "Update Now"
81
+ msgstr "Update Now"
82
+
83
+ #: ../classes/base/class-wpfront-base-menu.php:173
84
+ msgid "This plugin is already installed and is up to date"
85
+ msgstr "This plugin is already installed and is up to date"
86
+
87
+ #: ../classes/base/class-wpfront-base-menu.php:173
88
+ msgid "Installed"
89
+ msgstr "Installed"
90
+
91
+ #: ../classes/base/class-wpfront-base-menu.php:175
92
+ #: ../classes/base/class-wpfront-base.php:109
93
+ #: ../classes/business-pro/class-wpfront-user-role-editor-business-pro.php:104
94
+ #: ../classes/class-wpfront-user-role-editor-options.php:198
95
+ #: ../classes/class-wpfront-user-role-editor.php:205
96
+ msgid "Settings"
97
+ msgstr "Settings"
98
+
99
+ #: ../classes/base/class-wpfront-base-menu.php:177
100
+ #: ../classes/personal-pro/class-wpfront-user-role-editor-personal-pro.php:88
101
+ #: ../templates/go-pro.php:65 ../templates/go-pro.php:66
102
+ msgid "Activate"
103
+ msgstr "Activate"
104
+
105
+ #: ../classes/base/class-wpfront-base-menu.php:199
106
+ #: ../classes/class-wpfront-user-role-editor.php:314
107
+ msgid "Feedback"
108
+ msgstr "Feedback"
109
+
110
+ #: ../classes/base/class-wpfront-base-menu.php:216
111
+ msgid "WPFront"
112
+ msgstr "WPFront"
113
+
114
+ #: ../classes/base/class-wpfront-base-menu.php:217
115
+ msgid "All Plugins"
116
+ msgstr "All Plugins"
117
+
118
+ #: ../classes/base/class-wpfront-base.php:138
119
+ #: ../classes/class-wpfront-user-role-editor.php:263
120
+ msgid "You do not have sufficient permissions to access this page."
121
+ msgstr "You do not have sufficient permissions to access this page."
122
+
123
+ #: ../classes/base/class-wpfront-base.php:158
124
+ msgid ""
125
+ "If you have a caching plugin, clear the cache for the new settings to take "
126
+ "effect."
127
+ msgstr ""
128
+ "If you have a caching plugin, clear the cache for the new settings to take "
129
+ "effect."
130
+
131
+ #: ../classes/base/class-wpfront-base.php:205
132
+ #: ../templates/personal-pro/menu-editor.php:226
133
+ msgid "Save Changes"
134
+ msgstr "Save Changes"
135
+
136
+ #: ../classes/business-pro/class-wpfront-user-role-editor-business-pro.php:81
137
+ #: ../classes/business-pro/class-wpfront-user-role-editor-business-pro.php:84
138
+ #: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:74
139
+ #: ../classes/class-wpfront-user-role-editor.php:202
140
+ #: ../classes/class-wpfront-user-role-editor.php:209
141
+ #: ../templates/list-roles.php:37
142
+ msgid "Roles"
143
+ msgstr "Roles"
144
+
145
+ #: ../classes/business-pro/class-wpfront-user-role-editor-business-pro.php:84
146
+ #: ../classes/class-wpfront-user-role-editor.php:202
147
+ msgid "All Roles"
148
+ msgstr "All Roles"
149
+
150
+ #: ../classes/business-pro/class-wpfront-user-role-editor-business-pro.php:89
151
+ #: ../classes/class-wpfront-user-role-editor.php:203
152
+ #: ../templates/add-edit-role.php:35 ../templates/add-edit-role.php:154
153
+ msgid "Add New Role"
154
+ msgstr "Add New Role"
155
+
156
+ #: ../classes/business-pro/class-wpfront-user-role-editor-business-pro.php:89
157
+ #: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:77
158
+ #: ../classes/class-wpfront-user-role-editor.php:203
159
+ #: ../templates/add-edit-role.php:37 ../templates/list-roles.php:40
160
+ msgid "Add New"
161
+ msgstr "Add New"
162
+
163
+ #: ../classes/business-pro/class-wpfront-user-role-editor-business-pro.php:94
164
+ #: ../classes/class-wpfront-user-role-editor.php:204
165
+ #: ../templates/restore-role.php:34
166
+ msgid "Restore Role"
167
+ msgstr "Restore Role"
168
+
169
+ #: ../classes/business-pro/class-wpfront-user-role-editor-business-pro.php:94
170
+ #: ../classes/class-wpfront-user-role-editor.php:204
171
+ #: ../templates/restore-role.php:46
172
+ msgid "Restore"
173
+ msgstr "Restore"
174
+
175
+ #: ../classes/business-pro/class-wpfront-user-role-editor-business-pro.php:99
176
+ #: ../templates/business-pro/sync-roles.php:11
177
+ #: ../templates/business-pro/sync-roles.php:297
178
+ msgid "Sync Roles"
179
+ msgstr "Sync Roles"
180
+
181
+ #: ../classes/business-pro/class-wpfront-user-role-editor-business-pro.php:99
182
+ msgid "Sync"
183
+ msgstr "Sync"
184
+
185
+ #: ../classes/business-pro/class-wpfront-user-role-editor-business-pro.php:110
186
+ #: ../classes/class-wpfront-user-role-editor.php:188
187
+ msgid "Go Pro"
188
+ msgstr "Go Pro"
189
+
190
+ #: ../classes/business-pro/class-wpfront-user-role-editor-business-pro.php:121
191
+ msgid ""
192
+ "You have a large network of sites (usually 10,000 or more sites). Roles "
193
+ "functionalities will be CPU and memory intensive on large networks. Use the "
194
+ "settings screen to turn on these CPU and memory intensive functionalities."
195
+ msgstr ""
196
+ "You have a large network of sites (usually 10,000 or more sites). Roles "
197
+ "functionalities will be CPU and memory intensive on large networks. Use the "
198
+ "settings screen to turn on these CPU and memory intensive functionalities."
199
+
200
+ #: ../classes/business-pro/class-wpfront-user-role-editor-ms-add-edit.php:213
201
+ #: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:114
202
+ #: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:148
203
+ #: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:162
204
+ #: ../classes/business-pro/class-wpfront-user-role-editor-ms-restore.php:84
205
+ #: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:223
206
+ #: ../classes/class-wpfront-user-role-editor-add-edit.php:303
207
+ #: ../classes/class-wpfront-user-role-editor-assign-roles.php:296
208
+ #: ../classes/class-wpfront-user-role-editor-list.php:351
209
+ #: ../classes/class-wpfront-user-role-editor-list.php:385
210
+ #: ../classes/class-wpfront-user-role-editor-list.php:402
211
+ #: ../classes/class-wpfront-user-role-editor-options.php:191
212
+ #: ../classes/class-wpfront-user-role-editor-options.php:233
213
+ #: ../classes/class-wpfront-user-role-editor-restore.php:165
214
+ #: ../classes/personal-pro/class-wpfront-user-role-editor-export.php:126
215
+ #: ../classes/personal-pro/class-wpfront-user-role-editor-import.php:225
216
+ #: ../classes/personal-pro/class-wpfront-user-role-editor-menu-editor.php:563
217
+ msgid "Overview"
218
+ msgstr "Overview"
219
+
220
+ #: ../classes/business-pro/class-wpfront-user-role-editor-ms-add-edit.php:215
221
+ msgid "This screen allows you to add a new role within your network."
222
+ msgstr "This screen allows you to add a new role within your network."
223
+
224
+ #: ../classes/business-pro/class-wpfront-user-role-editor-ms-add-edit.php:218
225
+ #: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:119
226
+ #: ../classes/class-wpfront-user-role-editor-add-edit.php:308
227
+ #: ../classes/class-wpfront-user-role-editor-list.php:356
228
+ msgid ""
229
+ "You can copy capabilities from existing roles using the Copy from drop down "
230
+ "list. Select the role you want to copy from, then click Apply to copy the "
231
+ "capabilities. You can select or deselect capabilities even after you copy."
232
+ msgstr ""
233
+ "You can copy capabilities from existing roles using the Copy from drop down "
234
+ "list. Select the role you want to copy from, then click Apply to copy the "
235
+ "capabilities. You can select or deselect capabilities even after you copy."
236
+
237
+ #: ../classes/business-pro/class-wpfront-user-role-editor-ms-add-edit.php:223
238
+ #: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:124
239
+ #: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:179
240
+ #: ../classes/business-pro/class-wpfront-user-role-editor-ms-roles-list-table.php:161
241
+ #: ../classes/class-wpfront-user-role-editor-add-edit.php:313
242
+ #: ../classes/class-wpfront-user-role-editor-list.php:218
243
+ #: ../classes/class-wpfront-user-role-editor-list.php:361
244
+ #: ../classes/class-wpfront-user-role-editor-list.php:414
245
+ #: ../templates/add-edit-role.php:71
246
+ msgid "Display Name"
247
+ msgstr "Display Name"
248
+
249
+ #: ../classes/business-pro/class-wpfront-user-role-editor-ms-add-edit.php:225
250
+ #: ../classes/class-wpfront-user-role-editor-add-edit.php:315
251
+ msgid ""
252
+ "Use the Display Name field to set the display name for the new role. "
253
+ "WordPress uses display name to display this role within your site. This "
254
+ "field is required."
255
+ msgstr ""
256
+ "Use the Display Name field to set the display name for the new role. "
257
+ "WordPress uses display name to display this role within your site. This "
258
+ "field is required."
259
+
260
+ #: ../classes/business-pro/class-wpfront-user-role-editor-ms-add-edit.php:230
261
+ #: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:131
262
+ #: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:174
263
+ #: ../classes/business-pro/class-wpfront-user-role-editor-ms-roles-list-table.php:160
264
+ #: ../classes/class-wpfront-user-role-editor-add-edit.php:320
265
+ #: ../classes/class-wpfront-user-role-editor-list.php:221
266
+ #: ../classes/class-wpfront-user-role-editor-list.php:368
267
+ #: ../classes/class-wpfront-user-role-editor-list.php:419
268
+ #: ../templates/add-edit-role.php:81
269
+ msgid "Role Name"
270
+ msgstr "Role Name"
271
+
272
+ #: ../classes/business-pro/class-wpfront-user-role-editor-ms-add-edit.php:232
273
+ #: ../classes/class-wpfront-user-role-editor-add-edit.php:322
274
+ msgid ""
275
+ "Use the Role Name field to set the role name for the new role. WordPress "
276
+ "uses role name to identify this role within your site. Once set role name "
277
+ "cannot be changed. This field is required. This plugin will auto populate "
278
+ "role name from the display name you have given, but you can change it."
279
+ msgstr ""
280
+ "Use the Role Name field to set the role name for the new role. WordPress "
281
+ "uses role name to identify this role within your site. Once set role name "
282
+ "cannot be changed. This field is required. This plugin will auto populate "
283
+ "role name from the display name you have given, but you can change it."
284
+
285
+ #: ../classes/business-pro/class-wpfront-user-role-editor-ms-add-edit.php:237
286
+ #: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:138
287
+ #: ../classes/class-wpfront-user-role-editor-add-edit.php:327
288
+ #: ../classes/class-wpfront-user-role-editor-list.php:233
289
+ #: ../classes/class-wpfront-user-role-editor-list.php:375
290
+ #: ../classes/class-wpfront-user-role-editor-list.php:439
291
+ #: ../templates/add-edit-role.php:95
292
+ msgid "Capabilities"
293
+ msgstr "Capabilities"
294
+
295
+ #: ../classes/business-pro/class-wpfront-user-role-editor-ms-add-edit.php:239
296
+ #: ../classes/class-wpfront-user-role-editor-add-edit.php:329
297
+ msgid ""
298
+ "Capabilities are displayed as different groups for easy access. The Roles "
299
+ "section displays capabilities created by this plugin. The Other Capabilities "
300
+ "section displays non-standard capabilities within your site. These are "
301
+ "usually created by plugins and themes. Use the check boxes to select the "
302
+ "capabilities required for this new role."
303
+ msgstr ""
304
+ "Capabilities are displayed as different groups for easy access. The Roles "
305
+ "section displays capabilities created by this plugin. The Other Capabilities "
306
+ "section displays non-standard capabilities within your site. These are "
307
+ "usually created by plugins and themes. Use the check boxes to select the "
308
+ "capabilities required for this new role."
309
+
310
+ #: ../classes/business-pro/class-wpfront-user-role-editor-ms-add-edit.php:248
311
+ msgid "Documentation on Multisite Add New Role"
312
+ msgstr "Documentation on Multisite Add New Role"
313
+
314
+ #: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:86
315
+ #: ../templates/list-roles.php:62 ../templates/list-roles.php:64
316
+ msgid "Search Roles"
317
+ msgstr "Search Roles"
318
+
319
+ #: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:116
320
+ msgid "This screen allows you to edit a role within your network."
321
+ msgstr "This screen allows you to edit a role within your network."
322
+
323
+ #: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:126
324
+ #: ../classes/class-wpfront-user-role-editor-list.php:363
325
+ msgid ""
326
+ "Use the Display Name field to edit display name of the role. WordPress uses "
327
+ "display name to display this role within your site. This field is required."
328
+ msgstr ""
329
+ "Use the Display Name field to edit display name of the role. WordPress uses "
330
+ "display name to display this role within your site. This field is required."
331
+
332
+ #: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:133
333
+ #: ../classes/class-wpfront-user-role-editor-list.php:370
334
+ msgid ""
335
+ "Role Name is read only. WordPress uses role name to identify this role "
336
+ "within your site."
337
+ msgstr ""
338
+ "Role Name is read only. WordPress uses role name to identify this role "
339
+ "within your site."
340
+
341
+ #: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:140
342
+ #: ../classes/class-wpfront-user-role-editor-list.php:377
343
+ msgid ""
344
+ "Capabilities are displayed as different groups for easy access. The Roles "
345
+ "section displays capabilities created by this plugin. The Other Capabilities "
346
+ "section displays non-standard capabilities within your site. These are "
347
+ "usually created by plugins and themes. Use the check boxes to select the "
348
+ "capabilities required."
349
+ msgstr ""
350
+ "Capabilities are displayed as different groups for easy access. The Roles "
351
+ "section displays capabilities created by this plugin. The Other Capabilities "
352
+ "section displays non-standard capabilities within your site. These are "
353
+ "usually created by plugins and themes. Use the check boxes to select the "
354
+ "capabilities required."
355
+
356
+ #: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:150
357
+ msgid "This screen allows you to delete roles from your network sites."
358
+ msgstr "This screen allows you to delete roles from your network sites."
359
+
360
+ #: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:153
361
+ #: ../classes/class-wpfront-user-role-editor-list.php:390
362
+ msgid ""
363
+ "Use the Roles List screen to select the roles you want to delete. You can "
364
+ "delete individual roles using the Delete row action link or delete multiple "
365
+ "roles at the same time using the bulk action."
366
+ msgstr ""
367
+ "Use the Roles List screen to select the roles you want to delete. You can "
368
+ "delete individual roles using the Delete row action link or delete multiple "
369
+ "roles at the same time using the bulk action."
370
+
371
+ #: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:164
372
+ msgid ""
373
+ "This screen displays all the roles existing within your multisite network."
374
+ msgstr ""
375
+ "This screen displays all the roles existing within your multisite network."
376
+
377
+ #: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:167
378
+ #: ../classes/class-wpfront-user-role-editor-list.php:407
379
+ msgid ""
380
+ "To add a new role, click the Add New button at the top of the screen or Add "
381
+ "New in the Roles menu section."
382
+ msgstr ""
383
+ "To add a new role, click the Add New button at the top of the screen or Add "
384
+ "New in the Roles menu section."
385
+
386
+ #: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:172
387
+ #: ../classes/class-wpfront-user-role-editor-list.php:412
388
+ msgid "Columns"
389
+ msgstr "Columns"
390
+
391
+ #: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:176
392
+ #: ../classes/class-wpfront-user-role-editor-list.php:421
393
+ msgid "Is used by WordPress to identify this role."
394
+ msgstr "Is used by WordPress to identify this role."
395
+
396
+ #: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:181
397
+ msgid ""
398
+ "WordPress uses display name to display this role within the site. You can "
399
+ "have different display names for the same role within the network."
400
+ msgstr ""
401
+ "WordPress uses display name to display this role within the site. You can "
402
+ "have different display names for the same role within the network."
403
+
404
+ #: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:184
405
+ #: ../classes/business-pro/class-wpfront-user-role-editor-ms-roles-list-table.php:162
406
+ msgid "Role Type"
407
+ msgstr "Role Type"
408
+
409
+ #: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:186
410
+ msgid "Displays whether that role is a built-in role or a custom role."
411
+ msgstr "Displays whether that role is a built-in role or a custom role."
412
+
413
+ #: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:189
414
+ #: ../classes/business-pro/class-wpfront-user-role-editor-ms-roles-list-table.php:163
415
+ msgid "Sites"
416
+ msgstr "Sites"
417
+
418
+ #: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:191
419
+ msgid ""
420
+ "Display the sites that role belongs to. [All Sites] mean, that role is part "
421
+ "of every site within the network. Else it will display the number of sites "
422
+ "as a link. Clicking on the link will display the site list."
423
+ msgstr ""
424
+ "Display the sites that role belongs to. [All Sites] mean, that role is part "
425
+ "of every site within the network. Else it will display the number of sites "
426
+ "as a link. Clicking on the link will display the site list."
427
+
428
+ #: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:196
429
+ #: ../classes/class-wpfront-user-role-editor-list.php:451
430
+ msgid "Actions"
431
+ msgstr "Actions"
432
+
433
+ #: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:198
434
+ #: ../classes/class-wpfront-user-role-editor-list.php:453
435
+ msgid ""
436
+ "Hovering over a row in the roles list will display action links that allow "
437
+ "you to manage roles. You can perform the following actions:"
438
+ msgstr ""
439
+ "Hovering over a row in the roles list will display action links that allow "
440
+ "you to manage roles. You can perform the following actions:"
441
+
442
+ #: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:201
443
+ #: ../classes/business-pro/class-wpfront-user-role-editor-ms-roles-list-table.php:222
444
+ #: ../classes/business-pro/class-wpfront-user-role-editor-ms-roles-list-table.php:272
445
+ #: ../classes/class-wpfront-user-role-editor-list.php:456
446
+ #: ../templates/list-roles.php:98
447
+ msgid "View"
448
+ msgstr "View"
449
+
450
+ #: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:203
451
+ #: ../classes/class-wpfront-user-role-editor-list.php:458
452
+ msgid ""
453
+ "Display details about the role. You can see the capabilities assigned for "
454
+ "that role. View link will only appear when you do not have permission to "
455
+ "edit that role."
456
+ msgstr ""
457
+ "Display details about the role. You can see the capabilities assigned for "
458
+ "that role. View link will only appear when you do not have permission to "
459
+ "edit that role."
460
+
461
+ #: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:206
462
+ #: ../classes/business-pro/class-wpfront-user-role-editor-ms-roles-list-table.php:219
463
+ #: ../classes/business-pro/class-wpfront-user-role-editor-ms-roles-list-table.php:260
464
+ #: ../classes/class-wpfront-user-role-editor-list.php:461
465
+ #: ../templates/list-roles.php:98
466
+ #: ../templates/personal-pro/post-type-permissions.php:28
467
+ msgid "Edit"
468
+ msgstr "Edit"
469
+
470
+ #: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:208
471
+ #: ../classes/class-wpfront-user-role-editor-list.php:463
472
+ msgid ""
473
+ "Allows you to edit that role. You can see the capabilities assigned for that "
474
+ "role and also edit them. Edit link will only appear when you have permission "
475
+ "to edit that role."
476
+ msgstr ""
477
+ "Allows you to edit that role. You can see the capabilities assigned for that "
478
+ "role and also edit them. Edit link will only appear when you have permission "
479
+ "to edit that role."
480
+
481
+ #: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:211
482
+ #: ../classes/business-pro/class-wpfront-user-role-editor-ms-roles-list-table.php:110
483
+ #: ../classes/business-pro/class-wpfront-user-role-editor-ms-roles-list-table.php:220
484
+ #: ../classes/class-wpfront-user-role-editor-list.php:253
485
+ #: ../classes/class-wpfront-user-role-editor-list.php:466
486
+ #: ../templates/list-roles.php:101
487
+ #: ../templates/personal-pro/post-type-permissions.php:29
488
+ msgid "Delete"
489
+ msgstr "Delete"
490
+
491
+ #: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:213
492
+ msgid "Allows you to delete that role."
493
+ msgstr "Allows you to delete that role."
494
+
495
+ #: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:225
496
+ msgid "Documentation on Multisite Edit Role"
497
+ msgstr "Documentation on Multisite Edit Role"
498
+
499
+ #: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:232
500
+ msgid "Documentation on Multisite Delete Roles"
501
+ msgstr "Documentation on Multisite Delete Roles"
502
+
503
+ #: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:240
504
+ msgid "Documentation on Multisite Roles"
505
+ msgstr "Documentation on Multisite Roles"
506
+
507
+ #: ../classes/business-pro/class-wpfront-user-role-editor-ms-restore.php:44
508
+ #: ../classes/business-pro/class-wpfront-user-role-editor-ms-restore.php:73
509
+ #: ../classes/class-wpfront-user-role-editor-go-pro.php:174
510
+ #: ../classes/class-wpfront-user-role-editor-go-pro.php:176
511
+ #: ../classes/class-wpfront-user-role-editor-go-pro.php:196
512
+ #: ../classes/class-wpfront-user-role-editor-go-pro.php:215
513
+ #: ../classes/class-wpfront-user-role-editor-go-pro.php:224
514
+ #: ../classes/class-wpfront-user-role-editor-restore.php:84
515
+ #: ../templates/add-edit-role.php:45 ../templates/add-edit-role.php:53
516
+ #: ../templates/business-pro/sync-roles.php:17
517
+ msgid "ERROR"
518
+ msgstr "ERROR"
519
+
520
+ #: ../classes/business-pro/class-wpfront-user-role-editor-ms-restore.php:44
521
+ msgid "Permission denied."
522
+ msgstr "Permission denied."
523
+
524
+ #: ../classes/business-pro/class-wpfront-user-role-editor-ms-restore.php:71
525
+ msgid "Partial Failure"
526
+ msgstr "Partial Failure"
527
+
528
+ #: ../classes/business-pro/class-wpfront-user-role-editor-ms-restore.php:86
529
+ #: ../classes/class-wpfront-user-role-editor-restore.php:167
530
+ msgid ""
531
+ "This screen allow you to restore WordPress built-in roles to its standard "
532
+ "capability settings."
533
+ msgstr ""
534
+ "This screen allow you to restore WordPress built-in roles to its standard "
535
+ "capability settings."
536
+
537
+ #: ../classes/business-pro/class-wpfront-user-role-editor-ms-restore.php:89
538
+ #: ../classes/class-wpfront-user-role-editor-restore.php:170
539
+ msgid "To restore a role, click the Restore button then Confirm."
540
+ msgstr "To restore a role, click the Restore button then Confirm."
541
+
542
+ #: ../classes/business-pro/class-wpfront-user-role-editor-ms-restore.php:98
543
+ msgid "Documentation on Multisite Restore"
544
+ msgstr "Documentation on Multisite Restore"
545
+
546
+ #: ../classes/business-pro/class-wpfront-user-role-editor-ms-roles-list-table.php:116
547
+ msgid "No roles found."
548
+ msgstr "No roles found."
549
+
550
+ #: ../classes/business-pro/class-wpfront-user-role-editor-ms-roles-list-table.php:142
551
+ #, php-format
552
+ msgid "All <span class=\"count\">(%s)</span>"
553
+ msgstr "All <span class=\"count\">(%s)</span>"
554
+
555
+ #: ../classes/business-pro/class-wpfront-user-role-editor-ms-roles-list-table.php:145
556
+ #, php-format
557
+ msgid "Built-In <span class=\"count\">(%s)</span>"
558
+ msgstr "Built-In <span class=\"count\">(%s)</span>"
559
+
560
+ #: ../classes/business-pro/class-wpfront-user-role-editor-ms-roles-list-table.php:148
561
+ #, php-format
562
+ msgid "Custom <span class=\"count\">(%s)</span>"
563
+ msgstr "Custom <span class=\"count\">(%s)</span>"
564
+
565
+ #: ../classes/business-pro/class-wpfront-user-role-editor-ms-roles-list-table.php:198
566
+ #: ../templates/personal-pro/menu-editor.php:155
567
+ #: ../templates/personal-pro/menu-editor.php:191
568
+ #, php-format
569
+ msgid "Select %s"
570
+ msgstr "Select %s"
571
+
572
+ #: ../classes/business-pro/class-wpfront-user-role-editor-ms-roles-list-table.php:244
573
+ msgid "[All Sites]"
574
+ msgstr "[All Sites]"
575
+
576
+ #: ../classes/business-pro/class-wpfront-user-role-editor-ms-roles-list-table.php:246
577
+ #, php-format
578
+ msgid "%d Site(s)"
579
+ msgstr "%d Site(s)"
580
+
581
+ #: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:56
582
+ #: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:64
583
+ #: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:83
584
+ msgid "Source site not selected."
585
+ msgstr "Source site not selected."
586
+
587
+ #: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:67
588
+ #: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:86
589
+ msgid "Destination type not selected."
590
+ msgstr "Destination type not selected."
591
+
592
+ #: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:74
593
+ #: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:93
594
+ msgid "Destination sites not selected."
595
+ msgstr "Destination sites not selected."
596
+
597
+ #: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:225
598
+ msgid "This screen allows you to sync the roles between the network."
599
+ msgstr "This screen allows you to sync the roles between the network."
600
+
601
+ #: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:228
602
+ msgid ""
603
+ "You will select a site as source, then sync the roles to selected sites or "
604
+ "entire sites within the network."
605
+ msgstr ""
606
+ "You will select a site as source, then sync the roles to selected sites or "
607
+ "entire sites within the network."
608
+
609
+ #: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:233
610
+ msgid "Step 1"
611
+ msgstr "Step 1"
612
+
613
+ #: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:235
614
+ msgid "Select source site."
615
+ msgstr "Select source site."
616
+
617
+ #: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:238
618
+ msgid "You will select the source site in this step."
619
+ msgstr "You will select the source site in this step."
620
+
621
+ #: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:243
622
+ msgid "Step 2"
623
+ msgstr "Step 2"
624
+
625
+ #: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:245
626
+ msgid "Select destination sites."
627
+ msgstr "Select destination sites."
628
+
629
+ #: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:248
630
+ msgid "You will select the destination sites in this step."
631
+ msgstr "You will select the destination sites in this step."
632
+
633
+ #: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:251
634
+ msgid ""
635
+ "Use \"All Sites\" to select all the sites within the network or you can "
636
+ "select individual sites using \"Selected Sites\"."
637
+ msgstr ""
638
+ "Use \"All Sites\" to select all the sites within the network or you can "
639
+ "select individual sites using \"Selected Sites\"."
640
+
641
+ #: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:256
642
+ msgid "Step 3"
643
+ msgstr "Step 3"
644
+
645
+ #: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:258
646
+ msgid "Choose settings."
647
+ msgstr "Choose settings."
648
+
649
+ #: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:261
650
+ #: ../templates/business-pro/sync-roles.php:222
651
+ msgid "Add roles existing only in source"
652
+ msgstr "Add roles existing only in source"
653
+
654
+ #: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:263
655
+ msgid ""
656
+ "Roles existing in source and do not existing in destination will be created."
657
+ msgstr ""
658
+ "Roles existing in source and do not existing in destination will be created."
659
+
660
+ #: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:266
661
+ #: ../templates/business-pro/sync-roles.php:227
662
+ msgid "Overwrite existing roles"
663
+ msgstr "Overwrite existing roles"
664
+
665
+ #: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:268
666
+ msgid ""
667
+ "If the role from source already exists in destination, it will be "
668
+ "overwritten."
669
+ msgstr ""
670
+ "If the role from source already exists in destination, it will be "
671
+ "overwritten."
672
+
673
+ #: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:271
674
+ #: ../templates/business-pro/sync-roles.php:232
675
+ msgid "Remove roles existing only in destination"
676
+ msgstr "Remove roles existing only in destination"
677
+
678
+ #: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:273
679
+ msgid ""
680
+ "If a role do not exist in source, but exists in destination it will be "
681
+ "removed."
682
+ msgstr ""
683
+ "If a role do not exist in source, but exists in destination it will be "
684
+ "removed."
685
+
686
+ #: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:276
687
+ #: ../templates/business-pro/sync-roles.php:237
688
+ msgid "Update new user default role"
689
+ msgstr "Update new user default role"
690
+
691
+ #: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:278
692
+ msgid ""
693
+ "The destination new user default role will be updated as same as source."
694
+ msgstr ""
695
+ "The destination new user default role will be updated as same as source."
696
+
697
+ #: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:283
698
+ msgid "Step 4"
699
+ msgstr "Step 4"
700
+
701
+ #: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:285
702
+ msgid "Confirm and Sync"
703
+ msgstr "Confirm and Sync"
704
+
705
+ #: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:288
706
+ msgid "You can verify your settings and start syncing."
707
+ msgstr "You can verify your settings and start syncing."
708
+
709
+ #: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:291
710
+ msgid "Click Sync Roles to start syncing."
711
+ msgstr "Click Sync Roles to start syncing."
712
+
713
+ #: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:300
714
+ msgid "Documentation on Multisite Sync"
715
+ msgstr "Documentation on Multisite Sync"
716
+
717
+ #: ../classes/class-wpfront-user-role-editor-add-edit.php:305
718
+ msgid "This screen allows you to add a new role within your site."
719
+ msgstr "This screen allows you to add a new role within your site."
720
+
721
+ #: ../classes/class-wpfront-user-role-editor-add-edit.php:338
722
+ msgid "Documentation on Add New Role"
723
+ msgstr "Documentation on Add New Role"
724
+
725
+ #: ../classes/class-wpfront-user-role-editor-assign-roles.php:59
726
+ #: ../classes/class-wpfront-user-role-editor-assign-roles.php:270
727
+ msgid "Secondary Roles"
728
+ msgstr "Secondary Roles"
729
+
730
+ #: ../classes/class-wpfront-user-role-editor-assign-roles.php:74
731
+ #: ../classes/class-wpfront-user-role-editor-assign-roles.php:303
732
+ #: ../templates/assign-roles.php:36 ../templates/assign-roles.php:88
733
+ msgid "Assign Roles"
734
+ msgstr "Assign Roles"
735
+
736
+ #: ../classes/class-wpfront-user-role-editor-assign-roles.php:111
737
+ msgid "No role for this site"
738
+ msgstr "No role for this site"
739
+
740
+ #: ../classes/class-wpfront-user-role-editor-assign-roles.php:127
741
+ msgid "Invalid user."
742
+ msgstr "Invalid user."
743
+
744
+ #: ../classes/class-wpfront-user-role-editor-assign-roles.php:155
745
+ msgid "Roles updated successfully."
746
+ msgstr "Roles updated successfully."
747
+
748
+ #: ../classes/class-wpfront-user-role-editor-assign-roles.php:157
749
+ msgid "Invalid primary role specified."
750
+ msgstr "Invalid primary role specified."
751
+
752
+ #: ../classes/class-wpfront-user-role-editor-assign-roles.php:175
753
+ #: ../classes/class-wpfront-user-role-editor-assign-roles.php:185
754
+ msgid "Invalid primary role."
755
+ msgstr "Invalid primary role."
756
+
757
+ #: ../classes/class-wpfront-user-role-editor-assign-roles.php:207
758
+ #, php-format
759
+ msgid "%d user(s) migrated."
760
+ msgstr "%d user(s) migrated."
761
+
762
+ #: ../classes/class-wpfront-user-role-editor-assign-roles.php:252
763
+ msgid "Primary Role"
764
+ msgstr "Primary Role"
765
+
766
+ #: ../classes/class-wpfront-user-role-editor-assign-roles.php:298
767
+ msgid ""
768
+ "This screen allows you to assign multiple roles to a user and also allows "
769
+ "you to migrate users from a role to another role."
770
+ msgstr ""
771
+ "This screen allows you to assign multiple roles to a user and also allows "
772
+ "you to migrate users from a role to another role."
773
+
774
+ #: ../classes/class-wpfront-user-role-editor-assign-roles.php:305
775
+ msgid ""
776
+ "To assign multiple roles to a user, select that user within the User drop "
777
+ "down list and select the primary role you want for that user using the "
778
+ "Primary Role drop down list. Select the secondary roles using the check "
779
+ "boxes below, then click Assign Roles."
780
+ msgstr ""
781
+ "To assign multiple roles to a user, select that user within the User drop "
782
+ "down list and select the primary role you want for that user using the "
783
+ "Primary Role drop down list. Select the secondary roles using the check "
784
+ "boxes below, then click Assign Roles."
785
+
786
+ #: ../classes/class-wpfront-user-role-editor-assign-roles.php:310
787
+ #: ../templates/assign-roles.php:93 ../templates/assign-roles.php:126
788
+ msgid "Migrate Users"
789
+ msgstr "Migrate Users"
790
+
791
+ #: ../classes/class-wpfront-user-role-editor-assign-roles.php:312
792
+ msgid ""
793
+ "To migrate users from one role to another role or to add secondary roles to "
794
+ "users belonging to a particular primary role, use the migrate users "
795
+ "functionality."
796
+ msgstr ""
797
+ "To migrate users from one role to another role or to add secondary roles to "
798
+ "users belonging to a particular primary role, use the migrate users "
799
+ "functionality."
800
+
801
+ #: ../classes/class-wpfront-user-role-editor-assign-roles.php:315
802
+ msgid ""
803
+ "Select the users using the From Primary Role drop down, to primary role "
804
+ "using the Primary Role drop down and secondary roles using the check boxes "
805
+ "then click Migrate Users."
806
+ msgstr ""
807
+ "Select the users using the From Primary Role drop down, to primary role "
808
+ "using the Primary Role drop down and secondary roles using the check boxes "
809
+ "then click Migrate Users."
810
+
811
+ #: ../classes/class-wpfront-user-role-editor-assign-roles.php:324
812
+ msgid "Documentation on Assign / Migrate Users"
813
+ msgstr "Documentation on Assign / Migrate Users"
814
+
815
+ #: ../classes/class-wpfront-user-role-editor-controller-base.php:81
816
+ msgid "Links:"
817
+ msgstr "Links:"
818
+
819
+ #: ../classes/class-wpfront-user-role-editor-controller-base.php:87
820
+ msgid "FAQ"
821
+ msgstr "FAQ"
822
+
823
+ #: ../classes/class-wpfront-user-role-editor-controller-base.php:88
824
+ msgid "Support"
825
+ msgstr "Support"
826
+
827
+ #: ../classes/class-wpfront-user-role-editor-controller-base.php:89
828
+ msgid "Review"
829
+ msgstr "Review"
830
+
831
+ #: ../classes/class-wpfront-user-role-editor-controller-base.php:90
832
+ msgid "Contact"
833
+ msgstr "Contact"
834
+
835
+ #: ../classes/class-wpfront-user-role-editor-go-pro.php:174
836
+ msgid "License key activation limit reached"
837
+ msgstr "License key activation limit reached"
838
+
839
+ #: ../classes/class-wpfront-user-role-editor-go-pro.php:176
840
+ msgid "Invalid license key"
841
+ msgstr "Invalid license key"
842
+
843
+ #: ../classes/class-wpfront-user-role-editor-go-pro.php:196
844
+ msgid "Unable to deactivate, expired license?"
845
+ msgstr "Unable to deactivate, expired license?"
846
+
847
+ #: ../classes/class-wpfront-user-role-editor-go-pro.php:215
848
+ msgid "Unable to contact wpfront.com"
849
+ msgstr "Unable to contact wpfront.com"
850
+
851
+ #: ../classes/class-wpfront-user-role-editor-go-pro.php:224
852
+ msgid "Unable to parse response"
853
+ msgstr "Unable to parse response"
854
+
855
+ #: ../classes/class-wpfront-user-role-editor-list.php:214
856
+ #: ../templates/add-edit-role.php:111
857
+ #: ../templates/personal-pro/menu-editor.php:126
858
+ msgid "Select All"
859
+ msgstr "Select All"
860
+
861
+ #: ../classes/class-wpfront-user-role-editor-list.php:224
862
+ #: ../classes/class-wpfront-user-role-editor-list.php:424
863
+ msgid "Type"
864
+ msgstr "Type"
865
+
866
+ #: ../classes/class-wpfront-user-role-editor-list.php:227
867
+ #: ../classes/class-wpfront-user-role-editor-list.php:429
868
+ msgid "User Default"
869
+ msgstr "User Default"
870
+
871
+ #: ../classes/class-wpfront-user-role-editor-list.php:230
872
+ #: ../classes/class-wpfront-user-role-editor-list.php:434
873
+ msgid "Users"
874
+ msgstr "Users"
875
+
876
+ #: ../classes/class-wpfront-user-role-editor-list.php:251
877
+ msgid "Bulk Actions"
878
+ msgstr "Bulk Actions"
879
+
880
+ #: ../classes/class-wpfront-user-role-editor-list.php:256
881
+ #: ../templates/add-edit-role.php:107
882
+ #: ../templates/personal-pro/menu-editor.php:94
883
+ msgid "Apply"
884
+ msgstr "Apply"
885
+
886
+ #: ../classes/class-wpfront-user-role-editor-list.php:258
887
+ #, php-format
888
+ msgid "%s item(s)"
889
+ msgstr "%s item(s)"
890
+
891
+ #: ../classes/class-wpfront-user-role-editor-list.php:281
892
+ msgid "All"
893
+ msgstr "All"
894
+
895
+ #: ../classes/class-wpfront-user-role-editor-list.php:292
896
+ msgid "Having Users"
897
+ msgstr "Having Users"
898
+
899
+ #: ../classes/class-wpfront-user-role-editor-list.php:298
900
+ msgid "No Users"
901
+ msgstr "No Users"
902
+
903
+ #: ../classes/class-wpfront-user-role-editor-list.php:309
904
+ #: ../templates/list-roles.php:118
905
+ msgid "Built-In"
906
+ msgstr "Built-In"
907
+
908
+ #: ../classes/class-wpfront-user-role-editor-list.php:315
909
+ #: ../templates/list-roles.php:118
910
+ msgid "Custom"
911
+ msgstr "Custom"
912
+
913
+ #: ../classes/class-wpfront-user-role-editor-list.php:353
914
+ msgid "This screen allows you to edit a role within your site."
915
+ msgstr "This screen allows you to edit a role within your site."
916
+
917
+ #: ../classes/class-wpfront-user-role-editor-list.php:387
918
+ msgid "This screen allows you to delete roles from your WordPress site."
919
+ msgstr "This screen allows you to delete roles from your WordPress site."
920
+
921
+ #: ../classes/class-wpfront-user-role-editor-list.php:393
922
+ msgid ""
923
+ "You cannot delete administrator role, current user’s role and roles you do "
924
+ "not have permission to."
925
+ msgstr ""
926
+ "You cannot delete administrator role, current user’s role and roles you do "
927
+ "not have permission to."
928
+
929
+ #: ../classes/class-wpfront-user-role-editor-list.php:404
930
+ msgid "This screen lists all the existing roles within your site."
931
+ msgstr "This screen lists all the existing roles within your site."
932
+
933
+ #: ../classes/class-wpfront-user-role-editor-list.php:416
934
+ msgid "Used to display this role within this site."
935
+ msgstr "Used to display this role within this site."
936
+
937
+ #: ../classes/class-wpfront-user-role-editor-list.php:426
938
+ msgid ""
939
+ "Says whether the role is a WordPress built-in role or not. There are five "
940
+ "built-in roles."
941
+ msgstr ""
942
+ "Says whether the role is a WordPress built-in role or not. There are five "
943
+ "built-in roles."
944
+
945
+ #: ../classes/class-wpfront-user-role-editor-list.php:431
946
+ msgid "Displays whether a role is the default role of a new user."
947
+ msgstr "Displays whether a role is the default role of a new user."
948
+
949
+ #: ../classes/class-wpfront-user-role-editor-list.php:436
950
+ msgid "Number of users in that role."
951
+ msgstr "Number of users in that role."
952
+
953
+ #: ../classes/class-wpfront-user-role-editor-list.php:441
954
+ msgid "Number of capabilities that role have."
955
+ msgstr "Number of capabilities that role have."
956
+
957
+ #: ../classes/class-wpfront-user-role-editor-list.php:444
958
+ msgid "Menu Edited"
959
+ msgstr "Menu Edited"
960
+
961
+ #: ../classes/class-wpfront-user-role-editor-list.php:446
962
+ msgid ""
963
+ "Displays whether the menu has been edited for this role. This is a pro "
964
+ "feature."
965
+ msgstr ""
966
+ "Displays whether the menu has been edited for this role. This is a pro "
967
+ "feature."
968
+
969
+ #: ../classes/class-wpfront-user-role-editor-list.php:468
970
+ msgid ""
971
+ "Allows you to delete that role. Delete action will not appear if you do not "
972
+ "have permission to delete that role."
973
+ msgstr ""
974
+ "Allows you to delete that role. Delete action will not appear if you do not "
975
+ "have permission to delete that role."
976
+
977
+ #: ../classes/class-wpfront-user-role-editor-list.php:471
978
+ #: ../templates/list-roles.php:104
979
+ msgid "Default"
980
+ msgstr "Default"
981
+
982
+ #: ../classes/class-wpfront-user-role-editor-list.php:473
983
+ msgid ""
984
+ "Allows you to set that role as the default role for new user registration."
985
+ msgstr ""
986
+ "Allows you to set that role as the default role for new user registration."
987
+
988
+ #: ../classes/class-wpfront-user-role-editor-list.php:476
989
+ #: ../classes/personal-pro/class-wpfront-user-role-editor-menu-editor.php:555
990
+ msgid "Edit Menu"
991
+ msgstr "Edit Menu"
992
+
993
+ #: ../classes/class-wpfront-user-role-editor-list.php:478
994
+ msgid ""
995
+ "Takes you to the menu editor screen for that role. You need \"edit_role_menus"
996
+ "\" capability for this link to appear. This is a pro feature."
997
+ msgstr ""
998
+ "Takes you to the menu editor screen for that role. You need \"edit_role_menus"
999
+ "\" capability for this link to appear. This is a pro feature."
1000
+
1001
+ #: ../classes/class-wpfront-user-role-editor-list.php:490
1002
+ msgid "Documentation on Edit Role"
1003
+ msgstr "Documentation on Edit Role"
1004
+
1005
+ #: ../classes/class-wpfront-user-role-editor-list.php:497
1006
+ msgid "Documentation on Delete Roles"
1007
+ msgstr "Documentation on Delete Roles"
1008
+
1009
+ #: ../classes/class-wpfront-user-role-editor-list.php:505
1010
+ msgid "Documentation on Roles"
1011
+ msgstr "Documentation on Roles"
1012
+
1013
+ #: ../classes/class-wpfront-user-role-editor-options.php:193
1014
+ msgid ""
1015
+ "These settings are applicable for the network admin dashboard. Also these "
1016
+ "settings will propagate to the individual sites unless its overridden within "
1017
+ "that site’s settings."
1018
+ msgstr ""
1019
+ "These settings are applicable for the network admin dashboard. Also these "
1020
+ "settings will propagate to the individual sites unless its overridden within "
1021
+ "that site’s settings."
1022
+
1023
+ #: ../classes/class-wpfront-user-role-editor-options.php:200
1024
+ #: ../templates/options-template.php:40
1025
+ msgid "Enable Large Network Functionalities"
1026
+ msgstr "Enable Large Network Functionalities"
1027
+
1028
+ #: ../classes/class-wpfront-user-role-editor-options.php:202
1029
+ msgid "This setting is only visible when you have a large network."
1030
+ msgstr "This setting is only visible when you have a large network."
1031
+
1032
+ #: ../classes/class-wpfront-user-role-editor-options.php:204
1033
+ msgid "More details"
1034
+ msgstr "More details"
1035
+
1036
+ #: ../classes/class-wpfront-user-role-editor-options.php:208
1037
+ #: ../classes/class-wpfront-user-role-editor-options.php:235
1038
+ #: ../templates/options-template.php:49
1039
+ msgid "Display Deprecated Capabilities"
1040
+ msgstr "Display Deprecated Capabilities"
1041
+
1042
+ #: ../classes/class-wpfront-user-role-editor-options.php:210
1043
+ #: ../classes/class-wpfront-user-role-editor-options.php:237
1044
+ msgid ""
1045
+ "If enabled, deprecated capabilities will be displayed within the add/edit "
1046
+ "screens."
1047
+ msgstr ""
1048
+ "If enabled, deprecated capabilities will be displayed within the add/edit "
1049
+ "screens."
1050
+
1051
+ #: ../classes/class-wpfront-user-role-editor-options.php:213
1052
+ #: ../classes/class-wpfront-user-role-editor-options.php:240
1053
+ #: ../templates/options-template.php:57
1054
+ msgid "Remove Non-Standard Capabilities on Restore"
1055
+ msgstr "Remove Non-Standard Capabilities on Restore"
1056
+
1057
+ #: ../classes/class-wpfront-user-role-editor-options.php:215
1058
+ #: ../classes/class-wpfront-user-role-editor-options.php:242
1059
+ msgid ""
1060
+ "If enabled, while restoring WordPress built-in capabilities non-standard "
1061
+ "capabilities will be removed."
1062
+ msgstr ""
1063
+ "If enabled, while restoring WordPress built-in capabilities non-standard "
1064
+ "capabilities will be removed."
1065
+
1066
+ #: ../classes/class-wpfront-user-role-editor-options.php:218
1067
+ #: ../classes/class-wpfront-user-role-editor-options.php:245
1068
+ #: ../templates/options-template.php:65
1069
+ msgid "Override Edit Permissions"
1070
+ msgstr "Override Edit Permissions"
1071
+
1072
+ #: ../classes/class-wpfront-user-role-editor-options.php:220
1073
+ #: ../classes/class-wpfront-user-role-editor-options.php:247
1074
+ msgid "If enabled, ignores the check to the function get_editable_roles."
1075
+ msgstr "If enabled, ignores the check to the function get_editable_roles."
1076
+
1077
+ #: ../classes/class-wpfront-user-role-editor-options.php:223
1078
+ #: ../classes/class-wpfront-user-role-editor-options.php:250
1079
+ #: ../templates/options-template.php:74
1080
+ msgid "Remove Data on Uninstall"
1081
+ msgstr "Remove Data on Uninstall"
1082
+
1083
+ #: ../classes/class-wpfront-user-role-editor-options.php:225
1084
+ #: ../classes/class-wpfront-user-role-editor-options.php:252
1085
+ msgid ""
1086
+ "If enabled, removes all data related to this plugin from database (except "
1087
+ "roles data) including license information if any. This will not deactivate "
1088
+ "the license automatically."
1089
+ msgstr ""
1090
+ "If enabled, removes all data related to this plugin from database (except "
1091
+ "roles data) including license information if any. This will not deactivate "
1092
+ "the license automatically."
1093
+
1094
+ #: ../classes/class-wpfront-user-role-editor-options.php:263
1095
+ msgid "Documentation on Multisite Settings"
1096
+ msgstr "Documentation on Multisite Settings"
1097
+
1098
+ #: ../classes/class-wpfront-user-role-editor-options.php:270
1099
+ msgid "Documentation on Settings"
1100
+ msgstr "Documentation on Settings"
1101
+
1102
+ #: ../classes/class-wpfront-user-role-editor-restore.php:179
1103
+ msgid "Documentation on Restore"
1104
+ msgstr "Documentation on Restore"
1105
+
1106
+ #: ../classes/class-wpfront-user-role-editor.php:221
1107
+ msgid "Assign Roles | Migrate Users"
1108
+ msgstr "Assign Roles | Migrate Users"
1109
+
1110
+ #: ../classes/class-wpfront-user-role-editor.php:221
1111
+ msgid "Assign / Migrate"
1112
+ msgstr "Assign / Migrate"
1113
+
1114
+ #: ../classes/class-wpfront-user-role-editor.php:316
1115
+ msgid "Buy me a Beer"
1116
+ msgstr "Buy me a Beer"
1117
+
1118
+ #: ../classes/personal-pro/class-wpfront-user-role-editor-export.php:128
1119
+ msgid ""
1120
+ "This screen allows you to export the roles existing within your site and "
1121
+ "import into the same site or a different site."
1122
+ msgstr ""
1123
+ "This screen allows you to export the roles existing within your site and "
1124
+ "import into the same site or a different site."
1125
+
1126
+ #: ../classes/personal-pro/class-wpfront-user-role-editor-export.php:131
1127
+ msgid "Select the roles to export, then click Download Export File."
1128
+ msgstr "Select the roles to export, then click Download Export File."
1129
+
1130
+ #: ../classes/personal-pro/class-wpfront-user-role-editor-export.php:140
1131
+ msgid "Documentation on Export"
1132
+ msgstr "Documentation on Export"
1133
+
1134
+ #: ../classes/personal-pro/class-wpfront-user-role-editor-import.php:33
1135
+ msgid "This functionality requires SimpleXML extension, which is not loaded."
1136
+ msgstr "This functionality requires SimpleXML extension, which is not loaded."
1137
+
1138
+ #: ../classes/personal-pro/class-wpfront-user-role-editor-import.php:81
1139
+ #, php-format
1140
+ msgid "%d role(s) imported."
1141
+ msgstr "%d role(s) imported."
1142
+
1143
+ #: ../classes/personal-pro/class-wpfront-user-role-editor-import.php:102
1144
+ #, php-format
1145
+ msgid ""
1146
+ "The export file could not be found at <code>%s</code>. It is likely that "
1147
+ "this was caused by a permissions problem."
1148
+ msgstr ""
1149
+ "The export file could not be found at <code>%s</code>. It is likely that "
1150
+ "this was caused by a permissions problem."
1151
+
1152
+ #: ../classes/personal-pro/class-wpfront-user-role-editor-import.php:133
1153
+ #: ../classes/personal-pro/class-wpfront-user-role-editor-import.php:141
1154
+ msgid "There was an error when reading this export file"
1155
+ msgstr "There was an error when reading this export file"
1156
+
1157
+ #: ../classes/personal-pro/class-wpfront-user-role-editor-import.php:158
1158
+ #, php-format
1159
+ msgid ""
1160
+ "Please update the plugin to latest version. This export file requires plugin "
1161
+ "version %s or higher."
1162
+ msgstr ""
1163
+ "Please update the plugin to latest version. This export file requires plugin "
1164
+ "version %s or higher."
1165
+
1166
+ #: ../classes/personal-pro/class-wpfront-user-role-editor-import.php:214
1167
+ msgid "This file does not appears to be a valid export file."
1168
+ msgstr "This file does not appears to be a valid export file."
1169
+
1170
+ #: ../classes/personal-pro/class-wpfront-user-role-editor-import.php:227
1171
+ msgid ""
1172
+ "Step 1: Select export file using the Browse button. Then click Upload file "
1173
+ "and Import."
1174
+ msgstr ""
1175
+ "Step 1: Select export file using the Browse button. Then click Upload file "
1176
+ "and Import."
1177
+
1178
+ #: ../classes/personal-pro/class-wpfront-user-role-editor-import.php:230
1179
+ msgid ""
1180
+ "Step 2: Select the roles you want to import using the check boxes and click "
1181
+ "Import Roles."
1182
+ msgstr ""
1183
+ "Step 2: Select the roles you want to import using the check boxes and click "
1184
+ "Import Roles."
1185
+
1186
+ #: ../classes/personal-pro/class-wpfront-user-role-editor-import.php:239
1187
+ msgid "Documentation on Import"
1188
+ msgstr "Documentation on Import"
1189
+
1190
+ #: ../classes/personal-pro/class-wpfront-user-role-editor-menu-editor.php:157
1191
+ msgid "Menu changes saved."
1192
+ msgstr "Menu changes saved."
1193
+
1194
+ #: ../classes/personal-pro/class-wpfront-user-role-editor-menu-editor.php:170
1195
+ msgid "Menu defaults restored."
1196
+ msgstr "Menu defaults restored."
1197
+
1198
+ #: ../classes/personal-pro/class-wpfront-user-role-editor-menu-editor.php:185
1199
+ msgid "No editable roles found on this site."
1200
+ msgstr "No editable roles found on this site."
1201
+
1202
+ #: ../classes/personal-pro/class-wpfront-user-role-editor-menu-editor.php:565
1203
+ msgid ""
1204
+ "This screen allows you to enable and disable admin menus for a particular "
1205
+ "role."
1206
+ msgstr ""
1207
+ "This screen allows you to enable and disable admin menus for a particular "
1208
+ "role."
1209
+
1210
+ #: ../classes/personal-pro/class-wpfront-user-role-editor-menu-editor.php:568
1211
+ msgid "Deselect a menu from the grid to remove that menu."
1212
+ msgstr "Deselect a menu from the grid to remove that menu."
1213
+
1214
+ #: ../classes/personal-pro/class-wpfront-user-role-editor-menu-editor.php:571
1215
+ msgid ""
1216
+ "Disabled menu items are already hidden, because the selected role doesn't "
1217
+ "have the capability to display that menu. Grid displays menus which the "
1218
+ "current user has access to."
1219
+ msgstr ""
1220
+ "Disabled menu items are already hidden, because the selected role doesn't "
1221
+ "have the capability to display that menu. Grid displays menus which the "
1222
+ "current user has access to."
1223
+
1224
+ #: ../classes/personal-pro/class-wpfront-user-role-editor-menu-editor.php:576
1225
+ msgid "Fields"
1226
+ msgstr "Fields"
1227
+
1228
+ #: ../classes/personal-pro/class-wpfront-user-role-editor-menu-editor.php:578
1229
+ #: ../templates/personal-pro/menu-editor.php:33
1230
+ msgid "Override Role"
1231
+ msgstr "Override Role"
1232
+
1233
+ #: ../classes/personal-pro/class-wpfront-user-role-editor-menu-editor.php:580
1234
+ msgid "The role you want to override."
1235
+ msgstr "The role you want to override."
1236
+
1237
+ #: ../classes/personal-pro/class-wpfront-user-role-editor-menu-editor.php:583
1238
+ #: ../templates/personal-pro/menu-editor.php:50
1239
+ msgid "Override Type"
1240
+ msgstr "Override Type"
1241
+
1242
+ #: ../classes/personal-pro/class-wpfront-user-role-editor-menu-editor.php:585
1243
+ msgid ""
1244
+ "Soft - Pages may be available through directly typing the URL. Hard - Even "
1245
+ "URLs will be blocked."
1246
+ msgstr ""
1247
+ "Soft - Pages may be available through directly typing the URL. Hard - Even "
1248
+ "URLs will be blocked."
1249
+
1250
+ #: ../classes/personal-pro/class-wpfront-user-role-editor-menu-editor.php:588
1251
+ #: ../templates/personal-pro/menu-editor.php:61
1252
+ msgid "Hide New Menus"
1253
+ msgstr "Hide New Menus"
1254
+
1255
+ #: ../classes/personal-pro/class-wpfront-user-role-editor-menu-editor.php:590
1256
+ msgid "Allow you to hide future menus."
1257
+ msgstr "Allow you to hide future menus."
1258
+
1259
+ #: ../classes/personal-pro/class-wpfront-user-role-editor-menu-editor.php:593
1260
+ #: ../templates/personal-pro/menu-editor.php:69
1261
+ msgid "Disable For Secondary Role"
1262
+ msgstr "Disable For Secondary Role"
1263
+
1264
+ #: ../classes/personal-pro/class-wpfront-user-role-editor-menu-editor.php:595
1265
+ msgid "Disables menu settings while the selected role is a secondary role."
1266
+ msgstr "Disables menu settings while the selected role is a secondary role."
1267
+
1268
+ #: ../classes/personal-pro/class-wpfront-user-role-editor-menu-editor.php:600
1269
+ msgid "Restore Default"
1270
+ msgstr "Restore Default"
1271
+
1272
+ #: ../classes/personal-pro/class-wpfront-user-role-editor-menu-editor.php:602
1273
+ msgid ""
1274
+ "Select \"Restore default\" from the \"Copy from\" drop down and click apply."
1275
+ msgstr ""
1276
+ "Select \"Restore default\" from the \"Copy from\" drop down and click apply."
1277
+
1278
+ #: ../classes/personal-pro/class-wpfront-user-role-editor-menu-editor.php:611
1279
+ msgid "Documentation on Menu Editor"
1280
+ msgstr "Documentation on Menu Editor"
1281
+
1282
+ #: ../classes/personal-pro/class-wpfront-user-role-editor-personal-pro.php:65
1283
+ #: ../templates/personal-pro/menu-editor.php:3
1284
+ msgid "Menu Editor"
1285
+ msgstr "Menu Editor"
1286
+
1287
+ #: ../classes/personal-pro/class-wpfront-user-role-editor-personal-pro.php:66
1288
+ #: ../templates/personal-pro/export-roles.php:3
1289
+ msgid "Export Roles"
1290
+ msgstr "Export Roles"
1291
+
1292
+ #: ../classes/personal-pro/class-wpfront-user-role-editor-personal-pro.php:66
1293
+ msgid "Export"
1294
+ msgstr "Export"
1295
+
1296
+ #: ../classes/personal-pro/class-wpfront-user-role-editor-personal-pro.php:67
1297
+ #: ../templates/personal-pro/import-roles.php:3
1298
+ #: ../templates/personal-pro/import-roles.php:82
1299
+ msgid "Import Roles"
1300
+ msgstr "Import Roles"
1301
+
1302
+ #: ../classes/personal-pro/class-wpfront-user-role-editor-personal-pro.php:67
1303
+ msgid "Import"
1304
+ msgstr "Import"
1305
+
1306
+ #: ../classes/personal-pro/class-wpfront-user-role-editor-personal-pro.php:87
1307
+ #, php-format
1308
+ msgid "%s license not activated."
1309
+ msgstr "%s license not activated."
1310
+
1311
+ #: ../classes/personal-pro/class-wpfront-user-role-editor-post-type-permissions.php:44
1312
+ #: ../classes/personal-pro/class-wpfront-user-role-editor-post-type-permissions.php:269
1313
+ msgid "Role Permissions"
1314
+ msgstr "Role Permissions"
1315
+
1316
+ #: ../templates/add-edit-role.php:35
1317
+ msgid "Edit Role"
1318
+ msgstr "Edit Role"
1319
+
1320
+ #: ../templates/add-edit-role.php:45
1321
+ msgid "This role already exists in this site."
1322
+ msgstr "This role already exists in this site."
1323
+
1324
+ #: ../templates/add-edit-role.php:53
1325
+ msgid "There was an unexpected error while performing this action."
1326
+ msgstr "There was an unexpected error while performing this action."
1327
+
1328
+ #: ../templates/add-edit-role.php:60
1329
+ msgid "Create a brand new role and add it to this site."
1330
+ msgstr "Create a brand new role and add it to this site."
1331
+
1332
+ #: ../templates/add-edit-role.php:71 ../templates/add-edit-role.php:81
1333
+ msgid "required"
1334
+ msgstr "required"
1335
+
1336
+ #: ../templates/add-edit-role.php:100
1337
+ #: ../templates/personal-pro/menu-editor.php:83
1338
+ msgid "Copy from"
1339
+ msgstr "Copy from"
1340
+
1341
+ #: ../templates/add-edit-role.php:112
1342
+ msgid "Select None"
1343
+ msgstr "Select None"
1344
+
1345
+ #: ../templates/add-edit-role.php:154
1346
+ msgid "Update Role"
1347
+ msgstr "Update Role"
1348
+
1349
+ #: ../templates/assign-roles.php:62
1350
+ msgid "User"
1351
+ msgstr "User"
1352
+
1353
+ #: ../templates/assign-roles.php:103
1354
+ msgid "From Primary Role"
1355
+ msgstr "From Primary Role"
1356
+
1357
+ #: ../templates/business-pro/sync-roles.php:25
1358
+ msgid "Step 1: Select the source site"
1359
+ msgstr "Step 1: Select the source site"
1360
+
1361
+ #: ../templates/business-pro/sync-roles.php:34
1362
+ #: ../templates/business-pro/sync-roles.php:84
1363
+ msgid "Search Sites"
1364
+ msgstr "Search Sites"
1365
+
1366
+ #: ../templates/business-pro/sync-roles.php:40
1367
+ #: ../templates/business-pro/sync-roles.php:95
1368
+ #: ../templates/business-pro/sync-roles.php:245
1369
+ msgid "Next Step"
1370
+ msgstr "Next Step"
1371
+
1372
+ #: ../templates/business-pro/sync-roles.php:70
1373
+ msgid "Step 2: Select destination sites"
1374
+ msgstr "Step 2: Select destination sites"
1375
+
1376
+ #: ../templates/business-pro/sync-roles.php:74
1377
+ #: ../templates/business-pro/sync-roles.php:269
1378
+ msgid "All Sites"
1379
+ msgstr "All Sites"
1380
+
1381
+ #: ../templates/business-pro/sync-roles.php:77
1382
+ msgid "Selected Sites"
1383
+ msgstr "Selected Sites"
1384
+
1385
+ #: ../templates/business-pro/sync-roles.php:216
1386
+ msgid "Step 3: Choose settings"
1387
+ msgstr "Step 3: Choose settings"
1388
+
1389
+ #: ../templates/business-pro/sync-roles.php:255
1390
+ msgid "Step 4: Confirm and Sync"
1391
+ msgstr "Step 4: Confirm and Sync"
1392
+
1393
+ #: ../templates/business-pro/sync-roles.php:260
1394
+ msgid "Source: "
1395
+ msgstr "Source: "
1396
+
1397
+ #: ../templates/business-pro/sync-roles.php:268
1398
+ msgid "Destination: "
1399
+ msgstr "Destination: "
1400
+
1401
+ #: ../templates/business-pro/sync-roles.php:269
1402
+ msgid "Selected sites"
1403
+ msgstr "Selected sites"
1404
+
1405
+ #: ../templates/business-pro/sync-roles.php:269
1406
+ #, php-format
1407
+ msgid "%s site(s) selected"
1408
+ msgstr "%s site(s) selected"
1409
+
1410
+ #: ../templates/business-pro/sync-roles.php:274
1411
+ msgid "Add roles existing only in source: "
1412
+ msgstr "Add roles existing only in source: "
1413
+
1414
+ #: ../templates/business-pro/sync-roles.php:275
1415
+ #: ../templates/business-pro/sync-roles.php:281
1416
+ #: ../templates/business-pro/sync-roles.php:287
1417
+ #: ../templates/business-pro/sync-roles.php:293
1418
+ msgid "Yes"
1419
+ msgstr "Yes"
1420
+
1421
+ #: ../templates/business-pro/sync-roles.php:275
1422
+ #: ../templates/business-pro/sync-roles.php:281
1423
+ #: ../templates/business-pro/sync-roles.php:287
1424
+ #: ../templates/business-pro/sync-roles.php:293
1425
+ msgid "No"
1426
+ msgstr "No"
1427
+
1428
+ #: ../templates/business-pro/sync-roles.php:280
1429
+ msgid "Overwrite existing roles: "
1430
+ msgstr "Overwrite existing roles: "
1431
+
1432
+ #: ../templates/business-pro/sync-roles.php:286
1433
+ msgid "Remove roles existing only in destination: "
1434
+ msgstr "Remove roles existing only in destination: "
1435
+
1436
+ #: ../templates/business-pro/sync-roles.php:292
1437
+ msgid "Update new user default role: "
1438
+ msgstr "Update new user default role: "
1439
+
1440
+ #: ../templates/business-pro/sync-roles.php:344
1441
+ msgid "SUCCESS"
1442
+ msgstr "SUCCESS"
1443
+
1444
+ #: ../templates/business-pro/sync-roles.php:347
1445
+ msgid "FAIL"
1446
+ msgstr "FAIL"
1447
+
1448
+ #: ../templates/business-pro/sync-roles.php:370
1449
+ msgid "Synching site"
1450
+ msgstr "Synching site"
1451
+
1452
+ #: ../templates/delete-role.php:37
1453
+ msgid "Delete Roles"
1454
+ msgstr "Delete Roles"
1455
+
1456
+ #: ../templates/delete-role.php:38
1457
+ msgid "You have specified these roles for deletion"
1458
+ msgstr "You have specified these roles for deletion"
1459
+
1460
+ #: ../templates/delete-role.php:45
1461
+ msgid "Role"
1462
+ msgstr "Role"
1463
+
1464
+ #: ../templates/delete-role.php:57
1465
+ msgid "Confirm Deletion"
1466
+ msgstr "Confirm Deletion"
1467
+
1468
+ #: ../templates/go-pro.php:36
1469
+ msgid "WPFront User Role Editor Pro"
1470
+ msgstr "WPFront User Role Editor Pro"
1471
+
1472
+ #: ../templates/go-pro.php:59
1473
+ msgid "License Key"
1474
+ msgstr "License Key"
1475
+
1476
+ #: ../templates/go-pro.php:68 ../templates/go-pro.php:69
1477
+ msgid "Deactivate"
1478
+ msgstr "Deactivate"
1479
+
1480
+ #: ../templates/go-pro.php:76
1481
+ msgid "License Expires"
1482
+ msgstr "License Expires"
1483
+
1484
+ #: ../templates/options-template.php:32
1485
+ msgid "WPFront User Role Editor Settings"
1486
+ msgstr "WPFront User Role Editor Settings"
1487
+
1488
+ #: ../templates/personal-pro/export-roles.php:7
1489
+ msgid "Select the roles to be uploaded"
1490
+ msgstr "Select the roles to be uploaded"
1491
+
1492
+ #: ../templates/personal-pro/export-roles.php:34
1493
+ msgid "Download Export File"
1494
+ msgstr "Download Export File"
1495
+
1496
+ #: ../templates/personal-pro/import-roles.php:15
1497
+ msgid "ERROR:"
1498
+ msgstr "ERROR:"
1499
+
1500
+ #: ../templates/personal-pro/import-roles.php:24
1501
+ msgid ""
1502
+ "Choose a WPFront User Role Editor export file (.xml) to upload, then click "
1503
+ "Upload file and import."
1504
+ msgstr ""
1505
+ "Choose a WPFront User Role Editor export file (.xml) to upload, then click "
1506
+ "Upload file and import."
1507
+
1508
+ #: ../templates/personal-pro/import-roles.php:33
1509
+ #, php-format
1510
+ msgid "Roles exported from %s on %s by user %s."
1511
+ msgstr "Roles exported from %s on %s by user %s."
1512
+
1513
+ #: ../templates/personal-pro/import-roles.php:33
1514
+ msgid "UTC"
1515
+ msgstr "UTC"
1516
+
1517
+ #: ../templates/personal-pro/import-roles.php:40
1518
+ msgid "Zero roles found in this export file to import."
1519
+ msgstr "Zero roles found in this export file to import."
1520
+
1521
+ #: ../templates/personal-pro/import-roles.php:46
1522
+ msgid "Select roles to import"
1523
+ msgstr "Select roles to import"
1524
+
1525
+ #: ../templates/personal-pro/import-roles.php:75
1526
+ msgid ""
1527
+ "* These roles already exist in this site. Importing them will overwrite "
1528
+ "existing roles."
1529
+ msgstr ""
1530
+ "* These roles already exist in this site. Importing them will overwrite "
1531
+ "existing roles."
1532
+
1533
+ #: ../templates/personal-pro/menu-editor.php:20
1534
+ msgid ""
1535
+ "Select a role below to edit menu for that role. Deselect a menu from the "
1536
+ "grid to remove that menu. Disabled menu items are already hidden, because "
1537
+ "the selected role doesn't have the capability to display that menu. Grid "
1538
+ "displays menus which the current user has access to. "
1539
+ msgstr ""
1540
+ "Select a role below to edit menu for that role. Deselect a menu from the "
1541
+ "grid to remove that menu. Disabled menu items are already hidden, because "
1542
+ "the selected role doesn't have the capability to display that menu. Grid "
1543
+ "displays menus which the current user has access to. "
1544
+
1545
+ #: ../templates/personal-pro/menu-editor.php:54
1546
+ msgid "Soft"
1547
+ msgstr "Soft"
1548
+
1549
+ #: ../templates/personal-pro/menu-editor.php:55
1550
+ msgid "Hard"
1551
+ msgstr "Hard"
1552
+
1553
+ #: ../templates/personal-pro/menu-editor.php:86
1554
+ msgid "Restore default"
1555
+ msgstr "Restore default"
1556
+
1557
+ #: ../templates/personal-pro/menu-editor.php:99
1558
+ msgid "Hide deselected item(s)"
1559
+ msgstr "Hide deselected item(s)"
1560
+
1561
+ #: ../templates/personal-pro/menu-editor.php:104
1562
+ msgid "Hide disabled item(s)"
1563
+ msgstr "Hide disabled item(s)"
1564
+
1565
+ #: ../templates/personal-pro/menu-editor.php:110
1566
+ msgid "Has Capability"
1567
+ msgstr "Has Capability"
1568
+
1569
+ #: ../templates/personal-pro/menu-editor.php:115
1570
+ msgid "No Capability"
1571
+ msgstr "No Capability"
1572
+
1573
+ #: ../templates/personal-pro/menu-editor.php:135
1574
+ msgid "Capability"
1575
+ msgstr "Capability"
1576
+
1577
+ #: ../templates/personal-pro/menu-editor.php:138
1578
+ msgid "Menu Slug"
1579
+ msgstr "Menu Slug"
1580
+
1581
+ #: ../templates/personal-pro/post-type-permissions.php:19
1582
+ msgid "Enable Role Permissions"
1583
+ msgstr "Enable Role Permissions"
1584
+
1585
+ #: ../templates/personal-pro/post-type-permissions.php:27
1586
+ msgid "Read"
1587
+ msgstr "Read"
1588
+
1589
+ #: ../templates/restore-role.php:48
1590
+ msgid "Cancel"
1591
+ msgstr "Cancel"
1592
+
1593
+ #: ../templates/restore-role.php:49
1594
+ msgid "Confirm"
1595
+ msgstr "Confirm"
1596
+
1597
+ #: ../templates/restore-role.php:57
1598
+ msgid "Restored"
1599
+ msgstr "Restored"
1600
+
1601
+ #: ../templates/restore-role.php:101
1602
+ msgid "Unexpected error / Timed out"
1603
+ msgstr "Unexpected error / Timed out"
1604
+
1605
+ #~ msgid "Settings Description"
1606
+ #~ msgstr "Settings Description"
1607
+
1608
+ #~ msgid "Plugin FAQ"
1609
+ #~ msgstr "Plugin FAQ"
1610
+
1611
+ #~ msgid "Feature Request"
1612
+ #~ msgstr "Feature Request"
1613
+
1614
+ #~ msgid "Report Bug"
1615
+ #~ msgstr "Report Bug"
1616
+
1617
+ #~ msgid "Buy me a Beer or Coffee"
1618
+ #~ msgstr "Buy me a Beer or Coffee"
1619
+
1620
+ #~ msgid "Add Role Capabilities"
1621
+ #~ msgstr "Add Role Capabilities"
1622
+
1623
+ #~ msgid "User Role Editor"
1624
+ #~ msgstr "User Role Editor"
1625
+
1626
+ #~ msgid "Enabled"
1627
+ #~ msgstr "Enabled"
1628
+
1629
+ #~ msgid "Position"
1630
+ #~ msgstr "Position"
1631
+
1632
+ #~ msgid "Bar Height"
1633
+ #~ msgstr "Bar Height"
1634
+
1635
+ #~ msgid "Message Text"
1636
+ #~ msgstr "Message Text"
1637
+
1638
+ #~ msgid "Display After"
1639
+ #~ msgstr "Display After"
1640
+
1641
+ #~ msgid "Animation Duration"
1642
+ #~ msgstr "Animation Duration"
1643
+
1644
+ #~ msgid "Display Close Button"
1645
+ #~ msgstr "Display Close Button"
1646
+
1647
+ #~ msgid "Auto Close After"
1648
+ #~ msgstr "Auto Close After"
1649
+
1650
+ #~ msgid "Display Button"
1651
+ #~ msgstr "Display Button"
1652
+
1653
+ #~ msgid "Button Text"
1654
+ #~ msgstr "Button Text"
1655
+
1656
+ #~ msgid "Open URL:"
1657
+ #~ msgstr "Open URL:"
1658
+
1659
+ #~ msgid "Open URL in new tab/window"
1660
+ #~ msgstr "Open URL in new tab/window"
1661
+
1662
+ #~ msgid "Execute JavaScript"
1663
+ #~ msgstr "Execute JavaScript"
1664
+
1665
+ #~ msgid "Close Bar on Button Click"
1666
+ #~ msgstr "Close Bar on Button Click"
1667
+
1668
+ #~ msgid "Display Shadow"
1669
+ #~ msgstr "Display Shadow"
1670
+
1671
+ #~ msgid "Fixed at Position"
1672
+ #~ msgstr "Fixed at Position"
1673
+
1674
+ #~ msgid "Message Text Color"
1675
+ #~ msgstr "Message Text Color"
1676
+
1677
+ #~ msgid "From Color"
1678
+ #~ msgstr "From Color"
1679
+
1680
+ #~ msgid "To Color"
1681
+ #~ msgstr "To Color"
1682
+
1683
+ #~ msgid "Button Text Color"
1684
+ #~ msgstr "Button Text Color"
1685
+
1686
+ #~ msgid "Display on Pages"
1687
+ #~ msgstr "Display on Pages"
1688
+
1689
+ #~ msgid "Display Reopen Button"
1690
+ #~ msgstr "Display Reopen Button"
1691
+
1692
+ #~ msgid "Reopen Button Color"
1693
+ #~ msgstr "Reopen Button Color"
1694
+
1695
+ #~ msgid "Keep Closed"
1696
+ #~ msgstr "Keep Closed"
1697
+
1698
+ #~ msgid "Keep Closed For"
1699
+ #~ msgstr "Keep Closed For"
1700
+
1701
+ #~ msgid "Position Offset"
1702
+ #~ msgstr "Position Offset"
1703
+
1704
+ #~ msgid "Close Button Color"
1705
+ #~ msgstr "Close Button Color"
1706
+
1707
+ #~ msgid "WPFront Notification Bar"
1708
+ #~ msgstr "WPFront Notification Bar"
1709
+
1710
+ #~ msgid "Notification Bar"
1711
+ #~ msgstr "Notification Bar"
1712
+
1713
+ #~ msgid "[Page]"
1714
+ #~ msgstr "[Page]"
1715
+
1716
+ #~ msgid "Home"
1717
+ #~ msgstr "Home"
1718
+
1719
+ #~ msgid "[Post]"
1720
+ #~ msgstr "[Post]"
1721
+
1722
+ #~ msgid "Top"
1723
+ #~ msgstr "Top"
1724
+
1725
+ #~ msgid "Bottom"
1726
+ #~ msgstr "Bottom"
1727
+
1728
+ #~ msgid "[Sticky Bar, bar will stay at position regardless of scrolling.]"
1729
+ #~ msgstr "[Sticky Bar, bar will stay at position regardless of scrolling.]"
1730
+
1731
+ #~ msgid "px"
1732
+ #~ msgstr "px"
1733
+
1734
+ #~ msgid "Set 0px to auto fit contents."
1735
+ #~ msgstr "Set 0px to auto fit contents."
1736
+
1737
+ #~ msgid ""
1738
+ #~ "(Top bar only) If you find the bar overlapping, try increasing this "
1739
+ #~ "value. (eg. WordPress 3.8 Twenty Fourteen theme, set 48px)"
1740
+ #~ msgstr ""
1741
+ #~ "(Top bar only) If you find the bar overlapping, try increasing this "
1742
+ #~ "value. (eg. WordPress 3.8 Twenty Fourteen theme, set 48px)"
1743
+
1744
+ #~ msgid "second(s)"
1745
+ #~ msgstr "second(s)"
1746
+
1747
+ #~ msgid "Set 0 second(s) to display immediately."
1748
+ #~ msgstr "Set 0 second(s) to display immediately."
1749
+
1750
+ #~ msgid "Set 0 second(s) for no animation."
1751
+ #~ msgstr "Set 0 second(s) for no animation."
1752
+
1753
+ #~ msgid "[Displays a close button at the top right corner of the bar.]"
1754
+ #~ msgstr "[Displays a close button at the top right corner of the bar.]"
1755
+
1756
+ #~ msgid "Set 0 second(s) to disable auto close."
1757
+ #~ msgstr "Set 0 second(s) to disable auto close."
1758
+
1759
+ #~ msgid "A reopen button will be displayed after the bar is closed."
1760
+ #~ msgstr "A reopen button will be displayed after the bar is closed."
1761
+
1762
+ #~ msgid "Once closed, bar will display closed on other pages."
1763
+ #~ msgstr "Once closed, bar will display closed on other pages."
1764
+
1765
+ #~ msgid "day(s)"
1766
+ #~ msgstr "day(s)"
1767
+
1768
+ #~ msgid ""
1769
+ #~ "Bar will be kept closed for the number of days specified from last closed "
1770
+ #~ "date."
1771
+ #~ msgstr ""
1772
+ #~ "Bar will be kept closed for the number of days specified from last closed "
1773
+ #~ "date."
1774
+
1775
+ #~ msgid "Content"
1776
+ #~ msgstr "Content"
1777
+
1778
+ #~ msgid "[HTML tags are allowed. e.g. Add <br /> for break.]"
1779
+ #~ msgstr "[HTML tags are allowed. e.g. Add <br /> for break.]"
1780
+
1781
+ #~ msgid "[Displays a button next to the message.]"
1782
+ #~ msgstr "[Displays a button next to the message.]"
1783
+
1784
+ #~ msgid "Filter"
1785
+ #~ msgstr "Filter"
1786
+
1787
+ #~ msgid "Only in landing page."
1788
+ #~ msgstr "Only in landing page."
1789
+
1790
+ #~ msgid "Include in following pages"
1791
+ #~ msgstr "Include in following pages"
1792
+
1793
+ #~ msgid "Exclude in following pages"
1794
+ #~ msgstr "Exclude in following pages"
1795
+
1796
+ #~ msgid "Color"
1797
+ #~ msgstr "Color"
1798
+
1799
+ #~ msgid "Bar Color"
1800
+ #~ msgstr "Bar Color"
1801
+
1802
+ #~ msgid "[Select two different colors to create a gradient.]"
1803
+ #~ msgstr "[Select two different colors to create a gradient.]"
1804
+
1805
+ #~ msgid "Button Color"
1806
+ #~ msgstr "Button Color"
1807
+
1808
+ #~ msgid "[Normal, Hover, X]"
1809
+ #~ msgstr "[Normal, Hover, X]"
1810
+
1811
+ #~ msgid "CSS"
1812
+ #~ msgstr "CSS"
1813
+
1814
+ #~ msgid "Plugin Ideas"
1815
+ #~ msgstr "Plugin Ideas"
1816
+
1817
+ #~ msgid "Animate Display"
1818
+ #~ msgstr "Animate Display"
1819
+
1820
+ #~ msgid "Animate Display Delay"
1821
+ #~ msgstr "Animate Display Delay"
license.txt CHANGED
@@ -1,621 +1,621 @@
1
- GNU GENERAL PUBLIC LICENSE
2
- Version 3, 29 June 2007
3
-
4
- Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/>
5
- Everyone is permitted to copy and distribute verbatim copies
6
- of this license document, but changing it is not allowed.
7
-
8
- Preamble
9
-
10
- The GNU General Public License is a free, copyleft license for
11
- software and other kinds of works.
12
-
13
- The licenses for most software and other practical works are designed
14
- to take away your freedom to share and change the works. By contrast,
15
- the GNU General Public License is intended to guarantee your freedom to
16
- share and change all versions of a program--to make sure it remains free
17
- software for all its users. We, the Free Software Foundation, use the
18
- GNU General Public License for most of our software; it applies also to
19
- any other work released this way by its authors. You can apply it to
20
- your programs, too.
21
-
22
- When we speak of free software, we are referring to freedom, not
23
- price. Our General Public Licenses are designed to make sure that you
24
- have the freedom to distribute copies of free software (and charge for
25
- them if you wish), that you receive source code or can get it if you
26
- want it, that you can change the software or use pieces of it in new
27
- free programs, and that you know you can do these things.
28
-
29
- To protect your rights, we need to prevent others from denying you
30
- these rights or asking you to surrender the rights. Therefore, you have
31
- certain responsibilities if you distribute copies of the software, or if
32
- you modify it: responsibilities to respect the freedom of others.
33
-
34
- For example, if you distribute copies of such a program, whether
35
- gratis or for a fee, you must pass on to the recipients the same
36
- freedoms that you received. You must make sure that they, too, receive
37
- or can get the source code. And you must show them these terms so they
38
- know their rights.
39
-
40
- Developers that use the GNU GPL protect your rights with two steps:
41
- (1) assert copyright on the software, and (2) offer you this License
42
- giving you legal permission to copy, distribute and/or modify it.
43
-
44
- For the developers' and authors' protection, the GPL clearly explains
45
- that there is no warranty for this free software. For both users' and
46
- authors' sake, the GPL requires that modified versions be marked as
47
- changed, so that their problems will not be attributed erroneously to
48
- authors of previous versions.
49
-
50
- Some devices are designed to deny users access to install or run
51
- modified versions of the software inside them, although the manufacturer
52
- can do so. This is fundamentally incompatible with the aim of
53
- protecting users' freedom to change the software. The systematic
54
- pattern of such abuse occurs in the area of products for individuals to
55
- use, which is precisely where it is most unacceptable. Therefore, we
56
- have designed this version of the GPL to prohibit the practice for those
57
- products. If such problems arise substantially in other domains, we
58
- stand ready to extend this provision to those domains in future versions
59
- of the GPL, as needed to protect the freedom of users.
60
-
61
- Finally, every program is threatened constantly by software patents.
62
- States should not allow patents to restrict development and use of
63
- software on general-purpose computers, but in those that do, we wish to
64
- avoid the special danger that patents applied to a free program could
65
- make it effectively proprietary. To prevent this, the GPL assures that
66
- patents cannot be used to render the program non-free.
67
-
68
- The precise terms and conditions for copying, distribution and
69
- modification follow.
70
-
71
- TERMS AND CONDITIONS
72
-
73
- 0. Definitions.
74
-
75
- "This License" refers to version 3 of the GNU General Public License.
76
-
77
- "Copyright" also means copyright-like laws that apply to other kinds of
78
- works, such as semiconductor masks.
79
-
80
- "The Program" refers to any copyrightable work licensed under this
81
- License. Each licensee is addressed as "you". "Licensees" and
82
- "recipients" may be individuals or organizations.
83
-
84
- To "modify" a work means to copy from or adapt all or part of the work
85
- in a fashion requiring copyright permission, other than the making of an
86
- exact copy. The resulting work is called a "modified version" of the
87
- earlier work or a work "based on" the earlier work.
88
-
89
- A "covered work" means either the unmodified Program or a work based
90
- on the Program.
91
-
92
- To "propagate" a work means to do anything with it that, without
93
- permission, would make you directly or secondarily liable for
94
- infringement under applicable copyright law, except executing it on a
95
- computer or modifying a private copy. Propagation includes copying,
96
- distribution (with or without modification), making available to the
97
- public, and in some countries other activities as well.
98
-
99
- To "convey" a work means any kind of propagation that enables other
100
- parties to make or receive copies. Mere interaction with a user through
101
- a computer network, with no transfer of a copy, is not conveying.
102
-
103
- An interactive user interface displays "Appropriate Legal Notices"
104
- to the extent that it includes a convenient and prominently visible
105
- feature that (1) displays an appropriate copyright notice, and (2)
106
- tells the user that there is no warranty for the work (except to the
107
- extent that warranties are provided), that licensees may convey the
108
- work under this License, and how to view a copy of this License. If
109
- the interface presents a list of user commands or options, such as a
110
- menu, a prominent item in the list meets this criterion.
111
-
112
- 1. Source Code.
113
-
114
- The "source code" for a work means the preferred form of the work
115
- for making modifications to it. "Object code" means any non-source
116
- form of a work.
117
-
118
- A "Standard Interface" means an interface that either is an official
119
- standard defined by a recognized standards body, or, in the case of
120
- interfaces specified for a particular programming language, one that
121
- is widely used among developers working in that language.
122
-
123
- The "System Libraries" of an executable work include anything, other
124
- than the work as a whole, that (a) is included in the normal form of
125
- packaging a Major Component, but which is not part of that Major
126
- Component, and (b) serves only to enable use of the work with that
127
- Major Component, or to implement a Standard Interface for which an
128
- implementation is available to the public in source code form. A
129
- "Major Component", in this context, means a major essential component
130
- (kernel, window system, and so on) of the specific operating system
131
- (if any) on which the executable work runs, or a compiler used to
132
- produce the work, or an object code interpreter used to run it.
133
-
134
- The "Corresponding Source" for a work in object code form means all
135
- the source code needed to generate, install, and (for an executable
136
- work) run the object code and to modify the work, including scripts to
137
- control those activities. However, it does not include the work's
138
- System Libraries, or general-purpose tools or generally available free
139
- programs which are used unmodified in performing those activities but
140
- which are not part of the work. For example, Corresponding Source
141
- includes interface definition files associated with source files for
142
- the work, and the source code for shared libraries and dynamically
143
- linked subprograms that the work is specifically designed to require,
144
- such as by intimate data communication or control flow between those
145
- subprograms and other parts of the work.
146
-
147
- The Corresponding Source need not include anything that users
148
- can regenerate automatically from other parts of the Corresponding
149
- Source.
150
-
151
- The Corresponding Source for a work in source code form is that
152
- same work.
153
-
154
- 2. Basic Permissions.
155
-
156
- All rights granted under this License are granted for the term of
157
- copyright on the Program, and are irrevocable provided the stated
158
- conditions are met. This License explicitly affirms your unlimited
159
- permission to run the unmodified Program. The output from running a
160
- covered work is covered by this License only if the output, given its
161
- content, constitutes a covered work. This License acknowledges your
162
- rights of fair use or other equivalent, as provided by copyright law.
163
-
164
- You may make, run and propagate covered works that you do not
165
- convey, without conditions so long as your license otherwise remains
166
- in force. You may convey covered works to others for the sole purpose
167
- of having them make modifications exclusively for you, or provide you
168
- with facilities for running those works, provided that you comply with
169
- the terms of this License in conveying all material for which you do
170
- not control copyright. Those thus making or running the covered works
171
- for you must do so exclusively on your behalf, under your direction
172
- and control, on terms that prohibit them from making any copies of
173
- your copyrighted material outside their relationship with you.
174
-
175
- Conveying under any other circumstances is permitted solely under
176
- the conditions stated below. Sublicensing is not allowed; section 10
177
- makes it unnecessary.
178
-
179
- 3. Protecting Users' Legal Rights From Anti-Circumvention Law.
180
-
181
- No covered work shall be deemed part of an effective technological
182
- measure under any applicable law fulfilling obligations under article
183
- 11 of the WIPO copyright treaty adopted on 20 December 1996, or
184
- similar laws prohibiting or restricting circumvention of such
185
- measures.
186
-
187
- When you convey a covered work, you waive any legal power to forbid
188
- circumvention of technological measures to the extent such circumvention
189
- is effected by exercising rights under this License with respect to
190
- the covered work, and you disclaim any intention to limit operation or
191
- modification of the work as a means of enforcing, against the work's
192
- users, your or third parties' legal rights to forbid circumvention of
193
- technological measures.
194
-
195
- 4. Conveying Verbatim Copies.
196
-
197
- You may convey verbatim copies of the Program's source code as you
198
- receive it, in any medium, provided that you conspicuously and
199
- appropriately publish on each copy an appropriate copyright notice;
200
- keep intact all notices stating that this License and any
201
- non-permissive terms added in accord with section 7 apply to the code;
202
- keep intact all notices of the absence of any warranty; and give all
203
- recipients a copy of this License along with the Program.
204
-
205
- You may charge any price or no price for each copy that you convey,
206
- and you may offer support or warranty protection for a fee.
207
-
208
- 5. Conveying Modified Source Versions.
209
-
210
- You may convey a work based on the Program, or the modifications to
211
- produce it from the Program, in the form of source code under the
212
- terms of section 4, provided that you also meet all of these conditions:
213
-
214
- a) The work must carry prominent notices stating that you modified
215
- it, and giving a relevant date.
216
-
217
- b) The work must carry prominent notices stating that it is
218
- released under this License and any conditions added under section
219
- 7. This requirement modifies the requirement in section 4 to
220
- "keep intact all notices".
221
-
222
- c) You must license the entire work, as a whole, under this
223
- License to anyone who comes into possession of a copy. This
224
- License will therefore apply, along with any applicable section 7
225
- additional terms, to the whole of the work, and all its parts,
226
- regardless of how they are packaged. This License gives no
227
- permission to license the work in any other way, but it does not
228
- invalidate such permission if you have separately received it.
229
-
230
- d) If the work has interactive user interfaces, each must display
231
- Appropriate Legal Notices; however, if the Program has interactive
232
- interfaces that do not display Appropriate Legal Notices, your
233
- work need not make them do so.
234
-
235
- A compilation of a covered work with other separate and independent
236
- works, which are not by their nature extensions of the covered work,
237
- and which are not combined with it such as to form a larger program,
238
- in or on a volume of a storage or distribution medium, is called an
239
- "aggregate" if the compilation and its resulting copyright are not
240
- used to limit the access or legal rights of the compilation's users
241
- beyond what the individual works permit. Inclusion of a covered work
242
- in an aggregate does not cause this License to apply to the other
243
- parts of the aggregate.
244
-
245
- 6. Conveying Non-Source Forms.
246
-
247
- You may convey a covered work in object code form under the terms
248
- of sections 4 and 5, provided that you also convey the
249
- machine-readable Corresponding Source under the terms of this License,
250
- in one of these ways:
251
-
252
- a) Convey the object code in, or embodied in, a physical product
253
- (including a physical distribution medium), accompanied by the
254
- Corresponding Source fixed on a durable physical medium
255
- customarily used for software interchange.
256
-
257
- b) Convey the object code in, or embodied in, a physical product
258
- (including a physical distribution medium), accompanied by a
259
- written offer, valid for at least three years and valid for as
260
- long as you offer spare parts or customer support for that product
261
- model, to give anyone who possesses the object code either (1) a
262
- copy of the Corresponding Source for all the software in the
263
- product that is covered by this License, on a durable physical
264
- medium customarily used for software interchange, for a price no
265
- more than your reasonable cost of physically performing this
266
- conveying of source, or (2) access to copy the
267
- Corresponding Source from a network server at no charge.
268
-
269
- c) Convey individual copies of the object code with a copy of the
270
- written offer to provide the Corresponding Source. This
271
- alternative is allowed only occasionally and noncommercially, and
272
- only if you received the object code with such an offer, in accord
273
- with subsection 6b.
274
-
275
- d) Convey the object code by offering access from a designated
276
- place (gratis or for a charge), and offer equivalent access to the
277
- Corresponding Source in the same way through the same place at no
278
- further charge. You need not require recipients to copy the
279
- Corresponding Source along with the object code. If the place to
280
- copy the object code is a network server, the Corresponding Source
281
- may be on a different server (operated by you or a third party)
282
- that supports equivalent copying facilities, provided you maintain
283
- clear directions next to the object code saying where to find the
284
- Corresponding Source. Regardless of what server hosts the
285
- Corresponding Source, you remain obligated to ensure that it is
286
- available for as long as needed to satisfy these requirements.
287
-
288
- e) Convey the object code using peer-to-peer transmission, provided
289
- you inform other peers where the object code and Corresponding
290
- Source of the work are being offered to the general public at no
291
- charge under subsection 6d.
292
-
293
- A separable portion of the object code, whose source code is excluded
294
- from the Corresponding Source as a System Library, need not be
295
- included in conveying the object code work.
296
-
297
- A "User Product" is either (1) a "consumer product", which means any
298
- tangible personal property which is normally used for personal, family,
299
- or household purposes, or (2) anything designed or sold for incorporation
300
- into a dwelling. In determining whether a product is a consumer product,
301
- doubtful cases shall be resolved in favor of coverage. For a particular
302
- product received by a particular user, "normally used" refers to a
303
- typical or common use of that class of product, regardless of the status
304
- of the particular user or of the way in which the particular user
305
- actually uses, or expects or is expected to use, the product. A product
306
- is a consumer product regardless of whether the product has substantial
307
- commercial, industrial or non-consumer uses, unless such uses represent
308
- the only significant mode of use of the product.
309
-
310
- "Installation Information" for a User Product means any methods,
311
- procedures, authorization keys, or other information required to install
312
- and execute modified versions of a covered work in that User Product from
313
- a modified version of its Corresponding Source. The information must
314
- suffice to ensure that the continued functioning of the modified object
315
- code is in no case prevented or interfered with solely because
316
- modification has been made.
317
-
318
- If you convey an object code work under this section in, or with, or
319
- specifically for use in, a User Product, and the conveying occurs as
320
- part of a transaction in which the right of possession and use of the
321
- User Product is transferred to the recipient in perpetuity or for a
322
- fixed term (regardless of how the transaction is characterized), the
323
- Corresponding Source conveyed under this section must be accompanied
324
- by the Installation Information. But this requirement does not apply
325
- if neither you nor any third party retains the ability to install
326
- modified object code on the User Product (for example, the work has
327
- been installed in ROM).
328
-
329
- The requirement to provide Installation Information does not include a
330
- requirement to continue to provide support service, warranty, or updates
331
- for a work that has been modified or installed by the recipient, or for
332
- the User Product in which it has been modified or installed. Access to a
333
- network may be denied when the modification itself materially and
334
- adversely affects the operation of the network or violates the rules and
335
- protocols for communication across the network.
336
-
337
- Corresponding Source conveyed, and Installation Information provided,
338
- in accord with this section must be in a format that is publicly
339
- documented (and with an implementation available to the public in
340
- source code form), and must require no special password or key for
341
- unpacking, reading or copying.
342
-
343
- 7. Additional Terms.
344
-
345
- "Additional permissions" are terms that supplement the terms of this
346
- License by making exceptions from one or more of its conditions.
347
- Additional permissions that are applicable to the entire Program shall
348
- be treated as though they were included in this License, to the extent
349
- that they are valid under applicable law. If additional permissions
350
- apply only to part of the Program, that part may be used separately
351
- under those permissions, but the entire Program remains governed by
352
- this License without regard to the additional permissions.
353
-
354
- When you convey a copy of a covered work, you may at your option
355
- remove any additional permissions from that copy, or from any part of
356
- it. (Additional permissions may be written to require their own
357
- removal in certain cases when you modify the work.) You may place
358
- additional permissions on material, added by you to a covered work,
359
- for which you have or can give appropriate copyright permission.
360
-
361
- Notwithstanding any other provision of this License, for material you
362
- add to a covered work, you may (if authorized by the copyright holders of
363
- that material) supplement the terms of this License with terms:
364
-
365
- a) Disclaiming warranty or limiting liability differently from the
366
- terms of sections 15 and 16 of this License; or
367
-
368
- b) Requiring preservation of specified reasonable legal notices or
369
- author attributions in that material or in the Appropriate Legal
370
- Notices displayed by works containing it; or
371
-
372
- c) Prohibiting misrepresentation of the origin of that material, or
373
- requiring that modified versions of such material be marked in
374
- reasonable ways as different from the original version; or
375
-
376
- d) Limiting the use for publicity purposes of names of licensors or
377
- authors of the material; or
378
-
379
- e) Declining to grant rights under trademark law for use of some
380
- trade names, trademarks, or service marks; or
381
-
382
- f) Requiring indemnification of licensors and authors of that
383
- material by anyone who conveys the material (or modified versions of
384
- it) with contractual assumptions of liability to the recipient, for
385
- any liability that these contractual assumptions directly impose on
386
- those licensors and authors.
387
-
388
- All other non-permissive additional terms are considered "further
389
- restrictions" within the meaning of section 10. If the Program as you
390
- received it, or any part of it, contains a notice stating that it is
391
- governed by this License along with a term that is a further
392
- restriction, you may remove that term. If a license document contains
393
- a further restriction but permits relicensing or conveying under this
394
- License, you may add to a covered work material governed by the terms
395
- of that license document, provided that the further restriction does
396
- not survive such relicensing or conveying.
397
-
398
- If you add terms to a covered work in accord with this section, you
399
- must place, in the relevant source files, a statement of the
400
- additional terms that apply to those files, or a notice indicating
401
- where to find the applicable terms.
402
-
403
- Additional terms, permissive or non-permissive, may be stated in the
404
- form of a separately written license, or stated as exceptions;
405
- the above requirements apply either way.
406
-
407
- 8. Termination.
408
-
409
- You may not propagate or modify a covered work except as expressly
410
- provided under this License. Any attempt otherwise to propagate or
411
- modify it is void, and will automatically terminate your rights under
412
- this License (including any patent licenses granted under the third
413
- paragraph of section 11).
414
-
415
- However, if you cease all violation of this License, then your
416
- license from a particular copyright holder is reinstated (a)
417
- provisionally, unless and until the copyright holder explicitly and
418
- finally terminates your license, and (b) permanently, if the copyright
419
- holder fails to notify you of the violation by some reasonable means
420
- prior to 60 days after the cessation.
421
-
422
- Moreover, your license from a particular copyright holder is
423
- reinstated permanently if the copyright holder notifies you of the
424
- violation by some reasonable means, this is the first time you have
425
- received notice of violation of this License (for any work) from that
426
- copyright holder, and you cure the violation prior to 30 days after
427
- your receipt of the notice.
428
-
429
- Termination of your rights under this section does not terminate the
430
- licenses of parties who have received copies or rights from you under
431
- this License. If your rights have been terminated and not permanently
432
- reinstated, you do not qualify to receive new licenses for the same
433
- material under section 10.
434
-
435
- 9. Acceptance Not Required for Having Copies.
436
-
437
- You are not required to accept this License in order to receive or
438
- run a copy of the Program. Ancillary propagation of a covered work
439
- occurring solely as a consequence of using peer-to-peer transmission
440
- to receive a copy likewise does not require acceptance. However,
441
- nothing other than this License grants you permission to propagate or
442
- modify any covered work. These actions infringe copyright if you do
443
- not accept this License. Therefore, by modifying or propagating a
444
- covered work, you indicate your acceptance of this License to do so.
445
-
446
- 10. Automatic Licensing of Downstream Recipients.
447
-
448
- Each time you convey a covered work, the recipient automatically
449
- receives a license from the original licensors, to run, modify and
450
- propagate that work, subject to this License. You are not responsible
451
- for enforcing compliance by third parties with this License.
452
-
453
- An "entity transaction" is a transaction transferring control of an
454
- organization, or substantially all assets of one, or subdividing an
455
- organization, or merging organizations. If propagation of a covered
456
- work results from an entity transaction, each party to that
457
- transaction who receives a copy of the work also receives whatever
458
- licenses to the work the party's predecessor in interest had or could
459
- give under the previous paragraph, plus a right to possession of the
460
- Corresponding Source of the work from the predecessor in interest, if
461
- the predecessor has it or can get it with reasonable efforts.
462
-
463
- You may not impose any further restrictions on the exercise of the
464
- rights granted or affirmed under this License. For example, you may
465
- not impose a license fee, royalty, or other charge for exercise of
466
- rights granted under this License, and you may not initiate litigation
467
- (including a cross-claim or counterclaim in a lawsuit) alleging that
468
- any patent claim is infringed by making, using, selling, offering for
469
- sale, or importing the Program or any portion of it.
470
-
471
- 11. Patents.
472
-
473
- A "contributor" is a copyright holder who authorizes use under this
474
- License of the Program or a work on which the Program is based. The
475
- work thus licensed is called the contributor's "contributor version".
476
-
477
- A contributor's "essential patent claims" are all patent claims
478
- owned or controlled by the contributor, whether already acquired or
479
- hereafter acquired, that would be infringed by some manner, permitted
480
- by this License, of making, using, or selling its contributor version,
481
- but do not include claims that would be infringed only as a
482
- consequence of further modification of the contributor version. For
483
- purposes of this definition, "control" includes the right to grant
484
- patent sublicenses in a manner consistent with the requirements of
485
- this License.
486
-
487
- Each contributor grants you a non-exclusive, worldwide, royalty-free
488
- patent license under the contributor's essential patent claims, to
489
- make, use, sell, offer for sale, import and otherwise run, modify and
490
- propagate the contents of its contributor version.
491
-
492
- In the following three paragraphs, a "patent license" is any express
493
- agreement or commitment, however denominated, not to enforce a patent
494
- (such as an express permission to practice a patent or covenant not to
495
- sue for patent infringement). To "grant" such a patent license to a
496
- party means to make such an agreement or commitment not to enforce a
497
- patent against the party.
498
-
499
- If you convey a covered work, knowingly relying on a patent license,
500
- and the Corresponding Source of the work is not available for anyone
501
- to copy, free of charge and under the terms of this License, through a
502
- publicly available network server or other readily accessible means,
503
- then you must either (1) cause the Corresponding Source to be so
504
- available, or (2) arrange to deprive yourself of the benefit of the
505
- patent license for this particular work, or (3) arrange, in a manner
506
- consistent with the requirements of this License, to extend the patent
507
- license to downstream recipients. "Knowingly relying" means you have
508
- actual knowledge that, but for the patent license, your conveying the
509
- covered work in a country, or your recipient's use of the covered work
510
- in a country, would infringe one or more identifiable patents in that
511
- country that you have reason to believe are valid.
512
-
513
- If, pursuant to or in connection with a single transaction or
514
- arrangement, you convey, or propagate by procuring conveyance of, a
515
- covered work, and grant a patent license to some of the parties
516
- receiving the covered work authorizing them to use, propagate, modify
517
- or convey a specific copy of the covered work, then the patent license
518
- you grant is automatically extended to all recipients of the covered
519
- work and works based on it.
520
-
521
- A patent license is "discriminatory" if it does not include within
522
- the scope of its coverage, prohibits the exercise of, or is
523
- conditioned on the non-exercise of one or more of the rights that are
524
- specifically granted under this License. You may not convey a covered
525
- work if you are a party to an arrangement with a third party that is
526
- in the business of distributing software, under which you make payment
527
- to the third party based on the extent of your activity of conveying
528
- the work, and under which the third party grants, to any of the
529
- parties who would receive the covered work from you, a discriminatory
530
- patent license (a) in connection with copies of the covered work
531
- conveyed by you (or copies made from those copies), or (b) primarily
532
- for and in connection with specific products or compilations that
533
- contain the covered work, unless you entered into that arrangement,
534
- or that patent license was granted, prior to 28 March 2007.
535
-
536
- Nothing in this License shall be construed as excluding or limiting
537
- any implied license or other defenses to infringement that may
538
- otherwise be available to you under applicable patent law.
539
-
540
- 12. No Surrender of Others' Freedom.
541
-
542
- If conditions are imposed on you (whether by court order, agreement or
543
- otherwise) that contradict the conditions of this License, they do not
544
- excuse you from the conditions of this License. If you cannot convey a
545
- covered work so as to satisfy simultaneously your obligations under this
546
- License and any other pertinent obligations, then as a consequence you may
547
- not convey it at all. For example, if you agree to terms that obligate you
548
- to collect a royalty for further conveying from those to whom you convey
549
- the Program, the only way you could satisfy both those terms and this
550
- License would be to refrain entirely from conveying the Program.
551
-
552
- 13. Use with the GNU Affero General Public License.
553
-
554
- Notwithstanding any other provision of this License, you have
555
- permission to link or combine any covered work with a work licensed
556
- under version 3 of the GNU Affero General Public License into a single
557
- combined work, and to convey the resulting work. The terms of this
558
- License will continue to apply to the part which is the covered work,
559
- but the special requirements of the GNU Affero General Public License,
560
- section 13, concerning interaction through a network will apply to the
561
- combination as such.
562
-
563
- 14. Revised Versions of this License.
564
-
565
- The Free Software Foundation may publish revised and/or new versions of
566
- the GNU General Public License from time to time. Such new versions will
567
- be similar in spirit to the present version, but may differ in detail to
568
- address new problems or concerns.
569
-
570
- Each version is given a distinguishing version number. If the
571
- Program specifies that a certain numbered version of the GNU General
572
- Public License "or any later version" applies to it, you have the
573
- option of following the terms and conditions either of that numbered
574
- version or of any later version published by the Free Software
575
- Foundation. If the Program does not specify a version number of the
576
- GNU General Public License, you may choose any version ever published
577
- by the Free Software Foundation.
578
-
579
- If the Program specifies that a proxy can decide which future
580
- versions of the GNU General Public License can be used, that proxy's
581
- public statement of acceptance of a version permanently authorizes you
582
- to choose that version for the Program.
583
-
584
- Later license versions may give you additional or different
585
- permissions. However, no additional obligations are imposed on any
586
- author or copyright holder as a result of your choosing to follow a
587
- later version.
588
-
589
- 15. Disclaimer of Warranty.
590
-
591
- THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
592
- APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
593
- HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
594
- OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
595
- THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
596
- PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
597
- IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
598
- ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
599
-
600
- 16. Limitation of Liability.
601
-
602
- IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
603
- WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
604
- THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
605
- GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
606
- USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
607
- DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
608
- PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
609
- EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
610
- SUCH DAMAGES.
611
-
612
- 17. Interpretation of Sections 15 and 16.
613
-
614
- If the disclaimer of warranty and limitation of liability provided
615
- above cannot be given local legal effect according to their terms,
616
- reviewing courts shall apply local law that most closely approximates
617
- an absolute waiver of all civil liability in connection with the
618
- Program, unless a warranty or assumption of liability accompanies a
619
- copy of the Program in return for a fee.
620
-
621
- END OF TERMS AND CONDITIONS
1
+ GNU GENERAL PUBLIC LICENSE
2
+ Version 3, 29 June 2007
3
+
4
+ Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/>
5
+ Everyone is permitted to copy and distribute verbatim copies
6
+ of this license document, but changing it is not allowed.
7
+
8
+ Preamble
9
+
10
+ The GNU General Public License is a free, copyleft license for
11
+ software and other kinds of works.
12
+
13
+ The licenses for most software and other practical works are designed
14
+ to take away your freedom to share and change the works. By contrast,
15
+ the GNU General Public License is intended to guarantee your freedom to
16
+ share and change all versions of a program--to make sure it remains free
17
+ software for all its users. We, the Free Software Foundation, use the
18
+ GNU General Public License for most of our software; it applies also to
19
+ any other work released this way by its authors. You can apply it to
20
+ your programs, too.
21
+
22
+ When we speak of free software, we are referring to freedom, not
23
+ price. Our General Public Licenses are designed to make sure that you
24
+ have the freedom to distribute copies of free software (and charge for
25
+ them if you wish), that you receive source code or can get it if you
26
+ want it, that you can change the software or use pieces of it in new
27
+ free programs, and that you know you can do these things.
28
+
29
+ To protect your rights, we need to prevent others from denying you
30
+ these rights or asking you to surrender the rights. Therefore, you have
31
+ certain responsibilities if you distribute copies of the software, or if
32
+ you modify it: responsibilities to respect the freedom of others.
33
+
34
+ For example, if you distribute copies of such a program, whether
35
+ gratis or for a fee, you must pass on to the recipients the same
36
+ freedoms that you received. You must make sure that they, too, receive
37
+ or can get the source code. And you must show them these terms so they
38
+ know their rights.
39
+
40
+ Developers that use the GNU GPL protect your rights with two steps:
41
+ (1) assert copyright on the software, and (2) offer you this License
42
+ giving you legal permission to copy, distribute and/or modify it.
43
+
44
+ For the developers' and authors' protection, the GPL clearly explains
45
+ that there is no warranty for this free software. For both users' and
46
+ authors' sake, the GPL requires that modified versions be marked as
47
+ changed, so that their problems will not be attributed erroneously to
48
+ authors of previous versions.
49
+
50
+ Some devices are designed to deny users access to install or run
51
+ modified versions of the software inside them, although the manufacturer
52
+ can do so. This is fundamentally incompatible with the aim of
53
+ protecting users' freedom to change the software. The systematic
54
+ pattern of such abuse occurs in the area of products for individuals to
55
+ use, which is precisely where it is most unacceptable. Therefore, we
56
+ have designed this version of the GPL to prohibit the practice for those
57
+ products. If such problems arise substantially in other domains, we
58
+ stand ready to extend this provision to those domains in future versions
59
+ of the GPL, as needed to protect the freedom of users.
60
+
61
+ Finally, every program is threatened constantly by software patents.
62
+ States should not allow patents to restrict development and use of
63
+ software on general-purpose computers, but in those that do, we wish to
64
+ avoid the special danger that patents applied to a free program could
65
+ make it effectively proprietary. To prevent this, the GPL assures that
66
+ patents cannot be used to render the program non-free.
67
+
68
+ The precise terms and conditions for copying, distribution and
69
+ modification follow.
70
+
71
+ TERMS AND CONDITIONS
72
+
73
+ 0. Definitions.
74
+
75
+ "This License" refers to version 3 of the GNU General Public License.
76
+
77
+ "Copyright" also means copyright-like laws that apply to other kinds of
78
+ works, such as semiconductor masks.
79
+
80
+ "The Program" refers to any copyrightable work licensed under this
81
+ License. Each licensee is addressed as "you". "Licensees" and
82
+ "recipients" may be individuals or organizations.
83
+
84
+ To "modify" a work means to copy from or adapt all or part of the work
85
+ in a fashion requiring copyright permission, other than the making of an
86
+ exact copy. The resulting work is called a "modified version" of the
87
+ earlier work or a work "based on" the earlier work.
88
+
89
+ A "covered work" means either the unmodified Program or a work based
90
+ on the Program.
91
+
92
+ To "propagate" a work means to do anything with it that, without
93
+ permission, would make you directly or secondarily liable for
94
+ infringement under applicable copyright law, except executing it on a
95
+ computer or modifying a private copy. Propagation includes copying,
96
+ distribution (with or without modification), making available to the
97
+ public, and in some countries other activities as well.
98
+
99
+ To "convey" a work means any kind of propagation that enables other
100
+ parties to make or receive copies. Mere interaction with a user through
101
+ a computer network, with no transfer of a copy, is not conveying.
102
+
103
+ An interactive user interface displays "Appropriate Legal Notices"
104
+ to the extent that it includes a convenient and prominently visible
105
+ feature that (1) displays an appropriate copyright notice, and (2)
106
+ tells the user that there is no warranty for the work (except to the
107
+ extent that warranties are provided), that licensees may convey the
108
+ work under this License, and how to view a copy of this License. If
109
+ the interface presents a list of user commands or options, such as a
110
+ menu, a prominent item in the list meets this criterion.
111
+
112
+ 1. Source Code.
113
+
114
+ The "source code" for a work means the preferred form of the work
115
+ for making modifications to it. "Object code" means any non-source
116
+ form of a work.
117
+
118
+ A "Standard Interface" means an interface that either is an official
119
+ standard defined by a recognized standards body, or, in the case of
120
+ interfaces specified for a particular programming language, one that
121
+ is widely used among developers working in that language.
122
+
123
+ The "System Libraries" of an executable work include anything, other
124
+ than the work as a whole, that (a) is included in the normal form of
125
+ packaging a Major Component, but which is not part of that Major
126
+ Component, and (b) serves only to enable use of the work with that
127
+ Major Component, or to implement a Standard Interface for which an
128
+ implementation is available to the public in source code form. A
129
+ "Major Component", in this context, means a major essential component
130
+ (kernel, window system, and so on) of the specific operating system
131
+ (if any) on which the executable work runs, or a compiler used to
132
+ produce the work, or an object code interpreter used to run it.
133
+
134
+ The "Corresponding Source" for a work in object code form means all
135
+ the source code needed to generate, install, and (for an executable
136
+ work) run the object code and to modify the work, including scripts to
137
+ control those activities. However, it does not include the work's
138
+ System Libraries, or general-purpose tools or generally available free
139
+ programs which are used unmodified in performing those activities but
140
+ which are not part of the work. For example, Corresponding Source
141
+ includes interface definition files associated with source files for
142
+ the work, and the source code for shared libraries and dynamically
143
+ linked subprograms that the work is specifically designed to require,
144
+ such as by intimate data communication or control flow between those
145
+ subprograms and other parts of the work.
146
+
147
+ The Corresponding Source need not include anything that users
148
+ can regenerate automatically from other parts of the Corresponding
149
+ Source.
150
+
151
+ The Corresponding Source for a work in source code form is that
152
+ same work.
153
+
154
+ 2. Basic Permissions.
155
+
156
+ All rights granted under this License are granted for the term of
157
+ copyright on the Program, and are irrevocable provided the stated
158
+ conditions are met. This License explicitly affirms your unlimited
159
+ permission to run the unmodified Program. The output from running a
160
+ covered work is covered by this License only if the output, given its
161
+ content, constitutes a covered work. This License acknowledges your
162
+ rights of fair use or other equivalent, as provided by copyright law.
163
+
164
+ You may make, run and propagate covered works that you do not
165
+ convey, without conditions so long as your license otherwise remains
166
+ in force. You may convey covered works to others for the sole purpose
167
+ of having them make modifications exclusively for you, or provide you
168
+ with facilities for running those works, provided that you comply with
169
+ the terms of this License in conveying all material for which you do
170
+ not control copyright. Those thus making or running the covered works
171
+ for you must do so exclusively on your behalf, under your direction
172
+ and control, on terms that prohibit them from making any copies of
173
+ your copyrighted material outside their relationship with you.
174
+
175
+ Conveying under any other circumstances is permitted solely under
176
+ the conditions stated below. Sublicensing is not allowed; section 10
177
+ makes it unnecessary.
178
+
179
+ 3. Protecting Users' Legal Rights From Anti-Circumvention Law.
180
+
181
+ No covered work shall be deemed part of an effective technological
182
+ measure under any applicable law fulfilling obligations under article
183
+ 11 of the WIPO copyright treaty adopted on 20 December 1996, or
184
+ similar laws prohibiting or restricting circumvention of such
185
+ measures.
186
+
187
+ When you convey a covered work, you waive any legal power to forbid
188
+ circumvention of technological measures to the extent such circumvention
189
+ is effected by exercising rights under this License with respect to
190
+ the covered work, and you disclaim any intention to limit operation or
191
+ modification of the work as a means of enforcing, against the work's
192
+ users, your or third parties' legal rights to forbid circumvention of
193
+ technological measures.
194
+
195
+ 4. Conveying Verbatim Copies.
196
+
197
+ You may convey verbatim copies of the Program's source code as you
198
+ receive it, in any medium, provided that you conspicuously and
199
+ appropriately publish on each copy an appropriate copyright notice;
200
+ keep intact all notices stating that this License and any
201
+ non-permissive terms added in accord with section 7 apply to the code;
202
+ keep intact all notices of the absence of any warranty; and give all
203
+ recipients a copy of this License along with the Program.
204
+
205
+ You may charge any price or no price for each copy that you convey,
206
+ and you may offer support or warranty protection for a fee.
207
+
208
+ 5. Conveying Modified Source Versions.
209
+
210
+ You may convey a work based on the Program, or the modifications to
211
+ produce it from the Program, in the form of source code under the
212
+ terms of section 4, provided that you also meet all of these conditions:
213
+
214
+ a) The work must carry prominent notices stating that you modified
215
+ it, and giving a relevant date.
216
+
217
+ b) The work must carry prominent notices stating that it is
218
+ released under this License and any conditions added under section
219
+ 7. This requirement modifies the requirement in section 4 to
220
+ "keep intact all notices".
221
+
222
+ c) You must license the entire work, as a whole, under this
223
+ License to anyone who comes into possession of a copy. This
224
+ License will therefore apply, along with any applicable section 7
225
+ additional terms, to the whole of the work, and all its parts,
226
+ regardless of how they are packaged. This License gives no
227
+ permission to license the work in any other way, but it does not
228
+ invalidate such permission if you have separately received it.
229
+
230
+ d) If the work has interactive user interfaces, each must display
231
+ Appropriate Legal Notices; however, if the Program has interactive
232
+ interfaces that do not display Appropriate Legal Notices, your
233
+ work need not make them do so.
234
+
235
+ A compilation of a covered work with other separate and independent
236
+ works, which are not by their nature extensions of the covered work,
237
+ and which are not combined with it such as to form a larger program,
238
+ in or on a volume of a storage or distribution medium, is called an
239
+ "aggregate" if the compilation and its resulting copyright are not
240
+ used to limit the access or legal rights of the compilation's users
241
+ beyond what the individual works permit. Inclusion of a covered work
242
+ in an aggregate does not cause this License to apply to the other
243
+ parts of the aggregate.
244
+
245
+ 6. Conveying Non-Source Forms.
246
+
247
+ You may convey a covered work in object code form under the terms
248
+ of sections 4 and 5, provided that you also convey the
249
+ machine-readable Corresponding Source under the terms of this License,
250
+ in one of these ways:
251
+
252
+ a) Convey the object code in, or embodied in, a physical product
253
+ (including a physical distribution medium), accompanied by the
254
+ Corresponding Source fixed on a durable physical medium
255
+ customarily used for software interchange.
256
+
257
+ b) Convey the object code in, or embodied in, a physical product
258
+ (including a physical distribution medium), accompanied by a
259
+ written offer, valid for at least three years and valid for as
260
+ long as you offer spare parts or customer support for that product
261
+ model, to give anyone who possesses the object code either (1) a
262
+ copy of the Corresponding Source for all the software in the
263
+ product that is covered by this License, on a durable physical
264
+ medium customarily used for software interchange, for a price no
265
+ more than your reasonable cost of physically performing this
266
+ conveying of source, or (2) access to copy the
267
+ Corresponding Source from a network server at no charge.
268
+
269
+ c) Convey individual copies of the object code with a copy of the
270
+ written offer to provide the Corresponding Source. This
271
+ alternative is allowed only occasionally and noncommercially, and
272
+ only if you received the object code with such an offer, in accord
273
+ with subsection 6b.
274
+
275
+ d) Convey the object code by offering access from a designated
276
+ place (gratis or for a charge), and offer equivalent access to the
277
+ Corresponding Source in the same way through the same place at no
278
+ further charge. You need not require recipients to copy the
279
+ Corresponding Source along with the object code. If the place to
280
+ copy the object code is a network server, the Corresponding Source
281
+ may be on a different server (operated by you or a third party)
282
+ that supports equivalent copying facilities, provided you maintain
283
+ clear directions next to the object code saying where to find the
284
+ Corresponding Source. Regardless of what server hosts the
285
+ Corresponding Source, you remain obligated to ensure that it is
286
+ available for as long as needed to satisfy these requirements.
287
+
288
+ e) Convey the object code using peer-to-peer transmission, provided
289
+ you inform other peers where the object code and Corresponding
290
+ Source of the work are being offered to the general public at no
291
+ charge under subsection 6d.
292
+
293
+ A separable portion of the object code, whose source code is excluded
294
+ from the Corresponding Source as a System Library, need not be
295
+ included in conveying the object code work.
296
+
297
+ A "User Product" is either (1) a "consumer product", which means any
298
+ tangible personal property which is normally used for personal, family,
299
+ or household purposes, or (2) anything designed or sold for incorporation
300
+ into a dwelling. In determining whether a product is a consumer product,
301
+ doubtful cases shall be resolved in favor of coverage. For a particular
302
+ product received by a particular user, "normally used" refers to a
303
+ typical or common use of that class of product, regardless of the status
304
+ of the particular user or of the way in which the particular user
305
+ actually uses, or expects or is expected to use, the product. A product
306
+ is a consumer product regardless of whether the product has substantial
307
+ commercial, industrial or non-consumer uses, unless such uses represent
308
+ the only significant mode of use of the product.
309
+
310
+ "Installation Information" for a User Product means any methods,
311
+ procedures, authorization keys, or other information required to install
312
+ and execute modified versions of a covered work in that User Product from
313
+ a modified version of its Corresponding Source. The information must
314
+ suffice to ensure that the continued functioning of the modified object
315
+ code is in no case prevented or interfered with solely because
316
+ modification has been made.
317
+
318
+ If you convey an object code work under this section in, or with, or
319
+ specifically for use in, a User Product, and the conveying occurs as
320
+ part of a transaction in which the right of possession and use of the
321
+ User Product is transferred to the recipient in perpetuity or for a
322
+ fixed term (regardless of how the transaction is characterized), the
323
+ Corresponding Source conveyed under this section must be accompanied
324
+ by the Installation Information. But this requirement does not apply
325
+ if neither you nor any third party retains the ability to install
326
+ modified object code on the User Product (for example, the work has
327
+ been installed in ROM).
328
+
329
+ The requirement to provide Installation Information does not include a
330
+ requirement to continue to provide support service, warranty, or updates
331
+ for a work that has been modified or installed by the recipient, or for
332
+ the User Product in which it has been modified or installed. Access to a
333
+ network may be denied when the modification itself materially and
334
+ adversely affects the operation of the network or violates the rules and
335
+ protocols for communication across the network.
336
+
337
+ Corresponding Source conveyed, and Installation Information provided,
338
+ in accord with this section must be in a format that is publicly
339
+ documented (and with an implementation available to the public in
340
+ source code form), and must require no special password or key for
341
+ unpacking, reading or copying.
342
+
343
+ 7. Additional Terms.
344
+
345
+ "Additional permissions" are terms that supplement the terms of this
346
+ License by making exceptions from one or more of its conditions.
347
+ Additional permissions that are applicable to the entire Program shall
348
+ be treated as though they were included in this License, to the extent
349
+ that they are valid under applicable law. If additional permissions
350
+ apply only to part of the Program, that part may be used separately
351
+ under those permissions, but the entire Program remains governed by
352
+ this License without regard to the additional permissions.
353
+
354
+ When you convey a copy of a covered work, you may at your option
355
+ remove any additional permissions from that copy, or from any part of
356
+ it. (Additional permissions may be written to require their own
357
+ removal in certain cases when you modify the work.) You may place
358
+ additional permissions on material, added by you to a covered work,
359
+ for which you have or can give appropriate copyright permission.
360
+
361
+ Notwithstanding any other provision of this License, for material you
362
+ add to a covered work, you may (if authorized by the copyright holders of
363
+ that material) supplement the terms of this License with terms:
364
+
365
+ a) Disclaiming warranty or limiting liability differently from the
366
+ terms of sections 15 and 16 of this License; or
367
+
368
+ b) Requiring preservation of specified reasonable legal notices or
369
+ author attributions in that material or in the Appropriate Legal
370
+ Notices displayed by works containing it; or
371
+
372
+ c) Prohibiting misrepresentation of the origin of that material, or
373
+ requiring that modified versions of such material be marked in
374
+ reasonable ways as different from the original version; or
375
+
376
+ d) Limiting the use for publicity purposes of names of licensors or
377
+ authors of the material; or
378
+
379
+ e) Declining to grant rights under trademark law for use of some
380
+ trade names, trademarks, or service marks; or
381
+
382
+ f) Requiring indemnification of licensors and authors of that
383
+ material by anyone who conveys the material (or modified versions of
384
+ it) with contractual assumptions of liability to the recipient, for
385
+ any liability that these contractual assumptions directly impose on
386
+ those licensors and authors.
387
+
388
+ All other non-permissive additional terms are considered "further
389
+ restrictions" within the meaning of section 10. If the Program as you
390
+ received it, or any part of it, contains a notice stating that it is
391
+ governed by this License along with a term that is a further
392
+ restriction, you may remove that term. If a license document contains
393
+ a further restriction but permits relicensing or conveying under this
394
+ License, you may add to a covered work material governed by the terms
395
+ of that license document, provided that the further restriction does
396
+ not survive such relicensing or conveying.
397
+
398
+ If you add terms to a covered work in accord with this section, you
399
+ must place, in the relevant source files, a statement of the
400
+ additional terms that apply to those files, or a notice indicating
401
+ where to find the applicable terms.
402
+
403
+ Additional terms, permissive or non-permissive, may be stated in the
404
+ form of a separately written license, or stated as exceptions;
405
+ the above requirements apply either way.
406
+
407
+ 8. Termination.
408
+
409
+ You may not propagate or modify a covered work except as expressly
410
+ provided under this License. Any attempt otherwise to propagate or
411
+ modify it is void, and will automatically terminate your rights under
412
+ this License (including any patent licenses granted under the third
413
+ paragraph of section 11).
414
+
415
+ However, if you cease all violation of this License, then your
416
+ license from a particular copyright holder is reinstated (a)
417
+ provisionally, unless and until the copyright holder explicitly and
418
+ finally terminates your license, and (b) permanently, if the copyright
419
+ holder fails to notify you of the violation by some reasonable means
420
+ prior to 60 days after the cessation.
421
+
422
+ Moreover, your license from a particular copyright holder is
423
+ reinstated permanently if the copyright holder notifies you of the
424
+ violation by some reasonable means, this is the first time you have
425
+ received notice of violation of this License (for any work) from that
426
+ copyright holder, and you cure the violation prior to 30 days after
427
+ your receipt of the notice.
428
+
429
+ Termination of your rights under this section does not terminate the
430
+ licenses of parties who have received copies or rights from you under
431
+ this License. If your rights have been terminated and not permanently
432
+ reinstated, you do not qualify to receive new licenses for the same
433
+ material under section 10.
434
+
435
+ 9. Acceptance Not Required for Having Copies.
436
+
437
+ You are not required to accept this License in order to receive or
438
+ run a copy of the Program. Ancillary propagation of a covered work
439
+ occurring solely as a consequence of using peer-to-peer transmission
440
+ to receive a copy likewise does not require acceptance. However,
441
+ nothing other than this License grants you permission to propagate or
442
+ modify any covered work. These actions infringe copyright if you do
443
+ not accept this License. Therefore, by modifying or propagating a
444
+ covered work, you indicate your acceptance of this License to do so.
445
+
446
+ 10. Automatic Licensing of Downstream Recipients.
447
+
448
+ Each time you convey a covered work, the recipient automatically
449
+ receives a license from the original licensors, to run, modify and
450
+ propagate that work, subject to this License. You are not responsible
451
+ for enforcing compliance by third parties with this License.
452
+
453
+ An "entity transaction" is a transaction transferring control of an
454
+ organization, or substantially all assets of one, or subdividing an
455
+ organization, or merging organizations. If propagation of a covered
456
+ work results from an entity transaction, each party to that
457
+ transaction who receives a copy of the work also receives whatever
458
+ licenses to the work the party's predecessor in interest had or could
459
+ give under the previous paragraph, plus a right to possession of the
460
+ Corresponding Source of the work from the predecessor in interest, if
461
+ the predecessor has it or can get it with reasonable efforts.
462
+
463
+ You may not impose any further restrictions on the exercise of the
464
+ rights granted or affirmed under this License. For example, you may
465
+ not impose a license fee, royalty, or other charge for exercise of
466
+ rights granted under this License, and you may not initiate litigation
467
+ (including a cross-claim or counterclaim in a lawsuit) alleging that
468
+ any patent claim is infringed by making, using, selling, offering for
469
+ sale, or importing the Program or any portion of it.
470
+
471
+ 11. Patents.
472
+
473
+ A "contributor" is a copyright holder who authorizes use under this
474
+ License of the Program or a work on which the Program is based. The
475
+ work thus licensed is called the contributor's "contributor version".
476
+
477
+ A contributor's "essential patent claims" are all patent claims
478
+ owned or controlled by the contributor, whether already acquired or
479
+ hereafter acquired, that would be infringed by some manner, permitted
480
+ by this License, of making, using, or selling its contributor version,
481
+ but do not include claims that would be infringed only as a
482
+ consequence of further modification of the contributor version. For
483
+ purposes of this definition, "control" includes the right to grant
484
+ patent sublicenses in a manner consistent with the requirements of
485
+ this License.
486
+
487
+ Each contributor grants you a non-exclusive, worldwide, royalty-free
488
+ patent license under the contributor's essential patent claims, to
489
+ make, use, sell, offer for sale, import and otherwise run, modify and
490
+ propagate the contents of its contributor version.
491
+
492
+ In the following three paragraphs, a "patent license" is any express
493
+ agreement or commitment, however denominated, not to enforce a patent
494
+ (such as an express permission to practice a patent or covenant not to
495
+ sue for patent infringement). To "grant" such a patent license to a
496
+ party means to make such an agreement or commitment not to enforce a
497
+ patent against the party.
498
+
499
+ If you convey a covered work, knowingly relying on a patent license,
500
+ and the Corresponding Source of the work is not available for anyone
501
+ to copy, free of charge and under the terms of this License, through a
502
+ publicly available network server or other readily accessible means,
503
+ then you must either (1) cause the Corresponding Source to be so
504
+ available, or (2) arrange to deprive yourself of the benefit of the
505
+ patent license for this particular work, or (3) arrange, in a manner
506
+ consistent with the requirements of this License, to extend the patent
507
+ license to downstream recipients. "Knowingly relying" means you have
508
+ actual knowledge that, but for the patent license, your conveying the
509
+ covered work in a country, or your recipient's use of the covered work
510
+ in a country, would infringe one or more identifiable patents in that
511
+ country that you have reason to believe are valid.
512
+
513
+ If, pursuant to or in connection with a single transaction or
514
+ arrangement, you convey, or propagate by procuring conveyance of, a
515
+ covered work, and grant a patent license to some of the parties
516
+ receiving the covered work authorizing them to use, propagate, modify
517
+ or convey a specific copy of the covered work, then the patent license
518
+ you grant is automatically extended to all recipients of the covered
519
+ work and works based on it.
520
+
521
+ A patent license is "discriminatory" if it does not include within
522
+ the scope of its coverage, prohibits the exercise of, or is
523
+ conditioned on the non-exercise of one or more of the rights that are
524
+ specifically granted under this License. You may not convey a covered
525
+ work if you are a party to an arrangement with a third party that is
526
+ in the business of distributing software, under which you make payment
527
+ to the third party based on the extent of your activity of conveying
528
+ the work, and under which the third party grants, to any of the
529
+ parties who would receive the covered work from you, a discriminatory
530
+ patent license (a) in connection with copies of the covered work
531
+ conveyed by you (or copies made from those copies), or (b) primarily
532
+ for and in connection with specific products or compilations that
533
+ contain the covered work, unless you entered into that arrangement,
534
+ or that patent license was granted, prior to 28 March 2007.
535
+
536
+ Nothing in this License shall be construed as excluding or limiting
537
+ any implied license or other defenses to infringement that may
538
+ otherwise be available to you under applicable patent law.
539
+
540
+ 12. No Surrender of Others' Freedom.
541
+
542
+ If conditions are imposed on you (whether by court order, agreement or
543
+ otherwise) that contradict the conditions of this License, they do not
544
+ excuse you from the conditions of this License. If you cannot convey a
545
+ covered work so as to satisfy simultaneously your obligations under this
546
+ License and any other pertinent obligations, then as a consequence you may
547
+ not convey it at all. For example, if you agree to terms that obligate you
548
+ to collect a royalty for further conveying from those to whom you convey
549
+ the Program, the only way you could satisfy both those terms and this
550
+ License would be to refrain entirely from conveying the Program.
551
+
552
+ 13. Use with the GNU Affero General Public License.
553
+
554
+ Notwithstanding any other provision of this License, you have
555
+ permission to link or combine any covered work with a work licensed
556
+ under version 3 of the GNU Affero General Public License into a single
557
+ combined work, and to convey the resulting work. The terms of this
558
+ License will continue to apply to the part which is the covered work,
559
+ but the special requirements of the GNU Affero General Public License,
560
+ section 13, concerning interaction through a network will apply to the
561
+ combination as such.
562
+
563
+ 14. Revised Versions of this License.
564
+
565
+ The Free Software Foundation may publish revised and/or new versions of
566
+ the GNU General Public License from time to time. Such new versions will
567
+ be similar in spirit to the present version, but may differ in detail to
568
+ address new problems or concerns.
569
+
570
+ Each version is given a distinguishing version number. If the
571
+ Program specifies that a certain numbered version of the GNU General
572
+ Public License "or any later version" applies to it, you have the
573
+ option of following the terms and conditions either of that numbered
574
+ version or of any later version published by the Free Software
575
+ Foundation. If the Program does not specify a version number of the
576
+ GNU General Public License, you may choose any version ever published
577
+ by the Free Software Foundation.
578
+
579
+ If the Program specifies that a proxy can decide which future
580
+ versions of the GNU General Public License can be used, that proxy's
581
+ public statement of acceptance of a version permanently authorizes you
582
+ to choose that version for the Program.
583
+
584
+ Later license versions may give you additional or different
585
+ permissions. However, no additional obligations are imposed on any
586
+ author or copyright holder as a result of your choosing to follow a
587
+ later version.
588
+
589
+ 15. Disclaimer of Warranty.
590
+
591
+ THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
592
+ APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
593
+ HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
594
+ OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
595
+ THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
596
+ PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
597
+ IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
598
+ ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
599
+
600
+ 16. Limitation of Liability.
601
+
602
+ IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
603
+ WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
604
+ THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
605
+ GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
606
+ USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
607
+ DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
608
+ PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
609
+ EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
610
+ SUCH DAMAGES.
611
+
612
+ 17. Interpretation of Sections 15 and 16.
613
+
614
+ If the disclaimer of warranty and limitation of liability provided
615
+ above cannot be given local legal effect according to their terms,
616
+ reviewing courts shall apply local law that most closely approximates
617
+ an absolute waiver of all civil liability in connection with the
618
+ Program, unless a warranty or assumption of liability accompanies a
619
+ copy of the Program in return for a fee.
620
+
621
+ END OF TERMS AND CONDITIONS
readme.txt CHANGED
@@ -1,160 +1,170 @@
1
- === WPFront User Role Editor ===
2
- Contributors: syammohanm
3
- Donate link: https://wpfront.com/donate/
4
- Tags: user role editor, role editor, user role, role, user roles, roles, user roles editor, roles editor, role manager, roles manager, manage roles, manage role, access, capability, editor, permission, role, security, user, capability editor, capability manager, custom post types, custom post type permissions, custom post type capabilities, post type permissions, post type capabilities, menu editor, role menu, role menu editor, multisite roles, multisite role editor, multisite user roles, import roles, export roles
5
- Requires at least: 3.5
6
- Tested up to: 4.1
7
- Stable tag: 2.4
8
- License: GPLv3
9
- License URI: http://www.gnu.org/licenses/gpl-3.0.html
10
-
11
- Easily allows you to manage user roles. You can create, edit, delete and manage capabilities, also copy existing roles.
12
-
13
- == Description ==
14
- This plugin allows you to easily manage user roles within your WordPress site.
15
- You can create, edit or delete user roles and manage role capabilities.
16
-
17
- ### Features
18
- * Create new roles.
19
- * Edit or rename existing roles.
20
- * Clone existing roles.
21
- * Manage capabilities.
22
- * Allows you to add role capabilities.
23
- * Change default user role.
24
- * Restore role.
25
- * Assign multiple roles.
26
- * Migrate users.
27
- * Menu editor. [PRO]
28
- * Post/Page extended permissions. [PRO]
29
- * Custom post type permissions. [PRO]
30
- * Import/Export. [PRO]
31
- * Multisite. [PRO]
32
-
33
- Compare [User Role Editor Pro](https://wpfront.com/ppro)
34
-
35
- Localization Contributors:
36
- <li>[Mauro Mascarenhas](http://nintersoft.ml) (Portuguese) </li>
37
-
38
- Spanish tutorial
39
- https://www.youtube.com/watch?v=YRZdWH-uukI
40
-
41
- == Installation ==
42
-
43
- 1. Click Plugins/Add New from the WordPress admin panel
44
- 1. Search for "WPFront User Role Editor" and install
45
-
46
- -or-
47
-
48
- 1. Download the .zip package
49
- 1. Unzip into the subdirectory 'wpfront-user-role-editor' within your local WordPress plugins directory
50
- 1. Refresh plugin page and activate plugin
51
- 1. Configure plugin using *settings* link under plugin name or by going to WPFront/User Role Editor
52
-
53
- == Frequently Asked Questions ==
54
-
55
- Please visit [WPFront User Role Editor FAQ](https://wpfront.com/user-role-editor-pro/faq/).
56
-
57
- == Screenshots ==
58
-
59
- 01. Roles list
60
- 02. Settings
61
- 03. Assign / Migrate users
62
- 04. Custom post type permissions
63
- 05. Extended permissions
64
- 06. Menu editor
65
- 07. Export roles
66
- 08. Import roles
67
- 09. Multisite sync roles
68
- 10. Add new role
69
- 11. Edit role
70
- 12. Restore role
71
-
72
- == Changelog ==
73
-
74
- = 2.4 =
75
- * Gravity forms integration.
76
- * UI changes to make columns hidden on small screens.
77
- * Bug fix: Extended permissions not working in search results.
78
- * Portuguese (Brazil) language added.
79
-
80
- = 2.3 =
81
- * Duplicator integration.
82
- * Performance fix. Thanks to Jezze.
83
-
84
- = 2.2.1 =
85
- * Extended permissions bug fix.
86
-
87
- = 2.2 =
88
- * Extended permissions enhanced with [Guest].
89
- * User profile secondary roles added.
90
- * UI enhancements.
91
- * Menu editor bug fix. Thanks to Marcus.
92
- * Multisite user assignment bug fix.
93
-
94
- = 2.1 =
95
- * Custom post type permissions.
96
- * Bug fixes.
97
-
98
- = 2.0 =
99
- * Removed 'wpfront_' from role capabilities.
100
- * Removed 'Add role capabilities'. It is enabled by default.
101
- * Assign/Migrate users.
102
- * Bug fixes.
103
-
104
- = 1.2 =
105
- * Restore role.
106
- * Bug fixes.
107
-
108
- = 1.1 =
109
- * Edit deprecated capabilities.
110
-
111
- = 1.0 =
112
- * Set new user default role.
113
- * Stability improvements.
114
-
115
- = 0.3.1 =
116
- * Bug fixes.
117
-
118
- = 0.3 =
119
- * Initial release.
120
-
121
- == Upgrade Notice ==
122
-
123
- = 2.4 =
124
- * Gravity forms integration.
125
- * UI enhancements.
126
- * Bug fixes.
127
-
128
- = 2.3 =
129
- * Integrates with Duplicator plugin.
130
- * Performance fix on list roles.
131
-
132
- = 2.2.1 =
133
- * Bug fixes.
134
-
135
- = 2.2 =
136
- * Various bug fixes and enhancements.
137
-
138
- = 2.1 =
139
- * Manage custom post type permissions.
140
-
141
- = 2.0 =
142
- * Now you can assign multiple roles to a user.
143
- * Migrate users from role to role.
144
-
145
- = 1.2 =
146
- * Now you can restore roles.
147
-
148
- = 1.1 =
149
- * Can edit deprecated capabilities now.
150
-
151
- = 1.0 =
152
- * Easily set new user default role.
153
-
154
- = 0.3.1 =
155
- * Fixed an issue with deleting roles.
156
-
157
- = 0.3 =
158
- * Initial release.
159
-
160
-
 
 
 
 
 
 
 
 
 
 
1
+ === WPFront User Role Editor ===
2
+ Contributors: syammohanm
3
+ Donate link: https://wpfront.com/donate/
4
+ Tags: WordPress user role editor, user role editor, role editor, user role, role, WordPress user roles, user roles, roles, user roles editor, roles editor, role manager, roles manager, manage roles, manage role, access, capability, editor, permission, role, security, user, capability editor, capability manager, custom post types, custom post type permissions, custom post type capabilities, post type permissions, post type capabilities, menu editor, role menu, role menu editor, multisite roles, multisite role editor, multisite user roles, import roles, export roles
5
+ Requires at least: 3.5
6
+ Tested up to: 4.1
7
+ Stable tag: 2.5
8
+ License: GPLv3
9
+ License URI: http://www.gnu.org/licenses/gpl-3.0.html
10
+
11
+ Easily allows you to manage WordPress user roles. You can create, edit, delete and manage capabilities, also copy existing roles.
12
+
13
+ == Description ==
14
+ WPFront User Role Editor plugin allows you to easily manage WordPress user roles within your site.
15
+ You can create, edit or delete user roles and manage role capabilities.
16
+
17
+ ### Features
18
+ * Create new roles.
19
+ * Edit or rename existing roles.
20
+ * Clone existing roles.
21
+ * Manage capabilities.
22
+ * Allows you to add role capabilities.
23
+ * Change default user role.
24
+ * Restore role.
25
+ * Assign multiple roles.
26
+ * Migrate users.
27
+ * Navigation menu permissions basic.
28
+ * Admin menu editor. [PRO]
29
+ * Navigation menu permissions advanced. [PRO]
30
+ * Post/Page extended permissions. [PRO]
31
+ * Custom post type permissions. [PRO]
32
+ * Import/Export. [PRO]
33
+ * Multisite support. [PRO]
34
+
35
+ Compare [User Role Editor Pro](https://wpfront.com/ppro)
36
+
37
+ Localization Contributors:
38
+ <li>[Mauro Mascarenhas](http://nintersoft.ml) (Portuguese) </li>
39
+
40
+ Spanish tutorial
41
+ https://www.youtube.com/watch?v=YRZdWH-uukI
42
+
43
+ == Installation ==
44
+
45
+ 1. Click Plugins/Add New from the WordPress admin panel
46
+ 1. Search for "WPFront User Role Editor" and install
47
+
48
+ -or-
49
+
50
+ 1. Download the .zip package
51
+ 1. Unzip into the subdirectory 'wpfront-user-role-editor' within your local WordPress plugins directory
52
+ 1. Refresh plugin page and activate plugin
53
+ 1. Configure plugin using *settings* link under plugin name or by going to WPFront/User Role Editor
54
+
55
+ == Frequently Asked Questions ==
56
+
57
+ Please visit [WPFront User Role Editor FAQ](https://wpfront.com/user-role-editor-pro/faq/).
58
+
59
+ == Screenshots ==
60
+
61
+ 01. Roles list
62
+ 02. Settings
63
+ 03. Assign / Migrate users
64
+ 04. Custom post type permissions
65
+ 05. Extended permissions
66
+ 06. Menu editor
67
+ 07. Export roles
68
+ 08. Import roles
69
+ 09. Multisite sync roles
70
+ 10. Add new role
71
+ 11. Edit role
72
+ 12. Restore role
73
+ 13. Navigation menu permissions
74
+
75
+ == Changelog ==
76
+
77
+ = 2.5 =
78
+ * Navigation menu permissions added. [Documentation](https://wpfront.com/user-role-editor-pro/navigation-menu-permissions/).
79
+ * Compatibility fix with "The Events Calendar".
80
+
81
+ = 2.4 =
82
+ * Gravity forms integration.
83
+ * UI changes to make columns hidden on small screens.
84
+ * Bug fix: Extended permissions not working in search results.
85
+ * Portuguese (Brazil) language added.
86
+
87
+ = 2.3 =
88
+ * Duplicator integration.
89
+ * Performance fix. Thanks to Jezze.
90
+
91
+ = 2.2.1 =
92
+ * Extended permissions bug fix.
93
+
94
+ = 2.2 =
95
+ * Extended permissions enhanced with [Guest].
96
+ * User profile secondary roles added.
97
+ * UI enhancements.
98
+ * Menu editor bug fix. Thanks to Marcus.
99
+ * Multisite user assignment bug fix.
100
+
101
+ = 2.1 =
102
+ * Custom post type permissions.
103
+ * Bug fixes.
104
+
105
+ = 2.0 =
106
+ * Removed 'wpfront_' from role capabilities.
107
+ * Removed 'Add role capabilities'. It is enabled by default.
108
+ * Assign/Migrate users.
109
+ * Bug fixes.
110
+
111
+ = 1.2 =
112
+ * Restore role.
113
+ * Bug fixes.
114
+
115
+ = 1.1 =
116
+ * Edit deprecated capabilities.
117
+
118
+ = 1.0 =
119
+ * Set new user default role.
120
+ * Stability improvements.
121
+
122
+ = 0.3.1 =
123
+ * Bug fixes.
124
+
125
+ = 0.3 =
126
+ * Initial release.
127
+
128
+ == Upgrade Notice ==
129
+
130
+ = 2.5 =
131
+ * Navigation menu permissions and compatibility fix.
132
+
133
+ = 2.4 =
134
+ * Gravity forms integration.
135
+ * UI enhancements.
136
+ * Bug fixes.
137
+
138
+ = 2.3 =
139
+ * Integrates with Duplicator plugin.
140
+ * Performance fix on list roles.
141
+
142
+ = 2.2.1 =
143
+ * Bug fixes.
144
+
145
+ = 2.2 =
146
+ * Various bug fixes and enhancements.
147
+
148
+ = 2.1 =
149
+ * Manage custom post type permissions.
150
+
151
+ = 2.0 =
152
+ * Now you can assign multiple roles to a user.
153
+ * Migrate users from role to role.
154
+
155
+ = 1.2 =
156
+ * Now you can restore roles.
157
+
158
+ = 1.1 =
159
+ * Can edit deprecated capabilities now.
160
+
161
+ = 1.0 =
162
+ * Easily set new user default role.
163
+
164
+ = 0.3.1 =
165
+ * Fixed an issue with deleting roles.
166
+
167
+ = 0.3 =
168
+ * Initial release.
169
+
170
+
templates/add-edit-role.php CHANGED
@@ -29,6 +29,12 @@
29
  */
30
  ?>
31
 
 
 
 
 
 
 
32
  <div class="wrap role-add-new">
33
  <h2 id="add-new-role">
34
  <?php
29
  */
30
  ?>
31
 
32
+ <?php
33
+ if (!defined('ABSPATH')) {
34
+ exit();
35
+ }
36
+ ?>
37
+
38
  <div class="wrap role-add-new">
39
  <h2 id="add-new-role">
40
  <?php
templates/assign-roles.php CHANGED
@@ -29,57 +29,63 @@
29
  */
30
  ?>
31
 
32
- <?php $this->main->verify_nonce(); ?>
 
 
 
 
 
 
33
 
34
  <div class="wrap assign-roles">
35
  <h2 id="assign-roles">
36
- <?php echo $this->__('Assign Roles'); ?>
37
  </h2>
38
 
39
- <?php
40
- if ($this->result != NULL) {
41
- if ($this->result->success) {
42
- ?>
43
  <div class="updated">
44
  <p><?php echo $this->result->message; ?></p>
45
  </div>
46
- <?php } else { ?>
47
 
48
  <div class="error">
49
  <p><?php echo $this->result->message; ?></p>
50
  </div>
51
- <?php
52
- }
53
  }
54
- ?>
 
55
 
56
  <form method="POST">
57
- <?php $this->main->create_nonce(); ?>
58
  <table class="form-table">
59
  <tbody>
60
  <tr>
61
  <th scope="row">
62
- <?php echo $this->__('User'); ?>
63
  </th>
64
  <td>
65
  <select id="assign_users_list" name="assign-user">
66
- <?php
67
- foreach ($this->users as $user) {
68
- $select = FALSE;
69
- if ($this->user != NULL && $this->user->ID == $user->ID)
70
- $select = TRUE;
71
- ?>
72
  <option <?php echo $select ? 'selected' : ''; ?> value="<?php echo $user->ID; ?>">
73
  <?php echo $user->display_name . ' [' . $user->user_login . ']' ; ?>
74
  </option>
75
- <?php
76
- }
77
- ?>
78
  </select>
79
  </td>
80
  </tr>
81
 
82
- <?php $this->primary_secondary_section('assign', $this->userPrimaryRole, $this->userSecondaryRoles); ?>
83
 
84
  </tbody>
85
  </table>
@@ -90,34 +96,34 @@
90
  </form>
91
 
92
  <h2 id="migrate-users">
93
- <?php echo $this->__('Migrate Users'); ?>
94
  </h2>
95
 
96
  <form method="POST">
97
- <?php $this->main->create_nonce(); ?>
98
 
99
  <table class="form-table">
100
  <tbody>
101
  <tr>
102
  <th scope="row">
103
- <?php echo $this->__('From Primary Role'); ?>
104
  </th>
105
  <td>
106
  <select id="migrate_from_role" name="migrate-from-primary-role">
107
- <?php
108
- foreach ($this->primary_roles as $key => $role) {
109
- ?>
110
  <option value="<?php echo $key; ?>" <?php echo $this->migrateFromPrimaryRole === $key ? 'selected' : ''; ?>>
111
- <?php echo $role; ?>
112
  </option>
113
- <?php
114
- }
115
- ?>
116
  </select>
117
  </td>
118
  </tr>
119
 
120
- <?php $this->primary_secondary_section('migrate', $this->migrateToPrimaryRole, $this->migrateToSecondaryRoles); ?>
121
 
122
  </tbody>
123
  </table>
29
  */
30
  ?>
31
 
32
+ <?php
33
+ if (!defined('ABSPATH')) {
34
+ exit();
35
+ }
36
+
37
+ $this->main->verify_nonce();
38
+ ?>
39
 
40
  <div class="wrap assign-roles">
41
  <h2 id="assign-roles">
42
+ <?php echo $this->__('Assign Roles'); ?>
43
  </h2>
44
 
45
+ <?php
46
+ if ($this->result != NULL) {
47
+ if ($this->result->success) {
48
+ ?>
49
  <div class="updated">
50
  <p><?php echo $this->result->message; ?></p>
51
  </div>
52
+ <?php } else { ?>
53
 
54
  <div class="error">
55
  <p><?php echo $this->result->message; ?></p>
56
  </div>
57
+ <?php
 
58
  }
59
+ }
60
+ ?>
61
 
62
  <form method="POST">
63
+ <?php $this->main->create_nonce(); ?>
64
  <table class="form-table">
65
  <tbody>
66
  <tr>
67
  <th scope="row">
68
+ <?php echo $this->__('User'); ?>
69
  </th>
70
  <td>
71
  <select id="assign_users_list" name="assign-user">
72
+ <?php
73
+ foreach ($this->users as $user) {
74
+ $select = FALSE;
75
+ if ($this->user != NULL && $this->user->ID == $user->ID)
76
+ $select = TRUE;
77
+ ?>
78
  <option <?php echo $select ? 'selected' : ''; ?> value="<?php echo $user->ID; ?>">
79
  <?php echo $user->display_name . ' [' . $user->user_login . ']' ; ?>
80
  </option>
81
+ <?php
82
+ }
83
+ ?>
84
  </select>
85
  </td>
86
  </tr>
87
 
88
+ <?php $this->primary_secondary_section('assign', $this->userPrimaryRole, $this->userSecondaryRoles); ?>
89
 
90
  </tbody>
91
  </table>
96
  </form>
97
 
98
  <h2 id="migrate-users">
99
+ <?php echo $this->__('Migrate Users'); ?>
100
  </h2>
101
 
102
  <form method="POST">
103
+ <?php $this->main->create_nonce(); ?>
104
 
105
  <table class="form-table">
106
  <tbody>
107
  <tr>
108
  <th scope="row">
109
+ <?php echo $this->__('From Primary Role'); ?>
110
  </th>
111
  <td>
112
  <select id="migrate_from_role" name="migrate-from-primary-role">
113
+ <?php
114
+ foreach ($this->primary_roles as $key => $role) {
115
+ ?>
116
  <option value="<?php echo $key; ?>" <?php echo $this->migrateFromPrimaryRole === $key ? 'selected' : ''; ?>>
117
+ <?php echo $role; ?>
118
  </option>
119
+ <?php
120
+ }
121
+ ?>
122
  </select>
123
  </td>
124
  </tr>
125
 
126
+ <?php $this->primary_secondary_section('migrate', $this->migrateToPrimaryRole, $this->migrateToSecondaryRoles); ?>
127
 
128
  </tbody>
129
  </table>
templates/delete-role.php CHANGED
@@ -29,7 +29,11 @@
29
  */
30
  ?>
31
 
32
-
 
 
 
 
33
 
34
  <div class="wrap delete-roles">
35
  <form method="post">
29
  */
30
  ?>
31
 
32
+ <?php
33
+ if (!defined('ABSPATH')) {
34
+ exit();
35
+ }
36
+ ?>
37
 
38
  <div class="wrap delete-roles">
39
  <form method="post">
templates/go-pro-table CHANGED
@@ -1,161 +1,161 @@
1
- <style type="text/css">
2
-
3
- div.wrap.go-pro div.container:before,
4
- div.wrap.go-pro div.container:after {
5
- content:"";
6
- display:table;
7
- }
8
- div.wrap.go-pro div.container:after {
9
- clear:both;
10
- }
11
- div.wrap.go-pro div.container {
12
- zoom:1; /* For IE 6/7 (trigger hasLayout) */
13
- }
14
-
15
- div.wrap.go-pro {
16
- /* text-align: center;*/
17
- /* background: #FFF;*/
18
- /* padding-top: 1%;
19
- padding-bottom: 1%;*/
20
- }
21
-
22
- div.wrap.go-pro div.container {
23
- text-align: center;
24
- display: inline-block;
25
- }
26
-
27
- div.wrap.go-pro div.container div.col {
28
- float: left;
29
- width: 200px;
30
- background-color: #FFF;
31
- /* box-shadow: 1px 1px 15px 0px rgba(50, 50, 50, 0.75);*/
32
- margin-right: 1px;
33
- }
34
-
35
- div.wrap.go-pro div.container div.cell {
36
- height: 40px;
37
- padding: 10px 10px 0px 10px;
38
- text-align: center;
39
- border: 1px solid #fafafa;
40
- }
41
-
42
- div.wrap.go-pro div.container div.header.cell {
43
- background-color: #2ea2cc;
44
- height: auto;
45
- padding-top: 5px;
46
- padding-bottom: 5px;
47
- border-radius: 3px 3px 0px 0px;
48
- border: 0px;
49
- }
50
-
51
- div.wrap.go-pro div.container div.header.cell h3 {
52
- color: #FFF;
53
- }
54
-
55
- </style>
56
-
57
- <div class="container">
58
- <div class="col col1">
59
- <div class="cell header">
60
- <h3>Free Version</h3>
61
- </div>
62
- <div class="cell">
63
- Add/Edit/Delete
64
- </div>
65
- <div class="cell">
66
- Restore Roles
67
- </div>
68
- <div class="cell">
69
- Assign/Migrate Users
70
- </div>
71
- <div class="cell">
72
- <i class="fa fa-times"></i>
73
- </div>
74
- <div class="cell">
75
- <i class="fa fa-times"></i>
76
- </div>
77
- <div class="cell">
78
- <i class="fa fa-times"></i>
79
- </div>
80
- <div class="cell">
81
- <i class="fa fa-times"></i>
82
- </div>
83
- <div class="cell">
84
- <i class="fa fa-times"></i>
85
- </div>
86
- <div class="cell">
87
- &nbsp;
88
- </div>
89
- </div>
90
- <div class="col col2">
91
- <div class="cell header">
92
- <h3>Personal Pro</h3>
93
- </div>
94
- <div class="cell">
95
- Add/Edit/Delete
96
- </div>
97
- <div class="cell">
98
- Restore Roles
99
- </div>
100
- <div class="cell">
101
- Assign/Migrate Users
102
- </div>
103
- <div class="cell">
104
- Import/Export
105
- </div>
106
- <div class="cell">
107
- Menu Editor
108
- </div>
109
- <div class="cell">
110
- Posts/Pages Extended Permissions
111
- </div>
112
- <div class="cell">
113
- <i class="fa fa-times"></i>
114
- </div>
115
- <div class="cell">
116
- Private Forums & Updates for One Year
117
- </div>
118
- <div class="cell footer">
119
- <a class="button-primary" href="https://wpfront.com/ppro" target="_blank">
120
- <i class="fa fa-shopping-cart"></i>
121
- Buy Now
122
- </a>
123
- </div>
124
- </div>
125
- <div class="col col3">
126
- <div class="cell header">
127
- <h3>Business Pro</h3>
128
- </div>
129
- <div class="cell">
130
- Add/Edit/Delete
131
- </div>
132
- <div class="cell">
133
- Restore Roles
134
- </div>
135
- <div class="cell">
136
- Assign/Migrate Users
137
- </div>
138
- <div class="cell">
139
- Import/Export
140
- </div>
141
- <div class="cell">
142
- Menu Editor
143
- </div>
144
- <div class="cell">
145
- Posts/Pages Extended Permissions
146
- </div>
147
- <div class="cell">
148
- Multisite Support
149
- </div>
150
- <div class="cell">
151
- Private Forums & Updates for One Year
152
- </div>
153
- <div class="cell footer">
154
- <a class="button-primary" href="https://wpfront.com/bpro" target="_blank">
155
- <i class="fa fa-shopping-cart"></i>
156
- Buy Now
157
- </a>
158
- </div>
159
- </div>
160
- <img src="https://wpfront.com/uret" style="width:1px;height:1px;" />
161
  </div>
1
+ <style type="text/css">
2
+
3
+ div.wrap.go-pro div.container:before,
4
+ div.wrap.go-pro div.container:after {
5
+ content:"";
6
+ display:table;
7
+ }
8
+ div.wrap.go-pro div.container:after {
9
+ clear:both;
10
+ }
11
+ div.wrap.go-pro div.container {
12
+ zoom:1; /* For IE 6/7 (trigger hasLayout) */
13
+ }
14
+
15
+ div.wrap.go-pro {
16
+ /* text-align: center;*/
17
+ /* background: #FFF;*/
18
+ /* padding-top: 1%;
19
+ padding-bottom: 1%;*/
20
+ }
21
+
22
+ div.wrap.go-pro div.container {
23
+ text-align: center;
24
+ display: inline-block;
25
+ }
26
+
27
+ div.wrap.go-pro div.container div.col {
28
+ float: left;
29
+ width: 200px;
30
+ background-color: #FFF;
31
+ /* box-shadow: 1px 1px 15px 0px rgba(50, 50, 50, 0.75);*/
32
+ margin-right: 1px;
33
+ }
34
+
35
+ div.wrap.go-pro div.container div.cell {
36
+ height: 40px;
37
+ padding: 10px 10px 0px 10px;
38
+ text-align: center;
39
+ border: 1px solid #fafafa;
40
+ }
41
+
42
+ div.wrap.go-pro div.container div.header.cell {
43
+ background-color: #2ea2cc;
44
+ height: auto;
45
+ padding-top: 5px;
46
+ padding-bottom: 5px;
47
+ border-radius: 3px 3px 0px 0px;
48
+ border: 0px;
49
+ }
50
+
51
+ div.wrap.go-pro div.container div.header.cell h3 {
52
+ color: #FFF;
53
+ }
54
+
55
+ </style>
56
+
57
+ <div class="container">
58
+ <div class="col col1">
59
+ <div class="cell header">
60
+ <h3>Free Version</h3>
61
+ </div>
62
+ <div class="cell">
63
+ Add/Edit/Delete
64
+ </div>
65
+ <div class="cell">
66
+ Restore Roles
67
+ </div>
68
+ <div class="cell">
69
+ Assign/Migrate Users
70
+ </div>
71
+ <div class="cell">
72
+ <i class="fa fa-times"></i>
73
+ </div>
74
+ <div class="cell">
75
+ <i class="fa fa-times"></i>
76
+ </div>
77
+ <div class="cell">
78
+ <i class="fa fa-times"></i>
79
+ </div>
80
+ <div class="cell">
81
+ <i class="fa fa-times"></i>
82
+ </div>
83
+ <div class="cell">
84
+ <i class="fa fa-times"></i>
85
+ </div>
86
+ <div class="cell">
87
+ &nbsp;
88
+ </div>
89
+ </div>
90
+ <div class="col col2">
91
+ <div class="cell header">
92
+ <h3>Personal Pro</h3>
93
+ </div>
94
+ <div class="cell">
95
+ Add/Edit/Delete
96
+ </div>
97
+ <div class="cell">
98
+ Restore Roles
99
+ </div>
100
+ <div class="cell">
101
+ Assign/Migrate Users
102
+ </div>
103
+ <div class="cell">
104
+ Import/Export
105
+ </div>
106
+ <div class="cell">
107
+ Menu Editor
108
+ </div>
109
+ <div class="cell">
110
+ Posts/Pages Extended Permissions
111
+ </div>
112
+ <div class="cell">
113
+ <i class="fa fa-times"></i>
114
+ </div>
115
+ <div class="cell">
116
+ Private Forums & Updates for One Year
117
+ </div>
118
+ <div class="cell footer">
119
+ <a class="button-primary" href="https://wpfront.com/ppro" target="_blank">
120
+ <i class="fa fa-shopping-cart"></i>
121
+ Buy Now
122
+ </a>
123
+ </div>
124
+ </div>
125
+ <div class="col col3">
126
+ <div class="cell header">
127
+ <h3>Business Pro</h3>
128
+ </div>
129
+ <div class="cell">
130
+ Add/Edit/Delete
131
+ </div>
132
+ <div class="cell">
133
+ Restore Roles
134
+ </div>
135
+ <div class="cell">
136
+ Assign/Migrate Users
137
+ </div>
138
+ <div class="cell">
139
+ Import/Export
140
+ </div>
141
+ <div class="cell">
142
+ Menu Editor
143
+ </div>
144
+ <div class="cell">
145
+ Posts/Pages Extended Permissions
146
+ </div>
147
+ <div class="cell">
148
+ Multisite Support
149
+ </div>
150
+ <div class="cell">
151
+ Private Forums & Updates for One Year
152
+ </div>
153
+ <div class="cell footer">
154
+ <a class="button-primary" href="https://wpfront.com/bpro" target="_blank">
155
+ <i class="fa fa-shopping-cart"></i>
156
+ Buy Now
157
+ </a>
158
+ </div>
159
+ </div>
160
+ <img src="https://wpfront.com/uret" style="width:1px;height:1px;" />
161
  </div>
templates/go-pro.php CHANGED
@@ -29,6 +29,12 @@
29
  */
30
  ?>
31
 
 
 
 
 
 
 
32
  <div class="wrap go-pro">
33
  <h2>
34
  <?php
29
  */
30
  ?>
31
 
32
+ <?php
33
+ if (!defined('ABSPATH')) {
34
+ exit();
35
+ }
36
+ ?>
37
+
38
  <div class="wrap go-pro">
39
  <h2>
40
  <?php
templates/list-roles.php CHANGED
@@ -29,14 +29,20 @@
29
  */
30
  ?>
31
 
32
- <?php $this->main->verify_nonce(); ?>
 
 
 
 
 
 
33
 
34
  <div class="wrap list-roles">
35
  <h2>
36
- <?php
37
- echo $this->__('Roles');
38
- if ($this->can_create()) {
39
- ?>
40
  <a href="<?php echo $this->add_new_url(); ?>" class="add-new-h2"><?php echo $this->__('Add New'); ?></a>
41
  <?php
42
  }
@@ -45,37 +51,37 @@
45
 
46
  <ul class="subsubsub">
47
  <li>
48
- <?php
49
- $filter_data = array();
50
- $current_filter = $this->get_current_list_filter();
51
- foreach ($this->get_list_filters() as $key => $value) {
52
- $filter_data[] = sprintf('<a href="%s" class="%s">%s <span class="count">(%s)</span></a>', $value['url'], ($current_filter == $key ? 'current' : ''), $value['display'], $value['count']);
53
- }
54
- echo implode('|</li><li>', $filter_data);
55
- ?>
56
  </li>
57
  </ul>
58
 
59
  <form method = "post">
60
- <?php $this->main->create_nonce(); ?>
61
  <p class = "search-box">
62
  <label class = "screen-reader-text" for = "role-search-input"><?php echo $this->__('Search Roles') . ':'; ?></label>
63
  <input type="search" id="role-search-input" name="s" value="<?php echo $this->get_search_term(); ?>">
64
  <input type="submit" name="search-submit" id="search-submit" class="button" value="<?php echo $this->__('Search Roles'); ?>">
65
  </p>
66
- <?php $this->bulk_actions('top'); ?>
67
  <table class="wp-list-table widefat fixed users">
68
  <thead>
69
- <?php $this->table_header(); ?>
70
  </thead>
71
  <tfoot>
72
- <?php $this->table_header(); ?>
73
  </tfoot>
74
  <tbody id="the-list">
75
- <?php
76
- $index = 0;
77
- foreach ($this->get_roles() as $key => $value) {
78
- ?>
79
  <tr id="<?php echo $key; ?>" class="<?php echo $index % 2 == 0 ? 'alternate' : ''; ?>">
80
  <th scope="row" class="check-column">
81
  <label class="screen-reader-text" for="cb-select-<?php echo $key; ?>"><?php echo sprintf('Select %s', $value['display_name']) ?></label>
@@ -83,68 +89,68 @@
83
  </th>
84
  <td class="displayname column-displayname">
85
  <strong>
86
- <?php
87
- if (empty($value['edit_url']))
88
- echo $value['display_name'];
89
- else
90
- printf('<a href="%s">%s</a>', $value['edit_url'], $value['display_name']);
91
- ?>
92
  </strong>
93
  <br />
94
  <div class="row-actions">
95
- <?php
96
- $links = array();
97
- if ($this->can_edit()) {
98
- $links[] = sprintf('<span class="edit"><a href="%s">%s</a></span>', $value['edit_url'], ($value['is_editable'] ? $this->__('Edit') : $this->__('View')));
99
- }
100
- if ($this->can_delete() && $value['is_deletable']) {
101
- $links[] = sprintf('<span class="delete"><a href="%s">%s</a></span>', $value['delete_url'], $this->__('Delete'));
102
- }
103
- if (!empty($value['set_default_url'])) {
104
- $links[] = sprintf('<span class="set-default"><a href="%s">%s</a></span>', $value['set_default_url'], $this->__('Default'));
105
- }
106
- $custom_links = apply_filters('role_row_actions', array(), get_role($key));
107
- foreach ($custom_links as $link_key => $link_value) {
108
- $links[] = "<span class='$link_key'>$link_value</span>";
109
- }
110
- echo implode('|', $links);
111
- ?>
112
  </div>
113
  </td>
114
  <td class="rolename column-rolename">
115
- <?php echo $key; ?>
116
  </td>
117
  <td class="roletype column-roletype">
118
- <?php echo $value['is_default'] ? $this->__('Built-In') : $this->__('Custom'); ?>
119
  </td>
120
  <td class="userdefault column-userdefault num">
121
- <?php
122
- if ($value['user_default']) {
123
- printf('<img class="user-default" src="%s" />', $this->image_url() . 'check-icon.png');
124
- }
125
- ?>
126
  </td>
127
  <td class="usercount column-usercount num">
128
- <?php echo $value['user_count']; ?>
129
  </td>
130
  <td class="capscount column-capscount num">
131
- <?php echo $value['caps_count']; ?>
132
  </td>
133
- <?php
134
- foreach ($this->custom_columns as $column_key => $column_value) {
135
- echo "<td class='$column_key column-$column_key num'>"
136
- . apply_filters('manage_roles_custom_column', $column_value, $column_key, $key)
137
- . "</td>";
138
- }
139
- ?>
140
  </tr>
141
- <?php
142
- $index++;
143
- }
144
- ?>
145
  </tbody>
146
  </table>
147
- <?php $this->bulk_actions('bottom'); ?>
148
  </form>
149
- <?php $this->footer(); ?>
150
  </div>
29
  */
30
  ?>
31
 
32
+ <?php
33
+ if (!defined('ABSPATH')) {
34
+ exit();
35
+ }
36
+
37
+ $this->main->verify_nonce();
38
+ ?>
39
 
40
  <div class="wrap list-roles">
41
  <h2>
42
+ <?php
43
+ echo $this->__('Roles');
44
+ if ($this->can_create()) {
45
+ ?>
46
  <a href="<?php echo $this->add_new_url(); ?>" class="add-new-h2"><?php echo $this->__('Add New'); ?></a>
47
  <?php
48
  }
51
 
52
  <ul class="subsubsub">
53
  <li>
54
+ <?php
55
+ $filter_data = array();
56
+ $current_filter = $this->get_current_list_filter();
57
+ foreach ($this->get_list_filters() as $key => $value) {
58
+ $filter_data[] = sprintf('<a href="%s" class="%s">%s <span class="count">(%s)</span></a>', $value['url'], ($current_filter == $key ? 'current' : ''), $value['display'], $value['count']);
59
+ }
60
+ echo implode('|</li><li>', $filter_data);
61
+ ?>
62
  </li>
63
  </ul>
64
 
65
  <form method = "post">
66
+ <?php $this->main->create_nonce(); ?>
67
  <p class = "search-box">
68
  <label class = "screen-reader-text" for = "role-search-input"><?php echo $this->__('Search Roles') . ':'; ?></label>
69
  <input type="search" id="role-search-input" name="s" value="<?php echo $this->get_search_term(); ?>">
70
  <input type="submit" name="search-submit" id="search-submit" class="button" value="<?php echo $this->__('Search Roles'); ?>">
71
  </p>
72
+ <?php $this->bulk_actions('top'); ?>
73
  <table class="wp-list-table widefat fixed users">
74
  <thead>
75
+ <?php $this->table_header(); ?>
76
  </thead>
77
  <tfoot>
78
+ <?php $this->table_header(); ?>
79
  </tfoot>
80
  <tbody id="the-list">
81
+ <?php
82
+ $index = 0;
83
+ foreach ($this->get_roles() as $key => $value) {
84
+ ?>
85
  <tr id="<?php echo $key; ?>" class="<?php echo $index % 2 == 0 ? 'alternate' : ''; ?>">
86
  <th scope="row" class="check-column">
87
  <label class="screen-reader-text" for="cb-select-<?php echo $key; ?>"><?php echo sprintf('Select %s', $value['display_name']) ?></label>
89
  </th>
90
  <td class="displayname column-displayname">
91
  <strong>
92
+ <?php
93
+ if (empty($value['edit_url']))
94
+ echo $value['display_name'];
95
+ else
96
+ printf('<a href="%s">%s</a>', $value['edit_url'], $value['display_name']);
97
+ ?>
98
  </strong>
99
  <br />
100
  <div class="row-actions">
101
+ <?php
102
+ $links = array();
103
+ if ($this->can_edit()) {
104
+ $links[] = sprintf('<span class="edit"><a href="%s">%s</a></span>', $value['edit_url'], ($value['is_editable'] ? $this->__('Edit') : $this->__('View')));
105
+ }
106
+ if ($this->can_delete() && $value['is_deletable']) {
107
+ $links[] = sprintf('<span class="delete"><a href="%s">%s</a></span>', $value['delete_url'], $this->__('Delete'));
108
+ }
109
+ if (!empty($value['set_default_url'])) {
110
+ $links[] = sprintf('<span class="set-default"><a href="%s">%s</a></span>', $value['set_default_url'], $this->__('Default'));
111
+ }
112
+ $custom_links = apply_filters('role_row_actions', array(), get_role($key));
113
+ foreach ($custom_links as $link_key => $link_value) {
114
+ $links[] = "<span class='$link_key'>$link_value</span>";
115
+ }
116
+ echo implode('|', $links);
117
+ ?>
118
  </div>
119
  </td>
120
  <td class="rolename column-rolename">
121
+ <?php echo $key; ?>
122
  </td>
123
  <td class="roletype column-roletype">
124
+ <?php echo $value['is_default'] ? $this->__('Built-In') : $this->__('Custom'); ?>
125
  </td>
126
  <td class="userdefault column-userdefault num">
127
+ <?php
128
+ if ($value['user_default']) {
129
+ printf('<img class="user-default" src="%s" />', $this->image_url() . 'check-icon.png');
130
+ }
131
+ ?>
132
  </td>
133
  <td class="usercount column-usercount num">
134
+ <?php echo $value['user_count']; ?>
135
  </td>
136
  <td class="capscount column-capscount num">
137
+ <?php echo $value['caps_count']; ?>
138
  </td>
139
+ <?php
140
+ foreach ($this->custom_columns as $column_key => $column_value) {
141
+ echo "<td class='$column_key column-$column_key num'>"
142
+ . apply_filters('manage_roles_custom_column', $column_value, $column_key, $key)
143
+ . "</td>";
144
+ }
145
+ ?>
146
  </tr>
147
+ <?php
148
+ $index++;
149
+ }
150
+ ?>
151
  </tbody>
152
  </table>
153
+ <?php $this->bulk_actions('bottom'); ?>
154
  </form>
155
+ <?php $this->footer(); ?>
156
  </div>
templates/options-template.php CHANGED
@@ -29,7 +29,26 @@
29
  */
30
  ?>
31
 
32
- <?php @$this->main->options_page_header($this->__('WPFront User Role Editor Settings')); ?>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
33
 
34
  <table class="form-table">
35
  <?php
@@ -120,13 +139,13 @@
120
  <?php @$this->main->options_page_footer('user-role-editor-plugin-settings/', 'user-role-editor-plugin-faq/'); ?>
121
 
122
  <script type="text/javascript">
123
- (function($) {
124
- $("#wpfront-user-role-editor-options #submit").click(function() {
125
  $(this).prop("disabled", true);
126
 
127
  var fields = $("#wpfront-user-role-editor-options form").find("input");
128
  var data = {};
129
- fields.each(function(i, e) {
130
  var ele = $(e);
131
  if (ele.attr("type") == "checkbox") {
132
  if (ele.attr("name") == "custom-post-types") {
@@ -141,7 +160,7 @@
141
  });
142
  data["action"] = "wpfront_user_role_editor_update_options";
143
 
144
- $.post(ajaxurl, data, function(url) {
145
  $(location).attr("href", url);
146
  });
147
 
29
  */
30
  ?>
31
 
32
+ <?php
33
+ if (!defined('ABSPATH')) {
34
+ exit();
35
+ }
36
+
37
+ @$this->main->options_page_header($this->__('WPFront User Role Editor Settings'));
38
+ ?>
39
+
40
+ <?php
41
+ $menu_walker = apply_filters('wp_edit_nav_menu_walker', 'Walker_Nav_Menu_Edit', 0);
42
+ if ($menu_walker !== WPFront_User_Role_Editor_Nav_Menu::override_edit_nav_menu_walker()) {
43
+ ?>
44
+ <div class="error below-h2">
45
+ <p>
46
+ <?php echo sprintf($this->__('Menu walker class is overriden by a theme/plugin. Current value = %s. Navigation menu permissions may still work. %s'), $menu_walker, '<a target="_blank" href="' . WPFront_User_Role_Editor_Nav_Menu::nav_menu_help_url() . '#navigation-menu-permission-warning">' . $this->__('More information') . '</a>'); ?>
47
+ </p>
48
+ </div>
49
+ <?php
50
+ }
51
+ ?>
52
 
53
  <table class="form-table">
54
  <?php
139
  <?php @$this->main->options_page_footer('user-role-editor-plugin-settings/', 'user-role-editor-plugin-faq/'); ?>
140
 
141
  <script type="text/javascript">
142
+ (function ($) {
143
+ $("#wpfront-user-role-editor-options #submit").click(function () {
144
  $(this).prop("disabled", true);
145
 
146
  var fields = $("#wpfront-user-role-editor-options form").find("input");
147
  var data = {};
148
+ fields.each(function (i, e) {
149
  var ele = $(e);
150
  if (ele.attr("type") == "checkbox") {
151
  if (ele.attr("name") == "custom-post-types") {
160
  });
161
  data["action"] = "wpfront_user_role_editor_update_options";
162
 
163
+ $.post(ajaxurl, data, function (url) {
164
  $(location).attr("href", url);
165
  });
166
 
templates/restore-role.php CHANGED
@@ -29,6 +29,12 @@
29
  */
30
  ?>
31
 
 
 
 
 
 
 
32
  <div class="wrap role-restore">
33
  <h2 id="restore-role">
34
  <?php echo $this->__('Restore Role'); ?>
29
  */
30
  ?>
31
 
32
+ <?php
33
+ if (!defined('ABSPATH')) {
34
+ exit();
35
+ }
36
+ ?>
37
+
38
  <div class="wrap role-restore">
39
  <h2 id="restore-role">
40
  <?php echo $this->__('Restore Role'); ?>
uninstall.php CHANGED
@@ -1,40 +1,40 @@
1
- <?php
2
-
3
- if (!defined('WP_UNINSTALL_PLUGIN')) {
4
- exit();
5
- }
6
-
7
- require_once dirname(__FILE__) . '/classes/class-wpfront-user-role-editor.php';
8
-
9
- if (is_multisite() && class_exists('WPFront_User_Role_Editor_Business_Pro_Controller_Base')) {
10
- $entity = new WPFront_User_Role_Editor_Business_Pro_Controller_Base(NULL);
11
- $blogids = $entity->get_ms_blog_ids();
12
-
13
- switch_to_blog(WPFront_User_Role_Editor_Options::get_ms_options_blog_id());
14
- $entity = new WPFront_User_Role_Editor_Options(NULL);
15
- if ($entity->remove_data_on_uninstall()) {
16
- foreach ($blogids as $blogid) {
17
- switch_to_blog($blogid);
18
-
19
- WPFront_User_Role_Editor_Entity_Options::uninstall();
20
- WPFront_User_Role_Editor_Entity_Menu_Editor::uninstall();
21
- WPFront_User_Role_Editor_Entity_Post_Type_Permissions::uninstall();
22
- }
23
- }
24
-
25
- restore_current_blog();
26
- } else {
27
- $entity = new WPFront_User_Role_Editor_Options(NULL);
28
- if ($entity->remove_data_on_uninstall()) {
29
- if (class_exists('WPFront_User_Role_Editor_Entity_Options'))
30
- WPFront_User_Role_Editor_Entity_Options::uninstall();
31
-
32
- if (class_exists('WPFront_User_Role_Editor_Entity_Menu_Editor'))
33
- WPFront_User_Role_Editor_Entity_Menu_Editor::uninstall();
34
-
35
- if (class_exists('WPFront_User_Role_Editor_Entity_Post_Type_Permissions'))
36
- WPFront_User_Role_Editor_Entity_Post_Type_Permissions::uninstall();
37
- }
38
- }
39
-
40
-
1
+ <?php
2
+
3
+ if (!defined('WP_UNINSTALL_PLUGIN')) {
4
+ exit();
5
+ }
6
+
7
+ require_once dirname(__FILE__) . '/classes/class-wpfront-user-role-editor.php';
8
+
9
+ if (is_multisite() && class_exists('WPFront_User_Role_Editor_Business_Pro_Controller_Base')) {
10
+ $entity = new WPFront_User_Role_Editor_Business_Pro_Controller_Base(NULL);
11
+ $blogids = $entity->get_ms_blog_ids();
12
+
13
+ switch_to_blog(WPFront_User_Role_Editor_Options::get_ms_options_blog_id());
14
+ $entity = new WPFront_User_Role_Editor_Options(NULL);
15
+ if ($entity->remove_data_on_uninstall()) {
16
+ foreach ($blogids as $blogid) {
17
+ switch_to_blog($blogid);
18
+
19
+ WPFront_User_Role_Editor_Entity_Options::uninstall();
20
+ WPFront_User_Role_Editor_Entity_Menu_Editor::uninstall();
21
+ WPFront_User_Role_Editor_Entity_Post_Type_Permissions::uninstall();
22
+ }
23
+ }
24
+
25
+ restore_current_blog();
26
+ } else {
27
+ $entity = new WPFront_User_Role_Editor_Options(NULL);
28
+ if ($entity->remove_data_on_uninstall()) {
29
+ if (class_exists('WPFront_User_Role_Editor_Entity_Options'))
30
+ WPFront_User_Role_Editor_Entity_Options::uninstall();
31
+
32
+ if (class_exists('WPFront_User_Role_Editor_Entity_Menu_Editor'))
33
+ WPFront_User_Role_Editor_Entity_Menu_Editor::uninstall();
34
+
35
+ if (class_exists('WPFront_User_Role_Editor_Entity_Post_Type_Permissions'))
36
+ WPFront_User_Role_Editor_Entity_Post_Type_Permissions::uninstall();
37
+ }
38
+ }
39
+
40
+
wpfront-user-role-editor.php CHANGED
@@ -4,7 +4,7 @@
4
  * Plugin Name: WPFront User Role Editor
5
  * Plugin URI: http://wpfront.com/user-role-editor-pro/
6
  * Description: Allows you to manage user roles.
7
- * Version: 2.4
8
  * Author: Syam Mohan
9
  * Author URI: http://wpfront.com
10
  * License: GPL v3
@@ -33,6 +33,9 @@
33
  SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
34
  */
35
 
 
 
 
36
 
37
  require_once(plugin_dir_path(__FILE__) . "classes/class-wpfront-user-role-editor.php");
38
 
4
  * Plugin Name: WPFront User Role Editor
5
  * Plugin URI: http://wpfront.com/user-role-editor-pro/
6
  * Description: Allows you to manage user roles.
7
+ * Version: 2.5
8
  * Author: Syam Mohan
9
  * Author URI: http://wpfront.com
10
  * License: GPL v3
33
  SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
34
  */
35
 
36
+ if (!defined('ABSPATH')) {
37
+ exit();
38
+ }
39
 
40
  require_once(plugin_dir_path(__FILE__) . "classes/class-wpfront-user-role-editor.php");
41