Capability Manager Enhanced - Version 2.4.4

Version Description

  • 02 Aug 2022 =
    • Added : Add "list" capabilities to display #206
    • Added : Add a Settings screen to Free version #520
    • Added : Add settings to allow users to select multiple roles when creating users #462
    • Fixed : Multiple role when creating user doesnt work #515
    • Fixed : Admin Menus issue with Yoast #493
    • Fixed : It's possible to get lockout of admin menus when all items are checked #527
    • Update : Limit "Control Custom Statuses" option to settings screens alone #528
    • Update : French and Italian Translations updates #524
    • Fixed : PHP Warning on viewing Admin Menus #525
Download this release

Release Info

Developer olatechpro
Plugin Icon 128x128 Capability Manager Enhanced
Version 2.4.4
Comparing to
See all releases

Code changes from version 2.4.3 to 2.4.4

capsman-enhanced.php CHANGED
@@ -3,7 +3,7 @@
3
  * Plugin Name: PublishPress Capabilities
4
  * Plugin URI: https://publishpress.com/capability-manager/
5
  * Description: Manage WordPress role definitions, per-site or network-wide. Organizes post capabilities by post type and operation.
6
- * Version: 2.4.3
7
  * Author: PublishPress
8
  * Author URI: https://publishpress.com/
9
  * Text Domain: capsman-enhanced
@@ -44,7 +44,7 @@ if (class_exists('PublishPressInstanceProtection\\Config')) {
44
  }
45
 
46
  if (!defined('CAPSMAN_VERSION')) {
47
- define('CAPSMAN_VERSION', '2.4.3');
48
  define('CAPSMAN_ENH_VERSION', CAPSMAN_VERSION);
49
  define('PUBLISHPRESS_CAPS_VERSION', CAPSMAN_VERSION);
50
  }
3
  * Plugin Name: PublishPress Capabilities
4
  * Plugin URI: https://publishpress.com/capability-manager/
5
  * Description: Manage WordPress role definitions, per-site or network-wide. Organizes post capabilities by post type and operation.
6
+ * Version: 2.4.4
7
  * Author: PublishPress
8
  * Author URI: https://publishpress.com/
9
  * Text Domain: capsman-enhanced
44
  }
45
 
46
  if (!defined('CAPSMAN_VERSION')) {
47
+ define('CAPSMAN_VERSION', '2.4.4');
48
  define('CAPSMAN_ENH_VERSION', CAPSMAN_VERSION);
49
  define('PUBLISHPRESS_CAPS_VERSION', CAPSMAN_VERSION);
50
  }
common/css/admin.css CHANGED
@@ -712,6 +712,10 @@ body.capabilities_page_pp-capabilities-admin-features .pp-capability-menus-selec
712
  float: right;
713
  }
714
 
 
 
 
 
715
  @media (max-width: 1199px) {
716
 
717
  #ppc-capabilities-wrapper {
712
  float: right;
713
  }
714
 
715
+ body.capabilities_page_pp-capabilities-settings .publishpress-caps-settings .form-table th {
716
+ width: 300px;
717
+ }
718
+
719
  @media (max-width: 1199px) {
720
 
721
  #ppc-capabilities-wrapper {
common/css/profile.css CHANGED
@@ -1,7 +1,9 @@
1
- tr.user-role-wrap #pp_roles_chosen li.search-choice {
 
2
  cursor: move !important;
3
  }
4
 
5
- tr.user-role-wrap .chosen-choice-click .chosen-drop {
 
6
  display: none !important;
7
  }
1
+ tr.user-role-wrap #pp_roles_chosen li.search-choice,
2
+ #createuser #pp_roles_chosen li.search-choice {
3
  cursor: move !important;
4
  }
5
 
6
+ tr.user-role-wrap .chosen-choice-click .chosen-drop,
7
+ #createuser .chosen-choice-click .chosen-drop {
8
  display: none !important;
9
  }
common/js/profile.js CHANGED
@@ -49,23 +49,23 @@ jQuery(function ($) {
49
  /**
50
  * Make role sortable
51
  */
52
- $(".user-role-wrap .chosen-choices").sortable();
53
 
54
  /**
55
  * Force role option re-order before profile form submission
56
  */
57
- $('form#your-profile').submit(function () {
58
  var options = $('#pp_roles option');
59
- $(".user-role-wrap .chosen-choices .search-choice .search-choice-close").each(function () {
60
  var select_position = $(this).attr('data-option-array-index');
61
  $(options[select_position]).insertBefore(options.eq(0));
62
  });
63
  });
64
 
65
  /**
66
- * Add class to chosen container on chouce click
67
  */
68
- $(document).on( 'mousedown', '.user-role-wrap .chosen-choices .search-choice', function() {
69
  $(this).closest('.chosen-container').addClass('chosen-choice-click');
70
  });
71
 
@@ -73,7 +73,7 @@ jQuery(function ($) {
73
  * Remove chosen container class on click inside input
74
  */
75
 
76
- $(document).on( 'mousedown', '.user-role-wrap .chosen-choices', function(e) {
77
  if (!e.target.parentElement.classList.contains('search-choice')) {
78
  $(this).closest('.chosen-container').removeClass('chosen-choice-click');
79
  }
49
  /**
50
  * Make role sortable
51
  */
52
+ $(".user-role-wrap .chosen-choices, #createuser .chosen-choices").sortable();
53
 
54
  /**
55
  * Force role option re-order before profile form submission
56
  */
57
+ $('form#your-profile, form#createuser').submit(function () {
58
  var options = $('#pp_roles option');
59
+ $(".user-role-wrap .chosen-choices .search-choice .search-choice-close, #createuser .chosen-choices .search-choice .search-choice-close").each(function () {
60
  var select_position = $(this).attr('data-option-array-index');
61
  $(options[select_position]).insertBefore(options.eq(0));
62
  });
63
  });
64
 
65
  /**
66
+ * Add class to chosen container on choice click
67
  */
68
+ $(document).on( 'mousedown', '.user-role-wrap .chosen-choices .search-choice, #createuser .chosen-choices .search-choice', function() {
69
  $(this).closest('.chosen-container').addClass('chosen-choice-click');
70
  });
71
 
73
  * Remove chosen container class on click inside input
74
  */
75
 
76
+ $(document).on( 'mousedown', '.user-role-wrap .chosen-choices, #createuser .chosen-choices', function(e) {
77
  if (!e.target.parentElement.classList.contains('search-choice')) {
78
  $(this).closest('.chosen-container').removeClass('chosen-choice-click');
79
  }
composer.lock CHANGED
@@ -1257,16 +1257,16 @@
1257
  },
1258
  {
1259
  "name": "symfony/console",
1260
- "version": "v5.4.10",
1261
  "source": {
1262
  "type": "git",
1263
  "url": "https://github.com/symfony/console.git",
1264
- "reference": "4d671ab4ddac94ee439ea73649c69d9d200b5000"
1265
  },
1266
  "dist": {
1267
  "type": "zip",
1268
- "url": "https://api.github.com/repos/symfony/console/zipball/4d671ab4ddac94ee439ea73649c69d9d200b5000",
1269
- "reference": "4d671ab4ddac94ee439ea73649c69d9d200b5000",
1270
  "shasum": ""
1271
  },
1272
  "require": {
@@ -1336,7 +1336,7 @@
1336
  "terminal"
1337
  ],
1338
  "support": {
1339
- "source": "https://github.com/symfony/console/tree/v5.4.10"
1340
  },
1341
  "funding": [
1342
  {
@@ -1352,7 +1352,7 @@
1352
  "type": "tidelift"
1353
  }
1354
  ],
1355
- "time": "2022-06-26T13:00:04+00:00"
1356
  },
1357
  {
1358
  "name": "symfony/deprecation-contracts",
@@ -1587,16 +1587,16 @@
1587
  },
1588
  {
1589
  "name": "symfony/filesystem",
1590
- "version": "v5.4.9",
1591
  "source": {
1592
  "type": "git",
1593
  "url": "https://github.com/symfony/filesystem.git",
1594
- "reference": "36a017fa4cce1eff1b8e8129ff53513abcef05ba"
1595
  },
1596
  "dist": {
1597
  "type": "zip",
1598
- "url": "https://api.github.com/repos/symfony/filesystem/zipball/36a017fa4cce1eff1b8e8129ff53513abcef05ba",
1599
- "reference": "36a017fa4cce1eff1b8e8129ff53513abcef05ba",
1600
  "shasum": ""
1601
  },
1602
  "require": {
@@ -1631,7 +1631,7 @@
1631
  "description": "Provides basic utilities for the filesystem",
1632
  "homepage": "https://symfony.com",
1633
  "support": {
1634
- "source": "https://github.com/symfony/filesystem/tree/v5.4.9"
1635
  },
1636
  "funding": [
1637
  {
@@ -1647,20 +1647,20 @@
1647
  "type": "tidelift"
1648
  }
1649
  ],
1650
- "time": "2022-05-20T13:55:35+00:00"
1651
  },
1652
  {
1653
  "name": "symfony/finder",
1654
- "version": "v5.4.8",
1655
  "source": {
1656
  "type": "git",
1657
  "url": "https://github.com/symfony/finder.git",
1658
- "reference": "9b630f3427f3ebe7cd346c277a1408b00249dad9"
1659
  },
1660
  "dist": {
1661
  "type": "zip",
1662
- "url": "https://api.github.com/repos/symfony/finder/zipball/9b630f3427f3ebe7cd346c277a1408b00249dad9",
1663
- "reference": "9b630f3427f3ebe7cd346c277a1408b00249dad9",
1664
  "shasum": ""
1665
  },
1666
  "require": {
@@ -1694,7 +1694,7 @@
1694
  "description": "Finds files and directories via an intuitive fluent interface",
1695
  "homepage": "https://symfony.com",
1696
  "support": {
1697
- "source": "https://github.com/symfony/finder/tree/v5.4.8"
1698
  },
1699
  "funding": [
1700
  {
@@ -1710,7 +1710,7 @@
1710
  "type": "tidelift"
1711
  }
1712
  ],
1713
- "time": "2022-04-15T08:07:45+00:00"
1714
  },
1715
  {
1716
  "name": "symfony/polyfill-ctype",
@@ -2206,16 +2206,16 @@
2206
  },
2207
  {
2208
  "name": "symfony/process",
2209
- "version": "v5.4.8",
2210
  "source": {
2211
  "type": "git",
2212
  "url": "https://github.com/symfony/process.git",
2213
- "reference": "597f3fff8e3e91836bb0bd38f5718b56ddbde2f3"
2214
  },
2215
  "dist": {
2216
  "type": "zip",
2217
- "url": "https://api.github.com/repos/symfony/process/zipball/597f3fff8e3e91836bb0bd38f5718b56ddbde2f3",
2218
- "reference": "597f3fff8e3e91836bb0bd38f5718b56ddbde2f3",
2219
  "shasum": ""
2220
  },
2221
  "require": {
@@ -2248,7 +2248,7 @@
2248
  "description": "Executes commands in sub-processes",
2249
  "homepage": "https://symfony.com",
2250
  "support": {
2251
- "source": "https://github.com/symfony/process/tree/v5.4.8"
2252
  },
2253
  "funding": [
2254
  {
@@ -2264,7 +2264,7 @@
2264
  "type": "tidelift"
2265
  }
2266
  ],
2267
- "time": "2022-04-08T05:07:18+00:00"
2268
  },
2269
  {
2270
  "name": "symfony/service-contracts",
@@ -2347,16 +2347,16 @@
2347
  },
2348
  {
2349
  "name": "symfony/string",
2350
- "version": "v5.4.10",
2351
  "source": {
2352
  "type": "git",
2353
  "url": "https://github.com/symfony/string.git",
2354
- "reference": "4432bc7df82a554b3e413a8570ce2fea90e94097"
2355
  },
2356
  "dist": {
2357
  "type": "zip",
2358
- "url": "https://api.github.com/repos/symfony/string/zipball/4432bc7df82a554b3e413a8570ce2fea90e94097",
2359
- "reference": "4432bc7df82a554b3e413a8570ce2fea90e94097",
2360
  "shasum": ""
2361
  },
2362
  "require": {
@@ -2413,7 +2413,7 @@
2413
  "utf8"
2414
  ],
2415
  "support": {
2416
- "source": "https://github.com/symfony/string/tree/v5.4.10"
2417
  },
2418
  "funding": [
2419
  {
@@ -2429,20 +2429,20 @@
2429
  "type": "tidelift"
2430
  }
2431
  ],
2432
- "time": "2022-06-26T15:57:47+00:00"
2433
  },
2434
  {
2435
  "name": "symfony/yaml",
2436
- "version": "v5.4.10",
2437
  "source": {
2438
  "type": "git",
2439
  "url": "https://github.com/symfony/yaml.git",
2440
- "reference": "04e42926429d9e8b39c174387ab990bf7817f7a2"
2441
  },
2442
  "dist": {
2443
  "type": "zip",
2444
- "url": "https://api.github.com/repos/symfony/yaml/zipball/04e42926429d9e8b39c174387ab990bf7817f7a2",
2445
- "reference": "04e42926429d9e8b39c174387ab990bf7817f7a2",
2446
  "shasum": ""
2447
  },
2448
  "require": {
@@ -2488,7 +2488,7 @@
2488
  "description": "Loads and dumps YAML files",
2489
  "homepage": "https://symfony.com",
2490
  "support": {
2491
- "source": "https://github.com/symfony/yaml/tree/v5.4.10"
2492
  },
2493
  "funding": [
2494
  {
@@ -2504,7 +2504,7 @@
2504
  "type": "tidelift"
2505
  }
2506
  ],
2507
- "time": "2022-06-20T11:50:59+00:00"
2508
  }
2509
  ],
2510
  "aliases": [],
1257
  },
1258
  {
1259
  "name": "symfony/console",
1260
+ "version": "v5.4.11",
1261
  "source": {
1262
  "type": "git",
1263
  "url": "https://github.com/symfony/console.git",
1264
+ "reference": "535846c7ee6bc4dd027ca0d93220601456734b10"
1265
  },
1266
  "dist": {
1267
  "type": "zip",
1268
+ "url": "https://api.github.com/repos/symfony/console/zipball/535846c7ee6bc4dd027ca0d93220601456734b10",
1269
+ "reference": "535846c7ee6bc4dd027ca0d93220601456734b10",
1270
  "shasum": ""
1271
  },
1272
  "require": {
1336
  "terminal"
1337
  ],
1338
  "support": {
1339
+ "source": "https://github.com/symfony/console/tree/v5.4.11"
1340
  },
1341
  "funding": [
1342
  {
1352
  "type": "tidelift"
1353
  }
1354
  ],
1355
+ "time": "2022-07-22T10:42:43+00:00"
1356
  },
1357
  {
1358
  "name": "symfony/deprecation-contracts",
1587
  },
1588
  {
1589
  "name": "symfony/filesystem",
1590
+ "version": "v5.4.11",
1591
  "source": {
1592
  "type": "git",
1593
  "url": "https://github.com/symfony/filesystem.git",
1594
+ "reference": "6699fb0228d1bc35b12aed6dd5e7455457609ddd"
1595
  },
1596
  "dist": {
1597
  "type": "zip",
1598
+ "url": "https://api.github.com/repos/symfony/filesystem/zipball/6699fb0228d1bc35b12aed6dd5e7455457609ddd",
1599
+ "reference": "6699fb0228d1bc35b12aed6dd5e7455457609ddd",
1600
  "shasum": ""
1601
  },
1602
  "require": {
1631
  "description": "Provides basic utilities for the filesystem",
1632
  "homepage": "https://symfony.com",
1633
  "support": {
1634
+ "source": "https://github.com/symfony/filesystem/tree/v5.4.11"
1635
  },
1636
  "funding": [
1637
  {
1647
  "type": "tidelift"
1648
  }
1649
  ],
1650
+ "time": "2022-07-20T13:00:38+00:00"
1651
  },
1652
  {
1653
  "name": "symfony/finder",
1654
+ "version": "v5.4.11",
1655
  "source": {
1656
  "type": "git",
1657
  "url": "https://github.com/symfony/finder.git",
1658
+ "reference": "7872a66f57caffa2916a584db1aa7f12adc76f8c"
1659
  },
1660
  "dist": {
1661
  "type": "zip",
1662
+ "url": "https://api.github.com/repos/symfony/finder/zipball/7872a66f57caffa2916a584db1aa7f12adc76f8c",
1663
+ "reference": "7872a66f57caffa2916a584db1aa7f12adc76f8c",
1664
  "shasum": ""
1665
  },
1666
  "require": {
1694
  "description": "Finds files and directories via an intuitive fluent interface",
1695
  "homepage": "https://symfony.com",
1696
  "support": {
1697
+ "source": "https://github.com/symfony/finder/tree/v5.4.11"
1698
  },
1699
  "funding": [
1700
  {
1710
  "type": "tidelift"
1711
  }
1712
  ],
1713
+ "time": "2022-07-29T07:37:50+00:00"
1714
  },
1715
  {
1716
  "name": "symfony/polyfill-ctype",
2206
  },
2207
  {
2208
  "name": "symfony/process",
2209
+ "version": "v5.4.11",
2210
  "source": {
2211
  "type": "git",
2212
  "url": "https://github.com/symfony/process.git",
2213
+ "reference": "6e75fe6874cbc7e4773d049616ab450eff537bf1"
2214
  },
2215
  "dist": {
2216
  "type": "zip",
2217
+ "url": "https://api.github.com/repos/symfony/process/zipball/6e75fe6874cbc7e4773d049616ab450eff537bf1",
2218
+ "reference": "6e75fe6874cbc7e4773d049616ab450eff537bf1",
2219
  "shasum": ""
2220
  },
2221
  "require": {
2248
  "description": "Executes commands in sub-processes",
2249
  "homepage": "https://symfony.com",
2250
  "support": {
2251
+ "source": "https://github.com/symfony/process/tree/v5.4.11"
2252
  },
2253
  "funding": [
2254
  {
2264
  "type": "tidelift"
2265
  }
2266
  ],
2267
+ "time": "2022-06-27T16:58:25+00:00"
2268
  },
2269
  {
2270
  "name": "symfony/service-contracts",
2347
  },
2348
  {
2349
  "name": "symfony/string",
2350
+ "version": "v5.4.11",
2351
  "source": {
2352
  "type": "git",
2353
  "url": "https://github.com/symfony/string.git",
2354
+ "reference": "5eb661e49ad389e4ae2b6e4df8d783a8a6548322"
2355
  },
2356
  "dist": {
2357
  "type": "zip",
2358
+ "url": "https://api.github.com/repos/symfony/string/zipball/5eb661e49ad389e4ae2b6e4df8d783a8a6548322",
2359
+ "reference": "5eb661e49ad389e4ae2b6e4df8d783a8a6548322",
2360
  "shasum": ""
2361
  },
2362
  "require": {
2413
  "utf8"
2414
  ],
2415
  "support": {
2416
+ "source": "https://github.com/symfony/string/tree/v5.4.11"
2417
  },
2418
  "funding": [
2419
  {
2429
  "type": "tidelift"
2430
  }
2431
  ],
2432
+ "time": "2022-07-24T16:15:25+00:00"
2433
  },
2434
  {
2435
  "name": "symfony/yaml",
2436
+ "version": "v5.4.11",
2437
  "source": {
2438
  "type": "git",
2439
  "url": "https://github.com/symfony/yaml.git",
2440
+ "reference": "05d4ea560f3402c6c116afd99fdc66e60eda227e"
2441
  },
2442
  "dist": {
2443
  "type": "zip",
2444
+ "url": "https://api.github.com/repos/symfony/yaml/zipball/05d4ea560f3402c6c116afd99fdc66e60eda227e",
2445
+ "reference": "05d4ea560f3402c6c116afd99fdc66e60eda227e",
2446
  "shasum": ""
2447
  },
2448
  "require": {
2488
  "description": "Loads and dumps YAML files",
2489
  "homepage": "https://symfony.com",
2490
  "support": {
2491
+ "source": "https://github.com/symfony/yaml/tree/v5.4.11"
2492
  },
2493
  "funding": [
2494
  {
2504
  "type": "tidelift"
2505
  }
2506
  ],
2507
+ "time": "2022-06-27T16:58:25+00:00"
2508
  }
2509
  ],
2510
  "aliases": [],
includes-core/admin-menus-promo.php CHANGED
@@ -79,13 +79,6 @@ $default_role = $capsman->current;
79
  /* <![CDATA[ */
80
  jQuery(document).ready(function ($) {
81
 
82
- // -------------------------------------------------------------
83
- // reload page for instant reflection if user is updating own role
84
- // -------------------------------------------------------------
85
- <?php if((int)$ppc_admin_menu_reload === 1){ ?>
86
- window.location = '<?php echo esc_url_raw(admin_url('admin.php?page=pp-capabilities-admin-menus&role=' . $default_role . '')); ?>';
87
- <?php } ?>
88
-
89
  // -------------------------------------------------------------
90
  // Set form action attribute to include role
91
  // -------------------------------------------------------------
79
  /* <![CDATA[ */
80
  jQuery(document).ready(function ($) {
81
 
 
 
 
 
 
 
 
82
  // -------------------------------------------------------------
83
  // Set form action attribute to include role
84
  // -------------------------------------------------------------
includes/admin-load.php CHANGED
@@ -83,6 +83,9 @@ class PP_Capabilities_Admin_UI {
83
  add_filter('block_editor_settings_all', [$this, 'filterCodeEditingStatus'], 999);
84
  add_filter('classic_editor_enabled_editors_for_post_type', [$this, 'filterRolePostTypeEditor'], 10, 2);
85
  add_filter('classic_editor_plugin_settings', [$this, 'filterRoleEditorSettings']);
 
 
 
86
  }
87
 
88
  /**
@@ -244,7 +247,7 @@ class PP_Capabilities_Admin_UI {
244
  if (function_exists('get_current_screen') && (!defined('PUBLISHPRESS_VERSION') || empty($publishpress) || empty($publishpress->modules) || empty($publishpress->modules->roles))) {
245
  $screen = get_current_screen();
246
 
247
- if ('user-edit' === $screen->base || ('user' === $screen->base && 'add' === $screen->action && defined('PP_CAPABILITIES_ADD_USER_MULTI_ROLES'))) {
248
  // Check if we are on the user's profile page
249
  wp_enqueue_script(
250
  'pp-capabilities-chosen-js',
@@ -352,7 +355,9 @@ class PP_Capabilities_Admin_UI {
352
  public function action_profile_update($userId, $oldUserData = [])
353
  {
354
  // Check if we need to update the user's roles, allowing to set multiple roles.
355
- if (!empty($_REQUEST['_wpnonce']) && wp_verify_nonce(sanitize_key($_REQUEST['_wpnonce']), 'update-user_' . $userId) && isset($_POST['pp_roles']) && current_user_can('promote_users')) {
 
 
356
  // Remove the user's roles
357
  $user = get_user_by('ID', $userId);
358
 
@@ -421,10 +426,7 @@ class PP_Capabilities_Admin_UI {
421
  add_submenu_page('pp-capabilities-roles', __('Admin Menus', 'capsman-enhanced'), __('Admin Menus', 'capsman-enhanced'), $cap_name, 'pp-capabilities-admin-menus', 'cme_fakefunc');
422
  add_submenu_page('pp-capabilities-roles', __('Nav Menus', 'capsman-enhanced'), __('Nav Menus', 'capsman-enhanced'), $cap_name, 'pp-capabilities-nav-menus', 'cme_fakefunc');
423
  add_submenu_page('pp-capabilities-roles', __('Backup', 'capsman-enhanced'), __('Backup', 'capsman-enhanced'), $cap_name, 'pp-capabilities-backup', 'cme_fakefunc');
424
-
425
- if (defined('PUBLISHPRESS_CAPS_PRO_VERSION')) {
426
- add_submenu_page('pp-capabilities-roles', __('Settings', 'capsman-enhanced'), __('Settings', 'capsman-enhanced'), $cap_name, 'pp-capabilities-settings', 'cme_fakefunc');
427
- }
428
 
429
  if (!defined('PUBLISHPRESS_CAPS_PRO_VERSION')) {
430
  add_submenu_page(
@@ -437,4 +439,10 @@ class PP_Capabilities_Admin_UI {
437
  );
438
  }
439
  }
 
 
 
 
 
 
440
  }
83
  add_filter('block_editor_settings_all', [$this, 'filterCodeEditingStatus'], 999);
84
  add_filter('classic_editor_enabled_editors_for_post_type', [$this, 'filterRolePostTypeEditor'], 10, 2);
85
  add_filter('classic_editor_plugin_settings', [$this, 'filterRoleEditorSettings']);
86
+
87
+ //capabilities settings
88
+ add_action('pp-capabilities-settings-ui', [$this, 'settingsUI']);
89
  }
90
 
91
  /**
247
  if (function_exists('get_current_screen') && (!defined('PUBLISHPRESS_VERSION') || empty($publishpress) || empty($publishpress->modules) || empty($publishpress->modules->roles))) {
248
  $screen = get_current_screen();
249
 
250
+ if ('user-edit' === $screen->base || ('user' === $screen->base && 'add' === $screen->action && (defined('PP_CAPABILITIES_ADD_USER_MULTI_ROLES') || get_option('cme_capabilities_add_user_multi_roles')))) {
251
  // Check if we are on the user's profile page
252
  wp_enqueue_script(
253
  'pp-capabilities-chosen-js',
355
  public function action_profile_update($userId, $oldUserData = [])
356
  {
357
  // Check if we need to update the user's roles, allowing to set multiple roles.
358
+ if ((!empty($_REQUEST['_wpnonce']) && wp_verify_nonce(sanitize_key($_REQUEST['_wpnonce']), 'update-user_' . $userId)
359
+ || !empty($_REQUEST['_wpnonce_create-user']) && wp_verify_nonce(sanitize_key($_REQUEST['_wpnonce_create-user']), 'create-user'))
360
+ && isset($_POST['pp_roles']) && current_user_can('promote_users')) {
361
  // Remove the user's roles
362
  $user = get_user_by('ID', $userId);
363
 
426
  add_submenu_page('pp-capabilities-roles', __('Admin Menus', 'capsman-enhanced'), __('Admin Menus', 'capsman-enhanced'), $cap_name, 'pp-capabilities-admin-menus', 'cme_fakefunc');
427
  add_submenu_page('pp-capabilities-roles', __('Nav Menus', 'capsman-enhanced'), __('Nav Menus', 'capsman-enhanced'), $cap_name, 'pp-capabilities-nav-menus', 'cme_fakefunc');
428
  add_submenu_page('pp-capabilities-roles', __('Backup', 'capsman-enhanced'), __('Backup', 'capsman-enhanced'), $cap_name, 'pp-capabilities-backup', 'cme_fakefunc');
429
+ add_submenu_page('pp-capabilities-roles', __('Settings', 'capsman-enhanced'), __('Settings', 'capsman-enhanced'), $cap_name, 'pp-capabilities-settings', 'cme_fakefunc');
 
 
 
430
 
431
  if (!defined('PUBLISHPRESS_CAPS_PRO_VERSION')) {
432
  add_submenu_page(
439
  );
440
  }
441
  }
442
+
443
+
444
+ public function settingsUI() {
445
+ require_once(dirname(__FILE__).'/settings-ui.php');
446
+ new Capabilities_Settings_UI();
447
+ }
448
  }
includes/admin.php CHANGED
@@ -202,6 +202,10 @@ if( defined('PRESSPERMIT_ACTIVE') ) {
202
  $cap_properties['delete']['type'] = array( 'delete_posts', 'delete_others_posts' );
203
  $cap_properties['delete']['type'] = array_merge( $cap_properties['delete']['type'], array( 'delete_published_posts', 'delete_private_posts' ) );
204
 
 
 
 
 
205
 
206
  $cap_properties['read']['type'] = array( 'read_private_posts' );
207
 
@@ -217,6 +221,10 @@ if( defined('PRESSPERMIT_ACTIVE') ) {
217
  'taxonomies' => __( 'Taxonomies', 'capsman-enhanced' ),
218
  );
219
 
 
 
 
 
220
  $cap_tips = array(
221
  'read_private' => esc_attr__( 'can read posts which are currently published with private visibility', 'capsman-enhanced' ),
222
  'edit' => esc_attr__( 'has basic editing capability (but may need other capabilities based on post status and ownership)', 'capsman-enhanced' ),
@@ -234,6 +242,11 @@ if( defined('PRESSPERMIT_ACTIVE') ) {
234
  'read_private_pages', 'edit_pages', 'edit_others_pages', 'edit_published_pages', 'edit_private_pages', 'publish_pages', 'delete_pages', 'delete_others_pages', 'delete_published_pages', 'delete_private_pages',
235
  'manage_categories'
236
  );
 
 
 
 
 
237
  $type_caps = array();
238
  $type_metacaps = array();
239
 
@@ -671,6 +684,10 @@ if( defined('PRESSPERMIT_ACTIVE') ) {
671
 
672
  echo '<h3>' . sprintf($caption_pattern, esc_html($cap_type_names[$cap_type])) . '</h3>';
673
 
 
 
 
 
674
  echo '<div class="ppc-filter-wrapper">';
675
  echo '<select class="ppc-filter-select">';
676
  $filter_caption = ('taxonomy' == $item_type) ? __('Filter by taxonomy', 'capsman-enhanced') : __('Filter by post type', 'capsman-enhanced');
@@ -708,8 +725,26 @@ if( defined('PRESSPERMIT_ACTIVE') ) {
708
  $row = "<tr class='cme_type_" . esc_attr($key) . "'>";
709
 
710
  if ( $cap_type ) {
711
- if ( empty($force_distinct_ui) && empty( $cap_properties[$cap_type][$item_type] ) )
712
- continue;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
713
 
714
  $type_label = (defined('CME_LEGACY_MENU_NAME_LABEL') && !empty($type_obj->labels->menu_name)) ? $type_obj->labels->menu_name : $type_obj->labels->name;
715
 
202
  $cap_properties['delete']['type'] = array( 'delete_posts', 'delete_others_posts' );
203
  $cap_properties['delete']['type'] = array_merge( $cap_properties['delete']['type'], array( 'delete_published_posts', 'delete_private_posts' ) );
204
 
205
+ if (defined('PRESSPERMIT_ACTIVE')) {
206
+ $cap_properties['list']['type'] = ['list_posts', 'list_others_posts', 'list_published_posts', 'list_private_posts'];
207
+ }
208
+
209
 
210
  $cap_properties['read']['type'] = array( 'read_private_posts' );
211
 
221
  'taxonomies' => __( 'Taxonomies', 'capsman-enhanced' ),
222
  );
223
 
224
+ if (defined('PRESSPERMIT_ACTIVE')) {
225
+ $cap_type_names['list'] = __('Listing', 'capsman-enhanced');
226
+ }
227
+
228
  $cap_tips = array(
229
  'read_private' => esc_attr__( 'can read posts which are currently published with private visibility', 'capsman-enhanced' ),
230
  'edit' => esc_attr__( 'has basic editing capability (but may need other capabilities based on post status and ownership)', 'capsman-enhanced' ),
242
  'read_private_pages', 'edit_pages', 'edit_others_pages', 'edit_published_pages', 'edit_private_pages', 'publish_pages', 'delete_pages', 'delete_others_pages', 'delete_published_pages', 'delete_private_pages',
243
  'manage_categories'
244
  );
245
+
246
+ if (defined('PRESSPERMIT_ACTIVE')) {
247
+ $default_caps = array_merge($default_caps, ['list_posts', 'list_others_posts', 'list_published_posts', 'list_private_posts', 'list_pages', 'list_others_pages', 'list_published_pages', 'list_private_pages']);
248
+ }
249
+
250
  $type_caps = array();
251
  $type_metacaps = array();
252
 
684
 
685
  echo '<h3>' . sprintf($caption_pattern, esc_html($cap_type_names[$cap_type])) . '</h3>';
686
 
687
+ if ($cap_type === 'list' && defined('PRESSPERMIT_ACTIVE')) {
688
+ echo '<p class="description"> '. esc_html__('Admin listing access is normally provided by the "Edit" capabilities. "List" capabilities apply if the corresponding "Edit" capability is missing, but otherwise have no effect.', 'capsman-enhanced') .' </p>';
689
+ }
690
+
691
  echo '<div class="ppc-filter-wrapper">';
692
  echo '<select class="ppc-filter-select">';
693
  $filter_caption = ('taxonomy' == $item_type) ? __('Filter by taxonomy', 'capsman-enhanced') : __('Filter by post type', 'capsman-enhanced');
725
  $row = "<tr class='cme_type_" . esc_attr($key) . "'>";
726
 
727
  if ( $cap_type ) {
728
+
729
+ if (empty($force_distinct_ui) && empty($cap_properties[$cap_type][$item_type])) {
730
+ continue;
731
+ }
732
+
733
+ if (defined('PRESSPERMIT_ACTIVE')) {
734
+ //add list capabilities
735
+ if (isset($type_obj->cap->edit_posts) && !isset($type_obj->cap->list_posts)) {
736
+ $type_obj->cap->list_posts = str_replace('edit_', 'list_', $type_obj->cap->edit_posts);
737
+ }
738
+ if (isset($type_obj->cap->edit_others_posts) && !isset($type_obj->cap->list_others_posts)) {
739
+ $type_obj->cap->list_others_posts = str_replace('edit_', 'list_', $type_obj->cap->edit_others_posts);
740
+ }
741
+ if (isset($type_obj->cap->edit_published_posts) && !isset($type_obj->cap->list_published_posts)) {
742
+ $type_obj->cap->list_published_posts = str_replace('edit_', 'list_', $type_obj->cap->edit_published_posts);
743
+ }
744
+ if (isset($type_obj->cap->edit_private_posts) && !isset($type_obj->cap->list_private_posts)) {
745
+ $type_obj->cap->list_private_posts = str_replace('edit_', 'list_', $type_obj->cap->edit_private_posts);
746
+ }
747
+ }
748
 
749
  $type_label = (defined('CME_LEGACY_MENU_NAME_LABEL') && !empty($type_obj->labels->menu_name)) ? $type_obj->labels->menu_name : $type_obj->labels->name;
750
 
includes/functions-admin.php CHANGED
@@ -247,4 +247,14 @@ function ppc_add_inline_script($custom_script, $handle = 'ppc-dummy-script-handl
247
  wp_register_script(esc_attr($handle), false, ['jquery']);
248
  wp_enqueue_script(esc_attr($handle), false, ['jquery']);
249
  wp_add_inline_script(esc_attr($handle), $custom_script);
 
 
 
 
 
 
 
 
 
 
250
  }
247
  wp_register_script(esc_attr($handle), false, ['jquery']);
248
  wp_enqueue_script(esc_attr($handle), false, ['jquery']);
249
  wp_add_inline_script(esc_attr($handle), $custom_script);
250
+ }
251
+
252
+ function pp_capabilities_settings_options() {
253
+ $settings_options = [
254
+ 'cme_editor_features_private_post_type',
255
+ 'cme_capabilities_show_private_taxonomies',
256
+ 'cme_capabilities_add_user_multi_roles'
257
+ ];
258
+
259
+ return apply_filters('pp_capabilities_settings_options', $settings_options);
260
  }
includes/manager.php CHANGED
@@ -135,7 +135,7 @@ class CapabilityManager
135
  $this->ID = 'capsman';
136
  $this->mod_url = plugins_url( '', CME_FILE );
137
 
138
- if (is_admin() && !empty($_REQUEST['page']) && ('pp-capabilities-settings' == $_REQUEST['page']) && (!empty($_POST['all_options']) || !empty($_POST['all_options_pro']))) {
139
  add_action('init', function() {
140
  if (isset($_REQUEST['_wpnonce']) && wp_verify_nonce($_REQUEST['_wpnonce'], 'pp-capabilities-settings') && current_user_can('manage_capabilities')) {
141
  require_once (dirname(CME_FILE) . '/includes/settings-handler.php');
@@ -380,9 +380,7 @@ class CapabilityManager
380
 
381
  add_submenu_page('pp-capabilities-roles', __('Backup', 'capsman-enhanced'), __('Backup', 'capsman-enhanced'), $cap_name, 'pp-capabilities-backup', array($this, 'backupTool'));
382
 
383
- if (defined('PUBLISHPRESS_CAPS_PRO_VERSION')) {
384
- add_submenu_page('pp-capabilities-roles', __('Settings', 'capsman-enhanced'), __('Settings', 'capsman-enhanced'), $cap_name, 'pp-capabilities-settings', array($this, 'settingsPage'));
385
- }
386
 
387
  if (!defined('PUBLISHPRESS_CAPS_PRO_VERSION')) {
388
  add_submenu_page(
135
  $this->ID = 'capsman';
136
  $this->mod_url = plugins_url( '', CME_FILE );
137
 
138
+ if (is_admin() && !empty($_REQUEST['page']) && ('pp-capabilities-settings' == $_REQUEST['page']) && !empty($_POST['all_options'])) {
139
  add_action('init', function() {
140
  if (isset($_REQUEST['_wpnonce']) && wp_verify_nonce($_REQUEST['_wpnonce'], 'pp-capabilities-settings') && current_user_can('manage_capabilities')) {
141
  require_once (dirname(CME_FILE) . '/includes/settings-handler.php');
380
 
381
  add_submenu_page('pp-capabilities-roles', __('Backup', 'capsman-enhanced'), __('Backup', 'capsman-enhanced'), $cap_name, 'pp-capabilities-backup', array($this, 'backupTool'));
382
 
383
+ add_submenu_page('pp-capabilities-roles', __('Settings', 'capsman-enhanced'), __('Settings', 'capsman-enhanced'), $cap_name, 'pp-capabilities-settings', array($this, 'settingsPage'));
 
 
384
 
385
  if (!defined('PUBLISHPRESS_CAPS_PRO_VERSION')) {
386
  add_submenu_page(
includes/settings-handler.php CHANGED
@@ -9,18 +9,19 @@
9
  add_action('init', function() {
10
  if (check_admin_referer('pp-capabilities-settings') && current_user_can('manage_capabilities')) {
11
  if (!empty($_POST['all_options'])) {
12
- foreach(array_map('sanitize_key', explode(',', sanitize_text_field($_POST['all_options']))) as $option_name) {
13
- foreach (['cme_', 'capsman', 'pp_capabilities'] as $prefix) {
14
- if (0 === strpos($option_name, $prefix)) {
15
-
16
- // Free plugin doesn't currently have any settings, so disable this code for now to avoid sanitization concerns.
17
-
18
- // Leave upstream conditionals in place to ensure access is properly regulated in any future implementation.
19
- }
20
- }
21
- }
22
- }
23
-
24
- do_action('pp-capabilities-update-settings');
 
25
  }
26
  });
9
  add_action('init', function() {
10
  if (check_admin_referer('pp-capabilities-settings') && current_user_can('manage_capabilities')) {
11
  if (!empty($_POST['all_options'])) {
12
+ foreach (array_map('sanitize_key', explode(',', sanitize_text_field($_POST['all_options']))) as $option_name) {
13
+ foreach (['cme_', 'capsman', 'pp_capabilities'] as $prefix) {
14
+ if (0 === strpos($option_name, $prefix)) {
15
+ $value = isset($_POST[$option_name]) ? sanitize_text_field($_POST[$option_name]) : '';
16
+
17
+ if (!is_array($value)) {
18
+ $value = trim($value);
19
+ }
20
+
21
+ update_option($option_name, $value);
22
+ }
23
+ }
24
+ }
25
+ }
26
  }
27
  });
includes/settings-ui.php ADDED
@@ -0,0 +1,114 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /*
3
+ * PublishPress Capabilities
4
+ *
5
+ * Plugin settings UI
6
+ *
7
+ */
8
+
9
+ class Capabilities_Settings_UI {
10
+ public function __construct() {
11
+ $this->settingsUI();
12
+ }
13
+
14
+ public function settingsUI() {
15
+ $all_options = pp_capabilities_settings_options();
16
+ $first_table_display = defined('PUBLISHPRESS_CAPS_PRO_VERSION') ? 'display:none;' : '';
17
+ ?>
18
+
19
+ <ul id="publishpress-capability-settings-tabs" class="nav-tab-wrapper">
20
+ <?php do_action('pp_capabilities_settings_before_menu_list'); ?>
21
+ <li class="nav-tab"><a href="#ppcs-tab-roles"><?php esc_html_e('Roles', 'capsman-enhanced');?></a></li>
22
+ <li class="nav-tab"><a href="#ppcs-tab-capabilities"><?php esc_html_e('Capabilities', 'capsman-enhanced');?></a></li>
23
+ <li class="nav-tab"><a href="#ppcs-tab-editor-features"><?php esc_html_e('Editor Features', 'capsman-enhanced');?></a></li>
24
+ <?php do_action('pp_capabilities_settings_after_menu_list'); ?>
25
+ </ul>
26
+
27
+ <fieldset>
28
+ <table id="akmin">
29
+ <tr>
30
+ <td class="content">
31
+
32
+ <?php do_action('pp_capabilities_settings_before_menu_content'); ?>
33
+
34
+ <table class="form-table" role="presentation" id="ppcs-tab-roles" style="<?php echo esc_attr($first_table_display); ?>">
35
+ <tbody>
36
+
37
+ <tr>
38
+ <?php
39
+ $checked = checked(!empty(get_option('cme_capabilities_add_user_multi_roles', 0)), true, false);
40
+ ?>
41
+ <th scope="row"> <?php esc_html_e('Enable Multiple Roles When Creating Users', 'capsman-enhanced'); ?></th>
42
+ <td>
43
+ <label>
44
+ <input type="checkbox" name="cme_capabilities_add_user_multi_roles" id="cme_capabilities_add_user_multi_roles" autocomplete="off" value="1" <?php echo esc_attr($checked);?>>
45
+ </label>
46
+ <br>
47
+ </td>
48
+ </tr>
49
+ </tbody>
50
+ </table>
51
+
52
+ <table class="form-table" role="presentation" id="ppcs-tab-capabilities" style="display:none;">
53
+ <tbody>
54
+
55
+ <tr>
56
+ <?php
57
+ $checked = checked(!empty(get_option('cme_capabilities_show_private_taxonomies', 0)), true, false);
58
+ ?>
59
+ <th scope="row"> <?php esc_html_e('Show Private Taxonomies', 'capsman-enhanced'); ?></th>
60
+ <td>
61
+ <label>
62
+ <input type="checkbox" name="cme_capabilities_show_private_taxonomies" id="cme_capabilities_show_private_taxonomies" autocomplete="off" value="1" <?php echo esc_attr($checked);?>>
63
+ </label>
64
+ <br>
65
+ </td>
66
+ </tr>
67
+
68
+ <?php do_action('pp_capabilities_settings_after_capabilities_content'); ?>
69
+
70
+ </tbody>
71
+ </table>
72
+
73
+ <table class="form-table" role="presentation" id="ppcs-tab-editor-features" style="display:none;">
74
+ <tbody>
75
+
76
+ <tr>
77
+ <?php
78
+ $checked = checked(!empty(get_option('cme_editor_features_private_post_type', 0)), true, false);
79
+ ?>
80
+ <th scope="row"> <?php esc_html_e('Support for Private Post Types', 'capsman-enhanced'); ?></th>
81
+ <td>
82
+ <label>
83
+ <input type="checkbox" name="cme_editor_features_private_post_type" id="cme_editor_features_private_post_type" autocomplete="off" value="1" <?php echo esc_attr($checked);?>>
84
+ </label>
85
+ <br>
86
+ </td>
87
+ </tr>
88
+ </tbody>
89
+ </table>
90
+
91
+ </td>
92
+ </tr>
93
+ </table>
94
+ </fieldset>
95
+
96
+ <script>
97
+ jQuery(document).ready(function ($) {
98
+
99
+ $('#publishpress-capability-settings-tabs').find('li').click(function (e) {
100
+ e.preventDefault();
101
+ $('#publishpress-capability-settings-tabs').children('li').filter('.nav-tab-active').removeClass('nav-tab-active');
102
+ $(this).addClass('nav-tab-active');
103
+
104
+ $('[id^="ppcs-"]').hide();
105
+ $($(this).find('a').first().attr('href')).show();
106
+ });
107
+
108
+ });
109
+ </script>
110
+
111
+ <?php
112
+ echo "<input type='hidden' name='all_options' value='" . implode(',', array_map('esc_attr', $all_options)) . "' />";
113
+ }
114
+ } // end class
includes/settings.php CHANGED
@@ -7,7 +7,6 @@
7
  */
8
 
9
  global $wpdb;
10
- $all_options = [];
11
  ?>
12
 
13
  <div class="wrap publishpress-caps-manage publishpress-caps-settings pressshack-admin-wrapper">
@@ -20,7 +19,7 @@ $all_options = [];
20
 
21
  <?php do_action('pp-capabilities-settings-ui');?>
22
 
23
- <?php if (!defined('PUBLISHPRESS_CAPS_PRO_VERSION')) :?>
24
  <h3><?php esc_html_e('Related Permissions Plugins', 'capsman-enhanced');?></h3>
25
  <ul>
26
  <?php $_url = "plugin-install.php?tab=plugin-information&plugin=publishpress&TB_iframe=true&width=640&height=678";
@@ -47,11 +46,7 @@ $all_options = [];
47
 
48
  <li class="publishpress-contact"><a href="https://publishpress.com/contact" target="_blank"><?php esc_html_e('Help / Contact Form', 'capsman-enhanced');?></a></li>
49
  </ul>
50
- <?php endif;?>
51
-
52
- <?php
53
- echo "<input type='hidden' name='all_options' value='" . implode(',', array_map('esc_attr', $all_options)) . "' />";
54
- ?>
55
 
56
  <input type="submit" name="submit" id="submit" class="button button-primary" value="<?php esc_attr_e('Save Changes', 'capsman-enhanced');?>">
57
  </form>
7
  */
8
 
9
  global $wpdb;
 
10
  ?>
11
 
12
  <div class="wrap publishpress-caps-manage publishpress-caps-settings pressshack-admin-wrapper">
19
 
20
  <?php do_action('pp-capabilities-settings-ui');?>
21
 
22
+ <?php if (!defined('PUBLISHPRESS_CAPS_PRO_VERSION')) : /*?>
23
  <h3><?php esc_html_e('Related Permissions Plugins', 'capsman-enhanced');?></h3>
24
  <ul>
25
  <?php $_url = "plugin-install.php?tab=plugin-information&plugin=publishpress&TB_iframe=true&width=640&height=678";
46
 
47
  <li class="publishpress-contact"><a href="https://publishpress.com/contact" target="_blank"><?php esc_html_e('Help / Contact Form', 'capsman-enhanced');?></a></li>
48
  </ul>
49
+ <?php */ endif;?>
 
 
 
 
50
 
51
  <input type="submit" name="submit" id="submit" class="button button-primary" value="<?php esc_attr_e('Save Changes', 'capsman-enhanced');?>">
52
  </form>
languages/capsman-enhanced-fr_FR.mo CHANGED
Binary file
languages/capsman-enhanced-fr_FR.po CHANGED
@@ -4,9 +4,9 @@ msgid ""
4
  msgstr ""
5
  "Project-Id-Version: Plugins - PublishPress Capabilities &#8211; User Role Access, Editor Permissions, Admin Menus - Stable (latest release)\n"
6
  "POT-Creation-Date: \n"
7
- "PO-Revision-Date: 2022-05-16 16:03+0200\n"
8
  "Last-Translator: \n"
9
- "Language-Team: Angelo Giammarresi - info@wocmultimedia.com\n"
10
  "Language: fr\n"
11
  "MIME-Version: 1.0\n"
12
  "Content-Type: text/plain; charset=UTF-8\n"
@@ -14,11 +14,116 @@ msgstr ""
14
  "Plural-Forms: nplurals=2; plural=n > 1;\n"
15
  "X-Generator: Poedit 3.0.1\n"
16
 
17
- #: includes/roles/class/class-pp-roles-admin.php:264
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
18
  msgid "Read more on Role Level."
19
  msgstr "Lire la suite sur le niveau de rôle."
20
 
21
- #: includes/roles/class/class-pp-roles-admin.php:163
22
  msgid "Each user role has a level from 0 to 10. The Subscriber role defaults to the lowest level (0). The Administrator role defaults to level 10."
23
  msgstr "Chaque rôle d’utilisateur/utilisatrice a un niveau de 0 à 10. Le rôle d’abonné/abonnée a par défaut le niveau le plus bas (0). Le rôle d’administrateur/administratrice a le niveau 10 par défaut."
24
 
@@ -28,13 +133,13 @@ msgstr "Limité :"
28
 
29
  #: includes/features/editor-features.php:111
30
  #: includes/features/editor-features.php:113
31
- #: includes/features/editor-features.php:215
32
- #: includes/features/editor-features.php:217
33
  msgid "Save %s Restrictions"
34
  msgstr "Enregistrer %s restrictions"
35
 
36
  #: includes/features/editor-features.php:107
37
- #: includes/features/editor-features.php:211
38
  msgid "Save for all Post Types"
39
  msgstr "Enregistrer pour tous les types de publication"
40
 
@@ -86,59 +191,55 @@ msgid_plural "Mine %s"
86
  msgstr[0] "Mon %s"
87
  msgstr[1] "Mis %s"
88
 
89
- #: includes/roles/class/class-pp-roles-admin.php:462
90
  msgid "Load Less"
91
  msgstr "Charger moins"
92
 
93
- #: includes/roles/class/class-pp-roles-admin.php:459
94
  msgid "Load More"
95
  msgstr "Charger plus"
96
 
97
- #: includes/roles/class/class-pp-roles-admin.php:431
98
  msgid "These can be edited on the %1s Capabilities screen %2s"
99
  msgstr "Elles peuvent être modifiées sur l’écran %1s Permissions %2s"
100
 
101
- #: includes/roles/class/class-pp-roles-admin.php:353
102
  msgid "All Roles"
103
  msgstr "Tous les rôles"
104
 
105
- #: includes/roles/class/class-pp-roles-admin.php:347
106
  msgid "Copy Role"
107
  msgstr "Copier le rôle"
108
 
109
- #: includes/roles/class/class-pp-roles-admin.php:345
110
- msgid "Edit Role"
111
- msgstr "Modifier le rôle"
112
-
113
- #: includes/roles/class/class-pp-roles-admin.php:337
114
  msgid "Create Role"
115
  msgstr "Créer le rôle"
116
 
117
- #: includes/roles/class/class-pp-roles-admin.php:337
118
  msgid "Update Role"
119
  msgstr "Mettre à jour le rôle"
120
 
121
- #: includes/roles/class/class-pp-roles-admin.php:331
122
  msgid "%s role copied to editor. Please click the \"Create Role\" button to create this new role."
123
  msgstr "Le rôle %s a été copié dans l’éditeur. Veuillez cliquer sur le bouton « Créer un rôle » pour créer ce nouveau rôle."
124
 
125
- #: includes/roles/class/class-pp-roles-admin.php:241
126
  msgid "Slug already exists"
127
  msgstr "Ce slug existe déjà"
128
 
129
- #: includes/roles/class/class-pp-roles-admin.php:185
130
  msgid "Deleting this role will completely remove it from database and is irrecoverable."
131
  msgstr "En supprimant ce rôle, il sera complètement supprimé de la base de données et sera irrécupérable."
132
 
133
- #: includes/roles/class/class-pp-roles-admin.php:154
134
  msgid "The \"slug\" is the URL-friendly version of the role. It is usually all lowercase and contains only letters, numbers and underscores."
135
  msgstr "Le « slug » est la version du rôle adaptée à l’URL. Il est généralement tout en minuscules et ne contient que des lettres, des chiffres et des tirets bas."
136
 
137
- #: includes/roles/class/class-pp-roles-admin.php:153
138
  msgid "Role Slug"
139
  msgstr "Slug du rôle"
140
 
141
- #: includes/roles/class/class-pp-roles-admin.php:109
142
  msgid "Advanced"
143
  msgstr "Avancé"
144
 
@@ -146,7 +247,7 @@ msgstr "Avancé"
146
  msgid "General"
147
  msgstr "Général"
148
 
149
- #: includes/roles/class/class-pp-roles-actions.php:388
150
  msgid "%s role updated successfully."
151
  msgstr "Le rôle de %s a bien été mis à jour."
152
 
@@ -154,51 +255,51 @@ msgstr "Le rôle de %s a bien été mis à jour."
154
  msgid "You do not have permission to perform this action."
155
  msgstr "Vous n’avez pas les droits nécessaires pour effectuer cette action."
156
 
157
- #: includes/features/restrict-editor-features.php:320
158
  msgid "Template"
159
  msgstr "Modèle"
160
 
161
- #: includes/backup.php:360
162
  msgid "Import"
163
  msgstr "Importer"
164
 
165
- #: includes/backup.php:351
166
  msgid "Before importing, we recommend using the \"Backup\" tab to create a backup of your current settings."
167
  msgstr "Avant d’importer, nous vous recommandons d’utiliser l’onglet « Sauvegarde » pour créer une sauvegarde de vos paramètres actuels."
168
 
169
- #: includes/backup.php:349
170
  msgid "Import the plugin settings from a .json file. This file can be obtained by exporting the settings on another site using the form above."
171
  msgstr "Importez les réglages de l’extension à partir d’un fichier .json. Ce fichier peut être obtenu en exportant les réglages sur un autre site à l’aide du formulaire ci-dessus."
172
 
173
- #: includes/backup.php:347
174
  msgid "Please make a 'Manual Backup' in the backup tab to enable backup restore in case anything goes wrong."
175
  msgstr "Veuillez effectuer une « sauvegarde manuelle » dans l’onglet « Sauvegarde » pour permettre la restauration de la sauvegarde en cas de problème."
176
 
177
- #: includes/backup.php:345
178
  msgid "Import Settings"
179
  msgstr "Importer les réglages"
180
 
181
- #: includes/backup.php:338
182
  msgid "Export"
183
  msgstr "Exporter"
184
 
185
- #: includes/backup.php:316
186
  msgid "Export the plugin settings for this site as a .json file. This allows you to easily import the configuration into another site."
187
  msgstr "Exportez les réglages de l’extension de ce site au format .json. Cela vous permet d’importer facilement les réglages de votre configuration sur un autre site."
188
 
189
- #: includes/backup.php:314
190
  msgid "Export Settings"
191
  msgstr "Exporter les réglages"
192
 
193
- #: includes/backup.php:119
194
  msgid "Manual backup of %s (%s)"
195
  msgstr "Sauvegarde manuelle de %s (%s)"
196
 
197
- #: includes/backup.php:114
198
  msgid "all roles"
199
  msgstr "tous les rôles"
200
 
201
- #: includes/backup.php:51 includes/backup.php:309
202
  msgid "Export / Import"
203
  msgstr "Exporter/importer"
204
 
@@ -226,11 +327,11 @@ msgstr "Veuillez téléverser un fichier à importer"
226
  msgid "%s restored from last backup."
227
  msgstr "%s restauré à partir de la dernière sauvegarde."
228
 
229
- #: includes/admin.php:1367
230
  msgid "Go to the Backup feature"
231
  msgstr "Accédez à la fonctionnalité de sauvegarde"
232
 
233
- #: includes/admin.php:1363
234
  msgid ""
235
  "This plugin automatically creates a backup whenever you save changes. You can use these backups to\n"
236
  "restore an earlier version of your roles and capabilities."
@@ -238,7 +339,7 @@ msgstr ""
238
  "Cette extension crée automatiquement une sauvegarde à chaque fois que vous enregistrez des modifications. Vous pouvez utiliser ces sauvegardes pour\n"
239
  "restaurer une version antérieure de vos rôles et permissions."
240
 
241
- #: includes/admin.php:1361
242
  msgid "PublishPress Capabilities is safe to use"
243
  msgstr "PublishPress Capabilities est sûr à utiliser"
244
 
@@ -246,7 +347,7 @@ msgstr "PublishPress Capabilities est sûr à utiliser"
246
  msgid "This plugin can be deleted."
247
  msgstr "Cette extension peut être supprimée."
248
 
249
- #: includes/roles/class/class-pp-roles-actions.php:299
250
  msgid "The new role %s was created successfully."
251
  msgstr "Le nouveau rôle %s a été créé avec succès."
252
 
@@ -335,90 +436,88 @@ msgstr "Note : Vous ne limitez l’accès qu’aux écrans des fonctionnalités
335
  msgid "Admin Feature Restrictions"
336
  msgstr "Restrictions des fonctionnalités administratives"
337
 
338
- #: includes/backup.php:389 includes/features/admin-features.php:236
339
- #: includes/features/editor-features.php:236
340
  msgid "Click here to install PublishPress Permissions"
341
  msgstr "Cliquez ici pour installer PublishPress Permissions"
342
 
343
- #: includes/backup.php:386 includes/features/admin-features.php:233
344
- #: includes/features/editor-features.php:233
345
  msgid "PublishPress Permissions is 100% free to install."
346
  msgstr "PublishPress Permissions est 100% gratuit à installer."
347
 
348
- #: includes/backup.php:385 includes/features/admin-features.php:232
349
- #: includes/features/editor-features.php:232
350
  msgid "Allow specific user roles or users to manage each post."
351
  msgstr "Autorisez des rôles de comptes spécifiques à gérer chaque publication."
352
 
353
- #: includes/backup.php:384 includes/features/admin-features.php:231
354
- #: includes/features/editor-features.php:231
355
  msgid "Choose who can read and edit each post."
356
  msgstr "Choisissez qui peut lire et modifier chaque publication."
357
 
358
- #: includes/backup.php:382 includes/features/admin-features.php:229
359
- #: includes/features/editor-features.php:229
360
  msgid "Control permissions for individual posts and pages"
361
  msgstr "Contrôlez les autorisations pour les publications et les pages individuelles"
362
 
363
- #: includes/backup.php:381 includes/features/admin-features.php:228
364
- #: includes/features/editor-features.php:228
365
  msgid "Recommendations for you"
366
  msgstr "Des recommandations pour vous"
367
 
368
- #: includes/admin.php:870
369
  msgid "Plugin Capabilities &ndash; %s"
370
  msgstr "Extension Permissions &ndash; %s"
371
 
372
- #: includes/admin.php:738 includes/admin.php:876 includes/admin.php:1082
 
373
  msgid "No results found. Please try again with a different word."
374
  msgstr "Aucun résultat trouvé. Veuillez réessayer avec un autre mot."
375
 
376
- #: includes/admin.php:735 includes/admin.php:873 includes/admin.php:1079
 
377
  msgid "Filter by capability"
378
  msgstr "Filtrer par permission"
379
 
380
- #: includes/admin.php:732
381
  msgid "WordPress Core Capabilities"
382
  msgstr "Permissions natives de WordPress"
383
 
384
- #: includes/admin.php:548 includes/admin.php:736 includes/admin.php:874
385
- #: includes/admin.php:1080
386
  msgid "Clear"
387
  msgstr "Effacer"
388
 
389
- #: includes/admin.php:545
390
  msgid "Filter by post type"
391
  msgstr "Filtrer par type de publication"
392
 
393
- #: includes/admin.php:545
394
  msgid "Filter by taxonomy"
395
  msgstr "Filtrer par taxonomie"
396
 
397
- #: includes/admin.php:539
398
  msgid "Post %s Capabilities"
399
  msgstr "Permissions de la publication %s"
400
 
401
- #: includes/admin.php:539
402
  msgid "Term %s Capabilities"
403
  msgstr "Permissions de le terme %s"
404
 
405
- #: includes/admin.php:495
406
  msgid "Additional"
407
  msgstr "Additionnel"
408
 
409
- #: includes/admin.php:316
410
- msgid "WordPress Core"
411
- msgstr "Cœur de WordPress"
412
-
413
- #: includes/admin.php:224
414
  msgid "Deletion"
415
  msgstr "Suppression"
416
 
417
- #: includes/admin.php:223
418
  msgid "Editing"
419
  msgstr "Édition"
420
 
421
- #: includes/admin-load.php:333 includes/functions-admin.php:212
422
  #: includes/manager.php:377 includes/manager.php:412
423
  #: includes/roles/class/class-pp-roles-list-table.php:174
424
  msgid "Admin Features"
@@ -484,230 +583,230 @@ msgstr "Réglages mis à jour."
484
  msgid "You do not have permission to manage editor features."
485
  msgstr "Vous n’êtes pas autorisé à gérer les fonctionnalités de l’éditeur."
486
 
487
- #: includes/admin-load.php:332 includes/functions-admin.php:201
488
  #: includes/manager.php:375 includes/manager.php:411
489
  #: includes/roles/class/class-pp-roles-list-table.php:173
490
  msgid "Editor Features"
491
  msgstr "Fonctionnalités de l’éditeur"
492
 
493
- #: includes/features/restrict-editor-features.php:348
494
  msgid "Text settings"
495
  msgstr "Réglages du texte"
496
 
497
- #: includes/features/restrict-editor-features.php:347
498
  msgid "Color settings"
499
  msgstr "Réglages de couleur"
500
 
501
- #: includes/features/restrict-editor-features.php:346
502
  msgid "Typography"
503
  msgstr "Typographie"
504
 
505
- #: includes/features/restrict-editor-features.php:345
506
  msgid "Paragraph"
507
  msgstr "Paragraphe"
508
 
509
- #: includes/features/restrict-editor-features.php:343
510
- #: includes/features/restrict-editor-features.php:344
511
  msgid "Block Panel"
512
  msgstr "Panneau de blocs"
513
 
514
- #: includes/features/restrict-editor-features.php:340
515
  msgid "Post Attributes"
516
  msgstr "Attributs d’articles"
517
 
518
- #: includes/features/restrict-editor-features.php:338
519
  msgid "Excerpt"
520
  msgstr "Extrait"
521
 
522
- #: includes/features/restrict-editor-features.php:337
523
  msgid "Featured image"
524
  msgstr "Image mise en avant"
525
 
526
- #: includes/features/restrict-editor-features.php:319
527
  msgid "Status & visibility"
528
  msgstr "État et visibilité"
529
 
530
- #: includes/features/restrict-editor-features.php:318
531
  msgid "Document Panel"
532
  msgstr "Panneau de publication"
533
 
534
- #: includes/features/restrict-editor-features.php:315
535
  msgid "Content"
536
  msgstr "Contenu"
537
 
538
- #: includes/features/restrict-editor-features.php:314
539
  msgid "Edit title"
540
  msgstr "Modifier le titre"
541
 
542
- #: includes/features/restrict-editor-features.php:313
543
  msgid "Body"
544
  msgstr "Corps"
545
 
546
- #: includes/features/restrict-editor-features.php:310
547
  msgid "Options"
548
  msgstr "Options"
549
 
550
- #: includes/features/restrict-editor-features.php:308
551
  msgid "Publish / Update"
552
  msgstr "Publier/mettre à jour"
553
 
554
- #: includes/features/restrict-editor-features.php:306
555
  msgid "Switch to draft"
556
  msgstr "Passer en brouillon"
557
 
558
- #: includes/features/restrict-editor-features.php:304
559
  msgid "Top Bar - Right"
560
  msgstr "Barre supérieure - Droite"
561
 
562
- #: includes/features/restrict-editor-features.php:301
563
  msgid "Outline"
564
  msgstr "Contour"
565
 
566
- #: includes/features/restrict-editor-features.php:300
567
  msgid "Details"
568
  msgstr "Détails"
569
 
570
- #: includes/features/restrict-editor-features.php:299
571
  msgid "Redo"
572
  msgstr "Rétablir"
573
 
574
- #: includes/features/restrict-editor-features.php:298
575
  msgid "Undo"
576
  msgstr "Annuler"
577
 
578
- #: includes/features/restrict-editor-features.php:297
579
  msgid "Modes"
580
  msgstr "Modes"
581
 
582
- #: includes/features/restrict-editor-features.php:296
583
  msgid "Add block"
584
  msgstr "Ajouter un bloc"
585
 
586
- #: includes/features/restrict-editor-features.php:295
587
  msgid "Top Bar - Left"
588
  msgstr "Barre supérieure - Gauche"
589
 
590
- #: includes/features/restrict-editor-features.php:93
591
- #: includes/features/restrict-editor-features.php:339
592
  msgid "Discussion"
593
  msgstr "Discussion"
594
 
595
- #: includes/features/restrict-editor-features.php:92
596
  msgid "Post Slug"
597
  msgstr "Slug de publication"
598
 
599
- #: includes/features/restrict-editor-features.php:91
600
  msgid "Featured Image"
601
  msgstr "Image mise en avant"
602
 
603
- #: includes/features/restrict-editor-features.php:90
604
  msgid "Other Boxes"
605
  msgstr "Autres cases"
606
 
607
- #: includes/features/restrict-editor-features.php:87
608
  msgid "Order"
609
  msgstr "Tri"
610
 
611
- #: includes/features/restrict-editor-features.php:86
612
  msgid "Page Template"
613
  msgstr "Modèle de page"
614
 
615
- #: includes/features/restrict-editor-features.php:85
616
  msgid "Parent"
617
  msgstr "Parent"
618
 
619
- #: includes/features/restrict-editor-features.php:84
620
  msgid "Page Attributes"
621
  msgstr "Attributs de la page"
622
 
623
- #: includes/features/restrict-editor-features.php:83
624
  msgid "Page Boxes"
625
  msgstr "Cadres de page"
626
 
627
- #: includes/features/restrict-editor-features.php:71
628
- #: includes/features/restrict-editor-features.php:323
629
  msgid "Tags"
630
  msgstr "Étiquettes"
631
 
632
- #: includes/features/restrict-editor-features.php:70
633
  msgid "Add New Category"
634
  msgstr "Ajouter une nouvelle catégorie"
635
 
636
- #: includes/features/restrict-editor-features.php:69
637
- #: includes/features/restrict-editor-features.php:322
638
  msgid "Categories"
639
  msgstr "Catégories"
640
 
641
- #: includes/features/restrict-editor-features.php:68
642
  msgid "Taxonomy Boxes"
643
  msgstr "Boîtes de taxonomie"
644
 
645
- #: includes/features/restrict-editor-features.php:65
646
  msgid "Publish"
647
  msgstr "Publier"
648
 
649
- #: includes/features/restrict-editor-features.php:64
650
  msgid "Date"
651
  msgstr "Date"
652
 
653
- #: includes/features/restrict-editor-features.php:63
654
  msgid "Publish Schedule"
655
  msgstr "Calendrier de publication"
656
 
657
- #: includes/features/restrict-editor-features.php:62
658
  msgid "Publish Actions"
659
  msgstr "Actions de publication"
660
 
661
- #: includes/features/restrict-editor-features.php:61
662
  msgid "Password Protect This Post"
663
  msgstr "Mot de passe pour protéger cette publication"
664
 
665
- #: includes/features/restrict-editor-features.php:60
666
  msgid "Publish Visibility"
667
  msgstr "Visibilité de la publication"
668
 
669
- #: includes/features/restrict-editor-features.php:59
670
  msgid "Publish Status "
671
  msgstr "État de la publication "
672
 
673
- #: includes/features/restrict-editor-features.php:58
674
- #: includes/features/restrict-editor-features.php:307
675
  msgid "Preview"
676
  msgstr "Aperçu"
677
 
678
- #: includes/features/restrict-editor-features.php:57
679
- #: includes/features/restrict-editor-features.php:305
680
  msgid "Save Draft"
681
  msgstr "Enregistrer le brouillon"
682
 
683
- #: includes/features/restrict-editor-features.php:55
684
- #: includes/features/restrict-editor-features.php:56
685
  msgid "Publish Box"
686
  msgstr "Boîte de publication"
687
 
688
- #: includes/features/restrict-editor-features.php:52
689
  msgid "Word count"
690
  msgstr "Nombre de mots"
691
 
692
- #: includes/features/restrict-editor-features.php:51
693
  msgid "HTML Editor Button"
694
  msgstr "Bouton de l’éditeur HTML"
695
 
696
- #: includes/features/restrict-editor-features.php:50
697
  msgid "Media Buttons (all)"
698
  msgstr "Boutons multimédia (tous)"
699
 
700
- #: includes/features/restrict-editor-features.php:49
701
- #: includes/features/restrict-editor-features.php:321
702
  msgid "Permalink"
703
  msgstr "Permalien"
704
 
705
- #: includes/features/restrict-editor-features.php:47
706
  msgid "Title"
707
  msgstr "Titre"
708
 
709
  #: includes/features/restrict-editor-features.php:45
710
- #: includes/features/restrict-editor-features.php:48
711
  msgid "Editor"
712
  msgstr "Éditeur"
713
 
@@ -741,18 +840,14 @@ msgstr "Sélectionnez les fonctions d’éditeur à supprimer. Notez que cet éc
741
  msgid "Editor Feature Restriction"
742
  msgstr "Restriction des fonctionnalités de l’éditeur"
743
 
744
- #: includes/admin.php:1417
745
  msgid "sync options to all sites now"
746
  msgstr "synchroniser les options sur tous les sites maintenant"
747
 
748
- #: includes/admin.php:1417
749
  msgid "Copy option settings to all sites now"
750
  msgstr "Copiez les réglages des options sur tous les sites maintenant"
751
 
752
- #: includes/admin.php:991
753
- msgid "The following entries have no effect. Please assign desired capabilities in the Read / Edit / Delete grid above."
754
- msgstr "Les entrées suivantes n’ont aucun effet. Veuillez attribuer les permisions souhaitées dans la grille lire/modifier/supprimer ci-dessus."
755
-
756
  #: includes/handler.php:61 includes/handler.php:89 includes/manager.php:758
757
  msgid "The selected role is not editable."
758
  msgstr "Le rôle sélectionné n’est pas modifiable."
@@ -761,51 +856,51 @@ msgstr "Le rôle sélectionné n’est pas modifiable."
761
  msgid "You do not have permission to manage roles."
762
  msgstr "Vous n’êtes pas autorisé à gérer les rôles."
763
 
764
- #: includes/backup.php:272
765
  msgid "No changes"
766
  msgstr "Aucun changement"
767
 
768
- #: includes/backup.php:203
769
  msgid "(this role will be removed if you restore backup)"
770
  msgstr "(ce rôle sera supprimé si vous restaurez la sauvegarde)"
771
 
772
- #: includes/backup.php:162
773
  msgid "Show changes from current roles only"
774
  msgstr "Afficher uniquement les changements par rapport aux rôles actuels"
775
 
776
- #: includes/backup.php:151
777
  msgid "Restore Selected Roles"
778
  msgstr "Restaurer les rôles sélectionnés"
779
 
780
- #: includes/backup.php:142
781
  msgid "Initial backup of all roles"
782
  msgstr "Sauvegarde initiale de tous les rôles"
783
 
784
- #: includes/backup.php:134
785
  msgid "Auto-backup of all roles (%s)"
786
  msgstr "Sauvegarde automatique de tous les rôles (%s)"
787
 
788
- #: includes/backup.php:101
789
  msgid "Available Backups:"
790
  msgstr "Sauvegardes disponibles :"
791
 
792
- #: includes/backup.php:96
793
  msgid "On this screen, you can restore an earlier version of your roles and capabilities."
794
  msgstr "Sur cet écran, vous pouvez restaurer une version antérieure de vos rôles et permissions."
795
 
796
- #: includes/backup.php:92
797
  msgid "PublishPress Capabilities automatically creates a backup on installation and whenever you save changes."
798
  msgstr "PublishPress Capabilities crée automatiquement une sauvegarde lors de l’installation et à chaque fois que vous enregistrez des modifications."
799
 
800
- #: includes/backup.php:89
801
  msgid "Restore Previous Roles and Capabilities"
802
  msgstr "Restaurer les rôles et permissions antérieurs"
803
 
804
- #: includes/backup.php:75
805
  msgid "Manual Backup"
806
  msgstr "Sauvegarde manuelle"
807
 
808
- #: includes/backup.php:70
809
  msgid "A backup created on this screen replaces any previous manual backups, but is never automatically replaced."
810
  msgstr "Le sauvegarde créée sur cet écran remplace toutes les sauvegardes manuelles précédentes, mais n’est jamais remplacée automatiquement."
811
 
@@ -821,8 +916,8 @@ msgstr "Réinitialiser les rôles"
821
  msgid "Restore"
822
  msgstr "Restaurer"
823
 
824
- #: includes/admin-load.php:339
825
- #: includes/features/restrict-editor-features.php:309 includes/manager.php:384
826
  msgid "Settings"
827
  msgstr "Réglages"
828
 
@@ -839,7 +934,7 @@ msgstr "Recherche de rôles"
839
  msgid "Search results for &#8220;%s&#8221;"
840
  msgstr "Résultats de la recherche pour &#171; %s &#187;"
841
 
842
- #: includes/admin-load.php:330 includes/manager.php:361
843
  #: includes/roles/roles.php:8
844
  msgid "Roles"
845
  msgstr "Rôles"
@@ -860,9 +955,9 @@ msgstr "Masquer"
860
  #: includes-core/editor-features-promo.php:107
861
  #: includes-core/editor-features-promo.php:117
862
  #: includes/features/admin-features.php:190
863
- #: includes/features/editor-features-classic.php:51
864
- #: includes/features/editor-features-gutenberg.php:50
865
- #: includes/roles/class/class-pp-roles-admin.php:116
866
  #: includes/roles/class/class-pp-roles-list-table.php:281
867
  #: includes/roles/class/class-pp-roles-list-table.php:540
868
  msgid "Delete"
@@ -881,31 +976,31 @@ msgstr "(rôle non modifiable)"
881
  msgid "Users"
882
  msgstr "Utilisateurs"
883
 
884
- #: includes/roles/class/class-pp-roles-actions.php:649
885
  msgid "The role %1$s was successfully unhidden."
886
  msgstr "Le rôle %1$s a été affiché avec succès."
887
 
888
- #: includes/roles/class/class-pp-roles-actions.php:589
889
  msgid "The role %1$s was successfully hidden."
890
  msgstr "Le rôle %1$s a été masqué avec succès."
891
 
892
- #: includes/roles/class/class-pp-roles-actions.php:535
893
  msgid "The role could not be deleted."
894
  msgstr "Le rôle n’a pas pu être supprimé."
895
 
896
- #: includes/roles/class/class-pp-roles-actions.php:513
897
  msgid "The selected %1$s roles were successfully deleted. %2$s"
898
  msgstr "Les rôles %1$s sélectionnés ont été supprimés avec succès. %2$s"
899
 
900
- #: includes/roles/class/class-pp-roles-actions.php:507
901
  msgid "The role %1$s was successfully deleted. %2$s"
902
  msgstr "Le rôle %1$s a été supprimé avec succès. %2$s"
903
 
904
- #: includes/roles/class/class-pp-roles-actions.php:502
905
  msgid "%1$d users moved to default role %2$s."
906
  msgstr "%1$d utilisateurs/utilisatrices déplacés vers le rôle par défaut %2$s."
907
 
908
- #: includes/roles/class/class-pp-roles-actions.php:480
909
  msgid "Deleting a system role is not allowed."
910
  msgstr "La suppression d’un rôle système n’est pas autorisée."
911
 
@@ -914,17 +1009,17 @@ msgid "Something went wrong, the system wasn't able to create the role, refresh
914
  msgstr "Quelque chose s’est mal passé, le système n’a pas été en mesure de créer le rôle, rafraîchissez la page et réessayez."
915
 
916
  #: includes/roles/class/class-pp-roles-actions.php:184
917
- #: includes/roles/class/class-pp-roles-actions.php:336
918
- #: includes/roles/class/class-pp-roles-actions.php:453
919
- #: includes/roles/class/class-pp-roles-actions.php:578
920
- #: includes/roles/class/class-pp-roles-actions.php:639
921
  msgid "Missing parameters, refresh the page and try again."
922
  msgstr "Il y a des paramètres manquants, rafraîchissez la page et réessayez."
923
 
924
  #: includes/roles/class/class-pp-roles-actions.php:162
925
  #: includes/roles/class/class-pp-roles-actions.php:180
926
- #: includes/roles/class/class-pp-roles-actions.php:332
927
- #: includes/roles/class/class-pp-roles-actions.php:429
928
  msgid "Your link has expired, refresh the page and try again."
929
  msgstr "Votre lien a expiré, rafraîchissez la page et réessayez."
930
 
@@ -932,8 +1027,8 @@ msgstr "Votre lien a expiré, rafraîchissez la page et réessayez."
932
  msgid "You do not have sufficient permissions to perform this action."
933
  msgstr "Vous n’avez pas les droits suffisants pour effectuer cette action."
934
 
935
- #: includes/roles/class/class-pp-roles-admin.php:276
936
- #: includes/roles/roles-functions.php:32
937
  msgid "Are you sure you want to delete this role?"
938
  msgstr "Confirmez-vous la suppression de ce rôle ?"
939
 
@@ -945,13 +1040,13 @@ msgstr "PublishPress Authors"
945
  msgid "Capabilities Settings"
946
  msgstr "Réglages des permissions"
947
 
948
- #: includes-core/CoreAdmin.php:63 includes/admin-load.php:335
949
  #: includes/manager.php:414
950
  #: includes/roles/class/class-pp-roles-list-table.php:176
951
  msgid "Nav Menus"
952
  msgstr "Menus de navigation"
953
 
954
- #: includes-core/CoreAdmin.php:62 includes/admin-load.php:334
955
  #: includes/manager.php:413
956
  #: includes/roles/class/class-pp-roles-list-table.php:175
957
  msgid "Admin Menus"
@@ -973,7 +1068,7 @@ msgstr "Vous pouvez restreindre l’accès aux menus de navigation. Cette foncti
973
  msgid "Navigation Menu Restrictions"
974
  msgstr "Restrictions du menu de navigation"
975
 
976
- #: includes/features/restrict-editor-features.php:46
977
  #: includes/filters-woocommerce.php:33 includes/roles/roles.php:10
978
  msgid "Add New"
979
  msgstr "Ajouter"
@@ -1016,13 +1111,13 @@ msgstr "Vous n’avez pas le droit de gérer les permissions."
1016
  #: includes-core/admin-features-promo.php:79
1017
  #: includes-core/admin-menus-promo.php:62
1018
  #: includes-core/editor-features-promo.php:79
1019
- #: includes-core/nav-menus-promo.php:67 includes/admin-load.php:345
1020
- #: includes/admin-load.php:346 includes/manager.php:390
1021
  #: includes/manager.php:391
1022
  msgid "Upgrade to Pro"
1023
  msgstr "Mettre à niveau en Pro"
1024
 
1025
- #: includes/admin-load.php:336 includes/backup.php:49 includes/manager.php:381
1026
  msgid "Backup"
1027
  msgstr "Sauvegarde"
1028
 
@@ -1082,32 +1177,28 @@ msgstr "PublishPress Revisions"
1082
  msgid "Related Permissions Plugins"
1083
  msgstr "Extensions de droits similaires"
1084
 
1085
- #: includes/manager.php:408 includes/roles/class/class-pp-roles-admin.php:145
1086
  #: includes/roles/class/class-pp-roles-list-table.php:170
1087
  msgid "Role Name"
1088
  msgstr "Nom du rôle"
1089
 
1090
- #: includes/roles/class/class-pp-roles-admin.php:162
1091
  msgid "Role Level"
1092
  msgstr "Niveau du rôle"
1093
 
1094
- #: includes/admin.php:1326
1095
  msgid "Role level is mostly deprecated. However, it still determines eligibility for Post Author assignment and limits the application of user editing capabilities."
1096
  msgstr "Le niveau de rôle est généralement obsolète. Cependant, il détermine toujours l’éligibilité à l’affectation d’auteur de publication et limite l’application des permissions de modification par l’utilisateur/utilisatrice."
1097
 
1098
- #: includes/admin.php:490 includes/admin.php:978
1099
  msgid "Invalid Capabilities"
1100
  msgstr "Permissions invalides"
1101
 
1102
- #: includes/admin.php:801
1103
- msgid "Lockout Prevention: To remove read capability, first remove WordPress admin / editing capabilities, or add \"dashboard_lockout_ok\" capability"
1104
- msgstr "Prévention du verrouillage : pour supprimer la permission de lecture, supprimez d’abord les permissions d’administration/édition de WordPress ou ajoutez la permission « dashboard_lockout_ok »"
1105
-
1106
- #: includes/admin.php:652
1107
  msgid "shared capability: %s"
1108
  msgstr "permission partagée : %s"
1109
 
1110
- #: includes/admin.php:1235 includes/settings.php:40
1111
  msgid "PublishPress Permissions"
1112
  msgstr "PublishPress Permissions"
1113
 
@@ -1127,27 +1218,27 @@ msgstr "Avertissement : ce rôle ne peut accéder au tableau de bord sans la pe
1127
  msgid "Edit Roles"
1128
  msgstr "Modifier les Rôles"
1129
 
1130
- #: includes/backup.php:232
1131
  msgid "%s (level %s)"
1132
  msgstr "%s (niveau %s)"
1133
 
1134
- #: includes/backup.php:196
1135
  msgid "%s (%s roles)"
1136
  msgstr "%s (%s rôles)"
1137
 
1138
- #: includes/backup.php:85
1139
  msgid "Last Backup"
1140
  msgstr "Dernière sauvegarde"
1141
 
1142
- #: includes/backup.php:85
1143
  msgid "Last Manual Backup - %s"
1144
  msgstr "Dernière sauvegarde manuelle - %s"
1145
 
1146
- #: includes/backup.php:169
1147
  msgid "Initial Backup"
1148
  msgstr "Sauvegarde initiale"
1149
 
1150
- #: includes/backup.php:169
1151
  msgid "Initial Backup - %s"
1152
  msgstr "Sauvegarde initiale - %s"
1153
 
@@ -1212,7 +1303,7 @@ msgstr "voir %1$sUtilisation des rôles%2$s : « Modèle de rôle »."
1212
  msgid "Bad form Received"
1213
  msgstr "Formulaire reçu incorrect"
1214
 
1215
- #: includes/roles/class/class-pp-roles-actions.php:461
1216
  msgid "Cannot delete default role. You <a href=\"%s\">have to change it first</a>."
1217
  msgstr "Vous ne pouvez pas modifier le rôle par defaut. Vous devez d’abord <a href=\"%s\">le modifier</a>."
1218
 
@@ -1240,11 +1331,11 @@ msgstr "Erreur : Échec de la création du nouveau rôle."
1240
  msgid "New role created."
1241
  msgstr "Nouveau rôle créé."
1242
 
1243
- #: includes/backup.php:301
1244
  msgid "Reset to WordPress defaults"
1245
  msgstr "Réinitialiser avec les valeurs par défaut de WordPress"
1246
 
1247
- #: includes/backup.php:301
1248
  msgid ""
1249
  "You are about to reset Roles and Capabilities to WordPress defaults.\n"
1250
  " 'Cancel' to stop, 'OK' to reset."
@@ -1252,27 +1343,23 @@ msgstr ""
1252
  "Vous êtes sur le point de réinitialiser les rôles et les permissions avec les valeurs par défaut de WordPress.\n"
1253
  "« Annuler » pour arrêter et « OK » pour réinitialiser."
1254
 
1255
- #: includes/backup.php:299
1256
  msgid "Reset Roles and Capabilities to WordPress defaults"
1257
  msgstr "Réinitialiser les rôles et les permissions avec les valeurs par défaut de WordPress"
1258
 
1259
- #: includes/backup.php:296
1260
  msgid "It is recommended to use this only as a last resource!"
1261
  msgstr "Il est recommandé de ne l’utiliser qu’en dernier recours !"
1262
 
1263
- #: includes/backup.php:294
1264
  msgid "If you have installed any plugin that adds new roles or capabilities, these will be lost."
1265
  msgstr "Si vous avez ajouté une extension pour créer de nouveaux rôles ou permissions, celles-ci seront perdues."
1266
 
1267
- #: includes/backup.php:290
1268
  msgid "Reseting default Roles and Capabilities will set them to the WordPress install defaults."
1269
  msgstr "La réinitialisation des rôles et des capacités par défaut les définira sur les valeurs d’installation par défaut de WordPress."
1270
 
1271
- #: includes/backup.php:290 includes/backup.php:347
1272
- msgid "WARNING:"
1273
- msgstr "Avertissement :"
1274
-
1275
- #: includes/backup.php:288
1276
  msgid "Reset WordPress Defaults"
1277
  msgstr "Réinitialiser avec les valeurs par défaut de WordPress"
1278
 
@@ -1301,32 +1388,33 @@ msgstr "Nouvelle sauvegarde enregistrée."
1301
  msgid "You do not have permission to restore roles."
1302
  msgstr "Vous n’avez pas la permission de restaurer les rôles."
1303
 
1304
- #: includes/admin.php:1414
1305
  msgid "sync role to all sites now"
1306
  msgstr "synchroniser le rôle avec tous les sites maintenant"
1307
 
1308
- #: includes/admin.php:1414
1309
  msgid "Copy / update this role definition to all sites now"
1310
  msgstr "Copiez/mettez à jour cette définition de rôle sur tous les sites maintenant"
1311
 
1312
- #: includes/admin.php:1411
1313
  msgid "include in new sites"
1314
  msgstr "inclure dans les nouveaux sites"
1315
 
1316
- #: includes/admin.php:1411
1317
  msgid "Create this role definition in new (future) sites"
1318
  msgstr "Créer cette définition de rôle dans les nouveaux (futurs) sites"
1319
 
1320
- #: includes/admin.php:1375
1321
  msgid "Add to role"
1322
  msgstr "Ajouter au rôle"
1323
 
1324
- #: includes/admin.php:749 includes/admin.php:843 includes/admin.php:887
1325
- #: includes/admin.php:960 includes/admin.php:1088 includes/admin.php:1205
 
1326
  msgid "Capability Name"
1327
  msgstr "Nom de la permission"
1328
 
1329
- #: includes/admin.php:1372
1330
  msgid "Add Capability"
1331
  msgstr "Ajouter une permission"
1332
 
@@ -1334,166 +1422,169 @@ msgstr "Ajouter une permission"
1334
  msgid "Copy"
1335
  msgstr "Copier"
1336
 
1337
- #: includes/roles/class/class-pp-roles-admin.php:349
1338
  msgid "Create New Role"
1339
  msgstr "Créer un nouveau rôle"
1340
 
1341
- #: includes/roles/class/class-pp-roles-admin.php:184
1342
  msgid "Delete role"
1343
  msgstr "Supprimer le rôle"
1344
 
1345
  #: includes-core/admin-menus-promo.php:48 includes-core/nav-menus-promo.php:52
1346
- #: includes/admin.php:113 includes/admin.php:1348
1347
  #: includes/features/admin-features.php:76
1348
  #: includes/features/admin-features.php:215 includes/settings.php:56
1349
  msgid "Save Changes"
1350
  msgstr "Enregistrer les modifications"
1351
 
1352
- #: includes/admin.php:1328
1353
  msgid "Level:"
1354
  msgstr "Niveau :"
1355
 
1356
- #: includes/admin.php:1076
1357
  msgid "Additional Capabilities"
1358
  msgstr "Permissions supplémentaires"
1359
 
1360
- #: includes/admin.php:751 includes/admin.php:845 includes/admin.php:889
1361
- #: includes/admin.php:962 includes/admin.php:1090 includes/admin.php:1207
 
1362
  msgid "negate none (add/remove all capabilities normally)"
1363
  msgstr "ne rien nier (ajouter/supprimer les permissions normalement)"
1364
 
1365
- #: includes/admin.php:751 includes/admin.php:845 includes/admin.php:889
1366
- #: includes/admin.php:962 includes/admin.php:1090 includes/admin.php:1207
 
1367
  msgid "negate all (storing as disabled capabilities)"
1368
  msgstr "nier tout (stockage en tant que permissions désactivées)"
1369
 
1370
- #: includes/admin.php:749 includes/admin.php:843 includes/admin.php:887
1371
- #: includes/admin.php:960 includes/admin.php:1088 includes/admin.php:1205
 
1372
  msgid "check / uncheck all"
1373
  msgstr "tout cocher/décocher"
1374
 
1375
- #: includes/admin.php:640 includes/admin.php:782 includes/admin.php:922
1376
- #: includes/admin.php:1153
1377
  msgid "%s: assigned by Permission Group"
1378
  msgstr "%s : attribué par le groupe de permission"
1379
 
1380
- #: includes/admin.php:237
1381
  msgid "can delete posts which are currently published with private visibility"
1382
  msgstr "peut supprimer les publications publiées avec une visibilité privée"
1383
 
1384
- #: includes/admin.php:236
1385
  msgid "can delete posts which are currently published"
1386
  msgstr "peut supprimer les publications publiées"
1387
 
1388
- #: includes/admin.php:235
1389
  msgid "can delete posts which were created by other users"
1390
  msgstr "peut supprimer les publications créés par d’autres utilisateurs/utilisatrices"
1391
 
1392
- #: includes/admin.php:234
1393
  msgid "has basic deletion capability (but may need other capabilities based on post status and ownership)"
1394
  msgstr "possède la permission de supprimer de base (mais peut nécessiter d’autres permissions basées sur le état ou la propriété de la publication)"
1395
 
1396
- #: includes/admin.php:233
1397
  msgid "can make a post publicly visible"
1398
  msgstr "peut modifier la visibilité d’une publication"
1399
 
1400
- #: includes/admin.php:232
1401
  msgid "can edit posts which are currently published with private visibility"
1402
- msgstr "peut modifier les publications publiés avec la visibilité privée"
1403
 
1404
- #: includes/admin.php:231
1405
  msgid "can edit posts which are currently published"
1406
  msgstr "peut modifier les articles publiés"
1407
 
1408
- #: includes/admin.php:230
1409
  msgid "can edit posts which were created by other users"
1410
- msgstr "peut modifier les articles créés par d’autres utilisateurs/utilisatrices"
1411
 
1412
- #: includes/admin.php:229
1413
  msgid "has basic editing capability (but may need other capabilities based on post status and ownership)"
1414
  msgstr "possède la permission de modifier de base (mais peut nécessiter d’autres permissions basées sur le état ou la propriété de la publication)"
1415
 
1416
- #: includes/admin.php:228
1417
  msgid "can read posts which are currently published with private visibility"
1418
  msgstr "peut lire les articles publiés avec la visibilité privée"
1419
 
1420
- #: includes/admin.php:222
1421
  msgid "Reading"
1422
  msgstr "Lecture"
1423
 
1424
- #: includes/admin.php:221
1425
  msgid "&nbsp;"
1426
  msgstr "&nbsp;"
1427
 
1428
- #: includes/admin.php:1294
1429
  msgid "%s info/purchase"
1430
  msgstr "%s infos/achat"
1431
 
1432
- #: includes/admin.php:1294
1433
  msgid "%1$sbuy%2$s %3$s"
1434
  msgstr "%1$sacheter%2$s %3$s"
1435
 
1436
- #: includes/admin.php:1292
1437
  msgid "%s (free install)"
1438
  msgstr "%s (installation gratuite)"
1439
 
1440
- #: includes/admin.php:1292
1441
  msgid "%1$sgrab%2$s %3$s"
1442
  msgstr "%1$sprendre%2$s %3$s"
1443
 
1444
- #: includes/admin.php:1285
1445
  msgid "Member support forum"
1446
  msgstr "Forum d’assistance aux membres"
1447
 
1448
- #: includes/admin.php:1281
1449
  msgid "WPML integration to mirror permissions to translations <em>(Pro)</em>"
1450
  msgstr "Intégration WPML pour refléter les droits dans les traductions <em> (Pro)</em>"
1451
 
1452
- #: includes/admin.php:1277
1453
  msgid "Grant supplemental content permissions to a BuddyPress group <em>(Pro)</em>"
1454
  msgstr "Autorisez les droits de contenu supplémentaire au groupe BuddyPress <em> (Pro)</em>"
1455
 
1456
- #: includes/admin.php:1273
1457
  msgid "Grant Spectator, Participant or Moderator access to specific bbPress forums <em>(Pro)</em>"
1458
  msgstr "Autorisez les visiteurs, participants ou modérateurs à accéder aux forums bbPress <em> (Pro)</em>"
1459
 
1460
- #: includes/admin.php:1269
1461
  msgid "Customize the moderated editing of published content with Revisionary or Post Forking <em>(Pro)</em>"
1462
  msgstr "Personnaliser la modification modérée de la publication publié avec Revisionary ou Post Forking <em> (Pro)</em>"
1463
 
1464
- #: includes/admin.php:1265
1465
  msgid "Regulate permissions for Edit Flow post statuses <em>(Pro)</em>"
1466
  msgstr "Réglementez les droits pour modifier les états de publication Edit Flow <em> (Pro)</em>"
1467
 
1468
- #: includes/admin.php:1261
1469
  msgid "Custom Moderation statuses for access-controlled, multi-step publishing workflow <em>(Pro)</em>"
1470
  msgstr "États de modération personnalisés pour un flux de publication à accès contrôlé et à plusieurs étapes <em> (Pro)</em>"
1471
 
1472
- #: includes/admin.php:1257
1473
  msgid "Custom Post Visibility statuses, fully implemented throughout wp-admin <em>(Pro)</em>"
1474
  msgstr "États de visibilité de publication personnalisés, entièrement mis en œuvre dans wp-admin. <em> (Pro)</em>"
1475
 
1476
- #: includes/admin.php:1253
1477
  msgid "Customize editing permissions per-category or per-post <em>(Pro)</em>"
1478
  msgstr "Personnalisez les droits de modification par catégorie ou par publication <em> (Pro)</em>"
1479
 
1480
- #: includes/admin.php:1249
1481
  msgid "Customize reading permissions per-category or per-post"
1482
  msgstr "Personnalisez les droits de lecture par catégorie ou par article"
1483
 
1484
- #: includes/admin.php:1245
1485
  msgid "Assign custom WP roles supplementally for a specific post type <em>(Pro)</em>"
1486
  msgstr "Assignez des rôles WP personnalisés de manière complémentaire pour un type de publication spécifique <em> (Pro)</em>"
1487
 
1488
- #: includes/admin.php:1241
1489
  msgid "Assign standard WP roles supplementally for a specific post type"
1490
  msgstr "Assignez des rôles WP standard de manière complémentaire pour un type de publication spécifique"
1491
 
1492
- #: includes/admin.php:1237
1493
  msgid "Automatically define type-specific capabilities for your custom post types and taxonomies"
1494
  msgstr "Définissez automatiquement les permissions spécifiques à vos types de publication et taxonomies personnalisés"
1495
 
1496
- #: includes/backup.php:321
1497
  msgid "Roles and Capabilities"
1498
  msgstr "Rôles et capacités"
1499
 
@@ -1529,8 +1620,8 @@ msgstr "Annulez explicitement ces permissions en les stockant comme désactivée
1529
  msgid "Explicity negate this capability by storing as disabled"
1530
  msgstr "Annulez explicitement cette permission en la stockant comme désactivée"
1531
 
1532
- #: includes/admin-load.php:308 includes/manager.php:339
1533
- #: includes/manager.php:410 includes/roles/class/class-pp-roles-admin.php:427
1534
  #: includes/roles/class/class-pp-roles-list-table.php:172
1535
  msgid "Capabilities"
1536
  msgstr "Permissions"
@@ -1547,7 +1638,7 @@ msgstr "%s est requis pour cette extension."
1547
  msgid "The active plugin %s is not compatible with your PHP version."
1548
  msgstr "L’extension active %s n’est pas compatible avec votre version de PHP."
1549
 
1550
- #: capsman-enhanced.php:112
1551
  msgid "Warning:"
1552
  msgstr "Avertissement :"
1553
 
4
  msgstr ""
5
  "Project-Id-Version: Plugins - PublishPress Capabilities &#8211; User Role Access, Editor Permissions, Admin Menus - Stable (latest release)\n"
6
  "POT-Creation-Date: \n"
7
+ "PO-Revision-Date: 2022-07-20 15:18-0500\n"
8
  "Last-Translator: \n"
9
+ "Language-Team: \n"
10
  "Language: fr\n"
11
  "MIME-Version: 1.0\n"
12
  "Content-Type: text/plain; charset=UTF-8\n"
14
  "Plural-Forms: nplurals=2; plural=n > 1;\n"
15
  "X-Generator: Poedit 3.0.1\n"
16
 
17
+ #: includes/roles/class/class-pp-roles-admin.php:338
18
+ msgid "You must select at least one editor for the role when managing allowed editor."
19
+ msgstr "Vous devez sélectionner au moins un éditeur/éditrice pour le rôle lors de la gestion des éditeurs/éditrices autorisés."
20
+
21
+ #: includes/roles/class/class-pp-roles-admin.php:337
22
+ msgid "Select allowed editor"
23
+ msgstr "Sélectionner l’éditeur/éditrice autorisé"
24
+
25
+ #: includes/roles/class/class-pp-roles-admin.php:250
26
+ msgid "Control Allowed Editors"
27
+ msgstr "Contrôler les éditeurs/éditrices autorisés"
28
+
29
+ #: includes/roles/class/class-pp-roles-admin.php:586
30
+ msgid "Edit Role: %s"
31
+ msgstr "Modifier le rôle : %s"
32
+
33
+ #: includes/roles/class/class-pp-roles-admin.php:501
34
+ msgid "Enter the relative path only without domain for logout redirect."
35
+ msgstr "Saisissez le chemin relatif sans domaine pour la redirection de la déconnexion."
36
+
37
+ #: includes/roles/class/class-pp-roles-admin.php:469
38
+ msgid "You must enter the Login Redirect URL."
39
+ msgstr "Vous devez saisir l’URL de redirection de la connexion."
40
+
41
+ #: includes/roles/class/class-pp-roles-admin.php:468
42
+ msgid "Enter the relative path only without domain for login redirect."
43
+ msgstr "Saisissez le chemin relatif sans domaine pour la redirection de la connexion."
44
+
45
+ #: includes/roles/class/class-pp-roles-admin.php:452
46
+ msgid "Redirect users to a specified URL."
47
+ msgstr "Redirigez les utilisateurs/utilisatrices vers une URL spécifiée."
48
+
49
+ #: includes/roles/class/class-pp-roles-admin.php:440
50
+ msgid "Redirect users to the URL they were viewing before login."
51
+ msgstr "Rediriger les utilisateurs/utilisatrices vers l’URL qu’ils consultaient avant la connexion."
52
+
53
+ #: includes/roles/class/class-pp-roles-admin.php:367
54
+ msgid "Select %s"
55
+ msgstr "Sélectionnez %s"
56
+
57
+ #: includes/roles/class/class-pp-roles-admin.php:251
58
+ msgid "Select the allowed editor options for users in this role."
59
+ msgstr "Sélectionnez les options d’édition autorisées pour les utilisateurs/utilisatrices de ce rôle."
60
+
61
+ #: includes/roles/class/class-pp-roles-admin.php:239
62
+ msgid "Disable the \"Code editor\" option for the Gutenberg block editor."
63
+ msgstr "Désactiver l’option « éditeur de code » pour l’éditeur de blocs de Gutenberg."
64
+
65
+ #: includes/roles/class/class-pp-roles-admin.php:238
66
+ msgid "Disable Code Editor"
67
+ msgstr "Désactiver l’éditeur de code"
68
+
69
+ #: includes/roles/class/class-pp-roles-admin.php:228
70
+ msgid "Enter the URL users in this role should be redirected to after logout."
71
+ msgstr "Saisissez l’URL vers laquelle les utilisateurs/utilisatrices de ce rôle doivent être redirigés après la déconnexion."
72
+
73
+ #: includes/roles/class/class-pp-roles-admin.php:227
74
+ msgid "Logout Redirect"
75
+ msgstr "Redirection de la déconnexion"
76
+
77
+ #: includes/roles/class/class-pp-roles-admin.php:217
78
+ msgid "Enter the URL users in this role should be redirected to after login."
79
+ msgstr "Saisissez l’URL vers laquelle les utilisateurs/utilisatrices de ce rôle doivent être redirigés après la connexion."
80
+
81
+ #: includes/roles/class/class-pp-roles-admin.php:216
82
+ msgid "Login Redirect"
83
+ msgstr "Redirection de la connexion"
84
+
85
+ #: includes/roles/class/class-pp-roles-admin.php:155
86
+ msgid "Classic editor"
87
+ msgstr "Éditeur classique"
88
+
89
+ #: includes/roles/class/class-pp-roles-admin.php:153
90
+ msgid "Gutenberg editor"
91
+ msgstr "Éditeur Gutenberg"
92
+
93
+ #: includes/roles/class/class-pp-roles-admin.php:113
94
+ msgid "Redirects"
95
+ msgstr "Redirections"
96
+
97
+ #: includes/features/restrict-editor-features.php:415
98
+ msgid "Revisions"
99
+ msgstr "Révisions"
100
+
101
+ #: includes/features/restrict-editor-features.php:403
102
+ msgid "Add new block"
103
+ msgstr "Ajouter un bloc"
104
+
105
+ #: includes/features/editor-features-classic.php:106
106
+ #: includes/features/editor-features-gutenberg.php:103
107
+ msgid "No metabox found for %1s. %2s Click here %3s to visit the %4s screen and refresh this page after to load new metabox"
108
+ msgstr "Aucune boîte méta trouvée pour %1s. %2s Cliquez ici %3s pour visiter l’écran %4s et rafraîchissez cette page après pour charger la nouvelle boîte méta."
109
+
110
+ #: includes/admin.php:1158
111
+ msgid "The following entries have no effect. Please assign desired capabilities on the Editing / Deletion / Reading tabs."
112
+ msgstr "Les entrées suivantes n’ont aucun effet. Veuillez attribuer les permissions souhaitées dans les onglets Édition/Suppression/Lecture."
113
+
114
+ #: includes/admin.php:217
115
+ msgid "Taxonomies"
116
+ msgstr "Taxonomies"
117
+
118
+ #: includes/admin-load.php:293
119
+ msgid "Drag multiple roles selection to change order."
120
+ msgstr "Faites glisser la sélection de plusieurs rôles pour en modifier l’ordre."
121
+
122
+ #: includes/roles/class/class-pp-roles-admin.php:389
123
  msgid "Read more on Role Level."
124
  msgstr "Lire la suite sur le niveau de rôle."
125
 
126
+ #: includes/roles/class/class-pp-roles-admin.php:184
127
  msgid "Each user role has a level from 0 to 10. The Subscriber role defaults to the lowest level (0). The Administrator role defaults to level 10."
128
  msgstr "Chaque rôle d’utilisateur/utilisatrice a un niveau de 0 à 10. Le rôle d’abonné/abonnée a par défaut le niveau le plus bas (0). Le rôle d’administrateur/administratrice a le niveau 10 par défaut."
129
 
133
 
134
  #: includes/features/editor-features.php:111
135
  #: includes/features/editor-features.php:113
136
+ #: includes/features/editor-features.php:219
137
+ #: includes/features/editor-features.php:221
138
  msgid "Save %s Restrictions"
139
  msgstr "Enregistrer %s restrictions"
140
 
141
  #: includes/features/editor-features.php:107
142
+ #: includes/features/editor-features.php:215
143
  msgid "Save for all Post Types"
144
  msgstr "Enregistrer pour tous les types de publication"
145
 
191
  msgstr[0] "Mon %s"
192
  msgstr[1] "Mis %s"
193
 
194
+ #: includes/roles/class/class-pp-roles-admin.php:704
195
  msgid "Load Less"
196
  msgstr "Charger moins"
197
 
198
+ #: includes/roles/class/class-pp-roles-admin.php:701
199
  msgid "Load More"
200
  msgstr "Charger plus"
201
 
202
+ #: includes/roles/class/class-pp-roles-admin.php:673
203
  msgid "These can be edited on the %1s Capabilities screen %2s"
204
  msgstr "Elles peuvent être modifiées sur l’écran %1s Permissions %2s"
205
 
206
+ #: includes/roles/class/class-pp-roles-admin.php:594
207
  msgid "All Roles"
208
  msgstr "Tous les rôles"
209
 
210
+ #: includes/roles/class/class-pp-roles-admin.php:588
211
  msgid "Copy Role"
212
  msgstr "Copier le rôle"
213
 
214
+ #: includes/roles/class/class-pp-roles-admin.php:578
 
 
 
 
215
  msgid "Create Role"
216
  msgstr "Créer le rôle"
217
 
218
+ #: includes/roles/class/class-pp-roles-admin.php:578
219
  msgid "Update Role"
220
  msgstr "Mettre à jour le rôle"
221
 
222
+ #: includes/roles/class/class-pp-roles-admin.php:572
223
  msgid "%s role copied to editor. Please click the \"Create Role\" button to create this new role."
224
  msgstr "Le rôle %s a été copié dans l’éditeur. Veuillez cliquer sur le bouton « Créer un rôle » pour créer ce nouveau rôle."
225
 
226
+ #: includes/roles/class/class-pp-roles-admin.php:311
227
  msgid "Slug already exists"
228
  msgstr "Ce slug existe déjà"
229
 
230
+ #: includes/roles/class/class-pp-roles-admin.php:207
231
  msgid "Deleting this role will completely remove it from database and is irrecoverable."
232
  msgstr "En supprimant ce rôle, il sera complètement supprimé de la base de données et sera irrécupérable."
233
 
234
+ #: includes/roles/class/class-pp-roles-admin.php:173
235
  msgid "The \"slug\" is the URL-friendly version of the role. It is usually all lowercase and contains only letters, numbers and underscores."
236
  msgstr "Le « slug » est la version du rôle adaptée à l’URL. Il est généralement tout en minuscules et ne contient que des lettres, des chiffres et des tirets bas."
237
 
238
+ #: includes/roles/class/class-pp-roles-admin.php:172
239
  msgid "Role Slug"
240
  msgstr "Slug du rôle"
241
 
242
+ #: includes/roles/class/class-pp-roles-admin.php:117
243
  msgid "Advanced"
244
  msgstr "Avancé"
245
 
247
  msgid "General"
248
  msgstr "Général"
249
 
250
+ #: includes/roles/class/class-pp-roles-actions.php:409
251
  msgid "%s role updated successfully."
252
  msgstr "Le rôle de %s a bien été mis à jour."
253
 
255
  msgid "You do not have permission to perform this action."
256
  msgstr "Vous n’avez pas les droits nécessaires pour effectuer cette action."
257
 
258
+ #: includes/features/restrict-editor-features.php:411
259
  msgid "Template"
260
  msgstr "Modèle"
261
 
262
+ #: includes/backup.php:338
263
  msgid "Import"
264
  msgstr "Importer"
265
 
266
+ #: includes/backup.php:332
267
  msgid "Before importing, we recommend using the \"Backup\" tab to create a backup of your current settings."
268
  msgstr "Avant d’importer, nous vous recommandons d’utiliser l’onglet « Sauvegarde » pour créer une sauvegarde de vos paramètres actuels."
269
 
270
+ #: includes/backup.php:331
271
  msgid "Import the plugin settings from a .json file. This file can be obtained by exporting the settings on another site using the form above."
272
  msgstr "Importez les réglages de l’extension à partir d’un fichier .json. Ce fichier peut être obtenu en exportant les réglages sur un autre site à l’aide du formulaire ci-dessus."
273
 
274
+ #: includes/backup.php:330
275
  msgid "Please make a 'Manual Backup' in the backup tab to enable backup restore in case anything goes wrong."
276
  msgstr "Veuillez effectuer une « sauvegarde manuelle » dans l’onglet « Sauvegarde » pour permettre la restauration de la sauvegarde en cas de problème."
277
 
278
+ #: includes/backup.php:329
279
  msgid "Import Settings"
280
  msgstr "Importer les réglages"
281
 
282
+ #: includes/backup.php:323
283
  msgid "Export"
284
  msgstr "Exporter"
285
 
286
+ #: includes/backup.php:301
287
  msgid "Export the plugin settings for this site as a .json file. This allows you to easily import the configuration into another site."
288
  msgstr "Exportez les réglages de l’extension de ce site au format .json. Cela vous permet d’importer facilement les réglages de votre configuration sur un autre site."
289
 
290
+ #: includes/backup.php:299
291
  msgid "Export Settings"
292
  msgstr "Exporter les réglages"
293
 
294
+ #: includes/backup.php:114
295
  msgid "Manual backup of %s (%s)"
296
  msgstr "Sauvegarde manuelle de %s (%s)"
297
 
298
+ #: includes/backup.php:109
299
  msgid "all roles"
300
  msgstr "tous les rôles"
301
 
302
+ #: includes/backup.php:51
303
  msgid "Export / Import"
304
  msgstr "Exporter/importer"
305
 
327
  msgid "%s restored from last backup."
328
  msgstr "%s restauré à partir de la dernière sauvegarde."
329
 
330
+ #: includes/admin.php:1544
331
  msgid "Go to the Backup feature"
332
  msgstr "Accédez à la fonctionnalité de sauvegarde"
333
 
334
+ #: includes/admin.php:1540
335
  msgid ""
336
  "This plugin automatically creates a backup whenever you save changes. You can use these backups to\n"
337
  "restore an earlier version of your roles and capabilities."
339
  "Cette extension crée automatiquement une sauvegarde à chaque fois que vous enregistrez des modifications. Vous pouvez utiliser ces sauvegardes pour\n"
340
  "restaurer une version antérieure de vos rôles et permissions."
341
 
342
+ #: includes/admin.php:1538
343
  msgid "PublishPress Capabilities is safe to use"
344
  msgstr "PublishPress Capabilities est sûr à utiliser"
345
 
347
  msgid "This plugin can be deleted."
348
  msgstr "Cette extension peut être supprimée."
349
 
350
+ #: includes/roles/class/class-pp-roles-actions.php:310
351
  msgid "The new role %s was created successfully."
352
  msgstr "Le nouveau rôle %s a été créé avec succès."
353
 
436
  msgid "Admin Feature Restrictions"
437
  msgstr "Restrictions des fonctionnalités administratives"
438
 
439
+ #: includes/backup.php:362 includes/features/admin-features.php:236
440
+ #: includes/features/editor-features.php:241
441
  msgid "Click here to install PublishPress Permissions"
442
  msgstr "Cliquez ici pour installer PublishPress Permissions"
443
 
444
+ #: includes/backup.php:359 includes/features/admin-features.php:233
445
+ #: includes/features/editor-features.php:238
446
  msgid "PublishPress Permissions is 100% free to install."
447
  msgstr "PublishPress Permissions est 100% gratuit à installer."
448
 
449
+ #: includes/backup.php:358 includes/features/admin-features.php:232
450
+ #: includes/features/editor-features.php:237
451
  msgid "Allow specific user roles or users to manage each post."
452
  msgstr "Autorisez des rôles de comptes spécifiques à gérer chaque publication."
453
 
454
+ #: includes/backup.php:357 includes/features/admin-features.php:231
455
+ #: includes/features/editor-features.php:236
456
  msgid "Choose who can read and edit each post."
457
  msgstr "Choisissez qui peut lire et modifier chaque publication."
458
 
459
+ #: includes/backup.php:355 includes/features/admin-features.php:229
460
+ #: includes/features/editor-features.php:234
461
  msgid "Control permissions for individual posts and pages"
462
  msgstr "Contrôlez les autorisations pour les publications et les pages individuelles"
463
 
464
+ #: includes/backup.php:354 includes/features/admin-features.php:228
465
+ #: includes/features/editor-features.php:233
466
  msgid "Recommendations for you"
467
  msgstr "Des recommandations pour vous"
468
 
469
+ #: includes/admin.php:1045
470
  msgid "Plugin Capabilities &ndash; %s"
471
  msgstr "Extension Permissions &ndash; %s"
472
 
473
+ #: includes/admin.php:888 includes/admin.php:998 includes/admin.php:1051
474
+ #: includes/admin.php:1260
475
  msgid "No results found. Please try again with a different word."
476
  msgstr "Aucun résultat trouvé. Veuillez réessayer avec un autre mot."
477
 
478
+ #: includes/admin.php:885 includes/admin.php:995 includes/admin.php:1048
479
+ #: includes/admin.php:1257
480
  msgid "Filter by capability"
481
  msgstr "Filtrer par permission"
482
 
483
+ #: includes/admin.php:992
484
  msgid "WordPress Core Capabilities"
485
  msgstr "Permissions natives de WordPress"
486
 
487
+ #: includes/admin.php:679 includes/admin.php:886 includes/admin.php:996
488
+ #: includes/admin.php:1049 includes/admin.php:1258
489
  msgid "Clear"
490
  msgstr "Effacer"
491
 
492
+ #: includes/admin.php:676
493
  msgid "Filter by post type"
494
  msgstr "Filtrer par type de publication"
495
 
496
+ #: includes/admin.php:676
497
  msgid "Filter by taxonomy"
498
  msgstr "Filtrer par taxonomie"
499
 
500
+ #: includes/admin.php:670
501
  msgid "Post %s Capabilities"
502
  msgstr "Permissions de la publication %s"
503
 
504
+ #: includes/admin.php:670
505
  msgid "Term %s Capabilities"
506
  msgstr "Permissions de le terme %s"
507
 
508
+ #: includes/admin.php:638
509
  msgid "Additional"
510
  msgstr "Additionnel"
511
 
512
+ #: includes/admin.php:216
 
 
 
 
513
  msgid "Deletion"
514
  msgstr "Suppression"
515
 
516
+ #: includes/admin.php:215 includes/roles/class/class-pp-roles-admin.php:109
517
  msgid "Editing"
518
  msgstr "Édition"
519
 
520
+ #: includes/admin-load.php:420 includes/functions-admin.php:212
521
  #: includes/manager.php:377 includes/manager.php:412
522
  #: includes/roles/class/class-pp-roles-list-table.php:174
523
  msgid "Admin Features"
583
  msgid "You do not have permission to manage editor features."
584
  msgstr "Vous n’êtes pas autorisé à gérer les fonctionnalités de l’éditeur."
585
 
586
+ #: includes/admin-load.php:419 includes/functions-admin.php:201
587
  #: includes/manager.php:375 includes/manager.php:411
588
  #: includes/roles/class/class-pp-roles-list-table.php:173
589
  msgid "Editor Features"
590
  msgstr "Fonctionnalités de l’éditeur"
591
 
592
+ #: includes/features/restrict-editor-features.php:474
593
  msgid "Text settings"
594
  msgstr "Réglages du texte"
595
 
596
+ #: includes/features/restrict-editor-features.php:473
597
  msgid "Color settings"
598
  msgstr "Réglages de couleur"
599
 
600
+ #: includes/features/restrict-editor-features.php:472
601
  msgid "Typography"
602
  msgstr "Typographie"
603
 
604
+ #: includes/features/restrict-editor-features.php:471
605
  msgid "Paragraph"
606
  msgstr "Paragraphe"
607
 
608
+ #: includes/features/restrict-editor-features.php:469
609
+ #: includes/features/restrict-editor-features.php:470
610
  msgid "Block Panel"
611
  msgstr "Panneau de blocs"
612
 
613
+ #: includes/features/restrict-editor-features.php:463
614
  msgid "Post Attributes"
615
  msgstr "Attributs d’articles"
616
 
617
+ #: includes/features/restrict-editor-features.php:453
618
  msgid "Excerpt"
619
  msgstr "Extrait"
620
 
621
+ #: includes/features/restrict-editor-features.php:448
622
  msgid "Featured image"
623
  msgstr "Image mise en avant"
624
 
625
+ #: includes/features/restrict-editor-features.php:409
626
  msgid "Status & visibility"
627
  msgstr "État et visibilité"
628
 
629
+ #: includes/features/restrict-editor-features.php:408
630
  msgid "Document Panel"
631
  msgstr "Panneau de publication"
632
 
633
+ #: includes/features/restrict-editor-features.php:398
634
  msgid "Content"
635
  msgstr "Contenu"
636
 
637
+ #: includes/features/restrict-editor-features.php:393
638
  msgid "Edit title"
639
  msgstr "Modifier le titre"
640
 
641
+ #: includes/features/restrict-editor-features.php:391
642
  msgid "Body"
643
  msgstr "Corps"
644
 
645
+ #: includes/features/restrict-editor-features.php:388
646
  msgid "Options"
647
  msgstr "Options"
648
 
649
+ #: includes/features/restrict-editor-features.php:386
650
  msgid "Publish / Update"
651
  msgstr "Publier/mettre à jour"
652
 
653
+ #: includes/features/restrict-editor-features.php:384
654
  msgid "Switch to draft"
655
  msgstr "Passer en brouillon"
656
 
657
+ #: includes/features/restrict-editor-features.php:382
658
  msgid "Top Bar - Right"
659
  msgstr "Barre supérieure - Droite"
660
 
661
+ #: includes/features/restrict-editor-features.php:379
662
  msgid "Outline"
663
  msgstr "Contour"
664
 
665
+ #: includes/features/restrict-editor-features.php:378
666
  msgid "Details"
667
  msgstr "Détails"
668
 
669
+ #: includes/features/restrict-editor-features.php:377
670
  msgid "Redo"
671
  msgstr "Rétablir"
672
 
673
+ #: includes/features/restrict-editor-features.php:376
674
  msgid "Undo"
675
  msgstr "Annuler"
676
 
677
+ #: includes/features/restrict-editor-features.php:375
678
  msgid "Modes"
679
  msgstr "Modes"
680
 
681
+ #: includes/features/restrict-editor-features.php:374
682
  msgid "Add block"
683
  msgstr "Ajouter un bloc"
684
 
685
+ #: includes/features/restrict-editor-features.php:373
686
  msgid "Top Bar - Left"
687
  msgstr "Barre supérieure - Gauche"
688
 
689
+ #: includes/features/restrict-editor-features.php:158
690
+ #: includes/features/restrict-editor-features.php:458
691
  msgid "Discussion"
692
  msgstr "Discussion"
693
 
694
+ #: includes/features/restrict-editor-features.php:154
695
  msgid "Post Slug"
696
  msgstr "Slug de publication"
697
 
698
+ #: includes/features/restrict-editor-features.php:149
699
  msgid "Featured Image"
700
  msgstr "Image mise en avant"
701
 
702
+ #: includes/features/restrict-editor-features.php:147
703
  msgid "Other Boxes"
704
  msgstr "Autres cases"
705
 
706
+ #: includes/features/restrict-editor-features.php:141
707
  msgid "Order"
708
  msgstr "Tri"
709
 
710
+ #: includes/features/restrict-editor-features.php:136
711
  msgid "Page Template"
712
  msgstr "Modèle de page"
713
 
714
+ #: includes/features/restrict-editor-features.php:131
715
  msgid "Parent"
716
  msgstr "Parent"
717
 
718
+ #: includes/features/restrict-editor-features.php:127
719
  msgid "Page Attributes"
720
  msgstr "Attributs de la page"
721
 
722
+ #: includes/features/restrict-editor-features.php:125
723
  msgid "Page Boxes"
724
  msgstr "Cadres de page"
725
 
726
+ #: includes/features/restrict-editor-features.php:104
727
+ #: includes/features/restrict-editor-features.php:424
728
  msgid "Tags"
729
  msgstr "Étiquettes"
730
 
731
+ #: includes/features/restrict-editor-features.php:98
732
  msgid "Add New Category"
733
  msgstr "Ajouter une nouvelle catégorie"
734
 
735
+ #: includes/features/restrict-editor-features.php:92
736
+ #: includes/features/restrict-editor-features.php:418
737
  msgid "Categories"
738
  msgstr "Catégories"
739
 
740
+ #: includes/features/restrict-editor-features.php:90
741
  msgid "Taxonomy Boxes"
742
  msgstr "Boîtes de taxonomie"
743
 
744
+ #: includes/features/restrict-editor-features.php:87
745
  msgid "Publish"
746
  msgstr "Publier"
747
 
748
+ #: includes/features/restrict-editor-features.php:86
749
  msgid "Date"
750
  msgstr "Date"
751
 
752
+ #: includes/features/restrict-editor-features.php:85
753
  msgid "Publish Schedule"
754
  msgstr "Calendrier de publication"
755
 
756
+ #: includes/features/restrict-editor-features.php:84
757
  msgid "Publish Actions"
758
  msgstr "Actions de publication"
759
 
760
+ #: includes/features/restrict-editor-features.php:83
761
  msgid "Password Protect This Post"
762
  msgstr "Mot de passe pour protéger cette publication"
763
 
764
+ #: includes/features/restrict-editor-features.php:82
765
  msgid "Publish Visibility"
766
  msgstr "Visibilité de la publication"
767
 
768
+ #: includes/features/restrict-editor-features.php:81
769
  msgid "Publish Status "
770
  msgstr "État de la publication "
771
 
772
+ #: includes/features/restrict-editor-features.php:80
773
+ #: includes/features/restrict-editor-features.php:385
774
  msgid "Preview"
775
  msgstr "Aperçu"
776
 
777
+ #: includes/features/restrict-editor-features.php:79
778
+ #: includes/features/restrict-editor-features.php:383
779
  msgid "Save Draft"
780
  msgstr "Enregistrer le brouillon"
781
 
782
+ #: includes/features/restrict-editor-features.php:77
783
+ #: includes/features/restrict-editor-features.php:78
784
  msgid "Publish Box"
785
  msgstr "Boîte de publication"
786
 
787
+ #: includes/features/restrict-editor-features.php:72
788
  msgid "Word count"
789
  msgstr "Nombre de mots"
790
 
791
+ #: includes/features/restrict-editor-features.php:67
792
  msgid "HTML Editor Button"
793
  msgstr "Bouton de l’éditeur HTML"
794
 
795
+ #: includes/features/restrict-editor-features.php:62
796
  msgid "Media Buttons (all)"
797
  msgstr "Boutons multimédia (tous)"
798
 
799
+ #: includes/features/restrict-editor-features.php:59
800
+ #: includes/features/restrict-editor-features.php:416
801
  msgid "Permalink"
802
  msgstr "Permalien"
803
 
804
+ #: includes/features/restrict-editor-features.php:50
805
  msgid "Title"
806
  msgstr "Titre"
807
 
808
  #: includes/features/restrict-editor-features.php:45
809
+ #: includes/features/restrict-editor-features.php:55
810
  msgid "Editor"
811
  msgstr "Éditeur"
812
 
840
  msgid "Editor Feature Restriction"
841
  msgstr "Restriction des fonctionnalités de l’éditeur"
842
 
843
+ #: includes/admin.php:1596
844
  msgid "sync options to all sites now"
845
  msgstr "synchroniser les options sur tous les sites maintenant"
846
 
847
+ #: includes/admin.php:1596
848
  msgid "Copy option settings to all sites now"
849
  msgstr "Copiez les réglages des options sur tous les sites maintenant"
850
 
 
 
 
 
851
  #: includes/handler.php:61 includes/handler.php:89 includes/manager.php:758
852
  msgid "The selected role is not editable."
853
  msgstr "Le rôle sélectionné n’est pas modifiable."
856
  msgid "You do not have permission to manage roles."
857
  msgstr "Vous n’êtes pas autorisé à gérer les rôles."
858
 
859
+ #: includes/backup.php:265
860
  msgid "No changes"
861
  msgstr "Aucun changement"
862
 
863
+ #: includes/backup.php:196
864
  msgid "(this role will be removed if you restore backup)"
865
  msgstr "(ce rôle sera supprimé si vous restaurez la sauvegarde)"
866
 
867
+ #: includes/backup.php:155
868
  msgid "Show changes from current roles only"
869
  msgstr "Afficher uniquement les changements par rapport aux rôles actuels"
870
 
871
+ #: includes/backup.php:146
872
  msgid "Restore Selected Roles"
873
  msgstr "Restaurer les rôles sélectionnés"
874
 
875
+ #: includes/backup.php:137
876
  msgid "Initial backup of all roles"
877
  msgstr "Sauvegarde initiale de tous les rôles"
878
 
879
+ #: includes/backup.php:129
880
  msgid "Auto-backup of all roles (%s)"
881
  msgstr "Sauvegarde automatique de tous les rôles (%s)"
882
 
883
+ #: includes/backup.php:93
884
  msgid "Available Backups:"
885
  msgstr "Sauvegardes disponibles :"
886
 
887
+ #: includes/backup.php:90
888
  msgid "On this screen, you can restore an earlier version of your roles and capabilities."
889
  msgstr "Sur cet écran, vous pouvez restaurer une version antérieure de vos rôles et permissions."
890
 
891
+ #: includes/backup.php:89
892
  msgid "PublishPress Capabilities automatically creates a backup on installation and whenever you save changes."
893
  msgstr "PublishPress Capabilities crée automatiquement une sauvegarde lors de l’installation et à chaque fois que vous enregistrez des modifications."
894
 
895
+ #: includes/backup.php:86
896
  msgid "Restore Previous Roles and Capabilities"
897
  msgstr "Restaurer les rôles et permissions antérieurs"
898
 
899
+ #: includes/backup.php:72
900
  msgid "Manual Backup"
901
  msgstr "Sauvegarde manuelle"
902
 
903
+ #: includes/backup.php:67
904
  msgid "A backup created on this screen replaces any previous manual backups, but is never automatically replaced."
905
  msgstr "Le sauvegarde créée sur cet écran remplace toutes les sauvegardes manuelles précédentes, mais n’est jamais remplacée automatiquement."
906
 
916
  msgid "Restore"
917
  msgstr "Restaurer"
918
 
919
+ #: includes/admin-load.php:426
920
+ #: includes/features/restrict-editor-features.php:387 includes/manager.php:384
921
  msgid "Settings"
922
  msgstr "Réglages"
923
 
934
  msgid "Search results for &#8220;%s&#8221;"
935
  msgstr "Résultats de la recherche pour &#171; %s &#187;"
936
 
937
+ #: includes/admin-load.php:417 includes/manager.php:361
938
  #: includes/roles/roles.php:8
939
  msgid "Roles"
940
  msgstr "Rôles"
955
  #: includes-core/editor-features-promo.php:107
956
  #: includes-core/editor-features-promo.php:117
957
  #: includes/features/admin-features.php:190
958
+ #: includes/features/editor-features-classic.php:81
959
+ #: includes/features/editor-features-gutenberg.php:78
960
+ #: includes/roles/class/class-pp-roles-admin.php:124
961
  #: includes/roles/class/class-pp-roles-list-table.php:281
962
  #: includes/roles/class/class-pp-roles-list-table.php:540
963
  msgid "Delete"
976
  msgid "Users"
977
  msgstr "Utilisateurs"
978
 
979
+ #: includes/roles/class/class-pp-roles-actions.php:673
980
  msgid "The role %1$s was successfully unhidden."
981
  msgstr "Le rôle %1$s a été affiché avec succès."
982
 
983
+ #: includes/roles/class/class-pp-roles-actions.php:613
984
  msgid "The role %1$s was successfully hidden."
985
  msgstr "Le rôle %1$s a été masqué avec succès."
986
 
987
+ #: includes/roles/class/class-pp-roles-actions.php:559
988
  msgid "The role could not be deleted."
989
  msgstr "Le rôle n’a pas pu être supprimé."
990
 
991
+ #: includes/roles/class/class-pp-roles-actions.php:537
992
  msgid "The selected %1$s roles were successfully deleted. %2$s"
993
  msgstr "Les rôles %1$s sélectionnés ont été supprimés avec succès. %2$s"
994
 
995
+ #: includes/roles/class/class-pp-roles-actions.php:531
996
  msgid "The role %1$s was successfully deleted. %2$s"
997
  msgstr "Le rôle %1$s a été supprimé avec succès. %2$s"
998
 
999
+ #: includes/roles/class/class-pp-roles-actions.php:526
1000
  msgid "%1$d users moved to default role %2$s."
1001
  msgstr "%1$d utilisateurs/utilisatrices déplacés vers le rôle par défaut %2$s."
1002
 
1003
+ #: includes/roles/class/class-pp-roles-actions.php:502
1004
  msgid "Deleting a system role is not allowed."
1005
  msgstr "La suppression d’un rôle système n’est pas autorisée."
1006
 
1009
  msgstr "Quelque chose s’est mal passé, le système n’a pas été en mesure de créer le rôle, rafraîchissez la page et réessayez."
1010
 
1011
  #: includes/roles/class/class-pp-roles-actions.php:184
1012
+ #: includes/roles/class/class-pp-roles-actions.php:348
1013
+ #: includes/roles/class/class-pp-roles-actions.php:475
1014
+ #: includes/roles/class/class-pp-roles-actions.php:602
1015
+ #: includes/roles/class/class-pp-roles-actions.php:663
1016
  msgid "Missing parameters, refresh the page and try again."
1017
  msgstr "Il y a des paramètres manquants, rafraîchissez la page et réessayez."
1018
 
1019
  #: includes/roles/class/class-pp-roles-actions.php:162
1020
  #: includes/roles/class/class-pp-roles-actions.php:180
1021
+ #: includes/roles/class/class-pp-roles-actions.php:344
1022
+ #: includes/roles/class/class-pp-roles-actions.php:451
1023
  msgid "Your link has expired, refresh the page and try again."
1024
  msgstr "Votre lien a expiré, rafraîchissez la page et réessayez."
1025
 
1027
  msgid "You do not have sufficient permissions to perform this action."
1028
  msgstr "Vous n’avez pas les droits suffisants pour effectuer cette action."
1029
 
1030
+ #: includes/roles/class/class-pp-roles-admin.php:402
1031
+ #: includes/roles/roles-functions.php:33
1032
  msgid "Are you sure you want to delete this role?"
1033
  msgstr "Confirmez-vous la suppression de ce rôle ?"
1034
 
1040
  msgid "Capabilities Settings"
1041
  msgstr "Réglages des permissions"
1042
 
1043
+ #: includes-core/CoreAdmin.php:63 includes/admin-load.php:422
1044
  #: includes/manager.php:414
1045
  #: includes/roles/class/class-pp-roles-list-table.php:176
1046
  msgid "Nav Menus"
1047
  msgstr "Menus de navigation"
1048
 
1049
+ #: includes-core/CoreAdmin.php:62 includes/admin-load.php:421
1050
  #: includes/manager.php:413
1051
  #: includes/roles/class/class-pp-roles-list-table.php:175
1052
  msgid "Admin Menus"
1068
  msgid "Navigation Menu Restrictions"
1069
  msgstr "Restrictions du menu de navigation"
1070
 
1071
+ #: includes/features/restrict-editor-features.php:47
1072
  #: includes/filters-woocommerce.php:33 includes/roles/roles.php:10
1073
  msgid "Add New"
1074
  msgstr "Ajouter"
1111
  #: includes-core/admin-features-promo.php:79
1112
  #: includes-core/admin-menus-promo.php:62
1113
  #: includes-core/editor-features-promo.php:79
1114
+ #: includes-core/nav-menus-promo.php:67 includes/admin-load.php:432
1115
+ #: includes/admin-load.php:433 includes/manager.php:390
1116
  #: includes/manager.php:391
1117
  msgid "Upgrade to Pro"
1118
  msgstr "Mettre à niveau en Pro"
1119
 
1120
+ #: includes/admin-load.php:423 includes/backup.php:49 includes/manager.php:381
1121
  msgid "Backup"
1122
  msgstr "Sauvegarde"
1123
 
1177
  msgid "Related Permissions Plugins"
1178
  msgstr "Extensions de droits similaires"
1179
 
1180
+ #: includes/manager.php:408 includes/roles/class/class-pp-roles-admin.php:162
1181
  #: includes/roles/class/class-pp-roles-list-table.php:170
1182
  msgid "Role Name"
1183
  msgstr "Nom du rôle"
1184
 
1185
+ #: includes/roles/class/class-pp-roles-admin.php:183
1186
  msgid "Role Level"
1187
  msgstr "Niveau du rôle"
1188
 
1189
+ #: includes/admin.php:1503
1190
  msgid "Role level is mostly deprecated. However, it still determines eligibility for Post Author assignment and limits the application of user editing capabilities."
1191
  msgstr "Le niveau de rôle est généralement obsolète. Cependant, il détermine toujours l’éligibilité à l’affectation d’auteur de publication et limite l’application des permissions de modification par l’utilisateur/utilisatrice."
1192
 
1193
+ #: includes/admin.php:633 includes/admin.php:1153
1194
  msgid "Invalid Capabilities"
1195
  msgstr "Permissions invalides"
1196
 
1197
+ #: includes/admin.php:785
 
 
 
 
1198
  msgid "shared capability: %s"
1199
  msgstr "permission partagée : %s"
1200
 
1201
+ #: includes/admin.php:1412 includes/settings.php:40
1202
  msgid "PublishPress Permissions"
1203
  msgstr "PublishPress Permissions"
1204
 
1218
  msgid "Edit Roles"
1219
  msgstr "Modifier les Rôles"
1220
 
1221
+ #: includes/backup.php:225
1222
  msgid "%s (level %s)"
1223
  msgstr "%s (niveau %s)"
1224
 
1225
+ #: includes/backup.php:189
1226
  msgid "%s (%s roles)"
1227
  msgstr "%s (%s rôles)"
1228
 
1229
+ #: includes/backup.php:82
1230
  msgid "Last Backup"
1231
  msgstr "Dernière sauvegarde"
1232
 
1233
+ #: includes/backup.php:82
1234
  msgid "Last Manual Backup - %s"
1235
  msgstr "Dernière sauvegarde manuelle - %s"
1236
 
1237
+ #: includes/backup.php:162
1238
  msgid "Initial Backup"
1239
  msgstr "Sauvegarde initiale"
1240
 
1241
+ #: includes/backup.php:162
1242
  msgid "Initial Backup - %s"
1243
  msgstr "Sauvegarde initiale - %s"
1244
 
1303
  msgid "Bad form Received"
1304
  msgstr "Formulaire reçu incorrect"
1305
 
1306
+ #: includes/roles/class/class-pp-roles-actions.php:483
1307
  msgid "Cannot delete default role. You <a href=\"%s\">have to change it first</a>."
1308
  msgstr "Vous ne pouvez pas modifier le rôle par defaut. Vous devez d’abord <a href=\"%s\">le modifier</a>."
1309
 
1331
  msgid "New role created."
1332
  msgstr "Nouveau rôle créé."
1333
 
1334
+ #: includes/backup.php:291
1335
  msgid "Reset to WordPress defaults"
1336
  msgstr "Réinitialiser avec les valeurs par défaut de WordPress"
1337
 
1338
+ #: includes/backup.php:291
1339
  msgid ""
1340
  "You are about to reset Roles and Capabilities to WordPress defaults.\n"
1341
  " 'Cancel' to stop, 'OK' to reset."
1343
  "Vous êtes sur le point de réinitialiser les rôles et les permissions avec les valeurs par défaut de WordPress.\n"
1344
  "« Annuler » pour arrêter et « OK » pour réinitialiser."
1345
 
1346
+ #: includes/backup.php:289
1347
  msgid "Reset Roles and Capabilities to WordPress defaults"
1348
  msgstr "Réinitialiser les rôles et les permissions avec les valeurs par défaut de WordPress"
1349
 
1350
+ #: includes/backup.php:286
1351
  msgid "It is recommended to use this only as a last resource!"
1352
  msgstr "Il est recommandé de ne l’utiliser qu’en dernier recours !"
1353
 
1354
+ #: includes/backup.php:285
1355
  msgid "If you have installed any plugin that adds new roles or capabilities, these will be lost."
1356
  msgstr "Si vous avez ajouté une extension pour créer de nouveaux rôles ou permissions, celles-ci seront perdues."
1357
 
1358
+ #: includes/backup.php:283
1359
  msgid "Reseting default Roles and Capabilities will set them to the WordPress install defaults."
1360
  msgstr "La réinitialisation des rôles et des capacités par défaut les définira sur les valeurs d’installation par défaut de WordPress."
1361
 
1362
+ #: includes/backup.php:281
 
 
 
 
1363
  msgid "Reset WordPress Defaults"
1364
  msgstr "Réinitialiser avec les valeurs par défaut de WordPress"
1365
 
1388
  msgid "You do not have permission to restore roles."
1389
  msgstr "Vous n’avez pas la permission de restaurer les rôles."
1390
 
1391
+ #: includes/admin.php:1593
1392
  msgid "sync role to all sites now"
1393
  msgstr "synchroniser le rôle avec tous les sites maintenant"
1394
 
1395
+ #: includes/admin.php:1593
1396
  msgid "Copy / update this role definition to all sites now"
1397
  msgstr "Copiez/mettez à jour cette définition de rôle sur tous les sites maintenant"
1398
 
1399
+ #: includes/admin.php:1590
1400
  msgid "include in new sites"
1401
  msgstr "inclure dans les nouveaux sites"
1402
 
1403
+ #: includes/admin.php:1590
1404
  msgid "Create this role definition in new (future) sites"
1405
  msgstr "Créer cette définition de rôle dans les nouveaux (futurs) sites"
1406
 
1407
+ #: includes/admin.php:1554
1408
  msgid "Add to role"
1409
  msgstr "Ajouter au rôle"
1410
 
1411
+ #: includes/admin.php:899 includes/admin.php:972 includes/admin.php:1009
1412
+ #: includes/admin.php:1018 includes/admin.php:1062 includes/admin.php:1135
1413
+ #: includes/admin.php:1266 includes/admin.php:1382
1414
  msgid "Capability Name"
1415
  msgstr "Nom de la permission"
1416
 
1417
+ #: includes/admin.php:1551
1418
  msgid "Add Capability"
1419
  msgstr "Ajouter une permission"
1420
 
1422
  msgid "Copy"
1423
  msgstr "Copier"
1424
 
1425
+ #: includes/roles/class/class-pp-roles-admin.php:590
1426
  msgid "Create New Role"
1427
  msgstr "Créer un nouveau rôle"
1428
 
1429
+ #: includes/roles/class/class-pp-roles-admin.php:206
1430
  msgid "Delete role"
1431
  msgstr "Supprimer le rôle"
1432
 
1433
  #: includes-core/admin-menus-promo.php:48 includes-core/nav-menus-promo.php:52
1434
+ #: includes/admin.php:113 includes/admin.php:1525
1435
  #: includes/features/admin-features.php:76
1436
  #: includes/features/admin-features.php:215 includes/settings.php:56
1437
  msgid "Save Changes"
1438
  msgstr "Enregistrer les modifications"
1439
 
1440
+ #: includes/admin.php:1505
1441
  msgid "Level:"
1442
  msgstr "Niveau :"
1443
 
1444
+ #: includes/admin.php:1254
1445
  msgid "Additional Capabilities"
1446
  msgstr "Permissions supplémentaires"
1447
 
1448
+ #: includes/admin.php:901 includes/admin.php:974 includes/admin.php:1011
1449
+ #: includes/admin.php:1020 includes/admin.php:1064 includes/admin.php:1137
1450
+ #: includes/admin.php:1268 includes/admin.php:1384
1451
  msgid "negate none (add/remove all capabilities normally)"
1452
  msgstr "ne rien nier (ajouter/supprimer les permissions normalement)"
1453
 
1454
+ #: includes/admin.php:901 includes/admin.php:974 includes/admin.php:1011
1455
+ #: includes/admin.php:1020 includes/admin.php:1064 includes/admin.php:1137
1456
+ #: includes/admin.php:1268 includes/admin.php:1384
1457
  msgid "negate all (storing as disabled capabilities)"
1458
  msgstr "nier tout (stockage en tant que permissions désactivées)"
1459
 
1460
+ #: includes/admin.php:899 includes/admin.php:972 includes/admin.php:1009
1461
+ #: includes/admin.php:1018 includes/admin.php:1062 includes/admin.php:1135
1462
+ #: includes/admin.php:1266 includes/admin.php:1382
1463
  msgid "check / uncheck all"
1464
  msgstr "tout cocher/décocher"
1465
 
1466
+ #: includes/admin.php:773 includes/admin.php:934 includes/admin.php:1097
1467
+ #: includes/admin.php:1330
1468
  msgid "%s: assigned by Permission Group"
1469
  msgstr "%s : attribué par le groupe de permission"
1470
 
1471
+ #: includes/admin.php:230
1472
  msgid "can delete posts which are currently published with private visibility"
1473
  msgstr "peut supprimer les publications publiées avec une visibilité privée"
1474
 
1475
+ #: includes/admin.php:229
1476
  msgid "can delete posts which are currently published"
1477
  msgstr "peut supprimer les publications publiées"
1478
 
1479
+ #: includes/admin.php:228
1480
  msgid "can delete posts which were created by other users"
1481
  msgstr "peut supprimer les publications créés par d’autres utilisateurs/utilisatrices"
1482
 
1483
+ #: includes/admin.php:227
1484
  msgid "has basic deletion capability (but may need other capabilities based on post status and ownership)"
1485
  msgstr "possède la permission de supprimer de base (mais peut nécessiter d’autres permissions basées sur le état ou la propriété de la publication)"
1486
 
1487
+ #: includes/admin.php:226
1488
  msgid "can make a post publicly visible"
1489
  msgstr "peut modifier la visibilité d’une publication"
1490
 
1491
+ #: includes/admin.php:225
1492
  msgid "can edit posts which are currently published with private visibility"
1493
+ msgstr "peut modifier les articles publiés avec la visibilité privée"
1494
 
1495
+ #: includes/admin.php:224
1496
  msgid "can edit posts which are currently published"
1497
  msgstr "peut modifier les articles publiés"
1498
 
1499
+ #: includes/admin.php:223
1500
  msgid "can edit posts which were created by other users"
1501
+ msgstr "peut modifier les publications créés par d’autres utilisateurs/utilisatrices"
1502
 
1503
+ #: includes/admin.php:222
1504
  msgid "has basic editing capability (but may need other capabilities based on post status and ownership)"
1505
  msgstr "possède la permission de modifier de base (mais peut nécessiter d’autres permissions basées sur le état ou la propriété de la publication)"
1506
 
1507
+ #: includes/admin.php:221
1508
  msgid "can read posts which are currently published with private visibility"
1509
  msgstr "peut lire les articles publiés avec la visibilité privée"
1510
 
1511
+ #: includes/admin.php:214
1512
  msgid "Reading"
1513
  msgstr "Lecture"
1514
 
1515
+ #: includes/admin.php:213
1516
  msgid "&nbsp;"
1517
  msgstr "&nbsp;"
1518
 
1519
+ #: includes/admin.php:1471
1520
  msgid "%s info/purchase"
1521
  msgstr "%s infos/achat"
1522
 
1523
+ #: includes/admin.php:1471
1524
  msgid "%1$sbuy%2$s %3$s"
1525
  msgstr "%1$sacheter%2$s %3$s"
1526
 
1527
+ #: includes/admin.php:1469
1528
  msgid "%s (free install)"
1529
  msgstr "%s (installation gratuite)"
1530
 
1531
+ #: includes/admin.php:1469
1532
  msgid "%1$sgrab%2$s %3$s"
1533
  msgstr "%1$sprendre%2$s %3$s"
1534
 
1535
+ #: includes/admin.php:1462
1536
  msgid "Member support forum"
1537
  msgstr "Forum d’assistance aux membres"
1538
 
1539
+ #: includes/admin.php:1458
1540
  msgid "WPML integration to mirror permissions to translations <em>(Pro)</em>"
1541
  msgstr "Intégration WPML pour refléter les droits dans les traductions <em> (Pro)</em>"
1542
 
1543
+ #: includes/admin.php:1454
1544
  msgid "Grant supplemental content permissions to a BuddyPress group <em>(Pro)</em>"
1545
  msgstr "Autorisez les droits de contenu supplémentaire au groupe BuddyPress <em> (Pro)</em>"
1546
 
1547
+ #: includes/admin.php:1450
1548
  msgid "Grant Spectator, Participant or Moderator access to specific bbPress forums <em>(Pro)</em>"
1549
  msgstr "Autorisez les visiteurs, participants ou modérateurs à accéder aux forums bbPress <em> (Pro)</em>"
1550
 
1551
+ #: includes/admin.php:1446
1552
  msgid "Customize the moderated editing of published content with Revisionary or Post Forking <em>(Pro)</em>"
1553
  msgstr "Personnaliser la modification modérée de la publication publié avec Revisionary ou Post Forking <em> (Pro)</em>"
1554
 
1555
+ #: includes/admin.php:1442
1556
  msgid "Regulate permissions for Edit Flow post statuses <em>(Pro)</em>"
1557
  msgstr "Réglementez les droits pour modifier les états de publication Edit Flow <em> (Pro)</em>"
1558
 
1559
+ #: includes/admin.php:1438
1560
  msgid "Custom Moderation statuses for access-controlled, multi-step publishing workflow <em>(Pro)</em>"
1561
  msgstr "États de modération personnalisés pour un flux de publication à accès contrôlé et à plusieurs étapes <em> (Pro)</em>"
1562
 
1563
+ #: includes/admin.php:1434
1564
  msgid "Custom Post Visibility statuses, fully implemented throughout wp-admin <em>(Pro)</em>"
1565
  msgstr "États de visibilité de publication personnalisés, entièrement mis en œuvre dans wp-admin. <em> (Pro)</em>"
1566
 
1567
+ #: includes/admin.php:1430
1568
  msgid "Customize editing permissions per-category or per-post <em>(Pro)</em>"
1569
  msgstr "Personnalisez les droits de modification par catégorie ou par publication <em> (Pro)</em>"
1570
 
1571
+ #: includes/admin.php:1426
1572
  msgid "Customize reading permissions per-category or per-post"
1573
  msgstr "Personnalisez les droits de lecture par catégorie ou par article"
1574
 
1575
+ #: includes/admin.php:1422
1576
  msgid "Assign custom WP roles supplementally for a specific post type <em>(Pro)</em>"
1577
  msgstr "Assignez des rôles WP personnalisés de manière complémentaire pour un type de publication spécifique <em> (Pro)</em>"
1578
 
1579
+ #: includes/admin.php:1418
1580
  msgid "Assign standard WP roles supplementally for a specific post type"
1581
  msgstr "Assignez des rôles WP standard de manière complémentaire pour un type de publication spécifique"
1582
 
1583
+ #: includes/admin.php:1414
1584
  msgid "Automatically define type-specific capabilities for your custom post types and taxonomies"
1585
  msgstr "Définissez automatiquement les permissions spécifiques à vos types de publication et taxonomies personnalisés"
1586
 
1587
+ #: includes/backup.php:306
1588
  msgid "Roles and Capabilities"
1589
  msgstr "Rôles et capacités"
1590
 
1620
  msgid "Explicity negate this capability by storing as disabled"
1621
  msgstr "Annulez explicitement cette permission en la stockant comme désactivée"
1622
 
1623
+ #: includes/admin-load.php:395 includes/manager.php:339
1624
+ #: includes/manager.php:410 includes/roles/class/class-pp-roles-admin.php:669
1625
  #: includes/roles/class/class-pp-roles-list-table.php:172
1626
  msgid "Capabilities"
1627
  msgstr "Permissions"
1638
  msgid "The active plugin %s is not compatible with your PHP version."
1639
  msgstr "L’extension active %s n’est pas compatible avec votre version de PHP."
1640
 
1641
+ #: capsman-enhanced.php:112 includes/backup.php:283 includes/backup.php:330
1642
  msgid "Warning:"
1643
  msgstr "Avertissement :"
1644
 
languages/capsman-enhanced-it_IT.mo CHANGED
Binary file
languages/capsman-enhanced-it_IT.po CHANGED
@@ -4,9 +4,9 @@ msgid ""
4
  msgstr ""
5
  "Project-Id-Version: Plugins - PublishPress Capabilities &#8211; User Role Access, Editor Permissions, Admin Menus - Stable (latest release)\n"
6
  "POT-Creation-Date: \n"
7
- "PO-Revision-Date: 2022-05-16 13:09+0200\n"
8
  "Last-Translator: \n"
9
- "Language-Team: Angelo Giammarresi - info@wocmultimedia.com\n"
10
  "Language: it\n"
11
  "MIME-Version: 1.0\n"
12
  "Content-Type: text/plain; charset=UTF-8\n"
@@ -14,11 +14,116 @@ msgstr ""
14
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
15
  "X-Generator: Poedit 3.0.1\n"
16
 
17
- #: includes/roles/class/class-pp-roles-admin.php:264
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
18
  msgid "Read more on Role Level."
19
  msgstr "Leggi tutto sui livelli di ruolo."
20
 
21
- #: includes/roles/class/class-pp-roles-admin.php:163
22
  msgid "Each user role has a level from 0 to 10. The Subscriber role defaults to the lowest level (0). The Administrator role defaults to level 10."
23
  msgstr "Ciascun ruolo utente ha un livello da 0 a 10. Il ruolo di sottoscrittore ha come impostazione predefinita il livello più basso (0). Il ruolo amministratore ha come impostazione predefinita il livello 10."
24
 
@@ -28,13 +133,13 @@ msgstr "Limitato:"
28
 
29
  #: includes/features/editor-features.php:111
30
  #: includes/features/editor-features.php:113
31
- #: includes/features/editor-features.php:215
32
- #: includes/features/editor-features.php:217
33
  msgid "Save %s Restrictions"
34
  msgstr "Salva le limitazioni di %s"
35
 
36
  #: includes/features/editor-features.php:107
37
- #: includes/features/editor-features.php:211
38
  msgid "Save for all Post Types"
39
  msgstr "Salva per tutti i tipi di contenuto"
40
 
@@ -86,59 +191,55 @@ msgid_plural "Mine %s"
86
  msgstr[0] "Mio %s"
87
  msgstr[1] "Miei %s"
88
 
89
- #: includes/roles/class/class-pp-roles-admin.php:462
90
  msgid "Load Less"
91
  msgstr "Carica meno"
92
 
93
- #: includes/roles/class/class-pp-roles-admin.php:459
94
  msgid "Load More"
95
  msgstr "Carica altro"
96
 
97
- #: includes/roles/class/class-pp-roles-admin.php:431
98
  msgid "These can be edited on the %1s Capabilities screen %2s"
99
  msgstr "Queste possono essere modificate nella schermata %1s Capacità %2s"
100
 
101
- #: includes/roles/class/class-pp-roles-admin.php:353
102
  msgid "All Roles"
103
  msgstr "Tutti i ruoli"
104
 
105
- #: includes/roles/class/class-pp-roles-admin.php:347
106
  msgid "Copy Role"
107
  msgstr "Copia ruolo"
108
 
109
- #: includes/roles/class/class-pp-roles-admin.php:345
110
- msgid "Edit Role"
111
- msgstr "Modifica ruolo"
112
-
113
- #: includes/roles/class/class-pp-roles-admin.php:337
114
  msgid "Create Role"
115
  msgstr "Crea ruolo"
116
 
117
- #: includes/roles/class/class-pp-roles-admin.php:337
118
  msgid "Update Role"
119
  msgstr "Aggiorna ruolo"
120
 
121
- #: includes/roles/class/class-pp-roles-admin.php:331
122
  msgid "%s role copied to editor. Please click the \"Create Role\" button to create this new role."
123
  msgstr "Il ruolo %s è stato copiato nell'editor. Fare clic sul pulsante \"Crea ruolo\" per creare questo nuovo ruolo."
124
 
125
- #: includes/roles/class/class-pp-roles-admin.php:241
126
  msgid "Slug already exists"
127
  msgstr "Questo slug esiste già"
128
 
129
- #: includes/roles/class/class-pp-roles-admin.php:185
130
  msgid "Deleting this role will completely remove it from database and is irrecoverable."
131
  msgstr "L'eliminazione di questo ruolo lo rimuoverà completamente dal database e sarà irrecuperabile."
132
 
133
- #: includes/roles/class/class-pp-roles-admin.php:154
134
  msgid "The \"slug\" is the URL-friendly version of the role. It is usually all lowercase and contains only letters, numbers and underscores."
135
  msgstr "Lo \"slug\" è la versione URL-friendly del ruolo. Di solito è tutto minuscolo e contiene solo lettere, numeri e trattini bassi."
136
 
137
- #: includes/roles/class/class-pp-roles-admin.php:153
138
  msgid "Role Slug"
139
  msgstr "Slug del ruolo"
140
 
141
- #: includes/roles/class/class-pp-roles-admin.php:109
142
  msgid "Advanced"
143
  msgstr "Avanzate"
144
 
@@ -146,7 +247,7 @@ msgstr "Avanzate"
146
  msgid "General"
147
  msgstr "Generale"
148
 
149
- #: includes/roles/class/class-pp-roles-actions.php:388
150
  msgid "%s role updated successfully."
151
  msgstr "Ruolo %s aggiornato correttamente."
152
 
@@ -154,51 +255,51 @@ msgstr "Ruolo %s aggiornato correttamente."
154
  msgid "You do not have permission to perform this action."
155
  msgstr "Non hai i permessi per effettuare questa azione."
156
 
157
- #: includes/features/restrict-editor-features.php:320
158
  msgid "Template"
159
  msgstr "Template"
160
 
161
- #: includes/backup.php:360
162
  msgid "Import"
163
  msgstr "Importa"
164
 
165
- #: includes/backup.php:351
166
  msgid "Before importing, we recommend using the \"Backup\" tab to create a backup of your current settings."
167
  msgstr "Prima di importare, ti consigliamo di utilizzare la scheda \"Backup\" per creare una copia di sicurezza delle impostazioni correnti."
168
 
169
- #: includes/backup.php:349
170
  msgid "Import the plugin settings from a .json file. This file can be obtained by exporting the settings on another site using the form above."
171
  msgstr "Importare le impostazioni del plugin da un file .json. Questo file può essere ottenuto esportando le impostazioni di un altro sito tramite il modulo precedente."
172
 
173
- #: includes/backup.php:347
174
  msgid "Please make a 'Manual Backup' in the backup tab to enable backup restore in case anything goes wrong."
175
  msgstr "Fai un \"backup manuale\" nella scheda di backup per consentire il ripristino del backup nel caso in cui qualcosa vada storto."
176
 
177
- #: includes/backup.php:345
178
  msgid "Import Settings"
179
  msgstr "Importa impostazioni"
180
 
181
- #: includes/backup.php:338
182
  msgid "Export"
183
  msgstr "Esporta"
184
 
185
- #: includes/backup.php:316
186
  msgid "Export the plugin settings for this site as a .json file. This allows you to easily import the configuration into another site."
187
  msgstr "Esporta le impostazioni del plugin per questo sito in un file .json. Ciò consente di importare facilmente la configurazione in un altro sito."
188
 
189
- #: includes/backup.php:314
190
  msgid "Export Settings"
191
  msgstr "Esporta impostazioni"
192
 
193
- #: includes/backup.php:119
194
  msgid "Manual backup of %s (%s)"
195
  msgstr "Backup manuale di %s (%s)"
196
 
197
- #: includes/backup.php:114
198
  msgid "all roles"
199
  msgstr "tutti i ruoli"
200
 
201
- #: includes/backup.php:51 includes/backup.php:309
202
  msgid "Export / Import"
203
  msgstr "Esporta/importa"
204
 
@@ -226,11 +327,11 @@ msgstr "Carica un file da importare"
226
  msgid "%s restored from last backup."
227
  msgstr "%s ripristinato dall'ultimo backup."
228
 
229
- #: includes/admin.php:1367
230
  msgid "Go to the Backup feature"
231
  msgstr "Vai alle caratteristiche del backup"
232
 
233
- #: includes/admin.php:1363
234
  msgid ""
235
  "This plugin automatically creates a backup whenever you save changes. You can use these backups to\n"
236
  "restore an earlier version of your roles and capabilities."
@@ -238,7 +339,7 @@ msgstr ""
238
  "Questo plugin crea automaticamente un backup ogni volta che salvi delle modifiche. È possibile utilizzare questi backup per\n"
239
  "ripristinare una versione precedente dei ruoli e delle capacità."
240
 
241
- #: includes/admin.php:1361
242
  msgid "PublishPress Capabilities is safe to use"
243
  msgstr "PublishPress Capabilities è sicuro da usare"
244
 
@@ -246,7 +347,7 @@ msgstr "PublishPress Capabilities è sicuro da usare"
246
  msgid "This plugin can be deleted."
247
  msgstr "Questo plugin può essere eliminato."
248
 
249
- #: includes/roles/class/class-pp-roles-actions.php:299
250
  msgid "The new role %s was created successfully."
251
  msgstr "Il nuovo ruolo %s è stato creato con successo."
252
 
@@ -335,90 +436,88 @@ msgstr "Nota: stai solo limitando l'accesso alle schermate delle funzioni di amm
335
  msgid "Admin Feature Restrictions"
336
  msgstr "Restrizioni caratteristiche di amministrazione"
337
 
338
- #: includes/backup.php:389 includes/features/admin-features.php:236
339
- #: includes/features/editor-features.php:236
340
  msgid "Click here to install PublishPress Permissions"
341
  msgstr "Fai clic qui per installare PublishPress Permissions"
342
 
343
- #: includes/backup.php:386 includes/features/admin-features.php:233
344
- #: includes/features/editor-features.php:233
345
  msgid "PublishPress Permissions is 100% free to install."
346
  msgstr "PublishPress Permissions è al 100% gratuito da installare."
347
 
348
- #: includes/backup.php:385 includes/features/admin-features.php:232
349
- #: includes/features/editor-features.php:232
350
  msgid "Allow specific user roles or users to manage each post."
351
  msgstr "Consenti a ruoli o utenti specifici di gestire ogni singolo articolo."
352
 
353
- #: includes/backup.php:384 includes/features/admin-features.php:231
354
- #: includes/features/editor-features.php:231
355
  msgid "Choose who can read and edit each post."
356
  msgstr "Scegli chi può leggere e modificare ogni singolo articolo."
357
 
358
- #: includes/backup.php:382 includes/features/admin-features.php:229
359
- #: includes/features/editor-features.php:229
360
  msgid "Control permissions for individual posts and pages"
361
  msgstr "Controlli le autorizzazioni per ogni singolo articolo e pagina"
362
 
363
- #: includes/backup.php:381 includes/features/admin-features.php:228
364
- #: includes/features/editor-features.php:228
365
  msgid "Recommendations for you"
366
  msgstr "Raccomandazioni per te"
367
 
368
- #: includes/admin.php:870
369
  msgid "Plugin Capabilities &ndash; %s"
370
  msgstr "Plugin Capabilities &ndash; %s"
371
 
372
- #: includes/admin.php:738 includes/admin.php:876 includes/admin.php:1082
 
373
  msgid "No results found. Please try again with a different word."
374
  msgstr "Nessun risultato trovato, riprova con una parola differente."
375
 
376
- #: includes/admin.php:735 includes/admin.php:873 includes/admin.php:1079
 
377
  msgid "Filter by capability"
378
  msgstr "Filtra per capacità"
379
 
380
- #: includes/admin.php:732
381
  msgid "WordPress Core Capabilities"
382
  msgstr "Capacità di base di WordPress"
383
 
384
- #: includes/admin.php:548 includes/admin.php:736 includes/admin.php:874
385
- #: includes/admin.php:1080
386
  msgid "Clear"
387
  msgstr "Pulisci"
388
 
389
- #: includes/admin.php:545
390
  msgid "Filter by post type"
391
  msgstr "Filtra per tipo di contenuto"
392
 
393
- #: includes/admin.php:545
394
  msgid "Filter by taxonomy"
395
  msgstr "Filtra per tassonomia"
396
 
397
- #: includes/admin.php:539
398
  msgid "Post %s Capabilities"
399
  msgstr "Capacità dell'articolo %s"
400
 
401
- #: includes/admin.php:539
402
  msgid "Term %s Capabilities"
403
  msgstr "Capacità del termine %s"
404
 
405
- #: includes/admin.php:495
406
  msgid "Additional"
407
  msgstr "Aggiuntivi"
408
 
409
- #: includes/admin.php:316
410
- msgid "WordPress Core"
411
- msgstr "WordPress core"
412
-
413
- #: includes/admin.php:224
414
  msgid "Deletion"
415
  msgstr "Cancellazione"
416
 
417
- #: includes/admin.php:223
418
  msgid "Editing"
419
  msgstr "Modifica"
420
 
421
- #: includes/admin-load.php:333 includes/functions-admin.php:212
422
  #: includes/manager.php:377 includes/manager.php:412
423
  #: includes/roles/class/class-pp-roles-list-table.php:174
424
  msgid "Admin Features"
@@ -484,230 +583,230 @@ msgstr "Impostazioni aggiornate."
484
  msgid "You do not have permission to manage editor features."
485
  msgstr "Non hai i permessi per gestire le funzionalità dell'editor."
486
 
487
- #: includes/admin-load.php:332 includes/functions-admin.php:201
488
  #: includes/manager.php:375 includes/manager.php:411
489
  #: includes/roles/class/class-pp-roles-list-table.php:173
490
  msgid "Editor Features"
491
  msgstr "Funzioni dell'editor"
492
 
493
- #: includes/features/restrict-editor-features.php:348
494
  msgid "Text settings"
495
  msgstr "Impostazioni del testo"
496
 
497
- #: includes/features/restrict-editor-features.php:347
498
  msgid "Color settings"
499
  msgstr "Impostazioni colore"
500
 
501
- #: includes/features/restrict-editor-features.php:346
502
  msgid "Typography"
503
  msgstr "Tipografia"
504
 
505
- #: includes/features/restrict-editor-features.php:345
506
  msgid "Paragraph"
507
  msgstr "Paragrafo"
508
 
509
- #: includes/features/restrict-editor-features.php:343
510
- #: includes/features/restrict-editor-features.php:344
511
  msgid "Block Panel"
512
  msgstr "Pannello del blocco"
513
 
514
- #: includes/features/restrict-editor-features.php:340
515
  msgid "Post Attributes"
516
  msgstr "Attributi articolo"
517
 
518
- #: includes/features/restrict-editor-features.php:338
519
  msgid "Excerpt"
520
  msgstr "Riassunto"
521
 
522
- #: includes/features/restrict-editor-features.php:337
523
  msgid "Featured image"
524
  msgstr "Immagine in evidenza"
525
 
526
- #: includes/features/restrict-editor-features.php:319
527
  msgid "Status & visibility"
528
  msgstr "Stato e visibilità"
529
 
530
- #: includes/features/restrict-editor-features.php:318
531
  msgid "Document Panel"
532
  msgstr "Pannello documenti"
533
 
534
- #: includes/features/restrict-editor-features.php:315
535
  msgid "Content"
536
  msgstr "Contenuti"
537
 
538
- #: includes/features/restrict-editor-features.php:314
539
  msgid "Edit title"
540
  msgstr "Modifica titolo"
541
 
542
- #: includes/features/restrict-editor-features.php:313
543
  msgid "Body"
544
  msgstr "Contenuto"
545
 
546
- #: includes/features/restrict-editor-features.php:310
547
  msgid "Options"
548
  msgstr "Opzioni"
549
 
550
- #: includes/features/restrict-editor-features.php:308
551
  msgid "Publish / Update"
552
  msgstr "Pubblica/Aggiorna"
553
 
554
- #: includes/features/restrict-editor-features.php:306
555
  msgid "Switch to draft"
556
  msgstr "Passa alla bozza"
557
 
558
- #: includes/features/restrict-editor-features.php:304
559
  msgid "Top Bar - Right"
560
  msgstr "Barra in alto - Destra"
561
 
562
- #: includes/features/restrict-editor-features.php:301
563
  msgid "Outline"
564
  msgstr "Contorno"
565
 
566
- #: includes/features/restrict-editor-features.php:300
567
  msgid "Details"
568
  msgstr "Dettagli"
569
 
570
- #: includes/features/restrict-editor-features.php:299
571
  msgid "Redo"
572
  msgstr "Ripeti"
573
 
574
- #: includes/features/restrict-editor-features.php:298
575
  msgid "Undo"
576
  msgstr "Annulla"
577
 
578
- #: includes/features/restrict-editor-features.php:297
579
  msgid "Modes"
580
  msgstr "Modalità"
581
 
582
- #: includes/features/restrict-editor-features.php:296
583
  msgid "Add block"
584
  msgstr "Aggiungi blocco"
585
 
586
- #: includes/features/restrict-editor-features.php:295
587
  msgid "Top Bar - Left"
588
  msgstr "Barra in alto - Sinistra"
589
 
590
- #: includes/features/restrict-editor-features.php:93
591
- #: includes/features/restrict-editor-features.php:339
592
  msgid "Discussion"
593
  msgstr "Discussione"
594
 
595
- #: includes/features/restrict-editor-features.php:92
596
  msgid "Post Slug"
597
  msgstr "Post Slug"
598
 
599
- #: includes/features/restrict-editor-features.php:91
600
  msgid "Featured Image"
601
  msgstr "Immagine in evidenza"
602
 
603
- #: includes/features/restrict-editor-features.php:90
604
  msgid "Other Boxes"
605
  msgstr "Altri riquadri"
606
 
607
- #: includes/features/restrict-editor-features.php:87
608
  msgid "Order"
609
  msgstr "Ordinamento"
610
 
611
- #: includes/features/restrict-editor-features.php:86
612
  msgid "Page Template"
613
  msgstr "Template pagina"
614
 
615
- #: includes/features/restrict-editor-features.php:85
616
  msgid "Parent"
617
  msgstr "Genitore"
618
 
619
- #: includes/features/restrict-editor-features.php:84
620
  msgid "Page Attributes"
621
  msgstr "Attributi pagina"
622
 
623
- #: includes/features/restrict-editor-features.php:83
624
  msgid "Page Boxes"
625
  msgstr "Riquadri pagina"
626
 
627
- #: includes/features/restrict-editor-features.php:71
628
- #: includes/features/restrict-editor-features.php:323
629
  msgid "Tags"
630
  msgstr "Tag"
631
 
632
- #: includes/features/restrict-editor-features.php:70
633
  msgid "Add New Category"
634
  msgstr "Aggiungi una nuova categoria"
635
 
636
- #: includes/features/restrict-editor-features.php:69
637
- #: includes/features/restrict-editor-features.php:322
638
  msgid "Categories"
639
  msgstr "Categorie"
640
 
641
- #: includes/features/restrict-editor-features.php:68
642
  msgid "Taxonomy Boxes"
643
  msgstr "Riquadri tassonomia"
644
 
645
- #: includes/features/restrict-editor-features.php:65
646
  msgid "Publish"
647
  msgstr "Pubblica"
648
 
649
- #: includes/features/restrict-editor-features.php:64
650
  msgid "Date"
651
  msgstr "Data"
652
 
653
- #: includes/features/restrict-editor-features.php:63
654
  msgid "Publish Schedule"
655
  msgstr "Pianifica pubblicazione"
656
 
657
- #: includes/features/restrict-editor-features.php:62
658
  msgid "Publish Actions"
659
  msgstr "Azioni pubblicazione"
660
 
661
- #: includes/features/restrict-editor-features.php:61
662
  msgid "Password Protect This Post"
663
  msgstr "Articolo protetto da password"
664
 
665
- #: includes/features/restrict-editor-features.php:60
666
  msgid "Publish Visibility"
667
  msgstr "Visibilità pubblicazione"
668
 
669
- #: includes/features/restrict-editor-features.php:59
670
  msgid "Publish Status "
671
  msgstr "Stato pubblicazione "
672
 
673
- #: includes/features/restrict-editor-features.php:58
674
- #: includes/features/restrict-editor-features.php:307
675
  msgid "Preview"
676
  msgstr "Anteprima"
677
 
678
- #: includes/features/restrict-editor-features.php:57
679
- #: includes/features/restrict-editor-features.php:305
680
  msgid "Save Draft"
681
  msgstr "Salva bozza"
682
 
683
- #: includes/features/restrict-editor-features.php:55
684
- #: includes/features/restrict-editor-features.php:56
685
  msgid "Publish Box"
686
  msgstr "Riquadro pubblica"
687
 
688
- #: includes/features/restrict-editor-features.php:52
689
  msgid "Word count"
690
  msgstr "Conteggio parole"
691
 
692
- #: includes/features/restrict-editor-features.php:51
693
  msgid "HTML Editor Button"
694
  msgstr "Pulsante per l'editor HTML"
695
 
696
- #: includes/features/restrict-editor-features.php:50
697
  msgid "Media Buttons (all)"
698
  msgstr "Pulsanti Media (tutti)"
699
 
700
- #: includes/features/restrict-editor-features.php:49
701
- #: includes/features/restrict-editor-features.php:321
702
  msgid "Permalink"
703
  msgstr "Permalink"
704
 
705
- #: includes/features/restrict-editor-features.php:47
706
  msgid "Title"
707
  msgstr "Titolo"
708
 
709
  #: includes/features/restrict-editor-features.php:45
710
- #: includes/features/restrict-editor-features.php:48
711
  msgid "Editor"
712
  msgstr "Editor"
713
 
@@ -741,18 +840,14 @@ msgstr "Seleziona le caratteristiche dell'editor da rimuovere. Sappi che questa
741
  msgid "Editor Feature Restriction"
742
  msgstr "Limitazione delle funzioni dell'editor"
743
 
744
- #: includes/admin.php:1417
745
  msgid "sync options to all sites now"
746
  msgstr "sincronizza le opzioni su tutti i siti adesso"
747
 
748
- #: includes/admin.php:1417
749
  msgid "Copy option settings to all sites now"
750
  msgstr "Copia le impostazioni delle opzioni su tutti i siti adesso"
751
 
752
- #: includes/admin.php:991
753
- msgid "The following entries have no effect. Please assign desired capabilities in the Read / Edit / Delete grid above."
754
- msgstr "Le voci seguenti non hanno effetto. Assegna le funzionalità desiderate nella griglia Leggi/Modifica/Elimina sopra."
755
-
756
  #: includes/handler.php:61 includes/handler.php:89 includes/manager.php:758
757
  msgid "The selected role is not editable."
758
  msgstr "Il ruolo selezionato non è modificabile."
@@ -761,51 +856,51 @@ msgstr "Il ruolo selezionato non è modificabile."
761
  msgid "You do not have permission to manage roles."
762
  msgstr "Non hai le autorizzazioni per gestire i ruoli."
763
 
764
- #: includes/backup.php:272
765
  msgid "No changes"
766
  msgstr "Nessuna modifica"
767
 
768
- #: includes/backup.php:203
769
  msgid "(this role will be removed if you restore backup)"
770
  msgstr "(questo ruolo sarà rimosso se ripristini il backup)"
771
 
772
- #: includes/backup.php:162
773
  msgid "Show changes from current roles only"
774
  msgstr "Mostra le modifiche solo dai ruoli attuali"
775
 
776
- #: includes/backup.php:151
777
  msgid "Restore Selected Roles"
778
  msgstr "Ripristina i ruoli selezionati"
779
 
780
- #: includes/backup.php:142
781
  msgid "Initial backup of all roles"
782
  msgstr "Backup iniziali di tutti i ruoli"
783
 
784
- #: includes/backup.php:134
785
  msgid "Auto-backup of all roles (%s)"
786
  msgstr "Backup automatico di tutti i ruoli (%s)"
787
 
788
- #: includes/backup.php:101
789
  msgid "Available Backups:"
790
  msgstr "Backup disponibili:"
791
 
792
- #: includes/backup.php:96
793
  msgid "On this screen, you can restore an earlier version of your roles and capabilities."
794
  msgstr "In questa schermata puoi ripristinare una versione precedente dei tuoi ruoli e delle capacità."
795
 
796
- #: includes/backup.php:92
797
  msgid "PublishPress Capabilities automatically creates a backup on installation and whenever you save changes."
798
  msgstr "PublishPress Capabilities crea automaticamente un backup durante l'installazione e ogni volta che salvi le modifiche."
799
 
800
- #: includes/backup.php:89
801
  msgid "Restore Previous Roles and Capabilities"
802
  msgstr "Ripristina ruoli e capacità precedenti"
803
 
804
- #: includes/backup.php:75
805
  msgid "Manual Backup"
806
  msgstr "Backup manuale"
807
 
808
- #: includes/backup.php:70
809
  msgid "A backup created on this screen replaces any previous manual backups, but is never automatically replaced."
810
  msgstr "Un backup creato in questa schermata sostituirà qualsiasi backup manuale precedente, ma non viene sostituito automaticamente."
811
 
@@ -821,8 +916,8 @@ msgstr "Ripristina ruoli"
821
  msgid "Restore"
822
  msgstr "Ripristina"
823
 
824
- #: includes/admin-load.php:339
825
- #: includes/features/restrict-editor-features.php:309 includes/manager.php:384
826
  msgid "Settings"
827
  msgstr "Impostazioni"
828
 
@@ -839,7 +934,7 @@ msgstr "Cerca ruoli"
839
  msgid "Search results for &#8220;%s&#8221;"
840
  msgstr "Risultati di ricerca per &#8220;%s&#8221;"
841
 
842
- #: includes/admin-load.php:330 includes/manager.php:361
843
  #: includes/roles/roles.php:8
844
  msgid "Roles"
845
  msgstr "Ruoli"
@@ -860,9 +955,9 @@ msgstr "Nascondi"
860
  #: includes-core/editor-features-promo.php:107
861
  #: includes-core/editor-features-promo.php:117
862
  #: includes/features/admin-features.php:190
863
- #: includes/features/editor-features-classic.php:51
864
- #: includes/features/editor-features-gutenberg.php:50
865
- #: includes/roles/class/class-pp-roles-admin.php:116
866
  #: includes/roles/class/class-pp-roles-list-table.php:281
867
  #: includes/roles/class/class-pp-roles-list-table.php:540
868
  msgid "Delete"
@@ -881,31 +976,31 @@ msgstr "(ruolo non modificabile)"
881
  msgid "Users"
882
  msgstr "Utenti"
883
 
884
- #: includes/roles/class/class-pp-roles-actions.php:649
885
  msgid "The role %1$s was successfully unhidden."
886
  msgstr "Il ruolo %1$s è stato reso visibile con successo."
887
 
888
- #: includes/roles/class/class-pp-roles-actions.php:589
889
  msgid "The role %1$s was successfully hidden."
890
  msgstr "Il ruolo %1$s è stato nascosto con successo."
891
 
892
- #: includes/roles/class/class-pp-roles-actions.php:535
893
  msgid "The role could not be deleted."
894
  msgstr "Il ruolo non può essere eliminato."
895
 
896
- #: includes/roles/class/class-pp-roles-actions.php:513
897
  msgid "The selected %1$s roles were successfully deleted. %2$s"
898
  msgstr "I ruoli %1$s selezionati sono stati eliminati con successo. %2$s"
899
 
900
- #: includes/roles/class/class-pp-roles-actions.php:507
901
  msgid "The role %1$s was successfully deleted. %2$s"
902
  msgstr "Il ruolo %1$s è stato eliminato con successo. %2$s"
903
 
904
- #: includes/roles/class/class-pp-roles-actions.php:502
905
  msgid "%1$d users moved to default role %2$s."
906
  msgstr "%1$d utenti sono passati al ruolo predefinito %2$s."
907
 
908
- #: includes/roles/class/class-pp-roles-actions.php:480
909
  msgid "Deleting a system role is not allowed."
910
  msgstr "Non è consentito eliminare un ruolo di sistema."
911
 
@@ -914,17 +1009,17 @@ msgid "Something went wrong, the system wasn't able to create the role, refresh
914
  msgstr "Qualcosa è andato storto, il sistema non è riuscito a creare il ruolo, ricarica la pagina e prova ancora."
915
 
916
  #: includes/roles/class/class-pp-roles-actions.php:184
917
- #: includes/roles/class/class-pp-roles-actions.php:336
918
- #: includes/roles/class/class-pp-roles-actions.php:453
919
- #: includes/roles/class/class-pp-roles-actions.php:578
920
- #: includes/roles/class/class-pp-roles-actions.php:639
921
  msgid "Missing parameters, refresh the page and try again."
922
  msgstr "Ci sono dei parametri mancanti, ricarica la pagina e prova ancora."
923
 
924
  #: includes/roles/class/class-pp-roles-actions.php:162
925
  #: includes/roles/class/class-pp-roles-actions.php:180
926
- #: includes/roles/class/class-pp-roles-actions.php:332
927
- #: includes/roles/class/class-pp-roles-actions.php:429
928
  msgid "Your link has expired, refresh the page and try again."
929
  msgstr "Il tuo link è scaduto, ricarica la pagina e prova ancora."
930
 
@@ -932,8 +1027,8 @@ msgstr "Il tuo link è scaduto, ricarica la pagina e prova ancora."
932
  msgid "You do not have sufficient permissions to perform this action."
933
  msgstr "Non hai i permessi necessari per compiere quest'azione."
934
 
935
- #: includes/roles/class/class-pp-roles-admin.php:276
936
- #: includes/roles/roles-functions.php:32
937
  msgid "Are you sure you want to delete this role?"
938
  msgstr "Sei certo di voler eliminare questo ruolo?"
939
 
@@ -945,13 +1040,13 @@ msgstr "PublishPress Authors"
945
  msgid "Capabilities Settings"
946
  msgstr "Impostazioni di capacità"
947
 
948
- #: includes-core/CoreAdmin.php:63 includes/admin-load.php:335
949
  #: includes/manager.php:414
950
  #: includes/roles/class/class-pp-roles-list-table.php:176
951
  msgid "Nav Menus"
952
  msgstr "Menu navigazione"
953
 
954
- #: includes-core/CoreAdmin.php:62 includes/admin-load.php:334
955
  #: includes/manager.php:413
956
  #: includes/roles/class/class-pp-roles-list-table.php:175
957
  msgid "Admin Menus"
@@ -973,7 +1068,7 @@ msgstr "Puoi limitare l'accesso ai menu di navigazione. Questa funzionalità è
973
  msgid "Navigation Menu Restrictions"
974
  msgstr "Limitazioni menu di navigazione"
975
 
976
- #: includes/features/restrict-editor-features.php:46
977
  #: includes/filters-woocommerce.php:33 includes/roles/roles.php:10
978
  msgid "Add New"
979
  msgstr "Aggiungi nuovo"
@@ -1016,13 +1111,13 @@ msgstr "Non hai le autorizzazioni per gestire le capacità."
1016
  #: includes-core/admin-features-promo.php:79
1017
  #: includes-core/admin-menus-promo.php:62
1018
  #: includes-core/editor-features-promo.php:79
1019
- #: includes-core/nav-menus-promo.php:67 includes/admin-load.php:345
1020
- #: includes/admin-load.php:346 includes/manager.php:390
1021
  #: includes/manager.php:391
1022
  msgid "Upgrade to Pro"
1023
  msgstr "Aggiorna a Pro"
1024
 
1025
- #: includes/admin-load.php:336 includes/backup.php:49 includes/manager.php:381
1026
  msgid "Backup"
1027
  msgstr "Backup"
1028
 
@@ -1082,32 +1177,28 @@ msgstr "PublishPress Revisions"
1082
  msgid "Related Permissions Plugins"
1083
  msgstr "Plugin di autorizzazioni correlati"
1084
 
1085
- #: includes/manager.php:408 includes/roles/class/class-pp-roles-admin.php:145
1086
  #: includes/roles/class/class-pp-roles-list-table.php:170
1087
  msgid "Role Name"
1088
  msgstr "Nome del ruolo"
1089
 
1090
- #: includes/roles/class/class-pp-roles-admin.php:162
1091
  msgid "Role Level"
1092
  msgstr "Livello del ruolo"
1093
 
1094
- #: includes/admin.php:1326
1095
  msgid "Role level is mostly deprecated. However, it still determines eligibility for Post Author assignment and limits the application of user editing capabilities."
1096
  msgstr "Il livello di ruolo è per lo più deprecato. Tuttavia, determina comunque l'idoneità per l'assegnazione di autore articolo e limita l'applicazione delle capacità di modifica dell'utente."
1097
 
1098
- #: includes/admin.php:490 includes/admin.php:978
1099
  msgid "Invalid Capabilities"
1100
  msgstr "Capacità non valide"
1101
 
1102
- #: includes/admin.php:801
1103
- msgid "Lockout Prevention: To remove read capability, first remove WordPress admin / editing capabilities, or add \"dashboard_lockout_ok\" capability"
1104
- msgstr "Prevenzione blocco: Per rimuovere la capacità di lettura bisogna prima rimuovere le capacità di gestione/modifica di WordPress oppure aggiungere la capacità \"dashboard_lockout_ok\""
1105
-
1106
- #: includes/admin.php:652
1107
  msgid "shared capability: %s"
1108
  msgstr "capacità condivise: %s"
1109
 
1110
- #: includes/admin.php:1235 includes/settings.php:40
1111
  msgid "PublishPress Permissions"
1112
  msgstr "PublishPress Permissions"
1113
 
@@ -1127,27 +1218,27 @@ msgstr "Attenzione: Questo ruolo non può accedere alla bacheca senza le capacit
1127
  msgid "Edit Roles"
1128
  msgstr "Modifica ruoli"
1129
 
1130
- #: includes/backup.php:232
1131
  msgid "%s (level %s)"
1132
  msgstr "%s (livello %s)"
1133
 
1134
- #: includes/backup.php:196
1135
  msgid "%s (%s roles)"
1136
  msgstr "%s (%s ruoli)"
1137
 
1138
- #: includes/backup.php:85
1139
  msgid "Last Backup"
1140
  msgstr "Ultimo backup"
1141
 
1142
- #: includes/backup.php:85
1143
  msgid "Last Manual Backup - %s"
1144
  msgstr "Ultimo backup manuale - %s"
1145
 
1146
- #: includes/backup.php:169
1147
  msgid "Initial Backup"
1148
  msgstr "Backup iniziale"
1149
 
1150
- #: includes/backup.php:169
1151
  msgid "Initial Backup - %s"
1152
  msgstr "Backup iniziale - %s"
1153
 
@@ -1212,7 +1303,7 @@ msgstr "vedi %1$sUtilizzo dei ruoli%2$s: \"Modelli di ruolo\""
1212
  msgid "Bad form Received"
1213
  msgstr "E' stato ricevuto un modulo errato"
1214
 
1215
- #: includes/roles/class/class-pp-roles-actions.php:461
1216
  msgid "Cannot delete default role. You <a href=\"%s\">have to change it first</a>."
1217
  msgstr "Non é possibile cancellare il ruolo predefinito. Bisogna che prima effettui questa <a href=\"%s\">modifica</a>."
1218
 
@@ -1240,11 +1331,11 @@ msgstr "Errore: non é stato possibile creare il nuovo ruolo."
1240
  msgid "New role created."
1241
  msgstr "Il nuovo ruolo é stato creato."
1242
 
1243
- #: includes/backup.php:301
1244
  msgid "Reset to WordPress defaults"
1245
  msgstr "Ripristina ai predefiniti di WordPress"
1246
 
1247
- #: includes/backup.php:301
1248
  msgid ""
1249
  "You are about to reset Roles and Capabilities to WordPress defaults.\n"
1250
  " 'Cancel' to stop, 'OK' to reset."
@@ -1252,27 +1343,23 @@ msgstr ""
1252
  "Stai per ripristinare i Ruoli e le Capacità ai valori predefiniti di WordPress.\n"
1253
  " 'Annulla' per fermarti, 'OK' per procedere."
1254
 
1255
- #: includes/backup.php:299
1256
  msgid "Reset Roles and Capabilities to WordPress defaults"
1257
  msgstr "Ripristina i Ruoli e le Capacità ai valori predefiniti di WordPress"
1258
 
1259
- #: includes/backup.php:296
1260
  msgid "It is recommended to use this only as a last resource!"
1261
  msgstr "Da utilizzarsi solamente come ultima risorsa!"
1262
 
1263
- #: includes/backup.php:294
1264
  msgid "If you have installed any plugin that adds new roles or capabilities, these will be lost."
1265
  msgstr "I ruoli e le capacità propri di ogni plugin installato saranno persi."
1266
 
1267
- #: includes/backup.php:290
1268
  msgid "Reseting default Roles and Capabilities will set them to the WordPress install defaults."
1269
  msgstr "Il ripristino dei valori predefiniti per i Ruoli e le Capacità li riporterà ai valori predefiniti di WordPress."
1270
 
1271
- #: includes/backup.php:290 includes/backup.php:347
1272
- msgid "WARNING:"
1273
- msgstr "Attenzione:"
1274
-
1275
- #: includes/backup.php:288
1276
  msgid "Reset WordPress Defaults"
1277
  msgstr "Ripristina ai valori predefiniti di WordPress"
1278
 
@@ -1301,32 +1388,33 @@ msgstr "Il nuovo backup é stato salvato."
1301
  msgid "You do not have permission to restore roles."
1302
  msgstr "Non hai le autorizzazioni per il ripristino dei ruoli."
1303
 
1304
- #: includes/admin.php:1414
1305
  msgid "sync role to all sites now"
1306
  msgstr "sincronizza i ruoli su tutti i siti adesso"
1307
 
1308
- #: includes/admin.php:1414
1309
  msgid "Copy / update this role definition to all sites now"
1310
  msgstr "Copia/aggiorna la definizione di questo ruolo su tutti i siti adesso"
1311
 
1312
- #: includes/admin.php:1411
1313
  msgid "include in new sites"
1314
  msgstr "includi nei nuovi siti"
1315
 
1316
- #: includes/admin.php:1411
1317
  msgid "Create this role definition in new (future) sites"
1318
  msgstr "Crea la definizione di questo ruolo nei nuovi (futuri) siti"
1319
 
1320
- #: includes/admin.php:1375
1321
  msgid "Add to role"
1322
  msgstr "Aggiungi al ruolo"
1323
 
1324
- #: includes/admin.php:749 includes/admin.php:843 includes/admin.php:887
1325
- #: includes/admin.php:960 includes/admin.php:1088 includes/admin.php:1205
 
1326
  msgid "Capability Name"
1327
  msgstr "Nome della capacità"
1328
 
1329
- #: includes/admin.php:1372
1330
  msgid "Add Capability"
1331
  msgstr "Aggiungi capacità"
1332
 
@@ -1334,166 +1422,169 @@ msgstr "Aggiungi capacità"
1334
  msgid "Copy"
1335
  msgstr "Copia"
1336
 
1337
- #: includes/roles/class/class-pp-roles-admin.php:349
1338
  msgid "Create New Role"
1339
  msgstr "Crea un nuovo ruolo"
1340
 
1341
- #: includes/roles/class/class-pp-roles-admin.php:184
1342
  msgid "Delete role"
1343
  msgstr "Elimina il ruolo"
1344
 
1345
  #: includes-core/admin-menus-promo.php:48 includes-core/nav-menus-promo.php:52
1346
- #: includes/admin.php:113 includes/admin.php:1348
1347
  #: includes/features/admin-features.php:76
1348
  #: includes/features/admin-features.php:215 includes/settings.php:56
1349
  msgid "Save Changes"
1350
  msgstr "Salva modifiche"
1351
 
1352
- #: includes/admin.php:1328
1353
  msgid "Level:"
1354
  msgstr "Livello:"
1355
 
1356
- #: includes/admin.php:1076
1357
  msgid "Additional Capabilities"
1358
  msgstr "Capacità aggiuntive"
1359
 
1360
- #: includes/admin.php:751 includes/admin.php:845 includes/admin.php:889
1361
- #: includes/admin.php:962 includes/admin.php:1090 includes/admin.php:1207
 
1362
  msgid "negate none (add/remove all capabilities normally)"
1363
  msgstr "nessuna negazione (aggiungere/rimuovere tutte le funzionalità normalmente)"
1364
 
1365
- #: includes/admin.php:751 includes/admin.php:845 includes/admin.php:889
1366
- #: includes/admin.php:962 includes/admin.php:1090 includes/admin.php:1207
 
1367
  msgid "negate all (storing as disabled capabilities)"
1368
  msgstr "negare tutto (memorizzare come capacità disabilitate)"
1369
 
1370
- #: includes/admin.php:749 includes/admin.php:843 includes/admin.php:887
1371
- #: includes/admin.php:960 includes/admin.php:1088 includes/admin.php:1205
 
1372
  msgid "check / uncheck all"
1373
  msgstr "seleziona/deseleziona tutto"
1374
 
1375
- #: includes/admin.php:640 includes/admin.php:782 includes/admin.php:922
1376
- #: includes/admin.php:1153
1377
  msgid "%s: assigned by Permission Group"
1378
  msgstr "%s: assegnato dal Gruppo autorizzazione"
1379
 
1380
- #: includes/admin.php:237
1381
  msgid "can delete posts which are currently published with private visibility"
1382
  msgstr "può eliminare gli articoli che sono attualmente pubblicati con visibilità privata"
1383
 
1384
- #: includes/admin.php:236
1385
  msgid "can delete posts which are currently published"
1386
  msgstr "può eliminare gli articoli che sono attualmente pubblicati"
1387
 
1388
- #: includes/admin.php:235
1389
  msgid "can delete posts which were created by other users"
1390
  msgstr "può eliminare gli articoli che sono stati creati da altri utenti"
1391
 
1392
- #: includes/admin.php:234
1393
  msgid "has basic deletion capability (but may need other capabilities based on post status and ownership)"
1394
  msgstr "ha una capacità di cancellazione di base (ma può necessitare di altre capacità basate sullo stato e la proprietà degli articoli)"
1395
 
1396
- #: includes/admin.php:233
1397
  msgid "can make a post publicly visible"
1398
  msgstr "può rendere un articolo visibile pubblicamente"
1399
 
1400
- #: includes/admin.php:232
1401
  msgid "can edit posts which are currently published with private visibility"
1402
  msgstr "può modificare gli articoli che sono attualmente pubblicati con visibilità privata"
1403
 
1404
- #: includes/admin.php:231
1405
  msgid "can edit posts which are currently published"
1406
  msgstr "può modificare gli articoli che sono attualmente pubblicati"
1407
 
1408
- #: includes/admin.php:230
1409
  msgid "can edit posts which were created by other users"
1410
  msgstr "può modificare gli articoli che sono stati creati da altri utenti"
1411
 
1412
- #: includes/admin.php:229
1413
  msgid "has basic editing capability (but may need other capabilities based on post status and ownership)"
1414
  msgstr "ha la capacità di modificazione di base (ma può necessitare di altre capacità basate sullo stato e la proprietà degli articoli)"
1415
 
1416
- #: includes/admin.php:228
1417
  msgid "can read posts which are currently published with private visibility"
1418
  msgstr "può leggere gli articoli che sono attualmente pubblicati con visibilità privata"
1419
 
1420
- #: includes/admin.php:222
1421
  msgid "Reading"
1422
  msgstr "Lettura"
1423
 
1424
- #: includes/admin.php:221
1425
  msgid "&nbsp;"
1426
  msgstr "&nbsp;"
1427
 
1428
- #: includes/admin.php:1294
1429
  msgid "%s info/purchase"
1430
  msgstr "%s info/acquisto"
1431
 
1432
- #: includes/admin.php:1294
1433
  msgid "%1$sbuy%2$s %3$s"
1434
  msgstr "%1$scompra%2$s %3$s"
1435
 
1436
- #: includes/admin.php:1292
1437
  msgid "%s (free install)"
1438
  msgstr "%s (installazione gratuita)"
1439
 
1440
- #: includes/admin.php:1292
1441
  msgid "%1$sgrab%2$s %3$s"
1442
  msgstr "%1$scattura%2$s %3$s"
1443
 
1444
- #: includes/admin.php:1285
1445
  msgid "Member support forum"
1446
  msgstr "Forum di support membri"
1447
 
1448
- #: includes/admin.php:1281
1449
  msgid "WPML integration to mirror permissions to translations <em>(Pro)</em>"
1450
  msgstr "Integrazione con WPML per trasmettere le autorizzazioni alle traduzioni <em>(Pro)</em>"
1451
 
1452
- #: includes/admin.php:1277
1453
  msgid "Grant supplemental content permissions to a BuddyPress group <em>(Pro)</em>"
1454
  msgstr "Concede autorizzazioni di contenuto supplementari a un gruppo BuddyPress <em>(Pro)</em>"
1455
 
1456
- #: includes/admin.php:1273
1457
  msgid "Grant Spectator, Participant or Moderator access to specific bbPress forums <em>(Pro)</em>"
1458
  msgstr "Concedi a Spettatore, Partecipante o Moderatore l'accesso a specifici forum bbPress <em>(Pro)</em>"
1459
 
1460
- #: includes/admin.php:1269
1461
  msgid "Customize the moderated editing of published content with Revisionary or Post Forking <em>(Pro)</em>"
1462
  msgstr "Personalizza la modifica moderata dei contenuti pubblicati con Revisionary o Post Forking <em>(Pro)</em>"
1463
 
1464
- #: includes/admin.php:1265
1465
  msgid "Regulate permissions for Edit Flow post statuses <em>(Pro)</em>"
1466
  msgstr "Regola le autorizzazioni per gli stati dell'articolo in Edit Flow <em>(Pro)</em>"
1467
 
1468
- #: includes/admin.php:1261
1469
  msgid "Custom Moderation statuses for access-controlled, multi-step publishing workflow <em>(Pro)</em>"
1470
  msgstr "Stati di moderazione personalizzati per gli accessi controllati, flusso di lavoro di pubblicazione in più fasi <em>(Pro)</em>"
1471
 
1472
- #: includes/admin.php:1257
1473
  msgid "Custom Post Visibility statuses, fully implemented throughout wp-admin <em>(Pro)</em>"
1474
  msgstr "Stati di visibilità degli articoli personalizzati, completamente implementati in wp-admin <em>(Pro)</em>"
1475
 
1476
- #: includes/admin.php:1253
1477
  msgid "Customize editing permissions per-category or per-post <em>(Pro)</em>"
1478
  msgstr "Personalizza le modifiche delle autorizzazioni per categoria o per articolo <em>(Pro)</em>"
1479
 
1480
- #: includes/admin.php:1249
1481
  msgid "Customize reading permissions per-category or per-post"
1482
  msgstr "Personalizza le autorizzazioni di lettura per categoria o per articolo"
1483
 
1484
- #: includes/admin.php:1245
1485
  msgid "Assign custom WP roles supplementally for a specific post type <em>(Pro)</em>"
1486
  msgstr "Assegna ruoli WP personalizzati in aggiunta a un tipo di articolo specifico <em>(Pro)</em>"
1487
 
1488
- #: includes/admin.php:1241
1489
  msgid "Assign standard WP roles supplementally for a specific post type"
1490
  msgstr "Assegna ruoli WP standard in aggiunta a un tipo di articolo specifico"
1491
 
1492
- #: includes/admin.php:1237
1493
  msgid "Automatically define type-specific capabilities for your custom post types and taxonomies"
1494
  msgstr "Definisci automaticamente le capacità specifiche del tipo per i tuoi tipi di articoli e tassonomie personalizzate"
1495
 
1496
- #: includes/backup.php:321
1497
  msgid "Roles and Capabilities"
1498
  msgstr "Ruoli e capacità"
1499
 
@@ -1529,8 +1620,8 @@ msgstr "Nega esplicitamente queste capacità memorizzandole come disabilitate"
1529
  msgid "Explicity negate this capability by storing as disabled"
1530
  msgstr "Nega esplicitamente questa capacità memorizzandola come disabilitata"
1531
 
1532
- #: includes/admin-load.php:308 includes/manager.php:339
1533
- #: includes/manager.php:410 includes/roles/class/class-pp-roles-admin.php:427
1534
  #: includes/roles/class/class-pp-roles-list-table.php:172
1535
  msgid "Capabilities"
1536
  msgstr "Capacità"
@@ -1547,7 +1638,7 @@ msgstr "E' necessario %s per l'utilizzo di questo plugin."
1547
  msgid "The active plugin %s is not compatible with your PHP version."
1548
  msgstr "Il plugin %s non é compatibile con la tua versione PHP."
1549
 
1550
- #: capsman-enhanced.php:112
1551
  msgid "Warning:"
1552
  msgstr "Attenzione:"
1553
 
4
  msgstr ""
5
  "Project-Id-Version: Plugins - PublishPress Capabilities &#8211; User Role Access, Editor Permissions, Admin Menus - Stable (latest release)\n"
6
  "POT-Creation-Date: \n"
7
+ "PO-Revision-Date: 2022-07-20 15:10-0500\n"
8
  "Last-Translator: \n"
9
+ "Language-Team: \n"
10
  "Language: it\n"
11
  "MIME-Version: 1.0\n"
12
  "Content-Type: text/plain; charset=UTF-8\n"
14
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
15
  "X-Generator: Poedit 3.0.1\n"
16
 
17
+ #: includes/roles/class/class-pp-roles-admin.php:338
18
+ msgid "You must select at least one editor for the role when managing allowed editor."
19
+ msgstr "Per gestire un editore autorizzato è necessario selezionare almeno un editore per il ruolo."
20
+
21
+ #: includes/roles/class/class-pp-roles-admin.php:337
22
+ msgid "Select allowed editor"
23
+ msgstr "Seleziona autore autorizzato"
24
+
25
+ #: includes/roles/class/class-pp-roles-admin.php:250
26
+ msgid "Control Allowed Editors"
27
+ msgstr "Controllo degli editori autorizzati"
28
+
29
+ #: includes/roles/class/class-pp-roles-admin.php:586
30
+ msgid "Edit Role: %s"
31
+ msgstr "Modifica il ruolo: %s"
32
+
33
+ #: includes/roles/class/class-pp-roles-admin.php:501
34
+ msgid "Enter the relative path only without domain for logout redirect."
35
+ msgstr "Inserisci solo il percorso relativo senza dominio per il reindirizzamento della disconnessione."
36
+
37
+ #: includes/roles/class/class-pp-roles-admin.php:469
38
+ msgid "You must enter the Login Redirect URL."
39
+ msgstr "Devi inserire l'URL per il reindirizzamento dell'accesso."
40
+
41
+ #: includes/roles/class/class-pp-roles-admin.php:468
42
+ msgid "Enter the relative path only without domain for login redirect."
43
+ msgstr "Inserisci solo il percorso relativo senza dominio per il reindirizzamento all'accesso."
44
+
45
+ #: includes/roles/class/class-pp-roles-admin.php:452
46
+ msgid "Redirect users to a specified URL."
47
+ msgstr "Reindirizza gli utenti ad uno specifico URL."
48
+
49
+ #: includes/roles/class/class-pp-roles-admin.php:440
50
+ msgid "Redirect users to the URL they were viewing before login."
51
+ msgstr "Reindirizza gli utenti all'URL che stavano esplorando prima dell'accesso."
52
+
53
+ #: includes/roles/class/class-pp-roles-admin.php:367
54
+ msgid "Select %s"
55
+ msgstr "Seleziona %s"
56
+
57
+ #: includes/roles/class/class-pp-roles-admin.php:251
58
+ msgid "Select the allowed editor options for users in this role."
59
+ msgstr "Selezione le azioni dell'editor permesse per gli utenti con questo ruolo."
60
+
61
+ #: includes/roles/class/class-pp-roles-admin.php:239
62
+ msgid "Disable the \"Code editor\" option for the Gutenberg block editor."
63
+ msgstr "Disattiva l'opzione \"Editor del codice\" per l'editor di blocchi di Gutenberg."
64
+
65
+ #: includes/roles/class/class-pp-roles-admin.php:238
66
+ msgid "Disable Code Editor"
67
+ msgstr "Disattiva l'editor del codice"
68
+
69
+ #: includes/roles/class/class-pp-roles-admin.php:228
70
+ msgid "Enter the URL users in this role should be redirected to after logout."
71
+ msgstr "Inserisci l'URL per il reindirizzamento degli utenti con questo ruolo dopo la disconnessione."
72
+
73
+ #: includes/roles/class/class-pp-roles-admin.php:227
74
+ msgid "Logout Redirect"
75
+ msgstr "Reindirizzamento alla disconnessione"
76
+
77
+ #: includes/roles/class/class-pp-roles-admin.php:217
78
+ msgid "Enter the URL users in this role should be redirected to after login."
79
+ msgstr "Inserisci l'URL per il reindirizzamento degli utenti con questo ruolo dopo l'accesso."
80
+
81
+ #: includes/roles/class/class-pp-roles-admin.php:216
82
+ msgid "Login Redirect"
83
+ msgstr "Reindirizzamento all'accesso"
84
+
85
+ #: includes/roles/class/class-pp-roles-admin.php:155
86
+ msgid "Classic editor"
87
+ msgstr "Editor classico"
88
+
89
+ #: includes/roles/class/class-pp-roles-admin.php:153
90
+ msgid "Gutenberg editor"
91
+ msgstr "Editor Gutenberg"
92
+
93
+ #: includes/roles/class/class-pp-roles-admin.php:113
94
+ msgid "Redirects"
95
+ msgstr "Reindirizza"
96
+
97
+ #: includes/features/restrict-editor-features.php:415
98
+ msgid "Revisions"
99
+ msgstr "Revisioni"
100
+
101
+ #: includes/features/restrict-editor-features.php:403
102
+ msgid "Add new block"
103
+ msgstr "Aggiungi blocco"
104
+
105
+ #: includes/features/editor-features-classic.php:106
106
+ #: includes/features/editor-features-gutenberg.php:103
107
+ msgid "No metabox found for %1s. %2s Click here %3s to visit the %4s screen and refresh this page after to load new metabox"
108
+ msgstr "Nessun metabox trovato per %1s. %2s Fai clic qui %3s per visitare la schermata %4s e aggiornare questa pagina dopo aver caricato il nuovo metabox"
109
+
110
+ #: includes/admin.php:1158
111
+ msgid "The following entries have no effect. Please assign desired capabilities on the Editing / Deletion / Reading tabs."
112
+ msgstr "Le voci seguenti non hanno alcun effetto. Assegna le funzionalità desiderate nelle schede Modifica / Cancellazione / Lettura."
113
+
114
+ #: includes/admin.php:217
115
+ msgid "Taxonomies"
116
+ msgstr "Tassonomie"
117
+
118
+ #: includes/admin-load.php:293
119
+ msgid "Drag multiple roles selection to change order."
120
+ msgstr "Trascina la selezione di più ruoli per cambiarne l'ordine."
121
+
122
+ #: includes/roles/class/class-pp-roles-admin.php:389
123
  msgid "Read more on Role Level."
124
  msgstr "Leggi tutto sui livelli di ruolo."
125
 
126
+ #: includes/roles/class/class-pp-roles-admin.php:184
127
  msgid "Each user role has a level from 0 to 10. The Subscriber role defaults to the lowest level (0). The Administrator role defaults to level 10."
128
  msgstr "Ciascun ruolo utente ha un livello da 0 a 10. Il ruolo di sottoscrittore ha come impostazione predefinita il livello più basso (0). Il ruolo amministratore ha come impostazione predefinita il livello 10."
129
 
133
 
134
  #: includes/features/editor-features.php:111
135
  #: includes/features/editor-features.php:113
136
+ #: includes/features/editor-features.php:219
137
+ #: includes/features/editor-features.php:221
138
  msgid "Save %s Restrictions"
139
  msgstr "Salva le limitazioni di %s"
140
 
141
  #: includes/features/editor-features.php:107
142
+ #: includes/features/editor-features.php:215
143
  msgid "Save for all Post Types"
144
  msgstr "Salva per tutti i tipi di contenuto"
145
 
191
  msgstr[0] "Mio %s"
192
  msgstr[1] "Miei %s"
193
 
194
+ #: includes/roles/class/class-pp-roles-admin.php:704
195
  msgid "Load Less"
196
  msgstr "Carica meno"
197
 
198
+ #: includes/roles/class/class-pp-roles-admin.php:701
199
  msgid "Load More"
200
  msgstr "Carica altro"
201
 
202
+ #: includes/roles/class/class-pp-roles-admin.php:673
203
  msgid "These can be edited on the %1s Capabilities screen %2s"
204
  msgstr "Queste possono essere modificate nella schermata %1s Capacità %2s"
205
 
206
+ #: includes/roles/class/class-pp-roles-admin.php:594
207
  msgid "All Roles"
208
  msgstr "Tutti i ruoli"
209
 
210
+ #: includes/roles/class/class-pp-roles-admin.php:588
211
  msgid "Copy Role"
212
  msgstr "Copia ruolo"
213
 
214
+ #: includes/roles/class/class-pp-roles-admin.php:578
 
 
 
 
215
  msgid "Create Role"
216
  msgstr "Crea ruolo"
217
 
218
+ #: includes/roles/class/class-pp-roles-admin.php:578
219
  msgid "Update Role"
220
  msgstr "Aggiorna ruolo"
221
 
222
+ #: includes/roles/class/class-pp-roles-admin.php:572
223
  msgid "%s role copied to editor. Please click the \"Create Role\" button to create this new role."
224
  msgstr "Il ruolo %s è stato copiato nell'editor. Fare clic sul pulsante \"Crea ruolo\" per creare questo nuovo ruolo."
225
 
226
+ #: includes/roles/class/class-pp-roles-admin.php:311
227
  msgid "Slug already exists"
228
  msgstr "Questo slug esiste già"
229
 
230
+ #: includes/roles/class/class-pp-roles-admin.php:207
231
  msgid "Deleting this role will completely remove it from database and is irrecoverable."
232
  msgstr "L'eliminazione di questo ruolo lo rimuoverà completamente dal database e sarà irrecuperabile."
233
 
234
+ #: includes/roles/class/class-pp-roles-admin.php:173
235
  msgid "The \"slug\" is the URL-friendly version of the role. It is usually all lowercase and contains only letters, numbers and underscores."
236
  msgstr "Lo \"slug\" è la versione URL-friendly del ruolo. Di solito è tutto minuscolo e contiene solo lettere, numeri e trattini bassi."
237
 
238
+ #: includes/roles/class/class-pp-roles-admin.php:172
239
  msgid "Role Slug"
240
  msgstr "Slug del ruolo"
241
 
242
+ #: includes/roles/class/class-pp-roles-admin.php:117
243
  msgid "Advanced"
244
  msgstr "Avanzate"
245
 
247
  msgid "General"
248
  msgstr "Generale"
249
 
250
+ #: includes/roles/class/class-pp-roles-actions.php:409
251
  msgid "%s role updated successfully."
252
  msgstr "Ruolo %s aggiornato correttamente."
253
 
255
  msgid "You do not have permission to perform this action."
256
  msgstr "Non hai i permessi per effettuare questa azione."
257
 
258
+ #: includes/features/restrict-editor-features.php:411
259
  msgid "Template"
260
  msgstr "Template"
261
 
262
+ #: includes/backup.php:338
263
  msgid "Import"
264
  msgstr "Importa"
265
 
266
+ #: includes/backup.php:332
267
  msgid "Before importing, we recommend using the \"Backup\" tab to create a backup of your current settings."
268
  msgstr "Prima di importare, ti consigliamo di utilizzare la scheda \"Backup\" per creare una copia di sicurezza delle impostazioni correnti."
269
 
270
+ #: includes/backup.php:331
271
  msgid "Import the plugin settings from a .json file. This file can be obtained by exporting the settings on another site using the form above."
272
  msgstr "Importare le impostazioni del plugin da un file .json. Questo file può essere ottenuto esportando le impostazioni di un altro sito tramite il modulo precedente."
273
 
274
+ #: includes/backup.php:330
275
  msgid "Please make a 'Manual Backup' in the backup tab to enable backup restore in case anything goes wrong."
276
  msgstr "Fai un \"backup manuale\" nella scheda di backup per consentire il ripristino del backup nel caso in cui qualcosa vada storto."
277
 
278
+ #: includes/backup.php:329
279
  msgid "Import Settings"
280
  msgstr "Importa impostazioni"
281
 
282
+ #: includes/backup.php:323
283
  msgid "Export"
284
  msgstr "Esporta"
285
 
286
+ #: includes/backup.php:301
287
  msgid "Export the plugin settings for this site as a .json file. This allows you to easily import the configuration into another site."
288
  msgstr "Esporta le impostazioni del plugin per questo sito in un file .json. Ciò consente di importare facilmente la configurazione in un altro sito."
289
 
290
+ #: includes/backup.php:299
291
  msgid "Export Settings"
292
  msgstr "Esporta impostazioni"
293
 
294
+ #: includes/backup.php:114
295
  msgid "Manual backup of %s (%s)"
296
  msgstr "Backup manuale di %s (%s)"
297
 
298
+ #: includes/backup.php:109
299
  msgid "all roles"
300
  msgstr "tutti i ruoli"
301
 
302
+ #: includes/backup.php:51
303
  msgid "Export / Import"
304
  msgstr "Esporta/importa"
305
 
327
  msgid "%s restored from last backup."
328
  msgstr "%s ripristinato dall'ultimo backup."
329
 
330
+ #: includes/admin.php:1544
331
  msgid "Go to the Backup feature"
332
  msgstr "Vai alle caratteristiche del backup"
333
 
334
+ #: includes/admin.php:1540
335
  msgid ""
336
  "This plugin automatically creates a backup whenever you save changes. You can use these backups to\n"
337
  "restore an earlier version of your roles and capabilities."
339
  "Questo plugin crea automaticamente un backup ogni volta che salvi delle modifiche. È possibile utilizzare questi backup per\n"
340
  "ripristinare una versione precedente dei ruoli e delle capacità."
341
 
342
+ #: includes/admin.php:1538
343
  msgid "PublishPress Capabilities is safe to use"
344
  msgstr "PublishPress Capabilities è sicuro da usare"
345
 
347
  msgid "This plugin can be deleted."
348
  msgstr "Questo plugin può essere eliminato."
349
 
350
+ #: includes/roles/class/class-pp-roles-actions.php:310
351
  msgid "The new role %s was created successfully."
352
  msgstr "Il nuovo ruolo %s è stato creato con successo."
353
 
436
  msgid "Admin Feature Restrictions"
437
  msgstr "Restrizioni caratteristiche di amministrazione"
438
 
439
+ #: includes/backup.php:362 includes/features/admin-features.php:236
440
+ #: includes/features/editor-features.php:241
441
  msgid "Click here to install PublishPress Permissions"
442
  msgstr "Fai clic qui per installare PublishPress Permissions"
443
 
444
+ #: includes/backup.php:359 includes/features/admin-features.php:233
445
+ #: includes/features/editor-features.php:238
446
  msgid "PublishPress Permissions is 100% free to install."
447
  msgstr "PublishPress Permissions è al 100% gratuito da installare."
448
 
449
+ #: includes/backup.php:358 includes/features/admin-features.php:232
450
+ #: includes/features/editor-features.php:237
451
  msgid "Allow specific user roles or users to manage each post."
452
  msgstr "Consenti a ruoli o utenti specifici di gestire ogni singolo articolo."
453
 
454
+ #: includes/backup.php:357 includes/features/admin-features.php:231
455
+ #: includes/features/editor-features.php:236
456
  msgid "Choose who can read and edit each post."
457
  msgstr "Scegli chi può leggere e modificare ogni singolo articolo."
458
 
459
+ #: includes/backup.php:355 includes/features/admin-features.php:229
460
+ #: includes/features/editor-features.php:234
461
  msgid "Control permissions for individual posts and pages"
462
  msgstr "Controlli le autorizzazioni per ogni singolo articolo e pagina"
463
 
464
+ #: includes/backup.php:354 includes/features/admin-features.php:228
465
+ #: includes/features/editor-features.php:233
466
  msgid "Recommendations for you"
467
  msgstr "Raccomandazioni per te"
468
 
469
+ #: includes/admin.php:1045
470
  msgid "Plugin Capabilities &ndash; %s"
471
  msgstr "Plugin Capabilities &ndash; %s"
472
 
473
+ #: includes/admin.php:888 includes/admin.php:998 includes/admin.php:1051
474
+ #: includes/admin.php:1260
475
  msgid "No results found. Please try again with a different word."
476
  msgstr "Nessun risultato trovato, riprova con una parola differente."
477
 
478
+ #: includes/admin.php:885 includes/admin.php:995 includes/admin.php:1048
479
+ #: includes/admin.php:1257
480
  msgid "Filter by capability"
481
  msgstr "Filtra per capacità"
482
 
483
+ #: includes/admin.php:992
484
  msgid "WordPress Core Capabilities"
485
  msgstr "Capacità di base di WordPress"
486
 
487
+ #: includes/admin.php:679 includes/admin.php:886 includes/admin.php:996
488
+ #: includes/admin.php:1049 includes/admin.php:1258
489
  msgid "Clear"
490
  msgstr "Pulisci"
491
 
492
+ #: includes/admin.php:676
493
  msgid "Filter by post type"
494
  msgstr "Filtra per tipo di contenuto"
495
 
496
+ #: includes/admin.php:676
497
  msgid "Filter by taxonomy"
498
  msgstr "Filtra per tassonomia"
499
 
500
+ #: includes/admin.php:670
501
  msgid "Post %s Capabilities"
502
  msgstr "Capacità dell'articolo %s"
503
 
504
+ #: includes/admin.php:670
505
  msgid "Term %s Capabilities"
506
  msgstr "Capacità del termine %s"
507
 
508
+ #: includes/admin.php:638
509
  msgid "Additional"
510
  msgstr "Aggiuntivi"
511
 
512
+ #: includes/admin.php:216
 
 
 
 
513
  msgid "Deletion"
514
  msgstr "Cancellazione"
515
 
516
+ #: includes/admin.php:215 includes/roles/class/class-pp-roles-admin.php:109
517
  msgid "Editing"
518
  msgstr "Modifica"
519
 
520
+ #: includes/admin-load.php:420 includes/functions-admin.php:212
521
  #: includes/manager.php:377 includes/manager.php:412
522
  #: includes/roles/class/class-pp-roles-list-table.php:174
523
  msgid "Admin Features"
583
  msgid "You do not have permission to manage editor features."
584
  msgstr "Non hai i permessi per gestire le funzionalità dell'editor."
585
 
586
+ #: includes/admin-load.php:419 includes/functions-admin.php:201
587
  #: includes/manager.php:375 includes/manager.php:411
588
  #: includes/roles/class/class-pp-roles-list-table.php:173
589
  msgid "Editor Features"
590
  msgstr "Funzioni dell'editor"
591
 
592
+ #: includes/features/restrict-editor-features.php:474
593
  msgid "Text settings"
594
  msgstr "Impostazioni del testo"
595
 
596
+ #: includes/features/restrict-editor-features.php:473
597
  msgid "Color settings"
598
  msgstr "Impostazioni colore"
599
 
600
+ #: includes/features/restrict-editor-features.php:472
601
  msgid "Typography"
602
  msgstr "Tipografia"
603
 
604
+ #: includes/features/restrict-editor-features.php:471
605
  msgid "Paragraph"
606
  msgstr "Paragrafo"
607
 
608
+ #: includes/features/restrict-editor-features.php:469
609
+ #: includes/features/restrict-editor-features.php:470
610
  msgid "Block Panel"
611
  msgstr "Pannello del blocco"
612
 
613
+ #: includes/features/restrict-editor-features.php:463
614
  msgid "Post Attributes"
615
  msgstr "Attributi articolo"
616
 
617
+ #: includes/features/restrict-editor-features.php:453
618
  msgid "Excerpt"
619
  msgstr "Riassunto"
620
 
621
+ #: includes/features/restrict-editor-features.php:448
622
  msgid "Featured image"
623
  msgstr "Immagine in evidenza"
624
 
625
+ #: includes/features/restrict-editor-features.php:409
626
  msgid "Status & visibility"
627
  msgstr "Stato e visibilità"
628
 
629
+ #: includes/features/restrict-editor-features.php:408
630
  msgid "Document Panel"
631
  msgstr "Pannello documenti"
632
 
633
+ #: includes/features/restrict-editor-features.php:398
634
  msgid "Content"
635
  msgstr "Contenuti"
636
 
637
+ #: includes/features/restrict-editor-features.php:393
638
  msgid "Edit title"
639
  msgstr "Modifica titolo"
640
 
641
+ #: includes/features/restrict-editor-features.php:391
642
  msgid "Body"
643
  msgstr "Contenuto"
644
 
645
+ #: includes/features/restrict-editor-features.php:388
646
  msgid "Options"
647
  msgstr "Opzioni"
648
 
649
+ #: includes/features/restrict-editor-features.php:386
650
  msgid "Publish / Update"
651
  msgstr "Pubblica/Aggiorna"
652
 
653
+ #: includes/features/restrict-editor-features.php:384
654
  msgid "Switch to draft"
655
  msgstr "Passa alla bozza"
656
 
657
+ #: includes/features/restrict-editor-features.php:382
658
  msgid "Top Bar - Right"
659
  msgstr "Barra in alto - Destra"
660
 
661
+ #: includes/features/restrict-editor-features.php:379
662
  msgid "Outline"
663
  msgstr "Contorno"
664
 
665
+ #: includes/features/restrict-editor-features.php:378
666
  msgid "Details"
667
  msgstr "Dettagli"
668
 
669
+ #: includes/features/restrict-editor-features.php:377
670
  msgid "Redo"
671
  msgstr "Ripeti"
672
 
673
+ #: includes/features/restrict-editor-features.php:376
674
  msgid "Undo"
675
  msgstr "Annulla"
676
 
677
+ #: includes/features/restrict-editor-features.php:375
678
  msgid "Modes"
679
  msgstr "Modalità"
680
 
681
+ #: includes/features/restrict-editor-features.php:374
682
  msgid "Add block"
683
  msgstr "Aggiungi blocco"
684
 
685
+ #: includes/features/restrict-editor-features.php:373
686
  msgid "Top Bar - Left"
687
  msgstr "Barra in alto - Sinistra"
688
 
689
+ #: includes/features/restrict-editor-features.php:158
690
+ #: includes/features/restrict-editor-features.php:458
691
  msgid "Discussion"
692
  msgstr "Discussione"
693
 
694
+ #: includes/features/restrict-editor-features.php:154
695
  msgid "Post Slug"
696
  msgstr "Post Slug"
697
 
698
+ #: includes/features/restrict-editor-features.php:149
699
  msgid "Featured Image"
700
  msgstr "Immagine in evidenza"
701
 
702
+ #: includes/features/restrict-editor-features.php:147
703
  msgid "Other Boxes"
704
  msgstr "Altri riquadri"
705
 
706
+ #: includes/features/restrict-editor-features.php:141
707
  msgid "Order"
708
  msgstr "Ordinamento"
709
 
710
+ #: includes/features/restrict-editor-features.php:136
711
  msgid "Page Template"
712
  msgstr "Template pagina"
713
 
714
+ #: includes/features/restrict-editor-features.php:131
715
  msgid "Parent"
716
  msgstr "Genitore"
717
 
718
+ #: includes/features/restrict-editor-features.php:127
719
  msgid "Page Attributes"
720
  msgstr "Attributi pagina"
721
 
722
+ #: includes/features/restrict-editor-features.php:125
723
  msgid "Page Boxes"
724
  msgstr "Riquadri pagina"
725
 
726
+ #: includes/features/restrict-editor-features.php:104
727
+ #: includes/features/restrict-editor-features.php:424
728
  msgid "Tags"
729
  msgstr "Tag"
730
 
731
+ #: includes/features/restrict-editor-features.php:98
732
  msgid "Add New Category"
733
  msgstr "Aggiungi una nuova categoria"
734
 
735
+ #: includes/features/restrict-editor-features.php:92
736
+ #: includes/features/restrict-editor-features.php:418
737
  msgid "Categories"
738
  msgstr "Categorie"
739
 
740
+ #: includes/features/restrict-editor-features.php:90
741
  msgid "Taxonomy Boxes"
742
  msgstr "Riquadri tassonomia"
743
 
744
+ #: includes/features/restrict-editor-features.php:87
745
  msgid "Publish"
746
  msgstr "Pubblica"
747
 
748
+ #: includes/features/restrict-editor-features.php:86
749
  msgid "Date"
750
  msgstr "Data"
751
 
752
+ #: includes/features/restrict-editor-features.php:85
753
  msgid "Publish Schedule"
754
  msgstr "Pianifica pubblicazione"
755
 
756
+ #: includes/features/restrict-editor-features.php:84
757
  msgid "Publish Actions"
758
  msgstr "Azioni pubblicazione"
759
 
760
+ #: includes/features/restrict-editor-features.php:83
761
  msgid "Password Protect This Post"
762
  msgstr "Articolo protetto da password"
763
 
764
+ #: includes/features/restrict-editor-features.php:82
765
  msgid "Publish Visibility"
766
  msgstr "Visibilità pubblicazione"
767
 
768
+ #: includes/features/restrict-editor-features.php:81
769
  msgid "Publish Status "
770
  msgstr "Stato pubblicazione "
771
 
772
+ #: includes/features/restrict-editor-features.php:80
773
+ #: includes/features/restrict-editor-features.php:385
774
  msgid "Preview"
775
  msgstr "Anteprima"
776
 
777
+ #: includes/features/restrict-editor-features.php:79
778
+ #: includes/features/restrict-editor-features.php:383
779
  msgid "Save Draft"
780
  msgstr "Salva bozza"
781
 
782
+ #: includes/features/restrict-editor-features.php:77
783
+ #: includes/features/restrict-editor-features.php:78
784
  msgid "Publish Box"
785
  msgstr "Riquadro pubblica"
786
 
787
+ #: includes/features/restrict-editor-features.php:72
788
  msgid "Word count"
789
  msgstr "Conteggio parole"
790
 
791
+ #: includes/features/restrict-editor-features.php:67
792
  msgid "HTML Editor Button"
793
  msgstr "Pulsante per l'editor HTML"
794
 
795
+ #: includes/features/restrict-editor-features.php:62
796
  msgid "Media Buttons (all)"
797
  msgstr "Pulsanti Media (tutti)"
798
 
799
+ #: includes/features/restrict-editor-features.php:59
800
+ #: includes/features/restrict-editor-features.php:416
801
  msgid "Permalink"
802
  msgstr "Permalink"
803
 
804
+ #: includes/features/restrict-editor-features.php:50
805
  msgid "Title"
806
  msgstr "Titolo"
807
 
808
  #: includes/features/restrict-editor-features.php:45
809
+ #: includes/features/restrict-editor-features.php:55
810
  msgid "Editor"
811
  msgstr "Editor"
812
 
840
  msgid "Editor Feature Restriction"
841
  msgstr "Limitazione delle funzioni dell'editor"
842
 
843
+ #: includes/admin.php:1596
844
  msgid "sync options to all sites now"
845
  msgstr "sincronizza le opzioni su tutti i siti adesso"
846
 
847
+ #: includes/admin.php:1596
848
  msgid "Copy option settings to all sites now"
849
  msgstr "Copia le impostazioni delle opzioni su tutti i siti adesso"
850
 
 
 
 
 
851
  #: includes/handler.php:61 includes/handler.php:89 includes/manager.php:758
852
  msgid "The selected role is not editable."
853
  msgstr "Il ruolo selezionato non è modificabile."
856
  msgid "You do not have permission to manage roles."
857
  msgstr "Non hai le autorizzazioni per gestire i ruoli."
858
 
859
+ #: includes/backup.php:265
860
  msgid "No changes"
861
  msgstr "Nessuna modifica"
862
 
863
+ #: includes/backup.php:196
864
  msgid "(this role will be removed if you restore backup)"
865
  msgstr "(questo ruolo sarà rimosso se ripristini il backup)"
866
 
867
+ #: includes/backup.php:155
868
  msgid "Show changes from current roles only"
869
  msgstr "Mostra le modifiche solo dai ruoli attuali"
870
 
871
+ #: includes/backup.php:146
872
  msgid "Restore Selected Roles"
873
  msgstr "Ripristina i ruoli selezionati"
874
 
875
+ #: includes/backup.php:137
876
  msgid "Initial backup of all roles"
877
  msgstr "Backup iniziali di tutti i ruoli"
878
 
879
+ #: includes/backup.php:129
880
  msgid "Auto-backup of all roles (%s)"
881
  msgstr "Backup automatico di tutti i ruoli (%s)"
882
 
883
+ #: includes/backup.php:93
884
  msgid "Available Backups:"
885
  msgstr "Backup disponibili:"
886
 
887
+ #: includes/backup.php:90
888
  msgid "On this screen, you can restore an earlier version of your roles and capabilities."
889
  msgstr "In questa schermata puoi ripristinare una versione precedente dei tuoi ruoli e delle capacità."
890
 
891
+ #: includes/backup.php:89
892
  msgid "PublishPress Capabilities automatically creates a backup on installation and whenever you save changes."
893
  msgstr "PublishPress Capabilities crea automaticamente un backup durante l'installazione e ogni volta che salvi le modifiche."
894
 
895
+ #: includes/backup.php:86
896
  msgid "Restore Previous Roles and Capabilities"
897
  msgstr "Ripristina ruoli e capacità precedenti"
898
 
899
+ #: includes/backup.php:72
900
  msgid "Manual Backup"
901
  msgstr "Backup manuale"
902
 
903
+ #: includes/backup.php:67
904
  msgid "A backup created on this screen replaces any previous manual backups, but is never automatically replaced."
905
  msgstr "Un backup creato in questa schermata sostituirà qualsiasi backup manuale precedente, ma non viene sostituito automaticamente."
906
 
916
  msgid "Restore"
917
  msgstr "Ripristina"
918
 
919
+ #: includes/admin-load.php:426
920
+ #: includes/features/restrict-editor-features.php:387 includes/manager.php:384
921
  msgid "Settings"
922
  msgstr "Impostazioni"
923
 
934
  msgid "Search results for &#8220;%s&#8221;"
935
  msgstr "Risultati di ricerca per &#8220;%s&#8221;"
936
 
937
+ #: includes/admin-load.php:417 includes/manager.php:361
938
  #: includes/roles/roles.php:8
939
  msgid "Roles"
940
  msgstr "Ruoli"
955
  #: includes-core/editor-features-promo.php:107
956
  #: includes-core/editor-features-promo.php:117
957
  #: includes/features/admin-features.php:190
958
+ #: includes/features/editor-features-classic.php:81
959
+ #: includes/features/editor-features-gutenberg.php:78
960
+ #: includes/roles/class/class-pp-roles-admin.php:124
961
  #: includes/roles/class/class-pp-roles-list-table.php:281
962
  #: includes/roles/class/class-pp-roles-list-table.php:540
963
  msgid "Delete"
976
  msgid "Users"
977
  msgstr "Utenti"
978
 
979
+ #: includes/roles/class/class-pp-roles-actions.php:673
980
  msgid "The role %1$s was successfully unhidden."
981
  msgstr "Il ruolo %1$s è stato reso visibile con successo."
982
 
983
+ #: includes/roles/class/class-pp-roles-actions.php:613
984
  msgid "The role %1$s was successfully hidden."
985
  msgstr "Il ruolo %1$s è stato nascosto con successo."
986
 
987
+ #: includes/roles/class/class-pp-roles-actions.php:559
988
  msgid "The role could not be deleted."
989
  msgstr "Il ruolo non può essere eliminato."
990
 
991
+ #: includes/roles/class/class-pp-roles-actions.php:537
992
  msgid "The selected %1$s roles were successfully deleted. %2$s"
993
  msgstr "I ruoli %1$s selezionati sono stati eliminati con successo. %2$s"
994
 
995
+ #: includes/roles/class/class-pp-roles-actions.php:531
996
  msgid "The role %1$s was successfully deleted. %2$s"
997
  msgstr "Il ruolo %1$s è stato eliminato con successo. %2$s"
998
 
999
+ #: includes/roles/class/class-pp-roles-actions.php:526
1000
  msgid "%1$d users moved to default role %2$s."
1001
  msgstr "%1$d utenti sono passati al ruolo predefinito %2$s."
1002
 
1003
+ #: includes/roles/class/class-pp-roles-actions.php:502
1004
  msgid "Deleting a system role is not allowed."
1005
  msgstr "Non è consentito eliminare un ruolo di sistema."
1006
 
1009
  msgstr "Qualcosa è andato storto, il sistema non è riuscito a creare il ruolo, ricarica la pagina e prova ancora."
1010
 
1011
  #: includes/roles/class/class-pp-roles-actions.php:184
1012
+ #: includes/roles/class/class-pp-roles-actions.php:348
1013
+ #: includes/roles/class/class-pp-roles-actions.php:475
1014
+ #: includes/roles/class/class-pp-roles-actions.php:602
1015
+ #: includes/roles/class/class-pp-roles-actions.php:663
1016
  msgid "Missing parameters, refresh the page and try again."
1017
  msgstr "Ci sono dei parametri mancanti, ricarica la pagina e prova ancora."
1018
 
1019
  #: includes/roles/class/class-pp-roles-actions.php:162
1020
  #: includes/roles/class/class-pp-roles-actions.php:180
1021
+ #: includes/roles/class/class-pp-roles-actions.php:344
1022
+ #: includes/roles/class/class-pp-roles-actions.php:451
1023
  msgid "Your link has expired, refresh the page and try again."
1024
  msgstr "Il tuo link è scaduto, ricarica la pagina e prova ancora."
1025
 
1027
  msgid "You do not have sufficient permissions to perform this action."
1028
  msgstr "Non hai i permessi necessari per compiere quest'azione."
1029
 
1030
+ #: includes/roles/class/class-pp-roles-admin.php:402
1031
+ #: includes/roles/roles-functions.php:33
1032
  msgid "Are you sure you want to delete this role?"
1033
  msgstr "Sei certo di voler eliminare questo ruolo?"
1034
 
1040
  msgid "Capabilities Settings"
1041
  msgstr "Impostazioni di capacità"
1042
 
1043
+ #: includes-core/CoreAdmin.php:63 includes/admin-load.php:422
1044
  #: includes/manager.php:414
1045
  #: includes/roles/class/class-pp-roles-list-table.php:176
1046
  msgid "Nav Menus"
1047
  msgstr "Menu navigazione"
1048
 
1049
+ #: includes-core/CoreAdmin.php:62 includes/admin-load.php:421
1050
  #: includes/manager.php:413
1051
  #: includes/roles/class/class-pp-roles-list-table.php:175
1052
  msgid "Admin Menus"
1068
  msgid "Navigation Menu Restrictions"
1069
  msgstr "Limitazioni menu di navigazione"
1070
 
1071
+ #: includes/features/restrict-editor-features.php:47
1072
  #: includes/filters-woocommerce.php:33 includes/roles/roles.php:10
1073
  msgid "Add New"
1074
  msgstr "Aggiungi nuovo"
1111
  #: includes-core/admin-features-promo.php:79
1112
  #: includes-core/admin-menus-promo.php:62
1113
  #: includes-core/editor-features-promo.php:79
1114
+ #: includes-core/nav-menus-promo.php:67 includes/admin-load.php:432
1115
+ #: includes/admin-load.php:433 includes/manager.php:390
1116
  #: includes/manager.php:391
1117
  msgid "Upgrade to Pro"
1118
  msgstr "Aggiorna a Pro"
1119
 
1120
+ #: includes/admin-load.php:423 includes/backup.php:49 includes/manager.php:381
1121
  msgid "Backup"
1122
  msgstr "Backup"
1123
 
1177
  msgid "Related Permissions Plugins"
1178
  msgstr "Plugin di autorizzazioni correlati"
1179
 
1180
+ #: includes/manager.php:408 includes/roles/class/class-pp-roles-admin.php:162
1181
  #: includes/roles/class/class-pp-roles-list-table.php:170
1182
  msgid "Role Name"
1183
  msgstr "Nome del ruolo"
1184
 
1185
+ #: includes/roles/class/class-pp-roles-admin.php:183
1186
  msgid "Role Level"
1187
  msgstr "Livello del ruolo"
1188
 
1189
+ #: includes/admin.php:1503
1190
  msgid "Role level is mostly deprecated. However, it still determines eligibility for Post Author assignment and limits the application of user editing capabilities."
1191
  msgstr "Il livello di ruolo è per lo più deprecato. Tuttavia, determina comunque l'idoneità per l'assegnazione di autore articolo e limita l'applicazione delle capacità di modifica dell'utente."
1192
 
1193
+ #: includes/admin.php:633 includes/admin.php:1153
1194
  msgid "Invalid Capabilities"
1195
  msgstr "Capacità non valide"
1196
 
1197
+ #: includes/admin.php:785
 
 
 
 
1198
  msgid "shared capability: %s"
1199
  msgstr "capacità condivise: %s"
1200
 
1201
+ #: includes/admin.php:1412 includes/settings.php:40
1202
  msgid "PublishPress Permissions"
1203
  msgstr "PublishPress Permissions"
1204
 
1218
  msgid "Edit Roles"
1219
  msgstr "Modifica ruoli"
1220
 
1221
+ #: includes/backup.php:225
1222
  msgid "%s (level %s)"
1223
  msgstr "%s (livello %s)"
1224
 
1225
+ #: includes/backup.php:189
1226
  msgid "%s (%s roles)"
1227
  msgstr "%s (%s ruoli)"
1228
 
1229
+ #: includes/backup.php:82
1230
  msgid "Last Backup"
1231
  msgstr "Ultimo backup"
1232
 
1233
+ #: includes/backup.php:82
1234
  msgid "Last Manual Backup - %s"
1235
  msgstr "Ultimo backup manuale - %s"
1236
 
1237
+ #: includes/backup.php:162
1238
  msgid "Initial Backup"
1239
  msgstr "Backup iniziale"
1240
 
1241
+ #: includes/backup.php:162
1242
  msgid "Initial Backup - %s"
1243
  msgstr "Backup iniziale - %s"
1244
 
1303
  msgid "Bad form Received"
1304
  msgstr "E' stato ricevuto un modulo errato"
1305
 
1306
+ #: includes/roles/class/class-pp-roles-actions.php:483
1307
  msgid "Cannot delete default role. You <a href=\"%s\">have to change it first</a>."
1308
  msgstr "Non é possibile cancellare il ruolo predefinito. Bisogna che prima effettui questa <a href=\"%s\">modifica</a>."
1309
 
1331
  msgid "New role created."
1332
  msgstr "Il nuovo ruolo é stato creato."
1333
 
1334
+ #: includes/backup.php:291
1335
  msgid "Reset to WordPress defaults"
1336
  msgstr "Ripristina ai predefiniti di WordPress"
1337
 
1338
+ #: includes/backup.php:291
1339
  msgid ""
1340
  "You are about to reset Roles and Capabilities to WordPress defaults.\n"
1341
  " 'Cancel' to stop, 'OK' to reset."
1343
  "Stai per ripristinare i Ruoli e le Capacità ai valori predefiniti di WordPress.\n"
1344
  " 'Annulla' per fermarti, 'OK' per procedere."
1345
 
1346
+ #: includes/backup.php:289
1347
  msgid "Reset Roles and Capabilities to WordPress defaults"
1348
  msgstr "Ripristina i Ruoli e le Capacità ai valori predefiniti di WordPress"
1349
 
1350
+ #: includes/backup.php:286
1351
  msgid "It is recommended to use this only as a last resource!"
1352
  msgstr "Da utilizzarsi solamente come ultima risorsa!"
1353
 
1354
+ #: includes/backup.php:285
1355
  msgid "If you have installed any plugin that adds new roles or capabilities, these will be lost."
1356
  msgstr "I ruoli e le capacità propri di ogni plugin installato saranno persi."
1357
 
1358
+ #: includes/backup.php:283
1359
  msgid "Reseting default Roles and Capabilities will set them to the WordPress install defaults."
1360
  msgstr "Il ripristino dei valori predefiniti per i Ruoli e le Capacità li riporterà ai valori predefiniti di WordPress."
1361
 
1362
+ #: includes/backup.php:281
 
 
 
 
1363
  msgid "Reset WordPress Defaults"
1364
  msgstr "Ripristina ai valori predefiniti di WordPress"
1365
 
1388
  msgid "You do not have permission to restore roles."
1389
  msgstr "Non hai le autorizzazioni per il ripristino dei ruoli."
1390
 
1391
+ #: includes/admin.php:1593
1392
  msgid "sync role to all sites now"
1393
  msgstr "sincronizza i ruoli su tutti i siti adesso"
1394
 
1395
+ #: includes/admin.php:1593
1396
  msgid "Copy / update this role definition to all sites now"
1397
  msgstr "Copia/aggiorna la definizione di questo ruolo su tutti i siti adesso"
1398
 
1399
+ #: includes/admin.php:1590
1400
  msgid "include in new sites"
1401
  msgstr "includi nei nuovi siti"
1402
 
1403
+ #: includes/admin.php:1590
1404
  msgid "Create this role definition in new (future) sites"
1405
  msgstr "Crea la definizione di questo ruolo nei nuovi (futuri) siti"
1406
 
1407
+ #: includes/admin.php:1554
1408
  msgid "Add to role"
1409
  msgstr "Aggiungi al ruolo"
1410
 
1411
+ #: includes/admin.php:899 includes/admin.php:972 includes/admin.php:1009
1412
+ #: includes/admin.php:1018 includes/admin.php:1062 includes/admin.php:1135
1413
+ #: includes/admin.php:1266 includes/admin.php:1382
1414
  msgid "Capability Name"
1415
  msgstr "Nome della capacità"
1416
 
1417
+ #: includes/admin.php:1551
1418
  msgid "Add Capability"
1419
  msgstr "Aggiungi capacità"
1420
 
1422
  msgid "Copy"
1423
  msgstr "Copia"
1424
 
1425
+ #: includes/roles/class/class-pp-roles-admin.php:590
1426
  msgid "Create New Role"
1427
  msgstr "Crea un nuovo ruolo"
1428
 
1429
+ #: includes/roles/class/class-pp-roles-admin.php:206
1430
  msgid "Delete role"
1431
  msgstr "Elimina il ruolo"
1432
 
1433
  #: includes-core/admin-menus-promo.php:48 includes-core/nav-menus-promo.php:52
1434
+ #: includes/admin.php:113 includes/admin.php:1525
1435
  #: includes/features/admin-features.php:76
1436
  #: includes/features/admin-features.php:215 includes/settings.php:56
1437
  msgid "Save Changes"
1438
  msgstr "Salva modifiche"
1439
 
1440
+ #: includes/admin.php:1505
1441
  msgid "Level:"
1442
  msgstr "Livello:"
1443
 
1444
+ #: includes/admin.php:1254
1445
  msgid "Additional Capabilities"
1446
  msgstr "Capacità aggiuntive"
1447
 
1448
+ #: includes/admin.php:901 includes/admin.php:974 includes/admin.php:1011
1449
+ #: includes/admin.php:1020 includes/admin.php:1064 includes/admin.php:1137
1450
+ #: includes/admin.php:1268 includes/admin.php:1384
1451
  msgid "negate none (add/remove all capabilities normally)"
1452
  msgstr "nessuna negazione (aggiungere/rimuovere tutte le funzionalità normalmente)"
1453
 
1454
+ #: includes/admin.php:901 includes/admin.php:974 includes/admin.php:1011
1455
+ #: includes/admin.php:1020 includes/admin.php:1064 includes/admin.php:1137
1456
+ #: includes/admin.php:1268 includes/admin.php:1384
1457
  msgid "negate all (storing as disabled capabilities)"
1458
  msgstr "negare tutto (memorizzare come capacità disabilitate)"
1459
 
1460
+ #: includes/admin.php:899 includes/admin.php:972 includes/admin.php:1009
1461
+ #: includes/admin.php:1018 includes/admin.php:1062 includes/admin.php:1135
1462
+ #: includes/admin.php:1266 includes/admin.php:1382
1463
  msgid "check / uncheck all"
1464
  msgstr "seleziona/deseleziona tutto"
1465
 
1466
+ #: includes/admin.php:773 includes/admin.php:934 includes/admin.php:1097
1467
+ #: includes/admin.php:1330
1468
  msgid "%s: assigned by Permission Group"
1469
  msgstr "%s: assegnato dal Gruppo autorizzazione"
1470
 
1471
+ #: includes/admin.php:230
1472
  msgid "can delete posts which are currently published with private visibility"
1473
  msgstr "può eliminare gli articoli che sono attualmente pubblicati con visibilità privata"
1474
 
1475
+ #: includes/admin.php:229
1476
  msgid "can delete posts which are currently published"
1477
  msgstr "può eliminare gli articoli che sono attualmente pubblicati"
1478
 
1479
+ #: includes/admin.php:228
1480
  msgid "can delete posts which were created by other users"
1481
  msgstr "può eliminare gli articoli che sono stati creati da altri utenti"
1482
 
1483
+ #: includes/admin.php:227
1484
  msgid "has basic deletion capability (but may need other capabilities based on post status and ownership)"
1485
  msgstr "ha una capacità di cancellazione di base (ma può necessitare di altre capacità basate sullo stato e la proprietà degli articoli)"
1486
 
1487
+ #: includes/admin.php:226
1488
  msgid "can make a post publicly visible"
1489
  msgstr "può rendere un articolo visibile pubblicamente"
1490
 
1491
+ #: includes/admin.php:225
1492
  msgid "can edit posts which are currently published with private visibility"
1493
  msgstr "può modificare gli articoli che sono attualmente pubblicati con visibilità privata"
1494
 
1495
+ #: includes/admin.php:224
1496
  msgid "can edit posts which are currently published"
1497
  msgstr "può modificare gli articoli che sono attualmente pubblicati"
1498
 
1499
+ #: includes/admin.php:223
1500
  msgid "can edit posts which were created by other users"
1501
  msgstr "può modificare gli articoli che sono stati creati da altri utenti"
1502
 
1503
+ #: includes/admin.php:222
1504
  msgid "has basic editing capability (but may need other capabilities based on post status and ownership)"
1505
  msgstr "ha la capacità di modificazione di base (ma può necessitare di altre capacità basate sullo stato e la proprietà degli articoli)"
1506
 
1507
+ #: includes/admin.php:221
1508
  msgid "can read posts which are currently published with private visibility"
1509
  msgstr "può leggere gli articoli che sono attualmente pubblicati con visibilità privata"
1510
 
1511
+ #: includes/admin.php:214
1512
  msgid "Reading"
1513
  msgstr "Lettura"
1514
 
1515
+ #: includes/admin.php:213
1516
  msgid "&nbsp;"
1517
  msgstr "&nbsp;"
1518
 
1519
+ #: includes/admin.php:1471
1520
  msgid "%s info/purchase"
1521
  msgstr "%s info/acquisto"
1522
 
1523
+ #: includes/admin.php:1471
1524
  msgid "%1$sbuy%2$s %3$s"
1525
  msgstr "%1$scompra%2$s %3$s"
1526
 
1527
+ #: includes/admin.php:1469
1528
  msgid "%s (free install)"
1529
  msgstr "%s (installazione gratuita)"
1530
 
1531
+ #: includes/admin.php:1469
1532
  msgid "%1$sgrab%2$s %3$s"
1533
  msgstr "%1$scattura%2$s %3$s"
1534
 
1535
+ #: includes/admin.php:1462
1536
  msgid "Member support forum"
1537
  msgstr "Forum di support membri"
1538
 
1539
+ #: includes/admin.php:1458
1540
  msgid "WPML integration to mirror permissions to translations <em>(Pro)</em>"
1541
  msgstr "Integrazione con WPML per trasmettere le autorizzazioni alle traduzioni <em>(Pro)</em>"
1542
 
1543
+ #: includes/admin.php:1454
1544
  msgid "Grant supplemental content permissions to a BuddyPress group <em>(Pro)</em>"
1545
  msgstr "Concede autorizzazioni di contenuto supplementari a un gruppo BuddyPress <em>(Pro)</em>"
1546
 
1547
+ #: includes/admin.php:1450
1548
  msgid "Grant Spectator, Participant or Moderator access to specific bbPress forums <em>(Pro)</em>"
1549
  msgstr "Concedi a Spettatore, Partecipante o Moderatore l'accesso a specifici forum bbPress <em>(Pro)</em>"
1550
 
1551
+ #: includes/admin.php:1446
1552
  msgid "Customize the moderated editing of published content with Revisionary or Post Forking <em>(Pro)</em>"
1553
  msgstr "Personalizza la modifica moderata dei contenuti pubblicati con Revisionary o Post Forking <em>(Pro)</em>"
1554
 
1555
+ #: includes/admin.php:1442
1556
  msgid "Regulate permissions for Edit Flow post statuses <em>(Pro)</em>"
1557
  msgstr "Regola le autorizzazioni per gli stati dell'articolo in Edit Flow <em>(Pro)</em>"
1558
 
1559
+ #: includes/admin.php:1438
1560
  msgid "Custom Moderation statuses for access-controlled, multi-step publishing workflow <em>(Pro)</em>"
1561
  msgstr "Stati di moderazione personalizzati per gli accessi controllati, flusso di lavoro di pubblicazione in più fasi <em>(Pro)</em>"
1562
 
1563
+ #: includes/admin.php:1434
1564
  msgid "Custom Post Visibility statuses, fully implemented throughout wp-admin <em>(Pro)</em>"
1565
  msgstr "Stati di visibilità degli articoli personalizzati, completamente implementati in wp-admin <em>(Pro)</em>"
1566
 
1567
+ #: includes/admin.php:1430
1568
  msgid "Customize editing permissions per-category or per-post <em>(Pro)</em>"
1569
  msgstr "Personalizza le modifiche delle autorizzazioni per categoria o per articolo <em>(Pro)</em>"
1570
 
1571
+ #: includes/admin.php:1426
1572
  msgid "Customize reading permissions per-category or per-post"
1573
  msgstr "Personalizza le autorizzazioni di lettura per categoria o per articolo"
1574
 
1575
+ #: includes/admin.php:1422
1576
  msgid "Assign custom WP roles supplementally for a specific post type <em>(Pro)</em>"
1577
  msgstr "Assegna ruoli WP personalizzati in aggiunta a un tipo di articolo specifico <em>(Pro)</em>"
1578
 
1579
+ #: includes/admin.php:1418
1580
  msgid "Assign standard WP roles supplementally for a specific post type"
1581
  msgstr "Assegna ruoli WP standard in aggiunta a un tipo di articolo specifico"
1582
 
1583
+ #: includes/admin.php:1414
1584
  msgid "Automatically define type-specific capabilities for your custom post types and taxonomies"
1585
  msgstr "Definisci automaticamente le capacità specifiche del tipo per i tuoi tipi di articoli e tassonomie personalizzate"
1586
 
1587
+ #: includes/backup.php:306
1588
  msgid "Roles and Capabilities"
1589
  msgstr "Ruoli e capacità"
1590
 
1620
  msgid "Explicity negate this capability by storing as disabled"
1621
  msgstr "Nega esplicitamente questa capacità memorizzandola come disabilitata"
1622
 
1623
+ #: includes/admin-load.php:395 includes/manager.php:339
1624
+ #: includes/manager.php:410 includes/roles/class/class-pp-roles-admin.php:669
1625
  #: includes/roles/class/class-pp-roles-list-table.php:172
1626
  msgid "Capabilities"
1627
  msgstr "Capacità"
1638
  msgid "The active plugin %s is not compatible with your PHP version."
1639
  msgstr "Il plugin %s non é compatibile con la tua versione PHP."
1640
 
1641
+ #: capsman-enhanced.php:112 includes/backup.php:283 includes/backup.php:330
1642
  msgid "Warning:"
1643
  msgstr "Attenzione:"
1644
 
readme.txt CHANGED
@@ -7,7 +7,7 @@ Tags: user roles, capabilities, permissions, admin menus, post editing, post typ
7
  Requires at least: 4.9.7
8
  Tested up to: 6.0
9
  Requires PHP: 5.6.20
10
- Stable tag: 2.4.3
11
  License: GPLv3
12
  License URI: https://www.gnu.org/licenses/gpl-3.0.html
13
 
@@ -409,6 +409,17 @@ Fixed : Security issue. Please update.
409
 
410
  == Changelog ==
411
 
 
 
 
 
 
 
 
 
 
 
 
412
  = 2.4.3 - 12 Jul 2022 =
413
  * Fixed : Capabilities conflict with Advanced Custom Fields #494
414
  * Fixed : Issue with editor features when options is not array #495
7
  Requires at least: 4.9.7
8
  Tested up to: 6.0
9
  Requires PHP: 5.6.20
10
+ Stable tag: 2.4.4
11
  License: GPLv3
12
  License URI: https://www.gnu.org/licenses/gpl-3.0.html
13
 
409
 
410
  == Changelog ==
411
 
412
+ = 2.4.4 - 02 Aug 2022 =
413
+ * Added : Add "list" capabilities to display #206
414
+ * Added : Add a Settings screen to Free version #520
415
+ * Added : Add settings to allow users to select multiple roles when creating users #462
416
+ * Fixed : Multiple role when creating user doesn’t work #515
417
+ * Fixed : Admin Menus issue with Yoast #493
418
+ * Fixed : It's possible to get lockout of admin menus when all items are checked #527
419
+ * Update : Limit "Control Custom Statuses" option to settings screens alone #528
420
+ * Update : French and Italian Translations updates #524
421
+ * Fixed : PHP Warning on viewing Admin Menus #525
422
+
423
  = 2.4.3 - 12 Jul 2022 =
424
  * Fixed : Capabilities conflict with Advanced Custom Fields #494
425
  * Fixed : Issue with editor features when options is not array #495
vendor/composer/installed.php CHANGED
@@ -5,7 +5,7 @@
5
  'type' => 'wordpress-plugin',
6
  'install_path' => __DIR__ . '/../../',
7
  'aliases' => array(),
8
- 'reference' => 'cf9718efbc16014918ecd70207cad9214af894f1',
9
  'name' => 'publishpress/capability-manager-enhanced',
10
  'dev' => false,
11
  ),
@@ -34,7 +34,7 @@
34
  'type' => 'wordpress-plugin',
35
  'install_path' => __DIR__ . '/../../',
36
  'aliases' => array(),
37
- 'reference' => 'cf9718efbc16014918ecd70207cad9214af894f1',
38
  'dev_requirement' => false,
39
  ),
40
  'publishpress/publishpress-instance-protection' => array(
5
  'type' => 'wordpress-plugin',
6
  'install_path' => __DIR__ . '/../../',
7
  'aliases' => array(),
8
+ 'reference' => 'd4be775e84266229cdb05ad10938a47c78e5fcab',
9
  'name' => 'publishpress/capability-manager-enhanced',
10
  'dev' => false,
11
  ),
34
  'type' => 'wordpress-plugin',
35
  'install_path' => __DIR__ . '/../../',
36
  'aliases' => array(),
37
+ 'reference' => 'd4be775e84266229cdb05ad10938a47c78e5fcab',
38
  'dev_requirement' => false,
39
  ),
40
  'publishpress/publishpress-instance-protection' => array(