WPFront User Role Editor - Version 2.13

Version Description

  • Bulk edit extended permissions with single role. Documentation.
  • Override navigation menu permission setting. Documentation.
  • Disable extended permission setting. Documentation.
  • Widget permission bug fix.
  • Navigation menu permission bug fix.
  • Admin menu editor bug fix.
  • WP 4.6 compatibility fix.
  • PHP 7 compatibility.
Download this release

Release Info

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

Code changes from version 2.12.4 to 2.13

classes/class-wpfront-user-role-editor-go-pro.php CHANGED
@@ -203,6 +203,8 @@ if (!class_exists('WPFront_User_Role_Editor_Go_Pro')) {
203
  private function activate_license($license) {
204
  if ($this->license_key_k === NULL)
205
  return;
 
 
206
 
207
  $this->license_key = $license;
208
 
@@ -222,6 +224,7 @@ if (!class_exists('WPFront_User_Role_Editor_Go_Pro')) {
222
  $entity->update_option($this->license_key_k . '-status', $result->license === 'valid' ? 'valid' : 'expired');
223
  $entity->update_option($this->license_key_k . '-expires', $result->expires);
224
  $entity->update_option($this->license_key_k . '-last-checked', 0);
 
225
 
226
  $this->send_mail('activate', $result, 'user');
227
  $this->set_license();
203
  private function activate_license($license) {
204
  if ($this->license_key_k === NULL)
205
  return;
206
+
207
+ $license = trim($license);
208
 
209
  $this->license_key = $license;
210
 
224
  $entity->update_option($this->license_key_k . '-status', $result->license === 'valid' ? 'valid' : 'expired');
225
  $entity->update_option($this->license_key_k . '-expires', $result->expires);
226
  $entity->update_option($this->license_key_k . '-last-checked', 0);
227
+ $entity->update_option($this->license_key_k . '-invalid-count', 0);
228
 
229
  $this->send_mail('activate', $result, 'user');
230
  $this->set_license();
classes/class-wpfront-user-role-editor-nav-menu-walker.php CHANGED
@@ -141,7 +141,7 @@ if (!class_exists('WPFront_User_Role_Editor_Nav_Menu_Walker')) {
141
  </div>
142
  </div>
143
 
144
- <div class="menu-item-settings" id="menu-item-settings-<?php echo $item_id; ?>">
145
  <?php if ( 'custom' == $item->type ) : ?>
146
  <p class="field-url description description-wide">
147
  <label for="edit-menu-item-url-<?php echo $item_id; ?>">
141
  </div>
142
  </div>
143
 
144
+ <div class="menu-item-settings wp-clearfix" id="menu-item-settings-<?php echo $item_id; ?>">
145
  <?php if ( 'custom' == $item->type ) : ?>
146
  <p class="field-url description description-wide">
147
  <label for="edit-menu-item-url-<?php echo $item_id; ?>">
classes/class-wpfront-user-role-editor-nav-menu.php CHANGED
@@ -59,22 +59,44 @@ if (!class_exists('WPFront_User_Role_Editor_Nav_Menu')) {
59
 
60
  add_action('admin_print_scripts-nav-menus.php', array($this, 'enqueue_menu_scripts'));
61
  add_action('admin_print_styles-nav-menus.php', array($this, 'enqueue_menu_styles'));
 
62
  }
63
 
64
- public static function nav_menu_help_url() {
65
  return 'https://wpfront.com/user-role-editor-pro/navigation-menu-permissions/';
66
  }
67
 
68
  public function wp_init() {
69
- add_filter('wp_edit_nav_menu_walker', array($this, 'override_edit_nav_menu_walker'), 9999);
 
 
 
 
70
  }
71
 
72
- public static function override_edit_nav_menu_walker($current = 'Walker_Nav_Menu_Edit') {
73
- if ($current !== 'Walker_Nav_Menu_Edit')
74
  return $current;
75
 
76
  return 'WPFront_User_Role_Editor_Nav_Menu_Walker';
77
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
78
 
79
  public function menu_item_title_user_restriction_type($item_id, $item, $depth, $args) {
80
  if (!current_user_can('edit_nav_menu_permissions'))
59
 
60
  add_action('admin_print_scripts-nav-menus.php', array($this, 'enqueue_menu_scripts'));
61
  add_action('admin_print_styles-nav-menus.php', array($this, 'enqueue_menu_styles'));
62
+ add_action('load-nav-menus.php', array($this, 'menu_walker_override_notice_action'));
63
  }
64
 
65
+ public function nav_menu_help_url() {
66
  return 'https://wpfront.com/user-role-editor-pro/navigation-menu-permissions/';
67
  }
68
 
69
  public function wp_init() {
70
+ add_filter('wp_edit_nav_menu_walker', array($this, 'override_edit_nav_menu_walker'), 999999);
71
+ }
72
+
73
+ public function menu_walker_override_notice_action() {
74
+ add_action('admin_notices', array($this, 'menu_walker_override_warning'));
75
  }
76
 
77
+ public function override_edit_nav_menu_walker($current = 'Walker_Nav_Menu_Edit') {
78
+ if ($current !== 'Walker_Nav_Menu_Edit' && !$this->main->override_navigation_menu_permissions())
79
  return $current;
80
 
81
  return 'WPFront_User_Role_Editor_Nav_Menu_Walker';
82
  }
83
+
84
+ public function menu_walker_override_warning() {
85
+ if ($this->main->disable_navigation_menu_permissions() === FALSE) {
86
+ $menu_walker = apply_filters('wp_edit_nav_menu_walker', 'Walker_Nav_Menu_Edit', 0);
87
+ if ($menu_walker !== $this->override_edit_nav_menu_walker()) {
88
+ printf(
89
+ '<div class="notice notice-error is-dismissible"><p>%s</p></div>',
90
+ sprintf(
91
+ $this->__('Menu walker class is overriden by a theme/plugin. Current value = %s. Navigation menu permissions may still work. %s'),
92
+ $menu_walker,
93
+ '<a target="_blank" href="' . $this->nav_menu_help_url() . '#navigation-menu-permission-warning">' . $this->__('More information') . '</a>'
94
+ )
95
+ );
96
+
97
+ }
98
+ }
99
+ }
100
 
101
  public function menu_item_title_user_restriction_type($item_id, $item, $depth, $args) {
102
  if (!current_user_can('edit_nav_menu_permissions'))
classes/class-wpfront-user-role-editor-options.php CHANGED
@@ -62,6 +62,19 @@ if (!class_exists('WPFront_User_Role_Editor_Options')) {
62
 
63
  return $post_types;
64
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
65
 
66
  public function update_options_callback() {
67
  check_ajax_referer($_POST['referer'], 'nonce');
@@ -73,6 +86,7 @@ if (!class_exists('WPFront_User_Role_Editor_Options')) {
73
  $this->update_option_boolean('remove_nonstandard_capabilities_restore');
74
  $this->update_option_boolean('override_edit_permissions');
75
  $this->update_option_boolean('disable_navigation_menu_permissions');
 
76
 
77
  if ($this->multisite && wp_is_large_network()) {
78
  $this->update_option_boolean('enable_large_network_functionalities');
@@ -99,6 +113,24 @@ if (!class_exists('WPFront_User_Role_Editor_Options')) {
99
  $this->update_option('customize_permission_custom_post_types', implode(',', $post_type_values));
100
  }
101
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
102
 
103
  if ($this->multisite)
104
  echo network_admin_url('admin.php?page=' . self::MENU_SLUG . '&settings-updated=true');
@@ -209,6 +241,13 @@ if (!class_exists('WPFront_User_Role_Editor_Options')) {
209
 
210
  return $this->get_boolean_option('disable_navigation_menu_permissions');
211
  }
 
 
 
 
 
 
 
212
 
213
  public function remove_data_on_uninstall() {
214
  if ($this->multisite)
@@ -224,6 +263,14 @@ if (!class_exists('WPFront_User_Role_Editor_Options')) {
224
 
225
  return explode(',', $value);
226
  }
 
 
 
 
 
 
 
 
227
 
228
  public static function get_ms_options_blog_id() {
229
  if (!is_multisite()) {
@@ -260,6 +307,10 @@ if (!class_exists('WPFront_User_Role_Editor_Options')) {
260
  public function ms_disable_navigation_menu_permissions() {
261
  return $this->get_boolean_option('disable_navigation_menu_permissions', TRUE);
262
  }
 
 
 
 
263
 
264
  public function ms_remove_data_on_uninstall() {
265
  return $this->get_boolean_option('remove_data_on_uninstall', TRUE);
@@ -307,6 +358,11 @@ if (!class_exists('WPFront_User_Role_Editor_Options')) {
307
  . $this->__('If enabled, disables navigation menu permissions functionality.')
308
  . '</p>'
309
  . '<p><strong>'
 
 
 
 
 
310
  . $this->__('Remove Data on Uninstall')
311
  . '</strong>: '
312
  . $this->__('If enabled, removes all data related to this plugin from database (except roles data) including license information if any. This will not deactivate the license automatically.')
@@ -339,6 +395,11 @@ if (!class_exists('WPFront_User_Role_Editor_Options')) {
339
  . $this->__('If enabled, disables navigation menu permissions functionality.')
340
  . '</p>'
341
  . '<p><strong>'
 
 
 
 
 
342
  . $this->__('Remove Data on Uninstall')
343
  . '</strong>: '
344
  . $this->__('If enabled, removes all data related to this plugin from database (except roles data) including license information if any. This will not deactivate the license automatically.')
62
 
63
  return $post_types;
64
  }
65
+
66
+ private function get_extendable_post_types() {
67
+ $types = $this->main->get_extendable_post_types();
68
+ $post_types = get_post_types(NULL, 'objects');
69
+ $disable = $this->disable_extended_permission_post_types();
70
+
71
+ $names = array();
72
+ foreach ($types as $value) {
73
+ $names[$value] = (OBJECT) array('label' => $post_types[$value]->label, 'enabled' => in_array($value, $disable));
74
+ }
75
+
76
+ return $names;
77
+ }
78
 
79
  public function update_options_callback() {
80
  check_ajax_referer($_POST['referer'], 'nonce');
86
  $this->update_option_boolean('remove_nonstandard_capabilities_restore');
87
  $this->update_option_boolean('override_edit_permissions');
88
  $this->update_option_boolean('disable_navigation_menu_permissions');
89
+ $this->update_option_boolean('override_navigation_menu_permissions');
90
 
91
  if ($this->multisite && wp_is_large_network()) {
92
  $this->update_option_boolean('enable_large_network_functionalities');
113
  $this->update_option('customize_permission_custom_post_types', implode(',', $post_type_values));
114
  }
115
  }
116
+
117
+ if (isset($_POST['extendable-post-types'])) {
118
+ $extendable_post_types = $_POST['extendable-post-types'];
119
+ if (is_array($extendable_post_types)) {
120
+ $post_type_values = $this->disable_extended_permission_post_types();
121
+ foreach ($extendable_post_types as $key => $value) {
122
+ if ($value === 'true') {
123
+ if (!in_array($key, $post_type_values))
124
+ $post_type_values[] = $key;
125
+ } else {
126
+ if (in_array($key, $post_type_values))
127
+ $post_type_values = array_diff($post_type_values, array($key));
128
+ }
129
+ }
130
+
131
+ $this->update_option('disable_extended_permission_post_types', implode(',', $post_type_values));
132
+ }
133
+ }
134
 
135
  if ($this->multisite)
136
  echo network_admin_url('admin.php?page=' . self::MENU_SLUG . '&settings-updated=true');
241
 
242
  return $this->get_boolean_option('disable_navigation_menu_permissions');
243
  }
244
+
245
+ public function override_navigation_menu_permissions() {
246
+ if ($this->multisite)
247
+ return $this->ms_override_navigation_menu_permissions();
248
+
249
+ return $this->get_boolean_option('override_navigation_menu_permissions');
250
+ }
251
 
252
  public function remove_data_on_uninstall() {
253
  if ($this->multisite)
263
 
264
  return explode(',', $value);
265
  }
266
+
267
+ public function disable_extended_permission_post_types() {
268
+ $value = $this->get_option('disable_extended_permission_post_types');
269
+ if ($value === NULL || $value === '')
270
+ return array();
271
+
272
+ return explode(',', $value);
273
+ }
274
 
275
  public static function get_ms_options_blog_id() {
276
  if (!is_multisite()) {
307
  public function ms_disable_navigation_menu_permissions() {
308
  return $this->get_boolean_option('disable_navigation_menu_permissions', TRUE);
309
  }
310
+
311
+ public function ms_override_navigation_menu_permissions() {
312
+ return $this->get_boolean_option('override_navigation_menu_permissions', TRUE);
313
+ }
314
 
315
  public function ms_remove_data_on_uninstall() {
316
  return $this->get_boolean_option('remove_data_on_uninstall', TRUE);
358
  . $this->__('If enabled, disables navigation menu permissions functionality.')
359
  . '</p>'
360
  . '<p><strong>'
361
+ . $this->__('Override Navigation Menu Permissions')
362
+ . '</strong>: '
363
+ . $this->__('If enabled, tries to reset navigation menu permissions UI.')
364
+ . '</p>'
365
+ . '<p><strong>'
366
  . $this->__('Remove Data on Uninstall')
367
  . '</strong>: '
368
  . $this->__('If enabled, removes all data related to this plugin from database (except roles data) including license information if any. This will not deactivate the license automatically.')
395
  . $this->__('If enabled, disables navigation menu permissions functionality.')
396
  . '</p>'
397
  . '<p><strong>'
398
+ . $this->__('Override Navigation Menu Permissions')
399
+ . '</strong>: '
400
+ . $this->__('If enabled, tries to reset navigation menu permissions UI.')
401
+ . '</p>'
402
+ . '<p><strong>'
403
  . $this->__('Remove Data on Uninstall')
404
  . '</strong>: '
405
  . $this->__('If enabled, removes all data related to this plugin from database (except roles data) including license information if any. This will not deactivate the license automatically.')
classes/class-wpfront-user-role-editor-widget-permissions.php CHANGED
@@ -101,7 +101,10 @@ if (!class_exists('WPFront_User_Role_Editor_Widget_Permissions')) {
101
 
102
  public function widget_update_callback($instance, $new_instance, $old_instance, $widget) {
103
  if (!current_user_can('edit_widget_permissions')) {
104
- $instance[self::$META_DATA_KEY] = $old_instance[self::$META_DATA_KEY];
 
 
 
105
  return $instance;
106
  }
107
 
101
 
102
  public function widget_update_callback($instance, $new_instance, $old_instance, $widget) {
103
  if (!current_user_can('edit_widget_permissions')) {
104
+ if (empty($old_instance[self::$META_DATA_KEY]))
105
+ $instance[self::$META_DATA_KEY] = (OBJECT) array('type' => self::$ALL_USERS);
106
+ else
107
+ $instance[self::$META_DATA_KEY] = $old_instance[self::$META_DATA_KEY];
108
  return $instance;
109
  }
110
 
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.12.4';
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';
@@ -588,10 +588,18 @@ if (!class_exists('WPFront_User_Role_Editor')) {
588
  public function disable_navigation_menu_permissions() {
589
  return $this->options->disable_navigation_menu_permissions();
590
  }
 
 
 
 
591
 
592
  public function customize_permission_custom_post_types() {
593
  return $this->options->customize_permission_custom_post_types();
594
  }
 
 
 
 
595
 
596
  public function enable_multisite_only_options($multisite) {
597
  return TRUE;
@@ -616,6 +624,14 @@ if (!class_exists('WPFront_User_Role_Editor')) {
616
 
617
  return $all_roles;
618
  }
 
 
 
 
 
 
 
 
619
 
620
  private function rename_role_capabilities() {
621
  global $wp_roles;
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';
588
  public function disable_navigation_menu_permissions() {
589
  return $this->options->disable_navigation_menu_permissions();
590
  }
591
+
592
+ public function override_navigation_menu_permissions() {
593
+ return $this->options->override_navigation_menu_permissions();
594
+ }
595
 
596
  public function customize_permission_custom_post_types() {
597
  return $this->options->customize_permission_custom_post_types();
598
  }
599
+
600
+ public function disable_extended_permission_post_types() {
601
+ return $this->options->disable_extended_permission_post_types();
602
+ }
603
 
604
  public function enable_multisite_only_options($multisite) {
605
  return TRUE;
624
 
625
  return $all_roles;
626
  }
627
+
628
+ public function menu_walker_override_warning() {
629
+ $this->objNavMenu->menu_walker_override_warning();
630
+ }
631
+
632
+ public function get_extendable_post_types() {
633
+ return array();
634
+ }
635
 
636
  private function rename_role_capabilities() {
637
  global $wp_roles;
languages/wpfront-user-role-editor-da_DK.mo ADDED
Binary file
languages/wpfront-user-role-editor-da_DK/index.php ADDED
@@ -0,0 +1,2 @@
 
 
1
+ <?php
2
+ // Silence is golden.
languages/wpfront-user-role-editor-da_DK/readme.txt ADDED
@@ -0,0 +1 @@
 
1
+ Contributor: Johan Michaelsen <johanmichaelsen.dk>
languages/wpfront-user-role-editor-da_DK/wpfront-user-role-editor-da_DK.mo ADDED
Binary file
languages/wpfront-user-role-editor-da_DK/wpfront-user-role-editor-da_DK.po ADDED
@@ -0,0 +1,2712 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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"
readme.txt CHANGED
@@ -2,9 +2,9 @@
2
  Contributors: syammohanm
3
  Donate link: https://wpfront.com/donate/
4
  Tags: WordPress user role editor, user role editor, role editor, user role, role, WordPress user roles, user roles, roles, user roles editor, roles editor, role manager, roles manager, manage roles, manage role, access, capability, editor, permission, role, security, user, capability editor, capability manager, custom post types, custom post type permissions, custom post type capabilities, post type permissions, post type capabilities, menu editor, role menu, role menu editor, multisite roles, multisite role editor, multisite user roles, import roles, export roles
5
- Requires at least: 3.5
6
- Tested up to: 4.6
7
- Stable tag: 2.12.4
8
  License: GPLv3
9
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
10
 
@@ -45,6 +45,7 @@ Compare [User Role Editor Pro](https://wpfront.com/ppro)
45
  Localization Contributors:
46
  <li>[Mauro Mascarenhas](http://nintersoft.ml) (Portuguese) </li>
47
  <li>[Elger Lindgren](http://bilddigital.se) (Swedish) </li>
 
48
 
49
  Spanish tutorial
50
  https://www.youtube.com/watch?v=YRZdWH-uukI
@@ -89,6 +90,20 @@ Please visit [WPFront User Role Editor FAQ](https://wpfront.com/user-role-editor
89
 
90
  == Changelog ==
91
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
92
  = 2.12.4 =
93
  * Plugin conflict fix.
94
 
@@ -216,6 +231,12 @@ Please visit [WPFront User Role Editor FAQ](https://wpfront.com/user-role-editor
216
 
217
  == Upgrade Notice ==
218
 
 
 
 
 
 
 
219
  = 2.12.4 =
220
  * Plugin conflict fix.
221
 
2
  Contributors: syammohanm
3
  Donate link: https://wpfront.com/donate/
4
  Tags: WordPress user role editor, user role editor, role editor, user role, role, WordPress user roles, user roles, roles, user roles editor, roles editor, role manager, roles manager, manage roles, manage role, access, capability, editor, permission, role, security, user, capability editor, capability manager, custom post types, custom post type permissions, custom post type capabilities, post type permissions, post type capabilities, menu editor, role menu, role menu editor, multisite roles, multisite role editor, multisite user roles, import roles, export roles
5
+ Requires at least: 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
 
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
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/).
96
+ * Disable extended permission setting. [Documentation](https://wpfront.com/user-role-editor-pro/settings/).
97
+ * Widget permission bug fix.
98
+ * Navigation menu permission bug fix.
99
+ * Admin menu editor bug fix.
100
+ * WP 4.6 compatibility fix.
101
+ * PHP 7 compatibility.
102
+
103
+ = 2.12.5 =
104
+ * Bug fixes.
105
+ * Danish translation.
106
+
107
  = 2.12.4 =
108
  * Plugin conflict fix.
109
 
231
 
232
  == Upgrade Notice ==
233
 
234
+ = 2.13 =
235
+ * New features and bug fixes.
236
+
237
+ = 2.12.5 =
238
+ * Bug fixes.
239
+
240
  = 2.12.4 =
241
  * Plugin conflict fix.
242
 
templates/go-pro-table CHANGED
@@ -220,7 +220,6 @@
220
  </a>
221
  </div>
222
  </div>
223
- <img src="https://wpfront.com/uret" style="width:1px;height:1px;" />
224
  </div>
225
 
226
 
220
  </a>
221
  </div>
222
  </div>
 
223
  </div>
224
 
225
 
templates/options-template.php CHANGED
@@ -35,21 +35,8 @@ if (!defined('ABSPATH')) {
35
  }
36
 
37
  @$this->main->options_page_header($this->__('WPFront User Role Editor Settings'));
38
- ?>
39
 
40
- <?php
41
- if ($this->disable_navigation_menu_permissions() === FALSE) {
42
- $menu_walker = apply_filters('wp_edit_nav_menu_walker', 'Walker_Nav_Menu_Edit', 0);
43
- if ($menu_walker !== WPFront_User_Role_Editor_Nav_Menu::override_edit_nav_menu_walker()) {
44
- ?>
45
- <div class="error below-h2">
46
- <p>
47
- <?php echo sprintf($this->__('Menu walker class is overriden by a theme/plugin. Current value = %s. Navigation menu permissions may still work. %s'), $menu_walker, '<a target="_blank" href="' . WPFront_User_Role_Editor_Nav_Menu::nav_menu_help_url() . '#navigation-menu-permission-warning">' . $this->__('More information') . '</a>'); ?>
48
- </p>
49
- </div>
50
- <?php
51
- }
52
- }
53
  ?>
54
 
55
  <table class="form-table">
@@ -97,6 +84,14 @@ if ($this->disable_navigation_menu_permissions() === FALSE) {
97
  <input type="checkbox" name="disable_navigation_menu_permissions" <?php echo $this->disable_navigation_menu_permissions() ? 'checked' : ''; ?> />
98
  </td>
99
  </tr>
 
 
 
 
 
 
 
 
100
  <?php if ($this->main->enable_pro_only_options() && !$this->multisite) { ?>
101
  <tr>
102
  <th scope="row">
@@ -122,6 +117,27 @@ if ($this->disable_navigation_menu_permissions() === FALSE) {
122
  ?>
123
  </td>
124
  </tr>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
125
  <?php
126
  }
127
  if ($this->main->enable_multisite_only_options($this->multisite)) {
@@ -158,7 +174,7 @@ if ($this->disable_navigation_menu_permissions() === FALSE) {
158
  fields.each(function (i, e) {
159
  var ele = $(e);
160
  if (ele.attr("type") == "checkbox") {
161
- if (ele.attr("name") == "custom-post-types") {
162
  data[ele.attr("name") + "[" + ele.val() + "]"] = ele.prop("checked");
163
  }
164
  else {
35
  }
36
 
37
  @$this->main->options_page_header($this->__('WPFront User Role Editor Settings'));
 
38
 
39
+ $this->main->menu_walker_override_warning();
 
 
 
 
 
 
 
 
 
 
 
 
40
  ?>
41
 
42
  <table class="form-table">
84
  <input type="checkbox" name="disable_navigation_menu_permissions" <?php echo $this->disable_navigation_menu_permissions() ? 'checked' : ''; ?> />
85
  </td>
86
  </tr>
87
+ <tr>
88
+ <th scope="row">
89
+ <?php echo $this->__('Override Navigation Menu Permissions'); ?>
90
+ </th>
91
+ <td>
92
+ <input type="checkbox" name="override_navigation_menu_permissions" <?php echo $this->override_navigation_menu_permissions() ? 'checked' : ''; ?> />
93
+ </td>
94
+ </tr>
95
  <?php if ($this->main->enable_pro_only_options() && !$this->multisite) { ?>
96
  <tr>
97
  <th scope="row">
117
  ?>
118
  </td>
119
  </tr>
120
+ <tr>
121
+ <th scope="row">
122
+ <?php echo $this->__('Disable Extended Permissions (post types)'); ?>
123
+ </th>
124
+ <td>
125
+ <?php
126
+ $post_types = $this->get_extendable_post_types();
127
+
128
+ foreach ($post_types as $key => $value) {
129
+ ?>
130
+ <div class="options-list">
131
+ <label>
132
+ <input name="extendable-post-types" type="checkbox" value="<?php echo $key; ?>" <?php echo $value->enabled ? 'checked' : ''; ?> />
133
+ <?php echo $this->__($value->label); ?>
134
+ </label>
135
+ </div>
136
+ <?php
137
+ }
138
+ ?>
139
+ </td>
140
+ </tr>
141
  <?php
142
  }
143
  if ($this->main->enable_multisite_only_options($this->multisite)) {
174
  fields.each(function (i, e) {
175
  var ele = $(e);
176
  if (ele.attr("type") == "checkbox") {
177
+ if (ele.attr("name") == "custom-post-types" || ele.attr("name") == "extendable-post-types") {
178
  data[ele.attr("name") + "[" + ele.val() + "]"] = ele.prop("checked");
179
  }
180
  else {
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.12.4
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
8
  * Author: Syam Mohan
9
  * Author URI: http://wpfront.com
10
  * License: GPL v3