White Label CMS - Version 2.1

Version Description

  • Support Internationalization
  • Added a body class to differentiate WLCMS Admin or not, by adding body.not-wlcms-admin or and body.wlcms-admin
  • Minor fixes
Download this release

Release Info

Developer VideoUserManuals
Plugin Icon 128x128 White Label CMS
Version 2.1
Comparing to
See all releases

Code changes from version 2.0.2.2 to 2.1

Files changed (46) hide show
  1. assets/css/admin.css.map +0 -1
  2. includes/Functions.php +2 -2
  3. includes/classes/Admin_Core.php +2 -2
  4. includes/classes/Admin_Dashboard.php +22 -1
  5. includes/classes/Admin_Script.php +6 -5
  6. includes/classes/Branding.php +28 -25
  7. includes/classes/I18n.php +12 -2
  8. languages/white-label-cms-fr_FR.mo +0 -0
  9. languages/white-label-cms-fr_FR.po +11359 -0
  10. languages/white-label-cms.pot +933 -0
  11. readme.txt +6 -1
  12. view/admin/parts/branding-admin-bar.php +7 -7
  13. view/admin/parts/branding-developer.php +8 -8
  14. view/admin/parts/branding-footer.php +7 -7
  15. view/admin/parts/branding-side-menu.php +6 -6
  16. view/admin/parts/branding-wordpress.php +6 -6
  17. view/admin/parts/branding.php +4 -4
  18. view/admin/parts/dashboard-custom-welcome-dashboard-panel.php +21 -22
  19. view/admin/parts/dashboard-default-panels.php +13 -13
  20. view/admin/parts/dashboard-rss-dashboard-panel.php +11 -12
  21. view/admin/parts/dashboard.php +3 -3
  22. view/admin/parts/import-settings.php +2 -2
  23. view/admin/parts/live-preview.php +1 -1
  24. view/admin/parts/login-advanced.php +25 -25
  25. view/admin/parts/login-custom-css.php +4 -4
  26. view/admin/parts/login-live-preview.php +1 -1
  27. view/admin/parts/login-logo-and-background.php +18 -18
  28. view/admin/parts/login.php +3 -3
  29. view/admin/parts/menus-admin-bar-menus.php +1 -1
  30. view/admin/parts/menus-legacy.php +5 -5
  31. view/admin/parts/menus-menus.php +4 -4
  32. view/admin/parts/menus-white-label-cms-admin.php +5 -5
  33. view/admin/parts/menus.php +3 -3
  34. view/admin/parts/settings-admin-bar-setting.php +1 -1
  35. view/admin/parts/settings-admin-settings.php +4 -4
  36. view/admin/parts/settings-custom-css-for-admin.php +1 -1
  37. view/admin/parts/settings-custom-editor-stylesheet.php +2 -2
  38. view/admin/parts/settings-hide-page-meta-boxes.php +1 -1
  39. view/admin/parts/settings-hide-post-meta-boxes.php +1 -1
  40. view/admin/parts/settings-nag-messages.php +1 -1
  41. view/admin/parts/settings.php +5 -5
  42. view/admin/parts/wizard-step-1.php +10 -10
  43. view/admin/parts/wizard-step-2.php +5 -5
  44. view/admin/settings.php +3 -3
  45. view/admin/wizard.php +7 -7
  46. wlcms-plugin.php +5 -2
assets/css/admin.css.map DELETED
@@ -1 +0,0 @@
1
- {"version":3,"file":"css/admin.css","sources":[],"mappings":"","sourceRoot":""}
 
includes/Functions.php CHANGED
@@ -210,7 +210,7 @@ if (!function_exists('wlcms_form_upload_field')) {
210
  */
211
  function wlcms_form_upload_field($label = '', $key = '', $help = '')
212
  {
213
- $html = '<label>' . __($label, 'wlcms') . '</label>
214
  <div class="wlcms-upload-thumbnail">';
215
 
216
  $key_setting = wlcms_field_setting($key);
@@ -223,7 +223,7 @@ if (!function_exists('wlcms_form_upload_field')) {
223
  <input type="text" name="' . $key . '" class="wlcms-upload-input" value="' . $key_setting . '" />
224
  <a href="#" class="wlcms_upload">Upload</a>
225
  </div>
226
- <div class="wlcms-help">' . __($help, 'wlcms') . '</div>';
227
 
228
  return $html;
229
 
210
  */
211
  function wlcms_form_upload_field($label = '', $key = '', $help = '')
212
  {
213
+ $html = '<label>' . $label . '</label>
214
  <div class="wlcms-upload-thumbnail">';
215
 
216
  $key_setting = wlcms_field_setting($key);
223
  <input type="text" name="' . $key . '" class="wlcms-upload-input" value="' . $key_setting . '" />
224
  <a href="#" class="wlcms_upload">Upload</a>
225
  </div>
226
+ <div class="wlcms-help">' . $help . '</div>';
227
 
228
  return $html;
229
 
includes/classes/Admin_Core.php CHANGED
@@ -16,8 +16,8 @@ class WLCMS_Admin_Core
16
  public function add_option_menu()
17
  {
18
  $page = add_options_page(
19
- __('White Label CMS', 'wlcms'), // Page title
20
- __('White Label CMS', 'wlcms'), // Menu name
21
  'manage_options', // Permissions
22
  'wlcms-plugin.php', // Menu slug
23
  array($this, 'view') // Function callback
16
  public function add_option_menu()
17
  {
18
  $page = add_options_page(
19
+ __('White Label CMS', 'white-label-cms'), // Page title
20
+ __('White Label CMS', 'white-label-cms'), // Menu name
21
  'manage_options', // Permissions
22
  'wlcms-plugin.php', // Menu slug
23
  array($this, 'view') // Function callback
includes/classes/Admin_Dashboard.php CHANGED
@@ -20,10 +20,12 @@ class WLCMS_Admin_Dashboard extends WLCMS_Previewable
20
 
21
  public function dashboard_setup()
22
  {
 
23
  $this->add_own_rss_panel();
24
  $this->dashboard_title();
25
  $this->set_welcome_metabox();
26
-
 
27
  //Old version setting 2.0.2
28
  if (!wlcms_field_setting('dashboard_role_stat')) {
29
  if (is_wlcms_admin()) return;
@@ -38,6 +40,25 @@ class WLCMS_Admin_Dashboard extends WLCMS_Previewable
38
  $this->remove_dashed_border();
39
  }
40
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
41
  private function set_dashboard_all_hidden()
42
  {
43
  $this->is_dashboard_all_hidden = $this->get_settings('hide_all_dashboard_panels');
20
 
21
  public function dashboard_setup()
22
  {
23
+ $this->reset_dashboard_style();
24
  $this->add_own_rss_panel();
25
  $this->dashboard_title();
26
  $this->set_welcome_metabox();
27
+
28
+
29
  //Old version setting 2.0.2
30
  if (!wlcms_field_setting('dashboard_role_stat')) {
31
  if (is_wlcms_admin()) return;
40
  $this->remove_dashed_border();
41
  }
42
 
43
+ private function reset_dashboard_style() {
44
+
45
+ wlcms_set_css('.wlcms-welcome-panel-content p,
46
+ .wlcms-welcome-panel-content div,
47
+ .wlcms-welcome-panel-content h1,
48
+ .wlcms-welcome-panel-content h2,
49
+ .wlcms-welcome-panel-content h3
50
+ .wlcms-welcome-panel-content h4
51
+ .wlcms-welcome-panel-content h5',
52
+ array('margin' => '0',
53
+ 'padding' => '0',
54
+ 'border' => '0',
55
+ 'font-size' => '100%',
56
+ 'font' => 'inherit',
57
+ 'line-height' => 'inherit',
58
+ 'vertical-align' => 'baseline',
59
+ 'color' => 'inherit'));
60
+ }
61
+
62
  private function set_dashboard_all_hidden()
63
  {
64
  $this->is_dashboard_all_hidden = $this->get_settings('hide_all_dashboard_panels');
includes/classes/Admin_Script.php CHANGED
@@ -11,12 +11,13 @@ class WLCMS_Admin_Script
11
 
12
  public function __construct()
13
  {
14
- add_action('admin_footer', array($this, 'admin_footer'));
15
- add_action('wp_footer', array($this, 'admin_footer'), 99999);
16
- add_action('in_admin_header', array($this, 'admin_css'), 99999);
 
17
  }
18
 
19
- public function admin_css()
20
  {
21
 
22
  // no need to append scripts for guest users
@@ -32,7 +33,7 @@ class WLCMS_Admin_Script
32
 
33
  }
34
 
35
- public function admin_footer()
36
  {
37
  $scripts = '';
38
 
11
 
12
  public function __construct()
13
  {
14
+ add_action('admin_footer', array($this, 'footer_script'));
15
+ add_action('wp_footer', array($this, 'footer_script'), 99999);
16
+ add_action('in_admin_header', array($this, 'header_css'), 99999);
17
+ add_action('wp_head', array($this, 'header_css'), 99999);
18
  }
19
 
20
+ public function header_css()
21
  {
22
 
23
  // no need to append scripts for guest users
33
 
34
  }
35
 
36
+ public function footer_script()
37
  {
38
  $scripts = '';
39
 
includes/classes/Branding.php CHANGED
@@ -27,6 +27,33 @@ class WLCMS_Branding extends WLCMS_Previewable
27
  wlcms_set_hidden_css('#wp-admin-bar-wp-logo');
28
  wlcms_set_hidden_css('#wpadminbar .quicklinks li .blavatar');
29
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
30
  }
31
 
32
  public function admin_title($admin_title)
@@ -44,7 +71,7 @@ class WLCMS_Branding extends WLCMS_Previewable
44
 
45
  public function admin_body_class($classes)
46
  {
47
- $classes .= (is_wlcms_admin() ? 'not-': '') . 'wlcms-admin';
48
 
49
  return $classes;
50
  }
@@ -71,30 +98,6 @@ class WLCMS_Branding extends WLCMS_Previewable
71
  );
72
  $wp_admin_bar->add_node($args);
73
 
74
- /**
75
- * Create css for admin bar custom logo
76
- */
77
- $css_args = array();
78
-
79
- $css_args['vertical-align'] = 'middle!important';
80
-
81
-
82
- //limit admin logo height
83
- $css_args['max-height'] = '20px!important';
84
- $css_args['margin'] = '0 auto';
85
- $css_args['vertical-align'] = 'middle';
86
-
87
- wlcms_set_css('.wlcms-admin-logo img', $css_args);
88
-
89
- wlcms_set_css(
90
- '.wlcms-admin-logo .ab-item, .wlcms-admin-logo a',
91
- array(
92
- 'line-height' => '28px!important',
93
- 'display' => 'flex',
94
- 'align-items' => 'center'
95
- )
96
- );
97
-
98
  }
99
 
100
  public function sidebar_menu_url()
27
  wlcms_set_hidden_css('#wp-admin-bar-wp-logo');
28
  wlcms_set_hidden_css('#wpadminbar .quicklinks li .blavatar');
29
  }
30
+
31
+ // Setup css for the admin bar logo
32
+ if ($this->get_settings('admin_bar_logo')){
33
+ /**
34
+ * Create css for admin bar custom logo
35
+ */
36
+ $css_args = array();
37
+
38
+ $css_args['vertical-align'] = 'middle!important';
39
+
40
+
41
+ //limit admin logo height
42
+ $css_args['max-height'] = '20px!important';
43
+ $css_args['margin'] = '0 auto';
44
+ $css_args['vertical-align'] = 'middle';
45
+
46
+ wlcms_set_css('.wlcms-admin-logo img', $css_args);
47
+
48
+ wlcms_set_css(
49
+ '.wlcms-admin-logo .ab-item, .wlcms-admin-logo a',
50
+ array(
51
+ 'line-height' => '28px!important',
52
+ 'display' => 'flex',
53
+ 'align-items' => 'center'
54
+ )
55
+ );
56
+ }
57
  }
58
 
59
  public function admin_title($admin_title)
71
 
72
  public function admin_body_class($classes)
73
  {
74
+ $classes = trim($classes) . ' ' . (!is_wlcms_admin() ? 'not-' : '') . 'wlcms-admin';
75
 
76
  return $classes;
77
  }
98
  );
99
  $wp_admin_bar->add_node($args);
100
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
101
  }
102
 
103
  public function sidebar_menu_url()
includes/classes/I18n.php CHANGED
@@ -9,12 +9,22 @@
9
 
10
  class WLCMS_I18n
11
  {
 
 
 
 
 
12
  public function load_textdomain()
13
  {
 
 
 
14
  load_plugin_textdomain(
15
- 'wlcms',
16
  false,
17
- WLCMS_DIR . '/languages/'
18
  );
19
  }
20
  }
 
 
9
 
10
  class WLCMS_I18n
11
  {
12
+ function __construct()
13
+ {
14
+ add_action('init', array($this, 'load_textdomain'));
15
+ }
16
+
17
  public function load_textdomain()
18
  {
19
+
20
+ $domain = 'white-label-cms';
21
+ $plugin_rel_path = $domain . '/languages/';
22
  load_plugin_textdomain(
23
+ $domain,
24
  false,
25
+ $plugin_rel_path
26
  );
27
  }
28
  }
29
+
30
+ new WLCMS_I18n();
languages/white-label-cms-fr_FR.mo ADDED
Binary file
languages/white-label-cms-fr_FR.po ADDED
@@ -0,0 +1,11359 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: White Label CMS\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2019-02-20 15:36+0800\n"
6
+ "PO-Revision-Date: 2019-02-20 15:37+0800\n"
7
+ "Last-Translator: FreePixel <contact@freepixel.net>\n"
8
+ "Language-Team: FreePixel\n"
9
+ "Language: fr_FR\n"
10
+ "MIME-Version: 1.0\n"
11
+ "Content-Type: text/plain; charset=UTF-8\n"
12
+ "Content-Transfer-Encoding: 8bit\n"
13
+ "Plural-Forms: nplurals=2; plural=n>1;\n"
14
+ "X-Generator: Poedit 1.8.12\n"
15
+ "X-Poedit-SourceCharset: UTF-8\n"
16
+ "X-Poedit-KeywordsList: __;_e\n"
17
+ "X-Poedit-Basepath: white-label-cms\n"
18
+ "X-Textdomain-Support: yes\n"
19
+ "X-Poedit-SearchPath-0: wlcms-plugin.php\n"
20
+ "X-Poedit-SearchPath-1: uninstall.php\n"
21
+ "X-Poedit-SearchPath-2: view/admin/settings.php\n"
22
+ "X-Poedit-SearchPath-3: view/admin/wizard.php\n"
23
+ "X-Poedit-SearchPath-4: view/admin/parts/advert.php\n"
24
+ "X-Poedit-SearchPath-5: view/admin/parts/branding-admin-bar.php\n"
25
+ "X-Poedit-SearchPath-6: view/admin/parts/branding-developer.php\n"
26
+ "X-Poedit-SearchPath-7: view/admin/parts/branding-footer.php\n"
27
+ "X-Poedit-SearchPath-8: view/admin/parts/branding-side-menu.php\n"
28
+ "X-Poedit-SearchPath-9: view/admin/parts/branding-wordpress.php\n"
29
+ "X-Poedit-SearchPath-10: view/admin/parts/branding.php\n"
30
+ "X-Poedit-SearchPath-11: view/admin/parts/dashboard-custom-welcome-dashboard-"
31
+ "panel.php\n"
32
+ "X-Poedit-SearchPath-12: view/admin/parts/dashboard-default-panels.php\n"
33
+ "X-Poedit-SearchPath-13: view/admin/parts/dashboard-rss-dashboard-panel.php\n"
34
+ "X-Poedit-SearchPath-14: view/admin/parts/dashboard.php\n"
35
+ "X-Poedit-SearchPath-15: view/admin/parts/import-settings.php\n"
36
+ "X-Poedit-SearchPath-16: view/admin/parts/index.php\n"
37
+ "X-Poedit-SearchPath-17: view/admin/parts/live-preview.php\n"
38
+ "X-Poedit-SearchPath-18: view/admin/parts/login-advanced.php\n"
39
+ "X-Poedit-SearchPath-19: view/admin/parts/login-custom-css.php\n"
40
+ "X-Poedit-SearchPath-20: view/admin/parts/login-live-preview.php\n"
41
+ "X-Poedit-SearchPath-21: view/admin/parts/login-logo-and-background.php\n"
42
+ "X-Poedit-SearchPath-22: view/admin/parts/login.php\n"
43
+ "X-Poedit-SearchPath-23: view/admin/parts/menus-admin-bar-menus.php\n"
44
+ "X-Poedit-SearchPath-24: view/admin/parts/menus-legacy.php\n"
45
+ "X-Poedit-SearchPath-25: view/admin/parts/menus-menus.php\n"
46
+ "X-Poedit-SearchPath-26: view/admin/parts/menus-white-label-cms-admin.php\n"
47
+ "X-Poedit-SearchPath-27: view/admin/parts/menus.php\n"
48
+ "X-Poedit-SearchPath-28: view/admin/parts/settings-admin-bar-setting.php\n"
49
+ "X-Poedit-SearchPath-29: view/admin/parts/settings-admin-settings.php\n"
50
+ "X-Poedit-SearchPath-30: view/admin/parts/settings-custom-css-for-admin.php\n"
51
+ "X-Poedit-SearchPath-31: view/admin/parts/settings-custom-editor-stylesheet."
52
+ "php\n"
53
+ "X-Poedit-SearchPath-32: view/admin/parts/settings-hide-page-meta-boxes.php\n"
54
+ "X-Poedit-SearchPath-33: view/admin/parts/settings-hide-post-meta-boxes.php\n"
55
+ "X-Poedit-SearchPath-34: view/admin/parts/settings-nag-messages.php\n"
56
+ "X-Poedit-SearchPath-35: view/admin/parts/settings.php\n"
57
+ "X-Poedit-SearchPath-36: view/admin/parts/wizard-step-1.php\n"
58
+ "X-Poedit-SearchPath-37: view/admin/parts/wizard-step-2.php\n"
59
+ "X-Poedit-SearchPath-38: includes/classes/Admin_Core.php\n"
60
+ "X-Poedit-SearchPath-39: includes/classes/Admin_Dashboard.php\n"
61
+ "X-Poedit-SearchPath-40: includes/classes/Admin_Menus.php\n"
62
+ "X-Poedit-SearchPath-41: includes/classes/Admin_Script.php\n"
63
+ "X-Poedit-SearchPath-42: includes/classes/Admin_Settings.php\n"
64
+ "X-Poedit-SearchPath-43: includes/classes/Branding.php\n"
65
+ "X-Poedit-SearchPath-44: includes/classes/I18n.php\n"
66
+ "X-Poedit-SearchPath-45: includes/classes/index.php\n"
67
+ "X-Poedit-SearchPath-46: includes/classes/Loader.php\n"
68
+ "X-Poedit-SearchPath-47: includes/classes/Login.php\n"
69
+ "X-Poedit-SearchPath-48: includes/classes/Messages.php\n"
70
+ "X-Poedit-SearchPath-49: includes/classes/Previewable.php\n"
71
+ "X-Poedit-SearchPath-50: includes/classes/Settings.php\n"
72
+ "X-Poedit-SearchPath-51: includes/classes/Upgrade.php\n"
73
+ "X-Poedit-SearchPath-52: includes/classes/Wizard.php\n"
74
+ "X-Poedit-SearchPath-53: includes/Functions.php\n"
75
+
76
+ #. Plugin Name of the plugin/theme
77
+ #: includes/classes/Admin_Core.php:19 includes/classes/Admin_Core.php:20
78
+ #: view/admin/settings.php:18 view/admin/wizard.php:6
79
+ msgid "White Label CMS"
80
+ msgstr "White Label CMS"
81
+
82
+ #: includes/classes/Branding.php:165
83
+ #, php-format
84
+ msgid "%1s %2$s"
85
+ msgstr "%1s %2$s"
86
+
87
+ #: includes/classes/Settings.php:259
88
+ msgid ""
89
+ "<strong>Error!</strong> During the import process we almost imported a non "
90
+ "White Label CMS setting - please ensure you uploaded the correct file and "
91
+ "try again."
92
+ msgstr ""
93
+ "<strong>Erreur !</strong> au cours de l’importation. Vous avez essayé "
94
+ "d’importer un fichier de réglages autre que pour White Label CMS. Assurez-"
95
+ "vous de télécharger un fichier valide et réessayez."
96
+
97
+ #: view/admin/parts/branding-admin-bar.php:3
98
+ msgid "Admin Bar Logo"
99
+ msgstr ""
100
+
101
+ #: view/admin/parts/branding-admin-bar.php:3
102
+ msgid "Replace the WordPress logo in the admin bar. Max height 20px"
103
+ msgstr ""
104
+
105
+ #: view/admin/parts/branding-admin-bar.php:7
106
+ msgid "Admin Bar Alt Text"
107
+ msgstr "Texte alternatif de la barre d’administration"
108
+
109
+ # @ mainwp
110
+ #: view/admin/parts/branding-admin-bar.php:12
111
+ msgid "Replace the \"WordPress\" Alt text."
112
+ msgstr "Remplacez le texte alt \"WordPress\"."
113
+
114
+ #: view/admin/parts/branding-admin-bar.php:17
115
+ msgid "Replace Howdy Text"
116
+ msgstr "Remplacer le texte de bienvenue"
117
+
118
+ #: view/admin/parts/branding-admin-bar.php:22
119
+ msgid ""
120
+ "Add a space to completely remove it from the admin bar. Or replace it with "
121
+ "something like: \"Hi,\""
122
+ msgstr ""
123
+
124
+ #: view/admin/parts/branding-admin-bar.php:27
125
+ msgid "Admin Bar URL"
126
+ msgstr "URL de la barre d'administration"
127
+
128
+ # @ mainwp
129
+ #: view/admin/parts/branding-admin-bar.php:32
130
+ msgid "Replace the link to WordPress.org."
131
+ msgstr "Remplacez le lien vers WordPress.org."
132
+
133
+ # @ mainwp
134
+ #: view/admin/parts/branding-developer.php:3
135
+ #: view/admin/parts/wizard-step-1.php:19
136
+ msgid "Developer Name"
137
+ msgstr "Nom du développeur"
138
+
139
+ #: view/admin/parts/branding-developer.php:8
140
+ #: view/admin/parts/wizard-step-1.php:24
141
+ msgid "For use in footer and ALT text's."
142
+ msgstr "À utiliser dans les bas de page et les textes ALT."
143
+
144
+ #: view/admin/parts/branding-developer.php:13
145
+ #: view/admin/parts/wizard-step-1.php:29
146
+ msgid "Developer URL"
147
+ msgstr "Nouveau développeur"
148
+
149
+ #: view/admin/parts/branding-developer.php:18
150
+ #: view/admin/parts/wizard-step-1.php:34
151
+ msgid "For use in footer and admin bar."
152
+ msgstr "À utiliser dans les pieds de page et les barres d’administration."
153
+
154
+ #: view/admin/parts/branding-developer.php:23
155
+ msgid "Developer Icon"
156
+ msgstr ""
157
+
158
+ #: view/admin/parts/branding-developer.php:23
159
+ msgid "We recommend at 16 x 16 image"
160
+ msgstr ""
161
+
162
+ #: view/admin/parts/branding-developer.php:29
163
+ msgid "Use Developer Icon in Footer"
164
+ msgstr "Utiliser l’icône du développeur dans le pied de page"
165
+
166
+ #: view/admin/parts/branding-developer.php:32
167
+ msgid "If you wish to use a different image for the footer, you can."
168
+ msgstr ""
169
+ "Si vous souhaitez utiliser une image différente pour le pied de page, vous "
170
+ "pouvez."
171
+
172
+ #: view/admin/parts/branding-developer.php:37
173
+ msgid "Developer Footer Icon"
174
+ msgstr ""
175
+
176
+ #: view/admin/parts/branding-developer.php:44
177
+ msgid "Developer Side Menu Image"
178
+ msgstr ""
179
+
180
+ #: view/admin/parts/branding-footer.php:2
181
+ msgid "Footer Image"
182
+ msgstr ""
183
+
184
+ #: view/admin/parts/branding-footer.php:2
185
+ msgid ""
186
+ "Image which will appear in the footer replacing \"Thank you for creating "
187
+ "with WordPress. Max height 50px"
188
+ msgstr ""
189
+
190
+ #: view/admin/parts/branding-footer.php:6 view/admin/parts/wizard-step-1.php:39
191
+ msgid "Footer Text"
192
+ msgstr "Texte de pied de page"
193
+
194
+ #: view/admin/parts/branding-footer.php:11
195
+ #: view/admin/parts/wizard-step-1.php:44
196
+ msgid "Text which will appear to the right of the Footer Image."
197
+ msgstr "Texte qui apparaîtra à droite de l’image de pied de page."
198
+
199
+ # @ mainwp
200
+ #: view/admin/parts/branding-footer.php:16
201
+ msgid "Footer URL"
202
+ msgstr "URL de pied de page"
203
+
204
+ #: view/admin/parts/branding-footer.php:21
205
+ #: view/admin/parts/branding-wordpress.php:28
206
+ msgid "Replace WordPress in the page titles."
207
+ msgstr "Remplacez WordPress dans les titres de page."
208
+
209
+ #: view/admin/parts/branding-footer.php:26
210
+ msgid "or use HTML"
211
+ msgstr "ou utilisez HTML"
212
+
213
+ #: view/admin/parts/branding-footer.php:31
214
+ msgid ""
215
+ "If you would like more control over what appears in the footer, add your own "
216
+ "HTML.<br/>\n"
217
+ "Note: this will overwrite anything set in the Footer Image, Footer Text and "
218
+ "Footer URL."
219
+ msgstr ""
220
+ "Si vous souhaitez plus de contrôle sur ce qui apparaît dans le pied de page, "
221
+ "ajoutez votre propre code HTML.<br/>\n"
222
+ "Remarque : cela écrasera tout ce qui est défini dans l’image de bas de page, "
223
+ "le texte et l’URL du pied de page."
224
+
225
+ #: view/admin/parts/branding-side-menu.php:2
226
+ msgid "Side Menu Image"
227
+ msgstr ""
228
+
229
+ #: view/admin/parts/branding-side-menu.php:2
230
+ msgid "Image will appear at the top of the side menu. Max width 160px"
231
+ msgstr ""
232
+
233
+ #: view/admin/parts/branding-side-menu.php:6
234
+ msgid "Collapsed Side Menu Image"
235
+ msgstr ""
236
+
237
+ #: view/admin/parts/branding-side-menu.php:6
238
+ msgid ""
239
+ "Image will appear at the top of the side menu when it is collapsed. Max "
240
+ "width 36px"
241
+ msgstr ""
242
+
243
+ #: view/admin/parts/branding-side-menu.php:9
244
+ msgid "Side Menu Link URL"
245
+ msgstr "URL du lien du menu latéral"
246
+
247
+ #: view/admin/parts/branding-side-menu.php:14
248
+ msgid "URL the Side Menu Image will link to."
249
+ msgstr "URL vers laquelle l’image du menu latéral sera liée."
250
+
251
+ #: view/admin/parts/branding-side-menu.php:18
252
+ msgid "Side Menu Alt Text"
253
+ msgstr "Texte alternatif du menu latéral"
254
+
255
+ #: view/admin/parts/branding-side-menu.php:23
256
+ msgid "Alt text for the Side Menu Image link."
257
+ msgstr "Texte alternatif pour le lien image du menu latéral."
258
+
259
+ #: view/admin/parts/branding-wordpress.php:5
260
+ msgid "Hide WordPress Logo and Links"
261
+ msgstr "Masquer le logo WordPress et les liens"
262
+
263
+ #: view/admin/parts/branding-wordpress.php:8
264
+ msgid "Hide mentions of WordPress and hide the links to WordPress.org."
265
+ msgstr ""
266
+ "Masquer les mentions de WordPress et masquer les liens vers WordPress.org."
267
+
268
+ # @ mainwp
269
+ #: view/admin/parts/branding-wordpress.php:15
270
+ msgid "Hide WP Version"
271
+ msgstr "Masquer la version WP"
272
+
273
+ #: view/admin/parts/branding-wordpress.php:18
274
+ msgid "Hide version number of WordPress which appears in the footer."
275
+ msgstr ""
276
+ "Masquer le numéro de version de WordPress qui apparaît dans le pied de page."
277
+
278
+ # @ mainwp
279
+ #: view/admin/parts/branding-wordpress.php:23
280
+ msgid "Custom Page Titles"
281
+ msgstr "Titres des pages personnalisés"
282
+
283
+ # @ mainwp
284
+ #: view/admin/parts/branding.php:3
285
+ msgid "WordPress Branding"
286
+ msgstr "Marque WordPress"
287
+
288
+ #: view/admin/parts/branding.php:11
289
+ msgid "Admin Bar Branding"
290
+ msgstr "Logo de la barre d’administration"
291
+
292
+ #: view/admin/parts/branding.php:19
293
+ msgid "Side Menu Branding"
294
+ msgstr "Marque du menu latéral"
295
+
296
+ #: view/admin/parts/branding.php:27
297
+ msgid "Footer Branding"
298
+ msgstr "Logo du pied de page"
299
+
300
+ #: view/admin/parts/dashboard-custom-welcome-dashboard-panel.php:7
301
+ msgid ""
302
+ "Add your own Welcome Panel to the Dashboard page. This will appear on the "
303
+ "dashboard. We recommend providing your contact details and links to the help "
304
+ "files you have made for your client."
305
+ msgstr ""
306
+ "Ajoutez votre propre panneau de bienvenue à la page Tableau de bord. Cela "
307
+ "apparaîtra sur le tableau de bord. Nous vous recommandons de fournir vos "
308
+ "coordonnées et des liens vers les fichiers d’aide que vous avez créés pour "
309
+ "votre client."
310
+
311
+ #: view/admin/parts/dashboard-custom-welcome-dashboard-panel.php:11
312
+ msgid "Add Your Own Welcome Panel"
313
+ msgstr "Ajoutez votre propre panneau de bienvenue"
314
+
315
+ #: view/admin/parts/dashboard-custom-welcome-dashboard-panel.php:14
316
+ msgid "You can add your own welcome panel."
317
+ msgstr "Vous pouvez ajouter votre propre panneau de bienvenue."
318
+
319
+ #: view/admin/parts/dashboard-custom-welcome-dashboard-panel.php:18
320
+ #: view/admin/parts/dashboard-custom-welcome-dashboard-panel.php:122
321
+ msgid "Select the Roles the Welcome Panel Will Be Visible To"
322
+ msgstr "Sélectionnez les rôles auxquels le panneau de bienvenue sera visible."
323
+
324
+ #: view/admin/parts/dashboard-custom-welcome-dashboard-panel.php:24
325
+ #: view/admin/parts/dashboard-custom-welcome-dashboard-panel.php:129
326
+ msgid "Select the user roles this will be visible to."
327
+ msgstr "Sélectionnez les rôles d’utilisateur pour lesquels ce sera visible."
328
+
329
+ #: view/admin/parts/dashboard-custom-welcome-dashboard-panel.php:50
330
+ msgid "Template Type"
331
+ msgstr "Type de modèle"
332
+
333
+ #: view/admin/parts/dashboard-custom-welcome-dashboard-panel.php:53
334
+ #: view/admin/parts/dashboard-custom-welcome-dashboard-panel.php:142
335
+ msgid "Basic HTML"
336
+ msgstr "HTML basique"
337
+
338
+ #: view/admin/parts/dashboard-custom-welcome-dashboard-panel.php:56
339
+ #: view/admin/parts/dashboard-custom-welcome-dashboard-panel.php:144
340
+ msgid "Elementor"
341
+ msgstr "Elementor"
342
+
343
+ #: view/admin/parts/dashboard-custom-welcome-dashboard-panel.php:58
344
+ #: view/admin/parts/dashboard-custom-welcome-dashboard-panel.php:146
345
+ msgid "Beaver Builder Pro"
346
+ msgstr "Braver Builder Pro"
347
+
348
+ #: view/admin/parts/dashboard-custom-welcome-dashboard-panel.php:63
349
+ #: view/admin/parts/dashboard-custom-welcome-dashboard-panel.php:139
350
+ msgid "Template"
351
+ msgstr "Modèle"
352
+
353
+ #: view/admin/parts/dashboard-custom-welcome-dashboard-panel.php:72
354
+ msgid "Title of Welcome Panel"
355
+ msgstr "Titre du panneau de bienvenue"
356
+
357
+ #: view/admin/parts/dashboard-custom-welcome-dashboard-panel.php:77
358
+ msgid "Title of the Welcome Panel"
359
+ msgstr "Titre du panneau de bienvenue"
360
+
361
+ #: view/admin/parts/dashboard-custom-welcome-dashboard-panel.php:82
362
+ msgid "Welcome Panel Description HTML"
363
+ msgstr "Description du panneau de bienvenue (HTML)"
364
+
365
+ #: view/admin/parts/dashboard-custom-welcome-dashboard-panel.php:86
366
+ msgid "You can add any HTML to the welcome panel."
367
+ msgstr "Vous pouvez ajouter n’importe quel code HTML au panneau de bienvenue."
368
+
369
+ #: view/admin/parts/dashboard-custom-welcome-dashboard-panel.php:92
370
+ #: view/admin/parts/dashboard-custom-welcome-dashboard-panel.php:180
371
+ msgid "Make full-width"
372
+ msgstr "Passer en mode pleine largeur"
373
+
374
+ # @ mainwp
375
+ #: view/admin/parts/dashboard-custom-welcome-dashboard-panel.php:99
376
+ #: view/admin/parts/dashboard-custom-welcome-dashboard-panel.php:190
377
+ msgid "Show Title"
378
+ msgstr "Afficher le titre"
379
+
380
+ # @ mainwp
381
+ #: view/admin/parts/dashboard-custom-welcome-dashboard-panel.php:115
382
+ msgid "Add Second Panel"
383
+ msgstr "Ajouter un second panneau"
384
+
385
+ #: view/admin/parts/dashboard-custom-welcome-dashboard-panel.php:118
386
+ msgid "Add a second custom panel to the Dashboard."
387
+ msgstr "Ajoutez un deuxième panneau personnalisé au tableau de bord."
388
+
389
+ # @ mainwp
390
+ #: view/admin/parts/dashboard-custom-welcome-dashboard-panel.php:151
391
+ msgid "Page Template"
392
+ msgstr "Modèle de page"
393
+
394
+ #: view/admin/parts/dashboard-custom-welcome-dashboard-panel.php:160
395
+ msgid "Title of Second Panel"
396
+ msgstr "Titre du second panneau"
397
+
398
+ #: view/admin/parts/dashboard-custom-welcome-dashboard-panel.php:165
399
+ msgid "Title of the Second Panel"
400
+ msgstr "Titre du second panneau"
401
+
402
+ #: view/admin/parts/dashboard-custom-welcome-dashboard-panel.php:170
403
+ msgid "Second Panel Description (HTML)"
404
+ msgstr "Description du second panneau (HTML)"
405
+
406
+ #: view/admin/parts/dashboard-custom-welcome-dashboard-panel.php:174
407
+ msgid "You can add any HTML to the second panel."
408
+ msgstr "Vous pouvez ajouter n’importe quel code HTML au deuxième panneau."
409
+
410
+ #: view/admin/parts/dashboard-default-panels.php:10
411
+ msgid "Dashboard Icon"
412
+ msgstr ""
413
+
414
+ #: view/admin/parts/dashboard-default-panels.php:10
415
+ msgid "Add a logo to the Dashboard. Suggested height 40px"
416
+ msgstr ""
417
+
418
+ # @ mainwp
419
+ #: view/admin/parts/dashboard-default-panels.php:14
420
+ msgid "Dashboard Title"
421
+ msgstr "Titre du tableau de bord"
422
+
423
+ #: view/admin/parts/dashboard-default-panels.php:19
424
+ msgid "Change the heading for the Dashboard"
425
+ msgstr "Changer le titre du tableau de bord"
426
+
427
+ #: view/admin/parts/dashboard-default-panels.php:23
428
+ msgid "Select the Roles the Dashboard Panels Will Be Hidden To"
429
+ msgstr ""
430
+
431
+ #: view/admin/parts/dashboard-default-panels.php:28
432
+ msgid "Select the user roles this will be hidden to."
433
+ msgstr ""
434
+
435
+ #: view/admin/parts/dashboard-default-panels.php:36
436
+ msgid "Hide All Dashboard Panels"
437
+ msgstr "Masquer tous les panneaux de tableau de bord"
438
+
439
+ #: view/admin/parts/dashboard-default-panels.php:38
440
+ msgid ""
441
+ "This will hide all the WordPress default dashboard panels. Or you can "
442
+ "specify which panels should appear."
443
+ msgstr ""
444
+
445
+ #: view/admin/parts/dashboard-default-panels.php:43
446
+ msgid "Hide 'At a Glance'"
447
+ msgstr "Masquer 'En bref'"
448
+
449
+ #: view/admin/parts/dashboard-default-panels.php:47
450
+ msgid "Hide 'Activity'"
451
+ msgstr "Masquer 'Activité'"
452
+
453
+ #: view/admin/parts/dashboard-default-panels.php:51
454
+ msgid "Hide 'Recent Comments'"
455
+ msgstr "Masquer 'Commentaires récents'"
456
+
457
+ #: view/admin/parts/dashboard-default-panels.php:55
458
+ msgid "Remove 'Quick Draft'"
459
+ msgstr "Supprimer 'Brouillon'"
460
+
461
+ #: view/admin/parts/dashboard-default-panels.php:59
462
+ msgid "Remove WordPress Events and News Widget"
463
+ msgstr "Supprimer le widget événements et actualités WordPress"
464
+
465
+ #: view/admin/parts/dashboard-default-panels.php:63
466
+ msgid "Remove Empty Dashboard Panel"
467
+ msgstr "Supprimer le tableau de bord vide"
468
+
469
+ #: view/admin/parts/dashboard-rss-dashboard-panel.php:4
470
+ msgid "Add Your Own RSS Panel"
471
+ msgstr "Ajoutez votre propre panneau RSS"
472
+
473
+ #: view/admin/parts/dashboard-rss-dashboard-panel.php:7
474
+ msgid ""
475
+ "This will appear on the dashboard. If you want your client to be kept up to "
476
+ "date with what you are doing in your business, set up your RSS feed."
477
+ msgstr ""
478
+ "Cela apparaîtra sur le tableau de bord. Si vous souhaitez que votre client "
479
+ "soit tenu au courant de ce que vous faites dans votre entreprise, configurez "
480
+ "votre flux RSS."
481
+
482
+ # @ mainwp
483
+ #: view/admin/parts/dashboard-rss-dashboard-panel.php:13
484
+ msgid "RSS Title"
485
+ msgstr "Titre RSS"
486
+
487
+ #: view/admin/parts/dashboard-rss-dashboard-panel.php:18
488
+ msgid "The title of the RSS Panel"
489
+ msgstr "Le titre du panneau RSS"
490
+
491
+ #: view/admin/parts/dashboard-rss-dashboard-panel.php:23
492
+ msgid "Add Your Logo"
493
+ msgstr ""
494
+
495
+ #: view/admin/parts/dashboard-rss-dashboard-panel.php:23
496
+ msgid "Add a logo to appear on the panel before the title."
497
+ msgstr ""
498
+
499
+ #: view/admin/parts/dashboard-rss-dashboard-panel.php:27
500
+ #: view/admin/parts/wizard-step-1.php:49
501
+ msgid "RSS Feed"
502
+ msgstr "Flux RSS"
503
+
504
+ #: view/admin/parts/dashboard-rss-dashboard-panel.php:32
505
+ msgid "The RSS feed address. For example feed://"
506
+ msgstr "L’adresse du flux RSS. Par exemple feed://"
507
+
508
+ # @ default
509
+ #: view/admin/parts/dashboard-rss-dashboard-panel.php:37
510
+ msgid "Number of Items to appear"
511
+ msgstr "Nombre d’éléments à afficher"
512
+
513
+ # @ default
514
+ #: view/admin/parts/dashboard-rss-dashboard-panel.php:48
515
+ msgid "Number of RSS items to show."
516
+ msgstr "Nombre d'éléments RSS à afficher."
517
+
518
+ #: view/admin/parts/dashboard-rss-dashboard-panel.php:55
519
+ msgid "Show Post Contents"
520
+ msgstr "Afficher les contenus de publication"
521
+
522
+ # @ mainwp
523
+ #: view/admin/parts/dashboard-rss-dashboard-panel.php:62
524
+ msgid "Introduction HTML"
525
+ msgstr "Introduction HTML"
526
+
527
+ #: view/admin/parts/dashboard-rss-dashboard-panel.php:67
528
+ msgid "Add introduction text to appear above the RSS items. You can use HTML."
529
+ msgstr ""
530
+ "Ajoutez un texte d’introduction pour apparaître au-dessus des éléments RSS. "
531
+ "Vous pouvez utiliser HTML."
532
+
533
+ # @ mainwp
534
+ #: view/admin/parts/dashboard.php:3
535
+ msgid "Default Panels"
536
+ msgstr "Panneaux par défaut"
537
+
538
+ #: view/admin/parts/dashboard.php:11
539
+ msgid "Custom Welcome Dashboard Panel"
540
+ msgstr "Tableau de bord de bienvenue personnalisé"
541
+
542
+ # @ mainwp
543
+ #: view/admin/parts/dashboard.php:19
544
+ msgid "RSS Dashboard Panel"
545
+ msgstr "Panneau de tableau de bord RSS"
546
+
547
+ # @ mainwp
548
+ #: view/admin/parts/import-settings.php:4 view/admin/settings.php:57
549
+ msgid "Import Settings"
550
+ msgstr "Importer des réglages"
551
+
552
+ #: view/admin/parts/import-settings.php:12
553
+ msgid "To import the settings from another website"
554
+ msgstr "Pour importer les paramètres d’un autre site Web"
555
+
556
+ #: view/admin/parts/live-preview.php:5
557
+ msgid "Close Preview"
558
+ msgstr ""
559
+
560
+ #: view/admin/parts/login-advanced.php:5
561
+ msgid "Hide \"Register / Lost your password?\" link"
562
+ msgstr "Masquer les liens \"S’inscrire/Mot de passe perdu ?\""
563
+
564
+ #: view/admin/parts/login-advanced.php:8
565
+ msgid ""
566
+ "Hide the \"Register / Lost your password?\" link which appears below the "
567
+ "login form."
568
+ msgstr ""
569
+ "Cacher les liens \"S’inscrire/Mot de passe perdu ?\" qui apparaissent sous "
570
+ "le formulaire de connexion."
571
+
572
+ #: view/admin/parts/login-advanced.php:14
573
+ msgid "Hide \"Back to\" link"
574
+ msgstr "Masquer le lien \"Retour à\""
575
+
576
+ #: view/admin/parts/login-advanced.php:17
577
+ msgid "Hide the \"Back to\" link which appears below the login form."
578
+ msgstr ""
579
+ "Masquer le lien \"Retour vers\" qui apparaît sous le formulaire de connexion."
580
+
581
+ #: view/admin/parts/login-advanced.php:22
582
+ msgid "Form Background Color"
583
+ msgstr "Couleur d’arrière plan du formulaire"
584
+
585
+ #: view/admin/parts/login-advanced.php:27
586
+ msgid "Background color of the login form"
587
+ msgstr "Couleur d’arrière plan du formulaire de connexion"
588
+
589
+ #: view/admin/parts/login-advanced.php:32
590
+ msgid "Form Label Color"
591
+ msgstr "Couleur de libellé de formulaire"
592
+
593
+ #: view/admin/parts/login-advanced.php:37
594
+ msgid "Color of the labels on the login form"
595
+ msgstr "Couleur des libellés dans le formulaire de connexion"
596
+
597
+ #: view/admin/parts/login-advanced.php:42
598
+ msgid "Form Button Color"
599
+ msgstr "Couleur du bouton de formulaire"
600
+
601
+ #: view/admin/parts/login-advanced.php:47
602
+ msgid "Color of the button on the login form"
603
+ msgstr "Couleur du bouton sur le formulaire de connexion"
604
+
605
+ #: view/admin/parts/login-advanced.php:52
606
+ msgid "Form Button Hover Color"
607
+ msgstr "Couleur au survol du bouton de formulaire"
608
+
609
+ #: view/admin/parts/login-advanced.php:57
610
+ msgid "Hover color of the button on the login form"
611
+ msgstr "Couleur au survol du bouton sur le formulaire de connexion"
612
+
613
+ #: view/admin/parts/login-advanced.php:62
614
+ msgid "Form Button Text Color"
615
+ msgstr "Couleur du texte du bouton de formulaire"
616
+
617
+ #: view/admin/parts/login-advanced.php:67
618
+ msgid "Color of the text on the button on the login form"
619
+ msgstr "Couleur du texte sur le bouton du formulaire de connexion"
620
+
621
+ #: view/admin/parts/login-advanced.php:72
622
+ msgid "Form Button Text Hover Color"
623
+ msgstr "Couleur au survol du texte du bouton de formulaire"
624
+
625
+ #: view/admin/parts/login-advanced.php:77
626
+ msgid "Hover color of the text on the button on the login form"
627
+ msgstr "Couleur au survol du texte sur le bouton du formulaire de connexion"
628
+
629
+ #: view/admin/parts/login-advanced.php:82
630
+ msgid "Back to / Register Link Color"
631
+ msgstr "Couleur des liens Retour à/S’inscrire"
632
+
633
+ #: view/admin/parts/login-advanced.php:87
634
+ msgid "Color of the link text of Back to / Register"
635
+ msgstr "Couleur du texte des liens Retour à/S’inscrire"
636
+
637
+ #: view/admin/parts/login-advanced.php:92
638
+ msgid "Back to / Register Link Hover Color"
639
+ msgstr "Couleur au survol des liens Retour à/S’inscrire"
640
+
641
+ #: view/admin/parts/login-advanced.php:97
642
+ msgid "Hover color of the link text of Back to / Register"
643
+ msgstr "Couleur au survol du texte des liens Retour à/S’inscrire"
644
+
645
+ #: view/admin/parts/login-advanced.php:102
646
+ msgid "Privacy Policy Link Color"
647
+ msgstr "Couleur du lien de Politique de confidentialité"
648
+
649
+ #: view/admin/parts/login-advanced.php:107
650
+ msgid "Color of the link text of Privacy Policy"
651
+ msgstr "Couleur du texte du lien de la politique de confidentialité"
652
+
653
+ #: view/admin/parts/login-advanced.php:112
654
+ msgid "Privacy Policy Link Hover Color"
655
+ msgstr "Couleur au survol du lien de Politique de confidentialité"
656
+
657
+ #: view/admin/parts/login-advanced.php:117
658
+ msgid "Hover color of the link text of Privacy Policy"
659
+ msgstr "Couleur au survol du lien de la politique de confidentialité"
660
+
661
+ # @ mainwp
662
+ #: view/admin/parts/login-advanced.php:121
663
+ #: view/admin/parts/login-custom-css.php:18
664
+ #: view/admin/parts/login-logo-and-background.php:96
665
+ msgid "Live Preview"
666
+ msgstr "Aperçu en direct"
667
+
668
+ #: view/admin/parts/login-custom-css.php:6
669
+ msgid "Completely customise the login page by entering your own CSS."
670
+ msgstr ""
671
+ "Personnalisez complètement la page de connexion en entrant vos propres CSS."
672
+
673
+ #: view/admin/parts/login-custom-css.php:7
674
+ msgid "For example"
675
+ msgstr "Par exemple"
676
+
677
+ #: view/admin/parts/login-custom-css.php:12
678
+ msgid "Or if you want to get fancy"
679
+ msgstr "Ou si vous voulez avoir envie"
680
+
681
+ #: view/admin/parts/login-live-preview.php:5
682
+ msgid "Close Login"
683
+ msgstr ""
684
+
685
+ #: view/admin/parts/login-logo-and-background.php:2
686
+ msgid "Login Logo"
687
+ msgstr ""
688
+
689
+ #: view/admin/parts/login-logo-and-background.php:2
690
+ msgid "Replace the WordPress logo on the login page. Max width 320px"
691
+ msgstr ""
692
+
693
+ #: view/admin/parts/login-logo-and-background.php:6
694
+ #: view/admin/parts/wizard-step-2.php:24
695
+ msgid "Retina Login Logo"
696
+ msgstr "Logo de connexion Rétina"
697
+
698
+ #: view/admin/parts/login-logo-and-background.php:6
699
+ #: view/admin/parts/wizard-step-2.php:28
700
+ msgid ""
701
+ "Replace the Retina WordPress logo on the login page. Please make sure you "
702
+ "use the standard retina format of x2"
703
+ msgstr ""
704
+
705
+ #: view/admin/parts/login-logo-and-background.php:10
706
+ msgid "Logo Width"
707
+ msgstr "Largeur du Logo"
708
+
709
+ #: view/admin/parts/login-logo-and-background.php:15
710
+ msgid "Add a width to your Login Logo. Max width 320px"
711
+ msgstr "Ajoutez une largeur à votre logo de connexion. Largeur maximale 320px"
712
+
713
+ #: view/admin/parts/login-logo-and-background.php:19
714
+ msgid "Logo Height"
715
+ msgstr "Hauteur du logo"
716
+
717
+ #: view/admin/parts/login-logo-and-background.php:24
718
+ msgid "Add a height to your Login Logo."
719
+ msgstr "Ajoutez une hauteur à votre logo de connexion."
720
+
721
+ #: view/admin/parts/login-logo-and-background.php:29
722
+ msgid "Logo Bottom Margin"
723
+ msgstr "Marge inférieure du logo"
724
+
725
+ #: view/admin/parts/login-logo-and-background.php:34
726
+ msgid "Add a bottom margin to your Login Logo."
727
+ msgstr "Ajoutez une marge inférieure à votre logo de connexion."
728
+
729
+ #: view/admin/parts/login-logo-and-background.php:39
730
+ msgid "Background Color"
731
+ msgstr "Couleur de l’arrière-plan"
732
+
733
+ #: view/admin/parts/login-logo-and-background.php:44
734
+ msgid ""
735
+ "Background color for the login page. Changing to White will help your logo "
736
+ "standout."
737
+ msgstr ""
738
+ "Couleur d’arrière-plan pour la page de connexion. Passer au blanc aidera "
739
+ "votre logo à se démarquer."
740
+
741
+ #: view/admin/parts/login-logo-and-background.php:49
742
+ msgid "Background Image"
743
+ msgstr ""
744
+
745
+ #: view/admin/parts/login-logo-and-background.php:49
746
+ msgid "Adds a background image to the login page."
747
+ msgstr ""
748
+
749
+ #: view/admin/parts/login-logo-and-background.php:55
750
+ msgid "Full Screen Background Image"
751
+ msgstr "Image d’arrière-plan plein écran"
752
+
753
+ #: view/admin/parts/login-logo-and-background.php:58
754
+ msgid "Stretch the background image to appear full screen."
755
+ msgstr "Étirez l’image d’arrière-plan pour apparaître en plein écran."
756
+
757
+ # @ mainwp
758
+ #: view/admin/parts/login-logo-and-background.php:63
759
+ msgid "Background Position"
760
+ msgstr "Position de l'arrière-plan"
761
+
762
+ #: view/admin/parts/login-logo-and-background.php:78
763
+ msgid "Specify the CSS background position."
764
+ msgstr "Spécifiez la position d’arrière-plan CSS."
765
+
766
+ #: view/admin/parts/login-logo-and-background.php:83
767
+ msgid "Background Repeat"
768
+ msgstr "Répétition de l’arrière-plan"
769
+
770
+ #: view/admin/parts/login-logo-and-background.php:92
771
+ msgid "Specify the CSS background-repeat."
772
+ msgstr "Spécifiez la répétition de l’arrière-plan CSS."
773
+
774
+ #: view/admin/parts/login.php:3
775
+ msgid "Logo and Background"
776
+ msgstr "Logo et arrière-plan"
777
+
778
+ # @ mainwp
779
+ #: view/admin/parts/login.php:13
780
+ msgid "Advanced"
781
+ msgstr "Avancé"
782
+
783
+ #: view/admin/parts/login.php:22
784
+ msgid "Custom CSS"
785
+ msgstr "CSS personnalisées"
786
+
787
+ #: view/admin/parts/menus-admin-bar-menus.php:3
788
+ msgid ""
789
+ "Admin Bar Menus will be hidden to all User Roles up to and including Admins "
790
+ "with the exception of White Label CMS Admins and Super Admins"
791
+ msgstr ""
792
+ "Les menus de la barre d’administration seront masqués pour tous les rôles "
793
+ "d’utilisateur, y compris les administrateurs, à l’exception des "
794
+ "administrateurs et des super administrateurs de CMS White Label."
795
+
796
+ #: view/admin/parts/menus-legacy.php:7
797
+ msgid "White Label CMS Legacy Menus"
798
+ msgstr "Héritage des menus White Label CMS"
799
+
800
+ #: view/admin/parts/menus-legacy.php:12
801
+ msgid ""
802
+ "You are seeing this because you have installed version 1 of the plugin in "
803
+ "the past."
804
+ msgstr ""
805
+ "Vous le voyez parce que vous avez déjà installé la version 1 de l’extension."
806
+
807
+ #: view/admin/parts/menus-legacy.php:13
808
+ msgid "In version 1 you could only change the menus for Editors."
809
+ msgstr ""
810
+ "Dans la version 1, vous ne pouviez modifier les menus que pour les éditeurs."
811
+
812
+ #: view/admin/parts/menus-legacy.php:14
813
+ msgid ""
814
+ "We recommend using the new White Label CMS Admin to manage the menus and in "
815
+ "order to do so you must reset the menus to the WordPress Defaults. If you "
816
+ "do this, this section will disappear."
817
+ msgstr ""
818
+ "Nous vous recommandons d’utiliser le nouvel administrateur White Label CMS "
819
+ "pour gérer les menus. Pour ce faire, vous devez réinitialiser les menus sur "
820
+ "les paramètres par défaut de WordPress. Si vous faites cela, cette section "
821
+ "disparaîtra."
822
+
823
+ # @ mainwp
824
+ #: view/admin/parts/menus-legacy.php:18
825
+ msgid "Use the new version"
826
+ msgstr "Utiliser la nouvelle version"
827
+
828
+ #: view/admin/parts/menus-menus.php:3
829
+ msgid ""
830
+ "Menus will be hidden to all User Roles up to and including Admins (with the "
831
+ "exception of White Label CMS Admins and Super Admins)."
832
+ msgstr ""
833
+ "Les menus seront masqués pour tous les rôles d’utilisateur, y compris les "
834
+ "administrateurs (à l’exception des administrateurs White Label CMS et des "
835
+ "super administrateurs)."
836
+
837
+ #: view/admin/parts/menus-menus.php:4
838
+ msgid "Select which menus you want to appear."
839
+ msgstr "Sélectionnez les menus que vous souhaitez voir apparaître."
840
+
841
+ #: view/admin/parts/menus-white-label-cms-admin.php:6
842
+ msgid "Want to hide menus for your client?"
843
+ msgstr "Vous voulez masquer les menus pour votre client ?"
844
+
845
+ #: view/admin/parts/menus-white-label-cms-admin.php:11
846
+ msgid ""
847
+ "You are now a White Label CMS Admin. This allows you to modify the menus "
848
+ "that other people will see."
849
+ msgstr ""
850
+ "Vous êtes maintenant un administrateur White Label CMS. Cela vous permet de "
851
+ "modifier les menus que d’autres personnes verront."
852
+
853
+ #: view/admin/parts/menus-white-label-cms-admin.php:12
854
+ msgid "You"
855
+ msgstr "Vous"
856
+
857
+ # @ mainwp
858
+ #: view/admin/parts/menus-white-label-cms-admin.php:24
859
+ msgid "Other Admins:"
860
+ msgstr "Autres administrateurs :"
861
+
862
+ #: view/admin/parts/menus-white-label-cms-admin.php:40
863
+ msgid ""
864
+ "By selecting a White Label CMS Admin it means that only the selected Admins "
865
+ "will be able to modify the settings for White Label CMS, as it won't be "
866
+ "visible in the menu to anybody else. <a href=\"https://www.videousermanuals."
867
+ "com/white-label-cms/\" target=\"_blank\">Learn more about this feature</a>."
868
+ msgstr ""
869
+ "En sélectionnant un administrateur White Label CMS, cela signifie que seuls "
870
+ "les administrateurs sélectionnés pourront modifier les paramètres de White "
871
+ "Label CMS, car ils ne seront pas visibles dans le menu. <a href=\"https://"
872
+ "www.videousermanuals.com/white-label-cms/\" target=\"_blank\">En savoir plus "
873
+ "sur cette fonctionnalité</a>."
874
+
875
+ #: view/admin/parts/menus.php:4
876
+ msgid "White Label CMS Admin"
877
+ msgstr "Administration White Label CMS"
878
+
879
+ #: view/admin/parts/menus.php:12 view/admin/settings.php:6
880
+ msgid "Menus"
881
+ msgstr "Menus"
882
+
883
+ # @ mainwp
884
+ #: view/admin/parts/menus.php:20
885
+ msgid "Admin Bar Menus"
886
+ msgstr "Menus de la barre d'administration"
887
+
888
+ #: view/admin/parts/settings-admin-bar-setting.php:5
889
+ msgid "Hide Front-end Admin Bar"
890
+ msgstr "Masquer la barre d’administration du site en ligne"
891
+
892
+ #: view/admin/parts/settings-admin-bar-setting.php:8
893
+ msgid ""
894
+ "This will disable the admin bar on the front-end for all logged in users"
895
+ msgstr ""
896
+ "Cela désactivera la barre d’administration sur le site en ligne pour tous "
897
+ "les utilisateurs connectés."
898
+
899
+ # @ mainwp
900
+ #: view/admin/parts/settings-admin-settings.php:5
901
+ msgid "Hide Help Box"
902
+ msgstr "Masquer la boîte d’aide"
903
+
904
+ #: view/admin/parts/settings-admin-settings.php:8
905
+ msgid "Hide the help tab which appears in the top right"
906
+ msgstr "Masquer l’onglet d’aide qui apparaît en haut à droite"
907
+
908
+ # @ mainwp
909
+ #: view/admin/parts/settings-admin-settings.php:15
910
+ msgid "Hide Screen Options"
911
+ msgstr "Masquer les options d’écran"
912
+
913
+ #: view/admin/parts/settings-admin-settings.php:18
914
+ msgid "Hide the screen options which appear in the top right"
915
+ msgstr "Masquer l’onglet Options d’écran qui apparait en haut à droite"
916
+
917
+ #: view/admin/parts/settings-custom-css-for-admin.php:5
918
+ msgid ""
919
+ "Override or add to any of the styles in the WordPress admin enter your own "
920
+ "custom css here"
921
+ msgstr ""
922
+ "Remplacez ou ajoutez à l’un des styles de l’administrateur WordPress entrez "
923
+ "votre propre css personnalisé ici"
924
+
925
+ #: view/admin/parts/settings-custom-editor-stylesheet.php:2
926
+ msgid "Custom Stylesheet URL"
927
+ msgstr "URL de la feuille de styles personnalisés"
928
+
929
+ #: view/admin/parts/settings-custom-editor-stylesheet.php:7
930
+ msgid ""
931
+ "Create and upload a custom stylesheet with all style rules prefixed with ."
932
+ "mceContentBody to your themes directory and enter the filename"
933
+ msgstr ""
934
+ "Créez et téléchargez une feuille de style personnalisée avec toutes les "
935
+ "règles de style précédées du préfixe .mceContentBody dans votre répertoire "
936
+ "thèmes et entrez le nom du fichier"
937
+
938
+ #: view/admin/parts/settings-nag-messages.php:3
939
+ msgid ""
940
+ "Nag Messages will be hidden to all User Roles up to and including Admins"
941
+ msgstr ""
942
+ "Les messages Nag seront masqués pour tous les rôles d’utilisateur, y compris "
943
+ "les administrateurs."
944
+
945
+ # @ mainwp
946
+ #: view/admin/parts/settings-nag-messages.php:7
947
+ msgid "Nag Update Messages"
948
+ msgstr "Messages de mise à jour de Nag"
949
+
950
+ # @ mainwp
951
+ #: view/admin/parts/settings.php:3
952
+ msgid "Admin Bar"
953
+ msgstr "Barre d’administration"
954
+
955
+ # @ mainwp
956
+ #: view/admin/parts/settings.php:11
957
+ msgid "Admin Settings"
958
+ msgstr "Réglages de l’administration"
959
+
960
+ #: view/admin/parts/settings.php:19
961
+ msgid "Nag Messages"
962
+ msgstr "Messages Nag"
963
+
964
+ #: view/admin/parts/settings.php:27
965
+ msgid "Custom CSS for Admin"
966
+ msgstr "CSS personnalisés pour l’administration"
967
+
968
+ #: view/admin/parts/settings.php:35
969
+ msgid "Custom Editor Stylesheet"
970
+ msgstr "Feuille de styles personnalisés pour l’éditeur"
971
+
972
+ #: view/admin/parts/wizard-step-1.php:14
973
+ msgid "Developer Branding"
974
+ msgstr "Logo du développeur"
975
+
976
+ #: view/admin/parts/wizard-step-1.php:17
977
+ msgid ""
978
+ "You can set up White Label CMS quickly by adding your details below, and on "
979
+ "the next page it will ask you about your clients details. Or you can click "
980
+ "the Skip button and add these details later."
981
+ msgstr ""
982
+
983
+ #: view/admin/parts/wizard-step-1.php:54
984
+ msgid "The RSS feed address. For example http://"
985
+ msgstr "L’adresse du flux RSS. Par exemple feed://"
986
+
987
+ # @ mainwp
988
+ #: view/admin/parts/wizard-step-2.php:3
989
+ msgid "Clients Branding"
990
+ msgstr "Logo du client"
991
+
992
+ #: view/admin/parts/wizard-step-2.php:9
993
+ msgid "Clients Business Name"
994
+ msgstr "Nom professionnel du client"
995
+
996
+ #: view/admin/parts/wizard-step-2.php:14
997
+ msgid "For use in Admin Page Title and Dashboard Title."
998
+ msgstr "À utiliser dans Titre de la page Admin et Titre du tableau de bord."
999
+
1000
+ #: view/admin/parts/wizard-step-2.php:28
1001
+ msgid "Upload Login Logo"
1002
+ msgstr ""
1003
+
1004
+ # @ mainwp
1005
+ #: view/admin/settings.php:3
1006
+ msgid "Branding"
1007
+ msgstr "Logo"
1008
+
1009
+ # @ mainwp
1010
+ #: view/admin/settings.php:4
1011
+ msgid "Login"
1012
+ msgstr "Connexion"
1013
+
1014
+ # @ mainwp
1015
+ #: view/admin/settings.php:5
1016
+ msgid "Dashboard"
1017
+ msgstr "Tableau de bord"
1018
+
1019
+ # @ mainwp
1020
+ #: view/admin/settings.php:7
1021
+ msgid "Settings"
1022
+ msgstr "Paramètres"
1023
+
1024
+ # @ mainwp
1025
+ # @ default
1026
+ #: view/admin/settings.php:34 view/admin/wizard.php:20
1027
+ msgid "Save"
1028
+ msgstr "Sauver"
1029
+
1030
+ # @ mainwp
1031
+ #: view/admin/settings.php:58
1032
+ msgid "Export Settings"
1033
+ msgstr "Exporter les réglages"
1034
+
1035
+ # @ mainwp
1036
+ #: view/admin/settings.php:59
1037
+ msgid "Reset Plugin"
1038
+ msgstr "Réinitialiser l’extension"
1039
+
1040
+ #: view/admin/wizard.php:11
1041
+ msgid "Quick Setup Wizard: Step 1 of 2 - Developers Branding"
1042
+ msgstr "Assistant d’installation rapide : étape 1 de 2 - Logo des développeurs"
1043
+
1044
+ #: view/admin/wizard.php:13
1045
+ msgid "Skip"
1046
+ msgstr "Passer"
1047
+
1048
+ # @ default
1049
+ #: view/admin/wizard.php:14
1050
+ #, fuzzy
1051
+ #| msgctxt "Button label for a theme"
1052
+ #| msgid "Next"
1053
+ msgid "Next"
1054
+ msgstr "Suivant"
1055
+
1056
+ #: view/admin/wizard.php:17
1057
+ msgid "Quick Setup Wizard: Step 2 of 2 - Clients Branding"
1058
+ msgstr "Assistant d’installation rapide : étape 2 de 2 - Logo du client"
1059
+
1060
+ #: view/admin/wizard.php:19
1061
+ msgid "Back to step 1"
1062
+ msgstr ""
1063
+
1064
+ #. Plugin URI of the plugin/theme
1065
+ msgid ""
1066
+ "http://www.videousermanuals.com/white-label-cms/?"
1067
+ "utm_campaign=wlcms&utm_medium=plugin&utm_source=readme-txt"
1068
+ msgstr ""
1069
+ "http://www.videousermanuals.com/white-label-cms/?"
1070
+ "utm_campaign=wlcms&utm_medium=plugin&utm_source=readme-txt"
1071
+
1072
+ #. Description of the plugin/theme
1073
+ msgid "A plugin that allows you to brand WordPress CMS as your own"
1074
+ msgstr "A plugin that allows you to brand WordPress CMS as your own"
1075
+
1076
+ #. Author of the plugin/theme
1077
+ msgid "www.videousermanuals.com"
1078
+ msgstr "www.videousermanuals.com"
1079
+
1080
+ #. Author URI of the plugin/theme
1081
+ msgid ""
1082
+ "http://www.videousermanuals.com/?"
1083
+ "utm_campaign=wlcms&utm_medium=plugin&utm_source=readme-txt"
1084
+ msgstr ""
1085
+ "http://www.videousermanuals.com/?"
1086
+ "utm_campaign=wlcms&utm_medium=plugin&utm_source=readme-txt"
1087
+
1088
+ #~ msgid "%1s, %2$s"
1089
+ #~ msgstr "%1s, %2$s"
1090
+
1091
+ #~ msgid "Replace the Howdy text in admin bar"
1092
+ #~ msgstr "Remplacer le texte de bienvenue dans la barre d’administration"
1093
+
1094
+ #~ msgid ""
1095
+ #~ "This will hide all the WordPress default dashboard panels. Or you can "
1096
+ #~ "specify which panels should appear. Note this will not affect White Label "
1097
+ #~ "CMS admins."
1098
+ #~ msgstr ""
1099
+ #~ "Cela masquera tous les panneaux de tableau de bord par défaut de "
1100
+ #~ "WordPress. Ou vous pouvez spécifier quels panneaux doivent apparaître. "
1101
+ #~ "Notez que cela n’affectera pas les administrateurs de White Label CMS."
1102
+
1103
+ # @ mainwp
1104
+ #~ msgid "Network Admin"
1105
+ #~ msgstr "Admin Réseau"
1106
+
1107
+ # @ mainwp
1108
+ #~ msgid "Global Dashboard"
1109
+ #~ msgstr "Tableau de bord global"
1110
+
1111
+ # @ mainwp
1112
+ #~ msgid "%1$s &#8212; WordPress"
1113
+ #~ msgstr "%1$s &#8212; WordPress"
1114
+
1115
+ # @ mainwp
1116
+ #~ msgid "%1$s &lsaquo; %2$s &#8212; WordPress"
1117
+ #~ msgstr "%1$s &lsaquo; %2$s &#8212; WordPress"
1118
+
1119
+ # @ mainwp
1120
+ #, fuzzy
1121
+ #~| msgid ""
1122
+ #~| "Welcome to your WordPress Dashboard! This is the screen you will see "
1123
+ #~| "when you log in to your site, and gives you access to all the site "
1124
+ #~| "management features of WordPress. You can get help for any screen by "
1125
+ #~| "clicking the Help tab in the upper corner."
1126
+ #~ msgid ""
1127
+ #~ "Welcome to your WordPress Dashboard! This is the screen you will see when "
1128
+ #~ "you log into your site and gives you access to all the site management "
1129
+ #~ "features of WordPress. You can get help for any screen by clicking the "
1130
+ #~ "Help tab in the upper corner."
1131
+ #~ msgstr ""
1132
+ #~ "Bienvenue à votre tableau de bord WordPress! Ce est l’écran que vous "
1133
+ #~ "verrez lorsque vous vous connectez à votre site, et vous donne accès à "
1134
+ #~ "toutes les fonctions de gestion du site de WordPress. Vous pouvez obtenir "
1135
+ #~ "de l’aide pour n’importe quel écran en cliquant sur l’onglet Aide dans le "
1136
+ #~ "coin supérieur."
1137
+
1138
+ # @ mainwp
1139
+ #~ msgid "Overview"
1140
+ #~ msgstr "Vue d’ensemble"
1141
+
1142
+ # @ mainwp
1143
+ #~ msgid ""
1144
+ #~ "The left-hand navigation menu provides links to all of the WordPress "
1145
+ #~ "administration screens, with submenu items displayed on hover. You can "
1146
+ #~ "minimize this menu to a narrow icon strip by clicking on the Collapse "
1147
+ #~ "Menu arrow at the bottom."
1148
+ #~ msgstr ""
1149
+ #~ "Le menu de navigation de gauche fournit des liens vers tous les écrans "
1150
+ #~ "d’administration WordPress, avec les sous-menus affichés au survol. Vous "
1151
+ #~ "pouvez réduire ce menu pour une bande à icônes en cliquant sur la flèche "
1152
+ #~ "Réduire de menu en bas."
1153
+
1154
+ # @ mainwp
1155
+ #, fuzzy
1156
+ #~| msgid ""
1157
+ #~| "Links in the Toolbar at the top of the screen connect your dashboard and "
1158
+ #~| "the front end of your site, and provide access to your profile and "
1159
+ #~| "helpful WordPress information."
1160
+ #~ msgid ""
1161
+ #~ "Links in the Toolbar at the top of the screen connect your dashboard and "
1162
+ #~ "the front end of your site and provide access to your profile and helpful "
1163
+ #~ "WordPress information."
1164
+ #~ msgstr ""
1165
+ #~ "Liens de la barre d’outils en haut de l’écran se connecter votre tableau "
1166
+ #~ "de bord et l’extrémité avant de votre site, et donnent accès à votre "
1167
+ #~ "profil et informations utiles WordPress."
1168
+
1169
+ # @ mainwp
1170
+ #~ msgid "Navigation"
1171
+ #~ msgstr "Navigation"
1172
+
1173
+ # @ mainwp
1174
+ #~ msgid ""
1175
+ #~ "You can use the following controls to arrange your Dashboard screen to "
1176
+ #~ "suit your workflow. This is true on most other administration screens as "
1177
+ #~ "well."
1178
+ #~ msgstr ""
1179
+ #~ "Vous pouvez utiliser les commandes suivantes pour organiser votre écran "
1180
+ #~ "de tableau de bord en fonction de votre flux de travail. Ce est vrai dans "
1181
+ #~ "la plupart des autres écrans d’administration ainsi."
1182
+
1183
+ # @ mainwp
1184
+ #~ msgid ""
1185
+ #~ "<strong>Screen Options</strong> - Use the Screen Options tab to choose "
1186
+ #~ "which Dashboard boxes to show, and how many columns to display."
1187
+ #~ msgstr ""
1188
+ #~ "Options <strong>d’écran</ strong> - Utilisez l’onglet Options d’écran "
1189
+ #~ "pour choisir ce que le tableau de bord doit afficher, et le nombre de "
1190
+ #~ "colonnes à afficher."
1191
+
1192
+ # @ mainwp
1193
+ #~ msgid ""
1194
+ #~ "<strong>Drag and Drop</strong> - To rearrange the boxes, drag and drop by "
1195
+ #~ "clicking on the title bar of the selected box and releasing when you see "
1196
+ #~ "a gray dotted-line rectangle appear in the location you want to place the "
1197
+ #~ "box."
1198
+ #~ msgstr ""
1199
+ #~ "<strong>Glisser / déposer</ strong> - Pour organiser les boîtes, glisser/"
1200
+ #~ "déposer en cliquant sur la barre de titre de la boîte sélectionnée et "
1201
+ #~ "libérer quand vous voyez un rectangle pointillé gris apparaître à "
1202
+ #~ "l’emplacement où vous voulez placer la boîte."
1203
+
1204
+ # @ mainwp
1205
+ #~ msgid ""
1206
+ #~ "<strong>Box Controls</strong> - Click the title bar of the box to expand "
1207
+ #~ "or collapse it. In addition, some box have configurable content, and will "
1208
+ #~ "show a &#8220;Configure&#8221; link in the title bar if you hover over it."
1209
+ #~ msgstr ""
1210
+ #~ "<strong>Contrôle des boîtes</ strong> - Cliquez sur la barre de titre de "
1211
+ #~ "la boîte à développer ou le réduire. Certains contenus ont une boîte "
1212
+ #~ "configurable, affiche un lien \\\"Configurer\\\" dans la barre de titre "
1213
+ #~ "si vous survolez la boîte."
1214
+
1215
+ # @ mainwp
1216
+ #~ msgid "Layout"
1217
+ #~ msgstr "Mise en page"
1218
+
1219
+ # @ mainwp
1220
+ #~ msgid "The boxes on your Dashboard screen are:"
1221
+ #~ msgstr "Les boîtes sur l’écran de votre tableau de bord sont&nbsp;:"
1222
+
1223
+ # @ mainwp
1224
+ #, fuzzy
1225
+ #~| msgid ""
1226
+ #~| "<strong>Right Now</strong> - Displays a summary of the content on your "
1227
+ #~| "site and identifies which theme and version of WordPress you are using."
1228
+ #~ msgid ""
1229
+ #~ "<strong>Update Overview</strong> - Displays a summary of the content on "
1230
+ #~ "your site and identifies which theme and version of WordPress you are "
1231
+ #~ "using."
1232
+ #~ msgstr ""
1233
+ #~ "<strong>Aperçu des mises à jour</strong> - Affiche un résumé du contenu "
1234
+ #~ "de votre site et identifie le thème et la version de WordPress que vous "
1235
+ #~ "utilisez."
1236
+
1237
+ # @ mainwp
1238
+ #~ msgid ""
1239
+ #~ "<strong>Recent Comments</strong> - Shows the most recent comments on your "
1240
+ #~ "posts (configurable, up to 30) and allows you to moderate them."
1241
+ #~ msgstr ""
1242
+ #~ "<strong>Commentaires récents</strong> - Affiche les commentaires les plus "
1243
+ #~ "récents sur vos articles (configurables, jusqu’à 30) et vous permet de "
1244
+ #~ "les modérer."
1245
+
1246
+ # @ mainwp
1247
+ #~ msgid ""
1248
+ #~ "<strong>Incoming Links</strong> - Shows links to your site found by "
1249
+ #~ "Google Blog Search."
1250
+ #~ msgstr ""
1251
+ #~ "<strong>Liens entrants</ strong> - Affiche des liens vers votre site "
1252
+ #~ "trouvé par Google Blog Search."
1253
+
1254
+ # @ mainwp
1255
+ #~ msgid ""
1256
+ #~ "<strong>QuickPress</strong> - Allows you to create a new post and either "
1257
+ #~ "publish it or save it as a draft."
1258
+ #~ msgstr ""
1259
+ #~ "<strong>Communiqué rapide</ strong> - Permet de créer un nouvel article, "
1260
+ #~ "soit publié ou comme brouillon."
1261
+
1262
+ # @ mainwp
1263
+ #~ msgid ""
1264
+ #~ "<strong>Recent Drafts</strong> - Displays links to the 5 most recent "
1265
+ #~ "draft posts you&#8217;ve started."
1266
+ #~ msgstr ""
1267
+ #~ "<strong>Brouillons récents</strong> - Affiche des liens vers les 5 "
1268
+ #~ "brouillons d’articles les plus récents que vous avez commencé."
1269
+
1270
+ # @ mainwp
1271
+ #~ msgid ""
1272
+ #~ "<strong>WordPress Blog</strong> - Latest news from the official WordPress "
1273
+ #~ "project."
1274
+ #~ msgstr ""
1275
+ #~ "<strong>Blog WordPress</ strong> - Dernières nouvelles du projet officiel "
1276
+ #~ "de WordPress."
1277
+
1278
+ # @ mainwp
1279
+ #~ msgid ""
1280
+ #~ "<strong>Other WordPress News</strong> - Shows the %sWordPress Planet%s "
1281
+ #~ "feed. You can configure it to show a different feed of your choosing."
1282
+ #~ msgstr ""
1283
+ #~ "<strong>Autres Nouvelles WordPress <strong> - Affiche le fil RSS "
1284
+ #~ "%sPlanète WordPress%s. Vous pouvez le configurer pour afficher un autre "
1285
+ #~ "flux de votre choix."
1286
+
1287
+ # @ mainwp
1288
+ #~ msgid ""
1289
+ #~ "<strong>Plugins</strong> - Features the most popular, newest, and "
1290
+ #~ "recently updated plugins from the WordPress.org Plugin Directory."
1291
+ #~ msgstr ""
1292
+ #~ "<strong>Plugins</strong> - Caractéristiques les extensions les plus "
1293
+ #~ "populaires, la plus récente, et récemment mise à jour à partir du "
1294
+ #~ "répertoire des extensions sur WordPress.org."
1295
+
1296
+ # @ mainwp
1297
+ #~ msgid "Content"
1298
+ #~ msgstr "Contenu"
1299
+
1300
+ # @ mainwp
1301
+ #~ msgid "For more information:"
1302
+ #~ msgstr "Pour plus d’information&nbsp;:"
1303
+
1304
+ # @ mainwp
1305
+ #~ msgid "%sDocumentation on Dashboard%s"
1306
+ #~ msgstr "%sDocumentation du tableau de bord%s"
1307
+
1308
+ # @ mainwp
1309
+ #~ msgid "%sSupport Forums%s"
1310
+ #~ msgstr "%sForums du support%s"
1311
+
1312
+ # @ mainwp
1313
+ #~ msgid "The license could not be deactivated."
1314
+ #~ msgstr "La licence ne peut pas être désactivée."
1315
+
1316
+ # @ mainwp
1317
+ #, fuzzy
1318
+ #~| msgid "Theme has been activated"
1319
+ #~ msgid "The extension has been activated. "
1320
+ #~ msgstr "L'extension a bien été activée."
1321
+
1322
+ # @ mainwp
1323
+ #~ msgid "Connection failed to the License Key API server. Try again later."
1324
+ #~ msgstr ""
1325
+ #~ "Échec de la connexion à la clé serveur API de licence. Réessayez plus "
1326
+ #~ "tard."
1327
+
1328
+ # @ mainwp
1329
+ #~ msgid "Extension activated. "
1330
+ #~ msgstr "Extension activée. "
1331
+
1332
+ # @ mainwp
1333
+ #, fuzzy
1334
+ #~| msgid "Connection failed to the License Key API server. Try again later."
1335
+ #~ msgid ""
1336
+ #~ "Connection with the API license server could not be established. Please, "
1337
+ #~ "try again later."
1338
+ #~ msgstr ""
1339
+ #~ "Échec de la connexion à la clé serveur API de licence. Réessayez plus "
1340
+ #~ "tard."
1341
+
1342
+ # @ mainwp
1343
+ #, fuzzy
1344
+ #~| msgid "The license could not be deactivated."
1345
+ #~ msgid "License key could not be found."
1346
+ #~ msgstr "Impossible de trouver la clé de licence."
1347
+
1348
+ # @ mainwp
1349
+ #, fuzzy
1350
+ #~| msgid "Username and Password is required to grab Extension API Key."
1351
+ #~ msgid ""
1352
+ #~ "Username and Password are required in order to grab extensions API keys."
1353
+ #~ msgstr ""
1354
+ #~ "Nom d’utilisateur et mot de passe est nécessaire pour saisir la clé API "
1355
+ #~ "de l’extension."
1356
+
1357
+ # @ mainwp
1358
+ #, fuzzy
1359
+ #~| msgid ""
1360
+ #~| "Invalid Request. Please try to deactivate / re-activate the extension on "
1361
+ #~| "the WP > Plugins page and try to activate again."
1362
+ #~ msgid ""
1363
+ #~ "Invalid request! Please try to deactivate and re-activate the extension "
1364
+ #~ "on the WP > Plugins page and try to activate API key again."
1365
+ #~ msgstr ""
1366
+ #~ "Requête invalide.Merci d’essayer de désactiver / réactiver l’extension "
1367
+ #~ "sur le WP > Page des extensions et activer à nouveau."
1368
+
1369
+ #, fuzzy
1370
+ #~ msgid "Activation error! Matching API key could not be found."
1371
+ #~ msgstr ""
1372
+ #~ "Erreur d'activation&nbsp;! Impossible de trouver la clé API "
1373
+ #~ "correspondante."
1374
+
1375
+ # @ mainwp
1376
+ #, fuzzy
1377
+ #~| msgid ""
1378
+ #~| "Invalid Instance ID. Please try to deactivate / re-activate the "
1379
+ #~| "extension on the WP > Plugins page and try to activate again."
1380
+ #~ msgid ""
1381
+ #~ "Invalid Instance ID! Please try to deactivate and re-activate the "
1382
+ #~ "extension on the WP > Plugins page and try to activate API key again."
1383
+ #~ msgstr ""
1384
+ #~ "ID de sécurité invalide. S’il vous plaît essayer de désactiver / "
1385
+ #~ "réactiver l’extension sur le WP > Page des extensions et activer à "
1386
+ #~ "nouveau."
1387
+
1388
+ # @ mainwp
1389
+ #, fuzzy
1390
+ #~| msgid ""
1391
+ #~| "Your membership is On Hold. Reactivate your membership to activate "
1392
+ #~| "MainWP Extensions"
1393
+ #~ msgid ""
1394
+ #~ "Your membership is on hold. Reactivate your membership to activate MainWP "
1395
+ #~ "extensions"
1396
+ #~ msgstr ""
1397
+ #~ "Votre adhésion est en attente. Réactiver votre adhésion pour activer les "
1398
+ #~ "extensions MAINWP"
1399
+
1400
+ # @ mainwp
1401
+ #, fuzzy
1402
+ #~| msgid ""
1403
+ #~| "Your membership has been Canceled. Reactivate your membership to "
1404
+ #~| "activate MainWP Extensions"
1405
+ #~ msgid ""
1406
+ #~ "Your membership has been canceled. Reactivate your membership to activate "
1407
+ #~ "MainWP extensions"
1408
+ #~ msgstr ""
1409
+ #~ "Votre adhésion a été annulée. Réactiver votre adhésion pour activer les "
1410
+ #~ "extensions MAINWP"
1411
+
1412
+ # @ mainwp
1413
+ #, fuzzy
1414
+ #~| msgid ""
1415
+ #~| "Your membership has Expired. Reactivate your membership to activate "
1416
+ #~| "MainWP Extensions"
1417
+ #~ msgid ""
1418
+ #~ "Your membership has expired. Reactivate your membership to activate "
1419
+ #~ "MainWP extensions"
1420
+ #~ msgstr ""
1421
+ #~ "Votre adhésion a expirée. Réactiver votre adhésion pour activer les "
1422
+ #~ "extensions MainWP"
1423
+
1424
+ # @ mainwp
1425
+ #, fuzzy
1426
+ #~| msgid ""
1427
+ #~| "Your membership is On Hold. Reactivate your membership to install MainWP "
1428
+ #~| "Extensions."
1429
+ #~ msgid ""
1430
+ #~ "Your membership is on hold. Reactivate your membership to install MainWP "
1431
+ #~ "extensions."
1432
+ #~ msgstr ""
1433
+ #~ "Votre adhésion est en attente. Réactiver votre adhésion à installer les "
1434
+ #~ "extensions MAINWP."
1435
+
1436
+ # @ mainwp
1437
+ #, fuzzy
1438
+ #~| msgid ""
1439
+ #~| "Your membership has been Canceled. Reactivate your membership to install "
1440
+ #~| "MainWP Extensions."
1441
+ #~ msgid ""
1442
+ #~ "Your membership has been canceled. Reactivate your membership to install "
1443
+ #~ "MainWP extensions."
1444
+ #~ msgstr ""
1445
+ #~ "Votre adhésion a été annulée. Réactiver votre adhésion à installer les "
1446
+ #~ "extensions MainWP."
1447
+
1448
+ # @ mainwp
1449
+ #, fuzzy
1450
+ #~| msgid ""
1451
+ #~| "Your membership has Expired. Reactivate your membership to install "
1452
+ #~| "MainWP Extensions."
1453
+ #~ msgid ""
1454
+ #~ "Your membership has expired. Reactivate your membership to install MainWP "
1455
+ #~ "extensions."
1456
+ #~ msgstr ""
1457
+ #~ "Votre adhésion a expirée. Réactiver votre adhésion à installer les "
1458
+ #~ "extensions MainWP."
1459
+
1460
+ # @ mainwp
1461
+ #~ msgid ""
1462
+ #~ "Download permission for %s has been revoked possibly due to a license key "
1463
+ #~ "or membership expiring. You can reactivate or purchase a license key from "
1464
+ #~ "your account <a href=\"%s\" target=\"_blank\">dashboard</a>."
1465
+ #~ msgstr ""
1466
+ #~ "L’autorisation de téléchargement de %s a été révoquée peut-être en raison "
1467
+ #~ "d’une clé de licence ou l’adhésion expirée. Vous pouvez réactiver ou "
1468
+ #~ "acheter une clé de licence sur le <a href=\"%s\" target=\"_blank"
1469
+ #~ "\">Tableau de bord</a> de votre compte."
1470
+
1471
+ # @ mainwp
1472
+ #, fuzzy
1473
+ #~| msgid "Trust"
1474
+ #~ msgid "Trusted"
1475
+ #~ msgstr "Premium"
1476
+
1477
+ #, fuzzy
1478
+ #~ msgid "Trying to reconnect WordPress database connection..."
1479
+ #~ msgstr ""
1480
+ #~ "Essayer de reconnecter la connexion à la base de données WordPress ..."
1481
+
1482
+ # @ mainwp
1483
+ #, fuzzy
1484
+ #~| msgid ""
1485
+ #~| "No MainWP Child Plugin detected, first install and activate the plugin "
1486
+ #~| "and add your site to MainWP Dashboard afterwards. If you continue "
1487
+ #~| "experiencing this issue please "
1488
+ #~ msgid ""
1489
+ #~ "MainWP Child plugin not detected! First, install and activate the plugin "
1490
+ #~ "and add your site to your MainWP Dashboard afterwards. If you continue "
1491
+ #~ "experiencing this issue, please "
1492
+ #~ msgstr ""
1493
+ #~ "Aucune extension MainWP client détectée, installez d’abord l’extension et "
1494
+ #~ "activez-la puis ajoutez votre site à MainWP après. Si vous continuez sur "
1495
+ #~ "cette question merci de "
1496
+
1497
+ # @ mainwp
1498
+ #, fuzzy
1499
+ #~| msgid "test your connection %shere%s or "
1500
+ #~ msgid "test the site connection %shere%s or "
1501
+ #~ msgstr "tester votre connexion %sici%s ou "
1502
+
1503
+ # @ mainwp
1504
+ #~ msgid "contact %sMainWP support%s."
1505
+ #~ msgstr "contacter %sle support MainWP%s."
1506
+
1507
+ # @ mainwp
1508
+ #, fuzzy
1509
+ #~| msgid ""
1510
+ #~| "No MainWP Child Plugin detected, first install and activate the plugin "
1511
+ #~| "and add your site to MainWP Dashboard afterwards. If you continue "
1512
+ #~| "experiencing this issue please test your connection or post as much "
1513
+ #~| "information as possible on the error in the support forum (%s)."
1514
+ #~ msgid ""
1515
+ #~ "MainWP Child plugin not detected! First, install and activate the plugin "
1516
+ #~ "and add your site to your MainWP Dashboard afterwards. If you continue "
1517
+ #~ "experiencing this issue, please test the site connection or contact "
1518
+ #~ "MainWP support (%s)."
1519
+ #~ msgstr ""
1520
+ #~ "Pas d’extension MAINWP client détectée, installer d’abord et activer "
1521
+ #~ "l’extension pour ajouter ensuite votre site au Tableau de bord MAINWP. Si "
1522
+ #~ "vous continuez à rencontrez ce problème, testez votre connexion, ou "
1523
+ #~ "postez autant d’informations que possible sur l’erreur dans le forum de "
1524
+ #~ "support (%s)."
1525
+
1526
+ # @ mainwp
1527
+ #~ msgid "update plugins"
1528
+ #~ msgstr "mise à jour extensions"
1529
+
1530
+ # @ mainwp
1531
+ #~ msgid "update themes"
1532
+ #~ msgstr "mise à jour thèmes"
1533
+
1534
+ # @ mainwp
1535
+ #~ msgid "Select sites"
1536
+ #~ msgstr "Sélectionner sites"
1537
+
1538
+ # @ mainwp
1539
+ #~ msgid "Categories"
1540
+ #~ msgstr "Catégories"
1541
+
1542
+ # @ mainwp
1543
+ #~ msgid "Tags"
1544
+ #~ msgstr "Mots-clés"
1545
+
1546
+ # @ mainwp
1547
+ #~ msgid "Slug"
1548
+ #~ msgstr "Slug"
1549
+
1550
+ # @ mainwp
1551
+ #~ msgid "Uncategorized"
1552
+ #~ msgstr "Non catégorisé"
1553
+
1554
+ # @ mainwp
1555
+ #~ msgid "Dismiss"
1556
+ #~ msgstr "Rejeter"
1557
+
1558
+ # @ mainwp
1559
+ #~ msgid "fetchUrlAuthed exception"
1560
+ #~ msgstr "exception fetchUrlAuthed"
1561
+
1562
+ # @ mainwp
1563
+ #~ msgid "Invalid request!"
1564
+ #~ msgstr "Requête invalide&nbsp;!"
1565
+
1566
+ # @ mainwp
1567
+ #, fuzzy
1568
+ #~| msgid "No security issues detected."
1569
+ #~ msgid "No site selected!"
1570
+ #~ msgstr "Aucun site web sélectionné&nbsp;!"
1571
+
1572
+ # @ mainwp
1573
+ #~ msgid "Invalid response!"
1574
+ #~ msgstr "Réponse invalide&nbsp;!"
1575
+
1576
+ # @ mainwp
1577
+ #, fuzzy
1578
+ #~| msgid "Finished"
1579
+ #~ msgid "finished..."
1580
+ #~ msgstr "terminé…"
1581
+
1582
+ # @ mainwp
1583
+ #, fuzzy
1584
+ #~| msgid "Invalid request"
1585
+ #~ msgid "ERROR: Invalid request!"
1586
+ #~ msgstr "ERREUR&nbsp;: requête invalide&nbsp;!"
1587
+
1588
+ # @ mainwp
1589
+ #, fuzzy
1590
+ #~| msgid "Invalid Request"
1591
+ #~ msgid "Invalid URL."
1592
+ #~ msgstr "L&rsquo;URL fournie est invalide"
1593
+
1594
+ # @ mainwp
1595
+ #~ msgid "delete sites"
1596
+ #~ msgstr "supprimer les sites"
1597
+
1598
+ # @ mainwp
1599
+ #, fuzzy
1600
+ #~| msgid "update Wordpress"
1601
+ #~ msgid "update WordPress"
1602
+ #~ msgstr "mettre à jour WordPress"
1603
+
1604
+ # @ mainwp
1605
+ #~ msgid "update translations"
1606
+ #~ msgstr "mettre à jour les traductions"
1607
+
1608
+ #, fuzzy
1609
+ #~ msgid ""
1610
+ #~ "Backup process in progress on the child site. Please, try again later."
1611
+ #~ msgstr ""
1612
+ #~ "Processus de sauvegarde en cours sur le site client. Veuillez réessayer "
1613
+ #~ "plus tard."
1614
+
1615
+ #, fuzzy
1616
+ #~ msgid "Item slug could not be found. Update process could not be executed."
1617
+ #~ msgstr ""
1618
+ #~ "Le définissant de votre élément n'a pas pu être trouvé. Le processus de "
1619
+ #~ "mise à jour n'a pas pu être exécuté."
1620
+
1621
+ # @ mainwp
1622
+ #, fuzzy
1623
+ #~| msgid "ignore/unignor updates"
1624
+ #~ msgid "ignore/unignore updates"
1625
+ #~ msgstr "ignorer/désignorer les mises à jour"
1626
+
1627
+ # @ mainwp
1628
+ #, fuzzy
1629
+ #~| msgid "Invalid request"
1630
+ #~ msgid "Double request!"
1631
+ #~ msgstr "Double requête&nbsp;!"
1632
+
1633
+ # @ mainwp
1634
+ #, fuzzy
1635
+ #~| msgid "This website does not exist"
1636
+ #~ msgid "This website does not exist."
1637
+ #~ msgstr "Ce site web n’existe pas"
1638
+
1639
+ # @ mainwp
1640
+ #~ msgid "You cannot edit this website."
1641
+ #~ msgstr "Vous ne pouvez pas éditer ce site."
1642
+
1643
+ # @ mainwp
1644
+ #~ msgid "HTTP error"
1645
+ #~ msgstr "Erreur HTTP"
1646
+
1647
+ # @ mainwp
1648
+ #, fuzzy
1649
+ #~| msgid "MainWP not detected"
1650
+ #~ msgid "MainWP Child plugin not detected"
1651
+ #~ msgstr "L’extension MainWP client n'est pas détectée"
1652
+
1653
+ # @ mainwp
1654
+ #~ msgid "ERROR: "
1655
+ #~ msgstr "ERREUR&nbsp;: "
1656
+
1657
+ # @ mainwp
1658
+ #, fuzzy
1659
+ #~| msgid ""
1660
+ #~| "Undefined error - please reinstall the MainWP Child plugin on the client"
1661
+ #~ msgid ""
1662
+ #~ "Undefined error! Please, reinstall the MainWP Child plugin on the child "
1663
+ #~ "site."
1664
+ #~ msgstr ""
1665
+ #~ "Erreur non définie - merci de réinstaller l'extension MainWP Client sur "
1666
+ #~ "le site client"
1667
+
1668
+ #, fuzzy
1669
+ #~ msgid ""
1670
+ #~ "You have a MainWP Extension that does not have an active API entered. "
1671
+ #~ "This means you will not receive updates or support. Please visit the "
1672
+ #~ "%sExtensions%s page and enter your API."
1673
+ #~ msgstr ""
1674
+ #~ "Vous avez une extension MainWP qui ne dispose pas d'une API active. Cela "
1675
+ #~ "signifie que vous ne recevrez pas les mises à jour ou l’aide du support. "
1676
+ #~ "Merci de visitez la page %sExtensions%s, et entrez votre API ensuite."
1677
+
1678
+ # @ mainwp
1679
+ #~ msgid "Download icon file failed"
1680
+ #~ msgstr "Le téléchargement du fichier icône a échoué"
1681
+
1682
+ # @ mainwp
1683
+ # @ default
1684
+ #~ msgid "YES"
1685
+ #~ msgstr "Oui"
1686
+
1687
+ # @ mainwp
1688
+ # @ default
1689
+ #~ msgid "NO"
1690
+ #~ msgstr "Non"
1691
+
1692
+ # @ mainwp
1693
+ #, fuzzy
1694
+ #~| msgid "Your settings have been saved."
1695
+ #~ msgid "WordPress SEO values have been saved."
1696
+ #~ msgstr "Vos paramètres ont été sauvegardés."
1697
+
1698
+ # @ mainwp
1699
+ #, fuzzy
1700
+ #~| msgid ""
1701
+ #~| "Using a new WordPress install will help to cut down on Plugin Conflicts "
1702
+ #~| "and other issues that can be caused by trying to run your MainWP Main "
1703
+ #~| "Dashboard off an active site. Most hosting companies provide free "
1704
+ #~| "subdomains %s and we recommend creating one if you do not have a "
1705
+ #~| "specific dedicated domain to run your Network Main Dashboard."
1706
+ #~ msgid ""
1707
+ #~ "Using a new WordPress install will help to cut down on plugin conflicts "
1708
+ #~ "and other issues that can be caused by trying to run your MainWP "
1709
+ #~ "Dashboard off an active site. Most hosting companies provide free "
1710
+ #~ "subdomains %s and we recommend creating one if you do not have a specific "
1711
+ #~ "dedicated domain to run your MainWP Dashboard."
1712
+ #~ msgstr ""
1713
+ #~ "Utilisez une nouvelle installation WordPress pour tenter de réduire les "
1714
+ #~ "conflits d’extensions et d’autres problèmes qui peuvent être causés par "
1715
+ #~ "la tentative d’exécution de votre Tableau de bord principal MAINWP hors "
1716
+ #~ "un site actif. La plupart des entreprises d’hébergement offrent "
1717
+ #~ "gratuitement des sous-domaines %s et nous recommandons sa création si "
1718
+ #~ "vous ne disposez pas d’un domaine spécifique dédié pour faire fonctionner "
1719
+ #~ "votre Tableau de bord principal MAINWP."
1720
+
1721
+ # @ mainwp
1722
+ #~ msgid ""
1723
+ #~ "If you are not sure how to set up a subdomain here is a quick step by "
1724
+ #~ "step with %s, %s or %s. If you are not sure what you have, contact your "
1725
+ #~ "hosting companies support."
1726
+ #~ msgstr ""
1727
+ #~ "Si vous n’êtes pas sûr de savoir comment configurer un sous-domaine voici "
1728
+ #~ "une exemple rapide par étape avec %s, %s ou %s. Si vous n’êtes pas sûr de "
1729
+ #~ "ce que vous faites, contactez le support de votre hébergeur."
1730
+
1731
+ # @ default
1732
+ #~ msgctxt "bulkpost"
1733
+ #~ msgid "Bulkpost"
1734
+ #~ msgstr "Envoi en masse"
1735
+
1736
+ # @ default
1737
+ #~ msgctxt "bulkpost"
1738
+ #~ msgid "Add New"
1739
+ #~ msgstr "Ajouter nouveau"
1740
+
1741
+ # @ default
1742
+ #~ msgctxt "bulkpost"
1743
+ #~ msgid "Add New Bulkpost"
1744
+ #~ msgstr "Ajouter un envoi en masse"
1745
+
1746
+ # @ default
1747
+ #~ msgctxt "bulkpost"
1748
+ #~ msgid "Edit Bulkpost"
1749
+ #~ msgstr "Étier envoi en masse"
1750
+
1751
+ # @ default
1752
+ #~ msgctxt "bulkpost"
1753
+ #~ msgid "New Bulkpost"
1754
+ #~ msgstr "Nouvel envoi en masse"
1755
+
1756
+ # @ default
1757
+ #~ msgctxt "bulkpost"
1758
+ #~ msgid "View Bulkpost"
1759
+ #~ msgstr "Voir l’envoi en masse"
1760
+
1761
+ # @ default
1762
+ #~ msgctxt "bulkpost"
1763
+ #~ msgid "Search Bulkpost"
1764
+ #~ msgstr "Rechercher envoi en masse"
1765
+
1766
+ # @ default
1767
+ #~ msgctxt "bulkpost"
1768
+ #~ msgid "No bulkpost found"
1769
+ #~ msgstr "Aucun envoi en masse trouvé"
1770
+
1771
+ # @ default
1772
+ #~ msgctxt "bulkpost"
1773
+ #~ msgid "No bulkpost found in Trash"
1774
+ #~ msgstr "Aucun envoi en masse trouvé dans la corbeille"
1775
+
1776
+ # @ default
1777
+ #~ msgctxt "bulkpost"
1778
+ #~ msgid "Parent Bulkpost:"
1779
+ #~ msgstr "Parent de l’envoi en masse&nbsp;:"
1780
+
1781
+ # @ default
1782
+ #~ msgctxt "bulkpage"
1783
+ #~ msgid "Bulkpage"
1784
+ #~ msgstr "Page de vrac"
1785
+
1786
+ # @ default
1787
+ #~ msgctxt "bulkpage"
1788
+ #~ msgid "Add New"
1789
+ #~ msgstr "Ajouter nouvelle"
1790
+
1791
+ # @ default
1792
+ #~ msgctxt "bulkpage"
1793
+ #~ msgid "Add New Bulkpage"
1794
+ #~ msgstr "Ajouter une nouvelle page de vrac"
1795
+
1796
+ # @ default
1797
+ #~ msgctxt "bulkpage"
1798
+ #~ msgid "Edit Bulkpage"
1799
+ #~ msgstr "Éditer page en vrac"
1800
+
1801
+ # @ default
1802
+ #~ msgctxt "bulkpage"
1803
+ #~ msgid "New Bulkpage"
1804
+ #~ msgstr "Nouvelle page en vrac"
1805
+
1806
+ # @ default
1807
+ #~ msgctxt "bulkpage"
1808
+ #~ msgid "View Bulkpage"
1809
+ #~ msgstr "Voir la page en vrac"
1810
+
1811
+ # @ default
1812
+ #~ msgctxt "bulkpage"
1813
+ #~ msgid "Search Bulkpage"
1814
+ #~ msgstr "Rechercher une page en vrac"
1815
+
1816
+ # @ default
1817
+ #~ msgctxt "bulkpage"
1818
+ #~ msgid "No bulkpage found"
1819
+ #~ msgstr "Aucune page en vrac trouvée"
1820
+
1821
+ # @ default
1822
+ #~ msgctxt "bulkpage"
1823
+ #~ msgid "No bulkpage found in Trash"
1824
+ #~ msgstr "Aucune page en vrac trouvée dans la corbeille"
1825
+
1826
+ # @ default
1827
+ #~ msgctxt "bulkpage"
1828
+ #~ msgid "Parent Bulkpage:"
1829
+ #~ msgstr "Parent de la page en vrac&nbsp;:"
1830
+
1831
+ # @ mainwp
1832
+ #~ msgid "First Steps with MainWP"
1833
+ #~ msgstr "Premières étapes avec MainWP"
1834
+
1835
+ # @ mainwp
1836
+ #, fuzzy
1837
+ #~| msgid "Get New Extensions"
1838
+ #~ msgid "First Steps with Extensions"
1839
+ #~ msgstr "Premières étapes avec les extensions"
1840
+
1841
+ # @ mainwp
1842
+ #~ msgid "User Interface"
1843
+ #~ msgstr "Interface utilisateur"
1844
+
1845
+ # @ mainwp
1846
+ #, fuzzy
1847
+ #~| msgid "Manage Users"
1848
+ #~ msgid "Manage Updates"
1849
+ #~ msgstr "Gérer les mises à jour"
1850
+
1851
+ # @ mainwp
1852
+ #~ msgid "Manage Sites"
1853
+ #~ msgstr "Gestion Sites"
1854
+
1855
+ # @ mainwp
1856
+ #~ msgid "Manage Posts"
1857
+ #~ msgstr "Gestions articles"
1858
+
1859
+ # @ mainwp
1860
+ #~ msgid "Manage Pages"
1861
+ #~ msgstr "Gestion des pages"
1862
+
1863
+ # @ mainwp
1864
+ #~ msgid "Manage Plugins"
1865
+ #~ msgstr "Gestions extensions"
1866
+
1867
+ # @ mainwp
1868
+ #~ msgid "Manage Themes"
1869
+ #~ msgstr "Gestion des Thèmes"
1870
+
1871
+ # @ mainwp
1872
+ #~ msgid "Manage Users"
1873
+ #~ msgstr "Gestion utilisateurs"
1874
+
1875
+ #, fuzzy
1876
+ #~ msgid "Troubleshooting"
1877
+ #~ msgstr "Dépannage"
1878
+
1879
+ #, fuzzy
1880
+ #~ msgid "Additional Help:"
1881
+ #~ msgstr "Aide supplémentaire&nbsp;:"
1882
+
1883
+ # @ mainwp
1884
+ #~ msgid "MainWP Documentation"
1885
+ #~ msgstr "Documentation MainWP"
1886
+
1887
+ # @ mainwp
1888
+ #, fuzzy
1889
+ #~| msgid "MainWP Suppor"
1890
+ #~ msgid "MainWP Support"
1891
+ #~ msgstr "Support MainWP"
1892
+
1893
+ #, fuzzy
1894
+ #~ msgid "MainWP Users Facebook Group"
1895
+ #~ msgstr "Groupe Facebook des utilisateurs MainWP"
1896
+
1897
+ # @ mainwp
1898
+ #~ msgid "Currently managing "
1899
+ #~ msgstr "Actuellement en gestion "
1900
+
1901
+ # @ mainwp
1902
+ #~ msgid " child sites with MainWP "
1903
+ #~ msgstr " sites clients avec MainWP "
1904
+
1905
+ # @ mainwp
1906
+ #~ msgid " version. "
1907
+ #~ msgstr " version. "
1908
+
1909
+ # @ default
1910
+ # @ mainwp
1911
+ #~ msgid "Close"
1912
+ #~ msgstr "Fermer"
1913
+
1914
+ #, fuzzy
1915
+ #~ msgid "Need help getting started?"
1916
+ #~ msgstr "Besoin d'aide pour démarrer&nbsp;? "
1917
+
1918
+ #~ msgid "Start the Tour!"
1919
+ #~ msgstr "Commencez la présentation&nbsp;!"
1920
+
1921
+ # @ mainwp
1922
+ #, fuzzy
1923
+ #~| msgid ""
1924
+ #~| "Forces your Dashboard to reconnect with your Child sites. This feature "
1925
+ #~| "will log out any currently logged in users on the Child sites and "
1926
+ #~| "require them to re-log in. Only needed if suggested by MainWP Support."
1927
+ #~ msgid ""
1928
+ #~ "Use this button to log out any currently logged in users on your child "
1929
+ #~ "sites and require them to re-log in. Use only if suggested by MainWP "
1930
+ #~ "Support team."
1931
+ #~ msgstr ""
1932
+ #~ "Forcer votre tableau de bord à ce reconnecter aux sites clients. Cette "
1933
+ #~ "fonctionnalité déconnecte tous les utilisateurs actuellement connectés "
1934
+ #~ "sur les sites clients et les obliger à se reconnecter. Seulement "
1935
+ #~ "nécessaire si suggéré par le support MainWP."
1936
+
1937
+ # @ mainwp
1938
+ #~ msgid "Scans each site individually for known issues."
1939
+ #~ msgstr ""
1940
+ #~ "Analyser chaque site individuellement pour rechercher les problèmes "
1941
+ #~ "connus."
1942
+
1943
+ #, fuzzy
1944
+ #~ msgid ""
1945
+ #~ "Click this button if you want to initiate the MainWP Quick Start Wizard."
1946
+ #~ msgstr ""
1947
+ #~ "Cliquez sur ce bouton si vous souhaitez lancer l'assistant de démarrage "
1948
+ #~ "rapide de MainWP."
1949
+
1950
+ #, fuzzy
1951
+ #~ msgid "Click the button to save changes."
1952
+ #~ msgstr "Cliquez sur le bouton pour enregistrer les modifications."
1953
+
1954
+ # @ mainwp
1955
+ #, fuzzy
1956
+ #~| msgid ""
1957
+ #~| "Maximum simultaneous requests. When too many requests are sent out, they "
1958
+ #~| "will begin to time out. This will cause child sites to be shown as "
1959
+ #~| "offline while they are online. With a typical shared host you should set "
1960
+ #~| "this at 4, set to 0 for unlimited."
1961
+ #~ msgid ""
1962
+ #~ "If too many requests are sent out, they will begin to time out. This "
1963
+ #~ "causes your child sites to be shown as offline while they are up and "
1964
+ #~ "running."
1965
+ #~ msgstr ""
1966
+ #~ "Maximum de demandes simultanées. Lorsque trop de demandes sont envoyées, "
1967
+ #~ "ils vont commencer à expirer. Cela entraînera les sites clients à être "
1968
+ #~ "perçus comme déconnecté pendant qu’ils sont en ligne. Avec un hébergement "
1969
+ #~ "mutualisé, vous devriez régler à 4, avec 0 c’est illimité."
1970
+
1971
+ #, fuzzy
1972
+ #~ msgid ""
1973
+ #~ "This option allows you to control minimum time delay between two requests."
1974
+ #~ msgstr ""
1975
+ #~ "Cette option vous permet de contrôler le délai minimum entre deux "
1976
+ #~ "requêtes."
1977
+
1978
+ #, fuzzy
1979
+ #~ msgid ""
1980
+ #~ "Maximum simultaneous sync requests. When too many requests are sent to "
1981
+ #~ "the backend some hosts will block the requests."
1982
+ #~ msgstr ""
1983
+ #~ "Maximum de demandes de synchronisation simultanées. Lorsque trop de "
1984
+ #~ "demandes sont envoyées au serveur certains hôtes vont bloquer les "
1985
+ #~ "demandes."
1986
+
1987
+ #, fuzzy
1988
+ #~ msgid ""
1989
+ #~ "Minimum simultaneous install/update requests. When too many requests are "
1990
+ #~ "sent to the backend some hosts will block the requests."
1991
+ #~ msgstr ""
1992
+ #~ "Minimum d’installations / demandes de mise à jour simultanées. Lorsque "
1993
+ #~ "trop de demandes sont envoyées au serveur certains hôtes vont bloquer les "
1994
+ #~ "demandes."
1995
+
1996
+ # @ mainwp
1997
+ #~ msgid "Here you can see globally ignored themes."
1998
+ #~ msgstr "Ici, vous pouvez voir des thèmes globalement ignorés."
1999
+
2000
+ #, fuzzy
2001
+ #~ msgid "Locate the theme you want to unignore."
2002
+ #~ msgstr "Recherchez le thème que vous souhaitez désignorer."
2003
+
2004
+ #, fuzzy
2005
+ #~ msgid "Click the Allow button for the theme to unignore it."
2006
+ #~ msgstr "Cliquez sur le bouton Autoriser pour que le thème l'ignore."
2007
+
2008
+ # @ mainwp
2009
+ #~ msgid "Here you can see globally ignored abandoned themes."
2010
+ #~ msgstr "Ici, vous pouvez voir des thèmes abandonnés et globalement ignorés."
2011
+
2012
+ # @ mainwp
2013
+ #~ msgid "Here you can see globally ignored plugins."
2014
+ #~ msgstr "Vous pouvez voir ici les extensions globalement ignorées."
2015
+
2016
+ #, fuzzy
2017
+ #~ msgid "Locate the plugin you want to unignore."
2018
+ #~ msgstr "Recherchez l’extension que vous souhaitez désignorer."
2019
+
2020
+ #, fuzzy
2021
+ #~ msgid "Click the Allow button for the plugin to unignore it."
2022
+ #~ msgstr ""
2023
+ #~ "Cliquez sur le bouton Autoriser pour l’extension pour le désactiver."
2024
+
2025
+ # @ mainwp
2026
+ #~ msgid "Here you can see globally ignored abandoned plugins."
2027
+ #~ msgstr ""
2028
+ #~ "Ici, vous pouvez voir les extensions abandonnées et globalement ignorées."
2029
+
2030
+ #, fuzzy
2031
+ #~ msgid "Click the button to verify your login details."
2032
+ #~ msgstr "Cliquez sur le bouton pour vérifier vos informations de connexion."
2033
+
2034
+ #, fuzzy
2035
+ #~ msgid "Click the button to see your extensions"
2036
+ #~ msgstr "Cliquez sur le bouton pour afficher vos extensions"
2037
+
2038
+ # @ mainwp
2039
+ #, fuzzy
2040
+ #~| msgid "Click the Sync Data button to get the latest data from child sites."
2041
+ #~ msgid "Click this button to start the installation process."
2042
+ #~ msgstr ""
2043
+ #~ "Cliquez sur le bouton de synchronisation pour obtenir les dernières "
2044
+ #~ "données de sites clients."
2045
+
2046
+ #, fuzzy
2047
+ #~ msgid ""
2048
+ #~ "Click this button to grab your API keys and activate your extensions."
2049
+ #~ msgstr ""
2050
+ #~ "Cliquez sur ce bouton pour saisir vos clés d'API et activer vos "
2051
+ #~ "extensions."
2052
+
2053
+ # @ mainwp
2054
+ #, fuzzy
2055
+ #~| msgid "Get New Extensions"
2056
+ #~ msgid "Use your extensions."
2057
+ #~ msgstr "Utilisez vos extensions."
2058
+
2059
+ # @ mainwp
2060
+ #, fuzzy
2061
+ #~| msgid "Set to YES if you want to use Child Site Favicon."
2062
+ #~ msgid "Set to YES if you want to hide the footer bar."
2063
+ #~ msgstr ""
2064
+ #~ "Régler sur OUI si vous souhaitez utiliser le favicon du site client."
2065
+
2066
+ # @ mainwp
2067
+ #, fuzzy
2068
+ #~| msgid "Set to YES if you want to use Child Site Favicon."
2069
+ #~ msgid ""
2070
+ #~ "Set to YES if you want to see child site favicons in your MainWP "
2071
+ #~ "Dashboard."
2072
+ #~ msgstr ""
2073
+ #~ "Régler sur OUI si vous souhaitez utiliser le favicon du site client."
2074
+
2075
+ # @ mainwp
2076
+ #, fuzzy
2077
+ #~| msgid "Set to YES if you want to use Child Site Favicon."
2078
+ #~ msgid "Set to YES if you want to hide MainWP Tips."
2079
+ #~ msgstr ""
2080
+ #~ "Régler sur OUI si vous souhaitez utiliser le favicon du site client."
2081
+
2082
+ # @ mainwp
2083
+ #, fuzzy
2084
+ #~| msgid "Set to YES if you want to use Child Site Favicon."
2085
+ #~ msgid "Set to YES if you want to hide suggestions for Twiiter messages."
2086
+ #~ msgstr ""
2087
+ #~ "Régler sur OUI si vous souhaitez utiliser le favicon du site client."
2088
+
2089
+ #, fuzzy
2090
+ #~ msgid "Click the button to save your changes."
2091
+ #~ msgstr "Cliquez sur le bouton pour enregistrer vos modifications."
2092
+
2093
+ #, fuzzy
2094
+ #~ msgid ""
2095
+ #~ "If enabled, MainWP Dashboard will cache updates for faster loading. "
2096
+ #~ "Because of this, it is required to sync your MainWP Dashboard manually "
2097
+ #~ "before performing updates."
2098
+ #~ msgstr ""
2099
+ #~ "Si cette option est activée, le tableau de bord MainWP stocke les mises à "
2100
+ #~ "jour pour un chargement plus rapide. De ce fait, il est nécessaire de "
2101
+ #~ "synchroniser manuellement votre tableau de bord MainWP avant d'effectuer "
2102
+ #~ "les mises à jour."
2103
+
2104
+ # @ mainwp
2105
+ #, fuzzy
2106
+ #~| msgid "Enter Your Email Address"
2107
+ #~ msgid "Add your email address here."
2108
+ #~ msgstr "Saisir votre adresse courriel ici."
2109
+
2110
+ #, fuzzy
2111
+ #~ msgid ""
2112
+ #~ "If enabled, this feature checks if there are available language pack "
2113
+ #~ "updates on your child sites. The available updates will show in the "
2114
+ #~ "Update Overview widget on the MainWP > Dashboard page."
2115
+ #~ msgstr ""
2116
+ #~ "Si cette option est activée, cette fonctionnalité vérifie s'il existe des "
2117
+ #~ "mises à jour de pack de langues disponibles sur vos sites clients. Les "
2118
+ #~ "mises à jour disponibles s'affichent dans le widget Aperçu des mises à "
2119
+ #~ "jour sur la page MainWP > Tableau de bord."
2120
+
2121
+ # @ mainwp
2122
+ #, fuzzy
2123
+ #~| msgid ""
2124
+ #~| "In case the plugin or theme author didn't release an update for the set "
2125
+ #~| "number of days, the plugin/theme will be marked and Possibly Abandoned."
2126
+ #~ msgid ""
2127
+ #~ "In case a plugin or theme author didn't release an update for the set "
2128
+ #~ "number of days, the plugin/theme will be marked as Possibly Abandoned. "
2129
+ #~ "The list of possibly abandoned plugins and themes can be found in the "
2130
+ #~ "Update Overview widget on the MainWP > Overview page."
2131
+ #~ msgstr ""
2132
+ #~ "Dans le cas où l’auteur d’un thème ou d’une extension n'a pas publié une "
2133
+ #~ "mise à jour pour le nombre défini de jours, le thème ou l’extension sera "
2134
+ #~ "marqué comme « Peut être abandonné ». La liste des extensions et thèmes "
2135
+ #~ "éventuellement abandonnés se trouve dans le widget Vue d'ensemble des "
2136
+ #~ "mises à jour sur la page MainWP > Vue d'ensemble."
2137
+
2138
+ #, fuzzy
2139
+ #~ msgid "Select your child sites where you want to install the theme."
2140
+ #~ msgstr ""
2141
+ #~ "Sélectionnez les sites clients sur lesquels vous souhaitez installer le "
2142
+ #~ "thème."
2143
+
2144
+ # @ mainwp
2145
+ #, fuzzy
2146
+ #~| msgid "Click the Sync Data button to get the latest data from child sites."
2147
+ #~ msgid "Click the button to start the installation process."
2148
+ #~ msgstr ""
2149
+ #~ "Cliquez sur le bouton de synchronisation pour obtenir les dernières "
2150
+ #~ "données de sites clients."
2151
+
2152
+ #, fuzzy
2153
+ #~ msgid "Click the Upload Now button and upload your theme in zip format"
2154
+ #~ msgstr ""
2155
+ #~ "Cliquez sur le bouton Télécharger maintenant et téléchargez votre thème "
2156
+ #~ "en format zip"
2157
+
2158
+ #, fuzzy
2159
+ #~ msgid ""
2160
+ #~ "Enable the Automatic Updates by selecting the Install trusted updates "
2161
+ #~ "option"
2162
+ #~ msgstr ""
2163
+ #~ "Activez les mises à jour automatiques en sélectionnant l'option Installer "
2164
+ #~ "les mises à jour approuvées"
2165
+
2166
+ #, fuzzy
2167
+ #~ msgid "Click the button to save settings."
2168
+ #~ msgstr "Cliquez sur le bouton pour enregistrer les paramètres."
2169
+
2170
+ # @ mainwp
2171
+ #, fuzzy
2172
+ #~| msgid "Click the Sync Data button to get the latest data from child sites."
2173
+ #~ msgid "Click the button to start the search."
2174
+ #~ msgstr ""
2175
+ #~ "Cliquez sur le bouton de synchronisation pour obtenir les dernières "
2176
+ #~ "données de sites clients."
2177
+
2178
+ # @ mainwp
2179
+ #, fuzzy
2180
+ #~| msgid "Click the Sync Data button to get the latest data from child sites."
2181
+ #~ msgid "Click the button to complete the process."
2182
+ #~ msgstr ""
2183
+ #~ "Cliquez sur le bouton de synchronisation pour obtenir les dernières "
2184
+ #~ "données de sites clients."
2185
+
2186
+ #, fuzzy
2187
+ #~ msgid "Select your child sites where you want to install the plugin."
2188
+ #~ msgstr ""
2189
+ #~ "Sélectionnez les sites clients sur lesquels vous souhaitez installer "
2190
+ #~ "l’extension."
2191
+
2192
+ #, fuzzy
2193
+ #~ msgid "Click the Upload Now button and upload your plugin in zip format"
2194
+ #~ msgstr ""
2195
+ #~ "Cliquez sur le bouton Télécharger maintenant et téléchargez votre "
2196
+ #~ "extension au format zip"
2197
+
2198
+ #, fuzzy
2199
+ #~ msgid ""
2200
+ #~ "Enable the Automatic Updates by selecting the Install trusted updates "
2201
+ #~ "option\"."
2202
+ #~ msgstr ""
2203
+ #~ "Activer les mises à jour automatiques en sélectionnant l'option "
2204
+ #~ "« Installer les mises à jour approuvées »."
2205
+
2206
+ #, fuzzy
2207
+ #~ msgid "Set the Post Title"
2208
+ #~ msgstr "Définir le titre de l’article"
2209
+
2210
+ #, fuzzy
2211
+ #~ msgid "Set the Post Tags (optional)"
2212
+ #~ msgstr "Définir les mots-clés de l’article (facultatif)"
2213
+
2214
+ #, fuzzy
2215
+ #~ msgid "Click the Publish button"
2216
+ #~ msgstr "Cliquez sur le bouton Publier"
2217
+
2218
+ #, fuzzy
2219
+ #~ msgid "Set the Page Content"
2220
+ #~ msgstr "Définir le contenu de la page"
2221
+
2222
+ # @ mainwp
2223
+ #~ msgid "Click here to create a new group"
2224
+ #~ msgstr "Cliquez ici pour créer un nouveau groupe"
2225
+
2226
+ #, fuzzy
2227
+ #~ msgid "Enter the name and click the Save action."
2228
+ #~ msgstr "Saisir le nom et cliquer pour sauvegarder l’action."
2229
+
2230
+ #, fuzzy
2231
+ #~ msgid "Select your websites that you want to add to the group."
2232
+ #~ msgstr "Sélectionnez les sites Web que vous souhaitez ajouter au groupe."
2233
+
2234
+ #, fuzzy
2235
+ #~ msgid "Upload the preformated CSV file."
2236
+ #~ msgstr "Importez le fichier CSV préformaté."
2237
+
2238
+ # @ mainwp
2239
+ #, fuzzy
2240
+ #~| msgid "Click the Sync Data button to get the latest data from child sites."
2241
+ #~ msgid "Click the button to start the process."
2242
+ #~ msgstr ""
2243
+ #~ "Cliquez sur le bouton de synchronisation pour obtenir les dernières "
2244
+ #~ "données de sites clients."
2245
+
2246
+ # @ mainwp
2247
+ #, fuzzy
2248
+ #~| msgid "Manage your WordPress sites with ease."
2249
+ #~ msgid "Enter your WordPress site URL"
2250
+ #~ msgstr "Entrez l'URL du site WordPress"
2251
+
2252
+ # @ mainwp
2253
+ #, fuzzy
2254
+ #~| msgid ""
2255
+ #~| "If your Child Site is protected with HTTP basic authentication, please "
2256
+ #~| "set the username and password for authentication here."
2257
+ #~ msgid ""
2258
+ #~ "In case your website is protected with the HTTP Basic Authentication, "
2259
+ #~ "enter your HTTP username"
2260
+ #~ msgstr ""
2261
+ #~ "Si votre site client est protégé par l’authentification HTTP de base, "
2262
+ #~ "merci de définir le nom d’utilisateur et mot de passe pour "
2263
+ #~ "l’authentification ici."
2264
+
2265
+ # @ mainwp
2266
+ #, fuzzy
2267
+ #~| msgid ""
2268
+ #~| "If your Child Site is protected with HTTP basic authentication, please "
2269
+ #~| "set the username and password for authentication here."
2270
+ #~ msgid ""
2271
+ #~ "In case your website is protected with the HTTP Basic Authentication, "
2272
+ #~ "enter your HTTP password"
2273
+ #~ msgstr ""
2274
+ #~ "Si votre site client est protégé par l’authentification HTTP de base, "
2275
+ #~ "merci de définir le nom d’utilisateur et mot de passe pour "
2276
+ #~ "l’authentification ici."
2277
+
2278
+ #, fuzzy
2279
+ #~ msgid "See the last sync time or use the provided action to sync the site."
2280
+ #~ msgstr ""
2281
+ #~ "Voir la dernière heure de synchronisation ou utiliser l'action fournie "
2282
+ #~ "pour synchroniser le site."
2283
+
2284
+ #, fuzzy
2285
+ #~ msgid "See in which group(s) this site is."
2286
+ #~ msgstr "Voir dans quel(s) groupe(s) ce site est."
2287
+
2288
+ #, fuzzy
2289
+ #~ msgid ""
2290
+ #~ "See time and date of the last post for the child site or use the provided "
2291
+ #~ "action to quickly post an article to the child site."
2292
+ #~ msgstr ""
2293
+ #~ "Consultez l'heure et la date du dernier message pour le site client ou "
2294
+ #~ "utilisez l'action fournie pour publier rapidement un article sur le site "
2295
+ #~ "client."
2296
+
2297
+ # @ mainwp
2298
+ #, fuzzy
2299
+ #~| msgid "Click the Sync Data button to get the latest data from child sites."
2300
+ #~ msgid "Click the Open link to add notes for the child site."
2301
+ #~ msgstr ""
2302
+ #~ "Cliquez sur le bouton de synchronisation pour obtenir les dernières "
2303
+ #~ "données de sites clients."
2304
+
2305
+ #, fuzzy
2306
+ #~ msgid ""
2307
+ #~ "Bulk actions menu allows you to perform updates, delete sites, reconnect "
2308
+ #~ "sites or sync sites in bulk."
2309
+ #~ msgstr ""
2310
+ #~ "Le menu Actions en bloc vous permet d'effectuer des mises à jour, de "
2311
+ #~ "supprimer des sites, de reconnecter des sites ou de synchroniser des "
2312
+ #~ "sites en vrac."
2313
+
2314
+ #, fuzzy
2315
+ #~ msgid ""
2316
+ #~ "If you are looking for a specific site, enter it' friendly name or the "
2317
+ #~ "URL here and click the Search Sites button."
2318
+ #~ msgstr ""
2319
+ #~ "Si vous êtes à la recherche d'un site spécifique, entrez-en un nom ou "
2320
+ #~ "l'URL ici et cliquez sur le bouton Rechercher des sites."
2321
+
2322
+ #, fuzzy
2323
+ #~ msgid ""
2324
+ #~ "Quickly select if you want to see updates per Site, Plugin/Theme or Group."
2325
+ #~ msgstr ""
2326
+ #~ "Sélectionnez rapidement si vous souhaitez afficher les mises à jour par "
2327
+ #~ "site web, extension / thème ou groupe."
2328
+
2329
+ #, fuzzy
2330
+ #~ msgid ""
2331
+ #~ "See all availabe updates. To see details about available updates you can "
2332
+ #~ "use provided links to drill down through lists and update plugins/thmees "
2333
+ #~ "individully."
2334
+ #~ msgstr ""
2335
+ #~ "Voir toutes les mises à jour disponibles. Pour obtenir des détails sur "
2336
+ #~ "les mises à jour disponibles, vous pouvez utiliser les liens fournis pour "
2337
+ #~ "parcourir les listes et mettre à jour les extensions / thèmes "
2338
+ #~ "individuellement."
2339
+
2340
+ #, fuzzy
2341
+ #~ msgid "Click the link to see the list of all availabe updates."
2342
+ #~ msgstr ""
2343
+ #~ "Cliquez sur le lien pour afficher la liste de toutes les mises à jour "
2344
+ #~ "disponibles."
2345
+
2346
+ #, fuzzy
2347
+ #~ msgid ""
2348
+ #~ "The Welcome Widget provides you a quick information about sites "
2349
+ #~ "synchronization."
2350
+ #~ msgstr ""
2351
+ #~ "Le widget Bienvenue vous fournit une information rapide sur la "
2352
+ #~ "synchronisation des sites."
2353
+
2354
+ #, fuzzy
2355
+ #~ msgid ""
2356
+ #~ "Trigger the synchronization process which will load fresh data from your "
2357
+ #~ "Child Sites."
2358
+ #~ msgstr ""
2359
+ #~ "Déclenchez la synchronisation qui va charger les nouvelles données de vos "
2360
+ #~ "sites clients."
2361
+
2362
+ #, fuzzy
2363
+ #~ msgid "Expand the widget to see helpful shortcuts."
2364
+ #~ msgstr "Développez le widget pour afficher des raccourcis utiles."
2365
+
2366
+ #, fuzzy
2367
+ #~ msgid ""
2368
+ #~ "The Overview widget provides you a quick snapshot of your child sites. "
2369
+ #~ "Here you can see all available updates and update Plugins, Themes and "
2370
+ #~ "WordPress core files."
2371
+ #~ msgstr ""
2372
+ #~ "Le widget Vue d'ensemble vous fournit un instantané rapide de vos sites "
2373
+ #~ "clients. Ici vous pouvez voir toutes les mises à jour disponibles et "
2374
+ #~ "mettre à jour les extensions, les thèmes et les fichiers de base de "
2375
+ #~ "WordPress."
2376
+
2377
+ #, fuzzy
2378
+ #~ msgid ""
2379
+ #~ "See all available updates. To see details about available updates you can "
2380
+ #~ "use provided links to drill down through lists and update plugins/themes "
2381
+ #~ "individually."
2382
+ #~ msgstr ""
2383
+ #~ "Voir toutes les mises à jour disponibles. Pour obtenir des détails sur "
2384
+ #~ "les mises à jour disponibles, vous pouvez utiliser les liens fournis pour "
2385
+ #~ "parcourir les listes et mettre à jour les extensions / thèmes "
2386
+ #~ "individuellement."
2387
+
2388
+ #, fuzzy
2389
+ #~ msgid "Click the link to see the list of all available updates."
2390
+ #~ msgstr ""
2391
+ #~ "Cliquez sur le lien pour afficher la liste de toutes les mises à jour "
2392
+ #~ "disponibles."
2393
+
2394
+ #, fuzzy
2395
+ #~ msgid ""
2396
+ #~ "The navigation at the top of the widget, allows you to toggle between "
2397
+ #~ "Page Statuses."
2398
+ #~ msgstr ""
2399
+ #~ "La navigation en haut du widget vous permet de basculer entre les états "
2400
+ #~ "de page."
2401
+
2402
+ #, fuzzy
2403
+ #~ msgid ""
2404
+ #~ "The right column provides you a button to Fix All security issues on the "
2405
+ #~ "Child Site."
2406
+ #~ msgstr ""
2407
+ #~ "La colonne de droite vous fournit un bouton pour résoudre tous les "
2408
+ #~ "problèmes de sécurité sur le site client."
2409
+
2410
+ # @ mainwp
2411
+ #, fuzzy
2412
+ #~| msgid "%d Installed MainWP Extension"
2413
+ #~| msgid_plural "%d Installed MainWP Extensions"
2414
+ #~ msgid "This widget will show all installed MainWP Extensions."
2415
+ #~ msgstr "Ce widget affichera toutes les extensions MainWP installées."
2416
+
2417
+ # @ mainwp
2418
+ #, fuzzy
2419
+ #~| msgid "Please enter Admin name of the site."
2420
+ #~ msgid "Enter the first name of the user."
2421
+ #~ msgstr "Entrez le prénom de l'utilisateur."
2422
+
2423
+ # @ mainwp
2424
+ #, fuzzy
2425
+ #~| msgid "Please enter Admin name of the site."
2426
+ #~ msgid "Enter the last name of the user."
2427
+ #~ msgstr "Entrez le nom de l'utilisateur."
2428
+
2429
+ # @ mainwp
2430
+ #, fuzzy
2431
+ #~| msgid "Send this password to the new user by email."
2432
+ #~ msgid "Set a password for the user."
2433
+ #~ msgstr "Envoyer le mot de passe pour le nouvel utilisateur par courriel."
2434
+
2435
+ #, fuzzy
2436
+ #~ msgid "Set a role for this user."
2437
+ #~ msgstr "Définissez un rôle pour cet utilisateur."
2438
+
2439
+ # @ mainwp
2440
+ #, fuzzy
2441
+ #~| msgid ""
2442
+ #~| "Please select the sites or groups where you want to change the admin "
2443
+ #~| "password."
2444
+ #~ msgid "Select child sites where you want to create this user"
2445
+ #~ msgstr ""
2446
+ #~ "Merci de sélectionner les sites ou groupes où vous voulez changer le mot "
2447
+ #~ "de passe admin."
2448
+
2449
+ #, fuzzy
2450
+ #~ msgid "Click this button to create the user."
2451
+ #~ msgstr "Cliquez sur ce bouton pour créer l'utilisateur."
2452
+
2453
+ # @ mainwp
2454
+ #, fuzzy
2455
+ #~| msgid "Please enter the password twice."
2456
+ #~ msgid "Here, you can update the password for this user."
2457
+ #~ msgstr "Merci de saisir le mot de passe 2 fois."
2458
+
2459
+ # @ mainwp
2460
+ #, fuzzy
2461
+ #~| msgid "Please enter the password."
2462
+ #~ msgid "Set a new password."
2463
+ #~ msgstr "Définir un nouveau mot de passe."
2464
+
2465
+ # @ mainwp
2466
+ #~ msgid "Select your child sites."
2467
+ #~ msgstr "Sélectionnez vos sites clients."
2468
+
2469
+ # @ mainwp
2470
+ #, fuzzy
2471
+ #~| msgid ""
2472
+ #~| "To search users by role, select wanted roles, select sites and click the "
2473
+ #~| "Show Users button."
2474
+ #~ msgid "If you want to search users by role, select wanted roles here."
2475
+ #~ msgstr ""
2476
+ #~ "Pour rechercher des utilisateurs par rôle, sélectionnez les rôles "
2477
+ #~ "recherchés, sélectionner les sites et cliquez sur le bouton \"Afficher "
2478
+ #~ "les utilisateurs\"."
2479
+
2480
+ # @ mainwp
2481
+ #, fuzzy
2482
+ #~| msgid "Select Child Site: "
2483
+ #~ msgid "Select your child sites here."
2484
+ #~ msgstr "Sélectionnez vos sites clients ici."
2485
+
2486
+ # @ mainwp
2487
+ #, fuzzy
2488
+ #~| msgid "Click the Sync Data button to get the latest data from child sites."
2489
+ #~ msgid "Click the button to start the search process."
2490
+ #~ msgstr ""
2491
+ #~ "Cliquez sur le bouton de synchronisation pour obtenir les dernières "
2492
+ #~ "données de sites clients."
2493
+
2494
+ #, fuzzy
2495
+ #~ msgid "Select if you are searching for an active, inactive or all plugins."
2496
+ #~ msgstr ""
2497
+ #~ "Sélectionnez cette option si vous recherchez une extension active, "
2498
+ #~ "inactive ou toutes les extensions."
2499
+
2500
+ # @ mainwp
2501
+ #, fuzzy
2502
+ #~| msgid "Click the Sync Data button to get the latest data from child sites."
2503
+ #~ msgid "Click the button to complete the search process."
2504
+ #~ msgstr ""
2505
+ #~ "Cliquez sur le bouton de synchronisation pour obtenir les dernières "
2506
+ #~ "données de sites clients."
2507
+
2508
+ # @ mainwp
2509
+ #, fuzzy
2510
+ #~| msgid "Click the Sync Data button to get the latest data from child sites."
2511
+ #~ msgid "Click the button to complete the search."
2512
+ #~ msgstr ""
2513
+ #~ "Cliquez sur le bouton de synchronisation pour obtenir les dernières "
2514
+ #~ "données de sites clients."
2515
+
2516
+ #, fuzzy
2517
+ #~ msgid "Attention!"
2518
+ #~ msgstr "Avertissement !"
2519
+
2520
+ #, fuzzy
2521
+ #~ msgid "Select your website protocol"
2522
+ #~ msgstr "Sélectionnez le protocole de votre site Web"
2523
+
2524
+ # @ mainwp
2525
+ #, fuzzy
2526
+ #~| msgid "This is not your website."
2527
+ #~ msgid "Enter your website URL"
2528
+ #~ msgstr "Entrez l'URL de votre site Web"
2529
+
2530
+ # @ mainwp
2531
+ #, fuzzy
2532
+ #~| msgid "Please enter a username for the administrator"
2533
+ #~ msgid "Enter a username of one of the website Administrator users"
2534
+ #~ msgstr "Merci de saisir un identifiant pour l’administrateur"
2535
+
2536
+ #, fuzzy
2537
+ #~ msgid ""
2538
+ #~ "Enter the Friendly site name. Friendly site name is for internal use "
2539
+ #~ "only. It is visible only to the MainWP Dashboard administrator."
2540
+ #~ msgstr ""
2541
+ #~ "Saisir le nom du site client. Pour un usage interne seulement, il n’est "
2542
+ #~ "visible que dans l’administration MainWP."
2543
+
2544
+ # @ mainwp
2545
+ #, fuzzy
2546
+ #~| msgid "Create Child Site Groups"
2547
+ #~ msgid "Add the Child Site to a Group"
2548
+ #~ msgstr "Ajouter le site client à un groupe"
2549
+
2550
+ # @ mainwp
2551
+ #~ msgid ""
2552
+ #~ "In case you are managing large number of WordPress sites, it would be "
2553
+ #~ "very useful for you to split them in different groups. Later, you will be "
2554
+ #~ "able to make site selection by group which will speed up your work and "
2555
+ #~ "make it much easier."
2556
+ #~ msgstr ""
2557
+ #~ "Dans le cas où vous gérez grand nombre de sites WordPress, il est très "
2558
+ #~ "utile de les séparer dans des groupes différents. Plus tard, vous serez "
2559
+ #~ "en mesure de faire le choix du site par le groupe ce qui va accélérer "
2560
+ #~ "votre travail et le rendre beaucoup plus facile."
2561
+
2562
+ # @ mainwp
2563
+ #, fuzzy
2564
+ #~| msgid "(required)"
2565
+ #~ msgid "Not required!"
2566
+ #~ msgstr "Non requis&nbsp;!"
2567
+
2568
+ # @ mainwp
2569
+ #~ msgid "No groups with entries have been found."
2570
+ #~ msgstr "Aucun groupe avec des entrées ont été trouvés."
2571
+
2572
+ # @ mainwp
2573
+ #, fuzzy
2574
+ #~| msgid "Select Categories"
2575
+ #~ msgid "Select categories"
2576
+ #~ msgstr "Sélectionner des catégories"
2577
+
2578
+ # @ mainwp
2579
+ #~ msgid "No websites have been found."
2580
+ #~ msgstr "Autre site web n’a été trouvé."
2581
+
2582
+ # @ mainwp
2583
+ #~ msgid "No selected categories."
2584
+ #~ msgstr "Catégories non sélectionnées."
2585
+
2586
+ # @ mainwp
2587
+ #, fuzzy
2588
+ #~| msgid "Create Child Site Groups"
2589
+ #~ msgid "Filter child Sites By Group"
2590
+ #~ msgstr "Créer des groupes de sites clients"
2591
+
2592
+ # @ mainwp
2593
+ #, fuzzy
2594
+ #~| msgid "Could not create directory to download the file."
2595
+ #~ msgid ""
2596
+ #~ "MainWP plugin could not create directory in order to download the file."
2597
+ #~ msgstr "Impossible de créer le répertoire pour télécharger le fichier."
2598
+
2599
+ # @ mainwp
2600
+ #~ msgid "MainWP upload directory is not writable."
2601
+ #~ msgstr "Répertoire de téléchargement MainWP non accessible en écriture."
2602
+
2603
+ # @ mainwp
2604
+ #~ msgid "Once every 5 minutes"
2605
+ #~ msgstr "Une fois toutes les 5 minutes"
2606
+
2607
+ # @ mainwp
2608
+ #~ msgid "Once every minute"
2609
+ #~ msgstr "Une fois par minute"
2610
+
2611
+ # @ mainwp
2612
+ #~ msgid "You do not have sufficient permissions to access this page (%s)."
2613
+ #~ msgstr ""
2614
+ #~ "Vous ne disposez pas des autorisations suffisantes pour accéder à cette "
2615
+ #~ "page (%s)."
2616
+
2617
+ # @ mainwp
2618
+ #, fuzzy
2619
+ #~| msgid "MainWP"
2620
+ #~ msgid "About MainWP"
2621
+ #~ msgstr "A propos de MainWP"
2622
+
2623
+ # @ mainwp
2624
+ #~ msgid "Welcome to MainWP Dashboard"
2625
+ #~ msgstr "Bienvenu sur le tableau de bord MAINWP"
2626
+
2627
+ # @ default
2628
+ #~ msgid "Thank you for updating your MainWP Dashboard to"
2629
+ #~ msgstr "Merci d’avoir mis à jour votre tableau de bord MainWP à"
2630
+
2631
+ # @ mainwp
2632
+ #, fuzzy
2633
+ #~| msgid "Version: %s"
2634
+ #~ msgid "Version "
2635
+ #~ msgstr "Version "
2636
+
2637
+ #~ msgid "What's New"
2638
+ #~ msgstr "Nouveautés"
2639
+
2640
+ #, fuzzy
2641
+ #~ msgid "Version Changelog"
2642
+ #~ msgstr "Historique de version"
2643
+
2644
+ # @ mainwp
2645
+ #, fuzzy
2646
+ #~| msgid "Change"
2647
+ #~ msgid "Changelog"
2648
+ #~ msgstr "Note de mise a jour"
2649
+
2650
+ #, fuzzy
2651
+ #~ msgid "See older versions changelogs"
2652
+ #~ msgstr "Voir les versions antérieures de l’historique"
2653
+
2654
+ # @ mainwp
2655
+ #, fuzzy
2656
+ #~| msgid ""
2657
+ #~| "Undefined error - please reinstall the MainWP Child plugin on the client"
2658
+ #~ msgid ""
2659
+ #~ "Undefined error! Please reinstall the MainWP Child plugin on the child "
2660
+ #~ "site"
2661
+ #~ msgstr ""
2662
+ #~ "Erreur non définie - merci de réinstaller l'extension MainWP Client sur "
2663
+ #~ "le site client"
2664
+
2665
+ # @ mainwp
2666
+ #, fuzzy
2667
+ #~| msgid "Bulk Update Administrator Passwords"
2668
+ #~ msgid "Step 1: Bulk update administrator passwords"
2669
+ #~ msgstr "Mises à jour globale des mots de passe admin"
2670
+
2671
+ # @ mainwp
2672
+ #, fuzzy
2673
+ #~| msgid ""
2674
+ #~| "Please select the sites or groups where you want to change the admin "
2675
+ #~| "password."
2676
+ #~ msgid ""
2677
+ #~ "Please select the sites or groups where you want to change the "
2678
+ #~ "administrator password."
2679
+ #~ msgstr ""
2680
+ #~ "Merci de sélectionner les sites ou groupes où vous voulez changer le mot "
2681
+ #~ "de passe admin."
2682
+
2683
+ # @ mainwp
2684
+ #, fuzzy
2685
+ #~| msgid ""
2686
+ #~| "Please select whether you want to change the admin password for specific "
2687
+ #~| "sites or groups."
2688
+ #~ msgid ""
2689
+ #~ "Please select whether you want to change the administrator password for "
2690
+ #~ "specific sites or groups."
2691
+ #~ msgstr ""
2692
+ #~ "Merci d’indiquez si vous souhaitez modifier le mot de passe admin pour "
2693
+ #~ "des sites ou des groupes spécifiés."
2694
+
2695
+ # @ mainwp
2696
+ #~ msgid "Please enter the password twice."
2697
+ #~ msgstr "Merci de saisir le mot de passe 2 fois."
2698
+
2699
+ # @ mainwp
2700
+ #, fuzzy
2701
+ #~| msgid "Please enter the same password in the two password fields."
2702
+ #~ msgid "Please enter the same password in the both password fields."
2703
+ #~ msgstr ""
2704
+ #~ "Merci d'entrer le même mot de passe dans les deux champs de mot de passe."
2705
+
2706
+ # @ mainwp
2707
+ #, fuzzy
2708
+ #~| msgid "Update admin passwords"
2709
+ #~ msgid "Update Admin Passwords"
2710
+ #~ msgstr "Mettre à jour les mots de passe administrateurs"
2711
+
2712
+ # @ mainwp
2713
+ #~ msgid "Admin password updated."
2714
+ #~ msgstr "Mot de passe admin mis à jour."
2715
+
2716
+ # @ mainwp
2717
+ #~ msgid "Step 2: Select Sites"
2718
+ #~ msgstr "Étape 2: Sélectionnez les sites"
2719
+
2720
+ # @ mainwp
2721
+ #~ msgid "Update Now"
2722
+ #~ msgstr "Mettre à jour maintenant"
2723
+
2724
+ # @ mainwp
2725
+ #, fuzzy
2726
+ #~| msgid "Enter New Password "
2727
+ #~ msgid "Enter new password "
2728
+ #~ msgstr "Saisir le nouveau mot de passe "
2729
+
2730
+ # @ mainwp
2731
+ #~ msgid "(twice, required)"
2732
+ #~ msgstr "(requis 2 fois)"
2733
+
2734
+ # @ mainwp
2735
+ #~ msgid "Strength indicator"
2736
+ #~ msgstr "Indicateur de Force"
2737
+
2738
+ # @ mainwp
2739
+ #~ msgid ""
2740
+ #~ "Hint: The password should be at least seven characters long. To make it "
2741
+ #~ "stronger, use upper and lower case letters, numbers and symbols like ! "
2742
+ #~ "\" ? $ % ^ &amp; )."
2743
+ #~ msgstr ""
2744
+ #~ "Astuce&nbsp;: Le mot de passe doit être d’au moins sept caractères. Pour "
2745
+ #~ "le rendre plus fort, utiliser des lettres, des chiffres majuscules et "
2746
+ #~ "minuscules et des symboles comme&nbsp;:&nbsp;!&nbsp;? \\ \\\" $ % ^ "
2747
+ #~ "&amp;)."
2748
+
2749
+ # @ mainwp
2750
+ #, fuzzy
2751
+ #~| msgid "New Password"
2752
+ #~ msgid "New password"
2753
+ #~ msgstr "Nouveau mot de passe"
2754
+
2755
+ # @ mainwp
2756
+ #~ msgid "Hide"
2757
+ #~ msgstr "Masquer"
2758
+
2759
+ # @ mainwp
2760
+ #~ msgid "Repeat Password"
2761
+ #~ msgstr "Répéter le mot de passe"
2762
+
2763
+ # @ mainwp
2764
+ #~ msgid "(required)"
2765
+ #~ msgstr "(requis)"
2766
+
2767
+ # @ mainwp
2768
+ #~ msgid "MainWP Child Scan"
2769
+ #~ msgstr "Analyse client MainWP"
2770
+
2771
+ # @ mainwp
2772
+ #~ msgid "Child Scan"
2773
+ #~ msgstr "Analyse client"
2774
+
2775
+ # @ mainwp
2776
+ #~ msgid "Scan"
2777
+ #~ msgstr "Analyser"
2778
+
2779
+ # @ mainwp
2780
+ #~ msgid "<p>No websites to scan.</p>"
2781
+ #~ msgstr "<p>Pas de sites web à analyser.</p>"
2782
+
2783
+ # @ mainwp
2784
+ #, fuzzy
2785
+ #~| msgid "Bulk Install and Activate Extensions"
2786
+ #~ msgid "Bulk install and activate extensions"
2787
+ #~ msgstr "Installation globale et activation des extensions"
2788
+
2789
+ # @ mainwp
2790
+ #~ msgid "%d Installed MainWP Extension"
2791
+ #~ msgid_plural "%d Installed MainWP Extensions"
2792
+ #~ msgstr[0] "%d installés d’extension MainWP"
2793
+ #~ msgstr[1] "%d installés d’extensions MainWP"
2794
+
2795
+ # @ mainwp
2796
+ #~ msgid "Available %sMainWP Extensions%s"
2797
+ #~ msgstr "%sExtensions MAINWP%s disponibles"
2798
+
2799
+ #, fuzzy
2800
+ #~ msgid "Too many requests"
2801
+ #~ msgstr ""
2802
+ #~ "Trop de demandes à la fois, s'il vous plaît attendre quelques secondes "
2803
+ #~ "avant de demander à nouveau les coordonnées"
2804
+
2805
+ # @ mainwp
2806
+ #~ msgid "Login Invalid."
2807
+ #~ msgstr "Nom d’utilisateur invalide."
2808
+
2809
+ # @ mainwp
2810
+ #~ msgid "Queued"
2811
+ #~ msgstr "File d’attente"
2812
+
2813
+ # @ mainwp
2814
+ #~ msgid "Undefined error."
2815
+ #~ msgstr "Erreur indéfinie."
2816
+
2817
+ # @ mainwp
2818
+ #~ msgid "Extension not purchased."
2819
+ #~ msgstr "Extension non achetée."
2820
+
2821
+ # @ mainwp
2822
+ #~ msgid "Get it here!"
2823
+ #~ msgstr "Obtenez-la ici&nbsp;!"
2824
+
2825
+ # @ mainwp
2826
+ #~ msgid "It's free."
2827
+ #~ msgstr "C’est gratuit."
2828
+
2829
+ # @ mainwp
2830
+ #~ msgid "Install Purchased Extensions"
2831
+ #~ msgstr "Installer les extensions achetées"
2832
+
2833
+ # @ mainwp
2834
+ #~ msgid "All purchased extensions are Installed"
2835
+ #~ msgstr "Toutes les extensions achetées sont installées"
2836
+
2837
+ # @ mainwp
2838
+ #~ msgid ""
2839
+ #~ "You have access to all your purchased Extensions but you DO NOT need to "
2840
+ #~ "install all off them. In order to avoid information overload, we highly "
2841
+ #~ "recommend adding Extensions one at a time and as you need them. Uncheck "
2842
+ #~ "any Extension you do not want to install."
2843
+ #~ msgstr ""
2844
+ #~ "Vous avez accès à toutes vos extensions achetées mais <strong>vous ne "
2845
+ #~ "devez pas</strong> toutes les installer. Afin d’éviter la surcharge "
2846
+ #~ "d’information, nous vous recommandons d’ajouter les extensions une à la "
2847
+ #~ "fois et seulement celles dont vous avez besoin. Décochez toute extension "
2848
+ #~ "que vous ne souhaitez pas installer."
2849
+
2850
+ # @ mainwp
2851
+ #~ msgid "Select All"
2852
+ #~ msgstr "Tout sélectionner"
2853
+
2854
+ # @ mainwp
2855
+ #~ msgid "Select None"
2856
+ #~ msgstr "Ne rien sélectionner"
2857
+
2858
+ # @ mainwp
2859
+ #~ msgid "Install Selected Extensions"
2860
+ #~ msgstr "Installer les extensions sélectionnées"
2861
+
2862
+ # @ mainwp
2863
+ #~ msgid "Successfully installed the plugin"
2864
+ #~ msgstr "Extension installée avec succès"
2865
+
2866
+ # @ mainwp
2867
+ #~ msgid "Extensions"
2868
+ #~ msgstr "Extensions MainWP"
2869
+
2870
+ # @ mainwp
2871
+ #, fuzzy
2872
+ #~| msgid "No Websites"
2873
+ #~ msgid "Not found website"
2874
+ #~ msgstr "Pas de sites web"
2875
+
2876
+ # @ mainwp
2877
+ #~ msgid "Site updated."
2878
+ #~ msgstr "Site mis à jour."
2879
+
2880
+ # @ mainwp
2881
+ #~ msgid "Site successfully added."
2882
+ #~ msgstr "Site ajouté avec succès."
2883
+
2884
+ # @ default
2885
+ #, fuzzy
2886
+ #~| msgid "Not found items slugs to update."
2887
+ #~ msgid "Not found the clone website"
2888
+ #~ msgstr "Articles de lien introuvable pour mettre à jour."
2889
+
2890
+ # @ mainwp
2891
+ #~ msgid "Step 1: Upload plugins"
2892
+ #~ msgstr "Étape 1&nbsp;: téléchargez les extensions"
2893
+
2894
+ # @ mainwp
2895
+ #~ msgid "Step 1: Upload themes"
2896
+ #~ msgstr "Étape 1&nbsp;: téléchargez les thèmes"
2897
+
2898
+ # @ mainwp
2899
+ #, fuzzy
2900
+ #~| msgid ""
2901
+ #~| "<strong>Do Not upload extensions here</strong>, they do not go on the "
2902
+ #~| "child sites, upload and activate them via your dashboard sites"
2903
+ #~ msgid ""
2904
+ #~ "<strong>Do not upload extensions here</strong>, they do not go on the "
2905
+ #~ "child sites, upload and activate them via your dashboard sites"
2906
+ #~ msgstr ""
2907
+ #~ "<strong>Ne pas télécharger des extensions ici </strong>, elles ne vont "
2908
+ #~ "pas sur les sites clients, les télécharger et activer via vos tableau de "
2909
+ #~ "bord de site"
2910
+
2911
+ # @ mainwp
2912
+ #~ msgid "plugin screen."
2913
+ #~ msgstr "écran d’extension."
2914
+
2915
+ # @ mainwp
2916
+ #~ msgid "If you have"
2917
+ #~ msgstr "Si vous avez"
2918
+
2919
+ # @ mainwp
2920
+ #~ msgid "in a .zip format, you may install it by uploading it here."
2921
+ #~ msgstr ""
2922
+ #~ "dans un format .zip, vous pouvez l’installer en la téléchargeant ici."
2923
+
2924
+ # @ mainwp
2925
+ #~ msgid "Please enable JavaScript to use file uploader."
2926
+ #~ msgstr ""
2927
+ #~ "Merci d’activer JavaScript pour utiliser le téléchargement de fichier."
2928
+
2929
+ # @ mainwp
2930
+ #~ msgid "Already installed"
2931
+ #~ msgstr "Déjà installé"
2932
+
2933
+ # @ mainwp
2934
+ #~ msgid "File is too large, increase post_max_size and/or upload_max_filesize"
2935
+ #~ msgstr ""
2936
+ #~ "Fichier trop lourd, augmenter post_max_size et/ou upload_max_filesize"
2937
+
2938
+ # @ mainwp
2939
+ #~ msgid "File has an invalid extension, it should be one of "
2940
+ #~ msgstr "Le fichier a une extension invalide, elle devrait être d’une des "
2941
+
2942
+ # @ mainwp
2943
+ #~ msgid "Could not save uploaded file!"
2944
+ #~ msgstr "Impossible de sauvegarder le fichier téléchargé&nbsp;!"
2945
+
2946
+ # @ mainwp
2947
+ #~ msgid "MainWP Dashboard"
2948
+ #~ msgstr "Tableau de bord MainWP"
2949
+
2950
+ # @ mainwp
2951
+ #~ msgid "MainWP Extensions"
2952
+ #~ msgstr "Extensions MainWP"
2953
+
2954
+ # @ mainwp
2955
+ #~ msgid "Child Sites"
2956
+ #~ msgstr "Sites clients"
2957
+
2958
+ # @ mainwp
2959
+ #~ msgid "MainWP needs to be activated before using"
2960
+ #~ msgstr "MainWP doit être activé avant d’utiliser"
2961
+
2962
+ # @ mainwp
2963
+ #~ msgid "Activate here"
2964
+ #~ msgstr "Activer ici"
2965
+
2966
+ # @ mainwp
2967
+ #~ msgid "global dashboard"
2968
+ #~ msgstr "tableau de bord global"
2969
+
2970
+ # @ mainwp
2971
+ #~ msgid "MainWP Tip"
2972
+ #~ msgstr "Astuce MainWP"
2973
+
2974
+ # @ mainwp
2975
+ #~ msgid ""
2976
+ #~ "You can move the Widgets around to fit your needs and even adjust the "
2977
+ #~ "number of columns by selecting \"Screen Options\" on the top right."
2978
+ #~ msgstr ""
2979
+ #~ "Vous pouvez déplacer les Widgets autour pour adapter à vos besoins et "
2980
+ #~ "même régler le nombre de colonnes en sélectionnant \"Options d’écran\" en "
2981
+ #~ "haut à droite."
2982
+
2983
+ # @ mainwp
2984
+ #~ msgid "Your MainWP Dashboard has not been synced for 24 hours!"
2985
+ #~ msgstr ""
2986
+ #~ "Votre tableau de bord MainWP n’a pas été synchronisé pendant 24 "
2987
+ #~ "heures&nbsp;!"
2988
+
2989
+ # @ mainwp
2990
+ #~ msgid "Click the Sync Data button to get the latest data from child sites."
2991
+ #~ msgstr ""
2992
+ #~ "Cliquez sur le bouton de synchronisation pour obtenir les dernières "
2993
+ #~ "données de sites clients."
2994
+
2995
+ # @ mainwp
2996
+ #, fuzzy
2997
+ #~| msgid "Welcome to %s Dashboard!"
2998
+ #~ msgid "Welcome to %s dashboard!"
2999
+ #~ msgstr "Bienvenue sur le Tableau de bord %s&nbsp;!"
3000
+
3001
+ # @ mainwp
3002
+ #~ msgid "This information is only for %s%s"
3003
+ #~ msgstr "Cette information est uniquement pour %s%s"
3004
+
3005
+ # @ mainwp
3006
+ #~ msgid "All sites have been synced within the last 24 hours"
3007
+ #~ msgstr "Tous les sites ont été synchronisées durant les dernières 24 heures"
3008
+
3009
+ # @ mainwp
3010
+ #, fuzzy
3011
+ #~| msgid "Sites not synced in the last 24 hours."
3012
+ #~ msgid "Sites last synced at %s (%s ago)"
3013
+ #~ msgstr "Sites non synchronisés au cours des dernières 24 heures."
3014
+
3015
+ #, fuzzy
3016
+ #~ msgid "Management is more than just updates!"
3017
+ #~ msgstr "Infogérance et bien plus que des mises à jour&nbsp;!"
3018
+
3019
+ # @ mainwp
3020
+ #~ msgid "Some child sites didn't sync correctly!"
3021
+ #~ msgstr "Certains sites clients ne se synchronisent pas correctement&nbsp;!"
3022
+
3023
+ # @ mainwp
3024
+ #, fuzzy
3025
+ #~| msgid ""
3026
+ #~| "Check the Sync Status widget to review sites that have not been synced."
3027
+ #~ msgid ""
3028
+ #~ "Check the Connection status widget to review sites that are not "
3029
+ #~ "synchronized."
3030
+ #~ msgstr ""
3031
+ #~ "Vérifiez le widget état de la synchronisation pour examiner les sites qui "
3032
+ #~ "ne sont pas synchronisés."
3033
+
3034
+ # @ mainwp
3035
+ #, fuzzy
3036
+ #~| msgid "(Last complete sync: "
3037
+ #~ msgid "(Last completed sync: "
3038
+ #~ msgstr "(Dernière synchronisation complète&nbsp;: "
3039
+
3040
+ # @ mainwp
3041
+ #~ msgid "Sync Data with child sites"
3042
+ #~ msgstr "Synchroniser les données des sites clients"
3043
+
3044
+ # @ mainwp
3045
+ #, fuzzy
3046
+ #~| msgid "Show Quick Start Guide"
3047
+ #~ msgid "Show Quick Start shortcuts"
3048
+ #~ msgstr "Afficher les raccourcis de démarrage rapide"
3049
+
3050
+ # @ mainwp
3051
+ #, fuzzy
3052
+ #~| msgid "Hide Shortcuts"
3053
+ #~ msgid "Hide Quick Start shortcuts"
3054
+ #~ msgstr "Cacher les raccourcis de démarrage rapide"
3055
+
3056
+ # @ mainwp
3057
+ #, fuzzy
3058
+ #~| msgid "Get Started"
3059
+ #~ msgid "Get started"
3060
+ #~ msgstr "Commencer"
3061
+
3062
+ # @ mainwp
3063
+ #, fuzzy
3064
+ #~| msgid "Check MainWP Settings"
3065
+ #~ msgid "Check MainWP Dashboard settings"
3066
+ #~ msgstr "Vérifier les paramètres MainWP"
3067
+
3068
+ # @ mainwp
3069
+ #, fuzzy
3070
+ #~| msgid "Add New Site"
3071
+ #~ msgid "Add new site"
3072
+ #~ msgstr "Ajouter un nouveau site"
3073
+
3074
+ # @ mainwp
3075
+ #, fuzzy
3076
+ #~| msgid "Create Child Site Groups"
3077
+ #~ msgid "Create child site groups"
3078
+ #~ msgstr "Créer des groupes de sites clients"
3079
+
3080
+ # @ mainwp
3081
+ #, fuzzy
3082
+ #~| msgid "Get MainWP Extensions"
3083
+ #~ msgid "Browse MainWP Extensions"
3084
+ #~ msgstr "Parcourir les extensions MainWP"
3085
+
3086
+ # @ mainwp
3087
+ #, fuzzy
3088
+ #~| msgid "Next Steps"
3089
+ #~ msgid "Next steps"
3090
+ #~ msgstr "Prochaines étapes"
3091
+
3092
+ # @ mainwp
3093
+ #, fuzzy
3094
+ #~| msgid "Add Post to Child Site(s)"
3095
+ #~ msgid "Add post to child site(s)"
3096
+ #~ msgstr "Ajouter un article au site client(s)"
3097
+
3098
+ # @ mainwp
3099
+ #, fuzzy
3100
+ #~| msgid "Add Page to Child Site(s)"
3101
+ #~ msgid "Add page to child site(s)"
3102
+ #~ msgstr "Ajouter une page au site client(s)"
3103
+
3104
+ # @ mainwp
3105
+ #, fuzzy
3106
+ #~| msgid "Add Plugin to Child Site(s)"
3107
+ #~ msgid "Add plugin to child site(s)"
3108
+ #~ msgstr "Ajouter une extension au site client(s)"
3109
+
3110
+ # @ mainwp
3111
+ #, fuzzy
3112
+ #~| msgid "Add Theme to Child Site(s)"
3113
+ #~ msgid "Add theme to child site(s)"
3114
+ #~ msgstr "Ajouter un thème a(ux) site(s) client(s)"
3115
+
3116
+ # @ mainwp
3117
+ #, fuzzy
3118
+ #~| msgid "More Actions"
3119
+ #~ msgid "More actions"
3120
+ #~ msgstr "Plus d'actions"
3121
+
3122
+ # @ mainwp
3123
+ #~ msgid "Test connection"
3124
+ #~ msgstr "Test de connexion"
3125
+
3126
+ # @ mainwp
3127
+ #, fuzzy
3128
+ #~| msgid "Manage Extensions"
3129
+ #~ msgid "Manage extensions"
3130
+ #~ msgstr "Gérer les extensions"
3131
+
3132
+ # @ mainwp
3133
+ #, fuzzy
3134
+ #~| msgid "Check MainWP Requirements"
3135
+ #~ msgid "Check MainWP requirements"
3136
+ #~ msgstr "Vérifier les exigences MainWP"
3137
+
3138
+ # @ mainwp
3139
+ #~ msgid "Set your preferences"
3140
+ #~ msgstr "Définissez vos préférences"
3141
+
3142
+ # @ mainwp
3143
+ #~ msgid "Allowed HTML Tags:"
3144
+ #~ msgstr "Balises HTML autorisées&nbsp;:"
3145
+
3146
+ # @ default
3147
+ #~ msgid "Cheatin&#8217; uh?"
3148
+ #~ msgstr "Tricher&nbsp;?"
3149
+
3150
+ # @ mainwp
3151
+ #~ msgid "Schedule Backup"
3152
+ #~ msgstr "Planification de la sauvegarde"
3153
+
3154
+ # @ mainwp
3155
+ #~ msgid "Add New Schedule"
3156
+ #~ msgstr "Ajouter nouvelle annexe"
3157
+
3158
+ # @ mainwp
3159
+ #~ msgid "Add New"
3160
+ #~ msgstr "Ajouter nouveau"
3161
+
3162
+ # @ mainwp
3163
+ #, fuzzy
3164
+ #~| msgid "Schedule Backup"
3165
+ #~ msgid "Schedule backup"
3166
+ #~ msgstr "Planification de sauvegarde"
3167
+
3168
+ # @ mainwp
3169
+ #~ msgid "Manage Backups"
3170
+ #~ msgstr "Gestion des sauvegardes"
3171
+
3172
+ # @ mainwp
3173
+ #~ msgid "Backups"
3174
+ #~ msgstr "Sauvegardes"
3175
+
3176
+ # @ mainwp
3177
+ #~ msgid "Edit"
3178
+ #~ msgstr "Éditer"
3179
+
3180
+ # @ mainwp
3181
+ #~ msgid "edit backup tasks"
3182
+ #~ msgstr "modifier les tâches de sauvegarde"
3183
+
3184
+ # @ mainwp
3185
+ #, fuzzy
3186
+ #~| msgid ""
3187
+ #~| "Did you know that MainWP has Extensions for working with popular backup "
3188
+ #~| "plugins? Visit the %sExtensions Site%s for options."
3189
+ #~ msgid ""
3190
+ #~ "Did you know that MainWP has extensions for working with popular backup "
3191
+ #~ "plugins? Visit the %sextensions site%s for options."
3192
+ #~ msgstr ""
3193
+ #~ "Saviez-vous que MainWP a des extensions pour travailler avec des "
3194
+ #~ "extensions de sauvegarde les plus populaires&nbsp;? Visitez le site "
3195
+ #~ "%sdes extensions%s pour les options."
3196
+
3197
+ # @ mainwp
3198
+ #~ msgid "The backup task was added successfully"
3199
+ #~ msgstr "La tâche de sauvegarde a été ajoutée avec succès"
3200
+
3201
+ # @ mainwp
3202
+ #~ msgid "Cancel"
3203
+ #~ msgstr "Annuler"
3204
+
3205
+ # @ mainwp
3206
+ #~ msgid "add backup tasks"
3207
+ #~ msgstr "ajouter des tâches de sauvegarde"
3208
+
3209
+ # @ mainwp
3210
+ #~ msgid ""
3211
+ #~ "We recommend only scheduling 1 site per backup, multiples sites can cause "
3212
+ #~ "unintended issues."
3213
+ #~ msgstr ""
3214
+ #~ "Nous recommandons de ne programmer 1 site par sauvegarde, de multiples "
3215
+ #~ "sites peuvent entraîner des problèmes inattendus."
3216
+
3217
+ # @ mainwp
3218
+ #~ msgid "Select Sites"
3219
+ #~ msgstr "Sélectionner sites"
3220
+
3221
+ # @ mainwp
3222
+ #, fuzzy
3223
+ #~| msgid "Task Name:"
3224
+ #~ msgid "Task name:"
3225
+ #~ msgstr "Nom de la tâche&nbsp;: "
3226
+
3227
+ # @ mainwp
3228
+ #, fuzzy
3229
+ #~| msgid "Task Schedule:"
3230
+ #~ msgid "Task schedule:"
3231
+ #~ msgstr "Planification de la tâche&nbsp;: "
3232
+
3233
+ # @ mainwp
3234
+ #~ msgid "DAILY"
3235
+ #~ msgstr "TOUS LES JOURS"
3236
+
3237
+ # @ mainwp
3238
+ #~ msgid "WEEKLY"
3239
+ #~ msgstr "HEBDOMADAIRE"
3240
+
3241
+ # @ mainwp
3242
+ #~ msgid "MONTHLY"
3243
+ #~ msgstr "MENSUEL"
3244
+
3245
+ # @ mainwp
3246
+ #, fuzzy
3247
+ #~| msgid "Backup File Name:"
3248
+ #~ msgid "Backup tile name:"
3249
+ #~ msgstr "Nom du fichier de sauvegarde&nbsp;:"
3250
+
3251
+ # @ mainwp
3252
+ #, fuzzy
3253
+ #~| msgid "Backup Type:"
3254
+ #~ msgid "Backup type:"
3255
+ #~ msgstr "Type de sauvegarde&nbsp;:"
3256
+
3257
+ # @ mainwp
3258
+ #~ msgid "FULL BACKUP"
3259
+ #~ msgstr "SAUVEGARDE TOTALE"
3260
+
3261
+ # @ mainwp
3262
+ #~ msgid "DATABASE BACKUP"
3263
+ #~ msgstr "SAUVEGARDE BASE DE DONNÉES"
3264
+
3265
+ # @ mainwp
3266
+ #~ msgid "Suggested exclude"
3267
+ #~ msgstr "Suggestions d'exclusion"
3268
+
3269
+ # @ mainwp
3270
+ #~ msgid ""
3271
+ #~ "Every WordPress website is different but the sections below generally do "
3272
+ #~ "not need to be backed up and since many of them are large in size they "
3273
+ #~ "can even cause issues with your backup including server timeouts."
3274
+ #~ msgstr ""
3275
+ #~ "Chaque site WordPress est différent, mais les sections ci-dessous n’ont "
3276
+ #~ "généralement pas besoin d’être sauvegardées et comme beaucoup d’entre "
3277
+ #~ "elles sont de grande taille, elles peuvent causer des problèmes de "
3278
+ #~ "sauvegarde, y compris les délais d’attente du serveur."
3279
+
3280
+ # @ mainwp
3281
+ #, fuzzy
3282
+ #~| msgid "Known Backup Locations"
3283
+ #~ msgid "Known backup locations"
3284
+ #~ msgstr "Emplacements de sauvegarde connus"
3285
+
3286
+ # @ mainwp
3287
+ #~ msgid "Exclude"
3288
+ #~ msgstr "Exclure"
3289
+
3290
+ # @ mainwp
3291
+ #, fuzzy
3292
+ #~| msgid "+ Show Excluded Folders"
3293
+ #~ msgid "+ Show excluded folders"
3294
+ #~ msgstr "+ Afficher les dossiers exclus"
3295
+
3296
+ # @ mainwp
3297
+ #, fuzzy
3298
+ #~| msgid "- Hide Excluded Folders"
3299
+ #~ msgid "- Hide excluded folders"
3300
+ #~ msgstr "- Masquer les dossiers exclus"
3301
+
3302
+ # @ mainwp
3303
+ #~ msgid ""
3304
+ #~ "This adds known backup locations of popular WordPress backup plugins to "
3305
+ #~ "the exclude list. Old backups can take up a lot of space and can cause "
3306
+ #~ "your current MainWP backup to timeout."
3307
+ #~ msgstr ""
3308
+ #~ "Cela ajoute les emplacements connus de sauvegarde des extensions "
3309
+ #~ "WordPress populaires de sauvegarde à la liste d’exclusion. Les anciennes "
3310
+ #~ "sauvegardes peuvent prendre beaucoup d’espace et peuvent causer l’échec "
3311
+ #~ "de la sauvegarde MainWP par défaut de temps."
3312
+
3313
+ # @ mainwp
3314
+ #, fuzzy
3315
+ #~| msgid "Known Cache Locations"
3316
+ #~ msgid "Known cache locations"
3317
+ #~ msgstr "Emplacements de cache connus"
3318
+
3319
+ # @ mainwp
3320
+ #~ msgid ""
3321
+ #~ "This adds known cache locations of popular WordPress cache plugins to the "
3322
+ #~ "exclude list. A cache can be massive with thousands of files and can "
3323
+ #~ "cause your current MainWP backup to timeout. Your cache will be rebuilt "
3324
+ #~ "by your caching plugin when the backup is restored."
3325
+ #~ msgstr ""
3326
+ #~ "Cela ajoute les emplacements de cache connus des extensions de cache "
3327
+ #~ "WordPress populaires à la liste d’exclusion. Un cache peut être important "
3328
+ #~ "avec des milliers de fichiers et peut bloquer votre sauvegarde par délais "
3329
+ #~ "de temps dépassé. Votre cache sera reconstruit par votre extension de "
3330
+ #~ "mise en cache lorsque la sauvegarde est restaurée."
3331
+
3332
+ # @ mainwp
3333
+ #, fuzzy
3334
+ #~| msgid "Non-WordPress Folders"
3335
+ #~ msgid "Non-WordPress folders"
3336
+ #~ msgstr "Dossiers extérieurs à WordPress"
3337
+
3338
+ # @ mainwp
3339
+ #~ msgid ""
3340
+ #~ "This adds folders that are not part of the WordPress core (wp-admin, wp-"
3341
+ #~ "content and wp-include) to the exclude list. Non-WordPress folders can "
3342
+ #~ "contain a large amount of data or may be a sub-domain or add-on domain "
3343
+ #~ "that should be backed up individually and not with this backup."
3344
+ #~ msgstr ""
3345
+ #~ "Cela ajoute les dossiers qui ne font pas partie du noyau WordPress (wp-"
3346
+ #~ "admin, wp-content et wp-inclus) à la liste d’exclusion. Les dossiers non "
3347
+ #~ "WordPress peuvent contenir une grande quantité de données ou peuvent être "
3348
+ #~ "un sous-domaine ou un domaine qui devrait être sauvegardé "
3349
+ #~ "individuellement et non par cette sauvegarde."
3350
+
3351
+ # @ mainwp
3352
+ #, fuzzy
3353
+ #~| msgid "ZIP Archives"
3354
+ #~ msgid "ZIP archives"
3355
+ #~ msgstr "Archives ZIP"
3356
+
3357
+ # @ mainwp
3358
+ #~ msgid ""
3359
+ #~ "Zip files can be large and are often not needed for a WordPress backup. "
3360
+ #~ "Be sure to deselect this option if you do have zip files you need backed "
3361
+ #~ "up."
3362
+ #~ msgstr ""
3363
+ #~ "Les fichiers Zip peuvent être lourds et ne sont souvent pas nécessaire "
3364
+ #~ "pour une sauvegarde WordPress. N’oubliez pas de désactiver cette option "
3365
+ #~ "si vous avez des fichiers ZIP que vous avez besoin de sauvegarder."
3366
+
3367
+ # @ mainwp
3368
+ #, fuzzy
3369
+ #~| msgid "Custom Excludes"
3370
+ #~ msgid "Custom excludes"
3371
+ #~ msgstr "Exclusions personnalisées"
3372
+
3373
+ # @ mainwp
3374
+ #~ msgid ""
3375
+ #~ "Exclude any additional files that you do not need backed up for this "
3376
+ #~ "site. Click a folder name to drill down into the directory."
3377
+ #~ msgstr ""
3378
+ #~ "Exclure tous les fichiers supplémentaires que vous n’avez pas besoin de "
3379
+ #~ "sauvegarder pour ce site. Cliquez sur un nom de dossier de exclure dans "
3380
+ #~ "le répertoire."
3381
+
3382
+ # @ mainwp
3383
+ #~ msgid ""
3384
+ #~ "Click directories to navigate. Click the red sign ( %s ) to exclude a "
3385
+ #~ "folder."
3386
+ #~ msgstr ""
3387
+ #~ "Cliquez sur les répertoires pour naviguer. Cliquez sur les icônes rouges "
3388
+ #~ "(%s) pour exclure un dossier."
3389
+
3390
+ # @ mainwp
3391
+ #~ msgid "Excluded files & directories:"
3392
+ #~ msgstr "Fichiers et répertoires exclus&nbsp;:"
3393
+
3394
+ # @ mainwp
3395
+ #~ msgid "ATTENTION:"
3396
+ #~ msgstr "ATTENTION&nbsp;:"
3397
+
3398
+ # @ mainwp
3399
+ #~ msgid ""
3400
+ #~ "Do not exclude any folders if you are using this backup to clone or "
3401
+ #~ "migrate the wordpress installation."
3402
+ #~ msgstr ""
3403
+ #~ "Ne pas exclure tous les dossiers si vous utilisez cette sauvegarde pour "
3404
+ #~ "cloner ou migrer l’installation WordPress."
3405
+
3406
+ # @ mainwp
3407
+ #~ msgid "Store backup in:"
3408
+ #~ msgstr "Mettre la sauvegarde dans&nbsp;:"
3409
+
3410
+ # @ mainwp
3411
+ #~ msgid "LOCAL SERVER ONLY"
3412
+ #~ msgstr "SERVEUR LOCAL SEULEMENT"
3413
+
3414
+ # @ mainwp
3415
+ #~ msgid "REMOTE DESTINATION"
3416
+ #~ msgstr "DESTINATION EXTERNE"
3417
+
3418
+ # @ mainwp
3419
+ #, fuzzy
3420
+ #~| msgid "Backup Subfolder:"
3421
+ #~ msgid "Backup subfolder:"
3422
+ #~ msgstr "Sous-dossier de sauvegarde&nbsp;:"
3423
+
3424
+ # @ mainwp
3425
+ #, fuzzy
3426
+ #~| msgid "Archive Format"
3427
+ #~ msgid "Archive format"
3428
+ #~ msgstr "Format de l'archive"
3429
+
3430
+ # @ mainwp
3431
+ #, fuzzy
3432
+ #~| msgid "Maximum File Descriptors on Child"
3433
+ #~ msgid "Maximum file descriptors on child"
3434
+ #~ msgstr "Nombre de fichiers de description maximum sur le Client"
3435
+
3436
+ # @ mainwp
3437
+ #~ msgid "Auto detect:"
3438
+ #~ msgstr "Auto-détection&nbsp;:"
3439
+
3440
+ # @ mainwp
3441
+ #~ msgid "Enter a fallback value because not all hosts support this function."
3442
+ #~ msgstr ""
3443
+ #~ "Entrez une valeur de remplacement parce que tous les hébergements ne "
3444
+ #~ "prennent pas en charge cette fonction."
3445
+
3446
+ # @ mainwp
3447
+ #~ msgid "Load files in memory before zipping"
3448
+ #~ msgstr "Charger les fichiers en mémoire avant de les zipper"
3449
+
3450
+ # @ default
3451
+ # @ mainwp
3452
+ #~ msgid "Please enter a valid name for your backup task"
3453
+ #~ msgstr "Merci d’entrer un nom valide pour votre tâche de sauvegarde"
3454
+
3455
+ # @ default
3456
+ # @ mainwp
3457
+ #, fuzzy
3458
+ #~| msgid "Please enter a valid name for your backup task"
3459
+ #~ msgid "Please enter a valid name for your backup task."
3460
+ #~ msgstr "Merci d'entrer un nom valide pour votre tâche de sauvegarde."
3461
+
3462
+ # @ mainwp
3463
+ #, fuzzy
3464
+ #~| msgid "The backup task was added successfully"
3465
+ #~ msgid "The backup task has been added successfully."
3466
+ #~ msgstr "La tâche de sauvegarde a été ajoutée avec succès"
3467
+
3468
+ # @ mainwp
3469
+ #, fuzzy
3470
+ #~| msgid "Backup Now"
3471
+ #~ msgid "Backup now"
3472
+ #~ msgstr "Sauvegarder maintenant"
3473
+
3474
+ # @ mainwp
3475
+ #~ msgid "Groups"
3476
+ #~ msgstr "Groupes"
3477
+
3478
+ # @ mainwp
3479
+ #~ msgid "manage groups"
3480
+ #~ msgstr "gérer les groupes"
3481
+
3482
+ # @ mainwp
3483
+ #~ msgid "Create New Group"
3484
+ #~ msgstr "Créer un nouveau Groupe"
3485
+
3486
+ # @ mainwp
3487
+ #~ msgid "Select: "
3488
+ #~ msgstr "Sélectionner&nbsp;: "
3489
+
3490
+ # @ mainwp
3491
+ #~ msgid "All"
3492
+ #~ msgstr "Tous"
3493
+
3494
+ # @ mainwp
3495
+ #~ msgid "None"
3496
+ #~ msgstr "Aucun"
3497
+
3498
+ # @ mainwp
3499
+ #~ msgid "Display by:"
3500
+ #~ msgstr "Afficher par&nbsp;:"
3501
+
3502
+ # @ mainwp
3503
+ #~ msgid "Site Name"
3504
+ #~ msgstr "Nom du site"
3505
+
3506
+ # @ mainwp
3507
+ #~ msgid "URL"
3508
+ #~ msgstr "URL"
3509
+
3510
+ # @ mainwp
3511
+ #~ msgid "Save Selection"
3512
+ #~ msgstr "Sauver sélection"
3513
+
3514
+ # @ mainwp
3515
+ #~ msgid "Saved"
3516
+ #~ msgstr "Sauvé"
3517
+
3518
+ # @ mainwp
3519
+ #~ msgid "Rename"
3520
+ #~ msgstr "Renommer"
3521
+
3522
+ # @ mainwp
3523
+ #~ msgid "Delete"
3524
+ #~ msgstr "Supprimer"
3525
+
3526
+ # @ mainwp
3527
+ #, fuzzy
3528
+ #~| msgid "New Group"
3529
+ #~ msgid "New group"
3530
+ #~ msgstr "Nouveau Groupe"
3531
+
3532
+ # @ mainwp
3533
+ #~ msgid "Sites"
3534
+ #~ msgstr "Sites"
3535
+
3536
+ # @ mainwp
3537
+ #~ msgid "Add a Single Site"
3538
+ #~ msgstr "Ajouter un seul site"
3539
+
3540
+ # @ mainwp
3541
+ #~ msgid "Extensions Settings Synchronization"
3542
+ #~ msgstr "Extensions des paramètres de synchronisation"
3543
+
3544
+ # @ mainwp
3545
+ #~ msgid "Importing New Child Sites"
3546
+ #~ msgstr "Importation de nouveaux sites clients"
3547
+
3548
+ # @ mainwp
3549
+ #~ msgid "Test a Site Connection"
3550
+ #~ msgstr "Tester une connexion site"
3551
+
3552
+ # @ mainwp
3553
+ #~ msgid "Backup Details"
3554
+ #~ msgstr "Détails sauvegarde"
3555
+
3556
+ # @ mainwp
3557
+ #~ msgid "Backup Options"
3558
+ #~ msgstr "Options de sauvegarde"
3559
+
3560
+ # @ mainwp
3561
+ #~ msgid "Sucuri Scan"
3562
+ #~ msgstr "Analyse Sucuri"
3563
+
3564
+ # @ mainwp
3565
+ #, fuzzy
3566
+ #~| msgid "Security Scan"
3567
+ #~ msgid "Wordfence Security Scan"
3568
+ #~ msgstr "Balayage de sécurité"
3569
+
3570
+ # @ mainwp
3571
+ #~ msgid "General Options"
3572
+ #~ msgstr "Options générales"
3573
+
3574
+ # @ mainwp
3575
+ #~ msgid "Backup Settings"
3576
+ #~ msgstr "Paramètres de sauvegarde"
3577
+
3578
+ # @ mainwp
3579
+ #~ msgid "add sites"
3580
+ #~ msgstr "ajouter des sites"
3581
+
3582
+ # @ mainwp
3583
+ #~ msgid "Add New Site"
3584
+ #~ msgstr "Ajouter site"
3585
+
3586
+ # @ mainwp
3587
+ #~ msgid "test connection"
3588
+ #~ msgstr "test de connexion"
3589
+
3590
+ # @ mainwp
3591
+ #~ msgid "Test Connection"
3592
+ #~ msgstr "Test de connexion"
3593
+
3594
+ # @ mainwp
3595
+ #~ msgid "Backup Now"
3596
+ #~ msgstr "Sauvegarder maintenant"
3597
+
3598
+ # @ mainwp
3599
+ #, fuzzy
3600
+ #~| msgid "Site successfully reconnected - Visit the Site's %sDashboard%s now."
3601
+ #~ msgid "Site successfully reconnected - Visit the site's %sOverview%s now."
3602
+ #~ msgstr ""
3603
+ #~ "Site reconnecté avec succès - Visiter sons %stableau de bord%s maintenant."
3604
+
3605
+ # @ mainwp
3606
+ #, fuzzy
3607
+ #~| msgid "Undefined error"
3608
+ #~ msgid "Undefined error!"
3609
+ #~ msgstr "Erreur non définie&nbsp;!"
3610
+
3611
+ # @ mainwp
3612
+ #~ msgid ""
3613
+ #~ "Be sure to deactivate the child plugin from the site to avoid potential "
3614
+ #~ "security issues."
3615
+ #~ msgstr ""
3616
+ #~ "Veillez à désactiver l’extension client à partir du site pour éviter de "
3617
+ #~ "potentiels problèmes de sécurité."
3618
+
3619
+ # @ mainwp
3620
+ #~ msgid "Do not show tips anymore"
3621
+ #~ msgstr "Ne plus afficher les astuces"
3622
+
3623
+ #, fuzzy
3624
+ #~ msgid "Offline Checks"
3625
+ #~ msgstr "Contrôles hors ligne"
3626
+
3627
+ #, fuzzy
3628
+ #~ msgid "manage offline checks"
3629
+ #~ msgstr "Gestion des contrôles hors ligne"
3630
+
3631
+ # @ mainwp
3632
+ #, fuzzy
3633
+ #~| msgid "Notification Email"
3634
+ #~ msgid "Notifications will be sent to"
3635
+ #~ msgstr "Les notifications seront envoyées à"
3636
+
3637
+ # @ mainwp
3638
+ #, fuzzy
3639
+ #~| msgid "Change"
3640
+ #~ msgid "change"
3641
+ #~ msgstr "changer"
3642
+
3643
+ #, fuzzy
3644
+ #~ msgid "MainWP performs two tests when checking your site for up-time."
3645
+ #~ msgstr "MainWP effectue deux essais lors de la vérification de votre site."
3646
+
3647
+ #, fuzzy
3648
+ #~ msgid "The first test we do is to check that the domain is valid."
3649
+ #~ msgstr ""
3650
+ #~ "Le premier test que nous faisons est de vérifier que le domaine est "
3651
+ #~ "valide."
3652
+
3653
+ #, fuzzy
3654
+ #~ msgid ""
3655
+ #~ "If this test passes we use a browser emulator to visit the website, this "
3656
+ #~ "sends out a user agent (just like your web browser from your computer) "
3657
+ #~ "and waits for a status message."
3658
+ #~ msgstr ""
3659
+ #~ "Si le test réussi, nous utilisons un émulateur de navigateur pour visiter "
3660
+ #~ "le site, cela envoie un agent utilisateur (tout comme votre navigateur "
3661
+ #~ "Web de votre ordinateur) et attend un message d'état."
3662
+
3663
+ #, fuzzy
3664
+ #~ msgid ""
3665
+ #~ "We report any http status code from 200-399 as a success. Any other http "
3666
+ #~ "status code returned is considered \"offline\" which is treated as a "
3667
+ #~ "failure."
3668
+ #~ msgstr ""
3669
+ #~ "Nous rapportons tout état HTTP entre 200 et 399 ayant succédé. Tout autre "
3670
+ #~ "code d'état HTTP renvoyé est considéré comme \"hors ligne\" ce qui est "
3671
+ #~ "analysé comme un échec."
3672
+
3673
+ # @ mainwp
3674
+ #~ msgid "Site"
3675
+ #~ msgstr "Site"
3676
+
3677
+ # @ mainwp
3678
+ #~ msgid "Status"
3679
+ #~ msgstr "Statut"
3680
+
3681
+ # @ mainwp
3682
+ #, fuzzy
3683
+ #~| msgid "Disable All"
3684
+ #~ msgid "Disabled"
3685
+ #~ msgstr "Désactivé"
3686
+
3687
+ #, fuzzy
3688
+ #~ msgid "Hourly"
3689
+ #~ msgstr "Chaque heure"
3690
+
3691
+ #, fuzzy
3692
+ #~ msgid "2x Day"
3693
+ #~ msgstr "2 fois par jour"
3694
+
3695
+ #, fuzzy
3696
+ #~ msgid "Daily"
3697
+ #~ msgstr "Quotidienne"
3698
+
3699
+ #, fuzzy
3700
+ #~ msgid "Weekly"
3701
+ #~ msgstr "Hebdomadaire"
3702
+
3703
+ # @ mainwp
3704
+ #, fuzzy
3705
+ #~| msgid "Backup All"
3706
+ #~ msgid "Check All"
3707
+ #~ msgstr "Vérifier tout"
3708
+
3709
+ #, fuzzy
3710
+ #~ msgid "Check"
3711
+ #~ msgstr "Vérifier"
3712
+
3713
+ #, fuzzy
3714
+ #~ msgid "Offline Check Options"
3715
+ #~ msgstr "Options contrôle Hors ligne"
3716
+
3717
+ # @ mainwp
3718
+ #~ msgid "Online Notifications"
3719
+ #~ msgstr "Notifications en ligne"
3720
+
3721
+ #, fuzzy
3722
+ #~ msgid ""
3723
+ #~ "Network will monitor your sites for downtime and uptime. By default "
3724
+ #~ "emails are only sent when your site is down."
3725
+ #~ msgstr ""
3726
+ #~ "Le réseau suivra vos sites pour les temps d'arrêt et de disponibilité. "
3727
+ #~ "Par défaut les courriels sont envoyés uniquement lorsque votre site est "
3728
+ #~ "en panne."
3729
+
3730
+ #, fuzzy
3731
+ #~ msgid "Enable notifications even when the website is online"
3732
+ #~ msgstr "Activer les notifications même lorsque le site Web est en ligne"
3733
+
3734
+ # @ mainwp
3735
+ #~ msgid "Pages"
3736
+ #~ msgstr "Pages"
3737
+
3738
+ # @ default
3739
+ #, fuzzy
3740
+ #~| msgctxt "bulkpage"
3741
+ #~| msgid "Edit Bulkpage"
3742
+ #~ msgid "Edit Page"
3743
+ #~ msgstr "Éditer la page"
3744
+
3745
+ # @ mainwp
3746
+ #~ msgid "Posting new bulkpage"
3747
+ #~ msgstr "Poster une nouvelle page de masse"
3748
+
3749
+ # @ mainwp
3750
+ #~ msgid "Step 1: Search Pages"
3751
+ #~ msgstr "Étape 1: Rechercher les pages"
3752
+
3753
+ # @ mainwp
3754
+ #~ msgid ""
3755
+ #~ "You can also quickly see all Published, Draft, Pending and Trash Pages "
3756
+ #~ "for a single site from your Individual Site Dashboard Recent Pages widget "
3757
+ #~ "by visiting Sites &rarr; Manage Sites &rarr; Child Site &rarr; Dashboard."
3758
+ #~ msgstr ""
3759
+ #~ "Vous pouvez aussi voir rapidement toutes les pages publiées, en "
3760
+ #~ "brouillon, en attente et mis à la corbeille pour un seul site à partir du "
3761
+ #~ "tableau de bord individuel site Pages récentes en visitant des Sites "
3762
+ #~ "&rarr; Gérer les sites &rarr; Site Client &rarr; Tableau de bord."
3763
+
3764
+ # @ mainwp
3765
+ #~ msgid "manage pages"
3766
+ #~ msgstr "gérer les pages"
3767
+
3768
+ # @ mainwp
3769
+ #~ msgid "Step 2: Select sites"
3770
+ #~ msgstr "Étape 2&nbsp;: sélectionnez les sites"
3771
+
3772
+ # @ mainwp
3773
+ #~ msgid "Show pages"
3774
+ #~ msgstr "Afficher les pages"
3775
+
3776
+ # @ mainwp
3777
+ #, fuzzy
3778
+ #~| msgid "Grabbing information from Child Sites"
3779
+ #~ msgid "Grabbing information from child sites"
3780
+ #~ msgstr "Saisir les informations depuis les sites clients"
3781
+
3782
+ # @ mainwp
3783
+ #, fuzzy
3784
+ #~| msgid "Bulk Action"
3785
+ #~ msgid "Bulk action"
3786
+ #~ msgstr "Action Globale"
3787
+
3788
+ # @ mainwp
3789
+ #, fuzzy
3790
+ #~| msgid "Move to Trash"
3791
+ #~ msgid "Move to trash"
3792
+ #~ msgstr "Déplacer dans la corbeille"
3793
+
3794
+ # @ mainwp
3795
+ #~ msgid "Restore"
3796
+ #~ msgstr "Restaurer"
3797
+
3798
+ # @ mainwp
3799
+ #, fuzzy
3800
+ #~| msgid "Delete Permanently"
3801
+ #~ msgid "Delete permanently"
3802
+ #~ msgstr "Supprimer définitivement"
3803
+
3804
+ # @ mainwp
3805
+ #~ msgid "Total Results:"
3806
+ #~ msgstr "Résultats totaux&nbsp;:"
3807
+
3808
+ # @ mainwp
3809
+ #~ msgid "Published"
3810
+ #~ msgstr "Publié"
3811
+
3812
+ # @ mainwp
3813
+ #~ msgid "Pending"
3814
+ #~ msgstr "En attente"
3815
+
3816
+ # @ mainwp
3817
+ #~ msgid "Private"
3818
+ #~ msgstr "Privé"
3819
+
3820
+ # @ mainwp
3821
+ #, fuzzy
3822
+ #~| msgid "Schedule"
3823
+ #~ msgid "Scheduled"
3824
+ #~ msgstr "Planifié"
3825
+
3826
+ # @ mainwp
3827
+ #~ msgid "Draft"
3828
+ #~ msgstr "Brouillon"
3829
+
3830
+ # @ mainwp
3831
+ #~ msgid "Trash"
3832
+ #~ msgstr "Corbeille"
3833
+
3834
+ # @ mainwp
3835
+ #~ msgid "Containing Keyword:"
3836
+ #~ msgstr "Avec mot-clé&nbsp;:"
3837
+
3838
+ #, fuzzy
3839
+ #~ msgid "Body"
3840
+ #~ msgstr "Corps de page"
3841
+
3842
+ # @ mainwp
3843
+ #~ msgid "Date Range:"
3844
+ #~ msgstr "Période de recherche&nbsp;:"
3845
+
3846
+ # @ mainwp
3847
+ #~ msgid "to"
3848
+ #~ msgstr "à"
3849
+
3850
+ # @ mainwp
3851
+ #, fuzzy
3852
+ #~| msgid "Maximum Number of Comments"
3853
+ #~ msgid "Maximum number of pages to return"
3854
+ #~ msgstr "Nombre maximal de pages à retourner"
3855
+
3856
+ # @ mainwp
3857
+ #~ msgid "Author"
3858
+ #~ msgstr "Auteur"
3859
+
3860
+ # @ mainwp
3861
+ #~ msgid "Date"
3862
+ #~ msgstr "Date"
3863
+
3864
+ #~ msgid "Links"
3865
+ #~ msgstr "Liens"
3866
+
3867
+ #~ msgid "Linked"
3868
+ #~ msgstr "Lié"
3869
+
3870
+ # @ mainwp
3871
+ #~ msgid "Website"
3872
+ #~ msgstr "Site web"
3873
+
3874
+ # @ mainwp
3875
+ #~ msgid "Show:"
3876
+ #~ msgstr "Afficher&nbsp;:"
3877
+
3878
+ # @ mainwp
3879
+ #~ msgid "View"
3880
+ #~ msgstr "Voir"
3881
+
3882
+ # @ mainwp
3883
+ #, fuzzy
3884
+ #~| msgid "Please wait"
3885
+ #~ msgid "Please wait..."
3886
+ #~ msgstr "Merci de patienter…"
3887
+
3888
+ # @ mainwp
3889
+ #~ msgid "WP Admin"
3890
+ #~ msgstr "Admin WP"
3891
+
3892
+ # @ mainwp
3893
+ #, fuzzy
3894
+ #~| msgid "Backupfile created successfully."
3895
+ #~ msgid "Page has been updated successfully"
3896
+ #~ msgstr "Création du fichier de sauvegarde avec succès."
3897
+
3898
+ #, fuzzy
3899
+ #~ msgid "New page created"
3900
+ #~ msgstr "Nouvelle page créée"
3901
+
3902
+ # @ mainwp
3903
+ #, fuzzy
3904
+ #~| msgid "Add New Page"
3905
+ #~ msgid "New Page"
3906
+ #~ msgstr "Nouvelle page"
3907
+
3908
+ # @ mainwp
3909
+ #~ msgid "An undefined error occured."
3910
+ #~ msgstr "Une erreur inconnue c’est produite."
3911
+
3912
+ # @ mainwp
3913
+ #, fuzzy
3914
+ #~| msgid "Add New"
3915
+ #~ msgid "Add new"
3916
+ #~ msgstr "Ajouter"
3917
+
3918
+ # @ mainwp
3919
+ #, fuzzy
3920
+ #~| msgid "Manage Pages"
3921
+ #~ msgid "Return to Manage Pages"
3922
+ #~ msgstr "Retourner vers Gestion des pages"
3923
+
3924
+ # @ mainwp
3925
+ #~ msgid "Plugins"
3926
+ #~ msgstr "Extensions"
3927
+
3928
+ # @ mainwp
3929
+ #~ msgid "Install"
3930
+ #~ msgstr "Installer"
3931
+
3932
+ # @ mainwp
3933
+ #~ msgid "Auto Updates"
3934
+ #~ msgstr "Mises à jour automatiques"
3935
+
3936
+ # @ mainwp
3937
+ #~ msgid "Ignored Updates"
3938
+ #~ msgstr "Mises à jour ignorées"
3939
+
3940
+ # @ mainwp
3941
+ #~ msgid "Ignored Abandoned"
3942
+ #~ msgstr "Ignoré ou abandonné"
3943
+
3944
+ # @ mainwp
3945
+ #~ msgid "Step 1: Search Plugins"
3946
+ #~ msgstr "Étape 1&nbsp;: rechercher des extensions"
3947
+
3948
+ # @ mainwp
3949
+ #, fuzzy
3950
+ #~| msgid ""
3951
+ #~| "You can also quickly activate and deactivate installed Plugins for a "
3952
+ #~| "single site from your Individual Site Dashboard Plugins widget by "
3953
+ #~| "visiting Sites &rarr; Manage Sites &rarr; Child Site &rarr; Dashboard."
3954
+ #~ msgid ""
3955
+ #~ "You can also quickly activate and deactivate installed Plugins for a "
3956
+ #~ "single site from your Individual Site Overview Plugins widget by visiting "
3957
+ #~ "Sites &rarr; Manage Sites &rarr; Child Site &rarr; Overview."
3958
+ #~ msgstr ""
3959
+ #~ "Vous pouvez également activer et désactiver rapidement les extensions "
3960
+ #~ "installées pour un site unique à partir de votre tableau de bord "
3961
+ #~ "individuel pour le site en visitant &rarr; Gérer les sites &rarr; Site "
3962
+ #~ "Client &rarr; Tableau de bord."
3963
+
3964
+ # @ mainwp
3965
+ #~ msgid ""
3966
+ #~ "If you check the \"Overwrite Existing\" option while installing a plugin "
3967
+ #~ "you can easily update or rollback the plugin on your child sites."
3968
+ #~ msgstr ""
3969
+ #~ "Si vous cochez l’option \"Écraser l’existant\" lors de l’installation de "
3970
+ #~ "l’extension vous pouvez facilement la mettre à jour ou la restaurer sur "
3971
+ #~ "vos sites clients."
3972
+
3973
+ # @ mainwp
3974
+ #~ msgid "Automatically refreshing to get up to date information."
3975
+ #~ msgstr ""
3976
+ #~ "Rafraîchissant automatiquement pour obtenir des informations à jour."
3977
+
3978
+ # @ mainwp
3979
+ #~ msgid ""
3980
+ #~ "To only <strong>View or Ignore</strong> plugins select <strong>All "
3981
+ #~ "Plugins</strong>"
3982
+ #~ msgstr ""
3983
+ #~ "Pour seulement <strong>Voir ou Ignorer</strong> les extensions, "
3984
+ #~ "sélectionnez <strong>tous les plugins</strong>"
3985
+
3986
+ # @ mainwp
3987
+ #~ msgid ""
3988
+ #~ "To <strong>Deactivate</strong> a Plugin select <strong>Active</strong> (A "
3989
+ #~ "plugin needs to be Active in order to be Deactivated)"
3990
+ #~ msgstr ""
3991
+ #~ "Pour <strong>Désactiver</strong> une extension, sélectionner "
3992
+ #~ "<strong>Actif</strong> (une extension doit être active afin d’être "
3993
+ #~ "désactivée)"
3994
+
3995
+ # @ mainwp
3996
+ #~ msgid ""
3997
+ #~ "To <strong>Activate</strong> or <strong>Delete</strong> a Plugin select "
3998
+ #~ "<strong>Inactive</strong> (A plugin needs to be Deactivated in order for "
3999
+ #~ "it to be Activated or Deleted)"
4000
+ #~ msgstr ""
4001
+ #~ "Pour <strong>Activer</strong> ou <strong>Supprimer</strong> une "
4002
+ #~ "extension, sélectionner <strong>Inactive</strong> (une extension doit "
4003
+ #~ "être désactivée pour qu’elle puisse être activée ou supprimée)"
4004
+
4005
+ # @ mainwp
4006
+ #~ msgid "Status:"
4007
+ #~ msgstr "Statut&nbsp;:"
4008
+
4009
+ # @ mainwp
4010
+ #~ msgid "Active"
4011
+ #~ msgstr "Actif"
4012
+
4013
+ # @ mainwp
4014
+ #~ msgid "Inactive"
4015
+ #~ msgstr "Innactif"
4016
+
4017
+ # @ mainwp
4018
+ #~ msgid "All Plugins"
4019
+ #~ msgstr "Toutes les extensions"
4020
+
4021
+ # @ mainwp
4022
+ #, fuzzy
4023
+ #~| msgid "No plugins found"
4024
+ #~ msgid "No plugins found."
4025
+ #~ msgstr "Aucune extension trouvée."
4026
+
4027
+ # @ mainwp
4028
+ #, fuzzy
4029
+ #~| msgid "Choose Action"
4030
+ #~ msgid "Choose action"
4031
+ #~ msgstr "Choisir une Action"
4032
+
4033
+ # @ mainwp
4034
+ #~ msgid "Trust"
4035
+ #~ msgstr "Premium"
4036
+
4037
+ # @ mainwp
4038
+ #~ msgid "Untrust"
4039
+ #~ msgstr "Non Premium"
4040
+
4041
+ # @ mainwp
4042
+ #, fuzzy
4043
+ #~| msgid "Plugin"
4044
+ #~| msgid_plural "Plugins"
4045
+ #~ msgid "Plugin"
4046
+ #~ msgstr "Extension"
4047
+
4048
+ # @ mainwp
4049
+ #~ msgid "Trust Level"
4050
+ #~ msgstr "Niveau Premium"
4051
+
4052
+ # @ mainwp
4053
+ #, fuzzy
4054
+ #~| msgid "Ignored Status"
4055
+ #~ msgid "Ignored status"
4056
+ #~ msgstr "Ignorer les statuts"
4057
+
4058
+ # @ mainwp
4059
+ #~ msgid "Notes"
4060
+ #~ msgstr "Notes"
4061
+
4062
+ # @ mainwp
4063
+ #, fuzzy
4064
+ #~| msgid "Trust Level"
4065
+ #~ msgid "Trust level"
4066
+ #~ msgstr "Niveau Premium"
4067
+
4068
+ # @ mainwp
4069
+ #~ msgid "Plugins per page"
4070
+ #~ msgstr "Extensions par page"
4071
+
4072
+ # @ mainwp
4073
+ #~ msgid "Choose Action"
4074
+ #~ msgstr "Choisir une Action"
4075
+
4076
+ # @ mainwp
4077
+ #~ msgid "Deactivate"
4078
+ #~ msgstr "Désactiver"
4079
+
4080
+ # @ mainwp
4081
+ #~ msgid "Activate"
4082
+ #~ msgstr "Activer"
4083
+
4084
+ # @ mainwp
4085
+ #~ msgid "Ignore updates"
4086
+ #~ msgstr "Ignorer les mises à jour"
4087
+
4088
+ # @ mainwp
4089
+ #, fuzzy
4090
+ #~| msgid "Child Site / Plugin"
4091
+ #~ msgid "Child site / Plugin"
4092
+ #~ msgstr "Site client / Extension"
4093
+
4094
+ # @ mainwp
4095
+ #, fuzzy
4096
+ #~| msgid ""
4097
+ #~| "Click on the Plugin Name to select the plugin on all sites or click the "
4098
+ #~| "Site URL to select all plugins on the site."
4099
+ #~ msgid ""
4100
+ #~ "Click on the plugin name to select the plugin on all sites or click the "
4101
+ #~ "site URL to select all plugins on the site."
4102
+ #~ msgstr ""
4103
+ #~ "Cliquez sur le nom de l’extension pour la sélectionner sur tous les sites "
4104
+ #~ "ou cliquez sur l’URL du site pour sélectionner toutes les extensions sur "
4105
+ #~ "le site."
4106
+
4107
+ # @ mainwp
4108
+ #~ msgid "install plugins"
4109
+ #~ msgstr "installer les extensions"
4110
+
4111
+ # @ mainwp
4112
+ #, fuzzy
4113
+ #~| msgid "Upload file"
4114
+ #~ msgid "Upload .zip file"
4115
+ #~ msgstr "Télécharger le fichier"
4116
+
4117
+ # @ mainwp
4118
+ #~ msgid "Step 3: Installation options"
4119
+ #~ msgstr "Étape 3&nbsp;: options d’installation"
4120
+
4121
+ # @ mainwp
4122
+ #, fuzzy
4123
+ #~| msgid "Activate Plugin After Installation"
4124
+ #~ msgid "Activate plugin after installation"
4125
+ #~ msgstr "Activer l’extension après l'installation"
4126
+
4127
+ # @ mainwp
4128
+ #, fuzzy
4129
+ #~| msgid "Overwrite Existing Plugin, if already installed"
4130
+ #~ msgid "Overwrite existing plugin, if already installed"
4131
+ #~ msgstr "Écraser l’extension existante, si elle est déjà installée"
4132
+
4133
+ # @ mainwp
4134
+ #, fuzzy
4135
+ #~| msgid "Complete Installation"
4136
+ #~ msgid "Complete installation"
4137
+ #~ msgstr "Installation complète"
4138
+
4139
+ # @ mainwp
4140
+ #~ msgid "trust/untrust updates"
4141
+ #~ msgstr "faire confiance / ne pas faire confiance aux mises à jour"
4142
+
4143
+ # @ mainwp
4144
+ #~ msgid "Your settings have been saved."
4145
+ #~ msgstr "Vos paramètres ont été sauvegardés."
4146
+
4147
+ # @ mainwp
4148
+ #, fuzzy
4149
+ #~| msgid "Automatic Daily Update"
4150
+ #~ msgid "Automatic updates"
4151
+ #~ msgstr "Mises à jour automatiques"
4152
+
4153
+ #, fuzzy
4154
+ #~ msgid "This is a 2 step process:"
4155
+ #~ msgstr "Il s'agit d'un processus en deux étapes&nbsp;: "
4156
+
4157
+ #, fuzzy
4158
+ #~ msgid "Step 1: Tells your Dashboard what to do with Trusted plugins"
4159
+ #~ msgstr ""
4160
+ #~ "Étape 1&nbsp;: indiquer à votre Tableau de bord ce qu'il faut faire avec "
4161
+ #~ "les extensions approuvés"
4162
+
4163
+ # @ mainwp
4164
+ #, fuzzy
4165
+ #~| msgid ""
4166
+ #~| "Only mark Plugins as Trusted if you are absolutely sure they can be "
4167
+ #~| "updated without breaking your sites or your network."
4168
+ #~ msgid ""
4169
+ #~ "Only mark plugins as trusted if you are absolutely sure they can be "
4170
+ #~ "automatically updated by your MainWP Dashboard without causing issues on "
4171
+ #~ "the Child sites!"
4172
+ #~ msgstr ""
4173
+ #~ "Marquer seulement les extensions autorisées si vous êtes absolument sûr "
4174
+ #~ "qu’elles peuvent être mise à jour sans casser vos sites ou votre réseau."
4175
+
4176
+ #, fuzzy
4177
+ #~ msgid ""
4178
+ #~ "Auto Updates a delayed approximately 24 hours from the update release."
4179
+ #~ msgstr ""
4180
+ #~ "Mise à jour automatique dans un délai d'environ 24 heures à partir de la "
4181
+ #~ "mise à jour."
4182
+
4183
+ # @ mainwp
4184
+ #, fuzzy
4185
+ #~| msgid "Ignored Plugins can not be Automatically Updated."
4186
+ #~ msgid "Ignored plugins can not be automatically updated."
4187
+ #~ msgstr ""
4188
+ #~ "Les extensions ignorées ne peuvent pas être mise à jour automatiquement."
4189
+
4190
+ #, fuzzy
4191
+ #~ msgid "Step 1: Tell your Dashboard what to do with Trusted plugins"
4192
+ #~ msgstr ""
4193
+ #~ "Étape 1&nbsp;: dites à votre Tableau de bord ce qu'il faut faire avec les "
4194
+ #~ "extensions approuvées"
4195
+
4196
+ # @ mainwp
4197
+ #, fuzzy
4198
+ #~| msgid "Automatic Daily Update"
4199
+ #~ msgid "Plugin Automatic Daily Update"
4200
+ #~ msgstr "Mise à jour quotidienne automatique"
4201
+
4202
+ # @ mainwp
4203
+ #, fuzzy
4204
+ #~| msgid ""
4205
+ #~| "Choose to have MainWP install updates, or notify you by email of "
4206
+ #~| "available updates. Updates apply to WordPress Core files, Plugins and "
4207
+ #~| "Themes."
4208
+ #~ msgid ""
4209
+ #~ "Choose to have MainWP install updates, or notify you by email of "
4210
+ #~ "available updates."
4211
+ #~ msgstr ""
4212
+ #~ "Choisir pour obtenir les mises à jour MainWP, ou vous notifier par "
4213
+ #~ "courriel les mises à jour disponibles. Les mises à jour s’appliquent aux "
4214
+ #~ "fichiers de base de WordPress, aux extensions et aux thèmes."
4215
+
4216
+ # @ mainwp
4217
+ #~ msgid "Last run: "
4218
+ #~ msgstr "Dernière exécution&nbsp;: "
4219
+
4220
+ # @ mainwp
4221
+ #~ msgid "Next run: "
4222
+ #~ msgstr "Prochaine exécution&nbsp;: "
4223
+
4224
+ # @ mainwp
4225
+ #, fuzzy
4226
+ #~| msgid "All Plugins"
4227
+ #~ msgid "All plugins"
4228
+ #~ msgstr "Toutes les extensions"
4229
+
4230
+ # @ mainwp
4231
+ #, fuzzy
4232
+ #~| msgid "Active Plugins"
4233
+ #~ msgid "Active plugins"
4234
+ #~ msgstr "Extensions actives"
4235
+
4236
+ # @ mainwp
4237
+ #~ msgid "Inactive plugins"
4238
+ #~ msgstr "Extensions innactives"
4239
+
4240
+ # @ mainwp
4241
+ #, fuzzy
4242
+ #~| msgid "Trust Status:"
4243
+ #~ msgid "Trust status:"
4244
+ #~ msgstr "Qualification&nbsp;:"
4245
+
4246
+ # @ mainwp
4247
+ #, fuzzy
4248
+ #~| msgid "Trusted Plugins"
4249
+ #~ msgid "Trusted plugins"
4250
+ #~ msgstr "Extensions Premium"
4251
+
4252
+ # @ mainwp
4253
+ #, fuzzy
4254
+ #~| msgid "Not Trusted Plugins"
4255
+ #~ msgid "Not trusted plugins"
4256
+ #~ msgstr "Aucune extension approuvée"
4257
+
4258
+ # @ mainwp
4259
+ #~ msgid "Ignored plugins"
4260
+ #~ msgstr "Extensions ignorées"
4261
+
4262
+ # @ mainwp
4263
+ #, fuzzy
4264
+ #~| msgid "Containing Keywords:"
4265
+ #~ msgid "Containing keywords:"
4266
+ #~ msgstr "Avec mot-clé&nbsp;:"
4267
+
4268
+ # @ mainwp
4269
+ #~ msgid "Show plugins"
4270
+ #~ msgstr "Afficher les extensions"
4271
+
4272
+ # @ mainwp
4273
+ #~ msgid "Keyword"
4274
+ #~ msgstr "Mot-clé"
4275
+
4276
+ # @ default
4277
+ #~ msgctxt "Plugin Installer"
4278
+ #~ msgid "Tag"
4279
+ #~ msgstr "Étiquette"
4280
+
4281
+ # @ mainwp
4282
+ #~ msgid "Search Plugins"
4283
+ #~ msgstr "Rechercher extensions"
4284
+
4285
+ # @ mainwp
4286
+ #~ msgid "Globally Ignored Plugins"
4287
+ #~ msgstr "Ignorer les extensions globalement"
4288
+
4289
+ # @ mainwp
4290
+ #, fuzzy
4291
+ #~| msgid "Plugin File"
4292
+ #~ msgid "Plugin file"
4293
+ #~ msgstr "Fichier extension"
4294
+
4295
+ # @ mainwp
4296
+ #~ msgid "Allow All"
4297
+ #~ msgstr "Autoriser tout"
4298
+
4299
+ # @ mainwp
4300
+ #~ msgid "Allow"
4301
+ #~ msgstr "Permettre"
4302
+
4303
+ # @ mainwp
4304
+ #~ msgid "No ignored plugins"
4305
+ #~ msgstr "Aucune extensions ignorées"
4306
+
4307
+ # @ mainwp
4308
+ #, fuzzy
4309
+ #~| msgid "Per Site Ignored Plugins"
4310
+ #~ msgid "Per site ignored plugins"
4311
+ #~ msgstr "Extensions ignorées par site"
4312
+
4313
+ # @ mainwp
4314
+ #, fuzzy
4315
+ #~| msgid "Allow All"
4316
+ #~ msgid "Allow all"
4317
+ #~ msgstr "Autoriser tout"
4318
+
4319
+ # @ mainwp
4320
+ #~ msgid "Globally Ignored Abandoned Plugins"
4321
+ #~ msgstr "Extensions ignorées ou abandonnées globalement"
4322
+
4323
+ # @ mainwp
4324
+ #~ msgid "No ignored abandoned plugins"
4325
+ #~ msgstr "Ne pas ignorer les extensions abandonnées"
4326
+
4327
+ # @ mainwp
4328
+ #, fuzzy
4329
+ #~| msgid "Per Site Ignored Abandoned Plugins"
4330
+ #~ msgid "Per site ignored abandoned plugins"
4331
+ #~ msgstr "Extensions ignorées ou abandonnées par site"
4332
+
4333
+ # @ mainwp
4334
+ #~ msgid "Posts"
4335
+ #~ msgstr "Articles"
4336
+
4337
+ # @ mainwp
4338
+ #, fuzzy
4339
+ #~| msgid "Edit Notes"
4340
+ #~ msgid "Edit Post"
4341
+ #~ msgstr "Editer l'article"
4342
+
4343
+ # @ mainwp
4344
+ #~ msgid "Step 1: Search Posts"
4345
+ #~ msgstr "Étape 1: Rechercher les articles"
4346
+
4347
+ # @ mainwp
4348
+ #, fuzzy
4349
+ #~| msgid ""
4350
+ #~| "You can also quickly see all Published, Draft, Pending and Trash Posts "
4351
+ #~| "for a single site from your Individual Site Dashboard Recent Posts "
4352
+ #~| "widget by visiting Sites &rarr; Manage Sites &rarr; Child Site &rarr; "
4353
+ #~| "Dashboard."
4354
+ #~ msgid ""
4355
+ #~ "You can also quickly see all Published, Draft, Pending and Trash Posts "
4356
+ #~ "for a single site from your individual site overview recent posts widget "
4357
+ #~ "by visiting Sites &rarr; Manage Sites &rarr; Child Site &rarr; Overview."
4358
+ #~ msgstr ""
4359
+ #~ "Vous pouvez aussi voir rapidement toutes les pages publiées, en "
4360
+ #~ "brouillon, en attente et mis à la corbeille pour un seul site à partir du "
4361
+ #~ "tableau de bord individuel site Pages récentes en visitant des Sites "
4362
+ #~ "&rarr; Gérer les sites &rarr; Site Client &rarr; Tableau de bord."
4363
+
4364
+ # @ mainwp
4365
+ #~ msgid "manage posts"
4366
+ #~ msgstr "gérer les articles"
4367
+
4368
+ # @ mainwp
4369
+ #~ msgid "Show Posts"
4370
+ #~ msgstr "Afficher articles"
4371
+
4372
+ # @ mainwp
4373
+ #~ msgid "Grabbing information from Child Sites"
4374
+ #~ msgstr "Saisir les informations depuis les sites clients"
4375
+
4376
+ # @ mainwp
4377
+ #~ msgid "Bulk Action"
4378
+ #~ msgstr "Action Globale"
4379
+
4380
+ # @ mainwp
4381
+ #~ msgid "Publish"
4382
+ #~ msgstr "Publier"
4383
+
4384
+ # @ mainwp
4385
+ #~ msgid "Unpublish"
4386
+ #~ msgstr "Dépublier"
4387
+
4388
+ # @ mainwp
4389
+ #~ msgid "Move to Trash"
4390
+ #~ msgstr "Mettre à la corbeille"
4391
+
4392
+ # @ mainwp
4393
+ #~ msgid "Apply"
4394
+ #~ msgstr "Appliquer"
4395
+
4396
+ # @ mainwp
4397
+ #, fuzzy
4398
+ #~| msgid "Posts Help"
4399
+ #~ msgid "Post type:"
4400
+ #~ msgstr "Type d’article&nbsp;: "
4401
+
4402
+ # @ mainwp
4403
+ #, fuzzy
4404
+ #~| msgid "All Statuses"
4405
+ #~ msgid "All post types"
4406
+ #~ msgstr "Tous les types d’article"
4407
+
4408
+ # @ mainwp
4409
+ #~ msgid "Post"
4410
+ #~ msgstr "Article"
4411
+
4412
+ # @ mainwp
4413
+ #, fuzzy
4414
+ #~| msgid "Maximum Number of Posts/Pages"
4415
+ #~ msgid "Maximum number of posts to return"
4416
+ #~ msgstr "Nombre maximal d’articles à afficher"
4417
+
4418
+ # @ mainwp
4419
+ #, fuzzy
4420
+ #~| msgid "Posts Help"
4421
+ #~ msgid "Post type"
4422
+ #~ msgstr "Type d’article "
4423
+
4424
+ # @ mainwp
4425
+ #~ msgid "Posts per page"
4426
+ #~ msgstr "Articles par page"
4427
+
4428
+ # @ mainwp
4429
+ #~ msgid "Approve"
4430
+ #~ msgstr "Approuver"
4431
+
4432
+ # @ mainwp
4433
+ #~ msgid ""
4434
+ #~ "Delete\n"
4435
+ #~ " Permanently"
4436
+ #~ msgstr ""
4437
+ #~ "Supprimer\n"
4438
+ #~ " définitivement"
4439
+
4440
+ # @ mainwp
4441
+ #, fuzzy
4442
+ #~| msgid "Post has been unpublished"
4443
+ #~ msgid "Post has been updated successfully"
4444
+ #~ msgstr "Le post a été mis à jour avec succès"
4445
+
4446
+ #, fuzzy
4447
+ #~ msgid "New post created"
4448
+ #~ msgstr "Nouveau message créé"
4449
+
4450
+ # @ default
4451
+ #, fuzzy
4452
+ #~| msgctxt "bulkpost"
4453
+ #~| msgid "New Bulkpost"
4454
+ #~ msgid "New Post"
4455
+ #~ msgstr "Nouvel article"
4456
+
4457
+ # @ mainwp
4458
+ #~ msgid "ERROR"
4459
+ #~ msgstr "ERREUR"
4460
+
4461
+ # @ mainwp
4462
+ #~ msgid "An undefined error occured!"
4463
+ #~ msgstr "Une erreur inconnue c’est produite&nbsp;!"
4464
+
4465
+ # @ mainwp
4466
+ #, fuzzy
4467
+ #~| msgid ""
4468
+ #~| "Return\n"
4469
+ #~| " to Dashboard"
4470
+ #~ msgid ""
4471
+ #~ "Return\n"
4472
+ #~ " to Manage Posts"
4473
+ #~ msgstr ""
4474
+ #~ "Retour\n"
4475
+ #~ " au tableau de bord"
4476
+
4477
+ # @ mainwp
4478
+ #~ msgid "Error - "
4479
+ #~ msgstr "Erreur - "
4480
+
4481
+ # @ mainwp
4482
+ #~ msgid ""
4483
+ #~ "We highly suggest you make a full backup before you run the Security "
4484
+ #~ "Update."
4485
+ #~ msgstr ""
4486
+ #~ "Nous suggérons fortement de faire une sauvegarde complète avant "
4487
+ #~ "d’exécuter la mise à jour de sécurité."
4488
+
4489
+ # @ mainwp
4490
+ #, fuzzy
4491
+ #~| msgid ""
4492
+ #~| "Prevent listing wp-content, wp-content/plugins, wp-content/themes, wp-"
4493
+ #~| "content/uploads"
4494
+ #~ msgid ""
4495
+ #~ "/wp-content/, /wp-content/plugins/, /wp-content/themes/ and /wp-content/"
4496
+ #~ "uploads/ directories listing has not been prevented"
4497
+ #~ msgstr ""
4498
+ #~ "Éviter de répertorier wp-content, wp-content/plugins, wp-content/themes, "
4499
+ #~ "wp-content/uploads"
4500
+
4501
+ # @ mainwp
4502
+ #, fuzzy
4503
+ #~| msgid ""
4504
+ #~| "Prevent listing wp-content, wp-content/plugins, wp-content/themes, wp-"
4505
+ #~| "content/uploads"
4506
+ #~ msgid ""
4507
+ #~ "/wp-content/, /wp-content/plugins/, /wp-content/themes/ and /wp-content/"
4508
+ #~ "uploads/ directories listing has been prevented"
4509
+ #~ msgstr ""
4510
+ #~ "Éviter de répertorier wp-content, wp-content/plugins, wp-content/themes, "
4511
+ #~ "wp-content/uploads"
4512
+
4513
+ # @ mainwp
4514
+ #~ msgid "Fix"
4515
+ #~ msgstr "Fixer"
4516
+
4517
+ # @ mainwp
4518
+ #~ msgid "Unfix"
4519
+ #~ msgstr "Détacher"
4520
+
4521
+ # @ mainwp
4522
+ #, fuzzy
4523
+ #~| msgid "Removed Really Simple Discovery meta tag"
4524
+ #~ msgid "Really Simple Discovery meta tag has been removed from front-end"
4525
+ #~ msgstr "Suppression de la balise meta Really Simple Discovery"
4526
+
4527
+ # @ mainwp
4528
+ #, fuzzy
4529
+ #~| msgid "Database error reporting turned off"
4530
+ #~ msgid "Database error reporting has not been disabled"
4531
+ #~ msgstr "Rapport d’erreurs base de données désactivé"
4532
+
4533
+ # @ mainwp
4534
+ #, fuzzy
4535
+ #~| msgid "Database error reporting turned off"
4536
+ #~ msgid "Database error reporting has been disabled"
4537
+ #~ msgstr "Rapport d’erreurs base de données désactivé"
4538
+
4539
+ # @ mainwp
4540
+ #, fuzzy
4541
+ #~| msgid "PHP error reporting turned off"
4542
+ #~ msgid "PHP error reporting has not been disabled"
4543
+ #~ msgstr "Le rapport d'erreurs PHP n’est pas désactivé"
4544
+
4545
+ # @ mainwp
4546
+ #, fuzzy
4547
+ #~| msgid "PHP error reporting turned off"
4548
+ #~ msgid "PHP error reporting has been disabled"
4549
+ #~ msgstr "Rapport d'erreurs PHP est désactivé"
4550
+
4551
+ # @ mainwp
4552
+ #~ msgid "You need to re-upload the readme.html file manually to unfix this."
4553
+ #~ msgstr ""
4554
+ #~ "Vous avez besoin de télécharger à nouveau le fichier readme.html "
4555
+ #~ "manuellement pour résoudre cela."
4556
+
4557
+ # @ mainwp
4558
+ #~ msgid "Administrator username should not be \"admin\""
4559
+ #~ msgstr "L’identifiant de l’administrateur ne doit pas être \"admin\""
4560
+
4561
+ # @ mainwp
4562
+ #~ msgid "Administrator username is not \"admin\""
4563
+ #~ msgstr "L’identifiant de l’administrateur n’est pas \"admin\""
4564
+
4565
+ # @ mainwp
4566
+ #~ msgid ""
4567
+ #~ "If this user was used as your MainWP Secure Link Admin, you will need to "
4568
+ #~ "change your Administrator Username in the MainWP Dashboard for the site."
4569
+ #~ msgstr ""
4570
+ #~ "Si cet utilisateur a été utilisé comme lien Admin MainWP, vous devrez "
4571
+ #~ "changer votre nom d’administrateur dans le tableau de bord MainWP pour le "
4572
+ #~ "site."
4573
+
4574
+ # @ mainwp
4575
+ #~ msgid "You have to change this yourself"
4576
+ #~ msgstr "Vous devez changer vous-même"
4577
+
4578
+ # @ mainwp
4579
+ #~ msgid "Fix All"
4580
+ #~ msgstr "Fixer tout"
4581
+
4582
+ # @ mainwp
4583
+ #~ msgid "Refresh"
4584
+ #~ msgstr "Rafraîchir l’écran"
4585
+
4586
+ # @ mainwp
4587
+ #, fuzzy
4588
+ #~| msgid "Security issue"
4589
+ #~| msgid_plural "Security issues"
4590
+ #~ msgid "Security issues"
4591
+ #~ msgstr "Problèmes de sécurité"
4592
+
4593
+ # @ mainwp
4594
+ #~ msgid "Security issue"
4595
+ #~ msgid_plural "Security issues"
4596
+ #~ msgstr[0] "Problème de sécurité"
4597
+ #~ msgstr[1] "Problèmes de sécurité"
4598
+
4599
+ # @ mainwp
4600
+ #~ msgid "Issue"
4601
+ #~ msgid_plural "Issues"
4602
+ #~ msgstr[0] "Problème"
4603
+ #~ msgstr[1] "Problèmes"
4604
+
4605
+ # @ mainwp
4606
+ # @ default
4607
+ #~ msgid "Server Information"
4608
+ #~ msgstr "Information serveur"
4609
+
4610
+ # @ mainwp
4611
+ #~ msgid "Cron Schedules"
4612
+ #~ msgstr "Horaires cron"
4613
+
4614
+ # @ mainwp
4615
+ #~ msgid "Child Site Information"
4616
+ #~ msgstr "Information Site Client"
4617
+
4618
+ # @ mainwp
4619
+ #~ msgid "Error Log"
4620
+ #~ msgstr "Log d’erreur"
4621
+
4622
+ # @ mainwp
4623
+ #~ msgid "WP-Config File"
4624
+ #~ msgstr "Fichier de config-WP"
4625
+
4626
+ # @ mainwp
4627
+ #~ msgid ".htaccess File"
4628
+ #~ msgstr "Fichier .Htaccess"
4629
+
4630
+ # @ mainwp
4631
+ #~ msgid "Action logs"
4632
+ #~ msgstr "Logs d’action"
4633
+
4634
+ # @ mainwp
4635
+ #~ msgid "Server"
4636
+ #~ msgstr "Serveur"
4637
+
4638
+ # @ mainwp
4639
+ #~ msgid "server information"
4640
+ #~ msgstr "information serveur"
4641
+
4642
+ # @ mainwp
4643
+ #~ msgid "Please include this information when requesting support:"
4644
+ #~ msgstr ""
4645
+ #~ "Merci d’inclure cette information lors de la demande de support&nbsp;:"
4646
+
4647
+ # @ mainwp
4648
+ #~ msgid "Download"
4649
+ #~ msgstr "Télécharger"
4650
+
4651
+ # @ mainwp
4652
+ #~ msgid "Get System Report"
4653
+ #~ msgstr "Obtenez le système de rapport"
4654
+
4655
+ # @ mainwp
4656
+ #~ msgid "Server Configuration"
4657
+ #~ msgstr "Configuration serveur"
4658
+
4659
+ # @ mainwp
4660
+ #, fuzzy
4661
+ #~| msgid "Required Value"
4662
+ #~ msgid "Required value"
4663
+ #~ msgstr "Valeur requise"
4664
+
4665
+ # @ mainwp
4666
+ #~ msgid "Value"
4667
+ #~ msgstr "Valeur"
4668
+
4669
+ # @ mainwp
4670
+ #~ msgid "MAINWP DASHBOARD"
4671
+ #~ msgstr "Tableau de bord MainWP"
4672
+
4673
+ # @ mainwp
4674
+ #~ msgid "MainWP Dashboard Version"
4675
+ #~ msgstr "Version du tableau de bord MAINWP"
4676
+
4677
+ # @ mainwp
4678
+ #, fuzzy
4679
+ #~| msgid "MAINWP SETTINGS"
4680
+ #~ msgid "MAINWP EXTENSIONS"
4681
+ #~ msgstr "EXTENSIONS MAINWP"
4682
+
4683
+ # @ mainwp
4684
+ #, fuzzy
4685
+ #~| msgid "You have no installed extensions."
4686
+ #~ msgid "No installed extensions"
4687
+ #~ msgstr "Aucune extension installée"
4688
+
4689
+ # @ mainwp
4690
+ #, fuzzy
4691
+ #~| msgid "Password"
4692
+ #~ msgid "Pass"
4693
+ #~ msgstr "Mot de passe"
4694
+
4695
+ # @ mainwp
4696
+ #~ msgid "WORDPRESS"
4697
+ #~ msgstr "WordPress"
4698
+
4699
+ # @ mainwp
4700
+ #~ msgid "FileSystem Method"
4701
+ #~ msgstr "Méthode fichier système"
4702
+
4703
+ # @ mainwp
4704
+ #~ msgid "PHP SETTINGS"
4705
+ #~ msgstr "Réglages PHP"
4706
+
4707
+ # @ mainwp
4708
+ #~ msgid "MySQL SETTINGS"
4709
+ #~ msgstr "Réglages MySQL"
4710
+
4711
+ # @ mainwp
4712
+ #~ msgid "SERVER INFORMATION"
4713
+ #~ msgstr "Information Serveur"
4714
+
4715
+ # @ mainwp
4716
+ #~ msgid "WordPress Root Directory"
4717
+ #~ msgstr "Répertoire racine WordPress"
4718
+
4719
+ # @ mainwp
4720
+ #~ msgid "Server Software"
4721
+ #~ msgstr "Logiciel du serveur"
4722
+
4723
+ # @ mainwp
4724
+ #~ msgid "Operating System"
4725
+ #~ msgstr "Système d’exploitation"
4726
+
4727
+ # @ mainwp
4728
+ #~ msgid "Architecture"
4729
+ #~ msgstr "Architecture"
4730
+
4731
+ # @ mainwp
4732
+ #~ msgid "Server IP"
4733
+ #~ msgstr "IP du serveur"
4734
+
4735
+ # @ mainwp
4736
+ #~ msgid "Server Protocol"
4737
+ #~ msgstr "Protocole du serveur"
4738
+
4739
+ # @ mainwp
4740
+ #~ msgid "HTTP Host"
4741
+ #~ msgstr "Hébergeur HTTP"
4742
+
4743
+ # @ mainwp
4744
+ #~ msgid "HTTPS"
4745
+ #~ msgstr "HTTPS"
4746
+
4747
+ # @ mainwp
4748
+ #, fuzzy
4749
+ #~| msgid "Sever self connect"
4750
+ #~ msgid "Server self connect"
4751
+ #~ msgstr "Serveur auto-connecté"
4752
+
4753
+ # @ mainwp
4754
+ #~ msgid "Server Port"
4755
+ #~ msgstr "Port du serveur"
4756
+
4757
+ # @ mainwp
4758
+ #, fuzzy
4759
+ #~| msgid "Getaway Interface"
4760
+ #~ msgid "Gateway Interface"
4761
+ #~ msgstr "Interface de transport"
4762
+
4763
+ # @ mainwp
4764
+ #~ msgid "Accept Content"
4765
+ #~ msgstr "Contenu accepté"
4766
+
4767
+ # @ mainwp
4768
+ #~ msgid "Remote Host"
4769
+ #~ msgstr "Serveur distant"
4770
+
4771
+ # @ mainwp
4772
+ #~ msgid "Remote Port"
4773
+ #~ msgstr "Port distant"
4774
+
4775
+ # @ mainwp
4776
+ #~ msgid "PHP INFORMATION"
4777
+ #~ msgstr "Information PHP"
4778
+
4779
+ # @ mainwp
4780
+ #~ msgid "PHP Allow URL fopen"
4781
+ #~ msgstr "Laisser URL PHP ouverte"
4782
+
4783
+ # @ mainwp
4784
+ #~ msgid "PHP Exif Support"
4785
+ #~ msgstr "Support Exif PHP"
4786
+
4787
+ # @ mainwp
4788
+ #~ msgid "PHP IPTC Support"
4789
+ #~ msgstr "Support IPTC PHP"
4790
+
4791
+ # @ mainwp
4792
+ #~ msgid "PHP XML Support"
4793
+ #~ msgstr "Support XML PHP"
4794
+
4795
+ # @ mainwp
4796
+ #~ msgid "PHP Disabled Functions"
4797
+ #~ msgstr "Fonctions PHP désactivées"
4798
+
4799
+ # @ mainwp
4800
+ #~ msgid "PHP Loaded Extensions"
4801
+ #~ msgstr "Extensions PHP chargées"
4802
+
4803
+ # @ mainwp
4804
+ #~ msgid "MySQL INFORMATION"
4805
+ #~ msgstr "Information MySQL"
4806
+
4807
+ # @ mainwp
4808
+ #~ msgid "MySQL Mode"
4809
+ #~ msgstr "Mode MySQL"
4810
+
4811
+ # @ mainwp
4812
+ #~ msgid "MAINWP SETTINGS"
4813
+ #~ msgstr "Réglages MAINWP"
4814
+
4815
+ # @ mainwp
4816
+ #~ msgid "WORDPRESS PLUGINS"
4817
+ #~ msgstr "EXTENSIONS WORDPRESS"
4818
+
4819
+ # @ mainwp
4820
+ #~ msgid "Required Value"
4821
+ #~ msgstr "Valeur requise"
4822
+
4823
+ # @ mainwp
4824
+ #, fuzzy
4825
+ #~| msgid "Extension not purchased."
4826
+ #~ msgid "SSL Extension Enabled"
4827
+ #~ msgstr "Extension SSL activée"
4828
+
4829
+ # @ mainwp
4830
+ #~ msgid "cURL Extension Enabled"
4831
+ #~ msgstr "Extension cURL activée"
4832
+
4833
+ # @ mainwp
4834
+ #, fuzzy
4835
+ #~| msgid "SSL Version"
4836
+ #~ msgid "MySQL Version"
4837
+ #~ msgstr "Version MySQL"
4838
+
4839
+ # @ mainwp
4840
+ #~ msgid "This is not your website."
4841
+ #~ msgstr "Ce n’est pas de votre site Web."
4842
+
4843
+ # @ mainwp
4844
+ #~ msgid "Child Site Server Information"
4845
+ #~ msgstr "Information serveur du site client"
4846
+
4847
+ # @ mainwp
4848
+ #~ msgid "Select Child Site: "
4849
+ #~ msgstr "Sélectionner site client&nbsp;: "
4850
+
4851
+ # @ mainwp
4852
+ #~ msgid "Select Child Site"
4853
+ #~ msgstr "Sélectionner un site client"
4854
+
4855
+ # @ mainwp
4856
+ #~ msgid "Select Information: "
4857
+ #~ msgstr "Sélectionner l’information&nbsp;: "
4858
+
4859
+ # @ mainwp
4860
+ #~ msgid "Full Information"
4861
+ #~ msgstr "Information complète"
4862
+
4863
+ # @ mainwp
4864
+ #~ msgid "WP-Config.php"
4865
+ #~ msgstr "WP-Config.php"
4866
+
4867
+ # @ mainwp
4868
+ #~ msgid "Loading server information..."
4869
+ #~ msgstr "Lecture information serveur…"
4870
+
4871
+ # @ mainwp
4872
+ #~ msgid "Schedule"
4873
+ #~ msgstr "Planification"
4874
+
4875
+ # @ mainwp
4876
+ #~ msgid "Last run"
4877
+ #~ msgstr "Dernière exécution"
4878
+
4879
+ # @ mainwp
4880
+ #~ msgid "Next due"
4881
+ #~ msgstr "Prochaine"
4882
+
4883
+ # @ mainwp
4884
+ #~ msgid "Hook"
4885
+ #~ msgstr "Concerne"
4886
+
4887
+ # @ default
4888
+ #~ msgid " MB"
4889
+ #~ msgstr " Mo"
4890
+
4891
+ # @ default
4892
+ # @ mainwp
4893
+ #~ msgid "N/A"
4894
+ #~ msgstr "N/D"
4895
+
4896
+ # @ default
4897
+ #~ msgid "NOT SET"
4898
+ #~ msgstr "Non paramétré"
4899
+
4900
+ # @ mainwp
4901
+ #~ msgid "ON"
4902
+ #~ msgstr "ACTIVÉ"
4903
+
4904
+ # @ mainwp
4905
+ #~ msgid "OFF"
4906
+ #~ msgstr "DÉSACTIVÉ"
4907
+
4908
+ # @ mainwp
4909
+ #~ msgid "The HTTP response test get an error \"%s\""
4910
+ #~ msgstr "Le test de réponse HTTP obtient une erreur \"%s\""
4911
+
4912
+ # @ mainwp
4913
+ #~ msgid "The HTTP response test get a false http status (%s)"
4914
+ #~ msgstr "Le test de réponse HTTP obtient un faux statut http (%s)"
4915
+
4916
+ # @ mainwp
4917
+ #~ msgid "Not expected HTTP response body: %s"
4918
+ #~ msgstr "Réponse du corps HTTP non espérée&nbsp;: %s"
4919
+
4920
+ # @ mainwp
4921
+ #~ msgid "Response Test O.K."
4922
+ #~ msgstr "Réponse du test OK."
4923
+
4924
+ # @ mainwp
4925
+ #~ msgid "Time"
4926
+ #~ msgstr "Temps"
4927
+
4928
+ # @ mainwp
4929
+ #~ msgid "Error"
4930
+ #~ msgstr "Erreur"
4931
+
4932
+ # @ mainwp
4933
+ #~ msgid "Error logging disabled."
4934
+ #~ msgstr "Erreur de connexion désactivée."
4935
+
4936
+ # @ mainwp
4937
+ #~ msgid ""
4938
+ #~ "MainWP is unable to find your error logs, please contact your host for "
4939
+ #~ "server error logs."
4940
+ #~ msgstr ""
4941
+ #~ "MainWP est incapable de trouver vos journaux d’erreurs, merci de "
4942
+ #~ "contacter votre hébergeur pour les journaux d’erreur de serveur."
4943
+
4944
+ # @ mainwp
4945
+ #~ msgid "No functions disabled"
4946
+ #~ msgstr "Pas de fonctions désactivées"
4947
+
4948
+ # @ mainwp
4949
+ #, fuzzy
4950
+ #~| msgid "Child Sites"
4951
+ #~ msgid "Number Of Child Sites"
4952
+ #~ msgstr "Nombre de sites clients"
4953
+
4954
+ # @ mainwp
4955
+ #~ msgid "Hide Network on Child Sites"
4956
+ #~ msgstr "Cacher Réseau sur les sites clients"
4957
+
4958
+ # @ mainwp
4959
+ #~ msgid "Use WP-Cron"
4960
+ #~ msgstr "Utiliser WP-Cron"
4961
+
4962
+ # @ mainwp
4963
+ #~ msgid "Optimize for Shared Hosting or Big Networks"
4964
+ #~ msgstr "Optimiser pour l’hébergement mutualisé ou grands réseaux"
4965
+
4966
+ # @ mainwp
4967
+ #, fuzzy
4968
+ #~| msgid "View Upgrades per Site"
4969
+ #~ msgid "View Updates per Site"
4970
+ #~ msgstr "Voir les mises à jour par site"
4971
+
4972
+ # @ mainwp
4973
+ #, fuzzy
4974
+ #~| msgid "Require Backup Before Upgrade"
4975
+ #~ msgid "Require Backup Before Update"
4976
+ #~ msgstr "Exiger une sauvegarde avant la mise à jour"
4977
+
4978
+ # @ mainwp
4979
+ #~ msgid "Automatic Daily Update"
4980
+ #~ msgstr "Mise à jour quotidienne automatique"
4981
+
4982
+ # @ mainwp
4983
+ #, fuzzy
4984
+ #~| msgid "Abandoned Plugins/Thems Tolerance"
4985
+ #~ msgid "Abandoned Plugins/Themes Tolerance"
4986
+ #~ msgstr "Tolérance d’abandon extension/thème"
4987
+
4988
+ # @ mainwp
4989
+ #~ msgid "Maximum Number of Comments"
4990
+ #~ msgstr "Nombre maximum de commentaires"
4991
+
4992
+ # @ mainwp
4993
+ #~ msgid "Primary Backup System"
4994
+ #~ msgstr "Système de sauvegarde primaire"
4995
+
4996
+ # @ mainwp
4997
+ #~ msgid "Backups on Server"
4998
+ #~ msgstr "Sauvegardes sur le serveur"
4999
+
5000
+ # @ mainwp
5001
+ #~ msgid "Backups on Remote Storage"
5002
+ #~ msgstr "Sauvegardes sur stockage à distance"
5003
+
5004
+ # @ mainwp
5005
+ #~ msgid "Backup Archive Format"
5006
+ #~ msgstr "Format d’archive des sauvegardes"
5007
+
5008
+ # @ mainwp
5009
+ #~ msgid "Send Email if a Backup Fails"
5010
+ #~ msgstr "Envoyer un courriel si une sauvegarde échoue"
5011
+
5012
+ # @ mainwp
5013
+ #~ msgid "Send Email if a Backup Starts"
5014
+ #~ msgstr "Envoyer un courriel si une sauvegarde débute"
5015
+
5016
+ # @ mainwp
5017
+ #~ msgid "Execute Backup Tasks in Chunks"
5018
+ #~ msgstr "Exécuter les tâches de sauvegarde massivement"
5019
+
5020
+ # @ mainwp
5021
+ #~ msgid "Maximum simultaneous requests"
5022
+ #~ msgstr "Requêtes simultanées Maximum"
5023
+
5024
+ # @ mainwp
5025
+ #~ msgid "Minimum delay between requests"
5026
+ #~ msgstr "Délai minimum entre les demandes"
5027
+
5028
+ # @ mainwp
5029
+ #~ msgid "Maximum simultaneous requests per ip"
5030
+ #~ msgstr "Maximum de demandes simultanées par IP"
5031
+
5032
+ # @ mainwp
5033
+ #~ msgid "Minimum delay between requests to the same ip"
5034
+ #~ msgstr "Délai minimum entre les requêtes à la même IP"
5035
+
5036
+ # @ mainwp
5037
+ #, fuzzy
5038
+ #~| msgid "Maximum simultaneous requests"
5039
+ #~ msgid "Maximum simultaneous sync requests"
5040
+ #~ msgstr "Nombre maximal de requêtes de synchronisation simultanées"
5041
+
5042
+ # @ mainwp
5043
+ #, fuzzy
5044
+ #~| msgid "Maximum simultaneous requests"
5045
+ #~ msgid "Minimum simultaneous install/update requests"
5046
+ #~ msgstr "Minimum d’installations / demandes de mise à jour simultanées"
5047
+
5048
+ # @ mainwp
5049
+ #~ msgid "Default MainWP Backups"
5050
+ #~ msgstr "Sauvegardes MainWP par défaut"
5051
+
5052
+ #, fuzzy
5053
+ #~ msgid "Warning"
5054
+ #~ msgstr "Attention !"
5055
+
5056
+ # @ mainwp
5057
+ #~ msgid "Settings Global options"
5058
+ #~ msgstr "Paramètres options globales"
5059
+
5060
+ # @ mainwp
5061
+ #~ msgid "Dashboard Options"
5062
+ #~ msgstr "Options du Tableau de bord"
5063
+
5064
+ # @ mainwp
5065
+ #~ msgid "MainWP Tools"
5066
+ #~ msgstr "Outils MainWP"
5067
+
5068
+ # @ mainwp
5069
+ #, fuzzy
5070
+ #~| msgid "Network Optimization"
5071
+ #~ msgid "Network optimization"
5072
+ #~ msgstr "Optimisation du réseau"
5073
+
5074
+ # @ mainwp
5075
+ #, fuzzy
5076
+ #~| msgid "Global Options"
5077
+ #~ msgid "Global options"
5078
+ #~ msgstr "Options globales"
5079
+
5080
+ # @ mainwp
5081
+ #, fuzzy
5082
+ #~| msgid "Upgrade Options"
5083
+ #~ msgid "Update options"
5084
+ #~ msgstr "Options de mise à jour"
5085
+
5086
+ # @ mainwp
5087
+ #, fuzzy
5088
+ #~| msgid "Network Footprint"
5089
+ #~ msgid "Network footprint"
5090
+ #~ msgstr "Zone de réseau"
5091
+
5092
+ # @ mainwp
5093
+ #, fuzzy
5094
+ #~| msgid "Dashboard Options"
5095
+ #~ msgid "Dashboard options"
5096
+ #~ msgstr "Options du Tableau de bord"
5097
+
5098
+ # @ mainwp
5099
+ #, fuzzy
5100
+ #~| msgid "MainWP Tools"
5101
+ #~ msgid "MainWP tools"
5102
+ #~ msgstr "Outils MainWP"
5103
+
5104
+ # @ mainwp
5105
+ #, fuzzy
5106
+ #~| msgid "Connection test failed."
5107
+ #~ msgid "Connection settings"
5108
+ #~ msgstr "Réglages de connexion"
5109
+
5110
+ # @ mainwp
5111
+ #, fuzzy
5112
+ #~| msgid "SSL Settings"
5113
+ #~ msgid "OpenSSL library settings"
5114
+ #~ msgstr "Paramètres SSL"
5115
+
5116
+ # @ mainwp
5117
+ #, fuzzy
5118
+ #~| msgid "Cross IP Settings"
5119
+ #~ msgid "Cross IP settings"
5120
+ #~ msgstr "Paramètres Cross IP"
5121
+
5122
+ # @ mainwp
5123
+ #~ msgid "IP settings"
5124
+ #~ msgstr "Réglages IP"
5125
+
5126
+ #, fuzzy
5127
+ #~ msgid "Frontend request settings"
5128
+ #~ msgstr "Réglages demandés par l’interface"
5129
+
5130
+ # @ mainwp
5131
+ #~ msgid "SSL settings"
5132
+ #~ msgstr "Réglages SSL"
5133
+
5134
+ # @ mainwp
5135
+ #~ msgid "IPv4 settings"
5136
+ #~ msgstr "Réglages IPv4"
5137
+
5138
+ # @ mainwp
5139
+ #~ msgid "Global Options"
5140
+ #~ msgstr "Options globales"
5141
+
5142
+ # @ mainwp
5143
+ #~ msgid ""
5144
+ #~ "The majority of these default settings can also be tweaked on the Site "
5145
+ #~ "level by visiting Manage Sites &rarr; Edit Site."
5146
+ #~ msgstr ""
5147
+ #~ "La majorité de ces paramètres par défaut peut aussi être modifié au "
5148
+ #~ "niveau du site en vous rendant Gérer les sites &rarr; Modifier le site."
5149
+
5150
+ # @ mainwp
5151
+ #~ msgid ""
5152
+ #~ "We currently recommend the free %sAdvanced Uptime Monitor Extension%s to "
5153
+ #~ "perform more frequent tests."
5154
+ #~ msgstr ""
5155
+ #~ "Nous recommandons l’extension gratuite %sAdvanced Uptime Monitor%s pour "
5156
+ #~ "effectuer des tests plus fréquents."
5157
+
5158
+ # @ mainwp
5159
+ #~ msgid "manage dashboard settings"
5160
+ #~ msgstr "gérer les paramètres du tableau de bord"
5161
+
5162
+ # @ mainwp
5163
+ #, fuzzy
5164
+ #~| msgid "Upgrade Successful"
5165
+ #~ msgid "Settings Saved Successfully"
5166
+ #~ msgstr "Paramètres enregistrés avec succès."
5167
+
5168
+ # @ mainwp
5169
+ #~ msgid "Client Reports Site Url:"
5170
+ #~ msgstr "URL du site du client du rapport&nbsp;:"
5171
+
5172
+ #, fuzzy
5173
+ #~ msgid "With Trailing Slash"
5174
+ #~ msgstr ""
5175
+ #~ "Le chemin absolu vers le répertoire où tous les fichiers sont stockés "
5176
+ #~ "(sans slash)."
5177
+
5178
+ # @ mainwp
5179
+ #, fuzzy
5180
+ #~| msgid "Allow All"
5181
+ #~ msgid "Allow Access:"
5182
+ #~ msgstr "Autoriser l’accès :"
5183
+
5184
+ # @ mainwp
5185
+ #~ msgid "Allow Access: "
5186
+ #~ msgstr "Autoriser l’accès&nbsp;: "
5187
+
5188
+ # @ mainwp
5189
+ #, fuzzy
5190
+ #~| msgid "Test Connection"
5191
+ #~ msgid "Secure Connection:"
5192
+ #~ msgstr "Connexion sécurisée"
5193
+
5194
+ # @ mainwp
5195
+ #, fuzzy
5196
+ #~| msgid "Child Unique Security ID "
5197
+ #~ msgid "Require Unique Security ID"
5198
+ #~ msgstr "Exiger une ID Unique de sécurité"
5199
+
5200
+ # @ mainwp
5201
+ #, fuzzy
5202
+ #~| msgid "Child Unique Security ID "
5203
+ #~ msgid "Your Unique Security ID is:"
5204
+ #~ msgstr "Votre ID Unique de sécurité est&nbsp;:"
5205
+
5206
+ # @ mainwp
5207
+ #~ msgid ""
5208
+ #~ "Maximum simultaneous requests. When too many requests are sent out, they "
5209
+ #~ "will begin to time out. This will cause child sites to be shown as "
5210
+ #~ "offline while they are online. With a typical shared host you should set "
5211
+ #~ "this at 4, set to 0 for unlimited."
5212
+ #~ msgstr ""
5213
+ #~ "Maximum de demandes simultanées. Lorsque trop de demandes sont envoyées, "
5214
+ #~ "ils vont commencer à expirer. Cela entraînera les sites clients à être "
5215
+ #~ "perçus comme déconnecté pendant qu’ils sont en ligne. Avec un hébergement "
5216
+ #~ "mutualisé, vous devriez régler à 4, avec 0 c’est illimité."
5217
+
5218
+ # @ mainwp
5219
+ #, fuzzy
5220
+ #~| msgid "Default"
5221
+ #~ msgid "Default: 4"
5222
+ #~ msgstr "Par défaut&nbsp;: 4"
5223
+
5224
+ # @ mainwp
5225
+ #~ msgid "Minimum delay between requests (milliseconds)"
5226
+ #~ msgstr "Délai minimum entre les demandes (millisecondes)"
5227
+
5228
+ # @ mainwp
5229
+ #~ msgid ""
5230
+ #~ "Minimum delay between requests (milliseconds). With a typical shared host "
5231
+ #~ "you should set this at 200."
5232
+ #~ msgstr ""
5233
+ #~ "Délai minimum entre les demandes (millisecondes). Avec un hébergement "
5234
+ #~ "mutualisé, vous devriez régler à 200."
5235
+
5236
+ # @ mainwp
5237
+ #, fuzzy
5238
+ #~| msgid "Default: YES"
5239
+ #~ msgid "Default: 200"
5240
+ #~ msgstr "Par défaut&nbsp;: 200"
5241
+
5242
+ # @ mainwp
5243
+ #~ msgid ""
5244
+ #~ "Due to bug with PHP on Windows servers it is required to set the OpenSSL "
5245
+ #~ "Library location so MainWP Dashboard can connect to your child sites."
5246
+ #~ msgstr ""
5247
+ #~ "En raison d’un bogue avec PHP sur les serveurs Windows, il est nécessaire "
5248
+ #~ "de définir l’emplacement de la bibliothèque OpenSSL afin que tableau de "
5249
+ #~ "bord MainWP puisse se connecter à vos sites clients."
5250
+
5251
+ # @ mainwp
5252
+ #~ msgid ""
5253
+ #~ "Maximum simultaneous requests per IP. When too many requests are sent "
5254
+ #~ "out, they will begin to time out. This will cause child sites to be shown "
5255
+ #~ "as offline while they are online. With a typical shared host you should "
5256
+ #~ "set this at 1, set to 0 for unlimited."
5257
+ #~ msgstr ""
5258
+ #~ "Requêtes simultanées maximum par IP. Lorsque trop de demandes sont "
5259
+ #~ "envoyées, elles vont commencer à expirer. Cela peut présenter les sites "
5260
+ #~ "clients comme déconnecté pendant qu’ils sont en ligne. Avec un "
5261
+ #~ "hébergement mutualisé, vous devriez régler à 1, avec 0 c’est illimité."
5262
+
5263
+ # @ mainwp
5264
+ #, fuzzy
5265
+ #~| msgid "Default"
5266
+ #~ msgid "Default: 1"
5267
+ #~ msgstr "Par défaut&nbsp;: 1"
5268
+
5269
+ # @ mainwp
5270
+ #~ msgid "Minimum delay between requests to the same ip (milliseconds)"
5271
+ #~ msgstr ""
5272
+ #~ "Délai minimum entre les demandes à la même adresse IP (millisecondes)"
5273
+
5274
+ # @ mainwp
5275
+ #~ msgid ""
5276
+ #~ "Minimum delay between requests (milliseconds) per IP. With a typical "
5277
+ #~ "shared host you should set this at 1000."
5278
+ #~ msgstr ""
5279
+ #~ "Délai minimum entre les demandes (millisecondes) par IP. Avec un "
5280
+ #~ "hébergement mutualisé, vous devriez régler à 1000."
5281
+
5282
+ # @ mainwp
5283
+ #, fuzzy
5284
+ #~| msgid "Default: YES"
5285
+ #~ msgid "Default: 1000"
5286
+ #~ msgstr "Par défaut&nbsp;: 1000"
5287
+
5288
+ # @ mainwp
5289
+ #, fuzzy
5290
+ #~| msgid "Default"
5291
+ #~ msgid "Default: 8"
5292
+ #~ msgstr "Par défaut: 8"
5293
+
5294
+ # @ mainwp
5295
+ #, fuzzy
5296
+ #~| msgid "Default"
5297
+ #~ msgid "Default: 3"
5298
+ #~ msgstr "Par défaut&nbsp;: 3"
5299
+
5300
+ # @ mainwp
5301
+ #~ msgid "Verify certificate"
5302
+ #~ msgstr "Vérifier le certificat"
5303
+
5304
+ # @ mainwp
5305
+ #~ msgid ""
5306
+ #~ "Verify the childs SSL certificate. This should be disabled if you are "
5307
+ #~ "using out of date or self signed certificates."
5308
+ #~ msgstr ""
5309
+ #~ "Vérifier le certificat SSL client. Ce doit être désactivé si vous "
5310
+ #~ "utilisez une configuration périmée ou des certificats auto-signés."
5311
+
5312
+ # @ mainwp
5313
+ #~ msgid "Default: YES"
5314
+ #~ msgstr "Défaut&nbsp;: OUI"
5315
+
5316
+ # @ mainwp
5317
+ #, fuzzy
5318
+ #~| msgid "Default: YES"
5319
+ #~ msgid "Default: NO"
5320
+ #~ msgstr "Pas de valeur par défaut"
5321
+
5322
+ # @ mainwp
5323
+ #, fuzzy
5324
+ #~| msgid "Hide MainWP Footer"
5325
+ #~ msgid "Hide MainWP footer"
5326
+ #~ msgstr "Masquer le pied de page MainWP"
5327
+
5328
+ # @ mainwp
5329
+ #, fuzzy
5330
+ #~| msgid ""
5331
+ #~| "If set to YES, fixed footer will be appended to the bottom of the page"
5332
+ #~ msgid ""
5333
+ #~ "If set to YES, fixed footer will be removed from the bottom of the page"
5334
+ #~ msgstr "Si défini à OUI, un pied de page fixe sera ajouté au bas de la page"
5335
+
5336
+ # @ mainwp
5337
+ #, fuzzy
5338
+ #~| msgid "Use Child Site Favicon"
5339
+ #~ msgid "Use child site favicon"
5340
+ #~ msgstr "Utilisateur le favicon du site client"
5341
+
5342
+ # @ mainwp
5343
+ #~ msgid "Set to YES if you want to use Child Site Favicon."
5344
+ #~ msgstr ""
5345
+ #~ "Régler sur OUI si vous souhaitez utiliser le favicon du site client."
5346
+
5347
+ # @ mainwp
5348
+ #, fuzzy
5349
+ #~| msgid "Hide MainWP Tips"
5350
+ #~ msgid "Hide MainWP tips"
5351
+ #~ msgstr "Masquer les conseils MainWP"
5352
+
5353
+ # @ mainwp
5354
+ #~ msgid "If set to YES, MainWP Tips will be hidden"
5355
+ #~ msgstr "Si défini à OUI, les conseils MainWP seront cachés"
5356
+
5357
+ # @ mainwp
5358
+ #, fuzzy
5359
+ #~| msgid "Turn off Brag Button"
5360
+ #~ msgid "Turn off brag button"
5361
+ #~ msgstr "Désactiver le bouton de partage"
5362
+
5363
+ # @ mainwp
5364
+ #~ msgid "If set to YES, Twitter messages will be turn off"
5365
+ #~ msgstr "Si défini à OUI, les messages Twitter seront masqués"
5366
+
5367
+ # @ mainwp
5368
+ #, fuzzy
5369
+ #~| msgid "Add to MainWP menu"
5370
+ #~ msgid "Show MainWP custom menu"
5371
+ #~ msgstr "Ajouter dans le menu MainWP"
5372
+
5373
+ # @ mainwp
5374
+ #~ msgid "Media"
5375
+ #~ msgstr "Média"
5376
+
5377
+ # @ mainwp
5378
+ #~ msgid "Appearance"
5379
+ #~ msgstr "Apparence"
5380
+
5381
+ # @ mainwp
5382
+ #~ msgid "Comments"
5383
+ #~ msgstr "Commentaires"
5384
+
5385
+ # @ mainwp
5386
+ #~ msgid "Users"
5387
+ #~ msgstr "Utilisateurs"
5388
+
5389
+ # @ mainwp
5390
+ #~ msgid "Tools"
5391
+ #~ msgstr "Outils"
5392
+
5393
+ # @ mainwp
5394
+ #, fuzzy
5395
+ #~| msgid "Force Dashboard to Establish New Connection"
5396
+ #~ msgid "Force dashboard to establish new connection"
5397
+ #~ msgstr "Force le Tableau de bord à établir une nouvelle connexion"
5398
+
5399
+ # @ mainwp
5400
+ #~ msgid "Use this option to establish new connection with child sites."
5401
+ #~ msgstr ""
5402
+ #~ "Utiliser cette option pour établir une nouvelle connexion avec les sites "
5403
+ #~ "clients."
5404
+
5405
+ # @ mainwp
5406
+ #, fuzzy
5407
+ #~| msgid ""
5408
+ #~| "Forces your Dashboard to reconnect with your Child sites. This feature "
5409
+ #~| "will log out any currently logged in users on the Child sites and "
5410
+ #~| "require them to re-log in. Only needed if suggested by MainWP Support."
5411
+ #~ msgid ""
5412
+ #~ "Forces your dashboard to reconnect with your child sites. This feature "
5413
+ #~ "will log out any currently logged in users on the Child sites and require "
5414
+ #~ "them to re-log in. Only needed if suggested by MainWP Support."
5415
+ #~ msgstr ""
5416
+ #~ "Forcer votre tableau de bord à ce reconnecter aux sites clients. Cette "
5417
+ #~ "fonctionnalité déconnecte tous les utilisateurs actuellement connectés "
5418
+ #~ "sur les sites clients et les obliger à se reconnecter. Seulement "
5419
+ #~ "nécessaire si suggéré par le support MainWP."
5420
+
5421
+ # @ mainwp
5422
+ #~ msgid "Scan child sites for known issues"
5423
+ #~ msgstr "Analyser les sites clients pour rechercher des problèmes connus"
5424
+
5425
+ # @ mainwp
5426
+ #~ msgid "Use this option to scan child sites for known issues."
5427
+ #~ msgstr ""
5428
+ #~ "Utilisez cette option pour analyser les sites clients pour rechercher les "
5429
+ #~ "problèmes connus."
5430
+
5431
+ # @ mainwp
5432
+ #, fuzzy
5433
+ #~| msgid "MainWP Quick Setup"
5434
+ #~ msgid "MainWP quick setup"
5435
+ #~ msgstr "Paramétrage rapide de MainWP"
5436
+
5437
+ # @ mainwp
5438
+ #~ msgid "Start quick setup"
5439
+ #~ msgstr "Démarrer la configuration rapide"
5440
+
5441
+ # @ mainwp
5442
+ #~ msgid ""
5443
+ #~ "MainWP Quick Setup allows you to quickly set your MainWP Dashboard "
5444
+ #~ "preferences."
5445
+ #~ msgstr ""
5446
+ #~ "L’installation rapide vous permet de définir rapidement vos préférences "
5447
+ #~ "du tableau de bord MainWP."
5448
+
5449
+ # @ mainwp
5450
+ #, fuzzy
5451
+ #~| msgid "Importing sites"
5452
+ #~ msgid "Export sites"
5453
+ #~ msgstr "Importation de sites"
5454
+
5455
+ # @ mainwp
5456
+ #, fuzzy
5457
+ #~| msgid "Select sites"
5458
+ #~ msgid "Disconnect sites"
5459
+ #~ msgstr "Sélectionner sites"
5460
+
5461
+ # @ mainwp
5462
+ #~ msgid ""
5463
+ #~ "Changing this settings will overwrite Clean & Lock Extension settings. Do "
5464
+ #~ "not forget to migrate the settings you wish to keep."
5465
+ #~ msgstr ""
5466
+ #~ "La modification de ce paramètre écrasera les paramètres de l’extension "
5467
+ #~ "Clean & Lock. N’oubliez pas de migrer les paramètres que vous souhaitez "
5468
+ #~ "conserver."
5469
+
5470
+ # @ mainwp
5471
+ #, fuzzy
5472
+ #~| msgid "Return to Dashboard"
5473
+ #~ msgid "Cleanup your dashboard"
5474
+ #~ msgstr "Nettoyer votre Tableau de bord"
5475
+
5476
+ # @ mainwp
5477
+ #~ msgid "Installation"
5478
+ #~ msgstr "Installation"
5479
+
5480
+ # @ mainwp
5481
+ #, fuzzy
5482
+ #~| msgid "Windows Localhost"
5483
+ #~ msgid "Windows localhost"
5484
+ #~ msgstr "Fenêtres Localhost"
5485
+
5486
+ # @ mainwp
5487
+ #~ msgid "System checkup"
5488
+ #~ msgstr "Vérification du système"
5489
+
5490
+ # @ mainwp
5491
+ #, fuzzy
5492
+ #~| msgid "Hosting Setup"
5493
+ #~ msgid "Hosting setup"
5494
+ #~ msgstr "Configuration d’hébergement"
5495
+
5496
+ # @ mainwp
5497
+ #~ msgid "Optimization"
5498
+ #~ msgstr "Optimisation"
5499
+
5500
+ # @ mainwp
5501
+ #~ msgid "Notifications"
5502
+ #~ msgstr "Notifications"
5503
+
5504
+ # @ mainwp
5505
+ #, fuzzy
5506
+ #~| msgid "Mainwp Extensions Sign Up"
5507
+ #~ msgid "Mainwp extensions sign up"
5508
+ #~ msgstr "Inscription des extensions Mainwp"
5509
+
5510
+ # @ mainwp
5511
+ #, fuzzy
5512
+ #~| msgid "Order Extension"
5513
+ #~ msgid "Order extension"
5514
+ #~ msgstr "Commander une extension"
5515
+
5516
+ # @ mainwp
5517
+ #~ msgid "Install extension"
5518
+ #~ msgstr "Installer l’extension"
5519
+
5520
+ # @ mainwp
5521
+ #, fuzzy
5522
+ #~| msgid "WP-Cron Trigger"
5523
+ #~ msgid "WP-Cron trigger"
5524
+ #~ msgstr "Trigger WP-Cron"
5525
+
5526
+ # @ mainwp
5527
+ #, fuzzy
5528
+ #~| msgid "Clear"
5529
+ #~ msgid "Cleanup"
5530
+ #~ msgstr "Nettoyer"
5531
+
5532
+ # @ mainwp
5533
+ #~ msgid "Finish"
5534
+ #~ msgstr "Terminer"
5535
+
5536
+ # @ mainwp
5537
+ #~ msgid "MainWP &rsaquo; Setup Wizard"
5538
+ #~ msgstr "MainWP &raquo; Assistant de configuration"
5539
+
5540
+ # @ mainwp
5541
+ #, fuzzy
5542
+ #~| msgid "Go to the MainWP Dashboard"
5543
+ #~ msgid "Go to the MainWP Overview"
5544
+ #~ msgstr "Aller sur le tableau de bord MAINWP"
5545
+
5546
+ # @ default
5547
+ #~ msgid ""
5548
+ #~ "Thank you for choosing MainWP for managing your WordPress sites. This "
5549
+ #~ "quick setup wizard will help you configure the basic settings. It's "
5550
+ #~ "completely optional and shouldn't take longer than five minutes."
5551
+ #~ msgstr ""
5552
+ #~ "Merci d’avoir choisi MainWP pour l’infogérance de vos sites WordPress. "
5553
+ #~ "Cet assistant de configuration rapide vous aidera à configurer les "
5554
+ #~ "paramètres de base. Il est tout à fait facultatif et ne devrait pas "
5555
+ #~ "prendre plus de cinq minutes."
5556
+
5557
+ # @ mainwp
5558
+ #~ msgid ""
5559
+ #~ "If you don't want to go through the setup wizard, you can skip and "
5560
+ #~ "proceed to your MainWP Dashboard by clicking the \"Not right now\" "
5561
+ #~ "button. If you change your mind, you can come back later by starting the "
5562
+ #~ "Setup Wizard from the MainWP > Settings > MainWP Tools page! "
5563
+ #~ msgstr ""
5564
+ #~ "Si vous ne voulez pas passer par l’assistant de configuration, vous "
5565
+ #~ "pouvez sauter et aller à votre tableau de bord MainWP en cliquant sur le "
5566
+ #~ "bouton \"Pas maintenant\". Si vous changez d’avis, vous pouvez revenir "
5567
+ #~ "plus tard en démarrant l’assistant de configuration de la page MainWP > "
5568
+ #~ "Paramètres > Outils MainWP&nbsp;! "
5569
+
5570
+ # @ mainwp
5571
+ #~ msgid "Let's Go!"
5572
+ #~ msgstr "C’est parti&nbsp;!"
5573
+
5574
+ # @ mainwp
5575
+ #~ msgid "Not right now"
5576
+ #~ msgstr "Pas tout de suite"
5577
+
5578
+ # @ mainwp
5579
+ #, fuzzy
5580
+ #~| msgid "What type of hosting is this Dashboard site on?"
5581
+ #~ msgid "What type of server is this?"
5582
+ #~ msgstr "Quel est le type de serveur&nbsp;?"
5583
+
5584
+ # @ mainwp
5585
+ #, fuzzy
5586
+ #~| msgid "WebHost"
5587
+ #~ msgid "Web Host"
5588
+ #~ msgstr "Hébergement Web"
5589
+
5590
+ # @ mainwp
5591
+ #~ msgid "Localhost"
5592
+ #~ msgstr "En local"
5593
+
5594
+ # @ default
5595
+ #~ msgid "What operating system do you use?"
5596
+ #~ msgstr "Quel système d’exploitation utilisez-vous&nbsp;?"
5597
+
5598
+ # @ mainwp
5599
+ #~ msgid "MacOS"
5600
+ #~ msgstr "MacOS"
5601
+
5602
+ # @ mainwp
5603
+ #~ msgid "Linux"
5604
+ #~ msgstr "Linux"
5605
+
5606
+ # @ mainwp
5607
+ #~ msgid "Windows"
5608
+ #~ msgstr "Windows"
5609
+
5610
+ # @ mainwp
5611
+ #~ msgid "Skip this step"
5612
+ #~ msgstr "Passer cette étape"
5613
+
5614
+ # @ mainwp
5615
+ # @ default
5616
+ #~ msgid "Back"
5617
+ #~ msgstr "Retour"
5618
+
5619
+ # @ mainwp
5620
+ #~ msgid "Windows Localhost"
5621
+ #~ msgstr "Fenêtres Localhost"
5622
+
5623
+ # @ mainwp
5624
+ #, fuzzy
5625
+ #~| msgid ""
5626
+ #~| "Due to bug with PHP on Windows please enter your OpenSSL Library "
5627
+ #~| "location.<br /> Usually it is here:"
5628
+ #~ msgid ""
5629
+ #~ "Due to bug with PHP on Windows please enter your OpenSSL Library location "
5630
+ #~ "so MainWP Dashboard can connect to your child sites.<br /> Usually it is "
5631
+ #~ "here:"
5632
+ #~ msgstr ""
5633
+ #~ "En raison d’un bug avec PHP sur Windows merci d’entrer l’emplacement de "
5634
+ #~ "la Librairie OpenSSL sinon MainWP ne peut pas se connecter à vos sites "
5635
+ #~ "enfants <br /> Habituellement, il est ici&nbsp;: "
5636
+
5637
+ #, fuzzy
5638
+ #~ msgid ""
5639
+ #~ "If your openssl.cnf file is saved to a different path from what is "
5640
+ #~ "entered above please enter your exact path. In most cases %s should be "
5641
+ #~ "your path if using a normal install."
5642
+ #~ msgstr ""
5643
+ #~ "Si votre fichier openssl.cnf est enregistré dans un chemin différent de "
5644
+ #~ "ce qui est inscrit ci-dessus merci d’entrer le chemin exact. Dans la "
5645
+ #~ "plupart des cas %s devrait être votre chemin si vous utilisez une "
5646
+ #~ "installation normale."
5647
+
5648
+ # @ mainwp
5649
+ #~ msgid "Dashboard System Requirements Checkup"
5650
+ #~ msgstr "Système de vérification des exigences du Tableau de bord"
5651
+
5652
+ # @ mainwp
5653
+ #~ msgid ""
5654
+ #~ "Any Warning here may cause the MainWP Dashboard to malfunction. After you "
5655
+ #~ "complete the Quick Start setup it is recommended to contact your host’s "
5656
+ #~ "support and updating your server configuration for optimal performance."
5657
+ #~ msgstr ""
5658
+ #~ "Les alertes ici peuvent provoquer le dysfonctionnement de votre Tableau "
5659
+ #~ "de bord MAINWP. Après avoir terminé la configuration de démarrage rapide, "
5660
+ #~ "il est recommandé de contacter le support de votre hébergeur et effectuer "
5661
+ #~ "la mise à jour la configuration de votre serveur pour des performances "
5662
+ #~ "optimales."
5663
+
5664
+ # @ mainwp
5665
+ #~ msgid "Continue"
5666
+ #~ msgstr "Continuer"
5667
+
5668
+ # @ mainwp
5669
+ #~ msgid "What type of hosting is this Dashboard site on?"
5670
+ #~ msgstr "Sur quel type d’hébergement est installé ce Tableau de bord&nbsp;?"
5671
+
5672
+ # @ mainwp
5673
+ #~ msgid "Shared"
5674
+ #~ msgstr "Mutualisé"
5675
+
5676
+ # @ mainwp
5677
+ #~ msgid "VPS"
5678
+ #~ msgstr "VPS"
5679
+
5680
+ # @ mainwp
5681
+ #~ msgid "Dedicated"
5682
+ #~ msgstr "Dédié"
5683
+
5684
+ # @ mainwp
5685
+ #, fuzzy
5686
+ #~| msgid "How many child site you are planing to manage?"
5687
+ #~ msgid "How many child sites are you planning to manage?"
5688
+ #~ msgstr "Combien de sites clients comptez-vous gérer&nbsp;?"
5689
+
5690
+ # @ mainwp
5691
+ #~ msgid "Less than 50"
5692
+ #~ msgstr "Moins de 50"
5693
+
5694
+ # @ mainwp
5695
+ #~ msgid "More than 50"
5696
+ #~ msgstr "Plus de 50"
5697
+
5698
+ # @ mainwp
5699
+ #~ msgid ""
5700
+ #~ "Running over 50 sites on shared hosting can be resource intensive for the "
5701
+ #~ "server so we will turn on caching for you to help. Updates will be cached "
5702
+ #~ "for quick loading. A manual sync from the Dashboard is required to view "
5703
+ #~ "new plugins, themes, pages or users."
5704
+ #~ msgstr ""
5705
+ #~ "Le suivi de plus de 50 sites sur un hébergement mutualisé peut demander "
5706
+ #~ "beaucoup de ressources pour le serveur de sorte que nous allons activer "
5707
+ #~ "le cache pour vous aider. Les mises à jour seront mises en cache pour un "
5708
+ #~ "chargement rapide. Une synchronisation manuelle à partir du tableau de "
5709
+ #~ "bord est nécessaire pour visualiser les changements d’extensions, de "
5710
+ #~ "thèmes, de pages ou d’utilisateurs."
5711
+
5712
+ # @ mainwp
5713
+ #, fuzzy
5714
+ #~| msgid "Hide MainWP Footer"
5715
+ #~ msgid "Hide your MainWP Network?"
5716
+ #~ msgstr "Masquer votre réseau MainWP&nbsp;?"
5717
+
5718
+ # @ mainwp
5719
+ #, fuzzy
5720
+ #~| msgid ""
5721
+ #~| "This will make anyone including Search Engines trying find your Child "
5722
+ #~| "Plugin encounter a 404 page. Hiding the Child Plugin does require the "
5723
+ #~| "plugin to make changes to your .htaccess file that in rare instances or "
5724
+ #~| "server configurations could cause problems."
5725
+ #~ msgid ""
5726
+ #~ "This will make anyone including your competitors or Search Engines trying "
5727
+ #~ "find the MainWP Child Plugin encounter a 404 page. This does not stop "
5728
+ #~ "Admins from seeing the plugin is installed."
5729
+ #~ msgstr ""
5730
+ #~ "Cela enverra tout le monde y compris vos concurrents ou les moteurs de "
5731
+ #~ "recherche qui tentent de trouver l’extension MainWP Client vers une page "
5732
+ #~ "d’erreur 404. Cela n’empêche pas les Administrateurs de voir l’extension "
5733
+ #~ "installée."
5734
+
5735
+ # @ mainwp
5736
+ #, fuzzy
5737
+ #~| msgid ""
5738
+ #~| "<strong>STOP BEFORE TURNING ON!</strong> Hiding the Child Plugin does "
5739
+ #~| "require the plugin to make changes to your .htaccess file that in rare "
5740
+ #~| "instances or server configurations could cause problems."
5741
+ #~ msgid ""
5742
+ #~ "Hiding the Child Plugin does require the plugin to make changes to your ."
5743
+ #~ "htaccess file that in rare instances or server configurations could cause "
5744
+ #~ "problems."
5745
+ #~ msgstr ""
5746
+ #~ "Masquer l’extension client nécessite une extension pour apporter des "
5747
+ #~ "modifications à votre fichier .htaccess qui, dans de rares cas ou des "
5748
+ #~ "configurations de serveur, pourrait causer des problèmes."
5749
+
5750
+ # @ mainwp
5751
+ #~ msgid "Add MainWP Child to Trusted Updates"
5752
+ #~ msgstr "Ajouter le client MainWP aux recherche de mises à jour"
5753
+
5754
+ # @ mainwp
5755
+ #~ msgid ""
5756
+ #~ "This allows your MainWP Dashboard to automatically update your MainWP "
5757
+ #~ "Child plugins whenever a new version is released."
5758
+ #~ msgstr ""
5759
+ #~ "Cela permet à votre Tableau de bord MainWP de mettre à jour "
5760
+ #~ "automatiquement votre extension MainWP client chaque fois qu’une nouvelle "
5761
+ #~ "version est disponible."
5762
+
5763
+ # @ mainwp
5764
+ #~ msgid "Notification"
5765
+ #~ msgstr "Notification"
5766
+
5767
+ # @ mainwp
5768
+ #~ msgid ""
5769
+ #~ "Do you want to receive important email notifications from your dashboard?"
5770
+ #~ msgstr ""
5771
+ #~ "Voulez-vous recevoir les notifications importantes de votre Tableau de "
5772
+ #~ "bord par courriel&nbsp;?"
5773
+
5774
+ # @ mainwp
5775
+ #~ msgid ""
5776
+ #~ "These are emails from your MainWP Dashboard notifying you of available "
5777
+ #~ "updates and other maintenance related messages. You can change this later "
5778
+ #~ "in your MainWP Settings tab."
5779
+ #~ msgstr ""
5780
+ #~ "Ce sont des courriels provenant de votre tableau de bord MainWP pour vous "
5781
+ #~ "informer des mises à jour disponibles et autres messages de maintenance. "
5782
+ #~ "Vous pouvez changer cela plus tard dans l’onglet Paramètres de MainWP."
5783
+
5784
+ # @ mainwp
5785
+ #~ msgid ""
5786
+ #~ "These are NOT emails from the MainWP team and this does NOT sign you up "
5787
+ #~ "for any mailing lists."
5788
+ #~ msgstr ""
5789
+ #~ "Vous n’aurez AUCUN courriel de la part du Team MAINWP et cela ne vous "
5790
+ #~ "inscrit pas à des listes de diffusion."
5791
+
5792
+ # @ mainwp
5793
+ #~ msgid "Enter Your Email Address"
5794
+ #~ msgstr "Saisir votre adresse courriel"
5795
+
5796
+ # @ mainwp
5797
+ #, fuzzy
5798
+ #~| msgid "Add New"
5799
+ #~ msgid "+ Add New"
5800
+ #~ msgstr "+ Ajouter"
5801
+
5802
+ # @ mainwp
5803
+ #~ msgid "Backup"
5804
+ #~ msgstr "Sauvegarde"
5805
+
5806
+ # @ mainwp
5807
+ #~ msgid "Are you planning to use MainWP for backups?"
5808
+ #~ msgstr "Prévoyez-vous d’utiliser MAINWP pour des sauvegardes&nbsp;?"
5809
+
5810
+ # @ mainwp
5811
+ #~ msgid "Choose how you want to handle backups:"
5812
+ #~ msgstr "Choisissez la manière dont vous voulez gérer les sauvegardes&nbsp;:"
5813
+
5814
+ # @ mainwp
5815
+ #~ msgid ""
5816
+ #~ "This allows you to use the UpdraftPlus backup plugin for your Backups."
5817
+ #~ msgstr ""
5818
+ #~ "Cela vous permet d’utiliser l’extension UpdraftPlus pour vos sauvegardes."
5819
+
5820
+ # @ mainwp
5821
+ #~ msgid ""
5822
+ #~ "This allows you to use the BackupWordPress backup plugin for your Backups."
5823
+ #~ msgstr ""
5824
+ #~ "Cela vous permet d’utiliser l’extension BackupWordPress pour vos "
5825
+ #~ "sauvegardes."
5826
+
5827
+ # @ mainwp
5828
+ #, fuzzy
5829
+ #~| msgid ""
5830
+ #~| "This allows you to use the BackupWordPress backup plugin for your "
5831
+ #~| "Backups."
5832
+ #~ msgid "This allows you to use the BackWPup backup plugin for your Backups."
5833
+ #~ msgstr ""
5834
+ #~ "Cela vous permet d'utiliser l’extension de sauvegarde BackWPup pour vos "
5835
+ #~ "sauvegardes."
5836
+
5837
+ # @ mainwp
5838
+ #~ msgid "You can change this at any time."
5839
+ #~ msgstr "Vous pouvez changer cela à tout moment."
5840
+
5841
+ # @ mainwp
5842
+ #, fuzzy
5843
+ #~| msgid "MainWP Tip"
5844
+ #~ msgid "MainWP Signup"
5845
+ #~ msgstr "Inscription MainWP"
5846
+
5847
+ # @ mainwp
5848
+ #~ msgid "Skip this Step if you already have MainWP Extensions account."
5849
+ #~ msgstr ""
5850
+ #~ "Passer cette étape si vous avez déjà compte pour les extensions MAINWP."
5851
+
5852
+ # @ mainwp
5853
+ #, fuzzy
5854
+ #~| msgid ""
5855
+ #~| "This extension is free, however it requires MainWP Extensions account."
5856
+ #~ msgid ""
5857
+ #~ "This Extension if free, however it requires a free MainWP account to "
5858
+ #~ "receive updates and support."
5859
+ #~ msgstr ""
5860
+ #~ "Cette extension est gratuite, mais il nécessite un compte MainWP gratuit "
5861
+ #~ "pour recevoir les mises à jour et bénéficier du support."
5862
+
5863
+ # @ mainwp
5864
+ #~ msgid "Register for MainWP Account"
5865
+ #~ msgstr "Inscrivez-vous pour un compte MAINWP"
5866
+
5867
+ # @ mainwp
5868
+ #~ msgid "(you will be brought to a new page)"
5869
+ #~ msgstr "(vous serez dirigé vers une nouvelle page)"
5870
+
5871
+ #, fuzzy
5872
+ #~ msgid ""
5873
+ #~ "If you prefer to register later, click %shere%s to automatically download "
5874
+ #~ "and install the Extension."
5875
+ #~ msgstr ""
5876
+ #~ "Si vous préférez vous enregistrer plus tard, cliquez %sici%s pour "
5877
+ #~ "télécharger et installer automatiquement l’extension."
5878
+
5879
+ # @ mainwp
5880
+ #, fuzzy
5881
+ #~| msgid "MainWP Tip"
5882
+ #~ msgid "MainWP Login"
5883
+ #~ msgstr "Connexion MainWP"
5884
+
5885
+ #, fuzzy
5886
+ #~ msgid "Log into your MainWP account to auto install your new Extension."
5887
+ #~ msgstr ""
5888
+ #~ "Connectez-vous à votre compte MainWP pour installer automatiquement votre "
5889
+ #~ "nouvelle extension."
5890
+
5891
+ # @ mainwp
5892
+ #~ msgid "Error:"
5893
+ #~ msgstr "Erreur&nbsp;:"
5894
+
5895
+ # @ mainwp
5896
+ #, fuzzy
5897
+ #~| msgid "Username:"
5898
+ #~ msgid "MainWP Username:"
5899
+ #~ msgstr "Nom d'utilisateur MainWP&nbsp;: "
5900
+
5901
+ # @ mainwp
5902
+ #, fuzzy
5903
+ #~| msgid "MainWP Dashboard"
5904
+ #~ msgid "MainWP Password:"
5905
+ #~ msgstr "Mot de passe MainWP&nbsp;:"
5906
+
5907
+ # @ mainwp
5908
+ #~ msgid "Invalid user name or password."
5909
+ #~ msgstr "Nom d’utilisateur ou mot de passe invalide."
5910
+
5911
+ # @ mainwp
5912
+ #~ msgid "Invalid product id"
5913
+ #~ msgstr "ID produit invalide"
5914
+
5915
+ # @ mainwp
5916
+ #~ msgid "Installing the Extension ..."
5917
+ #~ msgstr "Installation de l’extension…"
5918
+
5919
+ # @ mainwp
5920
+ #~ msgid "You are not purchased the extension."
5921
+ #~ msgstr "Vous n’avez pas acheté cette extension."
5922
+
5923
+ # @ mainwp
5924
+ #~ msgid "Install and Activate"
5925
+ #~ msgstr "Installer et activer"
5926
+
5927
+ # @ default
5928
+ #~ msgid "Automatically install the Extension."
5929
+ #~ msgstr "Installez automatiquement l’extension."
5930
+
5931
+ # @ mainwp
5932
+ #, fuzzy
5933
+ #~| msgid "Grabing API Key and activate the Extension ..."
5934
+ #~ msgid "Grabbing the API Key and activating the Extension ..."
5935
+ #~ msgstr "Saisir la clé de l'API et activer l'extension ..."
5936
+
5937
+ # @ mainwp
5938
+ #, fuzzy
5939
+ #~| msgid "Return to Dashboard"
5940
+ #~ msgid "Cleanup your Dashboard"
5941
+ #~ msgstr "Nettoyer votre Tableau de bord"
5942
+
5943
+ # @ mainwp
5944
+ #~ msgid ""
5945
+ #~ "If you installed your MainWP Dashboard on a brand new site dedicated to "
5946
+ #~ "MainWP these are sections that you will not need and you can hide in "
5947
+ #~ "order to declutter your site."
5948
+ #~ msgstr ""
5949
+ #~ "Si vous avez installé votre Tableau de bord sur un tout nouveau site "
5950
+ #~ "dédié à MAINWP ce sont des sections dont vous n’avez pas besoin et vous "
5951
+ #~ "pouvez les cacher afin de simplifier votre site."
5952
+
5953
+ # @ mainwp
5954
+ #~ msgid "You can change this later in the MainWP > Settings > Tools screen."
5955
+ #~ msgstr "Vous pouvez changer cela plus tard dans MAINWP > Réglages > Outils."
5956
+
5957
+ # @ mainwp
5958
+ #~ msgid "Cleanup your Dashboard:"
5959
+ #~ msgstr "Nettoyer votre Tableau de bord&nbsp;:"
5960
+
5961
+ # @ mainwp
5962
+ #~ msgid "WP-Cron Trigger"
5963
+ #~ msgstr "Trigger WP-Cron"
5964
+
5965
+ # @ mainwp
5966
+ #, fuzzy
5967
+ #~| msgid ""
5968
+ #~| "MainWP by default relies on a built in WordPress file called wp-cron.php "
5969
+ #~| "to trigger scheduled events. The wp-cron.php file is called each time "
5970
+ #~| "your site is viewed and is sufficient in most cases."
5971
+ #~ msgid ""
5972
+ #~ "MainWP relies on a built in WordPress file called wp-cron.php to trigger "
5973
+ #~ "scheduled events."
5974
+ #~ msgstr ""
5975
+ #~ "MainWP repose sur le fichier WordPress appelé wp-cron.php pour déclencher "
5976
+ #~ "des événements programmés."
5977
+
5978
+ # @ mainwp
5979
+ #~ msgid ""
5980
+ #~ "However, since we suggest you install your MainWP Dashboard on a fresh "
5981
+ #~ "dedicated site it will get almost no traffic which means your scheduled "
5982
+ #~ "tasks such as backups and automatic updates may not be triggered in a "
5983
+ #~ "timely manner."
5984
+ #~ msgstr ""
5985
+ #~ "Cependant, nous vous suggérons d’installer votre tableau de bord MainWP "
5986
+ #~ "sur un site dédié, il ne sera pas perturbé par le trafic d’un autre site "
5987
+ #~ "et vos tâches planifiées telles que les sauvegardes et les mises à jour "
5988
+ #~ "automatiques seront déclenchées en temps opportun."
5989
+
5990
+ # @ mainwp
5991
+ #~ msgid ""
5992
+ #~ "In order to work around that we suggest you sign up for the free Uptime "
5993
+ #~ "Robot service that will \"visit\" your dashboard site and make sure that "
5994
+ #~ "Cron Jobs are regularly triggered."
5995
+ #~ msgstr ""
5996
+ #~ "Nous vous suggérons aussi de vous inscrire pour le service gratuit Robot "
5997
+ #~ "Uptime qui \"visite\" le site de votre tableau de bord et assurez-vous "
5998
+ #~ "que les tâches Cron sont régulièrement déclenchées."
5999
+
6000
+ # @ mainwp
6001
+ #~ msgid "Authorize Uptime Robot"
6002
+ #~ msgstr "Autoriser Uptime Robot"
6003
+
6004
+ # @ mainwp
6005
+ #~ msgid "Your Uptime Robot API Key:"
6006
+ #~ msgstr "Votre clé API Uptime Robot&nbsp;:"
6007
+
6008
+ # @ mainwp
6009
+ #~ msgid "Monitor Notification default Email:"
6010
+ #~ msgstr "Adresse courriel pour les notifications du monitoring&nbsp;:"
6011
+
6012
+ # @ mainwp
6013
+ #~ msgid "Add dashboard as a monitor"
6014
+ #~ msgstr "Ajouter le tableau de bord comme un moniteur"
6015
+
6016
+ # @ mainwp
6017
+ #~ msgid "Uptime Robot settings."
6018
+ #~ msgstr "Réglages Uptime Robot."
6019
+
6020
+ # @ mainwp
6021
+ #~ msgid "Error: Uptime Robot notification contact email."
6022
+ #~ msgstr "Erreur&nbsp;: courriel de notification Robot Uptime."
6023
+
6024
+ # @ mainwp
6025
+ #~ msgid "Error data."
6026
+ #~ msgstr "Erreur de données."
6027
+
6028
+ # @ mainwp
6029
+ #~ msgid "Uptime Robot error"
6030
+ #~ msgstr "Erreur Uptime Robot"
6031
+
6032
+ # @ mainwp
6033
+ #, fuzzy
6034
+ #~| msgid "Your MainWP is Ready!"
6035
+ #~ msgid "Your MainWP Dashboard is Ready!"
6036
+ #~ msgstr "Votre tableau de bord MainWP est prêt&nbsp;!"
6037
+
6038
+ # @ mainwp
6039
+ #~ msgid ""
6040
+ #~ "Congratulations! Now you are ready to start managing your WordPress sites."
6041
+ #~ msgstr ""
6042
+ #~ "Félicitations&nbsp;! Maintenant, vous êtes prêt à commencer à gérer vos "
6043
+ #~ "sites WordPress."
6044
+
6045
+ # @ mainwp
6046
+ #, fuzzy
6047
+ #~| msgid "Next Steps"
6048
+ #~ msgid "Next Step"
6049
+ #~ msgstr "Étape suivante"
6050
+
6051
+ # @ mainwp
6052
+ #~ msgid "Helpful Links"
6053
+ #~ msgstr "Liens utiles"
6054
+
6055
+ # @ mainwp
6056
+ #~ msgid "WP-Admin on child sites"
6057
+ #~ msgstr "Administration WP sur les sites clients"
6058
+
6059
+ # @ mainwp
6060
+ #~ msgid "You will be redirected to your website immediately."
6061
+ #~ msgstr "Vous serez redirigé vers votre site Web immédiatement."
6062
+
6063
+ # @ mainwp
6064
+ #, fuzzy
6065
+ #~| msgid "Back to Sites"
6066
+ #~ msgid "Back to users"
6067
+ #~ msgstr "Retour aux sites"
6068
+
6069
+ # @ mainwp
6070
+ #, fuzzy
6071
+ #~| msgid "Back to Sites"
6072
+ #~ msgid "Back to sites"
6073
+ #~ msgstr "Retour aux sites"
6074
+
6075
+ # @ mainwp
6076
+ #~ msgid "Will redirect to your website immediately."
6077
+ #~ msgstr "Redirigera vers votre site immédiatement."
6078
+
6079
+ # @ mainwp
6080
+ #~ msgid "Themes"
6081
+ #~ msgstr "Thèmes"
6082
+
6083
+ # @ mainwp
6084
+ #~ msgid "Step 1: Search Themes"
6085
+ #~ msgstr "Étape 1: Rechercher les Thèmes"
6086
+
6087
+ # @ mainwp
6088
+ #, fuzzy
6089
+ #~| msgid ""
6090
+ #~| "You can also quickly activate and deactivate installed Themes for a "
6091
+ #~| "single site from your Individual Site Dashboard Theme widget by visiting "
6092
+ #~| "Sites &rarr; Manage Sites &rarr; Child Site &rarr; Dashboard."
6093
+ #~ msgid ""
6094
+ #~ "You can also quickly activate and deactivate installed Themes for a "
6095
+ #~ "single site from your Individual Site Overview Theme widget by visiting "
6096
+ #~ "Sites &rarr; Manage Sites &rarr; Child Site &rarr; Overview."
6097
+ #~ msgstr ""
6098
+ #~ "Vous pouvez également activer et désactiver rapidement les thèmes "
6099
+ #~ "installés pour un site unique à partir de votre widget tableau de bord "
6100
+ #~ "individuel en vous rendant Sites &rarr; Gérer les sites &rarr; Site "
6101
+ #~ "&rarr; Tableau de bord."
6102
+
6103
+ # @ mainwp
6104
+ #~ msgid ""
6105
+ #~ "If you check the \"Overwrite Existing\" option while installing a theme "
6106
+ #~ "you can easily update or rollback the theme on your child sites."
6107
+ #~ msgstr ""
6108
+ #~ "Si vous cochez l’option \"Écraser l’existant\" lors de l’installation "
6109
+ #~ "d’un thème que vous pouvez facilement le mettre à jour ou le restaurer "
6110
+ #~ "sur vos sites clients."
6111
+
6112
+ # @ mainwp
6113
+ #~ msgid "Show themes"
6114
+ #~ msgstr "Afficher les thèmes"
6115
+
6116
+ # @ mainwp
6117
+ #, fuzzy
6118
+ #~| msgid ""
6119
+ #~| "To only <strong>View or Ignore</strong> themes select <strong>All "
6120
+ #~| "Themes</strong>"
6121
+ #~ msgid ""
6122
+ #~ "To only <strong>view or ignore</strong> themes select <strong>all themes</"
6123
+ #~ "strong>"
6124
+ #~ msgstr ""
6125
+ #~ "Pour seulement <strong>Voir ou Ignorer</strong> les thèmes, sélectionner "
6126
+ #~ "<strong>Tous les thèmes</strong>"
6127
+
6128
+ # @ mainwp
6129
+ #, fuzzy
6130
+ #~| msgid ""
6131
+ #~| "To <strong>Activate</strong> or <strong>Delete</strong> a Theme select "
6132
+ #~| "<strong>Inactive</strong> (A theme needs to be Deactivated in order for "
6133
+ #~| "it to be Enabled)"
6134
+ #~ msgid ""
6135
+ #~ "To <strong>activate</strong> or <strong>delete</strong> a theme select "
6136
+ #~ "<strong>inactive</strong> (A theme needs to be deactivated in order for "
6137
+ #~ "it to be enabled)"
6138
+ #~ msgstr ""
6139
+ #~ "Pour <strong>Activer</strong> ou <strong>Supprimer</strong> un thème, "
6140
+ #~ "sélectionner <strong>Inactif</strong> (un thème doit être désactivé pour "
6141
+ #~ "qu’il soit activé)"
6142
+
6143
+ # @ mainwp
6144
+ #~ msgid "All Themes"
6145
+ #~ msgstr "Tous les thèmes"
6146
+
6147
+ # @ mainwp
6148
+ #~ msgid "Confirm"
6149
+ #~ msgstr "Confirmer"
6150
+
6151
+ # @ mainwp
6152
+ #, fuzzy
6153
+ #~| msgid "No sites found."
6154
+ #~ msgid "No themes found."
6155
+ #~ msgstr "Aucun thème trouvé. Essayez une autre recherche."
6156
+
6157
+ # @ mainwp
6158
+ #, fuzzy
6159
+ #~| msgid "Child Site / Theme"
6160
+ #~ msgid "Child site / Theme"
6161
+ #~ msgstr "Site client / Thème"
6162
+
6163
+ # @ mainwp
6164
+ #, fuzzy
6165
+ #~| msgid ""
6166
+ #~| "Click on the Theme Name to select the theme on all sites or click the "
6167
+ #~| "Site URL to select all themes on the site."
6168
+ #~ msgid ""
6169
+ #~ "Click on the theme name to select the theme on all sites or click the "
6170
+ #~ "Site URL to select all themes on the site."
6171
+ #~ msgstr ""
6172
+ #~ "Cliquez sur le nom du thème pour le sélectionner sur tous les sites ou "
6173
+ #~ "cliquez sur l’URL du site pour sélectionner tous les thèmes du site."
6174
+
6175
+ # @ mainwp
6176
+ #~ msgid "Theme"
6177
+ #~ msgstr "Thème"
6178
+
6179
+ # @ default
6180
+ #, fuzzy
6181
+ #~| msgid "Add New Theme"
6182
+ #~ msgid "Add new theme"
6183
+ #~ msgstr "Ajouter un nouveau thème"
6184
+
6185
+ # @ default
6186
+ # @ mainwp
6187
+ #, fuzzy
6188
+ #~| msgid "Search Themes"
6189
+ #~ msgid "Search themes"
6190
+ #~ msgstr "Rechercher des thèmes"
6191
+
6192
+ # @ default
6193
+ #~ msgid "Search themes..."
6194
+ #~ msgstr "Rechercher des thèmes…"
6195
+
6196
+ # @ default
6197
+ #, fuzzy
6198
+ #~| msgid "Upload Theme"
6199
+ #~ msgid "Upload theme"
6200
+ #~ msgstr "Télécharger le thème"
6201
+
6202
+ # @ default
6203
+ #, fuzzy
6204
+ #~ msgid ""
6205
+ #~ "An unexpected error occurred. Something may be wrong with WordPress.org "
6206
+ #~ "or this server&#8217;s configuration. If you continue to have problems, "
6207
+ #~ "please try the <a href=\"https://wordpress.org/support/\">support forums</"
6208
+ #~ "a>."
6209
+ #~ msgstr ""
6210
+ #~ "Une erreur inattendue s&#8217;est produite. Quelque chose semble ne "
6211
+ #~ "semble pas fonctionner avec WordPress.org ou la configuration de ce "
6212
+ #~ "serveur. Si vous continuez à rencontrer des problèmes, veuillez essayer "
6213
+ #~ "le <a href=\"https://wordpress.org/support/\">forum de support</a>."
6214
+
6215
+ # @ default
6216
+ #~ msgid "No themes found. Try a different search."
6217
+ #~ msgstr "Aucun thème trouvé. Essayez une autre recherche."
6218
+
6219
+ # @ default
6220
+ # @ mainwp
6221
+ #, fuzzy
6222
+ #~| msgid "Collapse Sidebar"
6223
+ #~ msgid "Collapse sidebar"
6224
+ #~ msgstr "Réduire la barre latérale"
6225
+
6226
+ # @ default
6227
+ #, fuzzy
6228
+ #~| msgid "Expand Sidebar"
6229
+ #~ msgid "Expand sidebar"
6230
+ #~ msgstr "Développer la barre latérale"
6231
+
6232
+ # @ mainwp
6233
+ #~ msgid "install themes"
6234
+ #~ msgstr "installer des thèmes"
6235
+
6236
+ # @ mainwp
6237
+ #~ msgid "Step 1: Select a theme"
6238
+ #~ msgstr "Étape 1&nbsp;: sélectionnez un thème"
6239
+
6240
+ # @ default
6241
+ #, fuzzy
6242
+ #~ msgctxt "themes"
6243
+ #~ msgid "Featured"
6244
+ #~ msgstr "En vedette"
6245
+
6246
+ # @ default
6247
+ #~ msgctxt "themes"
6248
+ #~ msgid "Popular"
6249
+ #~ msgstr "Populaire"
6250
+
6251
+ # @ default
6252
+ #~ msgctxt "themes"
6253
+ #~ msgid "Latest"
6254
+ #~ msgstr "Le plus récent"
6255
+
6256
+ # @ mainwp
6257
+ #, fuzzy
6258
+ #~| msgid "Feature Filter"
6259
+ #~ msgid "Feature filter"
6260
+ #~ msgstr "Filtre de fonction"
6261
+
6262
+ # @ mainwp
6263
+ #, fuzzy
6264
+ #~| msgid "Apply Filters"
6265
+ #~ msgid "Apply filters"
6266
+ #~ msgstr "Appliquer les filtres"
6267
+
6268
+ # @ mainwp
6269
+ #~ msgid "Clear"
6270
+ #~ msgstr "Effacer"
6271
+
6272
+ # @ mainwp
6273
+ #~ msgid "Filtering by:"
6274
+ #~ msgstr "Filtrer par&nbsp;:"
6275
+
6276
+ # @ default
6277
+ #~ msgctxt "theme"
6278
+ #~ msgid "Details &amp; Preview"
6279
+ #~ msgstr "Détails &amp; prévisualisation"
6280
+
6281
+ # @ mainwp
6282
+ #~ msgid "By %s"
6283
+ #~ msgstr "Par %s"
6284
+
6285
+ # @ mainwp
6286
+ #~ msgid "Add To Favorites"
6287
+ #~ msgstr "Ajouter aux favoris"
6288
+
6289
+ # @ default
6290
+ #~ msgctxt "theme"
6291
+ #~ msgid "Already Installed"
6292
+ #~ msgstr "Déjà Installé"
6293
+
6294
+ # @ default
6295
+ #~ msgctxt "Button label for a theme"
6296
+ #~ msgid "Previous"
6297
+ #~ msgstr "Précédent"
6298
+
6299
+ # @ default
6300
+ #~ msgctxt "Button label for a theme"
6301
+ #~ msgid "Next"
6302
+ #~ msgstr "Suivant"
6303
+
6304
+ # @ default
6305
+ #~ msgctxt "theme"
6306
+ #~ msgid "Installed"
6307
+ #~ msgstr "Installé"
6308
+
6309
+ # @ default
6310
+ #~ msgid "This theme has not been rated yet."
6311
+ #~ msgstr "Ce thème n’a pas encore été évalué."
6312
+
6313
+ # @ mainwp
6314
+ #~ msgid "Version: %s"
6315
+ #~ msgstr "Version&nbsp;: %s"
6316
+
6317
+ # @ mainwp
6318
+ #~ msgid "Collapse"
6319
+ #~ msgstr "Réduire"
6320
+
6321
+ # @ mainwp
6322
+ #~ msgid "Step 3: Installation Options"
6323
+ #~ msgstr "Étape 3: Options d’installation"
6324
+
6325
+ # @ mainwp
6326
+ #~ msgid "Overwrite Existing theme, if already installed"
6327
+ #~ msgstr "Écraser le thème existant, si il est déjà installé"
6328
+
6329
+ # @ mainwp
6330
+ #~ msgid "Complete Installation"
6331
+ #~ msgstr "Installation complète"
6332
+
6333
+ #, fuzzy
6334
+ #~ msgid "Step 1: Tells your Dashboard what to do with Trusted themes"
6335
+ #~ msgstr ""
6336
+ #~ "Étape 1&nbsp;: indiquer à votre Tableau de bord ce qu'il faut faire avec "
6337
+ #~ "les thèmes approuvés"
6338
+
6339
+ # @ mainwp
6340
+ #, fuzzy
6341
+ #~| msgid ""
6342
+ #~| "Only mark Plugins as Trusted if you are absolutely sure they can be "
6343
+ #~| "updated without breaking your sites or your network."
6344
+ #~ msgid ""
6345
+ #~ "Only mark themes as trusted if you are absolutely sure they can be "
6346
+ #~ "automatically updated by your MainWP Dashboard without causing issues on "
6347
+ #~ "the Child sites!"
6348
+ #~ msgstr ""
6349
+ #~ "Marquer seulement les extensions autorisées si vous êtes absolument sûr "
6350
+ #~ "qu’elles peuvent être mise à jour sans casser vos sites ou votre réseau."
6351
+
6352
+ # @ mainwp
6353
+ #, fuzzy
6354
+ #~| msgid "Ignored Plugins can not be Automatically Updated."
6355
+ #~ msgid "Ignored themes can not be automatically updated."
6356
+ #~ msgstr "Les thèmes ignorés ne peuvent pas être mis à jour automatiquement."
6357
+
6358
+ #, fuzzy
6359
+ #~ msgid "Step 1: Tell your Dashboard what to do with Trusted themes"
6360
+ #~ msgstr ""
6361
+ #~ "Étape 1&nbsp;: dites à votre Tableau de bord ce qu'il faut faire avec les "
6362
+ #~ "thèmes approuvés"
6363
+
6364
+ # @ mainwp
6365
+ #~ msgid "Theme Automatic Daily Update"
6366
+ #~ msgstr "Mise à jour automatique quotidienne du thème"
6367
+
6368
+ # @ mainwp
6369
+ #~ msgid "Active Themes"
6370
+ #~ msgstr "Thèmes actifs"
6371
+
6372
+ # @ mainwp
6373
+ #~ msgid "Inactive Themes"
6374
+ #~ msgstr "Thèmes innactifs"
6375
+
6376
+ # @ mainwp
6377
+ #~ msgid "Trust Status:"
6378
+ #~ msgstr "Quafication&nbsp;:"
6379
+
6380
+ # @ mainwp
6381
+ #~ msgid "Trusted Themes"
6382
+ #~ msgstr "Thèmes Premium"
6383
+
6384
+ # @ mainwp
6385
+ #~ msgid "Not Trusted Themes"
6386
+ #~ msgstr "Thèmes non Premium"
6387
+
6388
+ # @ mainwp
6389
+ #~ msgid "Ignored Themes"
6390
+ #~ msgstr "Thèmes ignorés"
6391
+
6392
+ # @ mainwp
6393
+ #~ msgid "Containing Keywords:"
6394
+ #~ msgstr "Avec mot-clé&nbsp;:"
6395
+
6396
+ # @ mainwp
6397
+ #, fuzzy
6398
+ #~| msgid "Globally Ignored Themes"
6399
+ #~ msgid "Globally ignored themes"
6400
+ #~ msgstr "Thèmes ignorés globalement"
6401
+
6402
+ # @ mainwp
6403
+ #~ msgid "Theme file"
6404
+ #~ msgstr "Fichier du thème"
6405
+
6406
+ # @ mainwp
6407
+ #~ msgid "No ignored themes"
6408
+ #~ msgstr "Aucun thèmes ignorés"
6409
+
6410
+ # @ mainwp
6411
+ #, fuzzy
6412
+ #~| msgid "Per Site Ignored Themes"
6413
+ #~ msgid "Per site ignored themes"
6414
+ #~ msgstr "Thèmes ignorés par site"
6415
+
6416
+ # @ mainwp
6417
+ #, fuzzy
6418
+ #~| msgid "Globally Ignored Abandoned Themes"
6419
+ #~ msgid "Globally ignored abandoned themes"
6420
+ #~ msgstr "Thèmes ignorés ou abandonnés globalement"
6421
+
6422
+ # @ mainwp
6423
+ #~ msgid "Theme File"
6424
+ #~ msgstr "Fichier thème"
6425
+
6426
+ # @ mainwp
6427
+ #~ msgid "No ignored abandoned themes"
6428
+ #~ msgstr "Ne pas ignorer les thèmes abandonnés"
6429
+
6430
+ # @ mainwp
6431
+ #, fuzzy
6432
+ #~| msgid "Per Site Ignored Abandoned Themes"
6433
+ #~ msgid "Per site ignored abandoned themes"
6434
+ #~ msgstr "Thèmes ignorés ou abandonnés par site"
6435
+
6436
+ # @ mainwp
6437
+ #~ msgid "Updates"
6438
+ #~ msgstr "Mises à jour"
6439
+
6440
+ # @ mainwp
6441
+ #~ msgid "Import Users"
6442
+ #~ msgstr "Importer des utilisateurs"
6443
+
6444
+ # @ mainwp
6445
+ #~ msgid "Step 1: Search users"
6446
+ #~ msgstr "Étape 1&nbsp;: rechercher des utilisateurs"
6447
+
6448
+ # @ mainwp
6449
+ #, fuzzy
6450
+ #~| msgid "Update Password for Selected Users"
6451
+ #~ msgid "Update selected users"
6452
+ #~ msgstr "Mettre à jour les utilisateurs sélectionnés"
6453
+
6454
+ # @ mainwp
6455
+ #, fuzzy
6456
+ #~| msgid "Step 1: Add a Single User"
6457
+ #~ msgid "Step 1: Add a single user"
6458
+ #~ msgstr "Étape 1&nbsp;: ajouter un utilisateur unique"
6459
+
6460
+ # @ mainwp
6461
+ #~ msgid "Bulk upload"
6462
+ #~ msgstr "Téléchargement global"
6463
+
6464
+ # @ mainwp
6465
+ #~ msgid "manage users"
6466
+ #~ msgstr "gérer les utilisateurs"
6467
+
6468
+ # @ mainwp
6469
+ #~ msgid "Show Users"
6470
+ #~ msgstr "Afficher utilisateurs"
6471
+
6472
+ # @ mainwp
6473
+ #~ msgid "Administrator"
6474
+ #~ msgstr "Administrateur"
6475
+
6476
+ # @ mainwp
6477
+ #~ msgid "Editor"
6478
+ #~ msgstr "Éditeur"
6479
+
6480
+ # @ mainwp
6481
+ #~ msgid "Contributor"
6482
+ #~ msgstr "Contributeur"
6483
+
6484
+ # @ mainwp
6485
+ #~ msgid "Subscriber"
6486
+ #~ msgstr "Abonné"
6487
+
6488
+ # @ mainwp
6489
+ #~ msgid "Username"
6490
+ #~ msgstr "Identifiant"
6491
+
6492
+ # @ mainwp
6493
+ #, fuzzy
6494
+ #~| msgid "%d total update"
6495
+ #~| msgid_plural "%d total updates"
6496
+ #~ msgid "Do not update"
6497
+ #~ msgstr "Ne pas mettre à jour"
6498
+
6499
+ # @ mainwp
6500
+ #~ msgid "Name"
6501
+ #~ msgstr "Nom"
6502
+
6503
+ # @ mainwp
6504
+ #~ msgid "Role"
6505
+ #~ msgstr "Rôle"
6506
+
6507
+ # @ mainwp
6508
+ #~ msgid "First Name"
6509
+ #~ msgstr "Prénom"
6510
+
6511
+ # @ mainwp
6512
+ #~ msgid "Last Name"
6513
+ #~ msgstr "Nom"
6514
+
6515
+ #, fuzzy
6516
+ #~ msgid "Nickname"
6517
+ #~ msgstr "pseudonyme"
6518
+
6519
+ #, fuzzy
6520
+ #~ msgid "Contact Info"
6521
+ #~ msgstr "Informations de contact"
6522
+
6523
+ # @ mainwp
6524
+ #, fuzzy
6525
+ #~| msgid "E-mail"
6526
+ #~ msgid "Email"
6527
+ #~ msgstr "Courriel"
6528
+
6529
+ # @ mainwp
6530
+ #, fuzzy
6531
+ #~| msgid "Adding the user"
6532
+ #~ msgid "About the user"
6533
+ #~ msgstr "A propos de l’utilisateur"
6534
+
6535
+ #, fuzzy
6536
+ #~ msgid "Biographical Info"
6537
+ #~ msgstr "Information biographique"
6538
+
6539
+ #, fuzzy
6540
+ #~ msgid "Account Management"
6541
+ #~ msgstr "Gestion de compte"
6542
+
6543
+ # @ mainwp
6544
+ #~ msgid "New Password"
6545
+ #~ msgstr "Nouveau mot de passe"
6546
+
6547
+ # @ mainwp
6548
+ #~ msgid "Twice Required"
6549
+ #~ msgstr "Requis 2 fois"
6550
+
6551
+ # @ mainwp
6552
+ #~ msgid "Strength Indicator"
6553
+ #~ msgstr "Indicateur de Force"
6554
+
6555
+ # @ mainwp
6556
+ #, fuzzy
6557
+ #~| msgid "Repeat Password"
6558
+ #~ msgid "Generate Password"
6559
+ #~ msgstr "Générer un mot de passe"
6560
+
6561
+ # @ mainwp
6562
+ #~ msgid "Update"
6563
+ #~ msgstr "Mettre à jour"
6564
+
6565
+ #, fuzzy
6566
+ #~ msgid "Avatar"
6567
+ #~ msgstr "Avatar"
6568
+
6569
+ # @ mainwp
6570
+ #~ msgid "E-mail"
6571
+ #~ msgstr "Courriel"
6572
+
6573
+ # @ mainwp
6574
+ #~ msgid "Users per page"
6575
+ #~ msgstr "Utilisateurs par page"
6576
+
6577
+ # @ mainwp
6578
+ #~ msgid "This user is used for our secure link, it can not be deleted."
6579
+ #~ msgstr ""
6580
+ #~ "Cet utilisateur est utilisé pour notre lien sécurisé, il ne peut pas être "
6581
+ #~ "supprimé."
6582
+
6583
+ # @ mainwp
6584
+ #~ msgid "Please wait"
6585
+ #~ msgstr "Merci de patienter"
6586
+
6587
+ # @ mainwp
6588
+ #~ msgid "Adding the user"
6589
+ #~ msgstr "Ajouter l’utilisateur"
6590
+
6591
+ # @ mainwp
6592
+ #~ msgid "Add New User"
6593
+ #~ msgstr "Ajouter nouvel utilisateur"
6594
+
6595
+ # @ mainwp
6596
+ #~ msgid "First name"
6597
+ #~ msgstr "Prénom"
6598
+
6599
+ # @ mainwp
6600
+ #, fuzzy
6601
+ #~| msgid "Last Name"
6602
+ #~ msgid "Last name"
6603
+ #~ msgstr "nom"
6604
+
6605
+ # @ mainwp
6606
+ #~ msgid "Password"
6607
+ #~ msgstr "Mot de passe"
6608
+
6609
+ # @ mainwp
6610
+ #, fuzzy
6611
+ #~| msgid "Repeat Password"
6612
+ #~ msgid "Repeat password"
6613
+ #~ msgstr "Répéter le mot de passe"
6614
+
6615
+ # @ mainwp
6616
+ #, fuzzy
6617
+ #~| msgid ""
6618
+ #~| "Hint: The password should be at least seven characters long. To make it "
6619
+ #~| "stronger, use upper and lower case letters, numbers and symbols like ! "
6620
+ #~| "\" ? $ % ^ &amp; )."
6621
+ #~ msgid ""
6622
+ #~ "Hint: The password should be at least seven\n"
6623
+ #~ "\t\t\t\tcharacters long. To make it stronger, use upper and lower case "
6624
+ #~ "letters, numbers and\n"
6625
+ #~ "\t\t\t\tsymbols like ! \" ? $ % ^ &amp; )."
6626
+ #~ msgstr ""
6627
+ #~ "Astuce&nbsp;: Le mot de passe doit être d’au moins sept caractères. Pour "
6628
+ #~ "le rendre plus fort, utiliser des lettres, des chiffres majuscules et "
6629
+ #~ "minuscules et des symboles comme&nbsp;:&nbsp;!&nbsp;? \\ \\\" $ % ^ "
6630
+ #~ "&amp;)."
6631
+
6632
+ # @ mainwp
6633
+ #, fuzzy
6634
+ #~| msgid "Send Password?"
6635
+ #~ msgid "Send password?"
6636
+ #~ msgstr "Envoyer le mot de passe&nbsp;?"
6637
+
6638
+ # @ mainwp
6639
+ #~ msgid "Send this password to the new user by email."
6640
+ #~ msgstr "Envoyer le mot de passe pour le nouvel utilisateur par courriel."
6641
+
6642
+ # @ mainwp
6643
+ #~ msgid "CSV file contains a header."
6644
+ #~ msgstr "Fichier CSV contient une en-tête."
6645
+
6646
+ # @ mainwp
6647
+ #~ msgid "File must be in CSV format."
6648
+ #~ msgstr "Le fichier doit être au format CSV."
6649
+
6650
+ # @ mainwp
6651
+ #~ msgid "Click here to download sample CSV file."
6652
+ #~ msgstr "Cliquer ici pour télécharger le fichier CSV d’exemple."
6653
+
6654
+ # @ mainwp
6655
+ #, fuzzy
6656
+ #~| msgid ""
6657
+ #~| "Return to\n"
6658
+ #~| " Dashboard"
6659
+ #~ msgid ""
6660
+ #~ "Return to\n"
6661
+ #~ " Overview"
6662
+ #~ msgstr ""
6663
+ #~ "Retour au\n"
6664
+ #~ " tableau de bord"
6665
+
6666
+ # @ mainwp
6667
+ #~ msgid "Importing Users"
6668
+ #~ msgstr "Importer des utilisateurs"
6669
+
6670
+ # @ mainwp
6671
+ #~ msgid "Importing new users and add them to your sites."
6672
+ #~ msgstr "Importer de nouveaux utilisateurs et les ajouter à vos sites."
6673
+
6674
+ # @ mainwp
6675
+ #~ msgid "Pause"
6676
+ #~ msgstr "Pause"
6677
+
6678
+ # @ mainwp
6679
+ #, fuzzy
6680
+ #~| msgid "Save Failed"
6681
+ #~ msgid "Save failed"
6682
+ #~ msgstr "La sauvegarde a échouée"
6683
+
6684
+ # @ mainwp
6685
+ #~ msgid "Data is not valid."
6686
+ #~ msgstr "Données non valides."
6687
+
6688
+ # @ mainwp
6689
+ #~ msgid "Upload error."
6690
+ #~ msgstr "Erreur de téléchargement."
6691
+
6692
+ # @ mainwp
6693
+ #, fuzzy
6694
+ #~| msgid "Settings Overview"
6695
+ #~ msgid "Return to Overview"
6696
+ #~ msgstr "Retour à la vue d'ensemble"
6697
+
6698
+ # @ mainwp
6699
+ #~ msgid "Error - The website doesn't exist in the Network."
6700
+ #~ msgstr "Erreur - Ce site web n’existe pas sur ce réseau."
6701
+
6702
+ # @ mainwp
6703
+ #~ msgid "Error - These are not websites in the group. "
6704
+ #~ msgstr "Erreur - Ce ne sont pas les sites web du groupe. "
6705
+
6706
+ # @ mainwp
6707
+ #~ msgid "Error - The group doesn't exist in the Network. "
6708
+ #~ msgstr "Erreur - Le groupe n’existe pas dans le réseau. "
6709
+
6710
+ # @ mainwp
6711
+ #~ msgid "backup task"
6712
+ #~ msgstr "tâche de sauvegarde"
6713
+
6714
+ # @ mainwp
6715
+ #~ msgid "backup tasks"
6716
+ #~ msgstr "tâches de sauvegarde"
6717
+
6718
+ # @ mainwp
6719
+ #~ msgid "No backup tasks have been created yet."
6720
+ #~ msgstr "Aucune tâche de sauvegarde n’a encore été créé."
6721
+
6722
+ # @ mainwp
6723
+ #~ msgid "Click here"
6724
+ #~ msgstr "Cliquer ici"
6725
+
6726
+ # @ mainwp
6727
+ #~ msgid " to create a new backup task."
6728
+ #~ msgstr " pour créer une nouvelle tâche de sauvegarde."
6729
+
6730
+ # @ mainwp
6731
+ #~ msgid "Task Name"
6732
+ #~ msgstr "Nom de la tâche"
6733
+
6734
+ # @ mainwp
6735
+ #~ msgid "Type"
6736
+ #~ msgstr "Type"
6737
+
6738
+ # @ mainwp
6739
+ #~ msgid "Destination"
6740
+ #~ msgstr "Destination"
6741
+
6742
+ # @ mainwp
6743
+ #~ msgid "Websites"
6744
+ #~ msgstr "Sites web"
6745
+
6746
+ # @ mainwp
6747
+ #~ msgid "Details"
6748
+ #~ msgstr "Détails"
6749
+
6750
+ # @ mainwp
6751
+ #~ msgid "Trigger"
6752
+ #~ msgstr "Déclenchement"
6753
+
6754
+ # @ mainwp
6755
+ #~ msgid "Resume"
6756
+ #~ msgstr "Résumé"
6757
+
6758
+ # @ mainwp
6759
+ #~ msgid "SERVER"
6760
+ #~ msgstr "SERVEUR"
6761
+
6762
+ # @ mainwp
6763
+ #~ msgid "LAST RUN MANUALLY: "
6764
+ #~ msgstr "Dernière exécution manuelle&nbsp;: "
6765
+
6766
+ # @ mainwp
6767
+ #~ msgid "LAST RUN: "
6768
+ #~ msgstr "Dernière exécution&nbsp;: "
6769
+
6770
+ # @ mainwp
6771
+ #~ msgid "LAST COMPLETED: "
6772
+ #~ msgstr "Dernier complet&nbsp;: "
6773
+
6774
+ # @ mainwp
6775
+ #~ msgid "NEXT RUN: "
6776
+ #~ msgstr "Prochaine exécution&nbsp;: "
6777
+
6778
+ # @ mainwp
6779
+ #~ msgid "Any minute"
6780
+ #~ msgstr "Chaque minute"
6781
+
6782
+ # @ mainwp
6783
+ #~ msgid "<br />CURRENTLY RUNNING: "
6784
+ #~ msgstr "<br /> en cours d’exécution&nbsp;: "
6785
+
6786
+ # @ mainwp
6787
+ #, fuzzy
6788
+ #~| msgid "Run Now"
6789
+ #~ msgid "Run now"
6790
+ #~ msgstr "Démarrer maintenant"
6791
+
6792
+ # @ mainwp
6793
+ #~ msgid "site"
6794
+ #~ msgstr "site"
6795
+
6796
+ # @ mainwp
6797
+ #~ msgid "sites"
6798
+ #~ msgstr "sites"
6799
+
6800
+ # @ mainwp
6801
+ #~ msgid "No sites found."
6802
+ #~ msgstr "Aucun site trouvé."
6803
+
6804
+ # @ mainwp
6805
+ #, fuzzy
6806
+ #~| msgid ""
6807
+ #~| "If sites are missing from your Display but you know those sites are "
6808
+ #~| "connected to your Dashboard be sure to check the Status drop down filter "
6809
+ #~| "and adjust it to your needs."
6810
+ #~ msgid ""
6811
+ #~ "If sites are missing from your display but you know those sites are "
6812
+ #~ "connected to your dashboard be sure to check the Status drop down filter "
6813
+ #~ "and adjust it to your needs."
6814
+ #~ msgstr ""
6815
+ #~ "Si les sites sont absents de votre affichage, mais que les savez "
6816
+ #~ "connectés à votre tableau de bord vérifiez le statut dans le menu "
6817
+ #~ "déroulant filtre et ajustez-le à vos besoins."
6818
+
6819
+ # @ mainwp
6820
+ #~ msgid "Last Sync"
6821
+ #~ msgstr "Dernière synchro"
6822
+
6823
+ # @ mainwp
6824
+ #~ msgid "Last Post"
6825
+ #~ msgstr "Dernier article"
6826
+
6827
+ # @ mainwp
6828
+ #~ msgid "Actions"
6829
+ #~ msgstr "Actions"
6830
+
6831
+ # @ mainwp
6832
+ #~ msgid "Available Update"
6833
+ #~ msgid_plural "Available Updates"
6834
+ #~ msgstr[0] "Mise à jour disponible"
6835
+ #~ msgstr[1] "Mises à jour disponibles"
6836
+
6837
+ # @ mainwp
6838
+ #, fuzzy
6839
+ #~| msgid "Available Update"
6840
+ #~| msgid_plural "Available Updates"
6841
+ #~ msgid "Available WP Core Update"
6842
+ #~ msgid_plural "Available WP Core Updates"
6843
+ #~ msgstr[0] "Mise à jour disponible"
6844
+ #~ msgstr[1] "Mises à jour disponibles"
6845
+
6846
+ # @ mainwp
6847
+ #, fuzzy
6848
+ #~| msgid "Available Update"
6849
+ #~| msgid_plural "Available Updates"
6850
+ #~ msgid "Available Plugin Update"
6851
+ #~ msgid_plural "Available Plugin Updates"
6852
+ #~ msgstr[0] "Mise à jour disponible"
6853
+ #~ msgstr[1] "Mises à jour disponibles"
6854
+
6855
+ # @ mainwp
6856
+ #, fuzzy
6857
+ #~| msgid "Available Update"
6858
+ #~| msgid_plural "Available Updates"
6859
+ #~ msgid "Available Theme Update"
6860
+ #~ msgid_plural "Available Theme Updates"
6861
+ #~ msgstr[0] "Mise à jour disponible"
6862
+ #~ msgstr[1] "Mises à jour disponibles"
6863
+
6864
+ # @ mainwp
6865
+ #~ msgid "Reconnect"
6866
+ #~ msgstr "Reconnexion"
6867
+
6868
+ # @ mainwp
6869
+ #~ msgid "Open WP Admin"
6870
+ #~ msgstr "Ouvrir administration WP"
6871
+
6872
+ # @ mainwp
6873
+ #, fuzzy
6874
+ #~| msgid "Security Scan"
6875
+ #~ msgid "Security scan"
6876
+ #~ msgstr "Analyse de sécurité"
6877
+
6878
+ # @ mainwp
6879
+ #~ msgid "Sync data"
6880
+ #~ msgstr "Synchroniser les données"
6881
+
6882
+ # @ mainwp
6883
+ #~ msgid "SEO"
6884
+ #~ msgstr "SEO"
6885
+
6886
+ # @ mainwp
6887
+ #, fuzzy
6888
+ #~| msgid "Last Updated:"
6889
+ #~ msgid "Last update:"
6890
+ #~ msgstr "Dernière mise à jour&nbsp;: "
6891
+
6892
+ # @ mainwp
6893
+ #, fuzzy
6894
+ #~| msgid "Select Information: "
6895
+ #~ msgid "Select bulk action"
6896
+ #~ msgstr "Sélectionner une action groupée"
6897
+
6898
+ # @ mainwp
6899
+ #, fuzzy
6900
+ #~| msgid "Bulk Action"
6901
+ #~ msgid "Bulk Actions"
6902
+ #~ msgstr "Actions groupées"
6903
+
6904
+ # @ mainwp
6905
+ #~ msgid "Sync"
6906
+ #~ msgstr "Synchroniser"
6907
+
6908
+ # @ mainwp
6909
+ #, fuzzy
6910
+ #~| msgid "Open Frontpage"
6911
+ #~ msgid "Open Front Page"
6912
+ #~ msgstr "Ouvrir la page en ligne"
6913
+
6914
+ # @ mainwp
6915
+ #, fuzzy
6916
+ #~| msgid "update plugins"
6917
+ #~ msgid "Update plugins"
6918
+ #~ msgstr "Mettre à jour extensions"
6919
+
6920
+ # @ mainwp
6921
+ #, fuzzy
6922
+ #~| msgid "Update Wordpress"
6923
+ #~ msgid "Update WordPress"
6924
+ #~ msgstr "Mettre à jour WordPress"
6925
+
6926
+ # @ mainwp
6927
+ #~ msgid "Update translations"
6928
+ #~ msgstr "Mettre à jour les traductions"
6929
+
6930
+ # @ mainwp
6931
+ #~ msgid "All Groups"
6932
+ #~ msgstr "Tous les groupes"
6933
+
6934
+ # @ mainwp
6935
+ #~ msgid "All Statuses"
6936
+ #~ msgstr "Tous les status"
6937
+
6938
+ #, fuzzy
6939
+ #~ msgid "Online"
6940
+ #~ msgstr "En ligne"
6941
+
6942
+ #, fuzzy
6943
+ #~ msgid "Offline"
6944
+ #~ msgstr "Hors ligne"
6945
+
6946
+ # @ mainwp
6947
+ #, fuzzy
6948
+ #~| msgid "Reconnect"
6949
+ #~ msgid "Disconnected"
6950
+ #~ msgstr "Déconnecté"
6951
+
6952
+ # @ mainwp
6953
+ #, fuzzy
6954
+ #~| msgid "Available Update"
6955
+ #~| msgid_plural "Available Updates"
6956
+ #~ msgid "Available update"
6957
+ #~ msgstr "Mise à jour disponible"
6958
+
6959
+ # @ mainwp
6960
+ #~ msgid "Display"
6961
+ #~ msgstr "Afficher"
6962
+
6963
+ # @ mainwp
6964
+ #, fuzzy
6965
+ #~| msgid "Search Sites"
6966
+ #~ msgid "Search sites"
6967
+ #~ msgstr "Rechercher des sites"
6968
+
6969
+ # @ mainwp
6970
+ #~ msgid "Search Results"
6971
+ #~ msgstr "Résultats de la recherche"
6972
+
6973
+ # @ default
6974
+ #, fuzzy
6975
+ #~ msgctxt "Plugin Installer"
6976
+ #~ msgid "Featured"
6977
+ #~ msgstr "En vedette"
6978
+
6979
+ # @ default
6980
+ #~ msgctxt "Plugin Installer"
6981
+ #~ msgid "Popular"
6982
+ #~ msgstr "Populaire"
6983
+
6984
+ # @ default
6985
+ #~ msgctxt "Plugin Installer"
6986
+ #~ msgid "Recommended"
6987
+ #~ msgstr "Recommandé"
6988
+
6989
+ # @ default
6990
+ #~ msgctxt "Plugin Installer"
6991
+ #~ msgid "Beta Testing"
6992
+ #~ msgstr "En bêta test"
6993
+
6994
+ # @ mainwp
6995
+ #~ msgid "Upload Plugin"
6996
+ #~ msgstr "Télécharger l’extension"
6997
+
6998
+ # @ mainwp
6999
+ #~ msgid "Try again"
7000
+ #~ msgstr "Recommencer"
7001
+
7002
+ # @ mainwp
7003
+ #~ msgid "No plugins match your request."
7004
+ #~ msgstr "Aucune extension ne correspondent à votre demande."
7005
+
7006
+ # @ mainwp
7007
+ #~ msgid "Step 1: Select a plugin"
7008
+ #~ msgstr "Étape 1&nbsp;: sélectionnez une extension"
7009
+
7010
+ # @ default
7011
+ #~ msgctxt "Plugin installer group title"
7012
+ #~ msgid "Performance"
7013
+ #~ msgstr "Performance"
7014
+
7015
+ # @ default
7016
+ #~ msgctxt "Plugin installer group title"
7017
+ #~ msgid "Social"
7018
+ #~ msgstr "Réseaux sociaux"
7019
+
7020
+ # @ default
7021
+ #~ msgctxt "Plugin installer group title"
7022
+ #~ msgid "Tools"
7023
+ #~ msgstr "Outils"
7024
+
7025
+ # @ mainwp
7026
+ #~ msgid "Install this Plugin"
7027
+ #~ msgstr "Installer cette extension"
7028
+
7029
+ # @ default
7030
+ #~ msgid "More information about %s"
7031
+ #~ msgstr "Plus d’informations sur %s"
7032
+
7033
+ # @ default
7034
+ #~ msgid "More Details"
7035
+ #~ msgstr "Plus de détails"
7036
+
7037
+ # @ default
7038
+ #~ msgid "M j, Y @ H:i"
7039
+ #~ msgstr "M j, Y @ H:i"
7040
+
7041
+ # @ mainwp
7042
+ #~ msgid "Last Updated:"
7043
+ #~ msgstr "Dernière mise à jour&nbsp;:"
7044
+
7045
+ # @ mainwp
7046
+ #~ msgid "%s ago"
7047
+ #~ msgstr "il y a %s"
7048
+
7049
+ # @ default
7050
+ #~ msgctxt "Active plugin installs"
7051
+ #~ msgid "1+ Million"
7052
+ #~ msgstr "+1 Million"
7053
+
7054
+ # @ mainwp
7055
+ #~ msgid "%s Active Installs"
7056
+ #~ msgstr "%s installations actives"
7057
+
7058
+ # @ mainwp
7059
+ #~ msgid "Untested with your version of WordPress"
7060
+ #~ msgstr "Non testé avec la version de votre WordPress"
7061
+
7062
+ # @ mainwp
7063
+ #~ msgid "<strong>Incompatible</strong> with your version of WordPress"
7064
+ #~ msgstr "<strong>Incompatible</strong> avec votre version de WordPress"
7065
+
7066
+ # @ mainwp
7067
+ #~ msgid "<strong>Compatible</strong> with your version of WordPress"
7068
+ #~ msgstr "<strong>Compatible</strong> avec votre version de WordPress"
7069
+
7070
+ # @ mainwp
7071
+ #, fuzzy
7072
+ #~| msgid "Extensions"
7073
+ #~ msgid "Add Extensions"
7074
+ #~ msgstr "Extensions MainWP"
7075
+
7076
+ # @ mainwp
7077
+ #~ msgid "Manage Extensions"
7078
+ #~ msgstr "Gestion Extensions"
7079
+
7080
+ # @ mainwp
7081
+ #~ msgid "Step 1"
7082
+ #~ msgstr "Étape 1"
7083
+
7084
+ #, fuzzy
7085
+ #~ msgid ""
7086
+ #~ "Enter your MainWP (https://mainwp.com/) login to automatically install "
7087
+ #~ "and activate purchased extensions."
7088
+ #~ msgstr ""
7089
+ #~ "Entrez votre MainWP (https://mainwp.com/) Connectez-vous pour installer "
7090
+ #~ "automatiquement et activer les extensions achetées."
7091
+
7092
+ # @ mainwp
7093
+ #, fuzzy
7094
+ #~| msgid "Register for MainWP Account"
7095
+ #~ msgid "Not registered? %sCreate MainWP account here.%s"
7096
+ #~ msgstr "Inscrivez-vous pour un compte MAINWP"
7097
+
7098
+ #, fuzzy
7099
+ #~ msgid "Remember me"
7100
+ #~ msgstr "Souviens-toi de moi"
7101
+
7102
+ # @ mainwp
7103
+ #~ msgid "Step 2"
7104
+ #~ msgstr "Étape 2"
7105
+
7106
+ # @ mainwp
7107
+ #, fuzzy
7108
+ #~| msgid ""
7109
+ #~| "The Show Purchased Extensions button will show you all your MainWP "
7110
+ #~| "Extensions. After the list appears, you can select wanted extensions and "
7111
+ #~| "install them automatically. You can also install them manually using the "
7112
+ #~| "directions %shere%s."
7113
+ #~ msgid ""
7114
+ #~ "The show purchased extensions button will show you all your MainWP "
7115
+ #~ "Extensions. After the list appears, you can select wanted extensions and "
7116
+ #~ "install them automatically. You can also install them manually using the "
7117
+ #~ "directions %shere%s."
7118
+ #~ msgstr ""
7119
+ #~ "Le bouton \"Afficher les extensions achetées\" va vous montrer toutes vos "
7120
+ #~ "extensions MAINWP. Une fois la liste affichée, vous pouvez sélectionner "
7121
+ #~ "les extensions recherchées et les installer automatiquement. Vous pouvez "
7122
+ #~ "également les installer manuellement en utilisant les directions %spar ici"
7123
+ #~ "%s."
7124
+
7125
+ # @ mainwp
7126
+ #~ msgid "Show purchased extensions"
7127
+ #~ msgstr "Afficher les extensions achetées"
7128
+
7129
+ # @ mainwp
7130
+ #~ msgid "Step 3"
7131
+ #~ msgstr "Étape 3"
7132
+
7133
+ # @ mainwp
7134
+ #, fuzzy
7135
+ #~| msgid ""
7136
+ #~| "The Grab API Keys will automatically add your API Keys for Extension "
7137
+ #~| "automatic updates. You can also manually enter your API for each "
7138
+ #~| "Extension following the steps %shere%s."
7139
+ #~ msgid ""
7140
+ #~ "The grab API Keys will automatically add your API Keys for extension "
7141
+ #~ "automatic updates. You can also manually enter your API for each "
7142
+ #~ "Extension following the steps %shere%s."
7143
+ #~ msgstr ""
7144
+ #~ "La saisie des clés API ajoutera automatiquement vos extension et les "
7145
+ #~ "mises à jour automatiques. Vous pouvez également entrer manuellement "
7146
+ #~ "votre API pour chaque extension en suivant les étapes %spar ici%s."
7147
+
7148
+ # @ mainwp
7149
+ #~ msgid "Grab Api Keys"
7150
+ #~ msgstr "Saisir les clés API"
7151
+
7152
+ # @ mainwp
7153
+ #, fuzzy
7154
+ #~| msgid "What are Extensions?"
7155
+ #~ msgid "What are extensions?"
7156
+ #~ msgstr "Que sont les extensions&nbsp;?"
7157
+
7158
+ # @ mainwp
7159
+ #~ msgid ""
7160
+ #~ "Extensions are specific features or tools created for the purpose of "
7161
+ #~ "expanding the basic functionality of MainWP."
7162
+ #~ msgstr ""
7163
+ #~ "Les extensions MainWP sont des fonctions spécifiques ou des outils créés "
7164
+ #~ "dans le but d’étendre les fonctionnalités de base de MainWP."
7165
+
7166
+ # @ mainwp
7167
+ #, fuzzy
7168
+ #~| msgid "Why have Extensions?"
7169
+ #~ msgid "Why have extensions?"
7170
+ #~ msgstr "Pourquoi utiliser ces extensions&nbsp;?"
7171
+
7172
+ # @ mainwp
7173
+ #~ msgid ""
7174
+ #~ "The core of MainWP has been designed to provide the functions most needed "
7175
+ #~ "by our users and minimize code bloat. Extensions offer custom functions "
7176
+ #~ "and features so that each user can tailor their MainWP to their specific "
7177
+ #~ "needs."
7178
+ #~ msgstr ""
7179
+ #~ "Le noyau de MainWP a été conçu pour fournir les fonctions les plus "
7180
+ #~ "nécessaires par nos utilisateurs et de réduire l’obsolescence du site. "
7181
+ #~ "Les extensions offrent des fonctions et des caractéristiques "
7182
+ #~ "personnalisées afin que chaque utilisateur puisse adapter MainWP à leurs "
7183
+ #~ "besoins spécifiques."
7184
+
7185
+ # @ mainwp
7186
+ #~ msgid "Download your first extension now."
7187
+ #~ msgstr "Téléchargez votre première extension maintenant."
7188
+
7189
+ # @ mainwp
7190
+ #~ msgid "Expand"
7191
+ #~ msgstr "Étendre"
7192
+
7193
+ # @ mainwp
7194
+ #~ msgid "Install New Extension"
7195
+ #~ msgstr "Installer nouvelle extension MainWP"
7196
+
7197
+ # @ mainwp
7198
+ #, fuzzy
7199
+ #~| msgid "Remove from MainWP menu"
7200
+ #~ msgid "Remove from menu"
7201
+ #~ msgstr "Supprimer du menu"
7202
+
7203
+ # @ mainwp
7204
+ #, fuzzy
7205
+ #~| msgid "Add to MainWP menu"
7206
+ #~ msgid "Add to menu"
7207
+ #~ msgstr "Ajouter au menu"
7208
+
7209
+ # @ mainwp
7210
+ #~ msgid "Update Notification Enabled"
7211
+ #~ msgstr "Notification de mise à jour activée"
7212
+
7213
+ # @ mainwp
7214
+ #~ msgid "Add API to Enable Update Notification"
7215
+ #~ msgstr "Ajouter API pour activer la notification de mise à jour"
7216
+
7217
+ # @ mainwp
7218
+ #~ msgid "Documentation"
7219
+ #~ msgstr "Documentation"
7220
+
7221
+ # @ mainwp
7222
+ #~ msgid "Deactivate License Key"
7223
+ #~ msgstr "Désactiver le clé de licence"
7224
+
7225
+ # @ mainwp
7226
+ #~ msgid "Free"
7227
+ #~ msgstr "Gratuit"
7228
+
7229
+ # @ mainwp
7230
+ #~ msgid "Find Out More"
7231
+ #~ msgstr "En savoir plus"
7232
+
7233
+ # @ mainwp
7234
+ #, fuzzy
7235
+ #~| msgid "All selected group extensions are Installed."
7236
+ #~ msgid "All selected group extensions are installed."
7237
+ #~ msgstr "Toutes les extensions des groupes sélectionnés sont installées."
7238
+
7239
+ # @ mainwp
7240
+ #~ msgid "Security"
7241
+ #~ msgstr "Sécurité"
7242
+
7243
+ # @ mainwp
7244
+ #~ msgid "Hosting"
7245
+ #~ msgstr "Hébergement"
7246
+
7247
+ # @ mainwp
7248
+ #~ msgid "Administrative"
7249
+ #~ msgstr "Administration"
7250
+
7251
+ # @ mainwp
7252
+ #~ msgid "Performance"
7253
+ #~ msgstr "Performance"
7254
+
7255
+ # @ mainwp
7256
+ #~ msgid "Visitor Data"
7257
+ #~ msgstr "Données visiteur"
7258
+
7259
+ # @ mainwp
7260
+ #~ msgid "MainWP"
7261
+ #~ msgstr "MainWP"
7262
+
7263
+ # @ mainwp
7264
+ #~ msgid "Bulk Upload"
7265
+ #~ msgstr "Télécharger globalement"
7266
+
7267
+ # @ mainwp
7268
+ #~ msgid "Security Scan"
7269
+ #~ msgstr "Balayage de sécurité"
7270
+
7271
+ # @ default
7272
+ #, fuzzy
7273
+ #~| msgctxt "Button label for a theme"
7274
+ #~| msgid "Previous"
7275
+ #~ msgid "Previous"
7276
+ #~ msgstr "Précédent"
7277
+
7278
+ # @ mainwp
7279
+ #~ msgid "You are here: "
7280
+ #~ msgstr "Vous êtes ici&nbsp;: "
7281
+
7282
+ # @ mainwp
7283
+ #~ msgid "Jump to "
7284
+ #~ msgstr "Aller à "
7285
+
7286
+ # @ mainwp
7287
+ #~ msgid "Select Site "
7288
+ #~ msgstr "Sélectionner site "
7289
+
7290
+ # @ mainwp
7291
+ #, fuzzy
7292
+ #~| msgid "Select Page "
7293
+ #~ msgid "Select page "
7294
+ #~ msgstr "Sélectionner la page "
7295
+
7296
+ # @ mainwp
7297
+ #, fuzzy
7298
+ #~| msgid "Overview"
7299
+ #~ msgid "Overview "
7300
+ #~ msgstr "Vue d'ensemble "
7301
+
7302
+ # @ mainwp
7303
+ #~ msgid "Edit "
7304
+ #~ msgstr "Éditer "
7305
+
7306
+ # @ mainwp
7307
+ #~ msgid "Backup "
7308
+ #~ msgstr "Sauvegarde "
7309
+
7310
+ # @ mainwp
7311
+ #~ msgid "Security Scan "
7312
+ #~ msgstr "Analyse de sécurité "
7313
+
7314
+ # @ mainwp
7315
+ #, fuzzy
7316
+ #~| msgid "MainWP Tip"
7317
+ #~ msgid "MainWP tip"
7318
+ #~ msgstr "Astuce MainWP "
7319
+
7320
+ # @ mainwp
7321
+ #~ msgid ""
7322
+ #~ "You can show more or less information per row by selecting \"Screen "
7323
+ #~ "Options\" on the top right."
7324
+ #~ msgstr ""
7325
+ #~ "Vous pouvez afficher plus ou moins d’informations par ligne en "
7326
+ #~ "sélectionnant \"Options de l’écran\" en haut à droite."
7327
+
7328
+ # @ mainwp
7329
+ #, fuzzy
7330
+ #~| msgid ""
7331
+ #~| "You can move the Widgets around to fit your needs and even adjust the "
7332
+ #~| "number of columns by selecting \"Screen Options\" on the top right."
7333
+ #~ msgid ""
7334
+ #~ "You can move widgets around to fit your needs and even adjust the number "
7335
+ #~ "of columns by selecting \"Screen Options\" on the top right."
7336
+ #~ msgstr ""
7337
+ #~ "Vous pouvez déplacer les Widgets autour pour adapter à vos besoins et "
7338
+ #~ "même régler le nombre de colonnes en sélectionnant \"Options d’écran\" en "
7339
+ #~ "haut à droite."
7340
+
7341
+ # @ mainwp
7342
+ #~ msgid ""
7343
+ #~ "The Test Connection feature is specifically testing what your Dashboard "
7344
+ #~ "can \"see\" and what your Dashboard \"sees\" and what my Dashboard \"sees"
7345
+ #~ "\" or what your browser \"sees\" can be completely different things."
7346
+ #~ msgstr ""
7347
+ #~ "La fonction de test de connexion vérifie ce que votre tableau de bord "
7348
+ #~ "peut \"voir\" et ce que votre tableau de bord \"voit\" et ce que mon "
7349
+ #~ "tableau de bord \"voit\" ou ce que votre navigateur \"voit\" ce peut être "
7350
+ #~ "des choses complètement différentes."
7351
+
7352
+ # @ mainwp
7353
+ #~ msgid "Site URL:"
7354
+ #~ msgstr "URL site&nbsp;:"
7355
+
7356
+ # @ mainwp
7357
+ #~ msgid "Please only use the domain URL, do not add /wp-admin."
7358
+ #~ msgstr ""
7359
+ #~ "Merci d’utiliser uniquement l’URL du domaine, ne pas ajouter \"/wp-admin"
7360
+ #~ "\"."
7361
+
7362
+ # @ mainwp
7363
+ #~ msgid "Yes"
7364
+ #~ msgstr "Oui"
7365
+
7366
+ # @ mainwp
7367
+ #~ msgid "No"
7368
+ #~ msgstr "Non"
7369
+
7370
+ # @ mainwp
7371
+ #~ msgid "Use Global Setting"
7372
+ #~ msgstr "Utiliser paramètres globaux"
7373
+
7374
+ # @ mainwp
7375
+ #~ msgid "SSL version"
7376
+ #~ msgstr "Version SSL"
7377
+
7378
+ # @ mainwp
7379
+ #~ msgid "Prefered SSL Version to connect to your site."
7380
+ #~ msgstr "Préférer la connexion SSL pour votre site."
7381
+
7382
+ # @ mainwp
7383
+ #~ msgid "Auto detect"
7384
+ #~ msgstr "Auto-détection"
7385
+
7386
+ #~ msgid "Let's encrypt (TLS v1.2)"
7387
+ #~ msgstr "Let's Encrypt (TLS v1.2)"
7388
+
7389
+ # @ mainwp
7390
+ #~ msgid "TLS v1.x"
7391
+ #~ msgstr "TLS v1.x"
7392
+
7393
+ # @ mainwp
7394
+ #~ msgid "SSL v2"
7395
+ #~ msgstr "SSL v2"
7396
+
7397
+ # @ mainwp
7398
+ #~ msgid "SSL v3"
7399
+ #~ msgstr "SSL v3"
7400
+
7401
+ # @ mainwp
7402
+ #~ msgid "TLS v1.0"
7403
+ #~ msgstr "TLS v1.0"
7404
+
7405
+ # @ mainwp
7406
+ #~ msgid "TLS v1.1"
7407
+ #~ msgstr "TLS v1.1"
7408
+
7409
+ # @ mainwp
7410
+ #~ msgid "Default: Auto detect"
7411
+ #~ msgstr "Par défaut&nbsp;: auto-détection"
7412
+
7413
+ # @ mainwp
7414
+ #~ msgid "HTTP username: "
7415
+ #~ msgstr "Nom utilisateur HTTP&nbsp;: "
7416
+
7417
+ # @ mainwp
7418
+ #, fuzzy
7419
+ #~| msgid ""
7420
+ #~| "If your Child Site is protected with HTTP basic authentication, please "
7421
+ #~| "set the username and password for authentication here."
7422
+ #~ msgid ""
7423
+ #~ "If your Child Site is protected with HTTP basic authentication, please "
7424
+ #~ "set the username for authentication here."
7425
+ #~ msgstr ""
7426
+ #~ "Si votre site client est protégé par l'authentification HTTP de base, "
7427
+ #~ "merci de définir le nom d'utilisateur pour l'authentification ici."
7428
+
7429
+ # @ mainwp
7430
+ #~ msgid "HTTP password: "
7431
+ #~ msgstr "Mot de passe HTTP&nbsp;: "
7432
+
7433
+ # @ mainwp
7434
+ #, fuzzy
7435
+ #~| msgid ""
7436
+ #~| "If your Child Site is protected with HTTP basic authentication, please "
7437
+ #~| "set the username and password for authentication here."
7438
+ #~ msgid ""
7439
+ #~ "If your Child Site is protected with HTTP basic authentication, please "
7440
+ #~ "set the password for authentication here."
7441
+ #~ msgstr ""
7442
+ #~ "Si votre site client est protégé par l'authentification HTTP de base, "
7443
+ #~ "merci de définir le mot de passe pour l'authentification ici."
7444
+
7445
+ # @ mainwp
7446
+ #~ msgid "Importing sites"
7447
+ #~ msgstr "Importation de sites"
7448
+
7449
+ # @ mainwp
7450
+ #, fuzzy
7451
+ #~| msgid "Error: Data is not valid."
7452
+ #~ msgid "ERROR: Data is not valid!"
7453
+ #~ msgstr "ERREUR&nbsp;: les données ne sont pas valides&nbsp;!"
7454
+
7455
+ # @ mainwp
7456
+ #, fuzzy
7457
+ #~| msgid "Error: Upload error."
7458
+ #~ msgid "ERROR: Upload error!"
7459
+ #~ msgstr "ERREUR&nbsp;: erreur de téléchargement&nbsp;!"
7460
+
7461
+ # @ mainwp
7462
+ #, fuzzy
7463
+ #~| msgid ""
7464
+ #~| "Add\n"
7465
+ #~| " New"
7466
+ #~ msgid ""
7467
+ #~ "Add\n"
7468
+ #~ " new"
7469
+ #~ msgstr ""
7470
+ #~ "Ajouter\n"
7471
+ #~ " nouveau"
7472
+
7473
+ # @ mainwp
7474
+ #, fuzzy
7475
+ #~| msgid ""
7476
+ #~| "Return\n"
7477
+ #~| " to Dashboard"
7478
+ #~ msgid ""
7479
+ #~ "Return\n"
7480
+ #~ " to dashboard"
7481
+ #~ msgstr ""
7482
+ #~ "Retour\n"
7483
+ #~ " au tableau de bord"
7484
+
7485
+ #, fuzzy
7486
+ #~ msgid ""
7487
+ #~ "If you are having trouble adding your site please see the %s%s List of "
7488
+ #~ "Most Common Reasons%s."
7489
+ #~ msgstr ""
7490
+ #~ "Si vous rencontrez des problèmes pour ajouter votre site consultez la "
7491
+ #~ "liste %s%s raisons les plus fréquentes%s"
7492
+
7493
+ # @ mainwp
7494
+ #, fuzzy
7495
+ #~| msgid "MainWP Child Scan"
7496
+ #~ msgid "MainWP Child plugin missing"
7497
+ #~ msgstr "L’extension MainWP client est manquante"
7498
+
7499
+ #, fuzzy
7500
+ #~ msgid "MainWP Child plugin installed but not activated"
7501
+ #~ msgstr "Extension MainWP client installée mais non activée"
7502
+
7503
+ # @ mainwp
7504
+ #, fuzzy
7505
+ #~| msgid "No ignored plugin conflicts"
7506
+ #~ msgid "Plugin conflict"
7507
+ #~ msgstr "Conflit d’extension"
7508
+
7509
+ # @ mainwp
7510
+ #, fuzzy
7511
+ #~| msgid "Child Site Server Information"
7512
+ #~ msgid "Dashboard Site Server Misconfiguration"
7513
+ #~ msgstr "Information serveur du site client"
7514
+
7515
+ #, fuzzy
7516
+ #~ msgid "Log in to your Dashboard Site"
7517
+ #~ msgstr "Connectez-vous au Tableau de bord de votre site"
7518
+
7519
+ # @ mainwp
7520
+ #, fuzzy
7521
+ #~| msgid "Child Site Server Information"
7522
+ #~ msgid "Go to the MainWP > Server Information page"
7523
+ #~ msgstr "Information serveur du site client"
7524
+
7525
+ #, fuzzy
7526
+ #~ msgid ""
7527
+ #~ "Locate following checks and make sure that all of them display the Pass "
7528
+ #~ "response:"
7529
+ #~ msgstr ""
7530
+ #~ "Repérez les vérifications suivantes et assurez-vous que tous affichent la "
7531
+ #~ "réponse Pass&nbsp;: "
7532
+
7533
+ # @ mainwp
7534
+ #~ msgid "SSL Warnings"
7535
+ #~ msgstr "Avertissements SSL"
7536
+
7537
+ # @ mainwp
7538
+ #~ msgid "cURL Version"
7539
+ #~ msgstr "Version cURL"
7540
+
7541
+ # @ mainwp
7542
+ #~ msgid "cURL OpenSSL Version"
7543
+ #~ msgstr "Version cURL OpenSSL"
7544
+
7545
+ # @ mainwp
7546
+ #, fuzzy
7547
+ #~| msgid "Child Site Server Information"
7548
+ #~ msgid "Child Site Server Misconfiguration"
7549
+ #~ msgstr "Information serveur du site client"
7550
+
7551
+ # @ mainwp
7552
+ #, fuzzy
7553
+ #~| msgid "Add Plugin to Child Site(s)"
7554
+ #~ msgid "Log in to your Child Site"
7555
+ #~ msgstr "Connectez-vous à votre site client"
7556
+
7557
+ # @ mainwp
7558
+ #, fuzzy
7559
+ #~| msgid "MainWP upload directory is not writable."
7560
+ #~ msgid "MainWP Upload Directory"
7561
+ #~ msgstr "Répertoire de téléchargement MainWP"
7562
+
7563
+ # @ mainwp
7564
+ #, fuzzy
7565
+ #~| msgid "Sever self connect"
7566
+ #~ msgid "Locate the Server self-connect check"
7567
+ #~ msgstr "Localisez le contrôle d'auto-connexion du serveur"
7568
+
7569
+ # @ default
7570
+ #, fuzzy
7571
+ #~| msgid "This theme has not been rated yet."
7572
+ #~ msgid "Website has been migrated recently"
7573
+ #~ msgstr "Ce thème n’a pas encore été évalué."
7574
+
7575
+ # @ mainwp
7576
+ #~ msgid ""
7577
+ #~ "You may have recently moved the website to another server and your "
7578
+ #~ "Dashboard's Server may not have an updated DNS or your server may be "
7579
+ #~ "experiencing DNS issues. To check this use the Test Connection tab and "
7580
+ #~ "verify the IP that shows up with the IP that shows on your website WP > "
7581
+ #~ "Settings > MainWP Child > Server Information page."
7582
+ #~ msgstr ""
7583
+ #~ "Vous pouvez avoir déplacé de serveur le site client, votre tableau de "
7584
+ #~ "bord peut avoir besoin d’une mise à jour DNS ou votre serveur peut "
7585
+ #~ "rencontrer des problèmes de DNS. Pour vérifier, allez sur l’onglet "
7586
+ #~ "\"Connexion de test\" et vérifiez l’adresse IP qui apparaît avec l’IP qui "
7587
+ #~ "est indiquée sur votre sites client (page Information serveur de MainWP)."
7588
+
7589
+ #, fuzzy
7590
+ #~ msgid "Child Site host: request DNS Settings verification"
7591
+ #~ msgstr "Le site client"
7592
+
7593
+ #, fuzzy
7594
+ #~ msgid "Requests being blocked by Child Site server"
7595
+ #~ msgstr "Requêtes bloquées par le serveur de site client"
7596
+
7597
+ #, fuzzy
7598
+ #~ msgid "Add your Dashboard IP to your CloudFlare Trusted IP list"
7599
+ #~ msgstr ""
7600
+ #~ "Ajoutez votre IP de Tableau de bord à votre liste d'adresses IP "
7601
+ #~ "CloudFlare approuvées"
7602
+
7603
+ # @ mainwp
7604
+ #, fuzzy
7605
+ #~| msgid "Administrator Username"
7606
+ #~ msgid "Administrator username"
7607
+ #~ msgstr "Nom d'utilisateur administrateur"
7608
+
7609
+ #, fuzzy
7610
+ #~ msgid "Friendly site name"
7611
+ #~ msgstr "Nom du site client"
7612
+
7613
+ #, fuzzy
7614
+ #~ msgid "Not sure what to add here?"
7615
+ #~ msgstr "Vous ne savez pas quoi ajouter ici&nbsp;?"
7616
+
7617
+ # @ mainwp
7618
+ #, fuzzy
7619
+ #~| msgid "Please enter the Site name."
7620
+ #~ msgid "Please check this page:"
7621
+ #~ msgstr "Veuillez vérifier cette page&nbsp;: "
7622
+
7623
+ # @ mainwp
7624
+ #, fuzzy
7625
+ #~| msgid "Not updated yet."
7626
+ #~ msgid "No groups added yet."
7627
+ #~ msgstr "Aucun groupe n'a encore été ajouté."
7628
+
7629
+ # @ mainwp
7630
+ #~ msgid ""
7631
+ #~ "You have Extensions installed that require an additional plugin to be "
7632
+ #~ "installed on this new Child site for the Extension to work correctly. "
7633
+ #~ "From the list below select the plugins you want to install and if you "
7634
+ #~ "want to apply the Extensions default settings to this Child site."
7635
+ #~ msgstr ""
7636
+ #~ "Vous avez des extensions installées qui nécessitent d’installer une "
7637
+ #~ "extension supplémentaire sur ce nouveau site client pour qu’il fonctionne "
7638
+ #~ "correctement. Dans la liste ci-dessous sélectionner les extensions que "
7639
+ #~ "vous souhaitez installer et si vous voulez appliquer les paramètres par "
7640
+ #~ "défaut des extensions à ce site client."
7641
+
7642
+ # @ mainwp
7643
+ #~ msgid "Install %s plugin"
7644
+ #~ msgstr "Installer l’extension %s"
7645
+
7646
+ # @ mainwp
7647
+ #~ msgid "Apply %s %ssettings%s"
7648
+ #~ msgstr "Appliquer les %sréglages%s %s"
7649
+
7650
+ # @ mainwp
7651
+ #~ msgid "Apply global %s options"
7652
+ #~ msgstr "Appliquer les options globales %s"
7653
+
7654
+ # @ mainwp
7655
+ #, fuzzy
7656
+ #~| msgid "Child Unique Security ID "
7657
+ #~ msgid ""
7658
+ #~ "Child Unique Security\n"
7659
+ #~ "\t\t\t\t ID "
7660
+ #~ msgstr ""
7661
+ #~ "Clé Unique de sécurité client\n"
7662
+ #~ "\t\t\t\t ID "
7663
+
7664
+ # @ mainwp
7665
+ #~ msgid "Use global setting"
7666
+ #~ msgstr "Utiliser le paramètre global"
7667
+
7668
+ # @ mainwp
7669
+ #, fuzzy
7670
+ #~| msgid "Prefered SSL Version to connect to your site."
7671
+ #~ msgid "Prefered SSL version to connect to your site."
7672
+ #~ msgstr "Préférer la connexion SSL pour votre site."
7673
+
7674
+ # @ mainwp
7675
+ #~ msgid "HTTP username "
7676
+ #~ msgstr "Nom utilisateur HTTP "
7677
+
7678
+ # @ mainwp
7679
+ #, fuzzy
7680
+ #~| msgid ""
7681
+ #~| "If your Child Site is protected with HTTP basic authentication, please "
7682
+ #~| "set the username and password for authentication here."
7683
+ #~ msgid ""
7684
+ #~ "If your child site is protected with HTTP basic authentication, please "
7685
+ #~ "set the username and password for authentication here."
7686
+ #~ msgstr ""
7687
+ #~ "Si votre site enfant est protégé par l'authentification de base HTTP, "
7688
+ #~ "veuillez indiquer ici le nom d'utilisateur pour l'authentification."
7689
+
7690
+ # @ mainwp
7691
+ #~ msgid "HTTP password "
7692
+ #~ msgstr "Mot de passe HTTP "
7693
+
7694
+ #, fuzzy
7695
+ #~ msgid ""
7696
+ #~ "Import sites allows you to connect a large number of child sites at once "
7697
+ #~ "by uploading a CSV file. The MainWP Child plugin needs to be installed "
7698
+ #~ "and activated before using the Import Sites option."
7699
+ #~ msgstr ""
7700
+ #~ "Importer des sites vous permet de connecter un grand nombre de sites "
7701
+ #~ "clients à la fois en téléchargeant un fichier CSV. L’extension MainWP "
7702
+ #~ "Client doit être installée et activée <strong>avant</strong> d'utiliser "
7703
+ #~ "l'option Importer des sites."
7704
+
7705
+ # @ mainwp
7706
+ #~ msgid "No full backup has been taken yet"
7707
+ #~ msgstr "Aucune sauvegarde complète n’a encore été effectuée"
7708
+
7709
+ # @ mainwp
7710
+ #~ msgid "Last backups from your files:"
7711
+ #~ msgstr "Dernières sauvegardes de vos fichiers&nbsp;:"
7712
+
7713
+ # @ mainwp
7714
+ #~ msgid "No database only backup has been taken yet"
7715
+ #~ msgstr "Aucune sauvegarde de base de données n’a encore été effectuée"
7716
+
7717
+ # @ mainwp
7718
+ #~ msgid "Last backups from your database:"
7719
+ #~ msgstr "Dernières sauvegardes de votre base de données&nbsp;:"
7720
+
7721
+ # @ mainwp
7722
+ #, fuzzy
7723
+ #~| msgid "Select Primary Backup System"
7724
+ #~ msgid "Select primary backup system"
7725
+ #~ msgstr "Sélection du système de sauvegarde primaire"
7726
+
7727
+ # @ mainwp
7728
+ #, fuzzy
7729
+ #~| msgid "Backups on Server"
7730
+ #~ msgid "Backups on server"
7731
+ #~ msgstr "Sauvegardes sur serveur"
7732
+
7733
+ # @ mainwp
7734
+ #, fuzzy
7735
+ #~| msgid "Backups on Remote Storage"
7736
+ #~ msgid "Backups on remote storage"
7737
+ #~ msgstr "Sauvegardes sur stockage à distance"
7738
+
7739
+ # @ mainwp
7740
+ #~ msgid ""
7741
+ #~ "The number of backups to keep on your external sources. This does not "
7742
+ #~ "affect backups on the server. 0 sets unlimited."
7743
+ #~ msgstr ""
7744
+ #~ "Le nombre de sauvegardes à conserver sur vos sources externes. Cela ne "
7745
+ #~ "affecte pas les sauvegardes sur le serveur. 0 ensembles illimitée."
7746
+
7747
+ # @ mainwp
7748
+ #, fuzzy
7749
+ #~| msgid ""
7750
+ #~| "Uses PHP native Zip-library, when missing, the PCLZip library included "
7751
+ #~| "in Wordpress will be used. (Good compression, fast with native zip-"
7752
+ #~| "library)"
7753
+ #~ msgid ""
7754
+ #~ "Uses PHP native Zip-library, when missing, the PCLZip library included in "
7755
+ #~ "WordPress will be used. (Good compression, fast with native zip-library)"
7756
+ #~ msgstr ""
7757
+ #~ "Utilise la librairie Zip PHP native, lorsque manquant, la librairie "
7758
+ #~ "PclZip incluse dans WordPress sera utilisée. (Bonne compression, rapide "
7759
+ #~ "avec la librairie Zip native)"
7760
+
7761
+ # @ mainwp
7762
+ #~ msgid ""
7763
+ #~ "Creates an uncompressed tar-archive. (No compression, fast, low memory "
7764
+ #~ "usage)"
7765
+ #~ msgstr ""
7766
+ #~ "Crée une archive tar non compressée. (Pas de compression, rapide, faible "
7767
+ #~ "consommation de mémoire)"
7768
+
7769
+ # @ mainwp
7770
+ #~ msgid ""
7771
+ #~ "Creates a GZipped tar-archive. (Good compression, fast, low memory usage)"
7772
+ #~ msgstr ""
7773
+ #~ "Crée une archive tar GZippée. (Bonne compression, rapide, faible "
7774
+ #~ "consommation de mémoire)"
7775
+
7776
+ # @ mainwp
7777
+ #~ msgid ""
7778
+ #~ "Creates a BZipped tar-archive. (Best compression, fast, low memory usage)"
7779
+ #~ msgstr ""
7780
+ #~ "Crée une archive tar BZippée. (Bonne compression, rapide, faible "
7781
+ #~ "consommation de mémoire)"
7782
+
7783
+ # @ mainwp
7784
+ #, fuzzy
7785
+ #~| msgid "Send Email if a Backup Fails"
7786
+ #~ msgid "Send email if a backup fails"
7787
+ #~ msgstr "Envoyer un courriel si une sauvegarde échoue"
7788
+
7789
+ # @ mainwp
7790
+ #, fuzzy
7791
+ #~| msgid "Send Email if a Backup Starts"
7792
+ #~ msgid "Send email when a backup starts"
7793
+ #~ msgstr "Envoyer un courriel si une sauvegarde débute"
7794
+
7795
+ # @ mainwp
7796
+ #, fuzzy
7797
+ #~| msgid "Execute Backup Tasks in Chunks"
7798
+ #~ msgid "Execute backup tasks in chunks"
7799
+ #~ msgstr "Exécuter des tâches de sauvegarde en blocs"
7800
+
7801
+ # @ mainwp
7802
+ #~ msgid "individual dashboard"
7803
+ #~ msgstr "tableau de bord individuel"
7804
+
7805
+ # @ mainwp
7806
+ #~ msgid "execute backups"
7807
+ #~ msgstr "exécuter les sauvegardes"
7808
+
7809
+ # @ mainwp
7810
+ #~ msgid ""
7811
+ #~ "Did you know that MainWP has Extensions for working with popular backup "
7812
+ #~ "plugins? Visit the %sExtensions Site%s for options."
7813
+ #~ msgstr ""
7814
+ #~ "Saviez-vous que MainWP a des extensions pour travailler avec des "
7815
+ #~ "extensions de sauvegarde les plus populaires&nbsp;? Visitez le site "
7816
+ #~ "%sdes extensions%s pour les options."
7817
+
7818
+ # @ mainwp
7819
+ #, fuzzy
7820
+ #~| msgid "Backup File Name:"
7821
+ #~ msgid "Backup file name:"
7822
+ #~ msgstr "Nom du fichier de sauvegarde&nbsp;:"
7823
+
7824
+ # @ mainwp
7825
+ #, fuzzy
7826
+ #~| msgid ""
7827
+ #~| "This adds known backup locations of popular WordPress backup plugins to "
7828
+ #~| "the exclude list. Old backups can take up a lot of space and can cause "
7829
+ #~| "your current MainWP backup to timeout."
7830
+ #~ msgid ""
7831
+ #~ "This adds known backup locations of popular WordPress backup plugins to "
7832
+ #~ "the exclude list. Old backups can take up a lot of space and can cause "
7833
+ #~ "your current MainWP backup to timeout."
7834
+ #~ msgstr ""
7835
+ #~ "Cela ajoute les emplacements connus de sauvegarde des extensions "
7836
+ #~ "WordPress populaires de sauvegarde à la liste d’exclusion. Les anciennes "
7837
+ #~ "sauvegardes peuvent prendre beaucoup d’espace et peuvent causer l’échec "
7838
+ #~ "de la sauvegarde MainWP par défaut de temps."
7839
+
7840
+ # @ mainwp
7841
+ #, fuzzy
7842
+ #~| msgid ""
7843
+ #~| "This adds known cache locations of popular WordPress cache plugins to "
7844
+ #~| "the exclude list. A cache can be massive with thousands of files and "
7845
+ #~| "can cause your current MainWP backup to timeout. Your cache will be "
7846
+ #~| "rebuilt by your caching plugin when the backup is restored."
7847
+ #~ msgid ""
7848
+ #~ "This adds known cache locations of popular WordPress cache plugins to the "
7849
+ #~ "exclude list. A cache can be massive with thousands of files and can "
7850
+ #~ "cause your current MainWP backup to timeout. Your cache will be rebuilt "
7851
+ #~ "by your caching plugin when the backup is restored."
7852
+ #~ msgstr ""
7853
+ #~ "Cela ajoute les emplacements de cache connus des extensions de cache "
7854
+ #~ "WordPress populaires à la liste d’exclusion. Un cache peut être important "
7855
+ #~ "avec des milliers de fichiers et peut bloquer votre sauvegarde par délais "
7856
+ #~ "de temps dépassé. Votre cache sera reconstruit par votre extension de "
7857
+ #~ "mise en cache lorsque la sauvegarde est restaurée."
7858
+
7859
+ # @ mainwp
7860
+ #~ msgid "Store Backup In:"
7861
+ #~ msgstr "Mettre sauvegarde dans&nbsp;:"
7862
+
7863
+ # @ mainwp
7864
+ #~ msgid "Backup Subfolder:"
7865
+ #~ msgstr "Sous-dossier de sauvegarde&nbsp;:"
7866
+
7867
+ # @ mainwp
7868
+ #~ msgid "Maximum File Descriptors on Child"
7869
+ #~ msgstr "Nombre de fichiers de description maximum sur le Client"
7870
+
7871
+ # @ mainwp
7872
+ #, fuzzy
7873
+ #~| msgid "Use Global Setting"
7874
+ #~ msgid "Global Setting"
7875
+ #~ msgstr "Paramètres globaux"
7876
+
7877
+ # @ mainwp
7878
+ #, fuzzy
7879
+ #~| msgid "Change"
7880
+ #~ msgid "Change Here"
7881
+ #~ msgstr "Changer ici"
7882
+
7883
+ # @ mainwp
7884
+ #~ msgid "Override"
7885
+ #~ msgstr "Passer outre"
7886
+
7887
+ # @ mainwp
7888
+ #, fuzzy
7889
+ #~| msgid "Security Scan"
7890
+ #~ msgid "security scan"
7891
+ #~ msgstr "analyse de sécurité"
7892
+
7893
+ # @ mainwp
7894
+ #~ msgid ""
7895
+ #~ "The Sucuri Scan requires the free Sucuri Extension, please download from "
7896
+ #~ "%shere%s"
7897
+ #~ msgstr ""
7898
+ #~ "L’analyse Sucuri requiers l’extension gratuite Sucuri, merci de la "
7899
+ #~ "télécharger depuis %sce lien%s"
7900
+
7901
+ # @ mainwp
7902
+ #~ msgid ""
7903
+ #~ "Wordfence status requires the Wordfence Extension, please order from "
7904
+ #~ "%shere%s."
7905
+ #~ msgstr ""
7906
+ #~ "Le statut Wordfence requiers l’extension Wordfence, merci de la "
7907
+ #~ "télécharger depuis %sce lien%s."
7908
+
7909
+ # @ mainwp
7910
+ #~ msgid "edit sites"
7911
+ #~ msgstr "éditer les sites"
7912
+
7913
+ # @ mainwp
7914
+ #~ msgid "Website updated."
7915
+ #~ msgstr "Site web mis à jour."
7916
+
7917
+ # @ mainwp
7918
+ #~ msgid "Update Site"
7919
+ #~ msgstr "Mettre à jour le site"
7920
+
7921
+ # @ mainwp
7922
+ #, fuzzy
7923
+ #~| msgid "Client Plugin Folder Option"
7924
+ #~ msgid "Client plugin folder option"
7925
+ #~ msgstr "Option extension Dossier Client"
7926
+
7927
+ # @ mainwp
7928
+ #~ msgid "Default"
7929
+ #~ msgstr "Défaut"
7930
+
7931
+ # @ mainwp
7932
+ #, fuzzy
7933
+ #~| msgid "Require Backup Before Upgrade"
7934
+ #~ msgid "Require backup before update"
7935
+ #~ msgstr "Exiger une sauvegarde avant la mise à jour"
7936
+
7937
+ # @ mainwp
7938
+ #~ msgid "Backup only works when enabled in the global settings as well."
7939
+ #~ msgstr ""
7940
+ #~ "La sauvegarde ne fonctionne que lorsqu’il est activé dans les paramètres "
7941
+ #~ "globaux ainsi."
7942
+
7943
+ # @ mainwp
7944
+ #, fuzzy
7945
+ #~| msgid "Auto Update Core"
7946
+ #~ msgid "Auto update core"
7947
+ #~ msgstr "Mise à jour automatique du Core"
7948
+
7949
+ # @ mainwp
7950
+ #, fuzzy
7951
+ #~| msgid "Ignore Core Updates"
7952
+ #~ msgid "Ignore core updates"
7953
+ #~ msgstr "Ignorer les mises à jour du Core"
7954
+
7955
+ # @ mainwp
7956
+ #, fuzzy
7957
+ #~| msgid "Ignore a plugin update"
7958
+ #~ msgid "Ignore all plugin updates"
7959
+ #~ msgstr "Ignorer toutes les mises à jour des extensions"
7960
+
7961
+ # @ mainwp
7962
+ #, fuzzy
7963
+ #~| msgid "Ignore a theme update"
7964
+ #~ msgid "Ignore all theme updates"
7965
+ #~ msgstr "Ignorer toutes les mises à jour des thèmes"
7966
+
7967
+ # @ mainwp
7968
+ #, fuzzy
7969
+ #~| msgid "Child Unique Security ID "
7970
+ #~ msgid "Child unique security ID "
7971
+ #~ msgstr "ID unique de sécurité client "
7972
+
7973
+ # @ mainwp
7974
+ #~ msgid ""
7975
+ #~ "No MainWP Child plugin detected, first install and activate the plugin "
7976
+ #~ "and add your site to MainWP afterwards. If you continue experiencing this "
7977
+ #~ "issue please "
7978
+ #~ msgstr ""
7979
+ #~ "Aucune extension MainWP client détectée, installez d’abord l’extension et "
7980
+ #~ "activez-la puis ajoutez votre site à MainWP après. Si vous continuez sur "
7981
+ #~ "cette question merci de "
7982
+
7983
+ # @ mainwp
7984
+ #~ msgid "test your connection %shere%s or "
7985
+ #~ msgstr "tester votre connexion %sici%s ou "
7986
+
7987
+ # @ mainwp
7988
+ #~ msgid ""
7989
+ #~ "post as much information as possible on the error in the %ssupport forum"
7990
+ #~ "%s."
7991
+ #~ msgstr ""
7992
+ #~ "poster autant d’informations que possible sur l’erreur dans les %sforums "
7993
+ #~ "de support%s."
7994
+
7995
+ # @ mainwp
7996
+ #, fuzzy
7997
+ #~| msgid "This information is only for %s%s"
7998
+ #~ msgid "This operation is not allowed!"
7999
+ #~ msgstr "Cette opération n'est pas autorisée&nbsp;!"
8000
+
8001
+ # @ mainwp
8002
+ #, fuzzy
8003
+ #~| msgid "Your site is already added to MainWP"
8004
+ #~ msgid "Your site is already added to MainWP Dashboard"
8005
+ #~ msgstr "Votre site est déjà été ajouté au Tableau de bord MainWP"
8006
+
8007
+ # @ mainwp
8008
+ #~ msgid "Site successfully added - Visit the Site's %sDashboard%s now."
8009
+ #~ msgstr ""
8010
+ #~ "Site ajouté avec succès - Visiter le %stableau de bord%s du site "
8011
+ #~ "maintenant."
8012
+
8013
+ # @ mainwp
8014
+ #~ msgid "Sites per page"
8015
+ #~ msgstr "Sites par page"
8016
+
8017
+ # @ mainwp
8018
+ #~ msgid "Update settings."
8019
+ #~ msgstr "Paramètres des mises à jour."
8020
+
8021
+ # @ mainwp
8022
+ #~ msgid "Settings have been updated."
8023
+ #~ msgstr "Les paramètres ont été mis à jour."
8024
+
8025
+ # @ mainwp
8026
+ #~ msgid "An error occured."
8027
+ #~ msgstr "Une erreur a été rencontrée."
8028
+
8029
+ # @ mainwp
8030
+ #~ msgid "Testing login."
8031
+ #~ msgstr "Connexion d’essai."
8032
+
8033
+ # @ mainwp
8034
+ #~ msgid "Your login is valid."
8035
+ #~ msgstr "Votre identifiant est valide."
8036
+
8037
+ # @ mainwp
8038
+ #~ msgid "Your login is invalid."
8039
+ #~ msgstr "Votre identifiant est invalide."
8040
+
8041
+ # @ mainwp
8042
+ #~ msgid "An error occured, please contact us."
8043
+ #~ msgstr "Une erreur a été rencontrée, merci de nous contacter."
8044
+
8045
+ # @ mainwp
8046
+ #~ msgid "more"
8047
+ #~ msgstr "plus"
8048
+
8049
+ # @ mainwp
8050
+ #~ msgid "less"
8051
+ #~ msgstr "moins"
8052
+
8053
+ # @ mainwp
8054
+ #~ msgid "An error occured: "
8055
+ #~ msgstr "Une erreur a été rencontrée&nbsp;: "
8056
+
8057
+ # @ mainwp
8058
+ #~ msgid "No data available. Connect your sites using the Settings submenu."
8059
+ #~ msgstr ""
8060
+ #~ "Aucune donnée disponible. Connectez vos sites en utilisant le sous-menu "
8061
+ #~ "Paramètres."
8062
+
8063
+ # @ mainwp
8064
+ #~ msgid "PENDING"
8065
+ #~ msgstr "EN ATTENTE"
8066
+
8067
+ # @ mainwp
8068
+ #~ msgid "UPDATING"
8069
+ #~ msgstr "MISE À JOUR"
8070
+
8071
+ # @ mainwp
8072
+ #~ msgid "UPGRADING"
8073
+ #~ msgstr "MISE À NIVEAU"
8074
+
8075
+ # @ mainwp
8076
+ #~ msgid "FAILED"
8077
+ #~ msgstr "ÉCHOUÉ"
8078
+
8079
+ # @ mainwp
8080
+ #~ msgid "DONE"
8081
+ #~ msgstr "FAIT"
8082
+
8083
+ # @ mainwp
8084
+ #~ msgid "SYNCING"
8085
+ #~ msgstr "Synchronisation"
8086
+
8087
+ # @ mainwp
8088
+ #~ msgid "DISCONNECTED"
8089
+ #~ msgstr "Déconnecté"
8090
+
8091
+ # @ mainwp
8092
+ #~ msgid "TIMEOUT"
8093
+ #~ msgstr "Dépassement de délai"
8094
+
8095
+ # @ mainwp
8096
+ #~ msgid "Ignored"
8097
+ #~ msgstr "Ignoré"
8098
+
8099
+ # @ mainwp
8100
+ #~ msgid "No ignored %1s"
8101
+ #~ msgstr "Aucun %1s ignorés"
8102
+
8103
+ # @ mainwp
8104
+ #~ msgid "No ignored %1 conflicts"
8105
+ #~ msgstr "Aucun conflits %1s ignorés"
8106
+
8107
+ # @ mainwp
8108
+ #~ msgid "Upgrading.."
8109
+ #~ msgstr "Mise à niveau…"
8110
+
8111
+ # @ mainwp
8112
+ #, fuzzy
8113
+ #~| msgid "Upgrade successful"
8114
+ #~ msgid "Update successful"
8115
+ #~ msgstr "Mise à jour réussie"
8116
+
8117
+ # @ mainwp
8118
+ #, fuzzy
8119
+ #~| msgid "Upgrade failed"
8120
+ #~ msgid "Update failed"
8121
+ #~ msgstr "Mise à jour avortée"
8122
+
8123
+ # @ mainwp
8124
+ #~ msgid "Show All"
8125
+ #~ msgstr "Afficher tous"
8126
+
8127
+ # @ mainwp
8128
+ #~ msgid "Show"
8129
+ #~ msgstr "Afficher"
8130
+
8131
+ # @ mainwp
8132
+ #~ msgid "Hide All"
8133
+ #~ msgstr "Masquer tous"
8134
+
8135
+ # @ mainwp
8136
+ #~ msgid "Testing ..."
8137
+ #~ msgstr "Test en cours…"
8138
+
8139
+ # @ mainwp
8140
+ #~ msgid "Received wrong response from the server."
8141
+ #~ msgstr "Mauvaise réponse reçue de la part du serveur."
8142
+
8143
+ # @ mainwp
8144
+ #~ msgid "Untitled"
8145
+ #~ msgstr "Sans titre"
8146
+
8147
+ # @ mainwp
8148
+ #~ msgid ""
8149
+ #~ "Are you sure you want to remove this destination. This could make some of "
8150
+ #~ "the backup tasks invalid."
8151
+ #~ msgstr ""
8152
+ #~ "Êtes-vous sûr que vous voulez supprimer cette destination. Cela pourrait "
8153
+ #~ "faire partie des tâches qui rendent la sauvegarde invalide."
8154
+
8155
+ # @ mainwp
8156
+ #~ msgid "Starting backup task."
8157
+ #~ msgstr "Démarrer la tâche de sauvegarde."
8158
+
8159
+ # @ mainwp
8160
+ #~ msgid "Backup task complete"
8161
+ #~ msgstr "Tâche de sauvegarde terminée"
8162
+
8163
+ # @ mainwp
8164
+ #~ msgid "with errors"
8165
+ #~ msgstr "avec les erreurs"
8166
+
8167
+ # @ mainwp
8168
+ #~ msgid "Creating backupfile."
8169
+ #~ msgstr "Création du fichier de sauvegarde."
8170
+
8171
+ # @ mainwp
8172
+ #~ msgid "Backupfile created successfully."
8173
+ #~ msgstr "Création du fichier de sauvegarde avec succès."
8174
+
8175
+ # @ mainwp
8176
+ #~ msgid "Download from child site completed."
8177
+ #~ msgstr "Téléchargement à partir du site client terminée."
8178
+
8179
+ # @ mainwp
8180
+ #~ msgid "Uploading to remote destinations.."
8181
+ #~ msgstr "Téléchargement vers des serveurs externes…"
8182
+
8183
+ # @ mainwp
8184
+ #~ msgid "Backup complete."
8185
+ #~ msgstr "Sauvegarde complète."
8186
+
8187
+ # @ mainwp
8188
+ #~ msgid "Upload to %1 (%2) failed:"
8189
+ #~ msgstr "Téléchargement de %1 (%2) manqué&nbsp;:"
8190
+
8191
+ # @ mainwp
8192
+ #~ msgid "Upload to %1 (%2) succesful"
8193
+ #~ msgstr "Téléchargement de %1 (%2) réussi"
8194
+
8195
+ # @ mainwp
8196
+ #~ msgid "Please select websites or groups to add a backup task."
8197
+ #~ msgstr ""
8198
+ #~ "Merci de sélectionner des sites web ou des groupes auquels ajouter une "
8199
+ #~ "tâche de sauvegarde."
8200
+
8201
+ # @ mainwp
8202
+ #~ msgid "Adding the task to MainWP"
8203
+ #~ msgstr "Ajouter la tâche à MainWP"
8204
+
8205
+ # @ mainwp
8206
+ #~ msgid "Please select websites or groups."
8207
+ #~ msgstr "Merci de sélectionner sites web ou groupes."
8208
+
8209
+ # @ mainwp
8210
+ #~ msgid "Are you sure you want to delete this backup task?"
8211
+ #~ msgstr "Êtes-vous sûr de vouloir supprimer cette tâche de sauvegarde&nbsp;?"
8212
+
8213
+ # @ mainwp
8214
+ #~ msgid "Removing the task.."
8215
+ #~ msgstr "Suppression de la tâche…"
8216
+
8217
+ # @ mainwp
8218
+ #~ msgid "The task has been removed"
8219
+ #~ msgstr "La tâche a été supprimée"
8220
+
8221
+ # @ mainwp
8222
+ #~ msgid "An unspecified error occured"
8223
+ #~ msgstr "Une erreur non spécifiée a été rencontrée"
8224
+
8225
+ # @ mainwp
8226
+ #~ msgid "Connection test failed."
8227
+ #~ msgstr "Test de connexion manqué."
8228
+
8229
+ # @ mainwp
8230
+ #~ msgid "Error message:"
8231
+ #~ msgstr "Message d’erreur&nbsp;:"
8232
+
8233
+ # @ mainwp
8234
+ #~ msgid "Received HTTP-code:"
8235
+ #~ msgstr "Reçu code HTTP&nbsp;:"
8236
+
8237
+ # @ mainwp
8238
+ #~ msgid "Connection test successful."
8239
+ #~ msgstr "Test de connexion réussi."
8240
+
8241
+ # @ mainwp
8242
+ #~ msgid "Invalid response from the server, please try again."
8243
+ #~ msgstr "Réponse invalide depuis le serveur, merci de recommencer."
8244
+
8245
+ # @ mainwp
8246
+ #~ msgid "Please enter csv file for upload."
8247
+ #~ msgstr "Merci d’indiquer le fichier CSV pour le téléchargement."
8248
+
8249
+ # @ mainwp
8250
+ #~ msgid "Please enter a name for the website"
8251
+ #~ msgstr "Merci de saisir le nom du site web"
8252
+
8253
+ # @ mainwp
8254
+ #~ msgid "Please enter a valid URL for your site"
8255
+ #~ msgstr "Merci de saisir une URL valide pour votre site"
8256
+
8257
+ # @ mainwp
8258
+ #~ msgid "Please enter a username for the administrator"
8259
+ #~ msgstr "Merci de saisir un identifiant pour l’administrateur"
8260
+
8261
+ # @ mainwp
8262
+ #~ msgid "Adding the site to MainWP"
8263
+ #~ msgstr "Ajouter le site à MainWP"
8264
+
8265
+ # @ mainwp
8266
+ #~ msgid ""
8267
+ #~ "No MainWP Child plugin detected, first install and activate the plugin "
8268
+ #~ "and add your site to MainWP afterwards. Click <a href=\"%1\" target="
8269
+ #~ "\"_blank\">here</a> to install <a href=\"%2\" target=\"_blank\">MainWP</"
8270
+ #~ "a> plugin (do not forget to activate it after installation)."
8271
+ #~ msgstr ""
8272
+ #~ "Aucune extension MainWP client détectée, installer d’abord puis activer "
8273
+ #~ "l’extension pour ajouter votre site à MainWP. Cliquez <a href=\"%1\" "
8274
+ #~ "target=\"_blank\">ici</a> pour installer l’extension <a href=\"%2\" "
8275
+ #~ "target=\"_blank\">MainWP</a> (n’oubliez pas de l’activer après "
8276
+ #~ "l’installation)."
8277
+
8278
+ # @ mainwp
8279
+ #~ msgid "Testing the connection"
8280
+ #~ msgstr "Test de la connexion"
8281
+
8282
+ # @ mainwp
8283
+ #~ msgid "Are you sure you want to delete this site?"
8284
+ #~ msgstr "Êtes-vous certain de vouloir supprimer ce site&nbsp;?"
8285
+
8286
+ # @ mainwp
8287
+ #~ msgid "Removing and deactivating the MainWP Child plugin.."
8288
+ #~ msgstr "Désactivation et suppression de l’extension MainWP Client…"
8289
+
8290
+ # @ mainwp
8291
+ #~ msgid ""
8292
+ #~ "The site has been removed and the MainWP Child plugin has been disabled"
8293
+ #~ msgstr ""
8294
+ #~ "Le site a été supprimé et l’extension MainWP client a été désactivée"
8295
+
8296
+ # @ mainwp
8297
+ #~ msgid "The requested site has not been found"
8298
+ #~ msgstr "Le site demandé n’a pas été trouvé"
8299
+
8300
+ # @ mainwp
8301
+ #~ msgid ""
8302
+ #~ "The site has been removed but the MainWP Child plugin could not be "
8303
+ #~ "disabled"
8304
+ #~ msgstr ""
8305
+ #~ "Le site a été supprimé, mais l’extension MainWP client n’a pas pu être "
8306
+ #~ "désactivée"
8307
+
8308
+ # @ mainwp
8309
+ #~ msgid "Paused import by user."
8310
+ #~ msgstr "Pause de l’importation par l’utilisateur."
8311
+
8312
+ # @ mainwp
8313
+ #~ msgid "Continue import."
8314
+ #~ msgstr "Continuer l’importation."
8315
+
8316
+ # @ mainwp
8317
+ #~ msgid "Finished"
8318
+ #~ msgstr "Terminé"
8319
+
8320
+ # @ mainwp
8321
+ #~ msgid "Please enter the Site name."
8322
+ #~ msgstr "Merci de saisir le nom du site."
8323
+
8324
+ # @ mainwp
8325
+ #~ msgid "Please enter the Site url."
8326
+ #~ msgstr "Merci de saisir l’URL du site."
8327
+
8328
+ # @ mainwp
8329
+ #~ msgid "Please enter Admin name of the site."
8330
+ #~ msgstr "Merci de saisir le nom d’utilisateur de l’administrateur du site."
8331
+
8332
+ # @ mainwp
8333
+ #~ msgid "Number of sites to Import: %1 Created sites: %2 Failed: %3"
8334
+ #~ msgstr ""
8335
+ #~ "Nombre de sites à l’importation&nbsp;: %1 Sites créés&nbsp;: %2 "
8336
+ #~ "Impossible&nbsp;: %3"
8337
+
8338
+ # @ mainwp
8339
+ #~ msgid "HTTP error - website does not exist"
8340
+ #~ msgstr "Erreur HTTP - Le site web n’existe pas"
8341
+
8342
+ # @ mainwp
8343
+ #~ msgid "No selected Categories"
8344
+ #~ msgstr "Catégories non sélectionnées"
8345
+
8346
+ # @ mainwp
8347
+ #~ msgid "Please select websites or groups to add a user."
8348
+ #~ msgstr ""
8349
+ #~ "Merci de sélectionner des sites web ou des groupes auquels ajouter un "
8350
+ #~ "utilisateur."
8351
+
8352
+ # @ mainwp
8353
+ #~ msgid "Number of Users to Import: %1 Created users: %2 Failed: %3"
8354
+ #~ msgstr ""
8355
+ #~ "Nombre d’utilisateurs à l’importation&nbsp;: %1 Utilisateurs créés&nbsp;: "
8356
+ #~ "%2 Impossible&nbsp;: %3"
8357
+
8358
+ # @ mainwp
8359
+ #~ msgid "Please enter the username."
8360
+ #~ msgstr "Merci de saisir l’identifiant."
8361
+
8362
+ # @ mainwp
8363
+ #~ msgid "Please enter the email."
8364
+ #~ msgstr "Merci de saisir le courriel."
8365
+
8366
+ # @ mainwp
8367
+ #~ msgid "Please enter the password."
8368
+ #~ msgstr "Merci d’entrer le mot de passe."
8369
+
8370
+ # @ mainwp
8371
+ #~ msgid "Please select a valid role."
8372
+ #~ msgstr "Merci de sélectionner un rôle valide."
8373
+
8374
+ # @ mainwp
8375
+ #~ msgid "Loading previous page.."
8376
+ #~ msgstr "Chargement de la page précédente…"
8377
+
8378
+ # @ mainwp
8379
+ #~ msgid "Loading next page.."
8380
+ #~ msgstr "Chargement de la prochaine page…"
8381
+
8382
+ # @ mainwp
8383
+ #~ msgid "Please select websites or groups on the right side to install files."
8384
+ #~ msgstr ""
8385
+ #~ "Merci de sélectionner des sites web ou des groupes sur la droite pour "
8386
+ #~ "installer les fichiers."
8387
+
8388
+ # @ mainwp
8389
+ #~ msgid "In progress"
8390
+ #~ msgstr "En cours d’exécution"
8391
+
8392
+ # @ mainwp
8393
+ #~ msgid "Preparing %1 installation."
8394
+ #~ msgstr "Préparation l’installation %1."
8395
+
8396
+ # @ mainwp
8397
+ #~ msgid "Installation successful"
8398
+ #~ msgstr "Installation réussie"
8399
+
8400
+ # @ mainwp
8401
+ #~ msgid "Installation failed"
8402
+ #~ msgstr "Échec de l’installation"
8403
+
8404
+ # @ mainwp
8405
+ #~ msgid "Please select websites or groups to install files."
8406
+ #~ msgstr ""
8407
+ #~ "Merci de sélectionner des sites ou des groupes pour installer les "
8408
+ #~ "fichiers."
8409
+
8410
+ # @ mainwp
8411
+ #~ msgid ""
8412
+ #~ "Creating the backupfile on the child installation, this might take a "
8413
+ #~ "while depending on the size. Please be patient."
8414
+ #~ msgstr ""
8415
+ #~ "Création du fichier de sauvegarde sur l’installation client, cela "
8416
+ #~ "pourrait prendre un certain temps en fonction de la taille. Merci d’être "
8417
+ #~ "patient."
8418
+
8419
+ # @ mainwp
8420
+ #~ msgid "Backupfile on child site created successfully."
8421
+ #~ msgstr "Sauvegarde des fichiers sur le site client créée avec succès."
8422
+
8423
+ # @ mainwp
8424
+ #~ msgid "Downloading the file."
8425
+ #~ msgstr "Téléchargement du fichier."
8426
+
8427
+ # @ mainwp
8428
+ #, fuzzy
8429
+ #~| msgid "Download from child site completed."
8430
+ #~ msgid "Download from child completed."
8431
+ #~ msgstr "Téléchargement à partir du client terminé."
8432
+
8433
+ # @ mainwp
8434
+ #~ msgid "Please wait while we are saving your note"
8435
+ #~ msgstr "Merci de patienter pendant que nous sauvegardons la note"
8436
+
8437
+ # @ mainwp
8438
+ #~ msgid "Note saved."
8439
+ #~ msgstr "Non sauvé."
8440
+
8441
+ # @ mainwp
8442
+ #~ msgid "An error occured while saving your message."
8443
+ #~ msgstr "Une erreur est survenue lors de l’enregistrement de votre message."
8444
+
8445
+ # @ mainwp
8446
+ #~ msgid "Please search and select users for update password."
8447
+ #~ msgstr ""
8448
+ #~ "Merci derechercher et sélectionner les utilisateurs pour la mise à jour "
8449
+ #~ "le mot de passe."
8450
+
8451
+ # @ mainwp
8452
+ #~ msgid "Any"
8453
+ #~ msgstr "Tout"
8454
+
8455
+ # @ mainwp
8456
+ #~ msgid "Error on your child wordpress"
8457
+ #~ msgstr "Erreur sur votre WordPress client"
8458
+
8459
+ # @ mainwp
8460
+ #~ msgid ""
8461
+ #~ "No MainWP Child plugin detected, first install and activate the plugin "
8462
+ #~ "and add your site to MainWP afterwards. If you continue experiencing this "
8463
+ #~ "issue please post as much information as possible on the error in the <a "
8464
+ #~ "href=\"https://mainwp.com/forum/\">support forum</a>."
8465
+ #~ msgstr ""
8466
+ #~ "Aucune extension MainWP client détectée, installer et activer en premier "
8467
+ #~ "l’extension et ajouter votre site client à MainWP après. Si vous "
8468
+ #~ "rencontrez un problème d’installation merci de poser une question en "
8469
+ #~ "notant le maximum d’informations sur l’erreur rencontrée dans le <a href="
8470
+ #~ "\"https://mainwp.com/forum/\">forum de support</a>."
8471
+
8472
+ # @ mainwp
8473
+ #~ msgid ""
8474
+ #~ "No MainWP Child plugin detected, first install and activate the plugin "
8475
+ #~ "and add your site to MainWP afterwards. If you continue experiencing this "
8476
+ #~ "issue please test your connection <a href=\"admin.php?"
8477
+ #~ "page=managesites&do=test&site=%1\">here</a> or post as much information "
8478
+ #~ "as possible on the error in the <a href=\"https://mainwp.com/forum/"
8479
+ #~ "\">support forum</a>."
8480
+ #~ msgstr ""
8481
+ #~ "Aucune extension MainWP client détectée, installer et activer en premier "
8482
+ #~ "l’extension et ajouter votre site client à MainWP après. i vous "
8483
+ #~ "rencontrez un problème d’installation, merci de tester votre connexion <a "
8484
+ #~ "href=\"admin.php?page=managesites&do=test&site=%1\">ici</a> ou les poster "
8485
+ #~ "le maximum d’informations sur l’erreur rencontrée dans le <a href="
8486
+ #~ "\"https://mainwp.com/forum/\">forum de support</a>."
8487
+
8488
+ # @ mainwp
8489
+ #~ msgid "Remove"
8490
+ #~ msgstr "Supprimer"
8491
+
8492
+ # @ mainwp
8493
+ #~ msgid "Please reconnect to Dropbox"
8494
+ #~ msgstr "Merci de reconnecter à Dropbox"
8495
+
8496
+ # @ mainwp
8497
+ #~ msgid "Upgrading all"
8498
+ #~ msgstr "Mise à niveau de tout"
8499
+
8500
+ # @ mainwp
8501
+ #~ msgid "Upgrading %1"
8502
+ #~ msgstr "Mise à niveau %1"
8503
+
8504
+ # @ mainwp
8505
+ #~ msgid "Updating your plan..."
8506
+ #~ msgstr "Mise à niveau de votre plan…"
8507
+
8508
+ # @ mainwp
8509
+ #~ msgid "Updated your plan"
8510
+ #~ msgstr "Mettre à niveau votre plan"
8511
+
8512
+ # @ mainwp
8513
+ #~ msgid ""
8514
+ #~ "A full backup has not been taken in the last %1 days for the following "
8515
+ #~ "sites:"
8516
+ #~ msgstr ""
8517
+ #~ "Une sauvegarde complète n’a pas été faite dans les %1 derniers jours pour "
8518
+ #~ "les sites suivants&nbsp;:"
8519
+
8520
+ # @ mainwp
8521
+ #~ msgid "Starting required backup(s)."
8522
+ #~ msgstr "Démarrer les sauvegarde(s) requise(s)."
8523
+
8524
+ # @ mainwp
8525
+ #~ msgid "Required backup(s) complete"
8526
+ #~ msgstr "Requier une(des) sauvegarde(s) complète(s)"
8527
+
8528
+ # @ mainwp
8529
+ #, fuzzy
8530
+ #~| msgid "Continue upgrade anyway"
8531
+ #~ msgid "Continue update anyway"
8532
+ #~ msgstr "Continuer la mise à jour de toute façon"
8533
+
8534
+ # @ mainwp
8535
+ #, fuzzy
8536
+ #~| msgid "Continue upgrade"
8537
+ #~ msgid "Continue update"
8538
+ #~ msgstr "Continuer la mise à jour"
8539
+
8540
+ # @ mainwp
8541
+ #, fuzzy
8542
+ #~| msgid "Checking if a backup is required for the selected upgrades..."
8543
+ #~ msgid "Checking if a backup is required for the selected updates..."
8544
+ #~ msgstr ""
8545
+ #~ "Vérification si une sauvegarde est nécessaire pour les mises à jour "
8546
+ #~ "sélectionnées..."
8547
+
8548
+ # @ mainwp
8549
+ #~ msgid "Full backup required"
8550
+ #~ msgstr "Sauvegarde complète requise"
8551
+
8552
+ # @ mainwp
8553
+ #~ msgid "Checking backup settings"
8554
+ #~ msgstr "Vérification des paramètres de sauvegarde"
8555
+
8556
+ # @ mainwp
8557
+ #~ msgid "Hide Shortcuts"
8558
+ #~ msgstr "Masquer les raccourcis"
8559
+
8560
+ # @ mainwp
8561
+ #~ msgid "Show Shortcuts"
8562
+ #~ msgstr "Afficher les raccourcis"
8563
+
8564
+ # @ mainwp
8565
+ #~ msgid "Are you sure?"
8566
+ #~ msgstr "Êtes vous sûr&nbsp;?"
8567
+
8568
+ # @ mainwp
8569
+ #~ msgid "Bulk reconnect finished."
8570
+ #~ msgstr "Reconnexion de masse terminée."
8571
+
8572
+ # @ mainwp
8573
+ #~ msgid "Note Saved"
8574
+ #~ msgstr "Note sauvegardée"
8575
+
8576
+ # @ mainwp
8577
+ #~ msgid "An error occured while saving your message"
8578
+ #~ msgstr "Une erreur est survenue lors de l’enregistrement votre message"
8579
+
8580
+ # @ mainwp
8581
+ #~ msgid "Installation Successful"
8582
+ #~ msgstr "Installation réussie"
8583
+
8584
+ # @ mainwp
8585
+ #~ msgid "Upload to %1 (%2) successful."
8586
+ #~ msgstr "Téléchargement de %1 (%2) réussi."
8587
+
8588
+ # @ mainwp
8589
+ #~ msgid "Updating Themes"
8590
+ #~ msgstr "Mise à jour des thèmes"
8591
+
8592
+ # @ mainwp
8593
+ #~ msgid "Updating Plugins"
8594
+ #~ msgstr "Mise à jour des extensions"
8595
+
8596
+ # @ mainwp
8597
+ #~ msgid "Updating WordPress"
8598
+ #~ msgstr "Mise à jour de WordPress"
8599
+
8600
+ # @ mainwp
8601
+ #~ msgid "updated"
8602
+ #~ msgstr "actualisé"
8603
+
8604
+ # @ mainwp
8605
+ #~ msgid "Updating"
8606
+ #~ msgstr "Mise à jour"
8607
+
8608
+ # @ mainwp
8609
+ #~ msgid "Bulk test connection finished"
8610
+ #~ msgstr "Test massif de connexion terminé"
8611
+
8612
+ # @ mainwp
8613
+ #~ msgid ""
8614
+ #~ "To find out more about what your HTTP status code means please %1click "
8615
+ #~ "here%2 to locate your number (%3)"
8616
+ #~ msgstr ""
8617
+ #~ "Pour en savoir plus sur ce que signifie votre code d’état HTTP merci de "
8618
+ #~ "%1cliquer ici%2 pour localiser votre numéro (%3)"
8619
+
8620
+ # @ mainwp
8621
+ #~ msgid ""
8622
+ #~ "Refreshing the page for Step 3 \"Grab API Keys\" in 5 seconds... if "
8623
+ #~ "refresh fails please %1click here%2."
8624
+ #~ msgstr ""
8625
+ #~ "Actualisation de la page pour l’Étape 3 \"Saisir les clés API\" en 5 "
8626
+ #~ "secondes… si le rafraîchissement échoue %1clicquer ici%2."
8627
+
8628
+ # @ mainwp
8629
+ #~ msgid "Please upload plugins to install."
8630
+ #~ msgstr "Merci de télécharger les extensions à installer."
8631
+
8632
+ # @ mainwp
8633
+ #~ msgid "Please upload themes to install."
8634
+ #~ msgstr "Merci de télécharger les thèmes à installer."
8635
+
8636
+ #, fuzzy
8637
+ #~ msgid ""
8638
+ #~ "Did you know with the %1 you can control the settings of this plugin "
8639
+ #~ "directly from your MainWP Dashboard?"
8640
+ #~ msgstr ""
8641
+ #~ "Saviez-vous qu’avec %1 vous pouvez contrôler les paramètres de cette "
8642
+ #~ "extension directement à partir de votre tableau de bord MainWP&nbsp;?"
8643
+
8644
+ #, fuzzy
8645
+ #~ msgid ""
8646
+ #~ "Did you know with the %1 you can control the settings of these plugins "
8647
+ #~ "directly from your MainWP Dashboard?"
8648
+ #~ msgstr ""
8649
+ #~ "Saviez-vous qu’avec %1 vous pouvez contrôler les paramètres de ces "
8650
+ #~ "extensions directement à partir de votre tableau de bord MainWP&nbsp;?"
8651
+
8652
+ #, fuzzy
8653
+ #~ msgid ""
8654
+ #~ "Did you know with the %1 you can control the settings of this theme "
8655
+ #~ "directly from your MainWP Dashboard?"
8656
+ #~ msgstr ""
8657
+ #~ "Saviez-vous qu’avec %1 vous pouvez contrôler les paramètres de ce thème "
8658
+ #~ "directement à partir de votre tableau de bord MainWP&nbsp;?"
8659
+
8660
+ #, fuzzy
8661
+ #~ msgid ""
8662
+ #~ "Did you know with the %1 you can control the settings of these themes "
8663
+ #~ "directly from your MainWP Dashboard?"
8664
+ #~ msgstr ""
8665
+ #~ "Saviez-vous qu’avec %1 vous pouvez contrôler les paramètres de ces thèmes "
8666
+ #~ "directement à partir de votre tableau de bord MainWP&nbsp;?"
8667
+
8668
+ #, fuzzy
8669
+ #~ msgid ""
8670
+ #~ "Would you like to use the Bulk Settings Manager with this plugin? Check "
8671
+ #~ "out the %1Documentation%2."
8672
+ #~ msgstr ""
8673
+ #~ "Voulez-vous utiliser le Gestionnaire groupé de paramètres avec cette "
8674
+ #~ "extension&nbsp;? Consultez la %1Documentation%2."
8675
+
8676
+ #, fuzzy
8677
+ #~ msgid ""
8678
+ #~ "Would you like to use the Bulk Settings Manager with these plugin? Check "
8679
+ #~ "out the %1Documentation%2."
8680
+ #~ msgstr ""
8681
+ #~ "Voulez-vous utiliser le Gestionnaire groupé de paramètres avec cette "
8682
+ #~ "extension&nbsp;? Consultez la %1Documentation%2."
8683
+
8684
+ #, fuzzy
8685
+ #~ msgid ""
8686
+ #~ "Would you like to use the Bulk Settings Manager with this theme? Check "
8687
+ #~ "out the %1Documentation%2."
8688
+ #~ msgstr ""
8689
+ #~ "Voulez-vous utiliser le Gestionnaire groupé de paramètres avec cette "
8690
+ #~ "extension&nbsp;? Consultez la %1Documentation%2."
8691
+
8692
+ #, fuzzy
8693
+ #~ msgid ""
8694
+ #~ "Would you like to use the Bulk Settings Manager with these themes? Check "
8695
+ #~ "out the %1Documentation%2."
8696
+ #~ msgstr ""
8697
+ #~ "Voulez-vous utiliser le Gestionnaire groupé de paramètres avec cette "
8698
+ #~ "extension&nbsp;? Consultez la %1Documentation%2."
8699
+
8700
+ # @ mainwp
8701
+ #, fuzzy
8702
+ #~| msgid "backup tasks"
8703
+ #~ msgid "Backup tasks"
8704
+ #~ msgstr "Tâches de sauvegarde"
8705
+
8706
+ # @ mainwp
8707
+ #, fuzzy
8708
+ #~| msgid "Add New Task"
8709
+ #~ msgid "Add new task"
8710
+ #~ msgstr "Ajouter une nouvelle tâche"
8711
+
8712
+ # @ mainwp
8713
+ #, fuzzy
8714
+ #~| msgid "Database Backup"
8715
+ #~ msgid "Database backup"
8716
+ #~ msgstr "Sauvegarde de la base de données"
8717
+
8718
+ # @ mainwp
8719
+ #, fuzzy
8720
+ #~| msgid "Full Backup"
8721
+ #~ msgid "Full backup"
8722
+ #~ msgstr "Sauvegarde totale"
8723
+
8724
+ # @ mainwp
8725
+ #, fuzzy
8726
+ #~| msgid "MainWP Tools"
8727
+ #~ msgid "MainWP blogroll"
8728
+ #~ msgstr "Actualité du Blog MainWP"
8729
+
8730
+ # @ mainwp
8731
+ #, fuzzy
8732
+ #~| msgid "No ignored themes"
8733
+ #~ msgid "No items"
8734
+ #~ msgstr "Aucun élément"
8735
+
8736
+ # @ mainwp
8737
+ #, fuzzy
8738
+ #~| msgid "Posts"
8739
+ #~ msgid "Posted %s"
8740
+ #~ msgstr "Publié %s"
8741
+
8742
+ #, fuzzy
8743
+ #~ msgid ""
8744
+ #~ "Would you like to receive notice of the latest posts from the MainWP blog "
8745
+ #~ "directly in this widget?"
8746
+ #~ msgstr ""
8747
+ #~ "Voulez-vous recevoir un avis des derniers messages du blog MainWP "
8748
+ #~ "directement dans ce widget&nbsp;?"
8749
+
8750
+ # @ mainwp
8751
+ #, fuzzy
8752
+ #~| msgid "Search the MainWP Blog"
8753
+ #~ msgid "Check the MainWP Blog"
8754
+ #~ msgstr "Recherche sur le Blog MAINWP"
8755
+
8756
+ # @ mainwp
8757
+ #, fuzzy
8758
+ #~| msgid "Connection test failed."
8759
+ #~ msgid "Connection status"
8760
+ #~ msgstr "Statut de connexion"
8761
+
8762
+ # @ mainwp
8763
+ #~ msgid "Visit Site"
8764
+ #~ msgstr "Visiter le site"
8765
+
8766
+ # @ mainwp
8767
+ #, fuzzy
8768
+ #~| msgid "Test Connection"
8769
+ #~ msgid "MD5 Connection"
8770
+ #~ msgstr "Test de connexion"
8771
+
8772
+ # @ mainwp
8773
+ #, fuzzy
8774
+ #~| msgid "Learn More"
8775
+ #~ msgid "Read More"
8776
+ #~ msgstr "Lire plus"
8777
+
8778
+ # @ mainwp
8779
+ #~ msgid "Sync Now"
8780
+ #~ msgstr "Synchroniser maintenant"
8781
+
8782
+ # @ mainwp
8783
+ #~ msgid "Show online sites"
8784
+ #~ msgstr "Afficher les sites en ligne"
8785
+
8786
+ # @ mainwp
8787
+ #, fuzzy
8788
+ #~| msgid "delete sites"
8789
+ #~ msgid "Hide online sites"
8790
+ #~ msgstr "Masquer les sites en ligne"
8791
+
8792
+ # @ mainwp
8793
+ #, fuzzy
8794
+ #~| msgid ""
8795
+ #~| "MainWP Extensions are specific features or tools created for the purpose "
8796
+ #~| "of expanding the basic functionality of the MainWP plugin."
8797
+ #~ msgid ""
8798
+ #~ "MainWP extensions are specific features or tools created for the purpose "
8799
+ #~ "of expanding the basic functionality of the MainWP plugin."
8800
+ #~ msgstr ""
8801
+ #~ "Les extensions MainWP sont des caractéristiques spécifiques ou des outils "
8802
+ #~ "créés dans le but d’étendre les fonctionnalités de base de l’extension "
8803
+ #~ "MainWP."
8804
+
8805
+ # @ mainwp
8806
+ #, fuzzy
8807
+ #~| msgid ""
8808
+ #~| "The core of MainWP has been designed to provide the functions most "
8809
+ #~| "needed by our users and minimize code bloat. Extensions offer custom "
8810
+ #~| "functions and features so that each user can tailor their MainWP to "
8811
+ #~| "their specific needs."
8812
+ #~ msgid ""
8813
+ #~ "The core of MainWP has been designed to provide the functions most needed "
8814
+ #~ "by our users and minimize code bloat. Extensions offer custom functions "
8815
+ #~ "and features so that each user can tailor their MainWP Dashboard to their "
8816
+ #~ "specific needs."
8817
+ #~ msgstr ""
8818
+ #~ "Le noyau de MainWP a été conçu pour fournir les fonctions les plus "
8819
+ #~ "nécessaires par nos utilisateurs et de réduire l’obsolescence du site. "
8820
+ #~ "Les extensions offrent des fonctions et des caractéristiques "
8821
+ #~ "personnalisées afin que chaque utilisateur puisse adapter MainWP à leurs "
8822
+ #~ "besoins spécifiques."
8823
+
8824
+ #, fuzzy
8825
+ #~ msgid "Add for free"
8826
+ #~ msgstr "Ajouter gratuitement"
8827
+
8828
+ # @ mainwp
8829
+ #~ msgid "Activated"
8830
+ #~ msgstr "Activé"
8831
+
8832
+ # @ mainwp
8833
+ #~ msgid "Deactivated"
8834
+ #~ msgstr "Désactivé"
8835
+
8836
+ # @ mainwp
8837
+ #, fuzzy
8838
+ #~| msgid "Get MainWP Extensions"
8839
+ #~ msgid "Explore more MainWP Extensions"
8840
+ #~ msgstr "Explorer les Extensions MainWP"
8841
+
8842
+ # @ mainwp
8843
+ #, fuzzy
8844
+ #~| msgid ""
8845
+ #~| "After pressing \"Save Settings\" below you will need to return to MainWP "
8846
+ #~| "Dashboard and press the Sync Data button to synchronize the settings."
8847
+ #~ msgid ""
8848
+ #~ "After pressing \"Save settings\" below you will need to return to MainWP "
8849
+ #~ "Dashboard and press the Sync Data button to synchronize the settings."
8850
+ #~ msgstr ""
8851
+ #~ "Après avoir appuyé sur \"Enregistrer paramètres\" ci-dessous, vous devrez "
8852
+ #~ "revenir au tableau de bord MainWP et appuyer sur le bouton de "
8853
+ #~ "synchronisation de données pour synchroniser les paramètres."
8854
+
8855
+ # @ mainwp
8856
+ #, fuzzy
8857
+ #~| msgid "Helpful Links"
8858
+ #~ msgid "Helpful links"
8859
+ #~ msgstr "Liens utiles"
8860
+
8861
+ # @ mainwp
8862
+ #, fuzzy
8863
+ #~| msgid "Manage Pages"
8864
+ #~ msgid "MainWP Facebook Page"
8865
+ #~ msgstr "Page Facebook MainWP "
8866
+
8867
+ #, fuzzy
8868
+ #~ msgid ""
8869
+ #~ "Follow us on our Facebook page and get all important updates about the "
8870
+ #~ "MainWP plugins."
8871
+ #~ msgstr ""
8872
+ #~ "Suivez-nous sur notre page Facebook et obtenez toutes les mises à jour "
8873
+ #~ "importantes sur les extensions MainWP."
8874
+
8875
+ # @ mainwp
8876
+ #, fuzzy
8877
+ #~| msgid "MainWP Tip"
8878
+ #~ msgid "MainWP Twitter"
8879
+ #~ msgstr "Twitter MainWP"
8880
+
8881
+ #, fuzzy
8882
+ #~ msgid ""
8883
+ #~ "Follow us on our Twitter page and get all important updates about the "
8884
+ #~ "MainWP plugins."
8885
+ #~ msgstr ""
8886
+ #~ "Suivez-nous sur notre page Twitter et obtenez toutes les mises à jour "
8887
+ #~ "importantes concernant les extensions MainWP."
8888
+
8889
+ # @ mainwp
8890
+ #, fuzzy
8891
+ #~| msgid "MainWP Tools"
8892
+ #~ msgid "MainWP Roadmaps"
8893
+ #~ msgstr "Évolutions MainWP"
8894
+
8895
+ # @ mainwp
8896
+ #, fuzzy
8897
+ #~| msgid "Edit Notes"
8898
+ #~ msgid "Edit notes"
8899
+ #~ msgstr "Éditer les Notes"
8900
+
8901
+ #, fuzzy
8902
+ #~ msgid "<strong>STOP BEFORE TURNING ON!</strong>"
8903
+ #~ msgstr "<strong>ARRÊTEZ VOUS AVANT DE METTRE EN ROUTE&nbsp;!</strong>"
8904
+
8905
+ # @ mainwp
8906
+ #, fuzzy
8907
+ #~| msgid ""
8908
+ #~| "<strong>STOP BEFORE TURNING ON!</strong> Hiding the Child Plugin does "
8909
+ #~| "require the plugin to make changes to your .htaccess file that in rare "
8910
+ #~| "instances or server configurations could cause problems."
8911
+ #~ msgid ""
8912
+ #~ "Hiding the child plugin does require the plugin to make changes to your ."
8913
+ #~ "htaccess file that in rare instances or server configurations could cause "
8914
+ #~ "problems."
8915
+ #~ msgstr ""
8916
+ #~ "Masquer l’extension client nécessite une extension pour apporter des "
8917
+ #~ "modifications à votre fichier .htaccess qui, dans de rares cas ou des "
8918
+ #~ "configurations de serveur, pourrait causer des problèmes."
8919
+
8920
+ # @ mainwp
8921
+ #, fuzzy
8922
+ #~| msgid "Hide MainWP Child Plugin from Search Engines"
8923
+ #~ msgid "Hide MainWP Child plugin from search engines"
8924
+ #~ msgstr "Masquer l'extension MAINWP client depuis les moteurs de recherche"
8925
+
8926
+ # @ mainwp
8927
+ #~ msgid "does not hide from users"
8928
+ #~ msgstr "n’est pas masqué depuis les utilisateurs"
8929
+
8930
+ # @ mainwp
8931
+ #~ msgid ""
8932
+ #~ "This will make anyone including Search Engines trying find your Child "
8933
+ #~ "Plugin encounter a 404 page. Hiding the Child Plugin does require the "
8934
+ #~ "plugin to make changes to your .htaccess file that in rare instances or "
8935
+ #~ "server configurations could cause problems."
8936
+ #~ msgstr ""
8937
+ #~ "Cela enverra quiconque, y compris les moteurs de recherche qui tentent de "
8938
+ #~ "trouver votre extension client, vers une page 404. Cacher l’extension "
8939
+ #~ "client exige une extension MainWP pour apporter des modifications à votre "
8940
+ #~ "fichier .htaccess dans les rares cas ou des configurations de serveurs "
8941
+ #~ "pourraient causer des problèmes."
8942
+
8943
+ # @ mainwp
8944
+ #, fuzzy
8945
+ #~| msgid "Optimize for Shared Hosting or Big Networks"
8946
+ #~ msgid "Optimize for shared hosting or big networks"
8947
+ #~ msgstr "Optimiser l'hébergement partagé ou les grands réseaux"
8948
+
8949
+ # @ mainwp
8950
+ #, fuzzy
8951
+ #~| msgid ""
8952
+ #~| "Updates will be cached for quick loading. A manual refresh from the "
8953
+ #~| "Dashboard is required to view new plugins, themes, pages or users. "
8954
+ #~| "Recommended for Networks over 50 sites."
8955
+ #~ msgid ""
8956
+ #~ "Updates will be cached for quick loading. A manual refresh from the "
8957
+ #~ "Dashboard is required to view new plugins, themes, pages or users. "
8958
+ #~ "Recommended for networks over 50 sites."
8959
+ #~ msgstr ""
8960
+ #~ "Les mises à jour seront mises en cache pour un chargement rapide. Une "
8961
+ #~ "actualisation manuelle à partir du tableau de bord est nécessaire pour "
8962
+ #~ "afficher de nouvelles extensions, thèmes, pages ou utilisateurs. "
8963
+ #~ "Recommandé pour les réseaux de plus de 50 sites."
8964
+
8965
+ # @ mainwp
8966
+ #, fuzzy
8967
+ #~| msgid "Notification Email"
8968
+ #~ msgid "Notification Emails"
8969
+ #~ msgstr "Courriels de notification"
8970
+
8971
+ # @ mainwp
8972
+ #, fuzzy
8973
+ #~| msgid "This address is used to send monitoring alerts."
8974
+ #~ msgid "Those addresses are used to send monitoring alerts."
8975
+ #~ msgstr ""
8976
+ #~ "Cette adresse est utilisée pour envoyer des alertes de surveillance."
8977
+
8978
+ # @ mainwp
8979
+ #~ msgid ""
8980
+ #~ "When not using WP-Cron you will need to set up a cron job via your "
8981
+ #~ "hosting."
8982
+ #~ msgstr ""
8983
+ #~ "Lorsque vous n’utilisez pas de Cron-WP vous aurez besoin de mettre en "
8984
+ #~ "place une tâche cron via votre hébergement."
8985
+
8986
+ # @ mainwp
8987
+ #, fuzzy
8988
+ #~| msgid "Show Wordpress Language Updates"
8989
+ #~ msgid "Show WordPress Language Updates"
8990
+ #~ msgstr "Afficher les mises à jour de langues WordPress"
8991
+
8992
+ # @ mainwp
8993
+ #, fuzzy
8994
+ #~| msgid ""
8995
+ #~| "With this option enabled, when you try to upgrade a plugin, theme or "
8996
+ #~| "WordPress core, MainWP will check if there is a full backup created for "
8997
+ #~| "the site(s) you are trying to upgrade in last 7 days. If you have a "
8998
+ #~| "fresh backup of the site(s) MainWP will proceed to the upgrade process, "
8999
+ #~| "if not it will ask you to create a full backup."
9000
+ #~ msgid ""
9001
+ #~ "With this option enabled, when you try to update a plugin, theme or "
9002
+ #~ "WordPress core, MainWP will check if there is a full backup created for "
9003
+ #~ "the site(s) you are trying to update in last 7 days. If you have a fresh "
9004
+ #~ "backup of the site(s) MainWP will proceed to the update process, if not "
9005
+ #~ "it will ask you to create a full backup."
9006
+ #~ msgstr ""
9007
+ #~ "Avec cette option activée, lorsque vous essayez de mettre à jour une "
9008
+ #~ "extension, thème ou noyau WordPress, MainWP vérifiera s’il existe une "
9009
+ #~ "sauvegarde complète créée pour le(s) site(s) que vous essayez de mettre à "
9010
+ #~ "jour depuis les 7 derniers jours. Si vous avez une nouvelle sauvegarde "
9011
+ #~ "du(des) site(s) MainWP procédera à la mise à niveau, sinon il vous sera "
9012
+ #~ "demandé de créer une sauvegarde complète."
9013
+
9014
+ # @ mainwp
9015
+ #, fuzzy
9016
+ #~| msgid "Ignore a theme update"
9017
+ #~ msgid "WP Core auto updates"
9018
+ #~ msgstr "Mise à jour auto du WP Core"
9019
+
9020
+ # @ mainwp
9021
+ #, fuzzy
9022
+ #~| msgid ""
9023
+ #~| "Choose to have MainWP install updates, or notify you by email of "
9024
+ #~| "available updates. Updates apply to WordPress Core files, Plugins and "
9025
+ #~| "Themes."
9026
+ #~ msgid ""
9027
+ #~ "Choose to have MainWP install updates, or notify you by email of "
9028
+ #~ "available updates. Updates apply to WordPress Core files."
9029
+ #~ msgstr ""
9030
+ #~ "Choisir pour obtenir les mises à jour MainWP, ou vous notifier par "
9031
+ #~ "courriel les mises à jour disponibles. Les mises à jour s’appliquent aux "
9032
+ #~ "fichiers de base de WordPress, aux extensions et aux thèmes."
9033
+
9034
+ # @ mainwp
9035
+ #~ msgid ""
9036
+ #~ "In case the plugin or theme author didn't release an update for the set "
9037
+ #~ "number of days, the plugin/theme will be marked and Possibly Abandoned."
9038
+ #~ msgstr ""
9039
+ #~ "Dans le cas où l’auteur d’une extension ou d’un thème n’a pas communiqué "
9040
+ #~ "une mise à jour depuis de nombreux jours, l’extension ou le thème sera "
9041
+ #~ "marqué et peut-être abandonné."
9042
+
9043
+ # @ mainwp
9044
+ #~ msgid ""
9045
+ #~ "0 for unlimited, CAUTION: a large amount will decrease the speed and "
9046
+ #~ "might crash the communication."
9047
+ #~ msgstr ""
9048
+ #~ "0 pour illimité, ATTENTION&nbsp;: un chiffre trop grand diminuera la "
9049
+ #~ "vitesse et peut bloquer la communication."
9050
+
9051
+ # @ mainwp
9052
+ #, fuzzy
9053
+ #~| msgid "Recent Pages"
9054
+ #~ msgid "Recent pages"
9055
+ #~ msgstr "Pages récentes"
9056
+
9057
+ #, fuzzy
9058
+ #~ msgid "No published pages"
9059
+ #~ msgstr "Pas de pages publiées"
9060
+
9061
+ # @ mainwp
9062
+ #~ msgid "View all"
9063
+ #~ msgstr "Voir tout"
9064
+
9065
+ #, fuzzy
9066
+ #~ msgid "No draft pages"
9067
+ #~ msgstr "Pas de brouillons de page"
9068
+
9069
+ # @ mainwp
9070
+ #, fuzzy
9071
+ #~| msgid "Posts per page"
9072
+ #~ msgid "No pending pages"
9073
+ #~ msgstr "Pas de pages en attente"
9074
+
9075
+ # @ mainwp
9076
+ #, fuzzy
9077
+ #~| msgid "No selected Categories"
9078
+ #~ msgid "No scheduled pages"
9079
+ #~ msgstr "Pas de pages planifiées"
9080
+
9081
+ #, fuzzy
9082
+ #~ msgid "No trash pages"
9083
+ #~ msgstr "Pas de pages dans la corbeille"
9084
+
9085
+ # @ mainwp
9086
+ #, fuzzy
9087
+ #~| msgid "Create a New Page"
9088
+ #~ msgid "Create new page"
9089
+ #~ msgstr "Créer une nouvelle page"
9090
+
9091
+ # @ mainwp
9092
+ #, fuzzy
9093
+ #~| msgid "Recent Posts"
9094
+ #~ msgid "Recent posts"
9095
+ #~ msgstr "Articles récents"
9096
+
9097
+ #, fuzzy
9098
+ #~ msgid "No published posts"
9099
+ #~ msgstr "Pas d’articles publiées"
9100
+
9101
+ #, fuzzy
9102
+ #~ msgid "No draft posts"
9103
+ #~ msgstr "Pas de brouillons d’article"
9104
+
9105
+ #, fuzzy
9106
+ #~ msgid "No pending posts"
9107
+ #~ msgstr "Pas de postes en attente"
9108
+
9109
+ # @ mainwp
9110
+ #, fuzzy
9111
+ #~| msgid "Cron Schedules"
9112
+ #~ msgid "No scheduled posts"
9113
+ #~ msgstr "Pas d’articles programmés"
9114
+
9115
+ #, fuzzy
9116
+ #~ msgid "No trash posts"
9117
+ #~ msgstr "Pas d’articles dans la corbeille"
9118
+
9119
+ # @ mainwp
9120
+ #, fuzzy
9121
+ #~| msgid "Create a New Post"
9122
+ #~ msgid "Create new post"
9123
+ #~ msgstr "Créer un nouvel article"
9124
+
9125
+ # @ mainwp
9126
+ #, fuzzy
9127
+ #~| msgid "Post has been published"
9128
+ #~ msgid "Post has been published!"
9129
+ #~ msgstr "L’article a été publié&nbsp;!"
9130
+
9131
+ # @ mainwp
9132
+ #, fuzzy
9133
+ #~| msgid "Post has been approved"
9134
+ #~ msgid "Post has been approved!"
9135
+ #~ msgstr "L'article a bien été approuvé&nbsp;!"
9136
+
9137
+ # @ mainwp
9138
+ #, fuzzy
9139
+ #~| msgid "Post has been unpublished"
9140
+ #~ msgid "Post has been unpublished!"
9141
+ #~ msgstr "L'article a bien été dépublié&nbsp;!"
9142
+
9143
+ # @ mainwp
9144
+ #, fuzzy
9145
+ #~| msgid "Post has been moved to trash"
9146
+ #~ msgid "Post has been moved to trash!"
9147
+ #~ msgstr "L'article a été mis à la corbeille&nbsp;!"
9148
+
9149
+ # @ mainwp
9150
+ #, fuzzy
9151
+ #~| msgid "Post has been permanently deleted"
9152
+ #~ msgid "Post has been permanently deleted!"
9153
+ #~ msgstr "L'article a été supprimé définitivement&nbsp;!"
9154
+
9155
+ # @ mainwp
9156
+ #, fuzzy
9157
+ #~| msgid "Post has been restored"
9158
+ #~ msgid "Post has been restored!"
9159
+ #~ msgstr "L'article a bien été restauré&nbsp;!"
9160
+
9161
+ # @ mainwp
9162
+ #, fuzzy
9163
+ #~| msgid ""
9164
+ #~| "<h3>No Plugin Information Found.</h3> This may be a premium plugin and "
9165
+ #~| "no other details are available from WordPress."
9166
+ #~ msgid ""
9167
+ #~ "<h3>No plugin information found.</h3> This may be a premium plugin and no "
9168
+ #~ "other details are available from WordPress."
9169
+ #~ msgstr ""
9170
+ #~ "<h3>Aucune information d’extension trouvée.</ h3> Cela peut être une "
9171
+ #~ "extension Premium qui ne donne pas d’autres détails à partir de WordPress."
9172
+
9173
+ # @ mainwp
9174
+ #, fuzzy
9175
+ #~| msgid "Please visit the Plugin website for more information."
9176
+ #~ msgid "Please visit the plugin website for more information."
9177
+ #~ msgstr "Merci de visiter la page de l’extension pour plus d’information."
9178
+
9179
+ # @ mainwp
9180
+ #, fuzzy
9181
+ #~| msgid "Please visit the Plugin website for more information: "
9182
+ #~ msgid "Please visit the plugin website for more information: "
9183
+ #~ msgstr ""
9184
+ #~ "Merci de visiter le site de l’extension pour plus d’information&nbsp;: "
9185
+
9186
+ # @ mainwp
9187
+ #, fuzzy
9188
+ #~| msgid "Overview"
9189
+ #~ msgid "Update Overview"
9190
+ #~ msgstr "Vue d'ensemble"
9191
+
9192
+ # @ mainwp
9193
+ #, fuzzy
9194
+ #~| msgid "Upgrade successful"
9195
+ #~ msgid "Update successful!"
9196
+ #~ msgstr "Mise à jour réussie&nbsp;!"
9197
+
9198
+ # @ mainwp
9199
+ #, fuzzy
9200
+ #~| msgid "No update found for your set locale"
9201
+ #~ msgid "No update found for the set locale"
9202
+ #~ msgstr "Aucune mise à jour trouvée pour votre ensemble local"
9203
+
9204
+ # @ mainwp
9205
+ #~ msgid "No response from the WordPress update server"
9206
+ #~ msgstr "Pas de réponse du serveur de mise à jour WordPress"
9207
+
9208
+ # @ mainwp
9209
+ #~ msgid "Invalid response from site"
9210
+ #~ msgstr "Réponse invalide donnée par le site"
9211
+
9212
+ # @ mainwp
9213
+ #, fuzzy
9214
+ #~| msgid "View Upgrades per"
9215
+ #~ msgid "View updates per: "
9216
+ #~ msgstr "Visualiser par&nbsp;: "
9217
+
9218
+ #, fuzzy
9219
+ #~ msgid "Others"
9220
+ #~ msgstr "Autres"
9221
+
9222
+ # @ mainwp
9223
+ #, fuzzy
9224
+ #~| msgid "Available Update"
9225
+ #~| msgid_plural "Available Updates"
9226
+ #~ msgid "Click to see available updates"
9227
+ #~ msgstr "Cliquez pour voir les mises à jour disponibles"
9228
+
9229
+ # @ mainwp
9230
+ #, fuzzy
9231
+ #~| msgid "individual dashboard"
9232
+ #~ msgid "Visit this dashboard"
9233
+ #~ msgstr "Visiter ce tableau de bord"
9234
+
9235
+ #, fuzzy
9236
+ #~ msgid "Click here to see all ignored updates"
9237
+ #~ msgstr "Cliquez ici pour voir toutes les mises à jour ignorées"
9238
+
9239
+ #, fuzzy
9240
+ #~ msgid "Visit this group"
9241
+ #~ msgstr "Visiter ce groupe"
9242
+
9243
+ # @ mainwp
9244
+ #~ msgid "available"
9245
+ #~ msgstr "disponible"
9246
+
9247
+ # @ mainwp
9248
+ #~ msgid "Update everything"
9249
+ #~ msgstr "Tout mettre à jour"
9250
+
9251
+ # @ mainwp
9252
+ #~ msgid "WordPress update"
9253
+ #~ msgid_plural "WordPress updates"
9254
+ #~ msgstr[0] "Mise à jour WordPress"
9255
+ #~ msgstr[1] "Mises à jour WordPress"
9256
+
9257
+ # @ mainwp
9258
+ #, fuzzy
9259
+ #~| msgid "Update Now"
9260
+ #~ msgid "Update All"
9261
+ #~ msgid_plural "Update All"
9262
+ #~ msgstr[0] "Mettre à jour maintenant"
9263
+ #~ msgstr[1] "Mettre à jour maintenant"
9264
+
9265
+ # @ mainwp
9266
+ #~ msgid "Site not connected"
9267
+ #~ msgstr "Site web non connecté"
9268
+
9269
+ # @ mainwp
9270
+ #, fuzzy
9271
+ #~| msgid "Hooray, No Updates Available!"
9272
+ #~ msgid "No updates available!"
9273
+ #~ msgstr "Aucune mise à jour disponible&nbsp;!"
9274
+
9275
+ # @ mainwp
9276
+ #, fuzzy
9277
+ #~| msgid "Plugin upgrade"
9278
+ #~ msgid "Plugin update"
9279
+ #~ msgstr "Mise à jour d'extension"
9280
+
9281
+ # @ mainwp
9282
+ #~ msgid "Ignore"
9283
+ #~ msgstr "Ignorer"
9284
+
9285
+ # @ mainwp
9286
+ #~ msgid "Ignore Globally"
9287
+ #~ msgstr "Tout ignorer"
9288
+
9289
+ # @ mainwp
9290
+ #, fuzzy
9291
+ #~| msgid "Theme upgrade"
9292
+ #~ msgid " Theme update"
9293
+ #~ msgstr " Mise à jour du thème"
9294
+
9295
+ # @ mainwp
9296
+ #, fuzzy
9297
+ #~| msgid "Auto Updates"
9298
+ #~ msgid "No Updates"
9299
+ #~ msgstr "Pas de mises à jours"
9300
+
9301
+ # @ mainwp
9302
+ #, fuzzy
9303
+ #~| msgid "Translation upgrade"
9304
+ #~| msgid_plural "Translation upgrades"
9305
+ #~ msgid "Translation update"
9306
+ #~ msgid_plural "Translation updates"
9307
+ #~ msgstr[0] "Mise à jour traduction"
9308
+ #~ msgstr[1] "Mises à jour traductions"
9309
+
9310
+ # @ mainwp
9311
+ #~ msgid ""
9312
+ #~ "If you have non-English WordPress installations on your child sites, "
9313
+ #~ "available Translation updates can be managed from this line. To disable "
9314
+ #~ "the Translation Updates, go to the Settings page and disable the option "
9315
+ #~ "in the Updates Option box."
9316
+ #~ msgstr ""
9317
+ #~ "Si vous avez des installations WordPress non-anglaises sur vos sites "
9318
+ #~ "clients, des mises à jour de traduction disponibles peuvent être gérées à "
9319
+ #~ "partir de cette ligne. Pour désactiver les mises à jour de traduction, "
9320
+ #~ "aller à la page Paramètres et désactiver l’option dans la boîte de "
9321
+ #~ "l’option Mises à jour."
9322
+
9323
+ #, fuzzy
9324
+ #~ msgid "Recheck"
9325
+ #~ msgstr "Revérifier"
9326
+
9327
+ # @ mainwp
9328
+ #, fuzzy
9329
+ #~| msgid "Possibly Abandoned"
9330
+ #~ msgid "possibly abandoned"
9331
+ #~ msgstr "Peut être abandonné"
9332
+
9333
+ # @ mainwp
9334
+ #~ msgid ""
9335
+ #~ "This feature checks the last updated status of plugins and alerts you if "
9336
+ #~ "not updated in a specific amount of time. This gives you insight on if a "
9337
+ #~ "plugin may have been abandoned by the author."
9338
+ #~ msgstr ""
9339
+ #~ "Cette fonction vérifie la dernière mise à jour des extensions et vous "
9340
+ #~ "alerte si elles ne sont encore actualisées dans un laps de temps précis. "
9341
+ #~ "Cela vous donne un aperçu sur si une extension peut avoir été abandonnée "
9342
+ #~ "par l’auteur."
9343
+
9344
+ # @ mainwp
9345
+ #, fuzzy
9346
+ #~| msgid "Last Updated %s Days Ago"
9347
+ #~ msgid "Updated %s Days Ago"
9348
+ #~ msgstr "Mis à jour il y a %s jours"
9349
+
9350
+ # @ mainwp
9351
+ #, fuzzy
9352
+ #~| msgid "No ignored abandoned plugins"
9353
+ #~ msgid "No abandoned plugins!"
9354
+ #~ msgstr "Pas d’extensions abandonnées&nbsp;!"
9355
+
9356
+ # @ mainwp
9357
+ #~ msgid "Open"
9358
+ #~ msgstr "Ouvrir"
9359
+
9360
+ # @ mainwp
9361
+ #~ msgid ""
9362
+ #~ "This feature checks the last updated status of themes and alerts you if "
9363
+ #~ "not updated in a specific amount of time. This gives you insight on if a "
9364
+ #~ "theme may have been abandoned by the author."
9365
+ #~ msgstr ""
9366
+ #~ "Cette fonction vérifie la dernière mise à jour des thèmes et vous alerte "
9367
+ #~ "si ils ne sont pas encore actualisé dans un laps de temps précis. Cela "
9368
+ #~ "vous donne un aperçu sur si un thème peut avoir été abandonné par "
9369
+ #~ "l’auteur."
9370
+
9371
+ # @ mainwp
9372
+ #, fuzzy
9373
+ #~| msgid "No ignored abandoned themes"
9374
+ #~ msgid "No abandoned themes!"
9375
+ #~ msgstr "Pas de thèmes abandonnés&nbsp;!"
9376
+
9377
+ # @ mainwp
9378
+ #~ msgid "Up to date"
9379
+ #~ msgstr "À jour"
9380
+
9381
+ # @ mainwp
9382
+ #~ msgid "Backup All"
9383
+ #~ msgstr "Sauvegarder tous"
9384
+
9385
+ # @ mainwp
9386
+ #, fuzzy
9387
+ #~| msgid "No sites found."
9388
+ #~ msgid "No websites found"
9389
+ #~ msgstr "Aucun site trouvé."
9390
+
9391
+ # @ mainwp
9392
+ #, fuzzy
9393
+ #~| msgid "Child Site"
9394
+ #~ msgid "Child site"
9395
+ #~ msgstr "Site client"
9396
+
9397
+ # @ mainwp
9398
+ #, fuzzy
9399
+ #~| msgid "Alexa Rank"
9400
+ #~ msgid "Alexa rank"
9401
+ #~ msgstr "Rang ALEXA"
9402
+
9403
+ # @ mainwp
9404
+ #~ msgid "Google PR"
9405
+ #~ msgstr "PageRank Google"
9406
+
9407
+ # @ mainwp
9408
+ #~ msgid "Indexed"
9409
+ #~ msgstr "Indexé"
9410
+
9411
+ # @ mainwp
9412
+ #~ msgid "Shortcuts"
9413
+ #~ msgstr "Raccourcis"
9414
+
9415
+ # @ mainwp
9416
+ #~ msgid "Groups:"
9417
+ #~ msgstr "Groupes&nbsp;:"
9418
+
9419
+ # @ mainwp
9420
+ #~ msgid "Notes:"
9421
+ #~ msgstr "Notes&nbsp;:"
9422
+
9423
+ # @ mainwp
9424
+ #, fuzzy
9425
+ #~| msgid "Open Notes"
9426
+ #~ msgid "Open notes"
9427
+ #~ msgstr "Ouvrir les Notes"
9428
+
9429
+ # @ mainwp
9430
+ #~ msgid "Go to:"
9431
+ #~ msgstr "Aller à&nbsp;:"
9432
+
9433
+ # @ mainwp
9434
+ #~ msgid "Front Page"
9435
+ #~ msgstr "Page du site"
9436
+
9437
+ # @ mainwp
9438
+ #, fuzzy
9439
+ #~| msgid "Child Site:"
9440
+ #~ msgid "Child site:"
9441
+ #~ msgstr "Site client&nbsp;:"
9442
+
9443
+ # @ mainwp
9444
+ #~ msgid "Site info"
9445
+ #~ msgstr "Info site"
9446
+
9447
+ # @ mainwp
9448
+ #, fuzzy
9449
+ #~| msgid "MainWP Dashboard Version"
9450
+ #~ msgid "MainWP Child Version"
9451
+ #~ msgstr "Version du tableau de bord MAINWP"
9452
+
9453
+ #, fuzzy
9454
+ #~ msgid "PHP Memory Limit"
9455
+ #~ msgstr ""
9456
+ #~ "Merci d’augmenter votre limite de mémoire PHP à 128M. Vous pourrez "
9457
+ #~ "revenir à la valeur par défaut via les Options de Divi Thème dans le futur"
9458
+
9459
+ # @ mainwp
9460
+ #~ msgid "Awesome"
9461
+ #~ msgstr "Génial"
9462
+
9463
+ # @ mainwp
9464
+ #~ msgid "Fabulous"
9465
+ #~ msgstr "Fabuleux"
9466
+
9467
+ # @ mainwp
9468
+ #~ msgid "Impressive"
9469
+ #~ msgstr "Impressionnant"
9470
+
9471
+ # @ mainwp
9472
+ #~ msgid "Incredible"
9473
+ #~ msgstr "Incroyable"
9474
+
9475
+ # @ mainwp
9476
+ #~ msgid "Super"
9477
+ #~ msgstr "Génial"
9478
+
9479
+ # @ mainwp
9480
+ #~ msgid "Wonderful"
9481
+ #~ msgstr "Formidable"
9482
+
9483
+ # @ mainwp
9484
+ #~ msgid "Wow"
9485
+ #~ msgstr "Ouch"
9486
+
9487
+ # @ mainwp
9488
+ #~ msgid "you just updated <strong>%d</strong> site"
9489
+ #~ msgid_plural "you just updated <strong>%d</strong> sites"
9490
+ #~ msgstr[0] "vous venez de mettre à jour <strong>%d</ strong> site"
9491
+ #~ msgstr[1] "vous venez de mettre à jour <strong>%d</ strong> sites"
9492
+
9493
+ # @ mainwp
9494
+ #~ msgid "you just updated <strong>%d</strong> WordPress site"
9495
+ #~ msgid_plural "you just updated <strong>%d</strong> WordPress sites"
9496
+ #~ msgstr[0] "vous venez de mettre à jour <strong>%d</strong> site WordPress"
9497
+ #~ msgstr[1] "vous venez de mettre à jour <strong>%d</strong> sites WordPress"
9498
+
9499
+ # @ mainwp
9500
+ #~ msgid "you just updated <strong>%d</strong> plugin"
9501
+ #~ msgid_plural "you just updated <strong>%d</strong> plugins"
9502
+ #~ msgstr[0] "vous venez de mettre à jour <strong>%d</strong> extension"
9503
+ #~ msgstr[1] "vous venez de mettre à jour <strong>%d</strong> extensions"
9504
+
9505
+ # @ mainwp
9506
+ #~ msgid "on <strong>%d</strong> site"
9507
+ #~ msgid_plural "on <strong>%d</strong> sites"
9508
+ #~ msgstr[0] "sur <strong>%d</strong> site"
9509
+ #~ msgstr[1] "sur <strong>%d</strong> sites"
9510
+
9511
+ # @ mainwp
9512
+ #~ msgid "you just updated <strong>%d</strong> theme"
9513
+ #~ msgid_plural "you just updated <strong>%d</strong> themes"
9514
+ #~ msgstr[0] "vous venez de mettre à jour <strong>%d</strong> thème"
9515
+ #~ msgstr[1] "vous venez de mettre à jour <strong>%d</strong> thèmes"
9516
+
9517
+ # @ mainwp
9518
+ #~ msgid "you just published a new post on <strong>%d</strong> site"
9519
+ #~ msgid_plural "you just published a new post on <strong>%d</strong> sites"
9520
+ #~ msgstr[0] ""
9521
+ #~ "vous venez de publier un nouvel article sur <strong>%d</strong> site"
9522
+ #~ msgstr[1] ""
9523
+ #~ "vous venez de publier un nouvel article sur <strong>%d</strong> sites"
9524
+
9525
+ # @ mainwp
9526
+ #~ msgid "you just published a new page on <strong>%d</strong> site"
9527
+ #~ msgid_plural "you just published a new page on <strong>%d</strong> sites"
9528
+ #~ msgstr[0] ""
9529
+ #~ "vous venez de publier une nouvelle page sur <strong>%d</strong> site"
9530
+ #~ msgstr[1] ""
9531
+ #~ "vous venez de publier une nouvelle page sur <strong>%d</strong> sites"
9532
+
9533
+ # @ mainwp
9534
+ #~ msgid "you just installed a new plugin on <strong>%d</strong> site"
9535
+ #~ msgid_plural "you just installed a new plugin on <strong>%d</strong> sites"
9536
+ #~ msgstr[0] ""
9537
+ #~ "vous venez d’installer une nouvelle extension sur <strong>%d</strong> site"
9538
+ #~ msgstr[1] ""
9539
+ #~ "vous venez d’installer une nouvelle extension sur <strong>%d</strong> "
9540
+ #~ "sites"
9541
+
9542
+ # @ mainwp
9543
+ #~ msgid "you just installed a new theme on <strong>%d</strong> site"
9544
+ #~ msgid_plural "you just installed a new theme on <strong>%d</strong> sites"
9545
+ #~ msgstr[0] ""
9546
+ #~ "vous venez d’installer un nouveau thème sur <strong>%d</strong> site"
9547
+ #~ msgstr[1] ""
9548
+ #~ "vous venez d’installer un nouveau thème sur <strong>%d</strong> sites"
9549
+
9550
+ # @ mainwp
9551
+ #~ msgid "you just created a new user on <strong>%d</strong> site"
9552
+ #~ msgid_plural "you just created a new user on <strong>%d</strong> site"
9553
+ #~ msgstr[0] ""
9554
+ #~ "vous venez de créer un nouvel utilisateur sur <strong>%d</strong> site"
9555
+ #~ msgstr[1] ""
9556
+ #~ "vous venez de créer un nouvel utilisateur sur <strong>%d</strong> sites"
9557
+
9558
+ # @ mainwp
9559
+ #~ msgid "<strong>%d</strong> total update"
9560
+ #~ msgid_plural "<strong>%d</strong> total updates"
9561
+ #~ msgstr[0] "<strong>%d</strong> mise au jour au total"
9562
+ #~ msgstr[1] "<strong>%d</strong> mises au jour au total"
9563
+
9564
+ # @ mainwp
9565
+ #~ msgid "in <strong>%d</strong> second"
9566
+ #~ msgid_plural "in <strong>%d</strong> seconds"
9567
+ #~ msgstr[0] "en <strong>%d</strong> seconde"
9568
+ #~ msgstr[1] "en <strong>%d</strong> secondes"
9569
+
9570
+ # @ mainwp
9571
+ #~ msgid "Brag on Twitter"
9572
+ #~ msgstr "Partager sur Twitter"
9573
+
9574
+ # @ mainwp
9575
+ #~ msgid "Thanks to @MyMainWP I just quickly updated %d #WordPress site"
9576
+ #~ msgid_plural ""
9577
+ #~ "Thanks to @MyMainWP I just quickly updated %d #WordPress sites"
9578
+ #~ msgstr[0] ""
9579
+ #~ "Merci à @MyMainWP Je viens de mettre à jour rapidement %d site #WordPress"
9580
+ #~ msgstr[1] ""
9581
+ #~ "Merci à @MyMainWP Je viens de mettre à jour rapidement %d sites #WordPress"
9582
+
9583
+ # @ mainwp
9584
+ #~ msgid "Thanks to @MyMainWP I just quickly updated %d plugin"
9585
+ #~ msgid_plural "Thanks to @MyMainWP I just quickly updated %d plugins"
9586
+ #~ msgstr[0] ""
9587
+ #~ "Merci à @MyMainWP Je viens de mettre à jour rapidement %d extension"
9588
+ #~ msgstr[1] ""
9589
+ #~ "Merci à @MyMainWP Je viens de mettre à jour rapidement %d extensions"
9590
+
9591
+ # @ mainwp
9592
+ #~ msgid "on %d #WordPress site"
9593
+ #~ msgid_plural "on %d #WordPress sites"
9594
+ #~ msgstr[0] "sur %d site #WordPress"
9595
+ #~ msgstr[1] "sur %d sites #WordPress"
9596
+
9597
+ # @ mainwp
9598
+ #~ msgid "Thanks to @MyMainWP I just quickly updated %d theme"
9599
+ #~ msgid_plural "Thanks to @MyMainWP I just quickly updated %d themes"
9600
+ #~ msgstr[0] "Merci à @MyMainWP Je viens de mettre à jour rapidement %d thème"
9601
+ #~ msgstr[1] "Merci à @MyMainWP Je viens de mettre à jour rapidement %d thèmes"
9602
+
9603
+ # @ mainwp
9604
+ #~ msgid ""
9605
+ #~ "Thanks to @MyMainWP I just quickly published a new post on %d #WordPress "
9606
+ #~ "site"
9607
+ #~ msgid_plural ""
9608
+ #~ "Thanks to @MyMainWP I just quickly published a new post on %d #WordPress "
9609
+ #~ "sites"
9610
+ #~ msgstr[0] ""
9611
+ #~ "Merci à @MyMainWP Je viens de publier rapidement un nouvel article sur %d "
9612
+ #~ "site #WordPress"
9613
+ #~ msgstr[1] ""
9614
+ #~ "Merci à @MyMainWP Je viens de publier rapidement un nouvel article sur %d "
9615
+ #~ "sites #WordPress"
9616
+
9617
+ # @ mainwp
9618
+ #~ msgid ""
9619
+ #~ "Thanks to @MyMainWP I just quickly published a new page on %d #WordPress "
9620
+ #~ "site"
9621
+ #~ msgid_plural ""
9622
+ #~ "Thanks to @MyMainWP I just quickly published a new page on %d #WordPress "
9623
+ #~ "sites"
9624
+ #~ msgstr[0] ""
9625
+ #~ "Merci à @MyMainWP Je viens de publier rapidement une nouvelle page sur %d "
9626
+ #~ "site #WordPress"
9627
+ #~ msgstr[1] ""
9628
+ #~ "Merci à @MyMainWP Je viens de publier rapidement une nouvelle page sur %d "
9629
+ #~ "sites #WordPress"
9630
+
9631
+ # @ mainwp
9632
+ #~ msgid ""
9633
+ #~ "Thanks to @MyMainWP I just quickly installed a new plugin on %d "
9634
+ #~ "#WordPress site"
9635
+ #~ msgid_plural ""
9636
+ #~ "Thanks to @MyMainWP I just quickly installed a new plugin on %d "
9637
+ #~ "#WordPress sites"
9638
+ #~ msgstr[0] ""
9639
+ #~ "Merci à @MyMainWP Je viens d’ajouter une nouvelle extension sur %d site "
9640
+ #~ "#WordPress"
9641
+ #~ msgstr[1] ""
9642
+ #~ "Merci à @MyMainWP Je viens d’ajouter une nouvelle extension sur %d sites "
9643
+ #~ "#WordPress"
9644
+
9645
+ # @ mainwp
9646
+ #~ msgid ""
9647
+ #~ "Thanks to @MyMainWP I just quickly installed a new theme on %d #WordPress "
9648
+ #~ "site"
9649
+ #~ msgid_plural ""
9650
+ #~ "Thanks to @MyMainWP I just quickly installed a new theme on %d #WordPress "
9651
+ #~ "sites"
9652
+ #~ msgstr[0] ""
9653
+ #~ "Merci à @MyMainWP Je viens d’ajouter un nouveau thème sur %d site "
9654
+ #~ "#WordPress"
9655
+ #~ msgstr[1] ""
9656
+ #~ "Merci à @MyMainWP Je viens d’ajouter un nouveau thème sur %d sites "
9657
+ #~ "#WordPress"
9658
+
9659
+ # @ mainwp
9660
+ #~ msgid ""
9661
+ #~ "Thanks to @MyMainWP I just quickly created a new user on %d #WordPress "
9662
+ #~ "site"
9663
+ #~ msgid_plural ""
9664
+ #~ "Thanks to @MyMainWP I just quickly created a new user on %d #WordPress "
9665
+ #~ "sites"
9666
+ #~ msgstr[0] ""
9667
+ #~ "Merci à @MyMainWP Je viens de créer un nouvel utilisateur sur %d site "
9668
+ #~ "#WordPress"
9669
+ #~ msgstr[1] ""
9670
+ #~ "Merci à @MyMainWP Je viens de créer un nouvel utilisateur sur %d sites "
9671
+ #~ "#WordPress"
9672
+
9673
+ # @ mainwp
9674
+ #~ msgid "%d total update"
9675
+ #~ msgid_plural "%d total updates"
9676
+ #~ msgstr[0] "%d mise à jour totale"
9677
+ #~ msgstr[1] "%d mises à jour totales"
9678
+
9679
+ # @ mainwp
9680
+ #~ msgid "in %d second"
9681
+ #~ msgid_plural "in %d seconds"
9682
+ #~ msgstr[0] "en %d seconde"
9683
+ #~ msgstr[1] "en %d secondes"
9684
+
9685
+ # @ mainwp
9686
+ #~ msgid "Last Updated %s Days Ago"
9687
+ #~ msgstr "Dernière mise à jour il y a %s jours"
9688
+
9689
+ # @ mainwp
9690
+ #, fuzzy
9691
+ #~| msgid "Plugin has been activated"
9692
+ #~ msgid "Plugin has been activated!"
9693
+ #~ msgstr "L'extension a été activée&nbsp;!"
9694
+
9695
+ # @ mainwp
9696
+ #, fuzzy
9697
+ #~| msgid "Plugin has been deactivated"
9698
+ #~ msgid "Plugin has been deactivated!"
9699
+ #~ msgstr "L'extension a été désactivée&nbsp;!"
9700
+
9701
+ # @ mainwp
9702
+ #, fuzzy
9703
+ #~| msgid "Plugin has been permanently deleted"
9704
+ #~ msgid "Plugin has been permanently deleted!"
9705
+ #~ msgstr "L'extension a été complètement supprimée&nbsp;!"
9706
+
9707
+ #, fuzzy
9708
+ #~ msgid "Change the theme by activating an inactive theme."
9709
+ #~ msgstr "Changer le thème par activation ou désactivation de thème."
9710
+
9711
+ # @ mainwp
9712
+ #~ msgid "Theme has been activated!"
9713
+ #~ msgstr "Le thème a été activé !"
9714
+
9715
+ # @ mainwp
9716
+ #, fuzzy
9717
+ #~| msgid "Theme has been permanently deleted"
9718
+ #~ msgid "Theme has been permanently deleted!"
9719
+ #~ msgstr "Le thème a été définitivement supprimé&nbsp;!"
9720
+
9721
+ # @ mainwp
9722
+ #, fuzzy
9723
+ #~| msgid "Extension activated. "
9724
+ #~ msgid "Extension already activated!"
9725
+ #~ msgstr "Extension déjà activée&nbsp;!"
9726
+
9727
+ # @ mainwp
9728
+ #, fuzzy
9729
+ #~| msgid "Extension activated. "
9730
+ #~ msgid "Extension activated successfully!"
9731
+ #~ msgstr "Extension activée avec succès&nbsp;!"
9732
+
9733
+ # @ mainwp
9734
+ #, fuzzy
9735
+ #~| msgid "Theme has been activated"
9736
+ #~ msgid "Extension has been deactivated!"
9737
+ #~ msgstr "L'extension a été désactivée&nbsp;!"
9738
+
9739
+ # @ mainwp
9740
+ #, fuzzy
9741
+ #~| msgid "Theme has been activated"
9742
+ #~ msgid "Extension has been activated successfully!"
9743
+ #~ msgstr "L'extension a été activée avec succès&nbsp;!"
9744
+
9745
+ # @ mainwp
9746
+ #~ msgid "Installation completed!"
9747
+ #~ msgstr "Installation complète&nbsp;!"
9748
+
9749
+ # @ mainwp
9750
+ #, fuzzy
9751
+ #~| msgid "Active Plugins"
9752
+ #~ msgid "Activating plugins..."
9753
+ #~ msgstr "Activation des extensions..."
9754
+
9755
+ # @ mainwp
9756
+ #~ msgid "Installing..."
9757
+ #~ msgstr "Installation..."
9758
+
9759
+ # @ mainwp
9760
+ #~ msgid "Updating plugins..."
9761
+ #~ msgstr "Mise à jour des extensions…"
9762
+
9763
+ # @ mainwp
9764
+ #~ msgid "Updating themes..."
9765
+ #~ msgstr "Mise à jour des thèmes..."
9766
+
9767
+ # @ mainwp
9768
+ #~ msgid "Updating translations..."
9769
+ #~ msgstr "Mise à jour des traductions..."
9770
+
9771
+ # @ mainwp
9772
+ #~ msgid "Checking backup settings..."
9773
+ #~ msgstr "Vérification des paramètres de sauvegarde…"
9774
+
9775
+ # @ mainwp
9776
+ #, fuzzy
9777
+ #~| msgid "Ignored Updates"
9778
+ #~ msgid "Proceed with Updates"
9779
+ #~ msgstr "Mises à jour ignorées"
9780
+
9781
+ # @ mainwp
9782
+ #, fuzzy
9783
+ #~| msgid ""
9784
+ #~| "A full backup has not been taken in the last %1 days for the following "
9785
+ #~| "sites:"
9786
+ #~ msgid ""
9787
+ #~ "A full backup has not been taken in the last days for the following sites:"
9788
+ #~ msgstr ""
9789
+ #~ "Une sauvegarde complète n'a pas été faite dans les 7 derniers jours pour "
9790
+ #~ "les sites suivants&nbsp;:"
9791
+
9792
+ # @ mainwp
9793
+ #, fuzzy
9794
+ #~| msgid "Full backup required"
9795
+ #~ msgid "Full backup required!"
9796
+ #~ msgstr "Sauvegarde complète requise&nbsp;!"
9797
+
9798
+ # @ mainwp
9799
+ #, fuzzy
9800
+ #~| msgid "Starting required backup(s)."
9801
+ #~ msgid "Starting required backup(s)..."
9802
+ #~ msgstr "Démarrage des sauvegarde(s) requise(s)…"
9803
+
9804
+ # @ mainwp
9805
+ #, fuzzy
9806
+ #~| msgid "Required backup(s) complete"
9807
+ #~ msgid "Required backup(s) completed"
9808
+ #~ msgstr "Sauvegardes requises complétées"
9809
+
9810
+ # @ mainwp
9811
+ #, fuzzy
9812
+ #~| msgid "Creating backupfile."
9813
+ #~ msgid "Creating backup file..."
9814
+ #~ msgstr "Création d'un fichier de sauvegarde…"
9815
+
9816
+ # @ mainwp
9817
+ #~ msgid "Backup file created successfully!"
9818
+ #~ msgstr "Création du fichier de sauvegarde avec succès&nbsp;!"
9819
+
9820
+ # @ mainwp
9821
+ #, fuzzy
9822
+ #~| msgid "Backup Details"
9823
+ #~ msgid "Backup failed"
9824
+ #~ msgstr "Échec de la sauvegarde"
9825
+
9826
+ # @ mainwp
9827
+ #, fuzzy
9828
+ #~| msgid "Download from child site completed."
9829
+ #~ msgid "Download from the child site completed."
9830
+ #~ msgstr "Téléchargement à partir du site client terminé."
9831
+
9832
+ # @ mainwp
9833
+ #, fuzzy
9834
+ #~| msgid "Backup complete."
9835
+ #~ msgid "Backup completed."
9836
+ #~ msgstr "Sauvegarde terminée."
9837
+
9838
+ # @ mainwp
9839
+ #~ msgid "Updating..."
9840
+ #~ msgstr "Mise à jour..."
9841
+
9842
+ # @ mainwp
9843
+ #, fuzzy
9844
+ #~| msgid "Non-WordPress Folders"
9845
+ #~ msgid "WordPress Core files"
9846
+ #~ msgstr ""
9847
+ #~ "Le widget Vue d'ensemble vous fournit un instantané rapide de vos sites "
9848
+ #~ "clients. Ici vous pouvez voir toutes les mises à jour disponibles et "
9849
+ #~ "mettre à jour les extensions, les thèmes et les fichiers de base de "
9850
+ #~ "WordPress."
9851
+
9852
+ # @ mainwp
9853
+ #~ msgid "Updating all..."
9854
+ #~ msgstr "Mise à jour générale…"
9855
+
9856
+ # @ mainwp
9857
+ #~ msgid "Updating %1"
9858
+ #~ msgstr "Mise à jour de %1"
9859
+
9860
+ # @ mainwp
9861
+ #, fuzzy
9862
+ #~| msgid "Upgrade failed"
9863
+ #~ msgid "Update Failed!"
9864
+ #~ msgstr "Mise à jour avortée&nbsp;!"
9865
+
9866
+ # @ mainwp
9867
+ #, fuzzy
9868
+ #~| msgid "Upgrade failed"
9869
+ #~ msgid "Update failed!"
9870
+ #~ msgstr "Mise à jour avortée&nbsp;!"
9871
+
9872
+ # @ mainwp
9873
+ #, fuzzy
9874
+ #~| msgid "Backup Details"
9875
+ #~ msgid "Backup failed!"
9876
+ #~ msgstr "Échec de la sauvegarde&nbsp;!"
9877
+
9878
+ # @ mainwp
9879
+ #~ msgid "Ignoring..."
9880
+ #~ msgstr "Ignorer…"
9881
+
9882
+ # @ mainwp
9883
+ #~ msgid "Ignored!"
9884
+ #~ msgstr "Ignoré&nbsp;!"
9885
+
9886
+ # @ mainwp
9887
+ #, fuzzy
9888
+ #~| msgid "No ignored abandoned themes"
9889
+ #~ msgid "No ignored abandoned %1s"
9890
+ #~ msgstr "Ne pas ignorer les thèmes abandonnés"
9891
+
9892
+ # @ mainwp
9893
+ #, fuzzy
9894
+ #~| msgid "No ignored abandoned plugins"
9895
+ #~ msgid "No ignored abandoned plugins."
9896
+ #~ msgstr "Pas d’extensions abandonnées ignorées."
9897
+
9898
+ # @ mainwp
9899
+ #, fuzzy
9900
+ #~| msgid "No ignored abandoned themes"
9901
+ #~ msgid "No ignored abandoned themes."
9902
+ #~ msgstr "Ne pas ignorer les thèmes abandonnés"
9903
+
9904
+ # @ mainwp
9905
+ #~ msgid "Syncing Websites"
9906
+ #~ msgstr "Synchronisation les sites"
9907
+
9908
+ # @ mainwp
9909
+ #, fuzzy
9910
+ #~| msgid "Are you sure you want to delete this site?"
9911
+ #~ msgid "Are you sure you want to update all translations?"
9912
+ #~ msgstr "Êtes-vous certain de vouloir supprimer ce site&nbsp;?"
9913
+
9914
+ # @ mainwp
9915
+ #, fuzzy
9916
+ #~| msgid "Are you sure you want to delete this site?"
9917
+ #~ msgid "Are you sure you want to update all plugins?"
9918
+ #~ msgstr "Êtes-vous certain de vouloir supprimer ce site&nbsp;?"
9919
+
9920
+ # @ mainwp
9921
+ #, fuzzy
9922
+ #~| msgid "Are you sure you want to delete this site?"
9923
+ #~ msgid "Are you sure you want to update all themes?"
9924
+ #~ msgstr "Êtes-vous certain de vouloir supprimer ce site&nbsp;?"
9925
+
9926
+ # @ mainwp
9927
+ #~ msgid "Show all"
9928
+ #~ msgstr "Afficher tout"
9929
+
9930
+ # @ mainwp
9931
+ #, fuzzy
9932
+ #~| msgid "Hide All"
9933
+ #~ msgid "Hide all"
9934
+ #~ msgstr "Masquer tous"
9935
+
9936
+ # @ mainwp
9937
+ #, fuzzy
9938
+ #~| msgid "Starting backup task."
9939
+ #~ msgid "Starting the backup task..."
9940
+ #~ msgstr "Démarrage de la tâche de sauvegarde…"
9941
+
9942
+ # @ mainwp
9943
+ #, fuzzy
9944
+ #~| msgid "Backup task complete"
9945
+ #~ msgid "Backup task completed"
9946
+ #~ msgstr "Tâche de sauvegarde terminée"
9947
+
9948
+ # @ mainwp
9949
+ #~ msgid "Creating backup file."
9950
+ #~ msgstr "Création du fichier de sauvegarde."
9951
+
9952
+ # @ mainwp
9953
+ #, fuzzy
9954
+ #~| msgid "Backupfile created successfully."
9955
+ #~ msgid "Backup file created successfully."
9956
+ #~ msgstr "Création du fichier de sauvegarde avec succès."
9957
+
9958
+ # @ mainwp
9959
+ #, fuzzy
9960
+ #~| msgid "Uploading to remote destinations.."
9961
+ #~ msgid "Uploading to selected remote destination: %1 (%2)"
9962
+ #~ msgstr "Téléchargement vers des serveurs externes…"
9963
+
9964
+ # @ mainwp
9965
+ #, fuzzy
9966
+ #~| msgid "Upload to %1 (%2) successful."
9967
+ #~ msgid "Upload to %1 (%2) successful"
9968
+ #~ msgstr "Téléchargement de %1 (%2) réussi."
9969
+
9970
+ # @ mainwp
9971
+ #, fuzzy
9972
+ #~| msgid "Removing the task.."
9973
+ #~ msgid "Adding the task..."
9974
+ #~ msgstr "Ajout de la tâche..."
9975
+
9976
+ # @ mainwp
9977
+ #, fuzzy
9978
+ #~| msgid "Removing the task.."
9979
+ #~ msgid "Removing the task..."
9980
+ #~ msgstr "Suppression de la tâche…"
9981
+
9982
+ # @ mainwp
9983
+ #, fuzzy
9984
+ #~| msgid "The task has been removed"
9985
+ #~ msgid "The task has been removed."
9986
+ #~ msgstr "La tâche a été supprimée"
9987
+
9988
+ # @ mainwp
9989
+ #, fuzzy
9990
+ #~| msgid "Removing the task.."
9991
+ #~ msgid "Resuming the task..."
9992
+ #~ msgstr "Reprise de la tâche ..."
9993
+
9994
+ # @ mainwp
9995
+ #, fuzzy
9996
+ #~| msgid "The task has been removed"
9997
+ #~ msgid "The task has been resumed."
9998
+ #~ msgstr "La tâche a été supprimée"
9999
+
10000
+ # @ mainwp
10001
+ #, fuzzy
10002
+ #~| msgid "Removing the task.."
10003
+ #~ msgid "Pausing the task..."
10004
+ #~ msgstr "Mettre la tâche en pause…"
10005
+
10006
+ # @ mainwp
10007
+ #, fuzzy
10008
+ #~| msgid "The task has been removed"
10009
+ #~ msgid "The task has been paused."
10010
+ #~ msgstr "La tâche a été supprimée"
10011
+
10012
+ # @ mainwp
10013
+ #, fuzzy
10014
+ #~| msgid "Site URL:"
10015
+ #~ msgid "URL:"
10016
+ #~ msgstr "URL&nbsp;:"
10017
+
10018
+ # @ mainwp
10019
+ #, fuzzy
10020
+ #~| msgid "Received HTTP-code:"
10021
+ #~ msgid "HTTP-code:"
10022
+ #~ msgstr "HTTP-code&nbsp;:"
10023
+
10024
+ # @ mainwp
10025
+ #, fuzzy
10026
+ #~| msgid "Please enter a name for the website"
10027
+ #~ msgid "Please enter a name for the website."
10028
+ #~ msgstr "Merci de saisir le nom du site web."
10029
+
10030
+ # @ mainwp
10031
+ #, fuzzy
10032
+ #~| msgid "Please enter a valid URL for your site"
10033
+ #~ msgid "Please enter a valid URL for your site."
10034
+ #~ msgstr "Merci de saisir une URL valide pour votre site."
10035
+
10036
+ # @ mainwp
10037
+ #, fuzzy
10038
+ #~| msgid "Please enter a username for the administrator"
10039
+ #~ msgid "Please enter a username of the website administrator."
10040
+ #~ msgstr "Veuillez entrer le nom de l’administrateur du site Web."
10041
+
10042
+ # @ mainwp
10043
+ #, fuzzy
10044
+ #~| msgid "Adding the site to MainWP"
10045
+ #~ msgid "Adding the site to MainWP..."
10046
+ #~ msgstr "Ajouter le site à MainWP…"
10047
+
10048
+ # @ mainwp
10049
+ #, fuzzy
10050
+ #~| msgid ""
10051
+ #~| "No MainWP Child plugin detected, first install and activate the plugin "
10052
+ #~| "and add your site to MainWP afterwards. Click <a href=\"%1\" target="
10053
+ #~| "\"_blank\">here</a> to install <a href=\"%2\" target=\"_blank\">MainWP</"
10054
+ #~| "a> plugin (do not forget to activate it after installation)."
10055
+ #~ msgid ""
10056
+ #~ "MainWP Child Plugin not detected, first install and activate the MainWP "
10057
+ #~ "Child plugin and add your site to MainWP Dashboard afterwards. Click <a "
10058
+ #~ "href=\"%1\" target=\"_blank\">here</a> to install <a href=\"%2\" target="
10059
+ #~ "\"_blank\">MainWP</a> plugin (do not forget to activate it after "
10060
+ #~ "installation)."
10061
+ #~ msgstr ""
10062
+ #~ "Aucune extension MainWP client détectée, installer d’abord puis activer "
10063
+ #~ "l’extension pour ajouter votre site à MainWP. Cliquez <a href=\"%1\" "
10064
+ #~ "target=\"_blank\">ici</a> pour installer l’extension <a href=\"%2\" "
10065
+ #~ "target=\"_blank\">MainWP</a> (n’oubliez pas de l’activer après "
10066
+ #~ "l’installation)."
10067
+
10068
+ # @ mainwp
10069
+ #, fuzzy
10070
+ #~| msgid "Apply %s %ssettings%s"
10071
+ #~ msgid "Applying extensions settings..."
10072
+ #~ msgstr "Appliquer les paramètres d’extensions…"
10073
+
10074
+ # @ mainwp
10075
+ #, fuzzy
10076
+ #~| msgid "Preparing %1 installation."
10077
+ #~ msgid "Preparing for installation..."
10078
+ #~ msgstr "Préparation à l'installation…"
10079
+
10080
+ # @ mainwp
10081
+ #~ msgid "Installation successful!"
10082
+ #~ msgstr "Installation réussie&nbsp;!"
10083
+
10084
+ # @ mainwp
10085
+ #~ msgid "Installation failed!"
10086
+ #~ msgstr "L’installation a échouée&nbsp;!"
10087
+
10088
+ # @ mainwp
10089
+ #, fuzzy
10090
+ #~| msgid "Apply %s %ssettings%s"
10091
+ #~ msgid "Applying settings..."
10092
+ #~ msgstr "Appliquer les paramètres ..."
10093
+
10094
+ # @ mainwp
10095
+ #, fuzzy
10096
+ #~| msgid "Installation successful"
10097
+ #~ msgid "Applying settings successful!"
10098
+ #~ msgstr "Application de paramètres réussie !"
10099
+
10100
+ # @ mainwp
10101
+ #, fuzzy
10102
+ #~| msgid "Upgrade successful"
10103
+ #~ msgid "Successful"
10104
+ #~ msgstr "Réussi "
10105
+
10106
+ # @ mainwp
10107
+ #, fuzzy
10108
+ #~| msgid "Apply %s %ssettings%s"
10109
+ #~ msgid "Applying settings failed!"
10110
+ #~ msgstr "L'application des paramètres a échouée&nbsp;!"
10111
+
10112
+ # @ mainwp
10113
+ #, fuzzy
10114
+ #~| msgid "Save Failed"
10115
+ #~ msgid "failed"
10116
+ #~ msgstr "échoué"
10117
+
10118
+ # @ mainwp
10119
+ #, fuzzy
10120
+ #~| msgid "Apply global %s options"
10121
+ #~ msgid "Apply global %1 options"
10122
+ #~ msgstr "Appliquer les options globales %s"
10123
+
10124
+ # @ mainwp
10125
+ #, fuzzy
10126
+ #~| msgid "Apply %s %ssettings%s"
10127
+ #~ msgid "Apply %1 settings"
10128
+ #~ msgstr "Appliquer les paramètres %1"
10129
+
10130
+ # @ mainwp
10131
+ #, fuzzy
10132
+ #~| msgid "Downloading the file."
10133
+ #~ msgid "Downloading site icon..."
10134
+ #~ msgstr "Téléchargement du fichier."
10135
+
10136
+ # @ mainwp
10137
+ #~ msgid "Download site icon successful!"
10138
+ #~ msgstr "Téléchargement de l’icône du site réalisé avec succès&nbsp;!"
10139
+
10140
+ # @ mainwp
10141
+ #~ msgid "Download site icon failed"
10142
+ #~ msgstr "Le téléchargement de l’icône du site a échoué"
10143
+
10144
+ # @ mainwp
10145
+ #~ msgid "Testing connection..."
10146
+ #~ msgstr "Test de connexion…"
10147
+
10148
+ # @ mainwp
10149
+ #~ msgid "Connection test failed!"
10150
+ #~ msgstr "Test de connexion manquéi&nbsp;!"
10151
+
10152
+ # @ mainwp
10153
+ #~ msgid "Connection test successful!"
10154
+ #~ msgstr "Test de connexion réussi&nbsp;!"
10155
+
10156
+ # @ mainwp
10157
+ #, fuzzy
10158
+ #~| msgid "Received HTTP-code:"
10159
+ #~ msgid "Received HTTP-code"
10160
+ #~ msgstr "Reçu code HTTP&nbsp;:"
10161
+
10162
+ # @ mainwp
10163
+ #, fuzzy
10164
+ #~| msgid "Removing and deactivating the MainWP Child plugin.."
10165
+ #~ msgid "Removing and deactivating the MainWP Child plugin..."
10166
+ #~ msgstr "Désactivation et suppression de l’extension MainWP Client…"
10167
+
10168
+ # @ mainwp
10169
+ #, fuzzy
10170
+ #~| msgid ""
10171
+ #~| "The site has been removed and the MainWP Child plugin has been disabled"
10172
+ #~ msgid ""
10173
+ #~ "The site has been removed and the MainWP Child plugin has been disabled."
10174
+ #~ msgstr ""
10175
+ #~ "Le site a été supprimé et l’extension MainWP client a été désactivée"
10176
+
10177
+ # @ mainwp
10178
+ #, fuzzy
10179
+ #~| msgid "The requested site has not been found"
10180
+ #~ msgid "The requested site has not been found."
10181
+ #~ msgstr "Le site demandé n’a pas été trouvé"
10182
+
10183
+ # @ mainwp
10184
+ #, fuzzy
10185
+ #~| msgid ""
10186
+ #~| "The site has been removed but the MainWP Child plugin could not be "
10187
+ #~| "disabled"
10188
+ #~ msgid ""
10189
+ #~ "The site has been removed but the MainWP Child plugin could not be "
10190
+ #~ "disabled."
10191
+ #~ msgstr ""
10192
+ #~ "Le site a été supprimé, mais l’extension MainWP client n’a pas pu être "
10193
+ #~ "désactivée"
10194
+
10195
+ # @ mainwp
10196
+ #, fuzzy
10197
+ #~| msgid "Finished"
10198
+ #~ msgid "Finished!"
10199
+ #~ msgstr "Terminé&nbsp;!"
10200
+
10201
+ # @ mainwp
10202
+ #, fuzzy
10203
+ #~| msgid "Please enter the Site name."
10204
+ #~ msgid "Please enter the site name."
10205
+ #~ msgstr "Entrez le nom du site."
10206
+
10207
+ # @ mainwp
10208
+ #, fuzzy
10209
+ #~| msgid "Please enter the Site url."
10210
+ #~ msgid "Please enter the site URL."
10211
+ #~ msgstr "Entrer l'URL du site."
10212
+
10213
+ # @ mainwp
10214
+ #, fuzzy
10215
+ #~| msgid "Please enter a username for the administrator"
10216
+ #~ msgid "Please enter username of the site administrator."
10217
+ #~ msgstr "Merci de saisir un nom d’utilisateur pour l'administrateur"
10218
+
10219
+ # @ mainwp
10220
+ #, fuzzy
10221
+ #~| msgid "HTTP error - website does not exist"
10222
+ #~ msgid "HTTP error: website does not exist!"
10223
+ #~ msgstr "Erreur HTTP - Le site web n'existe pas&nbsp;!"
10224
+
10225
+ # @ mainwp
10226
+ #, fuzzy
10227
+ #~| msgid ""
10228
+ #~| "No MainWP Child plugin detected, first install and activate the plugin "
10229
+ #~| "and add your site to MainWP afterwards. Click <a href=\"%1\" target="
10230
+ #~| "\"_blank\">here</a> to install <a href=\"%2\" target=\"_blank\">MainWP</"
10231
+ #~| "a> plugin (do not forget to activate it after installation)."
10232
+ #~ msgid ""
10233
+ #~ "MainWP Child plugin not detected! First install and activate the MainWP "
10234
+ #~ "Child plugin and add your site to MainWP afterwards. Click <a href=\"%1\" "
10235
+ #~ "target=\"_blank\">here</a> to install <a href=\"%2\" target=\"_blank"
10236
+ #~ "\">MainWP</a> plugin (do not forget to activate it after installation)"
10237
+ #~ msgstr ""
10238
+ #~ "Aucune extension MainWP client détectée, installer d’abord puis activer "
10239
+ #~ "l’extension pour ajouter votre site à MainWP. Cliquez <a href=\"%1\" "
10240
+ #~ "target=\"_blank\">ici</a> pour installer l’extension <a href=\"%2\" "
10241
+ #~ "target=\"_blank\">MainWP</a> (n’oubliez pas de l’activer après "
10242
+ #~ "l’installation)."
10243
+
10244
+ # @ mainwp
10245
+ #, fuzzy
10246
+ #~| msgid "No selected categories."
10247
+ #~ msgid "No selected categories!"
10248
+ #~ msgstr "Aucune catégorie sélectionnée&nbsp;!"
10249
+
10250
+ # @ mainwp
10251
+ #, fuzzy
10252
+ #~| msgid "Please enter csv file for upload."
10253
+ #~ msgid "Please enter CSV file for upload."
10254
+ #~ msgstr "Merci d'indiquer le fichier CSV pour le téléchargement."
10255
+
10256
+ # @ mainwp
10257
+ #, fuzzy
10258
+ #~| msgid "Number of Users to Import: %1 Created users: %2 Failed: %3"
10259
+ #~ msgid "Number of users to import: %1 Created users: %2 Failed: %3"
10260
+ #~ msgstr ""
10261
+ #~ "Nombre d’utilisateurs à l’importation&nbsp;: %1 Utilisateurs créés&nbsp;: "
10262
+ #~ "%2 Impossible&nbsp;: %3"
10263
+
10264
+ # @ mainwp
10265
+ #, fuzzy
10266
+ #~| msgid "Please enter the username."
10267
+ #~ msgid "Please enter a username."
10268
+ #~ msgstr "Merci d’entrer un nom d’utilisateur."
10269
+
10270
+ # @ mainwp
10271
+ #, fuzzy
10272
+ #~| msgid "Please enter the email."
10273
+ #~ msgid "Please enter an email."
10274
+ #~ msgstr "Merci de saisir le courriel."
10275
+
10276
+ # @ mainwp
10277
+ #, fuzzy
10278
+ #~| msgid "Please enter the password."
10279
+ #~ msgid "Please enter a password."
10280
+ #~ msgstr "Veuillez entrer un mot de passe."
10281
+
10282
+ # @ mainwp
10283
+ #, fuzzy
10284
+ #~| msgid "Please upload plugins to install."
10285
+ #~ msgid "Please select plugin to install files."
10286
+ #~ msgstr "Veuillez sélectionner l’extension pour installer les fichiers."
10287
+
10288
+ # @ mainwp
10289
+ #, fuzzy
10290
+ #~| msgid "Please select websites or groups to install files."
10291
+ #~ msgid "Please select theme to install files."
10292
+ #~ msgstr ""
10293
+ #~ "Merci de sélectionner des sites ou des groupes pour installer les "
10294
+ #~ "fichiers."
10295
+
10296
+ # @ mainwp
10297
+ #, fuzzy
10298
+ #~| msgid "Preparing %1 installation."
10299
+ #~ msgid "Preparing %1 installation..."
10300
+ #~ msgstr "Préparation de l'installation %1…"
10301
+
10302
+ #, fuzzy
10303
+ #~ msgid ""
10304
+ #~ "Would you like to use the Bulk Settings Manager with these plugins? Check "
10305
+ #~ "out the %1Documentation%2."
10306
+ #~ msgstr ""
10307
+ #~ "Voulez-vous utiliser le Gestionnaire groupé de paramètres avec cette "
10308
+ #~ "extension&nbsp;? Consultez la %1Documentation%2."
10309
+
10310
+ # @ mainwp
10311
+ #, fuzzy
10312
+ #~| msgid ""
10313
+ #~| "Creating the backupfile on the child installation, this might take a "
10314
+ #~| "while depending on the size. Please be patient."
10315
+ #~ msgid ""
10316
+ #~ "Creating the backup file on the child site, this might take a while "
10317
+ #~ "depending on the size. Please be patient."
10318
+ #~ msgstr ""
10319
+ #~ "Création du fichier de sauvegarde sur l’installation client, cela "
10320
+ #~ "pourrait prendre un certain temps en fonction de la taille. Merci d’être "
10321
+ #~ "patient."
10322
+
10323
+ # @ mainwp
10324
+ #~ msgid "Backup file on child site created successfully!"
10325
+ #~ msgstr "Sauvegarde des fichiers sur le site client créée avec succès&nbsp;!"
10326
+
10327
+ # @ mainwp
10328
+ #, fuzzy
10329
+ #~| msgid "Uploading to remote destinations.."
10330
+ #~ msgid "Uploading to remote destination: %1 (%2)"
10331
+ #~ msgstr "Téléchargement vers des serveurs externes&nbsp;: %1 (%2)"
10332
+
10333
+ # @ mainwp
10334
+ #, fuzzy
10335
+ #~| msgid "Upload to %1 (%2) successful."
10336
+ #~ msgid "Upload to %1 (%2) successful!"
10337
+ #~ msgstr "Téléchargement de %1 (%2) réussi."
10338
+
10339
+ # @ mainwp
10340
+ #, fuzzy
10341
+ #~| msgid "Backup complete."
10342
+ #~ msgid "Backup completed!"
10343
+ #~ msgstr "Sauvegarde complète&nbsp;!"
10344
+
10345
+ # @ mainwp
10346
+ #, fuzzy
10347
+ #~| msgid "Please wait while we are saving your note"
10348
+ #~ msgid "Please wait while we are saving your note..."
10349
+ #~ msgstr "Veuillez patienter pendant que nous enregistrons votre note…"
10350
+
10351
+ # @ mainwp
10352
+ #, fuzzy
10353
+ #~| msgid "An error occured while saving your message"
10354
+ #~ msgid "Undefined error occured while saving your note!"
10355
+ #~ msgstr ""
10356
+ #~ "Une erreur non définie s'est produite lors de la sauvegarde de votre "
10357
+ #~ "note&nbsp;!"
10358
+
10359
+ # @ mainwp
10360
+ #, fuzzy
10361
+ #~| msgid "Note saved."
10362
+ #~ msgid "Note saved!"
10363
+ #~ msgstr "Note sauvée&nbsp;!"
10364
+
10365
+ # @ mainwp
10366
+ #, fuzzy
10367
+ #~| msgid "Please search and select users for update password."
10368
+ #~ msgid "Please search and select users."
10369
+ #~ msgstr "Recherchez et sélectionnez des utilisateurs."
10370
+
10371
+ # @ mainwp
10372
+ #, fuzzy
10373
+ #~| msgid ""
10374
+ #~| "No MainWP Child plugin detected, first install and activate the plugin "
10375
+ #~| "and add your site to MainWP afterwards. If you continue experiencing "
10376
+ #~| "this issue please test your connection <a href=\"admin.php?"
10377
+ #~| "page=managesites&do=test&site=%1\">here</a> or post as much information "
10378
+ #~| "as possible on the error in the <a href=\"https://mainwp.com/forum/"
10379
+ #~| "\">support forum</a>."
10380
+ #~ msgid ""
10381
+ #~ "MainWP Child plugin not detected! First install and activate the MainWP "
10382
+ #~ "Child plugin and add your site to MainWP Dashboard afterwards. If you "
10383
+ #~ "continue experiencing this issue please test your connection <a href="
10384
+ #~ "\"admin.php?page=managesites&do=test&site=%1\">here</a> or post as much "
10385
+ #~ "information as possible on the error in the <a href=\"https://mainwp.com/"
10386
+ #~ "forum/\">support forum</a>."
10387
+ #~ msgstr ""
10388
+ #~ "Aucune extension MainWP client détectée, installer et activer en premier "
10389
+ #~ "l’extension et ajouter votre site client à MainWP après. i vous "
10390
+ #~ "rencontrez un problème d’installation, merci de tester votre connexion <a "
10391
+ #~ "href=\"admin.php?page=managesites&do=test&site=%1\">ici</a> ou les poster "
10392
+ #~ "le maximum d’informations sur l’erreur rencontrée dans le <a href="
10393
+ #~ "\"https://mainwp.com/forum/\">forum de support</a>."
10394
+
10395
+ # @ mainwp
10396
+ #, fuzzy
10397
+ #~| msgid ""
10398
+ #~| "No MainWP Child Plugin detected, first install and activate the plugin "
10399
+ #~| "and add your site to MainWP Dashboard afterwards. If you continue "
10400
+ #~| "experiencing this issue please "
10401
+ #~ msgid ""
10402
+ #~ "MainWP Child plugin not detected! First install and activate the MainWP "
10403
+ #~ "Child plugin and add your site to MainWP Dashboard afterwards."
10404
+ #~ msgstr ""
10405
+ #~ "Aucune extension MainWP client détectée, installez d’abord l’extension et "
10406
+ #~ "activez-la puis ajoutez votre site à MainWP après. Si vous continuez sur "
10407
+ #~ "cette question merci de "
10408
+
10409
+ # @ mainwp
10410
+ #, fuzzy
10411
+ #~| msgid "Add Post to Child Site(s)"
10412
+ #~ msgid "ERROR on the child site"
10413
+ #~ msgstr "ERREUR sur le site client"
10414
+
10415
+ #, fuzzy
10416
+ #~ msgid "Deleting sites finished."
10417
+ #~ msgstr "Suppression de sites terminée."
10418
+
10419
+ # @ mainwp
10420
+ #, fuzzy
10421
+ #~| msgid "Connection test failed."
10422
+ #~ msgid "Connection test finished."
10423
+ #~ msgstr "Test de connexion manqué."
10424
+
10425
+ # @ mainwp
10426
+ #, fuzzy
10427
+ #~| msgid "Set to YES if you want to use Child Site Favicon."
10428
+ #~ msgid ""
10429
+ #~ "You are about to remove the selected sites from your MainWP Dashboard?"
10430
+ #~ msgstr ""
10431
+ #~ "Régler sur OUI si vous souhaitez utiliser le favicon du site client."
10432
+
10433
+ # @ mainwp
10434
+ #, fuzzy
10435
+ #~| msgid "Bulk test connection finished"
10436
+ #~ msgid "Reconnection finished."
10437
+ #~ msgstr "Reconnection terminée."
10438
+
10439
+ #, fuzzy
10440
+ #~ msgid "DONE</span>"
10441
+ #~ msgstr "FAIT</span>"
10442
+
10443
+ #~ msgid "UNKNOWN"
10444
+ #~ msgstr "INCONNU"
10445
+
10446
+ #, fuzzy
10447
+ #~ msgid "RESPONSE ERROR"
10448
+ #~ msgstr "ERREUR DE RÉPONSE"
10449
+
10450
+ # @ mainwp
10451
+ #~ msgid "Loading..."
10452
+ #~ msgstr "Chargement en cours…"
10453
+
10454
+ #, fuzzy
10455
+ #~ msgid "year"
10456
+ #~ msgstr "année"
10457
+
10458
+ # @ mainwp
10459
+ #~ msgid "Post only to existing Categories"
10460
+ #~ msgstr "Article uniquement pour les catégories existantes"
10461
+
10462
+ # @ mainwp
10463
+ #~ msgid "All Categories"
10464
+ #~ msgstr "Toutes les catégories"
10465
+
10466
+ # @ mainwp
10467
+ #~ msgid "+ Add New Category"
10468
+ #~ msgstr "+ Ajouter nouvelle catégorie"
10469
+
10470
+ # @ mainwp
10471
+ #~ msgid "Add New Category"
10472
+ #~ msgstr "Ajouter nouvelle catégorie"
10473
+
10474
+ # @ mainwp
10475
+ #~ msgid "New Category Name"
10476
+ #~ msgstr "Nom nouvelle catégorie"
10477
+
10478
+ # @ mainwp
10479
+ #~ msgid "No site given"
10480
+ #~ msgstr "Pas de site donné"
10481
+
10482
+ # @ mainwp
10483
+ #~ msgid ""
10484
+ #~ "Undefined error - please reinstall the MainWP Child Plugin on the client "
10485
+ #~ "site"
10486
+ #~ msgstr ""
10487
+ #~ "Erreur non définie - merci de réinstaller l’extension MainWP Client sur "
10488
+ #~ "le site client"
10489
+
10490
+ # @ mainwp
10491
+ #~ msgid "Stop! Before you continue,"
10492
+ #~ msgstr "Stop ! Avant de continuer,"
10493
+
10494
+ # @ mainwp
10495
+ #~ msgid "We HIGHLY recommend a NEW WordPress install for your Main Dashboard."
10496
+ #~ msgstr ""
10497
+ #~ "Nous recommandons fortement une NOUVELLE installation de WordPress pour "
10498
+ #~ "votre tableau de bord principal."
10499
+
10500
+ # @ mainwp
10501
+ #~ msgid "By site"
10502
+ #~ msgstr "Par site"
10503
+
10504
+ # @ mainwp
10505
+ #~ msgid "By group"
10506
+ #~ msgstr "Par groupe"
10507
+
10508
+ # @ mainwp
10509
+ #~ msgid "Reload"
10510
+ #~ msgstr "Recharger"
10511
+
10512
+ # @ mainwp
10513
+ #~ msgid "Help"
10514
+ #~ msgstr "Aide"
10515
+
10516
+ # @ mainwp
10517
+ #~ msgid "Select Sites to Update"
10518
+ #~ msgstr "Sélectionnez les sites à mettre à jour"
10519
+
10520
+ # @ mainwp
10521
+ #~ msgid "Manage Admin Passwords"
10522
+ #~ msgstr "Gestion des mots de passe Admin"
10523
+
10524
+ # @ mainwp
10525
+ #~ msgid "Search the MainWP Docs"
10526
+ #~ msgstr "Rechercher dans la documentation MainWP"
10527
+
10528
+ # @ mainwp
10529
+ #~ msgid "Search"
10530
+ #~ msgstr "Rechercher"
10531
+
10532
+ # @ mainwp
10533
+ #~ msgid "Quick Start"
10534
+ #~ msgstr "Démarrage rapide"
10535
+
10536
+ # @ mainwp
10537
+ #~ msgid "How To"
10538
+ #~ msgstr "Comment"
10539
+
10540
+ # @ mainwp
10541
+ #~ msgid "Upload"
10542
+ #~ msgstr "Télécharger"
10543
+
10544
+ # @ mainwp
10545
+ #~ msgid "Backups Help"
10546
+ #~ msgstr "Aide sauvegardes"
10547
+
10548
+ # @ mainwp
10549
+ #~ msgid "Manage"
10550
+ #~ msgstr "Gestion"
10551
+
10552
+ # @ mainwp
10553
+ #~ msgid ""
10554
+ #~ "The maximum number of open file descriptors on the child hosting. 0 sets "
10555
+ #~ "unlimited."
10556
+ #~ msgstr ""
10557
+ #~ "Le nombre maximal de fichiers de description sur l’hébergement client. 0 "
10558
+ #~ "égale illimité."
10559
+
10560
+ # @ mainwp
10561
+ #~ msgid "Scheduling a Backup Task"
10562
+ #~ msgstr "Planification d’une tâche de sauvegarde"
10563
+
10564
+ # @ mainwp
10565
+ #~ msgid "Backup Remote Destinations"
10566
+ #~ msgstr "Destinations externes de sauvegarde"
10567
+
10568
+ # @ mainwp
10569
+ #~ msgid "How to execute backups in chunks"
10570
+ #~ msgstr "Comment exécuter des sauvegarde globales"
10571
+
10572
+ # @ mainwp
10573
+ #~ msgid "Adding a Site To MainWP Dashboard"
10574
+ #~ msgstr "Ajouter un site dans le tableau de bord MainWP"
10575
+
10576
+ # @ mainwp
10577
+ #~ msgid "How to use the Child Unique Security ID"
10578
+ #~ msgstr "Comment utiliser l’ID de sécurité unique du site client"
10579
+
10580
+ # @ mainwp
10581
+ #~ msgid "Individual Site Dashboard"
10582
+ #~ msgstr "Tableau de bord individuel"
10583
+
10584
+ # @ mainwp
10585
+ #~ msgid "How to test a Site Connection"
10586
+ #~ msgstr "Comment tester la connexion d’un site"
10587
+
10588
+ # @ mainwp
10589
+ #~ msgid "Pages Help"
10590
+ #~ msgstr "Aide pages"
10591
+
10592
+ # @ mainwp
10593
+ #~ msgid "Plugins Help"
10594
+ #~ msgstr "Aide extensions"
10595
+
10596
+ # @ mainwp
10597
+ #~ msgid "Ignored Conflicts"
10598
+ #~ msgstr "Ignorer les conflits"
10599
+
10600
+ # @ mainwp
10601
+ #~ msgid "Save Note"
10602
+ #~ msgstr "Sauver note"
10603
+
10604
+ # @ mainwp
10605
+ #~ msgid ""
10606
+ #~ "Auto Updates are ON and Trusted Plugins will be Automatically Updated"
10607
+ #~ msgstr ""
10608
+ #~ "Les mises à jour automatiques sont activées et les extensions approuvées "
10609
+ #~ "seront automatiquement mises à jour"
10610
+
10611
+ # @ mainwp
10612
+ #~ msgid "Change this in Settings"
10613
+ #~ msgstr "Modifier dans Paramètres"
10614
+
10615
+ # @ mainwp
10616
+ #~ msgid "Auto Updates are OFF - Email Update Notification is ON"
10617
+ #~ msgstr ""
10618
+ #~ "Les mises à jour automatique sont désactivées - La notification des mises "
10619
+ #~ "à jour par courriel est activée"
10620
+
10621
+ # @ mainwp
10622
+ #~ msgid "Auto Updates are OFF - Email Update Notification is OFF"
10623
+ #~ msgstr ""
10624
+ #~ "Les mises à jour automatique sont désactivées - La notification des mises "
10625
+ #~ "à jour par courriel est désactivée"
10626
+
10627
+ # @ mainwp
10628
+ #~ msgid "How to install a Plugin"
10629
+ #~ msgstr "Comment installer une extension"
10630
+
10631
+ # @ mainwp
10632
+ #~ msgid "How to update Plugins"
10633
+ #~ msgstr "Comment mettre à jour des extensions"
10634
+
10635
+ # @ mainwp
10636
+ #~ msgid "SecurityIssues"
10637
+ #~ msgstr "Problèmes de sécurité"
10638
+
10639
+ # @ mainwp
10640
+ #~ msgid "Security Issues"
10641
+ #~ msgstr "Problèmes de sécurité"
10642
+
10643
+ # @ mainwp
10644
+ #~ msgid "Removed wp-version"
10645
+ #~ msgstr "Supprimer la version de WP"
10646
+
10647
+ # @ mainwp
10648
+ #~ msgid "Removed Windows Live Writer meta tag"
10649
+ #~ msgstr "Suppression de la balise meta Windows Live Writer"
10650
+
10651
+ # @ mainwp
10652
+ #~ msgid "Removed version information for scripts/stylesheets"
10653
+ #~ msgstr "Supprimer l’information de version des scripts/feuilles de styles"
10654
+
10655
+ # @ mainwp
10656
+ #~ msgid "readme.html removed"
10657
+ #~ msgstr "readme.html supprimé"
10658
+
10659
+ # @ mainwp
10660
+ #~ msgid "Tutorial"
10661
+ #~ msgstr "Tutoriel"
10662
+
10663
+ # @ mainwp
10664
+ #~ msgid "Unfix All"
10665
+ #~ msgstr "Tout détacher"
10666
+
10667
+ # @ mainwp
10668
+ #~ msgid "Request Method"
10669
+ #~ msgstr "Méthode de requête"
10670
+
10671
+ # @ mainwp
10672
+ #~ msgid "Settings Help"
10673
+ #~ msgstr "Aide paramètres"
10674
+
10675
+ # @ mainwp
10676
+ #~ msgid "Save Settings"
10677
+ #~ msgstr "Sauver paramètres"
10678
+
10679
+ # @ mainwp
10680
+ #~ msgid "Themes Help"
10681
+ #~ msgstr "Aide Thèmes"
10682
+
10683
+ # @ mainwp
10684
+ #~ msgid ""
10685
+ #~ "Only mark Themes as Trusted if you are absolutely sure they can be updated"
10686
+ #~ msgstr ""
10687
+ #~ "Seulement les thèmes marqués comme Premium, si vous êtes absolument sûr "
10688
+ #~ "qu’ils peuvent être mis à jour"
10689
+
10690
+ # @ mainwp
10691
+ #~ msgid "No ignored theme conflicts"
10692
+ #~ msgstr "Aucun conflits de thèmes ignorés"
10693
+
10694
+ # @ mainwp
10695
+ #~ msgid "Users Help"
10696
+ #~ msgstr "Aide Utilisateurs"
10697
+
10698
+ # @ mainwp
10699
+ #~ msgid "Search Users"
10700
+ #~ msgstr "Rechercher utilisateurs"
10701
+
10702
+ # @ mainwp
10703
+ #~ msgid "Update Password"
10704
+ #~ msgstr "Mise à jour mot de passe"
10705
+
10706
+ # @ mainwp
10707
+ #~ msgid "Change Role to ..."
10708
+ #~ msgstr "Changez rôle à…"
10709
+
10710
+ # @ mainwp
10711
+ #~ msgid "This user is used for our secure link, you can not change the role."
10712
+ #~ msgstr ""
10713
+ #~ "Cet utilisateur est utilisé pour notre lien sécurisé, vous ne pouvez pas "
10714
+ #~ "changer le rôle."
10715
+
10716
+ # @ mainwp
10717
+ #~ msgid ""
10718
+ #~ "Hint: The password should be at least seven\n"
10719
+ #~ " characters long. To make it stronger, "
10720
+ #~ "use upper and lower case letters, numbers and\n"
10721
+ #~ " symbols like ! \" ? $ % ^ &amp; )."
10722
+ #~ msgstr ""
10723
+ #~ "Astuce&nbsp;: Le mot de passe doit être d’au moins sept\n"
10724
+ #~ " caractères. Pour le rendre plus fort, "
10725
+ #~ "utiliser des lettres, des chiffres majuscules et minuscules et\n"
10726
+ #~ " des symboles comme&nbsp;: ! ? \\ \\\" "
10727
+ #~ "$ % ^ &amp;)."
10728
+
10729
+ # @ mainwp
10730
+ #~ msgid "How to add an User"
10731
+ #~ msgstr "Comment ajouter un utilisateur"
10732
+
10733
+ # @ mainwp
10734
+ #~ msgid "How to bulk add users"
10735
+ #~ msgstr "Comment ajouter globalement des utilisateurs"
10736
+
10737
+ # @ mainwp
10738
+ #~ msgid "New Window"
10739
+ #~ msgstr "Nouvelle fenêtre"
10740
+
10741
+ # @ mainwp
10742
+ #~ msgid "MainWP Extensions Login:"
10743
+ #~ msgstr "Connexion extensions MainWP&nbsp;:"
10744
+
10745
+ # @ mainwp
10746
+ #~ msgid "Enable All"
10747
+ #~ msgstr "Activer tout"
10748
+
10749
+ # @ mainwp
10750
+ #~ msgid "Support Forum"
10751
+ #~ msgstr "Forums de support"
10752
+
10753
+ # @ mainwp
10754
+ #~ msgid "Enter Activation API"
10755
+ #~ msgstr "Saisir la Clé API d’activation"
10756
+
10757
+ # @ mainwp
10758
+ #~ msgid "API License Key"
10759
+ #~ msgstr "Clé API de licence"
10760
+
10761
+ # @ mainwp
10762
+ #~ msgid "API License Email"
10763
+ #~ msgstr "Courriel API licence"
10764
+
10765
+ # @ mainwp
10766
+ #~ msgid "Having trouble adding your site?"
10767
+ #~ msgstr "Vous avez du mal à ajouter votre site ?"
10768
+
10769
+ # @ mainwp
10770
+ #~ msgid ""
10771
+ #~ "Your Dashboard is on the same host as your Child site. Some hosts will "
10772
+ #~ "not allow two sites on the same server to communicate with each other. In "
10773
+ #~ "this situation you would contact your host for assistance or move your "
10774
+ #~ "Dashboard or Child site to a different host."
10775
+ #~ msgstr ""
10776
+ #~ "Votre tableau de bord est sur le même hébergement que votre site client. "
10777
+ #~ "Certains hébergements ne permettent pas à 2 sites sur le même serveur de "
10778
+ #~ "communiquer entre eux. Dans cette situation, vous pouvez contacter le "
10779
+ #~ "support de l’hébergement ou déplacer votre tableau de bord ou le site "
10780
+ #~ "client sur un autre hébergement."
10781
+
10782
+ # @ mainwp
10783
+ #~ msgid "Hide this message"
10784
+ #~ msgstr "Masquer ce message"
10785
+
10786
+ # @ mainwp
10787
+ #~ msgid "Or assign existing groups."
10788
+ #~ msgstr "Ou attribuer des groupes existants."
10789
+
10790
+ # @ mainwp
10791
+ #~ msgid ""
10792
+ #~ "Click\n"
10793
+ #~ " here to download sample CSV file."
10794
+ #~ msgstr ""
10795
+ #~ "Cliquez\n"
10796
+ #~ " ici pour télécharger le fichier CSV "
10797
+ #~ "d’échantillon."
10798
+
10799
+ # @ mainwp
10800
+ #~ msgid "SEO Details"
10801
+ #~ msgstr "Détails SEO"
10802
+
10803
+ # @ mainwp
10804
+ #~ msgid "Not updated yet"
10805
+ #~ msgstr "Pas encore mis à jour"
10806
+
10807
+ # @ mainwp
10808
+ #~ msgid "Last Updated"
10809
+ #~ msgstr "Dernière mise à jour"
10810
+
10811
+ # @ mainwp
10812
+ #~ msgid "Allowed Structure Tags:"
10813
+ #~ msgstr "Codes de mot-clé admis&nbsp;:"
10814
+
10815
+ # @ mainwp
10816
+ #~ msgid "Site URL cannot be changed."
10817
+ #~ msgstr "L’URL du site ne peut être changée."
10818
+
10819
+ # @ mainwp
10820
+ #~ msgid "Separate groups by commas (e.g. Group 1, Group 2)."
10821
+ #~ msgstr "Séparer les groupes par des virgules (ex. Groupe 1, Groupe 2)."
10822
+
10823
+ # @ mainwp
10824
+ #~ msgid "Not allowed this operation."
10825
+ #~ msgstr "Cette opération est non autorisée."
10826
+
10827
+ # @ mainwp
10828
+ #~ msgid "Download from site child completed."
10829
+ #~ msgstr "Téléchargement depuis le site client terminé."
10830
+
10831
+ # @ mainwp
10832
+ #~ msgid "Add an Extension Today"
10833
+ #~ msgstr "Ajouter une extension maintenant"
10834
+
10835
+ # @ mainwp
10836
+ #~ msgid "GET MORE EXTENSIONS"
10837
+ #~ msgstr "OBTENIR DES EXTENSIONS"
10838
+
10839
+ # @ mainwp
10840
+ #~ msgid "Show Grid View"
10841
+ #~ msgstr "Afficher en grille"
10842
+
10843
+ # @ mainwp
10844
+ #~ msgid "Show List View"
10845
+ #~ msgstr "Afficher en liste"
10846
+
10847
+ # @ mainwp
10848
+ #~ msgid "Clone"
10849
+ #~ msgstr "Cloner"
10850
+
10851
+ # @ mainwp
10852
+ #~ msgid "Miscellaneous"
10853
+ #~ msgstr "Divers"
10854
+
10855
+ # @ mainwp
10856
+ #~ msgid ""
10857
+ #~ "This requires your Dashboard to query the Google servers for this "
10858
+ #~ "information."
10859
+ #~ msgstr ""
10860
+ #~ "Cela nécessite que votre tableau de bord interroge les serveurs de Google "
10861
+ #~ "pour cette information."
10862
+
10863
+ # @ mainwp
10864
+ #~ msgid "Upgrade"
10865
+ #~ msgid_plural "Upgrade All"
10866
+ #~ msgstr[0] "Mise à jour"
10867
+ #~ msgstr[1] "Tout à jour"
10868
+
10869
+ # @ mainwp
10870
+ #~ msgid "No Upgrades"
10871
+ #~ msgstr "Pas de mise à jour"
10872
+
10873
+ # @ mainwp
10874
+ #~ msgid "Site Error - No update Information available"
10875
+ #~ msgstr "Site erreur - Pas de mise à jour d’information disponible"
10876
+
10877
+ # @ mainwp
10878
+ #~ msgid "Conflict Found"
10879
+ #~ msgstr "Conflit trouvé"
10880
+
10881
+ # @ mainwp
10882
+ #~ msgid "upgraded"
10883
+ #~ msgstr "mis à jour"
10884
+
10885
+ # @ mainwp
10886
+ #~ msgid ""
10887
+ #~ "Hi, I noticed you having been using MainWP for over 30 days and that's "
10888
+ #~ "awesome!"
10889
+ #~ msgstr ""
10890
+ #~ "Salut, je viens de noter que vous utilisez MainWP depuis plus de 30 jours "
10891
+ #~ "et c’est génial !"
10892
+
10893
+ # @ mainwp
10894
+ #~ msgid ""
10895
+ #~ "Could you please do me a BIG favor and give it a 5-star rating on "
10896
+ #~ "WordPress? Reviews from users like you really help the MainWP community "
10897
+ #~ "to grow."
10898
+ #~ msgstr ""
10899
+ #~ "Pourriez-vous nous faire une grande faveur et de lui donner un avis 5 "
10900
+ #~ "étoiles sur WordPress ? Les avis d’utilisateurs comme vous aident "
10901
+ #~ "vraiment la popularité de la communauté MainWP."
10902
+
10903
+ # @ mainwp
10904
+ #~ msgid "Thank You"
10905
+ #~ msgstr "Merci"
10906
+
10907
+ # @ mainwp
10908
+ #~ msgid "~ Dennis"
10909
+ #~ msgstr "- Dennis"
10910
+
10911
+ # @ mainwp
10912
+ #~ msgid "Ok, you deserve"
10913
+ #~ msgstr "Ok, vous méritez"
10914
+
10915
+ # @ mainwp
10916
+ #~ msgid "Nope, maybe later"
10917
+ #~ msgstr "Non, peut-être plus tard"
10918
+
10919
+ # @ mainwp
10920
+ #~ msgid "I already did"
10921
+ #~ msgstr "Je l’ai déjà fait"
10922
+
10923
+ # @ mainwp
10924
+ #~ msgid ""
10925
+ #~ "Hi, I noticed you have a few MainWP Extensions installed and that's "
10926
+ #~ "awesome!"
10927
+ #~ msgstr ""
10928
+ #~ "Salut, je vois que vous avez quelques extensions MainWP installées et "
10929
+ #~ "c’est génial !"
10930
+
10931
+ # @ mainwp
10932
+ #~ msgid "MISC"
10933
+ #~ msgstr "Divers"
10934
+
10935
+ # @ mainwp
10936
+ #~ msgid "Verify Certificate"
10937
+ #~ msgstr "Vérifier le certificat"
10938
+
10939
+ # @ mainwp
10940
+ #~ msgid ""
10941
+ #~ "The number of backups to keep on your server. This does not affect "
10942
+ #~ "external sources. 0 sets unlimited."
10943
+ #~ msgstr ""
10944
+ #~ "Le nombre de sauvegardes à conserver sur votre serveur. Cela n’a aucune "
10945
+ #~ "incidence sur les sources externes. Mettre 0 pour illimité."
10946
+
10947
+ # @ mainwp
10948
+ #~ msgid "Load Files in Memory Before Zipping"
10949
+ #~ msgstr "Charger les fichiers en mémoire avant de zipper"
10950
+
10951
+ # @ mainwp
10952
+ #~ msgid "Ignore All Plugin Updates"
10953
+ #~ msgstr "Ignorer toutes les mises à jour des extensions"
10954
+
10955
+ # @ mainwp
10956
+ #~ msgid "Ignore All Theme Updates"
10957
+ #~ msgstr "Ignorer toutes les mises à jour des thèmes"
10958
+
10959
+ # @ mainwp
10960
+ #~ msgid "Show Basic SEO Stats"
10961
+ #~ msgstr "Afficher les statistiques de base du SEO"
10962
+
10963
+ # @ mainwp
10964
+ #~ msgid "License key is empty."
10965
+ #~ msgstr "La clé de licence est vide."
10966
+
10967
+ # @ mainwp
10968
+ #~ msgid ""
10969
+ #~ "In order to complete the security hardening process follow these steps:"
10970
+ #~ msgstr ""
10971
+ #~ "Afin de compléter le processus de renforcement de la sécurité suivez ces "
10972
+ #~ "étapes&nbsp;:"
10973
+
10974
+ # @ mainwp
10975
+ #~ msgid "Update all your Child Sites to the latest version MainWP Child."
10976
+ #~ msgstr ""
10977
+ #~ "Mettre à jour tous vos sites clients vers la dernière version MainWP "
10978
+ #~ "client."
10979
+
10980
+ # @ mainwp
10981
+ #~ msgid "Press the Establish New Connection Button and Let it Run."
10982
+ #~ msgstr ""
10983
+ #~ "Appuyez sur le bouton \\\"Établir une nouvelle connexion\\\" et laisser "
10984
+ #~ "courir."
10985
+
10986
+ # @ mainwp
10987
+ #~ msgid "Once completed the security hardening is done."
10988
+ #~ msgstr "Une fois que le renforcement de la sécurité est terminé."
10989
+
10990
+ # @ mainwp
10991
+ #~ msgid ""
10992
+ #~ "You have not set your MainWP Child Plugins for auto updates, this is "
10993
+ #~ "highly recommended"
10994
+ #~ msgstr ""
10995
+ #~ "Vous n’avez pas configuré vos extensions MainWP client pour les mises à "
10996
+ #~ "jour automatiques, c’est hautement recommandé"
10997
+
10998
+ # @ mainwp
10999
+ #~ msgid "Turn On"
11000
+ #~ msgstr "Démarrer"
11001
+
11002
+ # @ mainwp
11003
+ #~ msgid "Type here to filter sites"
11004
+ #~ msgstr "Tapez ici pour filtrer les sites"
11005
+
11006
+ # @ mainwp
11007
+ #~ msgid "Page"
11008
+ #~ msgstr "Page"
11009
+
11010
+ # @ mainwp
11011
+ #~ msgid "User"
11012
+ #~ msgstr "Utilisateur"
11013
+
11014
+ # @ mainwp
11015
+ #~ msgid "synced"
11016
+ #~ msgstr "synchronisé"
11017
+
11018
+ # @ mainwp
11019
+ #~ msgid "Hide password"
11020
+ #~ msgstr "Masquer le mot de passe"
11021
+
11022
+ # @ mainwp
11023
+ #~ msgid "Schedule Backups"
11024
+ #~ msgstr "Planification de sauvegardes"
11025
+
11026
+ # @ mainwp
11027
+ #~ msgid "Globally Ignored Plugin Conflict List"
11028
+ #~ msgstr "Liste des conflits d’extensions ignorés globalement"
11029
+
11030
+ # @ mainwp
11031
+ #~ msgid "Per Site Ignored Plugin Conflict List"
11032
+ #~ msgstr "Liste des conflits d’extensions ignorés par site"
11033
+
11034
+ # @ mainwp
11035
+ #~ msgid "Establish New Connection"
11036
+ #~ msgstr "Établir une nouvelle connexion"
11037
+
11038
+ # @ mainwp
11039
+ #~ msgid "Globally Ignored Theme Conflict List"
11040
+ #~ msgstr "Liste des conflits de thèmes ignorés globalement"
11041
+
11042
+ # @ mainwp
11043
+ #~ msgid "Per Site Ignored Theme Conflict List"
11044
+ #~ msgstr "Liste des conflits de thème ignorés par site"
11045
+
11046
+ # @ mainwp
11047
+ #~ msgid "Most common reasons for sites not being added are:"
11048
+ #~ msgstr ""
11049
+ #~ "Les raisons les plus courantes pour les sites ne soit pas ajoutés sont "
11050
+ #~ "les suivantes&nbsp;:"
11051
+
11052
+ # @ mainwp
11053
+ #~ msgid ""
11054
+ #~ "Your Dashboard or Child site is experiencing SSL or cURL errors which can "
11055
+ #~ "make it so you are unable to the new Child site. You can check for these "
11056
+ #~ "errors on the Server Information page for both the MainWP Dashboard and "
11057
+ #~ "Child Plugin."
11058
+ #~ msgstr ""
11059
+ #~ "Votre Tableau de bord ou votre site client rencontre des erreurs SSL ou "
11060
+ #~ "cURL qui rendent impossible la création du nouveau site client. Vous "
11061
+ #~ "pouvez vérifier ces erreurs sur la page d’information sur le serveur à la "
11062
+ #~ "fois pour le Tableau de bord et sur le site client MainWP."
11063
+
11064
+ # @ mainwp
11065
+ #~ msgid "Alexa Rank:"
11066
+ #~ msgstr "Rang Alexa&nbsp;:"
11067
+
11068
+ # @ mainwp
11069
+ #~ msgid "Indexed Links on Google:"
11070
+ #~ msgstr "Liens indexés sur Google&nbsp;:"
11071
+
11072
+ # @ mainwp
11073
+ #~ msgid "Site Timed Out / Errored Out"
11074
+ #~ msgid_plural "Sites Timed Out / Errored Out"
11075
+ #~ msgstr[0] "Site Timed Out / Errored Out"
11076
+ #~ msgstr[1] "Sites Timed Out / Errored Out"
11077
+
11078
+ # @ mainwp
11079
+ #~ msgid "Timed Out / Errored Out"
11080
+ #~ msgstr "Timed Out / Errored Out"
11081
+
11082
+ # @ mainwp
11083
+ #~ msgid "Plugin/Theme"
11084
+ #~ msgstr "Extension/Thème"
11085
+
11086
+ # @ mainwp
11087
+ #~ msgid "Hooray, No Abandoned Plugins!"
11088
+ #~ msgstr "Bravo, pas d’extensions abandonnées !"
11089
+
11090
+ # @ mainwp
11091
+ #~ msgid "Hooray, No Abandoned Themes!"
11092
+ #~ msgstr "Bravo, pas de thèmes abandonnés !"
11093
+
11094
+ # @ mainwp
11095
+ #~ msgid " | Last Updated %s Days Ago"
11096
+ #~ msgstr " | Dernière mise à jour il y a %s jours"
11097
+
11098
+ # @ mainwp
11099
+ #~ msgid "Warning! WordPress Multisite detected."
11100
+ #~ msgstr "Attention ! Multisites WordPress détecté."
11101
+
11102
+ # @ mainwp
11103
+ #~ msgid ""
11104
+ #~ "MainWP Plugin is not designed nor fully tested on WordPress Multi Site "
11105
+ #~ "installations. Varisous features may not work propely. We highly "
11106
+ #~ "recommend insallting it on a Single Site installation!"
11107
+ #~ msgstr ""
11108
+ #~ "L’extension MAINWP n’a pas été entièrement testée sur une installation "
11109
+ #~ "WordPress multisites. Plusieurs fonctionnalités peuvent ne pas "
11110
+ #~ "fonctionner correctement. Nous vous recommandons vivement de l’installer "
11111
+ #~ "sur une installation unique !"
11112
+
11113
+ # @ mainwp
11114
+ #~ msgid ""
11115
+ #~ "Warning: Your setup is almost complete we recommend following the "
11116
+ #~ "directions in the following help doc to be sure your scheduled events "
11117
+ #~ "occur as expected %sScheduled Events%s"
11118
+ #~ msgstr ""
11119
+ #~ "Attention&nbsp;: Votre configuration est presque terminée, nous vous "
11120
+ #~ "recommandons de suivre les instructions de l’aide documentaire ci-dessous "
11121
+ #~ "pour être sûr que les événements programmés se produisent comme prévu "
11122
+ #~ "%sPlanification d’événements%s"
11123
+
11124
+ # @ mainwp
11125
+ #~ msgid "This update includes additional security hardening."
11126
+ #~ msgstr ""
11127
+ #~ "Cette mise à jour comprend un renforcement supplémentaire de la sécurité."
11128
+
11129
+ # @ mainwp
11130
+ #~ msgid "Then Go to the MainWP Tools Page by clicking %sHere%s."
11131
+ #~ msgstr "Ensuite, allez à la page des Outils MainWP en cliquant %sici%s."
11132
+
11133
+ # @ mainwp
11134
+ #~ msgid ""
11135
+ #~ "This message will automatically go away once you have completed the "
11136
+ #~ "hardening process."
11137
+ #~ msgstr ""
11138
+ #~ "Ce message disparaîtra automatiquement une fois que vous aurez terminé le "
11139
+ #~ "processus de renforcement."
11140
+
11141
+ # @ mainwp
11142
+ #~ msgid "I have read the warning and I want to proceed"
11143
+ #~ msgstr "J’ai lu l’avertissement et je veux poursuivre"
11144
+
11145
+ # @ mainwp
11146
+ #~ msgid "Type here to filter groups"
11147
+ #~ msgstr "Tapez ici pour filtrer les groupes"
11148
+
11149
+ # @ mainwp
11150
+ #~ msgid ""
11151
+ #~ "Hint: The password should be at least seven\n"
11152
+ #~ " characters long. To make it stronger, use "
11153
+ #~ "upper and lower case letters, numbers and\n"
11154
+ #~ " symbols like ! \" ? $ % ^ &amp; )."
11155
+ #~ msgstr ""
11156
+ #~ "Astuce&nbsp;: le mot de passe doit être lond d’au moins 7\n"
11157
+ #~ " caractères. Pour qu’il soit robuste, "
11158
+ #~ "utiliser des caractères minuscules et majuscules, ainsi que des nombre "
11159
+ #~ "et \n"
11160
+ #~ " symboles ! \" ? $ % ^ &amp; )."
11161
+
11162
+ # @ mainwp
11163
+ #~ msgid "Enter Group Name"
11164
+ #~ msgstr "Saisir le nom du Groupe"
11165
+
11166
+ # @ mainwp
11167
+ #~ msgid "Add Tip"
11168
+ #~ msgstr "Ajouter Astuce"
11169
+
11170
+ # @ mainwp
11171
+ #~ msgid "Next tip"
11172
+ #~ msgstr "Astuce suivante"
11173
+
11174
+ # @ mainwp
11175
+ #~ msgid "Future"
11176
+ #~ msgstr "A venir"
11177
+
11178
+ # @ mainwp
11179
+ #~ msgid "Step 1:"
11180
+ #~ msgstr "Étape 1&nbsp;:"
11181
+
11182
+ # @ mainwp
11183
+ #~ msgid "Why does the MainWP Child Plugin NOT show in the list?"
11184
+ #~ msgstr "Pourquoi l’extension MainWP client n’est pas dans la liste ?"
11185
+
11186
+ # @ mainwp
11187
+ #~ msgid "Hide WP Menus"
11188
+ #~ msgstr "Masquer les menus WP"
11189
+
11190
+ # @ mainwp
11191
+ #~ msgid ""
11192
+ #~ "In most cases %s should be your path if using a normal install.%sIf not "
11193
+ #~ "your will need to change that to match your specific path."
11194
+ #~ msgstr ""
11195
+ #~ "Dans la plupart des cas %s devrait être votre chemin si vous utilisez une "
11196
+ #~ "installation normale. %s Sinon vous aurez besoin de changer cela pour "
11197
+ #~ "bien correspondre à votre chemin d’accès spécifique."
11198
+
11199
+ # @ mainwp
11200
+ #~ msgid "This is a backup solution developed by MainWP."
11201
+ #~ msgstr "Ceci est une solution de sauvegarde développée par MainWP."
11202
+
11203
+ # @ mainwp
11204
+ #~ msgid "Backup File Archive Type:"
11205
+ #~ msgstr "Type de fichier d’archive de sauvegarde&nbsp;:"
11206
+
11207
+ # @ mainwp
11208
+ #~ msgid "MainWP Extensions Sign Up"
11209
+ #~ msgstr "Inscription pour les extensions MAINWP"
11210
+
11211
+ # @ mainwp
11212
+ #~ msgid ""
11213
+ #~ "If you do not want to register now click %shere%s to use the MainWP "
11214
+ #~ "Default Backups."
11215
+ #~ msgstr ""
11216
+ #~ "Si vous ne souhaitez pas vous inscrire maintenant cliquer %sici%s pour "
11217
+ #~ "utiliser les sauvegardes MainWP par défaut."
11218
+
11219
+ # @ mainwp
11220
+ #~ msgid "Purchase"
11221
+ #~ msgstr "Acheter"
11222
+
11223
+ # @ mainwp
11224
+ #~ msgid "Password:"
11225
+ #~ msgstr "Mot de passe&nbsp;:"
11226
+
11227
+ # @ mainwp
11228
+ #~ msgid "Set Primary Backup"
11229
+ #~ msgstr "Paramétrer la sauvegarde primaire"
11230
+
11231
+ # @ mainwp
11232
+ #~ msgid "Hide WP Menus:"
11233
+ #~ msgstr "Masquer les menus WP&nbsp;:"
11234
+
11235
+ # @ mainwp
11236
+ #~ msgid "Error -"
11237
+ #~ msgstr "Erreur -"
11238
+
11239
+ # @ mainwp
11240
+ #~ msgid "Community Forum"
11241
+ #~ msgstr "Forums communautaires"
11242
+
11243
+ # @ mainwp
11244
+ #~ msgid "Install this Theme"
11245
+ #~ msgstr "Installer ce thème"
11246
+
11247
+ # @ mainwp
11248
+ #~ msgid ""
11249
+ #~ "To search users by username, enter the wanted username here, select sites "
11250
+ #~ "and click the Search Users button."
11251
+ #~ msgstr ""
11252
+ #~ "Pour rechercher des utilisateurs par le nom, entrez le nom d’utilisateur "
11253
+ #~ "désiré ici, sélectionner les sites et cliquez sur le bouton \"Rechercher "
11254
+ #~ "des utilisateurs\"."
11255
+
11256
+ # @ mainwp
11257
+ #~ msgid "Update Translations"
11258
+ #~ msgstr "Mettre à jour les traductions"
11259
+
11260
+ # @ mainwp
11261
+ #~ msgid "Check to Save API login"
11262
+ #~ msgstr "Vérifiez pour enregistrer l’API de connexion"
11263
+
11264
+ # @ mainwp
11265
+ #~ msgid "TLS v1.2"
11266
+ #~ msgstr "TLS v1.2"
11267
+
11268
+ # @ mainwp
11269
+ #~ msgid ""
11270
+ #~ "If you are having trouble adding your site please use the %sTest "
11271
+ #~ "Connection tab%s. This tells you the header response being received by "
11272
+ #~ "your dashboard from that child site. <br/><strong>The Test Connection "
11273
+ #~ "feature is specifically testing what your Dashboard can \"see\" and what "
11274
+ #~ "your Dashboard \"sees\" and what my Dashboard \"sees\" or what your "
11275
+ #~ "browser \"sees\" can be completely different things.</strong>"
11276
+ #~ msgstr ""
11277
+ #~ "Si vous rencontrez des difficultés pour ajouter votre site, utilisez le "
11278
+ #~ "l’onglet %stest de connexion%s. Cela vous indique la réponse d’en-tête "
11279
+ #~ "HHTP reçu par votre tableau de bord depuis le site client. <br/> "
11280
+ #~ "<strong>Le test de connexion est spécifique pour tester ce que votre "
11281
+ #~ "Tableau de bord peut \"voir\" et ce que votre Tableau de bord \"voit\" et "
11282
+ #~ "ce que mon Tableau de bord \"voit \" ou ce que votre navigateur \"voit\" "
11283
+ #~ "ce peut être des choses complètement différentes.</strong>"
11284
+
11285
+ # @ mainwp
11286
+ #~ msgid ""
11287
+ #~ "You have a Security Plugin blocking the connection. If you have a "
11288
+ #~ "security plugin installed and are having an issue please check the "
11289
+ #~ "%sPlugin Conflict page%s for how to resolve."
11290
+ #~ msgstr ""
11291
+ #~ "Une extension de sécurité bloque la connexion. Si vous avez une extension "
11292
+ #~ "de sécurité installée et que vous rencontrez un problème, vérifiez les "
11293
+ #~ "pages de %sconflit d’extensions%s pour tenter de le résoudre."
11294
+
11295
+ # @ mainwp
11296
+ #~ msgid "Separate groups by commas (e.g. Group 1, Group 2)"
11297
+ #~ msgstr "Séparer les groupes par des virgules (ex. Group 1,Group 2)"
11298
+
11299
+ # @ mainwp
11300
+ #~ msgid ""
11301
+ #~ "Child Unique Security\n"
11302
+ #~ " ID "
11303
+ #~ msgstr ""
11304
+ #~ "Clé Unique de sécurité client\n"
11305
+ #~ " ID "
11306
+
11307
+ # @ mainwp
11308
+ #~ msgid "see seo statistics"
11309
+ #~ msgstr "regarder les statistiques SEO"
11310
+
11311
+ # @ mainwp
11312
+ #~ msgid ""
11313
+ #~ "Basic SEO turned Off. <strong>Historic Information Only</strong>. You can "
11314
+ #~ "turn back on in the %Settings page%."
11315
+ #~ msgstr ""
11316
+ #~ "Fonctions SEO de base désactivées. <strong>Informations de l’historique "
11317
+ #~ "seulement</strong>. Vous pouvez revenir en arrière dans la %page de "
11318
+ #~ "réglages%."
11319
+
11320
+ # @ mainwp
11321
+ #~ msgid ""
11322
+ #~ "Did you know that MainWP has Extensions for working with popular backup "
11323
+ #~ "plugins? Visit the %Extensions Site%s for options."
11324
+ #~ msgstr ""
11325
+ #~ "Saviez-vous que MAINWP dispose d’extensions pour travailler avec des "
11326
+ #~ "extensions de sauvegarde les plus populaires ? Visitez le %ssite des "
11327
+ #~ "extensions%s pour les options."
11328
+
11329
+ # @ mainwp
11330
+ #~ msgid "Upgrading Themes"
11331
+ #~ msgstr "Mise à niveau des Thèmes"
11332
+
11333
+ # @ mainwp
11334
+ #~ msgid "Upgrading Plugins"
11335
+ #~ msgstr "Mise à niveau des Extensions"
11336
+
11337
+ # @ mainwp
11338
+ #~ msgid "Upgrading Wordpress"
11339
+ #~ msgstr "Mise à niveau de WordPress"
11340
+
11341
+ # @ mainwp
11342
+ #~ msgid "Backup Tasks"
11343
+ #~ msgstr "Tâches de sauvegarde"
11344
+
11345
+ # @ mainwp
11346
+ #~ msgid "Right Now"
11347
+ #~ msgstr "État actuel"
11348
+
11349
+ # @ mainwp
11350
+ #~ msgid ""
11351
+ #~ "There was an error syncing some of your sites. %sPlease check this help "
11352
+ #~ "doc for possible solutions%s."
11353
+ #~ msgstr ""
11354
+ #~ "Il y a une erreur de synchronisation pour certains de vos sites. "
11355
+ #~ "%sVérifiez cette aide documentaire pour trouver des solutions%s."
11356
+
11357
+ # @ mainwp
11358
+ #~ msgid "Sync Status"
11359
+ #~ msgstr "Statut de synchronisation"
languages/white-label-cms.pot ADDED
@@ -0,0 +1,933 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #, fuzzy
2
+ msgid ""
3
+ msgstr ""
4
+ "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
5
+ "Project-Id-Version: White Label CMS\n"
6
+ "POT-Creation-Date: 2019-02-20 15:35+0800\n"
7
+ "PO-Revision-Date: 2019-02-14 11:13+0800\n"
8
+ "Last-Translator: \n"
9
+ "Language-Team: \n"
10
+ "MIME-Version: 1.0\n"
11
+ "Content-Type: text/plain; charset=UTF-8\n"
12
+ "Content-Transfer-Encoding: 8bit\n"
13
+ "X-Generator: Poedit 1.8.12\n"
14
+ "X-Poedit-Basepath: ..\n"
15
+ "X-Poedit-WPHeader: wlcms-plugin.php\n"
16
+ "X-Poedit-SourceCharset: UTF-8\n"
17
+ "X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
18
+ "esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;"
19
+ "_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
20
+ "X-Poedit-SearchPath-0: .\n"
21
+ "X-Poedit-SearchPathExcluded-0: *.js\n"
22
+
23
+ #. Plugin Name of the plugin/theme
24
+ #: includes/classes/Admin_Core.php:19 includes/classes/Admin_Core.php:20
25
+ #: view/admin/settings.php:18 view/admin/wizard.php:6
26
+ msgid "White Label CMS"
27
+ msgstr ""
28
+
29
+ #: includes/classes/Branding.php:165
30
+ #, php-format
31
+ msgid "%1s %2$s"
32
+ msgstr ""
33
+
34
+ #: includes/classes/Settings.php:259
35
+ msgid ""
36
+ "<strong>Error!</strong> During the import process we almost imported a non "
37
+ "White Label CMS setting - please ensure you uploaded the correct file and "
38
+ "try again."
39
+ msgstr ""
40
+
41
+ #: view/admin/parts/branding-admin-bar.php:3
42
+ msgid "Admin Bar Logo"
43
+ msgstr ""
44
+
45
+ #: view/admin/parts/branding-admin-bar.php:3
46
+ msgid "Replace the WordPress logo in the admin bar. Max height 20px"
47
+ msgstr ""
48
+
49
+ #: view/admin/parts/branding-admin-bar.php:7
50
+ msgid "Admin Bar Alt Text"
51
+ msgstr ""
52
+
53
+ #: view/admin/parts/branding-admin-bar.php:12
54
+ msgid "Replace the \"WordPress\" Alt text."
55
+ msgstr ""
56
+
57
+ #: view/admin/parts/branding-admin-bar.php:17
58
+ msgid "Replace Howdy Text"
59
+ msgstr ""
60
+
61
+ #: view/admin/parts/branding-admin-bar.php:22
62
+ msgid ""
63
+ "Add a space to completely remove it from the admin bar. Or replace it with "
64
+ "something like: \"Hi,\""
65
+ msgstr ""
66
+
67
+ #: view/admin/parts/branding-admin-bar.php:27
68
+ msgid "Admin Bar URL"
69
+ msgstr ""
70
+
71
+ #: view/admin/parts/branding-admin-bar.php:32
72
+ msgid "Replace the link to WordPress.org."
73
+ msgstr ""
74
+
75
+ #: view/admin/parts/branding-developer.php:3
76
+ #: view/admin/parts/wizard-step-1.php:19
77
+ msgid "Developer Name"
78
+ msgstr ""
79
+
80
+ #: view/admin/parts/branding-developer.php:8
81
+ #: view/admin/parts/wizard-step-1.php:24
82
+ msgid "For use in footer and ALT text's."
83
+ msgstr ""
84
+
85
+ #: view/admin/parts/branding-developer.php:13
86
+ #: view/admin/parts/wizard-step-1.php:29
87
+ msgid "Developer URL"
88
+ msgstr ""
89
+
90
+ #: view/admin/parts/branding-developer.php:18
91
+ #: view/admin/parts/wizard-step-1.php:34
92
+ msgid "For use in footer and admin bar."
93
+ msgstr ""
94
+
95
+ #: view/admin/parts/branding-developer.php:23
96
+ msgid "Developer Icon"
97
+ msgstr ""
98
+
99
+ #: view/admin/parts/branding-developer.php:23
100
+ msgid "We recommend at 16 x 16 image"
101
+ msgstr ""
102
+
103
+ #: view/admin/parts/branding-developer.php:29
104
+ msgid "Use Developer Icon in Footer"
105
+ msgstr ""
106
+
107
+ #: view/admin/parts/branding-developer.php:32
108
+ msgid "If you wish to use a different image for the footer, you can."
109
+ msgstr ""
110
+
111
+ #: view/admin/parts/branding-developer.php:37
112
+ msgid "Developer Footer Icon"
113
+ msgstr ""
114
+
115
+ #: view/admin/parts/branding-developer.php:44
116
+ msgid "Developer Side Menu Image"
117
+ msgstr ""
118
+
119
+ #: view/admin/parts/branding-footer.php:2
120
+ msgid "Footer Image"
121
+ msgstr ""
122
+
123
+ #: view/admin/parts/branding-footer.php:2
124
+ msgid ""
125
+ "Image which will appear in the footer replacing \"Thank you for creating "
126
+ "with WordPress. Max height 50px"
127
+ msgstr ""
128
+
129
+ #: view/admin/parts/branding-footer.php:6 view/admin/parts/wizard-step-1.php:39
130
+ msgid "Footer Text"
131
+ msgstr ""
132
+
133
+ #: view/admin/parts/branding-footer.php:11
134
+ #: view/admin/parts/wizard-step-1.php:44
135
+ msgid "Text which will appear to the right of the Footer Image."
136
+ msgstr ""
137
+
138
+ #: view/admin/parts/branding-footer.php:16
139
+ msgid "Footer URL"
140
+ msgstr ""
141
+
142
+ #: view/admin/parts/branding-footer.php:21
143
+ #: view/admin/parts/branding-wordpress.php:28
144
+ msgid "Replace WordPress in the page titles."
145
+ msgstr ""
146
+
147
+ #: view/admin/parts/branding-footer.php:26
148
+ msgid "or use HTML"
149
+ msgstr ""
150
+
151
+ #: view/admin/parts/branding-footer.php:31
152
+ msgid ""
153
+ "If you would like more control over what appears in the footer, add your own "
154
+ "HTML.<br/>\n"
155
+ "Note: this will overwrite anything set in the Footer Image, Footer Text and "
156
+ "Footer URL."
157
+ msgstr ""
158
+
159
+ #: view/admin/parts/branding-side-menu.php:2
160
+ msgid "Side Menu Image"
161
+ msgstr ""
162
+
163
+ #: view/admin/parts/branding-side-menu.php:2
164
+ msgid "Image will appear at the top of the side menu. Max width 160px"
165
+ msgstr ""
166
+
167
+ #: view/admin/parts/branding-side-menu.php:6
168
+ msgid "Collapsed Side Menu Image"
169
+ msgstr ""
170
+
171
+ #: view/admin/parts/branding-side-menu.php:6
172
+ msgid ""
173
+ "Image will appear at the top of the side menu when it is collapsed. Max "
174
+ "width 36px"
175
+ msgstr ""
176
+
177
+ #: view/admin/parts/branding-side-menu.php:9
178
+ msgid "Side Menu Link URL"
179
+ msgstr ""
180
+
181
+ #: view/admin/parts/branding-side-menu.php:14
182
+ msgid "URL the Side Menu Image will link to."
183
+ msgstr ""
184
+
185
+ #: view/admin/parts/branding-side-menu.php:18
186
+ msgid "Side Menu Alt Text"
187
+ msgstr ""
188
+
189
+ #: view/admin/parts/branding-side-menu.php:23
190
+ msgid "Alt text for the Side Menu Image link."
191
+ msgstr ""
192
+
193
+ #: view/admin/parts/branding-wordpress.php:5
194
+ msgid "Hide WordPress Logo and Links"
195
+ msgstr ""
196
+
197
+ #: view/admin/parts/branding-wordpress.php:8
198
+ msgid "Hide mentions of WordPress and hide the links to WordPress.org."
199
+ msgstr ""
200
+
201
+ #: view/admin/parts/branding-wordpress.php:15
202
+ msgid "Hide WP Version"
203
+ msgstr ""
204
+
205
+ #: view/admin/parts/branding-wordpress.php:18
206
+ msgid "Hide version number of WordPress which appears in the footer."
207
+ msgstr ""
208
+
209
+ #: view/admin/parts/branding-wordpress.php:23
210
+ msgid "Custom Page Titles"
211
+ msgstr ""
212
+
213
+ #: view/admin/parts/branding.php:3
214
+ msgid "WordPress Branding"
215
+ msgstr ""
216
+
217
+ #: view/admin/parts/branding.php:11
218
+ msgid "Admin Bar Branding"
219
+ msgstr ""
220
+
221
+ #: view/admin/parts/branding.php:19
222
+ msgid "Side Menu Branding"
223
+ msgstr ""
224
+
225
+ #: view/admin/parts/branding.php:27
226
+ msgid "Footer Branding"
227
+ msgstr ""
228
+
229
+ #: view/admin/parts/dashboard-custom-welcome-dashboard-panel.php:7
230
+ msgid ""
231
+ "Add your own Welcome Panel to the Dashboard page. This will appear on the "
232
+ "dashboard. We recommend providing your contact details and links to the help "
233
+ "files you have made for your client."
234
+ msgstr ""
235
+
236
+ #: view/admin/parts/dashboard-custom-welcome-dashboard-panel.php:11
237
+ msgid "Add Your Own Welcome Panel"
238
+ msgstr ""
239
+
240
+ #: view/admin/parts/dashboard-custom-welcome-dashboard-panel.php:14
241
+ msgid "You can add your own welcome panel."
242
+ msgstr ""
243
+
244
+ #: view/admin/parts/dashboard-custom-welcome-dashboard-panel.php:18
245
+ #: view/admin/parts/dashboard-custom-welcome-dashboard-panel.php:122
246
+ msgid "Select the Roles the Welcome Panel Will Be Visible To"
247
+ msgstr ""
248
+
249
+ #: view/admin/parts/dashboard-custom-welcome-dashboard-panel.php:24
250
+ #: view/admin/parts/dashboard-custom-welcome-dashboard-panel.php:129
251
+ msgid "Select the user roles this will be visible to."
252
+ msgstr ""
253
+
254
+ #: view/admin/parts/dashboard-custom-welcome-dashboard-panel.php:50
255
+ msgid "Template Type"
256
+ msgstr ""
257
+
258
+ #: view/admin/parts/dashboard-custom-welcome-dashboard-panel.php:53
259
+ #: view/admin/parts/dashboard-custom-welcome-dashboard-panel.php:142
260
+ msgid "Basic HTML"
261
+ msgstr ""
262
+
263
+ #: view/admin/parts/dashboard-custom-welcome-dashboard-panel.php:56
264
+ #: view/admin/parts/dashboard-custom-welcome-dashboard-panel.php:144
265
+ msgid "Elementor"
266
+ msgstr ""
267
+
268
+ #: view/admin/parts/dashboard-custom-welcome-dashboard-panel.php:58
269
+ #: view/admin/parts/dashboard-custom-welcome-dashboard-panel.php:146
270
+ msgid "Beaver Builder Pro"
271
+ msgstr ""
272
+
273
+ #: view/admin/parts/dashboard-custom-welcome-dashboard-panel.php:63
274
+ #: view/admin/parts/dashboard-custom-welcome-dashboard-panel.php:139
275
+ msgid "Template"
276
+ msgstr ""
277
+
278
+ #: view/admin/parts/dashboard-custom-welcome-dashboard-panel.php:72
279
+ msgid "Title of Welcome Panel"
280
+ msgstr ""
281
+
282
+ #: view/admin/parts/dashboard-custom-welcome-dashboard-panel.php:77
283
+ msgid "Title of the Welcome Panel"
284
+ msgstr ""
285
+
286
+ #: view/admin/parts/dashboard-custom-welcome-dashboard-panel.php:82
287
+ msgid "Welcome Panel Description HTML"
288
+ msgstr ""
289
+
290
+ #: view/admin/parts/dashboard-custom-welcome-dashboard-panel.php:86
291
+ msgid "You can add any HTML to the welcome panel."
292
+ msgstr ""
293
+
294
+ #: view/admin/parts/dashboard-custom-welcome-dashboard-panel.php:92
295
+ #: view/admin/parts/dashboard-custom-welcome-dashboard-panel.php:180
296
+ msgid "Make full-width"
297
+ msgstr ""
298
+
299
+ #: view/admin/parts/dashboard-custom-welcome-dashboard-panel.php:99
300
+ #: view/admin/parts/dashboard-custom-welcome-dashboard-panel.php:190
301
+ msgid "Show Title"
302
+ msgstr ""
303
+
304
+ #: view/admin/parts/dashboard-custom-welcome-dashboard-panel.php:115
305
+ msgid "Add Second Panel"
306
+ msgstr ""
307
+
308
+ #: view/admin/parts/dashboard-custom-welcome-dashboard-panel.php:118
309
+ msgid "Add a second custom panel to the Dashboard."
310
+ msgstr ""
311
+
312
+ #: view/admin/parts/dashboard-custom-welcome-dashboard-panel.php:151
313
+ msgid "Page Template"
314
+ msgstr ""
315
+
316
+ #: view/admin/parts/dashboard-custom-welcome-dashboard-panel.php:160
317
+ msgid "Title of Second Panel"
318
+ msgstr ""
319
+
320
+ #: view/admin/parts/dashboard-custom-welcome-dashboard-panel.php:165
321
+ msgid "Title of the Second Panel"
322
+ msgstr ""
323
+
324
+ #: view/admin/parts/dashboard-custom-welcome-dashboard-panel.php:170
325
+ msgid "Second Panel Description (HTML)"
326
+ msgstr ""
327
+
328
+ #: view/admin/parts/dashboard-custom-welcome-dashboard-panel.php:174
329
+ msgid "You can add any HTML to the second panel."
330
+ msgstr ""
331
+
332
+ #: view/admin/parts/dashboard-default-panels.php:10
333
+ msgid "Dashboard Icon"
334
+ msgstr ""
335
+
336
+ #: view/admin/parts/dashboard-default-panels.php:10
337
+ msgid "Add a logo to the Dashboard. Suggested height 40px"
338
+ msgstr ""
339
+
340
+ #: view/admin/parts/dashboard-default-panels.php:14
341
+ msgid "Dashboard Title"
342
+ msgstr ""
343
+
344
+ #: view/admin/parts/dashboard-default-panels.php:19
345
+ msgid "Change the heading for the Dashboard"
346
+ msgstr ""
347
+
348
+ #: view/admin/parts/dashboard-default-panels.php:23
349
+ msgid "Select the Roles the Dashboard Panels Will Be Hidden To"
350
+ msgstr ""
351
+
352
+ #: view/admin/parts/dashboard-default-panels.php:28
353
+ msgid "Select the user roles this will be hidden to."
354
+ msgstr ""
355
+
356
+ #: view/admin/parts/dashboard-default-panels.php:36
357
+ msgid "Hide All Dashboard Panels"
358
+ msgstr ""
359
+
360
+ #: view/admin/parts/dashboard-default-panels.php:38
361
+ msgid ""
362
+ "This will hide all the WordPress default dashboard panels. Or you can "
363
+ "specify which panels should appear."
364
+ msgstr ""
365
+
366
+ #: view/admin/parts/dashboard-default-panels.php:43
367
+ msgid "Hide 'At a Glance'"
368
+ msgstr ""
369
+
370
+ #: view/admin/parts/dashboard-default-panels.php:47
371
+ msgid "Hide 'Activity'"
372
+ msgstr ""
373
+
374
+ #: view/admin/parts/dashboard-default-panels.php:51
375
+ msgid "Hide 'Recent Comments'"
376
+ msgstr ""
377
+
378
+ #: view/admin/parts/dashboard-default-panels.php:55
379
+ msgid "Remove 'Quick Draft'"
380
+ msgstr ""
381
+
382
+ #: view/admin/parts/dashboard-default-panels.php:59
383
+ msgid "Remove WordPress Events and News Widget"
384
+ msgstr ""
385
+
386
+ #: view/admin/parts/dashboard-default-panels.php:63
387
+ msgid "Remove Empty Dashboard Panel"
388
+ msgstr ""
389
+
390
+ #: view/admin/parts/dashboard-rss-dashboard-panel.php:4
391
+ msgid "Add Your Own RSS Panel"
392
+ msgstr ""
393
+
394
+ #: view/admin/parts/dashboard-rss-dashboard-panel.php:7
395
+ msgid ""
396
+ "This will appear on the dashboard. If you want your client to be kept up to "
397
+ "date with what you are doing in your business, set up your RSS feed."
398
+ msgstr ""
399
+
400
+ #: view/admin/parts/dashboard-rss-dashboard-panel.php:13
401
+ msgid "RSS Title"
402
+ msgstr ""
403
+
404
+ #: view/admin/parts/dashboard-rss-dashboard-panel.php:18
405
+ msgid "The title of the RSS Panel"
406
+ msgstr ""
407
+
408
+ #: view/admin/parts/dashboard-rss-dashboard-panel.php:23
409
+ msgid "Add Your Logo"
410
+ msgstr ""
411
+
412
+ #: view/admin/parts/dashboard-rss-dashboard-panel.php:23
413
+ msgid "Add a logo to appear on the panel before the title."
414
+ msgstr ""
415
+
416
+ #: view/admin/parts/dashboard-rss-dashboard-panel.php:27
417
+ #: view/admin/parts/wizard-step-1.php:49
418
+ msgid "RSS Feed"
419
+ msgstr ""
420
+
421
+ #: view/admin/parts/dashboard-rss-dashboard-panel.php:32
422
+ msgid "The RSS feed address. For example feed://"
423
+ msgstr ""
424
+
425
+ #: view/admin/parts/dashboard-rss-dashboard-panel.php:37
426
+ msgid "Number of Items to appear"
427
+ msgstr ""
428
+
429
+ #: view/admin/parts/dashboard-rss-dashboard-panel.php:48
430
+ msgid "Number of RSS items to show."
431
+ msgstr ""
432
+
433
+ #: view/admin/parts/dashboard-rss-dashboard-panel.php:55
434
+ msgid "Show Post Contents"
435
+ msgstr ""
436
+
437
+ #: view/admin/parts/dashboard-rss-dashboard-panel.php:62
438
+ msgid "Introduction HTML"
439
+ msgstr ""
440
+
441
+ #: view/admin/parts/dashboard-rss-dashboard-panel.php:67
442
+ msgid "Add introduction text to appear above the RSS items. You can use HTML."
443
+ msgstr ""
444
+
445
+ #: view/admin/parts/dashboard.php:3
446
+ msgid "Default Panels"
447
+ msgstr ""
448
+
449
+ #: view/admin/parts/dashboard.php:11
450
+ msgid "Custom Welcome Dashboard Panel"
451
+ msgstr ""
452
+
453
+ #: view/admin/parts/dashboard.php:19
454
+ msgid "RSS Dashboard Panel"
455
+ msgstr ""
456
+
457
+ #: view/admin/parts/import-settings.php:4 view/admin/settings.php:57
458
+ msgid "Import Settings"
459
+ msgstr ""
460
+
461
+ #: view/admin/parts/import-settings.php:12
462
+ msgid "To import the settings from another website"
463
+ msgstr ""
464
+
465
+ #: view/admin/parts/live-preview.php:5
466
+ msgid "Close Preview"
467
+ msgstr ""
468
+
469
+ #: view/admin/parts/login-advanced.php:5
470
+ msgid "Hide \"Register / Lost your password?\" link"
471
+ msgstr ""
472
+
473
+ #: view/admin/parts/login-advanced.php:8
474
+ msgid ""
475
+ "Hide the \"Register / Lost your password?\" link which appears below the "
476
+ "login form."
477
+ msgstr ""
478
+
479
+ #: view/admin/parts/login-advanced.php:14
480
+ msgid "Hide \"Back to\" link"
481
+ msgstr ""
482
+
483
+ #: view/admin/parts/login-advanced.php:17
484
+ msgid "Hide the \"Back to\" link which appears below the login form."
485
+ msgstr ""
486
+
487
+ #: view/admin/parts/login-advanced.php:22
488
+ msgid "Form Background Color"
489
+ msgstr ""
490
+
491
+ #: view/admin/parts/login-advanced.php:27
492
+ msgid "Background color of the login form"
493
+ msgstr ""
494
+
495
+ #: view/admin/parts/login-advanced.php:32
496
+ msgid "Form Label Color"
497
+ msgstr ""
498
+
499
+ #: view/admin/parts/login-advanced.php:37
500
+ msgid "Color of the labels on the login form"
501
+ msgstr ""
502
+
503
+ #: view/admin/parts/login-advanced.php:42
504
+ msgid "Form Button Color"
505
+ msgstr ""
506
+
507
+ #: view/admin/parts/login-advanced.php:47
508
+ msgid "Color of the button on the login form"
509
+ msgstr ""
510
+
511
+ #: view/admin/parts/login-advanced.php:52
512
+ msgid "Form Button Hover Color"
513
+ msgstr ""
514
+
515
+ #: view/admin/parts/login-advanced.php:57
516
+ msgid "Hover color of the button on the login form"
517
+ msgstr ""
518
+
519
+ #: view/admin/parts/login-advanced.php:62
520
+ msgid "Form Button Text Color"
521
+ msgstr ""
522
+
523
+ #: view/admin/parts/login-advanced.php:67
524
+ msgid "Color of the text on the button on the login form"
525
+ msgstr ""
526
+
527
+ #: view/admin/parts/login-advanced.php:72
528
+ msgid "Form Button Text Hover Color"
529
+ msgstr ""
530
+
531
+ #: view/admin/parts/login-advanced.php:77
532
+ msgid "Hover color of the text on the button on the login form"
533
+ msgstr ""
534
+
535
+ #: view/admin/parts/login-advanced.php:82
536
+ msgid "Back to / Register Link Color"
537
+ msgstr ""
538
+
539
+ #: view/admin/parts/login-advanced.php:87
540
+ msgid "Color of the link text of Back to / Register"
541
+ msgstr ""
542
+
543
+ #: view/admin/parts/login-advanced.php:92
544
+ msgid "Back to / Register Link Hover Color"
545
+ msgstr ""
546
+
547
+ #: view/admin/parts/login-advanced.php:97
548
+ msgid "Hover color of the link text of Back to / Register"
549
+ msgstr ""
550
+
551
+ #: view/admin/parts/login-advanced.php:102
552
+ msgid "Privacy Policy Link Color"
553
+ msgstr ""
554
+
555
+ #: view/admin/parts/login-advanced.php:107
556
+ msgid "Color of the link text of Privacy Policy"
557
+ msgstr ""
558
+
559
+ #: view/admin/parts/login-advanced.php:112
560
+ msgid "Privacy Policy Link Hover Color"
561
+ msgstr ""
562
+
563
+ #: view/admin/parts/login-advanced.php:117
564
+ msgid "Hover color of the link text of Privacy Policy"
565
+ msgstr ""
566
+
567
+ #: view/admin/parts/login-advanced.php:121
568
+ #: view/admin/parts/login-custom-css.php:18
569
+ #: view/admin/parts/login-logo-and-background.php:96
570
+ msgid "Live Preview"
571
+ msgstr ""
572
+
573
+ #: view/admin/parts/login-custom-css.php:6
574
+ msgid "Completely customise the login page by entering your own CSS."
575
+ msgstr ""
576
+
577
+ #: view/admin/parts/login-custom-css.php:7
578
+ msgid "For example"
579
+ msgstr ""
580
+
581
+ #: view/admin/parts/login-custom-css.php:12
582
+ msgid "Or if you want to get fancy"
583
+ msgstr ""
584
+
585
+ #: view/admin/parts/login-live-preview.php:5
586
+ msgid "Close Login"
587
+ msgstr ""
588
+
589
+ #: view/admin/parts/login-logo-and-background.php:2
590
+ msgid "Login Logo"
591
+ msgstr ""
592
+
593
+ #: view/admin/parts/login-logo-and-background.php:2
594
+ msgid "Replace the WordPress logo on the login page. Max width 320px"
595
+ msgstr ""
596
+
597
+ #: view/admin/parts/login-logo-and-background.php:6
598
+ #: view/admin/parts/wizard-step-2.php:24
599
+ msgid "Retina Login Logo"
600
+ msgstr ""
601
+
602
+ #: view/admin/parts/login-logo-and-background.php:6
603
+ #: view/admin/parts/wizard-step-2.php:28
604
+ msgid ""
605
+ "Replace the Retina WordPress logo on the login page. Please make sure you "
606
+ "use the standard retina format of x2"
607
+ msgstr ""
608
+
609
+ #: view/admin/parts/login-logo-and-background.php:10
610
+ msgid "Logo Width"
611
+ msgstr ""
612
+
613
+ #: view/admin/parts/login-logo-and-background.php:15
614
+ msgid "Add a width to your Login Logo. Max width 320px"
615
+ msgstr ""
616
+
617
+ #: view/admin/parts/login-logo-and-background.php:19
618
+ msgid "Logo Height"
619
+ msgstr ""
620
+
621
+ #: view/admin/parts/login-logo-and-background.php:24
622
+ msgid "Add a height to your Login Logo."
623
+ msgstr ""
624
+
625
+ #: view/admin/parts/login-logo-and-background.php:29
626
+ msgid "Logo Bottom Margin"
627
+ msgstr ""
628
+
629
+ #: view/admin/parts/login-logo-and-background.php:34
630
+ msgid "Add a bottom margin to your Login Logo."
631
+ msgstr ""
632
+
633
+ #: view/admin/parts/login-logo-and-background.php:39
634
+ msgid "Background Color"
635
+ msgstr ""
636
+
637
+ #: view/admin/parts/login-logo-and-background.php:44
638
+ msgid ""
639
+ "Background color for the login page. Changing to White will help your logo "
640
+ "standout."
641
+ msgstr ""
642
+
643
+ #: view/admin/parts/login-logo-and-background.php:49
644
+ msgid "Background Image"
645
+ msgstr ""
646
+
647
+ #: view/admin/parts/login-logo-and-background.php:49
648
+ msgid "Adds a background image to the login page."
649
+ msgstr ""
650
+
651
+ #: view/admin/parts/login-logo-and-background.php:55
652
+ msgid "Full Screen Background Image"
653
+ msgstr ""
654
+
655
+ #: view/admin/parts/login-logo-and-background.php:58
656
+ msgid "Stretch the background image to appear full screen."
657
+ msgstr ""
658
+
659
+ #: view/admin/parts/login-logo-and-background.php:63
660
+ msgid "Background Position"
661
+ msgstr ""
662
+
663
+ #: view/admin/parts/login-logo-and-background.php:78
664
+ msgid "Specify the CSS background position."
665
+ msgstr ""
666
+
667
+ #: view/admin/parts/login-logo-and-background.php:83
668
+ msgid "Background Repeat"
669
+ msgstr ""
670
+
671
+ #: view/admin/parts/login-logo-and-background.php:92
672
+ msgid "Specify the CSS background-repeat."
673
+ msgstr ""
674
+
675
+ #: view/admin/parts/login.php:3
676
+ msgid "Logo and Background"
677
+ msgstr ""
678
+
679
+ #: view/admin/parts/login.php:13
680
+ msgid "Advanced"
681
+ msgstr ""
682
+
683
+ #: view/admin/parts/login.php:22
684
+ msgid "Custom CSS"
685
+ msgstr ""
686
+
687
+ #: view/admin/parts/menus-admin-bar-menus.php:3
688
+ msgid ""
689
+ "Admin Bar Menus will be hidden to all User Roles up to and including Admins "
690
+ "with the exception of White Label CMS Admins and Super Admins"
691
+ msgstr ""
692
+
693
+ #: view/admin/parts/menus-legacy.php:7
694
+ msgid "White Label CMS Legacy Menus"
695
+ msgstr ""
696
+
697
+ #: view/admin/parts/menus-legacy.php:12
698
+ msgid ""
699
+ "You are seeing this because you have installed version 1 of the plugin in "
700
+ "the past."
701
+ msgstr ""
702
+
703
+ #: view/admin/parts/menus-legacy.php:13
704
+ msgid "In version 1 you could only change the menus for Editors."
705
+ msgstr ""
706
+
707
+ #: view/admin/parts/menus-legacy.php:14
708
+ msgid ""
709
+ "We recommend using the new White Label CMS Admin to manage the menus and in "
710
+ "order to do so you must reset the menus to the WordPress Defaults. If you "
711
+ "do this, this section will disappear."
712
+ msgstr ""
713
+
714
+ #: view/admin/parts/menus-legacy.php:18
715
+ msgid "Use the new version"
716
+ msgstr ""
717
+
718
+ #: view/admin/parts/menus-menus.php:3
719
+ msgid ""
720
+ "Menus will be hidden to all User Roles up to and including Admins (with the "
721
+ "exception of White Label CMS Admins and Super Admins)."
722
+ msgstr ""
723
+
724
+ #: view/admin/parts/menus-menus.php:4
725
+ msgid "Select which menus you want to appear."
726
+ msgstr ""
727
+
728
+ #: view/admin/parts/menus-white-label-cms-admin.php:6
729
+ msgid "Want to hide menus for your client?"
730
+ msgstr ""
731
+
732
+ #: view/admin/parts/menus-white-label-cms-admin.php:11
733
+ msgid ""
734
+ "You are now a White Label CMS Admin. This allows you to modify the menus "
735
+ "that other people will see."
736
+ msgstr ""
737
+
738
+ #: view/admin/parts/menus-white-label-cms-admin.php:12
739
+ msgid "You"
740
+ msgstr ""
741
+
742
+ #: view/admin/parts/menus-white-label-cms-admin.php:24
743
+ msgid "Other Admins:"
744
+ msgstr ""
745
+
746
+ #: view/admin/parts/menus-white-label-cms-admin.php:40
747
+ msgid ""
748
+ "By selecting a White Label CMS Admin it means that only the selected Admins "
749
+ "will be able to modify the settings for White Label CMS, as it won't be "
750
+ "visible in the menu to anybody else. <a href=\"https://www.videousermanuals."
751
+ "com/white-label-cms/\" target=\"_blank\">Learn more about this feature</a>."
752
+ msgstr ""
753
+
754
+ #: view/admin/parts/menus.php:4
755
+ msgid "White Label CMS Admin"
756
+ msgstr ""
757
+
758
+ #: view/admin/parts/menus.php:12 view/admin/settings.php:6
759
+ msgid "Menus"
760
+ msgstr ""
761
+
762
+ #: view/admin/parts/menus.php:20
763
+ msgid "Admin Bar Menus"
764
+ msgstr ""
765
+
766
+ #: view/admin/parts/settings-admin-bar-setting.php:5
767
+ msgid "Hide Front-end Admin Bar"
768
+ msgstr ""
769
+
770
+ #: view/admin/parts/settings-admin-bar-setting.php:8
771
+ msgid ""
772
+ "This will disable the admin bar on the front-end for all logged in users"
773
+ msgstr ""
774
+
775
+ #: view/admin/parts/settings-admin-settings.php:5
776
+ msgid "Hide Help Box"
777
+ msgstr ""
778
+
779
+ #: view/admin/parts/settings-admin-settings.php:8
780
+ msgid "Hide the help tab which appears in the top right"
781
+ msgstr ""
782
+
783
+ #: view/admin/parts/settings-admin-settings.php:15
784
+ msgid "Hide Screen Options"
785
+ msgstr ""
786
+
787
+ #: view/admin/parts/settings-admin-settings.php:18
788
+ msgid "Hide the screen options which appear in the top right"
789
+ msgstr ""
790
+
791
+ #: view/admin/parts/settings-custom-css-for-admin.php:5
792
+ msgid ""
793
+ "Override or add to any of the styles in the WordPress admin enter your own "
794
+ "custom css here"
795
+ msgstr ""
796
+
797
+ #: view/admin/parts/settings-custom-editor-stylesheet.php:2
798
+ msgid "Custom Stylesheet URL"
799
+ msgstr ""
800
+
801
+ #: view/admin/parts/settings-custom-editor-stylesheet.php:7
802
+ msgid ""
803
+ "Create and upload a custom stylesheet with all style rules prefixed with ."
804
+ "mceContentBody to your themes directory and enter the filename"
805
+ msgstr ""
806
+
807
+ #: view/admin/parts/settings-nag-messages.php:3
808
+ msgid ""
809
+ "Nag Messages will be hidden to all User Roles up to and including Admins"
810
+ msgstr ""
811
+
812
+ #: view/admin/parts/settings-nag-messages.php:7
813
+ msgid "Nag Update Messages"
814
+ msgstr ""
815
+
816
+ #: view/admin/parts/settings.php:3
817
+ msgid "Admin Bar"
818
+ msgstr ""
819
+
820
+ #: view/admin/parts/settings.php:11
821
+ msgid "Admin Settings"
822
+ msgstr ""
823
+
824
+ #: view/admin/parts/settings.php:19
825
+ msgid "Nag Messages"
826
+ msgstr ""
827
+
828
+ #: view/admin/parts/settings.php:27
829
+ msgid "Custom CSS for Admin"
830
+ msgstr ""
831
+
832
+ #: view/admin/parts/settings.php:35
833
+ msgid "Custom Editor Stylesheet"
834
+ msgstr ""
835
+
836
+ #: view/admin/parts/wizard-step-1.php:14
837
+ msgid "Developer Branding"
838
+ msgstr ""
839
+
840
+ #: view/admin/parts/wizard-step-1.php:17
841
+ msgid ""
842
+ "You can set up White Label CMS quickly by adding your details below, and on "
843
+ "the next page it will ask you about your clients details. Or you can click "
844
+ "the Skip button and add these details later."
845
+ msgstr ""
846
+
847
+ #: view/admin/parts/wizard-step-1.php:54
848
+ msgid "The RSS feed address. For example http://"
849
+ msgstr ""
850
+
851
+ #: view/admin/parts/wizard-step-2.php:3
852
+ msgid "Clients Branding"
853
+ msgstr ""
854
+
855
+ #: view/admin/parts/wizard-step-2.php:9
856
+ msgid "Clients Business Name"
857
+ msgstr ""
858
+
859
+ #: view/admin/parts/wizard-step-2.php:14
860
+ msgid "For use in Admin Page Title and Dashboard Title."
861
+ msgstr ""
862
+
863
+ #: view/admin/parts/wizard-step-2.php:28
864
+ msgid "Upload Login Logo"
865
+ msgstr ""
866
+
867
+ #: view/admin/settings.php:3
868
+ msgid "Branding"
869
+ msgstr ""
870
+
871
+ #: view/admin/settings.php:4
872
+ msgid "Login"
873
+ msgstr ""
874
+
875
+ #: view/admin/settings.php:5
876
+ msgid "Dashboard"
877
+ msgstr ""
878
+
879
+ #: view/admin/settings.php:7
880
+ msgid "Settings"
881
+ msgstr ""
882
+
883
+ #: view/admin/settings.php:34 view/admin/wizard.php:20
884
+ msgid "Save"
885
+ msgstr ""
886
+
887
+ #: view/admin/settings.php:58
888
+ msgid "Export Settings"
889
+ msgstr ""
890
+
891
+ #: view/admin/settings.php:59
892
+ msgid "Reset Plugin"
893
+ msgstr ""
894
+
895
+ #: view/admin/wizard.php:11
896
+ msgid "Quick Setup Wizard: Step 1 of 2 - Developers Branding"
897
+ msgstr ""
898
+
899
+ #: view/admin/wizard.php:13
900
+ msgid "Skip"
901
+ msgstr ""
902
+
903
+ #: view/admin/wizard.php:14
904
+ msgid "Next"
905
+ msgstr ""
906
+
907
+ #: view/admin/wizard.php:17
908
+ msgid "Quick Setup Wizard: Step 2 of 2 - Clients Branding"
909
+ msgstr ""
910
+
911
+ #: view/admin/wizard.php:19
912
+ msgid "Back to step 1"
913
+ msgstr ""
914
+
915
+ #. Plugin URI of the plugin/theme
916
+ msgid ""
917
+ "http://www.videousermanuals.com/white-label-cms/?"
918
+ "utm_campaign=wlcms&utm_medium=plugin&utm_source=readme-txt"
919
+ msgstr ""
920
+
921
+ #. Description of the plugin/theme
922
+ msgid "A plugin that allows you to brand WordPress CMS as your own"
923
+ msgstr ""
924
+
925
+ #. Author of the plugin/theme
926
+ msgid "www.videousermanuals.com"
927
+ msgstr ""
928
+
929
+ #. Author URI of the plugin/theme
930
+ msgid ""
931
+ "http://www.videousermanuals.com/?"
932
+ "utm_campaign=wlcms&utm_medium=plugin&utm_source=readme-txt"
933
+ msgstr ""
readme.txt CHANGED
@@ -9,7 +9,7 @@ Author: Video User Manuals
9
  Requires at least: 3.3
10
  Requires PHP: 5.4
11
  Tested up to: 5.1
12
- Stable tag: 2.0.2.2
13
 
14
  Customise dashboard panels and branding, hide menus plus lots more.
15
 
@@ -66,6 +66,11 @@ There is so much that you can do with White Label CMS, but we want the experienc
66
 
67
  == Changelog ==
68
 
 
 
 
 
 
69
  = 2.0.2.2 =
70
  * Use space to remove howdy
71
  * Change login logo url if custom logo setup
9
  Requires at least: 3.3
10
  Requires PHP: 5.4
11
  Tested up to: 5.1
12
+ Stable tag: 2.1
13
 
14
  Customise dashboard panels and branding, hide menus plus lots more.
15
 
66
 
67
  == Changelog ==
68
 
69
+ = 2.1 =
70
+ * Support Internationalization
71
+ * Added a body class to differentiate WLCMS Admin or not, by adding body.not-wlcms-admin or and body.wlcms-admin
72
+ * Minor fixes
73
+
74
  = 2.0.2.2 =
75
  * Use space to remove howdy
76
  * Change login logo url if custom logo setup
view/admin/parts/branding-admin-bar.php CHANGED
@@ -1,34 +1,34 @@
1
 
2
  <div class="wlcms-input-group">
3
- <?php echo wlcms_form_upload_field('Admin Bar Logo', 'admin_bar_logo', 'Replace the WordPress logo in the admin bar. Max height 20px') ?>
4
  </div>
5
 
6
  <div class="wlcms-input-group">
7
- <label><?php _e('Admin Bar Alt Text', 'wlcms') ?></label>
8
  <div class="wlcms-input">
9
  <input type="text" name="admin_bar_alt_text" value="<?php echo wlcms_field_setting('admin_bar_alt_text') ?>" />
10
  </div>
11
  <div class="wlcms-help">
12
- <?php _e('Replace the "WordPress" Alt text.', 'wlcms') ?>
13
  </div>
14
  </div>
15
 
16
  <div class="wlcms-input-group">
17
- <label><?php _e('Replace Howdy Text', 'wlcms') ?></label>
18
  <div class="wlcms-input">
19
  <input type="text" name="admin_bar_howdy_text" value="<?php echo wlcms_field_setting('admin_bar_howdy_text') ?>" />
20
  </div>
21
  <div class="wlcms-help">
22
- <?php _e('Add a space to completely remove it from the admin bar. Or replace it with something like: "Hi,"', 'wlcms') ?>
23
  </div>
24
  </div>
25
 
26
  <div class="wlcms-input-group">
27
- <label><?php _e('Admin Bar URL', 'wlcms') ?></label>
28
  <div class="wlcms-input">
29
  <input type="url" name="admin_bar_url" value="<?php echo wlcms_field_setting('admin_bar_url') ?>" />
30
  </div>
31
  <div class="wlcms-help">
32
- <?php _e('Replace the link to WordPress.org.', 'wlcms') ?>
33
  </div>
34
  </div>
1
 
2
  <div class="wlcms-input-group">
3
+ <?php echo wlcms_form_upload_field(__('Admin Bar Logo', 'white-label-cms'), 'admin_bar_logo', __('Replace the WordPress logo in the admin bar. Max height 20px', 'white-label-cms')) ?>
4
  </div>
5
 
6
  <div class="wlcms-input-group">
7
+ <label><?php _e('Admin Bar Alt Text', 'white-label-cms') ?></label>
8
  <div class="wlcms-input">
9
  <input type="text" name="admin_bar_alt_text" value="<?php echo wlcms_field_setting('admin_bar_alt_text') ?>" />
10
  </div>
11
  <div class="wlcms-help">
12
+ <?php _e('Replace the "WordPress" Alt text.', 'white-label-cms') ?>
13
  </div>
14
  </div>
15
 
16
  <div class="wlcms-input-group">
17
+ <label><?php _e('Replace Howdy Text', 'white-label-cms') ?></label>
18
  <div class="wlcms-input">
19
  <input type="text" name="admin_bar_howdy_text" value="<?php echo wlcms_field_setting('admin_bar_howdy_text') ?>" />
20
  </div>
21
  <div class="wlcms-help">
22
+ <?php _e('Add a space to completely remove it from the admin bar. Or replace it with something like: "Hi,"', 'white-label-cms') ?>
23
  </div>
24
  </div>
25
 
26
  <div class="wlcms-input-group">
27
+ <label><?php _e('Admin Bar URL', 'white-label-cms') ?></label>
28
  <div class="wlcms-input">
29
  <input type="url" name="admin_bar_url" value="<?php echo wlcms_field_setting('admin_bar_url') ?>" />
30
  </div>
31
  <div class="wlcms-help">
32
+ <?php _e('Replace the link to WordPress.org.', 'white-label-cms') ?>
33
  </div>
34
  </div>
view/admin/parts/branding-developer.php CHANGED
@@ -1,26 +1,26 @@
1
 
2
  <div class="wlcms-input-group">
3
- <label><?php _e('Developer Name', 'wlcms') ?></label>
4
  <div class="wlcms-input">
5
  <input type="text" name="developer_name" value="<?php echo wlcms_field_setting('developer_name') ?>" />
6
  </div>
7
  <div class="wlcms-help">
8
- <?php _e('For use in footer and ALT text\'s.', 'wlcms') ?>
9
  </div>
10
  </div>
11
 
12
  <div class="wlcms-input-group">
13
- <label><?php _e('Developer URL', 'wlcms') ?></label>
14
  <div class="wlcms-input">
15
  <input type="url" name="developer_url" value="<?php echo wlcms_field_setting('developer_url') ?>" />
16
  </div>
17
  <div class="wlcms-help">
18
- <?php _e('For use in footer and admin bar.', 'wlcms') ?>
19
  </div>
20
  </div>
21
 
22
  <div class="wlcms-input-group">
23
- <?php echo wlcms_form_upload_field('Developer Icon', 'developer_icon', 'We recommend at 16 x 16 image') ?>
24
  </div>
25
 
26
  <div class="wlcms-input-group toggle-group">
@@ -29,17 +29,17 @@
29
  <label class="wlcms-toggle-btn" for="use_developer_icon_footer"></label><label class="toggle-label" for="use_developer_icon_footer"><?php _e('Use Developer Icon in Footer');?></label>
30
  </div>
31
  <div class="wlcms-help">
32
- <?php _e('If you wish to use a different image for the footer, you can.', 'wlcms') ?>
33
  </div>
34
 
35
  <div class="sub-fields">
36
  <div class="wlcms-input-group">
37
- <?php echo wlcms_form_upload_field('Developer Footer Icon', 'developer_icon_footer_url', 'Image will appear in footer menu.') ?>
38
  </div>
39
 
40
  </div>
41
  </div>
42
 
43
  <div class="wlcms-input-group">
44
- <?php echo wlcms_form_upload_field('Developer Side Menu Image', 'developer_side_menu_image', 'Image will appear in side menu.') ?>
45
  </div>
1
 
2
  <div class="wlcms-input-group">
3
+ <label><?php _e('Developer Name', 'white-label-cms') ?></label>
4
  <div class="wlcms-input">
5
  <input type="text" name="developer_name" value="<?php echo wlcms_field_setting('developer_name') ?>" />
6
  </div>
7
  <div class="wlcms-help">
8
+ <?php _e('For use in footer and ALT text\'s.', 'white-label-cms') ?>
9
  </div>
10
  </div>
11
 
12
  <div class="wlcms-input-group">
13
+ <label><?php _e('Developer URL', 'white-label-cms') ?></label>
14
  <div class="wlcms-input">
15
  <input type="url" name="developer_url" value="<?php echo wlcms_field_setting('developer_url') ?>" />
16
  </div>
17
  <div class="wlcms-help">
18
+ <?php _e('For use in footer and admin bar.', 'white-label-cms') ?>
19
  </div>
20
  </div>
21
 
22
  <div class="wlcms-input-group">
23
+ <?php echo wlcms_form_upload_field(__('Developer Icon', 'white-label-cms'), 'developer_icon', __('We recommend at 16 x 16 image', 'white-label-cms')) ?>
24
  </div>
25
 
26
  <div class="wlcms-input-group toggle-group">
29
  <label class="wlcms-toggle-btn" for="use_developer_icon_footer"></label><label class="toggle-label" for="use_developer_icon_footer"><?php _e('Use Developer Icon in Footer');?></label>
30
  </div>
31
  <div class="wlcms-help">
32
+ <?php _e('If you wish to use a different image for the footer, you can.', 'white-label-cms') ?>
33
  </div>
34
 
35
  <div class="sub-fields">
36
  <div class="wlcms-input-group">
37
+ <?php echo wlcms_form_upload_field(__('Developer Footer Icon', 'white-label-cms'), 'developer_icon_footer_url', __x('Image will appear in footer menu.', 'white-label-cms')) ?>
38
  </div>
39
 
40
  </div>
41
  </div>
42
 
43
  <div class="wlcms-input-group">
44
+ <?php echo wlcms_form_upload_field(__('Developer Side Menu Image', 'white-label-cms'), 'developer_side_menu_image', __x('Image will appear in side menu.', 'white-label-cms')) ?>
45
  </div>
view/admin/parts/branding-footer.php CHANGED
@@ -1,34 +1,34 @@
1
  <div class="wlcms-input-group">
2
- <?php echo wlcms_form_upload_field('Footer Image', 'footer_image', 'Image which will appear in the footer replacing "Thank you for creating with WordPress. Max height 50px') ?>
3
  </div>
4
 
5
  <div class="wlcms-input-group">
6
- <label><?php _e('Footer Text', 'wlcms') ?></label>
7
  <div class="wlcms-input">
8
  <input type="text" name="footer_text" value="<?php echo wlcms_field_setting('footer_text') ?>" />
9
  </div>
10
  <div class="wlcms-help">
11
- <?php _e('Text which will appear to the right of the Footer Image.', 'wlcms') ?>
12
  </div>
13
  </div>
14
 
15
  <div class="wlcms-input-group">
16
- <label><?php _e('Footer URL', 'wlcms') ?></label>
17
  <div class="wlcms-input">
18
  <input type="url" name="footer_url" value="<?php echo wlcms_field_setting('footer_url') ?>" />
19
  </div>
20
  <div class="wlcms-help">
21
- <?php _e('Replace WordPress in the page titles.', 'wlcms') ?>
22
  </div>
23
  </div>
24
 
25
  <div class="wlcms-input-group">
26
- <label><?php _e('or use HTML', 'wlcms') ?></label>
27
  <div class="wlcms-input">
28
  <textarea name="footer_html" class="textarea-full" id="footer_html"><?php echo wlcms_field_setting('footer_html') ?></textarea>
29
  </div>
30
  <div class="wlcms-help">
31
  <?php _e('If you would like more control over what appears in the footer, add your own HTML.<br/>
32
- Note: this will overwrite anything set in the Footer Image, Footer Text and Footer URL.', 'wlcms') ?>
33
  </div>
34
  </div>
1
  <div class="wlcms-input-group">
2
+ <?php echo wlcms_form_upload_field(__('Footer Image', 'white-label-cms'), 'footer_image', __('Image which will appear in the footer replacing "Thank you for creating with WordPress. Max height 50px', 'white-label-cms')) ?>
3
  </div>
4
 
5
  <div class="wlcms-input-group">
6
+ <label><?php _e('Footer Text', 'white-label-cms') ?></label>
7
  <div class="wlcms-input">
8
  <input type="text" name="footer_text" value="<?php echo wlcms_field_setting('footer_text') ?>" />
9
  </div>
10
  <div class="wlcms-help">
11
+ <?php _e('Text which will appear to the right of the Footer Image.', 'white-label-cms') ?>
12
  </div>
13
  </div>
14
 
15
  <div class="wlcms-input-group">
16
+ <label><?php _e('Footer URL', 'white-label-cms') ?></label>
17
  <div class="wlcms-input">
18
  <input type="url" name="footer_url" value="<?php echo wlcms_field_setting('footer_url') ?>" />
19
  </div>
20
  <div class="wlcms-help">
21
+ <?php _e('Replace WordPress in the page titles.', 'white-label-cms') ?>
22
  </div>
23
  </div>
24
 
25
  <div class="wlcms-input-group">
26
+ <label><?php _e('or use HTML', 'white-label-cms') ?></label>
27
  <div class="wlcms-input">
28
  <textarea name="footer_html" class="textarea-full" id="footer_html"><?php echo wlcms_field_setting('footer_html') ?></textarea>
29
  </div>
30
  <div class="wlcms-help">
31
  <?php _e('If you would like more control over what appears in the footer, add your own HTML.<br/>
32
+ Note: this will overwrite anything set in the Footer Image, Footer Text and Footer URL.', 'white-label-cms') ?>
33
  </div>
34
  </div>
view/admin/parts/branding-side-menu.php CHANGED
@@ -1,25 +1,25 @@
1
  <div class="wlcms-input-group">
2
- <?php echo wlcms_form_upload_field('Side Menu Image', 'side_menu_image', 'Image will appear at the top of the side menu. Max width 160px') ?>
3
  </div>
4
 
5
  <div class="wlcms-input-group">
6
- <?php echo wlcms_form_upload_field('Collapsed Side Menu Image', 'collapsed_side_menu_image', 'Image will appear at the top of the side menu when it is collapsed. Max width 36px') ?>
7
  </div>
8
  <div class="wlcms-input-group">
9
- <label><?php _e('Side Menu Link URL', 'wlcms') ?></label>
10
  <div class="wlcms-input">
11
  <input type="url" name="side_menu_link_url" value="<?php echo wlcms_field_setting('side_menu_link_url') ?>" />
12
  </div>
13
  <div class="wlcms-help">
14
- <?php _e('URL the Side Menu Image will link to.', 'wlcms') ?>
15
  </div>
16
  </div>
17
  <div class="wlcms-input-group">
18
- <label><?php _e('Side Menu Alt Text', 'wlcms') ?></label>
19
  <div class="wlcms-input">
20
  <input type="text" name="side_menu_alt_text" value="<?php echo wlcms_field_setting('side_menu_alt_text') ?>" />
21
  </div>
22
  <div class="wlcms-help">
23
- <?php _e('Alt text for the Side Menu Image link.', 'wlcms') ?>
24
  </div>
25
  </div>
1
  <div class="wlcms-input-group">
2
+ <?php echo wlcms_form_upload_field(__('Side Menu Image', 'white-label-cms'), 'side_menu_image', __('Image will appear at the top of the side menu. Max width 160px', 'white-label-cms')) ?>
3
  </div>
4
 
5
  <div class="wlcms-input-group">
6
+ <?php echo wlcms_form_upload_field(__('Collapsed Side Menu Image', 'white-label-cms'), 'collapsed_side_menu_image', __('Image will appear at the top of the side menu when it is collapsed. Max width 36px', 'white-label-cms')) ?>
7
  </div>
8
  <div class="wlcms-input-group">
9
+ <label><?php _e('Side Menu Link URL', 'white-label-cms') ?></label>
10
  <div class="wlcms-input">
11
  <input type="url" name="side_menu_link_url" value="<?php echo wlcms_field_setting('side_menu_link_url') ?>" />
12
  </div>
13
  <div class="wlcms-help">
14
+ <?php _e('URL the Side Menu Image will link to.', 'white-label-cms') ?>
15
  </div>
16
  </div>
17
  <div class="wlcms-input-group">
18
+ <label><?php _e('Side Menu Alt Text', 'white-label-cms') ?></label>
19
  <div class="wlcms-input">
20
  <input type="text" name="side_menu_alt_text" value="<?php echo wlcms_field_setting('side_menu_alt_text') ?>" />
21
  </div>
22
  <div class="wlcms-help">
23
+ <?php _e('Alt text for the Side Menu Image link.', 'white-label-cms') ?>
24
  </div>
25
  </div>
view/admin/parts/branding-wordpress.php CHANGED
@@ -2,29 +2,29 @@
2
  <div class="wlcms-input-group">
3
  <div class="wlcms-input">
4
  <input class="wlcms-toggle wlcms-toggle-light" name="hide_wordpress_logo_and_links" value="1" id="hide_wordpress_logo_and_links" type="checkbox" <?php checked(wlcms_field_setting('hide_wordpress_logo_and_links'), 1, true) ?>/>
5
- <label class="wlcms-toggle-btn" for="hide_wordpress_logo_and_links"></label><label class="toggle-label" for="hide_wordpress_logo_and_links"><?php _e('Hide WordPress Logo and Links', 'wlcms') ?></label>
6
  </div>
7
  <div class="wlcms-help">
8
- <?php _e('Hide mentions of WordPress and hide the links to WordPress.org.', 'wlcms') ?>
9
  </div>
10
  </div>
11
 
12
  <div class="wlcms-input-group">
13
  <div class="wlcms-input">
14
  <input class="wlcms-toggle wlcms-toggle-light" id="hide_wp_version" name="hide_wp_version" value="1" type="checkbox" <?php checked(wlcms_field_setting('hide_wp_version'), 1, true) ?>/>
15
- <label class="wlcms-toggle-btn" for="hide_wp_version"></label><label class="toggle-label" for="hide_wp_version"><?php _e('Hide WP Version', 'wlcms') ?></label>
16
  </div>
17
  <div class="wlcms-help">
18
- <?php _e('Hide version number of WordPress which appears in the footer.', 'wlcms') ?>
19
  </div>
20
  </div>
21
 
22
  <div class="wlcms-input-group">
23
- <label><?php _e('Custom Page Titles', 'wlcms') ?></label>
24
  <div class="wlcms-input">
25
  <input type="text" name="custom_page_title" value="<?php echo wlcms_field_setting('custom_page_title') ?>" />
26
  </div>
27
  <div class="wlcms-help">
28
- <?php _e('Replace WordPress in the page titles.', 'wlcms') ?>
29
  </div>
30
  </div>
2
  <div class="wlcms-input-group">
3
  <div class="wlcms-input">
4
  <input class="wlcms-toggle wlcms-toggle-light" name="hide_wordpress_logo_and_links" value="1" id="hide_wordpress_logo_and_links" type="checkbox" <?php checked(wlcms_field_setting('hide_wordpress_logo_and_links'), 1, true) ?>/>
5
+ <label class="wlcms-toggle-btn" for="hide_wordpress_logo_and_links"></label><label class="toggle-label" for="hide_wordpress_logo_and_links"><?php _e('Hide WordPress Logo and Links', 'white-label-cms') ?></label>
6
  </div>
7
  <div class="wlcms-help">
8
+ <?php _e('Hide mentions of WordPress and hide the links to WordPress.org.', 'white-label-cms') ?>
9
  </div>
10
  </div>
11
 
12
  <div class="wlcms-input-group">
13
  <div class="wlcms-input">
14
  <input class="wlcms-toggle wlcms-toggle-light" id="hide_wp_version" name="hide_wp_version" value="1" type="checkbox" <?php checked(wlcms_field_setting('hide_wp_version'), 1, true) ?>/>
15
+ <label class="wlcms-toggle-btn" for="hide_wp_version"></label><label class="toggle-label" for="hide_wp_version"><?php _e('Hide WP Version', 'white-label-cms') ?></label>
16
  </div>
17
  <div class="wlcms-help">
18
+ <?php _e('Hide version number of WordPress which appears in the footer.', 'white-label-cms') ?>
19
  </div>
20
  </div>
21
 
22
  <div class="wlcms-input-group">
23
+ <label><?php _e('Custom Page Titles', 'white-label-cms') ?></label>
24
  <div class="wlcms-input">
25
  <input type="text" name="custom_page_title" value="<?php echo wlcms_field_setting('custom_page_title') ?>" />
26
  </div>
27
  <div class="wlcms-help">
28
+ <?php _e('Replace WordPress in the page titles.', 'white-label-cms') ?>
29
  </div>
30
  </div>
view/admin/parts/branding.php CHANGED
@@ -1,6 +1,6 @@
1
  <div class="wlcms-body-wrapper">
2
  <div class="wlcms-body-header">
3
- <h2><?php _e('WordPress Branding', 'wlcms') ?></h2>
4
  </div>
5
  <div class="wlcms-body-main">
6
  <?php wlcms()->admin_view('parts/branding-wordpress'); ?>
@@ -8,7 +8,7 @@
8
  </div>
9
  <div class="wlcms-body-wrapper">
10
  <div class="wlcms-body-header">
11
- <h2><?php _e('Admin Bar Branding', 'wlcms') ?></h2>
12
  </div>
13
  <div class="wlcms-body-main">
14
  <?php wlcms()->admin_view('parts/branding-admin-bar'); ?>
@@ -16,7 +16,7 @@
16
  </div>
17
  <div class="wlcms-body-wrapper">
18
  <div class="wlcms-body-header">
19
- <h2><?php _e('Side Menu Branding', 'wlcms') ?></h2>
20
  </div>
21
  <div class="wlcms-body-main">
22
  <?php wlcms()->admin_view('parts/branding-side-menu'); ?>
@@ -24,7 +24,7 @@
24
  </div>
25
  <div class="wlcms-body-wrapper">
26
  <div class="wlcms-body-header">
27
- <h2><?php _e('Footer Branding', 'wlcms') ?></h2>
28
  </div>
29
  <div class="wlcms-body-main">
30
  <?php wlcms()->admin_view('parts/branding-footer'); ?>
1
  <div class="wlcms-body-wrapper">
2
  <div class="wlcms-body-header">
3
+ <h2><?php _e('WordPress Branding', 'white-label-cms') ?></h2>
4
  </div>
5
  <div class="wlcms-body-main">
6
  <?php wlcms()->admin_view('parts/branding-wordpress'); ?>
8
  </div>
9
  <div class="wlcms-body-wrapper">
10
  <div class="wlcms-body-header">
11
+ <h2><?php _e('Admin Bar Branding', 'white-label-cms') ?></h2>
12
  </div>
13
  <div class="wlcms-body-main">
14
  <?php wlcms()->admin_view('parts/branding-admin-bar'); ?>
16
  </div>
17
  <div class="wlcms-body-wrapper">
18
  <div class="wlcms-body-header">
19
+ <h2><?php _e('Side Menu Branding', 'white-label-cms') ?></h2>
20
  </div>
21
  <div class="wlcms-body-main">
22
  <?php wlcms()->admin_view('parts/branding-side-menu'); ?>
24
  </div>
25
  <div class="wlcms-body-wrapper">
26
  <div class="wlcms-body-header">
27
+ <h2><?php _e('Footer Branding', 'white-label-cms') ?></h2>
28
  </div>
29
  <div class="wlcms-body-main">
30
  <?php wlcms()->admin_view('parts/branding-footer'); ?>
view/admin/parts/dashboard-custom-welcome-dashboard-panel.php CHANGED
@@ -4,24 +4,24 @@ $welcome_panel_is_active = wlcms_welcome_value(0, 'is_active');
4
  ?>
5
  <div class="wlcms-input-group toggle-group">
6
  <div class="wlcms-help">
7
- <?php _e('Add your own Welcome Panel to the Dashboard page. This will appear on the dashboard. We recommend providing your contact details and links to the help files you have made for your client.', 'wlcms') ?>
8
  </div>
9
  <div class="wlcms-input">
10
  <input class="wlcms-toggle wlcms-toggle-light main-toggle" id="welcome_panel" data-revised="1" name="welcome_panel[0][is_active]" value="1" type="checkbox" <?php checked($welcome_panel_is_active, 1, true) ?>/>
11
- <label class="wlcms-toggle-btn" for="welcome_panel"></label><label class="toggle-label" for="welcome_panel"><?php _e('Add Your Own Welcome Panel', 'wlcms') ?></label>
12
  </div>
13
  <div class="wlcms-help">
14
- <?php _e('You can add your own welcome panel.', 'wlcms') ?>
15
  </div>
16
  <div class="sub-fields">
17
  <div class="wlcms-help"></div>
18
- <label><?php _e('Select the Roles the Welcome Panel Will Be Visible To', 'wlcms') ?></label>
19
 
20
  <?php
21
  echo wlcms_select_roles(array('name' => 'welcome_panel[0][visible_to]', 'class' => 'wlcms_visible_to wlcms-select2'), wlcms_welcome_value(0, 'visible_to'));
22
  ?>
23
  <div class="wlcms-help">
24
- <?php _e('Select the user roles this will be visible to.', 'wlcms') ?>
25
  </div>
26
  <?php
27
  $checked_welcome_type = wlcms_welcome_value(0, 'template_type');
@@ -47,7 +47,7 @@ $welcome_panel_is_active = wlcms_welcome_value(0, 'is_active');
47
 
48
  ?>
49
  <div class="wlcms-input-group">
50
- <label><?php _e('Template Type', 'wlcms') ?></label>
51
  <div class="wlcms-input">
52
  <input class="wlcms-toggle wlcms-toggle-light template_type template_type1" data-template_type="1" data-page_type="html" id="template_type_basic" value="html" name="welcome_panel[0][template_type]" <?php checked($is_basic, true, true) ?> type="radio"/>
53
  <label class="wlcms-toggle-btn" for="template_type_basic"></label><label class="toggle-label" for="template_type_basic"><?php _e('Basic HTML');?></label>
@@ -60,7 +60,7 @@ $welcome_panel_is_active = wlcms_welcome_value(0, 'is_active');
60
  </div>
61
 
62
  <div class="welcome-page1">
63
- <label><?php _e('Template', 'wlcms') ?></label>
64
  <div class="wlcms-input">
65
  <?php
66
  echo wlcms_select_pages(array('name' => 'welcome_panel[0][page_id_elementor]', 'class' => 'wlcms_visible_to wlcms-select2 elementor_page1'), wlcms_welcome_value(0, 'page_id_elementor'), $elementor_args);
@@ -69,21 +69,21 @@ $welcome_panel_is_active = wlcms_welcome_value(0, 'is_active');
69
  </div>
70
  </div>
71
  <div class="welcome-basicHtml1">
72
- <label><?php _e('Title of Welcome Panel', 'wlcms') ?></label>
73
  <div class="wlcms-input">
74
  <input type="text" name="welcome_panel[0][title]" value="<?php echo wlcms_welcome_value(0, 'title') ?>" />
75
  </div>
76
  <div class="wlcms-help">
77
- <?php _e('Title of the Welcome Panel', 'wlcms') ?>
78
  </div>
79
  </div>
80
 
81
  <div class="welcome-basicHtml1">
82
- <label><?php _e('Welcome Panel Description HTML', 'wlcms') ?></label>
83
  <div class="wlcms-input">
84
  <textarea class="textarea-full" name="welcome_panel[0][description]"><?php echo wlcms_welcome_value(0, 'description') ?></textarea>
85
  </div>
86
- <div class="wlcms-help"><?php _e('You can add any HTML to the welcome panel.', 'wlcms') ?></div>
87
  </div>
88
 
89
  <div class="welcome-basicHtml1">
@@ -112,21 +112,21 @@ $welcome_panel_is_active = wlcms_welcome_value(1, 'is_active');
112
  <div class="wlcms-input-group toggle-group">
113
  <div class="wlcms-input">
114
  <input class="wlcms-toggle wlcms-toggle-light main-toggle" id="add_second_panel" data-revised="1" name="welcome_panel[1][is_active]" value="1" type="checkbox" <?php checked($welcome_panel_is_active, 1, true) ?>/>
115
- <label class="wlcms-toggle-btn" for="add_second_panel"></label><label class="toggle-label" for="add_second_panel"><?php _e('Add Second Panel', 'wlcms') ?></label>
116
  </div>
117
  <div class="wlcms-help">
118
- <?php _e('Add a second custom panel to the Dashboard.', 'wlcms') ?>
119
  </div>
120
  <div class="sub-fields">
121
  <div class="wlcms-help"></div>
122
- <label><?php _e('Select the Roles the Welcome Panel Will Be Visible To', 'wlcms') ?></label>
123
  <div class="wlcms-input">
124
  <?php
125
  echo wlcms_select_roles(array('name' => 'welcome_panel[1][visible_to]', 'class' => 'wlcms_visible_to wlcms-select2'), wlcms_welcome_value(1, 'visible_to'));
126
  ?>
127
  </div>
128
  <div class="wlcms-help">
129
- <?php _e('Select the user roles this will be visible to.', 'wlcms') ?>
130
  </div>
131
 
132
  <?php
@@ -136,7 +136,7 @@ $welcome_panel_is_active = wlcms_welcome_value(1, 'is_active');
136
 
137
  ?>
138
  <div class="wlcms-input-group">
139
- <label><?php _e('Template', 'wlcms') ?></label>
140
  <div class="wlcms-input">
141
  <input class="wlcms-toggle wlcms-toggle-light template_type template_type2" data-template_type="2" data-page_type="html" id="template_type_basic2" value="html" name="welcome_panel[1][template_type]" <?php checked($is_basic, true, true) ?> type="radio"/>
142
  <label class="wlcms-toggle-btn" for="template_type_basic2"></label><label class="toggle-label" for="template_type_basic2"><?php _e('Basic HTML');?></label>
@@ -148,7 +148,7 @@ $welcome_panel_is_active = wlcms_welcome_value(1, 'is_active');
148
  </div>
149
 
150
  <div class="welcome-page2">
151
- <label><?php _e('Page Template', 'wlcms') ?></label>
152
  <div class="wlcms-input">
153
  <?php
154
  echo wlcms_select_pages(array('name' => 'welcome_panel[1][page_id_elementor]', 'class' => 'wlcms_visible_to wlcms-select2 elementor_page2'), wlcms_welcome_value(1, 'page_id_elementor'), $elementor_args);
@@ -157,21 +157,21 @@ $welcome_panel_is_active = wlcms_welcome_value(1, 'is_active');
157
  </div>
158
  </div>
159
  <div class="welcome-basicHtml2">
160
- <label><?php _e('Title of Second Panel', 'wlcms') ?></label>
161
  <div class="wlcms-input">
162
  <input type="text" name="welcome_panel[1][title]" value="<?php echo wlcms_welcome_value(1, 'title') ?>" />
163
  </div>
164
  <div class="wlcms-help">
165
- <?php _e('Title of the Second Panel', 'wlcms') ?>
166
  </div>
167
  </div>
168
 
169
  <div class="welcome-basicHtml2">
170
- <label><?php _e('Second Panel Description (HTML)', 'wlcms') ?></label>
171
  <div class="wlcms-input">
172
  <textarea class="textarea-full" name="welcome_panel[1][description]"><?php echo wlcms_welcome_value(1, 'description') ?></textarea>
173
  </div>
174
- <div class="wlcms-help"><?php _e('You can add any HTML to the second panel.', 'wlcms') ?></div>
175
  </div>
176
 
177
  <div class="welcome-basicHtml2">
@@ -180,7 +180,6 @@ $welcome_panel_is_active = wlcms_welcome_value(1, 'is_active');
180
  <label class="wlcms-toggle-btn" for="second_welcome_panel_fullwidth"></label><label class="toggle-label" for="second_welcome_panel_fullwidth"><?php _e('Make full-width');?></label>
181
  </div>
182
  <div class="wlcms-help">
183
- <?php _e('', 'wlcms') ?>
184
  </div>
185
  </div>
186
 
4
  ?>
5
  <div class="wlcms-input-group toggle-group">
6
  <div class="wlcms-help">
7
+ <?php _e('Add your own Welcome Panel to the Dashboard page. This will appear on the dashboard. We recommend providing your contact details and links to the help files you have made for your client.', 'white-label-cms') ?>
8
  </div>
9
  <div class="wlcms-input">
10
  <input class="wlcms-toggle wlcms-toggle-light main-toggle" id="welcome_panel" data-revised="1" name="welcome_panel[0][is_active]" value="1" type="checkbox" <?php checked($welcome_panel_is_active, 1, true) ?>/>
11
+ <label class="wlcms-toggle-btn" for="welcome_panel"></label><label class="toggle-label" for="welcome_panel"><?php _e('Add Your Own Welcome Panel', 'white-label-cms') ?></label>
12
  </div>
13
  <div class="wlcms-help">
14
+ <?php _e('You can add your own welcome panel.', 'white-label-cms') ?>
15
  </div>
16
  <div class="sub-fields">
17
  <div class="wlcms-help"></div>
18
+ <label><?php _e('Select the Roles the Welcome Panel Will Be Visible To', 'white-label-cms') ?></label>
19
 
20
  <?php
21
  echo wlcms_select_roles(array('name' => 'welcome_panel[0][visible_to]', 'class' => 'wlcms_visible_to wlcms-select2'), wlcms_welcome_value(0, 'visible_to'));
22
  ?>
23
  <div class="wlcms-help">
24
+ <?php _e('Select the user roles this will be visible to.', 'white-label-cms') ?>
25
  </div>
26
  <?php
27
  $checked_welcome_type = wlcms_welcome_value(0, 'template_type');
47
 
48
  ?>
49
  <div class="wlcms-input-group">
50
+ <label><?php _e('Template Type', 'white-label-cms') ?></label>
51
  <div class="wlcms-input">
52
  <input class="wlcms-toggle wlcms-toggle-light template_type template_type1" data-template_type="1" data-page_type="html" id="template_type_basic" value="html" name="welcome_panel[0][template_type]" <?php checked($is_basic, true, true) ?> type="radio"/>
53
  <label class="wlcms-toggle-btn" for="template_type_basic"></label><label class="toggle-label" for="template_type_basic"><?php _e('Basic HTML');?></label>
60
  </div>
61
 
62
  <div class="welcome-page1">
63
+ <label><?php _e('Template', 'white-label-cms') ?></label>
64
  <div class="wlcms-input">
65
  <?php
66
  echo wlcms_select_pages(array('name' => 'welcome_panel[0][page_id_elementor]', 'class' => 'wlcms_visible_to wlcms-select2 elementor_page1'), wlcms_welcome_value(0, 'page_id_elementor'), $elementor_args);
69
  </div>
70
  </div>
71
  <div class="welcome-basicHtml1">
72
+ <label><?php _e('Title of Welcome Panel', 'white-label-cms') ?></label>
73
  <div class="wlcms-input">
74
  <input type="text" name="welcome_panel[0][title]" value="<?php echo wlcms_welcome_value(0, 'title') ?>" />
75
  </div>
76
  <div class="wlcms-help">
77
+ <?php _e('Title of the Welcome Panel', 'white-label-cms') ?>
78
  </div>
79
  </div>
80
 
81
  <div class="welcome-basicHtml1">
82
+ <label><?php _e('Welcome Panel Description HTML', 'white-label-cms') ?></label>
83
  <div class="wlcms-input">
84
  <textarea class="textarea-full" name="welcome_panel[0][description]"><?php echo wlcms_welcome_value(0, 'description') ?></textarea>
85
  </div>
86
+ <div class="wlcms-help"><?php _e('You can add any HTML to the welcome panel.', 'white-label-cms') ?></div>
87
  </div>
88
 
89
  <div class="welcome-basicHtml1">
112
  <div class="wlcms-input-group toggle-group">
113
  <div class="wlcms-input">
114
  <input class="wlcms-toggle wlcms-toggle-light main-toggle" id="add_second_panel" data-revised="1" name="welcome_panel[1][is_active]" value="1" type="checkbox" <?php checked($welcome_panel_is_active, 1, true) ?>/>
115
+ <label class="wlcms-toggle-btn" for="add_second_panel"></label><label class="toggle-label" for="add_second_panel"><?php _e('Add Second Panel', 'white-label-cms') ?></label>
116
  </div>
117
  <div class="wlcms-help">
118
+ <?php _e('Add a second custom panel to the Dashboard.', 'white-label-cms') ?>
119
  </div>
120
  <div class="sub-fields">
121
  <div class="wlcms-help"></div>
122
+ <label><?php _e('Select the Roles the Welcome Panel Will Be Visible To', 'white-label-cms') ?></label>
123
  <div class="wlcms-input">
124
  <?php
125
  echo wlcms_select_roles(array('name' => 'welcome_panel[1][visible_to]', 'class' => 'wlcms_visible_to wlcms-select2'), wlcms_welcome_value(1, 'visible_to'));
126
  ?>
127
  </div>
128
  <div class="wlcms-help">
129
+ <?php _e('Select the user roles this will be visible to.', 'white-label-cms') ?>
130
  </div>
131
 
132
  <?php
136
 
137
  ?>
138
  <div class="wlcms-input-group">
139
+ <label><?php _e('Template', 'white-label-cms') ?></label>
140
  <div class="wlcms-input">
141
  <input class="wlcms-toggle wlcms-toggle-light template_type template_type2" data-template_type="2" data-page_type="html" id="template_type_basic2" value="html" name="welcome_panel[1][template_type]" <?php checked($is_basic, true, true) ?> type="radio"/>
142
  <label class="wlcms-toggle-btn" for="template_type_basic2"></label><label class="toggle-label" for="template_type_basic2"><?php _e('Basic HTML');?></label>
148
  </div>
149
 
150
  <div class="welcome-page2">
151
+ <label><?php _e('Page Template', 'white-label-cms') ?></label>
152
  <div class="wlcms-input">
153
  <?php
154
  echo wlcms_select_pages(array('name' => 'welcome_panel[1][page_id_elementor]', 'class' => 'wlcms_visible_to wlcms-select2 elementor_page2'), wlcms_welcome_value(1, 'page_id_elementor'), $elementor_args);
157
  </div>
158
  </div>
159
  <div class="welcome-basicHtml2">
160
+ <label><?php _e('Title of Second Panel', 'white-label-cms') ?></label>
161
  <div class="wlcms-input">
162
  <input type="text" name="welcome_panel[1][title]" value="<?php echo wlcms_welcome_value(1, 'title') ?>" />
163
  </div>
164
  <div class="wlcms-help">
165
+ <?php _e('Title of the Second Panel', 'white-label-cms') ?>
166
  </div>
167
  </div>
168
 
169
  <div class="welcome-basicHtml2">
170
+ <label><?php _e('Second Panel Description (HTML)', 'white-label-cms') ?></label>
171
  <div class="wlcms-input">
172
  <textarea class="textarea-full" name="welcome_panel[1][description]"><?php echo wlcms_welcome_value(1, 'description') ?></textarea>
173
  </div>
174
+ <div class="wlcms-help"><?php _e('You can add any HTML to the second panel.', 'white-label-cms') ?></div>
175
  </div>
176
 
177
  <div class="welcome-basicHtml2">
180
  <label class="wlcms-toggle-btn" for="second_welcome_panel_fullwidth"></label><label class="toggle-label" for="second_welcome_panel_fullwidth"><?php _e('Make full-width');?></label>
181
  </div>
182
  <div class="wlcms-help">
 
183
  </div>
184
  </div>
185
 
view/admin/parts/dashboard-default-panels.php CHANGED
@@ -7,25 +7,25 @@ if( ! $dashboard_role_stat) {
7
  }
8
  ?>
9
  <div class="wlcms-input-group">
10
- <?php echo wlcms_form_upload_field('Dashboard Icon', 'dashboard_icon', 'Add a logo to the Dashboard. Suggested height 40px') ?>
11
  </div>
12
 
13
  <div class="wlcms-input-group">
14
- <label><?php _e('Dashboard Title', 'wlcms') ?></label>
15
  <div class="wlcms-input">
16
  <input type="text" name="dashboard_title" value="<?php echo wlcms_field_setting('dashboard_title') ?>" />
17
  </div>
18
  <div class="wlcms-help">
19
- <?php _e('Change the heading for the Dashboard', 'wlcms') ?>
20
  </div>
21
  </div>
22
  <div class="wlcms-input-group">
23
- <label><?php _e('Select the Roles the Dashboard Panels Will Be Hidden To', 'wlcms') ?></label>
24
  <?php
25
  echo wlcms_select_roles(array('name' => 'dashboard_widgets_visibility_roles', 'class' => 'dashboard_widgets_visibility_roles wlcms-select2'), $dashboard_widgets_visibility_roles);
26
  ?>
27
  <div class="wlcms-help">
28
- <?php _e('Select the user roles this will be hidden to.', 'wlcms') ?>
29
  </div>
30
  </div>
31
  <div class="wlcms-input-group toggle-group">
@@ -33,34 +33,34 @@ if( ! $dashboard_role_stat) {
33
  <li>
34
  <input type="hidden" value="1" name="dashboard_role_stat" />
35
  <input class="wlcms-toggle wlcms-toggle-light main-toggle main-toggle-reverse" id="hide_all_dashboard_panels" name="hide_all_dashboard_panels" value="1" type="checkbox" <?php checked(wlcms_field_setting('hide_all_dashboard_panels'), 1, true) ?>/>
36
- <label class="wlcms-toggle-btn" for="hide_all_dashboard_panels"></label><label class="toggle-label" for="hide_all_dashboard_panels"><?php _e('Hide All Dashboard Panels', 'wlcms')?></label>
37
  <div class="wlcms-help">
38
- <?php _e('This will hide all the WordPress default dashboard panels. Or you can specify which panels should appear.', 'wlcms') ?>
39
  </div>
40
  <ul class="sub-fields">
41
  <li>
42
  <input class="wlcms-toggle wlcms-toggle-light" id="hide_at_a_glance" name="hide_at_a_glance" value="1" type="checkbox" <?php checked(wlcms_field_setting('hide_at_a_glance'), 1, true) ?>/>
43
- <label class="wlcms-toggle-btn" for="hide_at_a_glance"></label><label class="toggle-label" for="hide_at_a_glance"><?php _e('Hide \'At a Glance\'', 'wlcms')?></label>
44
  </li>
45
  <li>
46
  <input class="wlcms-toggle wlcms-toggle-light" id="hide_activities" name="hide_activities" value="1" type="checkbox" <?php checked(wlcms_field_setting('hide_activities'), 1, true) ?>/>
47
- <label class="wlcms-toggle-btn" for="hide_activities"></label><label class="toggle-label" for="hide_activities"><?php _e('Hide \'Activity\'', 'wlcms')?></label>
48
  </li>
49
  <li>
50
  <input class="wlcms-toggle wlcms-toggle-light" id="hide_recent_comments" name="hide_recent_comments" value="1" type="checkbox" <?php checked(wlcms_field_setting('hide_recent_comments'), 1, true) ?>/>
51
- <label class="wlcms-toggle-btn" for="hide_recent_comments"></label><label class="toggle-label" for="hide_recent_comments"><?php _e('Hide \'Recent Comments\'', 'wlcms') ?></label>
52
  </li>
53
  <li>
54
  <input class="wlcms-toggle wlcms-toggle-light" id="hide_quick_press" name="hide_quick_press" value="1" type="checkbox" <?php checked(wlcms_field_setting('hide_quick_press'), 1, true) ?>/>
55
- <label class="wlcms-toggle-btn" for="hide_quick_press"></label><label class="toggle-label" for="hide_quick_press"><?php _e('Remove \'Quick Draft\'', 'wlcms')?></label>
56
  </li>
57
  <li>
58
  <input class="wlcms-toggle wlcms-toggle-light" id="hide_news_and_events" name="hide_news_and_events" value="1" type="checkbox" <?php checked(wlcms_field_setting('hide_news_and_events'), 1, true) ?>/>
59
- <label class="wlcms-toggle-btn" for="hide_news_and_events"></label><label class="toggle-label" for="hide_news_and_events"><?php _e('Remove WordPress Events and News Widget', 'wlcms')?></label>
60
  </li>
61
  <li>
62
  <input class="wlcms-toggle wlcms-toggle-light" id="remove_empty_dash_panel" name="remove_empty_dash_panel" value="1" type="checkbox" <?php checked(wlcms_field_setting('remove_empty_dash_panel'), 1, true) ?>/>
63
- <label class="wlcms-toggle-btn" for="remove_empty_dash_panel"></label><label class="toggle-label" for="remove_empty_dash_panel"><?php _e('Remove Empty Dashboard Panel', 'wlcms')?></label>
64
  </li>
65
  </ul>
66
  </li>
7
  }
8
  ?>
9
  <div class="wlcms-input-group">
10
+ <?php echo wlcms_form_upload_field(__('Dashboard Icon', 'white-label-cms'), 'dashboard_icon', __('Add a logo to the Dashboard. Suggested height 40px', 'white-label-cms')) ?>
11
  </div>
12
 
13
  <div class="wlcms-input-group">
14
+ <label><?php _e('Dashboard Title', 'white-label-cms') ?></label>
15
  <div class="wlcms-input">
16
  <input type="text" name="dashboard_title" value="<?php echo wlcms_field_setting('dashboard_title') ?>" />
17
  </div>
18
  <div class="wlcms-help">
19
+ <?php _e('Change the heading for the Dashboard', 'white-label-cms') ?>
20
  </div>
21
  </div>
22
  <div class="wlcms-input-group">
23
+ <label><?php _e('Select the Roles the Dashboard Panels Will Be Hidden To', 'white-label-cms') ?></label>
24
  <?php
25
  echo wlcms_select_roles(array('name' => 'dashboard_widgets_visibility_roles', 'class' => 'dashboard_widgets_visibility_roles wlcms-select2'), $dashboard_widgets_visibility_roles);
26
  ?>
27
  <div class="wlcms-help">
28
+ <?php _e('Select the user roles this will be hidden to.', 'white-label-cms') ?>
29
  </div>
30
  </div>
31
  <div class="wlcms-input-group toggle-group">
33
  <li>
34
  <input type="hidden" value="1" name="dashboard_role_stat" />
35
  <input class="wlcms-toggle wlcms-toggle-light main-toggle main-toggle-reverse" id="hide_all_dashboard_panels" name="hide_all_dashboard_panels" value="1" type="checkbox" <?php checked(wlcms_field_setting('hide_all_dashboard_panels'), 1, true) ?>/>
36
+ <label class="wlcms-toggle-btn" for="hide_all_dashboard_panels"></label><label class="toggle-label" for="hide_all_dashboard_panels"><?php _e('Hide All Dashboard Panels', 'white-label-cms')?></label>
37
  <div class="wlcms-help">
38
+ <?php _e('This will hide all the WordPress default dashboard panels. Or you can specify which panels should appear.', 'white-label-cms') ?>
39
  </div>
40
  <ul class="sub-fields">
41
  <li>
42
  <input class="wlcms-toggle wlcms-toggle-light" id="hide_at_a_glance" name="hide_at_a_glance" value="1" type="checkbox" <?php checked(wlcms_field_setting('hide_at_a_glance'), 1, true) ?>/>
43
+ <label class="wlcms-toggle-btn" for="hide_at_a_glance"></label><label class="toggle-label" for="hide_at_a_glance"><?php _e('Hide \'At a Glance\'', 'white-label-cms')?></label>
44
  </li>
45
  <li>
46
  <input class="wlcms-toggle wlcms-toggle-light" id="hide_activities" name="hide_activities" value="1" type="checkbox" <?php checked(wlcms_field_setting('hide_activities'), 1, true) ?>/>
47
+ <label class="wlcms-toggle-btn" for="hide_activities"></label><label class="toggle-label" for="hide_activities"><?php _e('Hide \'Activity\'', 'white-label-cms')?></label>
48
  </li>
49
  <li>
50
  <input class="wlcms-toggle wlcms-toggle-light" id="hide_recent_comments" name="hide_recent_comments" value="1" type="checkbox" <?php checked(wlcms_field_setting('hide_recent_comments'), 1, true) ?>/>
51
+ <label class="wlcms-toggle-btn" for="hide_recent_comments"></label><label class="toggle-label" for="hide_recent_comments"><?php _e('Hide \'Recent Comments\'', 'white-label-cms') ?></label>
52
  </li>
53
  <li>
54
  <input class="wlcms-toggle wlcms-toggle-light" id="hide_quick_press" name="hide_quick_press" value="1" type="checkbox" <?php checked(wlcms_field_setting('hide_quick_press'), 1, true) ?>/>
55
+ <label class="wlcms-toggle-btn" for="hide_quick_press"></label><label class="toggle-label" for="hide_quick_press"><?php _e('Remove \'Quick Draft\'', 'white-label-cms')?></label>
56
  </li>
57
  <li>
58
  <input class="wlcms-toggle wlcms-toggle-light" id="hide_news_and_events" name="hide_news_and_events" value="1" type="checkbox" <?php checked(wlcms_field_setting('hide_news_and_events'), 1, true) ?>/>
59
+ <label class="wlcms-toggle-btn" for="hide_news_and_events"></label><label class="toggle-label" for="hide_news_and_events"><?php _e('Remove WordPress Events and News Widget', 'white-label-cms')?></label>
60
  </li>
61
  <li>
62
  <input class="wlcms-toggle wlcms-toggle-light" id="remove_empty_dash_panel" name="remove_empty_dash_panel" value="1" type="checkbox" <?php checked(wlcms_field_setting('remove_empty_dash_panel'), 1, true) ?>/>
63
+ <label class="wlcms-toggle-btn" for="remove_empty_dash_panel"></label><label class="toggle-label" for="remove_empty_dash_panel"><?php _e('Remove Empty Dashboard Panel', 'white-label-cms')?></label>
64
  </li>
65
  </ul>
66
  </li>
view/admin/parts/dashboard-rss-dashboard-panel.php CHANGED
@@ -1,40 +1,40 @@
1
  <div class="wlcms-input-group toggle-group">
2
  <div class="wlcms-input">
3
  <input class="wlcms-toggle wlcms-toggle-light main-toggle" data-revised="1" id="add_own_rss_panel" name="add_own_rss_panel" value="1" type="checkbox" <?php checked(wlcms_field_setting('add_own_rss_panel'), 1, true) ?>/>
4
- <label class="wlcms-toggle-btn" for="add_own_rss_panel"></label><label class="toggle-label" for="add_own_rss_panel"><?php _e('Add Your Own RSS Panel', 'wlcms') ?></label>
5
  </div>
6
  <div class="wlcms-help">
7
- <?php _e('This will appear on the dashboard. If you want your client to be kept up to date with what you are doing in your business, set up your RSS feed.', 'wlcms') ?>
8
  </div>
9
  <div class="sub-fields">
10
 
11
  <div class="wlcms-input">
12
  <div class="wlcms-input-group">
13
- <label><?php _e('RSS Title', 'wlcms') ?></label>
14
  <div class="wlcms-input">
15
  <input type="text" name="rss_title" value="<?php echo wlcms_field_setting('rss_title') ?>" />
16
  </div>
17
  <div class="wlcms-help">
18
- <?php _e('The title of the RSS Panel', 'wlcms') ?>
19
  </div>
20
  </div>
21
 
22
  <div class="wlcms-input-group">
23
- <?php echo wlcms_form_upload_field('Add Your Logo', 'rss_logo', 'Add a logo to appear on the panel before the title.') ?>
24
  </div>
25
 
26
  <div class="wlcms-input-group">
27
- <label><?php _e('RSS Feed', 'wlcms') ?></label>
28
  <div class="wlcms-input">
29
  <input type="text" id="rss_feed_address" name="rss_feed_address" value="<?php echo wlcms_field_setting('rss_feed_address') ?>" />
30
  </div>
31
  <div class="wlcms-help">
32
- <?php _e('The RSS feed address. For example feed://' . wlcms_site_domain() . '/feed/', 'wlcms') ?>
33
  </div>
34
  </div>
35
 
36
  <div class="wlcms-input-group">
37
- <label><?php _e('Number of Items to appear', 'wlcms') ?></label>
38
  <div class="wlcms-input">
39
  <select name="rss_feed_number_of_item">
40
  <?php
@@ -45,7 +45,7 @@
45
  </select>
46
  </div>
47
  <div class="wlcms-help">
48
- <?php _e('Number of RSS items to show.', 'wlcms') ?>
49
  </div>
50
  </div>
51
 
@@ -55,17 +55,16 @@
55
  <label class="wlcms-toggle-btn" for="show_post_content"></label><label class="toggle-label" for="show_post_content"><?php _e('Show Post Contents');?></label>
56
  </div>
57
  <div class="wlcms-help">
58
- <?php _e('', 'wlcms') ?>
59
  </div>
60
  </div>
61
 
62
  <div class="wlcms-input-group">
63
- <label><?php _e('Introduction HTML', 'wlcms') ?></label>
64
  <div class="wlcms-input">
65
  <textarea class="textarea-full" name="rss_introduction"><?php echo wlcms_field_setting('rss_introduction') ?></textarea>
66
  </div>
67
  <div class="wlcms-help">
68
- <?php _e('Add introduction text to appear above the RSS items. You can use HTML.', 'wlcms') ?>
69
  </div>
70
  </div>
71
  </div>
1
  <div class="wlcms-input-group toggle-group">
2
  <div class="wlcms-input">
3
  <input class="wlcms-toggle wlcms-toggle-light main-toggle" data-revised="1" id="add_own_rss_panel" name="add_own_rss_panel" value="1" type="checkbox" <?php checked(wlcms_field_setting('add_own_rss_panel'), 1, true) ?>/>
4
+ <label class="wlcms-toggle-btn" for="add_own_rss_panel"></label><label class="toggle-label" for="add_own_rss_panel"><?php _e('Add Your Own RSS Panel', 'white-label-cms') ?></label>
5
  </div>
6
  <div class="wlcms-help">
7
+ <?php _e('This will appear on the dashboard. If you want your client to be kept up to date with what you are doing in your business, set up your RSS feed.', 'white-label-cms') ?>
8
  </div>
9
  <div class="sub-fields">
10
 
11
  <div class="wlcms-input">
12
  <div class="wlcms-input-group">
13
+ <label><?php _e('RSS Title', 'white-label-cms') ?></label>
14
  <div class="wlcms-input">
15
  <input type="text" name="rss_title" value="<?php echo wlcms_field_setting('rss_title') ?>" />
16
  </div>
17
  <div class="wlcms-help">
18
+ <?php _e('The title of the RSS Panel', 'white-label-cms') ?>
19
  </div>
20
  </div>
21
 
22
  <div class="wlcms-input-group">
23
+ <?php echo wlcms_form_upload_field(__('Add Your Logo', 'white-label-cms'), 'rss_logo', __('Add a logo to appear on the panel before the title.', 'white-label-cms')) ?>
24
  </div>
25
 
26
  <div class="wlcms-input-group">
27
+ <label><?php _e('RSS Feed', 'white-label-cms') ?></label>
28
  <div class="wlcms-input">
29
  <input type="text" id="rss_feed_address" name="rss_feed_address" value="<?php echo wlcms_field_setting('rss_feed_address') ?>" />
30
  </div>
31
  <div class="wlcms-help">
32
+ <?php _e('The RSS feed address. For example feed://' . wlcms_site_domain() . '/feed/', 'white-label-cms') ?>
33
  </div>
34
  </div>
35
 
36
  <div class="wlcms-input-group">
37
+ <label><?php _e('Number of Items to appear', 'white-label-cms') ?></label>
38
  <div class="wlcms-input">
39
  <select name="rss_feed_number_of_item">
40
  <?php
45
  </select>
46
  </div>
47
  <div class="wlcms-help">
48
+ <?php _e('Number of RSS items to show.', 'white-label-cms') ?>
49
  </div>
50
  </div>
51
 
55
  <label class="wlcms-toggle-btn" for="show_post_content"></label><label class="toggle-label" for="show_post_content"><?php _e('Show Post Contents');?></label>
56
  </div>
57
  <div class="wlcms-help">
 
58
  </div>
59
  </div>
60
 
61
  <div class="wlcms-input-group">
62
+ <label><?php _e('Introduction HTML', 'white-label-cms') ?></label>
63
  <div class="wlcms-input">
64
  <textarea class="textarea-full" name="rss_introduction"><?php echo wlcms_field_setting('rss_introduction') ?></textarea>
65
  </div>
66
  <div class="wlcms-help">
67
+ <?php _e('Add introduction text to appear above the RSS items. You can use HTML.', 'white-label-cms') ?>
68
  </div>
69
  </div>
70
  </div>
view/admin/parts/dashboard.php CHANGED
@@ -1,6 +1,6 @@
1
  <div class="wlcms-body-wrapper">
2
  <div class="wlcms-body-header">
3
- <h2><?php _e('Default Panels', 'wlcms') ?></h2>
4
  </div>
5
  <div class="wlcms-body-main">
6
  <?php wlcms()->admin_view('parts/dashboard-default-panels'); ?>
@@ -8,7 +8,7 @@
8
  </div>
9
  <div class="wlcms-body-wrapper">
10
  <div class="wlcms-body-header">
11
- <h2><?php _e('Custom Welcome Dashboard Panel', 'wlcms') ?></h2>
12
  </div>
13
  <div class="wlcms-body-main">
14
  <?php wlcms()->admin_view('parts/dashboard-custom-welcome-dashboard-panel'); ?>
@@ -16,7 +16,7 @@
16
  </div>
17
  <div class="wlcms-body-wrapper">
18
  <div class="wlcms-body-header">
19
- <h2><?php _e('RSS Dashboard Panel', 'wlcms') ?></h2>
20
  </div>
21
  <div class="wlcms-body-main">
22
  <?php wlcms()->admin_view('parts/dashboard-rss-dashboard-panel'); ?>
1
  <div class="wlcms-body-wrapper">
2
  <div class="wlcms-body-header">
3
+ <h2><?php _e('Default Panels', 'white-label-cms') ?></h2>
4
  </div>
5
  <div class="wlcms-body-main">
6
  <?php wlcms()->admin_view('parts/dashboard-default-panels'); ?>
8
  </div>
9
  <div class="wlcms-body-wrapper">
10
  <div class="wlcms-body-header">
11
+ <h2><?php _e('Custom Welcome Dashboard Panel', 'white-label-cms') ?></h2>
12
  </div>
13
  <div class="wlcms-body-main">
14
  <?php wlcms()->admin_view('parts/dashboard-custom-welcome-dashboard-panel'); ?>
16
  </div>
17
  <div class="wlcms-body-wrapper">
18
  <div class="wlcms-body-header">
19
+ <h2><?php _e('RSS Dashboard Panel', 'white-label-cms') ?></h2>
20
  </div>
21
  <div class="wlcms-body-main">
22
  <?php wlcms()->admin_view('parts/dashboard-rss-dashboard-panel'); ?>
view/admin/parts/import-settings.php CHANGED
@@ -1,7 +1,7 @@
1
  <section class="tab-import-settings" id="import-settings">
2
  <div class="wlcms-body-wrapper">
3
  <div class="wlcms-body-header">
4
- <h2><?php _e('Import Settings', 'wlcms') ?></h2>
5
  </div>
6
  <div class="wlcms-body-main">
7
  <div class="wlcms-input-group">
@@ -9,7 +9,7 @@
9
  <input type="file" name="import_file" id="import_file" />
10
  </div>
11
  <div class="wlcms-help">
12
- <?php _e('To import the settings from another website', 'wlcms') ?>
13
  </div>
14
  </div>
15
  </div>
1
  <section class="tab-import-settings" id="import-settings">
2
  <div class="wlcms-body-wrapper">
3
  <div class="wlcms-body-header">
4
+ <h2><?php _e('Import Settings', 'white-label-cms') ?></h2>
5
  </div>
6
  <div class="wlcms-body-main">
7
  <div class="wlcms-input-group">
9
  <input type="file" name="import_file" id="import_file" />
10
  </div>
11
  <div class="wlcms-help">
12
+ <?php _e('To import the settings from another website', 'white-label-cms') ?>
13
  </div>
14
  </div>
15
  </div>
view/admin/parts/live-preview.php CHANGED
@@ -2,5 +2,5 @@
2
 
3
  </div>
4
  <div id="lightbox-controls" class="short-animate">
5
- <a id="close-lightbox" class="long-animate" href="#">Close Preview</a>
6
  </div>
2
 
3
  </div>
4
  <div id="lightbox-controls" class="short-animate">
5
+ <a id="close-lightbox" class="long-animate" href="#"><?php _e('Close Preview')?></a>
6
  </div>
view/admin/parts/login-advanced.php CHANGED
@@ -2,121 +2,121 @@
2
  <div class="wlcms-input">
3
 
4
  <input class="wlcms-toggle wlcms-toggle-light" id="hide_register_lost_password" name="hide_register_lost_password" value="1" type="checkbox" <?php checked(wlcms_field_setting('hide_register_lost_password'), 1, true) ?>/>
5
- <label class="wlcms-toggle-btn" for="hide_register_lost_password"></label><label class="toggle-label" for="hide_register_lost_password"><?php _e('Hide "Register / Lost your password?" link', 'wlcms') ?></label>
6
  </div>
7
  <div class="wlcms-help">
8
- <?php _e('Hide the "Register / Lost your password?" link which appears below the login form.', 'wlcms') ?>
9
  </div>
10
  </div>
11
  <div class="wlcms-input-group">
12
  <div class="wlcms-input">
13
  <input class="wlcms-toggle wlcms-toggle-light" id="hide_back_to_link" name="hide_back_to_link" value="1" type="checkbox" <?php checked(wlcms_field_setting('hide_back_to_link'), 1, true) ?>/>
14
- <label class="wlcms-toggle-btn" for="hide_back_to_link"></label><label class="toggle-label" for="hide_back_to_link"><?php _e('Hide "Back to" link', 'wlcms') ?></label>
15
  </div>
16
  <div class="wlcms-help">
17
- <?php _e('Hide the "Back to" link which appears below the login form.', 'wlcms') ?>
18
  </div>
19
  </div>
20
 
21
  <div class="wlcms-input-group">
22
- <label><?php _e('Form Background Color', 'wlcms') ?></label>
23
  <div class="wlcms-input">
24
  <input type="text" name="form_background_color" class="wlcms-color-field" value="<?php echo wlcms_field_setting('form_background_color') ?>" />
25
  </div>
26
  <div class="wlcms-help">
27
- <?php _e('Background color of the login form', 'wlcms') ?>
28
  </div>
29
  </div>
30
 
31
  <div class="wlcms-input-group">
32
- <label><?php _e('Form Label Color', 'wlcms') ?></label>
33
  <div class="wlcms-input">
34
  <input type="text" name="form_label_color" class="wlcms-color-field" value="<?php echo wlcms_field_setting('form_label_color') ?>" />
35
  </div>
36
  <div class="wlcms-help">
37
- <?php _e('Color of the labels on the login form', 'wlcms') ?>
38
  </div>
39
  </div>
40
 
41
  <div class="wlcms-input-group">
42
- <label><?php _e('Form Button Color', 'wlcms') ?></label>
43
  <div class="wlcms-input">
44
  <input type="text" name="form_button_color" class="wlcms-color-field" value="<?php echo wlcms_field_setting('form_button_color') ?>" />
45
  </div>
46
  <div class="wlcms-help">
47
- <?php _e('Color of the button on the login form', 'wlcms') ?>
48
  </div>
49
  </div>
50
 
51
  <div class="wlcms-input-group">
52
- <label><?php _e('Form Button Hover Color', 'wlcms') ?></label>
53
  <div class="wlcms-input">
54
  <input type="text" name="form_button_hover_color" class="wlcms-color-field" value="<?php echo wlcms_field_setting('form_button_hover_color') ?>" />
55
  </div>
56
  <div class="wlcms-help">
57
- <?php _e('Hover color of the button on the login form', 'wlcms') ?>
58
  </div>
59
  </div>
60
 
61
  <div class="wlcms-input-group">
62
- <label><?php _e('Form Button Text Color', 'wlcms') ?></label>
63
  <div class="wlcms-input">
64
  <input type="text" name="form_button_text_color" class="wlcms-color-field" value="<?php echo wlcms_field_setting('form_button_text_color') ?>" />
65
  </div>
66
  <div class="wlcms-help">
67
- <?php _e('Color of the text on the button on the login form', 'wlcms') ?>
68
  </div>
69
  </div>
70
 
71
  <div class="wlcms-input-group">
72
- <label><?php _e('Form Button Text Hover Color', 'wlcms') ?></label>
73
  <div class="wlcms-input">
74
  <input type="text" name="form_button_text_hover_color" class="wlcms-color-field" value="<?php echo wlcms_field_setting('form_button_text_hover_color') ?>" />
75
  </div>
76
  <div class="wlcms-help">
77
- <?php _e('Hover color of the text on the button on the login form', 'wlcms') ?>
78
  </div>
79
  </div>
80
 
81
  <div class="wlcms-input-group">
82
- <label><?php _e('Back to / Register Link Color', 'wlcms') ?></label>
83
  <div class="wlcms-input">
84
  <input type="text" name="back_to_register_link_color" class="wlcms-color-field" value="<?php echo wlcms_field_setting('back_to_register_link_color') ?>" />
85
  </div>
86
  <div class="wlcms-help">
87
- <?php _e('Color of the link text of Back to / Register', 'wlcms') ?>
88
  </div>
89
  </div>
90
 
91
  <div class="wlcms-input-group">
92
- <label><?php _e('Back to / Register Link Hover Color', 'wlcms') ?></label>
93
  <div class="wlcms-input">
94
  <input type="text" name="back_to_register_link_hover_color" class="wlcms-color-field" value="<?php echo wlcms_field_setting('back_to_register_link_hover_color') ?>" />
95
  </div>
96
  <div class="wlcms-help">
97
- <?php _e('Hover color of the link text of Back to / Register', 'wlcms') ?>
98
  </div>
99
  </div>
100
 
101
  <div class="wlcms-input-group">
102
- <label><?php _e('Privacy Policy Link Color', 'wlcms') ?></label>
103
  <div class="wlcms-input">
104
  <input type="text" name="privacy_policy_link_color" class="wlcms-color-field" value="<?php echo wlcms_field_setting('privacy_policy_link_color') ?>" />
105
  </div>
106
  <div class="wlcms-help">
107
- <?php _e('Color of the link text of Privacy Policy', 'wlcms') ?>
108
  </div>
109
  </div>
110
 
111
  <div class="wlcms-input-group">
112
- <label><?php _e('Privacy Policy Link Hover Color', 'wlcms') ?></label>
113
  <div class="wlcms-input">
114
  <input type="text" name="privacy_policy_link_hover_color" class="wlcms-color-field" value="<?php echo wlcms_field_setting('privacy_policy_link_hover_color') ?>" />
115
  </div>
116
  <div class="wlcms-help">
117
- <?php _e('Hover color of the link text of Privacy Policy', 'wlcms') ?>
118
  </div>
119
  </div>
120
  <?php if( !is_multisite() ):?>
121
- <p align="center"><a href="#wlcms-preview-content" class="wlcms-preview-link"><?php _e('Live Preview', 'wlcms') ?></a></p>
122
  <?php endif;?>
2
  <div class="wlcms-input">
3
 
4
  <input class="wlcms-toggle wlcms-toggle-light" id="hide_register_lost_password" name="hide_register_lost_password" value="1" type="checkbox" <?php checked(wlcms_field_setting('hide_register_lost_password'), 1, true) ?>/>
5
+ <label class="wlcms-toggle-btn" for="hide_register_lost_password"></label><label class="toggle-label" for="hide_register_lost_password"><?php _e('Hide "Register / Lost your password?" link', 'white-label-cms') ?></label>
6
  </div>
7
  <div class="wlcms-help">
8
+ <?php _e('Hide the "Register / Lost your password?" link which appears below the login form.', 'white-label-cms') ?>
9
  </div>
10
  </div>
11
  <div class="wlcms-input-group">
12
  <div class="wlcms-input">
13
  <input class="wlcms-toggle wlcms-toggle-light" id="hide_back_to_link" name="hide_back_to_link" value="1" type="checkbox" <?php checked(wlcms_field_setting('hide_back_to_link'), 1, true) ?>/>
14
+ <label class="wlcms-toggle-btn" for="hide_back_to_link"></label><label class="toggle-label" for="hide_back_to_link"><?php _e('Hide "Back to" link', 'white-label-cms') ?></label>
15
  </div>
16
  <div class="wlcms-help">
17
+ <?php _e('Hide the "Back to" link which appears below the login form.', 'white-label-cms') ?>
18
  </div>
19
  </div>
20
 
21
  <div class="wlcms-input-group">
22
+ <label><?php _e('Form Background Color', 'white-label-cms') ?></label>
23
  <div class="wlcms-input">
24
  <input type="text" name="form_background_color" class="wlcms-color-field" value="<?php echo wlcms_field_setting('form_background_color') ?>" />
25
  </div>
26
  <div class="wlcms-help">
27
+ <?php _e('Background color of the login form', 'white-label-cms') ?>
28
  </div>
29
  </div>
30
 
31
  <div class="wlcms-input-group">
32
+ <label><?php _e('Form Label Color', 'white-label-cms') ?></label>
33
  <div class="wlcms-input">
34
  <input type="text" name="form_label_color" class="wlcms-color-field" value="<?php echo wlcms_field_setting('form_label_color') ?>" />
35
  </div>
36
  <div class="wlcms-help">
37
+ <?php _e('Color of the labels on the login form', 'white-label-cms') ?>
38
  </div>
39
  </div>
40
 
41
  <div class="wlcms-input-group">
42
+ <label><?php _e('Form Button Color', 'white-label-cms') ?></label>
43
  <div class="wlcms-input">
44
  <input type="text" name="form_button_color" class="wlcms-color-field" value="<?php echo wlcms_field_setting('form_button_color') ?>" />
45
  </div>
46
  <div class="wlcms-help">
47
+ <?php _e('Color of the button on the login form', 'white-label-cms') ?>
48
  </div>
49
  </div>
50
 
51
  <div class="wlcms-input-group">
52
+ <label><?php _e('Form Button Hover Color', 'white-label-cms') ?></label>
53
  <div class="wlcms-input">
54
  <input type="text" name="form_button_hover_color" class="wlcms-color-field" value="<?php echo wlcms_field_setting('form_button_hover_color') ?>" />
55
  </div>
56
  <div class="wlcms-help">
57
+ <?php _e('Hover color of the button on the login form', 'white-label-cms') ?>
58
  </div>
59
  </div>
60
 
61
  <div class="wlcms-input-group">
62
+ <label><?php _e('Form Button Text Color', 'white-label-cms') ?></label>
63
  <div class="wlcms-input">
64
  <input type="text" name="form_button_text_color" class="wlcms-color-field" value="<?php echo wlcms_field_setting('form_button_text_color') ?>" />
65
  </div>
66
  <div class="wlcms-help">
67
+ <?php _e('Color of the text on the button on the login form', 'white-label-cms') ?>
68
  </div>
69
  </div>
70
 
71
  <div class="wlcms-input-group">
72
+ <label><?php _e('Form Button Text Hover Color', 'white-label-cms') ?></label>
73
  <div class="wlcms-input">
74
  <input type="text" name="form_button_text_hover_color" class="wlcms-color-field" value="<?php echo wlcms_field_setting('form_button_text_hover_color') ?>" />
75
  </div>
76
  <div class="wlcms-help">
77
+ <?php _e('Hover color of the text on the button on the login form', 'white-label-cms') ?>
78
  </div>
79
  </div>
80
 
81
  <div class="wlcms-input-group">
82
+ <label><?php _e('Back to / Register Link Color', 'white-label-cms') ?></label>
83
  <div class="wlcms-input">
84
  <input type="text" name="back_to_register_link_color" class="wlcms-color-field" value="<?php echo wlcms_field_setting('back_to_register_link_color') ?>" />
85
  </div>
86
  <div class="wlcms-help">
87
+ <?php _e('Color of the link text of Back to / Register', 'white-label-cms') ?>
88
  </div>
89
  </div>
90
 
91
  <div class="wlcms-input-group">
92
+ <label><?php _e('Back to / Register Link Hover Color', 'white-label-cms') ?></label>
93
  <div class="wlcms-input">
94
  <input type="text" name="back_to_register_link_hover_color" class="wlcms-color-field" value="<?php echo wlcms_field_setting('back_to_register_link_hover_color') ?>" />
95
  </div>
96
  <div class="wlcms-help">
97
+ <?php _e('Hover color of the link text of Back to / Register', 'white-label-cms') ?>
98
  </div>
99
  </div>
100
 
101
  <div class="wlcms-input-group">
102
+ <label><?php _e('Privacy Policy Link Color', 'white-label-cms') ?></label>
103
  <div class="wlcms-input">
104
  <input type="text" name="privacy_policy_link_color" class="wlcms-color-field" value="<?php echo wlcms_field_setting('privacy_policy_link_color') ?>" />
105
  </div>
106
  <div class="wlcms-help">
107
+ <?php _e('Color of the link text of Privacy Policy', 'white-label-cms') ?>
108
  </div>
109
  </div>
110
 
111
  <div class="wlcms-input-group">
112
+ <label><?php _e('Privacy Policy Link Hover Color', 'white-label-cms') ?></label>
113
  <div class="wlcms-input">
114
  <input type="text" name="privacy_policy_link_hover_color" class="wlcms-color-field" value="<?php echo wlcms_field_setting('privacy_policy_link_hover_color') ?>" />
115
  </div>
116
  <div class="wlcms-help">
117
+ <?php _e('Hover color of the link text of Privacy Policy', 'white-label-cms') ?>
118
  </div>
119
  </div>
120
  <?php if( !is_multisite() ):?>
121
+ <p align="center"><a href="#wlcms-preview-content" class="wlcms-preview-link"><?php _e('Live Preview', 'white-label-cms') ?></a></p>
122
  <?php endif;?>
view/admin/parts/login-custom-css.php CHANGED
@@ -3,17 +3,17 @@
3
  <textarea class="textarea-full wlcms-css" name="login_custom_css"><?php echo esc_textarea(wlcms_field_setting('login_custom_css')) ?></textarea>
4
  </div>
5
  <div class="wlcms-help">
6
- <p><?php _e('Completely customise the login page by entering your own CSS.', 'wlcms') ?></p>
7
- <p><?php _e('For example', 'wlcms') ?>:<br/>
8
  .login form { background-color: #0013FF }<br/>
9
  .login #login p#nav a { color: #333 !important }<br/>
10
  </p>
11
  <p>
12
- <?php _e('Or if you want to get fancy', 'wlcms') ?>:<br/>
13
  #wlcms-login-wrapper{ background: url('wp-content/plugins/white-label-cms/images/footergrass.jpg') repeat-x fixed center bottom transparent; display: block; height: 100%; left: 0; overflow: auto; position: absolute; top: 0; width: 100%;}
14
  </p>
15
  </div>
16
  </div>
17
  <?php if( !is_multisite() ):?>
18
- <p align="center"><a href="#wlcms-preview-content" class="wlcms-preview-link"><?php _e('Live Preview', 'wlcms') ?></a></p>
19
  <?php endif;?>
3
  <textarea class="textarea-full wlcms-css" name="login_custom_css"><?php echo esc_textarea(wlcms_field_setting('login_custom_css')) ?></textarea>
4
  </div>
5
  <div class="wlcms-help">
6
+ <p><?php _e('Completely customise the login page by entering your own CSS.', 'white-label-cms') ?></p>
7
+ <p><?php _e('For example', 'white-label-cms') ?>:<br/>
8
  .login form { background-color: #0013FF }<br/>
9
  .login #login p#nav a { color: #333 !important }<br/>
10
  </p>
11
  <p>
12
+ <?php _e('Or if you want to get fancy', 'white-label-cms') ?>:<br/>
13
  #wlcms-login-wrapper{ background: url('wp-content/plugins/white-label-cms/images/footergrass.jpg') repeat-x fixed center bottom transparent; display: block; height: 100%; left: 0; overflow: auto; position: absolute; top: 0; width: 100%;}
14
  </p>
15
  </div>
16
  </div>
17
  <?php if( !is_multisite() ):?>
18
+ <p align="center"><a href="#wlcms-preview-content" class="wlcms-preview-link"><?php _e('Live Preview', 'white-label-cms') ?></a></p>
19
  <?php endif;?>
view/admin/parts/login-live-preview.php CHANGED
@@ -2,5 +2,5 @@
2
 
3
  </div>
4
  <div id="lightbox-controls" class="short-animate">
5
- <a id="close-lightbox" class="long-animate" href="#login">Close Login</a>
6
  </div>
2
 
3
  </div>
4
  <div id="lightbox-controls" class="short-animate">
5
+ <a id="close-lightbox" class="long-animate" href="#login"><?php _e('Close Login')?></a>
6
  </div>
view/admin/parts/login-logo-and-background.php CHANGED
@@ -1,66 +1,66 @@
1
  <div class="wlcms-input-group">
2
- <?php echo wlcms_form_upload_field('Login Logo', 'login_logo', 'Replace the WordPress logo on the login page. Max width 320px') ?>
3
  </div>
4
 
5
  <div class="wlcms-input-group">
6
- <?php echo wlcms_form_upload_field('Retina Login Logo', 'retina_login_logo', 'Replace the Retina WordPress logo on the login page. Please make sure you use the standard retina format of x2') ?>
7
  </div>
8
 
9
  <div class="wlcms-input-group">
10
- <label><?php _e('Logo Width', 'wlcms') ?></label>
11
  <div class="wlcms-input">
12
  <input type="number" name="logo_width" class="wlcms-upload-input" value="<?php echo wlcms_field_setting('logo_width', '') ?>" />px
13
  </div>
14
  <div class="wlcms-help">
15
- <?php _e('Add a width to your Login Logo. Max width 320px', 'wlcms') ?>
16
  </div>
17
  </div>
18
  <div class="wlcms-input-group">
19
- <label><?php _e('Logo Height', 'wlcms') ?></label>
20
  <div class="wlcms-input">
21
  <input type="number" name="logo_height" class="wlcms-upload-input" value="<?php echo wlcms_field_setting('logo_height', '') ?>" />px
22
  </div>
23
  <div class="wlcms-help">
24
- <?php _e('Add a height to your Login Logo.', 'wlcms') ?>
25
  </div>
26
  </div>
27
 
28
  <div class="wlcms-input-group">
29
- <label><?php _e('Logo Bottom Margin', 'wlcms') ?></label>
30
  <div class="wlcms-input">
31
  <input type="number" name="logo_bottom_margin" class="wlcms-upload-input" value="<?php echo wlcms_field_setting('logo_bottom_margin') ?>" />px
32
  </div>
33
  <div class="wlcms-help">
34
- <?php _e('Add a bottom margin to your Login Logo.', 'wlcms') ?>
35
  </div>
36
  </div>
37
 
38
  <div class="wlcms-input-group">
39
- <label><?php _e('Background Color', 'wlcms') ?></label>
40
  <div class="wlcms-input">
41
  <input type="text" name="background_color" class="wlcms-color-field" value="<?php echo wlcms_field_setting('background_color') ?>" />
42
  </div>
43
  <div class="wlcms-help">
44
- <?php _e('Background color for the login page. Changing to White will help your logo standout.', 'wlcms') ?>
45
  </div>
46
  </div>
47
 
48
  <div class="wlcms-input-group">
49
- <?php echo wlcms_form_upload_field('Background Image', 'background_image', 'Adds a background image to the login page.') ?>
50
  </div>
51
 
52
  <div class="wlcms-input-group">
53
  <div class="wlcms-input">
54
  <input class="wlcms-toggle wlcms-toggle-light" id="full_screen_background_image" name="full_screen_background_image" value="1" type="checkbox" <?php checked(wlcms_field_setting('full_screen_background_image'), 1, true) ?>/>
55
- <label class="wlcms-toggle-btn" for="full_screen_background_image"></label><label class="toggle-label" for="full_screen_background_image"><?php _e('Full Screen Background Image', 'wlcms') ?></label>
56
  </div>
57
  <div class="wlcms-help">
58
- <?php _e('Stretch the background image to appear full screen.', 'wlcms') ?>
59
  </div>
60
  </div>
61
 
62
  <div class="wlcms-input-group">
63
- <label><?php _e('Background Position', 'wlcms') ?></label>
64
  <div class="wlcms-input">
65
  <select class="wlcms-select" name="background_positions">
66
  <option value="center center" <?php selected(wlcms_field_setting('background_positions'), 'center center', true) ?>>Center Center</option>
@@ -75,12 +75,12 @@
75
  </select>
76
  </div>
77
  <div class="wlcms-help">
78
- <?php _e('Specify the CSS background position.', 'wlcms') ?>
79
  </div>
80
  </div>
81
 
82
  <div class="wlcms-input-group">
83
- <label><?php _e('Background Repeat', 'wlcms') ?></label>
84
  <div class="wlcms-input">
85
  <select class="wlcms-select" name="background_repeat">
86
  <option value="repeat" <?php selected(wlcms_field_setting('background_repeat'), 'repeat', true) ?>>repeat</option>
@@ -89,9 +89,9 @@
89
  </select>
90
  </div>
91
  <div class="wlcms-help">
92
- <?php _e('Specify the CSS background-repeat.', 'wlcms') ?>
93
  </div>
94
  </div>
95
  <?php if( !is_multisite() ):?>
96
- <p align="center"><a href="#wlcms-preview-content" class="wlcms-preview-link"><?php _e('Live Preview', 'wlcms') ?></a></p>
97
  <?php endif;?>
1
  <div class="wlcms-input-group">
2
+ <?php echo wlcms_form_upload_field(__('Login Logo', 'white-label-cms'), 'login_logo', __('Replace the WordPress logo on the login page. Max width 320px', 'white-label-cms')) ?>
3
  </div>
4
 
5
  <div class="wlcms-input-group">
6
+ <?php echo wlcms_form_upload_field(__('Retina Login Logo', 'white-label-cms'), 'retina_login_logo', __('Replace the Retina WordPress logo on the login page. Please make sure you use the standard retina format of x2', 'white-label-cms')) ?>
7
  </div>
8
 
9
  <div class="wlcms-input-group">
10
+ <label><?php _e('Logo Width', 'white-label-cms') ?></label>
11
  <div class="wlcms-input">
12
  <input type="number" name="logo_width" class="wlcms-upload-input" value="<?php echo wlcms_field_setting('logo_width', '') ?>" />px
13
  </div>
14
  <div class="wlcms-help">
15
+ <?php _e('Add a width to your Login Logo. Max width 320px', 'white-label-cms') ?>
16
  </div>
17
  </div>
18
  <div class="wlcms-input-group">
19
+ <label><?php _e('Logo Height', 'white-label-cms') ?></label>
20
  <div class="wlcms-input">
21
  <input type="number" name="logo_height" class="wlcms-upload-input" value="<?php echo wlcms_field_setting('logo_height', '') ?>" />px
22
  </div>
23
  <div class="wlcms-help">
24
+ <?php _e('Add a height to your Login Logo.', 'white-label-cms') ?>
25
  </div>
26
  </div>
27
 
28
  <div class="wlcms-input-group">
29
+ <label><?php _e('Logo Bottom Margin', 'white-label-cms') ?></label>
30
  <div class="wlcms-input">
31
  <input type="number" name="logo_bottom_margin" class="wlcms-upload-input" value="<?php echo wlcms_field_setting('logo_bottom_margin') ?>" />px
32
  </div>
33
  <div class="wlcms-help">
34
+ <?php _e('Add a bottom margin to your Login Logo.', 'white-label-cms') ?>
35
  </div>
36
  </div>
37
 
38
  <div class="wlcms-input-group">
39
+ <label><?php _e('Background Color', 'white-label-cms') ?></label>
40
  <div class="wlcms-input">
41
  <input type="text" name="background_color" class="wlcms-color-field" value="<?php echo wlcms_field_setting('background_color') ?>" />
42
  </div>
43
  <div class="wlcms-help">
44
+ <?php _e('Background color for the login page. Changing to White will help your logo standout.', 'white-label-cms') ?>
45
  </div>
46
  </div>
47
 
48
  <div class="wlcms-input-group">
49
+ <?php echo wlcms_form_upload_field(__('Background Image', 'white-label-cms'), 'background_image', __('Adds a background image to the login page.', 'white-label-cms')) ?>
50
  </div>
51
 
52
  <div class="wlcms-input-group">
53
  <div class="wlcms-input">
54
  <input class="wlcms-toggle wlcms-toggle-light" id="full_screen_background_image" name="full_screen_background_image" value="1" type="checkbox" <?php checked(wlcms_field_setting('full_screen_background_image'), 1, true) ?>/>
55
+ <label class="wlcms-toggle-btn" for="full_screen_background_image"></label><label class="toggle-label" for="full_screen_background_image"><?php _e('Full Screen Background Image', 'white-label-cms') ?></label>
56
  </div>
57
  <div class="wlcms-help">
58
+ <?php _e('Stretch the background image to appear full screen.', 'white-label-cms') ?>
59
  </div>
60
  </div>
61
 
62
  <div class="wlcms-input-group">
63
+ <label><?php _e('Background Position', 'white-label-cms') ?></label>
64
  <div class="wlcms-input">
65
  <select class="wlcms-select" name="background_positions">
66
  <option value="center center" <?php selected(wlcms_field_setting('background_positions'), 'center center', true) ?>>Center Center</option>
75
  </select>
76
  </div>
77
  <div class="wlcms-help">
78
+ <?php _e('Specify the CSS background position.', 'white-label-cms') ?>
79
  </div>
80
  </div>
81
 
82
  <div class="wlcms-input-group">
83
+ <label><?php _e('Background Repeat', 'white-label-cms') ?></label>
84
  <div class="wlcms-input">
85
  <select class="wlcms-select" name="background_repeat">
86
  <option value="repeat" <?php selected(wlcms_field_setting('background_repeat'), 'repeat', true) ?>>repeat</option>
89
  </select>
90
  </div>
91
  <div class="wlcms-help">
92
+ <?php _e('Specify the CSS background-repeat.', 'white-label-cms') ?>
93
  </div>
94
  </div>
95
  <?php if( !is_multisite() ):?>
96
+ <p align="center"><a href="#wlcms-preview-content" class="wlcms-preview-link"><?php _e('Live Preview', 'white-label-cms') ?></a></p>
97
  <?php endif;?>
view/admin/parts/login.php CHANGED
@@ -1,6 +1,6 @@
1
  <div class="wlcms-body-wrapper">
2
  <div class="wlcms-body-header">
3
- <h2><?php _e('Logo and Background', 'wlcms') ?></h2>
4
  </div>
5
  <div class="wlcms-body-main">
6
  <input type="hidden" name="form_section" value="setting" />
@@ -10,7 +10,7 @@
10
 
11
  <div class="wlcms-body-wrapper">
12
  <div class="wlcms-body-header">
13
- <h2><?php _e('Advanced', 'wlcms') ?></h2>
14
  </div>
15
  <div class="wlcms-body-main">
16
  <?php wlcms()->admin_view('parts/login-advanced'); ?>
@@ -19,7 +19,7 @@
19
 
20
  <div class="wlcms-body-wrapper">
21
  <div class="wlcms-body-header">
22
- <h2><?php _e('Custom CSS', 'wlcms') ?></h2>
23
  </div>
24
  <div class="wlcms-body-main">
25
  <?php wlcms()->admin_view('parts/login-custom-css'); ?>
1
  <div class="wlcms-body-wrapper">
2
  <div class="wlcms-body-header">
3
+ <h2><?php _e('Logo and Background', 'white-label-cms') ?></h2>
4
  </div>
5
  <div class="wlcms-body-main">
6
  <input type="hidden" name="form_section" value="setting" />
10
 
11
  <div class="wlcms-body-wrapper">
12
  <div class="wlcms-body-header">
13
+ <h2><?php _e('Advanced', 'white-label-cms') ?></h2>
14
  </div>
15
  <div class="wlcms-body-main">
16
  <?php wlcms()->admin_view('parts/login-advanced'); ?>
19
 
20
  <div class="wlcms-body-wrapper">
21
  <div class="wlcms-body-header">
22
+ <h2><?php _e('Custom CSS', 'white-label-cms') ?></h2>
23
  </div>
24
  <div class="wlcms-body-main">
25
  <?php wlcms()->admin_view('parts/login-custom-css'); ?>
view/admin/parts/menus-admin-bar-menus.php CHANGED
@@ -1,6 +1,6 @@
1
  <div class="wlcms-input-group wlcms-toggle-wrapper wlcms-menus-settings">
2
  <div class="wlcms-help">
3
- <p><?php _e('Admin Bar Menus will be hidden to all User Roles up to and including Admins with the exception of White Label CMS Admins and Super Admins', 'wlcms') ?></p>
4
  </div>
5
  <?php
6
 
1
  <div class="wlcms-input-group wlcms-toggle-wrapper wlcms-menus-settings">
2
  <div class="wlcms-help">
3
+ <p><?php _e('Admin Bar Menus will be hidden to all User Roles up to and including Admins with the exception of White Label CMS Admins and Super Admins', 'white-label-cms') ?></p>
4
  </div>
5
  <?php
6
 
view/admin/parts/menus-legacy.php CHANGED
@@ -4,18 +4,18 @@ if($legacy) {
4
  ?>
5
  <div class="wlcms-body-wrapper">
6
  <div class="wlcms-body-header">
7
- <h2><?php _e('White Label CMS Legacy Menus', 'wlcms') ?></h2>
8
  </div>
9
  <div class="wlcms-body-main">
10
  <div class="wlcms-input-group">
11
  <div class="wlcms-help">
12
- <p><i><?php _e('You are seeing this because you have installed version 1 of the plugin in the past.', 'wlcms') ?></i></p>
13
- <p><i><?php _e('In version 1 you could only change the menus for Editors.', 'wlcms') ?></i></p>
14
- <p><i><?php _e('We recommend using the new White Label CMS Admin to manage the menus and in order to do so you must reset the menus to the WordPress Defaults. If you do this, this section will disappear.', 'wlcms') ?></i></p>
15
  </div>
16
  <div class="wlcms-input">
17
  <input class="wlcms-toggle wlcms-toggle-light" name="remove_legacy_menu" value="1" id="remove_legacy_menu" type="checkbox" <?php checked(wlcms_field_setting('remove_legacy_menu'), 1, true) ?>/>
18
- <label class="wlcms-toggle-btn" for="remove_legacy_menu"></label><label class="toggle-label" for="remove_legacy_menu"><?php _e('Use the new version', 'wlcms') ?></label>
19
  </div>
20
  </div>
21
  </div>
4
  ?>
5
  <div class="wlcms-body-wrapper">
6
  <div class="wlcms-body-header">
7
+ <h2><?php _e('White Label CMS Legacy Menus', 'white-label-cms') ?></h2>
8
  </div>
9
  <div class="wlcms-body-main">
10
  <div class="wlcms-input-group">
11
  <div class="wlcms-help">
12
+ <p><i><?php _e('You are seeing this because you have installed version 1 of the plugin in the past.', 'white-label-cms') ?></i></p>
13
+ <p><i><?php _e('In version 1 you could only change the menus for Editors.', 'white-label-cms') ?></i></p>
14
+ <p><i><?php _e('We recommend using the new White Label CMS Admin to manage the menus and in order to do so you must reset the menus to the WordPress Defaults. If you do this, this section will disappear.', 'white-label-cms') ?></i></p>
15
  </div>
16
  <div class="wlcms-input">
17
  <input class="wlcms-toggle wlcms-toggle-light" name="remove_legacy_menu" value="1" id="remove_legacy_menu" type="checkbox" <?php checked(wlcms_field_setting('remove_legacy_menu'), 1, true) ?>/>
18
+ <label class="wlcms-toggle-btn" for="remove_legacy_menu"></label><label class="toggle-label" for="remove_legacy_menu"><?php _e('Use the new version', 'white-label-cms') ?></label>
19
  </div>
20
  </div>
21
  </div>
view/admin/parts/menus-menus.php CHANGED
@@ -1,7 +1,7 @@
1
  <div class="wlcms-input-group wlcms-toggle-wrapper wlcms-menus-settings">
2
  <div class="wlcms-help">
3
- <p><?php _e('Menus will be hidden to all User Roles up to and including Admins (with the exception of White Label CMS Admins and Super Admins).', 'wlcms') ?></p>
4
- <p><?php _e('Select which menus you want to appear.', 'wlcms') ?></p>
5
  </div>
6
  <input type="hidden" value="index.php" name="admin_menus[main][]">
7
  <input type="hidden" value="index.php_wlcms_index-php" name="admin_menus[sub][]">
@@ -35,7 +35,7 @@
35
  ?>
36
  <li>
37
  <input class="wlcms-toggle wlcms-toggle-light main-toggle"<?php echo $disabled?> id="admin_menus_<?php echo $main_key?>" name="admin_menus[main][]" value="<?php echo $menu_slug ?>" type="checkbox"<?php echo $main_menu_checked?>/>
38
- <label class="wlcms-toggle-btn<?php echo $disabled?>" for="admin_menus_<?php echo $main_key?>"></label><label class="toggle-label" for="admin_menus_<?php echo $main_key?>"><?php _e( $menu_name , 'wlcms') ?></label>
39
  <?php
40
  if( isset($main_menu['submenus']) && count( $main_menu['submenus'] )):
41
  echo '<a href="javascript:void(0)" class="wlcms-toggle-arrow"></a><ul class="sub_menu_wrapper">';
@@ -59,7 +59,7 @@
59
  ?>
60
  <li>
61
  <input class="wlcms-toggle wlcms-toggle-light sub-toggle"<?php echo $disabled?> id="admin_sub_menus_<?php echo $submenu_key?>" name="admin_menus[sub][]" value="<?php echo $submenu_value ?>" type="checkbox" <?php echo $checked_sub ?>/>
62
- <label class="wlcms-toggle-btn<?php echo $disabled?>" for="admin_sub_menus_<?php echo $submenu_key?>"></label><label class="toggle-label" for="admin_sub_menus_<?php echo $submenu_key?>"><?php _e( $sub_menu_name , 'wlcms') ?></label>
63
  </li>
64
  <?php
65
  endforeach;
1
  <div class="wlcms-input-group wlcms-toggle-wrapper wlcms-menus-settings">
2
  <div class="wlcms-help">
3
+ <p><?php _e('Menus will be hidden to all User Roles up to and including Admins (with the exception of White Label CMS Admins and Super Admins).', 'white-label-cms') ?></p>
4
+ <p><?php _e('Select which menus you want to appear.', 'white-label-cms') ?></p>
5
  </div>
6
  <input type="hidden" value="index.php" name="admin_menus[main][]">
7
  <input type="hidden" value="index.php_wlcms_index-php" name="admin_menus[sub][]">
35
  ?>
36
  <li>
37
  <input class="wlcms-toggle wlcms-toggle-light main-toggle"<?php echo $disabled?> id="admin_menus_<?php echo $main_key?>" name="admin_menus[main][]" value="<?php echo $menu_slug ?>" type="checkbox"<?php echo $main_menu_checked?>/>
38
+ <label class="wlcms-toggle-btn<?php echo $disabled?>" for="admin_menus_<?php echo $main_key?>"></label><label class="toggle-label" for="admin_menus_<?php echo $main_key?>"><?php _e( $menu_name , 'white-label-cms') ?></label>
39
  <?php
40
  if( isset($main_menu['submenus']) && count( $main_menu['submenus'] )):
41
  echo '<a href="javascript:void(0)" class="wlcms-toggle-arrow"></a><ul class="sub_menu_wrapper">';
59
  ?>
60
  <li>
61
  <input class="wlcms-toggle wlcms-toggle-light sub-toggle"<?php echo $disabled?> id="admin_sub_menus_<?php echo $submenu_key?>" name="admin_menus[sub][]" value="<?php echo $submenu_value ?>" type="checkbox" <?php echo $checked_sub ?>/>
62
+ <label class="wlcms-toggle-btn<?php echo $disabled?>" for="admin_sub_menus_<?php echo $submenu_key?>"></label><label class="toggle-label" for="admin_sub_menus_<?php echo $submenu_key?>"><?php _e( $sub_menu_name , 'white-label-cms') ?></label>
63
  </li>
64
  <?php
65
  endforeach;
view/admin/parts/menus-white-label-cms-admin.php CHANGED
@@ -3,13 +3,13 @@
3
  ?>
4
  <div class="wlcms-input-group toggle-group wlcms_admin_wrapper">
5
  <div class="wlcms-input">
6
- <label class="toggle-label" for="enable_wlcms_admin"><?php _e('Want to hide menus for your client?', 'wlcms') ?></label>
7
  <input class="wlcms-toggle wlcms-toggle-light main-toggle" data-revised="1" id="enable_wlcms_admin" name="enable_wlcms_admin" value="1" type="checkbox" <?php checked(wlcms_field_setting('enable_wlcms_admin'), 1, true) ?>/>
8
  <label class="wlcms-toggle-btn" for="enable_wlcms_admin"></label>
9
  </div>
10
  <div class="sub-fields">
11
- <p><?php _e('You are now a White Label CMS Admin. This allows you to modify the menus that other people will see.', 'wlcms') ?></p>
12
- <p><?php echo sprintf('<strong>%s: %s</strong>', __('You', 'wlcms'), $current_user->user_email); ?></p>
13
 
14
  <input name="wlcms_admin[]" value="<?php echo $current_user->ID ?>" type="hidden"/>
15
  <?php
@@ -21,7 +21,7 @@
21
  $wlcms_admin_setting = wlcms_field_setting('wlcms_admin');
22
 
23
  if( count( $adminusers ) ):
24
- echo sprintf('<label>%s</label>', __('Other Admins:', 'wlcms'));
25
  echo '<div class="wlcms-other-admins">';
26
  foreach ( $adminusers as $user ) { ?>
27
  <div class="wlcms-input">
@@ -37,7 +37,7 @@
37
  endif;
38
  ?>
39
  <div class="wlcms-help">
40
- <p><?php _e('By selecting a White Label CMS Admin it means that only the selected Admins will be able to modify the settings for White Label CMS, as it won\'t be visible in the menu to anybody else. <a href="https://www.videousermanuals.com/white-label-cms/" target="_blank">Learn more about this feature</a>.', 'wlcms') ?></p>
41
  </div>
42
  </div>
43
  </div>
3
  ?>
4
  <div class="wlcms-input-group toggle-group wlcms_admin_wrapper">
5
  <div class="wlcms-input">
6
+ <label class="toggle-label" for="enable_wlcms_admin"><?php _e('Want to hide menus for your client?', 'white-label-cms') ?></label>
7
  <input class="wlcms-toggle wlcms-toggle-light main-toggle" data-revised="1" id="enable_wlcms_admin" name="enable_wlcms_admin" value="1" type="checkbox" <?php checked(wlcms_field_setting('enable_wlcms_admin'), 1, true) ?>/>
8
  <label class="wlcms-toggle-btn" for="enable_wlcms_admin"></label>
9
  </div>
10
  <div class="sub-fields">
11
+ <p><?php _e('You are now a White Label CMS Admin. This allows you to modify the menus that other people will see.', 'white-label-cms') ?></p>
12
+ <p><?php echo sprintf('<strong>%s: %s</strong>', __('You', 'white-label-cms'), $current_user->user_email); ?></p>
13
 
14
  <input name="wlcms_admin[]" value="<?php echo $current_user->ID ?>" type="hidden"/>
15
  <?php
21
  $wlcms_admin_setting = wlcms_field_setting('wlcms_admin');
22
 
23
  if( count( $adminusers ) ):
24
+ echo sprintf('<label>%s</label>', __('Other Admins:', 'white-label-cms'));
25
  echo '<div class="wlcms-other-admins">';
26
  foreach ( $adminusers as $user ) { ?>
27
  <div class="wlcms-input">
37
  endif;
38
  ?>
39
  <div class="wlcms-help">
40
+ <p><?php _e('By selecting a White Label CMS Admin it means that only the selected Admins will be able to modify the settings for White Label CMS, as it won\'t be visible in the menu to anybody else. <a href="https://www.videousermanuals.com/white-label-cms/" target="_blank">Learn more about this feature</a>.', 'white-label-cms') ?></p>
41
  </div>
42
  </div>
43
  </div>
view/admin/parts/menus.php CHANGED
@@ -1,7 +1,7 @@
1
  <?php wlcms()->admin_view('parts/menus-legacy'); ?>
2
  <div class="wlcms-body-wrapper">
3
  <div class="wlcms-body-header">
4
- <h2><?php _e('White Label CMS Admin', 'wlcms') ?></h2>
5
  </div>
6
  <div class="wlcms-body-main">
7
  <?php wlcms()->admin_view('parts/menus-white-label-cms-admin'); ?>
@@ -9,7 +9,7 @@
9
  </div>
10
  <div class="wlcms-body-wrapper menu-admin-wrapper">
11
  <div class="wlcms-body-header">
12
- <h2><?php _e('Menus', 'wlcms') ?></h2>
13
  </div>
14
  <div class="wlcms-body-main">
15
  <?php wlcms()->admin_view('parts/menus-menus'); ?>
@@ -17,7 +17,7 @@
17
  </div>
18
  <div class="wlcms-body-wrapper menu-admin-wrapper">
19
  <div class="wlcms-body-header">
20
- <h2><?php _e('Admin Bar Menus', 'wlcms') ?></h2>
21
  </div>
22
  <div class="wlcms-body-main">
23
  <?php wlcms()->admin_view('parts/menus-admin-bar-menus'); ?>
1
  <?php wlcms()->admin_view('parts/menus-legacy'); ?>
2
  <div class="wlcms-body-wrapper">
3
  <div class="wlcms-body-header">
4
+ <h2><?php _e('White Label CMS Admin', 'white-label-cms') ?></h2>
5
  </div>
6
  <div class="wlcms-body-main">
7
  <?php wlcms()->admin_view('parts/menus-white-label-cms-admin'); ?>
9
  </div>
10
  <div class="wlcms-body-wrapper menu-admin-wrapper">
11
  <div class="wlcms-body-header">
12
+ <h2><?php _e('Menus', 'white-label-cms') ?></h2>
13
  </div>
14
  <div class="wlcms-body-main">
15
  <?php wlcms()->admin_view('parts/menus-menus'); ?>
17
  </div>
18
  <div class="wlcms-body-wrapper menu-admin-wrapper">
19
  <div class="wlcms-body-header">
20
+ <h2><?php _e('Admin Bar Menus', 'white-label-cms') ?></h2>
21
  </div>
22
  <div class="wlcms-body-main">
23
  <?php wlcms()->admin_view('parts/menus-admin-bar-menus'); ?>
view/admin/parts/settings-admin-bar-setting.php CHANGED
@@ -5,6 +5,6 @@
5
  <label class="wlcms-toggle-btn" for="hide_admin_bar_all"></label><label class="toggle-label" for="hide_admin_bar_all"><?php _e('Hide Front-end Admin Bar'); ?></label>
6
  </div>
7
  <div class="wlcms-help">
8
- <?php _e('This will disable the admin bar on the front-end for all logged in users', 'wlcms') ?>
9
  </div>
10
  </div>
5
  <label class="wlcms-toggle-btn" for="hide_admin_bar_all"></label><label class="toggle-label" for="hide_admin_bar_all"><?php _e('Hide Front-end Admin Bar'); ?></label>
6
  </div>
7
  <div class="wlcms-help">
8
+ <?php _e('This will disable the admin bar on the front-end for all logged in users', 'white-label-cms') ?>
9
  </div>
10
  </div>
view/admin/parts/settings-admin-settings.php CHANGED
@@ -2,19 +2,19 @@
2
  <div class="wlcms-input-group">
3
  <div class="wlcms-input">
4
  <input class="wlcms-toggle wlcms-toggle-light" id="hide_help_box" name="hide_help_box" value="1" type="checkbox" <?php checked(wlcms_field_setting('hide_help_box'), 1, true) ?>/>
5
- <label class="wlcms-toggle-btn" for="hide_help_box"></label><label class="toggle-label" for="hide_help_box"><?php _e('Hide Help Box', 'wlcms') ?></label>
6
  </div>
7
  <div class="wlcms-help">
8
- <?php _e('Hide the help tab which appears in the top right', 'wlcms') ?>
9
  </div>
10
  </div>
11
 
12
  <div class="wlcms-input-group">
13
  <div class="wlcms-input">
14
  <input class="wlcms-toggle wlcms-toggle-light" id="hide_screen_options" name="hide_screen_options" value="1" type="checkbox" <?php checked(wlcms_field_setting('hide_screen_options'), 1, true) ?>/>
15
- <label class="wlcms-toggle-btn" for="hide_screen_options"></label><label class="toggle-label" for="hide_screen_options"><?php _e('Hide Screen Options', 'wlcms') ?></label>
16
  </div>
17
  <div class="wlcms-help">
18
- <?php _e('Hide the screen options which appear in the top right', 'wlcms') ?>
19
  </div>
20
  </div>
2
  <div class="wlcms-input-group">
3
  <div class="wlcms-input">
4
  <input class="wlcms-toggle wlcms-toggle-light" id="hide_help_box" name="hide_help_box" value="1" type="checkbox" <?php checked(wlcms_field_setting('hide_help_box'), 1, true) ?>/>
5
+ <label class="wlcms-toggle-btn" for="hide_help_box"></label><label class="toggle-label" for="hide_help_box"><?php _e('Hide Help Box', 'white-label-cms') ?></label>
6
  </div>
7
  <div class="wlcms-help">
8
+ <?php _e('Hide the help tab which appears in the top right', 'white-label-cms') ?>
9
  </div>
10
  </div>
11
 
12
  <div class="wlcms-input-group">
13
  <div class="wlcms-input">
14
  <input class="wlcms-toggle wlcms-toggle-light" id="hide_screen_options" name="hide_screen_options" value="1" type="checkbox" <?php checked(wlcms_field_setting('hide_screen_options'), 1, true) ?>/>
15
+ <label class="wlcms-toggle-btn" for="hide_screen_options"></label><label class="toggle-label" for="hide_screen_options"><?php _e('Hide Screen Options', 'white-label-cms') ?></label>
16
  </div>
17
  <div class="wlcms-help">
18
+ <?php _e('Hide the screen options which appear in the top right', 'white-label-cms') ?>
19
  </div>
20
  </div>
view/admin/parts/settings-custom-css-for-admin.php CHANGED
@@ -2,5 +2,5 @@
2
  <div class="wlcms-input">
3
  <textarea class="textarea-full" name="settings_custom_css_admin"><?php echo wlcms_field_setting('settings_custom_css_admin') ?></textarea>
4
  </div>
5
- <div class="wlcms-help"><?php _e('Override or add to any of the styles in the WordPress admin enter your own custom css here', 'wlcms') ?></div>
6
  </div>
2
  <div class="wlcms-input">
3
  <textarea class="textarea-full" name="settings_custom_css_admin"><?php echo wlcms_field_setting('settings_custom_css_admin') ?></textarea>
4
  </div>
5
+ <div class="wlcms-help"><?php _e('Override or add to any of the styles in the WordPress admin enter your own custom css here', 'white-label-cms') ?></div>
6
  </div>
view/admin/parts/settings-custom-editor-stylesheet.php CHANGED
@@ -1,9 +1,9 @@
1
  <div class="wlcms-input-group">
2
- <label><?php _e('Custom Stylesheet URL', 'wlcms') ?></label>
3
  <div class="wlcms-input">
4
  <input type="text" name="settings_custom_css_url" value="<?php echo wlcms_field_setting('settings_custom_css_url') ?>" />
5
  </div>
6
  <div class="wlcms-help">
7
- <?php _e('Create and upload a custom stylesheet with all style rules prefixed with .mceContentBody to your themes directory and enter the filename', 'wlcms') ?>
8
  </div>
9
  </div>
1
  <div class="wlcms-input-group">
2
+ <label><?php _e('Custom Stylesheet URL', 'white-label-cms') ?></label>
3
  <div class="wlcms-input">
4
  <input type="text" name="settings_custom_css_url" value="<?php echo wlcms_field_setting('settings_custom_css_url') ?>" />
5
  </div>
6
  <div class="wlcms-help">
7
+ <?php _e('Create and upload a custom stylesheet with all style rules prefixed with .mceContentBody to your themes directory and enter the filename', 'white-label-cms') ?>
8
  </div>
9
  </div>
view/admin/parts/settings-hide-page-meta-boxes.php CHANGED
@@ -16,7 +16,7 @@ $meta_boxes = array(
16
  <li>
17
  <div class="wlcms-input">
18
  <input class="wlcms-toggle wlcms-toggle-light" id="metabox_page_<?php echo $box_key ?>" name="metabox_page_<?php echo $box_key ?>" value="1" type="checkbox" <?php checked(wlcms_field_setting('metabox_page_' . $box_key ), 1, true) ?>/>
19
- <label class="wlcms-toggle-btn" for="metabox_page_<?php echo $box_key ?>"></label><label class="toggle-label" for="metabox_page_<?php echo $box_key ?>"><?php _e($box_value, 'wlcms') ?></label>
20
  </div>
21
  </li>
22
  <?php
16
  <li>
17
  <div class="wlcms-input">
18
  <input class="wlcms-toggle wlcms-toggle-light" id="metabox_page_<?php echo $box_key ?>" name="metabox_page_<?php echo $box_key ?>" value="1" type="checkbox" <?php checked(wlcms_field_setting('metabox_page_' . $box_key ), 1, true) ?>/>
19
+ <label class="wlcms-toggle-btn" for="metabox_page_<?php echo $box_key ?>"></label><label class="toggle-label" for="metabox_page_<?php echo $box_key ?>"><?php _e($box_value, 'white-label-cms') ?></label>
20
  </div>
21
  </li>
22
  <?php
view/admin/parts/settings-hide-post-meta-boxes.php CHANGED
@@ -20,7 +20,7 @@ $meta_boxes = array(
20
  <li>
21
  <div class="wlcms-input">
22
  <input class="wlcms-toggle wlcms-toggle-light" id="metabox_post_<?php echo $box_key ?>" name="metabox_post_<?php echo $box_key ?>" value="1" type="checkbox" <?php checked(wlcms_field_setting('metabox_post_' . $box_key ), 1, true) ?>/>
23
- <label class="wlcms-toggle-btn" for="metabox_post_<?php echo $box_key ?>"></label><label class="toggle-label" for="metabox_post_<?php echo $box_key ?>"><?php _e($box_value, 'wlcms') ?></label>
24
  </div>
25
  </li>
26
  <?php
20
  <li>
21
  <div class="wlcms-input">
22
  <input class="wlcms-toggle wlcms-toggle-light" id="metabox_post_<?php echo $box_key ?>" name="metabox_post_<?php echo $box_key ?>" value="1" type="checkbox" <?php checked(wlcms_field_setting('metabox_post_' . $box_key ), 1, true) ?>/>
23
+ <label class="wlcms-toggle-btn" for="metabox_post_<?php echo $box_key ?>"></label><label class="toggle-label" for="metabox_post_<?php echo $box_key ?>"><?php _e($box_value, 'white-label-cms') ?></label>
24
  </div>
25
  </li>
26
  <?php
view/admin/parts/settings-nag-messages.php CHANGED
@@ -1,6 +1,6 @@
1
  <div class="wlcms-input-group">
2
  <div class="wlcms-help">
3
- <?php _e('Nag Messages will be hidden to all User Roles up to and including Admins', 'wlcms') ?>
4
  </div>
5
  <div class="wlcms-input">
6
  <input class="wlcms-toggle wlcms-toggle-light" id="hide_nag_messages" value="1" name="hide_nag_messages" <?php checked(wlcms_field_setting('hide_nag_messages'), 1, true) ?> type="checkbox"/>
1
  <div class="wlcms-input-group">
2
  <div class="wlcms-help">
3
+ <?php _e('Nag Messages will be hidden to all User Roles up to and including Admins', 'white-label-cms') ?>
4
  </div>
5
  <div class="wlcms-input">
6
  <input class="wlcms-toggle wlcms-toggle-light" id="hide_nag_messages" value="1" name="hide_nag_messages" <?php checked(wlcms_field_setting('hide_nag_messages'), 1, true) ?> type="checkbox"/>
view/admin/parts/settings.php CHANGED
@@ -1,6 +1,6 @@
1
  <div class="wlcms-body-wrapper">
2
  <div class="wlcms-body-header">
3
- <h2><?php _e('Admin Bar', 'wlcms') ?></h2>
4
  </div>
5
  <div class="wlcms-body-main">
6
  <?php wlcms()->admin_view('parts/settings-admin-bar-setting'); ?>
@@ -8,7 +8,7 @@
8
  </div>
9
  <div class="wlcms-body-wrapper">
10
  <div class="wlcms-body-header">
11
- <h2><?php _e('Admin Settings', 'wlcms') ?></h2>
12
  </div>
13
  <div class="wlcms-body-main">
14
  <?php wlcms()->admin_view('parts/settings-admin-settings'); ?>
@@ -16,7 +16,7 @@
16
  </div>
17
  <div class="wlcms-body-wrapper">
18
  <div class="wlcms-body-header">
19
- <h2><?php _e('Nag Messages', 'wlcms') ?></h2>
20
  </div>
21
  <div class="wlcms-body-main">
22
  <?php wlcms()->admin_view('parts/settings-nag-messages'); ?>
@@ -24,7 +24,7 @@
24
  </div>
25
  <div class="wlcms-body-wrapper">
26
  <div class="wlcms-body-header">
27
- <h2><?php _e('Custom CSS for Admin', 'wlcms') ?></h2>
28
  </div>
29
  <div class="wlcms-body-main">
30
  <?php wlcms()->admin_view('parts/settings-custom-css-for-admin'); ?>
@@ -32,7 +32,7 @@
32
  </div>
33
  <div class="wlcms-body-wrapper">
34
  <div class="wlcms-body-header">
35
- <h2><?php _e('Custom Editor Stylesheet', 'wlcms') ?></h2>
36
  </div>
37
  <div class="wlcms-body-main">
38
  <?php wlcms()->admin_view('parts/settings-custom-editor-stylesheet'); ?>
1
  <div class="wlcms-body-wrapper">
2
  <div class="wlcms-body-header">
3
+ <h2><?php _e('Admin Bar', 'white-label-cms') ?></h2>
4
  </div>
5
  <div class="wlcms-body-main">
6
  <?php wlcms()->admin_view('parts/settings-admin-bar-setting'); ?>
8
  </div>
9
  <div class="wlcms-body-wrapper">
10
  <div class="wlcms-body-header">
11
+ <h2><?php _e('Admin Settings', 'white-label-cms') ?></h2>
12
  </div>
13
  <div class="wlcms-body-main">
14
  <?php wlcms()->admin_view('parts/settings-admin-settings'); ?>
16
  </div>
17
  <div class="wlcms-body-wrapper">
18
  <div class="wlcms-body-header">
19
+ <h2><?php _e('Nag Messages', 'white-label-cms') ?></h2>
20
  </div>
21
  <div class="wlcms-body-main">
22
  <?php wlcms()->admin_view('parts/settings-nag-messages'); ?>
24
  </div>
25
  <div class="wlcms-body-wrapper">
26
  <div class="wlcms-body-header">
27
+ <h2><?php _e('Custom CSS for Admin', 'white-label-cms') ?></h2>
28
  </div>
29
  <div class="wlcms-body-main">
30
  <?php wlcms()->admin_view('parts/settings-custom-css-for-admin'); ?>
32
  </div>
33
  <div class="wlcms-body-wrapper">
34
  <div class="wlcms-body-header">
35
+ <h2><?php _e('Custom Editor Stylesheet', 'white-label-cms') ?></h2>
36
  </div>
37
  <div class="wlcms-body-main">
38
  <?php wlcms()->admin_view('parts/settings-custom-editor-stylesheet'); ?>
view/admin/parts/wizard-step-1.php CHANGED
@@ -11,47 +11,47 @@
11
 
12
  <div class="wlcms-body-wrapper">
13
  <div class="wlcms-body-header">
14
- <h2><?php _e('Developer Branding', 'wlcms') ?></h2>
15
  </div>
16
  <div class="wlcms-body-main wizard-step1">
17
- <p>You can set up White Label CMS quickly by adding your details below, and on the next page it will ask you about your clients details. Or you can click the Skip button and add these details later.</p>
18
  <div class="wlcms-input-group">
19
- <label><?php _e('Developer Name', 'wlcms') ?></label>
20
  <div class="wlcms-input">
21
  <input type="text" name="wizard_developer_name" value="<?php echo wlcms_field_setting('developer_name') ?>" />
22
  </div>
23
  <div class="wlcms-help">
24
- <?php _e('For use in footer and ALT text\'s.', 'wlcms') ?>
25
  </div>
26
  </div>
27
 
28
  <div class="wlcms-input-group">
29
- <label><?php _e('Developer URL', 'wlcms') ?></label>
30
  <div class="wlcms-input">
31
  <input type="url" name="wizard_developer_url" value="<?php echo wlcms_field_setting('developer_url') ?>" />
32
  </div>
33
  <div class="wlcms-help">
34
- <?php _e('For use in footer and admin bar.', 'wlcms') ?>
35
  </div>
36
  </div>
37
 
38
  <div class="wlcms-input-group">
39
- <label><?php _e('Footer Text', 'wlcms') ?></label>
40
  <div class="wlcms-input">
41
  <input type="text" name="footer_text" value="<?php echo wlcms_field_setting('footer_text') ?>" />
42
  </div>
43
  <div class="wlcms-help">
44
- <?php _e('Text which will appear to the right of the Footer Image.', 'wlcms') ?>
45
  </div>
46
  </div>
47
 
48
  <div class="wlcms-input-group">
49
- <label><?php _e('RSS Feed', 'wlcms') ?></label>
50
  <div class="wlcms-input">
51
  <input type="url" name="rss_feed_address" value="<?php echo wlcms_field_setting('rss_feed_address') ?>" />
52
  </div>
53
  <div class="wlcms-help">
54
- <?php _e('The RSS feed address. For example http://' . wlcms_site_domain() . '/feed/', 'wlcms') ?>
55
  </div>
56
  </div>
57
  </div>
11
 
12
  <div class="wlcms-body-wrapper">
13
  <div class="wlcms-body-header">
14
+ <h2><?php _e('Developer Branding', 'white-label-cms') ?></h2>
15
  </div>
16
  <div class="wlcms-body-main wizard-step1">
17
+ <p><?php _e('You can set up White Label CMS quickly by adding your details below, and on the next page it will ask you about your clients details. Or you can click the Skip button and add these details later.', 'white-label-cms') ?></p>
18
  <div class="wlcms-input-group">
19
+ <label><?php _e('Developer Name', 'white-label-cms') ?></label>
20
  <div class="wlcms-input">
21
  <input type="text" name="wizard_developer_name" value="<?php echo wlcms_field_setting('developer_name') ?>" />
22
  </div>
23
  <div class="wlcms-help">
24
+ <?php _e('For use in footer and ALT text\'s.', 'white-label-cms') ?>
25
  </div>
26
  </div>
27
 
28
  <div class="wlcms-input-group">
29
+ <label><?php _e('Developer URL', 'white-label-cms') ?></label>
30
  <div class="wlcms-input">
31
  <input type="url" name="wizard_developer_url" value="<?php echo wlcms_field_setting('developer_url') ?>" />
32
  </div>
33
  <div class="wlcms-help">
34
+ <?php _e('For use in footer and admin bar.', 'white-label-cms') ?>
35
  </div>
36
  </div>
37
 
38
  <div class="wlcms-input-group">
39
+ <label><?php _e('Footer Text', 'white-label-cms') ?></label>
40
  <div class="wlcms-input">
41
  <input type="text" name="footer_text" value="<?php echo wlcms_field_setting('footer_text') ?>" />
42
  </div>
43
  <div class="wlcms-help">
44
+ <?php _e('Text which will appear to the right of the Footer Image.', 'white-label-cms') ?>
45
  </div>
46
  </div>
47
 
48
  <div class="wlcms-input-group">
49
+ <label><?php _e('RSS Feed', 'white-label-cms') ?></label>
50
  <div class="wlcms-input">
51
  <input type="url" name="rss_feed_address" value="<?php echo wlcms_field_setting('rss_feed_address') ?>" />
52
  </div>
53
  <div class="wlcms-help">
54
+ <?php _e('The RSS feed address. For example http://' . wlcms_site_domain() . '/feed/', 'white-label-cms') ?>
55
  </div>
56
  </div>
57
  </div>
view/admin/parts/wizard-step-2.php CHANGED
@@ -1,17 +1,17 @@
1
  <div class="wlcms-body-wrapper">
2
  <div class="wlcms-body-header">
3
- <h2><?php _e('Clients Branding', 'wlcms') ?></h2>
4
  </div>
5
  <div class="wlcms-body-main">
6
  <input type="hidden" name="form_section" value="wizard" />
7
  <!-- Start wlcms-body-main -->
8
  <div class="wlcms-input-group">
9
- <label><?php _e('Clients Business Name', 'wlcms') ?></label>
10
  <div class="wlcms-input">
11
  <input type="text" name="client_business_name" value="<?php echo wlcms_field_setting('client_business_name') ?>" />
12
  </div>
13
  <div class="wlcms-help">
14
- <?php _e('For use in Admin Page Title and Dashboard Title.', 'wlcms') ?>
15
  </div>
16
  </div>
17
 
@@ -21,11 +21,11 @@
21
  <div class="wlcms-input-group toggle-group">
22
  <div class="wlcms-input">
23
  <input class="wlcms-toggle wlcms-toggle-light main-toggle" data-revised="1" id="add_retina_logo" name="add_retina_logo" value="1" <?php checked(wlcms_field_setting('add_retina_logo'), 1, true) ?> type="checkbox"/>
24
- <label class="wlcms-toggle-btn" for="add_retina_logo"></label><label class="toggle-label" for="add_retina_logo"><?php _e('Retina Login Logo', 'wlcms') ?></label>
25
  </div>
26
  <div class="sub-fields">
27
  <div class="wlcms-input-group">
28
- <?php echo wlcms_form_upload_field('Upload Login Logo', 'retina_login_logo', 'Replace the Retina WordPress logo on the login page. Please make sure you use the standard retina format of x2') ?>
29
  </div>
30
  </div>
31
  </div>
1
  <div class="wlcms-body-wrapper">
2
  <div class="wlcms-body-header">
3
+ <h2><?php _e('Clients Branding', 'white-label-cms') ?></h2>
4
  </div>
5
  <div class="wlcms-body-main">
6
  <input type="hidden" name="form_section" value="wizard" />
7
  <!-- Start wlcms-body-main -->
8
  <div class="wlcms-input-group">
9
+ <label><?php _e('Clients Business Name', 'white-label-cms') ?></label>
10
  <div class="wlcms-input">
11
  <input type="text" name="client_business_name" value="<?php echo wlcms_field_setting('client_business_name') ?>" />
12
  </div>
13
  <div class="wlcms-help">
14
+ <?php _e('For use in Admin Page Title and Dashboard Title.', 'white-label-cms') ?>
15
  </div>
16
  </div>
17
 
21
  <div class="wlcms-input-group toggle-group">
22
  <div class="wlcms-input">
23
  <input class="wlcms-toggle wlcms-toggle-light main-toggle" data-revised="1" id="add_retina_logo" name="add_retina_logo" value="1" <?php checked(wlcms_field_setting('add_retina_logo'), 1, true) ?> type="checkbox"/>
24
+ <label class="wlcms-toggle-btn" for="add_retina_logo"></label><label class="toggle-label" for="add_retina_logo"><?php _e('Retina Login Logo', 'white-label-cms') ?></label>
25
  </div>
26
  <div class="sub-fields">
27
  <div class="wlcms-input-group">
28
+ <?php echo wlcms_form_upload_field(__('Upload Login Logo', 'white-label-cms'), 'retina_login_logo', __('Replace the Retina WordPress logo on the login page. Please make sure you use the standard retina format of x2', 'white-label-cms')) ?>
29
  </div>
30
  </div>
31
  </div>
view/admin/settings.php CHANGED
@@ -15,7 +15,7 @@ $views = array(
15
  <form method="post" enctype="multipart/form-data" class="wlcms-form" action="<?php echo wlcms()->admin_url(); ?>" >
16
  <?php wp_nonce_field('wlcms-settings-action', 'wlcms-settings_nonce'); ?>
17
  <div class="wlcms_header">
18
- <h1 class="wlcms_page_title"><img src="<?php echo WLCMS_ASSETS_URL ?>images/wlcms-logo.png"><?php _e("White Label CMS", 'wlcms'); ?></h1>
19
  </div>
20
  <div class="wlcms-navigation navigation">
21
  <ul>
@@ -23,7 +23,7 @@ $views = array(
23
  foreach($views as $slug => $view):
24
  ?>
25
  <li>
26
- <a href="#tab-<?php echo $slug ?>" data-tab="tab-<?php echo $slug ?>" id="wlcms_tab-<?php echo $slug ?>"<?php $slug == 'branding' ? ' class="current"' : ''?>><?php echo $view ?></a>
27
  </li>
28
  <?php
29
  endforeach;
@@ -31,7 +31,7 @@ $views = array(
31
  <?php do_action("wlcms_after_menu_tab"); ?>
32
  </ul>
33
  <span class="wlcms-pull-right">
34
- <input type="submit" value="Save" class="button button-primary button-large" name="wlcms-settings" />
35
  </span>
36
  </div>
37
  <div class="wlcms_content">
15
  <form method="post" enctype="multipart/form-data" class="wlcms-form" action="<?php echo wlcms()->admin_url(); ?>" >
16
  <?php wp_nonce_field('wlcms-settings-action', 'wlcms-settings_nonce'); ?>
17
  <div class="wlcms_header">
18
+ <h1 class="wlcms_page_title"><img src="<?php echo WLCMS_ASSETS_URL ?>images/wlcms-logo.png"><?php _e("White Label CMS", 'white-label-cms'); ?></h1>
19
  </div>
20
  <div class="wlcms-navigation navigation">
21
  <ul>
23
  foreach($views as $slug => $view):
24
  ?>
25
  <li>
26
+ <a href="#tab-<?php echo $slug ?>" data-tab="tab-<?php echo $slug ?>" id="wlcms_tab-<?php echo $slug ?>"<?php $slug == 'branding' ? ' class="current"' : ''?>><?php _e($view, 'white-label-cms'); ?></a>
27
  </li>
28
  <?php
29
  endforeach;
31
  <?php do_action("wlcms_after_menu_tab"); ?>
32
  </ul>
33
  <span class="wlcms-pull-right">
34
+ <input type="submit" value="<?php _e('Save', 'white-label-cms') ?>" class="button button-primary button-large" name="wlcms-settings" />
35
  </span>
36
  </div>
37
  <div class="wlcms_content">
view/admin/wizard.php CHANGED
@@ -3,21 +3,21 @@
3
  <form method="post" enctype="multipart/form-data" class="wlcms-form" action="<?php echo wlcms()->admin_url(); ?>" >
4
  <?php wp_nonce_field('wlcms-settings-action', 'wlcms-settings_nonce'); ?>
5
  <div class="wlcms_header">
6
- <h1 class="wlcms_page_title"><img src="<?php echo WLCMS_ASSETS_URL ?>images/wlcms-logo.png"><?php _e("White Label CMS", 'wlcms'); ?></h1>
7
  </div>
8
  <div class="navigation wizard-steps">
9
  <ul>
10
  <li id="wlcms_tab_step-1">
11
- <?php _e('Quick Setup Wizard: Step 1 of 2 - Developers Branding', 'wlcms')?>
12
  <span class="wlcms-pull-right">
13
- <a href="<?php echo wlcms()->admin_url() ?>" class="button button-large"><?php _e('Skip', 'wlcms')?></a>
14
- <input type="button" value="Next" class="button button-primary button-large wlcms-next-step" name="wlcms-settings" />
15
  </span>
16
  </li>
17
- <li id="wlcms_tab_step-2" style="display:none"><?php _e('Quick Setup Wizard: Step 2 of 2 - Clients Branding', 'wlcms')?>
18
  <span class="wlcms-pull-right">
19
- <input type="button" value="Back to step 1" class="button wlcms-prev-step button-large" name="wlcms-settings" />
20
- <input type="submit" value="Save" class="button button-primary button-large" name="wlcms-settings" />
21
  </span>
22
  </li>
23
  </ul>
3
  <form method="post" enctype="multipart/form-data" class="wlcms-form" action="<?php echo wlcms()->admin_url(); ?>" >
4
  <?php wp_nonce_field('wlcms-settings-action', 'wlcms-settings_nonce'); ?>
5
  <div class="wlcms_header">
6
+ <h1 class="wlcms_page_title"><img src="<?php echo WLCMS_ASSETS_URL ?>images/wlcms-logo.png"><?php _e("White Label CMS", 'white-label-cms'); ?></h1>
7
  </div>
8
  <div class="navigation wizard-steps">
9
  <ul>
10
  <li id="wlcms_tab_step-1">
11
+ <?php _e('Quick Setup Wizard: Step 1 of 2 - Developers Branding', 'white-label-cms')?>
12
  <span class="wlcms-pull-right">
13
+ <a href="<?php echo wlcms()->admin_url() ?>" class="button button-large"><?php _e('Skip', 'white-label-cms')?></a>
14
+ <input type="button" value="<?php _e('Next', 'white-label-cms') ?>" class="button button-primary button-large wlcms-next-step" name="wlcms-settings" />
15
  </span>
16
  </li>
17
+ <li id="wlcms_tab_step-2" style="display:none"><?php _e('Quick Setup Wizard: Step 2 of 2 - Clients Branding', 'white-label-cms')?>
18
  <span class="wlcms-pull-right">
19
+ <input type="button" value="<?php _e('Back to step 1', 'white-label-cms') ?>" class="button wlcms-prev-step button-large" name="wlcms-settings" />
20
+ <input type="submit" value="<?php _e('Save', 'white-label-cms') ?>" class="button button-primary button-large" name="wlcms-settings" />
21
  </span>
22
  </li>
23
  </ul>
wlcms-plugin.php CHANGED
@@ -3,15 +3,17 @@
3
  Plugin Name: White Label CMS
4
  Plugin URI: http://www.videousermanuals.com/white-label-cms/?utm_campaign=wlcms&utm_medium=plugin&utm_source=readme-txt
5
  Description: A plugin that allows you to brand WordPress CMS as your own
6
- Version: 2.0.2.2
7
  Author: www.videousermanuals.com
8
  Author URI: http://www.videousermanuals.com/?utm_campaign=wlcms&utm_medium=plugin&utm_source=readme-txt
 
 
9
  */
10
 
11
 
12
  if (!defined('ABSPATH')) exit; // Exit if accessed directly
13
 
14
- define('WLCMS_VERSION', '2.0.2.2');
15
  define("WLCMS_DIR", plugin_dir_path(__FILE__));
16
  define("WLCMS_ASSETS_URL", plugin_dir_url(__FILE__) . 'assets/');
17
  define("WLCMS_BASENAME", plugin_basename(__FILE__));
@@ -19,6 +21,7 @@ define("WLCMS_ASSETS_DIR", WLCMS_DIR . 'assets/');
19
  define("WLCMS_SCREEN_ID", 'settings_page_wlcms-plugin');
20
 
21
 
 
22
  include_once(WLCMS_DIR . 'includes/classes/Loader.php');
23
  include_once(WLCMS_DIR . 'includes/Functions.php');
24
 
3
  Plugin Name: White Label CMS
4
  Plugin URI: http://www.videousermanuals.com/white-label-cms/?utm_campaign=wlcms&utm_medium=plugin&utm_source=readme-txt
5
  Description: A plugin that allows you to brand WordPress CMS as your own
6
+ Version: 2.1
7
  Author: www.videousermanuals.com
8
  Author URI: http://www.videousermanuals.com/?utm_campaign=wlcms&utm_medium=plugin&utm_source=readme-txt
9
+ Text Domain: white-label-cms
10
+ Domain Path: /languages
11
  */
12
 
13
 
14
  if (!defined('ABSPATH')) exit; // Exit if accessed directly
15
 
16
+ define('WLCMS_VERSION', '2.1');
17
  define("WLCMS_DIR", plugin_dir_path(__FILE__));
18
  define("WLCMS_ASSETS_URL", plugin_dir_url(__FILE__) . 'assets/');
19
  define("WLCMS_BASENAME", plugin_basename(__FILE__));
21
  define("WLCMS_SCREEN_ID", 'settings_page_wlcms-plugin');
22
 
23
 
24
+ include_once(WLCMS_DIR . 'includes/classes/I18n.php');
25
  include_once(WLCMS_DIR . 'includes/classes/Loader.php');
26
  include_once(WLCMS_DIR . 'includes/Functions.php');
27