WPFront User Role Editor - Version 2.13.1

Version Description

  • [Important]XSS fixes. Thanks to Burak @ security.nl & DefenseCode WebScanner.
  • Spelling corrections. Thanks to Eclipse Creative.
  • Update fails on some hosts are now resolved.
  • UI improvements.
  • License validation fixes.
Download this release

Release Info

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

Code changes from version 2.13 to 2.13.1

Files changed (27) hide show
  1. classes/base/class-wpfront-base.php +1 -1
  2. classes/class-wpfront-user-role-editor-add-edit.php +2 -1
  3. classes/class-wpfront-user-role-editor-go-pro.php +27 -4
  4. classes/class-wpfront-user-role-editor-restore.php +1 -1
  5. classes/class-wpfront-user-role-editor.php +4 -4
  6. languages/wpfront-user-role-editor-da_DK.mo +0 -0
  7. languages/wpfront-user-role-editor-da_DK/index.php +0 -2
  8. languages/wpfront-user-role-editor-da_DK/readme.txt +0 -1
  9. languages/wpfront-user-role-editor-da_DK/wpfront-user-role-editor-da_DK.mo +0 -0
  10. languages/wpfront-user-role-editor-da_DK/wpfront-user-role-editor-da_DK.po +0 -2712
  11. languages/wpfront-user-role-editor-pt_BR.mo +0 -0
  12. languages/wpfront-user-role-editor-pt_BR/index.php +0 -2
  13. languages/wpfront-user-role-editor-pt_BR/readme.txt +0 -1
  14. languages/wpfront-user-role-editor-pt_BR/wpfront-user-role-editor-pt_BR.mo +0 -0
  15. languages/wpfront-user-role-editor-pt_BR/wpfront-user-role-editor-pt_BR.po +0 -1782
  16. languages/wpfront-user-role-editor-sv_SE.mo +0 -0
  17. languages/wpfront-user-role-editor-sv_SE/index.php +0 -2
  18. languages/wpfront-user-role-editor-sv_SE/readme.txt +0 -1
  19. languages/wpfront-user-role-editor-sv_SE/wpfront-user-role-editor-sv_SE.mo +0 -0
  20. languages/wpfront-user-role-editor-sv_SE/wpfront-user-role-editor-sv_SE.po +0 -1692
  21. languages/wpfront-user-role-editor.mo +0 -0
  22. languages/wpfront-user-role-editor.po +205 -156
  23. readme.txt +13 -8
  24. templates/add-edit-role.php +2 -2
  25. templates/options-template.php +1 -1
  26. templates/restore-role.php +2 -2
  27. wpfront-user-role-editor.php +1 -1
classes/base/class-wpfront-base.php CHANGED
@@ -173,7 +173,7 @@ if (!class_exists('WPFront_Base_URE')) {
173
  echo '<h2>' . $title . '</h2>';
174
  echo '<div id="' . $this->options_page_slug . '-options" class="inside">';
175
  echo '<form method="post" action="options.php">';
176
- @settings_fields($optionsGroupName);
177
  @do_settings_sections($this->options_page_slug);
178
 
179
  if ((isset($_GET['settings-updated']) && $_GET['settings-updated'] == 'true') || (isset($_GET['updated']) && $_GET['updated'] == 'true')) {
173
  echo '<h2>' . $title . '</h2>';
174
  echo '<div id="' . $this->options_page_slug . '-options" class="inside">';
175
  echo '<form method="post" action="options.php">';
176
+ //@settings_fields($optionsGroupName);
177
  @do_settings_sections($this->options_page_slug);
178
 
179
  if ((isset($_GET['settings-updated']) && $_GET['settings-updated'] == 'true') || (isset($_GET['updated']) && $_GET['updated'] == 'true')) {
classes/class-wpfront-user-role-editor-add-edit.php CHANGED
@@ -376,7 +376,7 @@ if (!class_exists('WPFront_User_Role_Editor_Add_Edit')) {
376
  <div class="no-capability">
377
  <?php
378
  echo $this->__("Uses 'Posts' capabilities.");
379
- $upgrade_message = sprintf($this->__("%s to customize capabilites."), '<a href="https://wpfront.com/ureaddedit" target="_blank">' . $this->__('Upgrade to Pro') . '</a>');
380
  $upgrade_message = apply_filters('wpfront_ure_custom_post_type_upgrade_message', $upgrade_message);
381
  echo ' ' . $upgrade_message;
382
  ?>
@@ -384,6 +384,7 @@ if (!class_exists('WPFront_User_Role_Editor_Add_Edit')) {
384
  <?php
385
  } else {
386
  foreach ($value->caps as $cap) {
 
387
  ?>
388
  <div>
389
  <input type="checkbox" id="<?php echo $cap; ?>" name="capabilities[<?php echo $cap; ?>]" <?php echo $value->disabled ? 'disabled' : '' ?> <?php echo $this->capability_checked($cap) ? 'checked' : '' ?> />
376
  <div class="no-capability">
377
  <?php
378
  echo $this->__("Uses 'Posts' capabilities.");
379
+ $upgrade_message = sprintf($this->__("%s to customize capabilities."), '<a href="https://wpfront.com/ureaddedit" target="_blank">' . $this->__('Upgrade to Pro') . '</a>');
380
  $upgrade_message = apply_filters('wpfront_ure_custom_post_type_upgrade_message', $upgrade_message);
381
  echo ' ' . $upgrade_message;
382
  ?>
384
  <?php
385
  } else {
386
  foreach ($value->caps as $cap) {
387
+ $cap = esc_html($cap);
388
  ?>
389
  <div>
390
  <input type="checkbox" id="<?php echo $cap; ?>" name="capabilities[<?php echo $cap; ?>]" <?php echo $value->disabled ? 'disabled' : '' ?> <?php echo $this->capability_checked($cap) ? 'checked' : '' ?> />
classes/class-wpfront-user-role-editor-go-pro.php CHANGED
@@ -39,7 +39,7 @@ if (!class_exists('WPFront_User_Role_Editor_Go_Pro')) {
39
  const MENU_SLUG = 'wpfront-user-role-editor-go-pro';
40
 
41
  private static $go_pro_html_url = 'https://wpfront.com/syam/wordpress-plugins/wpfront-user-role-editor/pro/comparison/';
42
- private static $store_url = 'https://wpfront.com/';
43
  private $pro_html = '';
44
  private $has_license = FALSE;
45
  private $need_license = FALSE;
@@ -186,6 +186,8 @@ if (!class_exists('WPFront_User_Role_Editor_Go_Pro')) {
186
 
187
  $this->license_key = str_repeat('X', strlen($this->license_key) - 4) . substr($this->license_key, strlen($this->license_key) - 4, 4);
188
 
 
 
189
  //Software licensing change
190
  $this->edd_plugin_update();
191
  //add_action('admin_init', array($this, 'edd_plugin_update'));
@@ -276,15 +278,19 @@ if (!class_exists('WPFront_User_Role_Editor_Go_Pro')) {
276
  if ($this->product === NULL)
277
  return NULL;
278
 
 
 
 
 
279
  $api_params = array(
280
  'edd_action' => $action,
281
  'license' => urlencode($license),
282
  'item_name' => urlencode($this->product),
283
- 'url' => urlencode(home_url()),
284
  'plugin_version' => WPFront_User_Role_Editor::VERSION
285
  );
286
 
287
- $response = WPFront_User_Role_Editor::wp_remote_get(add_query_arg($api_params, self::$store_url));
288
  if (is_wp_error($response)) {
289
  $this->error = $this->__('ERROR') . ': ' . $this->__('Unable to contact wpfront.com')
290
  . '<br />'
@@ -420,7 +426,24 @@ if (!class_exists('WPFront_User_Role_Editor_Go_Pro')) {
420
  wp_mail($value->to, $value->subject, $value->body, array('Content-Type: text/html; charset=UTF-8'));
421
  }
422
  }
423
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
424
  }
425
 
426
  }
39
  const MENU_SLUG = 'wpfront-user-role-editor-go-pro';
40
 
41
  private static $go_pro_html_url = 'https://wpfront.com/syam/wordpress-plugins/wpfront-user-role-editor/pro/comparison/';
42
+ private static $store_url = 'https://edd.wpfront.com/';
43
  private $pro_html = '';
44
  private $has_license = FALSE;
45
  private $need_license = FALSE;
186
 
187
  $this->license_key = str_repeat('X', strlen($this->license_key) - 4) . substr($this->license_key, strlen($this->license_key) - 4, 4);
188
 
189
+ add_action('admin_notices', array($this, 'license_admin_notice'));
190
+
191
  //Software licensing change
192
  $this->edd_plugin_update();
193
  //add_action('admin_init', array($this, 'edd_plugin_update'));
278
  if ($this->product === NULL)
279
  return NULL;
280
 
281
+ $url = home_url();
282
+ $url = explode('?', $url);
283
+ $url = $url[0];
284
+
285
  $api_params = array(
286
  'edd_action' => $action,
287
  'license' => urlencode($license),
288
  'item_name' => urlencode($this->product),
289
+ 'url' => urlencode($url),
290
  'plugin_version' => WPFront_User_Role_Editor::VERSION
291
  );
292
 
293
+ $response = WPFront_User_Role_Editor::wp_remote_get(self::$store_url, array('body' => $api_params));
294
  if (is_wp_error($response)) {
295
  $this->error = $this->__('ERROR') . ': ' . $this->__('Unable to contact wpfront.com')
296
  . '<br />'
426
  wp_mail($value->to, $value->subject, $value->body, array('Content-Type: text/html; charset=UTF-8'));
427
  }
428
  }
429
+
430
+ public function license_admin_notice() {
431
+ $class = 'notice notice-error is-dismissible';
432
+
433
+ if($this->license_status == 'invalid') {
434
+ $message = sprintf($this->__('Your %s license is invalid.'), $this->product);
435
+ printf( '<div class="%1$s"><p><strong>%2$s</strong></p></div>', $class, $message);
436
+ } elseif($this->license_status == 'expired') {
437
+ if(current_user_can('manage_options') || current_user_can('activate_plugins') || current_user_can('install_plugins')) {
438
+ $renew = $this->__('Renew now');
439
+ if(!empty($this->renew_url)) {
440
+ $renew = sprintf('<a target="_blank" href="%s">%s</a>', $this->renew_url, $renew);
441
+ }
442
+ $message = sprintf($this->__('Your %s license is expired. %s to receive automatic updates.'), $this->product, $renew);
443
+ printf( '<div class="%1$s"><p><strong>%2$s</strong></p></div>', $class, $message);
444
+ }
445
+ }
446
+ }
447
  }
448
 
449
  }
classes/class-wpfront-user-role-editor-restore.php CHANGED
@@ -167,7 +167,7 @@ if (!class_exists('WPFront_User_Role_Editor_Restore')) {
167
  'id' => 'overview',
168
  'title' => $this->__('Overview'),
169
  'content' => '<p>'
170
- . $this->__('This screen allow you to restore WordPress built-in roles to its standard capability settings.')
171
  . '</p>'
172
  . '<p>'
173
  . $this->__('To restore a role, click the Restore button then Confirm.')
167
  'id' => 'overview',
168
  'title' => $this->__('Overview'),
169
  'content' => '<p>'
170
+ . $this->__('This screen allows you to restore WordPress built-in roles to its standard capability settings.')
171
  . '</p>'
172
  . '<p>'
173
  . $this->__('To restore a role, click the Restore button then Confirm.')
classes/class-wpfront-user-role-editor.php CHANGED
@@ -38,7 +38,7 @@ if (!class_exists('WPFront_User_Role_Editor')) {
38
  class WPFront_User_Role_Editor extends WPFront_Base_URE {
39
 
40
  //Constants
41
- const VERSION = '2.13';
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';
@@ -377,7 +377,7 @@ if (!class_exists('WPFront_User_Role_Editor')) {
377
  }
378
  $referer = $_SERVER['REQUEST_URI'];
379
  echo '<input type = "hidden" name = "_wpnonce' . $id . '" value = "' . wp_create_nonce($referer . $id) . '" />';
380
- echo '<input type = "hidden" name = "_wp_http_referer' . $id . '" value = "' . $referer . '" />';
381
  }
382
 
383
  public function verify_nonce($id = '') {
@@ -695,11 +695,11 @@ if (!class_exists('WPFront_User_Role_Editor')) {
695
 
696
  $params['sslverify'] = FALSE;
697
 
698
- $result = wp_remote_get($url, $params);
699
 
700
  if (is_wp_error($result) || wp_remote_retrieve_response_code($result) !== 200) {
701
  $params['sslverify'] = TRUE;
702
- $result = wp_remote_get($url, $params);
703
  }
704
 
705
  return $result;
38
  class WPFront_User_Role_Editor extends WPFront_Base_URE {
39
 
40
  //Constants
41
+ const VERSION = '2.13.1';
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';
377
  }
378
  $referer = $_SERVER['REQUEST_URI'];
379
  echo '<input type = "hidden" name = "_wpnonce' . $id . '" value = "' . wp_create_nonce($referer . $id) . '" />';
380
+ echo '<input type = "hidden" name = "_wp_http_referer' . $id . '" value = "' . esc_html($referer) . '" />';
381
  }
382
 
383
  public function verify_nonce($id = '') {
695
 
696
  $params['sslverify'] = FALSE;
697
 
698
+ $result = wp_remote_post($url, $params);
699
 
700
  if (is_wp_error($result) || wp_remote_retrieve_response_code($result) !== 200) {
701
  $params['sslverify'] = TRUE;
702
+ $result = wp_remote_post($url, $params);
703
  }
704
 
705
  return $result;
languages/wpfront-user-role-editor-da_DK.mo DELETED
Binary file
languages/wpfront-user-role-editor-da_DK/index.php DELETED
@@ -1,2 +0,0 @@
1
- <?php
2
- // Silence is golden.
 
 
languages/wpfront-user-role-editor-da_DK/readme.txt DELETED
@@ -1 +0,0 @@
1
- Contributor: Johan Michaelsen <johanmichaelsen.dk>
 
languages/wpfront-user-role-editor-da_DK/wpfront-user-role-editor-da_DK.mo DELETED
Binary file
languages/wpfront-user-role-editor-da_DK/wpfront-user-role-editor-da_DK.po DELETED
@@ -1,2712 +0,0 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: WPFront Notification Bar\n"
4
- "POT-Creation-Date: 2015-09-03 21:50-0700\n"
5
- "PO-Revision-Date: 2016-01-24 17:37+0100\n"
6
- "Last-Translator: Johan Michaelsen <johan.orgel@post.tele.dk>\n"
7
- "Language-Team: WPFront <contact@wpfront.com>\n"
8
- "Language: da_DK\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.8.6\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:56
20
- #: ../classes/personal-pro/class-wpfront-user-role-editor-content-shortcodes-list-table.php:84
21
- #: ../classes/personal-pro/class-wpfront-user-role-editor-content-shortcodes.php:369
22
- #: ../classes/personal-pro/class-wpfront-user-role-editor-content-shortcodes.php:416
23
- #: ../templates/personal-pro/content-shortcodes-add-edit.php:15
24
- #: ../templates/personal-pro/menu-editor.php:138
25
- msgid "Name"
26
- msgstr "Navn"
27
-
28
- #: ../classes/base/class-wpfront-base-menu.php:57
29
- msgid "Version"
30
- msgstr "Version"
31
-
32
- #: ../classes/base/class-wpfront-base-menu.php:58
33
- msgid "Rating"
34
- msgstr "Vurdering"
35
-
36
- #: ../classes/base/class-wpfront-base-menu.php:59
37
- #: ../classes/class-wpfront-user-role-editor-nav-menu-walker.php:185
38
- msgid "Description"
39
- msgstr "Beskrivelse"
40
-
41
- #: ../classes/base/class-wpfront-base-menu.php:73
42
- #, php-format
43
- msgid "based on %s rating(s)"
44
- msgstr "baseret på %s vurdering(er)"
45
-
46
- #: ../classes/base/class-wpfront-base-menu.php:109
47
- msgid "Unable to communicate with WordPress.org"
48
- msgstr "Ikke i stand til at oprette forbindelse til WordPress.org"
49
-
50
- #: ../classes/base/class-wpfront-base-menu.php:127
51
- #: ../classes/base/class-wpfront-base-menu.php:221
52
- msgid "WPFront Plugins"
53
- msgstr "WPFront Plugins"
54
-
55
- #: ../classes/base/class-wpfront-base-menu.php:151
56
- #, php-format
57
- msgid "By %s"
58
- msgstr "Af %s"
59
-
60
- #: ../classes/base/class-wpfront-base-menu.php:158
61
- #, php-format
62
- msgid "More information about %s"
63
- msgstr "Mere information om %s"
64
-
65
- #: ../classes/base/class-wpfront-base-menu.php:158
66
- #: ../classes/class-wpfront-user-role-editor-go-pro.php:267
67
- msgid "Details"
68
- msgstr "Detaljer"
69
-
70
- #: ../classes/base/class-wpfront-base-menu.php:167
71
- #, php-format
72
- msgid "Install %s"
73
- msgstr "Installér %s"
74
-
75
- #: ../classes/base/class-wpfront-base-menu.php:167
76
- msgid "Install Now"
77
- msgstr "Installér Nu"
78
-
79
- #: ../classes/base/class-wpfront-base-menu.php:172
80
- #, php-format
81
- msgid "Update to version %s"
82
- msgstr "Opdatér til version %s"
83
-
84
- #: ../classes/base/class-wpfront-base-menu.php:172
85
- msgid "Update Now"
86
- msgstr "Opdatér nu"
87
-
88
- #: ../classes/base/class-wpfront-base-menu.php:177
89
- msgid "This plugin is already installed and is up to date"
90
- msgstr "Dette plugin er allerede installeret og er up to date"
91
-
92
- #: ../classes/base/class-wpfront-base-menu.php:177
93
- msgid "Installed"
94
- msgstr "Installeret"
95
-
96
- #: ../classes/base/class-wpfront-base-menu.php:179
97
- #: ../classes/base/class-wpfront-base.php:126
98
- #: ../classes/business-pro/class-wpfront-user-role-editor-business-pro.php:108
99
- #: ../classes/class-wpfront-user-role-editor-options.php:280
100
- #: ../classes/class-wpfront-user-role-editor.php:263
101
- msgid "Settings"
102
- msgstr "Indstillinger"
103
-
104
- #: ../classes/base/class-wpfront-base-menu.php:181
105
- #: ../classes/personal-pro/class-wpfront-user-role-editor-personal-pro.php:124
106
- #: ../templates/go-pro.php:71
107
- msgid "Activate"
108
- msgstr "Aktiver"
109
-
110
- #: ../classes/base/class-wpfront-base-menu.php:203
111
- #: ../classes/class-wpfront-user-role-editor.php:405
112
- msgid "Feedback"
113
- msgstr "Feedback"
114
-
115
- #: ../classes/base/class-wpfront-base-menu.php:220
116
- msgid "WPFront"
117
- msgstr "WPFront"
118
-
119
- #: ../classes/base/class-wpfront-base-menu.php:221
120
- msgid "All Plugins"
121
- msgstr "Alle Plugins"
122
-
123
- #: ../classes/base/class-wpfront-base.php:163
124
- #: ../classes/class-wpfront-user-role-editor.php:354
125
- msgid "You do not have sufficient permissions to access this page."
126
- msgstr "Du har ikke tilstrækkelige tilladelser til at se denne side."
127
-
128
- #: ../classes/base/class-wpfront-base.php:183
129
- msgid ""
130
- "If you have a caching plugin, clear the cache for the new settings to take "
131
- "effect."
132
- msgstr ""
133
- "Hvis du har en caching plugin, skal du rydde cachen for de nye indstillinger "
134
- "træder i kraft."
135
-
136
- #: ../classes/base/class-wpfront-base.php:230
137
- #: ../templates/personal-pro/menu-editor.php:232
138
- msgid "Save Changes"
139
- msgstr "Gem Ændringer"
140
-
141
- #: ../classes/business-pro/class-wpfront-user-role-editor-business-pro.php:85
142
- #: ../classes/business-pro/class-wpfront-user-role-editor-business-pro.php:88
143
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:80
144
- #: ../classes/class-wpfront-user-role-editor-add-remove-capability.php:152
145
- #: ../classes/class-wpfront-user-role-editor.php:258
146
- #: ../classes/class-wpfront-user-role-editor.php:271
147
- #: ../classes/personal-pro/class-wpfront-user-role-editor-content-shortcodes-list-table.php:87
148
- #: ../classes/personal-pro/class-wpfront-user-role-editor-content-shortcodes.php:431
149
- #: ../templates/add-remove-capability.php:85 ../templates/list-roles.php:43
150
- msgid "Roles"
151
- msgstr "Roller"
152
-
153
- #: ../classes/business-pro/class-wpfront-user-role-editor-business-pro.php:88
154
- #: ../classes/class-wpfront-user-role-editor-add-remove-capability.php:154
155
- #: ../classes/class-wpfront-user-role-editor.php:258
156
- #: ../templates/add-remove-capability.php:90
157
- msgid "All Roles"
158
- msgstr "Alle roller"
159
-
160
- #: ../classes/business-pro/class-wpfront-user-role-editor-business-pro.php:93
161
- #: ../classes/class-wpfront-user-role-editor.php:259
162
- #: ../templates/add-edit-role.php:41 ../templates/add-edit-role.php:140
163
- msgid "Add New Role"
164
- msgstr "Tilføj ny rolle"
165
-
166
- #: ../classes/business-pro/class-wpfront-user-role-editor-business-pro.php:93
167
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:83
168
- #: ../classes/class-wpfront-user-role-editor.php:259
169
- #: ../templates/add-edit-role.php:43 ../templates/list-roles.php:46
170
- #: ../templates/login-redirect.php:41
171
- #: ../templates/personal-pro/content-shortcodes.php:10
172
- msgid "Add New"
173
- msgstr "Tilføj ny"
174
-
175
- #: ../classes/business-pro/class-wpfront-user-role-editor-business-pro.php:98
176
- #: ../classes/class-wpfront-user-role-editor.php:260
177
- #: ../templates/restore-role.php:40
178
- msgid "Restore Role"
179
- msgstr "Genskab rolle"
180
-
181
- #: ../classes/business-pro/class-wpfront-user-role-editor-business-pro.php:98
182
- #: ../classes/class-wpfront-user-role-editor.php:260
183
- #: ../templates/restore-role.php:52
184
- msgid "Restore"
185
- msgstr "Genskab"
186
-
187
- #: ../classes/business-pro/class-wpfront-user-role-editor-business-pro.php:103
188
- #: ../templates/business-pro/sync-roles.php:15
189
- #: ../templates/business-pro/sync-roles.php:301
190
- msgid "Sync Roles"
191
- msgstr "Synkroniser roller"
192
-
193
- #: ../classes/business-pro/class-wpfront-user-role-editor-business-pro.php:103
194
- msgid "Sync"
195
- msgstr "Synkroniser"
196
-
197
- #: ../classes/business-pro/class-wpfront-user-role-editor-business-pro.php:114
198
- #: ../classes/class-wpfront-user-role-editor.php:244
199
- msgid "Go Pro"
200
- msgstr "Go Pro"
201
-
202
- #: ../classes/business-pro/class-wpfront-user-role-editor-business-pro.php:125
203
- msgid ""
204
- "You have a large network of sites (usually 10,000 or more sites). Roles "
205
- "functionalities will be CPU and memory intensive on large networks. Use the "
206
- "settings screen to turn on these CPU and memory intensive functionalities."
207
- msgstr ""
208
- "Du har et stort netværk af sites (sædvanligvis 10.000 eller flere). Rolle "
209
- "funktioner vil kræve meget CPU og hukommelse på store netværk. Brug "
210
- "indstillings-siden for at aktivere disse CPU hukommelse-intensive "
211
- "funktionaliteter."
212
-
213
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-add-edit.php:221
214
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:120
215
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:154
216
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:168
217
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-restore.php:88
218
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:227
219
- #: ../classes/class-wpfront-user-role-editor-add-edit.php:324
220
- #: ../classes/class-wpfront-user-role-editor-add-remove-capability.php:128
221
- #: ../classes/class-wpfront-user-role-editor-assign-roles.php:393
222
- #: ../classes/class-wpfront-user-role-editor-list.php:361
223
- #: ../classes/class-wpfront-user-role-editor-list.php:395
224
- #: ../classes/class-wpfront-user-role-editor-list.php:412
225
- #: ../classes/class-wpfront-user-role-editor-login-redirect.php:407
226
- #: ../classes/class-wpfront-user-role-editor-login-redirect.php:441
227
- #: ../classes/class-wpfront-user-role-editor-login-redirect.php:472
228
- #: ../classes/class-wpfront-user-role-editor-options.php:273
229
- #: ../classes/class-wpfront-user-role-editor-options.php:320
230
- #: ../classes/class-wpfront-user-role-editor-restore.php:168
231
- #: ../classes/personal-pro/class-wpfront-user-role-editor-bulk-edit-extended-permissions.php:313
232
- #: ../classes/personal-pro/class-wpfront-user-role-editor-bulk-edit.php:76
233
- #: ../classes/personal-pro/class-wpfront-user-role-editor-content-shortcodes.php:362
234
- #: ../classes/personal-pro/class-wpfront-user-role-editor-content-shortcodes.php:393
235
- #: ../classes/personal-pro/class-wpfront-user-role-editor-content-shortcodes.php:404
236
- #: ../classes/personal-pro/class-wpfront-user-role-editor-export.php:130
237
- #: ../classes/personal-pro/class-wpfront-user-role-editor-import.php:229
238
- #: ../classes/personal-pro/class-wpfront-user-role-editor-menu-editor.php:601
239
- msgid "Overview"
240
- msgstr "Overblik"
241
-
242
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-add-edit.php:223
243
- msgid "This screen allows you to add a new role within your network."
244
- msgstr ""
245
- "Denne side giver dig mulighed for at tilføje en ny rolle inden for dit "
246
- "netværk"
247
-
248
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-add-edit.php:226
249
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:125
250
- #: ../classes/class-wpfront-user-role-editor-add-edit.php:329
251
- #: ../classes/class-wpfront-user-role-editor-list.php:366
252
- msgid ""
253
- "You can copy capabilities from existing roles using the Copy from drop down "
254
- "list. Select the role you want to copy from, then click Apply to copy the "
255
- "capabilities. You can select or deselect capabilities even after you copy."
256
- msgstr ""
257
- "Du kan kopiere capabilities fra eksisterende roller ved at benytte “Kopier” "
258
- "fra drop-down listen. Vælg den rolle du ønsker at kopiere fra, klik så på "
259
- "“anvend” for at kopiere capabilities. Du kan vælge eller fravælge "
260
- "capabilities efter du har kopieret."
261
-
262
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-add-edit.php:231
263
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:130
264
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:185
265
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-roles-list-table.php:170
266
- #: ../classes/class-wpfront-user-role-editor-add-edit.php:334
267
- #: ../classes/class-wpfront-user-role-editor-list.php:225
268
- #: ../classes/class-wpfront-user-role-editor-list.php:371
269
- #: ../classes/class-wpfront-user-role-editor-list.php:424
270
- #: ../templates/add-edit-role.php:77
271
- msgid "Display Name"
272
- msgstr "Visnings navn"
273
-
274
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-add-edit.php:233
275
- #: ../classes/class-wpfront-user-role-editor-add-edit.php:336
276
- msgid ""
277
- "Use the Display Name field to set the display name for the new role. "
278
- "WordPress uses display name to display this role within your site. This "
279
- "field is required."
280
- msgstr ""
281
- "Brug Visnings-navn feltet for at vælge et visnings-navn for den nye rolle. "
282
- "Wordpress anvender visnings-navn til at vise denne rolle. Feltet skal "
283
- "udfyldes."
284
-
285
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-add-edit.php:238
286
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:137
287
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:180
288
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-roles-list-table.php:169
289
- #: ../classes/class-wpfront-user-role-editor-add-edit.php:341
290
- #: ../classes/class-wpfront-user-role-editor-list.php:228
291
- #: ../classes/class-wpfront-user-role-editor-list.php:378
292
- #: ../classes/class-wpfront-user-role-editor-list.php:429
293
- #: ../templates/add-edit-role.php:87
294
- msgid "Role Name"
295
- msgstr "Rolle navn"
296
-
297
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-add-edit.php:240
298
- #: ../classes/class-wpfront-user-role-editor-add-edit.php:343
299
- msgid ""
300
- "Use the Role Name field to set the role name for the new role. WordPress "
301
- "uses role name to identify this role within your site. Once set role name "
302
- "cannot be changed. This field is required. This plugin will auto populate "
303
- "role name from the display name you have given, but you can change it."
304
- msgstr ""
305
- "Brug rolle-navn feltet til at sætte rolle-navnet for den nye rolle. "
306
- "Wordpress bruger rolle-navnet til at identificere denne rolle på websiden. "
307
- "Når først rolle-navnet er arkiveret skan det IKKE ændres. Dette felt SKAL "
308
- "udfyldes. Dette plugin udfylder automatisk dette felt udfra dit indtastede "
309
- "visnings-navn. Men du kan godt ændre det inden du arkiverer"
310
-
311
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-add-edit.php:245
312
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:144
313
- #: ../classes/class-wpfront-user-role-editor-add-edit.php:348
314
- #: ../classes/class-wpfront-user-role-editor-list.php:240
315
- #: ../classes/class-wpfront-user-role-editor-list.php:385
316
- #: ../classes/class-wpfront-user-role-editor-list.php:449
317
- #: ../templates/add-edit-role.php:101
318
- msgid "Capabilities"
319
- msgstr "Capabilities"
320
-
321
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-add-edit.php:247
322
- #: ../classes/class-wpfront-user-role-editor-add-edit.php:350
323
- msgid ""
324
- "Capabilities are displayed as different groups for easy access. The Roles "
325
- "section displays capabilities created by this plugin. The Other Capabilities "
326
- "section displays non-standard capabilities within your site. These are "
327
- "usually created by plugins and themes. Use the check boxes to select the "
328
- "capabilities required for this new role."
329
- msgstr ""
330
- "Capabilities er vist gruppevis for hurtig adgang. Rolle sektionen viser "
331
- "capabilities oprettet af dette plugin. De andre-capabilities sektion viser "
332
- "ikke-standard capabilities på dit site. Disse er sædvanligvis oprettet af "
333
- "plugins og temaer. Brug check-boksene for at vælge de capabilities, der "
334
- "kræves for denne nye rolle."
335
-
336
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-add-edit.php:256
337
- msgid "Documentation on Multisite Add New Role"
338
- msgstr "Dokumentation af Multisite Tilføj ny rolle"
339
-
340
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:92
341
- #: ../templates/list-roles.php:73 ../templates/list-roles.php:75
342
- msgid "Search Roles"
343
- msgstr "Søg blandt roller"
344
-
345
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:122
346
- msgid "This screen allows you to edit a role within your network."
347
- msgstr ""
348
- "Denne side giver dig mulighed for at redigere en rolle indenfor dit netværk."
349
-
350
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:132
351
- #: ../classes/class-wpfront-user-role-editor-list.php:373
352
- msgid ""
353
- "Use the Display Name field to edit display name of the role. WordPress uses "
354
- "display name to display this role within your site. This field is required."
355
- msgstr ""
356
- "Brug Visnings-navn feltet for at redigere visnings-navn for rollen. "
357
- "Wordpress anvender visnings-navn til at vise denne rolle. Feltet skal "
358
- "udfyldes."
359
-
360
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:139
361
- #: ../classes/class-wpfront-user-role-editor-list.php:380
362
- msgid ""
363
- "Role Name is read only. WordPress uses role name to identify this role "
364
- "within your site."
365
- msgstr ""
366
- "Rolle-navn er read-only. Wordpress bruger rolle-navn til at identificere "
367
- "denne rolle."
368
-
369
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:146
370
- #: ../classes/class-wpfront-user-role-editor-list.php:387
371
- msgid ""
372
- "Capabilities are displayed as different groups for easy access. The Roles "
373
- "section displays capabilities created by this plugin. The Other Capabilities "
374
- "section displays non-standard capabilities within your site. These are "
375
- "usually created by plugins and themes. Use the check boxes to select the "
376
- "capabilities required."
377
- msgstr ""
378
- "Capabilities bliver vist i forskellige grupper for lettere overblik. Rolle-"
379
- "sektionen viser capabilities som er oprettet af dette plugin. Den anden "
380
- "capabilities sektion viser ikke-standard capabilities. Disse er sædvanligvis "
381
- "oprettet af plugins og themes. Benyt check-boxene til at vælge de fornødne "
382
- "capabilities."
383
-
384
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:156
385
- msgid "This screen allows you to delete roles from your network sites."
386
- msgstr "Denne side giver dig mulighed for at slette roller."
387
-
388
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:159
389
- #: ../classes/class-wpfront-user-role-editor-list.php:400
390
- msgid ""
391
- "Use the Roles List screen to select the roles you want to delete. You can "
392
- "delete individual roles using the Delete row action link or delete multiple "
393
- "roles at the same time using the bulk action."
394
- msgstr ""
395
- "Brug Rolle-liste siden til at vælge de roller du vil slette. Du kan slette "
396
- "enkelte roller ved at bruge “Slet” action-linket eller slette flere på een "
397
- "gang vha bulk-action feltet."
398
-
399
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:170
400
- msgid ""
401
- "This screen displays all the roles existing within your multisite network."
402
- msgstr ""
403
- "Denne side viser alle de roller er eksisterer på din wordpress installation."
404
-
405
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:173
406
- #: ../classes/class-wpfront-user-role-editor-list.php:417
407
- msgid ""
408
- "To add a new role, click the Add New button at the top of the screen or Add "
409
- "New in the Roles menu section."
410
- msgstr ""
411
- "For at tilføje en ny rolle: Klik på “Tilføj ny” knappen i toppen af siden "
412
- "eller på “Tilføj ny” i “Roller”-menuen."
413
-
414
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:178
415
- #: ../classes/class-wpfront-user-role-editor-list.php:422
416
- #: ../classes/class-wpfront-user-role-editor-login-redirect.php:417
417
- #: ../classes/personal-pro/class-wpfront-user-role-editor-content-shortcodes.php:414
418
- msgid "Columns"
419
- msgstr "Kolonner"
420
-
421
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:182
422
- #: ../classes/class-wpfront-user-role-editor-list.php:431
423
- msgid "Is used by WordPress to identify this role."
424
- msgstr "Bruges af Wordpress til at identificere denne rolle."
425
-
426
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:187
427
- msgid ""
428
- "WordPress uses display name to display this role within the site. You can "
429
- "have different display names for the same role within the network."
430
- msgstr ""
431
- "WordPress bruger visnings-navn til at vise denne rolle indenfor denne "
432
- "webside. Du kan have flere visningsnavne for den samme rolle inden for dette "
433
- "netværk."
434
-
435
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:190
436
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-roles-list-table.php:171
437
- msgid "Role Type"
438
- msgstr "Rolle type"
439
-
440
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:192
441
- msgid "Displays whether that role is a built-in role or a custom role."
442
- msgstr ""
443
- "Viser om en roller er en “indbygget” rolle eller en speciel oprettet rolle"
444
-
445
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:195
446
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-roles-list-table.php:172
447
- msgid "Sites"
448
- msgstr "Sites"
449
-
450
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:197
451
- msgid ""
452
- "Display the sites that role belongs to. [All Sites] mean, that role is part "
453
- "of every site within the network. Else it will display the number of sites "
454
- "as a link. Clicking on the link will display the site list."
455
- msgstr ""
456
- "Viser hvilke sites, denne rollen tilhører. [All Sites] betyder at rollen "
457
- "gælder alle sites i netværket. Ellers vises antal af sites som et link. Ved "
458
- "at klikke på linket vises listen af sites."
459
-
460
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:202
461
- #: ../classes/class-wpfront-user-role-editor-list.php:461
462
- #: ../classes/personal-pro/class-wpfront-user-role-editor-content-shortcodes.php:438
463
- msgid "Actions"
464
- msgstr "Handlinger"
465
-
466
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:204
467
- #: ../classes/class-wpfront-user-role-editor-list.php:463
468
- msgid ""
469
- "Hovering over a row in the roles list will display action links that allow "
470
- "you to manage roles. You can perform the following actions:"
471
- msgstr ""
472
- "Hvis du holder markøren over en række i listen af roller, kan du se links "
473
- "til at håndtere dine roller. Du kan udføre følgende handlinger:"
474
-
475
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:207
476
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-roles-list-table.php:231
477
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-roles-list-table.php:281
478
- #: ../classes/class-wpfront-user-role-editor-list.php:466
479
- #: ../templates/list-roles.php:109
480
- msgid "View"
481
- msgstr "Vis"
482
-
483
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:209
484
- #: ../classes/class-wpfront-user-role-editor-list.php:468
485
- msgid ""
486
- "Display details about the role. You can see the capabilities assigned for "
487
- "that role. View link will only appear when you do not have permission to "
488
- "edit that role."
489
- msgstr ""
490
- "Vis detaljer for denne rolle. Du kan se de capabilities, der er tildelt "
491
- "denne rolle. “Vis”-link vil kun fremgå, hvis du ikke har rettigheder til at "
492
- "redigere i den rolle."
493
-
494
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:212
495
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-roles-list-table.php:228
496
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-roles-list-table.php:269
497
- #: ../classes/class-wpfront-user-role-editor-list.php:471
498
- #: ../classes/class-wpfront-user-role-editor-login-redirect-list-table.php:148
499
- #: ../classes/personal-pro/class-wpfront-user-role-editor-content-shortcodes-list-table.php:146
500
- #: ../classes/personal-pro/class-wpfront-user-role-editor-content-shortcodes.php:443
501
- #: ../templates/list-roles.php:109
502
- #: ../templates/personal-pro/post-type-permissions.php:34
503
- msgid "Edit"
504
- msgstr "Rediger"
505
-
506
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:214
507
- #: ../classes/class-wpfront-user-role-editor-list.php:473
508
- msgid ""
509
- "Allows you to edit that role. You can see the capabilities assigned for that "
510
- "role and also edit them. Edit link will only appear when you have permission "
511
- "to edit that role."
512
- msgstr ""
513
- "Giver dit ret til at redigere denne rolle. Du kan se de capabilities, som er "
514
- "tildelt denne rolle, og også redigere dem. “Rediger”-link vil kun fremgå, "
515
- "når du har rettighed til at redigere denne rolle."
516
-
517
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:217
518
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-roles-list-table.php:119
519
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-roles-list-table.php:229
520
- #: ../classes/class-wpfront-user-role-editor-list.php:260
521
- #: ../classes/class-wpfront-user-role-editor-list.php:476
522
- #: ../classes/class-wpfront-user-role-editor-login-redirect-list-table.php:62
523
- #: ../classes/class-wpfront-user-role-editor-login-redirect-list-table.php:151
524
- #: ../classes/personal-pro/class-wpfront-user-role-editor-content-shortcodes-list-table.php:62
525
- #: ../classes/personal-pro/class-wpfront-user-role-editor-content-shortcodes-list-table.php:149
526
- #: ../classes/personal-pro/class-wpfront-user-role-editor-content-shortcodes.php:448
527
- #: ../templates/list-roles.php:112
528
- #: ../templates/personal-pro/post-type-permissions.php:35
529
- msgid "Delete"
530
- msgstr "Slet"
531
-
532
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:219
533
- msgid "Allows you to delete that role."
534
- msgstr "Giver dig mulighed for at slette denne rolle"
535
-
536
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:231
537
- msgid "Documentation on Multisite Edit Role"
538
- msgstr "Dokumentation af Multisite Rediger Rolle"
539
-
540
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:238
541
- msgid "Documentation on Multisite Delete Roles"
542
- msgstr "Dokumentation af Multisite Slet Roller"
543
-
544
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:246
545
- msgid "Documentation on Multisite Roles"
546
- msgstr "Dokumentation af Multisite Roller"
547
-
548
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-restore.php:48
549
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-restore.php:77
550
- #: ../classes/class-wpfront-user-role-editor-go-pro.php:213
551
- #: ../classes/class-wpfront-user-role-editor-go-pro.php:215
552
- #: ../classes/class-wpfront-user-role-editor-go-pro.php:239
553
- #: ../classes/class-wpfront-user-role-editor-go-pro.php:265
554
- #: ../classes/class-wpfront-user-role-editor-go-pro.php:274
555
- #: ../classes/class-wpfront-user-role-editor-restore.php:87
556
- #: ../templates/add-edit-role.php:51 ../templates/add-edit-role.php:59
557
- #: ../templates/business-pro/sync-roles.php:21
558
- #: ../templates/personal-pro/content-shortcodes.php:23
559
- msgid "ERROR"
560
- msgstr "Fejl"
561
-
562
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-restore.php:48
563
- #: ../classes/class-wpfront-user-role-editor-assign-roles.php:216
564
- msgid "Permission denied."
565
- msgstr "Tilladelse ikke givet."
566
-
567
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-restore.php:75
568
- msgid "Partial Failure"
569
- msgstr "Delvis fejl"
570
-
571
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-restore.php:90
572
- #: ../classes/class-wpfront-user-role-editor-restore.php:170
573
- msgid ""
574
- "This screen allow you to restore WordPress built-in roles to its standard "
575
- "capability settings."
576
- msgstr ""
577
- "This side giver mulighed for at genskabe WordPress indbyggede roller til "
578
- "deres standard indstillinger."
579
-
580
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-restore.php:93
581
- #: ../classes/class-wpfront-user-role-editor-restore.php:173
582
- msgid "To restore a role, click the Restore button then Confirm."
583
- msgstr "For at genskabe en rolle, klik på “Genskab” knappen og konfirmér så."
584
-
585
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-restore.php:102
586
- msgid "Documentation on Multisite Restore"
587
- msgstr "Dokumentation af Multisite Genskab"
588
-
589
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-roles-list-table.php:125
590
- msgid "No roles found."
591
- msgstr "Ingen roller fundet."
592
-
593
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-roles-list-table.php:151
594
- #, php-format
595
- msgid "All <span class=\"count\">(%s)</span>"
596
- msgstr "Alle <span class=\"count\">(%s)</span>"
597
-
598
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-roles-list-table.php:154
599
- #, php-format
600
- msgid "Built-In <span class=\"count\">(%s)</span>"
601
- msgstr "Indbygget <span class=\"count\">(%s)</span>"
602
-
603
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-roles-list-table.php:157
604
- #, php-format
605
- msgid "Custom <span class=\"count\">(%s)</span>"
606
- msgstr "Specielle <span class=\"count\">(%s)</span>"
607
-
608
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-roles-list-table.php:207
609
- #: ../classes/class-wpfront-user-role-editor-login-redirect-list-table.php:122
610
- #: ../classes/personal-pro/class-wpfront-user-role-editor-content-shortcodes-list-table.php:121
611
- #: ../templates/personal-pro/menu-editor.php:161
612
- #: ../templates/personal-pro/menu-editor.php:197
613
- #, php-format
614
- msgid "Select %s"
615
- msgstr "Vælg %s"
616
-
617
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-roles-list-table.php:253
618
- msgid "[All Sites]"
619
- msgstr "[Alle sites]"
620
-
621
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-roles-list-table.php:255
622
- #, php-format
623
- msgid "%d Site(s)"
624
- msgstr "%d site(s)"
625
-
626
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:60
627
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:68
628
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:87
629
- msgid "Source site not selected."
630
- msgstr "Kilde-site ikke valgt."
631
-
632
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:71
633
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:90
634
- msgid "Destination type not selected."
635
- msgstr "Destinations type valgt."
636
-
637
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:78
638
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:97
639
- msgid "Destination sites not selected."
640
- msgstr "Destinations sites ikke valgt."
641
-
642
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:229
643
- msgid "This screen allows you to sync the roles between the network."
644
- msgstr ""
645
- "Denne side giver mulighed for at synkronisere rollerne indenfor netværket."
646
-
647
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:232
648
- msgid ""
649
- "You will select a site as source, then sync the roles to selected sites or "
650
- "entire sites within the network."
651
- msgstr ""
652
- "Du vælger et site som kilde, så synkroniserer du rollerne til valgte sites "
653
- "or alle sites indenfor netværket."
654
-
655
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:237
656
- msgid "Step 1"
657
- msgstr "Trin 1"
658
-
659
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:239
660
- msgid "Select source site."
661
- msgstr "Vælg kilde site."
662
-
663
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:242
664
- msgid "You will select the source site in this step."
665
- msgstr "Du vælger kilde-sitet i dette trin."
666
-
667
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:247
668
- msgid "Step 2"
669
- msgstr "Trin 2"
670
-
671
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:249
672
- msgid "Select destination sites."
673
- msgstr "Vælg destinations-sites."
674
-
675
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:252
676
- msgid "You will select the destination sites in this step."
677
- msgstr "Du vælger destinations-sites i dette trin."
678
-
679
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:255
680
- msgid ""
681
- "Use \"All Sites\" to select all the sites within the network or you can "
682
- "select individual sites using \"Selected Sites\"."
683
- msgstr ""
684
- "Brug \"Alle Sites\" for at vælge alle sites indenfor netværket, eller du kan "
685
- "vælge individuelle sites ved at benytte “Valgte sites”."
686
-
687
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:260
688
- msgid "Step 3"
689
- msgstr "Trin 3"
690
-
691
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:262
692
- msgid "Choose settings."
693
- msgstr "Vælg indstillinger."
694
-
695
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:265
696
- #: ../templates/business-pro/sync-roles.php:226
697
- msgid "Add roles existing only in source"
698
- msgstr "Tilføj kun roller, der eksisterer i kilden"
699
-
700
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:267
701
- msgid ""
702
- "Roles existing in source and do not existing in destination will be created."
703
- msgstr ""
704
- "Roller der eksisterer i kilden og som ikke eksisterer i destinationen bliver "
705
- "oprettet."
706
-
707
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:270
708
- #: ../templates/business-pro/sync-roles.php:231
709
- msgid "Overwrite existing roles"
710
- msgstr "Overskriv eksisterende roller"
711
-
712
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:272
713
- msgid ""
714
- "If the role from source already exists in destination, it will be "
715
- "overwritten."
716
- msgstr ""
717
- "Hvis rollen fra kilden allerede eksisterer i destinationen, bliver den "
718
- "overskrevet."
719
-
720
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:275
721
- #: ../templates/business-pro/sync-roles.php:236
722
- msgid "Remove roles existing only in destination"
723
- msgstr "Fjern roller der kun eksisterer i destinationen"
724
-
725
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:277
726
- msgid ""
727
- "If a role do not exist in source, but exists in destination it will be "
728
- "removed."
729
- msgstr ""
730
- "Hvis en rolle ikke eksisterer i kilden, men eksisterer i destinationen, vil "
731
- "den blive fjernet."
732
-
733
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:280
734
- #: ../templates/business-pro/sync-roles.php:241
735
- msgid "Update new user default role"
736
- msgstr "Opdater ny bruger standard-rolle"
737
-
738
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:282
739
- msgid ""
740
- "The destination new user default role will be updated as same as source."
741
- msgstr ""
742
- "Ny standard-rolle i destinationen vil blive opdateret til samme som kilden."
743
-
744
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:287
745
- msgid "Step 4"
746
- msgstr "Trin 4"
747
-
748
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:289
749
- msgid "Confirm and Sync"
750
- msgstr "Bekræft og synkroniser"
751
-
752
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:292
753
- msgid "You can verify your settings and start syncing."
754
- msgstr "Du kan bekræfte dine indstillinger og starte synkronisering."
755
-
756
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:295
757
- msgid "Click Sync Roles to start syncing."
758
- msgstr "Klik “Synkroniser Roller” for at starte synkronisering."
759
-
760
- #: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:304
761
- msgid "Documentation on Multisite Sync"
762
- msgstr "Dokumentation af Multisite Synkronisering"
763
-
764
- #: ../classes/class-wpfront-user-role-editor-add-edit.php:326
765
- msgid "This screen allows you to add a new role within your site."
766
- msgstr "Denne side giver mulighed for at tilføje en ny rolle på dit site."
767
-
768
- #: ../classes/class-wpfront-user-role-editor-add-edit.php:359
769
- msgid "Documentation on Add New Role"
770
- msgstr "Dokumentation af Tilføj Ny Rolle"
771
-
772
- #: ../classes/class-wpfront-user-role-editor-add-edit.php:378
773
- msgid "Uses 'Posts' capabilities."
774
- msgstr "Bruger 'Posts' capabilities."
775
-
776
- #: ../classes/class-wpfront-user-role-editor-add-edit.php:379
777
- #, php-format
778
- msgid "%s to customize capabilites."
779
- msgstr "%s til bruger-definere capabilites."
780
-
781
- #: ../classes/class-wpfront-user-role-editor-add-edit.php:379
782
- #: ../classes/class-wpfront-user-role-editor-nav-menu.php:105
783
- #: ../classes/class-wpfront-user-role-editor-widget-permissions.php:140
784
- msgid "Upgrade to Pro"
785
- msgstr "Upgrade to Pro"
786
-
787
- #: ../classes/class-wpfront-user-role-editor-add-remove-capability.php:108
788
- msgid "Roles updated."
789
- msgstr "Roller opdateret."
790
-
791
- #: ../classes/class-wpfront-user-role-editor-add-remove-capability.php:130
792
- msgid ""
793
- "This screen allows you to add a capability to roles or remove a capability "
794
- "from roles within your site."
795
- msgstr ""
796
- "Denne side giver mulighed for at tilføje en capability til roller eller "
797
- "fjerne en capability fra roller på dit site."
798
-
799
- #: ../classes/class-wpfront-user-role-editor-add-remove-capability.php:135
800
- #: ../templates/add-remove-capability.php:61
801
- msgid "Action"
802
- msgstr "Handling"
803
-
804
- #: ../classes/class-wpfront-user-role-editor-add-remove-capability.php:137
805
- msgid "Select \"Add Capability\" to add a capability to roles."
806
- msgstr "Vælg \"Add Capability\" for at tilføje en capability til roller."
807
-
808
- #: ../classes/class-wpfront-user-role-editor-add-remove-capability.php:140
809
- msgid "Select \"Remove Capability\" to remove a capability from roles."
810
- msgstr "Vlg \"Remove Capability\" for at fjerne en capability fra roller."
811
-
812
- #: ../classes/class-wpfront-user-role-editor-add-remove-capability.php:145
813
- #: ../templates/add-remove-capability.php:75
814
- #: ../templates/personal-pro/menu-editor.php:141
815
- msgid "Capability"
816
- msgstr "Capability"
817
-
818
- #: ../classes/class-wpfront-user-role-editor-add-remove-capability.php:147
819
- msgid "Use the Capability field to name the capability to be added or removed."
820
- msgstr ""
821
- "Brug Capability feltet for at angive den capability der skal tilføjes eller "
822
- "fjernes."
823
-
824
- #: ../classes/class-wpfront-user-role-editor-add-remove-capability.php:155
825
- msgid ""
826
- "Select \"All Roles\", if you want the current action to be applied to all "
827
- "roles within your site."
828
- msgstr ""
829
- "Vælg \"Alle Roller”, hvis du ønsker at denne handling skal omfatte alle "
830
- "roller på dit site."
831
-
832
- #: ../classes/class-wpfront-user-role-editor-add-remove-capability.php:158
833
- #: ../templates/add-remove-capability.php:92
834
- msgid "Selected Roles"
835
- msgstr "Valgte roller"
836
-
837
- #: ../classes/class-wpfront-user-role-editor-add-remove-capability.php:159
838
- msgid ""
839
- "Select \"Selected Roles\", if you want to individually select the roles. "
840
- "When this option is selected, \"Administrator\" role is included by default "
841
- "on \"Add Capability\" action and excluded by default on \"Remove Capability"
842
- "\" action."
843
- msgstr ""
844
- "Vælg “Valgte roller”, hvis du individuelt vil vælge rollerne. Når denne "
845
- "mulighed anvendes, er \"Administrator\" rollen inkluderet som standard ved "
846
- "“Tilføj Capability\" handlingen og ekskluderet som standard ved “Fjern "
847
- "Capability\" handlingen."
848
-
849
- #: ../classes/class-wpfront-user-role-editor-add-remove-capability.php:168
850
- msgid "Documentation on Add/Remove Capability"
851
- msgstr "Dokumentation af Tilføj/Fjern Capability"
852
-
853
- #: ../classes/class-wpfront-user-role-editor-assign-roles.php:66
854
- #: ../classes/class-wpfront-user-role-editor-assign-roles.php:367
855
- msgid "Secondary Roles"
856
- msgstr "Sekundære roller"
857
-
858
- #: ../classes/class-wpfront-user-role-editor-assign-roles.php:81
859
- #: ../classes/class-wpfront-user-role-editor-assign-roles.php:400
860
- #: ../templates/assign-roles.php:42 ../templates/assign-roles.php:94
861
- msgid "Assign Roles"
862
- msgstr "Tildel roller"
863
-
864
- #: ../classes/class-wpfront-user-role-editor-assign-roles.php:183
865
- msgid "No role for this site"
866
- msgstr "Ingen rolle for dette site"
867
-
868
- #: ../classes/class-wpfront-user-role-editor-assign-roles.php:210
869
- msgid "Invalid user."
870
- msgstr "Ugyldig bruger."
871
-
872
- #: ../classes/class-wpfront-user-role-editor-assign-roles.php:245
873
- msgid "Roles updated successfully."
874
- msgstr "Roller opdateret."
875
-
876
- #: ../classes/class-wpfront-user-role-editor-assign-roles.php:247
877
- msgid "Invalid primary role specified."
878
- msgstr "Ugyldig primære rolle angivet."
879
-
880
- #: ../classes/class-wpfront-user-role-editor-assign-roles.php:265
881
- #: ../classes/class-wpfront-user-role-editor-assign-roles.php:275
882
- msgid "Invalid primary role."
883
- msgstr "Ugyldig primære rolle."
884
-
885
- #: ../classes/class-wpfront-user-role-editor-assign-roles.php:297
886
- #, php-format
887
- msgid "%d user(s) migrated."
888
- msgstr "% d bruger(e) overført."
889
-
890
- #: ../classes/class-wpfront-user-role-editor-assign-roles.php:349
891
- msgid "Primary Role"
892
- msgstr "Primær rolle"
893
-
894
- #: ../classes/class-wpfront-user-role-editor-assign-roles.php:395
895
- msgid ""
896
- "This screen allows you to assign multiple roles to a user and also allows "
897
- "you to migrate users from a role to another role."
898
- msgstr ""
899
- "Denne side giver mulighed for at tildele flere roller til en bruger, og også "
900
- "mulighed for at overføre brugere fra een rolle til en anden rolle."
901
-
902
- #: ../classes/class-wpfront-user-role-editor-assign-roles.php:402
903
- msgid ""
904
- "To assign multiple roles to a user, select that user within the User drop "
905
- "down list and select the primary role you want for that user using the "
906
- "Primary Role drop down list. Select the secondary roles using the check "
907
- "boxes below, then click Assign Roles."
908
- msgstr ""
909
- "For at tildele flere roller til en bruger, vælg brugeren i drop-down listen, "
910
- "og så vælg den primære rolle for brugeren ved at vælge Primær Rolle drop-"
911
- "down listen. Væg de sekundære roller ved at afmæke check-boksene nedenfor, "
912
- "og klik derefter “Tildel roller”."
913
-
914
- #: ../classes/class-wpfront-user-role-editor-assign-roles.php:407
915
- #: ../templates/assign-roles.php:99 ../templates/assign-roles.php:132
916
- msgid "Migrate Users"
917
- msgstr "Overfør brugere"
918
-
919
- #: ../classes/class-wpfront-user-role-editor-assign-roles.php:409
920
- msgid ""
921
- "To migrate users from one role to another role or to add secondary roles to "
922
- "users belonging to a particular primary role, use the migrate users "
923
- "functionality."
924
- msgstr ""
925
- "For at overføre brugere fra en rolle til en anden eller for at tilføje "
926
- "sekundære roller til brugere med en specifik primær rolle, brug “overfør "
927
- "brugere” funktionen."
928
-
929
- #: ../classes/class-wpfront-user-role-editor-assign-roles.php:412
930
- msgid ""
931
- "Select the users using the From Primary Role drop down, to primary role "
932
- "using the Primary Role drop down and secondary roles using the check boxes "
933
- "then click Migrate Users."
934
- msgstr ""
935
- "Vælg brugerne i “Fra primær rolle” drop-down listen, og “Til primær rolle” "
936
- "drop-down listen, og sekundære roller ved at afmærke check-boksene - og klik "
937
- "så “Overfør brugere”."
938
-
939
- #: ../classes/class-wpfront-user-role-editor-assign-roles.php:421
940
- msgid "Documentation on Assign / Migrate Users"
941
- msgstr "Dokumentation af Tildel / Overfør brugere"
942
-
943
- #: ../classes/class-wpfront-user-role-editor-controller-base.php:87
944
- msgid "Links:"
945
- msgstr "Links:"
946
-
947
- #: ../classes/class-wpfront-user-role-editor-controller-base.php:93
948
- msgid "FAQ"
949
- msgstr "FAQ"
950
-
951
- #: ../classes/class-wpfront-user-role-editor-controller-base.php:94
952
- msgid "Support"
953
- msgstr "Support"
954
-
955
- #: ../classes/class-wpfront-user-role-editor-controller-base.php:95
956
- msgid "Review"
957
- msgstr "Gense"
958
-
959
- #: ../classes/class-wpfront-user-role-editor-controller-base.php:96
960
- msgid "Contact"
961
- msgstr "Kontakt"
962
-
963
- #: ../classes/class-wpfront-user-role-editor-go-pro.php:213
964
- msgid "License key activation limit reached."
965
- msgstr "Licensnøgle aktivering grænse nået."
966
-
967
- #: ../classes/class-wpfront-user-role-editor-go-pro.php:213
968
- #: ../templates/options-template.php:47
969
- msgid "More information"
970
- msgstr "Mere information"
971
-
972
- #: ../classes/class-wpfront-user-role-editor-go-pro.php:215
973
- msgid "Invalid license key"
974
- msgstr "Ugyldig licensnøgle"
975
-
976
- #: ../classes/class-wpfront-user-role-editor-go-pro.php:239
977
- msgid "Unable to deactivate, expired license?"
978
- msgstr "Kan ikke deaktivere, udløbet licens?"
979
-
980
- #: ../classes/class-wpfront-user-role-editor-go-pro.php:265
981
- msgid "Unable to contact wpfront.com"
982
- msgstr "Kan ikke kontakte wpfront.com"
983
-
984
- #: ../classes/class-wpfront-user-role-editor-go-pro.php:274
985
- msgid "Unable to parse response"
986
- msgstr "Kan ikke tolke respons"
987
-
988
- #: ../classes/class-wpfront-user-role-editor-go-pro.php:341
989
- msgid "Site"
990
- msgstr "Site"
991
-
992
- #: ../classes/class-wpfront-user-role-editor-go-pro.php:342
993
- msgid "Product"
994
- msgstr "Produkt"
995
-
996
- #: ../classes/class-wpfront-user-role-editor-go-pro.php:346
997
- msgid ""
998
- "Your WPFront User Role Editor Pro license was activated on the following "
999
- "site."
1000
- msgstr ""
1001
- "Din WPFront Bruger Rolle Editor Pro licens blev aktiveret på følgende site."
1002
-
1003
- #: ../classes/class-wpfront-user-role-editor-go-pro.php:347
1004
- msgid "WPFront User Role Editor Pro License Activated"
1005
- msgstr "WPFront Bruger Rolle Editor Pro Licens Aktiveret"
1006
-
1007
- #: ../classes/class-wpfront-user-role-editor-go-pro.php:349
1008
- msgid "Activated By"
1009
- msgstr "Aktiveret af"
1010
-
1011
- #: ../classes/class-wpfront-user-role-editor-go-pro.php:350
1012
- msgid "Activated On"
1013
- msgstr "Aktiveret den"
1014
-
1015
- #: ../classes/class-wpfront-user-role-editor-go-pro.php:354
1016
- msgid ""
1017
- "Your WPFront User Role Editor Pro license was deactivated on the following "
1018
- "site."
1019
- msgstr ""
1020
- "Din WPFront Bruger Rolle Editor Pro licens blev deaktiveret på følgende site."
1021
-
1022
- #: ../classes/class-wpfront-user-role-editor-go-pro.php:355
1023
- #: ../classes/class-wpfront-user-role-editor-go-pro.php:367
1024
- msgid "WPFront User Role Editor Pro License Deactivated"
1025
- msgstr "WPFront Bruger Rolle Editor Pro Licens Deaktiveret"
1026
-
1027
- #: ../classes/class-wpfront-user-role-editor-go-pro.php:357
1028
- msgid "Deactivated By"
1029
- msgstr "Deaktiveret af"
1030
-
1031
- #: ../classes/class-wpfront-user-role-editor-go-pro.php:358
1032
- #: ../classes/class-wpfront-user-role-editor-go-pro.php:368
1033
- msgid "Deactivated On"
1034
- msgstr "Deaktiveret den"
1035
-
1036
- #: ../classes/class-wpfront-user-role-editor-go-pro.php:362
1037
- msgid ""
1038
- "Your WPFront User Role Editor Pro license is invalid on the following site. "
1039
- "Please activate a valid license immediately for the plugin to continue "
1040
- "working."
1041
- msgstr ""
1042
- "Din WPFront Bruger Rolle Editor Pro licens er ugyldig på følgende site. "
1043
- "Aktiver venligst en gyldig licens straks for at få plugin-et til at fungere."
1044
-
1045
- #: ../classes/class-wpfront-user-role-editor-go-pro.php:363
1046
- msgid "WPFront User Role Editor Pro Invalid License"
1047
- msgstr "WPFront Bruger Rolle Editor Pro Ugyldig Licens"
1048
-
1049
- #: ../classes/class-wpfront-user-role-editor-go-pro.php:366
1050
- msgid ""
1051
- "Your invalid WPFront User Role Editor Pro license was deactivated on the "
1052
- "following site. Please activate a valid license immediately for the plugin "
1053
- "to continue working."
1054
- msgstr ""
1055
- "Din WPFront Bruger Rolle Editor Pro licens er ugyldig på følgende site. "
1056
- "Aktiver venligst en gyldig licens straks for at få plugin-et til at fungere."
1057
-
1058
- #: ../classes/class-wpfront-user-role-editor-list.php:221
1059
- #: ../templates/add-edit-role.php:117
1060
- #: ../templates/personal-pro/menu-editor.php:132
1061
- msgid "Select All"
1062
- msgstr "Vælg alle"
1063
-
1064
- #: ../classes/class-wpfront-user-role-editor-list.php:231
1065
- #: ../classes/class-wpfront-user-role-editor-list.php:434
1066
- msgid "Type"
1067
- msgstr "Type"
1068
-
1069
- #: ../classes/class-wpfront-user-role-editor-list.php:234
1070
- #: ../classes/class-wpfront-user-role-editor-list.php:439
1071
- msgid "User Default"
1072
- msgstr "Bruger Standard"
1073
-
1074
- #: ../classes/class-wpfront-user-role-editor-list.php:237
1075
- #: ../classes/class-wpfront-user-role-editor-list.php:444
1076
- msgid "Users"
1077
- msgstr "Brugere"
1078
-
1079
- #: ../classes/class-wpfront-user-role-editor-list.php:258
1080
- msgid "Bulk Actions"
1081
- msgstr "Masse-handlinger"
1082
-
1083
- #: ../classes/class-wpfront-user-role-editor-list.php:263
1084
- #: ../templates/add-edit-role.php:113
1085
- #: ../templates/personal-pro/menu-editor.php:100
1086
- msgid "Apply"
1087
- msgstr "Anvend"
1088
-
1089
- #: ../classes/class-wpfront-user-role-editor-list.php:265
1090
- #, php-format
1091
- msgid "%s item(s)"
1092
- msgstr "%s emne(r)"
1093
-
1094
- #: ../classes/class-wpfront-user-role-editor-list.php:288
1095
- msgid "All"
1096
- msgstr "Alle"
1097
-
1098
- #: ../classes/class-wpfront-user-role-editor-list.php:302
1099
- msgid "Having Users"
1100
- msgstr "Har brugere"
1101
-
1102
- #: ../classes/class-wpfront-user-role-editor-list.php:308
1103
- msgid "No Users"
1104
- msgstr "Ingen brugere"
1105
-
1106
- #: ../classes/class-wpfront-user-role-editor-list.php:319
1107
- #: ../templates/list-roles.php:129
1108
- msgid "Built-In"
1109
- msgstr "Indbygget"
1110
-
1111
- #: ../classes/class-wpfront-user-role-editor-list.php:325
1112
- #: ../templates/list-roles.php:129
1113
- msgid "Custom"
1114
- msgstr "Speciel"
1115
-
1116
- #: ../classes/class-wpfront-user-role-editor-list.php:363
1117
- msgid "This screen allows you to edit a role within your site."
1118
- msgstr "Denne side giver mulighed for at redigere en rolle på dit site."
1119
-
1120
- #: ../classes/class-wpfront-user-role-editor-list.php:397
1121
- msgid "This screen allows you to delete roles from your WordPress site."
1122
- msgstr ""
1123
- "Denne side giver dig mulighed for at slette roller fra din WordPress site."
1124
-
1125
- #: ../classes/class-wpfront-user-role-editor-list.php:403
1126
- msgid ""
1127
- "You cannot delete administrator role, current user’s role and roles you do "
1128
- "not have permission to."
1129
- msgstr ""
1130
- "Du kan ikke slette administrator rolle, aktuelle brugers rolle og roller, du "
1131
- "har ikke tilladelse til."
1132
-
1133
- #: ../classes/class-wpfront-user-role-editor-list.php:414
1134
- msgid "This screen lists all the existing roles within your site."
1135
- msgstr "Denne skærm viser alle de eksisterende roller inden for dit site."
1136
-
1137
- #: ../classes/class-wpfront-user-role-editor-list.php:426
1138
- msgid "Used to display this role within this site."
1139
- msgstr "Bruges til at vise denne rolle på dette site."
1140
-
1141
- #: ../classes/class-wpfront-user-role-editor-list.php:436
1142
- msgid ""
1143
- "Says whether the role is a WordPress built-in role or not. There are five "
1144
- "built-in roles."
1145
- msgstr ""
1146
- "Siger, om rollen er en WordPress indbygget rolle eller ej. Der er fem "
1147
- "indbyggede roller."
1148
-
1149
- #: ../classes/class-wpfront-user-role-editor-list.php:441
1150
- msgid "Displays whether a role is the default role of a new user."
1151
- msgstr "Viser, om en rolle er standard rollen som ny bruger."
1152
-
1153
- #: ../classes/class-wpfront-user-role-editor-list.php:446
1154
- msgid "Number of users in that role."
1155
- msgstr "Antal brugere med denne rolle."
1156
-
1157
- #: ../classes/class-wpfront-user-role-editor-list.php:451
1158
- msgid "Number of capabilities that role have."
1159
- msgstr "Antal capabilities denne rolle har."
1160
-
1161
- #: ../classes/class-wpfront-user-role-editor-list.php:454
1162
- msgid "Menu Edited"
1163
- msgstr "Menu Redigeret"
1164
-
1165
- #: ../classes/class-wpfront-user-role-editor-list.php:456
1166
- msgid ""
1167
- "Displays whether the menu has been edited for this role. This is a pro "
1168
- "feature."
1169
- msgstr ""
1170
- "Viser, om menuen er blevet redigeret for denne rolle. Dette er en pro "
1171
- "funktion."
1172
-
1173
- #: ../classes/class-wpfront-user-role-editor-list.php:478
1174
- msgid ""
1175
- "Allows you to delete that role. Delete action will not appear if you do not "
1176
- "have permission to delete that role."
1177
- msgstr ""
1178
- "Gør det muligt at slette denne rolle. Slet handling vises ikke, hvis du ikke "
1179
- "har tilladelse til at slette denne rolle."
1180
-
1181
- #: ../classes/class-wpfront-user-role-editor-list.php:481
1182
- #: ../templates/list-roles.php:115
1183
- msgid "Default"
1184
- msgstr "Standard"
1185
-
1186
- #: ../classes/class-wpfront-user-role-editor-list.php:483
1187
- msgid ""
1188
- "Allows you to set that role as the default role for new user registration."
1189
- msgstr ""
1190
- "Lader dig indstille denne rolle som standard rolle for ny brugerregistrering."
1191
-
1192
- #: ../classes/class-wpfront-user-role-editor-list.php:486
1193
- #: ../classes/personal-pro/class-wpfront-user-role-editor-menu-editor.php:593
1194
- msgid "Edit Menu"
1195
- msgstr "Redigér menu"
1196
-
1197
- #: ../classes/class-wpfront-user-role-editor-list.php:488
1198
- msgid ""
1199
- "Takes you to the menu editor screen for that role. You need \"edit_role_menus"
1200
- "\" capability for this link to appear. This is a pro feature."
1201
- msgstr ""
1202
- "Takes you to the menu-editor siden for denne rolle. Du skal have "
1203
- "\"edit_role_menus\" capability for at se dette link. Dette er en pro feature."
1204
-
1205
- #: ../classes/class-wpfront-user-role-editor-list.php:500
1206
- msgid "Documentation on Edit Role"
1207
- msgstr "Dokumentation af Redigér Rolle"
1208
-
1209
- #: ../classes/class-wpfront-user-role-editor-list.php:507
1210
- msgid "Documentation on Delete Roles"
1211
- msgstr "Dokumentation af Slet Roller"
1212
-
1213
- #: ../classes/class-wpfront-user-role-editor-list.php:515
1214
- msgid "Documentation on Roles"
1215
- msgstr "Dokumentation af Roller"
1216
-
1217
- #: ../classes/class-wpfront-user-role-editor-login-redirect-list-table.php:68
1218
- msgid "No login redirects found."
1219
- msgstr "Ingen login omdirigeringer fundet."
1220
-
1221
- #: ../classes/class-wpfront-user-role-editor-login-redirect-list-table.php:84
1222
- #: ../classes/class-wpfront-user-role-editor.php:259
1223
- #: ../templates/delete-role.php:49 ../templates/login-redirect.php:99
1224
- msgid "Role"
1225
- msgstr "Rolle"
1226
-
1227
- #: ../classes/class-wpfront-user-role-editor-login-redirect-list-table.php:85
1228
- #: ../templates/login-redirect.php:125
1229
- msgid "Priority"
1230
- msgstr "Prioritet"
1231
-
1232
- #: ../classes/class-wpfront-user-role-editor-login-redirect-list-table.php:86
1233
- #: ../classes/class-wpfront-user-role-editor-nav-menu-walker.php:148
1234
- #: ../templates/login-redirect.php:133
1235
- msgid "URL"
1236
- msgstr "URL"
1237
-
1238
- #: ../classes/class-wpfront-user-role-editor-login-redirect-list-table.php:87
1239
- msgid "WP-ADMIN"
1240
- msgstr "WP-ADMIN"
1241
-
1242
- #: ../classes/class-wpfront-user-role-editor-login-redirect-list-table.php:88
1243
- msgid "Toolbar"
1244
- msgstr "Værktøjsbjælke"
1245
-
1246
- #: ../classes/class-wpfront-user-role-editor-login-redirect.php:216
1247
- msgid "Login redirect added."
1248
- msgstr "Login omdirigering tilføjet."
1249
-
1250
- #: ../classes/class-wpfront-user-role-editor-login-redirect.php:219
1251
- msgid "Login redirect updated."
1252
- msgstr "Login omdirigering opdateret."
1253
-
1254
- #: ../classes/class-wpfront-user-role-editor-login-redirect.php:222
1255
- msgid "This role is not supported."
1256
- msgstr "Denne rolle er ikke understøttet."
1257
-
1258
- #: ../classes/class-wpfront-user-role-editor-login-redirect.php:409
1259
- msgid ""
1260
- "Use this functionality to redirect a user to a specific page after they "
1261
- "login based on their role."
1262
- msgstr ""
1263
- "Bruge denne funktion til at omdirigere en bruger til en bestemt side, efter "
1264
- "at de login baseret på deres rolle."
1265
-
1266
- #: ../classes/class-wpfront-user-role-editor-login-redirect.php:412
1267
- msgid ""
1268
- "In addition, you can also deny the user access to WP-ADMIN and remove the "
1269
- "toolbar (admin bar) from the front end."
1270
- msgstr ""
1271
- "Derudover kan du også nægte brugeren adgang til WP-Admin og fjern "
1272
- "værktøjslinjen (admin bar) fra forenden."
1273
-
1274
- #: ../classes/class-wpfront-user-role-editor-login-redirect.php:419
1275
- #: ../classes/class-wpfront-user-role-editor-login-redirect.php:450
1276
- msgid "<b>Role</b>: The role of the user to qualify for this redirect."
1277
- msgstr "<b>Rolle:</b> bruger-rollen, som kvalificerer til denne omdirigering."
1278
-
1279
- #: ../classes/class-wpfront-user-role-editor-login-redirect.php:422
1280
- #: ../classes/class-wpfront-user-role-editor-login-redirect.php:453
1281
- msgid ""
1282
- "<b>Priority</b>: When a user has multiple roles, the role configuration with "
1283
- "the highest priority will be selected."
1284
- msgstr ""
1285
- "<b>Prioritet:</b> Når en bruger har flere roller, vil rolle konfigurationen "
1286
- "med den højeste prioritet vælges."
1287
-
1288
- #: ../classes/class-wpfront-user-role-editor-login-redirect.php:425
1289
- #: ../classes/class-wpfront-user-role-editor-login-redirect.php:456
1290
- msgid ""
1291
- "<b>URL</b>: The URL where the user will be redirected after login or on WP-"
1292
- "ADMIN access if denied."
1293
- msgstr ""
1294
- "<b>URL:</b> Den webadresse, hvor brugeren vil blive omdirigeret efter login "
1295
- "eller på WP-Admin adgang, hvis nægtet."
1296
-
1297
- #: ../classes/class-wpfront-user-role-editor-login-redirect.php:428
1298
- msgid "<b>WP-ADMIN</b>: Displays whether user has access to WP-ADMIN."
1299
- msgstr "<b>WP-Admin:</b> Viser, om brugeren har adgang til WP-Admin."
1300
-
1301
- #: ../classes/class-wpfront-user-role-editor-login-redirect.php:431
1302
- msgid "<b>Toolbar</b>: Displays whether user will see toolbar on front end."
1303
- msgstr ""
1304
- "<b>Værktøjslinje:</b> Viser, om brugeren vil se værktøjslinjen frontend."
1305
-
1306
- #: ../classes/class-wpfront-user-role-editor-login-redirect.php:443
1307
- msgid "Add/Edit a new login redirect."
1308
- msgstr "Tilføj / Rediger en ny login-omdirigering."
1309
-
1310
- #: ../classes/class-wpfront-user-role-editor-login-redirect.php:448
1311
- #: ../classes/personal-pro/class-wpfront-user-role-editor-menu-editor.php:614
1312
- msgid "Fields"
1313
- msgstr "Felter"
1314
-
1315
- #: ../classes/class-wpfront-user-role-editor-login-redirect.php:459
1316
- msgid ""
1317
- "<b>Deny WP-ADMIN</b>: If enabled user will be redirected to URL on WP-ADMIN "
1318
- "access."
1319
- msgstr ""
1320
- "<b>Afvis WP-Admin:</b> Hvis aktiveret brugeren vil blive omdirigeret til URL "
1321
- "med WP-Admin adgang."
1322
-
1323
- #: ../classes/class-wpfront-user-role-editor-login-redirect.php:462
1324
- msgid ""
1325
- "<b>Disable Toolbar</b>: If enabled user will not see toolbar on front end."
1326
- msgstr ""
1327
- "<b>Deaktiver Toolbar:</b> Hvis aktiveret brugeren ikke ser værktøjslinjen "
1328
- "frontend."
1329
-
1330
- #: ../classes/class-wpfront-user-role-editor-login-redirect.php:474
1331
- msgid "Click \"Confirm Delete\" to delete displayed configurations."
1332
- msgstr "Klik på “Bekræft Slet” for at slette de viste konfigurationer."
1333
-
1334
- #: ../classes/class-wpfront-user-role-editor-login-redirect.php:484
1335
- msgid "Documentation on Login Redirect"
1336
- msgstr "Dokumentation af Login Redirect"
1337
-
1338
- #: ../classes/class-wpfront-user-role-editor-nav-menu-walker.php:90
1339
- #, php-format
1340
- msgid "%s (Invalid)"
1341
- msgstr "%s (Ugyldig)"
1342
-
1343
- #: ../classes/class-wpfront-user-role-editor-nav-menu-walker.php:94
1344
- #, php-format
1345
- msgid "%s (Pending)"
1346
- msgstr "%s (Afventer)"
1347
-
1348
- #: ../classes/class-wpfront-user-role-editor-nav-menu-walker.php:107
1349
- msgid "sub item"
1350
- msgstr "under-emne"
1351
-
1352
- #: ../classes/class-wpfront-user-role-editor-nav-menu-walker.php:139
1353
- msgid "Edit Menu Item"
1354
- msgstr "Rediger Menupunkt"
1355
-
1356
- #: ../classes/class-wpfront-user-role-editor-nav-menu-walker.php:155
1357
- msgid "Navigation Label"
1358
- msgstr "Navigation Etiket"
1359
-
1360
- #: ../classes/class-wpfront-user-role-editor-nav-menu-walker.php:161
1361
- msgid "Title Attribute"
1362
- msgstr "Titel Attribut"
1363
-
1364
- #: ../classes/class-wpfront-user-role-editor-nav-menu-walker.php:168
1365
- msgid "Open link in a new window/tab"
1366
- msgstr "Åbn link i et nyt vindue / faneblad"
1367
-
1368
- #: ../classes/class-wpfront-user-role-editor-nav-menu-walker.php:173
1369
- msgid "CSS Classes (optional)"
1370
- msgstr "CSS Klasser (Valgfrit)"
1371
-
1372
- #: ../classes/class-wpfront-user-role-editor-nav-menu-walker.php:179
1373
- msgid "Link Relationship (XFN)"
1374
- msgstr "Link Relationship (XFN)"
1375
-
1376
- #: ../classes/class-wpfront-user-role-editor-nav-menu-walker.php:187
1377
- msgid ""
1378
- "The description will be displayed in the menu if the current theme supports "
1379
- "it."
1380
- msgstr ""
1381
- "Beskrivelsen vil blive vist i menuen, hvis det aktuelle tema understøtter "
1382
- "det."
1383
-
1384
- #: ../classes/class-wpfront-user-role-editor-nav-menu-walker.php:197
1385
- msgid "Move"
1386
- msgstr "Flyt"
1387
-
1388
- #: ../classes/class-wpfront-user-role-editor-nav-menu-walker.php:198
1389
- msgid "Up one"
1390
- msgstr "Et niveau op"
1391
-
1392
- #: ../classes/class-wpfront-user-role-editor-nav-menu-walker.php:199
1393
- msgid "Down one"
1394
- msgstr "Et niveau ned"
1395
-
1396
- #: ../classes/class-wpfront-user-role-editor-nav-menu-walker.php:202
1397
- msgid "To the top"
1398
- msgstr "Til toppen"
1399
-
1400
- #: ../classes/class-wpfront-user-role-editor-nav-menu-walker.php:209
1401
- #, php-format
1402
- msgid "Original: %s"
1403
- msgstr "Original: %s"
1404
-
1405
- #: ../classes/class-wpfront-user-role-editor-nav-menu-walker.php:222
1406
- msgid "Remove"
1407
- msgstr "Fjern"
1408
-
1409
- #: ../classes/class-wpfront-user-role-editor-nav-menu-walker.php:223
1410
- #: ../templates/restore-role.php:54
1411
- msgid "Cancel"
1412
- msgstr "Annullér"
1413
-
1414
- #: ../classes/class-wpfront-user-role-editor-nav-menu.php:84
1415
- #: ../classes/class-wpfront-user-role-editor-nav-menu.php:119
1416
- #: ../classes/class-wpfront-user-role-editor-widget-permissions.php:90
1417
- #: ../classes/personal-pro/class-wpfront-user-role-editor-content-shortcodes.php:247
1418
- #: ../templates/personal-pro/content-shortcodes-add-edit.php:42
1419
- msgid "All Users"
1420
- msgstr "Alle brugere"
1421
-
1422
- #: ../classes/class-wpfront-user-role-editor-nav-menu.php:88
1423
- #: ../classes/class-wpfront-user-role-editor-nav-menu.php:120
1424
- #: ../classes/class-wpfront-user-role-editor-widget-permissions.php:91
1425
- msgid "Logged in Users"
1426
- msgstr "Logget ind"
1427
-
1428
- #: ../classes/class-wpfront-user-role-editor-nav-menu.php:91
1429
- #: ../classes/class-wpfront-user-role-editor-nav-menu.php:121
1430
- #: ../classes/class-wpfront-user-role-editor-widget-permissions.php:92
1431
- #: ../classes/personal-pro/class-wpfront-user-role-editor-content-shortcodes.php:255
1432
- #: ../templates/personal-pro/content-shortcodes-add-edit.php:46
1433
- msgid "Guest Users"
1434
- msgstr "Gæste Brugere"
1435
-
1436
- #: ../classes/class-wpfront-user-role-editor-nav-menu.php:94
1437
- #: ../classes/class-wpfront-user-role-editor-nav-menu.php:122
1438
- #: ../classes/class-wpfront-user-role-editor-widget-permissions.php:93
1439
- msgid "Users by Role"
1440
- msgstr "Brugere efter Rolle"
1441
-
1442
- #: ../classes/class-wpfront-user-role-editor-nav-menu.php:105
1443
- #: ../classes/class-wpfront-user-role-editor-widget-permissions.php:140
1444
- #, php-format
1445
- msgid "%s to limit based on roles."
1446
- msgstr "%s for at begrænse baseret på roller."
1447
-
1448
- #: ../classes/class-wpfront-user-role-editor-nav-menu.php:117
1449
- #: ../classes/class-wpfront-user-role-editor-widget-permissions.php:88
1450
- msgid "User Restrictions"
1451
- msgstr "Bruger Begrænsninger"
1452
-
1453
- #: ../classes/class-wpfront-user-role-editor-options.php:275
1454
- msgid ""
1455
- "These settings are applicable for the network admin dashboard. Also these "
1456
- "settings will propagate to the individual sites unless its overridden within "
1457
- "that site’s settings."
1458
- msgstr ""
1459
- "Disse indstillinger gælder for netværket admin instrumentbrættet. Også disse "
1460
- "indstillinger vil forplante sig til de enkelte steder, medmindre det "
1461
- "tilsidesættes inden for dette site’s indstillinger."
1462
-
1463
- #: ../classes/class-wpfront-user-role-editor-options.php:282
1464
- #: ../templates/options-template.php:61
1465
- msgid "Enable Large Network Functionalities"
1466
- msgstr "Aktiver stort netværk Funktionaliteter"
1467
-
1468
- #: ../classes/class-wpfront-user-role-editor-options.php:284
1469
- msgid "This setting is only visible when you have a large network."
1470
- msgstr "Denne indstilling er kun synlig, når du har et stort netværk."
1471
-
1472
- #: ../classes/class-wpfront-user-role-editor-options.php:286
1473
- msgid "More details"
1474
- msgstr "Flere detaljer"
1475
-
1476
- #: ../classes/class-wpfront-user-role-editor-options.php:290
1477
- #: ../classes/class-wpfront-user-role-editor-options.php:322
1478
- #: ../templates/options-template.php:70
1479
- msgid "Display Deprecated Capabilities"
1480
- msgstr "Vis Forældede Capabilities"
1481
-
1482
- #: ../classes/class-wpfront-user-role-editor-options.php:292
1483
- #: ../classes/class-wpfront-user-role-editor-options.php:324
1484
- msgid ""
1485
- "If enabled, deprecated capabilities will be displayed within the add/edit "
1486
- "screens."
1487
- msgstr ""
1488
- "Hvis aktiveret, vil forældede kapaciteter blive vist inden Tilføj / Redigere "
1489
- "sider."
1490
-
1491
- #: ../classes/class-wpfront-user-role-editor-options.php:295
1492
- #: ../classes/class-wpfront-user-role-editor-options.php:327
1493
- #: ../templates/options-template.php:78
1494
- msgid "Remove Non-Standard Capabilities on Restore"
1495
- msgstr "Fjern ikke-standard capabilities ved Gendan"
1496
-
1497
- #: ../classes/class-wpfront-user-role-editor-options.php:297
1498
- #: ../classes/class-wpfront-user-role-editor-options.php:329
1499
- msgid ""
1500
- "If enabled, while restoring WordPress built-in capabilities non-standard "
1501
- "capabilities will be removed."
1502
- msgstr ""
1503
- "Hvis aktiveret, under genopretning af WordPress indbyggede capabilities, vil "
1504
- "ikke-standard capabilities blive fjernet."
1505
-
1506
- #: ../classes/class-wpfront-user-role-editor-options.php:300
1507
- #: ../classes/class-wpfront-user-role-editor-options.php:332
1508
- #: ../templates/options-template.php:86
1509
- msgid "Override Edit Permissions"
1510
- msgstr "Tilsidesæt Rediger tilladelser"
1511
-
1512
- #: ../classes/class-wpfront-user-role-editor-options.php:302
1513
- #: ../classes/class-wpfront-user-role-editor-options.php:334
1514
- msgid "If enabled, ignores the check to the function get_editable_roles."
1515
- msgstr "Hvis aktiveret, ignoreres check til funktionen get_editable_roles."
1516
-
1517
- #: ../classes/class-wpfront-user-role-editor-options.php:305
1518
- #: ../classes/class-wpfront-user-role-editor-options.php:337
1519
- #: ../templates/options-template.php:94
1520
- msgid "Disable Navigation Menu Permissions"
1521
- msgstr "Deaktiver Navigation-Menu Tilladelser"
1522
-
1523
- #: ../classes/class-wpfront-user-role-editor-options.php:307
1524
- #: ../classes/class-wpfront-user-role-editor-options.php:339
1525
- msgid "If enabled, disables navigation menu permissions functionality."
1526
- msgstr ""
1527
- "Hvis aktiveret, deaktiveres tilladelser til navigation-menu funktionalitet."
1528
-
1529
- #: ../classes/class-wpfront-user-role-editor-options.php:310
1530
- #: ../classes/class-wpfront-user-role-editor-options.php:342
1531
- #: ../templates/options-template.php:131
1532
- msgid "Remove Data on Uninstall"
1533
- msgstr "Fjern Data ved afinstallering"
1534
-
1535
- #: ../classes/class-wpfront-user-role-editor-options.php:312
1536
- #: ../classes/class-wpfront-user-role-editor-options.php:344
1537
- msgid ""
1538
- "If enabled, removes all data related to this plugin from database (except "
1539
- "roles data) including license information if any. This will not deactivate "
1540
- "the license automatically."
1541
- msgstr ""
1542
- "Hvis aktiveret, fjerner alle data relateret til dette plugin fra databasen "
1543
- "(undtagen rolle data), herunder oplysninger licens, hvis der er nogen. Dette "
1544
- "vil ikke deaktivere licensen automatisk."
1545
-
1546
- #: ../classes/class-wpfront-user-role-editor-options.php:355
1547
- msgid "Documentation on Multisite Settings"
1548
- msgstr "Dokumentation af Multisite Indstillinger"
1549
-
1550
- #: ../classes/class-wpfront-user-role-editor-options.php:362
1551
- msgid "Documentation on Settings"
1552
- msgstr "Dokumentation af Indstillinger"
1553
-
1554
- #: ../classes/class-wpfront-user-role-editor-restore.php:182
1555
- msgid "Documentation on Restore"
1556
- msgstr "Dokumentation af Gendan"
1557
-
1558
- #: ../classes/class-wpfront-user-role-editor.php:261
1559
- #: ../templates/add-remove-capability.php:40
1560
- msgid "Add/Remove Capability"
1561
- msgstr "Tilføj / fjern Capability"
1562
-
1563
- #: ../classes/class-wpfront-user-role-editor.php:261
1564
- msgid "Add/Remove Cap"
1565
- msgstr "Tilføj / fjern Cap"
1566
-
1567
- #: ../classes/class-wpfront-user-role-editor.php:262
1568
- #: ../templates/login-redirect.php:40
1569
- msgid "Login Redirect"
1570
- msgstr "Login omdirigering"
1571
-
1572
- #: ../classes/class-wpfront-user-role-editor.php:287
1573
- msgid "Assign Roles | Migrate Users"
1574
- msgstr "Tildel roller | Overfør Brugere"
1575
-
1576
- #: ../classes/class-wpfront-user-role-editor.php:287
1577
- msgid "Assign / Migrate"
1578
- msgstr "Tildel / Overfør"
1579
-
1580
- #: ../classes/class-wpfront-user-role-editor.php:407
1581
- msgid "Buy me a Beer"
1582
- msgstr "Køb en øl til mig"
1583
-
1584
- #: ../classes/personal-pro/EDD_SL_Plugin_Updater.php:158
1585
- #, php-format
1586
- msgid ""
1587
- "There is a new version of %1$s available. <a target=\"_blank\" class="
1588
- "\"thickbox\" href=\"%2$s\">View version %3$s details</a>."
1589
- msgstr ""
1590
- "Der er en ny version af %1$s til rådighed. <a target=“_blank” "
1591
- "class=“thickbox” href=“%2$s”>Se version %3$s detaljer</a>."
1592
-
1593
- #: ../classes/personal-pro/EDD_SL_Plugin_Updater.php:165
1594
- #, php-format
1595
- msgid ""
1596
- "There is a new version of %1$s available. <a target=\"_blank\" class="
1597
- "\"thickbox\" href=\"%2$s\">View version %3$s details</a> or <a href=\"%4$s"
1598
- "\">update now</a>."
1599
- msgstr ""
1600
- "There is a new version of %1$s available. <a target=“_blank” "
1601
- "class=“thickbox” href=“%2$s”>View version %3$s details</a> eller <a "
1602
- "href=“%4$s”>opdater nu</a>."
1603
-
1604
- #: ../classes/personal-pro/EDD_SL_Plugin_Updater.php:311
1605
- msgid "You do not have permission to install plugin updates"
1606
- msgstr "Du har ikke tilladelse til at installere plugin opdateringer"
1607
-
1608
- #: ../classes/personal-pro/class-wpfront-user-role-editor-bulk-edit-extended-permissions.php:195
1609
- #: ../classes/personal-pro/class-wpfront-user-role-editor-bulk-edit-extended-permissions.php:201
1610
- #: ../classes/personal-pro/class-wpfront-user-role-editor-bulk-edit-extended-permissions.php:209
1611
- #: ../classes/personal-pro/class-wpfront-user-role-editor-bulk-edit-extended-permissions.php:215
1612
- msgid "Post not found"
1613
- msgstr "Siden blev ikke fundet"
1614
-
1615
- #: ../classes/personal-pro/class-wpfront-user-role-editor-bulk-edit-extended-permissions.php:234
1616
- #: ../classes/personal-pro/class-wpfront-user-role-editor-bulk-edit-extended-permissions.php:238
1617
- msgid "Permission denied"
1618
- msgstr "Tilladelse nægtet"
1619
-
1620
- #: ../classes/personal-pro/class-wpfront-user-role-editor-bulk-edit-extended-permissions.php:315
1621
- msgid "Step 1: Select the post type you want to bulk edit."
1622
- msgstr "Trin 1: Vælg den type indlæg du vil masse-redigere."
1623
-
1624
- #: ../classes/personal-pro/class-wpfront-user-role-editor-bulk-edit-extended-permissions.php:318
1625
- msgid "Step 2: Select the posts you want to bulk edit."
1626
- msgstr "Trin 2: Vælg de indlæg du ønsker at masse-redigere."
1627
-
1628
- #: ../classes/personal-pro/class-wpfront-user-role-editor-bulk-edit-extended-permissions.php:321
1629
- #: ../templates/personal-pro/bulk-edit-extended-permissions.php:213
1630
- msgid "Step 3: Select the role permissions."
1631
- msgstr "Trin 3: Vælg rolle-tilladelser."
1632
-
1633
- #: ../classes/personal-pro/class-wpfront-user-role-editor-bulk-edit-extended-permissions.php:324
1634
- #: ../templates/personal-pro/bulk-edit-extended-permissions.php:244
1635
- msgid "Step 4: Update role permissions."
1636
- msgstr "Trin 4: Opdater rolle-tilladelser."
1637
-
1638
- #: ../classes/personal-pro/class-wpfront-user-role-editor-bulk-edit-extended-permissions.php:333
1639
- #: ../classes/personal-pro/class-wpfront-user-role-editor-bulk-edit.php:93
1640
- msgid "Documentation on Bulk Edit"
1641
- msgstr "Dokumentation af Masse-redigering (Bulk-edit)"
1642
-
1643
- #: ../classes/personal-pro/class-wpfront-user-role-editor-bulk-edit.php:78
1644
- msgid "This screen allows you to bulk edit role permissions."
1645
- msgstr "Denne side giver mulighed for at masse-redigere rolle-tilladelser."
1646
-
1647
- #: ../classes/personal-pro/class-wpfront-user-role-editor-bulk-edit.php:81
1648
- #: ../templates/personal-pro/bulk-edit.php:22
1649
- msgid "Add or remove capability"
1650
- msgstr "Tilføj eller fjern capability"
1651
-
1652
- #: ../classes/personal-pro/class-wpfront-user-role-editor-bulk-edit.php:81
1653
- msgid "Choose this option to add or remove capabilty from multiple roles."
1654
- msgstr ""
1655
- "Vælge denne mulighed for at tilføje eller fjerne capabilty fra flere roller."
1656
-
1657
- #: ../classes/personal-pro/class-wpfront-user-role-editor-bulk-edit.php:84
1658
- #: ../templates/personal-pro/bulk-edit.php:29
1659
- msgid "Extended permissions"
1660
- msgstr "Udvidede tilladelser"
1661
-
1662
- #: ../classes/personal-pro/class-wpfront-user-role-editor-bulk-edit.php:84
1663
- msgid "Choose this option to bulk edit post extended permissions."
1664
- msgstr ""
1665
- "Vælg denne mulighed for at masse-redigere udvidede tilladelser for indlæg."
1666
-
1667
- #: ../classes/personal-pro/class-wpfront-user-role-editor-content-shortcodes-list-table.php:68
1668
- msgid "No shortcodes found."
1669
- msgstr "Ingen shortcodes fundet."
1670
-
1671
- #: ../classes/personal-pro/class-wpfront-user-role-editor-content-shortcodes-list-table.php:85
1672
- #: ../classes/personal-pro/class-wpfront-user-role-editor-content-shortcodes.php:376
1673
- #: ../classes/personal-pro/class-wpfront-user-role-editor-content-shortcodes.php:421
1674
- #: ../templates/personal-pro/content-shortcodes-add-edit.php:25
1675
- #: ../templates/personal-pro/content-shortcodes-delete.php:34
1676
- msgid "Shortcode"
1677
- msgstr "Shortcode"
1678
-
1679
- #: ../classes/personal-pro/class-wpfront-user-role-editor-content-shortcodes-list-table.php:86
1680
- #: ../classes/personal-pro/class-wpfront-user-role-editor-content-shortcodes.php:383
1681
- #: ../classes/personal-pro/class-wpfront-user-role-editor-content-shortcodes.php:426
1682
- #: ../templates/personal-pro/content-shortcodes-add-edit.php:37
1683
- msgid "User Type"
1684
- msgstr "Bruger Type"
1685
-
1686
- #: ../classes/personal-pro/class-wpfront-user-role-editor-content-shortcodes.php:100
1687
- msgid "Shortcode not found."
1688
- msgstr "Shortcode ikke fundet."
1689
-
1690
- #: ../classes/personal-pro/class-wpfront-user-role-editor-content-shortcodes.php:102
1691
- msgid "Shortcode updated successfully."
1692
- msgstr "Shortcode opdateret."
1693
-
1694
- #: ../classes/personal-pro/class-wpfront-user-role-editor-content-shortcodes.php:109
1695
- msgid "Shortcode already exists."
1696
- msgstr "Shortcode eksisterer allerede."
1697
-
1698
- #: ../classes/personal-pro/class-wpfront-user-role-editor-content-shortcodes.php:116
1699
- msgid "Shortcode added successfully."
1700
- msgstr "Shortcode tilføjet."
1701
-
1702
- #: ../classes/personal-pro/class-wpfront-user-role-editor-content-shortcodes.php:145
1703
- msgid "Shortcode(s) deleted."
1704
- msgstr "Shortcode(s) slettet."
1705
-
1706
- #: ../classes/personal-pro/class-wpfront-user-role-editor-content-shortcodes.php:235
1707
- #: ../classes/personal-pro/class-wpfront-user-role-editor-nav-menu-pro.php:23
1708
- #: ../classes/personal-pro/class-wpfront-user-role-editor-post-type-permissions.php:115
1709
- #: ../classes/personal-pro/class-wpfront-user-role-editor-widget-permissions-pro.php:35
1710
- msgid "[Guest]"
1711
- msgstr "[Gæst]"
1712
-
1713
- #: ../classes/personal-pro/class-wpfront-user-role-editor-content-shortcodes.php:251
1714
- #: ../templates/personal-pro/content-shortcodes-add-edit.php:44
1715
- msgid "Logged-in Users"
1716
- msgstr "Logget ind"
1717
-
1718
- #: ../classes/personal-pro/class-wpfront-user-role-editor-content-shortcodes.php:259
1719
- #: ../templates/personal-pro/content-shortcodes-add-edit.php:48
1720
- msgid "Users in Roles"
1721
- msgstr "Brugere efter rolle"
1722
-
1723
- #: ../classes/personal-pro/class-wpfront-user-role-editor-content-shortcodes.php:265
1724
- msgid "Administrator"
1725
- msgstr "Administrator"
1726
-
1727
- #: ../classes/personal-pro/class-wpfront-user-role-editor-content-shortcodes.php:364
1728
- msgid "This screen allows you to add or edit a shortcode within your site."
1729
- msgstr ""
1730
- "Denne side giver mulighed for at tilføje eller redigere en shortcode på dit "
1731
- "site."
1732
-
1733
- #: ../classes/personal-pro/class-wpfront-user-role-editor-content-shortcodes.php:371
1734
- msgid ""
1735
- "Use the Name field to enter an identifiable name for this shortcode. This "
1736
- "field is required."
1737
- msgstr ""
1738
- "Brug feltet Navn for at indtaste et identificerbart navn for denne "
1739
- "shortcode. Dette felt er påkrævet."
1740
-
1741
- #: ../classes/personal-pro/class-wpfront-user-role-editor-content-shortcodes.php:378
1742
- msgid ""
1743
- "Use this field to enter the shortcode string, that will be used by "
1744
- "WordPress. This field is required and has to be unique. Only lowercase "
1745
- "letters, numbers and underscore is allowd in this field."
1746
- msgstr ""
1747
- "Brug dette felt til at indtaste kortkode streng, der vil blive brugt af "
1748
- "WordPress. Dette felt er påkrævet, og skal være unik. Kun små bogstaver, tal "
1749
- "og understregning er tilladt på dette område."
1750
-
1751
- #: ../classes/personal-pro/class-wpfront-user-role-editor-content-shortcodes.php:385
1752
- msgid ""
1753
- "Select the type of users, the content within the shortcode will be "
1754
- "displayed. You can select All Users, Logged in Users, Guest Users or Users "
1755
- "within specific roles."
1756
- msgstr ""
1757
- "Vælg den type brugere, som indholdet i shortcoden blive vist til. Du kan "
1758
- "vælge alle brugere, logget ind, Gæst eller Brugere efter bestemte roller."
1759
-
1760
- #: ../classes/personal-pro/class-wpfront-user-role-editor-content-shortcodes.php:395
1761
- msgid "This screen allows you to delete the shortcodes you selected to delete."
1762
- msgstr ""
1763
- "Denne side giver mulighed for at slette de shortcodes, du har valgt at "
1764
- "slette."
1765
-
1766
- #: ../classes/personal-pro/class-wpfront-user-role-editor-content-shortcodes.php:406
1767
- msgid ""
1768
- "This screen displays all the content shortcodes existing within your site."
1769
- msgstr ""
1770
- "Denne side viser alle de “content shortcodes” som eksisterer på dit site."
1771
-
1772
- #: ../classes/personal-pro/class-wpfront-user-role-editor-content-shortcodes.php:409
1773
- msgid ""
1774
- "To add a new shortcode, click the Add New button at the top of the screen."
1775
- msgstr ""
1776
- "For at tilføje en ny kortkode, skal du klikke på knappen Ny Tilføj øverst på "
1777
- "skærmen."
1778
-
1779
- #: ../classes/personal-pro/class-wpfront-user-role-editor-content-shortcodes.php:418
1780
- msgid "User identifiable name of the shortcode."
1781
- msgstr "Bruger identificerbart navn for shortcoden."
1782
-
1783
- #: ../classes/personal-pro/class-wpfront-user-role-editor-content-shortcodes.php:423
1784
- msgid "Used by WordPress to identify the shortcode."
1785
- msgstr "Anvendes af WordPress til at identificere shortcoden."
1786
-
1787
- #: ../classes/personal-pro/class-wpfront-user-role-editor-content-shortcodes.php:428
1788
- msgid "Determines who all will see the content wrapped within the shortcode."
1789
- msgstr "Bestemmer hvem der vil se indhold indpakket i shortcoden."
1790
-
1791
- #: ../classes/personal-pro/class-wpfront-user-role-editor-content-shortcodes.php:433
1792
- msgid "Roles used when User Type is \"Users in Roles\"."
1793
- msgstr "Roller valgt, når “Bruger Type” er “Brugere efter rolle”"
1794
-
1795
- #: ../classes/personal-pro/class-wpfront-user-role-editor-content-shortcodes.php:440
1796
- msgid ""
1797
- "Hovering over a row in the list will display action links that allow you to "
1798
- "manage the shortcodes. You can perform the following actions:"
1799
- msgstr ""
1800
- "Hold musen over en række i posterne vil vise links som kan anvendes til at "
1801
- "håndtere dine shortcodes. Du kan udføre flg. handlinger"
1802
-
1803
- #: ../classes/personal-pro/class-wpfront-user-role-editor-content-shortcodes.php:445
1804
- msgid "Allows you to edit that shortcode."
1805
- msgstr "Giver dig mulighed for at redigere denne shortcode."
1806
-
1807
- #: ../classes/personal-pro/class-wpfront-user-role-editor-content-shortcodes.php:450
1808
- msgid "Allows you to delete that shortcode."
1809
- msgstr "Gør det muligt at slette denne shortcode."
1810
-
1811
- #: ../classes/personal-pro/class-wpfront-user-role-editor-content-shortcodes.php:455
1812
- msgid "Usage"
1813
- msgstr "Brug"
1814
-
1815
- #: ../classes/personal-pro/class-wpfront-user-role-editor-content-shortcodes.php:457
1816
- msgid ""
1817
- "To use the shortcode within a post/page, copy the shortcode from the "
1818
- "Shortcode column and put your content within the shortcode."
1819
- msgstr ""
1820
- "Hvis du vil bruge kortkode inden for en post / side, kopier shortcoden fra "
1821
- "Shortcode kolonnen og sæt dit indhold ind i shortcoden."
1822
-
1823
- #: ../classes/personal-pro/class-wpfront-user-role-editor-content-shortcodes.php:460
1824
- msgid "Ex: [shortcode]Your content here.[/shortcode]"
1825
- msgstr "Ex: [shortcode]Dit indhold her.[/shortcode]"
1826
-
1827
- #: ../classes/personal-pro/class-wpfront-user-role-editor-content-shortcodes.php:469
1828
- msgid "Documentation on Content Shortcodes"
1829
- msgstr "Dokumentation af Content Shortcodes"
1830
-
1831
- #: ../classes/personal-pro/class-wpfront-user-role-editor-custom-post-types.php:32
1832
- #, php-format
1833
- msgid "%s in settings."
1834
- msgstr "%s i indstillinger."
1835
-
1836
- #: ../classes/personal-pro/class-wpfront-user-role-editor-custom-post-types.php:32
1837
- msgid "Enable customization"
1838
- msgstr "Aktiver tilpasning"
1839
-
1840
- #: ../classes/personal-pro/class-wpfront-user-role-editor-export.php:132
1841
- msgid ""
1842
- "This screen allows you to export the roles existing within your site and "
1843
- "import into the same site or a different site."
1844
- msgstr ""
1845
- "Denne side giver mulighed for at eksportere eksisterende roller inden for "
1846
- "dit site og import til samme sted eller et andet sted."
1847
-
1848
- #: ../classes/personal-pro/class-wpfront-user-role-editor-export.php:135
1849
- msgid "Select the roles to export, then click Download Export File."
1850
- msgstr ""
1851
- "Vælg de roller der skal eksportere, og klik derefter på Hent Eksport Fil."
1852
-
1853
- #: ../classes/personal-pro/class-wpfront-user-role-editor-export.php:144
1854
- msgid "Documentation on Export"
1855
- msgstr "Dokumentation af Eksport"
1856
-
1857
- #: ../classes/personal-pro/class-wpfront-user-role-editor-import.php:37
1858
- msgid "This functionality requires SimpleXML extension, which is not loaded."
1859
- msgstr "Denne funktionalitet kræver SimpleXML udvidelse, som ikke er indlæst."
1860
-
1861
- #: ../classes/personal-pro/class-wpfront-user-role-editor-import.php:85
1862
- #, php-format
1863
- msgid "%d role(s) imported."
1864
- msgstr "% d rolle (r) importeret."
1865
-
1866
- #: ../classes/personal-pro/class-wpfront-user-role-editor-import.php:106
1867
- #, php-format
1868
- msgid ""
1869
- "The export file could not be found at <code>%s</code>. It is likely that "
1870
- "this was caused by a permissions problem."
1871
- msgstr ""
1872
- "Eksport-filen kunne ikke findes <code>%s</code> Det er sandsynligt, at dette "
1873
- "skyldes et problem med tilladelser."
1874
-
1875
- #: ../classes/personal-pro/class-wpfront-user-role-editor-import.php:137
1876
- #: ../classes/personal-pro/class-wpfront-user-role-editor-import.php:145
1877
- msgid "There was an error when reading this export file"
1878
- msgstr "Der opstod en fejl under læsning denne eksport fil"
1879
-
1880
- #: ../classes/personal-pro/class-wpfront-user-role-editor-import.php:162
1881
- #, php-format
1882
- msgid ""
1883
- "Please update the plugin to latest version. This export file requires plugin "
1884
- "version %s or higher."
1885
- msgstr ""
1886
- "Opdatere venligst dette plugin til nyeste version. Denne eksport fil kræver "
1887
- "plugin version%s eller højere."
1888
-
1889
- #: ../classes/personal-pro/class-wpfront-user-role-editor-import.php:218
1890
- msgid "This file does not appears to be a valid export file."
1891
- msgstr "Denne fil ikke synes at være en gyldig eksport-fil."
1892
-
1893
- #: ../classes/personal-pro/class-wpfront-user-role-editor-import.php:231
1894
- msgid ""
1895
- "Step 1: Select export file using the Browse button. Then click Upload file "
1896
- "and Import."
1897
- msgstr ""
1898
- "Trin 1: Vælg export-fil ved at bruge “Vælg” knappen. Klik så på “Upload "
1899
- "file” og importer."
1900
-
1901
- #: ../classes/personal-pro/class-wpfront-user-role-editor-import.php:234
1902
- msgid ""
1903
- "Step 2: Select the roles you want to import using the check boxes and click "
1904
- "Import Roles."
1905
- msgstr ""
1906
- "Trin 2: Vælg de roller, du ønsker at importere ved at benytte check-boksene, "
1907
- "og klik “Importer Roller”."
1908
-
1909
- #: ../classes/personal-pro/class-wpfront-user-role-editor-import.php:243
1910
- msgid "Documentation on Import"
1911
- msgstr "Dokumentation af Import"
1912
-
1913
- #: ../classes/personal-pro/class-wpfront-user-role-editor-menu-editor.php:164
1914
- msgid "Menu changes saved."
1915
- msgstr "Menuændringer gemt."
1916
-
1917
- #: ../classes/personal-pro/class-wpfront-user-role-editor-menu-editor.php:177
1918
- msgid "Menu defaults restored."
1919
- msgstr "Menustandarder genoprettet."
1920
-
1921
- #: ../classes/personal-pro/class-wpfront-user-role-editor-menu-editor.php:192
1922
- msgid "No editable roles found on this site."
1923
- msgstr "Ingen redigerbare roller fundet på denne hjemmeside."
1924
-
1925
- #: ../classes/personal-pro/class-wpfront-user-role-editor-menu-editor.php:603
1926
- msgid ""
1927
- "This screen allows you to enable and disable admin menus for a particular "
1928
- "role."
1929
- msgstr ""
1930
- "Denne side giver mulighed for at aktivere og deaktivere admin-menus for en "
1931
- "given rolle."
1932
-
1933
- #: ../classes/personal-pro/class-wpfront-user-role-editor-menu-editor.php:606
1934
- msgid "Deselect a menu from the grid to remove that menu."
1935
- msgstr "Vælg en menu fra nettet for at fjerne den."
1936
-
1937
- #: ../classes/personal-pro/class-wpfront-user-role-editor-menu-editor.php:609
1938
- msgid ""
1939
- "Disabled menu items are already hidden, because the selected role doesn't "
1940
- "have the capability to display that menu. Grid displays menus which the "
1941
- "current user has access to."
1942
- msgstr ""
1943
- "Fravalgte menu-punkter er allerede skjult, fordi den valgte rolle ikke har "
1944
- "capability til at vise denne menu. Nette viser de menuer som den aktuelle "
1945
- "bruger har adgang til."
1946
-
1947
- #: ../classes/personal-pro/class-wpfront-user-role-editor-menu-editor.php:616
1948
- #: ../templates/personal-pro/menu-editor.php:39
1949
- msgid "Override Role"
1950
- msgstr "Tilsidesæt Rolle"
1951
-
1952
- #: ../classes/personal-pro/class-wpfront-user-role-editor-menu-editor.php:618
1953
- msgid "The role you want to override."
1954
- msgstr "Den rolle, du vil tilsidesætte."
1955
-
1956
- #: ../classes/personal-pro/class-wpfront-user-role-editor-menu-editor.php:621
1957
- #: ../templates/personal-pro/menu-editor.php:56
1958
- msgid "Override Type"
1959
- msgstr "Tilsidesæt type"
1960
-
1961
- #: ../classes/personal-pro/class-wpfront-user-role-editor-menu-editor.php:623
1962
- msgid ""
1963
- "Soft - Pages may be available through directly typing the URL. Hard - Even "
1964
- "URLs will be blocked."
1965
- msgstr ""
1966
- "Soft - Sider kan være tilgængelige ved at anvende sidens URL direkte. Hard - "
1967
- "Også URL’s bliver blokeret."
1968
-
1969
- #: ../classes/personal-pro/class-wpfront-user-role-editor-menu-editor.php:626
1970
- #: ../templates/personal-pro/menu-editor.php:67
1971
- msgid "Hide New Menus"
1972
- msgstr "Skjul nye menuer"
1973
-
1974
- #: ../classes/personal-pro/class-wpfront-user-role-editor-menu-editor.php:628
1975
- msgid "Allow you to hide future menus."
1976
- msgstr "Tillader dig at skjule fremtidige menuer."
1977
-
1978
- #: ../classes/personal-pro/class-wpfront-user-role-editor-menu-editor.php:631
1979
- #: ../templates/personal-pro/menu-editor.php:75
1980
- msgid "Disable For Secondary Role"
1981
- msgstr "Deaktiver for sekundær rolle"
1982
-
1983
- #: ../classes/personal-pro/class-wpfront-user-role-editor-menu-editor.php:633
1984
- msgid "Disables menu settings while the selected role is a secondary role."
1985
- msgstr ""
1986
- "Deaktiverer menuindstillinger mens den valgte rolle er en sekundær rolle."
1987
-
1988
- #: ../classes/personal-pro/class-wpfront-user-role-editor-menu-editor.php:638
1989
- msgid "Restore Default"
1990
- msgstr "Gendan standard"
1991
-
1992
- #: ../classes/personal-pro/class-wpfront-user-role-editor-menu-editor.php:640
1993
- msgid ""
1994
- "Select \"Restore default\" from the \"Copy from\" drop down and click apply."
1995
- msgstr "Vælg “Gendan standard” fra “Kopier fra” drop down og klik på Anvend."
1996
-
1997
- #: ../classes/personal-pro/class-wpfront-user-role-editor-menu-editor.php:649
1998
- msgid "Documentation on Menu Editor"
1999
- msgstr "Dokumentation af Menu Editor"
2000
-
2001
- #: ../classes/personal-pro/class-wpfront-user-role-editor-personal-pro.php:97
2002
- #: ../templates/personal-pro/menu-editor.php:9
2003
- msgid "Menu Editor"
2004
- msgstr "Menu Editor"
2005
-
2006
- #: ../classes/personal-pro/class-wpfront-user-role-editor-personal-pro.php:98
2007
- #: ../templates/personal-pro/content-shortcodes.php:9
2008
- msgid "Content Shortcodes"
2009
- msgstr "Content Shortcodes"
2010
-
2011
- #: ../classes/personal-pro/class-wpfront-user-role-editor-personal-pro.php:98
2012
- msgid "Shortcodes"
2013
- msgstr "Shortcodes"
2014
-
2015
- #: ../classes/personal-pro/class-wpfront-user-role-editor-personal-pro.php:99
2016
- #: ../templates/personal-pro/export-roles.php:9
2017
- msgid "Export Roles"
2018
- msgstr "Eksporter Roller"
2019
-
2020
- #: ../classes/personal-pro/class-wpfront-user-role-editor-personal-pro.php:99
2021
- msgid "Export"
2022
- msgstr "Eksporter"
2023
-
2024
- #: ../classes/personal-pro/class-wpfront-user-role-editor-personal-pro.php:100
2025
- #: ../templates/personal-pro/import-roles.php:9
2026
- #: ../templates/personal-pro/import-roles.php:88
2027
- msgid "Import Roles"
2028
- msgstr "Importer Roller"
2029
-
2030
- #: ../classes/personal-pro/class-wpfront-user-role-editor-personal-pro.php:100
2031
- msgid "Import"
2032
- msgstr "Importer"
2033
-
2034
- #: ../classes/personal-pro/class-wpfront-user-role-editor-personal-pro.php:101
2035
- #: ../templates/personal-pro/bulk-edit.php:9
2036
- msgid "Bulk Edit"
2037
- msgstr "Masse-rediger"
2038
-
2039
- #: ../classes/personal-pro/class-wpfront-user-role-editor-personal-pro.php:123
2040
- #, php-format
2041
- msgid "%s license not activated."
2042
- msgstr "%s licens ikke aktiveret."
2043
-
2044
- #: ../classes/personal-pro/class-wpfront-user-role-editor-post-type-permissions.php:76
2045
- #: ../classes/personal-pro/class-wpfront-user-role-editor-post-type-permissions.php:328
2046
- #: ../templates/personal-pro/bulk-edit-extended-permissions.php:218
2047
- msgid "Role Permissions"
2048
- msgstr "Rolle Tilladelser"
2049
-
2050
- #: ../templates/add-edit-role.php:41
2051
- msgid "Edit Role"
2052
- msgstr "Redigér rolle"
2053
-
2054
- #: ../templates/add-edit-role.php:51
2055
- msgid "This role already exists in this site."
2056
- msgstr "Denne rolle findes allerede på dette site."
2057
-
2058
- #: ../templates/add-edit-role.php:59
2059
- msgid "There was an unexpected error while performing this action."
2060
- msgstr "Der opstod en uventet fejl under udførelse af denne handling."
2061
-
2062
- #: ../templates/add-edit-role.php:66
2063
- msgid "Create a brand new role and add it to this site."
2064
- msgstr "Opret en helt ny rolle og føje den til dette site."
2065
-
2066
- #: ../templates/add-edit-role.php:77 ../templates/add-edit-role.php:87
2067
- #: ../templates/add-remove-capability.php:75 ../templates/login-redirect.php:99
2068
- #: ../templates/login-redirect.php:125 ../templates/login-redirect.php:133
2069
- #: ../templates/personal-pro/content-shortcodes-add-edit.php:15
2070
- #: ../templates/personal-pro/content-shortcodes-add-edit.php:25
2071
- msgid "required"
2072
- msgstr "påkrævet"
2073
-
2074
- #: ../templates/add-edit-role.php:106
2075
- #: ../templates/personal-pro/menu-editor.php:89
2076
- msgid "Copy from"
2077
- msgstr "Kopier fra"
2078
-
2079
- #: ../templates/add-edit-role.php:118
2080
- msgid "Select None"
2081
- msgstr "Vælg intet"
2082
-
2083
- #: ../templates/add-edit-role.php:140
2084
- msgid "Update Role"
2085
- msgstr "Opdater rolle"
2086
-
2087
- #: ../templates/add-remove-capability.php:52
2088
- msgid "Add/Remove a capability to/from roles within this site."
2089
- msgstr "Tilføj / fjern en capability til / fra roller inden dette site."
2090
-
2091
- #: ../templates/add-remove-capability.php:66
2092
- #: ../templates/add-remove-capability.php:111
2093
- #: ../templates/add-remove-capability.php:125
2094
- msgid "Add Capability"
2095
- msgstr "Tilføj Capability"
2096
-
2097
- #: ../templates/add-remove-capability.php:68
2098
- #: ../templates/add-remove-capability.php:111
2099
- #: ../templates/add-remove-capability.php:127
2100
- msgid "Remove Capability"
2101
- msgstr "Fjern Capability"
2102
-
2103
- #: ../templates/assign-roles.php:68
2104
- msgid "User"
2105
- msgstr "Bruger"
2106
-
2107
- #: ../templates/assign-roles.php:109
2108
- msgid "From Primary Role"
2109
- msgstr "Fra Primær Rolle"
2110
-
2111
- #: ../templates/business-pro/sync-roles.php:29
2112
- msgid "Step 1: Select the source site"
2113
- msgstr "Trin 1: Vælg kilde site"
2114
-
2115
- #: ../templates/business-pro/sync-roles.php:38
2116
- #: ../templates/business-pro/sync-roles.php:88
2117
- msgid "Search Sites"
2118
- msgstr "Søg sites"
2119
-
2120
- #: ../templates/business-pro/sync-roles.php:44
2121
- #: ../templates/business-pro/sync-roles.php:99
2122
- #: ../templates/business-pro/sync-roles.php:249
2123
- #: ../templates/personal-pro/bulk-edit-extended-permissions.php:55
2124
- #: ../templates/personal-pro/bulk-edit-extended-permissions.php:87
2125
- #: ../templates/personal-pro/bulk-edit-extended-permissions.php:232
2126
- #: ../templates/personal-pro/bulk-edit.php:35
2127
- msgid "Next Step"
2128
- msgstr "Næste trin"
2129
-
2130
- #: ../templates/business-pro/sync-roles.php:74
2131
- msgid "Step 2: Select destination sites"
2132
- msgstr "Trin 2: Vælg destinations sites"
2133
-
2134
- #: ../templates/business-pro/sync-roles.php:78
2135
- #: ../templates/business-pro/sync-roles.php:273
2136
- msgid "All Sites"
2137
- msgstr "Alle Sites"
2138
-
2139
- #: ../templates/business-pro/sync-roles.php:81
2140
- msgid "Selected Sites"
2141
- msgstr "Valgte Sites"
2142
-
2143
- #: ../templates/business-pro/sync-roles.php:220
2144
- msgid "Step 3: Choose settings"
2145
- msgstr "Trin 3: Vælg indstillinger"
2146
-
2147
- #: ../templates/business-pro/sync-roles.php:259
2148
- msgid "Step 4: Confirm and Sync"
2149
- msgstr "Trin 4: Konfirmer og Synkroniser"
2150
-
2151
- #: ../templates/business-pro/sync-roles.php:264
2152
- msgid "Source: "
2153
- msgstr "Kilde: "
2154
-
2155
- #: ../templates/business-pro/sync-roles.php:272
2156
- msgid "Destination: "
2157
- msgstr "Destination: "
2158
-
2159
- #: ../templates/business-pro/sync-roles.php:273
2160
- msgid "Selected sites"
2161
- msgstr "Valgte sites"
2162
-
2163
- #: ../templates/business-pro/sync-roles.php:273
2164
- #, php-format
2165
- msgid "%s site(s) selected"
2166
- msgstr "%s site(s) valgt"
2167
-
2168
- #: ../templates/business-pro/sync-roles.php:278
2169
- msgid "Add roles existing only in source: "
2170
- msgstr "Tilføj roller, der kun eksisterer i kilden: "
2171
-
2172
- #: ../templates/business-pro/sync-roles.php:279
2173
- #: ../templates/business-pro/sync-roles.php:285
2174
- #: ../templates/business-pro/sync-roles.php:291
2175
- #: ../templates/business-pro/sync-roles.php:297
2176
- msgid "Yes"
2177
- msgstr "Ja"
2178
-
2179
- #: ../templates/business-pro/sync-roles.php:279
2180
- #: ../templates/business-pro/sync-roles.php:285
2181
- #: ../templates/business-pro/sync-roles.php:291
2182
- #: ../templates/business-pro/sync-roles.php:297
2183
- msgid "No"
2184
- msgstr "Nej"
2185
-
2186
- #: ../templates/business-pro/sync-roles.php:284
2187
- msgid "Overwrite existing roles: "
2188
- msgstr "Overskriv eksisterende roller: "
2189
-
2190
- #: ../templates/business-pro/sync-roles.php:290
2191
- msgid "Remove roles existing only in destination: "
2192
- msgstr "Fjern roller, der kun eksisterer i destination: "
2193
-
2194
- #: ../templates/business-pro/sync-roles.php:296
2195
- msgid "Update new user default role: "
2196
- msgstr "Opdater ny bruger standard-rolle"
2197
-
2198
- #: ../templates/business-pro/sync-roles.php:348
2199
- #: ../templates/personal-pro/bulk-edit-extended-permissions.php:289
2200
- msgid "SUCCESS"
2201
- msgstr "SUCCESS"
2202
-
2203
- #: ../templates/business-pro/sync-roles.php:351
2204
- #: ../templates/personal-pro/bulk-edit-extended-permissions.php:293
2205
- msgid "FAIL"
2206
- msgstr "FAIL"
2207
-
2208
- #: ../templates/business-pro/sync-roles.php:374
2209
- msgid "Synching site"
2210
- msgstr "Synkroniserer site"
2211
-
2212
- #: ../templates/delete-role.php:41
2213
- msgid "Delete Roles"
2214
- msgstr "Slet Roller"
2215
-
2216
- #: ../templates/delete-role.php:42
2217
- msgid "You have specified these roles for deletion"
2218
- msgstr "Du har valgt disse roller til sletning"
2219
-
2220
- #: ../templates/delete-role.php:61
2221
- #: ../templates/personal-pro/content-shortcodes-delete.php:43
2222
- msgid "Confirm Deletion"
2223
- msgstr "Konfirmer sletning"
2224
-
2225
- #: ../templates/go-pro.php:42
2226
- msgid "WPFront User Role Editor Pro"
2227
- msgstr "WPFront User Role Editor Pro"
2228
-
2229
- #: ../templates/go-pro.php:65
2230
- msgid "License Key"
2231
- msgstr "Licens nøgle"
2232
-
2233
- #: ../templates/go-pro.php:73
2234
- msgid "Deactivate"
2235
- msgstr "Deaktiver"
2236
-
2237
- #: ../templates/go-pro.php:74
2238
- msgid "Recheck"
2239
- msgstr "Tjek igen"
2240
-
2241
- #: ../templates/go-pro.php:81
2242
- msgid "License Status"
2243
- msgstr "Licens Status"
2244
-
2245
- #: ../templates/go-pro.php:87
2246
- msgid "Valid"
2247
- msgstr "Gyldig"
2248
-
2249
- #: ../templates/go-pro.php:90
2250
- msgid "Expired"
2251
- msgstr "Udløbet"
2252
-
2253
- #: ../templates/go-pro.php:93
2254
- msgid "Invalid"
2255
- msgstr "Ugyldig"
2256
-
2257
- #: ../templates/go-pro.php:101
2258
- msgid "License Expires"
2259
- msgstr "Licens Udløber"
2260
-
2261
- #: ../templates/list-roles.php:51
2262
- #: ../templates/personal-pro/content-shortcodes.php:13
2263
- #, php-format
2264
- msgid "Search results for \"%s\""
2265
- msgstr "Søge-resultater for \"%s\""
2266
-
2267
- #: ../templates/login-redirect.php:63
2268
- msgid "Custom roles not supported in free version."
2269
- msgstr "Brugerskabte roller ikke understøttet i den gratis version."
2270
-
2271
- #: ../templates/login-redirect.php:63
2272
- msgid "Upgrade to Pro."
2273
- msgstr "Upgrade to Pro."
2274
-
2275
- #: ../templates/login-redirect.php:77
2276
- #: ../templates/personal-pro/content-shortcodes-list.php:15
2277
- msgid "Search"
2278
- msgstr "Søg"
2279
-
2280
- #: ../templates/login-redirect.php:91
2281
- msgid ""
2282
- "Enter the URL where the user will be redirected after login or on wp-admin "
2283
- "access."
2284
- msgstr ""
2285
- "Indtast URL’en, hvor brugeren vil blive omdirigeret efter login eller til wp-"
2286
- "admin adgang."
2287
-
2288
- #: ../templates/login-redirect.php:138
2289
- msgid "[Relative to home URL (recommended) or absolute URL.]"
2290
- msgstr "[Relativ home URL (anbefalet) eller absolut URL.]"
2291
-
2292
- #: ../templates/login-redirect.php:143
2293
- msgid "Deny WP-ADMIN"
2294
- msgstr "Nægt WP-ADMIN adgang"
2295
-
2296
- #: ../templates/login-redirect.php:151
2297
- msgid "Disable Toolbar"
2298
- msgstr "Deaktiver Toolbar"
2299
-
2300
- #: ../templates/login-redirect.php:160
2301
- #: ../templates/personal-pro/bulk-edit-extended-permissions.php:250
2302
- #: ../templates/personal-pro/content-shortcodes-add-edit.php:67
2303
- msgid "Submit"
2304
- msgstr "Indsend"
2305
-
2306
- #: ../templates/login-redirect.php:168
2307
- msgid "The following role configurations will be deleted."
2308
- msgstr "Følgende rolle konfigurationer vil blive slettet."
2309
-
2310
- #: ../templates/login-redirect.php:186
2311
- msgid "Confirm Delete"
2312
- msgstr "Bekræft sletning"
2313
-
2314
- #: ../templates/options-template.php:37
2315
- msgid "WPFront User Role Editor Settings"
2316
- msgstr "WPFront User Role Editor Indstillinger"
2317
-
2318
- #: ../templates/options-template.php:47
2319
- #, php-format
2320
- msgid ""
2321
- "Menu walker class is overriden by a theme/plugin. Current value = %s. "
2322
- "Navigation menu permissions may still work. %s"
2323
- msgstr ""
2324
- "Menu walker class bliver tilsidesat af et theme/plugin. Current value = %s. "
2325
- "Navigation menu tilladelser fungerer muligvis. %s"
2326
-
2327
- #: ../templates/options-template.php:103
2328
- msgid "Customize Permissions (custom post types)"
2329
- msgstr "Tilpas Tilladelser (custom indlægs-typer)"
2330
-
2331
- #: ../templates/options-template.php:109
2332
- msgid "No customizable post types found."
2333
- msgstr "Ingen tilpasselige indlægs-typer fundet."
2334
-
2335
- #: ../templates/personal-pro/bulk-edit-extended-permissions.php:29
2336
- msgid "Extended Permissions"
2337
- msgstr "Udvidede tilladelser"
2338
-
2339
- #: ../templates/personal-pro/bulk-edit-extended-permissions.php:39
2340
- msgid "Step 1: Select the post type to bulk edit"
2341
- msgstr "Trin 1: Vælg den type indlæg du vil masse-redigere."
2342
-
2343
- #: ../templates/personal-pro/bulk-edit-extended-permissions.php:67
2344
- #, php-format
2345
- msgid "Step 2: Select the %s to bulk edit"
2346
- msgstr "Trin 2: Vælg de %s til at masse-redigere"
2347
-
2348
- #: ../templates/personal-pro/bulk-edit-extended-permissions.php:71
2349
- #, php-format
2350
- msgid "All %s"
2351
- msgstr "Alle %s"
2352
-
2353
- #: ../templates/personal-pro/bulk-edit-extended-permissions.php:76
2354
- #, php-format
2355
- msgid "Selected %s"
2356
- msgstr "Valgte %s"
2357
-
2358
- #: ../templates/personal-pro/bulk-edit-extended-permissions.php:247
2359
- #, php-format
2360
- msgid "%d %s selected to update."
2361
- msgstr "%d %s valgt til at opdateres."
2362
-
2363
- #: ../templates/personal-pro/bulk-edit-extended-permissions.php:279
2364
- #, php-format
2365
- msgid "Updating %s"
2366
- msgstr "Opdaterer %s"
2367
-
2368
- #: ../templates/personal-pro/bulk-edit.php:13
2369
- msgid "Select an option to continue"
2370
- msgstr "Vælg en mulighed for at fortsætte"
2371
-
2372
- #: ../templates/personal-pro/content-shortcodes-add-edit.php:25
2373
- msgid "unique"
2374
- msgstr "unik"
2375
-
2376
- #: ../templates/personal-pro/content-shortcodes-add-edit.php:31
2377
- msgid "Allowed characters: lowercase letters, numbers and underscore."
2378
- msgstr "Tilladte tegn: små bogstaver, tal og underscore."
2379
-
2380
- #: ../templates/personal-pro/content-shortcodes-delete.php:9
2381
- msgid "You have specified these shortcodes for deletion"
2382
- msgstr "Du har valgt disse shortcodes til sletning"
2383
-
2384
- #: ../templates/personal-pro/export-roles.php:13
2385
- msgid "Select the roles to be uploaded"
2386
- msgstr "Vælg de roller, der skal uploades"
2387
-
2388
- #: ../templates/personal-pro/export-roles.php:40
2389
- msgid "Download Export File"
2390
- msgstr "Download eksportfil"
2391
-
2392
- #: ../templates/personal-pro/import-roles.php:21
2393
- msgid "ERROR:"
2394
- msgstr "ERROR:"
2395
-
2396
- #: ../templates/personal-pro/import-roles.php:30
2397
- msgid ""
2398
- "Choose a WPFront User Role Editor export file (.xml) to upload, then click "
2399
- "Upload file and import."
2400
- msgstr ""
2401
- "Vælg et WPFront User Role Editor eksport-fil (.xml) der skal uploades, og "
2402
- "klik derefter på Upload fil for at importere."
2403
-
2404
- #: ../templates/personal-pro/import-roles.php:39
2405
- #, php-format
2406
- msgid "Roles exported from %s on %s by user %s."
2407
- msgstr "Roller, der eksporteres fra%s på%s af brugeren%s."
2408
-
2409
- #: ../templates/personal-pro/import-roles.php:39
2410
- msgid "UTC"
2411
- msgstr "UTC"
2412
-
2413
- #: ../templates/personal-pro/import-roles.php:46
2414
- msgid "Zero roles found in this export file to import."
2415
- msgstr "Ingen roller fundet til import fra denne export-fil."
2416
-
2417
- #: ../templates/personal-pro/import-roles.php:52
2418
- msgid "Select roles to import"
2419
- msgstr "Vælg roller der skal importeres"
2420
-
2421
- #: ../templates/personal-pro/import-roles.php:81
2422
- msgid ""
2423
- "* These roles already exist in this site. Importing them will overwrite "
2424
- "existing roles."
2425
- msgstr ""
2426
- "* Disse roller eksisterer allerede på dette site. Hvis du importerer dem, "
2427
- "vil de nuværende roller blive overskrevet."
2428
-
2429
- #: ../templates/personal-pro/menu-editor.php:26
2430
- msgid ""
2431
- "Select a role below to edit menu for that role. Deselect a menu from the "
2432
- "grid to remove that menu. Disabled menu items are already hidden, because "
2433
- "the selected role doesn't have the capability to display that menu. Grid "
2434
- "displays menus which the current user has access to. "
2435
- msgstr ""
2436
- "Vælg en rolle herunder for at redigere menu for denne rolle. Fravælg en menu "
2437
- "fra grid’et for at fjerne den menu. Deaktiverede menu-emner er allerede "
2438
- "skjult, da den valgte rolle ikke har capability til at vise denne menu. "
2439
- "Grid’et viser menuer som den valgte bruger har adgang til. "
2440
-
2441
- #: ../templates/personal-pro/menu-editor.php:60
2442
- msgid "Soft"
2443
- msgstr "Blød"
2444
-
2445
- #: ../templates/personal-pro/menu-editor.php:61
2446
- msgid "Hard"
2447
- msgstr "Hård"
2448
-
2449
- #: ../templates/personal-pro/menu-editor.php:92
2450
- msgid "Restore default"
2451
- msgstr "Gendan standard"
2452
-
2453
- #: ../templates/personal-pro/menu-editor.php:105
2454
- msgid "Hide deselected item(s)"
2455
- msgstr "Skjul ikke-valgte emner"
2456
-
2457
- #: ../templates/personal-pro/menu-editor.php:110
2458
- msgid "Hide disabled item(s)"
2459
- msgstr "Skjul deaktivered emner"
2460
-
2461
- #: ../templates/personal-pro/menu-editor.php:116
2462
- msgid "Has Capability"
2463
- msgstr "Har Capability"
2464
-
2465
- #: ../templates/personal-pro/menu-editor.php:121
2466
- msgid "No Capability"
2467
- msgstr "Ingen Capability"
2468
-
2469
- #: ../templates/personal-pro/menu-editor.php:144
2470
- msgid "Menu Slug"
2471
- msgstr "Menu Slug (kort-navn)"
2472
-
2473
- #: ../templates/personal-pro/post-type-permissions.php:25
2474
- msgid "Enable Role Permissions"
2475
- msgstr "Aktiver Rolle Tilladelser"
2476
-
2477
- #: ../templates/personal-pro/post-type-permissions.php:33
2478
- msgid "Read"
2479
- msgstr "Læse"
2480
-
2481
- #: ../templates/restore-role.php:55
2482
- msgid "Confirm"
2483
- msgstr "Bekræft"
2484
-
2485
- #: ../templates/restore-role.php:63
2486
- msgid "Restored"
2487
- msgstr "Gendannet"
2488
-
2489
- #: ../templates/restore-role.php:107
2490
- msgid "Unexpected error / Timed out"
2491
- msgstr "Uventet fejl / Timed out"
2492
-
2493
- #~ msgid "License key activation limit reached"
2494
- #~ msgstr "License key activation limit reached"
2495
-
2496
- #~ msgid "Settings Description"
2497
- #~ msgstr "Settings Description"
2498
-
2499
- #~ msgid "Plugin FAQ"
2500
- #~ msgstr "Plugin FAQ"
2501
-
2502
- #~ msgid "Feature Request"
2503
- #~ msgstr "Feature Request"
2504
-
2505
- #~ msgid "Report Bug"
2506
- #~ msgstr "Report Bug"
2507
-
2508
- #~ msgid "Buy me a Beer or Coffee"
2509
- #~ msgstr "Buy me a Beer or Coffee"
2510
-
2511
- #~ msgid "Add Role Capabilities"
2512
- #~ msgstr "Add Role Capabilities"
2513
-
2514
- #~ msgid "User Role Editor"
2515
- #~ msgstr "User Role Editor"
2516
-
2517
- #~ msgid "Enabled"
2518
- #~ msgstr "Enabled"
2519
-
2520
- #~ msgid "Position"
2521
- #~ msgstr "Position"
2522
-
2523
- #~ msgid "Bar Height"
2524
- #~ msgstr "Bar Height"
2525
-
2526
- #~ msgid "Message Text"
2527
- #~ msgstr "Message Text"
2528
-
2529
- #~ msgid "Display After"
2530
- #~ msgstr "Display After"
2531
-
2532
- #~ msgid "Animation Duration"
2533
- #~ msgstr "Animation Duration"
2534
-
2535
- #~ msgid "Display Close Button"
2536
- #~ msgstr "Display Close Button"
2537
-
2538
- #~ msgid "Auto Close After"
2539
- #~ msgstr "Auto Close After"
2540
-
2541
- #~ msgid "Display Button"
2542
- #~ msgstr "Display Button"
2543
-
2544
- #~ msgid "Button Text"
2545
- #~ msgstr "Button Text"
2546
-
2547
- #~ msgid "Open URL:"
2548
- #~ msgstr "Open URL:"
2549
-
2550
- #~ msgid "Open URL in new tab/window"
2551
- #~ msgstr "Open URL in new tab/window"
2552
-
2553
- #~ msgid "Execute JavaScript"
2554
- #~ msgstr "Execute JavaScript"
2555
-
2556
- #~ msgid "Close Bar on Button Click"
2557
- #~ msgstr "Close Bar on Button Click"
2558
-
2559
- #~ msgid "Display Shadow"
2560
- #~ msgstr "Display Shadow"
2561
-
2562
- #~ msgid "Fixed at Position"
2563
- #~ msgstr "Fixed at Position"
2564
-
2565
- #~ msgid "Message Text Color"
2566
- #~ msgstr "Message Text Color"
2567
-
2568
- #~ msgid "From Color"
2569
- #~ msgstr "From Color"
2570
-
2571
- #~ msgid "To Color"
2572
- #~ msgstr "To Color"
2573
-
2574
- #~ msgid "Button Text Color"
2575
- #~ msgstr "Button Text Color"
2576
-
2577
- #~ msgid "Display on Pages"
2578
- #~ msgstr "Display on Pages"
2579
-
2580
- #~ msgid "Display Reopen Button"
2581
- #~ msgstr "Display Reopen Button"
2582
-
2583
- #~ msgid "Reopen Button Color"
2584
- #~ msgstr "Reopen Button Color"
2585
-
2586
- #~ msgid "Keep Closed"
2587
- #~ msgstr "Keep Closed"
2588
-
2589
- #~ msgid "Keep Closed For"
2590
- #~ msgstr "Keep Closed For"
2591
-
2592
- #~ msgid "Position Offset"
2593
- #~ msgstr "Position Offset"
2594
-
2595
- #~ msgid "Close Button Color"
2596
- #~ msgstr "Close Button Color"
2597
-
2598
- #~ msgid "WPFront Notification Bar"
2599
- #~ msgstr "WPFront Notification Bar"
2600
-
2601
- #~ msgid "Notification Bar"
2602
- #~ msgstr "Notification Bar"
2603
-
2604
- #~ msgid "[Page]"
2605
- #~ msgstr "[Page]"
2606
-
2607
- #~ msgid "Home"
2608
- #~ msgstr "Home"
2609
-
2610
- #~ msgid "[Post]"
2611
- #~ msgstr "[Post]"
2612
-
2613
- #~ msgid "Top"
2614
- #~ msgstr "Top"
2615
-
2616
- #~ msgid "Bottom"
2617
- #~ msgstr "Bottom"
2618
-
2619
- #~ msgid "[Sticky Bar, bar will stay at position regardless of scrolling.]"
2620
- #~ msgstr "[Sticky Bar, bar will stay at position regardless of scrolling.]"
2621
-
2622
- #~ msgid "px"
2623
- #~ msgstr "px"
2624
-
2625
- #~ msgid "Set 0px to auto fit contents."
2626
- #~ msgstr "Set 0px to auto fit contents."
2627
-
2628
- #~ msgid ""
2629
- #~ "(Top bar only) If you find the bar overlapping, try increasing this "
2630
- #~ "value. (eg. WordPress 3.8 Twenty Fourteen theme, set 48px)"
2631
- #~ msgstr ""
2632
- #~ "(Top bar only) If you find the bar overlapping, try increasing this "
2633
- #~ "value. (eg. WordPress 3.8 Twenty Fourteen theme, set 48px)"
2634
-
2635
- #~ msgid "second(s)"
2636
- #~ msgstr "second(s)"
2637
-
2638
- #~ msgid "Set 0 second(s) to display immediately."
2639
- #~ msgstr "Set 0 second(s) to display immediately."
2640
-
2641
- #~ msgid "Set 0 second(s) for no animation."
2642
- #~ msgstr "Set 0 second(s) for no animation."
2643
-
2644
- #~ msgid "[Displays a close button at the top right corner of the bar.]"
2645
- #~ msgstr "[Displays a close button at the top right corner of the bar.]"
2646
-
2647
- #~ msgid "Set 0 second(s) to disable auto close."
2648
- #~ msgstr "Set 0 second(s) to disable auto close."
2649
-
2650
- #~ msgid "A reopen button will be displayed after the bar is closed."
2651
- #~ msgstr "A reopen button will be displayed after the bar is closed."
2652
-
2653
- #~ msgid "Once closed, bar will display closed on other pages."
2654
- #~ msgstr "Once closed, bar will display closed on other pages."
2655
-
2656
- #~ msgid "day(s)"
2657
- #~ msgstr "day(s)"
2658
-
2659
- #~ msgid ""
2660
- #~ "Bar will be kept closed for the number of days specified from last closed "
2661
- #~ "date."
2662
- #~ msgstr ""
2663
- #~ "Bar will be kept closed for the number of days specified from last closed "
2664
- #~ "date."
2665
-
2666
- #~ msgid "Content"
2667
- #~ msgstr "Content"
2668
-
2669
- #~ msgid "[HTML tags are allowed. e.g. Add <br /> for break.]"
2670
- #~ msgstr "[HTML tags are allowed. e.g. Add <br /> for break.]"
2671
-
2672
- #~ msgid "[Displays a button next to the message.]"
2673
- #~ msgstr "[Displays a button next to the message.]"
2674
-
2675
- #~ msgid "Filter"
2676
- #~ msgstr "Filter"
2677
-
2678
- #~ msgid "Only in landing page."
2679
- #~ msgstr "Only in landing page."
2680
-
2681
- #~ msgid "Include in following pages"
2682
- #~ msgstr "Include in following pages"
2683
-
2684
- #~ msgid "Exclude in following pages"
2685
- #~ msgstr "Exclude in following pages"
2686
-
2687
- #~ msgid "Color"
2688
- #~ msgstr "Color"
2689
-
2690
- #~ msgid "Bar Color"
2691
- #~ msgstr "Bar Color"
2692
-
2693
- #~ msgid "[Select two different colors to create a gradient.]"
2694
- #~ msgstr "[Select two different colors to create a gradient.]"
2695
-
2696
- #~ msgid "Button Color"
2697
- #~ msgstr "Button Color"
2698
-
2699
- #~ msgid "[Normal, Hover, X]"
2700
- #~ msgstr "[Normal, Hover, X]"
2701
-
2702
- #~ msgid "CSS"
2703
- #~ msgstr "CSS"
2704
-
2705
- #~ msgid "Plugin Ideas"
2706
- #~ msgstr "Plugin Ideas"
2707
-
2708
- #~ msgid "Animate Display"
2709
- #~ msgstr "Animate Display"
2710
-
2711
- #~ msgid "Animate Display Delay"
2712
- #~ msgstr "Animate Display Delay"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/wpfront-user-role-editor-pt_BR.mo DELETED
Binary file
languages/wpfront-user-role-editor-pt_BR/index.php DELETED
@@ -1,2 +0,0 @@
1
- <?php
2
- // Silence is golden.
 
 
languages/wpfront-user-role-editor-pt_BR/readme.txt DELETED
@@ -1 +0,0 @@
1
- Contributor: Mauro Mascarenhas <nintersoft.ml>
 
languages/wpfront-user-role-editor-pt_BR/wpfront-user-role-editor-pt_BR.mo DELETED
Binary file
languages/wpfront-user-role-editor-pt_BR/wpfront-user-role-editor-pt_BR.po DELETED
@@ -1,1782 +0,0 @@
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-sv_SE.mo DELETED
Binary file
languages/wpfront-user-role-editor-sv_SE/index.php DELETED
@@ -1,2 +0,0 @@
1
- <?php
2
- // Silence is golden.
 
 
languages/wpfront-user-role-editor-sv_SE/readme.txt DELETED
@@ -1 +0,0 @@
1
- Contributor: Elger Lindgren <bilddigital.se>
 
languages/wpfront-user-role-editor-sv_SE/wpfront-user-role-editor-sv_SE.mo DELETED
Binary file
languages/wpfront-user-role-editor-sv_SE/wpfront-user-role-editor-sv_SE.po DELETED
@@ -1,1692 +0,0 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: WPFront User Role Editor Personal Pro\n"
4
- "POT-Creation-Date: 2015-03-19 11:44+0100\n"
5
- "PO-Revision-Date: 2015-03-20 12:15+0100\n"
6
- "Last-Translator: \n"
7
- "Language-Team: \n"
8
- "Language: sv_SE\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.7.5\n"
13
- "X-Poedit-Basepath: ..\n"
14
- "X-Poedit-SourceCharset: UTF-8\n"
15
- "X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
16
- "esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;"
17
- "_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
18
- "Plural-Forms: nplurals=2; plural=(n != 1);\n"
19
- "X-Poedit-SearchPath-0: .\n"
20
- "X-Poedit-SearchPathExcluded-0: *.js\n"
21
-
22
- #: classes/base/class-wpfront-base-menu.php:56
23
- #: classes/personal-pro/class-wpfront-user-role-editor-content-shortcodes-list-table.php:84
24
- #: classes/personal-pro/class-wpfront-user-role-editor-content-shortcodes.php:369
25
- #: classes/personal-pro/class-wpfront-user-role-editor-content-shortcodes.php:416
26
- #: templates/personal-pro/content-shortcodes-add-edit.php:15
27
- #: templates/personal-pro/menu-editor.php:138
28
- msgid "Name"
29
- msgstr "Namn"
30
-
31
- #: classes/base/class-wpfront-base-menu.php:57
32
- msgid "Version"
33
- msgstr "Version"
34
-
35
- #: classes/base/class-wpfront-base-menu.php:58
36
- msgid "Rating"
37
- msgstr "Ranking"
38
-
39
- #: classes/base/class-wpfront-base-menu.php:59
40
- #: classes/class-wpfront-user-role-editor-nav-menu-walker.php:183
41
- msgid "Description"
42
- msgstr "Beskrivning"
43
-
44
- #: classes/base/class-wpfront-base-menu.php:73
45
- #, php-format
46
- msgid "based on %s rating(s)"
47
- msgstr "baserad på %s behörighet(er)"
48
-
49
- #: classes/base/class-wpfront-base-menu.php:109
50
- msgid "Unable to communicate with WordPress.org"
51
- msgstr "Det går inte att kommunicera med WordPress.org"
52
-
53
- #: classes/base/class-wpfront-base-menu.php:127
54
- #: classes/base/class-wpfront-base-menu.php:221
55
- msgid "WPFront Plugins"
56
- msgstr "WPFront Insticksprogram"
57
-
58
- #: classes/base/class-wpfront-base-menu.php:151
59
- #, php-format
60
- msgid "By %s"
61
- msgstr "Av %s"
62
-
63
- #: classes/base/class-wpfront-base-menu.php:158
64
- #, php-format
65
- msgid "More information about %s"
66
- msgstr "Mer information om %s"
67
-
68
- #: classes/base/class-wpfront-base-menu.php:158
69
- #: classes/class-wpfront-user-role-editor-go-pro.php:225
70
- msgid "Details"
71
- msgstr "Detaljer"
72
-
73
- #: classes/base/class-wpfront-base-menu.php:167
74
- #, php-format
75
- msgid "Install %s"
76
- msgstr "Installera %s"
77
-
78
- #: classes/base/class-wpfront-base-menu.php:167
79
- msgid "Install Now"
80
- msgstr "Installera nu"
81
-
82
- #: classes/base/class-wpfront-base-menu.php:172
83
- #, php-format
84
- msgid "Update to version %s"
85
- msgstr "Uppdatera till version %s"
86
-
87
- #: classes/base/class-wpfront-base-menu.php:172
88
- msgid "Update Now"
89
- msgstr "Uppdatera nu"
90
-
91
- #: classes/base/class-wpfront-base-menu.php:177
92
- msgid "This plugin is already installed and is up to date"
93
- msgstr "Denna plugin är redan installerad och är uppdaterad"
94
-
95
- #: classes/base/class-wpfront-base-menu.php:177
96
- msgid "Installed"
97
- msgstr "Installerad"
98
-
99
- #: classes/base/class-wpfront-base-menu.php:179
100
- #: classes/base/class-wpfront-base.php:119
101
- #: classes/class-wpfront-user-role-editor-options.php:262
102
- #: classes/class-wpfront-user-role-editor.php:225
103
- msgid "Settings"
104
- msgstr "Inställningar"
105
-
106
- #: classes/base/class-wpfront-base-menu.php:181
107
- #: classes/personal-pro/class-wpfront-user-role-editor-personal-pro.php:107
108
- #: templates/go-pro.php:71 templates/go-pro.php:72
109
- msgid "Activate"
110
- msgstr "Aktivera"
111
-
112
- #: classes/base/class-wpfront-base-menu.php:203
113
- #: classes/class-wpfront-user-role-editor.php:340
114
- msgid "Feedback"
115
- msgstr "Feedback"
116
-
117
- #: classes/base/class-wpfront-base-menu.php:220
118
- msgid "WPFront"
119
- msgstr "WPFront"
120
-
121
- #: classes/base/class-wpfront-base-menu.php:221
122
- msgid "All Plugins"
123
- msgstr "Alla insticksprogram"
124
-
125
- #: classes/base/class-wpfront-base.php:148
126
- #: classes/class-wpfront-user-role-editor.php:289
127
- msgid "You do not have sufficient permissions to access this page."
128
- msgstr "Du har inte rättigheter för att få åtkomst till denna sida."
129
-
130
- #: classes/base/class-wpfront-base.php:168
131
- msgid ""
132
- "If you have a caching plugin, clear the cache for the new settings to take "
133
- "effect."
134
- msgstr ""
135
- "Om du har en caching plugin, rensa cachen för att de nya inställningarna ska "
136
- "börja gälla."
137
-
138
- #: classes/base/class-wpfront-base.php:215
139
- #: templates/personal-pro/menu-editor.php:232
140
- msgid "Save Changes"
141
- msgstr "Spara ändringar"
142
-
143
- #: classes/class-wpfront-user-role-editor-add-edit.php:324
144
- #: classes/class-wpfront-user-role-editor-add-remove-capability.php:128
145
- #: classes/class-wpfront-user-role-editor-assign-roles.php:365
146
- #: classes/class-wpfront-user-role-editor-list.php:361
147
- #: classes/class-wpfront-user-role-editor-list.php:395
148
- #: classes/class-wpfront-user-role-editor-list.php:412
149
- #: classes/class-wpfront-user-role-editor-options.php:255
150
- #: classes/class-wpfront-user-role-editor-options.php:302
151
- #: classes/class-wpfront-user-role-editor-restore.php:168
152
- #: classes/personal-pro/class-wpfront-user-role-editor-content-shortcodes.php:362
153
- #: classes/personal-pro/class-wpfront-user-role-editor-content-shortcodes.php:393
154
- #: classes/personal-pro/class-wpfront-user-role-editor-content-shortcodes.php:404
155
- #: classes/personal-pro/class-wpfront-user-role-editor-export.php:130
156
- #: classes/personal-pro/class-wpfront-user-role-editor-import.php:229
157
- #: classes/personal-pro/class-wpfront-user-role-editor-menu-editor.php:592
158
- msgid "Overview"
159
- msgstr "Översikt"
160
-
161
- #: classes/class-wpfront-user-role-editor-add-edit.php:326
162
- msgid "This screen allows you to add a new role within your site."
163
- msgstr "Här kan du lägga till en ny roll inom din webbplats."
164
-
165
- #: classes/class-wpfront-user-role-editor-add-edit.php:329
166
- #: classes/class-wpfront-user-role-editor-list.php:366
167
- msgid ""
168
- "You can copy capabilities from existing roles using the Copy from drop down "
169
- "list. Select the role you want to copy from, then click Apply to copy the "
170
- "capabilities. You can select or deselect capabilities even after you copy."
171
- msgstr ""
172
- "Du kan kopiera befogenheter från befintliga roller med hjälp av Kopiera från "
173
- "rullistan. Markera den roll du vill kopiera från, och klicka sedan på "
174
- "Verkställ för att kopiera befogenheterna. Du kan välja eller välja bort "
175
- "befogenheter även efter att du kopierat."
176
-
177
- #: classes/class-wpfront-user-role-editor-add-edit.php:334
178
- #: classes/class-wpfront-user-role-editor-list.php:225
179
- #: classes/class-wpfront-user-role-editor-list.php:371
180
- #: classes/class-wpfront-user-role-editor-list.php:424
181
- #: templates/add-edit-role.php:77
182
- msgid "Display Name"
183
- msgstr "Visningsnamn"
184
-
185
- #: classes/class-wpfront-user-role-editor-add-edit.php:336
186
- msgid ""
187
- "Use the Display Name field to set the display name for the new role. "
188
- "WordPress uses display name to display this role within your site. This "
189
- "field is required."
190
- msgstr ""
191
- "Använd fältet Visningsnamn för att ställa in visningsnamnet för den nya "
192
- "rollen. Wordpress använder visningsnamn för att visa denna roll inom din "
193
- "webbplats. Detta fält är obligatoriskt."
194
-
195
- #: classes/class-wpfront-user-role-editor-add-edit.php:341
196
- #: classes/class-wpfront-user-role-editor-list.php:228
197
- #: classes/class-wpfront-user-role-editor-list.php:378
198
- #: classes/class-wpfront-user-role-editor-list.php:429
199
- #: templates/add-edit-role.php:87
200
- msgid "Role Name"
201
- msgstr "Rollnamn"
202
-
203
- #: classes/class-wpfront-user-role-editor-add-edit.php:343
204
- msgid ""
205
- "Use the Role Name field to set the role name for the new role. WordPress "
206
- "uses role name to identify this role within your site. Once set role name "
207
- "cannot be changed. This field is required. This plugin will auto populate "
208
- "role name from the display name you have given, but you can change it."
209
- msgstr ""
210
- "Använd Rollnamn-fältet för att ställa in rollnamn för den nya rollen. "
211
- "Wordpress använder rollnamn för att identifiera denna roll inom din "
212
- "webbplats. När inställningen rollnamn är gjord kan det inte ändras. Detta "
213
- "fält är obligatoriskt. Detta plugin kommer automatiskt fylla rollen namn "
214
- "från det visningsnamn du angivit, men du kan ändra det."
215
-
216
- #: classes/class-wpfront-user-role-editor-add-edit.php:348
217
- #: classes/class-wpfront-user-role-editor-list.php:240
218
- #: classes/class-wpfront-user-role-editor-list.php:385
219
- #: classes/class-wpfront-user-role-editor-list.php:449
220
- #: templates/add-edit-role.php:101
221
- msgid "Capabilities"
222
- msgstr "Befogenheter"
223
-
224
- #: classes/class-wpfront-user-role-editor-add-edit.php:350
225
- msgid ""
226
- "Capabilities are displayed as different groups for easy access. The Roles "
227
- "section displays capabilities created by this plugin. The Other Capabilities "
228
- "section displays non-standard capabilities within your site. These are "
229
- "usually created by plugins and themes. Use the check boxes to select the "
230
- "capabilities required for this new role."
231
- msgstr ""
232
- "Befogenheter visas som olika grupper för enkel åtkomst. Avsnittet Roller "
233
- "visar befogenheter som skapats av denna plugin. Den andra "
234
- "befogenhetsavsnittet visar icke-standardiserade befogenheter inom din "
235
- "webbplats. Dessa är vanligtvis skapade av plugins och teman. Använd "
236
- "kryssrutorna för att välja de befogenheter som krävs för denna nya roll."
237
-
238
- #: classes/class-wpfront-user-role-editor-add-edit.php:359
239
- msgid "Documentation on Add New Role"
240
- msgstr "Dokumentation till Lägg till ny roll"
241
-
242
- #: classes/class-wpfront-user-role-editor-add-edit.php:378
243
- msgid "Uses 'Posts' capabilities."
244
- msgstr "Använder 'Inläggs' befogenheter."
245
-
246
- #: classes/class-wpfront-user-role-editor-add-edit.php:379
247
- #, php-format
248
- msgid "%s to customize capabilites."
249
- msgstr "%s för att anpassa befogenheter."
250
-
251
- #: classes/class-wpfront-user-role-editor-add-edit.php:379
252
- msgid "Upgrade to Pro"
253
- msgstr "Uppgradera till PRO"
254
-
255
- #: classes/class-wpfront-user-role-editor-add-remove-capability.php:108
256
- msgid "Roles updated."
257
- msgstr "Roller uppdaterade."
258
-
259
- #: classes/class-wpfront-user-role-editor-add-remove-capability.php:130
260
- msgid ""
261
- "This screen allows you to add a capability to roles or remove a capability "
262
- "from roles within your site."
263
- msgstr ""
264
- "Här kan du lägga till en befogenhet till roller eller ta bort en befogenhet "
265
- "från roller inom din webbplats."
266
-
267
- #: classes/class-wpfront-user-role-editor-add-remove-capability.php:135
268
- #: templates/add-remove-capability.php:61
269
- msgid "Action"
270
- msgstr "Åtgärd"
271
-
272
- #: classes/class-wpfront-user-role-editor-add-remove-capability.php:137
273
- msgid "Select \"Add Capability\" to add a capability to roles."
274
- msgstr ""
275
- "Välj \"Lägg till befogenhet\" för att lägga till en befogenhet till roller."
276
-
277
- #: classes/class-wpfront-user-role-editor-add-remove-capability.php:140
278
- msgid "Select \"Remove Capability\" to remove a capability from roles."
279
- msgstr "Välj \"Ta bort befogenhet\" för att ta bort en befogenhet från roller."
280
-
281
- #: classes/class-wpfront-user-role-editor-add-remove-capability.php:145
282
- #: templates/add-remove-capability.php:75
283
- #: templates/personal-pro/menu-editor.php:141
284
- msgid "Capability"
285
- msgstr "Befogenhet"
286
-
287
- #: classes/class-wpfront-user-role-editor-add-remove-capability.php:147
288
- msgid "Use the Capability field to name the capability to be added or removed."
289
- msgstr ""
290
- "Använd befogenhetsfältet för att namnge befogenheten som ska läggas till "
291
- "eller tas bort."
292
-
293
- #: classes/class-wpfront-user-role-editor-add-remove-capability.php:152
294
- #: classes/class-wpfront-user-role-editor.php:221
295
- #: classes/class-wpfront-user-role-editor.php:233
296
- #: classes/personal-pro/class-wpfront-user-role-editor-content-shortcodes-list-table.php:87
297
- #: classes/personal-pro/class-wpfront-user-role-editor-content-shortcodes.php:431
298
- #: templates/add-remove-capability.php:85 templates/list-roles.php:43
299
- msgid "Roles"
300
- msgstr "Roller"
301
-
302
- #: classes/class-wpfront-user-role-editor-add-remove-capability.php:154
303
- #: classes/class-wpfront-user-role-editor.php:221
304
- #: templates/add-remove-capability.php:90
305
- msgid "All Roles"
306
- msgstr "Alla roller"
307
-
308
- #: classes/class-wpfront-user-role-editor-add-remove-capability.php:155
309
- msgid ""
310
- "Select \"All Roles\", if you want the current action to be applied to all "
311
- "roles within your site."
312
- msgstr ""
313
- "Välj \"Alla Roller\";, om du vill att nuvarande åtgärder skall tillämpas på "
314
- "alla roller inom din webbplats."
315
-
316
- #: classes/class-wpfront-user-role-editor-add-remove-capability.php:158
317
- #: templates/add-remove-capability.php:92
318
- msgid "Selected Roles"
319
- msgstr "Valda Roller"
320
-
321
- #: classes/class-wpfront-user-role-editor-add-remove-capability.php:159
322
- msgid ""
323
- "Select \"Selected Roles\", if you want to individually select the roles. "
324
- "When this option is selected, \"Administrator\" role is included by default "
325
- "on \"Add Capability\" action and excluded by default on \"Remove Capability"
326
- "\" action."
327
- msgstr ""
328
- "Välj \"Valda roller\", om du vill individuellt välja rollerna. När det här "
329
- "alternativet är valt, ingår \"Administrator\" rollen som standard på \"Lägg "
330
- "till befogenhet\"s händelsen och utesluts som standard på \"Ta bort "
331
- "befogenhet\"-händelsen."
332
-
333
- #: classes/class-wpfront-user-role-editor-add-remove-capability.php:168
334
- msgid "Documentation on Add/Remove Capability"
335
- msgstr "Dokumentation om Lägg till/ta bort Befogenhet"
336
-
337
- #: classes/class-wpfront-user-role-editor-assign-roles.php:66
338
- #: classes/class-wpfront-user-role-editor-assign-roles.php:339
339
- msgid "Secondary Roles"
340
- msgstr "Sekundära Roller"
341
-
342
- #: classes/class-wpfront-user-role-editor-assign-roles.php:81
343
- #: classes/class-wpfront-user-role-editor-assign-roles.php:372
344
- #: templates/assign-roles.php:42 templates/assign-roles.php:94
345
- msgid "Assign Roles"
346
- msgstr "Tilldela roller"
347
-
348
- #: classes/class-wpfront-user-role-editor-assign-roles.php:170
349
- msgid "No role for this site"
350
- msgstr "Ingen roll för den här webbplatsen"
351
-
352
- #: classes/class-wpfront-user-role-editor-assign-roles.php:196
353
- msgid "Invalid user."
354
- msgstr "Ogiltig användare."
355
-
356
- #: classes/class-wpfront-user-role-editor-assign-roles.php:224
357
- msgid "Roles updated successfully."
358
- msgstr "Roller uppdaterades."
359
-
360
- #: classes/class-wpfront-user-role-editor-assign-roles.php:226
361
- msgid "Invalid primary role specified."
362
- msgstr "Ogiltig primär roll angiven."
363
-
364
- #: classes/class-wpfront-user-role-editor-assign-roles.php:244
365
- #: classes/class-wpfront-user-role-editor-assign-roles.php:254
366
- msgid "Invalid primary role."
367
- msgstr "Ogiltig primär roll."
368
-
369
- #: classes/class-wpfront-user-role-editor-assign-roles.php:276
370
- #, php-format
371
- msgid "%d user(s) migrated."
372
- msgstr "%d användare migrerad(e)."
373
-
374
- #: classes/class-wpfront-user-role-editor-assign-roles.php:321
375
- msgid "Primary Role"
376
- msgstr "Primär roll"
377
-
378
- #: classes/class-wpfront-user-role-editor-assign-roles.php:367
379
- msgid ""
380
- "This screen allows you to assign multiple roles to a user and also allows "
381
- "you to migrate users from a role to another role."
382
- msgstr ""
383
- "Här kan du tilldela flera roller till en användare och ger dig även "
384
- "möjlighet att migrera användare från en roll till en annan."
385
-
386
- #: classes/class-wpfront-user-role-editor-assign-roles.php:374
387
- msgid ""
388
- "To assign multiple roles to a user, select that user within the User drop "
389
- "down list and select the primary role you want for that user using the "
390
- "Primary Role drop down list. Select the secondary roles using the check "
391
- "boxes below, then click Assign Roles."
392
- msgstr ""
393
- "För att tilldela flera roller till en användare väljer den användare i "
394
- "användarrullgardinslistan och välj den primära roll som du vill ha för den "
395
- "användaren med hjälp av primär roll-rullistan. Välj de sekundära rollerna "
396
- "med hjälp av kryssrutorna nedan, klicka sedan på Tilldela roller."
397
-
398
- #: classes/class-wpfront-user-role-editor-assign-roles.php:379
399
- #: templates/assign-roles.php:99 templates/assign-roles.php:132
400
- msgid "Migrate Users"
401
- msgstr "Migrera Användare"
402
-
403
- #: classes/class-wpfront-user-role-editor-assign-roles.php:381
404
- msgid ""
405
- "To migrate users from one role to another role or to add secondary roles to "
406
- "users belonging to a particular primary role, use the migrate users "
407
- "functionality."
408
- msgstr ""
409
- "För att migrera användare från en roll till en annan roll eller att lägga "
410
- "sekundära roller till användare som tillhör en viss primär roll, använd "
411
- "migrera användare- funktionen."
412
-
413
- #: classes/class-wpfront-user-role-editor-assign-roles.php:384
414
- msgid ""
415
- "Select the users using the From Primary Role drop down, to primary role "
416
- "using the Primary Role drop down and secondary roles using the check boxes "
417
- "then click Migrate Users."
418
- msgstr ""
419
- "Markera användare genom att välja från rullgardinslistan Från Primär Roll, "
420
- "till primära roll med den Primär Roll-rullgardinslistan och sekundära roller "
421
- "med hjälp av kryssrutorna och klicka sedan på Migrera Användare."
422
-
423
- #: classes/class-wpfront-user-role-editor-assign-roles.php:393
424
- msgid "Documentation on Assign / Migrate Users"
425
- msgstr "Dokumentation om Tilldela/Migrera användare"
426
-
427
- #: classes/class-wpfront-user-role-editor-controller-base.php:87
428
- msgid "Links:"
429
- msgstr "Länkar:"
430
-
431
- #: classes/class-wpfront-user-role-editor-controller-base.php:93
432
- msgid "FAQ"
433
- msgstr "FAQ"
434
-
435
- #: classes/class-wpfront-user-role-editor-controller-base.php:94
436
- msgid "Support"
437
- msgstr "Support"
438
-
439
- #: classes/class-wpfront-user-role-editor-controller-base.php:95
440
- msgid "Review"
441
- msgstr "Recensera"
442
-
443
- #: classes/class-wpfront-user-role-editor-controller-base.php:96
444
- msgid "Contact"
445
- msgstr "Kontakt"
446
-
447
- #: classes/class-wpfront-user-role-editor-go-pro.php:182
448
- #: classes/class-wpfront-user-role-editor-go-pro.php:184
449
- #: classes/class-wpfront-user-role-editor-go-pro.php:204
450
- #: classes/class-wpfront-user-role-editor-go-pro.php:223
451
- #: classes/class-wpfront-user-role-editor-go-pro.php:232
452
- #: classes/class-wpfront-user-role-editor-restore.php:87
453
- #: templates/add-edit-role.php:51 templates/add-edit-role.php:59
454
- #: templates/personal-pro/content-shortcodes.php:23
455
- msgid "ERROR"
456
- msgstr "FEL"
457
-
458
- #: classes/class-wpfront-user-role-editor-go-pro.php:182
459
- msgid "License key activation limit reached"
460
- msgstr "Licensnyckelns aktiveringsgräns uppnådd"
461
-
462
- #: classes/class-wpfront-user-role-editor-go-pro.php:184
463
- msgid "Invalid license key"
464
- msgstr "Ogiltig licensnyckel"
465
-
466
- #: classes/class-wpfront-user-role-editor-go-pro.php:204
467
- msgid "Unable to deactivate, expired license?"
468
- msgstr "Kan inte avaktivare, utgången licens?"
469
-
470
- #: classes/class-wpfront-user-role-editor-go-pro.php:223
471
- msgid "Unable to contact wpfront.com"
472
- msgstr "Det går inte att kontakta wpfront.com"
473
-
474
- #: classes/class-wpfront-user-role-editor-go-pro.php:232
475
- msgid "Unable to parse response"
476
- msgstr "Det går inte att tolka svar"
477
-
478
- #: classes/class-wpfront-user-role-editor-list.php:221
479
- #: templates/add-edit-role.php:117 templates/personal-pro/menu-editor.php:132
480
- msgid "Select All"
481
- msgstr "Välj alla"
482
-
483
- #: classes/class-wpfront-user-role-editor-list.php:231
484
- #: classes/class-wpfront-user-role-editor-list.php:434
485
- msgid "Type"
486
- msgstr "Typ"
487
-
488
- #: classes/class-wpfront-user-role-editor-list.php:234
489
- #: classes/class-wpfront-user-role-editor-list.php:439
490
- msgid "User Default"
491
- msgstr "Användarförval"
492
-
493
- #: classes/class-wpfront-user-role-editor-list.php:237
494
- #: classes/class-wpfront-user-role-editor-list.php:444
495
- msgid "Users"
496
- msgstr "Användare"
497
-
498
- #: classes/class-wpfront-user-role-editor-list.php:258
499
- msgid "Bulk Actions"
500
- msgstr "Massåtgärder"
501
-
502
- #: classes/class-wpfront-user-role-editor-list.php:260
503
- #: classes/class-wpfront-user-role-editor-list.php:476
504
- #: classes/personal-pro/class-wpfront-user-role-editor-content-shortcodes-list-table.php:62
505
- #: classes/personal-pro/class-wpfront-user-role-editor-content-shortcodes-list-table.php:149
506
- #: classes/personal-pro/class-wpfront-user-role-editor-content-shortcodes.php:448
507
- #: templates/list-roles.php:112
508
- #: templates/personal-pro/post-type-permissions.php:35
509
- msgid "Delete"
510
- msgstr "Radera"
511
-
512
- #: classes/class-wpfront-user-role-editor-list.php:263
513
- #: templates/add-edit-role.php:113 templates/personal-pro/menu-editor.php:100
514
- msgid "Apply"
515
- msgstr "Utför"
516
-
517
- #: classes/class-wpfront-user-role-editor-list.php:265
518
- #, php-format
519
- msgid "%s item(s)"
520
- msgstr "%s produkt(er)"
521
-
522
- #: classes/class-wpfront-user-role-editor-list.php:288
523
- msgid "All"
524
- msgstr "Alla"
525
-
526
- #: classes/class-wpfront-user-role-editor-list.php:302
527
- msgid "Having Users"
528
- msgstr "Har Användare"
529
-
530
- #: classes/class-wpfront-user-role-editor-list.php:308
531
- msgid "No Users"
532
- msgstr "Inga användare"
533
-
534
- #: classes/class-wpfront-user-role-editor-list.php:319
535
- #: templates/list-roles.php:129
536
- msgid "Built-In"
537
- msgstr "Inbyggd"
538
-
539
- #: classes/class-wpfront-user-role-editor-list.php:325
540
- #: templates/list-roles.php:129
541
- msgid "Custom"
542
- msgstr "Anpassad"
543
-
544
- #: classes/class-wpfront-user-role-editor-list.php:363
545
- msgid "This screen allows you to edit a role within your site."
546
- msgstr "Här kan du redigera en roll inom din webbplats."
547
-
548
- #: classes/class-wpfront-user-role-editor-list.php:373
549
- msgid ""
550
- "Use the Display Name field to edit display name of the role. WordPress uses "
551
- "display name to display this role within your site. This field is required."
552
- msgstr ""
553
- "Använd fältet Visningsnamn för att redigera visningsnamnet för rollen. "
554
- "Wordpress använder visningsnamn för att visa denna roll inom din webbplats. "
555
- "Detta fält är obligatoriskt."
556
-
557
- #: classes/class-wpfront-user-role-editor-list.php:380
558
- msgid ""
559
- "Role Name is read only. WordPress uses role name to identify this role "
560
- "within your site."
561
- msgstr ""
562
- "Rollnamnet är skrivskyddad. WordPress använder rollnamn för att identifiera "
563
- "denna roll inom webbplatsen."
564
-
565
- #: classes/class-wpfront-user-role-editor-list.php:387
566
- msgid ""
567
- "Capabilities are displayed as different groups for easy access. The Roles "
568
- "section displays capabilities created by this plugin. The Other Capabilities "
569
- "section displays non-standard capabilities within your site. These are "
570
- "usually created by plugins and themes. Use the check boxes to select the "
571
- "capabilities required."
572
- msgstr ""
573
- "Befogenheter visas som olika grupper för enkel åtkomst. Avsnittet Roller "
574
- "visar befogenheter som skapats av denna plugin. Det andra "
575
- "befogenhetsavsnittet visar icke-standardiserade befogenheter inom din "
576
- "webbplats. Dessa är vanligtvis skapade av plugins och teman. Använd "
577
- "kryssrutorna för att välja de befogenheter som krävs för denna nya roll."
578
-
579
- #: classes/class-wpfront-user-role-editor-list.php:397
580
- msgid "This screen allows you to delete roles from your WordPress site."
581
- msgstr "Här kan du ta bort roller från din WordPresswebbplats."
582
-
583
- #: classes/class-wpfront-user-role-editor-list.php:400
584
- msgid ""
585
- "Use the Roles List screen to select the roles you want to delete. You can "
586
- "delete individual roles using the Delete row action link or delete multiple "
587
- "roles at the same time using the bulk action."
588
- msgstr ""
589
- "Använd Rollistan för att välja de roller som du vill ta bort. Du kan ta bort "
590
- "enskilda roller med hjälp av länken ta bort rad eller ta bort flera roller "
591
- "samtidigt med massåtgärden."
592
-
593
- #: classes/class-wpfront-user-role-editor-list.php:403
594
- msgid ""
595
- "You cannot delete administrator role, current user’s role and roles you do "
596
- "not have permission to."
597
- msgstr ""
598
- "Du kan inte ta bort administratörsrollen, nuvarande användares roll och "
599
- "roller som du inte har behörighet till."
600
-
601
- #: classes/class-wpfront-user-role-editor-list.php:414
602
- msgid "This screen lists all the existing roles within your site."
603
- msgstr "Här listas över alla befintliga roller inom webbplatsen."
604
-
605
- #: classes/class-wpfront-user-role-editor-list.php:417
606
- msgid ""
607
- "To add a new role, click the Add New button at the top of the screen or Add "
608
- "New in the Roles menu section."
609
- msgstr ""
610
- "Klicka på knappen Lägg till ny överst på skärmen eller Lägg till ny från "
611
- "Roller-menyn för att lägga till en ny roll."
612
-
613
- #: classes/class-wpfront-user-role-editor-list.php:422
614
- #: classes/personal-pro/class-wpfront-user-role-editor-content-shortcodes.php:414
615
- msgid "Columns"
616
- msgstr "Kolumner"
617
-
618
- #: classes/class-wpfront-user-role-editor-list.php:426
619
- msgid "Used to display this role within this site."
620
- msgstr "Används för att visa denna roll inom denna webbplats."
621
-
622
- #: classes/class-wpfront-user-role-editor-list.php:431
623
- msgid "Is used by WordPress to identify this role."
624
- msgstr "Används av WordPress för att identifiera denna roll."
625
-
626
- #: classes/class-wpfront-user-role-editor-list.php:436
627
- msgid ""
628
- "Says whether the role is a WordPress built-in role or not. There are five "
629
- "built-in roles."
630
- msgstr ""
631
- "Säger om rollen är en WordPress-inbyggd roll eller inte. Det finns fem "
632
- "inbyggda roller."
633
-
634
- #: classes/class-wpfront-user-role-editor-list.php:441
635
- msgid "Displays whether a role is the default role of a new user."
636
- msgstr "Visar om en roll är standardrollen för en ny användare."
637
-
638
- #: classes/class-wpfront-user-role-editor-list.php:446
639
- msgid "Number of users in that role."
640
- msgstr "Antalet användare i den rollen."
641
-
642
- #: classes/class-wpfront-user-role-editor-list.php:451
643
- msgid "Number of capabilities that role have."
644
- msgstr "Antal behörigheter som har den rollen."
645
-
646
- #: classes/class-wpfront-user-role-editor-list.php:454
647
- msgid "Menu Edited"
648
- msgstr "Meny Redigerad"
649
-
650
- #: classes/class-wpfront-user-role-editor-list.php:456
651
- msgid ""
652
- "Displays whether the menu has been edited for this role. This is a pro "
653
- "feature."
654
- msgstr ""
655
- "Visar om menyn har redigerats för denna roll. Detta är en pro funktion."
656
-
657
- #: classes/class-wpfront-user-role-editor-list.php:461
658
- #: classes/personal-pro/class-wpfront-user-role-editor-content-shortcodes.php:438
659
- msgid "Actions"
660
- msgstr "Åtgärder"
661
-
662
- #: classes/class-wpfront-user-role-editor-list.php:463
663
- msgid ""
664
- "Hovering over a row in the roles list will display action links that allow "
665
- "you to manage roles. You can perform the following actions:"
666
- msgstr ""
667
- "Hovring över en rad i rollistan visar åtgärdslänkar som tillåter dig att "
668
- "hantera roller. Du kan utföra följande åtgärder:"
669
-
670
- #: classes/class-wpfront-user-role-editor-list.php:466
671
- #: templates/list-roles.php:109
672
- msgid "View"
673
- msgstr "Visa"
674
-
675
- #: classes/class-wpfront-user-role-editor-list.php:468
676
- msgid ""
677
- "Display details about the role. You can see the capabilities assigned for "
678
- "that role. View link will only appear when you do not have permission to "
679
- "edit that role."
680
- msgstr ""
681
- "Visa detaljer om rollen. Du kan se de behörigheter som tilldelats för den "
682
- "rollen. Visa länk visas bara när du inte har behörighet att redigera den "
683
- "rollen."
684
-
685
- #: classes/class-wpfront-user-role-editor-list.php:471
686
- #: classes/personal-pro/class-wpfront-user-role-editor-content-shortcodes-list-table.php:146
687
- #: classes/personal-pro/class-wpfront-user-role-editor-content-shortcodes.php:443
688
- #: templates/list-roles.php:109
689
- #: templates/personal-pro/post-type-permissions.php:34
690
- msgid "Edit"
691
- msgstr "Ändra"
692
-
693
- #: classes/class-wpfront-user-role-editor-list.php:473
694
- msgid ""
695
- "Allows you to edit that role. You can see the capabilities assigned for that "
696
- "role and also edit them. Edit link will only appear when you have permission "
697
- "to edit that role."
698
- msgstr ""
699
- "Tillåter dig redigera den rollen. Du kan se de behörigheter som tilldelats "
700
- "för den rollen och även redigera dem. Redigera länk visas bara när du har "
701
- "behörighet att redigera den rollen."
702
-
703
- #: classes/class-wpfront-user-role-editor-list.php:478
704
- msgid ""
705
- "Allows you to delete that role. Delete action will not appear if you do not "
706
- "have permission to delete that role."
707
- msgstr ""
708
- "Tillåter dig att stryka den rollen. Raderingsåtgärder visas inte om du inte "
709
- "har behörighet att ta bort den rollen."
710
-
711
- #: classes/class-wpfront-user-role-editor-list.php:481
712
- #: templates/list-roles.php:115
713
- msgid "Default"
714
- msgstr "Standard"
715
-
716
- #: classes/class-wpfront-user-role-editor-list.php:483
717
- msgid ""
718
- "Allows you to set that role as the default role for new user registration."
719
- msgstr ""
720
- "Tillåter dig att sätta den rollen som standard vid registrering av nya "
721
- "användare."
722
-
723
- #: classes/class-wpfront-user-role-editor-list.php:486
724
- #: classes/personal-pro/class-wpfront-user-role-editor-menu-editor.php:584
725
- msgid "Edit Menu"
726
- msgstr "Redigera Meny"
727
-
728
- #: classes/class-wpfront-user-role-editor-list.php:488
729
- msgid ""
730
- "Takes you to the menu editor screen for that role. You need \"edit_role_menus"
731
- "\" capability for this link to appear. This is a pro feature."
732
- msgstr ""
733
- "Tar dig till menyredigeraren för den rollen. Du behöver \"edit_role_menus\" "
734
- "behörighet för att länken ska visas. Detta är en pro funktion."
735
-
736
- #: classes/class-wpfront-user-role-editor-list.php:500
737
- msgid "Documentation on Edit Role"
738
- msgstr "Dokumentation till Redigera roll"
739
-
740
- #: classes/class-wpfront-user-role-editor-list.php:507
741
- msgid "Documentation on Delete Roles"
742
- msgstr "Dokumentation till ta bort roller"
743
-
744
- #: classes/class-wpfront-user-role-editor-list.php:515
745
- msgid "Documentation on Roles"
746
- msgstr "Dokumentation om roller"
747
-
748
- #: classes/class-wpfront-user-role-editor-nav-menu-walker.php:88
749
- #, php-format
750
- msgid "%s (Invalid)"
751
- msgstr "%s (ogiltig)"
752
-
753
- #: classes/class-wpfront-user-role-editor-nav-menu-walker.php:92
754
- #, php-format
755
- msgid "%s (Pending)"
756
- msgstr "%s (väntande)"
757
-
758
- #: classes/class-wpfront-user-role-editor-nav-menu-walker.php:105
759
- msgid "sub item"
760
- msgstr "sub objekt"
761
-
762
- #: classes/class-wpfront-user-role-editor-nav-menu-walker.php:120
763
- msgid "Move up"
764
- msgstr "Flytta upp"
765
-
766
- #: classes/class-wpfront-user-role-editor-nav-menu-walker.php:133
767
- msgid "Move down"
768
- msgstr "Flytta ned"
769
-
770
- #: classes/class-wpfront-user-role-editor-nav-menu-walker.php:135
771
- #: classes/class-wpfront-user-role-editor-nav-menu-walker.php:137
772
- msgid "Edit Menu Item"
773
- msgstr "Redigera menyobjekt"
774
-
775
- #: classes/class-wpfront-user-role-editor-nav-menu-walker.php:146
776
- msgid "URL"
777
- msgstr "URL"
778
-
779
- #: classes/class-wpfront-user-role-editor-nav-menu-walker.php:153
780
- msgid "Navigation Label"
781
- msgstr "Navigeringsetikett"
782
-
783
- #: classes/class-wpfront-user-role-editor-nav-menu-walker.php:159
784
- msgid "Title Attribute"
785
- msgstr "Titelattribut"
786
-
787
- #: classes/class-wpfront-user-role-editor-nav-menu-walker.php:166
788
- msgid "Open link in a new window/tab"
789
- msgstr "Öppna länk i ett nytt fönster/flik"
790
-
791
- #: classes/class-wpfront-user-role-editor-nav-menu-walker.php:171
792
- msgid "CSS Classes (optional)"
793
- msgstr "CSS-klasser (valfritt)"
794
-
795
- #: classes/class-wpfront-user-role-editor-nav-menu-walker.php:177
796
- msgid "Link Relationship (XFN)"
797
- msgstr "Länkförhållande (XFN)"
798
-
799
- #: classes/class-wpfront-user-role-editor-nav-menu-walker.php:185
800
- msgid ""
801
- "The description will be displayed in the menu if the current theme supports "
802
- "it."
803
- msgstr ""
804
- "Beskrivningen kommer att visas i menyn om det aktuella temat stöder det."
805
-
806
- #: classes/class-wpfront-user-role-editor-nav-menu-walker.php:195
807
- msgid "Move"
808
- msgstr "Flytta"
809
-
810
- #: classes/class-wpfront-user-role-editor-nav-menu-walker.php:196
811
- msgid "Up one"
812
- msgstr "Upp en"
813
-
814
- #: classes/class-wpfront-user-role-editor-nav-menu-walker.php:197
815
- msgid "Down one"
816
- msgstr "Ned en"
817
-
818
- #: classes/class-wpfront-user-role-editor-nav-menu-walker.php:200
819
- msgid "To the top"
820
- msgstr "Till toppen"
821
-
822
- #: classes/class-wpfront-user-role-editor-nav-menu-walker.php:207
823
- #, php-format
824
- msgid "Original: %s"
825
- msgstr "Original: %s"
826
-
827
- #: classes/class-wpfront-user-role-editor-nav-menu-walker.php:220
828
- msgid "Remove"
829
- msgstr "Ta bort"
830
-
831
- #: classes/class-wpfront-user-role-editor-nav-menu-walker.php:221
832
- #: templates/restore-role.php:54
833
- msgid "Cancel"
834
- msgstr "Avbryt"
835
-
836
- #: classes/class-wpfront-user-role-editor-nav-menu.php:84
837
- #: classes/class-wpfront-user-role-editor-nav-menu.php:119
838
- #: classes/personal-pro/class-wpfront-user-role-editor-content-shortcodes.php:247
839
- #: templates/personal-pro/content-shortcodes-add-edit.php:42
840
- msgid "All Users"
841
- msgstr "Alla Användare"
842
-
843
- #: classes/class-wpfront-user-role-editor-nav-menu.php:88
844
- #: classes/class-wpfront-user-role-editor-nav-menu.php:120
845
- msgid "Logged in Users"
846
- msgstr "Inloggade användare"
847
-
848
- #: classes/class-wpfront-user-role-editor-nav-menu.php:91
849
- #: classes/class-wpfront-user-role-editor-nav-menu.php:121
850
- #: classes/personal-pro/class-wpfront-user-role-editor-content-shortcodes.php:255
851
- #: templates/personal-pro/content-shortcodes-add-edit.php:46
852
- msgid "Guest Users"
853
- msgstr "Gästanvändare"
854
-
855
- #: classes/class-wpfront-user-role-editor-nav-menu.php:94
856
- #: classes/class-wpfront-user-role-editor-nav-menu.php:122
857
- msgid "Users by Role"
858
- msgstr "Användare enligt roll"
859
-
860
- #: classes/class-wpfront-user-role-editor-nav-menu.php:105
861
- #, php-format
862
- msgid "%s to limit based on roles."
863
- msgstr "%s att begränsa baserat på roller."
864
-
865
- #: classes/class-wpfront-user-role-editor-nav-menu.php:117
866
- msgid "User Restrictions"
867
- msgstr "Användarbegränsningar"
868
-
869
- #: classes/class-wpfront-user-role-editor-options.php:257
870
- msgid ""
871
- "These settings are applicable for the network admin dashboard. Also these "
872
- "settings will propagate to the individual sites unless its overridden within "
873
- "that site’s settings."
874
- msgstr ""
875
- "Dessa inställningar gäller för nätverksadmins dashboard. Dessa inställningar "
876
- "kommer också att spridas till de enskilda webbplatserna såvida de inte är "
877
- "åsidosatta inom webbplatsens inställningar."
878
-
879
- #: classes/class-wpfront-user-role-editor-options.php:264
880
- #: templates/options-template.php:61
881
- msgid "Enable Large Network Functionalities"
882
- msgstr "Aktivera StorNätverks-funktionalitet"
883
-
884
- #: classes/class-wpfront-user-role-editor-options.php:266
885
- msgid "This setting is only visible when you have a large network."
886
- msgstr "Den här inställningen visas endast när du har ett stort nätverk."
887
-
888
- #: classes/class-wpfront-user-role-editor-options.php:268
889
- msgid "More details"
890
- msgstr "Mer detaljer"
891
-
892
- #: classes/class-wpfront-user-role-editor-options.php:272
893
- #: classes/class-wpfront-user-role-editor-options.php:304
894
- #: templates/options-template.php:70
895
- msgid "Display Deprecated Capabilities"
896
- msgstr "Visa borttagna behörigheter"
897
-
898
- #: classes/class-wpfront-user-role-editor-options.php:274
899
- #: classes/class-wpfront-user-role-editor-options.php:306
900
- msgid ""
901
- "If enabled, deprecated capabilities will be displayed within the add/edit "
902
- "screens."
903
- msgstr ""
904
- "Om aktiverad visas föråldrade behörigheter i Lägg till/redigera fönstren."
905
-
906
- #: classes/class-wpfront-user-role-editor-options.php:277
907
- #: classes/class-wpfront-user-role-editor-options.php:309
908
- #: templates/options-template.php:78
909
- msgid "Remove Non-Standard Capabilities on Restore"
910
- msgstr "Ta bort icke-standardiserade behörigheter vid Återställ"
911
-
912
- #: classes/class-wpfront-user-role-editor-options.php:279
913
- #: classes/class-wpfront-user-role-editor-options.php:311
914
- msgid ""
915
- "If enabled, while restoring WordPress built-in capabilities non-standard "
916
- "capabilities will be removed."
917
- msgstr ""
918
- "Om aktiverad, vid återställning av WordPress inbyggda behörigheter kommer "
919
- "icke-standardiserade behörigheter att tas bort."
920
-
921
- #: classes/class-wpfront-user-role-editor-options.php:282
922
- #: classes/class-wpfront-user-role-editor-options.php:314
923
- #: templates/options-template.php:86
924
- msgid "Override Edit Permissions"
925
- msgstr "Åsidosätt redigeringsbehörigheter"
926
-
927
- #: classes/class-wpfront-user-role-editor-options.php:284
928
- #: classes/class-wpfront-user-role-editor-options.php:316
929
- msgid "If enabled, ignores the check to the function get_editable_roles."
930
- msgstr "Om aktiverad, ignoreras kontrollen av funktionen get_editable_roles."
931
-
932
- #: classes/class-wpfront-user-role-editor-options.php:287
933
- #: classes/class-wpfront-user-role-editor-options.php:319
934
- #: templates/options-template.php:94
935
- msgid "Disable Navigation Menu Permissions"
936
- msgstr "Inaktivera navigering-menyns behörigheter"
937
-
938
- #: classes/class-wpfront-user-role-editor-options.php:289
939
- #: classes/class-wpfront-user-role-editor-options.php:321
940
- msgid "If enabled, disables navigation menu permissions functionality."
941
- msgstr "Om aktiverat, inaktiveras menyn behörigheterfunktionalitet."
942
-
943
- #: classes/class-wpfront-user-role-editor-options.php:292
944
- #: classes/class-wpfront-user-role-editor-options.php:324
945
- #: templates/options-template.php:131
946
- msgid "Remove Data on Uninstall"
947
- msgstr "Ta bort Data vid avinstallation"
948
-
949
- #: classes/class-wpfront-user-role-editor-options.php:294
950
- #: classes/class-wpfront-user-role-editor-options.php:326
951
- msgid ""
952
- "If enabled, removes all data related to this plugin from database (except "
953
- "roles data) including license information if any. This will not deactivate "
954
- "the license automatically."
955
- msgstr ""
956
- "Om aktiverat, tas alla data för denna plugin bort från databasen (förutom "
957
- "roller-data) inklusive licensinformationen om det finns. Detta kommer inte "
958
- "avaktivera licensen automatiskt."
959
-
960
- #: classes/class-wpfront-user-role-editor-options.php:337
961
- msgid "Documentation on Multisite Settings"
962
- msgstr "Dokumentation om multisitefunktions inställningar"
963
-
964
- #: classes/class-wpfront-user-role-editor-options.php:344
965
- msgid "Documentation on Settings"
966
- msgstr "Dokumentation om inställningar"
967
-
968
- #: classes/class-wpfront-user-role-editor-restore.php:170
969
- msgid ""
970
- "This screen allow you to restore WordPress built-in roles to its standard "
971
- "capability settings."
972
- msgstr ""
973
- "Här kan du återställa WordPress inbyggda roller till dess "
974
- "standardbehörighetsinställningar."
975
-
976
- #: classes/class-wpfront-user-role-editor-restore.php:173
977
- msgid "To restore a role, click the Restore button then Confirm."
978
- msgstr "För att återställa en roll, klicka på knappen Återställ och bekräfta."
979
-
980
- #: classes/class-wpfront-user-role-editor-restore.php:182
981
- msgid "Documentation on Restore"
982
- msgstr "Dokumentation om Återställ"
983
-
984
- #: classes/class-wpfront-user-role-editor.php:207
985
- msgid "Go Pro"
986
- msgstr "Uppgradera till PRO"
987
-
988
- #: classes/class-wpfront-user-role-editor.php:222
989
- #: templates/add-edit-role.php:41 templates/add-edit-role.php:140
990
- msgid "Add New Role"
991
- msgstr "Lägg till ny roll"
992
-
993
- #: classes/class-wpfront-user-role-editor.php:222
994
- #: templates/add-edit-role.php:43 templates/list-roles.php:46
995
- #: templates/personal-pro/content-shortcodes.php:10
996
- msgid "Add New"
997
- msgstr "Lägg till ny"
998
-
999
- #: classes/class-wpfront-user-role-editor.php:223
1000
- #: templates/restore-role.php:40
1001
- msgid "Restore Role"
1002
- msgstr "Återställ roll"
1003
-
1004
- #: classes/class-wpfront-user-role-editor.php:223
1005
- #: templates/restore-role.php:52
1006
- msgid "Restore"
1007
- msgstr "Återställ"
1008
-
1009
- #: classes/class-wpfront-user-role-editor.php:224
1010
- #: templates/add-remove-capability.php:40
1011
- msgid "Add/Remove Capability"
1012
- msgstr "Lägg till/ta bort behörighet"
1013
-
1014
- #: classes/class-wpfront-user-role-editor.php:224
1015
- msgid "Add/Remove Cap"
1016
- msgstr "Lägg till/ta bort Beh"
1017
-
1018
- #: classes/class-wpfront-user-role-editor.php:245
1019
- msgid "Assign Roles | Migrate Users"
1020
- msgstr "Tilldela roller | Migrera användare"
1021
-
1022
- #: classes/class-wpfront-user-role-editor.php:245
1023
- msgid "Assign / Migrate"
1024
- msgstr "Tilldela / migrera"
1025
-
1026
- #: classes/class-wpfront-user-role-editor.php:342
1027
- msgid "Buy me a Beer"
1028
- msgstr "Köpa mig en öl"
1029
-
1030
- #: classes/personal-pro/EDD_SL_Plugin_Updater.php:158
1031
- #, php-format
1032
- msgid ""
1033
- "There is a new version of %1$s available. <a target=\"_blank\" class="
1034
- "\"thickbox\" href=\"%2$s\">View version %3$s details</a>."
1035
- msgstr ""
1036
- "En ny version av %1$s finns tillgänglig. <a target=\"_blank\" class="
1037
- "\"thickbox\" href=\"%2$s\">Visa version %3$s detaljer</a>."
1038
-
1039
- #: classes/personal-pro/EDD_SL_Plugin_Updater.php:165
1040
- #, php-format
1041
- msgid ""
1042
- "There is a new version of %1$s available. <a target=\"_blank\" class="
1043
- "\"thickbox\" href=\"%2$s\">View version %3$s details</a> or <a href=\"%4$s"
1044
- "\">update now</a>."
1045
- msgstr ""
1046
- "Det finns en ny version av %1$s tillgänglig. <a target=\"_blank\" class="
1047
- "\"thickbox\" href=\"%2$s\">Visa information om version %3$s </a> eller <a "
1048
- "href=\"%4$s\">uppdatera nu</a>."
1049
-
1050
- #: classes/personal-pro/EDD_SL_Plugin_Updater.php:305
1051
- msgid "You do not have permission to install plugin updates"
1052
- msgstr "Du har inte behörighet att installera plugin uppdateringar"
1053
-
1054
- #: classes/personal-pro/class-wpfront-user-role-editor-content-shortcodes-list-table.php:68
1055
- msgid "No shortcodes found."
1056
- msgstr "Inga kortkoder hittade."
1057
-
1058
- #: classes/personal-pro/class-wpfront-user-role-editor-content-shortcodes-list-table.php:85
1059
- #: classes/personal-pro/class-wpfront-user-role-editor-content-shortcodes.php:376
1060
- #: classes/personal-pro/class-wpfront-user-role-editor-content-shortcodes.php:421
1061
- #: templates/personal-pro/content-shortcodes-add-edit.php:25
1062
- #: templates/personal-pro/content-shortcodes-delete.php:34
1063
- msgid "Shortcode"
1064
- msgstr "Kortkod"
1065
-
1066
- #: classes/personal-pro/class-wpfront-user-role-editor-content-shortcodes-list-table.php:86
1067
- #: classes/personal-pro/class-wpfront-user-role-editor-content-shortcodes.php:383
1068
- #: classes/personal-pro/class-wpfront-user-role-editor-content-shortcodes.php:426
1069
- #: templates/personal-pro/content-shortcodes-add-edit.php:37
1070
- msgid "User Type"
1071
- msgstr "Användartyp"
1072
-
1073
- #: classes/personal-pro/class-wpfront-user-role-editor-content-shortcodes-list-table.php:121
1074
- #: templates/personal-pro/menu-editor.php:161
1075
- #: templates/personal-pro/menu-editor.php:197
1076
- #, php-format
1077
- msgid "Select %s"
1078
- msgstr "Välj %s"
1079
-
1080
- #: classes/personal-pro/class-wpfront-user-role-editor-content-shortcodes.php:100
1081
- msgid "Shortcode not found."
1082
- msgstr "Kortkod hittades inte."
1083
-
1084
- #: classes/personal-pro/class-wpfront-user-role-editor-content-shortcodes.php:102
1085
- msgid "Shortcode updated successfully."
1086
- msgstr "Kortkod uppdaterats."
1087
-
1088
- #: classes/personal-pro/class-wpfront-user-role-editor-content-shortcodes.php:109
1089
- msgid "Shortcode already exists."
1090
- msgstr "Kortkod finns redan."
1091
-
1092
- #: classes/personal-pro/class-wpfront-user-role-editor-content-shortcodes.php:116
1093
- msgid "Shortcode added successfully."
1094
- msgstr "Kortkod lades till."
1095
-
1096
- #: classes/personal-pro/class-wpfront-user-role-editor-content-shortcodes.php:145
1097
- msgid "Shortcode(s) deleted."
1098
- msgstr "Kortkod(er) raderad(e)."
1099
-
1100
- #: classes/personal-pro/class-wpfront-user-role-editor-content-shortcodes.php:235
1101
- #: classes/personal-pro/class-wpfront-user-role-editor-nav-menu-pro.php:23
1102
- #: classes/personal-pro/class-wpfront-user-role-editor-post-type-permissions.php:105
1103
- msgid "[Guest]"
1104
- msgstr "[Guest]"
1105
-
1106
- #: classes/personal-pro/class-wpfront-user-role-editor-content-shortcodes.php:251
1107
- #: templates/personal-pro/content-shortcodes-add-edit.php:44
1108
- msgid "Logged-in Users"
1109
- msgstr "Inloggade användare"
1110
-
1111
- #: classes/personal-pro/class-wpfront-user-role-editor-content-shortcodes.php:259
1112
- #: templates/personal-pro/content-shortcodes-add-edit.php:48
1113
- msgid "Users in Roles"
1114
- msgstr "Användare i roller"
1115
-
1116
- #: classes/personal-pro/class-wpfront-user-role-editor-content-shortcodes.php:265
1117
- msgid "Administrator"
1118
- msgstr "Administratör"
1119
-
1120
- #: classes/personal-pro/class-wpfront-user-role-editor-content-shortcodes.php:364
1121
- msgid "This screen allows you to add or edit a shortcode within your site."
1122
- msgstr "Här kan du lägga till eller redigera en kortkod på din webbplats."
1123
-
1124
- #: classes/personal-pro/class-wpfront-user-role-editor-content-shortcodes.php:371
1125
- msgid ""
1126
- "Use the Name field to enter an identifiable name for this shortcode. This "
1127
- "field is required."
1128
- msgstr ""
1129
- "Använd Namnfältet för att ange ett identifierbart namn för denna kortkod. "
1130
- "Detta fält är obligatoriska."
1131
-
1132
- #: classes/personal-pro/class-wpfront-user-role-editor-content-shortcodes.php:378
1133
- msgid ""
1134
- "Use this field to enter the shortcode string, that will be used by "
1135
- "WordPress. This field is required and has to be unique. Only lowercase "
1136
- "letters, numbers and underscore is allowd in this field."
1137
- msgstr ""
1138
- "Använd det här fältet för att ange kortkodssträngen som kommer att användas "
1139
- "av Wordpress. Detta fält är tvingande och måste vara unikt. Endast små "
1140
- "bokstäver, siffror och understreck är tillåtna i detta fält."
1141
-
1142
- #: classes/personal-pro/class-wpfront-user-role-editor-content-shortcodes.php:385
1143
- msgid ""
1144
- "Select the type of users, the content within the shortcode will be "
1145
- "displayed. You can select All Users, Logged in Users, Guest Users or Users "
1146
- "within specific roles."
1147
- msgstr ""
1148
- "Välj typ av användare, innehållet i kortkoden kommer att visas. Du kan välja "
1149
- "alla användare, inloggade användare, Gästanvändare eller Användare i "
1150
- "specifika roller."
1151
-
1152
- #: classes/personal-pro/class-wpfront-user-role-editor-content-shortcodes.php:395
1153
- msgid "This screen allows you to delete the shortcodes you selected to delete."
1154
- msgstr "Här kan du ta bort de kortkoder du valt att radera."
1155
-
1156
- #: classes/personal-pro/class-wpfront-user-role-editor-content-shortcodes.php:406
1157
- msgid ""
1158
- "This screen displays all the content shortcodes existing within your site."
1159
- msgstr "Här visas alla innehållskortkoder som finns inom din webbplats."
1160
-
1161
- #: classes/personal-pro/class-wpfront-user-role-editor-content-shortcodes.php:409
1162
- msgid ""
1163
- "To add a new shortcode, click the Add New button at the top of the screen."
1164
- msgstr ""
1165
- "För att lägga till en ny kortkod, klicka på knappen Lägg till Ny längst upp "
1166
- "på skärmen."
1167
-
1168
- #: classes/personal-pro/class-wpfront-user-role-editor-content-shortcodes.php:418
1169
- msgid "User identifiable name of the shortcode."
1170
- msgstr "Användar-identifierbart namn för kortkoden."
1171
-
1172
- #: classes/personal-pro/class-wpfront-user-role-editor-content-shortcodes.php:423
1173
- msgid "Used by WordPress to identify the shortcode."
1174
- msgstr "Används av Wordpress för att identifiera kortkoden."
1175
-
1176
- #: classes/personal-pro/class-wpfront-user-role-editor-content-shortcodes.php:428
1177
- msgid "Determines who all will see the content wrapped within the shortcode."
1178
- msgstr ""
1179
- "Bestämmer hur alla kommer att se innehållet som är insvept i kortkoden."
1180
-
1181
- #: classes/personal-pro/class-wpfront-user-role-editor-content-shortcodes.php:433
1182
- msgid "Roles used when User Type is \"Users in Roles\"."
1183
- msgstr "Roller används när Användartyp är \"Användare i Roller\"."
1184
-
1185
- #: classes/personal-pro/class-wpfront-user-role-editor-content-shortcodes.php:440
1186
- msgid ""
1187
- "Hovering over a row in the list will display action links that allow you to "
1188
- "manage the shortcodes. You can perform the following actions:"
1189
- msgstr ""
1190
- "Hovring över en rad i rollistan visar åtgärdslänkar som tillåter dig att "
1191
- "hantera kortkoderna. Du kan utföra följande åtgärder:"
1192
-
1193
- #: classes/personal-pro/class-wpfront-user-role-editor-content-shortcodes.php:445
1194
- msgid "Allows you to edit that shortcode."
1195
- msgstr "Låter dig redigera kortkoden."
1196
-
1197
- #: classes/personal-pro/class-wpfront-user-role-editor-content-shortcodes.php:450
1198
- msgid "Allows you to delete that shortcode."
1199
- msgstr "Låter dig ta bort kortkoden."
1200
-
1201
- #: classes/personal-pro/class-wpfront-user-role-editor-content-shortcodes.php:455
1202
- msgid "Usage"
1203
- msgstr "Användning"
1204
-
1205
- #: classes/personal-pro/class-wpfront-user-role-editor-content-shortcodes.php:457
1206
- msgid ""
1207
- "To use the shortcode within a post/page, copy the shortcode from the "
1208
- "Shortcode column and put your content within the shortcode."
1209
- msgstr ""
1210
- "För att använda kortkoden inom ett inlägg/sida, kopiera kortkoden från "
1211
- "kortkodskolumnen och sätt ditt innehåll inom kortkoden."
1212
-
1213
- #: classes/personal-pro/class-wpfront-user-role-editor-content-shortcodes.php:460
1214
- msgid "Ex: [shortcode]Your content here.[/shortcode]"
1215
- msgstr "Ex:. [kortkod]Ditt innehåll här.[/kortkod]"
1216
-
1217
- #: classes/personal-pro/class-wpfront-user-role-editor-content-shortcodes.php:469
1218
- msgid "Documentation on Content Shortcodes"
1219
- msgstr "Dokumentation om innehållskortkoder"
1220
-
1221
- #: classes/personal-pro/class-wpfront-user-role-editor-custom-post-types.php:32
1222
- #, php-format
1223
- msgid "%s in settings."
1224
- msgstr "%s i inställningar."
1225
-
1226
- #: classes/personal-pro/class-wpfront-user-role-editor-custom-post-types.php:32
1227
- msgid "Enable customization"
1228
- msgstr "Aktivera anpassning"
1229
-
1230
- #: classes/personal-pro/class-wpfront-user-role-editor-export.php:132
1231
- msgid ""
1232
- "This screen allows you to export the roles existing within your site and "
1233
- "import into the same site or a different site."
1234
- msgstr ""
1235
- "Här kan du exportera rollerna som finns inom din webbplats och import till "
1236
- "samma site eller en annan site."
1237
-
1238
- #: classes/personal-pro/class-wpfront-user-role-editor-export.php:135
1239
- msgid "Select the roles to export, then click Download Export File."
1240
- msgstr ""
1241
- "Välj de roller som ska exporteras och klicka sedan på Ladda ner Exportfil."
1242
-
1243
- #: classes/personal-pro/class-wpfront-user-role-editor-export.php:144
1244
- msgid "Documentation on Export"
1245
- msgstr "Dokumentation om Export"
1246
-
1247
- #: classes/personal-pro/class-wpfront-user-role-editor-import.php:37
1248
- msgid "This functionality requires SimpleXML extension, which is not loaded."
1249
- msgstr "Denna funktion kräver SimpleXML förlängning, som inte är laddad."
1250
-
1251
- #: classes/personal-pro/class-wpfront-user-role-editor-import.php:85
1252
- #, php-format
1253
- msgid "%d role(s) imported."
1254
- msgstr "%d roll(er) importeras."
1255
-
1256
- #: classes/personal-pro/class-wpfront-user-role-editor-import.php:106
1257
- #, php-format
1258
- msgid ""
1259
- "The export file could not be found at <code>%s</code>. It is likely that "
1260
- "this was caused by a permissions problem."
1261
- msgstr ""
1262
- "Exportfilen kunde inte hittas på <code>%s</code> . Det är troligt att detta "
1263
- "orsakades av ett behörighetsproblem."
1264
-
1265
- #: classes/personal-pro/class-wpfront-user-role-editor-import.php:137
1266
- #: classes/personal-pro/class-wpfront-user-role-editor-import.php:145
1267
- msgid "There was an error when reading this export file"
1268
- msgstr "Det uppstod ett fel vid läsning denna exportfil"
1269
-
1270
- #: classes/personal-pro/class-wpfront-user-role-editor-import.php:162
1271
- #, php-format
1272
- msgid ""
1273
- "Please update the plugin to latest version. This export file requires plugin "
1274
- "version %s or higher."
1275
- msgstr ""
1276
- "Uppdatera tilläggsfilen till senaste versionen. Denna exportfil kräver "
1277
- "plugin version %s eller högre."
1278
-
1279
- #: classes/personal-pro/class-wpfront-user-role-editor-import.php:218
1280
- msgid "This file does not appears to be a valid export file."
1281
- msgstr "Denna fil verkar inte vara en giltig exportfil."
1282
-
1283
- #: classes/personal-pro/class-wpfront-user-role-editor-import.php:231
1284
- msgid ""
1285
- "Step 1: Select export file using the Browse button. Then click Upload file "
1286
- "and Import."
1287
- msgstr ""
1288
- "Steg 1: Välj exportfil med hjälp av knappen Bläddra. Klicka sedan Ladda upp "
1289
- "fil och importera."
1290
-
1291
- #: classes/personal-pro/class-wpfront-user-role-editor-import.php:234
1292
- msgid ""
1293
- "Step 2: Select the roles you want to import using the check boxes and click "
1294
- "Import Roles."
1295
- msgstr ""
1296
- "Steg 2: Välj de roller du vill importera med hjälp av kryssrutorna och "
1297
- "klicka på Importera Roller."
1298
-
1299
- #: classes/personal-pro/class-wpfront-user-role-editor-import.php:243
1300
- msgid "Documentation on Import"
1301
- msgstr "Dokumentation om Importera"
1302
-
1303
- #: classes/personal-pro/class-wpfront-user-role-editor-menu-editor.php:164
1304
- msgid "Menu changes saved."
1305
- msgstr "Menyändringar sparas."
1306
-
1307
- #: classes/personal-pro/class-wpfront-user-role-editor-menu-editor.php:177
1308
- msgid "Menu defaults restored."
1309
- msgstr "Menyförval återställd."
1310
-
1311
- #: classes/personal-pro/class-wpfront-user-role-editor-menu-editor.php:192
1312
- msgid "No editable roles found on this site."
1313
- msgstr "Inga redigerbara roller finns på denna webbplats."
1314
-
1315
- #: classes/personal-pro/class-wpfront-user-role-editor-menu-editor.php:594
1316
- msgid ""
1317
- "This screen allows you to enable and disable admin menus for a particular "
1318
- "role."
1319
- msgstr "Här kan du aktivera och avaktivera adminmenyer för en särskild roll."
1320
-
1321
- #: classes/personal-pro/class-wpfront-user-role-editor-menu-editor.php:597
1322
- msgid "Deselect a menu from the grid to remove that menu."
1323
- msgstr "Avmarkera en meny från rutnätet för att ta bort den menyn."
1324
-
1325
- #: classes/personal-pro/class-wpfront-user-role-editor-menu-editor.php:600
1326
- msgid ""
1327
- "Disabled menu items are already hidden, because the selected role doesn't "
1328
- "have the capability to display that menu. Grid displays menus which the "
1329
- "current user has access to."
1330
- msgstr ""
1331
- "Inaktiverade menyalternativ är redan dolda, eftersom den valda rollen inte "
1332
- "har rättighet att visa den menyn. Rutnätet visar menyer som den aktuella "
1333
- "användaren har tillgång till."
1334
-
1335
- #: classes/personal-pro/class-wpfront-user-role-editor-menu-editor.php:605
1336
- msgid "Fields"
1337
- msgstr "Fält"
1338
-
1339
- #: classes/personal-pro/class-wpfront-user-role-editor-menu-editor.php:607
1340
- #: templates/personal-pro/menu-editor.php:39
1341
- msgid "Override Role"
1342
- msgstr "Åsidosätt Roll"
1343
-
1344
- #: classes/personal-pro/class-wpfront-user-role-editor-menu-editor.php:609
1345
- msgid "The role you want to override."
1346
- msgstr "Rollen som du vill åsidosätta."
1347
-
1348
- #: classes/personal-pro/class-wpfront-user-role-editor-menu-editor.php:612
1349
- #: templates/personal-pro/menu-editor.php:56
1350
- msgid "Override Type"
1351
- msgstr "Åsidosätt Typ"
1352
-
1353
- #: classes/personal-pro/class-wpfront-user-role-editor-menu-editor.php:614
1354
- msgid ""
1355
- "Soft - Pages may be available through directly typing the URL. Hard - Even "
1356
- "URLs will be blocked."
1357
- msgstr ""
1358
- "Mjuk - Sidor kan vara tillgängliga genom att man skriver in URLen direkt. "
1359
- "Hård - Även URL-adresser kommer att blockeras."
1360
-
1361
- #: classes/personal-pro/class-wpfront-user-role-editor-menu-editor.php:617
1362
- #: templates/personal-pro/menu-editor.php:67
1363
- msgid "Hide New Menus"
1364
- msgstr "Göm Nya Menyer"
1365
-
1366
- #: classes/personal-pro/class-wpfront-user-role-editor-menu-editor.php:619
1367
- msgid "Allow you to hide future menus."
1368
- msgstr "Tillåter dig att dölja framtida menyer."
1369
-
1370
- #: classes/personal-pro/class-wpfront-user-role-editor-menu-editor.php:622
1371
- #: templates/personal-pro/menu-editor.php:75
1372
- msgid "Disable For Secondary Role"
1373
- msgstr "Inaktivera För sekundär roll"
1374
-
1375
- #: classes/personal-pro/class-wpfront-user-role-editor-menu-editor.php:624
1376
- msgid "Disables menu settings while the selected role is a secondary role."
1377
- msgstr ""
1378
- "Inaktiverar menyinställningar medan den valda rollen är en sekundär roll."
1379
-
1380
- #: classes/personal-pro/class-wpfront-user-role-editor-menu-editor.php:629
1381
- msgid "Restore Default"
1382
- msgstr "Återställ grundinställning"
1383
-
1384
- #: classes/personal-pro/class-wpfront-user-role-editor-menu-editor.php:631
1385
- msgid ""
1386
- "Select \"Restore default\" from the \"Copy from\" drop down and click apply."
1387
- msgstr ""
1388
- "Välj \"Återställ grundinställning\" från rullgardinsmenyn \"Kopiera från\" "
1389
- "och klicka använd."
1390
-
1391
- #: classes/personal-pro/class-wpfront-user-role-editor-menu-editor.php:640
1392
- msgid "Documentation on Menu Editor"
1393
- msgstr "Dokumentation om Menyredigeraren"
1394
-
1395
- #: classes/personal-pro/class-wpfront-user-role-editor-personal-pro.php:83
1396
- #: templates/personal-pro/menu-editor.php:9
1397
- msgid "Menu Editor"
1398
- msgstr "Menyredigeraren"
1399
-
1400
- #: classes/personal-pro/class-wpfront-user-role-editor-personal-pro.php:84
1401
- #: templates/personal-pro/content-shortcodes.php:9
1402
- msgid "Content Shortcodes"
1403
- msgstr "Innehållskortkoder"
1404
-
1405
- #: classes/personal-pro/class-wpfront-user-role-editor-personal-pro.php:84
1406
- msgid "Shortcodes"
1407
- msgstr "Kortkoder"
1408
-
1409
- #: classes/personal-pro/class-wpfront-user-role-editor-personal-pro.php:85
1410
- #: templates/personal-pro/export-roles.php:9
1411
- msgid "Export Roles"
1412
- msgstr "Export Roller"
1413
-
1414
- #: classes/personal-pro/class-wpfront-user-role-editor-personal-pro.php:85
1415
- msgid "Export"
1416
- msgstr "Exportera"
1417
-
1418
- #: classes/personal-pro/class-wpfront-user-role-editor-personal-pro.php:86
1419
- #: templates/personal-pro/import-roles.php:9
1420
- #: templates/personal-pro/import-roles.php:88
1421
- msgid "Import Roles"
1422
- msgstr "Importera Roller"
1423
-
1424
- #: classes/personal-pro/class-wpfront-user-role-editor-personal-pro.php:86
1425
- msgid "Import"
1426
- msgstr "Importera"
1427
-
1428
- #: classes/personal-pro/class-wpfront-user-role-editor-personal-pro.php:106
1429
- #, php-format
1430
- msgid "%s license not activated."
1431
- msgstr "%s licens inte aktiverad."
1432
-
1433
- #: classes/personal-pro/class-wpfront-user-role-editor-post-type-permissions.php:70
1434
- #: classes/personal-pro/class-wpfront-user-role-editor-post-type-permissions.php:316
1435
- msgid "Role Permissions"
1436
- msgstr "Roll Behörigheter"
1437
-
1438
- #: templates/add-edit-role.php:41
1439
- msgid "Edit Role"
1440
- msgstr "Redigera roll"
1441
-
1442
- #: templates/add-edit-role.php:51
1443
- msgid "This role already exists in this site."
1444
- msgstr "Denna roll finns redan i denna webbplats."
1445
-
1446
- #: templates/add-edit-role.php:59
1447
- msgid "There was an unexpected error while performing this action."
1448
- msgstr "Det uppstod ett oväntat fel medan denna åtgärd utfördes."
1449
-
1450
- #: templates/add-edit-role.php:66
1451
- msgid "Create a brand new role and add it to this site."
1452
- msgstr "Skapa en helt ny roll och lägg till den till den här webbplatsen."
1453
-
1454
- #: templates/add-edit-role.php:77 templates/add-edit-role.php:87
1455
- #: templates/add-remove-capability.php:75
1456
- #: templates/personal-pro/content-shortcodes-add-edit.php:15
1457
- #: templates/personal-pro/content-shortcodes-add-edit.php:25
1458
- msgid "required"
1459
- msgstr "obligatorisk"
1460
-
1461
- #: templates/add-edit-role.php:106 templates/personal-pro/menu-editor.php:89
1462
- msgid "Copy from"
1463
- msgstr "Kopiera från"
1464
-
1465
- #: templates/add-edit-role.php:118
1466
- msgid "Select None"
1467
- msgstr "Välj ingen"
1468
-
1469
- #: templates/add-edit-role.php:140
1470
- msgid "Update Role"
1471
- msgstr "Uppdatera Roll"
1472
-
1473
- #: templates/add-remove-capability.php:52
1474
- msgid "Add/Remove a capability to/from roles within this site."
1475
- msgstr "Lägg till/ta bort en behörighet till/från roller inom denna webbplats."
1476
-
1477
- #: templates/add-remove-capability.php:66
1478
- #: templates/add-remove-capability.php:111
1479
- #: templates/add-remove-capability.php:125
1480
- msgid "Add Capability"
1481
- msgstr "Addera Behörighet"
1482
-
1483
- #: templates/add-remove-capability.php:68
1484
- #: templates/add-remove-capability.php:111
1485
- #: templates/add-remove-capability.php:127
1486
- msgid "Remove Capability"
1487
- msgstr "Radera Behörighet"
1488
-
1489
- #: templates/assign-roles.php:68
1490
- msgid "User"
1491
- msgstr "Användare"
1492
-
1493
- #: templates/assign-roles.php:109
1494
- msgid "From Primary Role"
1495
- msgstr "Från Primär Roll"
1496
-
1497
- #: templates/delete-role.php:41
1498
- msgid "Delete Roles"
1499
- msgstr "Radera Roller"
1500
-
1501
- #: templates/delete-role.php:42
1502
- msgid "You have specified these roles for deletion"
1503
- msgstr "Du har angivit dessa roller för radering"
1504
-
1505
- #: templates/delete-role.php:49
1506
- msgid "Role"
1507
- msgstr "Roll"
1508
-
1509
- #: templates/delete-role.php:61
1510
- #: templates/personal-pro/content-shortcodes-delete.php:43
1511
- msgid "Confirm Deletion"
1512
- msgstr "Bekräfta borttagning"
1513
-
1514
- #: templates/go-pro.php:42
1515
- msgid "WPFront User Role Editor Pro"
1516
- msgstr "WPFront Användarrollsredigerare Pro"
1517
-
1518
- #: templates/go-pro.php:65
1519
- msgid "License Key"
1520
- msgstr "Licensnyckel"
1521
-
1522
- #: templates/go-pro.php:74 templates/go-pro.php:75
1523
- msgid "Deactivate"
1524
- msgstr "Inaktivera"
1525
-
1526
- #: templates/go-pro.php:82
1527
- msgid "License Expires"
1528
- msgstr "Licens Utgår"
1529
-
1530
- #: templates/list-roles.php:51
1531
- #: templates/personal-pro/content-shortcodes.php:13
1532
- #, php-format
1533
- msgid "Search results for \"%s\""
1534
- msgstr "Sökresultat för \"%s\""
1535
-
1536
- #: templates/list-roles.php:73 templates/list-roles.php:75
1537
- msgid "Search Roles"
1538
- msgstr "Sök roller"
1539
-
1540
- #: templates/options-template.php:37
1541
- msgid "WPFront User Role Editor Settings"
1542
- msgstr "Inställningar för WPFront användarrollsredigerare"
1543
-
1544
- #: templates/options-template.php:47
1545
- #, php-format
1546
- msgid ""
1547
- "Menu walker class is overriden by a theme/plugin. Current value = %s. "
1548
- "Navigation menu permissions may still work. %s"
1549
- msgstr ""
1550
- "Menu walker klass överstyrs av ett tema/plugin. Aktuellt värde = %s. "
1551
- "Navigeringsmenyns behörigheter kan fortfarande fungera. %s"
1552
-
1553
- #: templates/options-template.php:47
1554
- msgid "More information"
1555
- msgstr "Mer information"
1556
-
1557
- #: templates/options-template.php:103
1558
- msgid "Customize Permissions (custom post types)"
1559
- msgstr "Anpassa Behörigheter (anpassade inläggstyper)"
1560
-
1561
- #: templates/options-template.php:109
1562
- msgid "No customizable post types found."
1563
- msgstr "Inga anpassningsposttyper hittades."
1564
-
1565
- #: templates/personal-pro/content-shortcodes-add-edit.php:25
1566
- msgid "unique"
1567
- msgstr "unik"
1568
-
1569
- #: templates/personal-pro/content-shortcodes-add-edit.php:31
1570
- msgid "Allowed characters: lowercase letters, numbers and underscore."
1571
- msgstr "Tillåtna tecken: små bokstäver, siffror och understreck."
1572
-
1573
- #: templates/personal-pro/content-shortcodes-add-edit.php:67
1574
- msgid "Submit"
1575
- msgstr "Skicka"
1576
-
1577
- #: templates/personal-pro/content-shortcodes-delete.php:9
1578
- msgid "You have specified these shortcodes for deletion"
1579
- msgstr "Du har angivit dessa kortkoder för radering"
1580
-
1581
- #: templates/personal-pro/content-shortcodes-list.php:15
1582
- msgid "Search"
1583
- msgstr "Sök"
1584
-
1585
- #: templates/personal-pro/export-roles.php:13
1586
- msgid "Select the roles to be uploaded"
1587
- msgstr "Välj rollerna som ska exporteras"
1588
-
1589
- #: templates/personal-pro/export-roles.php:40
1590
- msgid "Download Export File"
1591
- msgstr "Ladda ner exportfil"
1592
-
1593
- #: templates/personal-pro/import-roles.php:21
1594
- msgid "ERROR:"
1595
- msgstr "FEL:"
1596
-
1597
- #: templates/personal-pro/import-roles.php:30
1598
- msgid ""
1599
- "Choose a WPFront User Role Editor export file (.xml) to upload, then click "
1600
- "Upload file and import."
1601
- msgstr ""
1602
- "Välj en WPFront Användarollsredigerar exportfil (.xml) för att ladda upp, "
1603
- "klicka sedan på Ladda upp fil och importera."
1604
-
1605
- #: templates/personal-pro/import-roles.php:39
1606
- #, php-format
1607
- msgid "Roles exported from %s on %s by user %s."
1608
- msgstr "Roller som exporterats från %s på %s av användaren %s."
1609
-
1610
- #: templates/personal-pro/import-roles.php:39
1611
- msgid "UTC"
1612
- msgstr "UTC"
1613
-
1614
- #: templates/personal-pro/import-roles.php:46
1615
- msgid "Zero roles found in this export file to import."
1616
- msgstr "Noll roller hittades i denna exportfil som ska importeras."
1617
-
1618
- #: templates/personal-pro/import-roles.php:52
1619
- msgid "Select roles to import"
1620
- msgstr "Välj roller att importera"
1621
-
1622
- #: templates/personal-pro/import-roles.php:81
1623
- msgid ""
1624
- "* These roles already exist in this site. Importing them will overwrite "
1625
- "existing roles."
1626
- msgstr ""
1627
- "* Dessa roller finns redan på denna webbplats. Import av dem kommer att "
1628
- "skriva över befintliga roller."
1629
-
1630
- #: templates/personal-pro/menu-editor.php:26
1631
- msgid ""
1632
- "Select a role below to edit menu for that role. Deselect a menu from the "
1633
- "grid to remove that menu. Disabled menu items are already hidden, because "
1634
- "the selected role doesn't have the capability to display that menu. Grid "
1635
- "displays menus which the current user has access to. "
1636
- msgstr ""
1637
- "Välj en roll nedan för att redigera menyn för den rollen. Avmarkera en meny "
1638
- "från rutnätet för att ta bort den. Inaktiverade menyalternativ är redan "
1639
- "dolda, eftersom den valda rollen inte har möjlighet att visa den menyn. "
1640
- "Rutnätet visar menyer som den aktuella användaren har tillgång till. "
1641
-
1642
- #: templates/personal-pro/menu-editor.php:60
1643
- msgid "Soft"
1644
- msgstr "Mjuk"
1645
-
1646
- #: templates/personal-pro/menu-editor.php:61
1647
- msgid "Hard"
1648
- msgstr "Hård"
1649
-
1650
- #: templates/personal-pro/menu-editor.php:92
1651
- msgid "Restore default"
1652
- msgstr "Återställ grundinställning"
1653
-
1654
- #: templates/personal-pro/menu-editor.php:105
1655
- msgid "Hide deselected item(s)"
1656
- msgstr "Göm bortvald post(er)"
1657
-
1658
- #: templates/personal-pro/menu-editor.php:110
1659
- msgid "Hide disabled item(s)"
1660
- msgstr "Göm inaktiverad post(er)"
1661
-
1662
- #: templates/personal-pro/menu-editor.php:116
1663
- msgid "Has Capability"
1664
- msgstr "Har Befogenhet"
1665
-
1666
- #: templates/personal-pro/menu-editor.php:121
1667
- msgid "No Capability"
1668
- msgstr "Ingen Befogenhet"
1669
-
1670
- #: templates/personal-pro/menu-editor.php:144
1671
- msgid "Menu Slug"
1672
- msgstr "Menyslug"
1673
-
1674
- #: templates/personal-pro/post-type-permissions.php:25
1675
- msgid "Enable Role Permissions"
1676
- msgstr "Aktivera Rollbehörigheter"
1677
-
1678
- #: templates/personal-pro/post-type-permissions.php:33
1679
- msgid "Read"
1680
- msgstr "Läs"
1681
-
1682
- #: templates/restore-role.php:55
1683
- msgid "Confirm"
1684
- msgstr "Bekräfta"
1685
-
1686
- #: templates/restore-role.php:63
1687
- msgid "Restored"
1688
- msgstr "Återställd"
1689
-
1690
- #: templates/restore-role.php:107
1691
- msgid "Unexpected error / Timed out"
1692
- msgstr "Oväntat fel / Timeout"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/wpfront-user-role-editor.mo CHANGED
Binary file
languages/wpfront-user-role-editor.po CHANGED
@@ -1,8 +1,8 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: WPFront Notification Bar\n"
4
- "POT-Creation-Date: 2015-09-03 21:50-0700\n"
5
- "PO-Revision-Date: 2015-09-03 21:51-0700\n"
6
  "Last-Translator: \n"
7
  "Language-Team: WPFront <contact@wpfront.com>\n"
8
  "Language: en\n"
@@ -63,7 +63,7 @@ msgid "More information about %s"
63
  msgstr "More information about %s"
64
 
65
  #: ../classes/base/class-wpfront-base-menu.php:158
66
- #: ../classes/class-wpfront-user-role-editor-go-pro.php:267
67
  msgid "Details"
68
  msgstr "Details"
69
 
@@ -96,7 +96,7 @@ msgstr "Installed"
96
  #: ../classes/base/class-wpfront-base-menu.php:179
97
  #: ../classes/base/class-wpfront-base.php:126
98
  #: ../classes/business-pro/class-wpfront-user-role-editor-business-pro.php:108
99
- #: ../classes/class-wpfront-user-role-editor-options.php:280
100
  #: ../classes/class-wpfront-user-role-editor.php:263
101
  msgid "Settings"
102
  msgstr "Settings"
@@ -217,24 +217,24 @@ msgstr ""
217
  #: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:227
218
  #: ../classes/class-wpfront-user-role-editor-add-edit.php:324
219
  #: ../classes/class-wpfront-user-role-editor-add-remove-capability.php:128
220
- #: ../classes/class-wpfront-user-role-editor-assign-roles.php:393
221
  #: ../classes/class-wpfront-user-role-editor-list.php:361
222
  #: ../classes/class-wpfront-user-role-editor-list.php:395
223
  #: ../classes/class-wpfront-user-role-editor-list.php:412
224
  #: ../classes/class-wpfront-user-role-editor-login-redirect.php:407
225
  #: ../classes/class-wpfront-user-role-editor-login-redirect.php:441
226
  #: ../classes/class-wpfront-user-role-editor-login-redirect.php:472
227
- #: ../classes/class-wpfront-user-role-editor-options.php:273
228
- #: ../classes/class-wpfront-user-role-editor-options.php:320
229
  #: ../classes/class-wpfront-user-role-editor-restore.php:168
230
- #: ../classes/personal-pro/class-wpfront-user-role-editor-bulk-edit-extended-permissions.php:313
231
  #: ../classes/personal-pro/class-wpfront-user-role-editor-bulk-edit.php:76
232
  #: ../classes/personal-pro/class-wpfront-user-role-editor-content-shortcodes.php:362
233
  #: ../classes/personal-pro/class-wpfront-user-role-editor-content-shortcodes.php:393
234
  #: ../classes/personal-pro/class-wpfront-user-role-editor-content-shortcodes.php:404
235
  #: ../classes/personal-pro/class-wpfront-user-role-editor-export.php:130
236
  #: ../classes/personal-pro/class-wpfront-user-role-editor-import.php:229
237
- #: ../classes/personal-pro/class-wpfront-user-role-editor-menu-editor.php:601
238
  msgid "Overview"
239
  msgstr "Overview"
240
 
@@ -490,6 +490,7 @@ msgstr ""
490
  #: ../classes/personal-pro/class-wpfront-user-role-editor-content-shortcodes-list-table.php:146
491
  #: ../classes/personal-pro/class-wpfront-user-role-editor-content-shortcodes.php:443
492
  #: ../templates/list-roles.php:109
 
493
  #: ../templates/personal-pro/post-type-permissions.php:34
494
  msgid "Edit"
495
  msgstr "Edit"
@@ -516,6 +517,7 @@ msgstr ""
516
  #: ../classes/personal-pro/class-wpfront-user-role-editor-content-shortcodes-list-table.php:149
517
  #: ../classes/personal-pro/class-wpfront-user-role-editor-content-shortcodes.php:448
518
  #: ../templates/list-roles.php:112
 
519
  #: ../templates/personal-pro/post-type-permissions.php:35
520
  msgid "Delete"
521
  msgstr "Delete"
@@ -538,11 +540,11 @@ msgstr "Documentation on Multisite Roles"
538
 
539
  #: ../classes/business-pro/class-wpfront-user-role-editor-ms-restore.php:48
540
  #: ../classes/business-pro/class-wpfront-user-role-editor-ms-restore.php:77
541
- #: ../classes/class-wpfront-user-role-editor-go-pro.php:213
542
- #: ../classes/class-wpfront-user-role-editor-go-pro.php:215
543
- #: ../classes/class-wpfront-user-role-editor-go-pro.php:239
544
- #: ../classes/class-wpfront-user-role-editor-go-pro.php:265
545
- #: ../classes/class-wpfront-user-role-editor-go-pro.php:274
546
  #: ../classes/class-wpfront-user-role-editor-restore.php:87
547
  #: ../templates/add-edit-role.php:51 ../templates/add-edit-role.php:59
548
  #: ../templates/business-pro/sync-roles.php:21
@@ -551,7 +553,7 @@ msgid "ERROR"
551
  msgstr "ERROR"
552
 
553
  #: ../classes/business-pro/class-wpfront-user-role-editor-ms-restore.php:48
554
- #: ../classes/class-wpfront-user-role-editor-assign-roles.php:216
555
  msgid "Permission denied."
556
  msgstr "Permission denied."
557
 
@@ -562,10 +564,10 @@ msgstr "Partial Failure"
562
  #: ../classes/business-pro/class-wpfront-user-role-editor-ms-restore.php:90
563
  #: ../classes/class-wpfront-user-role-editor-restore.php:170
564
  msgid ""
565
- "This screen allow you to restore WordPress built-in roles to its standard "
566
  "capability settings."
567
  msgstr ""
568
- "This screen allow you to restore WordPress built-in roles to its standard "
569
  "capability settings."
570
 
571
  #: ../classes/business-pro/class-wpfront-user-role-editor-ms-restore.php:93
@@ -764,12 +766,12 @@ msgstr "Uses 'Posts' capabilities."
764
 
765
  #: ../classes/class-wpfront-user-role-editor-add-edit.php:379
766
  #, php-format
767
- msgid "%s to customize capabilites."
768
- msgstr "%s to customize capabilites."
769
 
770
  #: ../classes/class-wpfront-user-role-editor-add-edit.php:379
771
- #: ../classes/class-wpfront-user-role-editor-nav-menu.php:105
772
- #: ../classes/class-wpfront-user-role-editor-widget-permissions.php:140
773
  msgid "Upgrade to Pro"
774
  msgstr "Upgrade to Pro"
775
 
@@ -838,48 +840,48 @@ msgstr ""
838
  msgid "Documentation on Add/Remove Capability"
839
  msgstr "Documentation on Add/Remove Capability"
840
 
841
- #: ../classes/class-wpfront-user-role-editor-assign-roles.php:66
842
- #: ../classes/class-wpfront-user-role-editor-assign-roles.php:367
843
  msgid "Secondary Roles"
844
  msgstr "Secondary Roles"
845
 
846
- #: ../classes/class-wpfront-user-role-editor-assign-roles.php:81
847
- #: ../classes/class-wpfront-user-role-editor-assign-roles.php:400
848
  #: ../templates/assign-roles.php:42 ../templates/assign-roles.php:94
849
  msgid "Assign Roles"
850
  msgstr "Assign Roles"
851
 
852
- #: ../classes/class-wpfront-user-role-editor-assign-roles.php:183
853
  msgid "No role for this site"
854
  msgstr "No role for this site"
855
 
856
- #: ../classes/class-wpfront-user-role-editor-assign-roles.php:210
857
  msgid "Invalid user."
858
  msgstr "Invalid user."
859
 
860
- #: ../classes/class-wpfront-user-role-editor-assign-roles.php:245
861
  msgid "Roles updated successfully."
862
  msgstr "Roles updated successfully."
863
 
864
- #: ../classes/class-wpfront-user-role-editor-assign-roles.php:247
865
  msgid "Invalid primary role specified."
866
  msgstr "Invalid primary role specified."
867
 
868
- #: ../classes/class-wpfront-user-role-editor-assign-roles.php:265
869
- #: ../classes/class-wpfront-user-role-editor-assign-roles.php:275
870
  msgid "Invalid primary role."
871
  msgstr "Invalid primary role."
872
 
873
- #: ../classes/class-wpfront-user-role-editor-assign-roles.php:297
874
  #, php-format
875
  msgid "%d user(s) migrated."
876
  msgstr "%d user(s) migrated."
877
 
878
- #: ../classes/class-wpfront-user-role-editor-assign-roles.php:349
879
  msgid "Primary Role"
880
  msgstr "Primary Role"
881
 
882
- #: ../classes/class-wpfront-user-role-editor-assign-roles.php:395
883
  msgid ""
884
  "This screen allows you to assign multiple roles to a user and also allows "
885
  "you to migrate users from a role to another role."
@@ -887,7 +889,7 @@ msgstr ""
887
  "This screen allows you to assign multiple roles to a user and also allows "
888
  "you to migrate users from a role to another role."
889
 
890
- #: ../classes/class-wpfront-user-role-editor-assign-roles.php:402
891
  msgid ""
892
  "To assign multiple roles to a user, select that user within the User drop "
893
  "down list and select the primary role you want for that user using the "
@@ -899,12 +901,12 @@ msgstr ""
899
  "Primary Role drop down list. Select the secondary roles using the check "
900
  "boxes below, then click Assign Roles."
901
 
902
- #: ../classes/class-wpfront-user-role-editor-assign-roles.php:407
903
  #: ../templates/assign-roles.php:99 ../templates/assign-roles.php:132
904
  msgid "Migrate Users"
905
  msgstr "Migrate Users"
906
 
907
- #: ../classes/class-wpfront-user-role-editor-assign-roles.php:409
908
  msgid ""
909
  "To migrate users from one role to another role or to add secondary roles to "
910
  "users belonging to a particular primary role, use the migrate users "
@@ -914,7 +916,7 @@ msgstr ""
914
  "users belonging to a particular primary role, use the migrate users "
915
  "functionality."
916
 
917
- #: ../classes/class-wpfront-user-role-editor-assign-roles.php:412
918
  msgid ""
919
  "Select the users using the From Primary Role drop down, to primary role "
920
  "using the Primary Role drop down and secondary roles using the check boxes "
@@ -924,7 +926,7 @@ msgstr ""
924
  "using the Primary Role drop down and secondary roles using the check boxes "
925
  "then click Migrate Users."
926
 
927
- #: ../classes/class-wpfront-user-role-editor-assign-roles.php:421
928
  msgid "Documentation on Assign / Migrate Users"
929
  msgstr "Documentation on Assign / Migrate Users"
930
 
@@ -948,40 +950,40 @@ msgstr "Review"
948
  msgid "Contact"
949
  msgstr "Contact"
950
 
951
- #: ../classes/class-wpfront-user-role-editor-go-pro.php:213
952
  msgid "License key activation limit reached."
953
  msgstr "License key activation limit reached."
954
 
955
- #: ../classes/class-wpfront-user-role-editor-go-pro.php:213
956
- #: ../templates/options-template.php:47
957
  msgid "More information"
958
  msgstr "More information"
959
 
960
- #: ../classes/class-wpfront-user-role-editor-go-pro.php:215
961
  msgid "Invalid license key"
962
  msgstr "Invalid license key"
963
 
964
- #: ../classes/class-wpfront-user-role-editor-go-pro.php:239
965
- msgid "Unable to deactivate, expired license?"
966
- msgstr "Unable to deactivate, expired license?"
967
 
968
- #: ../classes/class-wpfront-user-role-editor-go-pro.php:265
969
  msgid "Unable to contact wpfront.com"
970
  msgstr "Unable to contact wpfront.com"
971
 
972
- #: ../classes/class-wpfront-user-role-editor-go-pro.php:274
973
  msgid "Unable to parse response"
974
  msgstr "Unable to parse response"
975
 
976
- #: ../classes/class-wpfront-user-role-editor-go-pro.php:341
977
  msgid "Site"
978
  msgstr "Site"
979
 
980
- #: ../classes/class-wpfront-user-role-editor-go-pro.php:342
981
  msgid "Product"
982
  msgstr "Product"
983
 
984
- #: ../classes/class-wpfront-user-role-editor-go-pro.php:346
985
  msgid ""
986
  "Your WPFront User Role Editor Pro license was activated on the following "
987
  "site."
@@ -989,19 +991,19 @@ msgstr ""
989
  "Your WPFront User Role Editor Pro license was activated on the following "
990
  "site."
991
 
992
- #: ../classes/class-wpfront-user-role-editor-go-pro.php:347
993
  msgid "WPFront User Role Editor Pro License Activated"
994
  msgstr "WPFront User Role Editor Pro License Activated"
995
 
996
- #: ../classes/class-wpfront-user-role-editor-go-pro.php:349
997
  msgid "Activated By"
998
  msgstr "Activated By"
999
 
1000
- #: ../classes/class-wpfront-user-role-editor-go-pro.php:350
1001
  msgid "Activated On"
1002
  msgstr "Activated On"
1003
 
1004
- #: ../classes/class-wpfront-user-role-editor-go-pro.php:354
1005
  msgid ""
1006
  "Your WPFront User Role Editor Pro license was deactivated on the following "
1007
  "site."
@@ -1009,21 +1011,21 @@ msgstr ""
1009
  "Your WPFront User Role Editor Pro license was deactivated on the following "
1010
  "site."
1011
 
1012
- #: ../classes/class-wpfront-user-role-editor-go-pro.php:355
1013
- #: ../classes/class-wpfront-user-role-editor-go-pro.php:367
1014
  msgid "WPFront User Role Editor Pro License Deactivated"
1015
  msgstr "WPFront User Role Editor Pro License Deactivated"
1016
 
1017
- #: ../classes/class-wpfront-user-role-editor-go-pro.php:357
1018
  msgid "Deactivated By"
1019
  msgstr "Deactivated By"
1020
 
1021
- #: ../classes/class-wpfront-user-role-editor-go-pro.php:358
1022
- #: ../classes/class-wpfront-user-role-editor-go-pro.php:368
1023
  msgid "Deactivated On"
1024
  msgstr "Deactivated On"
1025
 
1026
- #: ../classes/class-wpfront-user-role-editor-go-pro.php:362
1027
  msgid ""
1028
  "Your WPFront User Role Editor Pro license is invalid on the following site. "
1029
  "Please activate a valid license immediately for the plugin to continue "
@@ -1033,11 +1035,15 @@ msgstr ""
1033
  "Please activate a valid license immediately for the plugin to continue "
1034
  "working."
1035
 
1036
- #: ../classes/class-wpfront-user-role-editor-go-pro.php:363
1037
  msgid "WPFront User Role Editor Pro Invalid License"
1038
  msgstr "WPFront User Role Editor Pro Invalid License"
1039
 
1040
- #: ../classes/class-wpfront-user-role-editor-go-pro.php:366
 
 
 
 
1041
  msgid ""
1042
  "Your invalid WPFront User Role Editor Pro license was deactivated on the "
1043
  "following site. Please activate a valid license immediately for the plugin "
@@ -1181,7 +1187,7 @@ msgstr ""
1181
  "Allows you to set that role as the default role for new user registration."
1182
 
1183
  #: ../classes/class-wpfront-user-role-editor-list.php:486
1184
- #: ../classes/personal-pro/class-wpfront-user-role-editor-menu-editor.php:593
1185
  msgid "Edit Menu"
1186
  msgstr "Edit Menu"
1187
 
@@ -1298,7 +1304,7 @@ msgid "Add/Edit a new login redirect."
1298
  msgstr "Add/Edit a new login redirect."
1299
 
1300
  #: ../classes/class-wpfront-user-role-editor-login-redirect.php:448
1301
- #: ../classes/personal-pro/class-wpfront-user-role-editor-menu-editor.php:614
1302
  msgid "Fields"
1303
  msgstr "Fields"
1304
 
@@ -1400,46 +1406,55 @@ msgstr "Remove"
1400
  msgid "Cancel"
1401
  msgstr "Cancel"
1402
 
1403
- #: ../classes/class-wpfront-user-role-editor-nav-menu.php:84
1404
- #: ../classes/class-wpfront-user-role-editor-nav-menu.php:119
 
 
 
 
 
 
 
 
 
1405
  #: ../classes/class-wpfront-user-role-editor-widget-permissions.php:90
1406
  #: ../classes/personal-pro/class-wpfront-user-role-editor-content-shortcodes.php:247
1407
  #: ../templates/personal-pro/content-shortcodes-add-edit.php:42
1408
  msgid "All Users"
1409
  msgstr "All Users"
1410
 
1411
- #: ../classes/class-wpfront-user-role-editor-nav-menu.php:88
1412
- #: ../classes/class-wpfront-user-role-editor-nav-menu.php:120
1413
  #: ../classes/class-wpfront-user-role-editor-widget-permissions.php:91
1414
  msgid "Logged in Users"
1415
  msgstr "Logged in Users"
1416
 
1417
- #: ../classes/class-wpfront-user-role-editor-nav-menu.php:91
1418
- #: ../classes/class-wpfront-user-role-editor-nav-menu.php:121
1419
  #: ../classes/class-wpfront-user-role-editor-widget-permissions.php:92
1420
  #: ../classes/personal-pro/class-wpfront-user-role-editor-content-shortcodes.php:255
1421
  #: ../templates/personal-pro/content-shortcodes-add-edit.php:46
1422
  msgid "Guest Users"
1423
  msgstr "Guest Users"
1424
 
1425
- #: ../classes/class-wpfront-user-role-editor-nav-menu.php:94
1426
- #: ../classes/class-wpfront-user-role-editor-nav-menu.php:122
1427
  #: ../classes/class-wpfront-user-role-editor-widget-permissions.php:93
1428
  msgid "Users by Role"
1429
  msgstr "Users by Role"
1430
 
1431
- #: ../classes/class-wpfront-user-role-editor-nav-menu.php:105
1432
- #: ../classes/class-wpfront-user-role-editor-widget-permissions.php:140
1433
  #, php-format
1434
  msgid "%s to limit based on roles."
1435
  msgstr "%s to limit based on roles."
1436
 
1437
- #: ../classes/class-wpfront-user-role-editor-nav-menu.php:117
1438
  #: ../classes/class-wpfront-user-role-editor-widget-permissions.php:88
1439
  msgid "User Restrictions"
1440
  msgstr "User Restrictions"
1441
 
1442
- #: ../classes/class-wpfront-user-role-editor-options.php:275
1443
  msgid ""
1444
  "These settings are applicable for the network admin dashboard. Also these "
1445
  "settings will propagate to the individual sites unless its overridden within "
@@ -1449,27 +1464,27 @@ msgstr ""
1449
  "settings will propagate to the individual sites unless its overridden within "
1450
  "that site’s settings."
1451
 
1452
- #: ../classes/class-wpfront-user-role-editor-options.php:282
1453
- #: ../templates/options-template.php:61
1454
  msgid "Enable Large Network Functionalities"
1455
  msgstr "Enable Large Network Functionalities"
1456
 
1457
- #: ../classes/class-wpfront-user-role-editor-options.php:284
1458
  msgid "This setting is only visible when you have a large network."
1459
  msgstr "This setting is only visible when you have a large network."
1460
 
1461
- #: ../classes/class-wpfront-user-role-editor-options.php:286
1462
  msgid "More details"
1463
  msgstr "More details"
1464
 
1465
- #: ../classes/class-wpfront-user-role-editor-options.php:290
1466
- #: ../classes/class-wpfront-user-role-editor-options.php:322
1467
- #: ../templates/options-template.php:70
1468
  msgid "Display Deprecated Capabilities"
1469
  msgstr "Display Deprecated Capabilities"
1470
 
1471
- #: ../classes/class-wpfront-user-role-editor-options.php:292
1472
- #: ../classes/class-wpfront-user-role-editor-options.php:324
1473
  msgid ""
1474
  "If enabled, deprecated capabilities will be displayed within the add/edit "
1475
  "screens."
@@ -1477,14 +1492,14 @@ msgstr ""
1477
  "If enabled, deprecated capabilities will be displayed within the add/edit "
1478
  "screens."
1479
 
1480
- #: ../classes/class-wpfront-user-role-editor-options.php:295
1481
- #: ../classes/class-wpfront-user-role-editor-options.php:327
1482
- #: ../templates/options-template.php:78
1483
  msgid "Remove Non-Standard Capabilities on Restore"
1484
  msgstr "Remove Non-Standard Capabilities on Restore"
1485
 
1486
- #: ../classes/class-wpfront-user-role-editor-options.php:297
1487
- #: ../classes/class-wpfront-user-role-editor-options.php:329
1488
  msgid ""
1489
  "If enabled, while restoring WordPress built-in capabilities non-standard "
1490
  "capabilities will be removed."
@@ -1492,36 +1507,47 @@ msgstr ""
1492
  "If enabled, while restoring WordPress built-in capabilities non-standard "
1493
  "capabilities will be removed."
1494
 
1495
- #: ../classes/class-wpfront-user-role-editor-options.php:300
1496
- #: ../classes/class-wpfront-user-role-editor-options.php:332
1497
- #: ../templates/options-template.php:86
1498
  msgid "Override Edit Permissions"
1499
  msgstr "Override Edit Permissions"
1500
 
1501
- #: ../classes/class-wpfront-user-role-editor-options.php:302
1502
- #: ../classes/class-wpfront-user-role-editor-options.php:334
1503
  msgid "If enabled, ignores the check to the function get_editable_roles."
1504
  msgstr "If enabled, ignores the check to the function get_editable_roles."
1505
 
1506
- #: ../classes/class-wpfront-user-role-editor-options.php:305
1507
- #: ../classes/class-wpfront-user-role-editor-options.php:337
1508
- #: ../templates/options-template.php:94
1509
  msgid "Disable Navigation Menu Permissions"
1510
  msgstr "Disable Navigation Menu Permissions"
1511
 
1512
- #: ../classes/class-wpfront-user-role-editor-options.php:307
1513
- #: ../classes/class-wpfront-user-role-editor-options.php:339
1514
  msgid "If enabled, disables navigation menu permissions functionality."
1515
  msgstr "If enabled, disables navigation menu permissions functionality."
1516
 
1517
- #: ../classes/class-wpfront-user-role-editor-options.php:310
1518
- #: ../classes/class-wpfront-user-role-editor-options.php:342
1519
- #: ../templates/options-template.php:131
 
 
 
 
 
 
 
 
 
 
 
1520
  msgid "Remove Data on Uninstall"
1521
  msgstr "Remove Data on Uninstall"
1522
 
1523
- #: ../classes/class-wpfront-user-role-editor-options.php:312
1524
- #: ../classes/class-wpfront-user-role-editor-options.php:344
1525
  msgid ""
1526
  "If enabled, removes all data related to this plugin from database (except "
1527
  "roles data) including license information if any. This will not deactivate "
@@ -1531,11 +1557,11 @@ msgstr ""
1531
  "roles data) including license information if any. This will not deactivate "
1532
  "the license automatically."
1533
 
1534
- #: ../classes/class-wpfront-user-role-editor-options.php:355
1535
  msgid "Documentation on Multisite Settings"
1536
  msgstr "Documentation on Multisite Settings"
1537
 
1538
- #: ../classes/class-wpfront-user-role-editor-options.php:362
1539
  msgid "Documentation on Settings"
1540
  msgstr "Documentation on Settings"
1541
 
@@ -1600,30 +1626,32 @@ msgstr "You do not have permission to install plugin updates"
1600
  msgid "Post not found"
1601
  msgstr "Post not found"
1602
 
1603
- #: ../classes/personal-pro/class-wpfront-user-role-editor-bulk-edit-extended-permissions.php:234
1604
- #: ../classes/personal-pro/class-wpfront-user-role-editor-bulk-edit-extended-permissions.php:238
 
 
1605
  msgid "Permission denied"
1606
  msgstr "Permission denied"
1607
 
1608
- #: ../classes/personal-pro/class-wpfront-user-role-editor-bulk-edit-extended-permissions.php:315
1609
  msgid "Step 1: Select the post type you want to bulk edit."
1610
  msgstr "Step 1: Select the post type you want to bulk edit."
1611
 
1612
- #: ../classes/personal-pro/class-wpfront-user-role-editor-bulk-edit-extended-permissions.php:318
1613
  msgid "Step 2: Select the posts you want to bulk edit."
1614
  msgstr "Step 2: Select the posts you want to bulk edit."
1615
 
1616
- #: ../classes/personal-pro/class-wpfront-user-role-editor-bulk-edit-extended-permissions.php:321
1617
  #: ../templates/personal-pro/bulk-edit-extended-permissions.php:213
1618
  msgid "Step 3: Select the role permissions."
1619
  msgstr "Step 3: Select the role permissions."
1620
 
1621
- #: ../classes/personal-pro/class-wpfront-user-role-editor-bulk-edit-extended-permissions.php:324
1622
- #: ../templates/personal-pro/bulk-edit-extended-permissions.php:244
1623
  msgid "Step 4: Update role permissions."
1624
  msgstr "Step 4: Update role permissions."
1625
 
1626
- #: ../classes/personal-pro/class-wpfront-user-role-editor-bulk-edit-extended-permissions.php:333
1627
  #: ../classes/personal-pro/class-wpfront-user-role-editor-bulk-edit.php:93
1628
  msgid "Documentation on Bulk Edit"
1629
  msgstr "Documentation on Bulk Edit"
@@ -1691,7 +1719,7 @@ msgstr "Shortcode(s) deleted."
1691
 
1692
  #: ../classes/personal-pro/class-wpfront-user-role-editor-content-shortcodes.php:235
1693
  #: ../classes/personal-pro/class-wpfront-user-role-editor-nav-menu-pro.php:23
1694
- #: ../classes/personal-pro/class-wpfront-user-role-editor-post-type-permissions.php:115
1695
  #: ../classes/personal-pro/class-wpfront-user-role-editor-widget-permissions-pro.php:35
1696
  msgid "[Guest]"
1697
  msgstr "[Guest]"
@@ -1904,7 +1932,7 @@ msgstr "Menu defaults restored."
1904
  msgid "No editable roles found on this site."
1905
  msgstr "No editable roles found on this site."
1906
 
1907
- #: ../classes/personal-pro/class-wpfront-user-role-editor-menu-editor.php:603
1908
  msgid ""
1909
  "This screen allows you to enable and disable admin menus for a particular "
1910
  "role."
@@ -1912,11 +1940,11 @@ msgstr ""
1912
  "This screen allows you to enable and disable admin menus for a particular "
1913
  "role."
1914
 
1915
- #: ../classes/personal-pro/class-wpfront-user-role-editor-menu-editor.php:606
1916
  msgid "Deselect a menu from the grid to remove that menu."
1917
  msgstr "Deselect a menu from the grid to remove that menu."
1918
 
1919
- #: ../classes/personal-pro/class-wpfront-user-role-editor-menu-editor.php:609
1920
  msgid ""
1921
  "Disabled menu items are already hidden, because the selected role doesn't "
1922
  "have the capability to display that menu. Grid displays menus which the "
@@ -1926,21 +1954,21 @@ msgstr ""
1926
  "have the capability to display that menu. Grid displays menus which the "
1927
  "current user has access to."
1928
 
1929
- #: ../classes/personal-pro/class-wpfront-user-role-editor-menu-editor.php:616
1930
  #: ../templates/personal-pro/menu-editor.php:39
1931
  msgid "Override Role"
1932
  msgstr "Override Role"
1933
 
1934
- #: ../classes/personal-pro/class-wpfront-user-role-editor-menu-editor.php:618
1935
  msgid "The role you want to override."
1936
  msgstr "The role you want to override."
1937
 
1938
- #: ../classes/personal-pro/class-wpfront-user-role-editor-menu-editor.php:621
1939
  #: ../templates/personal-pro/menu-editor.php:56
1940
  msgid "Override Type"
1941
  msgstr "Override Type"
1942
 
1943
- #: ../classes/personal-pro/class-wpfront-user-role-editor-menu-editor.php:623
1944
  msgid ""
1945
  "Soft - Pages may be available through directly typing the URL. Hard - Even "
1946
  "URLs will be blocked."
@@ -1948,35 +1976,35 @@ msgstr ""
1948
  "Soft - Pages may be available through directly typing the URL. Hard - Even "
1949
  "URLs will be blocked."
1950
 
1951
- #: ../classes/personal-pro/class-wpfront-user-role-editor-menu-editor.php:626
1952
  #: ../templates/personal-pro/menu-editor.php:67
1953
  msgid "Hide New Menus"
1954
  msgstr "Hide New Menus"
1955
 
1956
- #: ../classes/personal-pro/class-wpfront-user-role-editor-menu-editor.php:628
1957
  msgid "Allow you to hide future menus."
1958
  msgstr "Allow you to hide future menus."
1959
 
1960
- #: ../classes/personal-pro/class-wpfront-user-role-editor-menu-editor.php:631
1961
  #: ../templates/personal-pro/menu-editor.php:75
1962
  msgid "Disable For Secondary Role"
1963
  msgstr "Disable For Secondary Role"
1964
 
1965
- #: ../classes/personal-pro/class-wpfront-user-role-editor-menu-editor.php:633
1966
  msgid "Disables menu settings while the selected role is a secondary role."
1967
  msgstr "Disables menu settings while the selected role is a secondary role."
1968
 
1969
- #: ../classes/personal-pro/class-wpfront-user-role-editor-menu-editor.php:638
1970
  msgid "Restore Default"
1971
  msgstr "Restore Default"
1972
 
1973
- #: ../classes/personal-pro/class-wpfront-user-role-editor-menu-editor.php:640
1974
  msgid ""
1975
  "Select \"Restore default\" from the \"Copy from\" drop down and click apply."
1976
  msgstr ""
1977
  "Select \"Restore default\" from the \"Copy from\" drop down and click apply."
1978
 
1979
- #: ../classes/personal-pro/class-wpfront-user-role-editor-menu-editor.php:649
1980
  msgid "Documentation on Menu Editor"
1981
  msgstr "Documentation on Menu Editor"
1982
 
@@ -2023,9 +2051,9 @@ msgstr "Bulk Edit"
2023
  msgid "%s license not activated."
2024
  msgstr "%s license not activated."
2025
 
2026
- #: ../classes/personal-pro/class-wpfront-user-role-editor-post-type-permissions.php:76
2027
- #: ../classes/personal-pro/class-wpfront-user-role-editor-post-type-permissions.php:328
2028
- #: ../templates/personal-pro/bulk-edit-extended-permissions.php:218
2029
  msgid "Role Permissions"
2030
  msgstr "Role Permissions"
2031
 
@@ -2105,7 +2133,7 @@ msgstr "Search Sites"
2105
  #: ../templates/business-pro/sync-roles.php:249
2106
  #: ../templates/personal-pro/bulk-edit-extended-permissions.php:55
2107
  #: ../templates/personal-pro/bulk-edit-extended-permissions.php:87
2108
- #: ../templates/personal-pro/bulk-edit-extended-permissions.php:232
2109
  #: ../templates/personal-pro/bulk-edit.php:35
2110
  msgid "Next Step"
2111
  msgstr "Next Step"
@@ -2179,12 +2207,12 @@ msgid "Update new user default role: "
2179
  msgstr "Update new user default role: "
2180
 
2181
  #: ../templates/business-pro/sync-roles.php:348
2182
- #: ../templates/personal-pro/bulk-edit-extended-permissions.php:289
2183
  msgid "SUCCESS"
2184
  msgstr "SUCCESS"
2185
 
2186
  #: ../templates/business-pro/sync-roles.php:351
2187
- #: ../templates/personal-pro/bulk-edit-extended-permissions.php:293
2188
  msgid "FAIL"
2189
  msgstr "FAIL"
2190
 
@@ -2237,10 +2265,14 @@ msgstr "Expired"
2237
  msgid "Invalid"
2238
  msgstr "Invalid"
2239
 
2240
- #: ../templates/go-pro.php:101
2241
  msgid "License Expires"
2242
  msgstr "License Expires"
2243
 
 
 
 
 
2244
  #: ../templates/list-roles.php:51
2245
  #: ../templates/personal-pro/content-shortcodes.php:13
2246
  #, php-format
@@ -2281,7 +2313,7 @@ msgid "Disable Toolbar"
2281
  msgstr "Disable Toolbar"
2282
 
2283
  #: ../templates/login-redirect.php:160
2284
- #: ../templates/personal-pro/bulk-edit-extended-permissions.php:250
2285
  #: ../templates/personal-pro/content-shortcodes-add-edit.php:67
2286
  msgid "Submit"
2287
  msgstr "Submit"
@@ -2298,23 +2330,18 @@ msgstr "Confirm Delete"
2298
  msgid "WPFront User Role Editor Settings"
2299
  msgstr "WPFront User Role Editor Settings"
2300
 
2301
- #: ../templates/options-template.php:47
2302
- #, php-format
2303
- msgid ""
2304
- "Menu walker class is overriden by a theme/plugin. Current value = %s. "
2305
- "Navigation menu permissions may still work. %s"
2306
- msgstr ""
2307
- "Menu walker class is overriden by a theme/plugin. Current value = %s. "
2308
- "Navigation menu permissions may still work. %s"
2309
-
2310
- #: ../templates/options-template.php:103
2311
  msgid "Customize Permissions (custom post types)"
2312
  msgstr "Customize Permissions (custom post types)"
2313
 
2314
- #: ../templates/options-template.php:109
2315
  msgid "No customizable post types found."
2316
  msgstr "No customizable post types found."
2317
 
 
 
 
 
2318
  #: ../templates/personal-pro/bulk-edit-extended-permissions.php:29
2319
  msgid "Extended Permissions"
2320
  msgstr "Extended Permissions"
@@ -2338,12 +2365,25 @@ msgstr "All %s"
2338
  msgid "Selected %s"
2339
  msgstr "Selected %s"
2340
 
2341
- #: ../templates/personal-pro/bulk-edit-extended-permissions.php:247
 
 
 
 
 
 
 
 
 
 
 
 
 
2342
  #, php-format
2343
  msgid "%d %s selected to update."
2344
  msgstr "%d %s selected to update."
2345
 
2346
- #: ../templates/personal-pro/bulk-edit-extended-permissions.php:279
2347
  #, php-format
2348
  msgid "Updating %s"
2349
  msgstr "Updating %s"
@@ -2457,10 +2497,6 @@ msgstr "Menu Slug"
2457
  msgid "Enable Role Permissions"
2458
  msgstr "Enable Role Permissions"
2459
 
2460
- #: ../templates/personal-pro/post-type-permissions.php:33
2461
- msgid "Read"
2462
- msgstr "Read"
2463
-
2464
  #: ../templates/restore-role.php:55
2465
  msgid "Confirm"
2466
  msgstr "Confirm"
@@ -2473,6 +2509,19 @@ msgstr "Restored"
2473
  msgid "Unexpected error / Timed out"
2474
  msgstr "Unexpected error / Timed out"
2475
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2476
  #~ msgid "License key activation limit reached"
2477
  #~ msgstr "License key activation limit reached"
2478
 
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: WPFront Notification Bar\n"
4
+ "POT-Creation-Date: 2017-04-16 14:44+0530\n"
5
+ "PO-Revision-Date: 2017-04-16 14:45+0530\n"
6
  "Last-Translator: \n"
7
  "Language-Team: WPFront <contact@wpfront.com>\n"
8
  "Language: en\n"
63
  msgstr "More information about %s"
64
 
65
  #: ../classes/base/class-wpfront-base-menu.php:158
66
+ #: ../classes/class-wpfront-user-role-editor-go-pro.php:295
67
  msgid "Details"
68
  msgstr "Details"
69
 
96
  #: ../classes/base/class-wpfront-base-menu.php:179
97
  #: ../classes/base/class-wpfront-base.php:126
98
  #: ../classes/business-pro/class-wpfront-user-role-editor-business-pro.php:108
99
+ #: ../classes/class-wpfront-user-role-editor-options.php:331
100
  #: ../classes/class-wpfront-user-role-editor.php:263
101
  msgid "Settings"
102
  msgstr "Settings"
217
  #: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:227
218
  #: ../classes/class-wpfront-user-role-editor-add-edit.php:324
219
  #: ../classes/class-wpfront-user-role-editor-add-remove-capability.php:128
220
+ #: ../classes/class-wpfront-user-role-editor-assign-roles.php:395
221
  #: ../classes/class-wpfront-user-role-editor-list.php:361
222
  #: ../classes/class-wpfront-user-role-editor-list.php:395
223
  #: ../classes/class-wpfront-user-role-editor-list.php:412
224
  #: ../classes/class-wpfront-user-role-editor-login-redirect.php:407
225
  #: ../classes/class-wpfront-user-role-editor-login-redirect.php:441
226
  #: ../classes/class-wpfront-user-role-editor-login-redirect.php:472
227
+ #: ../classes/class-wpfront-user-role-editor-options.php:324
228
+ #: ../classes/class-wpfront-user-role-editor-options.php:376
229
  #: ../classes/class-wpfront-user-role-editor-restore.php:168
230
+ #: ../classes/personal-pro/class-wpfront-user-role-editor-bulk-edit-extended-permissions.php:332
231
  #: ../classes/personal-pro/class-wpfront-user-role-editor-bulk-edit.php:76
232
  #: ../classes/personal-pro/class-wpfront-user-role-editor-content-shortcodes.php:362
233
  #: ../classes/personal-pro/class-wpfront-user-role-editor-content-shortcodes.php:393
234
  #: ../classes/personal-pro/class-wpfront-user-role-editor-content-shortcodes.php:404
235
  #: ../classes/personal-pro/class-wpfront-user-role-editor-export.php:130
236
  #: ../classes/personal-pro/class-wpfront-user-role-editor-import.php:229
237
+ #: ../classes/personal-pro/class-wpfront-user-role-editor-menu-editor.php:612
238
  msgid "Overview"
239
  msgstr "Overview"
240
 
490
  #: ../classes/personal-pro/class-wpfront-user-role-editor-content-shortcodes-list-table.php:146
491
  #: ../classes/personal-pro/class-wpfront-user-role-editor-content-shortcodes.php:443
492
  #: ../templates/list-roles.php:109
493
+ #: ../templates/personal-pro/bulk-edit-extended-permissions.php:252
494
  #: ../templates/personal-pro/post-type-permissions.php:34
495
  msgid "Edit"
496
  msgstr "Edit"
517
  #: ../classes/personal-pro/class-wpfront-user-role-editor-content-shortcodes-list-table.php:149
518
  #: ../classes/personal-pro/class-wpfront-user-role-editor-content-shortcodes.php:448
519
  #: ../templates/list-roles.php:112
520
+ #: ../templates/personal-pro/bulk-edit-extended-permissions.php:253
521
  #: ../templates/personal-pro/post-type-permissions.php:35
522
  msgid "Delete"
523
  msgstr "Delete"
540
 
541
  #: ../classes/business-pro/class-wpfront-user-role-editor-ms-restore.php:48
542
  #: ../classes/business-pro/class-wpfront-user-role-editor-ms-restore.php:77
543
+ #: ../classes/class-wpfront-user-role-editor-go-pro.php:232
544
+ #: ../classes/class-wpfront-user-role-editor-go-pro.php:234
545
+ #: ../classes/class-wpfront-user-role-editor-go-pro.php:263
546
+ #: ../classes/class-wpfront-user-role-editor-go-pro.php:293
547
+ #: ../classes/class-wpfront-user-role-editor-go-pro.php:302
548
  #: ../classes/class-wpfront-user-role-editor-restore.php:87
549
  #: ../templates/add-edit-role.php:51 ../templates/add-edit-role.php:59
550
  #: ../templates/business-pro/sync-roles.php:21
553
  msgstr "ERROR"
554
 
555
  #: ../classes/business-pro/class-wpfront-user-role-editor-ms-restore.php:48
556
+ #: ../classes/class-wpfront-user-role-editor-assign-roles.php:218
557
  msgid "Permission denied."
558
  msgstr "Permission denied."
559
 
564
  #: ../classes/business-pro/class-wpfront-user-role-editor-ms-restore.php:90
565
  #: ../classes/class-wpfront-user-role-editor-restore.php:170
566
  msgid ""
567
+ "This screen allows you to restore WordPress built-in roles to its standard "
568
  "capability settings."
569
  msgstr ""
570
+ "This screen allows you to restore WordPress built-in roles to its standard "
571
  "capability settings."
572
 
573
  #: ../classes/business-pro/class-wpfront-user-role-editor-ms-restore.php:93
766
 
767
  #: ../classes/class-wpfront-user-role-editor-add-edit.php:379
768
  #, php-format
769
+ msgid "%s to customize capabilities."
770
+ msgstr "%s to customize capabilities."
771
 
772
  #: ../classes/class-wpfront-user-role-editor-add-edit.php:379
773
+ #: ../classes/class-wpfront-user-role-editor-nav-menu.php:127
774
+ #: ../classes/class-wpfront-user-role-editor-widget-permissions.php:143
775
  msgid "Upgrade to Pro"
776
  msgstr "Upgrade to Pro"
777
 
840
  msgid "Documentation on Add/Remove Capability"
841
  msgstr "Documentation on Add/Remove Capability"
842
 
843
+ #: ../classes/class-wpfront-user-role-editor-assign-roles.php:67
844
+ #: ../classes/class-wpfront-user-role-editor-assign-roles.php:369
845
  msgid "Secondary Roles"
846
  msgstr "Secondary Roles"
847
 
848
+ #: ../classes/class-wpfront-user-role-editor-assign-roles.php:83
849
+ #: ../classes/class-wpfront-user-role-editor-assign-roles.php:402
850
  #: ../templates/assign-roles.php:42 ../templates/assign-roles.php:94
851
  msgid "Assign Roles"
852
  msgstr "Assign Roles"
853
 
854
+ #: ../classes/class-wpfront-user-role-editor-assign-roles.php:185
855
  msgid "No role for this site"
856
  msgstr "No role for this site"
857
 
858
+ #: ../classes/class-wpfront-user-role-editor-assign-roles.php:212
859
  msgid "Invalid user."
860
  msgstr "Invalid user."
861
 
862
+ #: ../classes/class-wpfront-user-role-editor-assign-roles.php:247
863
  msgid "Roles updated successfully."
864
  msgstr "Roles updated successfully."
865
 
866
+ #: ../classes/class-wpfront-user-role-editor-assign-roles.php:249
867
  msgid "Invalid primary role specified."
868
  msgstr "Invalid primary role specified."
869
 
870
+ #: ../classes/class-wpfront-user-role-editor-assign-roles.php:267
871
+ #: ../classes/class-wpfront-user-role-editor-assign-roles.php:277
872
  msgid "Invalid primary role."
873
  msgstr "Invalid primary role."
874
 
875
+ #: ../classes/class-wpfront-user-role-editor-assign-roles.php:299
876
  #, php-format
877
  msgid "%d user(s) migrated."
878
  msgstr "%d user(s) migrated."
879
 
880
+ #: ../classes/class-wpfront-user-role-editor-assign-roles.php:351
881
  msgid "Primary Role"
882
  msgstr "Primary Role"
883
 
884
+ #: ../classes/class-wpfront-user-role-editor-assign-roles.php:397
885
  msgid ""
886
  "This screen allows you to assign multiple roles to a user and also allows "
887
  "you to migrate users from a role to another role."
889
  "This screen allows you to assign multiple roles to a user and also allows "
890
  "you to migrate users from a role to another role."
891
 
892
+ #: ../classes/class-wpfront-user-role-editor-assign-roles.php:404
893
  msgid ""
894
  "To assign multiple roles to a user, select that user within the User drop "
895
  "down list and select the primary role you want for that user using the "
901
  "Primary Role drop down list. Select the secondary roles using the check "
902
  "boxes below, then click Assign Roles."
903
 
904
+ #: ../classes/class-wpfront-user-role-editor-assign-roles.php:409
905
  #: ../templates/assign-roles.php:99 ../templates/assign-roles.php:132
906
  msgid "Migrate Users"
907
  msgstr "Migrate Users"
908
 
909
+ #: ../classes/class-wpfront-user-role-editor-assign-roles.php:411
910
  msgid ""
911
  "To migrate users from one role to another role or to add secondary roles to "
912
  "users belonging to a particular primary role, use the migrate users "
916
  "users belonging to a particular primary role, use the migrate users "
917
  "functionality."
918
 
919
+ #: ../classes/class-wpfront-user-role-editor-assign-roles.php:414
920
  msgid ""
921
  "Select the users using the From Primary Role drop down, to primary role "
922
  "using the Primary Role drop down and secondary roles using the check boxes "
926
  "using the Primary Role drop down and secondary roles using the check boxes "
927
  "then click Migrate Users."
928
 
929
+ #: ../classes/class-wpfront-user-role-editor-assign-roles.php:423
930
  msgid "Documentation on Assign / Migrate Users"
931
  msgstr "Documentation on Assign / Migrate Users"
932
 
950
  msgid "Contact"
951
  msgstr "Contact"
952
 
953
+ #: ../classes/class-wpfront-user-role-editor-go-pro.php:232
954
  msgid "License key activation limit reached."
955
  msgstr "License key activation limit reached."
956
 
957
+ #: ../classes/class-wpfront-user-role-editor-go-pro.php:232
958
+ #: ../classes/class-wpfront-user-role-editor-nav-menu.php:93
959
  msgid "More information"
960
  msgstr "More information"
961
 
962
+ #: ../classes/class-wpfront-user-role-editor-go-pro.php:234
963
  msgid "Invalid license key"
964
  msgstr "Invalid license key"
965
 
966
+ #: ../classes/class-wpfront-user-role-editor-go-pro.php:263
967
+ msgid "Unable to deactivate"
968
+ msgstr "Unable to deactivate"
969
 
970
+ #: ../classes/class-wpfront-user-role-editor-go-pro.php:293
971
  msgid "Unable to contact wpfront.com"
972
  msgstr "Unable to contact wpfront.com"
973
 
974
+ #: ../classes/class-wpfront-user-role-editor-go-pro.php:302
975
  msgid "Unable to parse response"
976
  msgstr "Unable to parse response"
977
 
978
+ #: ../classes/class-wpfront-user-role-editor-go-pro.php:373
979
  msgid "Site"
980
  msgstr "Site"
981
 
982
+ #: ../classes/class-wpfront-user-role-editor-go-pro.php:374
983
  msgid "Product"
984
  msgstr "Product"
985
 
986
+ #: ../classes/class-wpfront-user-role-editor-go-pro.php:378
987
  msgid ""
988
  "Your WPFront User Role Editor Pro license was activated on the following "
989
  "site."
991
  "Your WPFront User Role Editor Pro license was activated on the following "
992
  "site."
993
 
994
+ #: ../classes/class-wpfront-user-role-editor-go-pro.php:379
995
  msgid "WPFront User Role Editor Pro License Activated"
996
  msgstr "WPFront User Role Editor Pro License Activated"
997
 
998
+ #: ../classes/class-wpfront-user-role-editor-go-pro.php:381
999
  msgid "Activated By"
1000
  msgstr "Activated By"
1001
 
1002
+ #: ../classes/class-wpfront-user-role-editor-go-pro.php:382
1003
  msgid "Activated On"
1004
  msgstr "Activated On"
1005
 
1006
+ #: ../classes/class-wpfront-user-role-editor-go-pro.php:386
1007
  msgid ""
1008
  "Your WPFront User Role Editor Pro license was deactivated on the following "
1009
  "site."
1011
  "Your WPFront User Role Editor Pro license was deactivated on the following "
1012
  "site."
1013
 
1014
+ #: ../classes/class-wpfront-user-role-editor-go-pro.php:387
1015
+ #: ../classes/class-wpfront-user-role-editor-go-pro.php:400
1016
  msgid "WPFront User Role Editor Pro License Deactivated"
1017
  msgstr "WPFront User Role Editor Pro License Deactivated"
1018
 
1019
+ #: ../classes/class-wpfront-user-role-editor-go-pro.php:389
1020
  msgid "Deactivated By"
1021
  msgstr "Deactivated By"
1022
 
1023
+ #: ../classes/class-wpfront-user-role-editor-go-pro.php:390
1024
+ #: ../classes/class-wpfront-user-role-editor-go-pro.php:401
1025
  msgid "Deactivated On"
1026
  msgstr "Deactivated On"
1027
 
1028
+ #: ../classes/class-wpfront-user-role-editor-go-pro.php:394
1029
  msgid ""
1030
  "Your WPFront User Role Editor Pro license is invalid on the following site. "
1031
  "Please activate a valid license immediately for the plugin to continue "
1035
  "Please activate a valid license immediately for the plugin to continue "
1036
  "working."
1037
 
1038
+ #: ../classes/class-wpfront-user-role-editor-go-pro.php:395
1039
  msgid "WPFront User Role Editor Pro Invalid License"
1040
  msgstr "WPFront User Role Editor Pro Invalid License"
1041
 
1042
+ #: ../classes/class-wpfront-user-role-editor-go-pro.php:396
1043
+ msgid "Invalid URL"
1044
+ msgstr "Invalid URL"
1045
+
1046
+ #: ../classes/class-wpfront-user-role-editor-go-pro.php:399
1047
  msgid ""
1048
  "Your invalid WPFront User Role Editor Pro license was deactivated on the "
1049
  "following site. Please activate a valid license immediately for the plugin "
1187
  "Allows you to set that role as the default role for new user registration."
1188
 
1189
  #: ../classes/class-wpfront-user-role-editor-list.php:486
1190
+ #: ../classes/personal-pro/class-wpfront-user-role-editor-menu-editor.php:604
1191
  msgid "Edit Menu"
1192
  msgstr "Edit Menu"
1193
 
1304
  msgstr "Add/Edit a new login redirect."
1305
 
1306
  #: ../classes/class-wpfront-user-role-editor-login-redirect.php:448
1307
+ #: ../classes/personal-pro/class-wpfront-user-role-editor-menu-editor.php:625
1308
  msgid "Fields"
1309
  msgstr "Fields"
1310
 
1406
  msgid "Cancel"
1407
  msgstr "Cancel"
1408
 
1409
+ #: ../classes/class-wpfront-user-role-editor-nav-menu.php:91
1410
+ #, php-format
1411
+ msgid ""
1412
+ "Menu walker class is overriden by a theme/plugin. Current value = %s. "
1413
+ "Navigation menu permissions may still work. %s"
1414
+ msgstr ""
1415
+ "Menu walker class is overriden by a theme/plugin. Current value = %s. "
1416
+ "Navigation menu permissions may still work. %s"
1417
+
1418
+ #: ../classes/class-wpfront-user-role-editor-nav-menu.php:106
1419
+ #: ../classes/class-wpfront-user-role-editor-nav-menu.php:141
1420
  #: ../classes/class-wpfront-user-role-editor-widget-permissions.php:90
1421
  #: ../classes/personal-pro/class-wpfront-user-role-editor-content-shortcodes.php:247
1422
  #: ../templates/personal-pro/content-shortcodes-add-edit.php:42
1423
  msgid "All Users"
1424
  msgstr "All Users"
1425
 
1426
+ #: ../classes/class-wpfront-user-role-editor-nav-menu.php:110
1427
+ #: ../classes/class-wpfront-user-role-editor-nav-menu.php:142
1428
  #: ../classes/class-wpfront-user-role-editor-widget-permissions.php:91
1429
  msgid "Logged in Users"
1430
  msgstr "Logged in Users"
1431
 
1432
+ #: ../classes/class-wpfront-user-role-editor-nav-menu.php:113
1433
+ #: ../classes/class-wpfront-user-role-editor-nav-menu.php:143
1434
  #: ../classes/class-wpfront-user-role-editor-widget-permissions.php:92
1435
  #: ../classes/personal-pro/class-wpfront-user-role-editor-content-shortcodes.php:255
1436
  #: ../templates/personal-pro/content-shortcodes-add-edit.php:46
1437
  msgid "Guest Users"
1438
  msgstr "Guest Users"
1439
 
1440
+ #: ../classes/class-wpfront-user-role-editor-nav-menu.php:116
1441
+ #: ../classes/class-wpfront-user-role-editor-nav-menu.php:144
1442
  #: ../classes/class-wpfront-user-role-editor-widget-permissions.php:93
1443
  msgid "Users by Role"
1444
  msgstr "Users by Role"
1445
 
1446
+ #: ../classes/class-wpfront-user-role-editor-nav-menu.php:127
1447
+ #: ../classes/class-wpfront-user-role-editor-widget-permissions.php:143
1448
  #, php-format
1449
  msgid "%s to limit based on roles."
1450
  msgstr "%s to limit based on roles."
1451
 
1452
+ #: ../classes/class-wpfront-user-role-editor-nav-menu.php:139
1453
  #: ../classes/class-wpfront-user-role-editor-widget-permissions.php:88
1454
  msgid "User Restrictions"
1455
  msgstr "User Restrictions"
1456
 
1457
+ #: ../classes/class-wpfront-user-role-editor-options.php:326
1458
  msgid ""
1459
  "These settings are applicable for the network admin dashboard. Also these "
1460
  "settings will propagate to the individual sites unless its overridden within "
1464
  "settings will propagate to the individual sites unless its overridden within "
1465
  "that site’s settings."
1466
 
1467
+ #: ../classes/class-wpfront-user-role-editor-options.php:333
1468
+ #: ../templates/options-template.php:48
1469
  msgid "Enable Large Network Functionalities"
1470
  msgstr "Enable Large Network Functionalities"
1471
 
1472
+ #: ../classes/class-wpfront-user-role-editor-options.php:335
1473
  msgid "This setting is only visible when you have a large network."
1474
  msgstr "This setting is only visible when you have a large network."
1475
 
1476
+ #: ../classes/class-wpfront-user-role-editor-options.php:337
1477
  msgid "More details"
1478
  msgstr "More details"
1479
 
1480
+ #: ../classes/class-wpfront-user-role-editor-options.php:341
1481
+ #: ../classes/class-wpfront-user-role-editor-options.php:378
1482
+ #: ../templates/options-template.php:57
1483
  msgid "Display Deprecated Capabilities"
1484
  msgstr "Display Deprecated Capabilities"
1485
 
1486
+ #: ../classes/class-wpfront-user-role-editor-options.php:343
1487
+ #: ../classes/class-wpfront-user-role-editor-options.php:380
1488
  msgid ""
1489
  "If enabled, deprecated capabilities will be displayed within the add/edit "
1490
  "screens."
1492
  "If enabled, deprecated capabilities will be displayed within the add/edit "
1493
  "screens."
1494
 
1495
+ #: ../classes/class-wpfront-user-role-editor-options.php:346
1496
+ #: ../classes/class-wpfront-user-role-editor-options.php:383
1497
+ #: ../templates/options-template.php:65
1498
  msgid "Remove Non-Standard Capabilities on Restore"
1499
  msgstr "Remove Non-Standard Capabilities on Restore"
1500
 
1501
+ #: ../classes/class-wpfront-user-role-editor-options.php:348
1502
+ #: ../classes/class-wpfront-user-role-editor-options.php:385
1503
  msgid ""
1504
  "If enabled, while restoring WordPress built-in capabilities non-standard "
1505
  "capabilities will be removed."
1507
  "If enabled, while restoring WordPress built-in capabilities non-standard "
1508
  "capabilities will be removed."
1509
 
1510
+ #: ../classes/class-wpfront-user-role-editor-options.php:351
1511
+ #: ../classes/class-wpfront-user-role-editor-options.php:388
1512
+ #: ../templates/options-template.php:73
1513
  msgid "Override Edit Permissions"
1514
  msgstr "Override Edit Permissions"
1515
 
1516
+ #: ../classes/class-wpfront-user-role-editor-options.php:353
1517
+ #: ../classes/class-wpfront-user-role-editor-options.php:390
1518
  msgid "If enabled, ignores the check to the function get_editable_roles."
1519
  msgstr "If enabled, ignores the check to the function get_editable_roles."
1520
 
1521
+ #: ../classes/class-wpfront-user-role-editor-options.php:356
1522
+ #: ../classes/class-wpfront-user-role-editor-options.php:393
1523
+ #: ../templates/options-template.php:81
1524
  msgid "Disable Navigation Menu Permissions"
1525
  msgstr "Disable Navigation Menu Permissions"
1526
 
1527
+ #: ../classes/class-wpfront-user-role-editor-options.php:358
1528
+ #: ../classes/class-wpfront-user-role-editor-options.php:395
1529
  msgid "If enabled, disables navigation menu permissions functionality."
1530
  msgstr "If enabled, disables navigation menu permissions functionality."
1531
 
1532
+ #: ../classes/class-wpfront-user-role-editor-options.php:361
1533
+ #: ../classes/class-wpfront-user-role-editor-options.php:398
1534
+ #: ../templates/options-template.php:89
1535
+ msgid "Override Navigation Menu Permissions"
1536
+ msgstr "Override Navigation Menu Permissions"
1537
+
1538
+ #: ../classes/class-wpfront-user-role-editor-options.php:363
1539
+ #: ../classes/class-wpfront-user-role-editor-options.php:400
1540
+ msgid "If enabled, tries to reset navigation menu permissions UI."
1541
+ msgstr "If enabled, tries to reset navigation menu permissions UI."
1542
+
1543
+ #: ../classes/class-wpfront-user-role-editor-options.php:366
1544
+ #: ../classes/class-wpfront-user-role-editor-options.php:403
1545
+ #: ../templates/options-template.php:147
1546
  msgid "Remove Data on Uninstall"
1547
  msgstr "Remove Data on Uninstall"
1548
 
1549
+ #: ../classes/class-wpfront-user-role-editor-options.php:368
1550
+ #: ../classes/class-wpfront-user-role-editor-options.php:405
1551
  msgid ""
1552
  "If enabled, removes all data related to this plugin from database (except "
1553
  "roles data) including license information if any. This will not deactivate "
1557
  "roles data) including license information if any. This will not deactivate "
1558
  "the license automatically."
1559
 
1560
+ #: ../classes/class-wpfront-user-role-editor-options.php:416
1561
  msgid "Documentation on Multisite Settings"
1562
  msgstr "Documentation on Multisite Settings"
1563
 
1564
+ #: ../classes/class-wpfront-user-role-editor-options.php:423
1565
  msgid "Documentation on Settings"
1566
  msgstr "Documentation on Settings"
1567
 
1626
  msgid "Post not found"
1627
  msgstr "Post not found"
1628
 
1629
+ #: ../classes/personal-pro/class-wpfront-user-role-editor-bulk-edit-extended-permissions.php:236
1630
+ #: ../classes/personal-pro/class-wpfront-user-role-editor-bulk-edit-extended-permissions.php:249
1631
+ #: ../classes/personal-pro/class-wpfront-user-role-editor-bulk-edit-extended-permissions.php:253
1632
+ #: ../classes/personal-pro/class-wpfront-user-role-editor-bulk-edit-extended-permissions.php:257
1633
  msgid "Permission denied"
1634
  msgstr "Permission denied"
1635
 
1636
+ #: ../classes/personal-pro/class-wpfront-user-role-editor-bulk-edit-extended-permissions.php:334
1637
  msgid "Step 1: Select the post type you want to bulk edit."
1638
  msgstr "Step 1: Select the post type you want to bulk edit."
1639
 
1640
+ #: ../classes/personal-pro/class-wpfront-user-role-editor-bulk-edit-extended-permissions.php:337
1641
  msgid "Step 2: Select the posts you want to bulk edit."
1642
  msgstr "Step 2: Select the posts you want to bulk edit."
1643
 
1644
+ #: ../classes/personal-pro/class-wpfront-user-role-editor-bulk-edit-extended-permissions.php:340
1645
  #: ../templates/personal-pro/bulk-edit-extended-permissions.php:213
1646
  msgid "Step 3: Select the role permissions."
1647
  msgstr "Step 3: Select the role permissions."
1648
 
1649
+ #: ../classes/personal-pro/class-wpfront-user-role-editor-bulk-edit-extended-permissions.php:343
1650
+ #: ../templates/personal-pro/bulk-edit-extended-permissions.php:292
1651
  msgid "Step 4: Update role permissions."
1652
  msgstr "Step 4: Update role permissions."
1653
 
1654
+ #: ../classes/personal-pro/class-wpfront-user-role-editor-bulk-edit-extended-permissions.php:352
1655
  #: ../classes/personal-pro/class-wpfront-user-role-editor-bulk-edit.php:93
1656
  msgid "Documentation on Bulk Edit"
1657
  msgstr "Documentation on Bulk Edit"
1719
 
1720
  #: ../classes/personal-pro/class-wpfront-user-role-editor-content-shortcodes.php:235
1721
  #: ../classes/personal-pro/class-wpfront-user-role-editor-nav-menu-pro.php:23
1722
+ #: ../classes/personal-pro/class-wpfront-user-role-editor-post-type-permissions.php:122
1723
  #: ../classes/personal-pro/class-wpfront-user-role-editor-widget-permissions-pro.php:35
1724
  msgid "[Guest]"
1725
  msgstr "[Guest]"
1932
  msgid "No editable roles found on this site."
1933
  msgstr "No editable roles found on this site."
1934
 
1935
+ #: ../classes/personal-pro/class-wpfront-user-role-editor-menu-editor.php:614
1936
  msgid ""
1937
  "This screen allows you to enable and disable admin menus for a particular "
1938
  "role."
1940
  "This screen allows you to enable and disable admin menus for a particular "
1941
  "role."
1942
 
1943
+ #: ../classes/personal-pro/class-wpfront-user-role-editor-menu-editor.php:617
1944
  msgid "Deselect a menu from the grid to remove that menu."
1945
  msgstr "Deselect a menu from the grid to remove that menu."
1946
 
1947
+ #: ../classes/personal-pro/class-wpfront-user-role-editor-menu-editor.php:620
1948
  msgid ""
1949
  "Disabled menu items are already hidden, because the selected role doesn't "
1950
  "have the capability to display that menu. Grid displays menus which the "
1954
  "have the capability to display that menu. Grid displays menus which the "
1955
  "current user has access to."
1956
 
1957
+ #: ../classes/personal-pro/class-wpfront-user-role-editor-menu-editor.php:627
1958
  #: ../templates/personal-pro/menu-editor.php:39
1959
  msgid "Override Role"
1960
  msgstr "Override Role"
1961
 
1962
+ #: ../classes/personal-pro/class-wpfront-user-role-editor-menu-editor.php:629
1963
  msgid "The role you want to override."
1964
  msgstr "The role you want to override."
1965
 
1966
+ #: ../classes/personal-pro/class-wpfront-user-role-editor-menu-editor.php:632
1967
  #: ../templates/personal-pro/menu-editor.php:56
1968
  msgid "Override Type"
1969
  msgstr "Override Type"
1970
 
1971
+ #: ../classes/personal-pro/class-wpfront-user-role-editor-menu-editor.php:634
1972
  msgid ""
1973
  "Soft - Pages may be available through directly typing the URL. Hard - Even "
1974
  "URLs will be blocked."
1976
  "Soft - Pages may be available through directly typing the URL. Hard - Even "
1977
  "URLs will be blocked."
1978
 
1979
+ #: ../classes/personal-pro/class-wpfront-user-role-editor-menu-editor.php:637
1980
  #: ../templates/personal-pro/menu-editor.php:67
1981
  msgid "Hide New Menus"
1982
  msgstr "Hide New Menus"
1983
 
1984
+ #: ../classes/personal-pro/class-wpfront-user-role-editor-menu-editor.php:639
1985
  msgid "Allow you to hide future menus."
1986
  msgstr "Allow you to hide future menus."
1987
 
1988
+ #: ../classes/personal-pro/class-wpfront-user-role-editor-menu-editor.php:642
1989
  #: ../templates/personal-pro/menu-editor.php:75
1990
  msgid "Disable For Secondary Role"
1991
  msgstr "Disable For Secondary Role"
1992
 
1993
+ #: ../classes/personal-pro/class-wpfront-user-role-editor-menu-editor.php:644
1994
  msgid "Disables menu settings while the selected role is a secondary role."
1995
  msgstr "Disables menu settings while the selected role is a secondary role."
1996
 
1997
+ #: ../classes/personal-pro/class-wpfront-user-role-editor-menu-editor.php:649
1998
  msgid "Restore Default"
1999
  msgstr "Restore Default"
2000
 
2001
+ #: ../classes/personal-pro/class-wpfront-user-role-editor-menu-editor.php:651
2002
  msgid ""
2003
  "Select \"Restore default\" from the \"Copy from\" drop down and click apply."
2004
  msgstr ""
2005
  "Select \"Restore default\" from the \"Copy from\" drop down and click apply."
2006
 
2007
+ #: ../classes/personal-pro/class-wpfront-user-role-editor-menu-editor.php:660
2008
  msgid "Documentation on Menu Editor"
2009
  msgstr "Documentation on Menu Editor"
2010
 
2051
  msgid "%s license not activated."
2052
  msgstr "%s license not activated."
2053
 
2054
+ #: ../classes/personal-pro/class-wpfront-user-role-editor-post-type-permissions.php:83
2055
+ #: ../classes/personal-pro/class-wpfront-user-role-editor-post-type-permissions.php:377
2056
+ #: ../templates/personal-pro/bulk-edit-extended-permissions.php:221
2057
  msgid "Role Permissions"
2058
  msgstr "Role Permissions"
2059
 
2133
  #: ../templates/business-pro/sync-roles.php:249
2134
  #: ../templates/personal-pro/bulk-edit-extended-permissions.php:55
2135
  #: ../templates/personal-pro/bulk-edit-extended-permissions.php:87
2136
+ #: ../templates/personal-pro/bulk-edit-extended-permissions.php:263
2137
  #: ../templates/personal-pro/bulk-edit.php:35
2138
  msgid "Next Step"
2139
  msgstr "Next Step"
2207
  msgstr "Update new user default role: "
2208
 
2209
  #: ../templates/business-pro/sync-roles.php:348
2210
+ #: ../templates/personal-pro/bulk-edit-extended-permissions.php:337
2211
  msgid "SUCCESS"
2212
  msgstr "SUCCESS"
2213
 
2214
  #: ../templates/business-pro/sync-roles.php:351
2215
+ #: ../templates/personal-pro/bulk-edit-extended-permissions.php:341
2216
  msgid "FAIL"
2217
  msgstr "FAIL"
2218
 
2265
  msgid "Invalid"
2266
  msgstr "Invalid"
2267
 
2268
+ #: ../templates/go-pro.php:104
2269
  msgid "License Expires"
2270
  msgstr "License Expires"
2271
 
2272
+ #: ../templates/go-pro.php:111
2273
+ msgid "Renew"
2274
+ msgstr "Renew"
2275
+
2276
  #: ../templates/list-roles.php:51
2277
  #: ../templates/personal-pro/content-shortcodes.php:13
2278
  #, php-format
2313
  msgstr "Disable Toolbar"
2314
 
2315
  #: ../templates/login-redirect.php:160
2316
+ #: ../templates/personal-pro/bulk-edit-extended-permissions.php:298
2317
  #: ../templates/personal-pro/content-shortcodes-add-edit.php:67
2318
  msgid "Submit"
2319
  msgstr "Submit"
2330
  msgid "WPFront User Role Editor Settings"
2331
  msgstr "WPFront User Role Editor Settings"
2332
 
2333
+ #: ../templates/options-template.php:98
 
 
 
 
 
 
 
 
 
2334
  msgid "Customize Permissions (custom post types)"
2335
  msgstr "Customize Permissions (custom post types)"
2336
 
2337
+ #: ../templates/options-template.php:104
2338
  msgid "No customizable post types found."
2339
  msgstr "No customizable post types found."
2340
 
2341
+ #: ../templates/options-template.php:122
2342
+ msgid "Disable Extended Permissions (post types)"
2343
+ msgstr "Disable Extended Permissions (post types)"
2344
+
2345
  #: ../templates/personal-pro/bulk-edit-extended-permissions.php:29
2346
  msgid "Extended Permissions"
2347
  msgstr "Extended Permissions"
2365
  msgid "Selected %s"
2366
  msgstr "Selected %s"
2367
 
2368
+ #: ../templates/personal-pro/bulk-edit-extended-permissions.php:216
2369
+ msgid "Multiple roles"
2370
+ msgstr "Multiple roles"
2371
+
2372
+ #: ../templates/personal-pro/bulk-edit-extended-permissions.php:231
2373
+ msgid "Single role"
2374
+ msgstr "Single role"
2375
+
2376
+ #: ../templates/personal-pro/bulk-edit-extended-permissions.php:251
2377
+ #: ../templates/personal-pro/post-type-permissions.php:33
2378
+ msgid "Read"
2379
+ msgstr "Read"
2380
+
2381
+ #: ../templates/personal-pro/bulk-edit-extended-permissions.php:295
2382
  #, php-format
2383
  msgid "%d %s selected to update."
2384
  msgstr "%d %s selected to update."
2385
 
2386
+ #: ../templates/personal-pro/bulk-edit-extended-permissions.php:327
2387
  #, php-format
2388
  msgid "Updating %s"
2389
  msgstr "Updating %s"
2497
  msgid "Enable Role Permissions"
2498
  msgstr "Enable Role Permissions"
2499
 
 
 
 
 
2500
  #: ../templates/restore-role.php:55
2501
  msgid "Confirm"
2502
  msgstr "Confirm"
2509
  msgid "Unexpected error / Timed out"
2510
  msgstr "Unexpected error / Timed out"
2511
 
2512
+ #~ msgid ""
2513
+ #~ "This screen allow you to restore WordPress built-in roles to its standard "
2514
+ #~ "capability settings."
2515
+ #~ msgstr ""
2516
+ #~ "This screen allow you to restore WordPress built-in roles to its standard "
2517
+ #~ "capability settings."
2518
+
2519
+ #~ msgid "%s to customize capabilites."
2520
+ #~ msgstr "%s to customize capabilites."
2521
+
2522
+ #~ msgid "Unable to deactivate, expired license?"
2523
+ #~ msgstr "Unable to deactivate, expired license?"
2524
+
2525
  #~ msgid "License key activation limit reached"
2526
  #~ msgstr "License key activation limit reached"
2527
 
readme.txt CHANGED
@@ -3,8 +3,8 @@ 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: 4.3
6
- Tested up to: 4.7
7
- Stable tag: 2.13
8
  License: GPLv3
9
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
10
 
@@ -42,13 +42,8 @@ You can create, edit or delete user roles and manage role capabilities.
42
 
43
  Compare [User Role Editor Pro](https://wpfront.com/ppro)
44
 
45
- Localization Contributors:
46
- <li>[Mauro Mascarenhas](http://nintersoft.ml) (Portuguese) </li>
47
- <li>[Elger Lindgren](http://bilddigital.se) (Swedish) </li>
48
- <li>[Johan Michaelsen](http://www.johanmichaelsen.dk/hjemmeside/) (Danish) </li>
49
-
50
  Spanish tutorial
51
- https://www.youtube.com/watch?v=YRZdWH-uukI
52
 
53
  == Installation ==
54
 
@@ -90,6 +85,13 @@ Please visit [WPFront User Role Editor FAQ](https://wpfront.com/user-role-editor
90
 
91
  == Changelog ==
92
 
 
 
 
 
 
 
 
93
  = 2.13 =
94
  * Bulk edit extended permissions with single role. [Documentation](https://wpfront.com/user-role-editor-pro/bulk-edit/).
95
  * Override navigation menu permission setting. [Documentation](https://wpfront.com/user-role-editor-pro/settings/).
@@ -231,6 +233,9 @@ Please visit [WPFront User Role Editor FAQ](https://wpfront.com/user-role-editor
231
 
232
  == Upgrade Notice ==
233
 
 
 
 
234
  = 2.13 =
235
  * New features and bug fixes.
236
 
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: 4.3
6
+ Tested up to: 4.9
7
+ Stable tag: 2.13.1
8
  License: GPLv3
9
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
10
 
42
 
43
  Compare [User Role Editor Pro](https://wpfront.com/ppro)
44
 
 
 
 
 
 
45
  Spanish tutorial
46
+ [youtube https://www.youtube.com/watch?v=YRZdWH-uukI ]
47
 
48
  == Installation ==
49
 
85
 
86
  == Changelog ==
87
 
88
+ = 2.13.1 =
89
+ * [Important]XSS fixes. Thanks to Burak @ security.nl & DefenseCode WebScanner.
90
+ * Spelling corrections. Thanks to [Eclipse Creative](http://eclipsecreative.ca/).
91
+ * Update fails on some hosts are now resolved.
92
+ * UI improvements.
93
+ * License validation fixes.
94
+
95
  = 2.13 =
96
  * Bulk edit extended permissions with single role. [Documentation](https://wpfront.com/user-role-editor-pro/bulk-edit/).
97
  * Override navigation menu permission setting. [Documentation](https://wpfront.com/user-role-editor-pro/settings/).
233
 
234
  == Upgrade Notice ==
235
 
236
+ = 2.13.1 =
237
+ * This update is highly recommended because of security fixes.
238
+
239
  = 2.13 =
240
  * New features and bug fixes.
241
 
templates/add-edit-role.php CHANGED
@@ -233,8 +233,8 @@ if (!defined('ABSPATH')) {
233
  var data = {
234
  "action": "wpfront_user_role_editor_copy_capabilities",
235
  "role": $(this).prev().val(),
236
- "referer": <?php echo json_encode($_SERVER['REQUEST_URI']); ?>,
237
- "nonce": <?php echo json_encode(wp_create_nonce($_SERVER['REQUEST_URI'])); ?>
238
  };
239
 
240
  data["multisite"] = isMultisite;
233
  var data = {
234
  "action": "wpfront_user_role_editor_copy_capabilities",
235
  "role": $(this).prev().val(),
236
+ "referer": <?php echo json_encode(esc_html($_SERVER['REQUEST_URI'])); ?>,
237
+ "nonce": <?php echo json_encode(wp_create_nonce(esc_html($_SERVER['REQUEST_URI']))); ?>
238
  };
239
 
240
  data["multisite"] = isMultisite;
templates/options-template.php CHANGED
@@ -154,7 +154,7 @@ $this->main->menu_walker_override_warning();
154
  </table>
155
 
156
  <input type="hidden" name="nonce" value="<?php echo wp_create_nonce($_SERVER['REQUEST_URI']); ?>" />
157
- <input type="hidden" name="referer" value="<?php echo $_SERVER['REQUEST_URI']; ?>" />
158
 
159
  <?php if ($this->multisite) {
160
  ?>
154
  </table>
155
 
156
  <input type="hidden" name="nonce" value="<?php echo wp_create_nonce($_SERVER['REQUEST_URI']); ?>" />
157
+ <input type="hidden" name="referer" value="<?php echo esc_html($_SERVER['REQUEST_URI']); ?>" />
158
 
159
  <?php if ($this->multisite) {
160
  ?>
templates/restore-role.php CHANGED
@@ -90,8 +90,8 @@ if (!defined('ABSPATH')) {
90
  var data = {
91
  "action": "wpfront_user_role_editor_restore_role",
92
  "role": $(this).val(),
93
- "referer": <?php echo json_encode($_SERVER['REQUEST_URI']); ?>,
94
- "nonce": <?php echo json_encode(wp_create_nonce($_SERVER['REQUEST_URI'])); ?>
95
  };
96
 
97
  <?php
90
  var data = {
91
  "action": "wpfront_user_role_editor_restore_role",
92
  "role": $(this).val(),
93
+ "referer": <?php echo json_encode(esc_html($_SERVER['REQUEST_URI'])); ?>,
94
+ "nonce": <?php echo json_encode(wp_create_nonce(esc_html($_SERVER['REQUEST_URI']))); ?>
95
  };
96
 
97
  <?php
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.13
8
  * Author: Syam Mohan
9
  * Author URI: http://wpfront.com
10
  * License: GPL v3
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.13.1
8
  * Author: Syam Mohan
9
  * Author URI: http://wpfront.com
10
  * License: GPL v3