diff --git a/common/css/publishpress-admin.css b/common/css/publishpress-admin.css index 8e7b2d902..dc496b2ca 100644 --- a/common/css/publishpress-admin.css +++ b/common/css/publishpress-admin.css @@ -244,6 +244,10 @@ Status color box */ float: left; } +.wrap.publishpress-admin .nav-tab-wrapper a { + margin-top: 10px; +} + .pp-admin-notice { padding: 10px !important; line-height: 18px; diff --git a/common/js/pp_date.js b/common/js/pp_date.js index 0be9bff56..80c44e8a7 100644 --- a/common/js/pp_date.js +++ b/common/js/pp_date.js @@ -54,6 +54,9 @@ jQuery(document).ready(function ($) { controlType: 'select', altFieldTimeOnly: false }); + if (self.hasClass('future-date')) { + options.minDate = new Date(); + } self.datetimepicker(options); }); diff --git a/common/php/class-module.php b/common/php/class-module.php index d853d4783..20225f3e7 100644 --- a/common/php/class-module.php +++ b/common/php/class-module.php @@ -196,6 +196,71 @@ public function get_post_statuses() return $publishpress->getPostStatuses(); } + + + /** + * Returns the CSS class name and color for the given custom status. + * It reutrns an array with the following keys: + * - icon + * - color + * + * @param string $post_status + * + * @return array + */ + public function get_post_status_options($post_status) + { + global $publishpress; + + // Check if we have a custom icon for this post_status + $term = $publishpress->getPostStatusBy('slug', $post_status); + + // Icon + $icon = null; + if (! empty($term->icon)) { + $icon = $term->icon; + } else { + // Add an icon for the items + $default_icons = [ + 'publish' => 'dashicons-yes', + 'future' => 'dashicons-calendar-alt', + 'private' => 'dashicons-lock', + 'draft' => 'dashicons-media-default', + 'pending' => 'dashicons-clock', + 'auto-draft' => 'dashicons-edit', + ]; + + $icon = isset($default_icons[$post_status]) ? $default_icons[$post_status] : 'dashicons-edit'; + } + + // Color + if (! empty($term->color)) { + $color = $term->color; + } else { + $default_status_colors = [ + 'pitch' => '#cc0000', + 'assigned' => '#00bcc5', + 'in-progress' => '#ccc500', + 'draft' => '#f91d84', + 'pending' => '#d87200', + 'private' => '#000000', + 'future' => '#655997', + 'publish' => '#655997', + ]; + + if (isset($default_status_colors[$post_status])) { + $color = $default_status_colors[$post_status]; + } else { + $color = (class_exists('PublishPress_Statuses')) ? \PublishPress_Statuses::DEFAULT_COLOR : '#78645a'; + } + } + + return [ + 'color' => $color, + 'icon' => $icon, + ]; + } + /** * Get core's 'draft' and 'pending' post statuses, but include our special attributes * @@ -437,7 +502,7 @@ public function print_ajax_response($status, $message = '', $data = null) */ protected function is_whitelisted_functional_view($module_name = null) { - $whitelisted_pages = ['pp-calendar', 'pp-content-overview', 'pp-notif-log', 'pp-modules-settings']; + $whitelisted_pages = ['pp-calendar', 'pp-content-overview', 'pp-content-board', 'pp-notif-log', 'pp-modules-settings']; if (isset($_GET['page']) && in_array($_GET['page'], $whitelisted_pages)) { return true; diff --git a/composer.lock b/composer.lock index b4765a12e..9e712d0ba 100644 --- a/composer.lock +++ b/composer.lock @@ -1542,16 +1542,16 @@ }, { "name": "doctrine/common", - "version": "3.4.3", + "version": "3.4.4", "source": { "type": "git", "url": "https://github.com/doctrine/common.git", - "reference": "8b5e5650391f851ed58910b3e3d48a71062eeced" + "reference": "0aad4b7ab7ce8c6602dfbb1e1a24581275fb9d1a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/common/zipball/8b5e5650391f851ed58910b3e3d48a71062eeced", - "reference": "8b5e5650391f851ed58910b3e3d48a71062eeced", + "url": "https://api.github.com/repos/doctrine/common/zipball/0aad4b7ab7ce8c6602dfbb1e1a24581275fb9d1a", + "reference": "0aad4b7ab7ce8c6602dfbb1e1a24581275fb9d1a", "shasum": "" }, "require": { @@ -1613,7 +1613,7 @@ ], "support": { "issues": "https://github.com/doctrine/common/issues", - "source": "https://github.com/doctrine/common/tree/3.4.3" + "source": "https://github.com/doctrine/common/tree/3.4.4" }, "funding": [ { @@ -1629,20 +1629,20 @@ "type": "tidelift" } ], - "time": "2022-10-09T11:47:59+00:00" + "time": "2024-04-16T13:35:33+00:00" }, { "name": "doctrine/dbal", - "version": "3.8.3", + "version": "3.8.4", "source": { "type": "git", "url": "https://github.com/doctrine/dbal.git", - "reference": "db922ba9436b7b18a23d1653a0b41ff2369ca41c" + "reference": "b05e48a745f722801f55408d0dbd8003b403dbbd" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/dbal/zipball/db922ba9436b7b18a23d1653a0b41ff2369ca41c", - "reference": "db922ba9436b7b18a23d1653a0b41ff2369ca41c", + "url": "https://api.github.com/repos/doctrine/dbal/zipball/b05e48a745f722801f55408d0dbd8003b403dbbd", + "reference": "b05e48a745f722801f55408d0dbd8003b403dbbd", "shasum": "" }, "require": { @@ -1726,7 +1726,7 @@ ], "support": { "issues": "https://github.com/doctrine/dbal/issues", - "source": "https://github.com/doctrine/dbal/tree/3.8.3" + "source": "https://github.com/doctrine/dbal/tree/3.8.4" }, "funding": [ { @@ -1742,7 +1742,7 @@ "type": "tidelift" } ], - "time": "2024-03-03T15:55:06+00:00" + "time": "2024-04-25T07:04:44+00:00" }, { "name": "doctrine/deprecations", @@ -2124,16 +2124,16 @@ }, { "name": "doctrine/orm", - "version": "2.19.3", + "version": "2.19.5", "source": { "type": "git", "url": "https://github.com/doctrine/orm.git", - "reference": "1a5a4c674a416b4fdf76833c627c5e7f58bbb890" + "reference": "94986af28452da42a46a4489d1c958a2e5d710e5" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/orm/zipball/1a5a4c674a416b4fdf76833c627c5e7f58bbb890", - "reference": "1a5a4c674a416b4fdf76833c627c5e7f58bbb890", + "url": "https://api.github.com/repos/doctrine/orm/zipball/94986af28452da42a46a4489d1c958a2e5d710e5", + "reference": "94986af28452da42a46a4489d1c958a2e5d710e5", "shasum": "" }, "require": { @@ -2219,9 +2219,9 @@ ], "support": { "issues": "https://github.com/doctrine/orm/issues", - "source": "https://github.com/doctrine/orm/tree/2.19.3" + "source": "https://github.com/doctrine/orm/tree/2.19.5" }, - "time": "2024-03-21T11:01:42+00:00" + "time": "2024-04-30T06:49:54+00:00" }, { "name": "doctrine/persistence", @@ -3292,28 +3292,35 @@ }, { "name": "phpdocumentor/reflection-docblock", - "version": "5.3.0", + "version": "5.4.0", "source": { "type": "git", "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git", - "reference": "622548b623e81ca6d78b721c5e029f4ce664f170" + "reference": "298d2febfe79d03fe714eb871d5538da55205b1a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/622548b623e81ca6d78b721c5e029f4ce664f170", - "reference": "622548b623e81ca6d78b721c5e029f4ce664f170", + "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/298d2febfe79d03fe714eb871d5538da55205b1a", + "reference": "298d2febfe79d03fe714eb871d5538da55205b1a", "shasum": "" }, "require": { + "doctrine/deprecations": "^1.1", "ext-filter": "*", - "php": "^7.2 || ^8.0", + "php": "^7.4 || ^8.0", "phpdocumentor/reflection-common": "^2.2", - "phpdocumentor/type-resolver": "^1.3", + "phpdocumentor/type-resolver": "^1.7", + "phpstan/phpdoc-parser": "^1.7", "webmozart/assert": "^1.9.1" }, "require-dev": { - "mockery/mockery": "~1.3.2", - "psalm/phar": "^4.8" + "mockery/mockery": "~1.3.5", + "phpstan/extension-installer": "^1.1", + "phpstan/phpstan": "^1.8", + "phpstan/phpstan-mockery": "^1.1", + "phpstan/phpstan-webmozart-assert": "^1.2", + "phpunit/phpunit": "^9.5", + "vimeo/psalm": "^5.13" }, "type": "library", "extra": { @@ -3337,15 +3344,15 @@ }, { "name": "Jaap van Otterdijk", - "email": "account@ijaap.nl" + "email": "opensource@ijaap.nl" } ], "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.", "support": { "issues": "https://github.com/phpDocumentor/ReflectionDocBlock/issues", - "source": "https://github.com/phpDocumentor/ReflectionDocBlock/tree/5.3.0" + "source": "https://github.com/phpDocumentor/ReflectionDocBlock/tree/5.4.0" }, - "time": "2021-10-19T17:43:47+00:00" + "time": "2024-04-09T21:13:58+00:00" }, { "name": "phpdocumentor/type-resolver", @@ -3407,16 +3414,16 @@ }, { "name": "phpstan/phpdoc-parser", - "version": "1.28.0", + "version": "1.29.0", "source": { "type": "git", "url": "https://github.com/phpstan/phpdoc-parser.git", - "reference": "cd06d6b1a1b3c75b0b83f97577869fd85a3cd4fb" + "reference": "536889f2b340489d328f5ffb7b02bb6b183ddedc" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phpstan/phpdoc-parser/zipball/cd06d6b1a1b3c75b0b83f97577869fd85a3cd4fb", - "reference": "cd06d6b1a1b3c75b0b83f97577869fd85a3cd4fb", + "url": "https://api.github.com/repos/phpstan/phpdoc-parser/zipball/536889f2b340489d328f5ffb7b02bb6b183ddedc", + "reference": "536889f2b340489d328f5ffb7b02bb6b183ddedc", "shasum": "" }, "require": { @@ -3448,9 +3455,9 @@ "description": "PHPDoc parser with support for nullable, intersection and generic types", "support": { "issues": "https://github.com/phpstan/phpdoc-parser/issues", - "source": "https://github.com/phpstan/phpdoc-parser/tree/1.28.0" + "source": "https://github.com/phpstan/phpdoc-parser/tree/1.29.0" }, - "time": "2024-04-03T18:51:33+00:00" + "time": "2024-05-06T12:04:23+00:00" }, { "name": "phpunit/php-code-coverage", @@ -3751,16 +3758,16 @@ }, { "name": "phpunit/phpunit", - "version": "8.5.37", + "version": "8.5.38", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/phpunit.git", - "reference": "fce30f306cee78be33ba00c8f9a853f41db0491b" + "reference": "1ecad678646c817a29e55a32c930f3601c3f5a8c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/fce30f306cee78be33ba00c8f9a853f41db0491b", - "reference": "fce30f306cee78be33ba00c8f9a853f41db0491b", + "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/1ecad678646c817a29e55a32c930f3601c3f5a8c", + "reference": "1ecad678646c817a29e55a32c930f3601c3f5a8c", "shasum": "" }, "require": { @@ -3829,7 +3836,7 @@ "support": { "issues": "https://github.com/sebastianbergmann/phpunit/issues", "security": "https://github.com/sebastianbergmann/phpunit/security/policy", - "source": "https://github.com/sebastianbergmann/phpunit/tree/8.5.37" + "source": "https://github.com/sebastianbergmann/phpunit/tree/8.5.38" }, "funding": [ { @@ -3845,7 +3852,7 @@ "type": "tidelift" } ], - "time": "2024-03-06T06:27:42+00:00" + "time": "2024-04-05T04:31:23+00:00" }, { "name": "psr/cache", @@ -4048,20 +4055,20 @@ }, { "name": "psr/http-factory", - "version": "1.0.2", + "version": "1.1.0", "source": { "type": "git", "url": "https://github.com/php-fig/http-factory.git", - "reference": "e616d01114759c4c489f93b099585439f795fe35" + "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/php-fig/http-factory/zipball/e616d01114759c4c489f93b099585439f795fe35", - "reference": "e616d01114759c4c489f93b099585439f795fe35", + "url": "https://api.github.com/repos/php-fig/http-factory/zipball/2b4765fddfe3b508ac62f829e852b1501d3f6e8a", + "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a", "shasum": "" }, "require": { - "php": ">=7.0.0", + "php": ">=7.1", "psr/http-message": "^1.0 || ^2.0" }, "type": "library", @@ -4085,7 +4092,7 @@ "homepage": "https://www.php-fig.org/" } ], - "description": "Common interfaces for PSR-7 HTTP message factories", + "description": "PSR-17: Common interfaces for PSR-7 HTTP message factories", "keywords": [ "factory", "http", @@ -4097,9 +4104,9 @@ "response" ], "support": { - "source": "https://github.com/php-fig/http-factory/tree/1.0.2" + "source": "https://github.com/php-fig/http-factory" }, - "time": "2023-04-10T20:10:41+00:00" + "time": "2024-04-15T12:06:14+00:00" }, { "name": "psr/http-message", @@ -4340,20 +4347,20 @@ }, { "name": "ramsey/uuid", - "version": "4.7.5", + "version": "4.7.6", "source": { "type": "git", "url": "https://github.com/ramsey/uuid.git", - "reference": "5f0df49ae5ad6efb7afa69e6bfab4e5b1e080d8e" + "reference": "91039bc1faa45ba123c4328958e620d382ec7088" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/ramsey/uuid/zipball/5f0df49ae5ad6efb7afa69e6bfab4e5b1e080d8e", - "reference": "5f0df49ae5ad6efb7afa69e6bfab4e5b1e080d8e", + "url": "https://api.github.com/repos/ramsey/uuid/zipball/91039bc1faa45ba123c4328958e620d382ec7088", + "reference": "91039bc1faa45ba123c4328958e620d382ec7088", "shasum": "" }, "require": { - "brick/math": "^0.8.8 || ^0.9 || ^0.10 || ^0.11", + "brick/math": "^0.8.8 || ^0.9 || ^0.10 || ^0.11 || ^0.12", "ext-json": "*", "php": "^8.0", "ramsey/collection": "^1.2 || ^2.0" @@ -4416,7 +4423,7 @@ ], "support": { "issues": "https://github.com/ramsey/uuid/issues", - "source": "https://github.com/ramsey/uuid/tree/4.7.5" + "source": "https://github.com/ramsey/uuid/tree/4.7.6" }, "funding": [ { @@ -4428,7 +4435,7 @@ "type": "tidelift" } ], - "time": "2023-11-08T05:53:05+00:00" + "time": "2024-04-27T21:32:50+00:00" }, { "name": "sebastian/code-unit-reverse-lookup", @@ -5224,16 +5231,16 @@ }, { "name": "sirbrillig/phpcs-variable-analysis", - "version": "v2.11.17", + "version": "v2.11.18", "source": { "type": "git", "url": "https://github.com/sirbrillig/phpcs-variable-analysis.git", - "reference": "3b71162a6bf0cde2bff1752e40a1788d8273d049" + "reference": "ca242a0b7309e0f9d1f73b236e04ecf4ca3248d0" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sirbrillig/phpcs-variable-analysis/zipball/3b71162a6bf0cde2bff1752e40a1788d8273d049", - "reference": "3b71162a6bf0cde2bff1752e40a1788d8273d049", + "url": "https://api.github.com/repos/sirbrillig/phpcs-variable-analysis/zipball/ca242a0b7309e0f9d1f73b236e04ecf4ca3248d0", + "reference": "ca242a0b7309e0f9d1f73b236e04ecf4ca3248d0", "shasum": "" }, "require": { @@ -5278,20 +5285,20 @@ "source": "https://github.com/sirbrillig/phpcs-variable-analysis", "wiki": "https://github.com/sirbrillig/phpcs-variable-analysis/wiki" }, - "time": "2023-08-05T23:46:11+00:00" + "time": "2024-04-13T16:42:46+00:00" }, { "name": "squizlabs/php_codesniffer", - "version": "3.9.1", + "version": "3.9.2", "source": { "type": "git", "url": "https://github.com/PHPCSStandards/PHP_CodeSniffer.git", - "reference": "267a4405fff1d9c847134db3a3c92f1ab7f77909" + "reference": "aac1f6f347a5c5ac6bc98ad395007df00990f480" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/PHPCSStandards/PHP_CodeSniffer/zipball/267a4405fff1d9c847134db3a3c92f1ab7f77909", - "reference": "267a4405fff1d9c847134db3a3c92f1ab7f77909", + "url": "https://api.github.com/repos/PHPCSStandards/PHP_CodeSniffer/zipball/aac1f6f347a5c5ac6bc98ad395007df00990f480", + "reference": "aac1f6f347a5c5ac6bc98ad395007df00990f480", "shasum": "" }, "require": { @@ -5358,20 +5365,20 @@ "type": "open_collective" } ], - "time": "2024-03-31T21:03:09+00:00" + "time": "2024-04-23T20:25:34+00:00" }, { "name": "symfony/amqp-messenger", - "version": "v5.4.36", + "version": "v5.4.39", "source": { "type": "git", "url": "https://github.com/symfony/amqp-messenger.git", - "reference": "456958ef89fffddc3935f3954a7eac255a5adb21" + "reference": "252902bdd576b0a9279cb3d9b9f7e8317d1c54c3" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/amqp-messenger/zipball/456958ef89fffddc3935f3954a7eac255a5adb21", - "reference": "456958ef89fffddc3935f3954a7eac255a5adb21", + "url": "https://api.github.com/repos/symfony/amqp-messenger/zipball/252902bdd576b0a9279cb3d9b9f7e8317d1c54c3", + "reference": "252902bdd576b0a9279cb3d9b9f7e8317d1c54c3", "shasum": "" }, "require": { @@ -5411,7 +5418,7 @@ "description": "Symfony AMQP extension Messenger Bridge", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/amqp-messenger/tree/v5.4.36" + "source": "https://github.com/symfony/amqp-messenger/tree/v5.4.39" }, "funding": [ { @@ -5427,20 +5434,20 @@ "type": "tidelift" } ], - "time": "2024-02-14T16:15:37+00:00" + "time": "2024-04-18T08:26:06+00:00" }, { "name": "symfony/browser-kit", - "version": "v5.4.35", + "version": "v5.4.39", "source": { "type": "git", "url": "https://github.com/symfony/browser-kit.git", - "reference": "2f6f979b579ed1c051465c3c2fb81daf5bb4a002" + "reference": "4c5d1a88ceee2b1c5c0b400b0137989ec34f70fa" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/browser-kit/zipball/2f6f979b579ed1c051465c3c2fb81daf5bb4a002", - "reference": "2f6f979b579ed1c051465c3c2fb81daf5bb4a002", + "url": "https://api.github.com/repos/symfony/browser-kit/zipball/4c5d1a88ceee2b1c5c0b400b0137989ec34f70fa", + "reference": "4c5d1a88ceee2b1c5c0b400b0137989ec34f70fa", "shasum": "" }, "require": { @@ -5483,7 +5490,7 @@ "description": "Simulates the behavior of a web browser, allowing you to make requests, click on links and submit forms programmatically", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/browser-kit/tree/v5.4.35" + "source": "https://github.com/symfony/browser-kit/tree/v5.4.39" }, "funding": [ { @@ -5499,20 +5506,20 @@ "type": "tidelift" } ], - "time": "2024-01-23T13:51:25+00:00" + "time": "2024-04-18T08:26:06+00:00" }, { "name": "symfony/cache", - "version": "v5.4.38", + "version": "v5.4.39", "source": { "type": "git", "url": "https://github.com/symfony/cache.git", - "reference": "223c3afac82e003a76931b71d77db408636a0de8" + "reference": "982237e35079fdcc31ab724f06b6131992c4fd24" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/cache/zipball/223c3afac82e003a76931b71d77db408636a0de8", - "reference": "223c3afac82e003a76931b71d77db408636a0de8", + "url": "https://api.github.com/repos/symfony/cache/zipball/982237e35079fdcc31ab724f06b6131992c4fd24", + "reference": "982237e35079fdcc31ab724f06b6131992c4fd24", "shasum": "" }, "require": { @@ -5580,7 +5587,7 @@ "psr6" ], "support": { - "source": "https://github.com/symfony/cache/tree/v5.4.38" + "source": "https://github.com/symfony/cache/tree/v5.4.39" }, "funding": [ { @@ -5596,7 +5603,7 @@ "type": "tidelift" } ], - "time": "2024-03-19T09:55:32+00:00" + "time": "2024-04-18T08:26:06+00:00" }, { "name": "symfony/cache-contracts", @@ -5679,16 +5686,16 @@ }, { "name": "symfony/config", - "version": "v5.4.38", + "version": "v5.4.39", "source": { "type": "git", "url": "https://github.com/symfony/config.git", - "reference": "3dcd47d4bbd9fea4d1210e7a7a0a5ca02d99df14" + "reference": "62cec4a067931552624a9962002c210c502d42fd" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/config/zipball/3dcd47d4bbd9fea4d1210e7a7a0a5ca02d99df14", - "reference": "3dcd47d4bbd9fea4d1210e7a7a0a5ca02d99df14", + "url": "https://api.github.com/repos/symfony/config/zipball/62cec4a067931552624a9962002c210c502d42fd", + "reference": "62cec4a067931552624a9962002c210c502d42fd", "shasum": "" }, "require": { @@ -5738,7 +5745,7 @@ "description": "Helps you find, load, combine, autofill and validate configuration values of any kind", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/config/tree/v5.4.38" + "source": "https://github.com/symfony/config/tree/v5.4.39" }, "funding": [ { @@ -5754,20 +5761,20 @@ "type": "tidelift" } ], - "time": "2024-03-22T10:04:40+00:00" + "time": "2024-04-18T08:26:06+00:00" }, { "name": "symfony/console", - "version": "v5.4.36", + "version": "v5.4.39", "source": { "type": "git", "url": "https://github.com/symfony/console.git", - "reference": "39f75d9d73d0c11952fdcecf4877b4d0f62a8f6e" + "reference": "f3e591c48688a0cfa1a3296205926c05e84b22b1" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/console/zipball/39f75d9d73d0c11952fdcecf4877b4d0f62a8f6e", - "reference": "39f75d9d73d0c11952fdcecf4877b4d0f62a8f6e", + "url": "https://api.github.com/repos/symfony/console/zipball/f3e591c48688a0cfa1a3296205926c05e84b22b1", + "reference": "f3e591c48688a0cfa1a3296205926c05e84b22b1", "shasum": "" }, "require": { @@ -5837,7 +5844,7 @@ "terminal" ], "support": { - "source": "https://github.com/symfony/console/tree/v5.4.36" + "source": "https://github.com/symfony/console/tree/v5.4.39" }, "funding": [ { @@ -5853,20 +5860,20 @@ "type": "tidelift" } ], - "time": "2024-02-20T16:33:57+00:00" + "time": "2024-04-18T08:26:06+00:00" }, { "name": "symfony/css-selector", - "version": "v5.4.35", + "version": "v5.4.39", "source": { "type": "git", "url": "https://github.com/symfony/css-selector.git", - "reference": "9e615d367e2bed41f633abb383948c96a2dbbfae" + "reference": "0934c9f1d433776f25c629bdc93f3e157d139e08" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/css-selector/zipball/9e615d367e2bed41f633abb383948c96a2dbbfae", - "reference": "9e615d367e2bed41f633abb383948c96a2dbbfae", + "url": "https://api.github.com/repos/symfony/css-selector/zipball/0934c9f1d433776f25c629bdc93f3e157d139e08", + "reference": "0934c9f1d433776f25c629bdc93f3e157d139e08", "shasum": "" }, "require": { @@ -5903,7 +5910,7 @@ "description": "Converts CSS selectors to XPath expressions", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/css-selector/tree/v5.4.35" + "source": "https://github.com/symfony/css-selector/tree/v5.4.39" }, "funding": [ { @@ -5919,20 +5926,20 @@ "type": "tidelift" } ], - "time": "2024-01-23T13:51:25+00:00" + "time": "2024-04-18T08:26:06+00:00" }, { "name": "symfony/dependency-injection", - "version": "v5.4.38", + "version": "v5.4.39", "source": { "type": "git", "url": "https://github.com/symfony/dependency-injection.git", - "reference": "0ba1fa459d284a9398c71afa1cb5d13de025de17" + "reference": "5b4505f2afbe1d11d43a3917d0c1c178a38f6f19" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/0ba1fa459d284a9398c71afa1cb5d13de025de17", - "reference": "0ba1fa459d284a9398c71afa1cb5d13de025de17", + "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/5b4505f2afbe1d11d43a3917d0c1c178a38f6f19", + "reference": "5b4505f2afbe1d11d43a3917d0c1c178a38f6f19", "shasum": "" }, "require": { @@ -5992,7 +5999,7 @@ "description": "Allows you to standardize and centralize the way objects are constructed in your application", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/dependency-injection/tree/v5.4.38" + "source": "https://github.com/symfony/dependency-injection/tree/v5.4.39" }, "funding": [ { @@ -6008,7 +6015,7 @@ "type": "tidelift" } ], - "time": "2024-03-18T16:56:51+00:00" + "time": "2024-04-18T08:26:06+00:00" }, { "name": "symfony/deprecation-contracts", @@ -6151,16 +6158,16 @@ }, { "name": "symfony/dom-crawler", - "version": "v5.4.35", + "version": "v5.4.39", "source": { "type": "git", "url": "https://github.com/symfony/dom-crawler.git", - "reference": "e3b4806f88abf106a411847a78619a542e71de29" + "reference": "1dffb111b038412b028caba029240e379fda85b2" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/e3b4806f88abf106a411847a78619a542e71de29", - "reference": "e3b4806f88abf106a411847a78619a542e71de29", + "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/1dffb111b038412b028caba029240e379fda85b2", + "reference": "1dffb111b038412b028caba029240e379fda85b2", "shasum": "" }, "require": { @@ -6206,7 +6213,7 @@ "description": "Eases DOM navigation for HTML and XML documents", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/dom-crawler/tree/v5.4.35" + "source": "https://github.com/symfony/dom-crawler/tree/v5.4.39" }, "funding": [ { @@ -6222,20 +6229,20 @@ "type": "tidelift" } ], - "time": "2024-01-23T13:51:25+00:00" + "time": "2024-04-18T08:26:06+00:00" }, { "name": "symfony/event-dispatcher", - "version": "v5.4.35", + "version": "v5.4.39", "source": { "type": "git", "url": "https://github.com/symfony/event-dispatcher.git", - "reference": "7a69a85c7ea5bdd1e875806a99c51a87d3a74b38" + "reference": "d40fae9fd85c762b6ba378152fdd1157a85d7e4f" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/7a69a85c7ea5bdd1e875806a99c51a87d3a74b38", - "reference": "7a69a85c7ea5bdd1e875806a99c51a87d3a74b38", + "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/d40fae9fd85c762b6ba378152fdd1157a85d7e4f", + "reference": "d40fae9fd85c762b6ba378152fdd1157a85d7e4f", "shasum": "" }, "require": { @@ -6291,7 +6298,7 @@ "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/event-dispatcher/tree/v5.4.35" + "source": "https://github.com/symfony/event-dispatcher/tree/v5.4.39" }, "funding": [ { @@ -6307,7 +6314,7 @@ "type": "tidelift" } ], - "time": "2024-01-23T13:51:25+00:00" + "time": "2024-04-18T08:26:06+00:00" }, { "name": "symfony/event-dispatcher-contracts", @@ -6453,16 +6460,16 @@ }, { "name": "symfony/finder", - "version": "v5.4.35", + "version": "v5.4.39", "source": { "type": "git", "url": "https://github.com/symfony/finder.git", - "reference": "abe6d6f77d9465fed3cd2d029b29d03b56b56435" + "reference": "f6a96e4fcd468a25fede16ee665f50ced856bd0a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/finder/zipball/abe6d6f77d9465fed3cd2d029b29d03b56b56435", - "reference": "abe6d6f77d9465fed3cd2d029b29d03b56b56435", + "url": "https://api.github.com/repos/symfony/finder/zipball/f6a96e4fcd468a25fede16ee665f50ced856bd0a", + "reference": "f6a96e4fcd468a25fede16ee665f50ced856bd0a", "shasum": "" }, "require": { @@ -6496,7 +6503,7 @@ "description": "Finds files and directories via an intuitive fluent interface", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/finder/tree/v5.4.35" + "source": "https://github.com/symfony/finder/tree/v5.4.39" }, "funding": [ { @@ -6512,20 +6519,20 @@ "type": "tidelift" } ], - "time": "2024-01-23T13:51:25+00:00" + "time": "2024-04-18T08:26:06+00:00" }, { "name": "symfony/messenger", - "version": "v5.4.38", + "version": "v5.4.39", "source": { "type": "git", "url": "https://github.com/symfony/messenger.git", - "reference": "a69a4d07e20e4f298a5c030623a1a3328145a889" + "reference": "56366af2eb2b5041ae6ac21b3e9a5caf29e33c42" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/messenger/zipball/a69a4d07e20e4f298a5c030623a1a3328145a889", - "reference": "a69a4d07e20e4f298a5c030623a1a3328145a889", + "url": "https://api.github.com/repos/symfony/messenger/zipball/56366af2eb2b5041ae6ac21b3e9a5caf29e33c42", + "reference": "56366af2eb2b5041ae6ac21b3e9a5caf29e33c42", "shasum": "" }, "require": { @@ -6586,7 +6593,7 @@ "description": "Helps applications send and receive messages to/from other applications or via message queues", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/messenger/tree/v5.4.38" + "source": "https://github.com/symfony/messenger/tree/v5.4.39" }, "funding": [ { @@ -6602,7 +6609,7 @@ "type": "tidelift" } ], - "time": "2024-03-19T10:19:25+00:00" + "time": "2024-04-18T08:26:06+00:00" }, { "name": "symfony/polyfill-ctype", @@ -7229,16 +7236,16 @@ }, { "name": "symfony/process", - "version": "v5.4.36", + "version": "v5.4.39", "source": { "type": "git", "url": "https://github.com/symfony/process.git", - "reference": "4fdf34004f149cc20b2f51d7d119aa500caad975" + "reference": "85a554acd7c28522241faf2e97b9541247a0d3d5" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/process/zipball/4fdf34004f149cc20b2f51d7d119aa500caad975", - "reference": "4fdf34004f149cc20b2f51d7d119aa500caad975", + "url": "https://api.github.com/repos/symfony/process/zipball/85a554acd7c28522241faf2e97b9541247a0d3d5", + "reference": "85a554acd7c28522241faf2e97b9541247a0d3d5", "shasum": "" }, "require": { @@ -7271,7 +7278,7 @@ "description": "Executes commands in sub-processes", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/process/tree/v5.4.36" + "source": "https://github.com/symfony/process/tree/v5.4.39" }, "funding": [ { @@ -7287,20 +7294,20 @@ "type": "tidelift" } ], - "time": "2024-02-12T15:49:53+00:00" + "time": "2024-04-18T08:26:06+00:00" }, { "name": "symfony/redis-messenger", - "version": "v5.4.36", + "version": "v5.4.39", "source": { "type": "git", "url": "https://github.com/symfony/redis-messenger.git", - "reference": "54b107003c5abc03cc5077c8847678b432b1e602" + "reference": "7b7b1c5e8cbaab9c15808822ab5ef355eff6c4c3" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/redis-messenger/zipball/54b107003c5abc03cc5077c8847678b432b1e602", - "reference": "54b107003c5abc03cc5077c8847678b432b1e602", + "url": "https://api.github.com/repos/symfony/redis-messenger/zipball/7b7b1c5e8cbaab9c15808822ab5ef355eff6c4c3", + "reference": "7b7b1c5e8cbaab9c15808822ab5ef355eff6c4c3", "shasum": "" }, "require": { @@ -7338,7 +7345,7 @@ "description": "Symfony Redis extension Messenger Bridge", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/redis-messenger/tree/v5.4.36" + "source": "https://github.com/symfony/redis-messenger/tree/v5.4.39" }, "funding": [ { @@ -7354,7 +7361,7 @@ "type": "tidelift" } ], - "time": "2024-02-05T13:56:32+00:00" + "time": "2024-04-18T08:26:06+00:00" }, { "name": "symfony/requirements-checker", @@ -7424,16 +7431,16 @@ }, { "name": "symfony/serializer", - "version": "v5.4.38", + "version": "v5.4.39", "source": { "type": "git", "url": "https://github.com/symfony/serializer.git", - "reference": "978c155c92601227c014be0291b0bf5b58a1204a" + "reference": "107d7e0b67f9295098aa7b29b1daeddd6303c658" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/serializer/zipball/978c155c92601227c014be0291b0bf5b58a1204a", - "reference": "978c155c92601227c014be0291b0bf5b58a1204a", + "url": "https://api.github.com/repos/symfony/serializer/zipball/107d7e0b67f9295098aa7b29b1daeddd6303c658", + "reference": "107d7e0b67f9295098aa7b29b1daeddd6303c658", "shasum": "" }, "require": { @@ -7507,7 +7514,7 @@ "description": "Handles serializing and deserializing data structures, including object graphs, into array structures or other formats like XML and JSON.", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/serializer/tree/v5.4.38" + "source": "https://github.com/symfony/serializer/tree/v5.4.39" }, "funding": [ { @@ -7523,7 +7530,7 @@ "type": "tidelift" } ], - "time": "2024-03-19T09:55:32+00:00" + "time": "2024-04-18T08:26:06+00:00" }, { "name": "symfony/service-contracts", @@ -7610,16 +7617,16 @@ }, { "name": "symfony/stopwatch", - "version": "v5.4.35", + "version": "v5.4.39", "source": { "type": "git", "url": "https://github.com/symfony/stopwatch.git", - "reference": "887762aa99ff16f65dc8b48aafead415f942d407" + "reference": "fb97497490bcec8a3c32c809cacfdd4c15dc8390" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/stopwatch/zipball/887762aa99ff16f65dc8b48aafead415f942d407", - "reference": "887762aa99ff16f65dc8b48aafead415f942d407", + "url": "https://api.github.com/repos/symfony/stopwatch/zipball/fb97497490bcec8a3c32c809cacfdd4c15dc8390", + "reference": "fb97497490bcec8a3c32c809cacfdd4c15dc8390", "shasum": "" }, "require": { @@ -7652,7 +7659,7 @@ "description": "Provides a way to profile code", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/stopwatch/tree/v5.4.35" + "source": "https://github.com/symfony/stopwatch/tree/v5.4.39" }, "funding": [ { @@ -7668,7 +7675,7 @@ "type": "tidelift" } ], - "time": "2024-01-23T13:51:25+00:00" + "time": "2024-04-18T08:26:06+00:00" }, { "name": "symfony/string", @@ -7829,16 +7836,16 @@ }, { "name": "symfony/yaml", - "version": "v5.4.35", + "version": "v5.4.39", "source": { "type": "git", "url": "https://github.com/symfony/yaml.git", - "reference": "e78db7f5c70a21f0417a31f414c4a95fe76c07e4" + "reference": "bc780e16879000f77a1022163c052f5323b5e640" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/yaml/zipball/e78db7f5c70a21f0417a31f414c4a95fe76c07e4", - "reference": "e78db7f5c70a21f0417a31f414c4a95fe76c07e4", + "url": "https://api.github.com/repos/symfony/yaml/zipball/bc780e16879000f77a1022163c052f5323b5e640", + "reference": "bc780e16879000f77a1022163c052f5323b5e640", "shasum": "" }, "require": { @@ -7884,7 +7891,7 @@ "description": "Loads and dumps YAML files", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/yaml/tree/v5.4.35" + "source": "https://github.com/symfony/yaml/tree/v5.4.39" }, "funding": [ { @@ -7900,7 +7907,7 @@ "type": "tidelift" } ], - "time": "2024-01-23T13:51:25+00:00" + "time": "2024-04-23T11:57:27+00:00" }, { "name": "theseer/tokenizer", diff --git a/includes.php b/includes.php index 3afe44085..6a81208a4 100644 --- a/includes.php +++ b/includes.php @@ -34,7 +34,7 @@ if (! defined('PP_LOADED')) { if (! defined('PUBLISHPRESS_VERSION')) { // Define constants - define('PUBLISHPRESS_VERSION', '4.1.0'); + define('PUBLISHPRESS_VERSION', '4.2.0'); define('PUBLISHPRESS_BASE_PATH', __DIR__); define('PUBLISHPRESS_VIEWS_PATH', __DIR__ . '/views'); define('PUBLISHPRESS_FILE_PATH', PUBLISHPRESS_BASE_PATH . '/publishpress.php'); @@ -136,6 +136,7 @@ function ($settings) { ['base' => 'edit', 'id' => 'edit-psppnotif_workflow'], ['base' => 'post', 'id' => 'psppnotif_workflow'], ['base' => 'planner_page_pp-content-overview'], + ['base' => 'planner_page_pp-content-board'], ['base' => 'toplevel_page_pp-calendar', 'id' => 'toplevel_page_pp-calendar'], ] ]; @@ -151,6 +152,7 @@ function ($settings) { 'parent' => [ 'pp-calendar', 'pp-content-overview', + 'pp-content-board', 'edit.php?post_type=psppnotif_workflow', 'pp-notif-log', 'pp-manage-roles', diff --git a/languages/publishpress-es_ES.mo b/languages/publishpress-es_ES.mo index 03ff73bb8..a00c00a90 100644 Binary files a/languages/publishpress-es_ES.mo and b/languages/publishpress-es_ES.mo differ diff --git a/languages/publishpress-es_ES.po b/languages/publishpress-es_ES.po index 8f5901e41..6ed80b860 100644 --- a/languages/publishpress-es_ES.po +++ b/languages/publishpress-es_ES.po @@ -5,8 +5,8 @@ msgstr "" "Project-Id-Version: Plugins - PublishPress Planner: Organize and Schedule " "Your WordPress Content - Stable (latest release)\n" "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/project\n" -"POT-Creation-Date: 2024-01-23 11:07+0000\n" -"PO-Revision-Date: 2024-01-23 21:33+0100\n" +"POT-Creation-Date: 2024-04-04 04:10+0000\n" +"PO-Revision-Date: 2024-04-13 12:37+0200\n" "Last-Translator: \n" "Language-Team: Spanish (Spain)\n" "Language: es_ES\n" @@ -58,11 +58,13 @@ msgstr "%1$s #%2$s «%3$s» fue despublicada por %4$s %5$s" msgid "%1$s (%2$s ) said on %3$s at %4$s:" msgstr "%1$s (%2$s) dijo en %3$s a las %4$s:" -#: modules/content-overview/content-overview.php:1012 +#: modules/content-overview/content-overview.php:845 #, php-format +#| msgctxt "%1$s = start date, %2$s = end date" +#| msgid " %1$s to %2$s" msgctxt "%1$s = start date, %2$s = end date" -msgid " %1$s to %2$s" -msgstr " %1$s a %2$s" +msgid " %1$s
to
%2$s" +msgstr " %1$s
a
%2$s" #. 1: old status, 2: new status #: modules/notifications/notifications.php:2056 @@ -72,8 +74,8 @@ msgstr "%1$s => %2$s" #. 1: Comment date, 2: Comment time. #: modules/notifications/notifications.php:1892 -#: modules/editorial-metadata/input-handlers/editorial-metadata-input-date-handler.php:201 #: modules/editorial-comments/library/EditorialCommentsTable.php:336 +#: modules/editorial-metadata/input-handlers/editorial-metadata-input-date-handler.php:201 #, php-format msgid "%1$s at %2$s" msgstr "%1$s en %2$s" @@ -95,14 +97,25 @@ msgid_plural "%d Users" msgstr[0] "%d usuario" msgstr[1] "%d usuarios" -#: modules/calendar/calendar.php:835 +#: modules/calendar/calendar.php:795 msgid "%d week" msgstr "%d semana" -#: modules/calendar/calendar.php:836 +#: modules/calendar/calendar.php:796 msgid "%d weeks" msgstr "%d semanas" +#: modules/content-overview/content-overview.php:1004 +#, php-format +msgid "%s could not be created" +msgstr "%s no pudo ser creada" + +#: modules/content-overview/content-overview.php:1001 +#, php-format +msgid "%s created successfully. Edit %s" +msgstr "" +"%s creado correctamente. Editar %s" + #: modules/notifications-log/notifications-log.php:272 #, php-format msgid "%s notification found." @@ -110,26 +123,26 @@ msgid_plural "%s notifications found." msgstr[0] "%s aviso encontrado." msgstr[1] "%s avisos encontrados." -#: modules/calendar/calendar.php:4163 +#: modules/calendar/calendar.php:4123 #, php-format msgid "%s week" msgid_plural "%s weeks" msgstr[0] "%s semana" msgstr[1] "%s semanas" -#: modules/calendar/calendar.php:2175 +#: modules/calendar/calendar.php:2135 msgid "«" msgstr "«" -#: modules/calendar/calendar.php:2188 +#: modules/calendar/calendar.php:2148 msgid "‹" msgstr "‹" -#: modules/calendar/calendar.php:2144 +#: modules/calendar/calendar.php:2104 msgid "»" msgstr "»" -#: modules/calendar/calendar.php:2127 +#: modules/calendar/calendar.php:2087 msgid "›" msgstr "›" @@ -349,16 +362,20 @@ msgstr "" msgid "Add an editorial comment" msgstr "Añadir un comentario editorial" -#: modules/editorial-metadata/editorial-metadata.php:2085 -#: modules/editorial-metadata/editorial-metadata.php:2446 +#: modules/editorial-metadata/editorial-metadata.php:2063 +#: modules/editorial-metadata/editorial-metadata.php:2400 msgid "Add Another Option" msgstr "Añadir otra opción" +#: modules/content-overview/content-overview.php:1287 +msgid "Add Column" +msgstr "Añadir columna" + #: modules/editorial-comments/editorial-comments.php:574 msgid "Add Comment" msgstr "Añadir comentario" -#: modules/calendar/calendar.php:807 +#: modules/calendar/calendar.php:767 #, php-format msgid "Add content for %s" msgstr "Añadir contenido para %s" @@ -369,15 +386,26 @@ msgstr "Añadir contenido para %s" msgid "Add editorial comment: %s" msgstr "Añadir comentario editorial: %s" -#: modules/editorial-metadata/editorial-metadata.php:1799 +#: modules/content-overview/content-overview.php:1435 +msgid "Add Filter" +msgstr "Añadir filtro" + +#: modules/content-overview/content-overview.php:1267 +#: modules/content-overview/content-overview.php:1415 +#: modules/editorial-metadata/editorial-metadata.php:1783 msgid "Add New" msgstr "Añadir nuevo" +#: modules/content-overview/content-overview.php:1558 +#, php-format +msgid "Add New %s" +msgstr "Añadir nuevo %s" + #: modules/editorial-metadata/editorial-metadata.php:453 msgid "Add New Editorial Metadata" msgstr "Añadir nuevos metadatos editoriales" -#: modules/editorial-metadata/editorial-metadata.php:2581 +#: modules/editorial-metadata/editorial-metadata.php:2509 msgid "Add New Metadata Term" msgstr "Añadir nuevo término de metadatos" @@ -409,8 +437,8 @@ msgstr "Añadir o eliminar avisos de perfiles" msgid "Add or remove notify users" msgstr "Añadir o eliminar avisos de usuarios" -#: modules/editorial-metadata/editorial-metadata.php:2165 -#: modules/editorial-metadata/editorial-metadata.php:2532 +#: modules/editorial-metadata/editorial-metadata.php:2119 +#: modules/editorial-metadata/editorial-metadata.php:2460 msgid "Add to post types" msgstr "Añadir a los tipos de contenido" @@ -422,8 +450,8 @@ msgstr "Avisos avanzados" msgid "All" msgstr "Todo" -#: modules/content-overview/content-overview.php:1278 -#: modules/content-overview/content-overview.php:1281 +#: modules/content-overview/content-overview.php:2091 +#: modules/content-overview/content-overview.php:2094 #, php-format msgid "All %s" msgstr "Todas %s" @@ -432,13 +460,13 @@ msgstr "Todas %s" msgid "All Actions" msgstr "Todas las acciones" -#: modules/calendar/calendar.php:833 modules/calendar/calendar.php:4111 -#: modules/content-overview/content-overview.php:1300 -#: modules/content-overview/content-overview.php:1303 +#: modules/calendar/calendar.php:793 modules/calendar/calendar.php:4071 +#: modules/content-overview/content-overview.php:2116 +#: modules/content-overview/content-overview.php:2119 msgid "All authors" msgstr "Todos los autores" -#: modules/calendar/calendar.php:831 +#: modules/calendar/calendar.php:791 msgid "All categories" msgstr "Todas las categorías" @@ -470,22 +498,22 @@ msgstr "Todos los avisos de perfiles" msgid "All Notify Users" msgstr "Todos los avisos de usuarios" -#: modules/editorial-metadata/editorial-metadata.php:1268 -#: modules/editorial-metadata/editorial-metadata.php:1438 +#: modules/editorial-metadata/editorial-metadata.php:1266 +#: modules/editorial-metadata/editorial-metadata.php:1429 msgid "All options value and labels are required." msgstr "Todas las opciones de valor y las etiquetas son obligatorios." -#: modules/content-overview/content-overview.php:1330 +#: modules/content-overview/content-overview.php:2148 msgid "All post types" msgstr "Todos los tipos de contenido" -#: modules/notifications-log/notifications-log.php:204 #: modules/editorial-comments/editorial-comments.php:212 +#: modules/notifications-log/notifications-log.php:204 #: modules/editorial-comments/library/EditorialCommentsTable.php:181 msgid "All Posts" msgstr "Todas las entradas" -#: modules/calendar/calendar.php:2973 +#: modules/calendar/calendar.php:2933 msgid "All posts" msgstr "Todas las entradas" @@ -493,20 +521,24 @@ msgstr "Todas las entradas" msgid "All Receivers" msgstr "Todos los destinatarios" +#: modules/content-overview/content-overview.php:2363 +msgid "All status" +msgstr "Todos los estados" + #: modules/notifications-log/notifications-log.php:208 msgid "All Statuses" msgstr "Todos los estados" -#: modules/calendar/calendar.php:830 modules/calendar/calendar.php:4055 -#: modules/content-overview/content-overview.php:1256 +#: modules/calendar/calendar.php:790 modules/calendar/calendar.php:4015 +#: modules/content-overview/content-overview.php:2065 msgid "All statuses" msgstr "Todos los estados" -#: modules/calendar/calendar.php:832 modules/calendar/calendar.php:4090 +#: modules/calendar/calendar.php:792 modules/calendar/calendar.php:4050 msgid "All tags" msgstr "Todas las etiquetas" -#: modules/calendar/calendar.php:834 modules/calendar/calendar.php:4138 +#: modules/calendar/calendar.php:794 modules/calendar/calendar.php:4098 msgid "All types" msgstr "Todos los tipos" @@ -519,7 +551,7 @@ msgstr "Todos los usuarios" msgid "All Workflows" msgstr "Todos los flujos de trabajo" -#: modules/calendar/calendar.php:2577 +#: modules/calendar/calendar.php:2537 msgid "Allow public access to subscriptions in iCal or Google Calendar" msgstr "" "Permite el acceso público a las suscripciones en iCal o Google Calendar" @@ -532,15 +564,26 @@ msgstr "Avisar siempre al autor del contenido:" msgid "Always notify users who have edited the content:" msgstr "Avisar siempre a los usuarios que han editado el contenido:" -#: modules/calendar/calendar.php:2625 +#: modules/calendar/calendar.php:2585 msgid "Always show complete post titles" msgstr "Muestra siempre los títulos completos de las entradas" -#: modules/content-overview/content-overview.php:1022 +#: modules/content-overview/content-overview.php:855 +#: modules/content-overview/content-overview.php:865 +#: modules/content-overview/content-overview.php:2197 +#: modules/content-overview/content-overview.php:2308 +#: modules/content-overview/content-overview.php:2346 +#: modules/content-overview/content-overview.php:2423 msgid "Apply" msgstr "Aplicar" -#: modules/calendar/calendar.php:821 +#: modules/content-overview/content-overview.php:1371 +#: modules/content-overview/content-overview.php:1519 +#| msgid "All Channels" +msgid "Apply Changes" +msgstr "Aplicar los cambios" + +#: modules/calendar/calendar.php:781 msgid "Apr" msgstr "Abr" @@ -565,7 +608,7 @@ msgstr "Avisos asíncronos" msgid "asynchronous" msgstr "asíncrono" -#: modules/calendar/calendar.php:2644 +#: modules/calendar/calendar.php:2604 msgid "At least one post type must be selected" msgstr "Se debe seleccionar por lo menos un tipo de contenido" @@ -573,13 +616,18 @@ msgstr "Se debe seleccionar por lo menos un tipo de contenido" msgid "Attach file" msgstr "Adjuntar archivo" -#: modules/calendar/calendar.php:825 +#: modules/calendar/calendar.php:785 msgid "Aug" msgstr "Ago" -#: modules/calendar/calendar.php:1983 modules/calendar/calendar.php:3578 -#: modules/calendar/calendar.php:3668 -#: modules/content-overview/content-overview.php:629 +#: modules/calendar/calendar.php:1943 modules/calendar/calendar.php:3538 +#: modules/calendar/calendar.php:3628 +#: modules/content-overview/content-overview.php:1081 +#: modules/content-overview/content-overview.php:1095 +#: modules/content-overview/content-overview.php:1139 +#: modules/content-overview/content-overview.php:1200 +#: modules/content-overview/content-overview.php:1732 +#: modules/content-overview/content-overview.php:2114 #: modules/editorial-comments/library/EditorialCommentsTable.php:228 msgid "Author" msgid_plural "Authors" @@ -608,11 +656,11 @@ msgstr "Borrador automático" msgid "Available fields" msgstr "Campos disponibles" -#: modules/calendar/calendar.php:2167 +#: modules/calendar/calendar.php:2127 msgid "Back %d weeks" msgstr "Ir %d semanas hacia detrás" -#: modules/calendar/calendar.php:2179 +#: modules/calendar/calendar.php:2139 msgid "Back 1 week" msgstr "1 semana atrás" @@ -648,25 +696,27 @@ msgstr "Blog: " msgid "Body" msgstr "Cuerpo" -#: modules/editorial-metadata/editorial-metadata.php:2220 -#: modules/content-overview/content-overview.php:1028 +#: modules/content-overview/content-overview.php:861 #: modules/editorial-comments/editorial-comments.php:578 +#: modules/editorial-metadata/editorial-metadata.php:2174 msgid "Cancel" msgstr "Cancelar" -#: modules/calendar/calendar.php:3678 +#: modules/calendar/calendar.php:3638 +#: modules/content-overview/content-overview.php:1094 +#: modules/content-overview/content-overview.php:1742 #: lib/Notifications/Workflow/Step/Event_Content/Filter/Category.php:34 msgid "Categories" msgstr "Categorías" -#: modules/calendar/calendar.php:3583 +#: modules/calendar/calendar.php:3543 #: lib/Notifications/Workflow/Step/Event_Content/Category.php:24 msgid "Category" msgid_plural "Categories" msgstr[0] "Categoría" msgstr[1] "Categorías" -#: modules/content-overview/content-overview.php:1029 +#: modules/content-overview/content-overview.php:862 msgid "Change" msgstr "Cambiar" @@ -684,6 +734,10 @@ msgstr "¡Haciendo trampas! ¿eh?" msgid "Checkbox" msgstr "Casilla de verificación" +#: modules/content-overview/content-overview.php:2328 +msgid "Checked" +msgstr "Seleccionado" + #: modules/notifications/notifications.php:386 msgid "Choose from the most used notify emails" msgstr "Elige entre los correos electrónicos de aviso más usados" @@ -710,11 +764,19 @@ msgstr "Elige los canales a los que cada flujo de trabajo enviará avisos:" msgid "Click here to read more about shortcode options..." msgstr "Haz clic aquí para leer más acerca de las opciones de shortcode..." -#: modules/calendar/calendar.php:1444 +#: modules/calendar/calendar.php:1404 msgid "Click here to subscribe in iCal or Google Calendar" msgstr "Haz clic aquí para suscribirte en iCal o Google Calendar" -#: modules/calendar/calendar.php:798 +#: modules/content-overview/content-overview.php:1129 +msgid "Click the \"Add New\" button to create new columns." +msgstr "Haz clic en el botón «Añadir nuevo» para crear nuevas columnas." + +#: modules/content-overview/content-overview.php:1191 +msgid "Click the \"Add New\" button to create new filters." +msgstr "Haz clic en el botón «Añadir nuevo» para crear nuevos filtros." + +#: modules/calendar/calendar.php:758 msgid "Click to add" msgstr "Haz clic para añadir" @@ -737,14 +799,19 @@ msgid "Click to stop being notified on updates for this post" msgstr "" "Haz clic para dejar de ser avisado sobre actualizaciones de este contenido" -#: modules/content-overview/content-overview.php:1505 -msgid "Click to toggle" -msgstr "Haz clic para activar" - -#: modules/calendar/calendar.php:803 +#: modules/calendar/calendar.php:763 msgid "Close" msgstr "Cerrar" +#: modules/content-overview/content-overview.php:1275 +msgid "Column Title" +msgstr "Título de la columna" + +#: modules/content-overview/content-overview.php:934 +#| msgid "Comment deleted successfully." +msgid "Column updated successfully." +msgstr "Columna actualizada correctamente." + #: modules/editorial-comments/library/EditorialCommentsTable.php:229 msgid "Comment" msgstr "Comentario" @@ -770,7 +837,8 @@ msgstr "Configurar" msgid "Contact" msgstr "Contacto" -#: modules/calendar/calendar.php:3695 +#: modules/calendar/calendar.php:3655 +#: modules/content-overview/content-overview.php:1759 #: modules/improved-notifications/improved-notifications.php:971 #: lib/Notifications/Workflow/Step/Content/Main.php:29 msgid "Content" @@ -781,10 +849,10 @@ msgstr "Contenido" msgid "Content Calendar" msgstr "Calendario de contenidos" -#: modules/content-overview/content-overview.php:141 -#: modules/content-overview/content-overview.php:508 -#: modules/content-overview/content-overview.php:525 -#: modules/content-overview/content-overview.php:526 +#: modules/content-overview/content-overview.php:147 +#: modules/content-overview/content-overview.php:419 +#: modules/content-overview/content-overview.php:436 +#: modules/content-overview/content-overview.php:437 msgid "Content Overview" msgstr "Resumen del contenido" @@ -792,18 +860,32 @@ msgstr "Resumen del contenido" msgid "Content:" msgstr "Contenido:" -#: modules/calendar/calendar.php:1438 +#: modules/calendar/calendar.php:1398 msgid "Copy to the clipboard" msgstr "Copiar al portapapeles" +#: modules/content-overview/content-overview.php:1686 +#, php-format +msgid "Create %s" +msgstr "Crear %s" + #: modules/debug/debug.php:296 msgid "Created on" msgstr "Creado el" -#: modules/calendar/calendar.php:1361 +#: modules/calendar/calendar.php:1321 msgid "Current week" msgstr "Semana actual" +#: modules/content-overview/content-overview.php:1128 +#| msgid "Custom Status" +msgid "Custom Columns" +msgstr "Columnas personalizadas" + +#: modules/content-overview/content-overview.php:1190 +msgid "Custom filters" +msgstr "Filtros personalizados" + #: statuses-intro.php:142 #, php-format msgid "" @@ -824,6 +906,11 @@ msgstr "" "%1$sPublishPress Statuses%2$s. Consulta %3$sPlanificación > Ajustes%4$s para " "más detalles." +#: modules/content-overview/content-overview.php:1861 +#| msgid "Number of Columns: " +msgid "Customize Columns" +msgstr "Personalizar columnas" + #: modules/dashboard/dashboard.php:56 msgid "Dashboard" msgstr "Escritorio" @@ -832,8 +919,9 @@ msgstr "Escritorio" msgid "Dashboard Note" msgstr "Notas de escritorio" +#: modules/calendar/calendar.php:3527 +#: modules/content-overview/content-overview.php:1919 #: modules/editorial-metadata/editorial-metadata.php:285 -#: modules/calendar/calendar.php:3567 #: lib/Notifications/Table/Notifications.php:158 #: modules/notifications-log/library/NotificationsLogTable.php:490 msgid "Date" @@ -847,7 +935,7 @@ msgstr "Depuración" msgid "Debug data" msgstr "Datos de depuración" -#: modules/calendar/calendar.php:829 +#: modules/calendar/calendar.php:789 msgid "Dec" msgstr "Dic" @@ -855,27 +943,27 @@ msgstr "Dic" msgid "Default notification channels:" msgstr "Canales de aviso por defecto:" -#: modules/editorial-metadata/editorial-metadata.php:2047 -#: modules/editorial-metadata/editorial-metadata.php:2077 -#: modules/editorial-metadata/editorial-metadata.php:2408 -#: modules/editorial-metadata/editorial-metadata.php:2438 +#: modules/editorial-metadata/editorial-metadata.php:2025 +#: modules/editorial-metadata/editorial-metadata.php:2055 +#: modules/editorial-metadata/editorial-metadata.php:2362 +#: modules/editorial-metadata/editorial-metadata.php:2392 msgid "Default option" msgstr "Opción por defecto" -#: modules/calendar/calendar.php:2601 +#: modules/calendar/calendar.php:2561 msgid "Default publish time for items created in the calendar" msgstr "" "Hora de publicación por defecto para elementos creados en el calendario" -#: modules/editorial-metadata/editorial-metadata.php:2050 -#: modules/editorial-metadata/editorial-metadata.php:2080 -#: modules/editorial-metadata/editorial-metadata.php:2411 -#: modules/editorial-metadata/editorial-metadata.php:2441 -#: modules/editorial-metadata/editorial-metadata.php:2837 #: modules/editorial-comments/editorial-comments.php:643 +#: modules/editorial-metadata/editorial-metadata.php:2028 +#: modules/editorial-metadata/editorial-metadata.php:2058 +#: modules/editorial-metadata/editorial-metadata.php:2365 +#: modules/editorial-metadata/editorial-metadata.php:2395 +#: modules/editorial-metadata/editorial-metadata.php:2765 +#: modules/editorial-comments/library/EditorialCommentsTable.php:434 #: modules/notifications-log/library/NotificationsLogTable.php:370 #: modules/notifications-log/library/NotificationsLogTable.php:401 -#: modules/editorial-comments/library/EditorialCommentsTable.php:434 msgid "Delete" msgstr "Borrar" @@ -887,9 +975,9 @@ msgstr "Borrar todos" msgid "Delete file" msgstr "Borrar archivo" -#: modules/editorial-metadata/editorial-metadata.php:1922 -#: modules/editorial-metadata/editorial-metadata.php:2269 -#: modules/editorial-metadata/editorial-metadata.php:2699 +#: modules/editorial-metadata/editorial-metadata.php:1900 +#: modules/editorial-metadata/editorial-metadata.php:2223 +#: modules/editorial-metadata/editorial-metadata.php:2627 msgid "Description" msgstr "Descripción" @@ -897,7 +985,7 @@ msgstr "Descripción" msgid "Detailed documentation is also available on the plugin website." msgstr "También hay disponible documentación detallada en la web del plugin." -#: modules/calendar/calendar.php:2675 modules/dashboard/dashboard.php:368 +#: modules/calendar/calendar.php:2635 modules/dashboard/dashboard.php:368 #: modules/dashboard/dashboard.php:391 modules/dashboard/dashboard.php:425 msgid "Disabled" msgstr "Desactivado" @@ -911,10 +999,10 @@ msgstr "" "Desactivado porque add_post_type_support('%1$s', '%2$s') está incluido en un " "archivo cargado." -#: modules/editorial-metadata/editorial-metadata.php:2038 -#: modules/editorial-metadata/editorial-metadata.php:2069 -#: modules/editorial-metadata/editorial-metadata.php:2399 -#: modules/editorial-metadata/editorial-metadata.php:2430 +#: modules/editorial-metadata/editorial-metadata.php:2016 +#: modules/editorial-metadata/editorial-metadata.php:2047 +#: modules/editorial-metadata/editorial-metadata.php:2353 +#: modules/editorial-metadata/editorial-metadata.php:2384 msgid "Display Label" msgstr "Muestra etiqueta" @@ -926,7 +1014,7 @@ msgstr "Nombre a mostrar" msgid "Documentation" msgstr "Documentación" -#: modules/calendar/calendar.php:1431 +#: modules/calendar/calendar.php:1391 msgid "Download .ics file" msgstr "Descargar archivo .ics" @@ -934,8 +1022,16 @@ msgstr "Descargar archivo .ics" msgid "Draft" msgstr "Borrador" -#: modules/editorial-metadata/editorial-metadata.php:2005 -#: modules/editorial-metadata/editorial-metadata.php:2368 +#: modules/content-overview/content-overview.php:1330 +msgid "Drag to change enabled columns order." +msgstr "Arrastra para cambiar el orden de las columnas activadas." + +#: modules/content-overview/content-overview.php:1478 +msgid "Drag to change enabled filters order." +msgstr "Arrastra para cambiar el orden de los filtros activados." + +#: modules/editorial-metadata/editorial-metadata.php:1983 +#: modules/editorial-metadata/editorial-metadata.php:2322 msgid "Dropdown Option" msgstr "Opción del menú desplegable" @@ -951,10 +1047,10 @@ msgstr "Umbral para los avisos duplicados:" msgid "E-mails" msgstr "Correos electrónicos" -#: modules/editorial-metadata/editorial-metadata.php:2817 -#: modules/calendar/calendar.php:1838 modules/calendar/calendar.php:3600 -#: modules/content-overview/content-overview.php:1904 +#: modules/calendar/calendar.php:1798 modules/calendar/calendar.php:3560 +#: modules/content-overview/content-overview.php:2982 #: modules/editorial-comments/editorial-comments.php:632 +#: modules/editorial-metadata/editorial-metadata.php:2745 msgid "Edit" msgstr "Editar" @@ -988,11 +1084,11 @@ msgstr "Editar el aviso de perfil" msgid "Edit Notify User" msgstr "Editar el aviso de usuario" -#: modules/calendar/calendar.php:1838 +#: modules/calendar/calendar.php:1798 msgid "Edit this item" msgstr "Editar este elemento" -#: modules/content-overview/content-overview.php:1900 +#: modules/content-overview/content-overview.php:2978 #: modules/dashboard/dashboard.php:299 msgid "Edit this post" msgstr "Editar esta publicación" @@ -1014,9 +1110,11 @@ msgstr "Comentario editorial" msgid "Editorial Comments" msgstr "Comentarios editoriales" +#: modules/content-overview/content-overview.php:1148 +#: modules/content-overview/content-overview.php:1208 #: modules/editorial-metadata/editorial-metadata.php:96 -#: modules/editorial-metadata/editorial-metadata.php:1775 -#: modules/editorial-metadata/editorial-metadata.php:1776 +#: modules/editorial-metadata/editorial-metadata.php:1759 +#: modules/editorial-metadata/editorial-metadata.php:1760 msgid "Editorial Metadata" msgstr "Metadatos editoriales" @@ -1026,11 +1124,11 @@ msgstr "Metadatos editoriales" msgid "Editorial Notifications" msgstr "Avisos editoriales" -#: modules/calendar/calendar.php:1411 +#: modules/calendar/calendar.php:1371 msgid "Eight months" msgstr "Ocho meses" -#: modules/calendar/calendar.php:1417 +#: modules/calendar/calendar.php:1377 msgid "Eleven months" msgstr "Once meses" @@ -1047,15 +1145,33 @@ msgstr "correo electrónico" msgid "Email from:" msgstr "Correo electrónico de:" +#: modules/content-overview/content-overview.php:1249 +#| msgid "Number of Columns: " +msgid "Enable Columns" +msgstr "Activar columnas" + +#: modules/content-overview/content-overview.php:1397 +msgid "Enable Filters" +msgstr "Activar filtros" + #: modules/editorial-comments/editorial-comments.php:1232 msgid "Enable for these post types:" msgstr "Activar para estos tipos de publicación:" -#: modules/calendar/calendar.php:2569 +#: modules/content-overview/content-overview.php:1403 +#| msgid "Show as Content Overview filters" +msgid "Enable or Disable Content Overview filter." +msgstr "Activar o desactivar el filtro «Resumen de contenidos»." + +#: modules/content-overview/content-overview.php:1255 +msgid "Enable or Disable Content Overview table column." +msgstr "Activar o desactivar la columna de la tabla «Resumen de contenidos»." + +#: modules/calendar/calendar.php:2529 msgid "Enable subscriptions in iCal or Google Calendar" msgstr "Activa las suscripciones en iCal o Google Calendar" -#: modules/calendar/calendar.php:2676 modules/dashboard/dashboard.php:369 +#: modules/calendar/calendar.php:2636 modules/dashboard/dashboard.php:369 #: modules/dashboard/dashboard.php:392 modules/dashboard/dashboard.php:426 msgid "Enabled" msgstr "Activado" @@ -1064,7 +1180,7 @@ msgstr "Activado" msgid "Enabled features" msgstr "Características activadas" -#: modules/calendar/calendar.php:1379 +#: modules/calendar/calendar.php:1339 msgid "End date" msgstr "Fecha de finalización" @@ -1080,8 +1196,8 @@ msgstr "" "Introduce los usuarios, perfiles o direcciones de correo electrónico que " "deberían recibir avisos de los flujos de trabajo." -#: modules/editorial-metadata/editorial-metadata.php:2010 -#: modules/editorial-metadata/editorial-metadata.php:2371 +#: modules/editorial-metadata/editorial-metadata.php:1988 +#: modules/editorial-metadata/editorial-metadata.php:2325 msgid "" "Enter the dropdown option value and label. You can move options to change " "their order." @@ -1094,19 +1210,25 @@ msgstr "" msgid "Error" msgstr "Error" -#: modules/editorial-metadata/editorial-metadata.php:1369 +#: modules/editorial-metadata/editorial-metadata.php:1360 msgid "Error adding term." msgstr "Error añadiendo el término." -#: modules/editorial-metadata/editorial-metadata.php:1646 +#: modules/editorial-metadata/editorial-metadata.php:1630 msgid "Error deleting term." msgstr "Error al borrar el término." -#: modules/editorial-metadata/editorial-metadata.php:1532 -#: modules/editorial-metadata/editorial-metadata.php:1580 +#: modules/editorial-metadata/editorial-metadata.php:1516 +#: modules/editorial-metadata/editorial-metadata.php:1564 msgid "Error updating term." msgstr "Error al actualizar el término." +#: modules/content-overview/content-overview.php:1535 +msgid "Error validating nonce. Please reload this page and try again." +msgstr "" +"Error al validar el nonce. Por favor, recarga esta página e inténtalo de " +"nuevo." + #: modules/async-notifications/async-notifications.php:172 #, php-format msgid "Event: %s, Workflow ID: %s, Post ID: %s, User ID: %s" @@ -1114,6 +1236,7 @@ msgstr "" "Evento: %s, ID del flujo de trabajo: %s, ID de la entrada: %s, ID de " "usuario: %s" +#: modules/content-overview/content-overview.php:2367 #: modules/notifications-log/library/NotificationsLogTable.php:271 #: modules/notifications-log/library/NotificationsLogTable.php:287 msgid "Failed" @@ -1127,7 +1250,7 @@ msgstr "Soporte rápido y profesional" msgid "Features" msgstr "Características" -#: modules/calendar/calendar.php:819 +#: modules/calendar/calendar.php:779 msgid "Feb" msgstr "Feb" @@ -1139,7 +1262,7 @@ msgstr "Siéntete libre de seleccionar solo las características que necesites." msgid "field" msgstr "campo" -#: modules/calendar/calendar.php:2609 +#: modules/calendar/calendar.php:2569 msgid "Field used for sorting the calendar items in a day cell" msgstr "" "Campo utilizado para clasificar los elementos del calendario en una celda " @@ -1149,9 +1272,8 @@ msgstr "" msgid "File info" msgstr "Información del archivo" -#: modules/content-overview/content-overview.php:1145 -#: modules/notifications-log/library/NotificationsLogTable.php:640 #: modules/editorial-comments/library/EditorialCommentsTable.php:210 +#: modules/notifications-log/library/NotificationsLogTable.php:640 msgid "Filter" msgstr "Filtro" @@ -1171,8 +1293,8 @@ msgstr "Filtrar por aviso de usuario" msgid "Filter the content?" msgstr "¿Filtrar el contenido?" -#: modules/editorial-metadata/editorial-metadata.php:1970 -#: modules/editorial-metadata/editorial-metadata.php:2334 +#: modules/editorial-metadata/editorial-metadata.php:1948 +#: modules/editorial-metadata/editorial-metadata.php:2288 msgid "" "Filter the list of users in the editorial meta to users in the selected " "roles." @@ -1180,6 +1302,15 @@ msgstr "" "Filtra la lista de usuarios en la meta editorial para los usuarios en los " "roles seleccionados." +#: modules/content-overview/content-overview.php:1423 +msgid "Filter Title" +msgstr "Titulo del filtro" + +#: modules/content-overview/content-overview.php:948 +#| msgid "Post created successfully" +msgid "Filter updated successfully." +msgstr "Filtro actualizado correctamente." + #: modules/editorial-metadata/editorial-metadata.php:209 msgid "First Draft Date" msgstr "Fecha del primer borrador" @@ -1188,11 +1319,11 @@ msgstr "Fecha del primer borrador" msgid "First Name" msgstr "Nombre" -#: modules/calendar/calendar.php:1405 +#: modules/calendar/calendar.php:1365 msgid "Five months" msgstr "Cinco meses" -#: modules/calendar/calendar.php:1371 +#: modules/calendar/calendar.php:1331 msgid "Five months ago" msgstr "Hace cinco meses" @@ -1223,27 +1354,27 @@ msgstr "¿Para qué contenido?" msgid "Format" msgstr "Formato" -#: modules/calendar/calendar.php:2133 +#: modules/calendar/calendar.php:2093 msgid "Forward %d weeks" msgstr "Ir %d semanas hacia adelante" -#: modules/calendar/calendar.php:2118 +#: modules/calendar/calendar.php:2078 msgid "Forward 1 week" msgstr "Ir 1 semana adelante" -#: modules/calendar/calendar.php:1403 +#: modules/calendar/calendar.php:1363 msgid "Four months" msgstr "Cuatro meses" -#: modules/calendar/calendar.php:1369 +#: modules/calendar/calendar.php:1329 msgid "Four months ago" msgstr "Hace cuatro meses" -#: modules/calendar/calendar.php:1390 +#: modules/calendar/calendar.php:1350 msgid "Four weeks" msgstr "Cuatro semanas" -#: modules/calendar/calendar.php:816 +#: modules/calendar/calendar.php:776 msgid "Fri" msgstr "Vie" @@ -1251,13 +1382,13 @@ msgstr "Vie" msgid "From date" msgstr "Fecha inicial" -#: modules/editorial-metadata/editorial-metadata.php:2820 +#: modules/editorial-metadata/editorial-metadata.php:2748 msgid "Hidden metadata can only be viewed on the edit post view." msgstr "" "Los metadatos ocultos solo se pueden ver en la vista de edición de la " "publicación." -#: modules/calendar/calendar.php:800 +#: modules/calendar/calendar.php:760 #, php-format msgid "Hide the %s last items" msgstr "Ocultar los últimos %s elementos" @@ -1278,38 +1409,28 @@ msgstr "" "Clave secreta de iCal regenerada. Por favor, informa a todos los usuarios de " "que tendrán que volver a suscribirse." -#: modules/calendar/calendar.php:3562 lib/Notifications/Table/Workflows.php:143 +#: modules/calendar/calendar.php:3522 #: lib/Notifications/Table/Notifications.php:159 +#: lib/Notifications/Table/Workflows.php:143 msgid "ID" msgstr "ID" -#: modules/editorial-metadata/editorial-metadata.php:2108 -#: modules/editorial-metadata/editorial-metadata.php:2472 -#: modules/editorial-metadata/editorial-metadata.php:2827 -msgid "" -"If enabled, this metadata can be seen on the Content Calendar and Content " -"Overview screens." +#: modules/editorial-metadata/editorial-metadata.php:2086 +#: modules/editorial-metadata/editorial-metadata.php:2426 +#: modules/editorial-metadata/editorial-metadata.php:2755 +msgid "If enabled, this metadata can be seen on the Content Calendar screens." msgstr "" "Si se activa, estos metadatos pueden verse en las pantallas «Calendario de " -"contenidos» y «Resumen de contenidos»." +"contenidos»" -#: modules/editorial-metadata/editorial-metadata.php:2132 -#: modules/editorial-metadata/editorial-metadata.php:2498 -msgid "" -"If enabled, this metadata will be available as a filter option on the " -"Content Overview screen." -msgstr "" -"Si se activa, estos metadatos estarán disponibles como opción de filtro en " -"la pantalla de resumen de contenidos." - -#: modules/editorial-metadata/editorial-metadata.php:2156 -#: modules/editorial-metadata/editorial-metadata.php:2524 +#: modules/editorial-metadata/editorial-metadata.php:2110 +#: modules/editorial-metadata/editorial-metadata.php:2452 msgid "" "If enabled, this metadata will be available when adding new posts on the " -"Content Calendar screen." +"Content Calendar and Overview screen." msgstr "" "Si se activa, estos metadatos estarán disponibles al añadir nuevas entradas " -"en la pantalla «Calendario de contenidos»." +"en la pantalla «Calendario de contenidos» y «Resumen de contenidos»." #: modules/settings/settings.php:269 #, php-format @@ -1331,16 +1452,24 @@ msgstr "" "no dudes en contactar con el equipo de soporte. Envíanos un correo " "electrónico:" -#: modules/editorial-metadata/editorial-metadata.php:1998 -#: modules/editorial-metadata/editorial-metadata.php:2363 +#: modules/content-overview/content-overview.php:1135 +msgid "Inbuilt Columns" +msgstr "Columnas integradas" + +#: modules/content-overview/content-overview.php:1197 +msgid "Inbuilt filters" +msgstr "Filtros integrados" + +#: modules/editorial-metadata/editorial-metadata.php:1976 +#: modules/editorial-metadata/editorial-metadata.php:2317 msgid "Indicate the select type." msgstr "Indica el tipo de selección." -#: modules/editorial-metadata/editorial-metadata.php:2307 +#: modules/editorial-metadata/editorial-metadata.php:2261 msgid "Indicate the type of editorial metadata." msgstr "Indicar el tipo de metadatos editoriales." -#: modules/calendar/calendar.php:1512 +#: modules/calendar/calendar.php:1472 msgid "Initializing the calendar. Please wait..." msgstr "Iniciando el calendario. Por favor, espera…" @@ -1363,19 +1492,23 @@ msgstr "Canal no válido para el aviso" msgid "Invalid comment data" msgstr "Datos del comentario no válidos" -#: modules/calendar/calendar.php:3302 +#: modules/calendar/calendar.php:3262 msgid "Invalid date" msgstr "Fecha no válida" -#: modules/calendar/calendar.php:3282 +#: modules/content-overview/content-overview.php:1537 +msgid "Invalid form request." +msgstr "Solicitud de formulario no válida." + +#: modules/calendar/calendar.php:3242 msgid "Invalid input" msgstr "Entrada no válida" -#: core/Error.php:80 modules/calendar/calendar.php:3273 +#: core/Error.php:80 modules/calendar/calendar.php:3233 msgid "Invalid nonce" msgstr "Nonce no válido" -#: modules/calendar/calendar.php:3861 +#: modules/calendar/calendar.php:3821 msgid "Invalid Publish Date supplied." msgstr "Fecha de publicación facilitada no válida." @@ -1383,11 +1516,11 @@ msgstr "Fecha de publicación facilitada no válida." msgid "Invalid receiver for the notification" msgstr "Destinatario no válido para el aviso" -#: modules/calendar/calendar.php:3837 +#: modules/calendar/calendar.php:3797 msgid "Invalid Status supplied." msgstr "Estado facilitado no válido." -#: modules/calendar/calendar.php:1516 +#: modules/calendar/calendar.php:1476 msgid "" "It seems like it is taking too long. Please, try reloading the page again " "and check the browser console looking for errors." @@ -1395,19 +1528,20 @@ msgstr "" "Parece que está tardando demasiado. Por favor, intenta recargar la página de " "nuevo y comprueba la consola del navegador en busca de errores." -#: modules/calendar/calendar.php:818 +#: modules/calendar/calendar.php:778 msgid "Jan" msgstr "Ene" -#: modules/calendar/calendar.php:824 +#: modules/calendar/calendar.php:784 msgid "Jul" msgstr "Jul" -#: modules/calendar/calendar.php:823 +#: modules/calendar/calendar.php:783 msgid "Jun" msgstr "Jun" -#: modules/content-overview/content-overview.php:631 +#: modules/content-overview/content-overview.php:1083 +#: modules/content-overview/content-overview.php:1141 msgid "Last Modified" msgstr "Última modificación" @@ -1415,11 +1549,11 @@ msgstr "Última modificación" msgid "Last Name" msgstr "Apellido" -#: modules/calendar/calendar.php:797 +#: modules/calendar/calendar.php:757 msgid "Loading item..." msgstr "Cargando el elemento…" -#: modules/calendar/calendar.php:796 +#: modules/calendar/calendar.php:756 #: modules/notifications-log/notifications-log.php:210 msgid "Loading..." msgstr "Cargando…" @@ -1440,26 +1574,34 @@ msgstr "Archivo de registro" msgid "Log file not found." msgstr "Archivo de registro no encontrado." -#: modules/editorial-metadata/editorial-metadata.php:2824 +#: modules/editorial-metadata/editorial-metadata.php:2752 msgid "Make Hidden" msgstr "Hacer oculto" -#: modules/editorial-metadata/editorial-metadata.php:2835 +#: modules/editorial-metadata/editorial-metadata.php:2763 msgid "Make Viewable" msgstr "Hacer visible" -#: modules/calendar/calendar.php:820 +#: modules/content-overview/content-overview.php:1871 +msgid "Manage Filters" +msgstr "Gestionar filtros" + +#: modules/calendar/calendar.php:780 msgid "Mar" msgstr "Mar" -#: modules/calendar/calendar.php:2617 +#: modules/calendar/calendar.php:2577 msgid "Max visible posts per date" msgstr "Máximo de entradas visibles por fecha" -#: modules/calendar/calendar.php:822 +#: modules/calendar/calendar.php:782 msgid "May" msgstr "May" +#: modules/content-overview/content-overview.php:1858 +msgid "Me Mode" +msgstr "Modo Me" + #: lib/Notifications/Table/Notifications.php:157 msgid "Message" msgstr "Mensaje" @@ -1468,10 +1610,10 @@ msgstr "Mensaje" msgid "Meta fields" msgstr "Campos meta" -#: modules/editorial-metadata/editorial-metadata.php:2032 -#: modules/editorial-metadata/editorial-metadata.php:2063 -#: modules/editorial-metadata/editorial-metadata.php:2393 -#: modules/editorial-metadata/editorial-metadata.php:2424 +#: modules/editorial-metadata/editorial-metadata.php:2010 +#: modules/editorial-metadata/editorial-metadata.php:2041 +#: modules/editorial-metadata/editorial-metadata.php:2347 +#: modules/editorial-metadata/editorial-metadata.php:2378 msgid "Meta Value" msgstr "Valor meta" @@ -1479,7 +1621,7 @@ msgstr "Valor meta" msgid "Metadata" msgstr "Metadatos" -#: modules/editorial-metadata/editorial-metadata.php:1461 +#: modules/editorial-metadata/editorial-metadata.php:1452 msgid "Metadata name conflicts with existing term. Please choose another." msgstr "" "El nombre de los metadatos entra en conflicto con otro término ya existente. " @@ -1505,7 +1647,7 @@ msgstr "El término de metadatos no existe." msgid "Metadata term updated." msgstr "Término de metadatos actualizado." -#: modules/editorial-metadata/editorial-metadata.php:2698 +#: modules/editorial-metadata/editorial-metadata.php:2626 msgid "Metadata Type" msgstr "Tipo de metadatos" @@ -1521,7 +1663,7 @@ msgstr "minutos" msgid "Modified on" msgstr "Modificado el" -#: modules/calendar/calendar.php:812 +#: modules/calendar/calendar.php:772 msgid "Mon" msgstr "Lun" @@ -1537,16 +1679,16 @@ msgstr "Aviso de perfil más usado" msgid "Most Used Notify User" msgstr "Avisos de usuarios más usados" -#: modules/content-overview/content-overview.php:1912 +#: modules/content-overview/content-overview.php:2990 msgid "Move this item to the Trash" msgstr "Mover este elemento a la papelera" -#: modules/calendar/calendar.php:799 +#: modules/calendar/calendar.php:759 msgid "Moving the item..." msgstr "Moviendo el elemento…" -#: modules/editorial-metadata/editorial-metadata.php:1981 -#: modules/editorial-metadata/editorial-metadata.php:2343 +#: modules/editorial-metadata/editorial-metadata.php:1959 +#: modules/editorial-metadata/editorial-metadata.php:2297 msgid "Multiple Select" msgstr "Selección múltiple" @@ -1560,31 +1702,31 @@ msgstr "Silenciado" msgid "My Content Notifications" msgstr "Mis avisos de contenido" -#: modules/editorial-metadata/editorial-metadata.php:2238 -#: modules/editorial-metadata/editorial-metadata.php:2696 +#: modules/editorial-metadata/editorial-metadata.php:2192 +#: modules/editorial-metadata/editorial-metadata.php:2624 msgid "Name" msgstr "Nombre" -#: modules/editorial-metadata/editorial-metadata.php:1297 -#: modules/editorial-metadata/editorial-metadata.php:1470 +#: modules/editorial-metadata/editorial-metadata.php:1295 +#: modules/editorial-metadata/editorial-metadata.php:1461 msgid "Name already in use. Please choose another." msgstr "El nombre ya está en uso. Por favor, selecciona otro." -#: modules/editorial-metadata/editorial-metadata.php:1307 -#: modules/editorial-metadata/editorial-metadata.php:1314 -#: modules/editorial-metadata/editorial-metadata.php:1483 +#: modules/editorial-metadata/editorial-metadata.php:1305 +#: modules/editorial-metadata/editorial-metadata.php:1312 +#: modules/editorial-metadata/editorial-metadata.php:1474 msgid "Name cannot exceed 200 characters. Please try a shorter name." msgstr "" "El nombre no puede exceder los 200 caracteres. Por favor, prueba con un " "nombre más corto." -#: modules/editorial-metadata/editorial-metadata.php:1290 +#: modules/editorial-metadata/editorial-metadata.php:1288 msgid "Name conflicts with existing term. Please choose another." msgstr "" "El nombre está en conflicto con un término ya existente. Por favor, " "selecciona otro." -#: modules/editorial-metadata/editorial-metadata.php:1475 +#: modules/editorial-metadata/editorial-metadata.php:1466 msgid "" "Name conflicts with slug for another term. Please choose something else." msgstr "" @@ -1615,6 +1757,10 @@ msgstr "Nuevo aviso de perfil" msgid "New Notify User" msgstr "Nuevo aviso de usuario" +#: modules/content-overview/content-overview.php:1888 +msgid "New Post" +msgstr "Nueva entrada" + #: lib/Notifications/Workflow/Step/Event/Post_StatusTransition.php:118 #, php-format msgid "New post status: %s" @@ -1628,17 +1774,15 @@ msgstr "Nuevo estado" msgid "Nickname" msgstr "Alias" -#: modules/calendar/calendar.php:1413 +#: modules/calendar/calendar.php:1373 msgid "Nine months" msgstr "Nueve meses" -#: modules/editorial-metadata/editorial-metadata.php:2097 -#: modules/editorial-metadata/editorial-metadata.php:2121 -#: modules/editorial-metadata/editorial-metadata.php:2145 -#: modules/editorial-metadata/editorial-metadata.php:2456 -#: modules/editorial-metadata/editorial-metadata.php:2483 -#: modules/editorial-metadata/editorial-metadata.php:2509 -#: modules/editorial-metadata/editorial-metadata.php:2762 +#: modules/editorial-metadata/editorial-metadata.php:2075 +#: modules/editorial-metadata/editorial-metadata.php:2099 +#: modules/editorial-metadata/editorial-metadata.php:2410 +#: modules/editorial-metadata/editorial-metadata.php:2437 +#: modules/editorial-metadata/editorial-metadata.php:2690 #: modules/editorial-metadata/input-handlers/editorial-metadata-input-checkbox-handler.php:143 msgid "No" msgstr "No" @@ -1648,7 +1792,7 @@ msgstr "No" msgid "No active notifications found for this %s." msgstr "No se ha encontrado ningún aviso activo para esta %s." -#: modules/calendar/calendar.php:3796 +#: modules/calendar/calendar.php:3756 msgid "No date supplied." msgstr "No se proprocionó fecha." @@ -1656,11 +1800,11 @@ msgstr "No se proprocionó fecha." msgid "No editorial comments." msgstr "Sin comentarios editoriales" -#: modules/editorial-metadata/editorial-metadata.php:2793 +#: modules/editorial-metadata/editorial-metadata.php:2721 msgid "No editorial metadata found." msgstr "No se encontraron metadatos editoriales." -#: modules/calendar/calendar.php:3293 +#: modules/calendar/calendar.php:3253 msgid "No enough permissions" msgstr "No tienes los permisos necesarios" @@ -1687,7 +1831,12 @@ msgstr "No hay avisos de perfiles" msgid "No notify users" msgstr "No hay avisos de usuarios" -#: modules/calendar/calendar.php:838 +#: modules/content-overview/content-overview.php:2534 +#| msgid "No workflows found." +msgid "No results found" +msgstr "No se han encontrado resultados" + +#: modules/calendar/calendar.php:798 msgid "No terms" msgstr "No hay términos" @@ -1713,8 +1862,8 @@ msgstr "" "Ha fallado la comprobación del nonce. Por favor, asegúrate de que estás " "editando los comentarios editoriales." -#: modules/calendar/calendar.php:1818 -#: modules/content-overview/content-overview.php:1797 +#: modules/calendar/calendar.php:1778 +#: modules/content-overview/content-overview.php:2857 msgid "None" msgstr "Ninguno" @@ -1795,7 +1944,7 @@ msgstr "Avisos de usuarios" msgid "Notify when content is published" msgstr "Avisar cuando se publique contenido" -#: modules/calendar/calendar.php:828 +#: modules/calendar/calendar.php:788 msgid "Nov" msgstr "Nov" @@ -1803,11 +1952,7 @@ msgstr "Nov" msgid "Number" msgstr "Número" -#: modules/content-overview/content-overview.php:689 -msgid "Number of Columns: " -msgstr "Número de columnas: " - -#: modules/calendar/calendar.php:827 +#: modules/calendar/calendar.php:787 msgid "Oct" msgstr "Oct" @@ -1824,21 +1969,21 @@ msgstr "" "En cada shortcode, puedes seleccionar uno o más campos. Si hay más de uno, " "se mostrarán separados por «,»." -#: modules/calendar/calendar.php:1396 +#: modules/calendar/calendar.php:1356 msgid "One month" msgstr "Un mes" -#: modules/calendar/calendar.php:1363 +#: modules/calendar/calendar.php:1323 msgid "One month ago" msgstr "Hace un mes" -#: modules/calendar/calendar.php:1384 +#: modules/calendar/calendar.php:1344 msgid "One week" msgstr "Una semana" -#: modules/editorial-metadata/editorial-metadata.php:120 #: modules/calendar/calendar.php:206 #: modules/editorial-comments/editorial-comments.php:82 +#: modules/editorial-metadata/editorial-metadata.php:120 #: modules/notifications/notifications.php:93 msgid "Overview" msgstr "Resumen" @@ -1871,6 +2016,10 @@ msgstr "Aviso de usuario superior" msgid "Parent Notify User:" msgstr "Aviso de usuario superior:" +#: modules/content-overview/content-overview.php:2366 +msgid "Passed" +msgstr "Aprobado" + #: modules/debug/debug.php:293 msgid "Path" msgstr "Ruta" @@ -1893,25 +2042,25 @@ msgstr "" msgid "Please enter a comment." msgstr "Por favor, introduce un comentario." -#: modules/editorial-metadata/editorial-metadata.php:1447 +#: modules/editorial-metadata/editorial-metadata.php:1438 msgid "Please enter a name for the editorial metadata" msgstr "Por favor, introduce un nombre para los metadatos editoriales" -#: modules/editorial-metadata/editorial-metadata.php:1277 +#: modules/editorial-metadata/editorial-metadata.php:1275 msgid "Please enter a name for the editorial metadata." msgstr "Por favor, introduce un nombre para los metadatos editoriales." -#: modules/editorial-metadata/editorial-metadata.php:1284 +#: modules/editorial-metadata/editorial-metadata.php:1282 msgid "Please enter a slug for the editorial metadata." msgstr "Por favor, introduce un slug para los metadatos editoriales." -#: modules/editorial-metadata/editorial-metadata.php:1452 +#: modules/editorial-metadata/editorial-metadata.php:1443 msgid "Please enter a valid, non-numeric name for the editorial metadata." msgstr "" "Por favor, introduce un nombre válido y no númerico para los metadatos " "editoriales." -#: modules/editorial-metadata/editorial-metadata.php:1324 +#: modules/editorial-metadata/editorial-metadata.php:1322 msgid "Please select a valid metadata type." msgstr "Por favor, selecciona un tipo de metadatos válido." @@ -1919,7 +2068,8 @@ msgstr "Por favor, selecciona un tipo de metadatos válido." msgid "Please select at least one event" msgstr "Por favor selecciona por lo menos un evento" -#: modules/calendar/calendar.php:810 +#: modules/calendar/calendar.php:770 +#: modules/content-overview/content-overview.php:1694 msgid "Please, wait! Loading the form fields..." msgstr "¡Por favor, espera! Cargando los campos del formulario..." @@ -1939,7 +2089,7 @@ msgstr "Avisos de perfiles populares" msgid "Popular Notify Users" msgstr "Avisos de usuarios populares" -#: modules/editorial-metadata/editorial-metadata.php:2695 +#: modules/editorial-metadata/editorial-metadata.php:2623 msgid "Position" msgstr "Posición" @@ -1947,15 +2097,16 @@ msgstr "Posición" msgid "Post" msgstr "Entrada" -#: modules/calendar/calendar.php:3937 +#: modules/calendar/calendar.php:3897 msgid "Post could not be created" msgstr "La publicación no pudo ser creada" -#: modules/calendar/calendar.php:3930 +#: modules/calendar/calendar.php:3890 msgid "Post created successfully" msgstr "Entrada creada correctamente" -#: modules/content-overview/content-overview.php:630 +#: modules/content-overview/content-overview.php:1082 +#: modules/content-overview/content-overview.php:1140 msgid "Post Date" msgstr "Fecha de publicación" @@ -1971,12 +2122,15 @@ msgstr "La entrada no existe" msgid "Post ID: %d" msgstr "ID de la entrada: %d" -#: modules/calendar/calendar.php:3288 +#: modules/calendar/calendar.php:3248 msgid "Post not found" msgstr "Entrada no encontrada" -#: modules/calendar/calendar.php:2918 modules/calendar/calendar.php:3573 -#: modules/calendar/calendar.php:3653 +#: modules/calendar/calendar.php:2878 modules/calendar/calendar.php:3533 +#: modules/calendar/calendar.php:3613 +#: modules/content-overview/content-overview.php:1199 +#: modules/content-overview/content-overview.php:1723 +#: modules/content-overview/content-overview.php:2061 msgid "Post Status" msgstr "Estado de la entrada" @@ -1988,8 +2142,13 @@ msgstr "Estado de la publicación actualizado." msgid "Post Status Widget" msgstr "Widget de estado de publicación" -#: modules/calendar/calendar.php:1991 modules/calendar/calendar.php:3557 -#: modules/content-overview/content-overview.php:628 +#: modules/calendar/calendar.php:1951 modules/calendar/calendar.php:3517 +#: modules/content-overview/content-overview.php:1080 +#: modules/content-overview/content-overview.php:1096 +#: modules/content-overview/content-overview.php:1138 +#: modules/content-overview/content-overview.php:1201 +#: modules/content-overview/content-overview.php:1712 +#: modules/content-overview/content-overview.php:2144 msgid "Post Type" msgstr "Tipo de contenido" @@ -1997,11 +2156,11 @@ msgstr "Tipo de contenido" msgid "Post type" msgstr "Tipo de contenido" -#: modules/calendar/calendar.php:808 +#: modules/calendar/calendar.php:768 msgid "Post type not found" msgstr "No se ha encontrado el tipo de contenido" -#: modules/calendar/calendar.php:809 +#: modules/calendar/calendar.php:769 msgid "Post type:" msgstr "Tipo de contenido:" @@ -2010,16 +2169,16 @@ msgstr "Tipo de contenido:" msgid "Post type: %s" msgstr "Tipo de contenido: %s" -#: modules/editorial-metadata/editorial-metadata.php:2697 +#: modules/editorial-metadata/editorial-metadata.php:2625 #: lib/Notifications/Workflow/Step/Event_Content/Filter/Post_Type.php:34 msgid "Post Types" msgstr "Tipos de contenido" -#: modules/calendar/calendar.php:2561 +#: modules/calendar/calendar.php:2521 msgid "Post types to show" msgstr "Tipos de contenidos a mostrar" -#: modules/content-overview/content-overview.php:298 +#: modules/content-overview/content-overview.php:252 msgid "Post types to show:" msgstr "Tipos de contenido a mostrar:" @@ -2027,17 +2186,17 @@ msgstr "Tipos de contenido a mostrar:" msgid "Posts at a Glance" msgstr "Publicaciones de un vistazo" -#: modules/calendar/calendar.php:2593 +#: modules/calendar/calendar.php:2553 msgid "Posts publish time format" msgstr "Formato de hora de las entradas publicadas" -#: modules/calendar/calendar.php:1862 modules/calendar/calendar.php:3617 -#: modules/content-overview/content-overview.php:1945 +#: modules/calendar/calendar.php:1822 modules/calendar/calendar.php:3577 +#: modules/content-overview/content-overview.php:3023 msgid "Preview" msgstr "Vista previa" -#: modules/calendar/calendar.php:1859 -#: modules/content-overview/content-overview.php:1942 +#: modules/calendar/calendar.php:1819 +#: modules/content-overview/content-overview.php:3020 #, php-format msgid "Preview “%s”" msgstr "Vista previa “%s”" @@ -2046,7 +2205,7 @@ msgstr "Vista previa “%s”" msgid "Previous status" msgstr "Estado anterior" -#: modules/content-overview/content-overview.php:1194 +#: modules/content-overview/content-overview.php:1880 msgid "Print" msgstr "Imprimir" @@ -2054,20 +2213,20 @@ msgstr "Imprimir" msgid "Private" msgstr "Privado" -#: modules/calendar/calendar.php:3659 +#: modules/calendar/calendar.php:3619 msgid "Publish Time" msgstr "Hora de publicación" -#: common/php/class-module.php:262 modules/calendar/calendar.php:2004 +#: common/php/class-module.php:262 modules/calendar/calendar.php:1964 msgid "Published" msgstr "Publicado" -#: modules/calendar/calendar.php:2917 +#: modules/calendar/calendar.php:2877 msgid "Publishing Time" msgstr "Hora de la publicación" #. Author of the plugin -#: modules/settings/settings.php:61 modules/calendar/calendar.php:1350 +#: modules/calendar/calendar.php:1310 modules/settings/settings.php:61 msgid "PublishPress" msgstr "PublishPress" @@ -2107,11 +2266,11 @@ msgstr "Ajustes de PublishPress" msgid "Receiver" msgstr "Destinatario" -#: modules/calendar/calendar.php:2694 +#: modules/calendar/calendar.php:2654 msgid "Regenerate calendar feed secret" msgstr "Regenerar clave secreta del feed del calendario" -#: modules/editorial-metadata/editorial-metadata.php:1693 +#: modules/editorial-metadata/editorial-metadata.php:1677 msgid "Register metadata for these post types:" msgstr "Registrar metadatos para estos tipos de contenido:" @@ -2124,6 +2283,14 @@ msgstr "Eliminar" msgid "Remove PublishPress ads and branding" msgstr "Eliminar los anuncios y la marca de PublishPress" +#: modules/content-overview/content-overview.php:1250 +msgid "Reorder Columns" +msgstr "Reordenar columnas" + +#: modules/content-overview/content-overview.php:1398 +msgid "Reorder Filters" +msgstr "Reordenar filtros" + #: modules/editorial-comments/editorial-comments.php:623 msgid "Reply" msgstr "Responder" @@ -2146,12 +2313,17 @@ msgstr "Solicitar soporte" msgid "Reschedule" msgstr "Reprogramar" -#: modules/calendar/calendar.php:2110 -#: modules/content-overview/content-overview.php:1025 -#: modules/content-overview/content-overview.php:1147 +#: modules/calendar/calendar.php:2070 +#: modules/content-overview/content-overview.php:858 +#: modules/content-overview/content-overview.php:1954 msgid "Reset" msgstr "Restablecer" +#: modules/content-overview/content-overview.php:1953 +#| msgid "Filter" +msgid "Reset Filters" +msgstr "Restablecer filtros" + #: modules/reviews/reviews.php:66 msgid "Reviews" msgstr "Reseñas" @@ -2160,8 +2332,8 @@ msgstr "Reseñas" msgid "Role" msgstr "Perfil" -#: lib/Notifications/Workflow/Step/Receiver/Role.php:147 #: lib/Notifications/Workflow/Step/Receiver/Follower.php:100 +#: lib/Notifications/Workflow/Step/Receiver/Role.php:147 #, php-format msgid "role:%s" msgstr "perfil: %s" @@ -2171,28 +2343,28 @@ msgstr "perfil: %s" msgid "Roles" msgstr "Perfiles" -#: modules/calendar/calendar.php:817 +#: modules/calendar/calendar.php:777 msgid "Sat" msgstr "Sáb" -#: modules/calendar/calendar.php:804 modules/calendar/calendar.php:1888 +#: modules/calendar/calendar.php:764 modules/calendar/calendar.php:1848 msgid "Save" msgstr "Guardar" -#: modules/calendar/calendar.php:1882 +#: modules/calendar/calendar.php:1842 #, php-format msgid "Save “%s”" msgstr "Guardar “%s”" -#: modules/calendar/calendar.php:806 +#: modules/calendar/calendar.php:766 msgid "Save and edit" msgstr "Guardar y editar" -#: modules/calendar/calendar.php:805 +#: modules/calendar/calendar.php:765 msgid "Saving..." msgstr "Guardando..." -#: common/php/class-module.php:264 modules/calendar/calendar.php:1999 +#: common/php/class-module.php:264 modules/calendar/calendar.php:1959 #: modules/notifications-log/library/NotificationsLogTable.php:523 msgid "Scheduled" msgstr "Programado" @@ -2201,16 +2373,12 @@ msgstr "Programado" msgid "Scheduled for %d receivers. Click here to display them." msgstr "Programado para %d destinatarios. Haz clic aquí para mostrarlos." -#: modules/content-overview/content-overview.php:271 -msgid "Screen Layout" -msgstr "Diseño de pantalla" - -#: modules/content-overview/content-overview.php:1049 +#: modules/content-overview/content-overview.php:1902 msgid "Search" msgstr "Buscar" -#: modules/content-overview/content-overview.php:1048 -#: modules/content-overview/content-overview.php:1347 +#: modules/content-overview/content-overview.php:1901 +#: modules/content-overview/content-overview.php:2168 msgid "Search box" msgstr "Caja de búsqueda" @@ -2248,13 +2416,22 @@ msgstr "Resultados de la búsqueda de «%s»" msgid "Select at least one option for each section." msgstr "Selecciona al menos una opción para cada sección." -#: modules/editorial-metadata/editorial-metadata.php:1958 -#: modules/editorial-metadata/editorial-metadata.php:2320 +#: modules/content-overview/content-overview.php:1279 +#: modules/content-overview/content-overview.php:1427 +msgid "Select Metakey" +msgstr "Seleccionar Metakey" + +#: modules/content-overview/content-overview.php:2210 +msgid "Select option..." +msgstr "Seleccionar option…" + +#: modules/editorial-metadata/editorial-metadata.php:1936 +#: modules/editorial-metadata/editorial-metadata.php:2274 msgid "Select roles..." msgstr "Seleccionar perfiles…" -#: modules/editorial-metadata/editorial-metadata.php:1976 -#: modules/editorial-metadata/editorial-metadata.php:2339 +#: modules/editorial-metadata/editorial-metadata.php:1954 +#: modules/editorial-metadata/editorial-metadata.php:2293 msgid "Select Type" msgstr "Seleccionar el tipo" @@ -2266,7 +2443,7 @@ msgstr "Enviar avisos de recordatorio" msgid "Sent" msgstr "Enviado" -#: modules/calendar/calendar.php:826 +#: modules/calendar/calendar.php:786 msgid "Sep" msgstr "Sep" @@ -2290,7 +2467,7 @@ msgstr "Ajustes" msgid "settings" msgstr "ajustes" -#: modules/calendar/calendar.php:1409 +#: modules/calendar/calendar.php:1369 msgid "Seven months" msgstr "Siete meses" @@ -2298,27 +2475,23 @@ msgstr "Siete meses" msgid "shortcode" msgstr "shortcode" -#: modules/calendar/calendar.php:801 +#: modules/calendar/calendar.php:761 #, php-format msgid "Show %s more" msgstr "Mostrar %s más" -#: modules/editorial-metadata/editorial-metadata.php:2117 -#: modules/editorial-metadata/editorial-metadata.php:2480 -msgid "Show as Content Overview filters" -msgstr "Mostrar como filtros de resumen de contenido" - -#: modules/content-overview/content-overview.php:983 +#: modules/content-overview/content-overview.php:816 msgid "Show content from" msgstr "Mostrar contenido desde" -#: modules/editorial-metadata/editorial-metadata.php:2141 -#: modules/editorial-metadata/editorial-metadata.php:2506 -msgid "Show on Content Calendar form" -msgstr "Mostrar en formulario «Calendario de contenidos»" +#: modules/editorial-metadata/editorial-metadata.php:2095 +#: modules/editorial-metadata/editorial-metadata.php:2434 +msgid "Show on Content Calendar and Overview form" +msgstr "" +"Mostrar en formulario «Calendario de contenidos» y «Resumen de contenidos»." -#: modules/editorial-metadata/editorial-metadata.php:2189 -#: modules/editorial-metadata/editorial-metadata.php:2555 +#: modules/editorial-metadata/editorial-metadata.php:2143 +#: modules/editorial-metadata/editorial-metadata.php:2483 msgid "Show on Post Types screen" msgstr "Mostrar en la pantalla «Tipos de contenido»" @@ -2329,8 +2502,8 @@ msgstr "" "Mostrar los enlaces «Avísame» y «Deja de avisarme» para estos tipos de " "contenidos:" -#: modules/editorial-metadata/editorial-metadata.php:1980 -#: modules/editorial-metadata/editorial-metadata.php:2342 +#: modules/editorial-metadata/editorial-metadata.php:1958 +#: modules/editorial-metadata/editorial-metadata.php:2296 msgid "Single Select" msgstr "Selección individual" @@ -2339,11 +2512,11 @@ msgstr "Selección individual" msgid "Site Administrator" msgstr "Administrador del sitio" -#: modules/calendar/calendar.php:1407 +#: modules/calendar/calendar.php:1367 msgid "Six months" msgstr "Seis meses" -#: modules/calendar/calendar.php:1373 +#: modules/calendar/calendar.php:1333 msgid "Six months ago" msgstr "Hace seis meses" @@ -2368,12 +2541,12 @@ msgstr "Omitido" msgid "Slack integration for notifications" msgstr "Integración de Slack para avisos" -#: modules/editorial-metadata/editorial-metadata.php:1909 -#: modules/editorial-metadata/editorial-metadata.php:2252 +#: modules/editorial-metadata/editorial-metadata.php:1887 +#: modules/editorial-metadata/editorial-metadata.php:2206 msgid "Slug" msgstr "Slug" -#: modules/editorial-metadata/editorial-metadata.php:1301 +#: modules/editorial-metadata/editorial-metadata.php:1299 msgid "Slug already in use. Please choose another." msgstr "El slug ya está en uso. Por favor, selecciona otro." @@ -2426,11 +2599,13 @@ msgstr "" "Lo siento, pero no tienes los privilegios para editar este comentario " "editorial. Por favor, habla con tu administrador." -#: modules/calendar/calendar.php:1357 +#: modules/calendar/calendar.php:1317 msgid "Start date" msgstr "Fecha de inicio" -#: modules/content-overview/content-overview.php:627 +#: modules/content-overview/content-overview.php:1079 +#: modules/content-overview/content-overview.php:1093 +#: modules/content-overview/content-overview.php:1137 #: modules/notifications-log/library/NotificationsLogTable.php:494 msgid "Status" msgstr "Estado" @@ -2441,7 +2616,7 @@ msgstr "Estado" msgid "Status was changed for %1$s #%2$s \"%3$s\" by %4$s %5$s" msgstr "El estado se cambió de %1$s #%2$s «%3$s» por %4$s %5$s" -#: modules/calendar/calendar.php:2585 +#: modules/calendar/calendar.php:2545 msgid "Statuses to display publish time" msgstr "Estados para mostrar la hora de publicación" @@ -2462,7 +2637,7 @@ msgstr "Asunto:" msgid "Submitted on" msgstr "Enviado el" -#: modules/calendar/calendar.php:1352 +#: modules/calendar/calendar.php:1312 msgid "Subscribe in iCal or Google Calendar" msgstr "Suscríbete en iCal o Google Calendar" @@ -2470,7 +2645,7 @@ msgstr "Suscríbete en iCal o Google Calendar" msgid "Success" msgstr "Correcto" -#: modules/calendar/calendar.php:811 +#: modules/calendar/calendar.php:771 msgid "Sun" msgstr "Dom" @@ -2478,19 +2653,21 @@ msgstr "Dom" msgid "synchronous" msgstr "síncrono" -#: modules/calendar/calendar.php:3588 +#: modules/calendar/calendar.php:3548 msgid "Tag" msgid_plural "Tags" msgstr[0] "Etiqueta" msgstr[1] "Etiquetas" -#: modules/calendar/calendar.php:3687 +#: modules/calendar/calendar.php:3647 +#: modules/content-overview/content-overview.php:1751 msgid "Tags" msgstr "Etiquetas" -#: modules/content-overview/content-overview.php:306 -msgid "Taxonomies to show:" -msgstr "Taxonomías a mostrar:" +#: modules/content-overview/content-overview.php:1155 +#: modules/content-overview/content-overview.php:1215 +msgid "Taxonomies" +msgstr "Taxonomías" #: lib/Notifications/Workflow/Step/Event_Content/Taxonomy.php:24 msgid "Taxonomy" @@ -2506,7 +2683,7 @@ msgctxt "taxonomy singular name" msgid "Metadata" msgstr "Metadatos" -#: modules/calendar/calendar.php:1415 +#: modules/calendar/calendar.php:1375 msgid "Ten months" msgstr "Diez meses" @@ -2514,7 +2691,7 @@ msgstr "Diez meses" msgid "Terms" msgstr "Términos" -#: modules/editorial-metadata/editorial-metadata.php:1605 +#: modules/editorial-metadata/editorial-metadata.php:1589 msgid "Terms not set." msgstr "Términos no establecidos." @@ -2522,7 +2699,7 @@ msgstr "Términos no establecidos." msgid "Text" msgstr "Texto" -#: modules/editorial-metadata/editorial-metadata.php:2261 +#: modules/editorial-metadata/editorial-metadata.php:2215 msgid "" "The \"slug\" is the URL-friendly version of the name. It is usually all " "lowercase and contains only letters, numbers, and hyphens." @@ -2530,8 +2707,8 @@ msgstr "" "El «slug» es la versión del nombre amigable con las URL. Normalmente va en " "minúsculas y contiene solo letras, números y guiones altos." -#: modules/editorial-metadata/editorial-metadata.php:1930 -#: modules/editorial-metadata/editorial-metadata.php:2278 +#: modules/editorial-metadata/editorial-metadata.php:1908 +#: modules/editorial-metadata/editorial-metadata.php:2232 msgid "" "The description can be used to communicate with your team about what the " "metadata is for." @@ -2543,12 +2720,12 @@ msgstr "" msgid "The Events Calendar Integration" msgstr "La integración The Events Calendar " -#: modules/editorial-metadata/editorial-metadata.php:1944 +#: modules/editorial-metadata/editorial-metadata.php:1922 msgid "The metadata type cannot be changed once created." msgstr "El tipo de metadatos no se puede cambiar una vez creado." -#: modules/editorial-metadata/editorial-metadata.php:1904 -#: modules/editorial-metadata/editorial-metadata.php:2247 +#: modules/editorial-metadata/editorial-metadata.php:1882 +#: modules/editorial-metadata/editorial-metadata.php:2201 msgid "The name is for labeling the metadata field." msgstr "El nombre es para etiquetar el campo de metadatos." @@ -2566,7 +2743,7 @@ msgstr "" "El módulo de avisos necesitará estar activado para que se muestre este " "widget." -#: modules/calendar/calendar.php:2661 +#: modules/calendar/calendar.php:2621 msgid "" "The number of weeks shown on the calendar can be changed on a user-by-user " "basis using the calendar's screen options." @@ -2578,11 +2755,11 @@ msgstr "" msgid "The parent log was deleted or probably rescheduled" msgstr "El registro superior ha sido borrado o probablemente reprogramado" -#: modules/calendar/calendar.php:3807 +#: modules/calendar/calendar.php:3767 msgid "The selected post type is not enabled for the calendar." msgstr "El tipo de contenido seleccionado no está activado para el calendario." -#: modules/calendar/calendar.php:4286 +#: modules/calendar/calendar.php:4246 msgid "" "The selected user doesn't have enough permissions to be set as the post " "author." @@ -2590,11 +2767,11 @@ msgstr "" "El usuario seleccionado no tiene suficientes permisos como para definirle " "como autor de la entrada." -#: modules/editorial-metadata/editorial-metadata.php:1914 +#: modules/editorial-metadata/editorial-metadata.php:1892 msgid "The slug cannot be changed once the term has been created." msgstr "El slug no puede cambiarse una vez el término ha sido creado." -#: modules/content-overview/content-overview.php:1564 +#: modules/content-overview/content-overview.php:2539 msgid "There are no posts in the range or filter specified." msgstr "No hay entradas en el rango o filtro especificado." @@ -2641,13 +2818,13 @@ msgstr "" "Esta es una vista previa del mensaje programado. Todavía se puede cambiar el " "contenido hasta que se envíe el aviso." -#: modules/editorial-metadata/editorial-metadata.php:2170 -#: modules/editorial-metadata/editorial-metadata.php:2536 +#: modules/editorial-metadata/editorial-metadata.php:2124 +#: modules/editorial-metadata/editorial-metadata.php:2464 msgid "This metadata will be available for these post types." msgstr "Estos metadatos estarán disponibles para estos tipos de contenido." -#: modules/editorial-metadata/editorial-metadata.php:2194 -#: modules/editorial-metadata/editorial-metadata.php:2559 +#: modules/editorial-metadata/editorial-metadata.php:2148 +#: modules/editorial-metadata/editorial-metadata.php:2487 msgid "" "This metadata will be viewable on the overview screens for these post types." msgstr "" @@ -2682,26 +2859,27 @@ msgstr "" "Esto no tendrá ningún efecto a menos que tengas al menos un flujo de trabajo " "como objetivo de la caja «Avísame»." -#: modules/calendar/calendar.php:1401 +#: modules/calendar/calendar.php:1361 msgid "Three months" msgstr "Tres meses" -#: modules/calendar/calendar.php:1367 +#: modules/calendar/calendar.php:1327 msgid "Three months ago" msgstr "Hace tres meses" -#: modules/calendar/calendar.php:1388 +#: modules/calendar/calendar.php:1348 msgid "Three weeks" msgstr "Tres semanas" -#: modules/calendar/calendar.php:815 +#: modules/calendar/calendar.php:775 msgid "Thu" msgstr "Jue" -#: modules/calendar/calendar.php:3648 -#: modules/content-overview/content-overview.php:626 -#: lib/Notifications/Table/Workflows.php:142 +#: modules/calendar/calendar.php:3608 +#: modules/content-overview/content-overview.php:557 +#: modules/content-overview/content-overview.php:1718 #: lib/Notifications/Table/Notifications.php:156 +#: lib/Notifications/Table/Workflows.php:142 msgid "Title" msgstr "Título" @@ -2710,7 +2888,9 @@ msgstr "Título" msgid "Title: %s" msgstr "Título: %s" -#: modules/content-overview/content-overview.php:1413 +#: modules/content-overview/content-overview.php:1915 +#: modules/content-overview/content-overview.php:2244 +#: modules/content-overview/content-overview.php:2278 msgid "to" msgstr "a" @@ -2718,43 +2898,43 @@ msgstr "a" msgid "To date" msgstr "Fecha final" -#: modules/calendar/calendar.php:837 modules/calendar/calendar.php:2158 +#: modules/calendar/calendar.php:797 modules/calendar/calendar.php:2118 msgid "Today" msgstr "Hoy" -#: modules/calendar/calendar.php:2152 +#: modules/calendar/calendar.php:2112 #, php-format msgid "Today is %s" msgstr "Hoy es %s" -#: common/php/class-module.php:267 modules/calendar/calendar.php:1848 -#: modules/calendar/calendar.php:3607 -#: modules/content-overview/content-overview.php:1916 +#: common/php/class-module.php:267 modules/calendar/calendar.php:1808 +#: modules/calendar/calendar.php:3567 +#: modules/content-overview/content-overview.php:2994 msgid "Trash" msgstr "Papelera" -#: modules/calendar/calendar.php:813 +#: modules/calendar/calendar.php:773 msgid "Tue" msgstr "Mar" -#: modules/calendar/calendar.php:1419 +#: modules/calendar/calendar.php:1379 msgid "Twelve months" msgstr "Doce meses" -#: modules/calendar/calendar.php:1399 +#: modules/calendar/calendar.php:1359 msgid "Two months" msgstr "Dos meses" -#: modules/calendar/calendar.php:1365 +#: modules/calendar/calendar.php:1325 msgid "Two months ago" msgstr "Hace dos meses" -#: modules/calendar/calendar.php:1386 +#: modules/calendar/calendar.php:1346 msgid "Two weeks" msgstr "Dos semanas" -#: modules/editorial-metadata/editorial-metadata.php:1939 -#: modules/editorial-metadata/editorial-metadata.php:2286 +#: modules/editorial-metadata/editorial-metadata.php:1917 +#: modules/editorial-metadata/editorial-metadata.php:2240 msgid "Type" msgstr "Tipo" @@ -2762,8 +2942,8 @@ msgstr "Tipo" msgid "Undefined error found" msgstr "Se ha encontrado un error indefinido" -#: modules/calendar/calendar.php:1475 -#: modules/content-overview/content-overview.php:1076 +#: modules/calendar/calendar.php:1435 +#: modules/content-overview/content-overview.php:893 msgid "Undo" msgstr "Deshacer" @@ -2771,7 +2951,7 @@ msgstr "Deshacer" msgid "Unpublished Content" msgstr "Contenido sin publicar" -#: modules/calendar/calendar.php:802 modules/calendar/calendar.php:3813 +#: modules/calendar/calendar.php:762 modules/calendar/calendar.php:3773 msgid "Untitled" msgstr "Sin título" @@ -2779,7 +2959,7 @@ msgstr "Sin título" msgid "Update Editorial Metadata" msgstr "Actualizar metadatos editoriales" -#: modules/editorial-metadata/editorial-metadata.php:2217 +#: modules/editorial-metadata/editorial-metadata.php:2171 msgid "Update Metadata Term" msgstr "Actualizar términos de metadatos" @@ -2832,8 +3012,8 @@ msgstr "usuario" msgid "User making changes or comments" msgstr "Usuario haciendo cambios o comentarios" -#: modules/editorial-metadata/editorial-metadata.php:1950 -#: modules/editorial-metadata/editorial-metadata.php:2312 +#: modules/editorial-metadata/editorial-metadata.php:1928 +#: modules/editorial-metadata/editorial-metadata.php:2266 msgid "User role" msgstr "Perfil de usuario" @@ -2859,13 +3039,13 @@ msgstr "Usuarios" msgid "Users who selected \"Notify me\" for the content" msgstr "Usuarios que seleccionaron «Avísame» para el contenido" -#: modules/calendar/calendar.php:1872 modules/calendar/calendar.php:3614 -#: modules/content-overview/content-overview.php:1932 +#: modules/calendar/calendar.php:1832 modules/calendar/calendar.php:3574 +#: modules/content-overview/content-overview.php:3010 msgid "View" msgstr "Ver" -#: modules/calendar/calendar.php:1866 -#: modules/content-overview/content-overview.php:1926 +#: modules/calendar/calendar.php:1826 +#: modules/content-overview/content-overview.php:3004 #, php-format msgid "View “%s”" msgstr "Ver “%s”" @@ -2875,7 +3055,7 @@ msgstr "Ver “%s”" msgid "View “%s” on Google Maps" msgstr "Ver “%s” en Google Maps" -#: modules/calendar/calendar.php:4072 +#: modules/calendar/calendar.php:4032 msgid "View all categories" msgstr "Ver todas las categorías" @@ -2901,9 +3081,9 @@ msgstr "Ver el aviso de usuario" msgid "View: %s" msgstr "Ver: %s" -#: modules/editorial-metadata/editorial-metadata.php:2093 -#: modules/editorial-metadata/editorial-metadata.php:2453 -#: modules/editorial-metadata/editorial-metadata.php:2700 +#: modules/editorial-metadata/editorial-metadata.php:2071 +#: modules/editorial-metadata/editorial-metadata.php:2407 +#: modules/editorial-metadata/editorial-metadata.php:2628 msgid "Viewable" msgstr "Visible" @@ -2911,7 +3091,7 @@ msgstr "Visible" msgid "Warning" msgstr "Advertencia" -#: modules/calendar/calendar.php:814 +#: modules/calendar/calendar.php:774 msgid "Wed" msgstr "Mié" @@ -2982,13 +3162,11 @@ msgstr "Flujo de trabajo: %s" msgid "Workflows" msgstr "Flujos de trabajo" -#: modules/editorial-metadata/editorial-metadata.php:2098 -#: modules/editorial-metadata/editorial-metadata.php:2122 -#: modules/editorial-metadata/editorial-metadata.php:2146 -#: modules/editorial-metadata/editorial-metadata.php:2457 -#: modules/editorial-metadata/editorial-metadata.php:2484 -#: modules/editorial-metadata/editorial-metadata.php:2510 -#: modules/editorial-metadata/editorial-metadata.php:2760 +#: modules/editorial-metadata/editorial-metadata.php:2076 +#: modules/editorial-metadata/editorial-metadata.php:2100 +#: modules/editorial-metadata/editorial-metadata.php:2411 +#: modules/editorial-metadata/editorial-metadata.php:2438 +#: modules/editorial-metadata/editorial-metadata.php:2688 #: modules/editorial-metadata/input-handlers/editorial-metadata-input-checkbox-handler.php:142 msgid "Yes" msgstr "Sí" @@ -3019,10 +3197,26 @@ msgstr "" msgid "You can see all editorial comments on this %s here: " msgstr "Puedes ver todos los comentarios editoriales en esta %s aquí: " +#: modules/content-overview/content-overview.php:1149 +#: modules/content-overview/content-overview.php:1209 +#| msgid "No editorial metadata found." +msgid "You do not have any editorial metadata enabled" +msgstr "No hay metadatos editoriales activados" + +#: modules/content-overview/content-overview.php:1156 +#: modules/content-overview/content-overview.php:1216 +msgid "You do not have any public taxonomies" +msgstr "No hay ninguna taxonomía pública" + #: publishpress.php:670 msgid "You do not have necessary permissions to complete this action." msgstr "No tienes los permisos necesarios para completar esta acción." +#: modules/content-overview/content-overview.php:1009 +#, php-format +msgid "You do not have permission to add new %s" +msgstr "Lo siento, no tienes permisos para añadir nuevo %s" + #: lib/Notifications/Table/Notifications.php:235 msgid "You don't have any notifications" msgstr "No tienes avisos" @@ -3036,6 +3230,22 @@ msgstr "" "Estás usando PublishPress Planner Free. La versión Pro tiene más " "características y soporte. %sPasar a Pro%s" +#~ msgid "Click to toggle" +#~ msgstr "Haz clic para activar" + +#~ msgid "" +#~ "If enabled, this metadata will be available as a filter option on the " +#~ "Content Overview screen." +#~ msgstr "" +#~ "Si se activa, estos metadatos estarán disponibles como opción de filtro " +#~ "en la pantalla de resumen de contenidos." + +#~ msgid "Screen Layout" +#~ msgstr "Diseño de pantalla" + +#~ msgid "Taxonomies to show:" +#~ msgstr "Taxonomías a mostrar:" + #~ msgid "said on %1$s at %2$s" #~ msgstr "dicho el %1$s a las %2$s" @@ -3131,9 +3341,6 @@ msgstr "" #~ msgid "Could not delete the status: " #~ msgstr "No se pudo eliminar el estado: " -#~ msgid "Custom Status" -#~ msgstr "Estado personalizado" - #~ msgid "Custom status doesn't exist." #~ msgstr "El estado personalizado no existe." @@ -3211,10 +3418,6 @@ msgstr "" #~ "Mostrar el menú desplegable de estados en la pantalla de edición de la " #~ "publicación:" -#~ msgid "Sorry, you do not have permission to edit custom statuses." -#~ msgstr "" -#~ "Lo siento, no tienes permisos para editar los estados personalizados." - #~ msgid "Status does not exist." #~ msgstr "No existe el estado." diff --git a/languages/publishpress-fr_FR.mo b/languages/publishpress-fr_FR.mo index a9e67f5e9..b0d2e02a3 100644 Binary files a/languages/publishpress-fr_FR.mo and b/languages/publishpress-fr_FR.mo differ diff --git a/languages/publishpress-fr_FR.po b/languages/publishpress-fr_FR.po index b955f8729..777c62473 100644 --- a/languages/publishpress-fr_FR.po +++ b/languages/publishpress-fr_FR.po @@ -5,8 +5,8 @@ msgstr "" "Project-Id-Version: Plugins - PublishPress: Editorial Calendar, Workflow, " "Comments, Notifications and Statuses - Stable (latest release)\n" "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/project\n" -"POT-Creation-Date: 2024-01-23 11:07+0000\n" -"PO-Revision-Date: 2024-01-23 21:26+0100\n" +"POT-Creation-Date: 2024-04-04 04:10+0000\n" +"PO-Revision-Date: 2024-04-13 13:21+0200\n" "Last-Translator: \n" "Language-Team: French (France)\n" "Language: fr_FR\n" @@ -58,11 +58,13 @@ msgstr "%1$s #%2$s « %3$s » a été dépublié par %4$s %5$s" msgid "%1$s (%2$s ) said on %3$s at %4$s:" msgstr "%1$s (%2$s) a dit le %3$s à %4$s :" -#: modules/content-overview/content-overview.php:1012 +#: modules/content-overview/content-overview.php:845 #, php-format +#| msgctxt "%1$s = start date, %2$s = end date" +#| msgid " %1$s to %2$s" msgctxt "%1$s = start date, %2$s = end date" -msgid " %1$s to %2$s" -msgstr " %1$s à %2$s" +msgid " %1$s
to
%2$s" +msgstr " %1$s
à
%2$s" #. 1: old status, 2: new status #: modules/notifications/notifications.php:2056 @@ -72,8 +74,8 @@ msgstr "%1$s => %2$s" #. 1: Comment date, 2: Comment time. #: modules/notifications/notifications.php:1892 -#: modules/editorial-metadata/input-handlers/editorial-metadata-input-date-handler.php:201 #: modules/editorial-comments/library/EditorialCommentsTable.php:336 +#: modules/editorial-metadata/input-handlers/editorial-metadata-input-date-handler.php:201 #, php-format msgid "%1$s at %2$s" msgstr "%1$s à %2$s" @@ -95,14 +97,24 @@ msgid_plural "%d Users" msgstr[0] "%d utilisateur/utilisatrice" msgstr[1] "%d utilisateurs/utilisatrices" -#: modules/calendar/calendar.php:835 +#: modules/calendar/calendar.php:795 msgid "%d week" msgstr "%d semaine" -#: modules/calendar/calendar.php:836 +#: modules/calendar/calendar.php:796 msgid "%d weeks" msgstr "%d semaines" +#: modules/content-overview/content-overview.php:1004 +#, php-format +msgid "%s could not be created" +msgstr "%s n’a pas pu être créée" + +#: modules/content-overview/content-overview.php:1001 +#, php-format +msgid "%s created successfully. Edit %s" +msgstr "%s a bien été créée. Modifier %s" + #: modules/notifications-log/notifications-log.php:272 #, php-format msgid "%s notification found." @@ -110,26 +122,26 @@ msgid_plural "%s notifications found." msgstr[0] "%s notification trouvée." msgstr[1] "%s notifications trouvées." -#: modules/calendar/calendar.php:4163 +#: modules/calendar/calendar.php:4123 #, php-format msgid "%s week" msgid_plural "%s weeks" msgstr[0] "%s semaine" msgstr[1] "%s semaines" -#: modules/calendar/calendar.php:2175 +#: modules/calendar/calendar.php:2135 msgid "«" msgstr "«" -#: modules/calendar/calendar.php:2188 +#: modules/calendar/calendar.php:2148 msgid "‹" msgstr "‹" -#: modules/calendar/calendar.php:2144 +#: modules/calendar/calendar.php:2104 msgid "»" msgstr "»" -#: modules/calendar/calendar.php:2127 +#: modules/calendar/calendar.php:2087 msgid "›" msgstr "›" @@ -354,16 +366,20 @@ msgstr "" msgid "Add an editorial comment" msgstr "Ajouter un commentaire éditorial" -#: modules/editorial-metadata/editorial-metadata.php:2085 -#: modules/editorial-metadata/editorial-metadata.php:2446 +#: modules/editorial-metadata/editorial-metadata.php:2063 +#: modules/editorial-metadata/editorial-metadata.php:2400 msgid "Add Another Option" msgstr "Ajouter une autre option" +#: modules/content-overview/content-overview.php:1287 +msgid "Add Column" +msgstr "Ajouter une colonne" + #: modules/editorial-comments/editorial-comments.php:574 msgid "Add Comment" msgstr "Ajouter un commentaire" -#: modules/calendar/calendar.php:807 +#: modules/calendar/calendar.php:767 #, php-format msgid "Add content for %s" msgstr "Ajouter le contenu pour %s" @@ -374,15 +390,26 @@ msgstr "Ajouter le contenu pour %s" msgid "Add editorial comment: %s" msgstr "Ajouter un commentaire éditorial : %s" -#: modules/editorial-metadata/editorial-metadata.php:1799 +#: modules/content-overview/content-overview.php:1435 +msgid "Add Filter" +msgstr "Ajouter un filtre" + +#: modules/content-overview/content-overview.php:1267 +#: modules/content-overview/content-overview.php:1415 +#: modules/editorial-metadata/editorial-metadata.php:1783 msgid "Add New" msgstr "Ajouter" +#: modules/content-overview/content-overview.php:1558 +#, php-format +msgid "Add New %s" +msgstr "Ajouter %s" + #: modules/editorial-metadata/editorial-metadata.php:453 msgid "Add New Editorial Metadata" msgstr "Ajouter une nouvelle métadonnée éditoriale" -#: modules/editorial-metadata/editorial-metadata.php:2581 +#: modules/editorial-metadata/editorial-metadata.php:2509 msgid "Add New Metadata Term" msgstr "Ajouter un nouveau terme de métadonnées" @@ -414,8 +441,8 @@ msgstr "Ajouter ou supprimer des notifications de rôles" msgid "Add or remove notify users" msgstr "Ajouter ou supprimer des utilisateurs/utilisatrices de notification" -#: modules/editorial-metadata/editorial-metadata.php:2165 -#: modules/editorial-metadata/editorial-metadata.php:2532 +#: modules/editorial-metadata/editorial-metadata.php:2119 +#: modules/editorial-metadata/editorial-metadata.php:2460 msgid "Add to post types" msgstr "Ajouter aux types de publication" @@ -427,8 +454,8 @@ msgstr "Notifications avancées" msgid "All" msgstr "Tous" -#: modules/content-overview/content-overview.php:1278 -#: modules/content-overview/content-overview.php:1281 +#: modules/content-overview/content-overview.php:2091 +#: modules/content-overview/content-overview.php:2094 #, php-format msgid "All %s" msgstr "Toutes les %s" @@ -437,13 +464,13 @@ msgstr "Toutes les %s" msgid "All Actions" msgstr "Toutes les actions" -#: modules/calendar/calendar.php:833 modules/calendar/calendar.php:4111 -#: modules/content-overview/content-overview.php:1300 -#: modules/content-overview/content-overview.php:1303 +#: modules/calendar/calendar.php:793 modules/calendar/calendar.php:4071 +#: modules/content-overview/content-overview.php:2116 +#: modules/content-overview/content-overview.php:2119 msgid "All authors" msgstr "Tous les auteurs/autrices" -#: modules/calendar/calendar.php:831 +#: modules/calendar/calendar.php:791 msgid "All categories" msgstr "Toutes les catégories" @@ -475,22 +502,22 @@ msgstr "Toutes les notifications des rôles" msgid "All Notify Users" msgstr "Tous les comptes de notification" -#: modules/editorial-metadata/editorial-metadata.php:1268 -#: modules/editorial-metadata/editorial-metadata.php:1438 +#: modules/editorial-metadata/editorial-metadata.php:1266 +#: modules/editorial-metadata/editorial-metadata.php:1429 msgid "All options value and labels are required." msgstr "Toutes les valeurs et libellés des options sont obligatoires." -#: modules/content-overview/content-overview.php:1330 +#: modules/content-overview/content-overview.php:2148 msgid "All post types" msgstr "Tous les types de publication" -#: modules/notifications-log/notifications-log.php:204 #: modules/editorial-comments/editorial-comments.php:212 +#: modules/notifications-log/notifications-log.php:204 #: modules/editorial-comments/library/EditorialCommentsTable.php:181 msgid "All Posts" msgstr "Toutes les publications" -#: modules/calendar/calendar.php:2973 +#: modules/calendar/calendar.php:2933 msgid "All posts" msgstr "Toutes les publications" @@ -498,20 +525,24 @@ msgstr "Toutes les publications" msgid "All Receivers" msgstr "Tous les destinataires" +#: modules/content-overview/content-overview.php:2363 +msgid "All status" +msgstr "Tous les états" + #: modules/notifications-log/notifications-log.php:208 msgid "All Statuses" msgstr "Tous les états" -#: modules/calendar/calendar.php:830 modules/calendar/calendar.php:4055 -#: modules/content-overview/content-overview.php:1256 +#: modules/calendar/calendar.php:790 modules/calendar/calendar.php:4015 +#: modules/content-overview/content-overview.php:2065 msgid "All statuses" msgstr "Tous les états" -#: modules/calendar/calendar.php:832 modules/calendar/calendar.php:4090 +#: modules/calendar/calendar.php:792 modules/calendar/calendar.php:4050 msgid "All tags" msgstr "Toutes les étiquettes" -#: modules/calendar/calendar.php:834 modules/calendar/calendar.php:4138 +#: modules/calendar/calendar.php:794 modules/calendar/calendar.php:4098 msgid "All types" msgstr "Tous les types" @@ -524,7 +555,7 @@ msgstr "Tous les comptes" msgid "All Workflows" msgstr "Tous les flux de travail" -#: modules/calendar/calendar.php:2577 +#: modules/calendar/calendar.php:2537 msgid "Allow public access to subscriptions in iCal or Google Calendar" msgstr "Autoriser l’accès public aux abonnements à iCal ou Calendrier Google" @@ -537,15 +568,26 @@ msgid "Always notify users who have edited the content:" msgstr "" "Prévenez toujours les utilisateurs/utilisatrices qui ont modifié le contenu :" -#: modules/calendar/calendar.php:2625 +#: modules/calendar/calendar.php:2585 msgid "Always show complete post titles" msgstr "Toujours afficher les titres complets des publications" -#: modules/content-overview/content-overview.php:1022 +#: modules/content-overview/content-overview.php:855 +#: modules/content-overview/content-overview.php:865 +#: modules/content-overview/content-overview.php:2197 +#: modules/content-overview/content-overview.php:2308 +#: modules/content-overview/content-overview.php:2346 +#: modules/content-overview/content-overview.php:2423 msgid "Apply" msgstr "Appliquer" -#: modules/calendar/calendar.php:821 +#: modules/content-overview/content-overview.php:1371 +#: modules/content-overview/content-overview.php:1519 +#| msgid "All Channels" +msgid "Apply Changes" +msgstr "Appliquer les modifications" + +#: modules/calendar/calendar.php:781 msgid "Apr" msgstr "Avr" @@ -570,7 +612,7 @@ msgstr "Notifications asynchrones" msgid "asynchronous" msgstr "asynchrone" -#: modules/calendar/calendar.php:2644 +#: modules/calendar/calendar.php:2604 msgid "At least one post type must be selected" msgstr "Au moins un type de publication doit être sélectionné" @@ -578,13 +620,18 @@ msgstr "Au moins un type de publication doit être sélectionné" msgid "Attach file" msgstr "Attacher un fichier" -#: modules/calendar/calendar.php:825 +#: modules/calendar/calendar.php:785 msgid "Aug" msgstr "Aoû" -#: modules/calendar/calendar.php:1983 modules/calendar/calendar.php:3578 -#: modules/calendar/calendar.php:3668 -#: modules/content-overview/content-overview.php:629 +#: modules/calendar/calendar.php:1943 modules/calendar/calendar.php:3538 +#: modules/calendar/calendar.php:3628 +#: modules/content-overview/content-overview.php:1081 +#: modules/content-overview/content-overview.php:1095 +#: modules/content-overview/content-overview.php:1139 +#: modules/content-overview/content-overview.php:1200 +#: modules/content-overview/content-overview.php:1732 +#: modules/content-overview/content-overview.php:2114 #: modules/editorial-comments/library/EditorialCommentsTable.php:228 msgid "Author" msgid_plural "Authors" @@ -613,11 +660,11 @@ msgstr "Brouillon automatique" msgid "Available fields" msgstr "Available fields" -#: modules/calendar/calendar.php:2167 +#: modules/calendar/calendar.php:2127 msgid "Back %d weeks" msgstr "Retour de %d semaines" -#: modules/calendar/calendar.php:2179 +#: modules/calendar/calendar.php:2139 msgid "Back 1 week" msgstr "Retour 1 semaine" @@ -653,25 +700,27 @@ msgstr "Blog : " msgid "Body" msgstr "Corps" -#: modules/editorial-metadata/editorial-metadata.php:2220 -#: modules/content-overview/content-overview.php:1028 +#: modules/content-overview/content-overview.php:861 #: modules/editorial-comments/editorial-comments.php:578 +#: modules/editorial-metadata/editorial-metadata.php:2174 msgid "Cancel" msgstr "Annuler" -#: modules/calendar/calendar.php:3678 +#: modules/calendar/calendar.php:3638 +#: modules/content-overview/content-overview.php:1094 +#: modules/content-overview/content-overview.php:1742 #: lib/Notifications/Workflow/Step/Event_Content/Filter/Category.php:34 msgid "Categories" msgstr "Catégories" -#: modules/calendar/calendar.php:3583 +#: modules/calendar/calendar.php:3543 #: lib/Notifications/Workflow/Step/Event_Content/Category.php:24 msgid "Category" msgid_plural "Categories" msgstr[0] "Catégorie" msgstr[1] "Catégories" -#: modules/content-overview/content-overview.php:1029 +#: modules/content-overview/content-overview.php:862 msgid "Change" msgstr "Changer" @@ -689,6 +738,10 @@ msgstr "Une mauvaise manipulation ?" msgid "Checkbox" msgstr "Case à cocher" +#: modules/content-overview/content-overview.php:2328 +msgid "Checked" +msgstr "Sélectionné" + #: modules/notifications/notifications.php:386 msgid "Choose from the most used notify emails" msgstr "Choisissez parmi les e-mails de notification les plus utilisés" @@ -719,11 +772,19 @@ msgstr "" msgid "Click here to read more about shortcode options..." msgstr "Cliquez ici pour en savoir plus sur les options des codes courts…" -#: modules/calendar/calendar.php:1444 +#: modules/calendar/calendar.php:1404 msgid "Click here to subscribe in iCal or Google Calendar" msgstr "Cliquez ici pour vous abonner à iCal ou Calendrier Google" -#: modules/calendar/calendar.php:798 +#: modules/content-overview/content-overview.php:1129 +msgid "Click the \"Add New\" button to create new columns." +msgstr "Cliquer sur le bouton « Ajouter » pour créer de nouvelles colonnes." + +#: modules/content-overview/content-overview.php:1191 +msgid "Click the \"Add New\" button to create new filters." +msgstr "Cliquer sur le bouton « Ajouter » pour créer de nouveaux filtres." + +#: modules/calendar/calendar.php:758 msgid "Click to add" msgstr "Cliquez pour ajouter" @@ -744,14 +805,19 @@ msgstr "Cliquez pour être informé des mises à jour de ce contenu" msgid "Click to stop being notified on updates for this post" msgstr "Cliquez pour ne plus être informé des mises à jour de ce contenu" -#: modules/content-overview/content-overview.php:1505 -msgid "Click to toggle" -msgstr "Cliquez ici pour basculer" - -#: modules/calendar/calendar.php:803 +#: modules/calendar/calendar.php:763 msgid "Close" msgstr "Fermer" +#: modules/content-overview/content-overview.php:1275 +msgid "Column Title" +msgstr "Titre de la colonne" + +#: modules/content-overview/content-overview.php:934 +#| msgid "Comment deleted successfully." +msgid "Column updated successfully." +msgstr "La colonne a bien été mise à jour." + #: modules/editorial-comments/library/EditorialCommentsTable.php:229 msgid "Comment" msgstr "Commentaire" @@ -777,7 +843,8 @@ msgstr "Configurer" msgid "Contact" msgstr "Contact" -#: modules/calendar/calendar.php:3695 +#: modules/calendar/calendar.php:3655 +#: modules/content-overview/content-overview.php:1759 #: modules/improved-notifications/improved-notifications.php:971 #: lib/Notifications/Workflow/Step/Content/Main.php:29 msgid "Content" @@ -788,10 +855,10 @@ msgstr "Contenu" msgid "Content Calendar" msgstr "Calendrier des contenus" -#: modules/content-overview/content-overview.php:141 -#: modules/content-overview/content-overview.php:508 -#: modules/content-overview/content-overview.php:525 -#: modules/content-overview/content-overview.php:526 +#: modules/content-overview/content-overview.php:147 +#: modules/content-overview/content-overview.php:419 +#: modules/content-overview/content-overview.php:436 +#: modules/content-overview/content-overview.php:437 msgid "Content Overview" msgstr "Aperçu du contenu" @@ -799,27 +866,42 @@ msgstr "Aperçu du contenu" msgid "Content:" msgstr "Contenu :" -#: modules/calendar/calendar.php:1438 +#: modules/calendar/calendar.php:1398 msgid "Copy to the clipboard" msgstr "Copier dans le presse-papiers" +#: modules/content-overview/content-overview.php:1686 +#, php-format +#| msgid "Created on" +msgid "Create %s" +msgstr "Créer %s" + #: modules/debug/debug.php:296 msgid "Created on" msgstr "Créé le" -#: modules/calendar/calendar.php:1361 +#: modules/calendar/calendar.php:1321 msgid "Current week" msgstr "Semaine courante" +#: modules/content-overview/content-overview.php:1128 +#| msgid "Custom Status" +msgid "Custom Columns" +msgstr "Colonnes personnalisées" + +#: modules/content-overview/content-overview.php:1190 +msgid "Custom filters" +msgstr "Filtres personnalisés" + #: statuses-intro.php:142 #, php-format msgid "" "Custom statuses are disabled until you activate the %1$sPublishPress " "Statuses%2$s plugin. See %3$sPlanner > Settings%4$s for details." msgstr "" -"Les états personnalisés sont désactivés jusqu'à ce que vous activiez " -"l'extension %1$sPublishPress Statuses%2$s. Voir %3$sPlanificateur > " -"Réglages%4$s pour plus d'informations." +"Les états personnalisés sont désactivés jusqu’à ce que vous activiez " +"l’extension %1$sPublishPress Statuses%2$s. Voir %3$sPlanificateur > " +"Réglages%4$s pour plus d’informations." #: statuses-intro.php:150 #, php-format @@ -827,10 +909,15 @@ msgid "" "Custom statuses are disabled until you install the %1$sPublishPress " "Statuses%2$s plugin. See %3$sPlanner > Settings%4$s for details." msgstr "" -"Les états personnalisés sont désactivés jusqu'à ce que vous installiez " -"l'extension %1$sPublishPress Statuses%2$s. Voir %3$sPlanificateur > " +"Les états personnalisés sont désactivés jusqu’à ce que vous installiez " +"l’extension %1$sPublishPress Statuses%2$s. Voir %3$sPlanificateur > " "Réglages%4$s pour plus de détails." +#: modules/content-overview/content-overview.php:1861 +#| msgid "Number of Columns: " +msgid "Customize Columns" +msgstr "Personnaliser les colonnes" + #: modules/dashboard/dashboard.php:56 msgid "Dashboard" msgstr "Tableau de bord" @@ -839,8 +926,9 @@ msgstr "Tableau de bord" msgid "Dashboard Note" msgstr "Note du tableau de bord" +#: modules/calendar/calendar.php:3527 +#: modules/content-overview/content-overview.php:1919 #: modules/editorial-metadata/editorial-metadata.php:285 -#: modules/calendar/calendar.php:3567 #: lib/Notifications/Table/Notifications.php:158 #: modules/notifications-log/library/NotificationsLogTable.php:490 msgid "Date" @@ -854,7 +942,7 @@ msgstr "Débogage" msgid "Debug data" msgstr "Données de débogage" -#: modules/calendar/calendar.php:829 +#: modules/calendar/calendar.php:789 msgid "Dec" msgstr "Déc" @@ -862,27 +950,27 @@ msgstr "Déc" msgid "Default notification channels:" msgstr "Canaux de notifiation par défaut :" -#: modules/editorial-metadata/editorial-metadata.php:2047 -#: modules/editorial-metadata/editorial-metadata.php:2077 -#: modules/editorial-metadata/editorial-metadata.php:2408 -#: modules/editorial-metadata/editorial-metadata.php:2438 +#: modules/editorial-metadata/editorial-metadata.php:2025 +#: modules/editorial-metadata/editorial-metadata.php:2055 +#: modules/editorial-metadata/editorial-metadata.php:2362 +#: modules/editorial-metadata/editorial-metadata.php:2392 msgid "Default option" msgstr "Option par défaut" -#: modules/calendar/calendar.php:2601 +#: modules/calendar/calendar.php:2561 msgid "Default publish time for items created in the calendar" msgstr "" "Heure de publication par défaut pour les éléments créés dans le calendrier" -#: modules/editorial-metadata/editorial-metadata.php:2050 -#: modules/editorial-metadata/editorial-metadata.php:2080 -#: modules/editorial-metadata/editorial-metadata.php:2411 -#: modules/editorial-metadata/editorial-metadata.php:2441 -#: modules/editorial-metadata/editorial-metadata.php:2837 #: modules/editorial-comments/editorial-comments.php:643 +#: modules/editorial-metadata/editorial-metadata.php:2028 +#: modules/editorial-metadata/editorial-metadata.php:2058 +#: modules/editorial-metadata/editorial-metadata.php:2365 +#: modules/editorial-metadata/editorial-metadata.php:2395 +#: modules/editorial-metadata/editorial-metadata.php:2765 +#: modules/editorial-comments/library/EditorialCommentsTable.php:434 #: modules/notifications-log/library/NotificationsLogTable.php:370 #: modules/notifications-log/library/NotificationsLogTable.php:401 -#: modules/editorial-comments/library/EditorialCommentsTable.php:434 msgid "Delete" msgstr "Supprimer" @@ -894,9 +982,9 @@ msgstr "Tout supprimer" msgid "Delete file" msgstr "Supprimer le fichier" -#: modules/editorial-metadata/editorial-metadata.php:1922 -#: modules/editorial-metadata/editorial-metadata.php:2269 -#: modules/editorial-metadata/editorial-metadata.php:2699 +#: modules/editorial-metadata/editorial-metadata.php:1900 +#: modules/editorial-metadata/editorial-metadata.php:2223 +#: modules/editorial-metadata/editorial-metadata.php:2627 msgid "Description" msgstr "Description" @@ -906,7 +994,7 @@ msgstr "" "Une documentation détaillée est également disponible sur le site de " "l’extension." -#: modules/calendar/calendar.php:2675 modules/dashboard/dashboard.php:368 +#: modules/calendar/calendar.php:2635 modules/dashboard/dashboard.php:368 #: modules/dashboard/dashboard.php:391 modules/dashboard/dashboard.php:425 msgid "Disabled" msgstr "Désactivé" @@ -920,10 +1008,10 @@ msgstr "" "Désactivé car add_post_type_support (’%1$s’, ’%2$s’) est inclus dans un " "fichier chargé." -#: modules/editorial-metadata/editorial-metadata.php:2038 -#: modules/editorial-metadata/editorial-metadata.php:2069 -#: modules/editorial-metadata/editorial-metadata.php:2399 -#: modules/editorial-metadata/editorial-metadata.php:2430 +#: modules/editorial-metadata/editorial-metadata.php:2016 +#: modules/editorial-metadata/editorial-metadata.php:2047 +#: modules/editorial-metadata/editorial-metadata.php:2353 +#: modules/editorial-metadata/editorial-metadata.php:2384 msgid "Display Label" msgstr "Afficher le libellé" @@ -935,7 +1023,7 @@ msgstr "Nom à afficher publiquement" msgid "Documentation" msgstr "Documentation" -#: modules/calendar/calendar.php:1431 +#: modules/calendar/calendar.php:1391 msgid "Download .ics file" msgstr "Téléchargez le fichier .ics" @@ -943,8 +1031,16 @@ msgstr "Téléchargez le fichier .ics" msgid "Draft" msgstr "Brouillon" -#: modules/editorial-metadata/editorial-metadata.php:2005 -#: modules/editorial-metadata/editorial-metadata.php:2368 +#: modules/content-overview/content-overview.php:1330 +msgid "Drag to change enabled columns order." +msgstr "Glisser pour modifier l’ordre des colonnes activées." + +#: modules/content-overview/content-overview.php:1478 +msgid "Drag to change enabled filters order." +msgstr "Glisser pour modifier l’ordre des filtres activés." + +#: modules/editorial-metadata/editorial-metadata.php:1983 +#: modules/editorial-metadata/editorial-metadata.php:2322 msgid "Dropdown Option" msgstr "Option de la liste déroulante" @@ -960,10 +1056,10 @@ msgstr "Seuil de notification dupliquée :" msgid "E-mails" msgstr "E-mails" -#: modules/editorial-metadata/editorial-metadata.php:2817 -#: modules/calendar/calendar.php:1838 modules/calendar/calendar.php:3600 -#: modules/content-overview/content-overview.php:1904 +#: modules/calendar/calendar.php:1798 modules/calendar/calendar.php:3560 +#: modules/content-overview/content-overview.php:2982 #: modules/editorial-comments/editorial-comments.php:632 +#: modules/editorial-metadata/editorial-metadata.php:2745 msgid "Edit" msgstr "Modifier" @@ -997,11 +1093,11 @@ msgstr "Modifier la notification de rôle" msgid "Edit Notify User" msgstr "Modifier utilisateur/utilisatrice de notification" -#: modules/calendar/calendar.php:1838 +#: modules/calendar/calendar.php:1798 msgid "Edit this item" msgstr "Modifier cet élément" -#: modules/content-overview/content-overview.php:1900 +#: modules/content-overview/content-overview.php:2978 #: modules/dashboard/dashboard.php:299 msgid "Edit this post" msgstr "Editer cette fiche entreprise" @@ -1023,9 +1119,11 @@ msgstr "Commentaire éditorial" msgid "Editorial Comments" msgstr "Commentaires éditoriaux" +#: modules/content-overview/content-overview.php:1148 +#: modules/content-overview/content-overview.php:1208 #: modules/editorial-metadata/editorial-metadata.php:96 -#: modules/editorial-metadata/editorial-metadata.php:1775 -#: modules/editorial-metadata/editorial-metadata.php:1776 +#: modules/editorial-metadata/editorial-metadata.php:1759 +#: modules/editorial-metadata/editorial-metadata.php:1760 msgid "Editorial Metadata" msgstr "Métadonnée éditoriale" @@ -1035,11 +1133,11 @@ msgstr "Métadonnée éditoriale" msgid "Editorial Notifications" msgstr "Notifications éditoriales" -#: modules/calendar/calendar.php:1411 +#: modules/calendar/calendar.php:1371 msgid "Eight months" msgstr "Huit mois" -#: modules/calendar/calendar.php:1417 +#: modules/calendar/calendar.php:1377 msgid "Eleven months" msgstr "Onze mois" @@ -1056,15 +1154,34 @@ msgstr "e-mail" msgid "Email from:" msgstr "E-mail de l’expéditeur :" +#: modules/content-overview/content-overview.php:1249 +#| msgid "Number of Columns: " +msgid "Enable Columns" +msgstr "Activer les colonnes" + +#: modules/content-overview/content-overview.php:1397 +msgid "Enable Filters" +msgstr "Activer les filtres" + #: modules/editorial-comments/editorial-comments.php:1232 msgid "Enable for these post types:" msgstr "Activer pour ces types de publications :" -#: modules/calendar/calendar.php:2569 +#: modules/content-overview/content-overview.php:1403 +#| msgid "Show as Content Overview filters" +msgid "Enable or Disable Content Overview filter." +msgstr "Activer ou désactiver le filtre de la « Vue d’ensemble du contenu »." + +#: modules/content-overview/content-overview.php:1255 +msgid "Enable or Disable Content Overview table column." +msgstr "" +"Activer ou désactiver la colonne du tableau « Vue d’ensemble du contenu »." + +#: modules/calendar/calendar.php:2529 msgid "Enable subscriptions in iCal or Google Calendar" msgstr "Activez les abonnements à iCal ou Calendrier Google" -#: modules/calendar/calendar.php:2676 modules/dashboard/dashboard.php:369 +#: modules/calendar/calendar.php:2636 modules/dashboard/dashboard.php:369 #: modules/dashboard/dashboard.php:392 modules/dashboard/dashboard.php:426 msgid "Enabled" msgstr "Activé" @@ -1073,7 +1190,7 @@ msgstr "Activé" msgid "Enabled features" msgstr "Fonctionnalitées activées" -#: modules/calendar/calendar.php:1379 +#: modules/calendar/calendar.php:1339 msgid "End date" msgstr "Date de fin" @@ -1089,8 +1206,8 @@ msgstr "" "Saisissez les utilisateurs/utilisatrices, rôles ou adresses e-mail qui " "doivent recevoir les notifications des flux de notification." -#: modules/editorial-metadata/editorial-metadata.php:2010 -#: modules/editorial-metadata/editorial-metadata.php:2371 +#: modules/editorial-metadata/editorial-metadata.php:1988 +#: modules/editorial-metadata/editorial-metadata.php:2325 msgid "" "Enter the dropdown option value and label. You can move options to change " "their order." @@ -1103,19 +1220,24 @@ msgstr "" msgid "Error" msgstr "Erreur" -#: modules/editorial-metadata/editorial-metadata.php:1369 +#: modules/editorial-metadata/editorial-metadata.php:1360 msgid "Error adding term." msgstr "Erreur en ajoutant le terme." -#: modules/editorial-metadata/editorial-metadata.php:1646 +#: modules/editorial-metadata/editorial-metadata.php:1630 msgid "Error deleting term." msgstr "Erreur de suppression du terme." -#: modules/editorial-metadata/editorial-metadata.php:1532 -#: modules/editorial-metadata/editorial-metadata.php:1580 +#: modules/editorial-metadata/editorial-metadata.php:1516 +#: modules/editorial-metadata/editorial-metadata.php:1564 msgid "Error updating term." msgstr "Erreur de mise à jour du terme." +#: modules/content-overview/content-overview.php:1535 +msgid "Error validating nonce. Please reload this page and try again." +msgstr "" +"Erreur de validation du nonce. Veuillez recharger cette page et réessayer." + #: modules/async-notifications/async-notifications.php:172 #, php-format msgid "Event: %s, Workflow ID: %s, Post ID: %s, User ID: %s" @@ -1123,6 +1245,7 @@ msgstr "" "Événement : %s, ID du flux de travail : %s, ID de la publication : %s, ID " "utilisateur/utilisatrice : %s" +#: modules/content-overview/content-overview.php:2367 #: modules/notifications-log/library/NotificationsLogTable.php:271 #: modules/notifications-log/library/NotificationsLogTable.php:287 msgid "Failed" @@ -1136,7 +1259,7 @@ msgstr "Un support rapide et professionnel" msgid "Features" msgstr "Fonctionnalitées" -#: modules/calendar/calendar.php:819 +#: modules/calendar/calendar.php:779 msgid "Feb" msgstr "Fév" @@ -1150,7 +1273,7 @@ msgstr "" msgid "field" msgstr "champ" -#: modules/calendar/calendar.php:2609 +#: modules/calendar/calendar.php:2569 msgid "Field used for sorting the calendar items in a day cell" msgstr "" "Champ utilisé pour trier les éléments du calendrier dans une cellule " @@ -1160,9 +1283,8 @@ msgstr "" msgid "File info" msgstr "Info Fichier" -#: modules/content-overview/content-overview.php:1145 -#: modules/notifications-log/library/NotificationsLogTable.php:640 #: modules/editorial-comments/library/EditorialCommentsTable.php:210 +#: modules/notifications-log/library/NotificationsLogTable.php:640 msgid "Filter" msgstr "Filtrer" @@ -1182,8 +1304,8 @@ msgstr "Filtrer par utilisateur/utilisatrice de notification" msgid "Filter the content?" msgstr "Filtrer le contenu ?" -#: modules/editorial-metadata/editorial-metadata.php:1970 -#: modules/editorial-metadata/editorial-metadata.php:2334 +#: modules/editorial-metadata/editorial-metadata.php:1948 +#: modules/editorial-metadata/editorial-metadata.php:2288 msgid "" "Filter the list of users in the editorial meta to users in the selected " "roles." @@ -1191,6 +1313,14 @@ msgstr "" "Filtrer la liste des utilisateur·ice·s dans la méta éditoriale des " "utilisateur·ice·s dans les rôles sélectionnés." +#: modules/content-overview/content-overview.php:1423 +msgid "Filter Title" +msgstr "Titre du filtre" + +#: modules/content-overview/content-overview.php:948 +msgid "Filter updated successfully." +msgstr "Le filtre a bien été mis à jour." + #: modules/editorial-metadata/editorial-metadata.php:209 msgid "First Draft Date" msgstr "Date de la première ébauche" @@ -1199,11 +1329,11 @@ msgstr "Date de la première ébauche" msgid "First Name" msgstr "Prénom" -#: modules/calendar/calendar.php:1405 +#: modules/calendar/calendar.php:1365 msgid "Five months" msgstr "Cinq mois" -#: modules/calendar/calendar.php:1371 +#: modules/calendar/calendar.php:1331 msgid "Five months ago" msgstr "Il y a cinq mois" @@ -1213,7 +1343,7 @@ msgid "" "For custom post statuses, activate the %1$sPublishPress Statuses%2$s plugin. " "%3$sLearn more...%4$s" msgstr "" -"Pour les états de publication personnalisés, activez l'extension " +"Pour les états de publication personnalisés, activez l’extension " "%1$sPublishPress Statuses%2$s. %3$sEn savoir plus...%4$s" #: modules/modules-settings/modules-settings.php:268 @@ -1222,7 +1352,7 @@ msgid "" "For custom post statuses, install the %1$sPublishPress Statuses%2$s plugin. " "%3$sLearn more...%4$s" msgstr "" -"Pour les états de publication personnalisés, installiez l'extension " +"Pour les états de publication personnalisés, installiez l’extension " "%1$sPublishPress Statuses%2$s. %3$sEn savoir plus...%4$s" #: modules/improved-notifications/improved-notifications.php:823 @@ -1234,27 +1364,27 @@ msgstr "Pour quel contenu ?" msgid "Format" msgstr "Format" -#: modules/calendar/calendar.php:2133 +#: modules/calendar/calendar.php:2093 msgid "Forward %d weeks" msgstr "Avancer de %d semaines" -#: modules/calendar/calendar.php:2118 +#: modules/calendar/calendar.php:2078 msgid "Forward 1 week" msgstr "Avancer d’une semaine" -#: modules/calendar/calendar.php:1403 +#: modules/calendar/calendar.php:1363 msgid "Four months" msgstr "Quatre mois" -#: modules/calendar/calendar.php:1369 +#: modules/calendar/calendar.php:1329 msgid "Four months ago" msgstr "Il y a quatre mois" -#: modules/calendar/calendar.php:1390 +#: modules/calendar/calendar.php:1350 msgid "Four weeks" msgstr "Quatre semaines" -#: modules/calendar/calendar.php:816 +#: modules/calendar/calendar.php:776 msgid "Fri" msgstr "Ven" @@ -1262,13 +1392,13 @@ msgstr "Ven" msgid "From date" msgstr "À partir du" -#: modules/editorial-metadata/editorial-metadata.php:2820 +#: modules/editorial-metadata/editorial-metadata.php:2748 msgid "Hidden metadata can only be viewed on the edit post view." msgstr "" "Les métadonnées cachées ne peuvent être visualisées que dans la vue de " "modification de la publication." -#: modules/calendar/calendar.php:800 +#: modules/calendar/calendar.php:760 #, php-format msgid "Hide the %s last items" msgstr "Masquer les %s derniers éléments" @@ -1289,38 +1419,29 @@ msgstr "" "Clé secrète iCal régénérée. Veuillez informer tous les utilisateurs/" "utilisatrices qu’ils devront se réinscrire." -#: modules/calendar/calendar.php:3562 lib/Notifications/Table/Workflows.php:143 +#: modules/calendar/calendar.php:3522 #: lib/Notifications/Table/Notifications.php:159 +#: lib/Notifications/Table/Workflows.php:143 msgid "ID" msgstr "ID" -#: modules/editorial-metadata/editorial-metadata.php:2108 -#: modules/editorial-metadata/editorial-metadata.php:2472 -#: modules/editorial-metadata/editorial-metadata.php:2827 -msgid "" -"If enabled, this metadata can be seen on the Content Calendar and Content " -"Overview screens." +#: modules/editorial-metadata/editorial-metadata.php:2086 +#: modules/editorial-metadata/editorial-metadata.php:2426 +#: modules/editorial-metadata/editorial-metadata.php:2755 +msgid "If enabled, this metadata can be seen on the Content Calendar screens." msgstr "" "Si cette option est activée, ces métadonnées sont visibles sur les écrans " -"« Calendrier des contenus » et « Aperçu des contenus »." - -#: modules/editorial-metadata/editorial-metadata.php:2132 -#: modules/editorial-metadata/editorial-metadata.php:2498 -msgid "" -"If enabled, this metadata will be available as a filter option on the " -"Content Overview screen." -msgstr "" -"Quand il est activée, ces métadonnées seront disponibles en tant qu’option " -"de filtre sur l’écran d’aperçu du contenu." +"« Calendrier des contenus »." -#: modules/editorial-metadata/editorial-metadata.php:2156 -#: modules/editorial-metadata/editorial-metadata.php:2524 +#: modules/editorial-metadata/editorial-metadata.php:2110 +#: modules/editorial-metadata/editorial-metadata.php:2452 msgid "" "If enabled, this metadata will be available when adding new posts on the " -"Content Calendar screen." +"Content Calendar and Overview screen." msgstr "" "Si cette option est activée, ces métadonnées seront disponibles lors de " -"l’ajout de nouveaux articles sur l’écran du calendrier des contenus." +"l’ajout de nouvelles publications sur l’écran du « Calendrier des contenus » " +"et de la « Vue d’ensemble du contenu »." #: modules/settings/settings.php:269 #, php-format @@ -1342,16 +1463,24 @@ msgstr "" "PublishPress, veuillez ne pas hésiter à contacter l’équipe de support. " "Envoyez-nous un e-mail :" -#: modules/editorial-metadata/editorial-metadata.php:1998 -#: modules/editorial-metadata/editorial-metadata.php:2363 +#: modules/content-overview/content-overview.php:1135 +msgid "Inbuilt Columns" +msgstr "Colonnes natives" + +#: modules/content-overview/content-overview.php:1197 +msgid "Inbuilt filters" +msgstr "Filtres natifs" + +#: modules/editorial-metadata/editorial-metadata.php:1976 +#: modules/editorial-metadata/editorial-metadata.php:2317 msgid "Indicate the select type." msgstr "Indiquez le type de sélection." -#: modules/editorial-metadata/editorial-metadata.php:2307 +#: modules/editorial-metadata/editorial-metadata.php:2261 msgid "Indicate the type of editorial metadata." msgstr "Indiquer le type de métadonnées éditoriales." -#: modules/calendar/calendar.php:1512 +#: modules/calendar/calendar.php:1472 msgid "Initializing the calendar. Please wait..." msgstr "Initialisation du calendrier. Veuillez patienter…" @@ -1374,19 +1503,23 @@ msgstr "Canal invalide pour la notification" msgid "Invalid comment data" msgstr "Données de commentaire invalides" -#: modules/calendar/calendar.php:3302 +#: modules/calendar/calendar.php:3262 msgid "Invalid date" msgstr "Date invalide" -#: modules/calendar/calendar.php:3282 +#: modules/content-overview/content-overview.php:1537 +msgid "Invalid form request." +msgstr "Demande de formulaire invalide." + +#: modules/calendar/calendar.php:3242 msgid "Invalid input" msgstr "Entrée invalide" -#: core/Error.php:80 modules/calendar/calendar.php:3273 +#: core/Error.php:80 modules/calendar/calendar.php:3233 msgid "Invalid nonce" msgstr "Nonce invalide" -#: modules/calendar/calendar.php:3861 +#: modules/calendar/calendar.php:3821 msgid "Invalid Publish Date supplied." msgstr "Date de publication invalide fournie." @@ -1394,11 +1527,11 @@ msgstr "Date de publication invalide fournie." msgid "Invalid receiver for the notification" msgstr "Destinataire invalide pour la notification" -#: modules/calendar/calendar.php:3837 +#: modules/calendar/calendar.php:3797 msgid "Invalid Status supplied." msgstr "État invalide fourni." -#: modules/calendar/calendar.php:1516 +#: modules/calendar/calendar.php:1476 msgid "" "It seems like it is taking too long. Please, try reloading the page again " "and check the browser console looking for errors." @@ -1406,19 +1539,20 @@ msgstr "" "Il semble que cela prenne trop de temps. Essayez de recharger la page et " "vérifiez la console du navigateur à la recherche d’erreurs." -#: modules/calendar/calendar.php:818 +#: modules/calendar/calendar.php:778 msgid "Jan" msgstr "Jan" -#: modules/calendar/calendar.php:824 +#: modules/calendar/calendar.php:784 msgid "Jul" msgstr "Jui" -#: modules/calendar/calendar.php:823 +#: modules/calendar/calendar.php:783 msgid "Jun" msgstr "Jui" -#: modules/content-overview/content-overview.php:631 +#: modules/content-overview/content-overview.php:1083 +#: modules/content-overview/content-overview.php:1141 msgid "Last Modified" msgstr "Dernière modification" @@ -1426,11 +1560,11 @@ msgstr "Dernière modification" msgid "Last Name" msgstr "Nom" -#: modules/calendar/calendar.php:797 +#: modules/calendar/calendar.php:757 msgid "Loading item..." msgstr "Chargement de l’élément…" -#: modules/calendar/calendar.php:796 +#: modules/calendar/calendar.php:756 #: modules/notifications-log/notifications-log.php:210 msgid "Loading..." msgstr "Chargement…" @@ -1451,26 +1585,34 @@ msgstr "Fichier journal" msgid "Log file not found." msgstr "Fichier journal non trouvé." -#: modules/editorial-metadata/editorial-metadata.php:2824 +#: modules/editorial-metadata/editorial-metadata.php:2752 msgid "Make Hidden" msgstr "Rendre Caché" -#: modules/editorial-metadata/editorial-metadata.php:2835 +#: modules/editorial-metadata/editorial-metadata.php:2763 msgid "Make Viewable" msgstr "Rendre Visible" -#: modules/calendar/calendar.php:820 +#: modules/content-overview/content-overview.php:1871 +msgid "Manage Filters" +msgstr "Gérer les filtres" + +#: modules/calendar/calendar.php:780 msgid "Mar" msgstr "Mar" -#: modules/calendar/calendar.php:2617 +#: modules/calendar/calendar.php:2577 msgid "Max visible posts per date" msgstr "Nombre maximum de publications visibles par date" -#: modules/calendar/calendar.php:822 +#: modules/calendar/calendar.php:782 msgid "May" msgstr "Mai" +#: modules/content-overview/content-overview.php:1858 +msgid "Me Mode" +msgstr "Mode Me" + #: lib/Notifications/Table/Notifications.php:157 msgid "Message" msgstr "Message" @@ -1479,10 +1621,10 @@ msgstr "Message" msgid "Meta fields" msgstr "Champs métas" -#: modules/editorial-metadata/editorial-metadata.php:2032 -#: modules/editorial-metadata/editorial-metadata.php:2063 -#: modules/editorial-metadata/editorial-metadata.php:2393 -#: modules/editorial-metadata/editorial-metadata.php:2424 +#: modules/editorial-metadata/editorial-metadata.php:2010 +#: modules/editorial-metadata/editorial-metadata.php:2041 +#: modules/editorial-metadata/editorial-metadata.php:2347 +#: modules/editorial-metadata/editorial-metadata.php:2378 msgid "Meta Value" msgstr "Valeur de méta" @@ -1490,7 +1632,7 @@ msgstr "Valeur de méta" msgid "Metadata" msgstr "Métadonnées" -#: modules/editorial-metadata/editorial-metadata.php:1461 +#: modules/editorial-metadata/editorial-metadata.php:1452 msgid "Metadata name conflicts with existing term. Please choose another." msgstr "" "Le nom des métadonnées entre en conflit avec un terme existant. Veuillez en " @@ -1516,7 +1658,7 @@ msgstr "Le terme de métadonnées n’existe pas." msgid "Metadata term updated." msgstr "Mise à jour du terme métadonnées." -#: modules/editorial-metadata/editorial-metadata.php:2698 +#: modules/editorial-metadata/editorial-metadata.php:2626 msgid "Metadata Type" msgstr "Type de métadonnées" @@ -1532,7 +1674,7 @@ msgstr "minutes" msgid "Modified on" msgstr "Modifié le" -#: modules/calendar/calendar.php:812 +#: modules/calendar/calendar.php:772 msgid "Mon" msgstr "Lun" @@ -1548,16 +1690,16 @@ msgstr "Notification de rôle la plus utilisée" msgid "Most Used Notify User" msgstr "Utilisateur/utilisatrice de notification le plus utilisé" -#: modules/content-overview/content-overview.php:1912 +#: modules/content-overview/content-overview.php:2990 msgid "Move this item to the Trash" msgstr "Mettre cet article à la corbeille" -#: modules/calendar/calendar.php:799 +#: modules/calendar/calendar.php:759 msgid "Moving the item..." msgstr "Déplacement de l’élément…" -#: modules/editorial-metadata/editorial-metadata.php:1981 -#: modules/editorial-metadata/editorial-metadata.php:2343 +#: modules/editorial-metadata/editorial-metadata.php:1959 +#: modules/editorial-metadata/editorial-metadata.php:2297 msgid "Multiple Select" msgstr "Sélection multiple" @@ -1571,28 +1713,28 @@ msgstr "Muet" msgid "My Content Notifications" msgstr "Mes notifications de contenu" -#: modules/editorial-metadata/editorial-metadata.php:2238 -#: modules/editorial-metadata/editorial-metadata.php:2696 +#: modules/editorial-metadata/editorial-metadata.php:2192 +#: modules/editorial-metadata/editorial-metadata.php:2624 msgid "Name" msgstr "Nom" -#: modules/editorial-metadata/editorial-metadata.php:1297 -#: modules/editorial-metadata/editorial-metadata.php:1470 +#: modules/editorial-metadata/editorial-metadata.php:1295 +#: modules/editorial-metadata/editorial-metadata.php:1461 msgid "Name already in use. Please choose another." msgstr "Nom déjà utilisé. Veuillez en choisir un autre." -#: modules/editorial-metadata/editorial-metadata.php:1307 -#: modules/editorial-metadata/editorial-metadata.php:1314 -#: modules/editorial-metadata/editorial-metadata.php:1483 +#: modules/editorial-metadata/editorial-metadata.php:1305 +#: modules/editorial-metadata/editorial-metadata.php:1312 +#: modules/editorial-metadata/editorial-metadata.php:1474 msgid "Name cannot exceed 200 characters. Please try a shorter name." msgstr "Le nom ne peut pas dépasser 200 caractères. Essayez un nom plus court." -#: modules/editorial-metadata/editorial-metadata.php:1290 +#: modules/editorial-metadata/editorial-metadata.php:1288 msgid "Name conflicts with existing term. Please choose another." msgstr "" "Le nom entre en conflit avec un terme existant. Veuillez en choisir un autre." -#: modules/editorial-metadata/editorial-metadata.php:1475 +#: modules/editorial-metadata/editorial-metadata.php:1466 msgid "" "Name conflicts with slug for another term. Please choose something else." msgstr "" @@ -1601,7 +1743,7 @@ msgstr "" #: lib/Legacy/Util.php:220 msgid "Need PublishPress Planner Support?" -msgstr "Besoin du support de PublishPress Planner ?" +msgstr "Besoin du support de PublishPress Planner ?" #: lib/Notifications/Workflow/Step/Event/Filter/Post_Status.php:59 msgid "New" @@ -1623,6 +1765,10 @@ msgstr "Nouvelle notification de rôle" msgid "New Notify User" msgstr "Nouveau compte de notification" +#: modules/content-overview/content-overview.php:1888 +msgid "New Post" +msgstr "Nouvelle publication" + #: lib/Notifications/Workflow/Step/Event/Post_StatusTransition.php:118 #, php-format msgid "New post status: %s" @@ -1636,17 +1782,15 @@ msgstr "Nouvel état" msgid "Nickname" msgstr "Pseudonyme" -#: modules/calendar/calendar.php:1413 +#: modules/calendar/calendar.php:1373 msgid "Nine months" msgstr "Neuf mois" -#: modules/editorial-metadata/editorial-metadata.php:2097 -#: modules/editorial-metadata/editorial-metadata.php:2121 -#: modules/editorial-metadata/editorial-metadata.php:2145 -#: modules/editorial-metadata/editorial-metadata.php:2456 -#: modules/editorial-metadata/editorial-metadata.php:2483 -#: modules/editorial-metadata/editorial-metadata.php:2509 -#: modules/editorial-metadata/editorial-metadata.php:2762 +#: modules/editorial-metadata/editorial-metadata.php:2075 +#: modules/editorial-metadata/editorial-metadata.php:2099 +#: modules/editorial-metadata/editorial-metadata.php:2410 +#: modules/editorial-metadata/editorial-metadata.php:2437 +#: modules/editorial-metadata/editorial-metadata.php:2690 #: modules/editorial-metadata/input-handlers/editorial-metadata-input-checkbox-handler.php:143 msgid "No" msgstr "Non" @@ -1656,7 +1800,7 @@ msgstr "Non" msgid "No active notifications found for this %s." msgstr "Aucune notification active n’a été trouvée pour ce %s." -#: modules/calendar/calendar.php:3796 +#: modules/calendar/calendar.php:3756 msgid "No date supplied." msgstr "Aucune date fournie." @@ -1664,11 +1808,11 @@ msgstr "Aucune date fournie." msgid "No editorial comments." msgstr "Aucun commentaire éditorial." -#: modules/editorial-metadata/editorial-metadata.php:2793 +#: modules/editorial-metadata/editorial-metadata.php:2721 msgid "No editorial metadata found." msgstr "Aucune métadonnée éditoriale trouvée." -#: modules/calendar/calendar.php:3293 +#: modules/calendar/calendar.php:3253 msgid "No enough permissions" msgstr "Aucun droit suffisant" @@ -1695,7 +1839,12 @@ msgstr "Aucune notification des rôles" msgid "No notify users" msgstr "Aucun utilisateurs/utilisatrices de notification" -#: modules/calendar/calendar.php:838 +#: modules/content-overview/content-overview.php:2534 +#| msgid "No workflows found." +msgid "No results found" +msgstr "Aucun résultat trouvé" + +#: modules/calendar/calendar.php:798 msgid "No terms" msgstr "Aucun terme" @@ -1721,8 +1870,8 @@ msgstr "" "La vérification du nonce a échoué. Veuillez vous assurer que vous êtes censé " "modifier les commentaires éditoriaux." -#: modules/calendar/calendar.php:1818 -#: modules/content-overview/content-overview.php:1797 +#: modules/calendar/calendar.php:1778 +#: modules/content-overview/content-overview.php:2857 msgid "None" msgstr "Aucun" @@ -1803,7 +1952,7 @@ msgstr "Utilisateurs/utilisatrices de notification" msgid "Notify when content is published" msgstr "Notifier lorsque le contenu est publié" -#: modules/calendar/calendar.php:828 +#: modules/calendar/calendar.php:788 msgid "Nov" msgstr "Nov" @@ -1811,11 +1960,7 @@ msgstr "Nov" msgid "Number" msgstr "Nombre" -#: modules/content-overview/content-overview.php:689 -msgid "Number of Columns: " -msgstr "Nombre de colonnes : " - -#: modules/calendar/calendar.php:827 +#: modules/calendar/calendar.php:787 msgid "Oct" msgstr "Oct" @@ -1832,21 +1977,21 @@ msgstr "" "Sur chaque code court, vous pouvez sélectionner un ou plusieurs champs. S’il " "y en a plusieurs, ils seront affichés séparés par des « , »." -#: modules/calendar/calendar.php:1396 +#: modules/calendar/calendar.php:1356 msgid "One month" msgstr "Un mois" -#: modules/calendar/calendar.php:1363 +#: modules/calendar/calendar.php:1323 msgid "One month ago" msgstr "Il y a un mois" -#: modules/calendar/calendar.php:1384 +#: modules/calendar/calendar.php:1344 msgid "One week" msgstr "Une Semaine" -#: modules/editorial-metadata/editorial-metadata.php:120 #: modules/calendar/calendar.php:206 #: modules/editorial-comments/editorial-comments.php:82 +#: modules/editorial-metadata/editorial-metadata.php:120 #: modules/notifications/notifications.php:93 msgid "Overview" msgstr "Aperçu" @@ -1879,6 +2024,10 @@ msgstr "Utilisateur/utilisatrice de notification parent" msgid "Parent Notify User:" msgstr "Utilisateur/utilisatrice de notification parent :" +#: modules/content-overview/content-overview.php:2366 +msgid "Passed" +msgstr "Succès" + #: modules/debug/debug.php:293 msgid "Path" msgstr "Chemin" @@ -1900,25 +2049,25 @@ msgstr "Veuillez corriger vos erreurs de formulaire ci-dessous et réessayer." msgid "Please enter a comment." msgstr "Veuillez saisir un commentaire." -#: modules/editorial-metadata/editorial-metadata.php:1447 +#: modules/editorial-metadata/editorial-metadata.php:1438 msgid "Please enter a name for the editorial metadata" msgstr "Veuillez entrer un nom pour les métadonnées éditoriales" -#: modules/editorial-metadata/editorial-metadata.php:1277 +#: modules/editorial-metadata/editorial-metadata.php:1275 msgid "Please enter a name for the editorial metadata." msgstr "Veuillez entrer un nom pour les métadonnées éditoriales." -#: modules/editorial-metadata/editorial-metadata.php:1284 +#: modules/editorial-metadata/editorial-metadata.php:1282 msgid "Please enter a slug for the editorial metadata." msgstr "Veuillez entrer un slug pour les métadonnées éditoriales." -#: modules/editorial-metadata/editorial-metadata.php:1452 +#: modules/editorial-metadata/editorial-metadata.php:1443 msgid "Please enter a valid, non-numeric name for the editorial metadata." msgstr "" "Veuillez entrer un nom valide et non numérique pour les métadonnées " "éditoriales." -#: modules/editorial-metadata/editorial-metadata.php:1324 +#: modules/editorial-metadata/editorial-metadata.php:1322 msgid "Please select a valid metadata type." msgstr "Veuillez sélectionner un type de métadonnées valide." @@ -1926,7 +2075,8 @@ msgstr "Veuillez sélectionner un type de métadonnées valide." msgid "Please select at least one event" msgstr "Veuillez sélectionner au moins un événement" -#: modules/calendar/calendar.php:810 +#: modules/calendar/calendar.php:770 +#: modules/content-overview/content-overview.php:1694 msgid "Please, wait! Loading the form fields..." msgstr "S’il vous plaît, attendez ! Chargement des champs du formulaire…" @@ -1946,7 +2096,7 @@ msgstr "Les notifications des rôles populaires" msgid "Popular Notify Users" msgstr "Utilisateurs/utilisatrices de notification les plus populaires" -#: modules/editorial-metadata/editorial-metadata.php:2695 +#: modules/editorial-metadata/editorial-metadata.php:2623 msgid "Position" msgstr "Position" @@ -1954,15 +2104,16 @@ msgstr "Position" msgid "Post" msgstr "Article" -#: modules/calendar/calendar.php:3937 +#: modules/calendar/calendar.php:3897 msgid "Post could not be created" msgstr "La publication n’a pas pu être créée" -#: modules/calendar/calendar.php:3930 +#: modules/calendar/calendar.php:3890 msgid "Post created successfully" msgstr "La publication a bien été créée" -#: modules/content-overview/content-overview.php:630 +#: modules/content-overview/content-overview.php:1082 +#: modules/content-overview/content-overview.php:1140 msgid "Post Date" msgstr "Date de la publication" @@ -1978,12 +2129,15 @@ msgstr "La publication n’existe pas" msgid "Post ID: %d" msgstr "ID de la publication : %d" -#: modules/calendar/calendar.php:3288 +#: modules/calendar/calendar.php:3248 msgid "Post not found" msgstr "Publication non trouvée" -#: modules/calendar/calendar.php:2918 modules/calendar/calendar.php:3573 -#: modules/calendar/calendar.php:3653 +#: modules/calendar/calendar.php:2878 modules/calendar/calendar.php:3533 +#: modules/calendar/calendar.php:3613 +#: modules/content-overview/content-overview.php:1199 +#: modules/content-overview/content-overview.php:1723 +#: modules/content-overview/content-overview.php:2061 msgid "Post Status" msgstr "État de la publication" @@ -1995,8 +2149,13 @@ msgstr "L’état de la publication mis à jour." msgid "Post Status Widget" msgstr "Widget de l’état de la publication" -#: modules/calendar/calendar.php:1991 modules/calendar/calendar.php:3557 -#: modules/content-overview/content-overview.php:628 +#: modules/calendar/calendar.php:1951 modules/calendar/calendar.php:3517 +#: modules/content-overview/content-overview.php:1080 +#: modules/content-overview/content-overview.php:1096 +#: modules/content-overview/content-overview.php:1138 +#: modules/content-overview/content-overview.php:1201 +#: modules/content-overview/content-overview.php:1712 +#: modules/content-overview/content-overview.php:2144 msgid "Post Type" msgstr "Type de publication" @@ -2004,11 +2163,11 @@ msgstr "Type de publication" msgid "Post type" msgstr "Type d’article" -#: modules/calendar/calendar.php:808 +#: modules/calendar/calendar.php:768 msgid "Post type not found" msgstr "Type de publication non trouvé" -#: modules/calendar/calendar.php:809 +#: modules/calendar/calendar.php:769 msgid "Post type:" msgstr "Type de publication :" @@ -2017,16 +2176,16 @@ msgstr "Type de publication :" msgid "Post type: %s" msgstr "Type de publication : %s" -#: modules/editorial-metadata/editorial-metadata.php:2697 +#: modules/editorial-metadata/editorial-metadata.php:2625 #: lib/Notifications/Workflow/Step/Event_Content/Filter/Post_Type.php:34 msgid "Post Types" msgstr "Types d’article" -#: modules/calendar/calendar.php:2561 +#: modules/calendar/calendar.php:2521 msgid "Post types to show" msgstr "Types de messages à afficher" -#: modules/content-overview/content-overview.php:298 +#: modules/content-overview/content-overview.php:252 msgid "Post types to show:" msgstr "Types de publications à afficher :" @@ -2034,17 +2193,17 @@ msgstr "Types de publications à afficher :" msgid "Posts at a Glance" msgstr "Aperçu des articles" -#: modules/calendar/calendar.php:2593 +#: modules/calendar/calendar.php:2553 msgid "Posts publish time format" msgstr "Format de l’heure de publication des publications" -#: modules/calendar/calendar.php:1862 modules/calendar/calendar.php:3617 -#: modules/content-overview/content-overview.php:1945 +#: modules/calendar/calendar.php:1822 modules/calendar/calendar.php:3577 +#: modules/content-overview/content-overview.php:3023 msgid "Preview" msgstr "Aperçu" -#: modules/calendar/calendar.php:1859 -#: modules/content-overview/content-overview.php:1942 +#: modules/calendar/calendar.php:1819 +#: modules/content-overview/content-overview.php:3020 #, php-format msgid "Preview “%s”" msgstr "Prévisualiser “%s”" @@ -2053,7 +2212,7 @@ msgstr "Prévisualiser “%s”" msgid "Previous status" msgstr "Statut précédent" -#: modules/content-overview/content-overview.php:1194 +#: modules/content-overview/content-overview.php:1880 msgid "Print" msgstr "Imprimer" @@ -2061,20 +2220,20 @@ msgstr "Imprimer" msgid "Private" msgstr "Privé" -#: modules/calendar/calendar.php:3659 +#: modules/calendar/calendar.php:3619 msgid "Publish Time" msgstr "Heure de publication" -#: common/php/class-module.php:262 modules/calendar/calendar.php:2004 +#: common/php/class-module.php:262 modules/calendar/calendar.php:1964 msgid "Published" msgstr "Publié" -#: modules/calendar/calendar.php:2917 +#: modules/calendar/calendar.php:2877 msgid "Publishing Time" msgstr "Heure de la publication" #. Author of the plugin -#: modules/settings/settings.php:61 modules/calendar/calendar.php:1350 +#: modules/calendar/calendar.php:1310 modules/settings/settings.php:61 msgid "PublishPress" msgstr "PublishPress" @@ -2114,11 +2273,11 @@ msgstr "Réglages de PublishPress" msgid "Receiver" msgstr "Destinataire" -#: modules/calendar/calendar.php:2694 +#: modules/calendar/calendar.php:2654 msgid "Regenerate calendar feed secret" msgstr "Régénérer le secret du flux du calendrier" -#: modules/editorial-metadata/editorial-metadata.php:1693 +#: modules/editorial-metadata/editorial-metadata.php:1677 msgid "Register metadata for these post types:" msgstr "Enregistrer les métadonnées pou ces types de publication :" @@ -2131,6 +2290,14 @@ msgstr "Retirer" msgid "Remove PublishPress ads and branding" msgstr "Retirez les publicités et l’image de marque de PublishPress" +#: modules/content-overview/content-overview.php:1250 +msgid "Reorder Columns" +msgstr "Réorganiser les colonnes" + +#: modules/content-overview/content-overview.php:1398 +msgid "Reorder Filters" +msgstr "Réorganiser les filtres" + #: modules/editorial-comments/editorial-comments.php:623 msgid "Reply" msgstr "Répondre" @@ -2153,12 +2320,16 @@ msgstr "Demande de support" msgid "Reschedule" msgstr "Replanifier" -#: modules/calendar/calendar.php:2110 -#: modules/content-overview/content-overview.php:1025 -#: modules/content-overview/content-overview.php:1147 +#: modules/calendar/calendar.php:2070 +#: modules/content-overview/content-overview.php:858 +#: modules/content-overview/content-overview.php:1954 msgid "Reset" msgstr "Réinitialiser" +#: modules/content-overview/content-overview.php:1953 +msgid "Reset Filters" +msgstr "Réinitialiser les filtres" + #: modules/reviews/reviews.php:66 msgid "Reviews" msgstr "Avis" @@ -2167,8 +2338,8 @@ msgstr "Avis" msgid "Role" msgstr "Rôle" -#: lib/Notifications/Workflow/Step/Receiver/Role.php:147 #: lib/Notifications/Workflow/Step/Receiver/Follower.php:100 +#: lib/Notifications/Workflow/Step/Receiver/Role.php:147 #, php-format msgid "role:%s" msgstr "rôle : %s" @@ -2178,28 +2349,28 @@ msgstr "rôle : %s" msgid "Roles" msgstr "Rôles" -#: modules/calendar/calendar.php:817 +#: modules/calendar/calendar.php:777 msgid "Sat" msgstr "Sam" -#: modules/calendar/calendar.php:804 modules/calendar/calendar.php:1888 +#: modules/calendar/calendar.php:764 modules/calendar/calendar.php:1848 msgid "Save" msgstr "Enregistrer" -#: modules/calendar/calendar.php:1882 +#: modules/calendar/calendar.php:1842 #, php-format msgid "Save “%s”" msgstr "Enregistrer “%s”" -#: modules/calendar/calendar.php:806 +#: modules/calendar/calendar.php:766 msgid "Save and edit" msgstr "Enregistrer et modifier" -#: modules/calendar/calendar.php:805 +#: modules/calendar/calendar.php:765 msgid "Saving..." msgstr "Enregistrement…" -#: common/php/class-module.php:264 modules/calendar/calendar.php:1999 +#: common/php/class-module.php:264 modules/calendar/calendar.php:1959 #: modules/notifications-log/library/NotificationsLogTable.php:523 msgid "Scheduled" msgstr "Planifié" @@ -2208,16 +2379,12 @@ msgstr "Planifié" msgid "Scheduled for %d receivers. Click here to display them." msgstr "Planifié pour %d destinataires. Cliquez ici pour les afficher." -#: modules/content-overview/content-overview.php:271 -msgid "Screen Layout" -msgstr "Mise en page de l’écran" - -#: modules/content-overview/content-overview.php:1049 +#: modules/content-overview/content-overview.php:1902 msgid "Search" msgstr "Rechercher" -#: modules/content-overview/content-overview.php:1048 -#: modules/content-overview/content-overview.php:1347 +#: modules/content-overview/content-overview.php:1901 +#: modules/content-overview/content-overview.php:2168 msgid "Search box" msgstr "Boîte de recherche" @@ -2255,13 +2422,22 @@ msgstr "Résultats de recherche pour « %s »" msgid "Select at least one option for each section." msgstr "Sélectionnez au moins une option pour chaque section." -#: modules/editorial-metadata/editorial-metadata.php:1958 -#: modules/editorial-metadata/editorial-metadata.php:2320 +#: modules/content-overview/content-overview.php:1279 +#: modules/content-overview/content-overview.php:1427 +msgid "Select Metakey" +msgstr "Sélectionner Metakey" + +#: modules/content-overview/content-overview.php:2210 +msgid "Select option..." +msgstr "Sélectionner une option…" + +#: modules/editorial-metadata/editorial-metadata.php:1936 +#: modules/editorial-metadata/editorial-metadata.php:2274 msgid "Select roles..." msgstr "Sélectionner les rôles" -#: modules/editorial-metadata/editorial-metadata.php:1976 -#: modules/editorial-metadata/editorial-metadata.php:2339 +#: modules/editorial-metadata/editorial-metadata.php:1954 +#: modules/editorial-metadata/editorial-metadata.php:2293 msgid "Select Type" msgstr "Sélectionner le type" @@ -2273,7 +2449,7 @@ msgstr "Envoyer des notifications de rappel" msgid "Sent" msgstr "Envoyé" -#: modules/calendar/calendar.php:826 +#: modules/calendar/calendar.php:786 msgid "Sep" msgstr "Sep" @@ -2298,7 +2474,7 @@ msgstr "Réglages" msgid "settings" msgstr "réglages" -#: modules/calendar/calendar.php:1409 +#: modules/calendar/calendar.php:1369 msgid "Seven months" msgstr "Sept mois" @@ -2306,27 +2482,24 @@ msgstr "Sept mois" msgid "shortcode" msgstr "code court" -#: modules/calendar/calendar.php:801 +#: modules/calendar/calendar.php:761 #, php-format msgid "Show %s more" msgstr "Afficher %s de plus" -#: modules/editorial-metadata/editorial-metadata.php:2117 -#: modules/editorial-metadata/editorial-metadata.php:2480 -msgid "Show as Content Overview filters" -msgstr "Afficher comme filtres d’aperçu du contenu" - -#: modules/content-overview/content-overview.php:983 +#: modules/content-overview/content-overview.php:816 msgid "Show content from" msgstr "Afficher le contenu à partir de" -#: modules/editorial-metadata/editorial-metadata.php:2141 -#: modules/editorial-metadata/editorial-metadata.php:2506 -msgid "Show on Content Calendar form" -msgstr "Afficher sur le formulaire du calendrier des contenus" +#: modules/editorial-metadata/editorial-metadata.php:2095 +#: modules/editorial-metadata/editorial-metadata.php:2434 +msgid "Show on Content Calendar and Overview form" +msgstr "" +"Afficher sur le formulaire du « Calendrier des contenus » et de la « Vue " +"d’ensemble du contenu »." -#: modules/editorial-metadata/editorial-metadata.php:2189 -#: modules/editorial-metadata/editorial-metadata.php:2555 +#: modules/editorial-metadata/editorial-metadata.php:2143 +#: modules/editorial-metadata/editorial-metadata.php:2483 msgid "Show on Post Types screen" msgstr "Afficher dans l’écran « Types de publication »" @@ -2337,8 +2510,8 @@ msgstr "" "Affichez les liens « Me notifier » et « Arrêtez de me notifier » pour ces " "types de publication :" -#: modules/editorial-metadata/editorial-metadata.php:1980 -#: modules/editorial-metadata/editorial-metadata.php:2342 +#: modules/editorial-metadata/editorial-metadata.php:1958 +#: modules/editorial-metadata/editorial-metadata.php:2296 msgid "Single Select" msgstr "Sélection simple" @@ -2347,11 +2520,11 @@ msgstr "Sélection simple" msgid "Site Administrator" msgstr "Administrateur/administratrice du site" -#: modules/calendar/calendar.php:1407 +#: modules/calendar/calendar.php:1367 msgid "Six months" msgstr "Six mois" -#: modules/calendar/calendar.php:1373 +#: modules/calendar/calendar.php:1333 msgid "Six months ago" msgstr "Il y a six mois" @@ -2378,12 +2551,12 @@ msgstr "Ignoré" msgid "Slack integration for notifications" msgstr "Intégration de Slack pour les notifications" -#: modules/editorial-metadata/editorial-metadata.php:1909 -#: modules/editorial-metadata/editorial-metadata.php:2252 +#: modules/editorial-metadata/editorial-metadata.php:1887 +#: modules/editorial-metadata/editorial-metadata.php:2206 msgid "Slug" msgstr "Identifiant" -#: modules/editorial-metadata/editorial-metadata.php:1301 +#: modules/editorial-metadata/editorial-metadata.php:1299 msgid "Slug already in use. Please choose another." msgstr "Slug déjà utilisé. Veuillez en choisir un autre." @@ -2436,11 +2609,13 @@ msgstr "" "Désolé, vous n’avez pas les privilèges pour modifier ce commentaire " "éditorial. Veuillez en parler à votre administrateur/administratrice." -#: modules/calendar/calendar.php:1357 +#: modules/calendar/calendar.php:1317 msgid "Start date" msgstr "Date de début" -#: modules/content-overview/content-overview.php:627 +#: modules/content-overview/content-overview.php:1079 +#: modules/content-overview/content-overview.php:1093 +#: modules/content-overview/content-overview.php:1137 #: modules/notifications-log/library/NotificationsLogTable.php:494 msgid "Status" msgstr "Statut" @@ -2451,7 +2626,7 @@ msgstr "Statut" msgid "Status was changed for %1$s #%2$s \"%3$s\" by %4$s %5$s" msgstr "L’état a été changé pour %1$s #%2$s « %3$s » par %4$s %5$s" -#: modules/calendar/calendar.php:2585 +#: modules/calendar/calendar.php:2545 msgid "Statuses to display publish time" msgstr "États à afficher l’heure de publication" @@ -2472,7 +2647,7 @@ msgstr "Objet :" msgid "Submitted on" msgstr "Envoyé le" -#: modules/calendar/calendar.php:1352 +#: modules/calendar/calendar.php:1312 msgid "Subscribe in iCal or Google Calendar" msgstr "Cliquez ici pour vous abonner à iCal ou Google Agenda" @@ -2480,7 +2655,7 @@ msgstr "Cliquez ici pour vous abonner à iCal ou Google Agenda" msgid "Success" msgstr "Succès" -#: modules/calendar/calendar.php:811 +#: modules/calendar/calendar.php:771 msgid "Sun" msgstr "Dim" @@ -2488,19 +2663,21 @@ msgstr "Dim" msgid "synchronous" msgstr "synchrone" -#: modules/calendar/calendar.php:3588 +#: modules/calendar/calendar.php:3548 msgid "Tag" msgid_plural "Tags" msgstr[0] "Étiquette" msgstr[1] "Étiquettes" -#: modules/calendar/calendar.php:3687 +#: modules/calendar/calendar.php:3647 +#: modules/content-overview/content-overview.php:1751 msgid "Tags" msgstr "Étiquettes" -#: modules/content-overview/content-overview.php:306 -msgid "Taxonomies to show:" -msgstr "Taxonomies à afficher :" +#: modules/content-overview/content-overview.php:1155 +#: modules/content-overview/content-overview.php:1215 +msgid "Taxonomies" +msgstr "Taxonomies" #: lib/Notifications/Workflow/Step/Event_Content/Taxonomy.php:24 msgid "Taxonomy" @@ -2516,7 +2693,7 @@ msgctxt "taxonomy singular name" msgid "Metadata" msgstr "Métadonnées" -#: modules/calendar/calendar.php:1415 +#: modules/calendar/calendar.php:1375 msgid "Ten months" msgstr "Dix mois" @@ -2524,7 +2701,7 @@ msgstr "Dix mois" msgid "Terms" msgstr "Termes" -#: modules/editorial-metadata/editorial-metadata.php:1605 +#: modules/editorial-metadata/editorial-metadata.php:1589 msgid "Terms not set." msgstr "Les conditions ne sont pas définies." @@ -2532,7 +2709,7 @@ msgstr "Les conditions ne sont pas définies." msgid "Text" msgstr "Texte" -#: modules/editorial-metadata/editorial-metadata.php:2261 +#: modules/editorial-metadata/editorial-metadata.php:2215 msgid "" "The \"slug\" is the URL-friendly version of the name. It is usually all " "lowercase and contains only letters, numbers, and hyphens." @@ -2541,8 +2718,8 @@ msgstr "" "en minuscules et ne contient que des lettres, des chiffres et des traits " "d’union." -#: modules/editorial-metadata/editorial-metadata.php:1930 -#: modules/editorial-metadata/editorial-metadata.php:2278 +#: modules/editorial-metadata/editorial-metadata.php:1908 +#: modules/editorial-metadata/editorial-metadata.php:2232 msgid "" "The description can be used to communicate with your team about what the " "metadata is for." @@ -2554,12 +2731,12 @@ msgstr "" msgid "The Events Calendar Integration" msgstr "L’intégration de The Events Calendar" -#: modules/editorial-metadata/editorial-metadata.php:1944 +#: modules/editorial-metadata/editorial-metadata.php:1922 msgid "The metadata type cannot be changed once created." msgstr "Le type de métadonnées ne peut pas être modifié une fois créé." -#: modules/editorial-metadata/editorial-metadata.php:1904 -#: modules/editorial-metadata/editorial-metadata.php:2247 +#: modules/editorial-metadata/editorial-metadata.php:1882 +#: modules/editorial-metadata/editorial-metadata.php:2201 msgid "The name is for labeling the metadata field." msgstr "Le nom sert à labelliser le champ de métadonnées." @@ -2576,7 +2753,7 @@ msgid "" msgstr "" "Le module de notification doit être activé pour que ce widget s’affiche." -#: modules/calendar/calendar.php:2661 +#: modules/calendar/calendar.php:2621 msgid "" "The number of weeks shown on the calendar can be changed on a user-by-user " "basis using the calendar's screen options." @@ -2588,12 +2765,12 @@ msgstr "" msgid "The parent log was deleted or probably rescheduled" msgstr "Le journal parent a été supprimé ou probablement reprogrammé" -#: modules/calendar/calendar.php:3807 +#: modules/calendar/calendar.php:3767 msgid "The selected post type is not enabled for the calendar." msgstr "" "Le type de publication sélectionné n’est pas activé pour le calendrier." -#: modules/calendar/calendar.php:4286 +#: modules/calendar/calendar.php:4246 msgid "" "The selected user doesn't have enough permissions to be set as the post " "author." @@ -2601,11 +2778,11 @@ msgstr "" "L’utilisateur/utilisatrice sélectionné n’a pas les droits pour être défini " "comme l’auteur/autrice de la publication." -#: modules/editorial-metadata/editorial-metadata.php:1914 +#: modules/editorial-metadata/editorial-metadata.php:1892 msgid "The slug cannot be changed once the term has been created." msgstr "Le slug ne peut pas être modifié une fois que le terme a été créé." -#: modules/content-overview/content-overview.php:1564 +#: modules/content-overview/content-overview.php:2539 msgid "There are no posts in the range or filter specified." msgstr "Il n’y a aucune publication dans l’intervalle ou le filtre spécifié." @@ -2653,13 +2830,13 @@ msgstr "" "Ceci est un aperçu du message programmé. Le contenu peut encore être modifié " "jusqu’à l’envoi de la notification." -#: modules/editorial-metadata/editorial-metadata.php:2170 -#: modules/editorial-metadata/editorial-metadata.php:2536 +#: modules/editorial-metadata/editorial-metadata.php:2124 +#: modules/editorial-metadata/editorial-metadata.php:2464 msgid "This metadata will be available for these post types." msgstr "Ces métadonnées seront disponibles pour ces types de publication." -#: modules/editorial-metadata/editorial-metadata.php:2194 -#: modules/editorial-metadata/editorial-metadata.php:2559 +#: modules/editorial-metadata/editorial-metadata.php:2148 +#: modules/editorial-metadata/editorial-metadata.php:2487 msgid "" "This metadata will be viewable on the overview screens for these post types." msgstr "" @@ -2695,26 +2872,27 @@ msgstr "" "Cela n’aura aucun effet si vous n’avez pas au moins un flux de travail " "ciblant la case « Me notifier »." -#: modules/calendar/calendar.php:1401 +#: modules/calendar/calendar.php:1361 msgid "Three months" msgstr "Trois mois" -#: modules/calendar/calendar.php:1367 +#: modules/calendar/calendar.php:1327 msgid "Three months ago" msgstr "Il y a trois mois" -#: modules/calendar/calendar.php:1388 +#: modules/calendar/calendar.php:1348 msgid "Three weeks" msgstr "Trois semaines" -#: modules/calendar/calendar.php:815 +#: modules/calendar/calendar.php:775 msgid "Thu" msgstr "Jeu" -#: modules/calendar/calendar.php:3648 -#: modules/content-overview/content-overview.php:626 -#: lib/Notifications/Table/Workflows.php:142 +#: modules/calendar/calendar.php:3608 +#: modules/content-overview/content-overview.php:557 +#: modules/content-overview/content-overview.php:1718 #: lib/Notifications/Table/Notifications.php:156 +#: lib/Notifications/Table/Workflows.php:142 msgid "Title" msgstr "Titre" @@ -2723,7 +2901,9 @@ msgstr "Titre" msgid "Title: %s" msgstr "Titre : %s" -#: modules/content-overview/content-overview.php:1413 +#: modules/content-overview/content-overview.php:1915 +#: modules/content-overview/content-overview.php:2244 +#: modules/content-overview/content-overview.php:2278 msgid "to" msgstr "à" @@ -2731,43 +2911,43 @@ msgstr "à" msgid "To date" msgstr "À ce jour" -#: modules/calendar/calendar.php:837 modules/calendar/calendar.php:2158 +#: modules/calendar/calendar.php:797 modules/calendar/calendar.php:2118 msgid "Today" msgstr "Aujourd’hui" -#: modules/calendar/calendar.php:2152 +#: modules/calendar/calendar.php:2112 #, php-format msgid "Today is %s" msgstr "Aujourd‘hui est le %s" -#: common/php/class-module.php:267 modules/calendar/calendar.php:1848 -#: modules/calendar/calendar.php:3607 -#: modules/content-overview/content-overview.php:1916 +#: common/php/class-module.php:267 modules/calendar/calendar.php:1808 +#: modules/calendar/calendar.php:3567 +#: modules/content-overview/content-overview.php:2994 msgid "Trash" msgstr "Corbeille" -#: modules/calendar/calendar.php:813 +#: modules/calendar/calendar.php:773 msgid "Tue" msgstr "Mar" -#: modules/calendar/calendar.php:1419 +#: modules/calendar/calendar.php:1379 msgid "Twelve months" msgstr "Douze mois" -#: modules/calendar/calendar.php:1399 +#: modules/calendar/calendar.php:1359 msgid "Two months" msgstr "Deux mois" -#: modules/calendar/calendar.php:1365 +#: modules/calendar/calendar.php:1325 msgid "Two months ago" msgstr "Il y a deux mois" -#: modules/calendar/calendar.php:1386 +#: modules/calendar/calendar.php:1346 msgid "Two weeks" msgstr "Deux semaines" -#: modules/editorial-metadata/editorial-metadata.php:1939 -#: modules/editorial-metadata/editorial-metadata.php:2286 +#: modules/editorial-metadata/editorial-metadata.php:1917 +#: modules/editorial-metadata/editorial-metadata.php:2240 msgid "Type" msgstr "Type" @@ -2775,8 +2955,8 @@ msgstr "Type" msgid "Undefined error found" msgstr "Erreur indéfinie trouvée" -#: modules/calendar/calendar.php:1475 -#: modules/content-overview/content-overview.php:1076 +#: modules/calendar/calendar.php:1435 +#: modules/content-overview/content-overview.php:893 msgid "Undo" msgstr "Annuler" @@ -2784,7 +2964,7 @@ msgstr "Annuler" msgid "Unpublished Content" msgstr "Contenu non publié" -#: modules/calendar/calendar.php:802 modules/calendar/calendar.php:3813 +#: modules/calendar/calendar.php:762 modules/calendar/calendar.php:3773 msgid "Untitled" msgstr "Sans titre" @@ -2792,7 +2972,7 @@ msgstr "Sans titre" msgid "Update Editorial Metadata" msgstr "Mise à jour des métadonnées éditoriales" -#: modules/editorial-metadata/editorial-metadata.php:2217 +#: modules/editorial-metadata/editorial-metadata.php:2171 msgid "Update Metadata Term" msgstr "Terme de mise à jour des métadonnées" @@ -2846,8 +3026,8 @@ msgid "User making changes or comments" msgstr "" "Utilisateur/utilisatrice apportant des modifications ou des commentaires" -#: modules/editorial-metadata/editorial-metadata.php:1950 -#: modules/editorial-metadata/editorial-metadata.php:2312 +#: modules/editorial-metadata/editorial-metadata.php:1928 +#: modules/editorial-metadata/editorial-metadata.php:2266 msgid "User role" msgstr "Rôle du compte" @@ -2875,13 +3055,13 @@ msgstr "" "Les utilisateurs/utilisatrices qui ont sélectionné « Me notifier » pour le " "contenu" -#: modules/calendar/calendar.php:1872 modules/calendar/calendar.php:3614 -#: modules/content-overview/content-overview.php:1932 +#: modules/calendar/calendar.php:1832 modules/calendar/calendar.php:3574 +#: modules/content-overview/content-overview.php:3010 msgid "View" msgstr "Voir" -#: modules/calendar/calendar.php:1866 -#: modules/content-overview/content-overview.php:1926 +#: modules/calendar/calendar.php:1826 +#: modules/content-overview/content-overview.php:3004 #, php-format msgid "View “%s”" msgstr "Voir “%s”" @@ -2891,7 +3071,7 @@ msgstr "Voir “%s”" msgid "View “%s” on Google Maps" msgstr "Voir “%s” sur Google Maps" -#: modules/calendar/calendar.php:4072 +#: modules/calendar/calendar.php:4032 msgid "View all categories" msgstr "Voir toutes les catégories" @@ -2917,9 +3097,9 @@ msgstr "Voir utilisateur/utilisatrice de notification" msgid "View: %s" msgstr "Voir : %s" -#: modules/editorial-metadata/editorial-metadata.php:2093 -#: modules/editorial-metadata/editorial-metadata.php:2453 -#: modules/editorial-metadata/editorial-metadata.php:2700 +#: modules/editorial-metadata/editorial-metadata.php:2071 +#: modules/editorial-metadata/editorial-metadata.php:2407 +#: modules/editorial-metadata/editorial-metadata.php:2628 msgid "Viewable" msgstr "Visibilité" @@ -2927,7 +3107,7 @@ msgstr "Visibilité" msgid "Warning" msgstr "Avertissement" -#: modules/calendar/calendar.php:814 +#: modules/calendar/calendar.php:774 msgid "Wed" msgstr "Mer" @@ -2998,13 +3178,11 @@ msgstr "Fluxe de travail : %s" msgid "Workflows" msgstr "Flux de travail" -#: modules/editorial-metadata/editorial-metadata.php:2098 -#: modules/editorial-metadata/editorial-metadata.php:2122 -#: modules/editorial-metadata/editorial-metadata.php:2146 -#: modules/editorial-metadata/editorial-metadata.php:2457 -#: modules/editorial-metadata/editorial-metadata.php:2484 -#: modules/editorial-metadata/editorial-metadata.php:2510 -#: modules/editorial-metadata/editorial-metadata.php:2760 +#: modules/editorial-metadata/editorial-metadata.php:2076 +#: modules/editorial-metadata/editorial-metadata.php:2100 +#: modules/editorial-metadata/editorial-metadata.php:2411 +#: modules/editorial-metadata/editorial-metadata.php:2438 +#: modules/editorial-metadata/editorial-metadata.php:2688 #: modules/editorial-metadata/input-handlers/editorial-metadata-input-checkbox-handler.php:142 msgid "Yes" msgstr "Oui" @@ -3035,10 +3213,26 @@ msgstr "" msgid "You can see all editorial comments on this %s here: " msgstr "Vous pouvez voir ici tous les commentaires éditoriaux sur cette %s : " +#: modules/content-overview/content-overview.php:1149 +#: modules/content-overview/content-overview.php:1209 +#| msgid "No editorial metadata found." +msgid "You do not have any editorial metadata enabled" +msgstr "Vous n’avez aucune métadonnée éditoriale activée" + +#: modules/content-overview/content-overview.php:1156 +#: modules/content-overview/content-overview.php:1216 +msgid "You do not have any public taxonomies" +msgstr "Vous n’avez aucune taxonomie publique" + #: publishpress.php:670 msgid "You do not have necessary permissions to complete this action." msgstr "Vous n’avez pas les droits necessaires pour compléter cette action." +#: modules/content-overview/content-overview.php:1009 +#, php-format +msgid "You do not have permission to add new %s" +msgstr "Vous n’avez pas les droits pour ajouter %s" + #: lib/Notifications/Table/Notifications.php:235 msgid "You don't have any notifications" msgstr "Vous n’avez aucune notification" @@ -3053,6 +3247,22 @@ msgstr "" "offre plus de fonctionnalités et de pris en charge. %sPasser à la version " "Pro%s" +#~ msgid "Click to toggle" +#~ msgstr "Cliquez ici pour basculer" + +#~ msgid "" +#~ "If enabled, this metadata will be available as a filter option on the " +#~ "Content Overview screen." +#~ msgstr "" +#~ "Quand il est activée, ces métadonnées seront disponibles en tant " +#~ "qu’option de filtre sur l’écran d’aperçu du contenu." + +#~ msgid "Screen Layout" +#~ msgstr "Mise en page de l’écran" + +#~ msgid "Taxonomies to show:" +#~ msgstr "Taxonomies à afficher :" + #~| msgid "%1$s at %2$s" #~ msgid "said on %1$s at %2$s" #~ msgstr "dit le %1$s à %2$s" @@ -3150,9 +3360,6 @@ msgstr "" #~ msgid "Could not delete the status: " #~ msgstr "Impossible de supprimer l’état : " -#~ msgid "Custom Status" -#~ msgstr "État personnalisé" - #~ msgid "Custom status doesn't exist." #~ msgstr "L’état pérsonnalisé n’existe pas." @@ -3230,10 +3437,6 @@ msgstr "" #~ "Afficher le menu déroulant de l’état sur l’écran de modification de la " #~ "publication :" -#~ msgid "Sorry, you do not have permission to edit custom statuses." -#~ msgstr "" -#~ "Désolé, vous n’avez pas les droits pour modifier les états pérsonnalisés." - #~ msgid "Status does not exist." #~ msgstr "L’état n’existe pas." diff --git a/languages/publishpress-it_IT.mo b/languages/publishpress-it_IT.mo index de89971f0..11419ecd3 100644 Binary files a/languages/publishpress-it_IT.mo and b/languages/publishpress-it_IT.mo differ diff --git a/languages/publishpress-it_IT.po b/languages/publishpress-it_IT.po index 71c45d2c7..0456b01cd 100644 --- a/languages/publishpress-it_IT.po +++ b/languages/publishpress-it_IT.po @@ -5,8 +5,8 @@ msgstr "" "Project-Id-Version: Plugins - PublishPress Planner: Organize and Schedule " "Your WordPress Content - Stable (latest release)\n" "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/project\n" -"POT-Creation-Date: 2024-01-23 11:07+0000\n" -"PO-Revision-Date: 2024-01-23 21:24+0100\n" +"POT-Creation-Date: 2024-04-04 04:10+0000\n" +"PO-Revision-Date: 2024-04-12 20:14+0200\n" "Last-Translator: \n" "Language-Team: Italian\n" "Language: it_IT\n" @@ -58,11 +58,13 @@ msgstr "%1$s #%2$s \"%3$s\" è stato modificato a non pubblicato da %4$s %5$s" msgid "%1$s (%2$s ) said on %3$s at %4$s:" msgstr "%1$s (%2$s ) ha detto %3$s alle %4$s:" -#: modules/content-overview/content-overview.php:1012 +#: modules/content-overview/content-overview.php:845 #, php-format +#| msgctxt "%1$s = start date, %2$s = end date" +#| msgid " %1$s to %2$s" msgctxt "%1$s = start date, %2$s = end date" -msgid " %1$s to %2$s" -msgstr " %1$s a %2$s" +msgid " %1$s
to
%2$s" +msgstr " %1$s
a
%2$s" #. 1: old status, 2: new status #: modules/notifications/notifications.php:2056 @@ -72,8 +74,8 @@ msgstr "%1$s => %2$s" #. 1: Comment date, 2: Comment time. #: modules/notifications/notifications.php:1892 -#: modules/editorial-metadata/input-handlers/editorial-metadata-input-date-handler.php:201 #: modules/editorial-comments/library/EditorialCommentsTable.php:336 +#: modules/editorial-metadata/input-handlers/editorial-metadata-input-date-handler.php:201 #, php-format msgid "%1$s at %2$s" msgstr "%1$s alle %2$s" @@ -95,14 +97,25 @@ msgid_plural "%d Users" msgstr[0] "%d utente" msgstr[1] "%d utenti" -#: modules/calendar/calendar.php:835 +#: modules/calendar/calendar.php:795 msgid "%d week" msgstr "%d settimana" -#: modules/calendar/calendar.php:836 +#: modules/calendar/calendar.php:796 msgid "%d weeks" msgstr "%d settimane" +#: modules/content-overview/content-overview.php:1004 +#, php-format +msgid "%s could not be created" +msgstr "%s non può essere creato" + +#: modules/content-overview/content-overview.php:1001 +#, php-format +msgid "%s created successfully. Edit %s" +msgstr "" +"%s creato correttamente. Modifica %s" + #: modules/notifications-log/notifications-log.php:272 #, php-format msgid "%s notification found." @@ -110,26 +123,26 @@ msgid_plural "%s notifications found." msgstr[0] "Notifica %s trovata." msgstr[1] "Notifiche %s trovate." -#: modules/calendar/calendar.php:4163 +#: modules/calendar/calendar.php:4123 #, php-format msgid "%s week" msgid_plural "%s weeks" msgstr[0] "%s settimana" msgstr[1] "%s settimane" -#: modules/calendar/calendar.php:2175 +#: modules/calendar/calendar.php:2135 msgid "«" msgstr "«" -#: modules/calendar/calendar.php:2188 +#: modules/calendar/calendar.php:2148 msgid "‹" msgstr "‹" -#: modules/calendar/calendar.php:2144 +#: modules/calendar/calendar.php:2104 msgid "»" msgstr "»" -#: modules/calendar/calendar.php:2127 +#: modules/calendar/calendar.php:2087 msgid "›" msgstr "›" @@ -350,16 +363,20 @@ msgstr "" msgid "Add an editorial comment" msgstr "Aggiungi un commento editoriale" -#: modules/editorial-metadata/editorial-metadata.php:2085 -#: modules/editorial-metadata/editorial-metadata.php:2446 +#: modules/editorial-metadata/editorial-metadata.php:2063 +#: modules/editorial-metadata/editorial-metadata.php:2400 msgid "Add Another Option" msgstr "Aggiungi una opzione" +#: modules/content-overview/content-overview.php:1287 +msgid "Add Column" +msgstr "Aggiungi una colonna" + #: modules/editorial-comments/editorial-comments.php:574 msgid "Add Comment" msgstr "Aggiungi un commento" -#: modules/calendar/calendar.php:807 +#: modules/calendar/calendar.php:767 #, php-format msgid "Add content for %s" msgstr "Aggiungi contenuto per %s" @@ -370,15 +387,26 @@ msgstr "Aggiungi contenuto per %s" msgid "Add editorial comment: %s" msgstr "Aggiungi commento editoriale: %s" -#: modules/editorial-metadata/editorial-metadata.php:1799 +#: modules/content-overview/content-overview.php:1435 +msgid "Add Filter" +msgstr "Aggiungi filtro" + +#: modules/content-overview/content-overview.php:1267 +#: modules/content-overview/content-overview.php:1415 +#: modules/editorial-metadata/editorial-metadata.php:1783 msgid "Add New" msgstr "Aggiungi nuovo" +#: modules/content-overview/content-overview.php:1558 +#, php-format +msgid "Add New %s" +msgstr "Aggiungi nuovo %s" + #: modules/editorial-metadata/editorial-metadata.php:453 msgid "Add New Editorial Metadata" msgstr "Aggiungi un nuovo metadato editoriale" -#: modules/editorial-metadata/editorial-metadata.php:2581 +#: modules/editorial-metadata/editorial-metadata.php:2509 msgid "Add New Metadata Term" msgstr "Aggiungi nuovo termine metadati" @@ -410,8 +438,8 @@ msgstr "Aggiungi o elimina notifiche di ruolo" msgid "Add or remove notify users" msgstr "Aggiungi o elimina utenti di notifica" -#: modules/editorial-metadata/editorial-metadata.php:2165 -#: modules/editorial-metadata/editorial-metadata.php:2532 +#: modules/editorial-metadata/editorial-metadata.php:2119 +#: modules/editorial-metadata/editorial-metadata.php:2460 msgid "Add to post types" msgstr "Aggiungi ai tipi di contenuto" @@ -423,8 +451,8 @@ msgstr "Notifiche avanzate" msgid "All" msgstr "Tutto" -#: modules/content-overview/content-overview.php:1278 -#: modules/content-overview/content-overview.php:1281 +#: modules/content-overview/content-overview.php:2091 +#: modules/content-overview/content-overview.php:2094 #, php-format msgid "All %s" msgstr "Tutti i %s" @@ -433,13 +461,13 @@ msgstr "Tutti i %s" msgid "All Actions" msgstr "Tutte le azioni" -#: modules/calendar/calendar.php:833 modules/calendar/calendar.php:4111 -#: modules/content-overview/content-overview.php:1300 -#: modules/content-overview/content-overview.php:1303 +#: modules/calendar/calendar.php:793 modules/calendar/calendar.php:4071 +#: modules/content-overview/content-overview.php:2116 +#: modules/content-overview/content-overview.php:2119 msgid "All authors" msgstr "Tutti gli autori" -#: modules/calendar/calendar.php:831 +#: modules/calendar/calendar.php:791 msgid "All categories" msgstr "Tutte le categorie" @@ -471,22 +499,22 @@ msgstr "Tutte le notifiche di ruolo" msgid "All Notify Users" msgstr "Tutti gli utenti di notifica" -#: modules/editorial-metadata/editorial-metadata.php:1268 -#: modules/editorial-metadata/editorial-metadata.php:1438 +#: modules/editorial-metadata/editorial-metadata.php:1266 +#: modules/editorial-metadata/editorial-metadata.php:1429 msgid "All options value and labels are required." msgstr "Tutti i valori e le etichette delle opzioni sono obbligatori." -#: modules/content-overview/content-overview.php:1330 +#: modules/content-overview/content-overview.php:2148 msgid "All post types" msgstr "Tutti i tipi di contenuto" -#: modules/notifications-log/notifications-log.php:204 #: modules/editorial-comments/editorial-comments.php:212 +#: modules/notifications-log/notifications-log.php:204 #: modules/editorial-comments/library/EditorialCommentsTable.php:181 msgid "All Posts" msgstr "Tutti gli articoli" -#: modules/calendar/calendar.php:2973 +#: modules/calendar/calendar.php:2933 msgid "All posts" msgstr "Tutti gli articoli" @@ -494,20 +522,24 @@ msgstr "Tutti gli articoli" msgid "All Receivers" msgstr "Tutti i destinatari" +#: modules/content-overview/content-overview.php:2363 +msgid "All status" +msgstr "Tutti gli stati" + #: modules/notifications-log/notifications-log.php:208 msgid "All Statuses" msgstr "Tutti gli stati" -#: modules/calendar/calendar.php:830 modules/calendar/calendar.php:4055 -#: modules/content-overview/content-overview.php:1256 +#: modules/calendar/calendar.php:790 modules/calendar/calendar.php:4015 +#: modules/content-overview/content-overview.php:2065 msgid "All statuses" msgstr "Tutti gli stati" -#: modules/calendar/calendar.php:832 modules/calendar/calendar.php:4090 +#: modules/calendar/calendar.php:792 modules/calendar/calendar.php:4050 msgid "All tags" msgstr "Tutti i tag" -#: modules/calendar/calendar.php:834 modules/calendar/calendar.php:4138 +#: modules/calendar/calendar.php:794 modules/calendar/calendar.php:4098 msgid "All types" msgstr "Tutti i tipi" @@ -520,7 +552,7 @@ msgstr "Tutti gli utenti" msgid "All Workflows" msgstr "Tutti i workflows" -#: modules/calendar/calendar.php:2577 +#: modules/calendar/calendar.php:2537 msgid "Allow public access to subscriptions in iCal or Google Calendar" msgstr "Permetti l'accesso pubblico agli abbonamenti a iCal o Google Calendar" @@ -532,15 +564,25 @@ msgstr "Avvisa sempre l'autore del contenuto:" msgid "Always notify users who have edited the content:" msgstr "Avvisa sempre gli utenti che hanno modificato il contenuto:" -#: modules/calendar/calendar.php:2625 +#: modules/calendar/calendar.php:2585 msgid "Always show complete post titles" msgstr "Visualizza sempre il titolo completo degli articoli" -#: modules/content-overview/content-overview.php:1022 +#: modules/content-overview/content-overview.php:855 +#: modules/content-overview/content-overview.php:865 +#: modules/content-overview/content-overview.php:2197 +#: modules/content-overview/content-overview.php:2308 +#: modules/content-overview/content-overview.php:2346 +#: modules/content-overview/content-overview.php:2423 msgid "Apply" msgstr "Applica" -#: modules/calendar/calendar.php:821 +#: modules/content-overview/content-overview.php:1371 +#: modules/content-overview/content-overview.php:1519 +msgid "Apply Changes" +msgstr "Applica modifiche" + +#: modules/calendar/calendar.php:781 msgid "Apr" msgstr "Apr" @@ -565,7 +607,7 @@ msgstr "Notifiche asincrone" msgid "asynchronous" msgstr "asincrono" -#: modules/calendar/calendar.php:2644 +#: modules/calendar/calendar.php:2604 msgid "At least one post type must be selected" msgstr "Almeno un tipo di articolo deve essere selezionato" @@ -573,13 +615,18 @@ msgstr "Almeno un tipo di articolo deve essere selezionato" msgid "Attach file" msgstr "Allega file" -#: modules/calendar/calendar.php:825 +#: modules/calendar/calendar.php:785 msgid "Aug" msgstr "Ago" -#: modules/calendar/calendar.php:1983 modules/calendar/calendar.php:3578 -#: modules/calendar/calendar.php:3668 -#: modules/content-overview/content-overview.php:629 +#: modules/calendar/calendar.php:1943 modules/calendar/calendar.php:3538 +#: modules/calendar/calendar.php:3628 +#: modules/content-overview/content-overview.php:1081 +#: modules/content-overview/content-overview.php:1095 +#: modules/content-overview/content-overview.php:1139 +#: modules/content-overview/content-overview.php:1200 +#: modules/content-overview/content-overview.php:1732 +#: modules/content-overview/content-overview.php:2114 #: modules/editorial-comments/library/EditorialCommentsTable.php:228 msgid "Author" msgid_plural "Authors" @@ -608,11 +655,11 @@ msgstr "Bozza automatica" msgid "Available fields" msgstr "Campi disponibili" -#: modules/calendar/calendar.php:2167 +#: modules/calendar/calendar.php:2127 msgid "Back %d weeks" msgstr "Indietro di %d settimane" -#: modules/calendar/calendar.php:2179 +#: modules/calendar/calendar.php:2139 msgid "Back 1 week" msgstr "Indietro di una settimana" @@ -648,25 +695,27 @@ msgstr "Blog: " msgid "Body" msgstr "Corpo del testo" -#: modules/editorial-metadata/editorial-metadata.php:2220 -#: modules/content-overview/content-overview.php:1028 +#: modules/content-overview/content-overview.php:861 #: modules/editorial-comments/editorial-comments.php:578 +#: modules/editorial-metadata/editorial-metadata.php:2174 msgid "Cancel" msgstr "Annulla" -#: modules/calendar/calendar.php:3678 +#: modules/calendar/calendar.php:3638 +#: modules/content-overview/content-overview.php:1094 +#: modules/content-overview/content-overview.php:1742 #: lib/Notifications/Workflow/Step/Event_Content/Filter/Category.php:34 msgid "Categories" msgstr "Categorie" -#: modules/calendar/calendar.php:3583 +#: modules/calendar/calendar.php:3543 #: lib/Notifications/Workflow/Step/Event_Content/Category.php:24 msgid "Category" msgid_plural "Categories" msgstr[0] "Categoria" msgstr[1] "Categorie" -#: modules/content-overview/content-overview.php:1029 +#: modules/content-overview/content-overview.php:862 msgid "Change" msgstr "Cambia" @@ -684,6 +733,10 @@ msgstr "Si tenta di fare i furbi, eh?" msgid "Checkbox" msgstr "Checkbox" +#: modules/content-overview/content-overview.php:2328 +msgid "Checked" +msgstr "Selezionato" + #: modules/notifications/notifications.php:386 msgid "Choose from the most used notify emails" msgstr "Scegli tra le email di notifica più utilizzate" @@ -710,11 +763,19 @@ msgstr "Scegli i canali a cui ogni workflow invierà notifiche:" msgid "Click here to read more about shortcode options..." msgstr "Fare clic qui per saperne di più sulle opzioni di shortcode…" -#: modules/calendar/calendar.php:1444 +#: modules/calendar/calendar.php:1404 msgid "Click here to subscribe in iCal or Google Calendar" msgstr "Fai clic qui per iscriverti a iCal o Google Calendar" -#: modules/calendar/calendar.php:798 +#: modules/content-overview/content-overview.php:1129 +msgid "Click the \"Add New\" button to create new columns." +msgstr "Fai clic sul pulsante \"Aggiungi nuovo\" per creare nuove colonne." + +#: modules/content-overview/content-overview.php:1191 +msgid "Click the \"Add New\" button to create new filters." +msgstr "Fai clic sul pulsante \"Aggiungi nuovo\" per creare nuovi filtri." + +#: modules/calendar/calendar.php:758 msgid "Click to add" msgstr "Fai clic per aggiungere" @@ -739,14 +800,18 @@ msgstr "" "Fai clic per non ricevere più notifiche sugli aggiornamenti di questo " "articolo" -#: modules/content-overview/content-overview.php:1505 -msgid "Click to toggle" -msgstr "Fai clic per commutare" - -#: modules/calendar/calendar.php:803 +#: modules/calendar/calendar.php:763 msgid "Close" msgstr "Chiudi" +#: modules/content-overview/content-overview.php:1275 +msgid "Column Title" +msgstr "Titolo colonna" + +#: modules/content-overview/content-overview.php:934 +msgid "Column updated successfully." +msgstr "La colonna è stata aggiornata correttamente." + #: modules/editorial-comments/library/EditorialCommentsTable.php:229 msgid "Comment" msgstr "Commento" @@ -772,7 +837,8 @@ msgstr "Configura" msgid "Contact" msgstr "Contatti" -#: modules/calendar/calendar.php:3695 +#: modules/calendar/calendar.php:3655 +#: modules/content-overview/content-overview.php:1759 #: modules/improved-notifications/improved-notifications.php:971 #: lib/Notifications/Workflow/Step/Content/Main.php:29 msgid "Content" @@ -783,10 +849,10 @@ msgstr "Contenuto" msgid "Content Calendar" msgstr "Calendario dei contenuti" -#: modules/content-overview/content-overview.php:141 -#: modules/content-overview/content-overview.php:508 -#: modules/content-overview/content-overview.php:525 -#: modules/content-overview/content-overview.php:526 +#: modules/content-overview/content-overview.php:147 +#: modules/content-overview/content-overview.php:419 +#: modules/content-overview/content-overview.php:436 +#: modules/content-overview/content-overview.php:437 msgid "Content Overview" msgstr "Panoramica dei contenuti" @@ -794,18 +860,31 @@ msgstr "Panoramica dei contenuti" msgid "Content:" msgstr "Contenuto:" -#: modules/calendar/calendar.php:1438 +#: modules/calendar/calendar.php:1398 msgid "Copy to the clipboard" msgstr "Copia negli appunti" +#: modules/content-overview/content-overview.php:1686 +#, php-format +msgid "Create %s" +msgstr "Crea %s" + #: modules/debug/debug.php:296 msgid "Created on" msgstr "Creato il" -#: modules/calendar/calendar.php:1361 +#: modules/calendar/calendar.php:1321 msgid "Current week" msgstr "Settimana corrente" +#: modules/content-overview/content-overview.php:1128 +msgid "Custom Columns" +msgstr "Colonne personalizzate" + +#: modules/content-overview/content-overview.php:1190 +msgid "Custom filters" +msgstr "Filtri personalizzati" + #: statuses-intro.php:142 #, php-format msgid "" @@ -826,6 +905,10 @@ msgstr "" "%1$sPublishPress Statuses%2$s. Vedi %3$sPlanner > Impostazioni%4$s per i " "dettagli." +#: modules/content-overview/content-overview.php:1861 +msgid "Customize Columns" +msgstr "Personalizza colonne" + #: modules/dashboard/dashboard.php:56 msgid "Dashboard" msgstr "Bacheca" @@ -834,8 +917,9 @@ msgstr "Bacheca" msgid "Dashboard Note" msgstr "Nota in bacheca" +#: modules/calendar/calendar.php:3527 +#: modules/content-overview/content-overview.php:1919 #: modules/editorial-metadata/editorial-metadata.php:285 -#: modules/calendar/calendar.php:3567 #: lib/Notifications/Table/Notifications.php:158 #: modules/notifications-log/library/NotificationsLogTable.php:490 msgid "Date" @@ -849,7 +933,7 @@ msgstr "Debug" msgid "Debug data" msgstr "Dati di debug" -#: modules/calendar/calendar.php:829 +#: modules/calendar/calendar.php:789 msgid "Dec" msgstr "Dic" @@ -857,27 +941,27 @@ msgstr "Dic" msgid "Default notification channels:" msgstr "Canali di notifica predefiniti:" -#: modules/editorial-metadata/editorial-metadata.php:2047 -#: modules/editorial-metadata/editorial-metadata.php:2077 -#: modules/editorial-metadata/editorial-metadata.php:2408 -#: modules/editorial-metadata/editorial-metadata.php:2438 +#: modules/editorial-metadata/editorial-metadata.php:2025 +#: modules/editorial-metadata/editorial-metadata.php:2055 +#: modules/editorial-metadata/editorial-metadata.php:2362 +#: modules/editorial-metadata/editorial-metadata.php:2392 msgid "Default option" msgstr "Opzione predefinita" -#: modules/calendar/calendar.php:2601 +#: modules/calendar/calendar.php:2561 msgid "Default publish time for items created in the calendar" msgstr "" "Ora di pubblicazione predefinita per gli elementi creati nel calendario" -#: modules/editorial-metadata/editorial-metadata.php:2050 -#: modules/editorial-metadata/editorial-metadata.php:2080 -#: modules/editorial-metadata/editorial-metadata.php:2411 -#: modules/editorial-metadata/editorial-metadata.php:2441 -#: modules/editorial-metadata/editorial-metadata.php:2837 #: modules/editorial-comments/editorial-comments.php:643 +#: modules/editorial-metadata/editorial-metadata.php:2028 +#: modules/editorial-metadata/editorial-metadata.php:2058 +#: modules/editorial-metadata/editorial-metadata.php:2365 +#: modules/editorial-metadata/editorial-metadata.php:2395 +#: modules/editorial-metadata/editorial-metadata.php:2765 +#: modules/editorial-comments/library/EditorialCommentsTable.php:434 #: modules/notifications-log/library/NotificationsLogTable.php:370 #: modules/notifications-log/library/NotificationsLogTable.php:401 -#: modules/editorial-comments/library/EditorialCommentsTable.php:434 msgid "Delete" msgstr "Elimina" @@ -889,9 +973,9 @@ msgstr "Eliminare tutto" msgid "Delete file" msgstr "Elimina file" -#: modules/editorial-metadata/editorial-metadata.php:1922 -#: modules/editorial-metadata/editorial-metadata.php:2269 -#: modules/editorial-metadata/editorial-metadata.php:2699 +#: modules/editorial-metadata/editorial-metadata.php:1900 +#: modules/editorial-metadata/editorial-metadata.php:2223 +#: modules/editorial-metadata/editorial-metadata.php:2627 msgid "Description" msgstr "Descrizione" @@ -900,7 +984,7 @@ msgid "Detailed documentation is also available on the plugin website." msgstr "" "Una documentazione dettagliata è disponibile anche sul sito del plugin." -#: modules/calendar/calendar.php:2675 modules/dashboard/dashboard.php:368 +#: modules/calendar/calendar.php:2635 modules/dashboard/dashboard.php:368 #: modules/dashboard/dashboard.php:391 modules/dashboard/dashboard.php:425 msgid "Disabled" msgstr "Disabilitato" @@ -914,10 +998,10 @@ msgstr "" "Disattivato perché add_post_type_support('%1$s', '%2$s') è incluso in un " "file caricato." -#: modules/editorial-metadata/editorial-metadata.php:2038 -#: modules/editorial-metadata/editorial-metadata.php:2069 -#: modules/editorial-metadata/editorial-metadata.php:2399 -#: modules/editorial-metadata/editorial-metadata.php:2430 +#: modules/editorial-metadata/editorial-metadata.php:2016 +#: modules/editorial-metadata/editorial-metadata.php:2047 +#: modules/editorial-metadata/editorial-metadata.php:2353 +#: modules/editorial-metadata/editorial-metadata.php:2384 msgid "Display Label" msgstr "Visualizza eitichetta" @@ -929,7 +1013,7 @@ msgstr "Nome da visualizzare" msgid "Documentation" msgstr "Documentazione" -#: modules/calendar/calendar.php:1431 +#: modules/calendar/calendar.php:1391 msgid "Download .ics file" msgstr "Scarica file .ics" @@ -937,8 +1021,16 @@ msgstr "Scarica file .ics" msgid "Draft" msgstr "Bozza" -#: modules/editorial-metadata/editorial-metadata.php:2005 -#: modules/editorial-metadata/editorial-metadata.php:2368 +#: modules/content-overview/content-overview.php:1330 +msgid "Drag to change enabled columns order." +msgstr "Trascina per modificare l'ordine delle colonne abilitate." + +#: modules/content-overview/content-overview.php:1478 +msgid "Drag to change enabled filters order." +msgstr "Trascina per modificare l'ordine dei filtri abilitati." + +#: modules/editorial-metadata/editorial-metadata.php:1983 +#: modules/editorial-metadata/editorial-metadata.php:2322 msgid "Dropdown Option" msgstr "Opzioni del menu a discesa" @@ -954,10 +1046,10 @@ msgstr "Soglia di notifica duplicata:" msgid "E-mails" msgstr "Email" -#: modules/editorial-metadata/editorial-metadata.php:2817 -#: modules/calendar/calendar.php:1838 modules/calendar/calendar.php:3600 -#: modules/content-overview/content-overview.php:1904 +#: modules/calendar/calendar.php:1798 modules/calendar/calendar.php:3560 +#: modules/content-overview/content-overview.php:2982 #: modules/editorial-comments/editorial-comments.php:632 +#: modules/editorial-metadata/editorial-metadata.php:2745 msgid "Edit" msgstr "Modifica" @@ -991,11 +1083,11 @@ msgstr "Modifica notifica di ruolo" msgid "Edit Notify User" msgstr "Modifica utente di notifica" -#: modules/calendar/calendar.php:1838 +#: modules/calendar/calendar.php:1798 msgid "Edit this item" msgstr "Modifica questo elemento" -#: modules/content-overview/content-overview.php:1900 +#: modules/content-overview/content-overview.php:2978 #: modules/dashboard/dashboard.php:299 msgid "Edit this post" msgstr "Modifica questo articolo" @@ -1017,9 +1109,11 @@ msgstr "Commenti editoriali" msgid "Editorial Comments" msgstr "Commenti editoriali" +#: modules/content-overview/content-overview.php:1148 +#: modules/content-overview/content-overview.php:1208 #: modules/editorial-metadata/editorial-metadata.php:96 -#: modules/editorial-metadata/editorial-metadata.php:1775 -#: modules/editorial-metadata/editorial-metadata.php:1776 +#: modules/editorial-metadata/editorial-metadata.php:1759 +#: modules/editorial-metadata/editorial-metadata.php:1760 msgid "Editorial Metadata" msgstr "Metadati editoriali" @@ -1029,11 +1123,11 @@ msgstr "Metadati editoriali" msgid "Editorial Notifications" msgstr "Notifiche editoriali" -#: modules/calendar/calendar.php:1411 +#: modules/calendar/calendar.php:1371 msgid "Eight months" msgstr "Otto mesi" -#: modules/calendar/calendar.php:1417 +#: modules/calendar/calendar.php:1377 msgid "Eleven months" msgstr "Undici mesi" @@ -1050,15 +1144,32 @@ msgstr "email" msgid "Email from:" msgstr "Email da:" +#: modules/content-overview/content-overview.php:1249 +msgid "Enable Columns" +msgstr "Abilita colonne" + +#: modules/content-overview/content-overview.php:1397 +msgid "Enable Filters" +msgstr "Abilita filtri" + #: modules/editorial-comments/editorial-comments.php:1232 msgid "Enable for these post types:" msgstr "Abilita per questi tipi di contenuti:" -#: modules/calendar/calendar.php:2569 +#: modules/content-overview/content-overview.php:1403 +msgid "Enable or Disable Content Overview filter." +msgstr "Abilita o disabilita filtro della panoramica dei contenuti." + +#: modules/content-overview/content-overview.php:1255 +msgid "Enable or Disable Content Overview table column." +msgstr "" +"Abilita o disabilita colonna della tabella della panoramica dei contenuti." + +#: modules/calendar/calendar.php:2529 msgid "Enable subscriptions in iCal or Google Calendar" msgstr "Abilita gli abbonamenti a iCal o Google Calendar" -#: modules/calendar/calendar.php:2676 modules/dashboard/dashboard.php:369 +#: modules/calendar/calendar.php:2636 modules/dashboard/dashboard.php:369 #: modules/dashboard/dashboard.php:392 modules/dashboard/dashboard.php:426 msgid "Enabled" msgstr "Abilitato" @@ -1067,7 +1178,7 @@ msgstr "Abilitato" msgid "Enabled features" msgstr "Funzionalità abilitate" -#: modules/calendar/calendar.php:1379 +#: modules/calendar/calendar.php:1339 msgid "End date" msgstr "Data di fine" @@ -1083,8 +1194,8 @@ msgstr "" "Immettere eventuali utenti, ruoli o indirizzi e-mail che dovrebbero ricevere " "notifiche dai flussi di lavoro o workflow." -#: modules/editorial-metadata/editorial-metadata.php:2010 -#: modules/editorial-metadata/editorial-metadata.php:2371 +#: modules/editorial-metadata/editorial-metadata.php:1988 +#: modules/editorial-metadata/editorial-metadata.php:2325 msgid "" "Enter the dropdown option value and label. You can move options to change " "their order." @@ -1097,24 +1208,29 @@ msgstr "" msgid "Error" msgstr "Errore" -#: modules/editorial-metadata/editorial-metadata.php:1369 +#: modules/editorial-metadata/editorial-metadata.php:1360 msgid "Error adding term." msgstr "Errore nell'aggiungere il termine." -#: modules/editorial-metadata/editorial-metadata.php:1646 +#: modules/editorial-metadata/editorial-metadata.php:1630 msgid "Error deleting term." msgstr "Errore nell'eliminazione del termine." -#: modules/editorial-metadata/editorial-metadata.php:1532 -#: modules/editorial-metadata/editorial-metadata.php:1580 +#: modules/editorial-metadata/editorial-metadata.php:1516 +#: modules/editorial-metadata/editorial-metadata.php:1564 msgid "Error updating term." msgstr "Errore nell'aggiornamento del termine." +#: modules/content-overview/content-overview.php:1535 +msgid "Error validating nonce. Please reload this page and try again." +msgstr "Errore nella convalida del nonce. Ricarica questa pagina e riprova." + #: modules/async-notifications/async-notifications.php:172 #, php-format msgid "Event: %s, Workflow ID: %s, Post ID: %s, User ID: %s" msgstr "Evento: %s, ID Workflow: %s,ID Articolo: %s, ID Utente: %s" +#: modules/content-overview/content-overview.php:2367 #: modules/notifications-log/library/NotificationsLogTable.php:271 #: modules/notifications-log/library/NotificationsLogTable.php:287 msgid "Failed" @@ -1128,7 +1244,7 @@ msgstr "Supporto veloce e professionale" msgid "Features" msgstr "Funzionalità" -#: modules/calendar/calendar.php:819 +#: modules/calendar/calendar.php:779 msgid "Feb" msgstr "Feb" @@ -1140,7 +1256,7 @@ msgstr "Puoi scegliere liberamente le funzionalità che ti servono." msgid "field" msgstr "campo" -#: modules/calendar/calendar.php:2609 +#: modules/calendar/calendar.php:2569 msgid "Field used for sorting the calendar items in a day cell" msgstr "" "Campo utilizzato per ordinare gli elementi del calendario in una cella del " @@ -1150,9 +1266,8 @@ msgstr "" msgid "File info" msgstr "Informazioni file" -#: modules/content-overview/content-overview.php:1145 -#: modules/notifications-log/library/NotificationsLogTable.php:640 #: modules/editorial-comments/library/EditorialCommentsTable.php:210 +#: modules/notifications-log/library/NotificationsLogTable.php:640 msgid "Filter" msgstr "Filtro" @@ -1172,8 +1287,8 @@ msgstr "Filtra per utenti di notifica" msgid "Filter the content?" msgstr "Filtrare il contenuto?" -#: modules/editorial-metadata/editorial-metadata.php:1970 -#: modules/editorial-metadata/editorial-metadata.php:2334 +#: modules/editorial-metadata/editorial-metadata.php:1948 +#: modules/editorial-metadata/editorial-metadata.php:2288 msgid "" "Filter the list of users in the editorial meta to users in the selected " "roles." @@ -1181,6 +1296,14 @@ msgstr "" "Filtra la lista degli utenti dei meta editoriali per gli utenti dei ruoli " "selezionati." +#: modules/content-overview/content-overview.php:1423 +msgid "Filter Title" +msgstr "Titolo filtro" + +#: modules/content-overview/content-overview.php:948 +msgid "Filter updated successfully." +msgstr "Filtro aggiornato correttamente." + #: modules/editorial-metadata/editorial-metadata.php:209 msgid "First Draft Date" msgstr "Data prima bozza" @@ -1189,11 +1312,11 @@ msgstr "Data prima bozza" msgid "First Name" msgstr "Nome" -#: modules/calendar/calendar.php:1405 +#: modules/calendar/calendar.php:1365 msgid "Five months" msgstr "Cinque mesi" -#: modules/calendar/calendar.php:1371 +#: modules/calendar/calendar.php:1331 msgid "Five months ago" msgstr "Cinque mesi fa" @@ -1224,27 +1347,27 @@ msgstr "Per quale contenuto?" msgid "Format" msgstr "Formato" -#: modules/calendar/calendar.php:2133 +#: modules/calendar/calendar.php:2093 msgid "Forward %d weeks" msgstr "Avanti di %d settimane" -#: modules/calendar/calendar.php:2118 +#: modules/calendar/calendar.php:2078 msgid "Forward 1 week" msgstr "Avanti di una settimana" -#: modules/calendar/calendar.php:1403 +#: modules/calendar/calendar.php:1363 msgid "Four months" msgstr "Quattro mesi" -#: modules/calendar/calendar.php:1369 +#: modules/calendar/calendar.php:1329 msgid "Four months ago" msgstr "Quattro mesi fa" -#: modules/calendar/calendar.php:1390 +#: modules/calendar/calendar.php:1350 msgid "Four weeks" msgstr "Quattro settimane" -#: modules/calendar/calendar.php:816 +#: modules/calendar/calendar.php:776 msgid "Fri" msgstr "Ven" @@ -1252,13 +1375,13 @@ msgstr "Ven" msgid "From date" msgstr "Dalla data" -#: modules/editorial-metadata/editorial-metadata.php:2820 +#: modules/editorial-metadata/editorial-metadata.php:2748 msgid "Hidden metadata can only be viewed on the edit post view." msgstr "" "I metadati nascosti possono essere visualizzati solo nella visualizzazione " "di modifica dell'articolo." -#: modules/calendar/calendar.php:800 +#: modules/calendar/calendar.php:760 #, php-format msgid "Hide the %s last items" msgstr "Nascondi gli ultimi %s elementi" @@ -1279,38 +1402,29 @@ msgstr "" "chiave segreta iCal rigenerata. Ricordati di informare tutti gli utenti che " "dovranno iscriversi nuovamente." -#: modules/calendar/calendar.php:3562 lib/Notifications/Table/Workflows.php:143 +#: modules/calendar/calendar.php:3522 #: lib/Notifications/Table/Notifications.php:159 +#: lib/Notifications/Table/Workflows.php:143 msgid "ID" msgstr "ID" -#: modules/editorial-metadata/editorial-metadata.php:2108 -#: modules/editorial-metadata/editorial-metadata.php:2472 -#: modules/editorial-metadata/editorial-metadata.php:2827 -msgid "" -"If enabled, this metadata can be seen on the Content Calendar and Content " -"Overview screens." -msgstr "" -"Se viene abilitato questo metadato sarà visibile nelle schermate del " -"calendario dei contenuti e della panoramica dei contenuti." - -#: modules/editorial-metadata/editorial-metadata.php:2132 -#: modules/editorial-metadata/editorial-metadata.php:2498 -msgid "" -"If enabled, this metadata will be available as a filter option on the " -"Content Overview screen." +#: modules/editorial-metadata/editorial-metadata.php:2086 +#: modules/editorial-metadata/editorial-metadata.php:2426 +#: modules/editorial-metadata/editorial-metadata.php:2755 +msgid "If enabled, this metadata can be seen on the Content Calendar screens." msgstr "" -"Se viene abilitato questo metadato sarà disponibile come opzione del filtro " -"nella schermata della panoramica dei contenuti." +"Se viene abilitato questo metadato sarà visibile nella schermata del " +"calendario dei contenuti." -#: modules/editorial-metadata/editorial-metadata.php:2156 -#: modules/editorial-metadata/editorial-metadata.php:2524 +#: modules/editorial-metadata/editorial-metadata.php:2110 +#: modules/editorial-metadata/editorial-metadata.php:2452 msgid "" "If enabled, this metadata will be available when adding new posts on the " -"Content Calendar screen." +"Content Calendar and Overview screen." msgstr "" "Se viene abilitato questo metadato sarà disponibile quando si aggiungono " -"nuovi articoli nella schermata del calendario dei contenuti." +"nuovi articoli nella schermata del calendario dei contenuti e della " +"panoramica dei contenuti." #: modules/settings/settings.php:269 #, php-format @@ -1331,16 +1445,24 @@ msgstr "" "Se vedi un errore o cerchi informazioni su PublishPress, non esitare a " "contattare il team di supporto. Mandaci una email:" -#: modules/editorial-metadata/editorial-metadata.php:1998 -#: modules/editorial-metadata/editorial-metadata.php:2363 +#: modules/content-overview/content-overview.php:1135 +msgid "Inbuilt Columns" +msgstr "Colonne integrate" + +#: modules/content-overview/content-overview.php:1197 +msgid "Inbuilt filters" +msgstr "Filtri integrati" + +#: modules/editorial-metadata/editorial-metadata.php:1976 +#: modules/editorial-metadata/editorial-metadata.php:2317 msgid "Indicate the select type." msgstr "Indica il tipo selezionato." -#: modules/editorial-metadata/editorial-metadata.php:2307 +#: modules/editorial-metadata/editorial-metadata.php:2261 msgid "Indicate the type of editorial metadata." msgstr "Indica il tipo di metadati editoriali." -#: modules/calendar/calendar.php:1512 +#: modules/calendar/calendar.php:1472 msgid "Initializing the calendar. Please wait..." msgstr "Inizializzando il calendario. Attendi…" @@ -1363,19 +1485,23 @@ msgstr "Canale non valido per la notifica" msgid "Invalid comment data" msgstr "Dati del commento non validi" -#: modules/calendar/calendar.php:3302 +#: modules/calendar/calendar.php:3262 msgid "Invalid date" msgstr "Data non valida" -#: modules/calendar/calendar.php:3282 +#: modules/content-overview/content-overview.php:1537 +msgid "Invalid form request." +msgstr "Richiesta di modulo non valida." + +#: modules/calendar/calendar.php:3242 msgid "Invalid input" msgstr "Input non valido" -#: core/Error.php:80 modules/calendar/calendar.php:3273 +#: core/Error.php:80 modules/calendar/calendar.php:3233 msgid "Invalid nonce" msgstr "Nonce non valido" -#: modules/calendar/calendar.php:3861 +#: modules/calendar/calendar.php:3821 msgid "Invalid Publish Date supplied." msgstr "Data di pubblicazione fornita non valida." @@ -1383,11 +1509,11 @@ msgstr "Data di pubblicazione fornita non valida." msgid "Invalid receiver for the notification" msgstr "Ricevitore non valido per la notifica" -#: modules/calendar/calendar.php:3837 +#: modules/calendar/calendar.php:3797 msgid "Invalid Status supplied." msgstr "Stato fornito non valido." -#: modules/calendar/calendar.php:1516 +#: modules/calendar/calendar.php:1476 msgid "" "It seems like it is taking too long. Please, try reloading the page again " "and check the browser console looking for errors." @@ -1395,19 +1521,20 @@ msgstr "" "Sta impiegando troppo tempo. Prova a ricaricare di nuovo la pagina e " "controlla la console del browser alla ricerca di errori." -#: modules/calendar/calendar.php:818 +#: modules/calendar/calendar.php:778 msgid "Jan" msgstr "Gen" -#: modules/calendar/calendar.php:824 +#: modules/calendar/calendar.php:784 msgid "Jul" msgstr "Lug" -#: modules/calendar/calendar.php:823 +#: modules/calendar/calendar.php:783 msgid "Jun" msgstr "Giu" -#: modules/content-overview/content-overview.php:631 +#: modules/content-overview/content-overview.php:1083 +#: modules/content-overview/content-overview.php:1141 msgid "Last Modified" msgstr "Ultima modifica" @@ -1415,11 +1542,11 @@ msgstr "Ultima modifica" msgid "Last Name" msgstr "Cognome" -#: modules/calendar/calendar.php:797 +#: modules/calendar/calendar.php:757 msgid "Loading item..." msgstr "Caricando l'elemento…" -#: modules/calendar/calendar.php:796 +#: modules/calendar/calendar.php:756 #: modules/notifications-log/notifications-log.php:210 msgid "Loading..." msgstr "Caricando…" @@ -1440,26 +1567,34 @@ msgstr "File di registro" msgid "Log file not found." msgstr "File di registro non trovato." -#: modules/editorial-metadata/editorial-metadata.php:2824 +#: modules/editorial-metadata/editorial-metadata.php:2752 msgid "Make Hidden" msgstr "Rendi nascosto" -#: modules/editorial-metadata/editorial-metadata.php:2835 +#: modules/editorial-metadata/editorial-metadata.php:2763 msgid "Make Viewable" msgstr "Rendi visibile" -#: modules/calendar/calendar.php:820 +#: modules/content-overview/content-overview.php:1871 +msgid "Manage Filters" +msgstr "Gestisci filtri" + +#: modules/calendar/calendar.php:780 msgid "Mar" msgstr "Mar" -#: modules/calendar/calendar.php:2617 +#: modules/calendar/calendar.php:2577 msgid "Max visible posts per date" msgstr "Numero massimo di post visibili per data" -#: modules/calendar/calendar.php:822 +#: modules/calendar/calendar.php:782 msgid "May" msgstr "Mag" +#: modules/content-overview/content-overview.php:1858 +msgid "Me Mode" +msgstr "Me Mode" + #: lib/Notifications/Table/Notifications.php:157 msgid "Message" msgstr "Messaggio" @@ -1468,10 +1603,10 @@ msgstr "Messaggio" msgid "Meta fields" msgstr "Campi meta" -#: modules/editorial-metadata/editorial-metadata.php:2032 -#: modules/editorial-metadata/editorial-metadata.php:2063 -#: modules/editorial-metadata/editorial-metadata.php:2393 -#: modules/editorial-metadata/editorial-metadata.php:2424 +#: modules/editorial-metadata/editorial-metadata.php:2010 +#: modules/editorial-metadata/editorial-metadata.php:2041 +#: modules/editorial-metadata/editorial-metadata.php:2347 +#: modules/editorial-metadata/editorial-metadata.php:2378 msgid "Meta Value" msgstr "Valore meta" @@ -1479,7 +1614,7 @@ msgstr "Valore meta" msgid "Metadata" msgstr "Metadati" -#: modules/editorial-metadata/editorial-metadata.php:1461 +#: modules/editorial-metadata/editorial-metadata.php:1452 msgid "Metadata name conflicts with existing term. Please choose another." msgstr "" "Il nome del metadato è in conflitto con un termine esistente. Scegli un " @@ -1505,7 +1640,7 @@ msgstr "Termine dei metadati non esiste." msgid "Metadata term updated." msgstr "Termine dei metadati aggiornato." -#: modules/editorial-metadata/editorial-metadata.php:2698 +#: modules/editorial-metadata/editorial-metadata.php:2626 msgid "Metadata Type" msgstr "Tipo di metadati" @@ -1521,7 +1656,7 @@ msgstr "minuti" msgid "Modified on" msgstr "Modificato il" -#: modules/calendar/calendar.php:812 +#: modules/calendar/calendar.php:772 msgid "Mon" msgstr "Lun" @@ -1537,16 +1672,16 @@ msgstr "Notifiche di ruolo più usate" msgid "Most Used Notify User" msgstr "Gli utenti di notifica più usati" -#: modules/content-overview/content-overview.php:1912 +#: modules/content-overview/content-overview.php:2990 msgid "Move this item to the Trash" msgstr "Sposta questo elemento nel cestino" -#: modules/calendar/calendar.php:799 +#: modules/calendar/calendar.php:759 msgid "Moving the item..." msgstr "Spostando l'elemento…" -#: modules/editorial-metadata/editorial-metadata.php:1981 -#: modules/editorial-metadata/editorial-metadata.php:2343 +#: modules/editorial-metadata/editorial-metadata.php:1959 +#: modules/editorial-metadata/editorial-metadata.php:2297 msgid "Multiple Select" msgstr "Selezione multipla" @@ -1560,28 +1695,28 @@ msgstr "Silenzioso" msgid "My Content Notifications" msgstr "Le mie notifiche dei contenuti" -#: modules/editorial-metadata/editorial-metadata.php:2238 -#: modules/editorial-metadata/editorial-metadata.php:2696 +#: modules/editorial-metadata/editorial-metadata.php:2192 +#: modules/editorial-metadata/editorial-metadata.php:2624 msgid "Name" msgstr "Nome" -#: modules/editorial-metadata/editorial-metadata.php:1297 -#: modules/editorial-metadata/editorial-metadata.php:1470 +#: modules/editorial-metadata/editorial-metadata.php:1295 +#: modules/editorial-metadata/editorial-metadata.php:1461 msgid "Name already in use. Please choose another." msgstr "Questo nome già esiste. Scegli un altro nome." -#: modules/editorial-metadata/editorial-metadata.php:1307 -#: modules/editorial-metadata/editorial-metadata.php:1314 -#: modules/editorial-metadata/editorial-metadata.php:1483 +#: modules/editorial-metadata/editorial-metadata.php:1305 +#: modules/editorial-metadata/editorial-metadata.php:1312 +#: modules/editorial-metadata/editorial-metadata.php:1474 msgid "Name cannot exceed 200 characters. Please try a shorter name." msgstr "Il nome non può superare i 200 caratteri. Utilizza un nome più breve." -#: modules/editorial-metadata/editorial-metadata.php:1290 +#: modules/editorial-metadata/editorial-metadata.php:1288 msgid "Name conflicts with existing term. Please choose another." msgstr "" "Questo nome è in conflitto con un termine esistente. Scegline uno differente." -#: modules/editorial-metadata/editorial-metadata.php:1475 +#: modules/editorial-metadata/editorial-metadata.php:1466 msgid "" "Name conflicts with slug for another term. Please choose something else." msgstr "" @@ -1612,6 +1747,10 @@ msgstr "Nuova notifica di ruolo" msgid "New Notify User" msgstr "Nuovo utente di notifica" +#: modules/content-overview/content-overview.php:1888 +msgid "New Post" +msgstr "Nuovo articolo" + #: lib/Notifications/Workflow/Step/Event/Post_StatusTransition.php:118 #, php-format msgid "New post status: %s" @@ -1625,17 +1764,15 @@ msgstr "Nuovo stato" msgid "Nickname" msgstr "Pseudonimo" -#: modules/calendar/calendar.php:1413 +#: modules/calendar/calendar.php:1373 msgid "Nine months" msgstr "Nove mesi" -#: modules/editorial-metadata/editorial-metadata.php:2097 -#: modules/editorial-metadata/editorial-metadata.php:2121 -#: modules/editorial-metadata/editorial-metadata.php:2145 -#: modules/editorial-metadata/editorial-metadata.php:2456 -#: modules/editorial-metadata/editorial-metadata.php:2483 -#: modules/editorial-metadata/editorial-metadata.php:2509 -#: modules/editorial-metadata/editorial-metadata.php:2762 +#: modules/editorial-metadata/editorial-metadata.php:2075 +#: modules/editorial-metadata/editorial-metadata.php:2099 +#: modules/editorial-metadata/editorial-metadata.php:2410 +#: modules/editorial-metadata/editorial-metadata.php:2437 +#: modules/editorial-metadata/editorial-metadata.php:2690 #: modules/editorial-metadata/input-handlers/editorial-metadata-input-checkbox-handler.php:143 msgid "No" msgstr "No" @@ -1645,7 +1782,7 @@ msgstr "No" msgid "No active notifications found for this %s." msgstr "Nessuna notifica attiva trovata per questo %s." -#: modules/calendar/calendar.php:3796 +#: modules/calendar/calendar.php:3756 msgid "No date supplied." msgstr "Nessuna data specificata." @@ -1653,11 +1790,11 @@ msgstr "Nessuna data specificata." msgid "No editorial comments." msgstr "Nessun commento editoriale." -#: modules/editorial-metadata/editorial-metadata.php:2793 +#: modules/editorial-metadata/editorial-metadata.php:2721 msgid "No editorial metadata found." msgstr "Nessun metadato editoriale trovato." -#: modules/calendar/calendar.php:3293 +#: modules/calendar/calendar.php:3253 msgid "No enough permissions" msgstr "Non hai autorizzazioni sufficienti" @@ -1684,7 +1821,11 @@ msgstr "Nessuna notifica di ruoli" msgid "No notify users" msgstr "Nessun utente di notifica" -#: modules/calendar/calendar.php:838 +#: modules/content-overview/content-overview.php:2534 +msgid "No results found" +msgstr "Nessun risultato trovato." + +#: modules/calendar/calendar.php:798 msgid "No terms" msgstr "Nessun termine" @@ -1709,8 +1850,8 @@ msgstr "" "Controllo nonce fallito. Assicurati che tu possa modificare i commenti " "editoriali." -#: modules/calendar/calendar.php:1818 -#: modules/content-overview/content-overview.php:1797 +#: modules/calendar/calendar.php:1778 +#: modules/content-overview/content-overview.php:2857 msgid "None" msgstr "Nessuno" @@ -1791,7 +1932,7 @@ msgstr "Utenti di notifica" msgid "Notify when content is published" msgstr "Avvisa quando il contenuto viene pubblicato" -#: modules/calendar/calendar.php:828 +#: modules/calendar/calendar.php:788 msgid "Nov" msgstr "Nov" @@ -1799,11 +1940,7 @@ msgstr "Nov" msgid "Number" msgstr "Numero" -#: modules/content-overview/content-overview.php:689 -msgid "Number of Columns: " -msgstr "Numero di colonne: " - -#: modules/calendar/calendar.php:827 +#: modules/calendar/calendar.php:787 msgid "Oct" msgstr "Ott" @@ -1820,21 +1957,21 @@ msgstr "" "Su ogni shortcode, puoi selezionare uno o più campi. Se più di uno, verranno " "visualizzati separati da una \", \"." -#: modules/calendar/calendar.php:1396 +#: modules/calendar/calendar.php:1356 msgid "One month" msgstr "Un mese" -#: modules/calendar/calendar.php:1363 +#: modules/calendar/calendar.php:1323 msgid "One month ago" msgstr "Un mese fa" -#: modules/calendar/calendar.php:1384 +#: modules/calendar/calendar.php:1344 msgid "One week" msgstr "Una settimana" -#: modules/editorial-metadata/editorial-metadata.php:120 #: modules/calendar/calendar.php:206 #: modules/editorial-comments/editorial-comments.php:82 +#: modules/editorial-metadata/editorial-metadata.php:120 #: modules/notifications/notifications.php:93 msgid "Overview" msgstr "Panoramica" @@ -1867,6 +2004,10 @@ msgstr "Utente di notifica genitore" msgid "Parent Notify User:" msgstr "Utente di notifica genitore:" +#: modules/content-overview/content-overview.php:2366 +msgid "Passed" +msgstr "Approvato" + #: modules/debug/debug.php:293 msgid "Path" msgstr "Percorso" @@ -1888,23 +2029,23 @@ msgstr "Correggi gli errori nel modulo sottostante e riprova." msgid "Please enter a comment." msgstr "Inserisci un commento." -#: modules/editorial-metadata/editorial-metadata.php:1447 +#: modules/editorial-metadata/editorial-metadata.php:1438 msgid "Please enter a name for the editorial metadata" msgstr "Inserisci un nome per i metadati editoriali" -#: modules/editorial-metadata/editorial-metadata.php:1277 +#: modules/editorial-metadata/editorial-metadata.php:1275 msgid "Please enter a name for the editorial metadata." msgstr "Inserisci un nome per i metadati editoriali." -#: modules/editorial-metadata/editorial-metadata.php:1284 +#: modules/editorial-metadata/editorial-metadata.php:1282 msgid "Please enter a slug for the editorial metadata." msgstr "Inserisci uno slug per i metadati editoriali." -#: modules/editorial-metadata/editorial-metadata.php:1452 +#: modules/editorial-metadata/editorial-metadata.php:1443 msgid "Please enter a valid, non-numeric name for the editorial metadata." msgstr "Inserisci un nome non numerico valido per i metadati editoriali." -#: modules/editorial-metadata/editorial-metadata.php:1324 +#: modules/editorial-metadata/editorial-metadata.php:1322 msgid "Please select a valid metadata type." msgstr "Seleziona un tipo di metadati valido." @@ -1912,7 +2053,8 @@ msgstr "Seleziona un tipo di metadati valido." msgid "Please select at least one event" msgstr "Selezionare almeno un evento" -#: modules/calendar/calendar.php:810 +#: modules/calendar/calendar.php:770 +#: modules/content-overview/content-overview.php:1694 msgid "Please, wait! Loading the form fields..." msgstr "Attendi! Caricamento in corso dei campi del modulo…" @@ -1932,7 +2074,7 @@ msgstr "Notifiche di ruolo più popolari" msgid "Popular Notify Users" msgstr "Utenti di notifica più popolari" -#: modules/editorial-metadata/editorial-metadata.php:2695 +#: modules/editorial-metadata/editorial-metadata.php:2623 msgid "Position" msgstr "Posizione" @@ -1940,15 +2082,16 @@ msgstr "Posizione" msgid "Post" msgstr "Articolo" -#: modules/calendar/calendar.php:3937 +#: modules/calendar/calendar.php:3897 msgid "Post could not be created" msgstr "L'articolo non può essere creato" -#: modules/calendar/calendar.php:3930 +#: modules/calendar/calendar.php:3890 msgid "Post created successfully" msgstr "Articolo creato con successo" -#: modules/content-overview/content-overview.php:630 +#: modules/content-overview/content-overview.php:1082 +#: modules/content-overview/content-overview.php:1140 msgid "Post Date" msgstr "Data articolo" @@ -1964,12 +2107,15 @@ msgstr "L'articolo non esiste" msgid "Post ID: %d" msgstr "ID Articolo: %d" -#: modules/calendar/calendar.php:3288 +#: modules/calendar/calendar.php:3248 msgid "Post not found" msgstr "Articolo non trovato" -#: modules/calendar/calendar.php:2918 modules/calendar/calendar.php:3573 -#: modules/calendar/calendar.php:3653 +#: modules/calendar/calendar.php:2878 modules/calendar/calendar.php:3533 +#: modules/calendar/calendar.php:3613 +#: modules/content-overview/content-overview.php:1199 +#: modules/content-overview/content-overview.php:1723 +#: modules/content-overview/content-overview.php:2061 msgid "Post Status" msgstr "Stati dell'articolo" @@ -1981,8 +2127,13 @@ msgstr "Lo stato dell'articolo è stato aggiornato." msgid "Post Status Widget" msgstr "Widget stato articolo" -#: modules/calendar/calendar.php:1991 modules/calendar/calendar.php:3557 -#: modules/content-overview/content-overview.php:628 +#: modules/calendar/calendar.php:1951 modules/calendar/calendar.php:3517 +#: modules/content-overview/content-overview.php:1080 +#: modules/content-overview/content-overview.php:1096 +#: modules/content-overview/content-overview.php:1138 +#: modules/content-overview/content-overview.php:1201 +#: modules/content-overview/content-overview.php:1712 +#: modules/content-overview/content-overview.php:2144 msgid "Post Type" msgstr "Tipo di articolo" @@ -1990,11 +2141,11 @@ msgstr "Tipo di articolo" msgid "Post type" msgstr "Tipo di articolo" -#: modules/calendar/calendar.php:808 +#: modules/calendar/calendar.php:768 msgid "Post type not found" msgstr "Tipo di contenuto non trovato" -#: modules/calendar/calendar.php:809 +#: modules/calendar/calendar.php:769 msgid "Post type:" msgstr "Tipo di contenuto:" @@ -2003,16 +2154,16 @@ msgstr "Tipo di contenuto:" msgid "Post type: %s" msgstr "Tipo di Articolo: %s" -#: modules/editorial-metadata/editorial-metadata.php:2697 +#: modules/editorial-metadata/editorial-metadata.php:2625 #: lib/Notifications/Workflow/Step/Event_Content/Filter/Post_Type.php:34 msgid "Post Types" msgstr "Tipi di articoli" -#: modules/calendar/calendar.php:2561 +#: modules/calendar/calendar.php:2521 msgid "Post types to show" msgstr "Tipi di articoli da mostrare" -#: modules/content-overview/content-overview.php:298 +#: modules/content-overview/content-overview.php:252 msgid "Post types to show:" msgstr "Tipi di contenuto da mostrare:" @@ -2020,17 +2171,17 @@ msgstr "Tipi di contenuto da mostrare:" msgid "Posts at a Glance" msgstr "Articoli a colpo d'occhio" -#: modules/calendar/calendar.php:2593 +#: modules/calendar/calendar.php:2553 msgid "Posts publish time format" msgstr "Gli articoli pubblicano il formato dell'ora" -#: modules/calendar/calendar.php:1862 modules/calendar/calendar.php:3617 -#: modules/content-overview/content-overview.php:1945 +#: modules/calendar/calendar.php:1822 modules/calendar/calendar.php:3577 +#: modules/content-overview/content-overview.php:3023 msgid "Preview" msgstr "Anteprima" -#: modules/calendar/calendar.php:1859 -#: modules/content-overview/content-overview.php:1942 +#: modules/calendar/calendar.php:1819 +#: modules/content-overview/content-overview.php:3020 #, php-format msgid "Preview “%s”" msgstr "Anteprima “%s”" @@ -2039,7 +2190,7 @@ msgstr "Anteprima “%s”" msgid "Previous status" msgstr "Stato precedente" -#: modules/content-overview/content-overview.php:1194 +#: modules/content-overview/content-overview.php:1880 msgid "Print" msgstr "Stampa" @@ -2047,20 +2198,20 @@ msgstr "Stampa" msgid "Private" msgstr "Privato" -#: modules/calendar/calendar.php:3659 +#: modules/calendar/calendar.php:3619 msgid "Publish Time" msgstr "Pubblicare l'ora" -#: common/php/class-module.php:262 modules/calendar/calendar.php:2004 +#: common/php/class-module.php:262 modules/calendar/calendar.php:1964 msgid "Published" msgstr "Pubblicato" -#: modules/calendar/calendar.php:2917 +#: modules/calendar/calendar.php:2877 msgid "Publishing Time" msgstr "Tempo di pubblicazione" #. Author of the plugin -#: modules/settings/settings.php:61 modules/calendar/calendar.php:1350 +#: modules/calendar/calendar.php:1310 modules/settings/settings.php:61 msgid "PublishPress" msgstr "PublishPress" @@ -2100,11 +2251,11 @@ msgstr "Impostazioni di PublishPress" msgid "Receiver" msgstr "Destinatario" -#: modules/calendar/calendar.php:2694 +#: modules/calendar/calendar.php:2654 msgid "Regenerate calendar feed secret" msgstr "Rigenera il feed secret del calendario" -#: modules/editorial-metadata/editorial-metadata.php:1693 +#: modules/editorial-metadata/editorial-metadata.php:1677 msgid "Register metadata for these post types:" msgstr "Registra i metadati per questi tipi di contenuto:" @@ -2117,6 +2268,14 @@ msgstr "Rimuovi" msgid "Remove PublishPress ads and branding" msgstr "Rimuovi la pubblicità e il marchio di PublishPress" +#: modules/content-overview/content-overview.php:1250 +msgid "Reorder Columns" +msgstr "Riordina colonne" + +#: modules/content-overview/content-overview.php:1398 +msgid "Reorder Filters" +msgstr "Riordina filtri" + #: modules/editorial-comments/editorial-comments.php:623 msgid "Reply" msgstr "Rispondi" @@ -2139,12 +2298,16 @@ msgstr "Richiesta di supporto" msgid "Reschedule" msgstr "Riprogrammare" -#: modules/calendar/calendar.php:2110 -#: modules/content-overview/content-overview.php:1025 -#: modules/content-overview/content-overview.php:1147 +#: modules/calendar/calendar.php:2070 +#: modules/content-overview/content-overview.php:858 +#: modules/content-overview/content-overview.php:1954 msgid "Reset" msgstr "Reimposta" +#: modules/content-overview/content-overview.php:1953 +msgid "Reset Filters" +msgstr "Reimposta i filtri" + #: modules/reviews/reviews.php:66 msgid "Reviews" msgstr "Recensioni" @@ -2153,8 +2316,8 @@ msgstr "Recensioni" msgid "Role" msgstr "Ruolo" -#: lib/Notifications/Workflow/Step/Receiver/Role.php:147 #: lib/Notifications/Workflow/Step/Receiver/Follower.php:100 +#: lib/Notifications/Workflow/Step/Receiver/Role.php:147 #, php-format msgid "role:%s" msgstr "ruolo:%s" @@ -2164,28 +2327,28 @@ msgstr "ruolo:%s" msgid "Roles" msgstr "Ruoli" -#: modules/calendar/calendar.php:817 +#: modules/calendar/calendar.php:777 msgid "Sat" msgstr "Sab" -#: modules/calendar/calendar.php:804 modules/calendar/calendar.php:1888 +#: modules/calendar/calendar.php:764 modules/calendar/calendar.php:1848 msgid "Save" msgstr "Salva" -#: modules/calendar/calendar.php:1882 +#: modules/calendar/calendar.php:1842 #, php-format msgid "Save “%s”" msgstr "Salva “%s”" -#: modules/calendar/calendar.php:806 +#: modules/calendar/calendar.php:766 msgid "Save and edit" msgstr "Salva e modifica" -#: modules/calendar/calendar.php:805 +#: modules/calendar/calendar.php:765 msgid "Saving..." msgstr "Salvataggio in corso…" -#: common/php/class-module.php:264 modules/calendar/calendar.php:1999 +#: common/php/class-module.php:264 modules/calendar/calendar.php:1959 #: modules/notifications-log/library/NotificationsLogTable.php:523 msgid "Scheduled" msgstr "Programmato" @@ -2194,16 +2357,12 @@ msgstr "Programmato" msgid "Scheduled for %d receivers. Click here to display them." msgstr "Pianificato per %d destinatari. Fare clic qui per visualizzarli." -#: modules/content-overview/content-overview.php:271 -msgid "Screen Layout" -msgstr "Layout della schermata" - -#: modules/content-overview/content-overview.php:1049 +#: modules/content-overview/content-overview.php:1902 msgid "Search" msgstr "Cerca" -#: modules/content-overview/content-overview.php:1048 -#: modules/content-overview/content-overview.php:1347 +#: modules/content-overview/content-overview.php:1901 +#: modules/content-overview/content-overview.php:2168 msgid "Search box" msgstr "Casella di ricerca" @@ -2241,13 +2400,22 @@ msgstr "Risultati della ricerca per “%s”" msgid "Select at least one option for each section." msgstr "Seleziona almeno una opzione per ciascuna selezione." -#: modules/editorial-metadata/editorial-metadata.php:1958 -#: modules/editorial-metadata/editorial-metadata.php:2320 +#: modules/content-overview/content-overview.php:1279 +#: modules/content-overview/content-overview.php:1427 +msgid "Select Metakey" +msgstr "Seleziona Metakey" + +#: modules/content-overview/content-overview.php:2210 +msgid "Select option..." +msgstr "Seleziona opzione…" + +#: modules/editorial-metadata/editorial-metadata.php:1936 +#: modules/editorial-metadata/editorial-metadata.php:2274 msgid "Select roles..." msgstr "Selezionare i ruoli…" -#: modules/editorial-metadata/editorial-metadata.php:1976 -#: modules/editorial-metadata/editorial-metadata.php:2339 +#: modules/editorial-metadata/editorial-metadata.php:1954 +#: modules/editorial-metadata/editorial-metadata.php:2293 msgid "Select Type" msgstr "Selezione tipo" @@ -2259,7 +2427,7 @@ msgstr "Invia notifiche di promemoria" msgid "Sent" msgstr "Inviato" -#: modules/calendar/calendar.php:826 +#: modules/calendar/calendar.php:786 msgid "Sep" msgstr "Set" @@ -2283,7 +2451,7 @@ msgstr "Impostazioni" msgid "settings" msgstr "impostazioni" -#: modules/calendar/calendar.php:1409 +#: modules/calendar/calendar.php:1369 msgid "Seven months" msgstr "Sette mesi" @@ -2291,27 +2459,22 @@ msgstr "Sette mesi" msgid "shortcode" msgstr "shortcode" -#: modules/calendar/calendar.php:801 +#: modules/calendar/calendar.php:761 #, php-format msgid "Show %s more" msgstr "Mostra più %s" -#: modules/editorial-metadata/editorial-metadata.php:2117 -#: modules/editorial-metadata/editorial-metadata.php:2480 -msgid "Show as Content Overview filters" -msgstr "Mostra come filtri della panoramica dei contenuti" - -#: modules/content-overview/content-overview.php:983 +#: modules/content-overview/content-overview.php:816 msgid "Show content from" msgstr "Mostra i contenuti dal" -#: modules/editorial-metadata/editorial-metadata.php:2141 -#: modules/editorial-metadata/editorial-metadata.php:2506 -msgid "Show on Content Calendar form" -msgstr "Mostra nel modulo del calendario dei contenuti" +#: modules/editorial-metadata/editorial-metadata.php:2095 +#: modules/editorial-metadata/editorial-metadata.php:2434 +msgid "Show on Content Calendar and Overview form" +msgstr "Mostra nel modulo del calendario e della panoramica dei contenuti" -#: modules/editorial-metadata/editorial-metadata.php:2189 -#: modules/editorial-metadata/editorial-metadata.php:2555 +#: modules/editorial-metadata/editorial-metadata.php:2143 +#: modules/editorial-metadata/editorial-metadata.php:2483 msgid "Show on Post Types screen" msgstr "Mostra nelle schermate dei tipi di contenuto" @@ -2321,8 +2484,8 @@ msgid "" msgstr "" "Mostra i link «Avvisami» e «Non avvisarmi più» per questi tipi di post:" -#: modules/editorial-metadata/editorial-metadata.php:1980 -#: modules/editorial-metadata/editorial-metadata.php:2342 +#: modules/editorial-metadata/editorial-metadata.php:1958 +#: modules/editorial-metadata/editorial-metadata.php:2296 msgid "Single Select" msgstr "Selezione singola" @@ -2331,11 +2494,11 @@ msgstr "Selezione singola" msgid "Site Administrator" msgstr "Amministratore del sito" -#: modules/calendar/calendar.php:1407 +#: modules/calendar/calendar.php:1367 msgid "Six months" msgstr "Sei mesi" -#: modules/calendar/calendar.php:1373 +#: modules/calendar/calendar.php:1333 msgid "Six months ago" msgstr "Sei mesi fa" @@ -2360,12 +2523,12 @@ msgstr "Saltato" msgid "Slack integration for notifications" msgstr "Integrazioni con Slack per le notifiche" -#: modules/editorial-metadata/editorial-metadata.php:1909 -#: modules/editorial-metadata/editorial-metadata.php:2252 +#: modules/editorial-metadata/editorial-metadata.php:1887 +#: modules/editorial-metadata/editorial-metadata.php:2206 msgid "Slug" msgstr "Slug" -#: modules/editorial-metadata/editorial-metadata.php:1301 +#: modules/editorial-metadata/editorial-metadata.php:1299 msgid "Slug already in use. Please choose another." msgstr "Questo slug già esiste. Scegli un altro nome." @@ -2417,11 +2580,13 @@ msgstr "" "Non hai i privilegi per modificare questo commento editoriale. Rivolgiti " "all'amministratore." -#: modules/calendar/calendar.php:1357 +#: modules/calendar/calendar.php:1317 msgid "Start date" msgstr "Data d'inizio" -#: modules/content-overview/content-overview.php:627 +#: modules/content-overview/content-overview.php:1079 +#: modules/content-overview/content-overview.php:1093 +#: modules/content-overview/content-overview.php:1137 #: modules/notifications-log/library/NotificationsLogTable.php:494 msgid "Status" msgstr "Stato" @@ -2432,7 +2597,7 @@ msgstr "Stato" msgid "Status was changed for %1$s #%2$s \"%3$s\" by %4$s %5$s" msgstr "Lo stato per %1$s #%2$s \"%3$s\" è stato modificato da %4$s %5$s" -#: modules/calendar/calendar.php:2585 +#: modules/calendar/calendar.php:2545 msgid "Statuses to display publish time" msgstr "Stati per visualizzare l'ora di pubblicazione" @@ -2453,7 +2618,7 @@ msgstr "Oggetto:" msgid "Submitted on" msgstr "Inviato il" -#: modules/calendar/calendar.php:1352 +#: modules/calendar/calendar.php:1312 msgid "Subscribe in iCal or Google Calendar" msgstr "Iscriviti a iCal o Google Calendar" @@ -2461,7 +2626,7 @@ msgstr "Iscriviti a iCal o Google Calendar" msgid "Success" msgstr "Successo" -#: modules/calendar/calendar.php:811 +#: modules/calendar/calendar.php:771 msgid "Sun" msgstr "Dom" @@ -2469,19 +2634,21 @@ msgstr "Dom" msgid "synchronous" msgstr "sincrono" -#: modules/calendar/calendar.php:3588 +#: modules/calendar/calendar.php:3548 msgid "Tag" msgid_plural "Tags" msgstr[0] "Tag" msgstr[1] "Tag" -#: modules/calendar/calendar.php:3687 +#: modules/calendar/calendar.php:3647 +#: modules/content-overview/content-overview.php:1751 msgid "Tags" msgstr "Tag" -#: modules/content-overview/content-overview.php:306 -msgid "Taxonomies to show:" -msgstr "Tassonomie da mostrare:" +#: modules/content-overview/content-overview.php:1155 +#: modules/content-overview/content-overview.php:1215 +msgid "Taxonomies" +msgstr "Tassonomie" #: lib/Notifications/Workflow/Step/Event_Content/Taxonomy.php:24 msgid "Taxonomy" @@ -2497,7 +2664,7 @@ msgctxt "taxonomy singular name" msgid "Metadata" msgstr "Metadato" -#: modules/calendar/calendar.php:1415 +#: modules/calendar/calendar.php:1375 msgid "Ten months" msgstr "Dieci mesi" @@ -2505,7 +2672,7 @@ msgstr "Dieci mesi" msgid "Terms" msgstr "Termini" -#: modules/editorial-metadata/editorial-metadata.php:1605 +#: modules/editorial-metadata/editorial-metadata.php:1589 msgid "Terms not set." msgstr "Termini non impostati." @@ -2513,7 +2680,7 @@ msgstr "Termini non impostati." msgid "Text" msgstr "Testo" -#: modules/editorial-metadata/editorial-metadata.php:2261 +#: modules/editorial-metadata/editorial-metadata.php:2215 msgid "" "The \"slug\" is the URL-friendly version of the name. It is usually all " "lowercase and contains only letters, numbers, and hyphens." @@ -2521,8 +2688,8 @@ msgstr "" "Lo \"slug\" è la versione del nome compatibile con l'URL. Di solito è tutto " "minuscolo e contiene solo lettere, numeri e trattini." -#: modules/editorial-metadata/editorial-metadata.php:1930 -#: modules/editorial-metadata/editorial-metadata.php:2278 +#: modules/editorial-metadata/editorial-metadata.php:1908 +#: modules/editorial-metadata/editorial-metadata.php:2232 msgid "" "The description can be used to communicate with your team about what the " "metadata is for." @@ -2534,12 +2701,12 @@ msgstr "" msgid "The Events Calendar Integration" msgstr "Integrazione The Events Calendar" -#: modules/editorial-metadata/editorial-metadata.php:1944 +#: modules/editorial-metadata/editorial-metadata.php:1922 msgid "The metadata type cannot be changed once created." msgstr "Il tipo di metadati una volta creato non può essere modificato." -#: modules/editorial-metadata/editorial-metadata.php:1904 -#: modules/editorial-metadata/editorial-metadata.php:2247 +#: modules/editorial-metadata/editorial-metadata.php:1882 +#: modules/editorial-metadata/editorial-metadata.php:2201 msgid "The name is for labeling the metadata field." msgstr "Il nome serve per etichettare il campo dei metadati." @@ -2557,7 +2724,7 @@ msgstr "" "Il modulo delle notifiche dovrà essere abilitato per visualizzare questo " "widget." -#: modules/calendar/calendar.php:2661 +#: modules/calendar/calendar.php:2621 msgid "" "The number of weeks shown on the calendar can be changed on a user-by-user " "basis using the calendar's screen options." @@ -2569,11 +2736,11 @@ msgstr "" msgid "The parent log was deleted or probably rescheduled" msgstr "Il registro genitore è stato eliminato o probabilmente riprogrammato" -#: modules/calendar/calendar.php:3807 +#: modules/calendar/calendar.php:3767 msgid "The selected post type is not enabled for the calendar." msgstr "Il tipo di contenuto selezionato non è abilitato per il calendario." -#: modules/calendar/calendar.php:4286 +#: modules/calendar/calendar.php:4246 msgid "" "The selected user doesn't have enough permissions to be set as the post " "author." @@ -2581,12 +2748,12 @@ msgstr "" "L'utente selezionato non dispone di autorizzazioni sufficienti per essere " "impostato come autore dell'articolo." -#: modules/editorial-metadata/editorial-metadata.php:1914 +#: modules/editorial-metadata/editorial-metadata.php:1892 msgid "The slug cannot be changed once the term has been created." msgstr "" "Una volta che il termine è stato creato il suo slug non può essere cambiato." -#: modules/content-overview/content-overview.php:1564 +#: modules/content-overview/content-overview.php:2539 msgid "There are no posts in the range or filter specified." msgstr "Non sono presenti post nell'intervallo o nel filtro specificato." @@ -2633,13 +2800,13 @@ msgstr "" "Questa è un'anteprima del messaggio pianificato. Il contenuto può ancora " "essere modificato fino a quando non viene inviata la notifica." -#: modules/editorial-metadata/editorial-metadata.php:2170 -#: modules/editorial-metadata/editorial-metadata.php:2536 +#: modules/editorial-metadata/editorial-metadata.php:2124 +#: modules/editorial-metadata/editorial-metadata.php:2464 msgid "This metadata will be available for these post types." msgstr "Questo metadato sarà disponibile per questi tipi di contenuto." -#: modules/editorial-metadata/editorial-metadata.php:2194 -#: modules/editorial-metadata/editorial-metadata.php:2559 +#: modules/editorial-metadata/editorial-metadata.php:2148 +#: modules/editorial-metadata/editorial-metadata.php:2487 msgid "" "This metadata will be viewable on the overview screens for these post types." msgstr "" @@ -2674,26 +2841,27 @@ msgstr "" "Ciò non avrà alcun effetto a meno che tu non abbia almeno un flusso di " "lavoro indirizzato alla casella \"Avvisami\"." -#: modules/calendar/calendar.php:1401 +#: modules/calendar/calendar.php:1361 msgid "Three months" msgstr "Tre mesi" -#: modules/calendar/calendar.php:1367 +#: modules/calendar/calendar.php:1327 msgid "Three months ago" msgstr "Tre mesi fa" -#: modules/calendar/calendar.php:1388 +#: modules/calendar/calendar.php:1348 msgid "Three weeks" msgstr "Tre settimane" -#: modules/calendar/calendar.php:815 +#: modules/calendar/calendar.php:775 msgid "Thu" msgstr "Gio" -#: modules/calendar/calendar.php:3648 -#: modules/content-overview/content-overview.php:626 -#: lib/Notifications/Table/Workflows.php:142 +#: modules/calendar/calendar.php:3608 +#: modules/content-overview/content-overview.php:557 +#: modules/content-overview/content-overview.php:1718 #: lib/Notifications/Table/Notifications.php:156 +#: lib/Notifications/Table/Workflows.php:142 msgid "Title" msgstr "Titolo" @@ -2702,7 +2870,9 @@ msgstr "Titolo" msgid "Title: %s" msgstr "Titolo: %s" -#: modules/content-overview/content-overview.php:1413 +#: modules/content-overview/content-overview.php:1915 +#: modules/content-overview/content-overview.php:2244 +#: modules/content-overview/content-overview.php:2278 msgid "to" msgstr "a" @@ -2710,43 +2880,43 @@ msgstr "a" msgid "To date" msgstr "Ad oggi" -#: modules/calendar/calendar.php:837 modules/calendar/calendar.php:2158 +#: modules/calendar/calendar.php:797 modules/calendar/calendar.php:2118 msgid "Today" msgstr "Oggi" -#: modules/calendar/calendar.php:2152 +#: modules/calendar/calendar.php:2112 #, php-format msgid "Today is %s" msgstr "Oggi è %s" -#: common/php/class-module.php:267 modules/calendar/calendar.php:1848 -#: modules/calendar/calendar.php:3607 -#: modules/content-overview/content-overview.php:1916 +#: common/php/class-module.php:267 modules/calendar/calendar.php:1808 +#: modules/calendar/calendar.php:3567 +#: modules/content-overview/content-overview.php:2994 msgid "Trash" msgstr "Cestino" -#: modules/calendar/calendar.php:813 +#: modules/calendar/calendar.php:773 msgid "Tue" msgstr "Mar" -#: modules/calendar/calendar.php:1419 +#: modules/calendar/calendar.php:1379 msgid "Twelve months" msgstr "Dodici mesi" -#: modules/calendar/calendar.php:1399 +#: modules/calendar/calendar.php:1359 msgid "Two months" msgstr "Due mesi" -#: modules/calendar/calendar.php:1365 +#: modules/calendar/calendar.php:1325 msgid "Two months ago" msgstr "Due mesi fa" -#: modules/calendar/calendar.php:1386 +#: modules/calendar/calendar.php:1346 msgid "Two weeks" msgstr "Due settimane" -#: modules/editorial-metadata/editorial-metadata.php:1939 -#: modules/editorial-metadata/editorial-metadata.php:2286 +#: modules/editorial-metadata/editorial-metadata.php:1917 +#: modules/editorial-metadata/editorial-metadata.php:2240 msgid "Type" msgstr "Tipo" @@ -2754,8 +2924,8 @@ msgstr "Tipo" msgid "Undefined error found" msgstr "Si è verificato un errore indefinito" -#: modules/calendar/calendar.php:1475 -#: modules/content-overview/content-overview.php:1076 +#: modules/calendar/calendar.php:1435 +#: modules/content-overview/content-overview.php:893 msgid "Undo" msgstr "Annulla azione" @@ -2763,7 +2933,7 @@ msgstr "Annulla azione" msgid "Unpublished Content" msgstr "Contenuto non pubblicato" -#: modules/calendar/calendar.php:802 modules/calendar/calendar.php:3813 +#: modules/calendar/calendar.php:762 modules/calendar/calendar.php:3773 msgid "Untitled" msgstr "Senza titolo" @@ -2771,7 +2941,7 @@ msgstr "Senza titolo" msgid "Update Editorial Metadata" msgstr "Aggiorna metadato editoriale" -#: modules/editorial-metadata/editorial-metadata.php:2217 +#: modules/editorial-metadata/editorial-metadata.php:2171 msgid "Update Metadata Term" msgstr "Aggiorna termine metadati" @@ -2824,8 +2994,8 @@ msgstr "utente" msgid "User making changes or comments" msgstr "Utente che apporta modifiche o commenti" -#: modules/editorial-metadata/editorial-metadata.php:1950 -#: modules/editorial-metadata/editorial-metadata.php:2312 +#: modules/editorial-metadata/editorial-metadata.php:1928 +#: modules/editorial-metadata/editorial-metadata.php:2266 msgid "User role" msgstr "Ruolo utente" @@ -2851,13 +3021,13 @@ msgstr "Utenti" msgid "Users who selected \"Notify me\" for the content" msgstr "Utenti che hanno selezionato «Avvisami» per il contenuto" -#: modules/calendar/calendar.php:1872 modules/calendar/calendar.php:3614 -#: modules/content-overview/content-overview.php:1932 +#: modules/calendar/calendar.php:1832 modules/calendar/calendar.php:3574 +#: modules/content-overview/content-overview.php:3010 msgid "View" msgstr "Visualizza" -#: modules/calendar/calendar.php:1866 -#: modules/content-overview/content-overview.php:1926 +#: modules/calendar/calendar.php:1826 +#: modules/content-overview/content-overview.php:3004 #, php-format msgid "View “%s”" msgstr "Visualizza “%s”" @@ -2867,7 +3037,7 @@ msgstr "Visualizza “%s”" msgid "View “%s” on Google Maps" msgstr "Visualizza “%s” su Google Maps" -#: modules/calendar/calendar.php:4072 +#: modules/calendar/calendar.php:4032 msgid "View all categories" msgstr "Visualizza tutte le categorie" @@ -2893,9 +3063,9 @@ msgstr "Visualizza utente di notifica" msgid "View: %s" msgstr "Visualizza: %s" -#: modules/editorial-metadata/editorial-metadata.php:2093 -#: modules/editorial-metadata/editorial-metadata.php:2453 -#: modules/editorial-metadata/editorial-metadata.php:2700 +#: modules/editorial-metadata/editorial-metadata.php:2071 +#: modules/editorial-metadata/editorial-metadata.php:2407 +#: modules/editorial-metadata/editorial-metadata.php:2628 msgid "Viewable" msgstr "Visibile" @@ -2903,7 +3073,7 @@ msgstr "Visibile" msgid "Warning" msgstr "Attenzione" -#: modules/calendar/calendar.php:814 +#: modules/calendar/calendar.php:774 msgid "Wed" msgstr "Mer" @@ -2974,13 +3144,11 @@ msgstr "Workflow: %s" msgid "Workflows" msgstr "Workflow" -#: modules/editorial-metadata/editorial-metadata.php:2098 -#: modules/editorial-metadata/editorial-metadata.php:2122 -#: modules/editorial-metadata/editorial-metadata.php:2146 -#: modules/editorial-metadata/editorial-metadata.php:2457 -#: modules/editorial-metadata/editorial-metadata.php:2484 -#: modules/editorial-metadata/editorial-metadata.php:2510 -#: modules/editorial-metadata/editorial-metadata.php:2760 +#: modules/editorial-metadata/editorial-metadata.php:2076 +#: modules/editorial-metadata/editorial-metadata.php:2100 +#: modules/editorial-metadata/editorial-metadata.php:2411 +#: modules/editorial-metadata/editorial-metadata.php:2438 +#: modules/editorial-metadata/editorial-metadata.php:2688 #: modules/editorial-metadata/input-handlers/editorial-metadata-input-checkbox-handler.php:142 msgid "Yes" msgstr "Sì" @@ -3011,9 +3179,24 @@ msgstr "" msgid "You can see all editorial comments on this %s here: " msgstr "Puoi vedere qui tutti i commenti editoriali su questo %s: " +#: modules/content-overview/content-overview.php:1149 +#: modules/content-overview/content-overview.php:1209 +msgid "You do not have any editorial metadata enabled" +msgstr "Non c'è nessun metadato editoriale abilitato" + +#: modules/content-overview/content-overview.php:1156 +#: modules/content-overview/content-overview.php:1216 +msgid "You do not have any public taxonomies" +msgstr "Non c'è nessuna tassonomia pubblica" + #: publishpress.php:670 msgid "You do not have necessary permissions to complete this action." -msgstr "Non hai i permessi necessari per compiere questa operazione." +msgstr "Non hai i permessi necessari per completare questa operazione." + +#: modules/content-overview/content-overview.php:1009 +#, php-format +msgid "You do not have permission to add new %s" +msgstr "Non hai i permessi necessari per aggiungere nuovi %s" #: lib/Notifications/Table/Notifications.php:235 msgid "You don't have any notifications" @@ -3028,6 +3211,22 @@ msgstr "" "Stai usando la versione gratuita di PublishPress Planner. La versione Pro ha " "più funzionalità e un supporto migliore. %sAggiorna a Pro%s" +#~ msgid "Click to toggle" +#~ msgstr "Fai clic per commutare" + +#~ msgid "" +#~ "If enabled, this metadata will be available as a filter option on the " +#~ "Content Overview screen." +#~ msgstr "" +#~ "Se viene abilitato questo metadato sarà disponibile come opzione del " +#~ "filtro nella schermata della panoramica dei contenuti." + +#~ msgid "Screen Layout" +#~ msgstr "Layout della schermata" + +#~ msgid "Taxonomies to show:" +#~ msgstr "Tassonomie da mostrare:" + #~ msgid "said on %1$s at %2$s" #~ msgstr "detto il %1$s alle %2$s" @@ -3121,9 +3320,6 @@ msgstr "" #~ msgid "Could not delete the status: " #~ msgstr "Impossibile eliminare lo stato: " -#~ msgid "Custom Status" -#~ msgstr "Stato personalizzato" - #~ msgid "Custom status doesn't exist." #~ msgstr "Lo stato personalizzato non esiste." @@ -3201,10 +3397,6 @@ msgstr "" #~ "Mostra il menu a discesa dello stato nella schermata di modifica " #~ "dell'articolo:" -#~ msgid "Sorry, you do not have permission to edit custom statuses." -#~ msgstr "" -#~ "Spiacente, non hai i privilegi per modificare gli stati personalizzati." - #~ msgid "Status does not exist." #~ msgstr "Lo stato non esiste." diff --git a/languages/publishpress.pot b/languages/publishpress.pot index 98b1d1b15..05a8e7fc3 100644 --- a/languages/publishpress.pot +++ b/languages/publishpress.pot @@ -10,7 +10,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"POT-Creation-Date: 2024-04-04 04:10+0000\n" +"POT-Creation-Date: 2024-05-14 09:04+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "X-Generator: Loco https://localise.biz/\n" "X-Domain: publishpress\n" @@ -59,7 +59,8 @@ msgstr "" msgid "%1$s (%2$s ) said on %3$s at %4$s:" msgstr "" -#: modules/content-overview/content-overview.php:845 +#: modules/content-board/content-board.php:826 +#: modules/content-overview/content-overview.php:847 #, php-format msgctxt "%1$s = start date, %2$s = end date" msgid " %1$s
to
%2$s" @@ -104,12 +105,14 @@ msgstr "" msgid "%d weeks" msgstr "" -#: modules/content-overview/content-overview.php:1004 +#: modules/content-board/content-board.php:985 +#: modules/content-overview/content-overview.php:1006 #, php-format msgid "%s could not be created" msgstr "" -#: modules/content-overview/content-overview.php:1001 +#: modules/content-board/content-board.php:982 +#: modules/content-overview/content-overview.php:1003 #, php-format msgid "%s created successfully. Edit %s" msgstr "" @@ -121,26 +124,26 @@ msgid_plural "%s notifications found." msgstr[0] "" msgstr[1] "" -#: modules/calendar/calendar.php:4123 +#: modules/calendar/calendar.php:4060 #, php-format msgid "%s week" msgid_plural "%s weeks" msgstr[0] "" msgstr[1] "" -#: modules/calendar/calendar.php:2135 +#: modules/calendar/calendar.php:2072 msgid "«" msgstr "" -#: modules/calendar/calendar.php:2148 +#: modules/calendar/calendar.php:2085 msgid "‹" msgstr "" -#: modules/calendar/calendar.php:2104 +#: modules/calendar/calendar.php:2041 msgid "»" msgstr "" -#: modules/calendar/calendar.php:2087 +#: modules/calendar/calendar.php:2024 msgid "›" msgstr "" @@ -171,7 +174,7 @@ msgstr "" #: modules/editorial-metadata/editorial-metadata.php:126 msgid "" "

For more information:

Editorial Metadata " +"//publishpress.com/features/editorial-metadata/\">Editorial Fields " "Documentation

PublishPress on Github

" msgstr "" @@ -198,14 +201,14 @@ msgstr "" #: modules/editorial-metadata/editorial-metadata.php:121 msgid "" -"

Keep track of important details about your content with editorial " -"metadata. This feature allows you to create as many date, text, number, etc. " -"fields as you like, and then use them to store information like contact " -"details or the location of an interview.

Once you’ve set your fields " -"up, editorial metadata integrates with both the calendar and the content " -"overview. Make an editorial metadata item visible to have it appear to the " -"rest of your team. Keep it hidden to restrict the information between the " -"writer and their editor.

" +"

Keep track of important details about your content with editorial fields. " +"This feature allows you to create as many date, text, number, etc. fields as " +"you like, and then use them to store information like contact details or the " +"location of an interview.

Once you’ve set your fields up, editorial " +"fields integrates with both the calendar and the content overview. Make an " +"editorial fields item visible to have it appear to the rest of your team. " +"Keep it hidden to restrict the information between the writer and their " +"editor.

" msgstr "" #: modules/notifications/notifications.php:94 @@ -310,8 +313,8 @@ msgid "" "the Taxonomy content filter when adding a new Notification Workflow." msgstr "" -#: modules/editorial-comments/editorial-comments.php:552 -#: modules/editorial-comments/editorial-comments.php:556 +#: modules/editorial-comments/editorial-comments.php:554 +#: modules/editorial-comments/editorial-comments.php:558 msgid "Add an editorial comment" msgstr "" @@ -320,11 +323,11 @@ msgstr "" msgid "Add Another Option" msgstr "" -#: modules/content-overview/content-overview.php:1287 +#: modules/content-overview/content-overview.php:1288 msgid "Add Column" msgstr "" -#: modules/editorial-comments/editorial-comments.php:574 +#: modules/editorial-comments/editorial-comments.php:576 msgid "Add Comment" msgstr "" @@ -339,30 +342,35 @@ msgstr "" msgid "Add editorial comment: %s" msgstr "" -#: modules/content-overview/content-overview.php:1435 +#: modules/content-board/content-board.php:1409 +#: modules/content-overview/content-overview.php:1436 msgid "Add Filter" msgstr "" -#: modules/content-overview/content-overview.php:1267 -#: modules/content-overview/content-overview.php:1415 +#: modules/content-board/content-board.php:1241 +#: modules/content-board/content-board.php:1261 +#: modules/content-board/content-board.php:1389 +#: modules/content-overview/content-overview.php:1268 +#: modules/content-overview/content-overview.php:1416 #: modules/editorial-metadata/editorial-metadata.php:1783 msgid "Add New" msgstr "" -#: modules/content-overview/content-overview.php:1558 +#: modules/content-board/content-board.php:1581 +#: modules/content-overview/content-overview.php:1559 #, php-format msgid "Add New %s" msgstr "" #: modules/editorial-metadata/editorial-metadata.php:453 -msgid "Add New Editorial Metadata" +msgid "Add New Editorial Fields" msgstr "" #: modules/editorial-metadata/editorial-metadata.php:2509 -msgid "Add New Metadata Term" +msgid "Add New Editorial fields term" msgstr "" -#: publishpress.php:1310 +#: publishpress.php:1323 msgid "Add New Notification" msgstr "" @@ -403,8 +411,10 @@ msgstr "" msgid "All" msgstr "" -#: modules/content-overview/content-overview.php:2091 -#: modules/content-overview/content-overview.php:2094 +#: modules/content-board/content-board.php:2114 +#: modules/content-board/content-board.php:2117 +#: modules/content-overview/content-overview.php:2092 +#: modules/content-overview/content-overview.php:2095 #, php-format msgid "All %s" msgstr "" @@ -413,9 +423,11 @@ msgstr "" msgid "All Actions" msgstr "" -#: modules/calendar/calendar.php:793 modules/calendar/calendar.php:4071 -#: modules/content-overview/content-overview.php:2116 -#: modules/content-overview/content-overview.php:2119 +#: modules/calendar/calendar.php:793 modules/calendar/calendar.php:4008 +#: modules/content-board/content-board.php:2139 +#: modules/content-board/content-board.php:2142 +#: modules/content-overview/content-overview.php:2117 +#: modules/content-overview/content-overview.php:2120 msgid "All authors" msgstr "" @@ -432,7 +444,7 @@ msgid "All channels" msgstr "" #: modules/editorial-metadata/editorial-metadata.php:450 -msgid "All Editorial Metadata" +msgid "All Editorial Fields" msgstr "" #: modules/notifications-log/library/NotificationsLogTable.php:584 @@ -456,7 +468,8 @@ msgstr "" msgid "All options value and labels are required." msgstr "" -#: modules/content-overview/content-overview.php:2148 +#: modules/content-board/content-board.php:2171 +#: modules/content-overview/content-overview.php:2149 msgid "All post types" msgstr "" @@ -466,7 +479,7 @@ msgstr "" msgid "All Posts" msgstr "" -#: modules/calendar/calendar.php:2933 +#: modules/calendar/calendar.php:2870 msgid "All posts" msgstr "" @@ -474,7 +487,8 @@ msgstr "" msgid "All Receivers" msgstr "" -#: modules/content-overview/content-overview.php:2363 +#: modules/content-board/content-board.php:2386 +#: modules/content-overview/content-overview.php:2364 msgid "All status" msgstr "" @@ -482,16 +496,17 @@ msgstr "" msgid "All Statuses" msgstr "" -#: modules/calendar/calendar.php:790 modules/calendar/calendar.php:4015 -#: modules/content-overview/content-overview.php:2065 +#: modules/calendar/calendar.php:790 modules/calendar/calendar.php:3952 +#: modules/content-board/content-board.php:2088 +#: modules/content-overview/content-overview.php:2066 msgid "All statuses" msgstr "" -#: modules/calendar/calendar.php:792 modules/calendar/calendar.php:4050 +#: modules/calendar/calendar.php:792 modules/calendar/calendar.php:3987 msgid "All tags" msgstr "" -#: modules/calendar/calendar.php:794 modules/calendar/calendar.php:4098 +#: modules/calendar/calendar.php:794 modules/calendar/calendar.php:4035 msgid "All types" msgstr "" @@ -504,7 +519,7 @@ msgstr "" msgid "All Workflows" msgstr "" -#: modules/calendar/calendar.php:2537 +#: modules/calendar/calendar.php:2474 msgid "Allow public access to subscriptions in iCal or Google Calendar" msgstr "" @@ -516,21 +531,34 @@ msgstr "" msgid "Always notify users who have edited the content:" msgstr "" -#: modules/calendar/calendar.php:2585 +#: modules/calendar/calendar.php:2522 msgid "Always show complete post titles" msgstr "" -#: modules/content-overview/content-overview.php:855 -#: modules/content-overview/content-overview.php:865 -#: modules/content-overview/content-overview.php:2197 -#: modules/content-overview/content-overview.php:2308 -#: modules/content-overview/content-overview.php:2346 -#: modules/content-overview/content-overview.php:2423 +#: modules/content-board/content-board.php:1504 +#: modules/content-board/content-board.php:1554 +msgid "An error occured" +msgstr "" + +#: modules/content-board/content-board.php:836 +#: modules/content-board/content-board.php:846 +#: modules/content-board/content-board.php:2220 +#: modules/content-board/content-board.php:2331 +#: modules/content-board/content-board.php:2369 +#: modules/content-board/content-board.php:2450 +#: modules/content-overview/content-overview.php:857 +#: modules/content-overview/content-overview.php:867 +#: modules/content-overview/content-overview.php:2198 +#: modules/content-overview/content-overview.php:2309 +#: modules/content-overview/content-overview.php:2347 +#: modules/content-overview/content-overview.php:2428 msgid "Apply" msgstr "" -#: modules/content-overview/content-overview.php:1371 -#: modules/content-overview/content-overview.php:1519 +#: modules/content-board/content-board.php:1345 +#: modules/content-board/content-board.php:1493 +#: modules/content-overview/content-overview.php:1372 +#: modules/content-overview/content-overview.php:1520 msgid "Apply Changes" msgstr "" @@ -556,11 +584,11 @@ msgstr "" msgid "asynchronous" msgstr "" -#: modules/calendar/calendar.php:2604 +#: modules/calendar/calendar.php:2541 msgid "At least one post type must be selected" msgstr "" -#: modules/editorial-comments/editorial-comments.php:562 +#: modules/editorial-comments/editorial-comments.php:564 msgid "Attach file" msgstr "" @@ -568,14 +596,20 @@ msgstr "" msgid "Aug" msgstr "" -#: modules/calendar/calendar.php:1943 modules/calendar/calendar.php:3538 -#: modules/calendar/calendar.php:3628 -#: modules/content-overview/content-overview.php:1081 -#: modules/content-overview/content-overview.php:1095 -#: modules/content-overview/content-overview.php:1139 -#: modules/content-overview/content-overview.php:1200 -#: modules/content-overview/content-overview.php:1732 -#: modules/content-overview/content-overview.php:2114 +#: modules/calendar/calendar.php:1880 modules/calendar/calendar.php:3475 +#: modules/calendar/calendar.php:3565 +#: modules/content-board/content-board.php:1061 +#: modules/content-board/content-board.php:1072 +#: modules/content-board/content-board.php:1115 +#: modules/content-board/content-board.php:1174 +#: modules/content-board/content-board.php:1755 +#: modules/content-board/content-board.php:2137 +#: modules/content-overview/content-overview.php:1083 +#: modules/content-overview/content-overview.php:1096 +#: modules/content-overview/content-overview.php:1140 +#: modules/content-overview/content-overview.php:1201 +#: modules/content-overview/content-overview.php:1733 +#: modules/content-overview/content-overview.php:2115 #: modules/editorial-comments/library/EditorialCommentsTable.php:228 msgid "Author" msgid_plural "Authors" @@ -604,11 +638,11 @@ msgstr "" msgid "Available fields" msgstr "" -#: modules/calendar/calendar.php:2127 +#: modules/calendar/calendar.php:2064 msgid "Back %d weeks" msgstr "" -#: modules/calendar/calendar.php:2139 +#: modules/calendar/calendar.php:2076 msgid "Back 1 week" msgstr "" @@ -644,37 +678,43 @@ msgstr "" msgid "Body" msgstr "" -#: modules/content-overview/content-overview.php:861 -#: modules/editorial-comments/editorial-comments.php:578 +#: modules/content-board/content-board.php:842 +#: modules/content-overview/content-overview.php:863 +#: modules/editorial-comments/editorial-comments.php:580 #: modules/editorial-metadata/editorial-metadata.php:2174 msgid "Cancel" msgstr "" -#: modules/calendar/calendar.php:3638 -#: modules/content-overview/content-overview.php:1094 -#: modules/content-overview/content-overview.php:1742 +#: modules/calendar/calendar.php:3575 +#: modules/content-board/content-board.php:1765 +#: modules/content-overview/content-overview.php:1743 #: lib/Notifications/Workflow/Step/Event_Content/Filter/Category.php:34 msgid "Categories" msgstr "" -#: modules/calendar/calendar.php:3543 +#: modules/calendar/calendar.php:3480 #: lib/Notifications/Workflow/Step/Event_Content/Category.php:24 msgid "Category" msgid_plural "Categories" msgstr[0] "" msgstr[1] "" -#: modules/content-overview/content-overview.php:862 +#: modules/content-board/content-board.php:843 +#: modules/content-overview/content-overview.php:864 msgid "Change" msgstr "" +#: modules/content-board/content-board.php:1543 +msgid "Changes saved!" +msgstr "" + #: views/user_profile_notification_channels.html.php:15 #: modules/improved-notifications/improved-notifications.php:408 #: modules/improved-notifications/improved-notifications.php:1154 msgid "Channels" msgstr "" -#: publishpress.php:669 +#: publishpress.php:670 msgid "Cheatin’ uh?" msgstr "" @@ -682,7 +722,8 @@ msgstr "" msgid "Checkbox" msgstr "" -#: modules/content-overview/content-overview.php:2328 +#: modules/content-board/content-board.php:2351 +#: modules/content-overview/content-overview.php:2329 msgid "Checked" msgstr "" @@ -716,11 +757,16 @@ msgstr "" msgid "Click here to subscribe in iCal or Google Calendar" msgstr "" -#: modules/content-overview/content-overview.php:1129 +#: modules/content-board/content-board.php:1106 +msgid "Click the \"Add New\" button to create new card data." +msgstr "" + +#: modules/content-overview/content-overview.php:1130 msgid "Click the \"Add New\" button to create new columns." msgstr "" -#: modules/content-overview/content-overview.php:1191 +#: modules/content-board/content-board.php:1165 +#: modules/content-overview/content-overview.php:1192 msgid "Click the \"Add New\" button to create new filters." msgstr "" @@ -747,11 +793,12 @@ msgstr "" msgid "Close" msgstr "" -#: modules/content-overview/content-overview.php:1275 +#: modules/content-overview/content-overview.php:1276 msgid "Column Title" msgstr "" -#: modules/content-overview/content-overview.php:934 +#: modules/content-board/content-board.php:915 +#: modules/content-overview/content-overview.php:936 msgid "Column updated successfully." msgstr "" @@ -759,11 +806,11 @@ msgstr "" msgid "Comment" msgstr "" -#: modules/editorial-comments/editorial-comments.php:1239 +#: modules/editorial-comments/editorial-comments.php:1241 msgid "Comment author name field:" msgstr "" -#: modules/editorial-comments/editorial-comments.php:1181 +#: modules/editorial-comments/editorial-comments.php:1183 msgid "Comment deleted successfully." msgstr "" @@ -772,7 +819,7 @@ msgstr "" msgid "Comment: %s (%d)" msgstr "" -#: publishpress.php:665 +#: publishpress.php:666 msgid "Configure" msgstr "" @@ -780,13 +827,21 @@ msgstr "" msgid "Contact" msgstr "" -#: modules/calendar/calendar.php:3655 -#: modules/content-overview/content-overview.php:1759 +#: modules/calendar/calendar.php:3592 +#: modules/content-board/content-board.php:1782 +#: modules/content-overview/content-overview.php:1760 #: modules/improved-notifications/improved-notifications.php:971 #: lib/Notifications/Workflow/Step/Content/Main.php:29 msgid "Content" msgstr "" +#: modules/content-board/content-board.php:140 +#: modules/content-board/content-board.php:395 +#: modules/content-board/content-board.php:412 +#: modules/content-board/content-board.php:413 +msgid "Content Board" +msgstr "" + #: modules/calendar/calendar.php:170 modules/calendar/calendar.php:410 #: modules/calendar/calendar.php:427 modules/calendar/calendar.php:428 msgid "Content Calendar" @@ -807,7 +862,8 @@ msgstr "" msgid "Copy to the clipboard" msgstr "" -#: modules/content-overview/content-overview.php:1686 +#: modules/content-board/content-board.php:1709 +#: modules/content-overview/content-overview.php:1687 #, php-format msgid "Create %s" msgstr "" @@ -820,14 +876,19 @@ msgstr "" msgid "Current week" msgstr "" -#: modules/content-overview/content-overview.php:1128 +#: modules/content-overview/content-overview.php:1129 msgid "Custom Columns" msgstr "" -#: modules/content-overview/content-overview.php:1190 +#: modules/content-board/content-board.php:1164 +#: modules/content-overview/content-overview.php:1191 msgid "Custom filters" msgstr "" +#: modules/content-board/content-board.php:1105 +msgid "Custom Items" +msgstr "" + #: statuses-intro.php:142 #, php-format msgid "" @@ -842,10 +903,19 @@ msgid "" "Statuses%2$s plugin. See %3$sPlanner > Settings%4$s for details." msgstr "" -#: modules/content-overview/content-overview.php:1861 +#: modules/content-board/content-board.php:1884 +msgid "Customize Card Data" +msgstr "" + +#: modules/content-overview/content-overview.php:1862 msgid "Customize Columns" msgstr "" +#: modules/content-board/content-board.php:1894 +#: modules/content-overview/content-overview.php:1872 +msgid "Customize Filters" +msgstr "" + #: modules/dashboard/dashboard.php:56 msgid "Dashboard" msgstr "" @@ -854,8 +924,9 @@ msgstr "" msgid "Dashboard Note" msgstr "" -#: modules/calendar/calendar.php:3527 -#: modules/content-overview/content-overview.php:1919 +#: modules/calendar/calendar.php:3464 +#: modules/content-board/content-board.php:1942 +#: modules/content-overview/content-overview.php:1920 #: modules/editorial-metadata/editorial-metadata.php:285 #: lib/Notifications/Table/Notifications.php:158 #: modules/notifications-log/library/NotificationsLogTable.php:490 @@ -885,11 +956,11 @@ msgstr "" msgid "Default option" msgstr "" -#: modules/calendar/calendar.php:2561 +#: modules/calendar/calendar.php:2498 msgid "Default publish time for items created in the calendar" msgstr "" -#: modules/editorial-comments/editorial-comments.php:643 +#: modules/editorial-comments/editorial-comments.php:645 #: modules/editorial-metadata/editorial-metadata.php:2028 #: modules/editorial-metadata/editorial-metadata.php:2058 #: modules/editorial-metadata/editorial-metadata.php:2365 @@ -919,7 +990,7 @@ msgstr "" msgid "Detailed documentation is also available on the plugin website." msgstr "" -#: modules/calendar/calendar.php:2635 modules/dashboard/dashboard.php:368 +#: modules/calendar/calendar.php:2572 modules/dashboard/dashboard.php:368 #: modules/dashboard/dashboard.php:391 modules/dashboard/dashboard.php:425 msgid "Disabled" msgstr "" @@ -938,7 +1009,7 @@ msgstr "" msgid "Display Label" msgstr "" -#: modules/editorial-comments/editorial-comments.php:1266 +#: modules/editorial-comments/editorial-comments.php:1268 msgid "Display Name" msgstr "" @@ -950,15 +1021,20 @@ msgstr "" msgid "Download .ics file" msgstr "" -#: common/php/class-module.php:263 +#: common/php/class-module.php:328 msgid "Draft" msgstr "" -#: modules/content-overview/content-overview.php:1330 +#: modules/content-board/content-board.php:1304 +msgid "Drag to change enabled card data order." +msgstr "" + +#: modules/content-overview/content-overview.php:1331 msgid "Drag to change enabled columns order." msgstr "" -#: modules/content-overview/content-overview.php:1478 +#: modules/content-board/content-board.php:1452 +#: modules/content-overview/content-overview.php:1479 msgid "Drag to change enabled filters order." msgstr "" @@ -975,19 +1051,20 @@ msgstr "" msgid "Duplicated notification threshold:" msgstr "" -#: common/php/class-module.php:696 +#: common/php/class-module.php:761 msgid "E-mails" msgstr "" -#: modules/calendar/calendar.php:1798 modules/calendar/calendar.php:3560 -#: modules/content-overview/content-overview.php:2982 -#: modules/editorial-comments/editorial-comments.php:632 +#: modules/calendar/calendar.php:1735 modules/calendar/calendar.php:3497 +#: modules/content-board/content-board.php:2665 +#: modules/content-overview/content-overview.php:3017 +#: modules/editorial-comments/editorial-comments.php:634 #: modules/editorial-metadata/editorial-metadata.php:2745 msgid "Edit" msgstr "" #: modules/editorial-metadata/editorial-metadata.php:451 -msgid "Edit Editorial Metadata" +msgid "Edit Editorial Fields" msgstr "" #: modules/efmigration/efmigration.php:288 @@ -997,7 +1074,7 @@ msgid "" "deactivate Edit Flow." msgstr "" -#: publishpress.php:1311 +#: publishpress.php:1324 msgid "Edit Notification" msgstr "" @@ -1013,11 +1090,12 @@ msgstr "" msgid "Edit Notify User" msgstr "" -#: modules/calendar/calendar.php:1798 +#: modules/calendar/calendar.php:1735 msgid "Edit this item" msgstr "" -#: modules/content-overview/content-overview.php:2978 +#: modules/content-board/content-board.php:2661 +#: modules/content-overview/content-overview.php:3013 #: modules/dashboard/dashboard.php:299 msgid "Edit this post" msgstr "" @@ -1033,18 +1111,45 @@ msgid "Editorial Comment" msgstr "" #: modules/editorial-comments/editorial-comments.php:63 -#: modules/editorial-comments/editorial-comments.php:235 -#: modules/editorial-comments/editorial-comments.php:236 -#: modules/editorial-comments/editorial-comments.php:457 +#: modules/editorial-comments/editorial-comments.php:237 +#: modules/editorial-comments/editorial-comments.php:238 +#: modules/editorial-comments/editorial-comments.php:459 msgid "Editorial Comments" msgstr "" -#: modules/content-overview/content-overview.php:1148 -#: modules/content-overview/content-overview.php:1208 +#: modules/content-board/content-board.php:1122 +#: modules/content-board/content-board.php:1182 +#: modules/content-overview/content-overview.php:1149 +#: modules/content-overview/content-overview.php:1209 #: modules/editorial-metadata/editorial-metadata.php:96 +#: modules/editorial-metadata/editorial-metadata.php:506 #: modules/editorial-metadata/editorial-metadata.php:1759 #: modules/editorial-metadata/editorial-metadata.php:1760 -msgid "Editorial Metadata" +msgid "Editorial Fields" +msgstr "" + +#: modules/editorial-metadata/editorial-metadata.php:114 +msgid "Editorial fields order updated." +msgstr "" + +#: modules/editorial-metadata/editorial-metadata.php:110 +msgid "Editorial fields term added." +msgstr "" + +#: modules/editorial-metadata/editorial-metadata.php:113 +msgid "Editorial fields term deleted." +msgstr "" + +#: modules/editorial-metadata/editorial-metadata.php:112 +msgid "Editorial fields term doesn't exist." +msgstr "" + +#: modules/editorial-metadata/editorial-metadata.php:111 +msgid "Editorial fields term updated." +msgstr "" + +#: modules/editorial-metadata/editorial-metadata.php:115 +msgid "Editorial fields visibility changed." msgstr "" #: views/user_profile_notification_channels.html.php:1 @@ -1061,7 +1166,7 @@ msgstr "" msgid "Eleven months" msgstr "" -#: modules/editorial-comments/editorial-comments.php:1269 +#: modules/editorial-comments/editorial-comments.php:1271 #: lib/Notifications/Workflow/Step/Channel/Email.php:31 msgid "Email" msgstr "" @@ -1074,31 +1179,44 @@ msgstr "" msgid "Email from:" msgstr "" -#: modules/content-overview/content-overview.php:1249 +#: modules/content-overview/content-overview.php:1250 msgid "Enable Columns" msgstr "" -#: modules/content-overview/content-overview.php:1397 +#: modules/content-board/content-board.php:1371 +#: modules/content-overview/content-overview.php:1398 msgid "Enable Filters" msgstr "" -#: modules/editorial-comments/editorial-comments.php:1232 +#: modules/editorial-comments/editorial-comments.php:1234 msgid "Enable for these post types:" msgstr "" -#: modules/content-overview/content-overview.php:1403 +#: modules/content-board/content-board.php:1223 +msgid "Enable or Disable" +msgstr "" + +#: modules/content-board/content-board.php:1229 +msgid "Enable or Disable Content Board Card Data." +msgstr "" + +#: modules/content-board/content-board.php:1377 +msgid "Enable or Disable Content Board filter." +msgstr "" + +#: modules/content-overview/content-overview.php:1404 msgid "Enable or Disable Content Overview filter." msgstr "" -#: modules/content-overview/content-overview.php:1255 +#: modules/content-overview/content-overview.php:1256 msgid "Enable or Disable Content Overview table column." msgstr "" -#: modules/calendar/calendar.php:2529 +#: modules/calendar/calendar.php:2466 msgid "Enable subscriptions in iCal or Google Calendar" msgstr "" -#: modules/calendar/calendar.php:2636 modules/dashboard/dashboard.php:369 +#: modules/calendar/calendar.php:2573 modules/dashboard/dashboard.php:369 #: modules/dashboard/dashboard.php:392 modules/dashboard/dashboard.php:426 msgid "Enabled" msgstr "" @@ -1141,12 +1259,18 @@ msgstr "" msgid "Error deleting term." msgstr "" +#: modules/content-board/content-board.php:1517 +msgid "Error fetching post data." +msgstr "" + #: modules/editorial-metadata/editorial-metadata.php:1516 #: modules/editorial-metadata/editorial-metadata.php:1564 msgid "Error updating term." msgstr "" -#: modules/content-overview/content-overview.php:1535 +#: modules/content-board/content-board.php:1508 +#: modules/content-board/content-board.php:1558 +#: modules/content-overview/content-overview.php:1536 msgid "Error validating nonce. Please reload this page and try again." msgstr "" @@ -1155,7 +1279,8 @@ msgstr "" msgid "Event: %s, Workflow ID: %s, Post ID: %s, User ID: %s" msgstr "" -#: modules/content-overview/content-overview.php:2367 +#: modules/content-board/content-board.php:2390 +#: modules/content-overview/content-overview.php:2368 #: modules/notifications-log/library/NotificationsLogTable.php:271 #: modules/notifications-log/library/NotificationsLogTable.php:287 msgid "Failed" @@ -1181,7 +1306,11 @@ msgstr "" msgid "field" msgstr "" -#: modules/calendar/calendar.php:2569 +#: modules/editorial-metadata/editorial-metadata.php:2626 +msgid "Field Type" +msgstr "" + +#: modules/calendar/calendar.php:2506 msgid "Field used for sorting the calendar items in a day cell" msgstr "" @@ -1217,11 +1346,13 @@ msgid "" "roles." msgstr "" -#: modules/content-overview/content-overview.php:1423 +#: modules/content-board/content-board.php:1397 +#: modules/content-overview/content-overview.php:1424 msgid "Filter Title" msgstr "" -#: modules/content-overview/content-overview.php:948 +#: modules/content-board/content-board.php:929 +#: modules/content-overview/content-overview.php:950 msgid "Filter updated successfully." msgstr "" @@ -1229,7 +1360,7 @@ msgstr "" msgid "First Draft Date" msgstr "" -#: modules/editorial-comments/editorial-comments.php:1267 +#: modules/editorial-comments/editorial-comments.php:1269 msgid "First Name" msgstr "" @@ -1264,11 +1395,11 @@ msgstr "" msgid "Format" msgstr "" -#: modules/calendar/calendar.php:2093 +#: modules/calendar/calendar.php:2030 msgid "Forward %d weeks" msgstr "" -#: modules/calendar/calendar.php:2078 +#: modules/calendar/calendar.php:2015 msgid "Forward 1 week" msgstr "" @@ -1292,8 +1423,12 @@ msgstr "" msgid "From date" msgstr "" +#: modules/improved-notifications/improved-notifications.php:793 +msgid "Help" +msgstr "" + #: modules/editorial-metadata/editorial-metadata.php:2748 -msgid "Hidden metadata can only be viewed on the edit post view." +msgid "Hidden field can only be viewed on the edit post view." msgstr "" #: modules/calendar/calendar.php:760 @@ -1315,7 +1450,7 @@ msgid "" "resubscribe." msgstr "" -#: modules/calendar/calendar.php:3522 +#: modules/calendar/calendar.php:3459 #: lib/Notifications/Table/Notifications.php:159 #: lib/Notifications/Table/Workflows.php:143 msgid "ID" @@ -1324,13 +1459,13 @@ msgstr "" #: modules/editorial-metadata/editorial-metadata.php:2086 #: modules/editorial-metadata/editorial-metadata.php:2426 #: modules/editorial-metadata/editorial-metadata.php:2755 -msgid "If enabled, this metadata can be seen on the Content Calendar screens." +msgid "If enabled, this field can be seen on the Content Calendar screens." msgstr "" #: modules/editorial-metadata/editorial-metadata.php:2110 #: modules/editorial-metadata/editorial-metadata.php:2452 msgid "" -"If enabled, this metadata will be available when adding new posts on the " +"If enabled, this field will be available when adding new posts on the " "Content Calendar and Overview screen." msgstr "" @@ -1349,11 +1484,16 @@ msgid "" "don't hesitate to contact the support team. E-mail us:" msgstr "" -#: modules/content-overview/content-overview.php:1135 +#: modules/content-board/content-board.php:1112 +msgid "Inbuilt Card Data" +msgstr "" + +#: modules/content-overview/content-overview.php:1136 msgid "Inbuilt Columns" msgstr "" -#: modules/content-overview/content-overview.php:1197 +#: modules/content-board/content-board.php:1171 +#: modules/content-overview/content-overview.php:1198 msgid "Inbuilt filters" msgstr "" @@ -1363,7 +1503,7 @@ msgid "Indicate the select type." msgstr "" #: modules/editorial-metadata/editorial-metadata.php:2261 -msgid "Indicate the type of editorial metadata." +msgid "Indicate the type of editorial fields." msgstr "" #: modules/calendar/calendar.php:1472 @@ -1382,30 +1522,32 @@ msgstr "" msgid "Invalid channel for the notification" msgstr "" -#: modules/editorial-comments/editorial-comments.php:755 -#: modules/editorial-comments/editorial-comments.php:896 -#: modules/editorial-comments/editorial-comments.php:1028 -#: modules/editorial-comments/editorial-comments.php:1144 +#: modules/editorial-comments/editorial-comments.php:757 +#: modules/editorial-comments/editorial-comments.php:898 +#: modules/editorial-comments/editorial-comments.php:1030 +#: modules/editorial-comments/editorial-comments.php:1146 msgid "Invalid comment data" msgstr "" -#: modules/calendar/calendar.php:3262 +#: modules/calendar/calendar.php:3199 msgid "Invalid date" msgstr "" -#: modules/content-overview/content-overview.php:1537 +#: modules/content-board/content-board.php:1510 +#: modules/content-board/content-board.php:1560 +#: modules/content-overview/content-overview.php:1538 msgid "Invalid form request." msgstr "" -#: modules/calendar/calendar.php:3242 +#: modules/calendar/calendar.php:3179 msgid "Invalid input" msgstr "" -#: core/Error.php:80 modules/calendar/calendar.php:3233 +#: core/Error.php:80 modules/calendar/calendar.php:3170 msgid "Invalid nonce" msgstr "" -#: modules/calendar/calendar.php:3821 +#: modules/calendar/calendar.php:3758 msgid "Invalid Publish Date supplied." msgstr "" @@ -1413,7 +1555,7 @@ msgstr "" msgid "Invalid receiver for the notification" msgstr "" -#: modules/calendar/calendar.php:3797 +#: modules/calendar/calendar.php:3734 msgid "Invalid Status supplied." msgstr "" @@ -1435,12 +1577,12 @@ msgstr "" msgid "Jun" msgstr "" -#: modules/content-overview/content-overview.php:1083 -#: modules/content-overview/content-overview.php:1141 +#: modules/content-overview/content-overview.php:1085 +#: modules/content-overview/content-overview.php:1142 msgid "Last Modified" msgstr "" -#: modules/editorial-comments/editorial-comments.php:1268 +#: modules/editorial-comments/editorial-comments.php:1270 msgid "Last Name" msgstr "" @@ -1477,15 +1619,11 @@ msgstr "" msgid "Make Viewable" msgstr "" -#: modules/content-overview/content-overview.php:1871 -msgid "Manage Filters" -msgstr "" - #: modules/calendar/calendar.php:780 msgid "Mar" msgstr "" -#: modules/calendar/calendar.php:2577 +#: modules/calendar/calendar.php:2514 msgid "Max visible posts per date" msgstr "" @@ -1493,7 +1631,8 @@ msgstr "" msgid "May" msgstr "" -#: modules/content-overview/content-overview.php:1858 +#: modules/content-board/content-board.php:1881 +#: modules/content-overview/content-overview.php:1859 msgid "Me Mode" msgstr "" @@ -1512,42 +1651,10 @@ msgstr "" msgid "Meta Value" msgstr "" -#: modules/editorial-metadata/editorial-metadata.php:506 -msgid "Metadata" -msgstr "" - #: modules/editorial-metadata/editorial-metadata.php:1452 msgid "Metadata name conflicts with existing term. Please choose another." msgstr "" -#: modules/editorial-metadata/editorial-metadata.php:114 -msgid "Metadata order updated." -msgstr "" - -#: modules/editorial-metadata/editorial-metadata.php:110 -msgid "Metadata term added." -msgstr "" - -#: modules/editorial-metadata/editorial-metadata.php:113 -msgid "Metadata term deleted." -msgstr "" - -#: modules/editorial-metadata/editorial-metadata.php:112 -msgid "Metadata term doesn't exist." -msgstr "" - -#: modules/editorial-metadata/editorial-metadata.php:111 -msgid "Metadata term updated." -msgstr "" - -#: modules/editorial-metadata/editorial-metadata.php:2626 -msgid "Metadata Type" -msgstr "" - -#: modules/editorial-metadata/editorial-metadata.php:115 -msgid "Metadata visibility changed." -msgstr "" - #: modules/improved-notifications/improved-notifications.php:351 msgid "minutes" msgstr "" @@ -1572,7 +1679,13 @@ msgstr "" msgid "Most Used Notify User" msgstr "" -#: modules/content-overview/content-overview.php:2990 +#: modules/content-board/content-board.php:2595 +#: modules/content-board/content-board.php:2729 +msgid "Move posts here to change their status" +msgstr "" + +#: modules/content-board/content-board.php:2673 +#: modules/content-overview/content-overview.php:3025 msgid "Move this item to the Trash" msgstr "" @@ -1629,7 +1742,7 @@ msgid "New" msgstr "" #: modules/editorial-metadata/editorial-metadata.php:454 -msgid "New Editorial Metadata" +msgid "New Editorial Fields" msgstr "" #: modules/notifications/notifications.php:383 @@ -1644,7 +1757,8 @@ msgstr "" msgid "New Notify User" msgstr "" -#: modules/content-overview/content-overview.php:1888 +#: modules/content-board/content-board.php:1911 +#: modules/content-overview/content-overview.php:1889 msgid "New Post" msgstr "" @@ -1657,7 +1771,7 @@ msgstr "" msgid "New status" msgstr "" -#: modules/editorial-comments/editorial-comments.php:1264 +#: modules/editorial-comments/editorial-comments.php:1266 msgid "Nickname" msgstr "" @@ -1679,7 +1793,7 @@ msgstr "" msgid "No active notifications found for this %s." msgstr "" -#: modules/calendar/calendar.php:3756 +#: modules/calendar/calendar.php:3693 msgid "No date supplied." msgstr "" @@ -1688,14 +1802,14 @@ msgid "No editorial comments." msgstr "" #: modules/editorial-metadata/editorial-metadata.php:2721 -msgid "No editorial metadata found." +msgid "No editorial fields found." msgstr "" -#: modules/calendar/calendar.php:3253 +#: modules/calendar/calendar.php:3190 msgid "No enough permissions" msgstr "" -#: publishpress.php:1315 publishpress.php:1316 +#: publishpress.php:1328 publishpress.php:1329 msgid "No notification found" msgstr "" @@ -1718,7 +1832,8 @@ msgstr "" msgid "No notify users" msgstr "" -#: modules/content-overview/content-overview.php:2534 +#: modules/content-board/content-board.php:2750 +#: modules/content-overview/content-overview.php:2539 msgid "No results found" msgstr "" @@ -1730,22 +1845,23 @@ msgstr "" msgid "No workflows found." msgstr "" -#: modules/editorial-comments/editorial-comments.php:747 +#: modules/editorial-comments/editorial-comments.php:749 msgid "" "Nonce check failed. Please ensure you're supposed to be adding editorial " "comments." msgstr "" -#: modules/editorial-comments/editorial-comments.php:885 -#: modules/editorial-comments/editorial-comments.php:1017 -#: modules/editorial-comments/editorial-comments.php:1134 +#: modules/editorial-comments/editorial-comments.php:887 +#: modules/editorial-comments/editorial-comments.php:1019 +#: modules/editorial-comments/editorial-comments.php:1136 msgid "" "Nonce check failed. Please ensure you're supposed to be editing editorial " "comments." msgstr "" -#: modules/calendar/calendar.php:1778 -#: modules/content-overview/content-overview.php:2857 +#: modules/calendar/calendar.php:1715 +#: modules/content-board/content-board.php:3062 +#: modules/content-overview/content-overview.php:2892 msgid "None" msgstr "" @@ -1757,7 +1873,7 @@ msgstr "" msgid "Notepad" msgstr "" -#: publishpress.php:1309 publishpress.php:1314 +#: publishpress.php:1322 publishpress.php:1327 #: modules/notifications-log/notifications-log.php:209 msgid "Notification" msgstr "" @@ -1766,7 +1882,7 @@ msgstr "" msgid "Notification log not found" msgstr "" -#: publishpress.php:1308 publishpress.php:1313 +#: publishpress.php:1321 publishpress.php:1326 #: modules/notifications/notifications.php:72 #: modules/notifications/notifications.php:600 msgid "Notifications" @@ -1861,6 +1977,15 @@ msgstr "" msgid "One week" msgstr "" +#: modules/content-board/content-board.php:2595 +#: modules/content-board/content-board.php:2729 +msgid "Only editable posts will be moveable." +msgstr "" + +#: modules/improved-notifications/improved-notifications.php:784 +msgid "Options" +msgstr "" + #: modules/calendar/calendar.php:206 #: modules/editorial-comments/editorial-comments.php:82 #: modules/editorial-metadata/editorial-metadata.php:120 @@ -1896,7 +2021,8 @@ msgstr "" msgid "Parent Notify User:" msgstr "" -#: modules/content-overview/content-overview.php:2366 +#: modules/content-board/content-board.php:2389 +#: modules/content-overview/content-overview.php:2367 msgid "Passed" msgstr "" @@ -1904,37 +2030,37 @@ msgstr "" msgid "Path" msgstr "" -#: common/php/class-module.php:266 +#: common/php/class-module.php:331 msgid "Pending Review" msgstr "" -#: publishpress.php:584 +#: publishpress.php:585 msgid "Planner" msgstr "" -#: publishpress.php:668 +#: publishpress.php:669 msgid "Please correct your form errors below and try again." msgstr "" -#: modules/editorial-comments/editorial-comments.php:778 -#: modules/editorial-comments/editorial-comments.php:942 +#: modules/editorial-comments/editorial-comments.php:780 +#: modules/editorial-comments/editorial-comments.php:944 msgid "Please enter a comment." msgstr "" #: modules/editorial-metadata/editorial-metadata.php:1438 -msgid "Please enter a name for the editorial metadata" +msgid "Please enter a name for the editorial fields" msgstr "" #: modules/editorial-metadata/editorial-metadata.php:1275 -msgid "Please enter a name for the editorial metadata." +msgid "Please enter a name for the editorial fields." msgstr "" #: modules/editorial-metadata/editorial-metadata.php:1282 -msgid "Please enter a slug for the editorial metadata." +msgid "Please enter a slug for the editorial fields." msgstr "" #: modules/editorial-metadata/editorial-metadata.php:1443 -msgid "Please enter a valid, non-numeric name for the editorial metadata." +msgid "Please enter a valid, non-numeric name for the editorial fields." msgstr "" #: modules/editorial-metadata/editorial-metadata.php:1322 @@ -1946,12 +2072,13 @@ msgid "Please select at least one event" msgstr "" #: modules/calendar/calendar.php:770 -#: modules/content-overview/content-overview.php:1694 +#: modules/content-board/content-board.php:1717 +#: modules/content-overview/content-overview.php:1695 msgid "Please, wait! Loading the form fields..." msgstr "" #: modules/editorial-metadata/editorial-metadata.php:449 -msgid "Popular Editorial Metadata" +msgid "Popular Editorial Fields" msgstr "" #: modules/notifications/notifications.php:375 @@ -1974,16 +2101,16 @@ msgstr "" msgid "Post" msgstr "" -#: modules/calendar/calendar.php:3897 +#: modules/calendar/calendar.php:3834 msgid "Post could not be created" msgstr "" -#: modules/calendar/calendar.php:3890 +#: modules/calendar/calendar.php:3827 msgid "Post created successfully" msgstr "" -#: modules/content-overview/content-overview.php:1082 -#: modules/content-overview/content-overview.php:1140 +#: modules/content-overview/content-overview.php:1084 +#: modules/content-overview/content-overview.php:1141 msgid "Post Date" msgstr "" @@ -1991,7 +2118,7 @@ msgstr "" msgid "Post date updated." msgstr "" -#: publishpress.php:674 +#: publishpress.php:675 msgid "Post does not exist" msgstr "" @@ -1999,15 +2126,18 @@ msgstr "" msgid "Post ID: %d" msgstr "" -#: modules/calendar/calendar.php:3248 +#: modules/calendar/calendar.php:3185 msgid "Post not found" msgstr "" -#: modules/calendar/calendar.php:2878 modules/calendar/calendar.php:3533 -#: modules/calendar/calendar.php:3613 -#: modules/content-overview/content-overview.php:1199 -#: modules/content-overview/content-overview.php:1723 -#: modules/content-overview/content-overview.php:2061 +#: modules/calendar/calendar.php:2815 modules/calendar/calendar.php:3470 +#: modules/calendar/calendar.php:3550 +#: modules/content-board/content-board.php:1173 +#: modules/content-board/content-board.php:1746 +#: modules/content-board/content-board.php:2084 +#: modules/content-overview/content-overview.php:1200 +#: modules/content-overview/content-overview.php:1724 +#: modules/content-overview/content-overview.php:2062 msgid "Post Status" msgstr "" @@ -2019,13 +2149,19 @@ msgstr "" msgid "Post Status Widget" msgstr "" -#: modules/calendar/calendar.php:1951 modules/calendar/calendar.php:3517 -#: modules/content-overview/content-overview.php:1080 -#: modules/content-overview/content-overview.php:1096 -#: modules/content-overview/content-overview.php:1138 -#: modules/content-overview/content-overview.php:1201 -#: modules/content-overview/content-overview.php:1712 -#: modules/content-overview/content-overview.php:2144 +#: modules/calendar/calendar.php:1888 modules/calendar/calendar.php:3454 +#: modules/content-board/content-board.php:1060 +#: modules/content-board/content-board.php:1073 +#: modules/content-board/content-board.php:1114 +#: modules/content-board/content-board.php:1175 +#: modules/content-board/content-board.php:1735 +#: modules/content-board/content-board.php:2167 +#: modules/content-overview/content-overview.php:1082 +#: modules/content-overview/content-overview.php:1097 +#: modules/content-overview/content-overview.php:1139 +#: modules/content-overview/content-overview.php:1202 +#: modules/content-overview/content-overview.php:1713 +#: modules/content-overview/content-overview.php:2145 msgid "Post Type" msgstr "" @@ -2051,10 +2187,11 @@ msgstr "" msgid "Post Types" msgstr "" -#: modules/calendar/calendar.php:2521 +#: modules/calendar/calendar.php:2458 msgid "Post types to show" msgstr "" +#: modules/content-board/content-board.php:243 #: modules/content-overview/content-overview.php:252 msgid "Post types to show:" msgstr "" @@ -2063,17 +2200,19 @@ msgstr "" msgid "Posts at a Glance" msgstr "" -#: modules/calendar/calendar.php:2553 +#: modules/calendar/calendar.php:2490 msgid "Posts publish time format" msgstr "" -#: modules/calendar/calendar.php:1822 modules/calendar/calendar.php:3577 -#: modules/content-overview/content-overview.php:3023 +#: modules/calendar/calendar.php:1759 modules/calendar/calendar.php:3514 +#: modules/content-board/content-board.php:2706 +#: modules/content-overview/content-overview.php:3058 msgid "Preview" msgstr "" -#: modules/calendar/calendar.php:1819 -#: modules/content-overview/content-overview.php:3020 +#: modules/calendar/calendar.php:1756 +#: modules/content-board/content-board.php:2703 +#: modules/content-overview/content-overview.php:3055 #, php-format msgid "Preview “%s”" msgstr "" @@ -2082,23 +2221,24 @@ msgstr "" msgid "Previous status" msgstr "" -#: modules/content-overview/content-overview.php:1880 +#: modules/content-board/content-board.php:1903 +#: modules/content-overview/content-overview.php:1881 msgid "Print" msgstr "" -#: common/php/class-module.php:265 +#: common/php/class-module.php:330 msgid "Private" msgstr "" -#: modules/calendar/calendar.php:3619 +#: modules/calendar/calendar.php:3556 msgid "Publish Time" msgstr "" -#: common/php/class-module.php:262 modules/calendar/calendar.php:1964 +#: common/php/class-module.php:327 modules/calendar/calendar.php:1901 msgid "Published" msgstr "" -#: modules/calendar/calendar.php:2877 +#: modules/calendar/calendar.php:2814 msgid "Publishing Time" msgstr "" @@ -2122,7 +2262,7 @@ msgid "" "Features include a content calendar, notifications, and custom statuses." msgstr "" -#: publishpress.php:1355 +#: publishpress.php:1368 msgid "" "PublishPress Planner tried to load multiple times. Please, deactivate and " "remove other instances of PublishPress, specially if you are using " @@ -2137,7 +2277,7 @@ msgstr "" msgid "Receiver" msgstr "" -#: modules/calendar/calendar.php:2654 +#: modules/calendar/calendar.php:2591 msgid "Regenerate calendar feed secret" msgstr "" @@ -2146,7 +2286,7 @@ msgid "Register metadata for these post types:" msgstr "" #: modules/editorial-comments/editorial-comments.php:211 -#: modules/editorial-comments/editorial-comments.php:719 +#: modules/editorial-comments/editorial-comments.php:721 msgid "Remove" msgstr "" @@ -2154,19 +2294,24 @@ msgstr "" msgid "Remove PublishPress ads and branding" msgstr "" -#: modules/content-overview/content-overview.php:1250 +#: modules/content-board/content-board.php:1224 +msgid "Reorder" +msgstr "" + +#: modules/content-overview/content-overview.php:1251 msgid "Reorder Columns" msgstr "" -#: modules/content-overview/content-overview.php:1398 +#: modules/content-board/content-board.php:1372 +#: modules/content-overview/content-overview.php:1399 msgid "Reorder Filters" msgstr "" -#: modules/editorial-comments/editorial-comments.php:623 +#: modules/editorial-comments/editorial-comments.php:625 msgid "Reply" msgstr "" -#: modules/editorial-comments/editorial-comments.php:620 +#: modules/editorial-comments/editorial-comments.php:622 msgid "Reply to this comment" msgstr "" @@ -2184,13 +2329,16 @@ msgstr "" msgid "Reschedule" msgstr "" -#: modules/calendar/calendar.php:2070 -#: modules/content-overview/content-overview.php:858 -#: modules/content-overview/content-overview.php:1954 +#: modules/calendar/calendar.php:2007 +#: modules/content-board/content-board.php:839 +#: modules/content-board/content-board.php:1977 +#: modules/content-overview/content-overview.php:860 +#: modules/content-overview/content-overview.php:1955 msgid "Reset" msgstr "" -#: modules/content-overview/content-overview.php:1953 +#: modules/content-board/content-board.php:1976 +#: modules/content-overview/content-overview.php:1954 msgid "Reset Filters" msgstr "" @@ -2198,7 +2346,7 @@ msgstr "" msgid "Reviews" msgstr "" -#: common/php/class-module.php:678 +#: common/php/class-module.php:743 msgid "Role" msgstr "" @@ -2208,7 +2356,7 @@ msgstr "" msgid "role:%s" msgstr "" -#: common/php/class-module.php:675 +#: common/php/class-module.php:740 #: lib/Notifications/Workflow/Step/Receiver/Role.php:31 msgid "Roles" msgstr "" @@ -2217,11 +2365,11 @@ msgstr "" msgid "Sat" msgstr "" -#: modules/calendar/calendar.php:764 modules/calendar/calendar.php:1848 +#: modules/calendar/calendar.php:764 modules/calendar/calendar.php:1785 msgid "Save" msgstr "" -#: modules/calendar/calendar.php:1842 +#: modules/calendar/calendar.php:1779 #, php-format msgid "Save “%s”" msgstr "" @@ -2234,7 +2382,12 @@ msgstr "" msgid "Saving..." msgstr "" -#: common/php/class-module.php:264 modules/calendar/calendar.php:1959 +#: modules/content-board/content-board.php:2561 +msgid "Schedule Date" +msgstr "" + +#: common/php/class-module.php:329 modules/calendar/calendar.php:1896 +#: modules/content-board/content-board.php:2500 #: modules/notifications-log/library/NotificationsLogTable.php:523 msgid "Scheduled" msgstr "" @@ -2243,24 +2396,27 @@ msgstr "" msgid "Scheduled for %d receivers. Click here to display them." msgstr "" -#: modules/content-overview/content-overview.php:1902 +#: modules/content-board/content-board.php:1925 +#: modules/content-overview/content-overview.php:1903 msgid "Search" msgstr "" -#: modules/content-overview/content-overview.php:1901 -#: modules/content-overview/content-overview.php:2168 +#: modules/content-board/content-board.php:1924 +#: modules/content-board/content-board.php:2191 +#: modules/content-overview/content-overview.php:1902 +#: modules/content-overview/content-overview.php:2169 msgid "Search box" msgstr "" -#: modules/editorial-comments/editorial-comments.php:289 +#: modules/editorial-comments/editorial-comments.php:291 msgid "Search Comments" msgstr "" #: modules/editorial-metadata/editorial-metadata.php:448 -msgid "Search Editorial Metadata" +msgid "Search Editorial Fields" msgstr "" -#: publishpress.php:1312 +#: publishpress.php:1325 msgid "Search Notifications" msgstr "" @@ -2277,7 +2433,7 @@ msgid "Search Notify Users" msgstr "" #. %s: search keywords -#: modules/editorial-comments/editorial-comments.php:276 +#: modules/editorial-comments/editorial-comments.php:278 #, php-format msgid "Search results for “%s”" msgstr "" @@ -2286,12 +2442,15 @@ msgstr "" msgid "Select at least one option for each section." msgstr "" -#: modules/content-overview/content-overview.php:1279 -#: modules/content-overview/content-overview.php:1427 +#: modules/content-board/content-board.php:1253 +#: modules/content-board/content-board.php:1401 +#: modules/content-overview/content-overview.php:1280 +#: modules/content-overview/content-overview.php:1428 msgid "Select Metakey" msgstr "" -#: modules/content-overview/content-overview.php:2210 +#: modules/content-board/content-board.php:2233 +#: modules/content-overview/content-overview.php:2211 msgid "Select option..." msgstr "" @@ -2350,7 +2509,8 @@ msgstr "" msgid "Show %s more" msgstr "" -#: modules/content-overview/content-overview.php:816 +#: modules/content-board/content-board.php:797 +#: modules/content-overview/content-overview.php:818 msgid "Show content from" msgstr "" @@ -2425,32 +2585,32 @@ msgstr "" msgid "Sorry! You're not subscribed to any posts!" msgstr "" -#: modules/editorial-comments/editorial-comments.php:1080 +#: modules/editorial-comments/editorial-comments.php:1082 msgid "" "Sorry, you can't delete this editorial comment because it has some replies." msgstr "" -#: modules/editorial-comments/editorial-comments.php:768 +#: modules/editorial-comments/editorial-comments.php:770 msgid "" "Sorry, you don't have the privileges to add editorial comments. Please talk " "to your Administrator." msgstr "" -#: modules/editorial-comments/editorial-comments.php:1059 -#: modules/editorial-comments/editorial-comments.php:1163 +#: modules/editorial-comments/editorial-comments.php:1061 +#: modules/editorial-comments/editorial-comments.php:1165 msgid "" "Sorry, you don't have the privileges to delete this editorial comment. " "Please talk to your Administrator." msgstr "" -#: modules/editorial-comments/editorial-comments.php:911 -#: modules/editorial-comments/editorial-comments.php:1043 +#: modules/editorial-comments/editorial-comments.php:913 +#: modules/editorial-comments/editorial-comments.php:1045 msgid "" "Sorry, you don't have the privileges to edit editorial comments. Please talk " "to your Administrator." msgstr "" -#: modules/editorial-comments/editorial-comments.php:929 +#: modules/editorial-comments/editorial-comments.php:931 msgid "" "Sorry, you don't have the privileges to edit this editorial comment. Please " "talk to your Administrator." @@ -2460,9 +2620,10 @@ msgstr "" msgid "Start date" msgstr "" -#: modules/content-overview/content-overview.php:1079 -#: modules/content-overview/content-overview.php:1093 -#: modules/content-overview/content-overview.php:1137 +#: modules/content-board/content-board.php:1071 +#: modules/content-overview/content-overview.php:1081 +#: modules/content-overview/content-overview.php:1095 +#: modules/content-overview/content-overview.php:1138 #: modules/notifications-log/library/NotificationsLogTable.php:494 msgid "Status" msgstr "" @@ -2473,7 +2634,7 @@ msgstr "" msgid "Status was changed for %1$s #%2$s \"%3$s\" by %4$s %5$s" msgstr "" -#: modules/calendar/calendar.php:2545 +#: modules/calendar/calendar.php:2482 msgid "Statuses to display publish time" msgstr "" @@ -2510,19 +2671,22 @@ msgstr "" msgid "synchronous" msgstr "" -#: modules/calendar/calendar.php:3548 +#: modules/calendar/calendar.php:3485 msgid "Tag" msgid_plural "Tags" msgstr[0] "" msgstr[1] "" -#: modules/calendar/calendar.php:3647 -#: modules/content-overview/content-overview.php:1751 +#: modules/calendar/calendar.php:3584 +#: modules/content-board/content-board.php:1774 +#: modules/content-overview/content-overview.php:1752 msgid "Tags" msgstr "" -#: modules/content-overview/content-overview.php:1155 -#: modules/content-overview/content-overview.php:1215 +#: modules/content-board/content-board.php:1129 +#: modules/content-board/content-board.php:1189 +#: modules/content-overview/content-overview.php:1156 +#: modules/content-overview/content-overview.php:1216 msgid "Taxonomies" msgstr "" @@ -2532,12 +2696,12 @@ msgstr "" #: modules/editorial-metadata/editorial-metadata.php:446 msgctxt "taxonomy general name" -msgid "Metadata" +msgid "Editorial Field" msgstr "" #: modules/editorial-metadata/editorial-metadata.php:447 msgctxt "taxonomy singular name" -msgid "Metadata" +msgid "Editorial Field" msgstr "" #: modules/calendar/calendar.php:1375 @@ -2563,6 +2727,11 @@ msgid "" msgstr "" #: modules/editorial-metadata/editorial-metadata.php:1908 +msgid "" +"The description can be used to communicate with your team about what the " +"field is for." +msgstr "" + #: modules/editorial-metadata/editorial-metadata.php:2232 msgid "" "The description can be used to communicate with your team about what the " @@ -2574,12 +2743,12 @@ msgid "The Events Calendar Integration" msgstr "" #: modules/editorial-metadata/editorial-metadata.php:1922 -msgid "The metadata type cannot be changed once created." +msgid "The field type cannot be changed once created." msgstr "" #: modules/editorial-metadata/editorial-metadata.php:1882 #: modules/editorial-metadata/editorial-metadata.php:2201 -msgid "The name is for labeling the metadata field." +msgid "The name is for labeling the editorial fields." msgstr "" #: modules/notifications-log/library/NotificationsLogTable.php:277 @@ -2592,7 +2761,7 @@ msgid "" "The notifications module will need to be enabled for this widget to display." msgstr "" -#: modules/calendar/calendar.php:2621 +#: modules/calendar/calendar.php:2558 msgid "" "The number of weeks shown on the calendar can be changed on a user-by-user " "basis using the calendar's screen options." @@ -2602,11 +2771,11 @@ msgstr "" msgid "The parent log was deleted or probably rescheduled" msgstr "" -#: modules/calendar/calendar.php:3767 +#: modules/calendar/calendar.php:3704 msgid "The selected post type is not enabled for the calendar." msgstr "" -#: modules/calendar/calendar.php:4246 +#: modules/calendar/calendar.php:4183 msgid "" "The selected user doesn't have enough permissions to be set as the post " "author." @@ -2616,7 +2785,8 @@ msgstr "" msgid "The slug cannot be changed once the term has been created." msgstr "" -#: modules/content-overview/content-overview.php:2539 +#: modules/content-board/content-board.php:2755 +#: modules/content-overview/content-overview.php:2544 msgid "There are no posts in the range or filter specified." msgstr "" @@ -2624,10 +2794,10 @@ msgstr "" msgid "There are no PublishPress modules registered" msgstr "" -#: modules/editorial-comments/editorial-comments.php:865 -#: modules/editorial-comments/editorial-comments.php:995 -#: modules/editorial-comments/editorial-comments.php:1105 -#: modules/editorial-comments/editorial-comments.php:1189 +#: modules/editorial-comments/editorial-comments.php:867 +#: modules/editorial-comments/editorial-comments.php:997 +#: modules/editorial-comments/editorial-comments.php:1107 +#: modules/editorial-comments/editorial-comments.php:1191 msgid "" "There was a problem of some sort. Try again or contact your administrator." msgstr "" @@ -2645,7 +2815,7 @@ msgstr "" #: modules/editorial-metadata/input-handlers/editorial-metadata-input-handler.php:84 #: modules/editorial-metadata/input-handlers/editorial-metadata-input-handler.php:106 #: modules/editorial-metadata/input-handlers/editorial-metadata-input-handler.php:127 -msgid "This editorial metadata type is not yet supported." +msgid "This editorial fields type is not yet supported." msgstr "" #: modules/notifications/notifications.php:1056 @@ -2653,21 +2823,21 @@ msgstr "" msgid "This email was sent %s." msgstr "" -#: modules/notifications-log/notifications-log.php:835 -msgid "" -"This is a preview of the scheduled message. The content can still change " -"until the notification is sent." -msgstr "" - #: modules/editorial-metadata/editorial-metadata.php:2124 #: modules/editorial-metadata/editorial-metadata.php:2464 -msgid "This metadata will be available for these post types." +msgid "This field will be available for these post types." msgstr "" #: modules/editorial-metadata/editorial-metadata.php:2148 #: modules/editorial-metadata/editorial-metadata.php:2487 msgid "" -"This metadata will be viewable on the overview screens for these post types." +"This field will be viewable on the overview screens for these post types." +msgstr "" + +#: modules/notifications-log/notifications-log.php:835 +msgid "" +"This is a preview of the scheduled message. The content can still change " +"until the notification is sent." msgstr "" #: modules/notifications-log/notifications-log.php:442 @@ -2708,9 +2878,12 @@ msgstr "" msgid "Thu" msgstr "" -#: modules/calendar/calendar.php:3608 +#: modules/calendar/calendar.php:3545 +#: modules/content-board/content-board.php:536 +#: modules/content-board/content-board.php:1249 +#: modules/content-board/content-board.php:1741 #: modules/content-overview/content-overview.php:557 -#: modules/content-overview/content-overview.php:1718 +#: modules/content-overview/content-overview.php:1719 #: lib/Notifications/Table/Notifications.php:156 #: lib/Notifications/Table/Workflows.php:142 msgid "Title" @@ -2721,9 +2894,12 @@ msgstr "" msgid "Title: %s" msgstr "" -#: modules/content-overview/content-overview.php:1915 -#: modules/content-overview/content-overview.php:2244 -#: modules/content-overview/content-overview.php:2278 +#: modules/content-board/content-board.php:1938 +#: modules/content-board/content-board.php:2267 +#: modules/content-board/content-board.php:2301 +#: modules/content-overview/content-overview.php:1916 +#: modules/content-overview/content-overview.php:2245 +#: modules/content-overview/content-overview.php:2279 msgid "to" msgstr "" @@ -2731,18 +2907,19 @@ msgstr "" msgid "To date" msgstr "" -#: modules/calendar/calendar.php:797 modules/calendar/calendar.php:2118 +#: modules/calendar/calendar.php:797 modules/calendar/calendar.php:2055 msgid "Today" msgstr "" -#: modules/calendar/calendar.php:2112 +#: modules/calendar/calendar.php:2049 #, php-format msgid "Today is %s" msgstr "" -#: common/php/class-module.php:267 modules/calendar/calendar.php:1808 -#: modules/calendar/calendar.php:3567 -#: modules/content-overview/content-overview.php:2994 +#: common/php/class-module.php:332 modules/calendar/calendar.php:1745 +#: modules/calendar/calendar.php:3504 +#: modules/content-board/content-board.php:2677 +#: modules/content-overview/content-overview.php:3029 msgid "Trash" msgstr "" @@ -2776,7 +2953,8 @@ msgid "Undefined error found" msgstr "" #: modules/calendar/calendar.php:1435 -#: modules/content-overview/content-overview.php:893 +#: modules/content-board/content-board.php:874 +#: modules/content-overview/content-overview.php:895 msgid "Undo" msgstr "" @@ -2784,16 +2962,16 @@ msgstr "" msgid "Unpublished Content" msgstr "" -#: modules/calendar/calendar.php:762 modules/calendar/calendar.php:3773 +#: modules/calendar/calendar.php:762 modules/calendar/calendar.php:3710 msgid "Untitled" msgstr "" #: modules/editorial-metadata/editorial-metadata.php:452 -msgid "Update Editorial Metadata" +msgid "Update Editorial Fields" msgstr "" #: modules/editorial-metadata/editorial-metadata.php:2171 -msgid "Update Metadata Term" +msgid "Update Editorial fields term" msgstr "" #: modules/dashboard/widgets/dashboard-notepad.php:168 @@ -2819,7 +2997,7 @@ msgid "" "Please edit the post." msgstr "" -#: includes.php:159 lib/Legacy/Util.php:213 +#: includes.php:161 lib/Legacy/Util.php:213 msgid "Upgrade to Pro" msgstr "" @@ -2848,7 +3026,7 @@ msgstr "" msgid "User role" msgstr "" -#: modules/editorial-comments/editorial-comments.php:1270 +#: modules/editorial-comments/editorial-comments.php:1272 msgid "User Url" msgstr "" @@ -2857,11 +3035,11 @@ msgstr "" msgid "User: %s (%d)" msgstr "" -#: modules/editorial-comments/editorial-comments.php:1265 +#: modules/editorial-comments/editorial-comments.php:1267 msgid "Username" msgstr "" -#: common/php/class-module.php:686 +#: common/php/class-module.php:751 #: lib/Notifications/Workflow/Step/Receiver/User.php:26 msgid "Users" msgstr "" @@ -2870,13 +3048,15 @@ msgstr "" msgid "Users who selected \"Notify me\" for the content" msgstr "" -#: modules/calendar/calendar.php:1832 modules/calendar/calendar.php:3574 -#: modules/content-overview/content-overview.php:3010 +#: modules/calendar/calendar.php:1769 modules/calendar/calendar.php:3511 +#: modules/content-board/content-board.php:2693 +#: modules/content-overview/content-overview.php:3045 msgid "View" msgstr "" -#: modules/calendar/calendar.php:1826 -#: modules/content-overview/content-overview.php:3004 +#: modules/calendar/calendar.php:1763 +#: modules/content-board/content-board.php:2687 +#: modules/content-overview/content-overview.php:3039 #, php-format msgid "View “%s”" msgstr "" @@ -2886,7 +3066,7 @@ msgstr "" msgid "View “%s” on Google Maps" msgstr "" -#: modules/calendar/calendar.php:4032 +#: modules/calendar/calendar.php:3969 msgid "View all categories" msgstr "" @@ -2918,7 +3098,7 @@ msgstr "" msgid "Viewable" msgstr "" -#: publishpress.php:1363 +#: publishpress.php:1376 msgid "Warning" msgstr "" @@ -3013,7 +3193,7 @@ msgid "" "following shortcodes:" msgstr "" -#: modules/editorial-comments/editorial-comments.php:532 +#: modules/editorial-comments/editorial-comments.php:534 msgid "" "You can add editorial comments to a post once you've saved it for the first " "time." @@ -3024,25 +3204,34 @@ msgstr "" msgid "You can see all editorial comments on this %s here: " msgstr "" -#: modules/content-overview/content-overview.php:1149 -#: modules/content-overview/content-overview.php:1209 -msgid "You do not have any editorial metadata enabled" +#: modules/content-board/content-board.php:1123 +#: modules/content-board/content-board.php:1183 +#: modules/content-overview/content-overview.php:1150 +#: modules/content-overview/content-overview.php:1210 +msgid "You do not have any editorial fields enabled" msgstr "" -#: modules/content-overview/content-overview.php:1156 -#: modules/content-overview/content-overview.php:1216 +#: modules/content-board/content-board.php:1130 +#: modules/content-board/content-board.php:1190 +#: modules/content-overview/content-overview.php:1157 +#: modules/content-overview/content-overview.php:1217 msgid "You do not have any public taxonomies" msgstr "" -#: publishpress.php:670 +#: publishpress.php:671 msgid "You do not have necessary permissions to complete this action." msgstr "" -#: modules/content-overview/content-overview.php:1009 +#: modules/content-board/content-board.php:990 +#: modules/content-overview/content-overview.php:1011 #, php-format msgid "You do not have permission to add new %s" msgstr "" +#: modules/content-board/content-board.php:1521 +msgid "You do not have permission to edit selected post." +msgstr "" + #: lib/Notifications/Table/Notifications.php:235 msgid "You don't have any notifications" msgstr "" diff --git a/lib/Notifications/Table/Base.php b/lib/Notifications/Table/Base.php index 812735a3c..b5fd1e401 100644 --- a/lib/Notifications/Table/Base.php +++ b/lib/Notifications/Table/Base.php @@ -180,7 +180,7 @@ public function __construct($args = []) if (empty($this->modes)) { $this->modes = [ 'list' => __('List View'), - 'excerpt' => __('Excerpt View'), + 'excerpt' => __('Excerpt View', 'publishpress'), ]; } } @@ -657,7 +657,7 @@ protected function bulk_actions($which = '') 'Select bulk action' ) . ''; echo '