diff --git a/.gitignore b/.gitignore index 56f1334c8..196a8ef23 100644 --- a/.gitignore +++ b/.gitignore @@ -17,6 +17,7 @@ node_modules builder.yml builder.yml.dist .editorconfig +/cache !tests/_support/.gitkeep tests/_support/* diff --git a/common/css/publishpress-admin.css b/common/css/publishpress-admin.css index 4de4722ce..8e7b2d902 100644 --- a/common/css/publishpress-admin.css +++ b/common/css/publishpress-admin.css @@ -124,13 +124,12 @@ div.pp-icon img { Status color box */ .pp-status-color { - width: 10px; - height: 10px; display: inline-block; border-radius: 3px; -moz-border-radius: 3px; -webkit-border-radius: 3px; -o-border-radius: 3px; + padding: 2px 5px 2px 5px; } .pp-status-color + strong { @@ -245,6 +244,12 @@ Status color box */ float: left; } +.pp-admin-notice { + padding: 10px !important; + line-height: 18px; + position: relative; +} + @media (max-width: 1199px) { .pp-columns-wrapper.pp-enable-sidebar .pp-column-left, diff --git a/common/php/class-module.php b/common/php/class-module.php index 6538213a3..76e1147b5 100644 --- a/common/php/class-module.php +++ b/common/php/class-module.php @@ -77,6 +77,10 @@ public function module_enabled($slug) { global $publishpress; + if ('custom_status' == $slug) { + return class_exists('PublishPress_Statuses'); + } + return isset($publishpress->$slug) && $publishpress->$slug->module->options->enabled == 'on'; } @@ -180,7 +184,6 @@ public function get_post_types_for_module($module) /** * Get all of the currently available post statuses - * This should be used in favor of calling $publishpress->custom_status->get_custom_statuses() directly * * @return array $post_statuses All of the post statuses that aren't a published state * @@ -190,11 +193,7 @@ public function get_post_statuses() { global $publishpress; - if ($this->module_enabled('custom_status')) { - return $publishpress->custom_status->get_custom_statuses(); - } else { - return $this->get_core_post_statuses(); - } + return $publishpress->getPostStatuses(); } /** @@ -206,26 +205,22 @@ public function get_post_statuses() */ protected function get_core_post_statuses() { - return [ - (object)[ - 'name' => __('Draft'), - 'description' => '', - 'slug' => 'draft', - 'position' => 1, - ], - (object)[ - 'name' => __('Pending Review'), - 'description' => '', - 'slug' => 'pending', - 'position' => 2, - ], - (object)[ - 'name' => __('Published'), - 'description' => '', - 'slug' => 'publish', - 'position' => 3, - ], - ]; + global $publishpress; + + return $publishpress->getCorePostStatuses(); + } + + /** + * Back compat for existing code calling $publishpress->custom_status->get_custom_status_by() + * + * @return object + * + * @since 4.0 + */ + public function get_custom_status_by($field, $value) { + global $publishpress; + + return $publishpress->getPostStatusBy($field, $value); } /** @@ -273,11 +268,11 @@ public function get_post_status_friendly_name($status) ]; // Custom statuses only handles workflow statuses - if ($this->module_enabled('custom_status') - && !in_array($status, ['publish', 'future', 'private', 'trash'])) { - $status_object = $publishpress->custom_status->get_custom_status_by('slug', $status); + if (!in_array($status, ['publish', 'future', 'private', 'trash'])) { + $status_object = $publishpress->getPostStatusBy('slug', $status); + if ($status_object && !is_wp_error($status_object)) { - $status_friendly_name = $status_object->name; + $status_friendly_name = $status_object->label; } } elseif (array_key_exists($status, $builtin_stati)) { $status_friendly_name = $builtin_stati[$status]; diff --git a/composer.lock b/composer.lock index 6a149c704..bf412a81e 100644 --- a/composer.lock +++ b/composer.lock @@ -9,16 +9,16 @@ "packages-dev": [ { "name": "antecedent/patchwork", - "version": "2.1.26", + "version": "2.1.27", "source": { "type": "git", "url": "https://github.com/antecedent/patchwork.git", - "reference": "f2dae0851b2eae4c51969af740fdd0356d7f8f55" + "reference": "16a1ab81559aabf14acb616141e801b32777f085" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/antecedent/patchwork/zipball/f2dae0851b2eae4c51969af740fdd0356d7f8f55", - "reference": "f2dae0851b2eae4c51969af740fdd0356d7f8f55", + "url": "https://api.github.com/repos/antecedent/patchwork/zipball/16a1ab81559aabf14acb616141e801b32777f085", + "reference": "16a1ab81559aabf14acb616141e801b32777f085", "shasum": "" }, "require": { @@ -39,7 +39,7 @@ } ], "description": "Method redefinition (monkey-patching) functionality for PHP.", - "homepage": "http://patchwork2.org/", + "homepage": "https://antecedent.github.io/patchwork/", "keywords": [ "aop", "aspect", @@ -51,9 +51,9 @@ ], "support": { "issues": "https://github.com/antecedent/patchwork/issues", - "source": "https://github.com/antecedent/patchwork/tree/2.1.26" + "source": "https://github.com/antecedent/patchwork/tree/2.1.27" }, - "time": "2023-09-18T08:18:37+00:00" + "time": "2023-12-03T18:46:49+00:00" }, { "name": "automattic/vipwpcs", @@ -517,6 +517,75 @@ ], "time": "2023-01-15T23:15:59+00:00" }, + { + "name": "carbonphp/carbon-doctrine-types", + "version": "2.1.0", + "source": { + "type": "git", + "url": "https://github.com/CarbonPHP/carbon-doctrine-types.git", + "reference": "99f76ffa36cce3b70a4a6abce41dba15ca2e84cb" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/CarbonPHP/carbon-doctrine-types/zipball/99f76ffa36cce3b70a4a6abce41dba15ca2e84cb", + "reference": "99f76ffa36cce3b70a4a6abce41dba15ca2e84cb", + "shasum": "" + }, + "require": { + "php": "^7.4 || ^8.0" + }, + "conflict": { + "doctrine/dbal": "<3.7.0 || >=4.0.0" + }, + "require-dev": { + "doctrine/dbal": "^3.7.0", + "nesbot/carbon": "^2.71.0 || ^3.0.0", + "phpunit/phpunit": "^10.3" + }, + "type": "library", + "autoload": { + "psr-4": { + "Carbon\\Doctrine\\": "src/Carbon/Doctrine/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "KyleKatarn", + "email": "kylekatarnls@gmail.com" + } + ], + "description": "Types to use Carbon in Doctrine", + "keywords": [ + "carbon", + "date", + "datetime", + "doctrine", + "time" + ], + "support": { + "issues": "https://github.com/CarbonPHP/carbon-doctrine-types/issues", + "source": "https://github.com/CarbonPHP/carbon-doctrine-types/tree/2.1.0" + }, + "funding": [ + { + "url": "https://github.com/kylekatarnls", + "type": "github" + }, + { + "url": "https://opencollective.com/Carbon", + "type": "open_collective" + }, + { + "url": "https://tidelift.com/funding/github/packagist/nesbot/carbon", + "type": "tidelift" + } + ], + "time": "2023-12-11T17:09:12+00:00" + }, { "name": "codeception/codeception", "version": "4.2.2", @@ -1178,16 +1247,16 @@ }, { "name": "composer/ca-bundle", - "version": "1.3.7", + "version": "1.4.0", "source": { "type": "git", "url": "https://github.com/composer/ca-bundle.git", - "reference": "76e46335014860eec1aa5a724799a00a2e47cc85" + "reference": "b66d11b7479109ab547f9405b97205640b17d385" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/composer/ca-bundle/zipball/76e46335014860eec1aa5a724799a00a2e47cc85", - "reference": "76e46335014860eec1aa5a724799a00a2e47cc85", + "url": "https://api.github.com/repos/composer/ca-bundle/zipball/b66d11b7479109ab547f9405b97205640b17d385", + "reference": "b66d11b7479109ab547f9405b97205640b17d385", "shasum": "" }, "require": { @@ -1199,7 +1268,7 @@ "phpstan/phpstan": "^0.12.55", "psr/log": "^1.0", "symfony/phpunit-bridge": "^4.2 || ^5", - "symfony/process": "^2.5 || ^3.0 || ^4.0 || ^5.0 || ^6.0" + "symfony/process": "^2.5 || ^3.0 || ^4.0 || ^5.0 || ^6.0 || ^7.0" }, "type": "library", "extra": { @@ -1234,7 +1303,7 @@ "support": { "irc": "irc://irc.freenode.org/composer", "issues": "https://github.com/composer/ca-bundle/issues", - "source": "https://github.com/composer/ca-bundle/tree/1.3.7" + "source": "https://github.com/composer/ca-bundle/tree/1.4.0" }, "funding": [ { @@ -1250,20 +1319,20 @@ "type": "tidelift" } ], - "time": "2023-08-30T09:31:38+00:00" + "time": "2023-12-18T12:05:55+00:00" }, { "name": "composer/composer", - "version": "2.2.21", + "version": "2.2.22", "source": { "type": "git", "url": "https://github.com/composer/composer.git", - "reference": "978198befc71de0b18fc1fc5a472c03b184b504a" + "reference": "fedc76ee3f3e3d57d20993b9f4c5fcfb2f8596aa" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/composer/composer/zipball/978198befc71de0b18fc1fc5a472c03b184b504a", - "reference": "978198befc71de0b18fc1fc5a472c03b184b504a", + "url": "https://api.github.com/repos/composer/composer/zipball/fedc76ee3f3e3d57d20993b9f4c5fcfb2f8596aa", + "reference": "fedc76ee3f3e3d57d20993b9f4c5fcfb2f8596aa", "shasum": "" }, "require": { @@ -1333,7 +1402,7 @@ "support": { "irc": "ircs://irc.libera.chat:6697/composer", "issues": "https://github.com/composer/composer/issues", - "source": "https://github.com/composer/composer/tree/2.2.21" + "source": "https://github.com/composer/composer/tree/2.2.22" }, "funding": [ { @@ -1349,7 +1418,7 @@ "type": "tidelift" } ], - "time": "2023-02-15T12:07:40+00:00" + "time": "2023-09-29T08:53:46+00:00" }, { "name": "composer/metadata-minifier", @@ -1647,16 +1716,16 @@ }, { "name": "composer/spdx-licenses", - "version": "1.5.7", + "version": "1.5.8", "source": { "type": "git", "url": "https://github.com/composer/spdx-licenses.git", - "reference": "c848241796da2abf65837d51dce1fae55a960149" + "reference": "560bdcf8deb88ae5d611c80a2de8ea9d0358cc0a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/composer/spdx-licenses/zipball/c848241796da2abf65837d51dce1fae55a960149", - "reference": "c848241796da2abf65837d51dce1fae55a960149", + "url": "https://api.github.com/repos/composer/spdx-licenses/zipball/560bdcf8deb88ae5d611c80a2de8ea9d0358cc0a", + "reference": "560bdcf8deb88ae5d611c80a2de8ea9d0358cc0a", "shasum": "" }, "require": { @@ -1705,9 +1774,9 @@ "validator" ], "support": { - "irc": "irc://irc.freenode.org/composer", + "irc": "ircs://irc.libera.chat:6697/composer", "issues": "https://github.com/composer/spdx-licenses/issues", - "source": "https://github.com/composer/spdx-licenses/tree/1.5.7" + "source": "https://github.com/composer/spdx-licenses/tree/1.5.8" }, "funding": [ { @@ -1723,7 +1792,7 @@ "type": "tidelift" } ], - "time": "2022-05-23T07:37:50+00:00" + "time": "2023-11-20T07:44:33+00:00" }, { "name": "composer/xdebug-handler", @@ -2241,16 +2310,16 @@ }, { "name": "doctrine/dbal", - "version": "3.7.0", + "version": "3.7.2", "source": { "type": "git", "url": "https://github.com/doctrine/dbal.git", - "reference": "00d03067f07482f025d41ab55e4ba0db5eca2cdf" + "reference": "0ac3c270590e54910715e9a1a044cc368df282b2" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/dbal/zipball/00d03067f07482f025d41ab55e4ba0db5eca2cdf", - "reference": "00d03067f07482f025d41ab55e4ba0db5eca2cdf", + "url": "https://api.github.com/repos/doctrine/dbal/zipball/0ac3c270590e54910715e9a1a044cc368df282b2", + "reference": "0ac3c270590e54910715e9a1a044cc368df282b2", "shasum": "" }, "require": { @@ -2266,7 +2335,7 @@ "doctrine/coding-standard": "12.0.0", "fig/log-test": "^1", "jetbrains/phpstorm-stubs": "2023.1", - "phpstan/phpstan": "1.10.35", + "phpstan/phpstan": "1.10.42", "phpstan/phpstan-strict-rules": "^1.5", "phpunit/phpunit": "9.6.13", "psalm/plugin-phpunit": "0.18.4", @@ -2334,7 +2403,7 @@ ], "support": { "issues": "https://github.com/doctrine/dbal/issues", - "source": "https://github.com/doctrine/dbal/tree/3.7.0" + "source": "https://github.com/doctrine/dbal/tree/3.7.2" }, "funding": [ { @@ -2350,7 +2419,7 @@ "type": "tidelift" } ], - "time": "2023-09-26T20:56:55+00:00" + "time": "2023-11-19T08:06:58+00:00" }, { "name": "doctrine/deprecations", @@ -2732,16 +2801,16 @@ }, { "name": "doctrine/orm", - "version": "2.16.2", + "version": "2.17.2", "source": { "type": "git", "url": "https://github.com/doctrine/orm.git", - "reference": "17500f56eaa930f5cd14d765bc2cd851c7d37cc0" + "reference": "393679a4795e49b0b3ac317dce84d0f8888f2b77" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/orm/zipball/17500f56eaa930f5cd14d765bc2cd851c7d37cc0", - "reference": "17500f56eaa930f5cd14d765bc2cd851c7d37cc0", + "url": "https://api.github.com/repos/doctrine/orm/zipball/393679a4795e49b0b3ac317dce84d0f8888f2b77", + "reference": "393679a4795e49b0b3ac317dce84d0f8888f2b77", "shasum": "" }, "require": { @@ -2759,7 +2828,7 @@ "ext-ctype": "*", "php": "^7.1 || ^8.0", "psr/cache": "^1 || ^2 || ^3", - "symfony/console": "^4.2 || ^5.0 || ^6.0", + "symfony/console": "^4.2 || ^5.0 || ^6.0 || ^7.0", "symfony/polyfill-php72": "^1.23", "symfony/polyfill-php80": "^1.16" }, @@ -2770,14 +2839,14 @@ "doctrine/annotations": "^1.13 || ^2", "doctrine/coding-standard": "^9.0.2 || ^12.0", "phpbench/phpbench": "^0.16.10 || ^1.0", - "phpstan/phpstan": "~1.4.10 || 1.10.28", + "phpstan/phpstan": "~1.4.10 || 1.10.35", "phpunit/phpunit": "^7.5 || ^8.5 || ^9.6", "psr/log": "^1 || ^2 || ^3", "squizlabs/php_codesniffer": "3.7.2", - "symfony/cache": "^4.4 || ^5.4 || ^6.0", - "symfony/var-exporter": "^4.4 || ^5.4 || ^6.2", - "symfony/yaml": "^3.4 || ^4.0 || ^5.0 || ^6.0", - "vimeo/psalm": "4.30.0 || 5.14.1" + "symfony/cache": "^4.4 || ^5.4 || ^6.4 || ^7.0", + "symfony/var-exporter": "^4.4 || ^5.4 || ^6.2 || ^7.0", + "symfony/yaml": "^3.4 || ^4.0 || ^5.0 || ^6.0 || ^7.0", + "vimeo/psalm": "4.30.0 || 5.16.0" }, "suggest": { "ext-dom": "Provides support for XSD validation for XML mapping files", @@ -2827,9 +2896,9 @@ ], "support": { "issues": "https://github.com/doctrine/orm/issues", - "source": "https://github.com/doctrine/orm/tree/2.16.2" + "source": "https://github.com/doctrine/orm/tree/2.17.2" }, - "time": "2023-08-27T18:21:56+00:00" + "time": "2023-12-20T21:47:52+00:00" }, { "name": "doctrine/persistence", @@ -3144,16 +3213,16 @@ }, { "name": "guzzlehttp/guzzle", - "version": "7.8.0", + "version": "7.8.1", "source": { "type": "git", "url": "https://github.com/guzzle/guzzle.git", - "reference": "1110f66a6530a40fe7aea0378fe608ee2b2248f9" + "reference": "41042bc7ab002487b876a0683fc8dce04ddce104" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/guzzle/guzzle/zipball/1110f66a6530a40fe7aea0378fe608ee2b2248f9", - "reference": "1110f66a6530a40fe7aea0378fe608ee2b2248f9", + "url": "https://api.github.com/repos/guzzle/guzzle/zipball/41042bc7ab002487b876a0683fc8dce04ddce104", + "reference": "41042bc7ab002487b876a0683fc8dce04ddce104", "shasum": "" }, "require": { @@ -3168,11 +3237,11 @@ "psr/http-client-implementation": "1.0" }, "require-dev": { - "bamarni/composer-bin-plugin": "^1.8.1", + "bamarni/composer-bin-plugin": "^1.8.2", "ext-curl": "*", "php-http/client-integration-tests": "dev-master#2c025848417c1135031fdf9c728ee53d0a7ceaee as 3.0.999", "php-http/message-factory": "^1.1", - "phpunit/phpunit": "^8.5.29 || ^9.5.23", + "phpunit/phpunit": "^8.5.36 || ^9.6.15", "psr/log": "^1.1 || ^2.0 || ^3.0" }, "suggest": { @@ -3250,7 +3319,7 @@ ], "support": { "issues": "https://github.com/guzzle/guzzle/issues", - "source": "https://github.com/guzzle/guzzle/tree/7.8.0" + "source": "https://github.com/guzzle/guzzle/tree/7.8.1" }, "funding": [ { @@ -3266,28 +3335,28 @@ "type": "tidelift" } ], - "time": "2023-08-27T10:20:53+00:00" + "time": "2023-12-03T20:35:24+00:00" }, { "name": "guzzlehttp/promises", - "version": "2.0.1", + "version": "2.0.2", "source": { "type": "git", "url": "https://github.com/guzzle/promises.git", - "reference": "111166291a0f8130081195ac4556a5587d7f1b5d" + "reference": "bbff78d96034045e58e13dedd6ad91b5d1253223" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/guzzle/promises/zipball/111166291a0f8130081195ac4556a5587d7f1b5d", - "reference": "111166291a0f8130081195ac4556a5587d7f1b5d", + "url": "https://api.github.com/repos/guzzle/promises/zipball/bbff78d96034045e58e13dedd6ad91b5d1253223", + "reference": "bbff78d96034045e58e13dedd6ad91b5d1253223", "shasum": "" }, "require": { "php": "^7.2.5 || ^8.0" }, "require-dev": { - "bamarni/composer-bin-plugin": "^1.8.1", - "phpunit/phpunit": "^8.5.29 || ^9.5.23" + "bamarni/composer-bin-plugin": "^1.8.2", + "phpunit/phpunit": "^8.5.36 || ^9.6.15" }, "type": "library", "extra": { @@ -3333,7 +3402,7 @@ ], "support": { "issues": "https://github.com/guzzle/promises/issues", - "source": "https://github.com/guzzle/promises/tree/2.0.1" + "source": "https://github.com/guzzle/promises/tree/2.0.2" }, "funding": [ { @@ -3349,20 +3418,20 @@ "type": "tidelift" } ], - "time": "2023-08-03T15:11:55+00:00" + "time": "2023-12-03T20:19:20+00:00" }, { "name": "guzzlehttp/psr7", - "version": "2.6.1", + "version": "2.6.2", "source": { "type": "git", "url": "https://github.com/guzzle/psr7.git", - "reference": "be45764272e8873c72dbe3d2edcfdfcc3bc9f727" + "reference": "45b30f99ac27b5ca93cb4831afe16285f57b8221" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/guzzle/psr7/zipball/be45764272e8873c72dbe3d2edcfdfcc3bc9f727", - "reference": "be45764272e8873c72dbe3d2edcfdfcc3bc9f727", + "url": "https://api.github.com/repos/guzzle/psr7/zipball/45b30f99ac27b5ca93cb4831afe16285f57b8221", + "reference": "45b30f99ac27b5ca93cb4831afe16285f57b8221", "shasum": "" }, "require": { @@ -3376,9 +3445,9 @@ "psr/http-message-implementation": "1.0" }, "require-dev": { - "bamarni/composer-bin-plugin": "^1.8.1", + "bamarni/composer-bin-plugin": "^1.8.2", "http-interop/http-factory-tests": "^0.9", - "phpunit/phpunit": "^8.5.29 || ^9.5.23" + "phpunit/phpunit": "^8.5.36 || ^9.6.15" }, "suggest": { "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses" @@ -3449,7 +3518,7 @@ ], "support": { "issues": "https://github.com/guzzle/psr7/issues", - "source": "https://github.com/guzzle/psr7/tree/2.6.1" + "source": "https://github.com/guzzle/psr7/tree/2.6.2" }, "funding": [ { @@ -3465,11 +3534,11 @@ "type": "tidelift" } ], - "time": "2023-08-27T10:13:57+00:00" + "time": "2023-12-03T20:05:35+00:00" }, { "name": "illuminate/collections", - "version": "v9.52.15", + "version": "v9.52.16", "source": { "type": "git", "url": "https://github.com/illuminate/collections.git", @@ -3524,7 +3593,7 @@ }, { "name": "illuminate/conditionable", - "version": "v9.52.15", + "version": "v9.52.16", "source": { "type": "git", "url": "https://github.com/illuminate/conditionable.git", @@ -3570,7 +3639,7 @@ }, { "name": "illuminate/contracts", - "version": "v9.52.15", + "version": "v9.52.16", "source": { "type": "git", "url": "https://github.com/illuminate/contracts.git", @@ -3618,7 +3687,7 @@ }, { "name": "illuminate/macroable", - "version": "v9.52.15", + "version": "v9.52.16", "source": { "type": "git", "url": "https://github.com/illuminate/macroable.git", @@ -3664,7 +3733,7 @@ }, { "name": "illuminate/support", - "version": "v9.52.15", + "version": "v9.52.16", "source": { "type": "git", "url": "https://github.com/illuminate/support.git", @@ -4113,19 +4182,20 @@ }, { "name": "nesbot/carbon", - "version": "2.71.0", + "version": "2.72.1", "source": { "type": "git", "url": "https://github.com/briannesbitt/Carbon.git", - "reference": "98276233188583f2ff845a0f992a235472d9466a" + "reference": "2b3b3db0a2d0556a177392ff1a3bf5608fa09f78" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/98276233188583f2ff845a0f992a235472d9466a", - "reference": "98276233188583f2ff845a0f992a235472d9466a", + "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/2b3b3db0a2d0556a177392ff1a3bf5608fa09f78", + "reference": "2b3b3db0a2d0556a177392ff1a3bf5608fa09f78", "shasum": "" }, "require": { + "carbonphp/carbon-doctrine-types": "*", "ext-json": "*", "php": "^7.1.8 || ^8.0", "psr/clock": "^1.0", @@ -4137,8 +4207,8 @@ "psr/clock-implementation": "1.0" }, "require-dev": { - "doctrine/dbal": "^2.0 || ^3.1.4", - "doctrine/orm": "^2.7", + "doctrine/dbal": "^2.0 || ^3.1.4 || ^4.0", + "doctrine/orm": "^2.7 || ^3.0", "friendsofphp/php-cs-fixer": "^3.0", "kylekatarnls/multi-tester": "^2.0", "ondrejmirtes/better-reflection": "*", @@ -4215,20 +4285,20 @@ "type": "tidelift" } ], - "time": "2023-09-25T11:31:05+00:00" + "time": "2023-12-08T23:47:49+00:00" }, { "name": "nikic/php-parser", - "version": "v4.17.1", + "version": "v4.18.0", "source": { "type": "git", "url": "https://github.com/nikic/PHP-Parser.git", - "reference": "a6303e50c90c355c7eeee2c4a8b27fe8dc8fef1d" + "reference": "1bcbb2179f97633e98bbbc87044ee2611c7d7999" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/a6303e50c90c355c7eeee2c4a8b27fe8dc8fef1d", - "reference": "a6303e50c90c355c7eeee2c4a8b27fe8dc8fef1d", + "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/1bcbb2179f97633e98bbbc87044ee2611c7d7999", + "reference": "1bcbb2179f97633e98bbbc87044ee2611c7d7999", "shasum": "" }, "require": { @@ -4269,9 +4339,9 @@ ], "support": { "issues": "https://github.com/nikic/PHP-Parser/issues", - "source": "https://github.com/nikic/PHP-Parser/tree/v4.17.1" + "source": "https://github.com/nikic/PHP-Parser/tree/v4.18.0" }, - "time": "2023-08-13T19:53:39+00:00" + "time": "2023-12-10T21:03:43+00:00" }, { "name": "overtrue/phplint", @@ -4751,16 +4821,16 @@ }, { "name": "phpstan/phpdoc-parser", - "version": "1.24.2", + "version": "1.24.5", "source": { "type": "git", "url": "https://github.com/phpstan/phpdoc-parser.git", - "reference": "bcad8d995980440892759db0c32acae7c8e79442" + "reference": "fedf211ff14ec8381c9bf5714e33a7a552dd1acc" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phpstan/phpdoc-parser/zipball/bcad8d995980440892759db0c32acae7c8e79442", - "reference": "bcad8d995980440892759db0c32acae7c8e79442", + "url": "https://api.github.com/repos/phpstan/phpdoc-parser/zipball/fedf211ff14ec8381c9bf5714e33a7a552dd1acc", + "reference": "fedf211ff14ec8381c9bf5714e33a7a552dd1acc", "shasum": "" }, "require": { @@ -4792,9 +4862,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.24.2" + "source": "https://github.com/phpstan/phpdoc-parser/tree/1.24.5" }, - "time": "2023-09-26T12:28:12+00:00" + "time": "2023-12-16T09:33:33+00:00" }, { "name": "phpunit/php-code-coverage", @@ -5095,16 +5165,16 @@ }, { "name": "phpunit/phpunit", - "version": "8.5.34", + "version": "8.5.36", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/phpunit.git", - "reference": "622d0186707f39a4ae71df3bcf42d759bb868854" + "reference": "9652df58e06a681429d8cfdaec3c43d6de581d5a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/622d0186707f39a4ae71df3bcf42d759bb868854", - "reference": "622d0186707f39a4ae71df3bcf42d759bb868854", + "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/9652df58e06a681429d8cfdaec3c43d6de581d5a", + "reference": "9652df58e06a681429d8cfdaec3c43d6de581d5a", "shasum": "" }, "require": { @@ -5173,7 +5243,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.34" + "source": "https://github.com/sebastianbergmann/phpunit/tree/8.5.36" }, "funding": [ { @@ -5189,7 +5259,7 @@ "type": "tidelift" } ], - "time": "2023-09-19T05:20:51+00:00" + "time": "2023-12-01T16:52:15+00:00" }, { "name": "psr/cache", @@ -5925,16 +5995,16 @@ }, { "name": "ramsey/uuid", - "version": "4.7.4", + "version": "4.7.5", "source": { "type": "git", "url": "https://github.com/ramsey/uuid.git", - "reference": "60a4c63ab724854332900504274f6150ff26d286" + "reference": "5f0df49ae5ad6efb7afa69e6bfab4e5b1e080d8e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/ramsey/uuid/zipball/60a4c63ab724854332900504274f6150ff26d286", - "reference": "60a4c63ab724854332900504274f6150ff26d286", + "url": "https://api.github.com/repos/ramsey/uuid/zipball/5f0df49ae5ad6efb7afa69e6bfab4e5b1e080d8e", + "reference": "5f0df49ae5ad6efb7afa69e6bfab4e5b1e080d8e", "shasum": "" }, "require": { @@ -6001,7 +6071,7 @@ ], "support": { "issues": "https://github.com/ramsey/uuid/issues", - "source": "https://github.com/ramsey/uuid/tree/4.7.4" + "source": "https://github.com/ramsey/uuid/tree/4.7.5" }, "funding": [ { @@ -6013,27 +6083,27 @@ "type": "tidelift" } ], - "time": "2023-04-15T23:01:58+00:00" + "time": "2023-11-08T05:53:05+00:00" }, { "name": "react/promise", - "version": "v2.10.0", + "version": "v2.11.0", "source": { "type": "git", "url": "https://github.com/reactphp/promise.git", - "reference": "f913fb8cceba1e6644b7b90c4bfb678ed8a3ef38" + "reference": "1a8460931ea36dc5c76838fec5734d55c88c6831" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/reactphp/promise/zipball/f913fb8cceba1e6644b7b90c4bfb678ed8a3ef38", - "reference": "f913fb8cceba1e6644b7b90c4bfb678ed8a3ef38", + "url": "https://api.github.com/repos/reactphp/promise/zipball/1a8460931ea36dc5c76838fec5734d55c88c6831", + "reference": "1a8460931ea36dc5c76838fec5734d55c88c6831", "shasum": "" }, "require": { "php": ">=5.4.0" }, "require-dev": { - "phpunit/phpunit": "^9.5 || ^5.7 || ^4.8.36" + "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36" }, "type": "library", "autoload": { @@ -6077,7 +6147,7 @@ ], "support": { "issues": "https://github.com/reactphp/promise/issues", - "source": "https://github.com/reactphp/promise/tree/v2.10.0" + "source": "https://github.com/reactphp/promise/tree/v2.11.0" }, "funding": [ { @@ -6085,7 +6155,7 @@ "type": "open_collective" } ], - "time": "2023-05-02T15:15:43+00:00" + "time": "2023-11-16T16:16:50+00:00" }, { "name": "sebastian/code-unit-reverse-lookup", @@ -6818,16 +6888,16 @@ }, { "name": "seld/jsonlint", - "version": "1.10.0", + "version": "1.10.1", "source": { "type": "git", "url": "https://github.com/Seldaek/jsonlint.git", - "reference": "594fd6462aad8ecee0b45ca5045acea4776667f1" + "reference": "76d449a358ece77d6f1d6331c68453e657172202" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Seldaek/jsonlint/zipball/594fd6462aad8ecee0b45ca5045acea4776667f1", - "reference": "594fd6462aad8ecee0b45ca5045acea4776667f1", + "url": "https://api.github.com/repos/Seldaek/jsonlint/zipball/76d449a358ece77d6f1d6331c68453e657172202", + "reference": "76d449a358ece77d6f1d6331c68453e657172202", "shasum": "" }, "require": { @@ -6854,7 +6924,7 @@ { "name": "Jordi Boggiano", "email": "j.boggiano@seld.be", - "homepage": "http://seld.be" + "homepage": "https://seld.be" } ], "description": "JSON Linter", @@ -6866,7 +6936,7 @@ ], "support": { "issues": "https://github.com/Seldaek/jsonlint/issues", - "source": "https://github.com/Seldaek/jsonlint/tree/1.10.0" + "source": "https://github.com/Seldaek/jsonlint/tree/1.10.1" }, "funding": [ { @@ -6878,7 +6948,7 @@ "type": "tidelift" } ], - "time": "2023-05-11T13:16:46+00:00" + "time": "2023-12-18T13:03:25+00:00" }, { "name": "seld/phar-utils", @@ -6988,16 +7058,16 @@ }, { "name": "squizlabs/php_codesniffer", - "version": "3.7.2", + "version": "3.8.0", "source": { "type": "git", - "url": "https://github.com/squizlabs/PHP_CodeSniffer.git", - "reference": "ed8e00df0a83aa96acf703f8c2979ff33341f879" + "url": "https://github.com/PHPCSStandards/PHP_CodeSniffer.git", + "reference": "5805f7a4e4958dbb5e944ef1e6edae0a303765e7" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/squizlabs/PHP_CodeSniffer/zipball/ed8e00df0a83aa96acf703f8c2979ff33341f879", - "reference": "ed8e00df0a83aa96acf703f8c2979ff33341f879", + "url": "https://api.github.com/repos/PHPCSStandards/PHP_CodeSniffer/zipball/5805f7a4e4958dbb5e944ef1e6edae0a303765e7", + "reference": "5805f7a4e4958dbb5e944ef1e6edae0a303765e7", "shasum": "" }, "require": { @@ -7007,7 +7077,7 @@ "php": ">=5.4.0" }, "require-dev": { - "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0" + "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0" }, "bin": [ "bin/phpcs", @@ -7026,35 +7096,58 @@ "authors": [ { "name": "Greg Sherwood", - "role": "lead" + "role": "Former lead" + }, + { + "name": "Juliette Reinders Folmer", + "role": "Current lead" + }, + { + "name": "Contributors", + "homepage": "https://github.com/PHPCSStandards/PHP_CodeSniffer/graphs/contributors" } ], "description": "PHP_CodeSniffer tokenizes PHP, JavaScript and CSS files and detects violations of a defined set of coding standards.", - "homepage": "https://github.com/squizlabs/PHP_CodeSniffer", + "homepage": "https://github.com/PHPCSStandards/PHP_CodeSniffer", "keywords": [ "phpcs", "standards", "static analysis" ], "support": { - "issues": "https://github.com/squizlabs/PHP_CodeSniffer/issues", - "source": "https://github.com/squizlabs/PHP_CodeSniffer", - "wiki": "https://github.com/squizlabs/PHP_CodeSniffer/wiki" + "issues": "https://github.com/PHPCSStandards/PHP_CodeSniffer/issues", + "security": "https://github.com/PHPCSStandards/PHP_CodeSniffer/security/policy", + "source": "https://github.com/PHPCSStandards/PHP_CodeSniffer", + "wiki": "https://github.com/PHPCSStandards/PHP_CodeSniffer/wiki" }, - "time": "2023-02-22T23:07:41+00:00" + "funding": [ + { + "url": "https://github.com/PHPCSStandards", + "type": "github" + }, + { + "url": "https://github.com/jrfnl", + "type": "github" + }, + { + "url": "https://opencollective.com/php_codesniffer", + "type": "open_collective" + } + ], + "time": "2023-12-08T12:32:31+00:00" }, { "name": "symfony/amqp-messenger", - "version": "v5.4.28", + "version": "v5.4.31", "source": { "type": "git", "url": "https://github.com/symfony/amqp-messenger.git", - "reference": "24e5cc90da041e0e1b7bbe15b82ad7f27a508c01" + "reference": "8ba6a2c482d3fce9d450b702098ca033bbe42de4" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/amqp-messenger/zipball/24e5cc90da041e0e1b7bbe15b82ad7f27a508c01", - "reference": "24e5cc90da041e0e1b7bbe15b82ad7f27a508c01", + "url": "https://api.github.com/repos/symfony/amqp-messenger/zipball/8ba6a2c482d3fce9d450b702098ca033bbe42de4", + "reference": "8ba6a2c482d3fce9d450b702098ca033bbe42de4", "shasum": "" }, "require": { @@ -7094,7 +7187,7 @@ "description": "Symfony AMQP extension Messenger Bridge", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/amqp-messenger/tree/v5.4.28" + "source": "https://github.com/symfony/amqp-messenger/tree/v5.4.31" }, "funding": [ { @@ -7110,20 +7203,20 @@ "type": "tidelift" } ], - "time": "2023-08-09T17:16:27+00:00" + "time": "2023-11-03T16:16:43+00:00" }, { "name": "symfony/browser-kit", - "version": "v5.4.21", + "version": "v5.4.31", "source": { "type": "git", "url": "https://github.com/symfony/browser-kit.git", - "reference": "a866ca7e396f15d7efb6d74a8a7d364d4e05b704" + "reference": "0ed1f634a36606f2065eec221b3975e05016cbbe" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/browser-kit/zipball/a866ca7e396f15d7efb6d74a8a7d364d4e05b704", - "reference": "a866ca7e396f15d7efb6d74a8a7d364d4e05b704", + "url": "https://api.github.com/repos/symfony/browser-kit/zipball/0ed1f634a36606f2065eec221b3975e05016cbbe", + "reference": "0ed1f634a36606f2065eec221b3975e05016cbbe", "shasum": "" }, "require": { @@ -7166,7 +7259,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.21" + "source": "https://github.com/symfony/browser-kit/tree/v5.4.31" }, "funding": [ { @@ -7182,20 +7275,20 @@ "type": "tidelift" } ], - "time": "2023-02-14T08:03:56+00:00" + "time": "2023-10-31T07:58:33+00:00" }, { "name": "symfony/cache", - "version": "v5.4.28", + "version": "v5.4.34", "source": { "type": "git", "url": "https://github.com/symfony/cache.git", - "reference": "62b7ae3bccc5b474a30fadc7ef6bbc362007d3f9" + "reference": "b17f28169f7a2f2c0cddf2b044d729f5b75efe5a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/cache/zipball/62b7ae3bccc5b474a30fadc7ef6bbc362007d3f9", - "reference": "62b7ae3bccc5b474a30fadc7ef6bbc362007d3f9", + "url": "https://api.github.com/repos/symfony/cache/zipball/b17f28169f7a2f2c0cddf2b044d729f5b75efe5a", + "reference": "b17f28169f7a2f2c0cddf2b044d729f5b75efe5a", "shasum": "" }, "require": { @@ -7223,7 +7316,7 @@ "require-dev": { "cache/integration-tests": "dev-master", "doctrine/cache": "^1.6|^2.0", - "doctrine/dbal": "^2.13.1|^3.0", + "doctrine/dbal": "^2.13.1|^3|^4", "predis/predis": "^1.1", "psr/simple-cache": "^1.0|^2.0", "symfony/config": "^4.4|^5.0|^6.0", @@ -7263,7 +7356,7 @@ "psr6" ], "support": { - "source": "https://github.com/symfony/cache/tree/v5.4.28" + "source": "https://github.com/symfony/cache/tree/v5.4.34" }, "funding": [ { @@ -7279,7 +7372,7 @@ "type": "tidelift" } ], - "time": "2023-08-05T08:32:42+00:00" + "time": "2023-12-18T14:56:06+00:00" }, { "name": "symfony/cache-contracts", @@ -7362,16 +7455,16 @@ }, { "name": "symfony/config", - "version": "v5.4.26", + "version": "v5.4.31", "source": { "type": "git", "url": "https://github.com/symfony/config.git", - "reference": "8109892f27beed9252bd1f1c1880aeb4ad842650" + "reference": "dd5ea39de228813aba0c23c3a4153da2a4cf3cd9" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/config/zipball/8109892f27beed9252bd1f1c1880aeb4ad842650", - "reference": "8109892f27beed9252bd1f1c1880aeb4ad842650", + "url": "https://api.github.com/repos/symfony/config/zipball/dd5ea39de228813aba0c23c3a4153da2a4cf3cd9", + "reference": "dd5ea39de228813aba0c23c3a4153da2a4cf3cd9", "shasum": "" }, "require": { @@ -7421,7 +7514,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.26" + "source": "https://github.com/symfony/config/tree/v5.4.31" }, "funding": [ { @@ -7437,20 +7530,20 @@ "type": "tidelift" } ], - "time": "2023-07-19T20:21:11+00:00" + "time": "2023-11-09T08:22:43+00:00" }, { "name": "symfony/console", - "version": "v5.4.28", + "version": "v5.4.34", "source": { "type": "git", "url": "https://github.com/symfony/console.git", - "reference": "f4f71842f24c2023b91237c72a365306f3c58827" + "reference": "4b4d8cd118484aa604ec519062113dd87abde18c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/console/zipball/f4f71842f24c2023b91237c72a365306f3c58827", - "reference": "f4f71842f24c2023b91237c72a365306f3c58827", + "url": "https://api.github.com/repos/symfony/console/zipball/4b4d8cd118484aa604ec519062113dd87abde18c", + "reference": "4b4d8cd118484aa604ec519062113dd87abde18c", "shasum": "" }, "require": { @@ -7520,7 +7613,7 @@ "terminal" ], "support": { - "source": "https://github.com/symfony/console/tree/v5.4.28" + "source": "https://github.com/symfony/console/tree/v5.4.34" }, "funding": [ { @@ -7536,7 +7629,7 @@ "type": "tidelift" } ], - "time": "2023-08-07T06:12:30+00:00" + "time": "2023-12-08T13:33:03+00:00" }, { "name": "symfony/css-selector", @@ -7606,16 +7699,16 @@ }, { "name": "symfony/dependency-injection", - "version": "v5.4.28", + "version": "v5.4.34", "source": { "type": "git", "url": "https://github.com/symfony/dependency-injection.git", - "reference": "addc22fed594f9ce04e73ef6a9d3e2416f77192d" + "reference": "75d568165a65fa7d8124869ec7c3a90424352e6c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/addc22fed594f9ce04e73ef6a9d3e2416f77192d", - "reference": "addc22fed594f9ce04e73ef6a9d3e2416f77192d", + "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/75d568165a65fa7d8124869ec7c3a90424352e6c", + "reference": "75d568165a65fa7d8124869ec7c3a90424352e6c", "shasum": "" }, "require": { @@ -7675,7 +7768,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.28" + "source": "https://github.com/symfony/dependency-injection/tree/v5.4.34" }, "funding": [ { @@ -7691,7 +7784,7 @@ "type": "tidelift" } ], - "time": "2023-08-14T10:47:38+00:00" + "time": "2023-12-28T09:31:38+00:00" }, { "name": "symfony/deprecation-contracts", @@ -7834,16 +7927,16 @@ }, { "name": "symfony/dom-crawler", - "version": "v5.4.25", + "version": "v5.4.32", "source": { "type": "git", "url": "https://github.com/symfony/dom-crawler.git", - "reference": "d2aefa5a7acc5511422792931d14d1be96fe9fea" + "reference": "728f1fc136252a626ba5a69c02bd66a3697ff201" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/d2aefa5a7acc5511422792931d14d1be96fe9fea", - "reference": "d2aefa5a7acc5511422792931d14d1be96fe9fea", + "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/728f1fc136252a626ba5a69c02bd66a3697ff201", + "reference": "728f1fc136252a626ba5a69c02bd66a3697ff201", "shasum": "" }, "require": { @@ -7889,7 +7982,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.25" + "source": "https://github.com/symfony/dom-crawler/tree/v5.4.32" }, "funding": [ { @@ -7905,20 +7998,20 @@ "type": "tidelift" } ], - "time": "2023-06-05T08:05:41+00:00" + "time": "2023-11-17T20:43:48+00:00" }, { "name": "symfony/event-dispatcher", - "version": "v5.4.26", + "version": "v5.4.34", "source": { "type": "git", "url": "https://github.com/symfony/event-dispatcher.git", - "reference": "5dcc00e03413f05c1e7900090927bb7247cb0aac" + "reference": "e3bca343efeb613f843c254e7718ef17c9bdf7a3" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/5dcc00e03413f05c1e7900090927bb7247cb0aac", - "reference": "5dcc00e03413f05c1e7900090927bb7247cb0aac", + "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/e3bca343efeb613f843c254e7718ef17c9bdf7a3", + "reference": "e3bca343efeb613f843c254e7718ef17c9bdf7a3", "shasum": "" }, "require": { @@ -7974,7 +8067,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.26" + "source": "https://github.com/symfony/event-dispatcher/tree/v5.4.34" }, "funding": [ { @@ -7990,7 +8083,7 @@ "type": "tidelift" } ], - "time": "2023-07-06T06:34:20+00:00" + "time": "2023-12-27T21:12:56+00:00" }, { "name": "symfony/event-dispatcher-contracts", @@ -8199,16 +8292,16 @@ }, { "name": "symfony/messenger", - "version": "v5.4.28", + "version": "v5.4.31", "source": { "type": "git", "url": "https://github.com/symfony/messenger.git", - "reference": "39b0c94ef74c3558caeb87fc480bcef6da65be82" + "reference": "8f74256d181141d83649e9bee5caf34328feb3c8" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/messenger/zipball/39b0c94ef74c3558caeb87fc480bcef6da65be82", - "reference": "39b0c94ef74c3558caeb87fc480bcef6da65be82", + "url": "https://api.github.com/repos/symfony/messenger/zipball/8f74256d181141d83649e9bee5caf34328feb3c8", + "reference": "8f74256d181141d83649e9bee5caf34328feb3c8", "shasum": "" }, "require": { @@ -8269,7 +8362,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.28" + "source": "https://github.com/symfony/messenger/tree/v5.4.31" }, "funding": [ { @@ -8285,7 +8378,7 @@ "type": "tidelift" } ], - "time": "2023-08-12T16:35:23+00:00" + "time": "2023-11-03T16:16:43+00:00" }, { "name": "symfony/polyfill-ctype", @@ -8998,16 +9091,16 @@ }, { "name": "symfony/redis-messenger", - "version": "v5.4.26", + "version": "v5.4.34", "source": { "type": "git", "url": "https://github.com/symfony/redis-messenger.git", - "reference": "55258642bca0d1869d147c85ee3277305549d5a3" + "reference": "d1a86778fc6386203bc0321a8692622042eb6c6b" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/redis-messenger/zipball/55258642bca0d1869d147c85ee3277305549d5a3", - "reference": "55258642bca0d1869d147c85ee3277305549d5a3", + "url": "https://api.github.com/repos/symfony/redis-messenger/zipball/d1a86778fc6386203bc0321a8692622042eb6c6b", + "reference": "d1a86778fc6386203bc0321a8692622042eb6c6b", "shasum": "" }, "require": { @@ -9045,7 +9138,7 @@ "description": "Symfony Redis extension Messenger Bridge", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/redis-messenger/tree/v5.4.26" + "source": "https://github.com/symfony/redis-messenger/tree/v5.4.34" }, "funding": [ { @@ -9061,7 +9154,7 @@ "type": "tidelift" } ], - "time": "2023-07-19T20:11:33+00:00" + "time": "2023-12-11T13:52:49+00:00" }, { "name": "symfony/requirements-checker", @@ -9131,16 +9224,16 @@ }, { "name": "symfony/serializer", - "version": "v5.4.28", + "version": "v5.4.34", "source": { "type": "git", "url": "https://github.com/symfony/serializer.git", - "reference": "701e2b8d48a3a627ffe128b38fbe6c4cf3ddcb3c" + "reference": "b8353e4208e9161f34d22c4631c63404b26ba929" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/serializer/zipball/701e2b8d48a3a627ffe128b38fbe6c4cf3ddcb3c", - "reference": "701e2b8d48a3a627ffe128b38fbe6c4cf3ddcb3c", + "url": "https://api.github.com/repos/symfony/serializer/zipball/b8353e4208e9161f34d22c4631c63404b26ba929", + "reference": "b8353e4208e9161f34d22c4631c63404b26ba929", "shasum": "" }, "require": { @@ -9214,7 +9307,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.28" + "source": "https://github.com/symfony/serializer/tree/v5.4.34" }, "funding": [ { @@ -9230,7 +9323,7 @@ "type": "tidelift" } ], - "time": "2023-08-24T14:14:18+00:00" + "time": "2023-12-27T08:53:17+00:00" }, { "name": "symfony/service-contracts", @@ -9709,16 +9802,16 @@ }, { "name": "symfony/yaml", - "version": "v5.4.23", + "version": "v5.4.31", "source": { "type": "git", "url": "https://github.com/symfony/yaml.git", - "reference": "4cd2e3ea301aadd76a4172756296fe552fb45b0b" + "reference": "f387675d7f5fc4231f7554baa70681f222f73563" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/yaml/zipball/4cd2e3ea301aadd76a4172756296fe552fb45b0b", - "reference": "4cd2e3ea301aadd76a4172756296fe552fb45b0b", + "url": "https://api.github.com/repos/symfony/yaml/zipball/f387675d7f5fc4231f7554baa70681f222f73563", + "reference": "f387675d7f5fc4231f7554baa70681f222f73563", "shasum": "" }, "require": { @@ -9764,7 +9857,7 @@ "description": "Loads and dumps YAML files", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/yaml/tree/v5.4.23" + "source": "https://github.com/symfony/yaml/tree/v5.4.31" }, "funding": [ { @@ -9780,20 +9873,20 @@ "type": "tidelift" } ], - "time": "2023-04-23T19:33:36+00:00" + "time": "2023-11-03T14:41:28+00:00" }, { "name": "theseer/tokenizer", - "version": "1.2.1", + "version": "1.2.2", "source": { "type": "git", "url": "https://github.com/theseer/tokenizer.git", - "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e" + "reference": "b2ad5003ca10d4ee50a12da31de12a5774ba6b96" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/theseer/tokenizer/zipball/34a41e998c2183e22995f158c581e7b5e755ab9e", - "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e", + "url": "https://api.github.com/repos/theseer/tokenizer/zipball/b2ad5003ca10d4ee50a12da31de12a5774ba6b96", + "reference": "b2ad5003ca10d4ee50a12da31de12a5774ba6b96", "shasum": "" }, "require": { @@ -9822,7 +9915,7 @@ "description": "A small library for converting tokenized PHP source code into XML and potentially other formats", "support": { "issues": "https://github.com/theseer/tokenizer/issues", - "source": "https://github.com/theseer/tokenizer/tree/1.2.1" + "source": "https://github.com/theseer/tokenizer/tree/1.2.2" }, "funding": [ { @@ -9830,7 +9923,7 @@ "type": "github" } ], - "time": "2021-07-28T10:34:58+00:00" + "time": "2023-11-20T00:12:19+00:00" }, { "name": "voku/portable-ascii", @@ -10094,16 +10187,16 @@ }, { "name": "wp-cli/checksum-command", - "version": "v2.2.4", + "version": "v2.2.5", "source": { "type": "git", "url": "https://github.com/wp-cli/checksum-command.git", - "reference": "7ae020192bc6ee9042be0bf664bd998b1861e994" + "reference": "f6911998734018da08f75464a168feb0d07b4475" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/wp-cli/checksum-command/zipball/7ae020192bc6ee9042be0bf664bd998b1861e994", - "reference": "7ae020192bc6ee9042be0bf664bd998b1861e994", + "url": "https://api.github.com/repos/wp-cli/checksum-command/zipball/f6911998734018da08f75464a168feb0d07b4475", + "reference": "f6911998734018da08f75464a168feb0d07b4475", "shasum": "" }, "require": { @@ -10147,22 +10240,22 @@ "homepage": "https://github.com/wp-cli/checksum-command", "support": { "issues": "https://github.com/wp-cli/checksum-command/issues", - "source": "https://github.com/wp-cli/checksum-command/tree/v2.2.4" + "source": "https://github.com/wp-cli/checksum-command/tree/v2.2.5" }, - "time": "2023-08-30T13:34:47+00:00" + "time": "2023-11-10T21:54:15+00:00" }, { "name": "wp-cli/config-command", - "version": "v2.3.0", + "version": "v2.3.3", "source": { "type": "git", "url": "https://github.com/wp-cli/config-command.git", - "reference": "d4d505f5d071871259b2e260cf35085209d4dece" + "reference": "890b6e3c8fd945dcad2bff4bf565ba6dfb33e35d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/wp-cli/config-command/zipball/d4d505f5d071871259b2e260cf35085209d4dece", - "reference": "d4d505f5d071871259b2e260cf35085209d4dece", + "url": "https://api.github.com/repos/wp-cli/config-command/zipball/890b6e3c8fd945dcad2bff4bf565ba6dfb33e35d", + "reference": "890b6e3c8fd945dcad2bff4bf565ba6dfb33e35d", "shasum": "" }, "require": { @@ -10171,7 +10264,7 @@ }, "require-dev": { "wp-cli/db-command": "^1.3 || ^2", - "wp-cli/wp-cli-tests": "^4" + "wp-cli/wp-cli-tests": "^4.2.8" }, "type": "wp-cli-package", "extra": { @@ -10221,22 +10314,22 @@ "homepage": "https://github.com/wp-cli/config-command", "support": { "issues": "https://github.com/wp-cli/config-command/issues", - "source": "https://github.com/wp-cli/config-command/tree/v2.3.0" + "source": "https://github.com/wp-cli/config-command/tree/v2.3.3" }, - "time": "2023-08-30T15:15:17+00:00" + "time": "2023-12-21T10:01:16+00:00" }, { "name": "wp-cli/core-command", - "version": "v2.1.15", + "version": "v2.1.16", "source": { "type": "git", "url": "https://github.com/wp-cli/core-command.git", - "reference": "7a81a8658620078bf5f2785836cb33aa382e8bb4" + "reference": "9d6ebb4545df0b8bc7e688a49910ddcdd86dbe93" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/wp-cli/core-command/zipball/7a81a8658620078bf5f2785836cb33aa382e8bb4", - "reference": "7a81a8658620078bf5f2785836cb33aa382e8bb4", + "url": "https://api.github.com/repos/wp-cli/core-command/zipball/9d6ebb4545df0b8bc7e688a49910ddcdd86dbe93", + "reference": "9d6ebb4545df0b8bc7e688a49910ddcdd86dbe93", "shasum": "" }, "require": { @@ -10292,9 +10385,9 @@ "homepage": "https://github.com/wp-cli/core-command", "support": { "issues": "https://github.com/wp-cli/core-command/issues", - "source": "https://github.com/wp-cli/core-command/tree/v2.1.15" + "source": "https://github.com/wp-cli/core-command/tree/v2.1.16" }, - "time": "2023-08-30T15:54:16+00:00" + "time": "2023-11-10T23:54:33+00:00" }, { "name": "wp-cli/cron-command", @@ -10367,16 +10460,16 @@ }, { "name": "wp-cli/db-command", - "version": "v2.0.26", + "version": "v2.0.27", "source": { "type": "git", "url": "https://github.com/wp-cli/db-command.git", - "reference": "0908bf5182b830c302199037070292e20d9f4ea6" + "reference": "eea28dd115fb381c82641a2a3060856d3a67242d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/wp-cli/db-command/zipball/0908bf5182b830c302199037070292e20d9f4ea6", - "reference": "0908bf5182b830c302199037070292e20d9f4ea6", + "url": "https://api.github.com/repos/wp-cli/db-command/zipball/eea28dd115fb381c82641a2a3060856d3a67242d", + "reference": "eea28dd115fb381c82641a2a3060856d3a67242d", "shasum": "" }, "require": { @@ -10435,9 +10528,9 @@ "homepage": "https://github.com/wp-cli/db-command", "support": { "issues": "https://github.com/wp-cli/db-command/issues", - "source": "https://github.com/wp-cli/db-command/tree/v2.0.26" + "source": "https://github.com/wp-cli/db-command/tree/v2.0.27" }, - "time": "2023-08-30T15:50:59+00:00" + "time": "2023-11-13T12:34:44+00:00" }, { "name": "wp-cli/embed-command", @@ -10508,20 +10601,20 @@ }, { "name": "wp-cli/entity-command", - "version": "v2.5.5", + "version": "v2.6.0", "source": { "type": "git", "url": "https://github.com/wp-cli/entity-command.git", - "reference": "9b4a1d0f4a59f7fc69d6a7e4da724c87c7695675" + "reference": "eac6762e75355ebaa6e22c086f74b0c5b5f65774" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/wp-cli/entity-command/zipball/9b4a1d0f4a59f7fc69d6a7e4da724c87c7695675", - "reference": "9b4a1d0f4a59f7fc69d6a7e4da724c87c7695675", + "url": "https://api.github.com/repos/wp-cli/entity-command/zipball/eac6762e75355ebaa6e22c086f74b0c5b5f65774", + "reference": "eac6762e75355ebaa6e22c086f74b0c5b5f65774", "shasum": "" }, "require": { - "wp-cli/wp-cli": "^2.5" + "wp-cli/wp-cli": "^2.10" }, "require-dev": { "wp-cli/cache-command": "^1 || ^2", @@ -10594,6 +10687,8 @@ "option patch", "option pluck", "option update", + "option set-autoload", + "option get-autoload", "post", "post create", "post delete", @@ -10617,6 +10712,7 @@ "post term remove", "post term set", "post update", + "post url-to-id", "post-type", "post-type get", "post-type list", @@ -10713,9 +10809,9 @@ "homepage": "https://github.com/wp-cli/entity-command", "support": { "issues": "https://github.com/wp-cli/entity-command/issues", - "source": "https://github.com/wp-cli/entity-command/tree/v2.5.5" + "source": "https://github.com/wp-cli/entity-command/tree/v2.6.0" }, - "time": "2023-09-19T23:00:47+00:00" + "time": "2023-11-21T11:54:14+00:00" }, { "name": "wp-cli/eval-command", @@ -10840,16 +10936,16 @@ }, { "name": "wp-cli/extension-command", - "version": "v2.1.14", + "version": "v2.1.16", "source": { "type": "git", "url": "https://github.com/wp-cli/extension-command.git", - "reference": "17b16548b5775616dcbbd92f7836e67bba02e8ba" + "reference": "71183254b1e403bc0f9b4a97fab48e284cfe1367" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/wp-cli/extension-command/zipball/17b16548b5775616dcbbd92f7836e67bba02e8ba", - "reference": "17b16548b5775616dcbbd92f7836e67bba02e8ba", + "url": "https://api.github.com/repos/wp-cli/extension-command/zipball/71183254b1e403bc0f9b4a97fab48e284cfe1367", + "reference": "71183254b1e403bc0f9b4a97fab48e284cfe1367", "shasum": "" }, "require": { @@ -10932,22 +11028,22 @@ "homepage": "https://github.com/wp-cli/extension-command", "support": { "issues": "https://github.com/wp-cli/extension-command/issues", - "source": "https://github.com/wp-cli/extension-command/tree/v2.1.14" + "source": "https://github.com/wp-cli/extension-command/tree/v2.1.16" }, - "time": "2023-08-30T15:15:35+00:00" + "time": "2023-11-10T12:24:35+00:00" }, { "name": "wp-cli/i18n-command", - "version": "v2.4.4", + "version": "v2.5.0", "source": { "type": "git", "url": "https://github.com/wp-cli/i18n-command.git", - "reference": "7d82e675f271359b1af614e6325d8eeaeb7d7474" + "reference": "9cf9b40f6bad64ade8660cc26bf1f28f2d223268" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/wp-cli/i18n-command/zipball/7d82e675f271359b1af614e6325d8eeaeb7d7474", - "reference": "7d82e675f271359b1af614e6325d8eeaeb7d7474", + "url": "https://api.github.com/repos/wp-cli/i18n-command/zipball/9cf9b40f6bad64ade8660cc26bf1f28f2d223268", + "reference": "9cf9b40f6bad64ade8660cc26bf1f28f2d223268", "shasum": "" }, "require": { @@ -11000,9 +11096,9 @@ "homepage": "https://github.com/wp-cli/i18n-command", "support": { "issues": "https://github.com/wp-cli/i18n-command/issues", - "source": "https://github.com/wp-cli/i18n-command/tree/v2.4.4" + "source": "https://github.com/wp-cli/i18n-command/tree/v2.5.0" }, - "time": "2023-08-30T18:00:10+00:00" + "time": "2023-11-16T17:09:37+00:00" }, { "name": "wp-cli/import-command", @@ -11066,16 +11162,16 @@ }, { "name": "wp-cli/language-command", - "version": "v2.0.15", + "version": "v2.0.18", "source": { "type": "git", "url": "https://github.com/wp-cli/language-command.git", - "reference": "5d277b498e4fd3555637bb967c55fc00538ae086" + "reference": "24f76e35f477887d09f1fd40a60d9011a6da18bf" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/wp-cli/language-command/zipball/5d277b498e4fd3555637bb967c55fc00538ae086", - "reference": "5d277b498e4fd3555637bb967c55fc00538ae086", + "url": "https://api.github.com/repos/wp-cli/language-command/zipball/24f76e35f477887d09f1fd40a60d9011a6da18bf", + "reference": "24f76e35f477887d09f1fd40a60d9011a6da18bf", "shasum": "" }, "require": { @@ -11085,7 +11181,7 @@ "wp-cli/db-command": "^1.3 || ^2", "wp-cli/entity-command": "^1.3 || ^2", "wp-cli/extension-command": "^1.2 || ^2", - "wp-cli/wp-cli-tests": "^3.1" + "wp-cli/wp-cli-tests": "^4" }, "type": "wp-cli-package", "extra": { @@ -11139,22 +11235,22 @@ "homepage": "https://github.com/wp-cli/language-command", "support": { "issues": "https://github.com/wp-cli/language-command/issues", - "source": "https://github.com/wp-cli/language-command/tree/v2.0.15" + "source": "https://github.com/wp-cli/language-command/tree/v2.0.18" }, - "time": "2023-02-17T16:43:41+00:00" + "time": "2023-11-10T13:27:16+00:00" }, { "name": "wp-cli/maintenance-mode-command", - "version": "v2.0.10", + "version": "v2.1.0", "source": { "type": "git", "url": "https://github.com/wp-cli/maintenance-mode-command.git", - "reference": "599f8f08045ed2ef26a53d1432a4845b39d54f7d" + "reference": "2e9845a1cd1678b960dd8d0dd0c936648113788c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/wp-cli/maintenance-mode-command/zipball/599f8f08045ed2ef26a53d1432a4845b39d54f7d", - "reference": "599f8f08045ed2ef26a53d1432a4845b39d54f7d", + "url": "https://api.github.com/repos/wp-cli/maintenance-mode-command/zipball/2e9845a1cd1678b960dd8d0dd0c936648113788c", + "reference": "2e9845a1cd1678b960dd8d0dd0c936648113788c", "shasum": "" }, "require": { @@ -11200,22 +11296,22 @@ "homepage": "https://github.com/wp-cli/maintenance-mode-command", "support": { "issues": "https://github.com/wp-cli/maintenance-mode-command/issues", - "source": "https://github.com/wp-cli/maintenance-mode-command/tree/v2.0.10" + "source": "https://github.com/wp-cli/maintenance-mode-command/tree/v2.1.0" }, - "time": "2023-08-30T14:54:15+00:00" + "time": "2023-11-06T14:04:13+00:00" }, { "name": "wp-cli/media-command", - "version": "v2.0.20", + "version": "v2.0.21", "source": { "type": "git", "url": "https://github.com/wp-cli/media-command.git", - "reference": "49ef52c657de7ac1e50010ce3f6b0cdc40c02dc7" + "reference": "4950ed4ded35c52068d30fec080d545a33baa85c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/wp-cli/media-command/zipball/49ef52c657de7ac1e50010ce3f6b0cdc40c02dc7", - "reference": "49ef52c657de7ac1e50010ce3f6b0cdc40c02dc7", + "url": "https://api.github.com/repos/wp-cli/media-command/zipball/4950ed4ded35c52068d30fec080d545a33baa85c", + "reference": "4950ed4ded35c52068d30fec080d545a33baa85c", "shasum": "" }, "require": { @@ -11262,9 +11358,9 @@ "homepage": "https://github.com/wp-cli/media-command", "support": { "issues": "https://github.com/wp-cli/media-command/issues", - "source": "https://github.com/wp-cli/media-command/tree/v2.0.20" + "source": "https://github.com/wp-cli/media-command/tree/v2.0.21" }, - "time": "2023-09-01T13:08:38+00:00" + "time": "2023-11-10T21:56:52+00:00" }, { "name": "wp-cli/mustangostang-spyc", @@ -11319,20 +11415,20 @@ }, { "name": "wp-cli/package-command", - "version": "v2.4.0", + "version": "v2.5.0", "source": { "type": "git", "url": "https://github.com/wp-cli/package-command.git", - "reference": "f295538382b970cca506172b892f5f1c8adbedb2" + "reference": "71683195f8c27ad97009628e2a72d2a4155503b2" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/wp-cli/package-command/zipball/f295538382b970cca506172b892f5f1c8adbedb2", - "reference": "f295538382b970cca506172b892f5f1c8adbedb2", + "url": "https://api.github.com/repos/wp-cli/package-command/zipball/71683195f8c27ad97009628e2a72d2a4155503b2", + "reference": "71683195f8c27ad97009628e2a72d2a4155503b2", "shasum": "" }, "require": { - "composer/composer": "^1.10.23 || ~2.2.17", + "composer/composer": "^1.10.23 || ^2.2.17", "ext-json": "*", "wp-cli/wp-cli": "^2.8" }, @@ -11378,22 +11474,22 @@ "homepage": "https://github.com/wp-cli/package-command", "support": { "issues": "https://github.com/wp-cli/package-command/issues", - "source": "https://github.com/wp-cli/package-command/tree/v2.4.0" + "source": "https://github.com/wp-cli/package-command/tree/v2.5.0" }, - "time": "2023-09-06T21:10:16+00:00" + "time": "2023-12-08T10:38:16+00:00" }, { "name": "wp-cli/php-cli-tools", - "version": "v0.11.20", + "version": "v0.11.22", "source": { "type": "git", "url": "https://github.com/wp-cli/php-cli-tools.git", - "reference": "d788a2c79e02f2f735fbb2b9a53db94d0e1bca4f" + "reference": "a6bb94664ca36d0962f9c2ff25591c315a550c51" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/wp-cli/php-cli-tools/zipball/d788a2c79e02f2f735fbb2b9a53db94d0e1bca4f", - "reference": "d788a2c79e02f2f735fbb2b9a53db94d0e1bca4f", + "url": "https://api.github.com/repos/wp-cli/php-cli-tools/zipball/a6bb94664ca36d0962f9c2ff25591c315a550c51", + "reference": "a6bb94664ca36d0962f9c2ff25591c315a550c51", "shasum": "" }, "require": { @@ -11441,9 +11537,9 @@ ], "support": { "issues": "https://github.com/wp-cli/php-cli-tools/issues", - "source": "https://github.com/wp-cli/php-cli-tools/tree/v0.11.20" + "source": "https://github.com/wp-cli/php-cli-tools/tree/v0.11.22" }, - "time": "2023-09-01T12:21:35+00:00" + "time": "2023-12-03T19:25:05+00:00" }, { "name": "wp-cli/rewrite-command", @@ -11574,16 +11670,16 @@ }, { "name": "wp-cli/scaffold-command", - "version": "v2.1.3", + "version": "v2.2.0", "source": { "type": "git", "url": "https://github.com/wp-cli/scaffold-command.git", - "reference": "4125a31134e1bad3d28cff71c178dcee1393f605" + "reference": "8aa906c3ec6ae7d95f38c962fc2561714f9c7145" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/wp-cli/scaffold-command/zipball/4125a31134e1bad3d28cff71c178dcee1393f605", - "reference": "4125a31134e1bad3d28cff71c178dcee1393f605", + "url": "https://api.github.com/repos/wp-cli/scaffold-command/zipball/8aa906c3ec6ae7d95f38c962fc2561714f9c7145", + "reference": "8aa906c3ec6ae7d95f38c962fc2561714f9c7145", "shasum": "" }, "require": { @@ -11634,22 +11730,22 @@ "homepage": "https://github.com/wp-cli/scaffold-command", "support": { "issues": "https://github.com/wp-cli/scaffold-command/issues", - "source": "https://github.com/wp-cli/scaffold-command/tree/v2.1.3" + "source": "https://github.com/wp-cli/scaffold-command/tree/v2.2.0" }, - "time": "2023-08-30T14:29:02+00:00" + "time": "2023-11-16T15:25:33+00:00" }, { "name": "wp-cli/search-replace-command", - "version": "v2.1.3", + "version": "v2.1.4", "source": { "type": "git", "url": "https://github.com/wp-cli/search-replace-command.git", - "reference": "0b662a372483224fe93f113c2a4fa2089e951d34" + "reference": "88c9f23eda4eff4803a3eeeabd46d1a99cd17340" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/wp-cli/search-replace-command/zipball/0b662a372483224fe93f113c2a4fa2089e951d34", - "reference": "0b662a372483224fe93f113c2a4fa2089e951d34", + "url": "https://api.github.com/repos/wp-cli/search-replace-command/zipball/88c9f23eda4eff4803a3eeeabd46d1a99cd17340", + "reference": "88c9f23eda4eff4803a3eeeabd46d1a99cd17340", "shasum": "" }, "require": { @@ -11694,9 +11790,9 @@ "homepage": "https://github.com/wp-cli/search-replace-command", "support": { "issues": "https://github.com/wp-cli/search-replace-command/issues", - "source": "https://github.com/wp-cli/search-replace-command/tree/v2.1.3" + "source": "https://github.com/wp-cli/search-replace-command/tree/v2.1.4" }, - "time": "2023-09-01T12:41:32+00:00" + "time": "2023-12-19T12:41:53+00:00" }, { "name": "wp-cli/server-command", @@ -11943,16 +12039,16 @@ }, { "name": "wp-cli/wp-cli", - "version": "v2.8.1", + "version": "dev-main", "source": { "type": "git", "url": "https://github.com/wp-cli/wp-cli.git", - "reference": "5dd2340b9a01c3cfdbaf5e93a140759fdd190eee" + "reference": "7038788b77fbf6b075c1c0d62e0e2fd2736316d7" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/wp-cli/wp-cli/zipball/5dd2340b9a01c3cfdbaf5e93a140759fdd190eee", - "reference": "5dd2340b9a01c3cfdbaf5e93a140759fdd190eee", + "url": "https://api.github.com/repos/wp-cli/wp-cli/zipball/7038788b77fbf6b075c1c0d62e0e2fd2736316d7", + "reference": "7038788b77fbf6b075c1c0d62e0e2fd2736316d7", "shasum": "" }, "require": { @@ -11969,12 +12065,13 @@ "wp-cli/entity-command": "^1.2 || ^2", "wp-cli/extension-command": "^1.1 || ^2", "wp-cli/package-command": "^1 || ^2", - "wp-cli/wp-cli-tests": "^3.1.6" + "wp-cli/wp-cli-tests": "^4.0.1" }, "suggest": { "ext-readline": "Include for a better --prompt implementation", "ext-zip": "Needed to support extraction of ZIP archives when doing downloads or updates" }, + "default-branch": true, "bin": [ "bin/wp", "bin/wp.bat" @@ -11982,7 +12079,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-main": "2.9.x-dev" + "dev-main": "2.10.x-dev" } }, "autoload": { @@ -12009,20 +12106,20 @@ "issues": "https://github.com/wp-cli/wp-cli/issues", "source": "https://github.com/wp-cli/wp-cli" }, - "time": "2023-06-05T06:55:55+00:00" + "time": "2023-12-13T12:14:55+00:00" }, { "name": "wp-cli/wp-cli-bundle", - "version": "v2.8.1", + "version": "v2.9.0", "source": { "type": "git", "url": "https://github.com/wp-cli/wp-cli-bundle.git", - "reference": "42e9cb9c16831c31ff720ed9dd1604e0f9871695" + "reference": "3512737e69e55507172e8dce400e09231ba95919" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/wp-cli/wp-cli-bundle/zipball/42e9cb9c16831c31ff720ed9dd1604e0f9871695", - "reference": "42e9cb9c16831c31ff720ed9dd1604e0f9871695", + "url": "https://api.github.com/repos/wp-cli/wp-cli-bundle/zipball/3512737e69e55507172e8dce400e09231ba95919", + "reference": "3512737e69e55507172e8dce400e09231ba95919", "shasum": "" }, "require": { @@ -12053,11 +12150,11 @@ "wp-cli/shell-command": "^2", "wp-cli/super-admin-command": "^2", "wp-cli/widget-command": "^2", - "wp-cli/wp-cli": "^2.8.1" + "wp-cli/wp-cli": "^2.9.0" }, "require-dev": { "roave/security-advisories": "dev-latest", - "wp-cli/wp-cli-tests": "^3.0.7" + "wp-cli/wp-cli-tests": "^4" }, "suggest": { "psy/psysh": "Enhanced `wp shell` functionality" @@ -12065,7 +12162,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-main": "2.8.x-dev" + "dev-main": "2.9.x-dev" } }, "notification-url": "https://packagist.org/downloads/", @@ -12083,20 +12180,20 @@ "issues": "https://github.com/wp-cli/wp-cli-bundle/issues", "source": "https://github.com/wp-cli/wp-cli-bundle" }, - "time": "2023-06-05T07:33:43+00:00" + "time": "2023-10-25T09:28:58+00:00" }, { "name": "wp-cli/wp-config-transformer", - "version": "v1.3.4", + "version": "v1.3.5", "source": { "type": "git", "url": "https://github.com/wp-cli/wp-config-transformer.git", - "reference": "1f80df413c0d779a813223d9dd5dd58358eee60c" + "reference": "202aa80528939159d52bc4026cee5453aec382db" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/wp-cli/wp-config-transformer/zipball/1f80df413c0d779a813223d9dd5dd58358eee60c", - "reference": "1f80df413c0d779a813223d9dd5dd58358eee60c", + "url": "https://api.github.com/repos/wp-cli/wp-config-transformer/zipball/202aa80528939159d52bc4026cee5453aec382db", + "reference": "202aa80528939159d52bc4026cee5453aec382db", "shasum": "" }, "require": { @@ -12125,9 +12222,9 @@ "homepage": "https://github.com/wp-cli/wp-config-transformer", "support": { "issues": "https://github.com/wp-cli/wp-config-transformer/issues", - "source": "https://github.com/wp-cli/wp-config-transformer/tree/v1.3.4" + "source": "https://github.com/wp-cli/wp-config-transformer/tree/v1.3.5" }, - "time": "2023-08-31T10:11:36+00:00" + "time": "2023-11-10T14:28:03+00:00" }, { "name": "wp-coding-standards/wpcs", @@ -12248,5 +12345,5 @@ "php": ">=7.2.5" }, "platform-dev": [], - "plugin-api-version": "2.3.0" + "plugin-api-version": "2.2.0" } diff --git a/dev-workspace/build b/dev-workspace/build index 54684e85c..f938e8560 100755 --- a/dev-workspace/build +++ b/dev-workspace/build @@ -1,3 +1,3 @@ #!/usr/bin/env bash -DOCKER_HOST_IP=$(php ./scripts/getip) docker compose -f docker/compose.yaml build +docker compose -f docker/compose.yaml build diff --git a/dev-workspace/build-push b/dev-workspace/build-push index 4cdecdfe1..88d8f5d3b 100755 --- a/dev-workspace/build-push +++ b/dev-workspace/build-push @@ -2,4 +2,4 @@ # This command requires to be logged in on Docker Hub. Check `docker login --help` for more information. -DOCKER_HOST_IP=$(php ./scripts/getip) docker buildx build --platform linux/amd64,linux/arm64 --push -t publishpress/dev-workspace-terminal:planner-free-2 ./docker +docker buildx build --platform linux/amd64,linux/arm64 --push -t publishpress/dev-workspace-terminal:planner-free-2 ./docker diff --git a/dev-workspace/docker/compose.yaml b/dev-workspace/docker/compose.yaml index cddc6b7fe..1f72fbb33 100644 --- a/dev-workspace/docker/compose.yaml +++ b/dev-workspace/docker/compose.yaml @@ -1,7 +1,7 @@ name: devworkspace_planner_free services: terminal: - build: ./docker + build: ./ image: publishpress/dev-workspace-terminal:planner-free-2 command: ["zsh"] stdin_open: true @@ -17,7 +17,3 @@ services: - ../cache/.composer/cache:/root/.composer/cache - ../cache/.composer/auth.json:/root/.composer/auth.json - /var/run/docker.sock:/var/run/docker.sock - extra_hosts: - - "dockerhost:${DOCKER_HOST_IP}" - environment: - - DOCKER_HOST_IP=${DOCKER_HOST_IP} diff --git a/dev-workspace/run b/dev-workspace/run index b3cf172d9..10a6bcf85 100755 --- a/dev-workspace/run +++ b/dev-workspace/run @@ -1,5 +1,10 @@ #!/usr/bin/env bash +# Make sure we are inside dev-workspace subdirectory. If not, enter it. +if [[ ! "$PWD" =~ dev-workspace$ ]]; then + cd dev-workspace +fi + # Create empty cache files if not exists. [[ -d cache/.npm/_cacache ]] || mkdir -p cache/.npm/_cacache [[ -d cache/.npm/_logs ]] || mkdir -p cache/.npm/_logs @@ -9,8 +14,6 @@ [[ -f cache/.bash_history ]] || touch cache/.bash_history [[ -f cache/.composer/auth.json ]] || echo '{}' > cache/.composer/auth.json -export DOCKER_HOST_IP=$(php ./scripts/getip) - is_online() { echo -e "GET http://google.com HTTP/1.0\n\n" | nc google.com 80 > /dev/null 2>&1 diff --git a/dev-workspace/scripts/getip b/dev-workspace/scripts/getip deleted file mode 100755 index 52ac17280..000000000 --- a/dev-workspace/scripts/getip +++ /dev/null @@ -1,69 +0,0 @@ -#!/usr/bin/env php -a %2$s" #. 1: old status, 2: new status #: modules/notifications/notifications.php:2056 +#, php-format msgid "%1$s => %2$s" msgstr "%1$s => %2$s" @@ -68,13 +74,10 @@ msgstr "%1$s => %2$s" #: modules/notifications/notifications.php:1892 #: modules/editorial-metadata/input-handlers/editorial-metadata-input-date-handler.php:201 #: modules/editorial-comments/library/EditorialCommentsTable.php:337 +#, php-format msgid "%1$s at %2$s" msgstr "%1$s en %2$s" -#: modules/dashboard/widgets/dashboard-notepad.php:140 -msgid "%1$s last updated on %2$s" -msgstr "%1$s actualizado por última vez el %2$s" - #: lib/Notifications/Workflow/Step/Receiver/Role.php:176 msgid "%d Role" msgid_plural "%d Roles" @@ -87,39 +90,41 @@ msgid_plural "%d Users" msgstr[0] "%d usuario" msgstr[1] "%d usuarios" -#: modules/calendar/calendar.php:830 +#: modules/calendar/calendar.php:831 msgid "%d week" msgstr "%d semana" -#: modules/calendar/calendar.php:831 +#: modules/calendar/calendar.php:832 msgid "%d weeks" msgstr "%d semanas" -#: modules/notifications-log/notifications-log.php:271 +#: modules/notifications-log/notifications-log.php:272 +#, php-format msgid "%s notification found." msgid_plural "%s notifications found." msgstr[0] "%s aviso encontrado." msgstr[1] "%s avisos encontrados." -#: modules/calendar/calendar.php:4031 +#: modules/calendar/calendar.php:4086 +#, php-format msgid "%s week" msgid_plural "%s weeks" msgstr[0] "%s semana" msgstr[1] "%s semanas" -#: modules/calendar/calendar.php:2141 +#: modules/calendar/calendar.php:2155 msgid "«" msgstr "«" -#: modules/calendar/calendar.php:2154 +#: modules/calendar/calendar.php:2168 msgid "‹" msgstr "‹" -#: modules/calendar/calendar.php:2110 +#: modules/calendar/calendar.php:2124 msgid "»" msgstr "»" -#: modules/calendar/calendar.php:2093 +#: modules/calendar/calendar.php:2107 msgid "›" msgstr "›" @@ -131,7 +136,7 @@ msgstr "(sin título)" msgid "- any status -" msgstr "- cualquier estado -" -#: modules/calendar/calendar.php:210 +#: modules/calendar/calendar.php:211 msgid "" "

For more information:

Calendar Documentation

PublishPress en Github

" -#: modules/editorial-comments/editorial-comments.php:87 +#: modules/editorial-comments/editorial-comments.php:88 msgid "" "

For more information:

Editorial Comments " @@ -167,7 +172,7 @@ msgstr "" "editoriales

PublishPress en Github

" -#: modules/editorial-metadata/editorial-metadata.php:125 +#: modules/editorial-metadata/editorial-metadata.php:126 msgid "" "

For more information:

Editorial Metadata " @@ -191,7 +196,7 @@ msgstr "" "p>

PublishPress en " "Github

" -#: modules/editorial-comments/editorial-comments.php:82 +#: modules/editorial-comments/editorial-comments.php:83 msgid "" "

Editorial comments help you cut down on email overload and keep the " "conversation close to where it matters: your content. Threaded commenting in " @@ -212,7 +217,7 @@ msgstr "" "avisos activados, aquellos que sigan la publicación recibirán un correo " "electrónico cada vez que se deja un comentario.

" -#: modules/editorial-metadata/editorial-metadata.php:120 +#: 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. " @@ -273,7 +278,7 @@ msgstr "" "específico. Además, los avisos por correo electrónico pueden ser enviados a " "un grupo específico de usuarios cuando una publicación cambia de estado.

" -#: modules/calendar/calendar.php:205 +#: modules/calendar/calendar.php:206 msgid "" "

The calendar is a convenient week-by-week or month-by-month view into " "your content. Quickly see which stories are on track to being published on " @@ -293,6 +298,7 @@ msgstr "" "desactivado. No podrás acceder o cambiar el estado de la publicación." #: modules/notifications/notifications.php:2064 +#, php-format msgid "== %s Details ==" msgstr "== %s detalles ==" @@ -303,46 +309,55 @@ msgstr "== Acciones ==" #. 1: site name, 2: post type, 3. post title #: modules/notifications/notifications.php:1991 +#, php-format msgid "[%1$s] %2$s Published: \"%3$s\"" msgstr "[%1$s] %2$s Publicada: «%3$s»" #. 1: site name, 2: post type, 3. post title #: modules/notifications/notifications.php:1961 +#, php-format msgid "[%1$s] %2$s Restored (from Trash ): \"%3$s\"" msgstr "[%1$s] %2$s Recuperada (de la papelera): «%3$s»" #. 1: site name, 2: post type, 3. post title #: modules/notifications/notifications.php:2025 +#, php-format msgid "[%1$s] %2$s Status Changed for \"%3$s\"" msgstr "[%1$s] %2$s estado cambiado para «%3$s»" #. 1: site name, 2: post type, 3. post title #: modules/notifications/notifications.php:1944 +#, php-format msgid "[%1$s] %2$s Trashed: \"%3$s\"" msgstr "[%1$s] %2$s Papelera: «%3$s»" #. 1: site name, 2: post type, 3. post title #: modules/notifications/notifications.php:2008 +#, php-format msgid "[%1$s] %2$s Unpublished: \"%3$s\"" msgstr "[%1$s] %2$s Despublicada: «%3$s»" #. 1: site name, 2: post type, 3. post title #: modules/notifications/notifications.php:1927 +#, php-format msgid "[%1$s] New %2$s Created: \"%3$s\"" msgstr "[%1$s] Nueva %2$s creada: «%3$s»" #. 1: blog name, 2: post title #: modules/notifications/notifications.php:2100 +#, php-format msgid "[%1$s] New Editorial Comment: \"%2$s\"" msgstr "[%1$s] Nuevo comentario editorial: «%2$s»" #. 1: post type, 2: post id, 3. post title, 4. user name, 5. user email #: modules/notifications/notifications.php:1934 +#, php-format msgid "A new %1$s (#%2$s \"%3$s\" ) was created by %4$s %5$s" msgstr "Una nueva %1$s (# %2$s «%3$s») fue creada por %4$s %5$s" #. 1: post id, 2: post title, 3. post type #: modules/notifications/notifications.php:2107 +#, php-format msgid "A new editorial comment was added to %3$s #%1$s \"%2$s\"" msgstr "Un nuevo comentario editorial fue añadido a %3$s #%1$s «%2$s»" @@ -371,39 +386,41 @@ msgstr "" "cargarse mediante el filtro de contenido de taxonomías al añadir un nuevo " "flujo de trabajo de avisos." -#: modules/editorial-comments/editorial-comments.php:522 -#: modules/editorial-comments/editorial-comments.php:526 +#: modules/editorial-comments/editorial-comments.php:552 +#: modules/editorial-comments/editorial-comments.php:556 msgid "Add an editorial comment" msgstr "Añadir un comentario editorial" -#: modules/editorial-metadata/editorial-metadata.php:2075 -#: modules/editorial-metadata/editorial-metadata.php:2436 +#: modules/editorial-metadata/editorial-metadata.php:2085 +#: modules/editorial-metadata/editorial-metadata.php:2446 msgid "Add Another Option" msgstr "Añadir otra opción" -#: modules/editorial-comments/editorial-comments.php:544 +#: modules/editorial-comments/editorial-comments.php:574 msgid "Add Comment" msgstr "Añadir comentario" -#: modules/calendar/calendar.php:802 +#: modules/calendar/calendar.php:803 +#, php-format msgid "Add content for %s" msgstr "Añadir contenido para %s" #: modules/notifications/notifications.php:2085 #: modules/notifications/notifications.php:2142 +#, php-format msgid "Add editorial comment: %s" msgstr "Añadir comentario editorial: %s" -#: modules/editorial-metadata/editorial-metadata.php:1798 +#: modules/editorial-metadata/editorial-metadata.php:1799 #: modules/custom-status/custom-status.php:2112 msgid "Add New" msgstr "Añadir nuevo" -#: modules/editorial-metadata/editorial-metadata.php:452 +#: modules/editorial-metadata/editorial-metadata.php:453 msgid "Add New Editorial Metadata" msgstr "Añadir nuevos metadatos editoriales" -#: modules/editorial-metadata/editorial-metadata.php:2571 +#: modules/editorial-metadata/editorial-metadata.php:2581 msgid "Add New Metadata Term" msgstr "Añadir nuevo término de metadatos" @@ -439,12 +456,12 @@ 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:2155 -#: modules/editorial-metadata/editorial-metadata.php:2522 +#: modules/editorial-metadata/editorial-metadata.php:2165 +#: modules/editorial-metadata/editorial-metadata.php:2532 msgid "Add to post types" msgstr "Añadir a los tipos de contenido" -#: modules/improved-notifications/improved-notifications.php:93 +#: modules/improved-notifications/improved-notifications.php:94 msgid "Advanced Notifications" msgstr "Avisos avanzados" @@ -452,8 +469,8 @@ msgstr "Avisos avanzados" msgid "All" msgstr "Todo" -#: modules/content-overview/content-overview.php:1254 -#: modules/content-overview/content-overview.php:1257 +#: modules/content-overview/content-overview.php:1278 +#: modules/content-overview/content-overview.php:1281 #, php-format msgid "All %s" msgstr "Todas %s" @@ -462,13 +479,13 @@ msgstr "Todas %s" msgid "All Actions" msgstr "Todas las acciones" -#: modules/calendar/calendar.php:828 modules/calendar/calendar.php:3979 -#: modules/content-overview/content-overview.php:1276 -#: modules/content-overview/content-overview.php:1279 +#: modules/calendar/calendar.php:829 modules/calendar/calendar.php:4034 +#: modules/content-overview/content-overview.php:1300 +#: modules/content-overview/content-overview.php:1303 msgid "All authors" msgstr "Todos los autores" -#: modules/calendar/calendar.php:826 +#: modules/calendar/calendar.php:827 msgid "All categories" msgstr "Todas las categorías" @@ -480,7 +497,7 @@ msgstr "Todos los canales" msgid "All channels" msgstr "Todos los canales" -#: modules/editorial-metadata/editorial-metadata.php:449 +#: modules/editorial-metadata/editorial-metadata.php:450 msgid "All Editorial Metadata" msgstr "Todos los metadatos editoriales" @@ -500,22 +517,22 @@ msgstr "Todos los avisos de perfiles" msgid "All Notify Users" msgstr "Todos los avisos de usuarios" -#: modules/editorial-metadata/editorial-metadata.php:1267 -#: modules/editorial-metadata/editorial-metadata.php:1437 +#: modules/editorial-metadata/editorial-metadata.php:1268 +#: modules/editorial-metadata/editorial-metadata.php:1438 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:1306 +#: modules/content-overview/content-overview.php:1330 msgid "All post types" msgstr "Todos los tipos de contenido" #: modules/notifications-log/notifications-log.php:204 -#: modules/editorial-comments/editorial-comments.php:211 +#: modules/editorial-comments/editorial-comments.php:212 #: modules/editorial-comments/library/EditorialCommentsTable.php:182 msgid "All Posts" msgstr "Todas las entradas" -#: modules/calendar/calendar.php:2847 +#: modules/calendar/calendar.php:2896 msgid "All posts" msgstr "Todas las entradas" @@ -527,20 +544,20 @@ msgstr "Todos los destinatarios" msgid "All Statuses" msgstr "Todos los estados" -#: modules/calendar/calendar.php:825 modules/calendar/calendar.php:3923 -#: modules/content-overview/content-overview.php:1232 +#: modules/calendar/calendar.php:826 modules/calendar/calendar.php:3978 +#: modules/content-overview/content-overview.php:1256 msgid "All statuses" msgstr "Todos los estados" -#: modules/calendar/calendar.php:827 modules/calendar/calendar.php:3958 +#: modules/calendar/calendar.php:828 modules/calendar/calendar.php:4013 msgid "All tags" msgstr "Todas las etiquetas" -#: modules/calendar/calendar.php:829 modules/calendar/calendar.php:4006 +#: modules/calendar/calendar.php:830 modules/calendar/calendar.php:4061 msgid "All types" msgstr "Todos los tipos" -#: modules/editorial-comments/editorial-comments.php:212 +#: modules/editorial-comments/editorial-comments.php:213 #: modules/editorial-comments/library/EditorialCommentsTable.php:197 msgid "All Users" msgstr "Todos los usuarios" @@ -549,6 +566,11 @@ msgstr "Todos los usuarios" msgid "All Workflows" msgstr "Todos los flujos de trabajo" +#: modules/calendar/calendar.php:2558 +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" + #: modules/notifications/notifications.php:1649 msgid "Always notify the author of the content:" msgstr "Avisar siempre al autor del contenido:" @@ -557,7 +579,7 @@ 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:2577 +#: modules/calendar/calendar.php:2606 msgid "Always show complete post titles" msgstr "Muestra siempre los títulos completos de las entradas" @@ -565,7 +587,7 @@ msgstr "Muestra siempre los títulos completos de las entradas" msgid "Apply" msgstr "Aplicar" -#: modules/calendar/calendar.php:816 +#: modules/calendar/calendar.php:817 msgid "Apr" msgstr "Abr" @@ -577,7 +599,7 @@ msgstr "" "¿Estás seguro de que quieres eliminar el estado de la publicación? A todas " "las publicaciones con este estado se les asignará el estado por defecto." -#: modules/editorial-metadata/editorial-metadata.php:366 +#: modules/editorial-metadata/editorial-metadata.php:367 msgid "" "Are you sure you want to delete this term? Any metadata for this term will " "remain but will not be visible unless this term is re-added." @@ -590,7 +612,7 @@ msgstr "" msgid "Assigned" msgstr "Asignado" -#: modules/editorial-metadata/editorial-metadata.php:216 +#: modules/editorial-metadata/editorial-metadata.php:217 msgid "Assignment" msgstr "Asignación" @@ -602,20 +624,20 @@ msgstr "Avisos asíncronos" msgid "asynchronous" msgstr "asíncrono" -#: modules/calendar/calendar.php:2596 +#: modules/calendar/calendar.php:2625 msgid "At least one post type must be selected" msgstr "Se debe seleccionar por lo menos un tipo de contenido" -#: modules/editorial-comments/editorial-comments.php:532 +#: modules/editorial-comments/editorial-comments.php:562 msgid "Attach file" msgstr "Adjuntar archivo" -#: modules/calendar/calendar.php:820 +#: modules/calendar/calendar.php:821 msgid "Aug" msgstr "Ago" -#: modules/calendar/calendar.php:1949 modules/calendar/calendar.php:3446 -#: modules/calendar/calendar.php:3536 +#: modules/calendar/calendar.php:1963 modules/calendar/calendar.php:3501 +#: modules/calendar/calendar.php:3591 #: modules/content-overview/content-overview.php:629 #: modules/editorial-comments/library/EditorialCommentsTable.php:229 msgid "Author" @@ -625,6 +647,7 @@ msgstr[1] "Autores" #. 1: author name, 2: author email #: modules/notifications/notifications.php:2069 +#, php-format msgid "Author: %1$s (%2$s )" msgstr "Autor: %1$s (%2$s )" @@ -640,15 +663,15 @@ msgstr "Autores del contenido" msgid "Auto-draft" msgstr "Borrador automático" -#: modules/improved-notifications/improved-notifications.php:945 +#: modules/improved-notifications/improved-notifications.php:981 msgid "Available fields" msgstr "Campos disponibles" -#: modules/calendar/calendar.php:2133 +#: modules/calendar/calendar.php:2147 msgid "Back %d weeks" msgstr "Ir %d semanas hacia detrás" -#: modules/calendar/calendar.php:2145 +#: modules/calendar/calendar.php:2159 msgid "Back 1 week" msgstr "1 semana atrás" @@ -684,14 +707,10 @@ msgstr "Blog: " msgid "Body" msgstr "Cuerpo" -#: modules/calendar/calendar.php:170 -msgid "Calendar" -msgstr "Calendario" - -#: modules/editorial-metadata/editorial-metadata.php:2210 +#: modules/editorial-metadata/editorial-metadata.php:2220 #: modules/custom-status/custom-status.php:2078 #: modules/content-overview/content-overview.php:1028 -#: modules/editorial-comments/editorial-comments.php:548 +#: modules/editorial-comments/editorial-comments.php:578 msgid "Cancel" msgstr "Cancelar" @@ -699,12 +718,12 @@ msgstr "Cancelar" msgid "Cannot reassign to the status you want to delete" msgstr "No se puede reasignar al estado que quieres eliminar" -#: modules/calendar/calendar.php:3546 +#: modules/calendar/calendar.php:3601 #: lib/Notifications/Workflow/Step/Event_Content/Filter/Category.php:34 msgid "Categories" msgstr "Categorías" -#: modules/calendar/calendar.php:3451 +#: modules/calendar/calendar.php:3506 #: lib/Notifications/Workflow/Step/Event_Content/Category.php:24 msgid "Category" msgid_plural "Categories" @@ -717,7 +736,7 @@ msgstr "Cambiar" #: views/user_profile_notification_channels.html.php:15 #: modules/improved-notifications/improved-notifications.php:408 -#: modules/improved-notifications/improved-notifications.php:1116 +#: modules/improved-notifications/improved-notifications.php:1152 msgid "Channels" msgstr "Canales" @@ -725,7 +744,7 @@ msgstr "Canales" msgid "Cheatin’ uh?" msgstr "¡Haciendo trampas! ¿eh?" -#: modules/editorial-metadata/editorial-metadata.php:282 +#: modules/editorial-metadata/editorial-metadata.php:283 msgid "Checkbox" msgstr "Casilla de verificación" @@ -741,25 +760,25 @@ msgstr "Elige entre los avisos de perfiles más usados" msgid "Choose from the most used notify users" msgstr "Elige entre los avisos de usuarios más usados" -#: modules/editorial-comments/editorial-comments.php:77 +#: modules/editorial-comments/editorial-comments.php:78 msgid "Choose Post Types" msgstr "Elige el tipo de contenido" #: views/user_profile_notification_channels.html.php:6 #: modules/improved-notifications/improved-notifications.php:402 -#: modules/improved-notifications/improved-notifications.php:1110 +#: modules/improved-notifications/improved-notifications.php:1146 msgid "Choose the channels where each workflow will send notifications to:" msgstr "Elige los canales a los que cada flujo de trabajo enviará avisos:" -#: modules/improved-notifications/improved-notifications.php:947 +#: modules/improved-notifications/improved-notifications.php:983 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:1426 -msgid "Click here to Subscribe in iCal or Google Calendar" +#: modules/calendar/calendar.php:1440 +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:794 modules/calendar/calendar.php:796 +#: modules/calendar/calendar.php:795 modules/calendar/calendar.php:797 msgid "Click to add" msgstr "Haz clic para añadir" @@ -782,11 +801,11 @@ 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:1481 +#: modules/content-overview/content-overview.php:1505 msgid "Click to toggle" msgstr "Haz clic para activar" -#: modules/calendar/calendar.php:798 +#: modules/calendar/calendar.php:799 msgid "Close" msgstr "Cerrar" @@ -799,15 +818,16 @@ msgstr "Color" msgid "Comment" msgstr "Comentario" -#: modules/editorial-comments/editorial-comments.php:1209 +#: modules/editorial-comments/editorial-comments.php:1239 msgid "Comment author name field:" msgstr "Campo del nombre del autor del comentario:" -#: modules/editorial-comments/editorial-comments.php:1151 +#: modules/editorial-comments/editorial-comments.php:1181 msgid "Comment deleted successfully." msgstr "El commentario ha sido borrado con éxito." #: lib/Notifications/Workflow/Step/Event/Editorial_Comment.php:92 +#, php-format msgid "Comment: %s (%d)" msgstr "Comentario: %s (%d)" @@ -819,14 +839,14 @@ msgstr "Configurar" msgid "Contact" msgstr "Contacto" -#: modules/calendar/calendar.php:3563 -#: modules/improved-notifications/improved-notifications.php:933 +#: modules/calendar/calendar.php:3618 +#: modules/improved-notifications/improved-notifications.php:969 #: lib/Notifications/Workflow/Step/Content/Main.php:29 msgid "Content" msgstr "Contenido" -#: modules/calendar/calendar.php:408 modules/calendar/calendar.php:425 -#: modules/calendar/calendar.php:426 +#: modules/calendar/calendar.php:170 modules/calendar/calendar.php:409 +#: modules/calendar/calendar.php:426 modules/calendar/calendar.php:427 msgid "Content Calendar" msgstr "Calendario de contenidos" @@ -837,11 +857,11 @@ msgstr "Calendario de contenidos" msgid "Content Overview" msgstr "Resumen del contenido" -#: modules/notifications-log/notifications-log.php:821 +#: modules/notifications-log/notifications-log.php:822 msgid "Content:" msgstr "Contenido:" -#: modules/calendar/calendar.php:1420 +#: modules/calendar/calendar.php:1434 msgid "Copy to the clipboard" msgstr "Copiar al portapapeles" @@ -857,7 +877,7 @@ msgstr "No se pudo eliminar el estado: " msgid "Created on" msgstr "Creado el" -#: modules/calendar/calendar.php:1343 +#: modules/calendar/calendar.php:1357 msgid "Current week" msgstr "Semana actual" @@ -869,16 +889,8 @@ msgstr "Estado personalizado" msgid "Custom status doesn't exist." msgstr "El estado personalizado no existe." -#: modules/dashboard/dashboard.php:56 -msgid "Dashboard" -msgstr "Escritorio" - -#: modules/dashboard/widgets/dashboard-notepad.php:50 -msgid "Dashboard Note" -msgstr "Notas de escritorio" - -#: modules/editorial-metadata/editorial-metadata.php:284 -#: modules/calendar/calendar.php:3435 +#: modules/editorial-metadata/editorial-metadata.php:285 +#: modules/calendar/calendar.php:3490 #: lib/Notifications/Table/Notifications.php:158 #: modules/notifications-log/library/NotificationsLogTable.php:490 msgid "Date" @@ -892,7 +904,7 @@ msgstr "Depuración" msgid "Debug data" msgstr "Datos de depuración" -#: modules/calendar/calendar.php:824 +#: modules/calendar/calendar.php:825 msgid "Dec" msgstr "Dic" @@ -904,10 +916,10 @@ msgstr "Por defecto" msgid "Default notification channels:" msgstr "Canales de aviso por defecto:" -#: modules/editorial-metadata/editorial-metadata.php:2037 -#: modules/editorial-metadata/editorial-metadata.php:2067 -#: modules/editorial-metadata/editorial-metadata.php:2398 -#: modules/editorial-metadata/editorial-metadata.php:2428 +#: 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 msgid "Default option" msgstr "Opción por defecto" @@ -915,18 +927,18 @@ msgstr "Opción por defecto" msgid "Default post status has been changed." msgstr "El estado de la publicación por defecto se ha cambiado." -#: modules/calendar/calendar.php:2553 +#: modules/calendar/calendar.php:2582 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:2040 -#: modules/editorial-metadata/editorial-metadata.php:2070 -#: modules/editorial-metadata/editorial-metadata.php:2401 -#: modules/editorial-metadata/editorial-metadata.php:2431 -#: modules/editorial-metadata/editorial-metadata.php:2827 +#: 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/custom-status/custom-status.php:2926 -#: modules/editorial-comments/editorial-comments.php:613 +#: modules/editorial-comments/editorial-comments.php:643 #: modules/notifications-log/library/NotificationsLogTable.php:370 #: modules/notifications-log/library/NotificationsLogTable.php:401 #: modules/editorial-comments/library/EditorialCommentsTable.php:435 @@ -941,22 +953,26 @@ msgstr "Borrar todos" msgid "Delete file" msgstr "Borrar archivo" -#: modules/editorial-metadata/editorial-metadata.php:1912 -#: modules/editorial-metadata/editorial-metadata.php:2259 -#: modules/editorial-metadata/editorial-metadata.php:2689 +#: modules/editorial-metadata/editorial-metadata.php:1922 +#: modules/editorial-metadata/editorial-metadata.php:2269 +#: modules/editorial-metadata/editorial-metadata.php:2699 #: modules/custom-status/custom-status.php:2007 #: modules/custom-status/custom-status.php:2141 #: modules/custom-status/custom-status.php:2780 msgid "Description" msgstr "Descripción" +#: lib/Legacy/Util.php:236 +msgid "Detailed documentation is also available on the plugin website." +msgstr "También hay disponible documentación detallada en la web del plugin." + #: modules/custom-status/custom-status.php:1889 -#: modules/calendar/calendar.php:2627 modules/dashboard/dashboard.php:368 -#: modules/dashboard/dashboard.php:391 modules/dashboard/dashboard.php:425 +#: modules/calendar/calendar.php:2656 msgid "Disabled" msgstr "Desactivado" -#: modules/settings/settings.php:381 +#: modules/settings/settings.php:380 +#, php-format msgid "" "Disabled because add_post_type_support('%1$s', '%2$s') is included in a " "loaded file." @@ -964,14 +980,14 @@ msgstr "" "Desactivado porque add_post_type_support('%1$s', '%2$s') está incluido en un " "archivo cargado." -#: modules/editorial-metadata/editorial-metadata.php:2028 -#: modules/editorial-metadata/editorial-metadata.php:2059 -#: modules/editorial-metadata/editorial-metadata.php:2389 -#: modules/editorial-metadata/editorial-metadata.php:2420 +#: 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 msgid "Display Label" msgstr "Muestra etiqueta" -#: modules/editorial-comments/editorial-comments.php:1236 +#: modules/editorial-comments/editorial-comments.php:1266 msgid "Display Name" msgstr "Nombre a mostrar" @@ -979,7 +995,7 @@ msgstr "Nombre a mostrar" msgid "Documentation" msgstr "Documentación" -#: modules/calendar/calendar.php:1413 +#: modules/calendar/calendar.php:1427 msgid "Download .ics file" msgstr "Descargar archivo .ics" @@ -988,12 +1004,12 @@ msgstr "Descargar archivo .ics" msgid "Draft" msgstr "Borrador" -#: modules/editorial-metadata/editorial-metadata.php:1995 -#: modules/editorial-metadata/editorial-metadata.php:2358 +#: modules/editorial-metadata/editorial-metadata.php:2005 +#: modules/editorial-metadata/editorial-metadata.php:2368 msgid "Dropdown Option" msgstr "Opción del menú desplegable" -#: modules/editorial-metadata/editorial-metadata.php:283 +#: modules/editorial-metadata/editorial-metadata.php:284 msgid "Dropdown Select" msgstr "Selección desplegable" @@ -1005,25 +1021,27 @@ msgstr "Umbral para los avisos duplicados:" msgid "E-mails" msgstr "Correos electrónicos" -#: modules/editorial-metadata/editorial-metadata.php:2807 +#: modules/editorial-metadata/editorial-metadata.php:2817 #: modules/custom-status/custom-status.php:2922 -#: modules/calendar/calendar.php:1804 modules/calendar/calendar.php:3468 -#: modules/content-overview/content-overview.php:1880 -#: modules/editorial-comments/editorial-comments.php:602 +#: modules/calendar/calendar.php:1818 modules/calendar/calendar.php:3523 +#: modules/content-overview/content-overview.php:1904 +#: modules/editorial-comments/editorial-comments.php:632 msgid "Edit" msgstr "Editar" -#: modules/editorial-metadata/editorial-metadata.php:450 +#: modules/editorial-metadata/editorial-metadata.php:451 msgid "Edit Editorial Metadata" msgstr "Editar metadatos editoriales" -#: modules/efmigration/efmigration.php:287 +#: modules/efmigration/efmigration.php:288 msgid "" -"Edit Flow should not be used alongside PublishPress. If you want to use it, " -"deactive PublishPress first." +"Edit Flow should not be used alongside PublishPress Planner. If you want to " +"use PublishPress Planner, please complete Edit Flow data migration and then " +"deactivate Edit Flow." msgstr "" -"Edit Flow no puede utilizarse junto con PublishPress. Si quieres usarlo, " -"desactiva primero PublishPress." +"Edit Flow no puede utilizarse junto con PublishPress Planner. Si quieres " +"usar PublishPress Planner, primero completa la migración de los datos de " +"Edit Flow y luego desactiva Edit Flow." #: publishpress.php:1239 msgid "Edit Notification" @@ -1045,52 +1063,52 @@ msgstr "Editar el aviso de usuario" msgid "Edit Statuses" msgstr "Editar estados" -#: modules/calendar/calendar.php:1804 +#: modules/calendar/calendar.php:1818 msgid "Edit this item" msgstr "Editar este elemento" -#: modules/content-overview/content-overview.php:1876 -#: modules/dashboard/dashboard.php:299 +#: modules/content-overview/content-overview.php:1900 msgid "Edit this post" msgstr "Editar esta publicación" #: modules/notifications/notifications.php:2088 #: modules/notifications/notifications.php:2145 +#, php-format msgid "Edit: %s" msgstr "Editar: %s" -#: modules/improved-notifications/improved-notifications.php:934 +#: modules/improved-notifications/improved-notifications.php:970 msgid "Editorial Comment" msgstr "Comentario editorial" -#: modules/editorial-comments/editorial-comments.php:62 -#: modules/editorial-comments/editorial-comments.php:234 +#: modules/editorial-comments/editorial-comments.php:63 #: modules/editorial-comments/editorial-comments.php:235 -#: modules/editorial-comments/editorial-comments.php:427 +#: modules/editorial-comments/editorial-comments.php:236 +#: modules/editorial-comments/editorial-comments.php:457 msgid "Editorial Comments" msgstr "Comentarios editoriales" -#: modules/editorial-metadata/editorial-metadata.php:95 -#: modules/editorial-metadata/editorial-metadata.php:1774 +#: modules/editorial-metadata/editorial-metadata.php:96 #: modules/editorial-metadata/editorial-metadata.php:1775 +#: modules/editorial-metadata/editorial-metadata.php:1776 msgid "Editorial Metadata" msgstr "Metadatos editoriales" #: views/user_profile_notification_channels.html.php:1 #: modules/improved-notifications/improved-notifications.php:401 -#: modules/improved-notifications/improved-notifications.php:1109 +#: modules/improved-notifications/improved-notifications.php:1145 msgid "Editorial Notifications" msgstr "Avisos editoriales" -#: modules/calendar/calendar.php:1393 +#: modules/calendar/calendar.php:1407 msgid "Eight months" msgstr "Ocho meses" -#: modules/calendar/calendar.php:1399 +#: modules/calendar/calendar.php:1413 msgid "Eleven months" msgstr "Once meses" -#: modules/editorial-comments/editorial-comments.php:1239 +#: modules/editorial-comments/editorial-comments.php:1269 #: lib/Notifications/Workflow/Step/Channel/Email.php:31 msgid "Email" msgstr "Correo electrónico" @@ -1103,13 +1121,16 @@ msgstr "correo electrónico" msgid "Email from:" msgstr "Correo electrónico de:" -#: modules/editorial-comments/editorial-comments.php:1202 +#: 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:2550 +msgid "Enable subscriptions in iCal or Google Calendar" +msgstr "Activa las suscripciones en iCal o Google Calendar" + #: modules/custom-status/custom-status.php:1890 -#: modules/calendar/calendar.php:2628 modules/dashboard/dashboard.php:369 -#: modules/dashboard/dashboard.php:392 modules/dashboard/dashboard.php:426 +#: modules/calendar/calendar.php:2657 msgid "Enabled" msgstr "Activado" @@ -1117,10 +1138,14 @@ msgstr "Activado" msgid "Enabled features" msgstr "Características activadas" -#: modules/calendar/calendar.php:1361 +#: modules/calendar/calendar.php:1375 msgid "End date" msgstr "Fecha de finalización" +#: lib/Legacy/Util.php:203 +msgid "Enhance the power of PublishPress Planner with the Pro version:" +msgstr "Mejora la potencia de PublishPress Planner con la versión Pro:" + #: modules/notifications/notifications.php:636 msgid "" "Enter any users, roles, or email address that should receive notifications " @@ -1129,8 +1154,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:2000 -#: modules/editorial-metadata/editorial-metadata.php:2361 +#: modules/editorial-metadata/editorial-metadata.php:2010 +#: modules/editorial-metadata/editorial-metadata.php:2371 msgid "" "Enter the dropdown option value and label. You can move options to change " "their order." @@ -1143,11 +1168,11 @@ msgstr "" msgid "Error" msgstr "Error" -#: modules/editorial-metadata/editorial-metadata.php:1368 +#: modules/editorial-metadata/editorial-metadata.php:1369 msgid "Error adding term." msgstr "Error añadiendo el término." -#: modules/editorial-metadata/editorial-metadata.php:1645 +#: modules/editorial-metadata/editorial-metadata.php:1646 msgid "Error deleting term." msgstr "Error al borrar el término." @@ -1155,8 +1180,8 @@ msgstr "Error al borrar el término." msgid "Error updating post status." msgstr "Error al actualizar el estado de la publicación." -#: modules/editorial-metadata/editorial-metadata.php:1531 -#: modules/editorial-metadata/editorial-metadata.php:1579 +#: modules/editorial-metadata/editorial-metadata.php:1532 +#: modules/editorial-metadata/editorial-metadata.php:1580 msgid "Error updating term." msgstr "Error al actualizar el término." @@ -1165,6 +1190,7 @@ msgid "Error while updating the status" msgstr "Error al actualizar el estado" #: 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 del flujo de trabajo: %s, ID de la entrada: %s, ID de " @@ -1175,11 +1201,15 @@ msgstr "" msgid "Failed" msgstr "Fallido" +#: lib/Legacy/Util.php:210 +msgid "Fast, professional support" +msgstr "Soporte rápido y profesional" + #: modules/modules-settings/modules-settings.php:50 msgid "Features" msgstr "Características" -#: modules/calendar/calendar.php:814 +#: modules/calendar/calendar.php:815 msgid "Feb" msgstr "Feb" @@ -1187,11 +1217,11 @@ msgstr "Feb" msgid "Feel free to select only the features you need." msgstr "Siéntete libre de seleccionar solo las características que necesites." -#: modules/improved-notifications/improved-notifications.php:940 +#: modules/improved-notifications/improved-notifications.php:976 msgid "field" msgstr "campo" -#: modules/calendar/calendar.php:2561 +#: modules/calendar/calendar.php:2590 msgid "Field used for sorting the calendar items in a day cell" msgstr "" "Campo utilizado para clasificar los elementos del calendario en una celda " @@ -1201,7 +1231,7 @@ msgstr "" msgid "File info" msgstr "Información del archivo" -#: modules/content-overview/content-overview.php:1144 +#: modules/content-overview/content-overview.php:1145 #: modules/notifications-log/library/NotificationsLogTable.php:640 #: modules/editorial-comments/library/EditorialCommentsTable.php:211 msgid "Filter" @@ -1223,8 +1253,8 @@ msgstr "Filtrar por aviso de usuario" msgid "Filter the content?" msgstr "¿Filtrar el contenido?" -#: modules/editorial-metadata/editorial-metadata.php:1960 -#: modules/editorial-metadata/editorial-metadata.php:2324 +#: modules/editorial-metadata/editorial-metadata.php:1970 +#: modules/editorial-metadata/editorial-metadata.php:2334 msgid "" "Filter the list of users in the editorial meta to users in the selected " "roles." @@ -1232,52 +1262,52 @@ msgstr "" "Filtra la lista de usuarios en la meta editorial para los usuarios en los " "roles seleccionados." -#: modules/editorial-metadata/editorial-metadata.php:208 +#: modules/editorial-metadata/editorial-metadata.php:209 msgid "First Draft Date" msgstr "Fecha del primer borrador" -#: modules/editorial-comments/editorial-comments.php:1237 +#: modules/editorial-comments/editorial-comments.php:1267 msgid "First Name" msgstr "Nombre" -#: modules/calendar/calendar.php:1387 +#: modules/calendar/calendar.php:1401 msgid "Five months" msgstr "Cinco meses" -#: modules/calendar/calendar.php:1353 +#: modules/calendar/calendar.php:1367 msgid "Five months ago" msgstr "Hace cinco meses" -#: modules/improved-notifications/improved-notifications.php:787 +#: modules/improved-notifications/improved-notifications.php:823 #: modules/notifications-log/library/NotificationsLogTable.php:492 msgid "For which content?" msgstr "¿Para qué contenido?" -#: modules/improved-notifications/improved-notifications.php:937 +#: modules/improved-notifications/improved-notifications.php:973 msgid "Format" msgstr "Formato" -#: modules/calendar/calendar.php:2099 +#: modules/calendar/calendar.php:2113 msgid "Forward %d weeks" msgstr "Ir %d semanas hacia adelante" -#: modules/calendar/calendar.php:2084 +#: modules/calendar/calendar.php:2098 msgid "Forward 1 week" msgstr "Ir 1 semana adelante" -#: modules/calendar/calendar.php:1385 +#: modules/calendar/calendar.php:1399 msgid "Four months" msgstr "Cuatro meses" -#: modules/calendar/calendar.php:1351 +#: modules/calendar/calendar.php:1365 msgid "Four months ago" msgstr "Hace cuatro meses" -#: modules/calendar/calendar.php:1372 +#: modules/calendar/calendar.php:1386 msgid "Four weeks" msgstr "Cuatro semanas" -#: modules/calendar/calendar.php:811 +#: modules/calendar/calendar.php:812 msgid "Fri" msgstr "Vie" @@ -1285,7 +1315,7 @@ msgstr "Vie" msgid "From date" msgstr "Fecha inicial" -#: modules/editorial-metadata/editorial-metadata.php:2810 +#: modules/editorial-metadata/editorial-metadata.php:2820 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 " @@ -1299,7 +1329,7 @@ msgstr "https://publishpress.com" msgid "https://publishpress.com/" msgstr "https://publishpress.com/" -#: modules/calendar/calendar.php:196 +#: modules/calendar/calendar.php:197 msgid "" "iCal secret key regenerated. Please inform all users they will need to " "resubscribe." @@ -1313,7 +1343,7 @@ msgstr "" msgid "Icon" msgstr "Icono" -#: modules/calendar/calendar.php:3430 lib/Notifications/Table/Workflows.php:143 +#: modules/calendar/calendar.php:3485 lib/Notifications/Table/Workflows.php:143 #: lib/Notifications/Table/Notifications.php:159 msgid "ID" msgstr "ID" @@ -1322,9 +1352,9 @@ msgstr "ID" msgid "Idea proposed; waiting for acceptance." msgstr "Idea propuesta; esperando ser aceptada." -#: modules/editorial-metadata/editorial-metadata.php:2098 -#: modules/editorial-metadata/editorial-metadata.php:2462 -#: modules/editorial-metadata/editorial-metadata.php:2817 +#: 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." @@ -1332,8 +1362,8 @@ msgstr "" "Si se activa, estos metadatos pueden verse en las pantallas «Calendario de " "contenidos» y «Resumen de contenidos»." -#: modules/editorial-metadata/editorial-metadata.php:2122 -#: modules/editorial-metadata/editorial-metadata.php:2488 +#: 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." @@ -1341,8 +1371,8 @@ 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:2146 -#: modules/editorial-metadata/editorial-metadata.php:2514 +#: modules/editorial-metadata/editorial-metadata.php:2156 +#: modules/editorial-metadata/editorial-metadata.php:2524 msgid "" "If enabled, this metadata will be available when adding new posts on the " "Content Calendar screen." @@ -1350,10 +1380,17 @@ msgstr "" "Si se activa, estos metadatos estarán disponibles al añadir nuevas entradas " "en la pantalla «Calendario de contenidos»." -#: modules/settings/settings.php:270 +#: modules/settings/settings.php:269 +#, php-format msgid "If you like %s please leave us a %s rating. Thank you!" msgstr "Si te gusta %s por favor déjanos una valoración %s. ¡Gracias!" +#: lib/Legacy/Util.php:225 +msgid "If you need help or have a new feature request, let us know." +msgstr "" +"Si necesitas ayuda o tienes una petición de nueva característica, háznoslo " +"saber." + #: modules/debug/debug.php:304 msgid "" "If you see any error or look for information regarding PublishPress, please " @@ -1367,16 +1404,16 @@ msgstr "" msgid "In Progress" msgstr "En progreso" -#: modules/editorial-metadata/editorial-metadata.php:1988 -#: modules/editorial-metadata/editorial-metadata.php:2353 +#: modules/editorial-metadata/editorial-metadata.php:1998 +#: modules/editorial-metadata/editorial-metadata.php:2363 msgid "Indicate the select type." msgstr "Indica el tipo de selección." -#: modules/editorial-metadata/editorial-metadata.php:2297 +#: modules/editorial-metadata/editorial-metadata.php:2307 msgid "Indicate the type of editorial metadata." msgstr "Indicar el tipo de metadatos editoriales." -#: modules/calendar/calendar.php:1494 +#: modules/calendar/calendar.php:1508 msgid "Initializing the calendar. Please wait..." msgstr "Iniciando el calendario. Por favor, espera…" @@ -1392,26 +1429,26 @@ msgstr "Nonce de acción no válido." msgid "Invalid channel for the notification" msgstr "Canal no válido para el aviso" -#: modules/editorial-comments/editorial-comments.php:725 -#: modules/editorial-comments/editorial-comments.php:866 -#: modules/editorial-comments/editorial-comments.php:998 -#: modules/editorial-comments/editorial-comments.php:1114 +#: 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 msgid "Invalid comment data" msgstr "Datos del comentario no válidos" -#: modules/calendar/calendar.php:3170 +#: modules/calendar/calendar.php:3225 msgid "Invalid date" msgstr "Fecha no válida" -#: modules/calendar/calendar.php:3150 +#: modules/calendar/calendar.php:3205 msgid "Invalid input" msgstr "Entrada no válida" -#: core/Error.php:80 modules/calendar/calendar.php:3141 +#: core/Error.php:80 modules/calendar/calendar.php:3196 msgid "Invalid nonce" msgstr "Nonce no válido" -#: modules/calendar/calendar.php:3729 +#: modules/calendar/calendar.php:3784 msgid "Invalid Publish Date supplied." msgstr "Fecha de publicación facilitada no válida." @@ -1419,11 +1456,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:3705 +#: modules/calendar/calendar.php:3760 msgid "Invalid Status supplied." msgstr "Estado facilitado no válido." -#: modules/calendar/calendar.php:1498 +#: modules/calendar/calendar.php:1512 msgid "" "It seems like it is taking too long. Please, try reloading the page again " "and check the browser console looking for errors." @@ -1431,15 +1468,15 @@ 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:813 +#: modules/calendar/calendar.php:814 msgid "Jan" msgstr "Ene" -#: modules/calendar/calendar.php:819 +#: modules/calendar/calendar.php:820 msgid "Jul" msgstr "Jul" -#: modules/calendar/calendar.php:818 +#: modules/calendar/calendar.php:819 msgid "Jun" msgstr "Jun" @@ -1447,20 +1484,20 @@ msgstr "Jun" msgid "Last Modified" msgstr "Última modificación" -#: modules/editorial-comments/editorial-comments.php:1238 +#: modules/editorial-comments/editorial-comments.php:1268 msgid "Last Name" msgstr "Apellido" -#: modules/calendar/calendar.php:793 +#: modules/calendar/calendar.php:794 msgid "Loading item..." msgstr "Cargando el elemento…" -#: modules/calendar/calendar.php:792 +#: modules/calendar/calendar.php:793 #: modules/notifications-log/notifications-log.php:210 msgid "Loading..." msgstr "Cargando…" -#: modules/editorial-metadata/editorial-metadata.php:285 +#: modules/editorial-metadata/editorial-metadata.php:286 msgid "Location" msgstr "Ubicación" @@ -1476,23 +1513,23 @@ msgstr "Archivo de registro" msgid "Log file not found." msgstr "Archivo de registro no encontrado." -#: modules/editorial-metadata/editorial-metadata.php:2814 +#: modules/editorial-metadata/editorial-metadata.php:2824 msgid "Make Hidden" msgstr "Hacer oculto" -#: modules/editorial-metadata/editorial-metadata.php:2825 +#: modules/editorial-metadata/editorial-metadata.php:2835 msgid "Make Viewable" msgstr "Hacer visible" -#: modules/calendar/calendar.php:815 +#: modules/calendar/calendar.php:816 msgid "Mar" msgstr "Mar" -#: modules/calendar/calendar.php:2569 +#: modules/calendar/calendar.php:2598 msgid "Max visible posts per date" msgstr "Máximo de entradas visibles por fecha" -#: modules/calendar/calendar.php:817 +#: modules/calendar/calendar.php:818 msgid "May" msgstr "May" @@ -1500,52 +1537,52 @@ msgstr "May" msgid "Message" msgstr "Mensaje" -#: modules/improved-notifications/improved-notifications.php:946 +#: modules/improved-notifications/improved-notifications.php:982 msgid "Meta fields" msgstr "Campos meta" -#: modules/editorial-metadata/editorial-metadata.php:2022 -#: modules/editorial-metadata/editorial-metadata.php:2053 -#: modules/editorial-metadata/editorial-metadata.php:2383 -#: modules/editorial-metadata/editorial-metadata.php:2414 +#: 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 msgid "Meta Value" msgstr "Valor meta" -#: modules/editorial-metadata/editorial-metadata.php:505 +#: modules/editorial-metadata/editorial-metadata.php:506 msgid "Metadata" msgstr "Metadatos" -#: modules/editorial-metadata/editorial-metadata.php:1460 +#: modules/editorial-metadata/editorial-metadata.php:1461 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. " "Por favor, elige otro diferente." -#: modules/editorial-metadata/editorial-metadata.php:113 +#: modules/editorial-metadata/editorial-metadata.php:114 msgid "Metadata order updated." msgstr "Orden de los metadatos actualizado." -#: modules/editorial-metadata/editorial-metadata.php:109 +#: modules/editorial-metadata/editorial-metadata.php:110 msgid "Metadata term added." msgstr "Término de metadatos agregado." -#: modules/editorial-metadata/editorial-metadata.php:112 +#: modules/editorial-metadata/editorial-metadata.php:113 msgid "Metadata term deleted." msgstr "Término de metadatos eliminado." -#: modules/editorial-metadata/editorial-metadata.php:111 +#: modules/editorial-metadata/editorial-metadata.php:112 msgid "Metadata term doesn't exist." msgstr "El término de metadatos no existe." -#: modules/editorial-metadata/editorial-metadata.php:110 +#: modules/editorial-metadata/editorial-metadata.php:111 msgid "Metadata term updated." msgstr "Término de metadatos actualizado." -#: modules/editorial-metadata/editorial-metadata.php:2688 +#: modules/editorial-metadata/editorial-metadata.php:2698 msgid "Metadata Type" msgstr "Tipo de metadatos" -#: modules/editorial-metadata/editorial-metadata.php:114 +#: modules/editorial-metadata/editorial-metadata.php:115 msgid "Metadata visibility changed." msgstr "Visibilidad de los metadatos cambiado." @@ -1557,7 +1594,7 @@ msgstr "minutos" msgid "Modified on" msgstr "Modificado el" -#: modules/calendar/calendar.php:807 +#: modules/calendar/calendar.php:808 msgid "Mon" msgstr "Lun" @@ -1573,67 +1610,67 @@ 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:1888 +#: modules/content-overview/content-overview.php:1912 msgid "Move this item to the Trash" msgstr "Mover este elemento a la papelera" -#: modules/calendar/calendar.php:795 +#: modules/calendar/calendar.php:796 msgid "Moving the item..." msgstr "Moviendo el elemento…" -#: modules/editorial-metadata/editorial-metadata.php:1971 -#: modules/editorial-metadata/editorial-metadata.php:2333 +#: modules/editorial-metadata/editorial-metadata.php:1981 +#: modules/editorial-metadata/editorial-metadata.php:2343 msgid "Multiple Select" msgstr "Selección múltiple" #: modules/improved-notifications/improved-notifications.php:406 -#: modules/improved-notifications/improved-notifications.php:1097 -#: modules/improved-notifications/improved-notifications.php:1114 +#: modules/improved-notifications/improved-notifications.php:1133 +#: modules/improved-notifications/improved-notifications.php:1150 msgid "Muted" msgstr "Silenciado" -#: modules/dashboard/dashboard.php:183 modules/dashboard/dashboard.php:346 -msgid "My Content Notifications" -msgstr "Mis avisos de contenido" - -#: modules/editorial-metadata/editorial-metadata.php:2228 -#: modules/editorial-metadata/editorial-metadata.php:2686 +#: modules/editorial-metadata/editorial-metadata.php:2238 +#: modules/editorial-metadata/editorial-metadata.php:2696 #: modules/custom-status/custom-status.php:2123 #: modules/custom-status/custom-status.php:2779 msgid "Name" msgstr "Nombre" -#: modules/editorial-metadata/editorial-metadata.php:1296 -#: modules/editorial-metadata/editorial-metadata.php:1469 +#: modules/editorial-metadata/editorial-metadata.php:1297 +#: modules/editorial-metadata/editorial-metadata.php:1470 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:1306 -#: modules/editorial-metadata/editorial-metadata.php:1313 -#: modules/editorial-metadata/editorial-metadata.php:1482 +#: modules/editorial-metadata/editorial-metadata.php:1307 +#: modules/editorial-metadata/editorial-metadata.php:1314 +#: modules/editorial-metadata/editorial-metadata.php:1483 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:1289 +#: modules/editorial-metadata/editorial-metadata.php:1290 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:1474 +#: modules/editorial-metadata/editorial-metadata.php:1475 msgid "" "Name conflicts with slug for another term. Please choose something else." msgstr "" "El nombre del slug entra en conflicto con otro término. Por favor, elige " "otro diferente." +#: lib/Legacy/Util.php:220 +msgid "Need PublishPress Planner Support?" +msgstr "¿Necesitas soporte para PublishPress Planner?" + #: lib/Notifications/Workflow/Step/Event/Filter/Post_Status.php:59 msgid "New" msgstr "Nueva" -#: modules/editorial-metadata/editorial-metadata.php:453 +#: modules/editorial-metadata/editorial-metadata.php:454 msgid "New Editorial Metadata" msgstr "Nuevos metadatos editoriales" @@ -1650,6 +1687,7 @@ msgid "New Notify User" msgstr "Nuevo aviso de usuario" #: lib/Notifications/Workflow/Step/Event/Post_StatusTransition.php:118 +#, php-format msgid "New post status: %s" msgstr "Nuevo estado de la entrada: %s" @@ -1657,26 +1695,27 @@ msgstr "Nuevo estado de la entrada: %s" msgid "New status" msgstr "Nuevo estado" -#: modules/editorial-comments/editorial-comments.php:1234 +#: modules/editorial-comments/editorial-comments.php:1264 msgid "Nickname" msgstr "Alias" -#: modules/calendar/calendar.php:1395 +#: modules/calendar/calendar.php:1409 msgid "Nine months" msgstr "Nueve meses" -#: modules/editorial-metadata/editorial-metadata.php:2087 -#: modules/editorial-metadata/editorial-metadata.php:2111 -#: modules/editorial-metadata/editorial-metadata.php:2135 -#: modules/editorial-metadata/editorial-metadata.php:2446 -#: modules/editorial-metadata/editorial-metadata.php:2473 -#: modules/editorial-metadata/editorial-metadata.php:2499 -#: modules/editorial-metadata/editorial-metadata.php:2752 +#: 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/input-handlers/editorial-metadata-input-checkbox-handler.php:143 msgid "No" msgstr "No" #: modules/notifications/notifications.php:705 +#, php-format msgid "No active notifications found for this %s." msgstr "No se ha encontrado ningún aviso activo para esta %s." @@ -1684,7 +1723,7 @@ msgstr "No se ha encontrado ningún aviso activo para esta %s." msgid "No custom statuses found." msgstr "No se encontraron estados personalizados." -#: modules/calendar/calendar.php:3664 +#: modules/calendar/calendar.php:3719 msgid "No date supplied." msgstr "No se proprocionó fecha." @@ -1692,11 +1731,11 @@ msgstr "No se proprocionó fecha." msgid "No editorial comments." msgstr "Sin comentarios editoriales" -#: modules/editorial-metadata/editorial-metadata.php:2783 +#: modules/editorial-metadata/editorial-metadata.php:2793 msgid "No editorial metadata found." msgstr "No se encontraron metadatos editoriales." -#: modules/calendar/calendar.php:3161 +#: modules/calendar/calendar.php:3216 msgid "No enough permissions" msgstr "No tienes los permisos necesarios" @@ -1704,7 +1743,7 @@ msgstr "No tienes los permisos necesarios" msgid "No notification found" msgstr "No se ha encontrado ningún aviso" -#: modules/notifications-log/notifications-log.php:283 +#: modules/notifications-log/notifications-log.php:284 msgid "No notifications found." msgstr "No se ha encontrado ningún aviso." @@ -1723,7 +1762,7 @@ msgstr "No hay avisos de perfiles" msgid "No notify users" msgstr "No hay avisos de usuarios" -#: modules/calendar/calendar.php:833 +#: modules/calendar/calendar.php:834 msgid "No terms" msgstr "No hay términos" @@ -1731,7 +1770,7 @@ msgstr "No hay términos" msgid "No workflows found." msgstr "Ningún flujo de trabajo encontrado." -#: modules/editorial-comments/editorial-comments.php:717 +#: modules/editorial-comments/editorial-comments.php:747 msgid "" "Nonce check failed. Please ensure you're supposed to be adding editorial " "comments." @@ -1739,9 +1778,9 @@ msgstr "" "Falló la comprobación del nonce. Por favor, asegúrate si deberías estar " "añadiendo comentarios editoriales." -#: modules/editorial-comments/editorial-comments.php:855 -#: modules/editorial-comments/editorial-comments.php:987 -#: modules/editorial-comments/editorial-comments.php:1104 +#: modules/editorial-comments/editorial-comments.php:885 +#: modules/editorial-comments/editorial-comments.php:1017 +#: modules/editorial-comments/editorial-comments.php:1134 msgid "" "Nonce check failed. Please ensure you're supposed to be editing editorial " "comments." @@ -1749,8 +1788,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:1784 -#: modules/content-overview/content-overview.php:1773 +#: modules/calendar/calendar.php:1798 +#: modules/content-overview/content-overview.php:1797 msgid "None" msgstr "Ninguno" @@ -1758,10 +1797,6 @@ msgstr "Ninguno" msgid "Not filtered" msgstr "Sin filtrar" -#: modules/dashboard/dashboard.php:174 modules/dashboard/dashboard.php:353 -msgid "Notepad" -msgstr "Cuaderno de notas" - #: publishpress.php:1237 publishpress.php:1242 #: modules/notifications-log/notifications-log.php:209 msgid "Notification" @@ -1777,10 +1812,11 @@ msgstr "No se ha encontrado el registro de los avisos" msgid "Notifications" msgstr "Avisos" +#: modules/improved-notifications/improved-notifications.php:741 #: modules/notifications-log/notifications-log.php:75 -#: modules/notifications-log/notifications-log.php:262 -#: modules/notifications-log/notifications-log.php:485 +#: modules/notifications-log/notifications-log.php:263 #: modules/notifications-log/notifications-log.php:486 +#: modules/notifications-log/notifications-log.php:487 msgid "Notifications Log" msgstr "Registro de avisos" @@ -1830,11 +1866,11 @@ msgstr "Avisos de usuarios" msgid "Notify when content is published" msgstr "Avisar cuando se publique contenido" -#: modules/calendar/calendar.php:823 +#: modules/calendar/calendar.php:824 msgid "Nov" msgstr "Nov" -#: modules/editorial-metadata/editorial-metadata.php:286 +#: modules/editorial-metadata/editorial-metadata.php:287 msgid "Number" msgstr "Número" @@ -1842,15 +1878,16 @@ msgstr "Número" msgid "Number of Columns: " msgstr "Número de columnas: " -#: modules/calendar/calendar.php:822 +#: modules/calendar/calendar.php:823 msgid "Oct" msgstr "Oct" #: lib/Notifications/Workflow/Step/Event/Post_StatusTransition.php:114 +#, php-format msgid "Old post status: %s" msgstr "Estado anterior de la entrada: %s" -#: modules/improved-notifications/improved-notifications.php:941 +#: modules/improved-notifications/improved-notifications.php:977 msgid "" "On each shortcode, you can select one or more fields. If more than one, they " "will be displayed separated by \", \"." @@ -1858,15 +1895,15 @@ 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:1378 +#: modules/calendar/calendar.php:1392 msgid "One month" msgstr "Un mes" -#: modules/calendar/calendar.php:1345 +#: modules/calendar/calendar.php:1359 msgid "One month ago" msgstr "Hace un mes" -#: modules/calendar/calendar.php:1366 +#: modules/calendar/calendar.php:1380 msgid "One week" msgstr "Una semana" @@ -1874,15 +1911,15 @@ msgstr "Una semana" msgid "Options" msgstr "Opciones" -#: modules/editorial-metadata/editorial-metadata.php:119 +#: modules/editorial-metadata/editorial-metadata.php:120 #: modules/custom-status/custom-status.php:112 -#: modules/calendar/calendar.php:204 -#: modules/editorial-comments/editorial-comments.php:81 +#: modules/calendar/calendar.php:205 +#: modules/editorial-comments/editorial-comments.php:82 #: modules/notifications/notifications.php:93 msgid "Overview" msgstr "Resumen" -#: modules/editorial-metadata/editorial-metadata.php:287 +#: modules/editorial-metadata/editorial-metadata.php:288 msgid "Paragraph" msgstr "Párrafo" @@ -1935,16 +1972,16 @@ msgid "Please correct your form errors below and try again." msgstr "" "Por favor, corrige los errores del formulario de debajo e inténtalo de nuevo." -#: modules/editorial-comments/editorial-comments.php:748 -#: modules/editorial-comments/editorial-comments.php:912 +#: modules/editorial-comments/editorial-comments.php:778 +#: modules/editorial-comments/editorial-comments.php:942 msgid "Please enter a comment." msgstr "Por favor, introduce un comentario." -#: modules/editorial-metadata/editorial-metadata.php:1446 +#: modules/editorial-metadata/editorial-metadata.php:1447 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:1276 +#: modules/editorial-metadata/editorial-metadata.php:1277 msgid "Please enter a name for the editorial metadata." msgstr "Por favor, introduce un nombre para los metadatos editoriales." @@ -1953,11 +1990,11 @@ msgstr "Por favor, introduce un nombre para los metadatos editoriales." msgid "Please enter a name for the status" msgstr "Por favor, introduce un nombre para el estado" -#: modules/editorial-metadata/editorial-metadata.php:1283 +#: modules/editorial-metadata/editorial-metadata.php:1284 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:1451 +#: modules/editorial-metadata/editorial-metadata.php:1452 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 " @@ -1975,7 +2012,7 @@ msgstr "" "Por favor, ten en cuenta que marcando la casilla se aplicarán todos los " "estados a ese tipo de contenido." -#: modules/editorial-metadata/editorial-metadata.php:1323 +#: modules/editorial-metadata/editorial-metadata.php:1324 msgid "Please select a valid metadata type." msgstr "Por favor, selecciona un tipo de metadatos válido." @@ -1983,11 +2020,11 @@ 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:805 +#: modules/calendar/calendar.php:806 msgid "Please, wait! Loading the form fields..." msgstr "¡Por favor, espera! Cargando los campos del formulario..." -#: modules/editorial-metadata/editorial-metadata.php:448 +#: modules/editorial-metadata/editorial-metadata.php:449 msgid "Popular Editorial Metadata" msgstr "Metadatos editoriales populares" @@ -2003,7 +2040,7 @@ msgstr "Avisos de perfiles populares" msgid "Popular Notify Users" msgstr "Avisos de usuarios populares" -#: modules/editorial-metadata/editorial-metadata.php:2685 +#: modules/editorial-metadata/editorial-metadata.php:2695 #: modules/custom-status/custom-status.php:2778 msgid "Position" msgstr "Posición" @@ -2012,11 +2049,11 @@ msgstr "Posición" msgid "Post" msgstr "Entrada" -#: modules/calendar/calendar.php:3805 +#: modules/calendar/calendar.php:3860 msgid "Post could not be created" msgstr "La publicación no pudo ser creada" -#: modules/calendar/calendar.php:3798 +#: modules/calendar/calendar.php:3853 msgid "Post created successfully" msgstr "Entrada creada correctamente" @@ -2024,7 +2061,7 @@ msgstr "Entrada creada correctamente" msgid "Post Date" msgstr "Fecha de publicación" -#: modules/calendar/calendar.php:187 +#: modules/calendar/calendar.php:188 msgid "Post date updated." msgstr "Fecha de publicación actualizada." @@ -2040,12 +2077,12 @@ msgstr "ID de la entrada: %d" msgid "Post idea assigned to writer." msgstr "Idea de publicación asignada al escritor." -#: modules/calendar/calendar.php:3156 +#: modules/calendar/calendar.php:3211 msgid "Post not found" msgstr "Entrada no encontrada" -#: modules/calendar/calendar.php:2792 modules/calendar/calendar.php:3441 -#: modules/calendar/calendar.php:3521 +#: modules/calendar/calendar.php:2841 modules/calendar/calendar.php:3496 +#: modules/calendar/calendar.php:3576 msgid "Post Status" msgstr "Estado de la entrada" @@ -2066,11 +2103,7 @@ msgstr "El estado de la publicación no existe." msgid "Post status updated." msgstr "Estado de la publicación actualizado." -#: modules/dashboard/dashboard.php:339 -msgid "Post Status Widget" -msgstr "Widget de estado de publicación" - -#: modules/calendar/calendar.php:1957 modules/calendar/calendar.php:3425 +#: modules/calendar/calendar.php:1971 modules/calendar/calendar.php:3480 #: modules/content-overview/content-overview.php:628 msgid "Post Type" msgstr "Tipo de contenido" @@ -2079,24 +2112,25 @@ msgstr "Tipo de contenido" msgid "Post type" msgstr "Tipo de contenido" -#: modules/calendar/calendar.php:803 +#: modules/calendar/calendar.php:804 msgid "Post type not found" msgstr "No se ha encontrado el tipo de contenido" -#: modules/calendar/calendar.php:804 +#: modules/calendar/calendar.php:805 msgid "Post type:" msgstr "Tipo de contenido:" #: modules/notifications-log/library/NotificationsLogTable.php:151 +#, php-format msgid "Post type: %s" msgstr "Tipo de contenido: %s" -#: modules/editorial-metadata/editorial-metadata.php:2687 +#: modules/editorial-metadata/editorial-metadata.php:2697 #: lib/Notifications/Workflow/Step/Event_Content/Filter/Post_Type.php:34 msgid "Post Types" msgstr "Tipos de contenido" -#: modules/calendar/calendar.php:2521 +#: modules/calendar/calendar.php:2542 msgid "Post types to show" msgstr "Tipos de contenidos a mostrar" @@ -2104,21 +2138,18 @@ msgstr "Tipos de contenidos a mostrar" msgid "Post types to show:" msgstr "Tipos de contenido a mostrar:" -#: modules/dashboard/dashboard.php:211 -msgid "Posts at a Glance" -msgstr "Publicaciones de un vistazo" - -#: modules/calendar/calendar.php:2545 +#: modules/calendar/calendar.php:2574 msgid "Posts publish time format" msgstr "Formato de hora de las entradas publicadas" -#: modules/calendar/calendar.php:1828 modules/calendar/calendar.php:3485 -#: modules/content-overview/content-overview.php:1921 +#: modules/calendar/calendar.php:1842 modules/calendar/calendar.php:3540 +#: modules/content-overview/content-overview.php:1945 msgid "Preview" msgstr "Vista previa" -#: modules/calendar/calendar.php:1825 -#: modules/content-overview/content-overview.php:1918 +#: modules/calendar/calendar.php:1839 +#: modules/content-overview/content-overview.php:1942 +#, php-format msgid "Preview “%s”" msgstr "Vista previa “%s”" @@ -2126,7 +2157,7 @@ msgstr "Vista previa “%s”" msgid "Previous status" msgstr "Estado anterior" -#: modules/content-overview/content-overview.php:1170 +#: modules/content-overview/content-overview.php:1194 msgid "Print" msgstr "Imprimir" @@ -2138,21 +2169,21 @@ msgstr "Privado" msgid "Privately Published" msgstr "Publicado privadamente" -#: modules/calendar/calendar.php:3527 +#: modules/calendar/calendar.php:3582 msgid "Publish Time" msgstr "Hora de publicación" #: common/php/class-module.php:267 modules/custom-status/custom-status.php:957 -#: modules/calendar/calendar.php:1970 +#: modules/calendar/calendar.php:1984 msgid "Published" msgstr "Publicado" -#: modules/calendar/calendar.php:2791 +#: modules/calendar/calendar.php:2840 msgid "Publishing Time" msgstr "Hora de la publicación" #. Author of the plugin -#: modules/settings/settings.php:60 modules/calendar/calendar.php:1332 +#: modules/settings/settings.php:61 modules/calendar/calendar.php:1346 msgid "PublishPress" msgstr "PublishPress" @@ -2161,7 +2192,7 @@ msgid "PublishPress Debug Log" msgstr "Registro de depuración de PublishPress" #. Name of the plugin -#: modules/settings/settings.php:267 +#: modules/settings/settings.php:266 msgid "PublishPress Planner" msgstr "PublishPress Planner" @@ -2184,47 +2215,56 @@ msgstr "" "remove other instances of PublishPress, specially if you are using " "PublishPress Pro." -#: modules/settings/settings.php:140 +#: modules/settings/settings.php:141 msgid "PublishPress Settings" msgstr "Ajustes de PublishPress" -#: modules/improved-notifications/improved-notifications.php:938 +#: modules/improved-notifications/improved-notifications.php:974 msgid "Receiver" msgstr "Destinatario" -#: modules/calendar/calendar.php:2646 +#: modules/calendar/calendar.php:2675 msgid "Regenerate calendar feed secret" msgstr "Regenerar clave secreta del feed del calendario" -#: modules/editorial-metadata/editorial-metadata.php:1692 +#: modules/editorial-metadata/editorial-metadata.php:1693 msgid "Register metadata for these post types:" msgstr "Registrar metadatos para estos tipos de contenido:" -#: modules/editorial-comments/editorial-comments.php:210 -#: modules/editorial-comments/editorial-comments.php:689 +#: modules/editorial-comments/editorial-comments.php:211 +#: modules/editorial-comments/editorial-comments.php:719 msgid "Remove" msgstr "Eliminar" -#: modules/editorial-comments/editorial-comments.php:593 +#: lib/Legacy/Util.php:209 +msgid "Remove PublishPress ads and branding" +msgstr "Eliminar los anuncios y la marca de PublishPress" + +#: modules/editorial-comments/editorial-comments.php:623 msgid "Reply" msgstr "Responder" -#: modules/editorial-comments/editorial-comments.php:590 +#: modules/editorial-comments/editorial-comments.php:620 msgid "Reply to this comment" msgstr "Responder a este comentario" #: modules/notifications/notifications.php:2138 +#, php-format msgid "Reply: %s" msgstr "Responder a: %s" +#: lib/Legacy/Util.php:227 +msgid "Request Support" +msgstr "Solicitar soporte" + #: modules/notifications-log/library/NotificationsLogTable.php:355 #: modules/notifications-log/library/NotificationsLogTable.php:400 msgid "Reschedule" msgstr "Reprogramar" -#: modules/calendar/calendar.php:2076 +#: modules/calendar/calendar.php:2090 #: modules/content-overview/content-overview.php:1025 -#: modules/content-overview/content-overview.php:1146 +#: modules/content-overview/content-overview.php:1147 msgid "Reset" msgstr "Restablecer" @@ -2242,6 +2282,7 @@ msgstr "Perfil" #: lib/Notifications/Workflow/Step/Receiver/Role.php:147 #: lib/Notifications/Workflow/Step/Receiver/Follower.php:100 +#, php-format msgid "role:%s" msgstr "perfil: %s" @@ -2250,28 +2291,29 @@ msgstr "perfil: %s" msgid "Roles" msgstr "Perfiles" -#: modules/calendar/calendar.php:812 +#: modules/calendar/calendar.php:813 msgid "Sat" msgstr "Sáb" -#: modules/calendar/calendar.php:799 modules/calendar/calendar.php:1854 +#: modules/calendar/calendar.php:800 modules/calendar/calendar.php:1868 msgid "Save" msgstr "Guardar" -#: modules/calendar/calendar.php:1848 +#: modules/calendar/calendar.php:1862 +#, php-format msgid "Save “%s”" msgstr "Guardar “%s”" -#: modules/calendar/calendar.php:801 +#: modules/calendar/calendar.php:802 msgid "Save and edit" msgstr "Guardar y editar" -#: modules/calendar/calendar.php:800 +#: modules/calendar/calendar.php:801 msgid "Saving..." msgstr "Guardando..." #: common/php/class-module.php:269 modules/custom-status/custom-status.php:919 -#: modules/calendar/calendar.php:1965 +#: modules/calendar/calendar.php:1979 #: modules/notifications-log/library/NotificationsLogTable.php:523 msgid "Scheduled" msgstr "Programado" @@ -2289,15 +2331,15 @@ msgid "Search" msgstr "Buscar" #: modules/content-overview/content-overview.php:1048 -#: modules/content-overview/content-overview.php:1323 +#: modules/content-overview/content-overview.php:1347 msgid "Search box" msgstr "Caja de búsqueda" -#: modules/editorial-comments/editorial-comments.php:283 +#: modules/editorial-comments/editorial-comments.php:289 msgid "Search Comments" msgstr "Buscar comentarios" -#: modules/editorial-metadata/editorial-metadata.php:447 +#: modules/editorial-metadata/editorial-metadata.php:448 msgid "Search Editorial Metadata" msgstr "Buscar metadatos editoriales" @@ -2318,12 +2360,12 @@ msgid "Search Notify Users" msgstr "Buscar avisos de usuarios" #. %s: search keywords -#: modules/editorial-comments/editorial-comments.php:271 +#: modules/editorial-comments/editorial-comments.php:276 #, php-format msgid "Search results for “%s”" msgstr "Resultados de la búsqueda de «%s»" -#: modules/improved-notifications/improved-notifications.php:925 +#: modules/improved-notifications/improved-notifications.php:961 msgid "Select at least one option for each section." msgstr "Selecciona al menos una opción para cada sección." @@ -2332,21 +2374,26 @@ msgstr "Selecciona al menos una opción para cada sección." msgid "Select Icon" msgstr "Seleccionar el icono" -#: modules/editorial-metadata/editorial-metadata.php:1948 -#: modules/editorial-metadata/editorial-metadata.php:2310 +#: modules/editorial-metadata/editorial-metadata.php:1958 +#: modules/editorial-metadata/editorial-metadata.php:2320 msgid "Select roles..." msgstr "Seleccionar perfiles…" -#: modules/editorial-metadata/editorial-metadata.php:1966 -#: modules/editorial-metadata/editorial-metadata.php:2329 +#: modules/editorial-metadata/editorial-metadata.php:1976 +#: modules/editorial-metadata/editorial-metadata.php:2339 msgid "Select Type" msgstr "Seleccionar el tipo" +#: lib/Legacy/Util.php:207 +#| msgid "Search Notifications" +msgid "Send reminder notifications" +msgstr "Enviar avisos de recordatorio" + #: modules/notifications-log/library/NotificationsLogTable.php:282 msgid "Sent" msgstr "Enviado" -#: modules/calendar/calendar.php:821 +#: modules/calendar/calendar.php:822 msgid "Sep" msgstr "Sep" @@ -2362,24 +2409,24 @@ msgstr "Separa los avisos de perfiles con comas" msgid "Separate notify users with commas" msgstr "Separa los avisos de usuarios con comas" -#: modules/settings/settings.php:141 +#: modules/settings/settings.php:142 msgid "Settings" msgstr "Ajustes" -#: modules/settings/settings.php:123 +#: modules/settings/settings.php:124 msgid "settings" msgstr "ajustes" -#: modules/calendar/calendar.php:1391 +#: modules/calendar/calendar.php:1405 msgid "Seven months" msgstr "Siete meses" -#: modules/improved-notifications/improved-notifications.php:939 +#: modules/improved-notifications/improved-notifications.php:975 msgid "shortcode" msgstr "shortcode" -#: modules/editorial-metadata/editorial-metadata.php:2107 -#: modules/editorial-metadata/editorial-metadata.php:2470 +#: 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" @@ -2387,13 +2434,13 @@ msgstr "Mostrar como filtros de resumen de contenido" msgid "Show content from" msgstr "Mostrar contenido desde" -#: modules/editorial-metadata/editorial-metadata.php:2131 -#: modules/editorial-metadata/editorial-metadata.php:2496 +#: 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:2179 -#: modules/editorial-metadata/editorial-metadata.php:2545 +#: modules/editorial-metadata/editorial-metadata.php:2189 +#: modules/editorial-metadata/editorial-metadata.php:2555 msgid "Show on Post Types screen" msgstr "Mostrar en la pantalla «Tipos de contenido»" @@ -2410,8 +2457,8 @@ msgstr "" "Mostrar el menú desplegable de estados en la pantalla de edición de la " "publicación:" -#: modules/editorial-metadata/editorial-metadata.php:1970 -#: modules/editorial-metadata/editorial-metadata.php:2332 +#: modules/editorial-metadata/editorial-metadata.php:1980 +#: modules/editorial-metadata/editorial-metadata.php:2342 msgid "Single Select" msgstr "Selección individual" @@ -2420,11 +2467,11 @@ msgstr "Selección individual" msgid "Site Administrator" msgstr "Administrador del sitio" -#: modules/calendar/calendar.php:1389 +#: modules/calendar/calendar.php:1403 msgid "Six months" msgstr "Seis meses" -#: modules/calendar/calendar.php:1355 +#: modules/calendar/calendar.php:1369 msgid "Six months ago" msgstr "Hace seis meses" @@ -2445,13 +2492,18 @@ msgstr "Omitir el aviso para el usuario que ha desencadenado la acción" msgid "Skipped" msgstr "Omitido" -#: modules/editorial-metadata/editorial-metadata.php:1899 -#: modules/editorial-metadata/editorial-metadata.php:2242 +#: lib/Legacy/Util.php:206 +#| msgid "Blacklisted taxonomies for Notifications" +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/custom-status/custom-status.php:1986 msgid "Slug" msgstr "Slug" -#: modules/editorial-metadata/editorial-metadata.php:1300 +#: modules/editorial-metadata/editorial-metadata.php:1301 msgid "Slug already in use. Please choose another." msgstr "El slug ya está en uso. Por favor, selecciona otro." @@ -2459,11 +2511,7 @@ msgstr "El slug ya está en uso. Por favor, selecciona otro." msgid "slug1,slug2" msgstr "slug1,slug2" -#: modules/dashboard/dashboard.php:316 -msgid "Sorry! You're not subscribed to any posts!" -msgstr "¡Lo siento! ¡No estás suscrito a ninguna publicación!" - -#: modules/editorial-comments/editorial-comments.php:1050 +#: modules/editorial-comments/editorial-comments.php:1080 msgid "" "Sorry, you can't delete this editorial comment because it has some replies." msgstr "" @@ -2474,7 +2522,7 @@ msgstr "" msgid "Sorry, you do not have permission to edit custom statuses." msgstr "Lo siento, no tienes permisos para editar los estados personalizados." -#: modules/editorial-comments/editorial-comments.php:738 +#: modules/editorial-comments/editorial-comments.php:768 msgid "" "Sorry, you don't have the privileges to add editorial comments. Please talk " "to your Administrator." @@ -2482,8 +2530,8 @@ msgstr "" "Lo siento, no tienes privilegios para añadir comentarios editoriales. Por " "favor habla con tu administrador." -#: modules/editorial-comments/editorial-comments.php:1029 -#: modules/editorial-comments/editorial-comments.php:1133 +#: modules/editorial-comments/editorial-comments.php:1059 +#: modules/editorial-comments/editorial-comments.php:1163 msgid "" "Sorry, you don't have the privileges to delete this editorial comment. " "Please talk to your Administrator." @@ -2491,8 +2539,8 @@ msgstr "" "Lo siento, pero no tienes los privilegios para borrar este comentario " "editorial. Por favor, habla con tu administrador." -#: modules/editorial-comments/editorial-comments.php:881 -#: modules/editorial-comments/editorial-comments.php:1013 +#: modules/editorial-comments/editorial-comments.php:911 +#: modules/editorial-comments/editorial-comments.php:1043 msgid "" "Sorry, you don't have the privileges to edit editorial comments. Please talk " "to your Administrator." @@ -2500,7 +2548,7 @@ msgstr "" "Lo siento, pero no tienes los privilegios para editar estos comentarios " "editoriales. Por favor, habla con tu administrador." -#: modules/editorial-comments/editorial-comments.php:899 +#: modules/editorial-comments/editorial-comments.php:929 msgid "" "Sorry, you don't have the privileges to edit this editorial comment. Please " "talk to your Administrator." @@ -2508,7 +2556,7 @@ msgstr "" "Lo siento, pero no tienes los privilegios para editar este comentario " "editorial. Por favor, habla con tu administrador." -#: modules/calendar/calendar.php:1339 +#: modules/calendar/calendar.php:1353 msgid "Start date" msgstr "Fecha de inicio" @@ -2553,6 +2601,7 @@ msgstr "Orden de los estados actualizado." #. 1: post type, 2: post id, 3. post title, 4. user name, 5. user email #: modules/notifications/notifications.php:2032 +#, php-format 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" @@ -2561,7 +2610,7 @@ msgstr "El estado se cambió de %1$s #%2$s «%3$s» por %4$s %5$s" msgid "Statuses" msgstr "Estados" -#: modules/calendar/calendar.php:2537 +#: modules/calendar/calendar.php:2566 msgid "Statuses to display publish time" msgstr "Estados para mostrar la hora de publicación" @@ -2574,7 +2623,7 @@ msgstr "Deja de avisarme" msgid "Subject" msgstr "Asunto" -#: modules/notifications-log/notifications-log.php:813 +#: modules/notifications-log/notifications-log.php:814 msgid "Subject:" msgstr "Asunto:" @@ -2582,19 +2631,15 @@ msgstr "Asunto:" msgid "Submitted on" msgstr "Enviado el" -#: modules/calendar/calendar.php:1334 +#: modules/calendar/calendar.php:1348 msgid "Subscribe in iCal or Google Calendar" msgstr "Suscríbete en iCal o Google Calendar" -#: modules/calendar/calendar.php:2529 -msgid "Subscription in iCal or Google Calendar" -msgstr "Suscripción en iCal o Google Calendar" - #: modules/notifications-log/library/NotificationsLogTable.php:515 msgid "Success" msgstr "Correcto" -#: modules/calendar/calendar.php:806 +#: modules/calendar/calendar.php:807 msgid "Sun" msgstr "Dom" @@ -2602,13 +2647,13 @@ msgstr "Dom" msgid "synchronous" msgstr "síncrono" -#: modules/calendar/calendar.php:3456 +#: modules/calendar/calendar.php:3511 msgid "Tag" msgid_plural "Tags" msgstr[0] "Etiqueta" msgstr[1] "Etiquetas" -#: modules/calendar/calendar.php:3555 +#: modules/calendar/calendar.php:3610 msgid "Tags" msgstr "Etiquetas" @@ -2620,17 +2665,17 @@ msgstr "Taxonomías a mostrar:" msgid "Taxonomy" msgstr "Taxonomía" -#: modules/editorial-metadata/editorial-metadata.php:445 +#: modules/editorial-metadata/editorial-metadata.php:446 msgctxt "taxonomy general name" msgid "Metadata" msgstr "Metadatos" -#: modules/editorial-metadata/editorial-metadata.php:446 +#: modules/editorial-metadata/editorial-metadata.php:447 msgctxt "taxonomy singular name" msgid "Metadata" msgstr "Metadatos" -#: modules/calendar/calendar.php:1397 +#: modules/calendar/calendar.php:1411 msgid "Ten months" msgstr "Diez meses" @@ -2638,16 +2683,16 @@ msgstr "Diez meses" msgid "Terms" msgstr "Términos" -#: modules/editorial-metadata/editorial-metadata.php:1604 +#: modules/editorial-metadata/editorial-metadata.php:1605 #: modules/custom-status/custom-status.php:1821 msgid "Terms not set." msgstr "Términos no establecidos." -#: modules/editorial-metadata/editorial-metadata.php:288 +#: modules/editorial-metadata/editorial-metadata.php:289 msgid "Text" msgstr "Texto" -#: modules/editorial-metadata/editorial-metadata.php:2251 +#: modules/editorial-metadata/editorial-metadata.php:2261 msgid "" "The \"slug\" is the URL-friendly version of the name. It is usually all " "lowercase and contains only letters, numbers, and hyphens." @@ -2660,8 +2705,8 @@ msgstr "" msgid "The color is used to identify the status." msgstr "El color se usa para identificar el estado." -#: modules/editorial-metadata/editorial-metadata.php:1920 -#: modules/editorial-metadata/editorial-metadata.php:2268 +#: modules/editorial-metadata/editorial-metadata.php:1930 +#: modules/editorial-metadata/editorial-metadata.php:2278 msgid "" "The description can be used to communicate with your team about what the " "metadata is for." @@ -2687,12 +2732,12 @@ msgstr "La integración The Events Calendar " msgid "The icon is used to visually represent the status." msgstr "El icono se usa para representar visualmente el estado." -#: modules/editorial-metadata/editorial-metadata.php:1934 +#: modules/editorial-metadata/editorial-metadata.php:1944 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:1894 -#: modules/editorial-metadata/editorial-metadata.php:2237 +#: modules/editorial-metadata/editorial-metadata.php:1904 +#: modules/editorial-metadata/editorial-metadata.php:2247 msgid "The name is for labeling the metadata field." msgstr "El nombre es para etiquetar el campo de metadatos." @@ -2708,14 +2753,7 @@ msgstr "" "El aviso se ha establecido como «Programado», pero la tarea cron no se " "encuentra" -#: modules/dashboard/dashboard.php:410 -msgid "" -"The notifications module will need to be enabled for this widget to display." -msgstr "" -"El módulo de avisos necesitará estar activado para que se muestre este " -"widget." - -#: modules/calendar/calendar.php:2613 +#: modules/calendar/calendar.php:2642 msgid "" "The number of weeks shown on the calendar can be changed on a user-by-user " "basis using the calendar's screen options." @@ -2727,11 +2765,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:3675 +#: modules/calendar/calendar.php:3730 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:4154 +#: modules/calendar/calendar.php:4209 msgid "" "The selected user doesn't have enough permissions to be set as the post " "author." @@ -2739,7 +2777,7 @@ msgstr "" "El usuario seleccionado no tiene suficientes permisos como para definirle " "como autor de la entrada." -#: modules/editorial-metadata/editorial-metadata.php:1904 +#: modules/editorial-metadata/editorial-metadata.php:1914 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." @@ -2751,30 +2789,31 @@ msgstr "" "El slug es el identificador único para el estado y se cambia cuando se " "cambia el nombre." -#: modules/content-overview/content-overview.php:1540 +#: modules/content-overview/content-overview.php:1564 msgid "There are no posts in the range or filter specified." msgstr "No hay entradas en el rango o filtro especificado." -#: modules/settings/settings.php:290 +#: modules/settings/settings.php:289 msgid "There are no PublishPress modules registered" msgstr "No hay módulos de PublishPress registrados" -#: modules/editorial-comments/editorial-comments.php:835 -#: modules/editorial-comments/editorial-comments.php:965 -#: modules/editorial-comments/editorial-comments.php:1075 -#: modules/editorial-comments/editorial-comments.php:1159 +#: 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 msgid "" "There was a problem of some sort. Try again or contact your administrator." msgstr "" "Hubo un problema de algún tipo. Inténtalo de nuevo o contacta a tu " "administrador." -#: modules/calendar/calendar.php:188 +#: modules/calendar/calendar.php:189 msgid "There was an error updating the post. Please try again." msgstr "Hubo un error al actualizar la publicación. Inténtalo de nuevo." #. 1: date, 2: time, 3: timezone #: modules/notifications/notifications.php:2043 +#, php-format msgid "This action was taken on %1$s at %2$s %3$s" msgstr "Esta acción se realizó el %1$s a las %2$s %3$s" @@ -2785,10 +2824,11 @@ msgid "This editorial metadata type is not yet supported." msgstr "Este tipo de metadatos editoriales todavía no es compatible." #: modules/notifications/notifications.php:1056 +#, php-format msgid "This email was sent %s." msgstr "Este correo electrónico fue enviado el %s." -#: modules/notifications-log/notifications-log.php:831 +#: modules/notifications-log/notifications-log.php:832 msgid "" "This is a preview of the scheduled message. The content can still change " "until the notification is sent." @@ -2796,20 +2836,20 @@ 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:2160 -#: modules/editorial-metadata/editorial-metadata.php:2526 +#: modules/editorial-metadata/editorial-metadata.php:2170 +#: modules/editorial-metadata/editorial-metadata.php:2536 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:2184 -#: modules/editorial-metadata/editorial-metadata.php:2549 +#: modules/editorial-metadata/editorial-metadata.php:2194 +#: modules/editorial-metadata/editorial-metadata.php:2559 msgid "" "This metadata will be viewable on the overview screens for these post types." msgstr "" "Estos metadatos se podrán ver en las pantallas de resumen de estos tipos de " "contenido." -#: modules/notifications-log/notifications-log.php:438 +#: modules/notifications-log/notifications-log.php:439 msgid "" "This notification is very similar to another one sent less than %d minutes " "ago for the same receiver" @@ -2817,10 +2857,6 @@ msgstr "" "Este aviso es muy parecido a otro enviado al mismo destinatario hace menos " "de %d minutos" -#: modules/dashboard/dashboard.php:305 -msgid "This post was last updated on " -msgstr "Esta entrada fue actualizada por última vez el " - #: modules/improved-notifications/improved-notifications.php:355 msgid "" "This will prevent too many notifications being sent for the same or similar " @@ -2837,23 +2873,23 @@ 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:1383 +#: modules/calendar/calendar.php:1397 msgid "Three months" msgstr "Tres meses" -#: modules/calendar/calendar.php:1349 +#: modules/calendar/calendar.php:1363 msgid "Three months ago" msgstr "Hace tres meses" -#: modules/calendar/calendar.php:1370 +#: modules/calendar/calendar.php:1384 msgid "Three weeks" msgstr "Tres semanas" -#: modules/calendar/calendar.php:810 +#: modules/calendar/calendar.php:811 msgid "Thu" msgstr "Jue" -#: modules/calendar/calendar.php:3516 +#: modules/calendar/calendar.php:3571 #: modules/content-overview/content-overview.php:626 #: lib/Notifications/Table/Workflows.php:142 #: lib/Notifications/Table/Notifications.php:156 @@ -2861,10 +2897,11 @@ msgid "Title" msgstr "Título" #: modules/notifications/notifications.php:2065 +#, php-format msgid "Title: %s" msgstr "Título: %s" -#: modules/content-overview/content-overview.php:1389 +#: modules/content-overview/content-overview.php:1413 msgid "to" msgstr "a" @@ -2872,42 +2909,43 @@ msgstr "a" msgid "To date" msgstr "Fecha final" -#: modules/calendar/calendar.php:832 modules/calendar/calendar.php:2124 +#: modules/calendar/calendar.php:833 modules/calendar/calendar.php:2138 msgid "Today" msgstr "Hoy" -#: modules/calendar/calendar.php:2118 +#: modules/calendar/calendar.php:2132 +#, php-format msgid "Today is %s" msgstr "Hoy es %s" -#: common/php/class-module.php:272 modules/calendar/calendar.php:1814 -#: modules/calendar/calendar.php:3475 -#: modules/content-overview/content-overview.php:1892 +#: common/php/class-module.php:272 modules/calendar/calendar.php:1828 +#: modules/calendar/calendar.php:3530 +#: modules/content-overview/content-overview.php:1916 msgid "Trash" msgstr "Papelera" -#: modules/calendar/calendar.php:808 +#: modules/calendar/calendar.php:809 msgid "Tue" msgstr "Mar" -#: modules/calendar/calendar.php:1401 +#: modules/calendar/calendar.php:1415 msgid "Twelve months" msgstr "Doce meses" -#: modules/calendar/calendar.php:1381 +#: modules/calendar/calendar.php:1395 msgid "Two months" msgstr "Dos meses" -#: modules/calendar/calendar.php:1347 +#: modules/calendar/calendar.php:1361 msgid "Two months ago" msgstr "Hace dos meses" -#: modules/calendar/calendar.php:1368 +#: modules/calendar/calendar.php:1382 msgid "Two weeks" msgstr "Dos semanas" -#: modules/editorial-metadata/editorial-metadata.php:1929 -#: modules/editorial-metadata/editorial-metadata.php:2276 +#: modules/editorial-metadata/editorial-metadata.php:1939 +#: modules/editorial-metadata/editorial-metadata.php:2286 msgid "Type" msgstr "Tipo" @@ -2915,31 +2953,23 @@ msgstr "Tipo" msgid "Undefined error found" msgstr "Se ha encontrado un error indefinido" -#: modules/calendar/calendar.php:1457 +#: modules/calendar/calendar.php:1471 #: modules/content-overview/content-overview.php:1076 msgid "Undo" msgstr "Deshacer" -#: modules/dashboard/dashboard.php:165 -msgid "Unpublished Content" -msgstr "Contenido sin publicar" - -#: modules/calendar/calendar.php:797 modules/calendar/calendar.php:3681 +#: modules/calendar/calendar.php:798 modules/calendar/calendar.php:3736 msgid "Untitled" msgstr "Sin título" -#: modules/editorial-metadata/editorial-metadata.php:451 +#: modules/editorial-metadata/editorial-metadata.php:452 msgid "Update Editorial Metadata" msgstr "Actualizar metadatos editoriales" -#: modules/editorial-metadata/editorial-metadata.php:2207 +#: modules/editorial-metadata/editorial-metadata.php:2217 msgid "Update Metadata Term" msgstr "Actualizar términos de metadatos" -#: modules/dashboard/widgets/dashboard-notepad.php:168 -msgid "Update Note" -msgstr "Actualizar nota" - #: modules/notifications/notifications.php:381 msgid "Update Notify Email" msgstr "Actualizar el correo electrónico de aviso" @@ -2956,7 +2986,8 @@ msgstr "Actualizar el aviso de usuario" msgid "Update Status" msgstr "Actualizar estado" -#: modules/calendar/calendar.php:192 +#: modules/calendar/calendar.php:193 +#, php-format msgid "" "Updating the post date dynamically doesn't work for published content. " "Please edit the post." @@ -2964,15 +2995,25 @@ msgstr "" "Actualizar la fecha de publicación dinámicamente no funciona para el " "contenido publicado. Por favor edita la publicación ." -#: includes.php:159 +#: includes.php:159 lib/Legacy/Util.php:213 msgid "Upgrade to Pro" msgstr "Actualizar a Pro" +#: lib/Legacy/Util.php:198 +#| msgid "PublishPress Planner" +msgid "Upgrade to PublishPress Planner Pro" +msgstr "Actualiza a PublishPress Planner Pro" + #: modules/custom-status/custom-status.php:1856 msgid "Use on these post types:" msgstr "Utilizar en estos tipos de contenido:" -#: modules/editorial-metadata/editorial-metadata.php:289 +#: lib/Legacy/Util.php:208 +#| msgid "You don't have any notifications" +msgid "Use post meta in notifications" +msgstr "Utiliza los metadatos de la entrada en los avisos" + +#: modules/editorial-metadata/editorial-metadata.php:290 msgid "User" msgstr "Usuario" @@ -2980,24 +3021,25 @@ msgstr "Usuario" msgid "user" msgstr "usuario" -#: modules/improved-notifications/improved-notifications.php:935 +#: modules/improved-notifications/improved-notifications.php:971 msgid "User making changes or comments" msgstr "Usuario haciendo cambios o comentarios" -#: modules/editorial-metadata/editorial-metadata.php:1940 -#: modules/editorial-metadata/editorial-metadata.php:2302 +#: modules/editorial-metadata/editorial-metadata.php:1950 +#: modules/editorial-metadata/editorial-metadata.php:2312 msgid "User role" msgstr "Perfil de usuario" -#: modules/editorial-comments/editorial-comments.php:1240 +#: modules/editorial-comments/editorial-comments.php:1270 msgid "User Url" msgstr "URL del usuario" #: modules/notifications-log/library/NotificationsLogTable.php:122 +#, php-format msgid "User: %s (%d)" msgstr "Usuario: %s (%d)" -#: modules/editorial-comments/editorial-comments.php:1235 +#: modules/editorial-comments/editorial-comments.php:1265 msgid "Username" msgstr "Nombre del usuario" @@ -3010,24 +3052,30 @@ msgstr "Usuarios" msgid "Users who selected \"Notify me\" for the content" msgstr "Usuarios que seleccionaron «Avísame» para el contenido" -#: modules/calendar/calendar.php:1838 modules/calendar/calendar.php:3482 -#: modules/content-overview/content-overview.php:1908 +#: modules/calendar/calendar.php:1852 modules/calendar/calendar.php:3537 +#: modules/content-overview/content-overview.php:1932 msgid "View" msgstr "Ver" -#: modules/calendar/calendar.php:1832 -#: modules/content-overview/content-overview.php:1902 +#: modules/calendar/calendar.php:1846 +#: modules/content-overview/content-overview.php:1926 +#, php-format msgid "View “%s”" msgstr "Ver “%s”" #: modules/editorial-metadata/input-handlers/editorial-metadata-input-location-handler.php:82 +#, php-format msgid "View “%s” on Google Maps" msgstr "Ver “%s” en Google Maps" -#: modules/calendar/calendar.php:3940 +#: modules/calendar/calendar.php:3995 msgid "View all categories" msgstr "Ver todas las categorías" +#: lib/Legacy/Util.php:238 +msgid "View Knowledge Base" +msgstr "Ver la base de conocimiento" + #: modules/notifications/notifications.php:380 msgid "View Notify Email" msgstr "Ver el correo electrónico de aviso" @@ -3042,12 +3090,13 @@ msgstr "Ver el aviso de usuario" #: modules/notifications/notifications.php:2089 #: modules/notifications/notifications.php:2146 +#, php-format msgid "View: %s" msgstr "Ver: %s" -#: modules/editorial-metadata/editorial-metadata.php:2083 -#: modules/editorial-metadata/editorial-metadata.php:2443 -#: modules/editorial-metadata/editorial-metadata.php:2690 +#: modules/editorial-metadata/editorial-metadata.php:2093 +#: modules/editorial-metadata/editorial-metadata.php:2453 +#: modules/editorial-metadata/editorial-metadata.php:2700 msgid "Viewable" msgstr "Visible" @@ -3055,15 +3104,15 @@ msgstr "Visible" msgid "Warning" msgstr "Advertencia" -#: modules/calendar/calendar.php:809 +#: modules/calendar/calendar.php:810 msgid "Wed" msgstr "Mié" -#: modules/editorial-metadata/editorial-metadata.php:219 +#: modules/editorial-metadata/editorial-metadata.php:220 msgid "What the post needs to cover." msgstr "Lo que la publicación debe cubrir." -#: modules/improved-notifications/improved-notifications.php:807 +#: modules/improved-notifications/improved-notifications.php:843 msgid "What to say?" msgstr "¿Qué decir?" @@ -3079,7 +3128,7 @@ msgstr "Cuando el contenido cambia a un nuevo estado" msgid "When the content is updated" msgstr "Cuando el contenido ha sido actualizado" -#: modules/editorial-metadata/editorial-metadata.php:211 +#: modules/editorial-metadata/editorial-metadata.php:212 msgid "When the first draft needs to be ready." msgstr "Cuando el primer borrador debe estar listo." @@ -3088,40 +3137,37 @@ msgid "When the status is changed" msgstr "Cuando se cambia el estado" #: lib/Notifications/Plugin.php:57 -#: modules/improved-notifications/improved-notifications.php:777 +#: modules/improved-notifications/improved-notifications.php:813 #: modules/notifications-log/library/NotificationsLogTable.php:491 msgid "When to notify?" msgstr "¿Cuándo avisar?" #: lib/Notifications/Plugin.php:59 -#: modules/improved-notifications/improved-notifications.php:797 +#: modules/improved-notifications/improved-notifications.php:833 #: modules/notifications-log/library/NotificationsLogTable.php:493 msgid "Who to notify?" msgstr "¿A quién avisar?" -#: modules/dashboard/dashboard.php:70 -msgid "Widget Options" -msgstr "Opciones del widget" - #: modules/notifications/notifications.php:1918 msgid "WordPress Scheduler" msgstr "Programador de WordPress" -#: modules/improved-notifications/improved-notifications.php:936 +#: modules/improved-notifications/improved-notifications.php:972 msgid "Workflow" msgstr "Flujo de trabajo" -#: modules/improved-notifications/improved-notifications.php:739 +#: modules/improved-notifications/improved-notifications.php:775 msgid "Workflow Settings" msgstr "Ajustes de los flujos de trabajo" #: modules/notifications-log/library/NotificationsLogTable.php:110 +#, php-format msgid "Workflow: %s" msgstr "Flujo de trabajo: %s" #: views/user_profile_notification_channels.html.php:14 #: modules/improved-notifications/improved-notifications.php:407 -#: modules/improved-notifications/improved-notifications.php:1115 +#: modules/improved-notifications/improved-notifications.php:1151 msgid "Workflows" msgstr "Flujos de trabajo" @@ -3129,22 +3175,23 @@ msgstr "Flujos de trabajo" msgid "Writer is working on the post." msgstr "El escritor está trabajando en la publicación." -#: modules/editorial-metadata/editorial-metadata.php:2088 -#: modules/editorial-metadata/editorial-metadata.php:2112 -#: modules/editorial-metadata/editorial-metadata.php:2136 -#: modules/editorial-metadata/editorial-metadata.php:2447 -#: modules/editorial-metadata/editorial-metadata.php:2474 -#: modules/editorial-metadata/editorial-metadata.php:2500 -#: modules/editorial-metadata/editorial-metadata.php:2750 +#: 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/input-handlers/editorial-metadata-input-checkbox-handler.php:142 msgid "Yes" msgstr "Sí" #: modules/notifications/notifications.php:1051 +#, php-format msgid "You are receiving this email because you are subscribed to \"%s\"." msgstr "Estás recibiendo este correo electrónico porque estás suscrito a «%s»." -#: modules/improved-notifications/improved-notifications.php:929 +#: modules/improved-notifications/improved-notifications.php:965 msgid "" "You can add dynamic information to the Subject or Body text using the " "following shortcodes:" @@ -3152,7 +3199,7 @@ msgstr "" "Puedes agregar información dinámica al texto del asunto o del cuerpo con los " "siguientes shortcodes:" -#: modules/editorial-comments/editorial-comments.php:502 +#: modules/editorial-comments/editorial-comments.php:532 msgid "" "You can add editorial comments to a post once you've saved it for the first " "time." @@ -3161,6 +3208,7 @@ msgstr "" "por primera vez." #: modules/notifications/notifications.php:2149 +#, php-format msgid "You can see all editorial comments on this %s here: " msgstr "Puedes ver todos los comentarios editoriales en esta %s aquí: " @@ -3180,3 +3228,49 @@ msgid "" msgstr "" "Estás usando PublishPress Planner Free. La versión Pro tiene más " "características y soporte. %sPasar a Pro%s" + +#~ msgid "%1$s last updated on %2$s" +#~ msgstr "%1$s actualizado por última vez el %2$s" + +#~ msgid "Calendar" +#~ msgstr "Calendario" + +#~ msgid "Dashboard" +#~ msgstr "Escritorio" + +#~ msgid "Dashboard Note" +#~ msgstr "Notas de escritorio" + +#~ msgid "My Content Notifications" +#~ msgstr "Mis avisos de contenido" + +#~ msgid "Notepad" +#~ msgstr "Cuaderno de notas" + +#~ msgid "Post Status Widget" +#~ msgstr "Widget de estado de publicación" + +#~ msgid "Posts at a Glance" +#~ msgstr "Publicaciones de un vistazo" + +#~ msgid "Sorry! You're not subscribed to any posts!" +#~ msgstr "¡Lo siento! ¡No estás suscrito a ninguna publicación!" + +#~ msgid "" +#~ "The notifications module will need to be enabled for this widget to " +#~ "display." +#~ msgstr "" +#~ "El módulo de avisos necesitará estar activado para que se muestre este " +#~ "widget." + +#~ msgid "This post was last updated on " +#~ msgstr "Esta entrada fue actualizada por última vez el " + +#~ msgid "Unpublished Content" +#~ msgstr "Contenido sin publicar" + +#~ msgid "Update Note" +#~ msgstr "Actualizar nota" + +#~ msgid "Widget Options" +#~ msgstr "Opciones del widget" diff --git a/languages/publishpress-fr_FR.mo b/languages/publishpress-fr_FR.mo index 00bb1dca0..a77e4363e 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 22cf200a0..263f34f5a 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/publishpress\n" -"POT-Creation-Date: 2023-09-06 10:48+0000\n" -"PO-Revision-Date: 2023-09-10 02:36+0200\n" +"POT-Creation-Date: 2023-09-28 15:49+0000\n" +"PO-Revision-Date: 2023-12-15 18:44+0100\n" "Last-Translator: \n" "Language-Team: French (France)\n" "Language: fr_FR\n" @@ -14,7 +14,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Poedit 3.3\n" +"X-Generator: Poedit 3.4\n" #: modules/notifications-log/library/NotificationsLogTable.php:257 msgid " Scheduled" @@ -30,26 +30,31 @@ msgstr "« Me notifier »" #. 1: post type, 2: post id, 3. post title, 4. user name, 5. user email #: modules/notifications/notifications.php:1951 +#, php-format msgid "%1$s #%2$s \"%3$s\" was moved to the trash by %4$s %5$s" msgstr "%1$s #%2$s « %3$s » a été mis à la corbeille par %4$s %5$s" #. 1: post type, 2: post id, 3. post title, 4. user name, 5. user email #: modules/notifications/notifications.php:1998 +#, php-format msgid "%1$s #%2$s \"%3$s\" was published by %4$s %5$s" msgstr "%1$s #%2$s « %3$s » a été publié par %4$s %5$s" #. 1: post type, 2: post id, 3. post title, 4. user name, 5. user email #: modules/notifications/notifications.php:1968 +#, php-format msgid "%1$s #%2$s \"%3$s\" was restored from trash by %4$s %5$s" msgstr "%1$s #%2$s « %3$s » a été restauré de la corbeille par %4$s %5$s" #. 1: post type, 2: post id, 3. post title, 4. user name, 5. user email #: modules/notifications/notifications.php:2015 +#, php-format msgid "%1$s #%2$s \"%3$s\" was unpublished by %4$s %5$s" msgstr "%1$s #%2$s « %3$s » a été dépublié par %4$s %5$s" #. 1: comment author, 2: author email, 3: date, 4: time #: modules/notifications/notifications.php:2114 +#, php-format msgid "%1$s (%2$s ) said on %3$s at %4$s:" msgstr "%1$s (%2$s) a dit le %3$s à %4$s :" @@ -61,6 +66,7 @@ msgstr " %1$s à %2$s" #. 1: old status, 2: new status #: modules/notifications/notifications.php:2056 +#, php-format msgid "%1$s => %2$s" msgstr "%1$s => %2$s" @@ -68,13 +74,10 @@ msgstr "%1$s => %2$s" #: modules/notifications/notifications.php:1892 #: modules/editorial-metadata/input-handlers/editorial-metadata-input-date-handler.php:201 #: modules/editorial-comments/library/EditorialCommentsTable.php:337 +#, php-format msgid "%1$s at %2$s" msgstr "%1$s à %2$s" -#: modules/dashboard/widgets/dashboard-notepad.php:140 -msgid "%1$s last updated on %2$s" -msgstr "%1$s mis à jour le %2$s" - #: lib/Notifications/Workflow/Step/Receiver/Role.php:176 msgid "%d Role" msgid_plural "%d Roles" @@ -87,39 +90,41 @@ msgid_plural "%d Users" msgstr[0] "%d utilisateur/utilisatrice" msgstr[1] "%d utilisateurs/utilisatrices" -#: modules/calendar/calendar.php:830 +#: modules/calendar/calendar.php:831 msgid "%d week" msgstr "%d semaine" -#: modules/calendar/calendar.php:831 +#: modules/calendar/calendar.php:832 msgid "%d weeks" msgstr "%d semaines" -#: modules/notifications-log/notifications-log.php:271 +#: modules/notifications-log/notifications-log.php:272 +#, php-format msgid "%s notification found." msgid_plural "%s notifications found." msgstr[0] "%s notification trouvée." msgstr[1] "%s notifications trouvées." -#: modules/calendar/calendar.php:4031 +#: modules/calendar/calendar.php:4086 +#, php-format msgid "%s week" msgid_plural "%s weeks" msgstr[0] "%s semaine" msgstr[1] "%s semaines" -#: modules/calendar/calendar.php:2141 +#: modules/calendar/calendar.php:2155 msgid "«" msgstr "«" -#: modules/calendar/calendar.php:2154 +#: modules/calendar/calendar.php:2168 msgid "‹" msgstr "‹" -#: modules/calendar/calendar.php:2110 +#: modules/calendar/calendar.php:2124 msgid "»" msgstr "»" -#: modules/calendar/calendar.php:2093 +#: modules/calendar/calendar.php:2107 msgid "›" msgstr "›" @@ -131,7 +136,7 @@ msgstr "(sans titre)" msgid "- any status -" msgstr "- tout statut -" -#: modules/calendar/calendar.php:210 +#: modules/calendar/calendar.php:211 msgid "" "

For more information:

Calendar Documentation

PublishPress sur Github

" -#: modules/editorial-comments/editorial-comments.php:87 +#: modules/editorial-comments/editorial-comments.php:88 msgid "" "

For more information:

Editorial Comments " @@ -167,7 +172,7 @@ msgstr "" "commentaires éditoriaux

PublishPress sur Github

" -#: modules/editorial-metadata/editorial-metadata.php:125 +#: modules/editorial-metadata/editorial-metadata.php:126 msgid "" "

For more information:

Editorial Metadata " @@ -191,7 +196,7 @@ msgstr "" "a>

PublishPress " "sur Github

" -#: modules/editorial-comments/editorial-comments.php:82 +#: modules/editorial-comments/editorial-comments.php:83 msgid "" "

Editorial comments help you cut down on email overload and keep the " "conversation close to where it matters: your content. Threaded commenting in " @@ -213,7 +218,7 @@ msgstr "" "suivent la publication recevront un e-mail chaque fois qu’un commentaire " "sera laissé.

" -#: modules/editorial-metadata/editorial-metadata.php:120 +#: 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. " @@ -278,7 +283,7 @@ msgstr "" "notifications par e-mail peuvent être envoyées à un groupe spécifique " "d’utilisateurs/utilisatrices lorsqu’une publication change d’état.

" -#: modules/calendar/calendar.php:205 +#: modules/calendar/calendar.php:206 msgid "" "

The calendar is a convenient week-by-week or month-by-month view into " "your content. Quickly see which stories are on track to being published on " @@ -300,6 +305,7 @@ msgstr "" "la publication." #: modules/notifications/notifications.php:2064 +#, php-format msgid "== %s Details ==" msgstr "== %s Détails ==" @@ -310,46 +316,55 @@ msgstr "== Actions ==" #. 1: site name, 2: post type, 3. post title #: modules/notifications/notifications.php:1991 +#, php-format msgid "[%1$s] %2$s Published: \"%3$s\"" msgstr "[%1$s] %2$s publié : « %3$s »" #. 1: site name, 2: post type, 3. post title #: modules/notifications/notifications.php:1961 +#, php-format msgid "[%1$s] %2$s Restored (from Trash ): \"%3$s\"" msgstr "[%1$s] %2$s Restauré de la corbeille : « %3$s »" #. 1: site name, 2: post type, 3. post title #: modules/notifications/notifications.php:2025 +#, php-format msgid "[%1$s] %2$s Status Changed for \"%3$s\"" msgstr "[%1$s] %2$s état modifié pour « %3$s »" #. 1: site name, 2: post type, 3. post title #: modules/notifications/notifications.php:1944 +#, php-format msgid "[%1$s] %2$s Trashed: \"%3$s\"" msgstr "[%1$s] %2$s mis à la corbeille : « %3$s »" #. 1: site name, 2: post type, 3. post title #: modules/notifications/notifications.php:2008 +#, php-format msgid "[%1$s] %2$s Unpublished: \"%3$s\"" msgstr "[%1$s] %2$s non publié : « %3$s »" #. 1: site name, 2: post type, 3. post title #: modules/notifications/notifications.php:1927 +#, php-format msgid "[%1$s] New %2$s Created: \"%3$s\"" msgstr "[%1$s] Nouveau %2$s créé : « %3$s »" #. 1: blog name, 2: post title #: modules/notifications/notifications.php:2100 +#, php-format msgid "[%1$s] New Editorial Comment: \"%2$s\"" msgstr "[%1$s] Nouveau commentaire éditorial : « %2$s »" #. 1: post type, 2: post id, 3. post title, 4. user name, 5. user email #: modules/notifications/notifications.php:1934 +#, php-format msgid "A new %1$s (#%2$s \"%3$s\" ) was created by %4$s %5$s" msgstr "Un nouveau %1$s (#%2$s \"%3$s\") a été créé par %4$s %5$s" #. 1: post id, 2: post title, 3. post type #: modules/notifications/notifications.php:2107 +#, php-format msgid "A new editorial comment was added to %3$s #%1$s \"%2$s\"" msgstr "Un nouveau commentaire éditorial a été ajouté à %3$s #%1$s « %2$s »" @@ -378,39 +393,41 @@ msgstr "" "doivent pas être chargés par le filtre de contenu de taxonomie lors de " "l’ajout d’un nouveau flux de notification." -#: modules/editorial-comments/editorial-comments.php:522 -#: modules/editorial-comments/editorial-comments.php:526 +#: modules/editorial-comments/editorial-comments.php:552 +#: modules/editorial-comments/editorial-comments.php:556 msgid "Add an editorial comment" msgstr "Ajouter un commentaire éditorial" -#: modules/editorial-metadata/editorial-metadata.php:2075 -#: modules/editorial-metadata/editorial-metadata.php:2436 +#: modules/editorial-metadata/editorial-metadata.php:2085 +#: modules/editorial-metadata/editorial-metadata.php:2446 msgid "Add Another Option" msgstr "Ajouter une autre option" -#: modules/editorial-comments/editorial-comments.php:544 +#: modules/editorial-comments/editorial-comments.php:574 msgid "Add Comment" msgstr "Ajouter un commentaire" -#: modules/calendar/calendar.php:802 +#: modules/calendar/calendar.php:803 +#, php-format msgid "Add content for %s" msgstr "Ajouter le contenu pour %s" #: modules/notifications/notifications.php:2085 #: modules/notifications/notifications.php:2142 +#, php-format msgid "Add editorial comment: %s" msgstr "Ajouter un commentaire éditorial : %s" -#: modules/editorial-metadata/editorial-metadata.php:1798 +#: modules/editorial-metadata/editorial-metadata.php:1799 #: modules/custom-status/custom-status.php:2112 msgid "Add New" msgstr "Ajouter" -#: modules/editorial-metadata/editorial-metadata.php:452 +#: 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:2571 +#: modules/editorial-metadata/editorial-metadata.php:2581 msgid "Add New Metadata Term" msgstr "Ajouter un nouveau terme de métadonnées" @@ -446,12 +463,12 @@ 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:2155 -#: modules/editorial-metadata/editorial-metadata.php:2522 +#: modules/editorial-metadata/editorial-metadata.php:2165 +#: modules/editorial-metadata/editorial-metadata.php:2532 msgid "Add to post types" msgstr "Ajouter aux types de publication" -#: modules/improved-notifications/improved-notifications.php:93 +#: modules/improved-notifications/improved-notifications.php:94 msgid "Advanced Notifications" msgstr "Notifications avancées" @@ -459,8 +476,8 @@ msgstr "Notifications avancées" msgid "All" msgstr "Tous" -#: modules/content-overview/content-overview.php:1254 -#: modules/content-overview/content-overview.php:1257 +#: modules/content-overview/content-overview.php:1278 +#: modules/content-overview/content-overview.php:1281 #, php-format msgid "All %s" msgstr "Toutes les %s" @@ -469,13 +486,13 @@ msgstr "Toutes les %s" msgid "All Actions" msgstr "Toutes les actions" -#: modules/calendar/calendar.php:828 modules/calendar/calendar.php:3979 -#: modules/content-overview/content-overview.php:1276 -#: modules/content-overview/content-overview.php:1279 +#: modules/calendar/calendar.php:829 modules/calendar/calendar.php:4034 +#: modules/content-overview/content-overview.php:1300 +#: modules/content-overview/content-overview.php:1303 msgid "All authors" msgstr "Tous les auteurs/autrices" -#: modules/calendar/calendar.php:826 +#: modules/calendar/calendar.php:827 msgid "All categories" msgstr "Toutes les catégories" @@ -487,7 +504,7 @@ msgstr "Tous les canaux" msgid "All channels" msgstr "Tous les canaux" -#: modules/editorial-metadata/editorial-metadata.php:449 +#: modules/editorial-metadata/editorial-metadata.php:450 msgid "All Editorial Metadata" msgstr "Toutes les métadonnées éditoriales" @@ -507,22 +524,22 @@ msgstr "Toutes les notifications des rôles" msgid "All Notify Users" msgstr "Tous les comptes de notification" -#: modules/editorial-metadata/editorial-metadata.php:1267 -#: modules/editorial-metadata/editorial-metadata.php:1437 +#: modules/editorial-metadata/editorial-metadata.php:1268 +#: modules/editorial-metadata/editorial-metadata.php:1438 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:1306 +#: modules/content-overview/content-overview.php:1330 msgid "All post types" msgstr "Tous les types de publication" #: modules/notifications-log/notifications-log.php:204 -#: modules/editorial-comments/editorial-comments.php:211 +#: modules/editorial-comments/editorial-comments.php:212 #: modules/editorial-comments/library/EditorialCommentsTable.php:182 msgid "All Posts" msgstr "Toutes les publications" -#: modules/calendar/calendar.php:2847 +#: modules/calendar/calendar.php:2896 msgid "All posts" msgstr "Toutes les publications" @@ -534,20 +551,20 @@ msgstr "Tous les destinataires" msgid "All Statuses" msgstr "Tous les états" -#: modules/calendar/calendar.php:825 modules/calendar/calendar.php:3923 -#: modules/content-overview/content-overview.php:1232 +#: modules/calendar/calendar.php:826 modules/calendar/calendar.php:3978 +#: modules/content-overview/content-overview.php:1256 msgid "All statuses" msgstr "Tous les états" -#: modules/calendar/calendar.php:827 modules/calendar/calendar.php:3958 +#: modules/calendar/calendar.php:828 modules/calendar/calendar.php:4013 msgid "All tags" msgstr "Toutes les étiquettes" -#: modules/calendar/calendar.php:829 modules/calendar/calendar.php:4006 +#: modules/calendar/calendar.php:830 modules/calendar/calendar.php:4061 msgid "All types" msgstr "Tous les types" -#: modules/editorial-comments/editorial-comments.php:212 +#: modules/editorial-comments/editorial-comments.php:213 #: modules/editorial-comments/library/EditorialCommentsTable.php:197 msgid "All Users" msgstr "Tous les comptes" @@ -556,6 +573,11 @@ msgstr "Tous les comptes" msgid "All Workflows" msgstr "Tous les flux de travail" +#: modules/calendar/calendar.php:2558 +#| msgid "Subscription in iCal or Google Calendar" +msgid "Allow public access to subscriptions in iCal or Google Calendar" +msgstr "Autoriser l’accès public aux abonnements à iCal ou Calendrier Google" + #: modules/notifications/notifications.php:1649 msgid "Always notify the author of the content:" msgstr "Prévenez toujours l’auteur/autrice du contenu :" @@ -565,7 +587,7 @@ 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:2577 +#: modules/calendar/calendar.php:2606 msgid "Always show complete post titles" msgstr "Toujours afficher les titres complets des publications" @@ -573,7 +595,7 @@ msgstr "Toujours afficher les titres complets des publications" msgid "Apply" msgstr "Appliquer" -#: modules/calendar/calendar.php:816 +#: modules/calendar/calendar.php:817 msgid "Apr" msgstr "Avr" @@ -585,7 +607,7 @@ msgstr "" "Êtes-vous sûr de vouloir supprimer l’état de la publication ? Toutes les " "publications ayant cet état seront assignées à l’état par défaut." -#: modules/editorial-metadata/editorial-metadata.php:366 +#: modules/editorial-metadata/editorial-metadata.php:367 msgid "" "Are you sure you want to delete this term? Any metadata for this term will " "remain but will not be visible unless this term is re-added." @@ -598,7 +620,7 @@ msgstr "" msgid "Assigned" msgstr "Assigné" -#: modules/editorial-metadata/editorial-metadata.php:216 +#: modules/editorial-metadata/editorial-metadata.php:217 msgid "Assignment" msgstr "Devoir" @@ -610,20 +632,20 @@ msgstr "Notifications asynchrones" msgid "asynchronous" msgstr "asynchrone" -#: modules/calendar/calendar.php:2596 +#: modules/calendar/calendar.php:2625 msgid "At least one post type must be selected" msgstr "Au moins un type de publication doit être sélectionné" -#: modules/editorial-comments/editorial-comments.php:532 +#: modules/editorial-comments/editorial-comments.php:562 msgid "Attach file" msgstr "Attacher un fichier" -#: modules/calendar/calendar.php:820 +#: modules/calendar/calendar.php:821 msgid "Aug" msgstr "Aoû" -#: modules/calendar/calendar.php:1949 modules/calendar/calendar.php:3446 -#: modules/calendar/calendar.php:3536 +#: modules/calendar/calendar.php:1963 modules/calendar/calendar.php:3501 +#: modules/calendar/calendar.php:3591 #: modules/content-overview/content-overview.php:629 #: modules/editorial-comments/library/EditorialCommentsTable.php:229 msgid "Author" @@ -633,6 +655,7 @@ msgstr[1] "Auteurs/autrices" #. 1: author name, 2: author email #: modules/notifications/notifications.php:2069 +#, php-format msgid "Author: %1$s (%2$s )" msgstr "Auteur/Autrice : %1$s (%2$s)" @@ -648,15 +671,15 @@ msgstr "Auteurs du contenu" msgid "Auto-draft" msgstr "Brouillon automatique" -#: modules/improved-notifications/improved-notifications.php:945 +#: modules/improved-notifications/improved-notifications.php:981 msgid "Available fields" msgstr "Available fields" -#: modules/calendar/calendar.php:2133 +#: modules/calendar/calendar.php:2147 msgid "Back %d weeks" msgstr "Retour de %d semaines" -#: modules/calendar/calendar.php:2145 +#: modules/calendar/calendar.php:2159 msgid "Back 1 week" msgstr "Retour 1 semaine" @@ -692,14 +715,10 @@ msgstr "Blog : " msgid "Body" msgstr "Corps" -#: modules/calendar/calendar.php:170 -msgid "Calendar" -msgstr "Calendrier" - -#: modules/editorial-metadata/editorial-metadata.php:2210 +#: modules/editorial-metadata/editorial-metadata.php:2220 #: modules/custom-status/custom-status.php:2078 #: modules/content-overview/content-overview.php:1028 -#: modules/editorial-comments/editorial-comments.php:548 +#: modules/editorial-comments/editorial-comments.php:578 msgid "Cancel" msgstr "Annuler" @@ -707,12 +726,12 @@ msgstr "Annuler" msgid "Cannot reassign to the status you want to delete" msgstr "Impossible de réaffecter le statut que vous voulez supprimer" -#: modules/calendar/calendar.php:3546 +#: modules/calendar/calendar.php:3601 #: lib/Notifications/Workflow/Step/Event_Content/Filter/Category.php:34 msgid "Categories" msgstr "Catégories" -#: modules/calendar/calendar.php:3451 +#: modules/calendar/calendar.php:3506 #: lib/Notifications/Workflow/Step/Event_Content/Category.php:24 msgid "Category" msgid_plural "Categories" @@ -725,7 +744,7 @@ msgstr "Changer" #: views/user_profile_notification_channels.html.php:15 #: modules/improved-notifications/improved-notifications.php:408 -#: modules/improved-notifications/improved-notifications.php:1116 +#: modules/improved-notifications/improved-notifications.php:1152 msgid "Channels" msgstr "Canaux" @@ -733,7 +752,7 @@ msgstr "Canaux" msgid "Cheatin’ uh?" msgstr "Une mauvaise manipulation ?" -#: modules/editorial-metadata/editorial-metadata.php:282 +#: modules/editorial-metadata/editorial-metadata.php:283 msgid "Checkbox" msgstr "Case à cocher" @@ -751,27 +770,27 @@ msgstr "" "Choisissez parmi les utilisateurs/utilisatrices de notification les plus " "utilisés" -#: modules/editorial-comments/editorial-comments.php:77 +#: modules/editorial-comments/editorial-comments.php:78 msgid "Choose Post Types" msgstr "Choisissez les types de publication" #: views/user_profile_notification_channels.html.php:6 #: modules/improved-notifications/improved-notifications.php:402 -#: modules/improved-notifications/improved-notifications.php:1110 +#: modules/improved-notifications/improved-notifications.php:1146 msgid "Choose the channels where each workflow will send notifications to:" msgstr "" "Choisissez les canaux vers lesquels chaque flux de travail enverra des " "notifications :" -#: modules/improved-notifications/improved-notifications.php:947 +#: modules/improved-notifications/improved-notifications.php:983 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:1426 -msgid "Click here to Subscribe in iCal or Google Calendar" -msgstr "Cliquez ici pour vous abonner à iCal ou Google Agenda" +#: modules/calendar/calendar.php:1440 +msgid "Click here to subscribe in iCal or Google Calendar" +msgstr "Cliquez ici pour vous abonner à iCal ou Calendrier Google" -#: modules/calendar/calendar.php:794 modules/calendar/calendar.php:796 +#: modules/calendar/calendar.php:795 modules/calendar/calendar.php:797 msgid "Click to add" msgstr "Cliquez pour ajouter" @@ -792,11 +811,11 @@ 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:1481 +#: modules/content-overview/content-overview.php:1505 msgid "Click to toggle" msgstr "Cliquez ici pour basculer" -#: modules/calendar/calendar.php:798 +#: modules/calendar/calendar.php:799 msgid "Close" msgstr "Fermer" @@ -809,15 +828,16 @@ msgstr "Couleur" msgid "Comment" msgstr "Commentaire" -#: modules/editorial-comments/editorial-comments.php:1209 +#: modules/editorial-comments/editorial-comments.php:1239 msgid "Comment author name field:" msgstr "Champ du nom de l’auteur du commentaire :" -#: modules/editorial-comments/editorial-comments.php:1151 +#: modules/editorial-comments/editorial-comments.php:1181 msgid "Comment deleted successfully." msgstr "Le commentaire a bien été suppromé." #: lib/Notifications/Workflow/Step/Event/Editorial_Comment.php:92 +#, php-format msgid "Comment: %s (%d)" msgstr "Commentaire : %s (%d)" @@ -829,14 +849,14 @@ msgstr "Configurer" msgid "Contact" msgstr "Contact" -#: modules/calendar/calendar.php:3563 -#: modules/improved-notifications/improved-notifications.php:933 +#: modules/calendar/calendar.php:3618 +#: modules/improved-notifications/improved-notifications.php:969 #: lib/Notifications/Workflow/Step/Content/Main.php:29 msgid "Content" msgstr "Contenu" -#: modules/calendar/calendar.php:408 modules/calendar/calendar.php:425 -#: modules/calendar/calendar.php:426 +#: modules/calendar/calendar.php:170 modules/calendar/calendar.php:409 +#: modules/calendar/calendar.php:426 modules/calendar/calendar.php:427 msgid "Content Calendar" msgstr "Calendrier des contenus" @@ -847,11 +867,11 @@ msgstr "Calendrier des contenus" msgid "Content Overview" msgstr "Aperçu du contenu" -#: modules/notifications-log/notifications-log.php:821 +#: modules/notifications-log/notifications-log.php:822 msgid "Content:" msgstr "Contenu :" -#: modules/calendar/calendar.php:1420 +#: modules/calendar/calendar.php:1434 msgid "Copy to the clipboard" msgstr "Copier dans le presse-papiers" @@ -867,7 +887,7 @@ msgstr "Impossible de supprimer l’état : " msgid "Created on" msgstr "Créé le" -#: modules/calendar/calendar.php:1343 +#: modules/calendar/calendar.php:1357 msgid "Current week" msgstr "Semaine courante" @@ -879,16 +899,8 @@ msgstr "État personnalisé" msgid "Custom status doesn't exist." msgstr "L’état pérsonnalisé n’existe pas." -#: modules/dashboard/dashboard.php:56 -msgid "Dashboard" -msgstr "Tableau de bord" - -#: modules/dashboard/widgets/dashboard-notepad.php:50 -msgid "Dashboard Note" -msgstr "Note du tableau de bord" - -#: modules/editorial-metadata/editorial-metadata.php:284 -#: modules/calendar/calendar.php:3435 +#: modules/editorial-metadata/editorial-metadata.php:285 +#: modules/calendar/calendar.php:3490 #: lib/Notifications/Table/Notifications.php:158 #: modules/notifications-log/library/NotificationsLogTable.php:490 msgid "Date" @@ -902,7 +914,7 @@ msgstr "Débogage" msgid "Debug data" msgstr "Données de débogage" -#: modules/calendar/calendar.php:824 +#: modules/calendar/calendar.php:825 msgid "Dec" msgstr "Déc" @@ -914,10 +926,10 @@ msgstr "Par défaut" msgid "Default notification channels:" msgstr "Canaux de notifiation par défaut :" -#: modules/editorial-metadata/editorial-metadata.php:2037 -#: modules/editorial-metadata/editorial-metadata.php:2067 -#: modules/editorial-metadata/editorial-metadata.php:2398 -#: modules/editorial-metadata/editorial-metadata.php:2428 +#: 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 msgid "Default option" msgstr "Option par défaut" @@ -925,18 +937,18 @@ msgstr "Option par défaut" msgid "Default post status has been changed." msgstr "L’état par défaut des publications a été modifié." -#: modules/calendar/calendar.php:2553 +#: modules/calendar/calendar.php:2582 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:2040 -#: modules/editorial-metadata/editorial-metadata.php:2070 -#: modules/editorial-metadata/editorial-metadata.php:2401 -#: modules/editorial-metadata/editorial-metadata.php:2431 -#: modules/editorial-metadata/editorial-metadata.php:2827 +#: 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/custom-status/custom-status.php:2926 -#: modules/editorial-comments/editorial-comments.php:613 +#: modules/editorial-comments/editorial-comments.php:643 #: modules/notifications-log/library/NotificationsLogTable.php:370 #: modules/notifications-log/library/NotificationsLogTable.php:401 #: modules/editorial-comments/library/EditorialCommentsTable.php:435 @@ -951,37 +963,43 @@ msgstr "Tout supprimer" msgid "Delete file" msgstr "Supprimer le fichier" -#: modules/editorial-metadata/editorial-metadata.php:1912 -#: modules/editorial-metadata/editorial-metadata.php:2259 -#: modules/editorial-metadata/editorial-metadata.php:2689 +#: modules/editorial-metadata/editorial-metadata.php:1922 +#: modules/editorial-metadata/editorial-metadata.php:2269 +#: modules/editorial-metadata/editorial-metadata.php:2699 #: modules/custom-status/custom-status.php:2007 #: modules/custom-status/custom-status.php:2141 #: modules/custom-status/custom-status.php:2780 msgid "Description" msgstr "Description" +#: lib/Legacy/Util.php:236 +msgid "Detailed documentation is also available on the plugin website." +msgstr "" +"Une documentation détaillée est également disponible sur le site de " +"l’extension." + #: modules/custom-status/custom-status.php:1889 -#: modules/calendar/calendar.php:2627 modules/dashboard/dashboard.php:368 -#: modules/dashboard/dashboard.php:391 modules/dashboard/dashboard.php:425 +#: modules/calendar/calendar.php:2656 msgid "Disabled" msgstr "Désactivé" -#: modules/settings/settings.php:381 +#: modules/settings/settings.php:380 +#, php-format msgid "" "Disabled because add_post_type_support('%1$s', '%2$s') is included in a " "loaded file." msgstr "" -"Désactivé car add_post_type_support ('%1$s', '%2$s') est inclus dans un " +"Désactivé car add_post_type_support (’%1$s’, ’%2$s’) est inclus dans un " "fichier chargé." -#: modules/editorial-metadata/editorial-metadata.php:2028 -#: modules/editorial-metadata/editorial-metadata.php:2059 -#: modules/editorial-metadata/editorial-metadata.php:2389 -#: modules/editorial-metadata/editorial-metadata.php:2420 +#: 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 msgid "Display Label" msgstr "Afficher le libellé" -#: modules/editorial-comments/editorial-comments.php:1236 +#: modules/editorial-comments/editorial-comments.php:1266 msgid "Display Name" msgstr "Nom à afficher publiquement" @@ -989,7 +1007,7 @@ msgstr "Nom à afficher publiquement" msgid "Documentation" msgstr "Documentation" -#: modules/calendar/calendar.php:1413 +#: modules/calendar/calendar.php:1427 msgid "Download .ics file" msgstr "Téléchargez le fichier .ics" @@ -998,12 +1016,12 @@ msgstr "Téléchargez le fichier .ics" msgid "Draft" msgstr "Brouillon" -#: modules/editorial-metadata/editorial-metadata.php:1995 -#: modules/editorial-metadata/editorial-metadata.php:2358 +#: modules/editorial-metadata/editorial-metadata.php:2005 +#: modules/editorial-metadata/editorial-metadata.php:2368 msgid "Dropdown Option" msgstr "Option de la liste déroulante" -#: modules/editorial-metadata/editorial-metadata.php:283 +#: modules/editorial-metadata/editorial-metadata.php:284 msgid "Dropdown Select" msgstr "Sélection par liste déroulante" @@ -1015,25 +1033,27 @@ msgstr "Seuil de notification dupliquée :" msgid "E-mails" msgstr "E-mails" -#: modules/editorial-metadata/editorial-metadata.php:2807 +#: modules/editorial-metadata/editorial-metadata.php:2817 #: modules/custom-status/custom-status.php:2922 -#: modules/calendar/calendar.php:1804 modules/calendar/calendar.php:3468 -#: modules/content-overview/content-overview.php:1880 -#: modules/editorial-comments/editorial-comments.php:602 +#: modules/calendar/calendar.php:1818 modules/calendar/calendar.php:3523 +#: modules/content-overview/content-overview.php:1904 +#: modules/editorial-comments/editorial-comments.php:632 msgid "Edit" msgstr "Modifier" -#: modules/editorial-metadata/editorial-metadata.php:450 +#: modules/editorial-metadata/editorial-metadata.php:451 msgid "Edit Editorial Metadata" msgstr "Modifier les métadonnées éditoriales" -#: modules/efmigration/efmigration.php:287 +#: modules/efmigration/efmigration.php:288 msgid "" -"Edit Flow should not be used alongside PublishPress. If you want to use it, " -"deactive PublishPress first." +"Edit Flow should not be used alongside PublishPress Planner. If you want to " +"use PublishPress Planner, please complete Edit Flow data migration and then " +"deactivate Edit Flow." msgstr "" -"Edit Flow ne doit pas être utilisé en même temps que PublishPress. Si vous " -"souhaitez l’utiliser, désactivez d’abord PublishPress." +"Edit Flow ne doit pas être utilisé en même temps que PublishPress Planner. " +"Si vous souhaitez utiliser PublishPress Planner, terminer d’abord la " +"migration des données d’Edit Flow, puis désactiver Edit Flow." #: publishpress.php:1239 msgid "Edit Notification" @@ -1055,52 +1075,52 @@ msgstr "Modifier utilisateur/utilisatrice de notification" msgid "Edit Statuses" msgstr "Modifier les états" -#: modules/calendar/calendar.php:1804 +#: modules/calendar/calendar.php:1818 msgid "Edit this item" msgstr "Modifier cet élément" -#: modules/content-overview/content-overview.php:1876 -#: modules/dashboard/dashboard.php:299 +#: modules/content-overview/content-overview.php:1900 msgid "Edit this post" msgstr "Editer cette fiche entreprise" #: modules/notifications/notifications.php:2088 #: modules/notifications/notifications.php:2145 +#, php-format msgid "Edit: %s" msgstr "Modifier : %s" -#: modules/improved-notifications/improved-notifications.php:934 +#: modules/improved-notifications/improved-notifications.php:970 msgid "Editorial Comment" msgstr "Commentaire éditorial" -#: modules/editorial-comments/editorial-comments.php:62 -#: modules/editorial-comments/editorial-comments.php:234 +#: modules/editorial-comments/editorial-comments.php:63 #: modules/editorial-comments/editorial-comments.php:235 -#: modules/editorial-comments/editorial-comments.php:427 +#: modules/editorial-comments/editorial-comments.php:236 +#: modules/editorial-comments/editorial-comments.php:457 msgid "Editorial Comments" msgstr "Commentaires éditoriaux" -#: modules/editorial-metadata/editorial-metadata.php:95 -#: modules/editorial-metadata/editorial-metadata.php:1774 +#: modules/editorial-metadata/editorial-metadata.php:96 #: modules/editorial-metadata/editorial-metadata.php:1775 +#: modules/editorial-metadata/editorial-metadata.php:1776 msgid "Editorial Metadata" msgstr "Métadonnée éditoriale" #: views/user_profile_notification_channels.html.php:1 #: modules/improved-notifications/improved-notifications.php:401 -#: modules/improved-notifications/improved-notifications.php:1109 +#: modules/improved-notifications/improved-notifications.php:1145 msgid "Editorial Notifications" msgstr "Notifications éditoriales" -#: modules/calendar/calendar.php:1393 +#: modules/calendar/calendar.php:1407 msgid "Eight months" msgstr "Huit mois" -#: modules/calendar/calendar.php:1399 +#: modules/calendar/calendar.php:1413 msgid "Eleven months" msgstr "Onze mois" -#: modules/editorial-comments/editorial-comments.php:1239 +#: modules/editorial-comments/editorial-comments.php:1269 #: lib/Notifications/Workflow/Step/Channel/Email.php:31 msgid "Email" msgstr "E-mail" @@ -1113,13 +1133,16 @@ msgstr "e-mail" msgid "Email from:" msgstr "E-mail de l’expéditeur :" -#: modules/editorial-comments/editorial-comments.php:1202 +#: modules/editorial-comments/editorial-comments.php:1232 msgid "Enable for these post types:" msgstr "Activer pour ces types de publications :" +#: modules/calendar/calendar.php:2550 +msgid "Enable subscriptions in iCal or Google Calendar" +msgstr "Activez les abonnements à iCal ou Calendrier Google" + #: modules/custom-status/custom-status.php:1890 -#: modules/calendar/calendar.php:2628 modules/dashboard/dashboard.php:369 -#: modules/dashboard/dashboard.php:392 modules/dashboard/dashboard.php:426 +#: modules/calendar/calendar.php:2657 msgid "Enabled" msgstr "Activé" @@ -1127,10 +1150,14 @@ msgstr "Activé" msgid "Enabled features" msgstr "Fonctionnalitées activées" -#: modules/calendar/calendar.php:1361 +#: modules/calendar/calendar.php:1375 msgid "End date" msgstr "Date de fin" +#: lib/Legacy/Util.php:203 +msgid "Enhance the power of PublishPress Planner with the Pro version:" +msgstr "Améliorez la puissance de PublishPress Planner avec la vérsion Pro :" + #: modules/notifications/notifications.php:636 msgid "" "Enter any users, roles, or email address that should receive notifications " @@ -1139,8 +1166,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:2000 -#: modules/editorial-metadata/editorial-metadata.php:2361 +#: modules/editorial-metadata/editorial-metadata.php:2010 +#: modules/editorial-metadata/editorial-metadata.php:2371 msgid "" "Enter the dropdown option value and label. You can move options to change " "their order." @@ -1153,11 +1180,11 @@ msgstr "" msgid "Error" msgstr "Erreur" -#: modules/editorial-metadata/editorial-metadata.php:1368 +#: modules/editorial-metadata/editorial-metadata.php:1369 msgid "Error adding term." msgstr "Erreur en ajoutant le terme." -#: modules/editorial-metadata/editorial-metadata.php:1645 +#: modules/editorial-metadata/editorial-metadata.php:1646 msgid "Error deleting term." msgstr "Erreur de suppression du terme." @@ -1165,8 +1192,8 @@ msgstr "Erreur de suppression du terme." msgid "Error updating post status." msgstr "Erreur de mise à jour du statut du message." -#: modules/editorial-metadata/editorial-metadata.php:1531 -#: modules/editorial-metadata/editorial-metadata.php:1579 +#: modules/editorial-metadata/editorial-metadata.php:1532 +#: modules/editorial-metadata/editorial-metadata.php:1580 msgid "Error updating term." msgstr "Erreur de mise à jour du terme." @@ -1175,6 +1202,7 @@ msgid "Error while updating the status" msgstr "Erreur lors de la mise à jour de l’état" #: modules/async-notifications/async-notifications.php:172 +#, php-format msgid "Event: %s, Workflow ID: %s, Post ID: %s, User ID: %s" msgstr "" "Événement : %s, ID du flux de travail : %s, ID de la publication : %s, ID " @@ -1185,11 +1213,15 @@ msgstr "" msgid "Failed" msgstr "Échec" +#: lib/Legacy/Util.php:210 +msgid "Fast, professional support" +msgstr "Un support rapide et professionnel" + #: modules/modules-settings/modules-settings.php:50 msgid "Features" msgstr "Fonctionnalitées" -#: modules/calendar/calendar.php:814 +#: modules/calendar/calendar.php:815 msgid "Feb" msgstr "Fév" @@ -1199,11 +1231,11 @@ msgstr "" "N’hésitez pas à ne sélectionner que les fonctionnalités dont vous avez " "besoin." -#: modules/improved-notifications/improved-notifications.php:940 +#: modules/improved-notifications/improved-notifications.php:976 msgid "field" msgstr "champ" -#: modules/calendar/calendar.php:2561 +#: modules/calendar/calendar.php:2590 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 " @@ -1213,7 +1245,7 @@ msgstr "" msgid "File info" msgstr "Info Fichier" -#: modules/content-overview/content-overview.php:1144 +#: modules/content-overview/content-overview.php:1145 #: modules/notifications-log/library/NotificationsLogTable.php:640 #: modules/editorial-comments/library/EditorialCommentsTable.php:211 msgid "Filter" @@ -1235,8 +1267,8 @@ msgstr "Filtrer par utilisateur/utilisatrice de notification" msgid "Filter the content?" msgstr "Filtrer le contenu ?" -#: modules/editorial-metadata/editorial-metadata.php:1960 -#: modules/editorial-metadata/editorial-metadata.php:2324 +#: modules/editorial-metadata/editorial-metadata.php:1970 +#: modules/editorial-metadata/editorial-metadata.php:2334 msgid "" "Filter the list of users in the editorial meta to users in the selected " "roles." @@ -1244,52 +1276,52 @@ 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/editorial-metadata/editorial-metadata.php:208 +#: modules/editorial-metadata/editorial-metadata.php:209 msgid "First Draft Date" msgstr "Date de la première ébauche" -#: modules/editorial-comments/editorial-comments.php:1237 +#: modules/editorial-comments/editorial-comments.php:1267 msgid "First Name" msgstr "Prénom" -#: modules/calendar/calendar.php:1387 +#: modules/calendar/calendar.php:1401 msgid "Five months" msgstr "Cinq mois" -#: modules/calendar/calendar.php:1353 +#: modules/calendar/calendar.php:1367 msgid "Five months ago" msgstr "Il y a cinq mois" -#: modules/improved-notifications/improved-notifications.php:787 +#: modules/improved-notifications/improved-notifications.php:823 #: modules/notifications-log/library/NotificationsLogTable.php:492 msgid "For which content?" msgstr "Pour quel contenu ?" -#: modules/improved-notifications/improved-notifications.php:937 +#: modules/improved-notifications/improved-notifications.php:973 msgid "Format" msgstr "Format" -#: modules/calendar/calendar.php:2099 +#: modules/calendar/calendar.php:2113 msgid "Forward %d weeks" msgstr "Avancer de %d semaines" -#: modules/calendar/calendar.php:2084 +#: modules/calendar/calendar.php:2098 msgid "Forward 1 week" msgstr "Avancer d’une semaine" -#: modules/calendar/calendar.php:1385 +#: modules/calendar/calendar.php:1399 msgid "Four months" msgstr "Quatre mois" -#: modules/calendar/calendar.php:1351 +#: modules/calendar/calendar.php:1365 msgid "Four months ago" msgstr "Il y a quatre mois" -#: modules/calendar/calendar.php:1372 +#: modules/calendar/calendar.php:1386 msgid "Four weeks" msgstr "Quatre semaines" -#: modules/calendar/calendar.php:811 +#: modules/calendar/calendar.php:812 msgid "Fri" msgstr "Ven" @@ -1297,7 +1329,7 @@ msgstr "Ven" msgid "From date" msgstr "À partir du" -#: modules/editorial-metadata/editorial-metadata.php:2810 +#: modules/editorial-metadata/editorial-metadata.php:2820 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 " @@ -1311,7 +1343,7 @@ msgstr "https://publishpress.com" msgid "https://publishpress.com/" msgstr "https://publishpress.com/" -#: modules/calendar/calendar.php:196 +#: modules/calendar/calendar.php:197 msgid "" "iCal secret key regenerated. Please inform all users they will need to " "resubscribe." @@ -1325,7 +1357,7 @@ msgstr "" msgid "Icon" msgstr "Icône" -#: modules/calendar/calendar.php:3430 lib/Notifications/Table/Workflows.php:143 +#: modules/calendar/calendar.php:3485 lib/Notifications/Table/Workflows.php:143 #: lib/Notifications/Table/Notifications.php:159 msgid "ID" msgstr "ID" @@ -1334,9 +1366,9 @@ msgstr "ID" msgid "Idea proposed; waiting for acceptance." msgstr "Idée proposée ; en attente d’acceptation." -#: modules/editorial-metadata/editorial-metadata.php:2098 -#: modules/editorial-metadata/editorial-metadata.php:2462 -#: modules/editorial-metadata/editorial-metadata.php:2817 +#: 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." @@ -1344,8 +1376,8 @@ 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:2122 -#: modules/editorial-metadata/editorial-metadata.php:2488 +#: 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." @@ -1353,8 +1385,8 @@ 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." -#: modules/editorial-metadata/editorial-metadata.php:2146 -#: modules/editorial-metadata/editorial-metadata.php:2514 +#: modules/editorial-metadata/editorial-metadata.php:2156 +#: modules/editorial-metadata/editorial-metadata.php:2524 msgid "" "If enabled, this metadata will be available when adding new posts on the " "Content Calendar screen." @@ -1362,10 +1394,17 @@ 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." -#: modules/settings/settings.php:270 +#: modules/settings/settings.php:269 +#, php-format msgid "If you like %s please leave us a %s rating. Thank you!" msgstr "Si vous appréciez %s, veuillez nous laisser une note de %s. Merci !" +#: lib/Legacy/Util.php:225 +msgid "If you need help or have a new feature request, let us know." +msgstr "" +"Si vous avez besoin d’aide ou si vous avez une nouvelle demande de " +"fonctionnalité, faites-le nous savoir." + #: modules/debug/debug.php:304 msgid "" "If you see any error or look for information regarding PublishPress, please " @@ -1379,16 +1418,16 @@ msgstr "" msgid "In Progress" msgstr "En cours" -#: modules/editorial-metadata/editorial-metadata.php:1988 -#: modules/editorial-metadata/editorial-metadata.php:2353 +#: modules/editorial-metadata/editorial-metadata.php:1998 +#: modules/editorial-metadata/editorial-metadata.php:2363 msgid "Indicate the select type." msgstr "Indiquez le type de sélection." -#: modules/editorial-metadata/editorial-metadata.php:2297 +#: modules/editorial-metadata/editorial-metadata.php:2307 msgid "Indicate the type of editorial metadata." msgstr "Indiquer le type de métadonnées éditoriales." -#: modules/calendar/calendar.php:1494 +#: modules/calendar/calendar.php:1508 msgid "Initializing the calendar. Please wait..." msgstr "Initialisation du calendrier. Veuillez patienter…" @@ -1404,26 +1443,26 @@ msgstr "Nonce d’action non valide." msgid "Invalid channel for the notification" msgstr "Canal invalide pour la notification" -#: modules/editorial-comments/editorial-comments.php:725 -#: modules/editorial-comments/editorial-comments.php:866 -#: modules/editorial-comments/editorial-comments.php:998 -#: modules/editorial-comments/editorial-comments.php:1114 +#: 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 msgid "Invalid comment data" msgstr "Données de commentaire invalides" -#: modules/calendar/calendar.php:3170 +#: modules/calendar/calendar.php:3225 msgid "Invalid date" msgstr "Date invalide" -#: modules/calendar/calendar.php:3150 +#: modules/calendar/calendar.php:3205 msgid "Invalid input" msgstr "Entrée invalide" -#: core/Error.php:80 modules/calendar/calendar.php:3141 +#: core/Error.php:80 modules/calendar/calendar.php:3196 msgid "Invalid nonce" msgstr "Nonce invalide" -#: modules/calendar/calendar.php:3729 +#: modules/calendar/calendar.php:3784 msgid "Invalid Publish Date supplied." msgstr "Date de publication invalide fournie." @@ -1431,11 +1470,11 @@ msgstr "Date de publication invalide fournie." msgid "Invalid receiver for the notification" msgstr "Destinataire invalide pour la notification" -#: modules/calendar/calendar.php:3705 +#: modules/calendar/calendar.php:3760 msgid "Invalid Status supplied." msgstr "État invalide fourni." -#: modules/calendar/calendar.php:1498 +#: modules/calendar/calendar.php:1512 msgid "" "It seems like it is taking too long. Please, try reloading the page again " "and check the browser console looking for errors." @@ -1443,15 +1482,15 @@ 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:813 +#: modules/calendar/calendar.php:814 msgid "Jan" msgstr "Jan" -#: modules/calendar/calendar.php:819 +#: modules/calendar/calendar.php:820 msgid "Jul" msgstr "Jui" -#: modules/calendar/calendar.php:818 +#: modules/calendar/calendar.php:819 msgid "Jun" msgstr "Jui" @@ -1459,20 +1498,20 @@ msgstr "Jui" msgid "Last Modified" msgstr "Dernière modification" -#: modules/editorial-comments/editorial-comments.php:1238 +#: modules/editorial-comments/editorial-comments.php:1268 msgid "Last Name" msgstr "Nom" -#: modules/calendar/calendar.php:793 +#: modules/calendar/calendar.php:794 msgid "Loading item..." msgstr "Chargement de l’élément…" -#: modules/calendar/calendar.php:792 +#: modules/calendar/calendar.php:793 #: modules/notifications-log/notifications-log.php:210 msgid "Loading..." msgstr "Chargement…" -#: modules/editorial-metadata/editorial-metadata.php:285 +#: modules/editorial-metadata/editorial-metadata.php:286 msgid "Location" msgstr "Emplacement" @@ -1488,23 +1527,23 @@ msgstr "Fichier journal" msgid "Log file not found." msgstr "Fichier journal non trouvé." -#: modules/editorial-metadata/editorial-metadata.php:2814 +#: modules/editorial-metadata/editorial-metadata.php:2824 msgid "Make Hidden" msgstr "Rendre Caché" -#: modules/editorial-metadata/editorial-metadata.php:2825 +#: modules/editorial-metadata/editorial-metadata.php:2835 msgid "Make Viewable" msgstr "Rendre Visible" -#: modules/calendar/calendar.php:815 +#: modules/calendar/calendar.php:816 msgid "Mar" msgstr "Mar" -#: modules/calendar/calendar.php:2569 +#: modules/calendar/calendar.php:2598 msgid "Max visible posts per date" msgstr "Nombre maximum de publications visibles par date" -#: modules/calendar/calendar.php:817 +#: modules/calendar/calendar.php:818 msgid "May" msgstr "Mai" @@ -1512,52 +1551,52 @@ msgstr "Mai" msgid "Message" msgstr "Message" -#: modules/improved-notifications/improved-notifications.php:946 +#: modules/improved-notifications/improved-notifications.php:982 msgid "Meta fields" msgstr "Champs métas" -#: modules/editorial-metadata/editorial-metadata.php:2022 -#: modules/editorial-metadata/editorial-metadata.php:2053 -#: modules/editorial-metadata/editorial-metadata.php:2383 -#: modules/editorial-metadata/editorial-metadata.php:2414 +#: 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 msgid "Meta Value" msgstr "Valeur de méta" -#: modules/editorial-metadata/editorial-metadata.php:505 +#: modules/editorial-metadata/editorial-metadata.php:506 msgid "Metadata" msgstr "Métadonnées" -#: modules/editorial-metadata/editorial-metadata.php:1460 +#: modules/editorial-metadata/editorial-metadata.php:1461 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 " "choisir un autre." -#: modules/editorial-metadata/editorial-metadata.php:113 +#: modules/editorial-metadata/editorial-metadata.php:114 msgid "Metadata order updated." -msgstr "L'ordre des métadonnées a été mis à jour." +msgstr "L’ordre des métadonnées a été mis à jour." -#: modules/editorial-metadata/editorial-metadata.php:109 +#: modules/editorial-metadata/editorial-metadata.php:110 msgid "Metadata term added." msgstr "Terme de métadonnées ajouté." -#: modules/editorial-metadata/editorial-metadata.php:112 +#: modules/editorial-metadata/editorial-metadata.php:113 msgid "Metadata term deleted." msgstr "Terme de métadonnées supprimé." -#: modules/editorial-metadata/editorial-metadata.php:111 +#: modules/editorial-metadata/editorial-metadata.php:112 msgid "Metadata term doesn't exist." msgstr "Le terme de métadonnées n’existe pas." -#: modules/editorial-metadata/editorial-metadata.php:110 +#: modules/editorial-metadata/editorial-metadata.php:111 msgid "Metadata term updated." msgstr "Mise à jour du terme métadonnées." -#: modules/editorial-metadata/editorial-metadata.php:2688 +#: modules/editorial-metadata/editorial-metadata.php:2698 msgid "Metadata Type" msgstr "Type de métadonnées" -#: modules/editorial-metadata/editorial-metadata.php:114 +#: modules/editorial-metadata/editorial-metadata.php:115 msgid "Metadata visibility changed." msgstr "La visibilité des métadonnées a été modifiée." @@ -1569,7 +1608,7 @@ msgstr "minutes" msgid "Modified on" msgstr "Modifié le" -#: modules/calendar/calendar.php:807 +#: modules/calendar/calendar.php:808 msgid "Mon" msgstr "Lun" @@ -1585,64 +1624,65 @@ 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:1888 +#: modules/content-overview/content-overview.php:1912 msgid "Move this item to the Trash" msgstr "Mettre cet article à la corbeille" -#: modules/calendar/calendar.php:795 +#: modules/calendar/calendar.php:796 msgid "Moving the item..." msgstr "Déplacement de l’élément…" -#: modules/editorial-metadata/editorial-metadata.php:1971 -#: modules/editorial-metadata/editorial-metadata.php:2333 +#: modules/editorial-metadata/editorial-metadata.php:1981 +#: modules/editorial-metadata/editorial-metadata.php:2343 msgid "Multiple Select" msgstr "Sélection multiple" #: modules/improved-notifications/improved-notifications.php:406 -#: modules/improved-notifications/improved-notifications.php:1097 -#: modules/improved-notifications/improved-notifications.php:1114 +#: modules/improved-notifications/improved-notifications.php:1133 +#: modules/improved-notifications/improved-notifications.php:1150 msgid "Muted" msgstr "Muet" -#: modules/dashboard/dashboard.php:183 modules/dashboard/dashboard.php:346 -msgid "My Content Notifications" -msgstr "Mes notifications de contenu" - -#: modules/editorial-metadata/editorial-metadata.php:2228 -#: modules/editorial-metadata/editorial-metadata.php:2686 +#: modules/editorial-metadata/editorial-metadata.php:2238 +#: modules/editorial-metadata/editorial-metadata.php:2696 #: modules/custom-status/custom-status.php:2123 #: modules/custom-status/custom-status.php:2779 msgid "Name" msgstr "Nom" -#: modules/editorial-metadata/editorial-metadata.php:1296 -#: modules/editorial-metadata/editorial-metadata.php:1469 +#: modules/editorial-metadata/editorial-metadata.php:1297 +#: modules/editorial-metadata/editorial-metadata.php:1470 msgid "Name already in use. Please choose another." msgstr "Nom déjà utilisé. Veuillez en choisir un autre." -#: modules/editorial-metadata/editorial-metadata.php:1306 -#: modules/editorial-metadata/editorial-metadata.php:1313 -#: modules/editorial-metadata/editorial-metadata.php:1482 +#: modules/editorial-metadata/editorial-metadata.php:1307 +#: modules/editorial-metadata/editorial-metadata.php:1314 +#: modules/editorial-metadata/editorial-metadata.php:1483 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:1289 +#: modules/editorial-metadata/editorial-metadata.php:1290 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:1474 +#: modules/editorial-metadata/editorial-metadata.php:1475 msgid "" "Name conflicts with slug for another term. Please choose something else." msgstr "" "Le nom est en conflit avec le slug d’un autre terme. Veuillez choisir un " "autre terme." +#: lib/Legacy/Util.php:220 +#| msgid "PublishPress Planner" +msgid "Need PublishPress Planner Support?" +msgstr "Besoin du support de PublishPress Planner ?" + #: lib/Notifications/Workflow/Step/Event/Filter/Post_Status.php:59 msgid "New" msgstr "Nouveau" -#: modules/editorial-metadata/editorial-metadata.php:453 +#: modules/editorial-metadata/editorial-metadata.php:454 msgid "New Editorial Metadata" msgstr "Nouvelle métadonnée éditoriale" @@ -1659,6 +1699,7 @@ msgid "New Notify User" msgstr "Nouveau compte de notification" #: lib/Notifications/Workflow/Step/Event/Post_StatusTransition.php:118 +#, php-format msgid "New post status: %s" msgstr "Nouveau état de la publication : %s" @@ -1666,26 +1707,27 @@ msgstr "Nouveau état de la publication : %s" msgid "New status" msgstr "Nouvel état" -#: modules/editorial-comments/editorial-comments.php:1234 +#: modules/editorial-comments/editorial-comments.php:1264 msgid "Nickname" msgstr "Pseudonyme" -#: modules/calendar/calendar.php:1395 +#: modules/calendar/calendar.php:1409 msgid "Nine months" msgstr "Neuf mois" -#: modules/editorial-metadata/editorial-metadata.php:2087 -#: modules/editorial-metadata/editorial-metadata.php:2111 -#: modules/editorial-metadata/editorial-metadata.php:2135 -#: modules/editorial-metadata/editorial-metadata.php:2446 -#: modules/editorial-metadata/editorial-metadata.php:2473 -#: modules/editorial-metadata/editorial-metadata.php:2499 -#: modules/editorial-metadata/editorial-metadata.php:2752 +#: 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/input-handlers/editorial-metadata-input-checkbox-handler.php:143 msgid "No" msgstr "Non" #: modules/notifications/notifications.php:705 +#, php-format msgid "No active notifications found for this %s." msgstr "Aucune notification active n’a été trouvée pour ce %s." @@ -1693,7 +1735,7 @@ msgstr "Aucune notification active n’a été trouvée pour ce %s." msgid "No custom statuses found." msgstr "Aucun statut personnalisé trouvé." -#: modules/calendar/calendar.php:3664 +#: modules/calendar/calendar.php:3719 msgid "No date supplied." msgstr "Aucune date fournie." @@ -1701,11 +1743,11 @@ msgstr "Aucune date fournie." msgid "No editorial comments." msgstr "Aucun commentaire éditorial." -#: modules/editorial-metadata/editorial-metadata.php:2783 +#: modules/editorial-metadata/editorial-metadata.php:2793 msgid "No editorial metadata found." msgstr "Aucune métadonnée éditoriale trouvée." -#: modules/calendar/calendar.php:3161 +#: modules/calendar/calendar.php:3216 msgid "No enough permissions" msgstr "Aucun droit suffisant" @@ -1713,7 +1755,7 @@ msgstr "Aucun droit suffisant" msgid "No notification found" msgstr "Aucune notification trouvée" -#: modules/notifications-log/notifications-log.php:283 +#: modules/notifications-log/notifications-log.php:284 msgid "No notifications found." msgstr "Aucune notification trouvée." @@ -1732,7 +1774,7 @@ msgstr "Aucune notification des rôles" msgid "No notify users" msgstr "Aucun utilisateurs/utilisatrices de notification" -#: modules/calendar/calendar.php:833 +#: modules/calendar/calendar.php:834 msgid "No terms" msgstr "Aucun terme" @@ -1740,7 +1782,7 @@ msgstr "Aucun terme" msgid "No workflows found." msgstr "Aucun flux de notification trouvé." -#: modules/editorial-comments/editorial-comments.php:717 +#: modules/editorial-comments/editorial-comments.php:747 msgid "" "Nonce check failed. Please ensure you're supposed to be adding editorial " "comments." @@ -1748,9 +1790,9 @@ msgstr "" "La vérification du nonce a échoué. Veuillez vous assurer que vous êtes censé " "ajouter des commentaires éditoriaux." -#: modules/editorial-comments/editorial-comments.php:855 -#: modules/editorial-comments/editorial-comments.php:987 -#: modules/editorial-comments/editorial-comments.php:1104 +#: modules/editorial-comments/editorial-comments.php:885 +#: modules/editorial-comments/editorial-comments.php:1017 +#: modules/editorial-comments/editorial-comments.php:1134 msgid "" "Nonce check failed. Please ensure you're supposed to be editing editorial " "comments." @@ -1758,8 +1800,8 @@ msgstr "" "La vérification du nonce a échoué. Veuillez vous assurer que vous êtes censé " "modifier les commentaires éditoriaux." -#: modules/calendar/calendar.php:1784 -#: modules/content-overview/content-overview.php:1773 +#: modules/calendar/calendar.php:1798 +#: modules/content-overview/content-overview.php:1797 msgid "None" msgstr "Aucun" @@ -1767,10 +1809,6 @@ msgstr "Aucun" msgid "Not filtered" msgstr "Non filtré" -#: modules/dashboard/dashboard.php:174 modules/dashboard/dashboard.php:353 -msgid "Notepad" -msgstr "Bloc-notes" - #: publishpress.php:1237 publishpress.php:1242 #: modules/notifications-log/notifications-log.php:209 msgid "Notification" @@ -1786,10 +1824,11 @@ msgstr "Journal de notification non trouvé" msgid "Notifications" msgstr "Notifications" +#: modules/improved-notifications/improved-notifications.php:741 #: modules/notifications-log/notifications-log.php:75 -#: modules/notifications-log/notifications-log.php:262 -#: modules/notifications-log/notifications-log.php:485 +#: modules/notifications-log/notifications-log.php:263 #: modules/notifications-log/notifications-log.php:486 +#: modules/notifications-log/notifications-log.php:487 msgid "Notifications Log" msgstr "Journal des notifications" @@ -1839,11 +1878,11 @@ msgstr "Utilisateurs/utilisatrices de notification" msgid "Notify when content is published" msgstr "Notifier lorsque le contenu est publié" -#: modules/calendar/calendar.php:823 +#: modules/calendar/calendar.php:824 msgid "Nov" msgstr "Nov" -#: modules/editorial-metadata/editorial-metadata.php:286 +#: modules/editorial-metadata/editorial-metadata.php:287 msgid "Number" msgstr "Nombre" @@ -1851,15 +1890,16 @@ msgstr "Nombre" msgid "Number of Columns: " msgstr "Nombre de colonnes : " -#: modules/calendar/calendar.php:822 +#: modules/calendar/calendar.php:823 msgid "Oct" msgstr "Oct" #: lib/Notifications/Workflow/Step/Event/Post_StatusTransition.php:114 +#, php-format msgid "Old post status: %s" msgstr "Vieux état de la publication : %s" -#: modules/improved-notifications/improved-notifications.php:941 +#: modules/improved-notifications/improved-notifications.php:977 msgid "" "On each shortcode, you can select one or more fields. If more than one, they " "will be displayed separated by \", \"." @@ -1867,15 +1907,15 @@ 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:1378 +#: modules/calendar/calendar.php:1392 msgid "One month" msgstr "Un mois" -#: modules/calendar/calendar.php:1345 +#: modules/calendar/calendar.php:1359 msgid "One month ago" msgstr "Il y a un mois" -#: modules/calendar/calendar.php:1366 +#: modules/calendar/calendar.php:1380 msgid "One week" msgstr "Une Semaine" @@ -1883,15 +1923,15 @@ msgstr "Une Semaine" msgid "Options" msgstr "Options" -#: modules/editorial-metadata/editorial-metadata.php:119 +#: modules/editorial-metadata/editorial-metadata.php:120 #: modules/custom-status/custom-status.php:112 -#: modules/calendar/calendar.php:204 -#: modules/editorial-comments/editorial-comments.php:81 +#: modules/calendar/calendar.php:205 +#: modules/editorial-comments/editorial-comments.php:82 #: modules/notifications/notifications.php:93 msgid "Overview" msgstr "Aperçu" -#: modules/editorial-metadata/editorial-metadata.php:287 +#: modules/editorial-metadata/editorial-metadata.php:288 msgid "Paragraph" msgstr "Paragraphe" @@ -1943,16 +1983,16 @@ msgstr "Planificateur" msgid "Please correct your form errors below and try again." msgstr "Veuillez corriger vos erreurs de formulaire ci-dessous et réessayer." -#: modules/editorial-comments/editorial-comments.php:748 -#: modules/editorial-comments/editorial-comments.php:912 +#: modules/editorial-comments/editorial-comments.php:778 +#: modules/editorial-comments/editorial-comments.php:942 msgid "Please enter a comment." msgstr "Veuillez saisir un commentaire." -#: modules/editorial-metadata/editorial-metadata.php:1446 +#: modules/editorial-metadata/editorial-metadata.php:1447 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:1276 +#: modules/editorial-metadata/editorial-metadata.php:1277 msgid "Please enter a name for the editorial metadata." msgstr "Veuillez entrer un nom pour les métadonnées éditoriales." @@ -1961,11 +2001,11 @@ msgstr "Veuillez entrer un nom pour les métadonnées éditoriales." msgid "Please enter a name for the status" msgstr "Veuillez entrer un nom pour le statut" -#: modules/editorial-metadata/editorial-metadata.php:1283 +#: modules/editorial-metadata/editorial-metadata.php:1284 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:1451 +#: modules/editorial-metadata/editorial-metadata.php:1452 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 " @@ -1983,7 +2023,7 @@ msgstr "" "Veuillez noter que si vous cochez une case, tous les états s’appliqueront à " "ce type de publication." -#: modules/editorial-metadata/editorial-metadata.php:1323 +#: modules/editorial-metadata/editorial-metadata.php:1324 msgid "Please select a valid metadata type." msgstr "Veuillez sélectionner un type de métadonnées valide." @@ -1991,11 +2031,11 @@ 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:805 +#: modules/calendar/calendar.php:806 msgid "Please, wait! Loading the form fields..." msgstr "S’il vous plaît, attendez ! Chargement des champs du formulaire…" -#: modules/editorial-metadata/editorial-metadata.php:448 +#: modules/editorial-metadata/editorial-metadata.php:449 msgid "Popular Editorial Metadata" msgstr "Métadonnées éditoriales populaires" @@ -2011,7 +2051,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:2685 +#: modules/editorial-metadata/editorial-metadata.php:2695 #: modules/custom-status/custom-status.php:2778 msgid "Position" msgstr "Position" @@ -2020,11 +2060,11 @@ msgstr "Position" msgid "Post" msgstr "Article" -#: modules/calendar/calendar.php:3805 +#: modules/calendar/calendar.php:3860 msgid "Post could not be created" msgstr "La publication n’a pas pu être créée" -#: modules/calendar/calendar.php:3798 +#: modules/calendar/calendar.php:3853 msgid "Post created successfully" msgstr "La publication a bien été créée" @@ -2032,7 +2072,7 @@ msgstr "La publication a bien été créée" msgid "Post Date" msgstr "Date de la publication" -#: modules/calendar/calendar.php:187 +#: modules/calendar/calendar.php:188 msgid "Post date updated." msgstr "Date de la publication mis à jour." @@ -2048,12 +2088,12 @@ msgstr "ID de la publication : %d" msgid "Post idea assigned to writer." msgstr "Poster une idée assignée à un auteur." -#: modules/calendar/calendar.php:3156 +#: modules/calendar/calendar.php:3211 msgid "Post not found" msgstr "Publication non trouvée" -#: modules/calendar/calendar.php:2792 modules/calendar/calendar.php:3441 -#: modules/calendar/calendar.php:3521 +#: modules/calendar/calendar.php:2841 modules/calendar/calendar.php:3496 +#: modules/calendar/calendar.php:3576 msgid "Post Status" msgstr "État de la publication" @@ -2074,11 +2114,7 @@ msgstr "L’état de la publication n’existe pas." msgid "Post status updated." msgstr "L’état de la publication mis à jour." -#: modules/dashboard/dashboard.php:339 -msgid "Post Status Widget" -msgstr "Widget de l’état de la publication" - -#: modules/calendar/calendar.php:1957 modules/calendar/calendar.php:3425 +#: modules/calendar/calendar.php:1971 modules/calendar/calendar.php:3480 #: modules/content-overview/content-overview.php:628 msgid "Post Type" msgstr "Type de publication" @@ -2087,24 +2123,25 @@ msgstr "Type de publication" msgid "Post type" msgstr "Type d’article" -#: modules/calendar/calendar.php:803 +#: modules/calendar/calendar.php:804 msgid "Post type not found" msgstr "Type de publication non trouvé" -#: modules/calendar/calendar.php:804 +#: modules/calendar/calendar.php:805 msgid "Post type:" msgstr "Type de publication :" #: modules/notifications-log/library/NotificationsLogTable.php:151 +#, php-format msgid "Post type: %s" msgstr "Type de publication : %s" -#: modules/editorial-metadata/editorial-metadata.php:2687 +#: modules/editorial-metadata/editorial-metadata.php:2697 #: lib/Notifications/Workflow/Step/Event_Content/Filter/Post_Type.php:34 msgid "Post Types" msgstr "Types d’article" -#: modules/calendar/calendar.php:2521 +#: modules/calendar/calendar.php:2542 msgid "Post types to show" msgstr "Types de messages à afficher" @@ -2112,21 +2149,18 @@ msgstr "Types de messages à afficher" msgid "Post types to show:" msgstr "Types de publications à afficher :" -#: modules/dashboard/dashboard.php:211 -msgid "Posts at a Glance" -msgstr "Aperçu des articles" - -#: modules/calendar/calendar.php:2545 +#: modules/calendar/calendar.php:2574 msgid "Posts publish time format" msgstr "Format de l’heure de publication des publications" -#: modules/calendar/calendar.php:1828 modules/calendar/calendar.php:3485 -#: modules/content-overview/content-overview.php:1921 +#: modules/calendar/calendar.php:1842 modules/calendar/calendar.php:3540 +#: modules/content-overview/content-overview.php:1945 msgid "Preview" msgstr "Aperçu" -#: modules/calendar/calendar.php:1825 -#: modules/content-overview/content-overview.php:1918 +#: modules/calendar/calendar.php:1839 +#: modules/content-overview/content-overview.php:1942 +#, php-format msgid "Preview “%s”" msgstr "Prévisualiser “%s”" @@ -2134,7 +2168,7 @@ msgstr "Prévisualiser “%s”" msgid "Previous status" msgstr "Statut précédent" -#: modules/content-overview/content-overview.php:1170 +#: modules/content-overview/content-overview.php:1194 msgid "Print" msgstr "Imprimer" @@ -2146,21 +2180,21 @@ msgstr "Privé" msgid "Privately Published" msgstr "Afficher Date et heure" -#: modules/calendar/calendar.php:3527 +#: modules/calendar/calendar.php:3582 msgid "Publish Time" msgstr "Heure de publication" #: common/php/class-module.php:267 modules/custom-status/custom-status.php:957 -#: modules/calendar/calendar.php:1970 +#: modules/calendar/calendar.php:1984 msgid "Published" msgstr "Publié" -#: modules/calendar/calendar.php:2791 +#: modules/calendar/calendar.php:2840 msgid "Publishing Time" msgstr "Heure de la publication" #. Author of the plugin -#: modules/settings/settings.php:60 modules/calendar/calendar.php:1332 +#: modules/settings/settings.php:61 modules/calendar/calendar.php:1346 msgid "PublishPress" msgstr "PublishPress" @@ -2169,7 +2203,7 @@ msgid "PublishPress Debug Log" msgstr "Journal de débogage PublishPress" #. Name of the plugin -#: modules/settings/settings.php:267 +#: modules/settings/settings.php:266 msgid "PublishPress Planner" msgstr "PublishPress Planner" @@ -2192,47 +2226,56 @@ msgstr "" "désactiver et supprimer les autres instances de PublishPress, surtout si " "vous utilisez PublishPress Pro." -#: modules/settings/settings.php:140 +#: modules/settings/settings.php:141 msgid "PublishPress Settings" msgstr "Réglages de PublishPress" -#: modules/improved-notifications/improved-notifications.php:938 +#: modules/improved-notifications/improved-notifications.php:974 msgid "Receiver" msgstr "Destinataire" -#: modules/calendar/calendar.php:2646 +#: modules/calendar/calendar.php:2675 msgid "Regenerate calendar feed secret" msgstr "Régénérer le secret du flux du calendrier" -#: modules/editorial-metadata/editorial-metadata.php:1692 +#: modules/editorial-metadata/editorial-metadata.php:1693 msgid "Register metadata for these post types:" msgstr "Enregistrer les métadonnées pou ces types de publication :" -#: modules/editorial-comments/editorial-comments.php:210 -#: modules/editorial-comments/editorial-comments.php:689 +#: modules/editorial-comments/editorial-comments.php:211 +#: modules/editorial-comments/editorial-comments.php:719 msgid "Remove" msgstr "Retirer" -#: modules/editorial-comments/editorial-comments.php:593 +#: lib/Legacy/Util.php:209 +msgid "Remove PublishPress ads and branding" +msgstr "Retirez les publicités et l’image de marque de PublishPress" + +#: modules/editorial-comments/editorial-comments.php:623 msgid "Reply" msgstr "Répondre" -#: modules/editorial-comments/editorial-comments.php:590 +#: modules/editorial-comments/editorial-comments.php:620 msgid "Reply to this comment" msgstr "Répondre à ce commentaire" #: modules/notifications/notifications.php:2138 +#, php-format msgid "Reply: %s" msgstr "Réponse : %s" +#: lib/Legacy/Util.php:227 +msgid "Request Support" +msgstr "Demande de support" + #: modules/notifications-log/library/NotificationsLogTable.php:355 #: modules/notifications-log/library/NotificationsLogTable.php:400 msgid "Reschedule" msgstr "Replanifier" -#: modules/calendar/calendar.php:2076 +#: modules/calendar/calendar.php:2090 #: modules/content-overview/content-overview.php:1025 -#: modules/content-overview/content-overview.php:1146 +#: modules/content-overview/content-overview.php:1147 msgid "Reset" msgstr "Réinitialiser" @@ -2250,6 +2293,7 @@ msgstr "Rôle" #: lib/Notifications/Workflow/Step/Receiver/Role.php:147 #: lib/Notifications/Workflow/Step/Receiver/Follower.php:100 +#, php-format msgid "role:%s" msgstr "rôle : %s" @@ -2258,28 +2302,29 @@ msgstr "rôle : %s" msgid "Roles" msgstr "Rôles" -#: modules/calendar/calendar.php:812 +#: modules/calendar/calendar.php:813 msgid "Sat" msgstr "Sam" -#: modules/calendar/calendar.php:799 modules/calendar/calendar.php:1854 +#: modules/calendar/calendar.php:800 modules/calendar/calendar.php:1868 msgid "Save" msgstr "Enregistrer" -#: modules/calendar/calendar.php:1848 +#: modules/calendar/calendar.php:1862 +#, php-format msgid "Save “%s”" msgstr "Enregistrer “%s”" -#: modules/calendar/calendar.php:801 +#: modules/calendar/calendar.php:802 msgid "Save and edit" msgstr "Enregistrer et modifier" -#: modules/calendar/calendar.php:800 +#: modules/calendar/calendar.php:801 msgid "Saving..." msgstr "Enregistrement…" #: common/php/class-module.php:269 modules/custom-status/custom-status.php:919 -#: modules/calendar/calendar.php:1965 +#: modules/calendar/calendar.php:1979 #: modules/notifications-log/library/NotificationsLogTable.php:523 msgid "Scheduled" msgstr "Planifié" @@ -2297,15 +2342,15 @@ msgid "Search" msgstr "Rechercher" #: modules/content-overview/content-overview.php:1048 -#: modules/content-overview/content-overview.php:1323 +#: modules/content-overview/content-overview.php:1347 msgid "Search box" msgstr "Boîte de recherche" -#: modules/editorial-comments/editorial-comments.php:283 +#: modules/editorial-comments/editorial-comments.php:289 msgid "Search Comments" msgstr "Rechercher des commentaires" -#: modules/editorial-metadata/editorial-metadata.php:447 +#: modules/editorial-metadata/editorial-metadata.php:448 msgid "Search Editorial Metadata" msgstr "Recherche de métadonnées éditoriales" @@ -2326,12 +2371,12 @@ msgid "Search Notify Users" msgstr "Rechercher utilisateurs/utilisatrices de notification" #. %s: search keywords -#: modules/editorial-comments/editorial-comments.php:271 +#: modules/editorial-comments/editorial-comments.php:276 #, php-format msgid "Search results for “%s”" msgstr "Résultats de recherche pour « %s »" -#: modules/improved-notifications/improved-notifications.php:925 +#: modules/improved-notifications/improved-notifications.php:961 msgid "Select at least one option for each section." msgstr "Sélectionnez au moins une option pour chaque section." @@ -2340,21 +2385,26 @@ msgstr "Sélectionnez au moins une option pour chaque section." msgid "Select Icon" msgstr "Sélectionner une icône" -#: modules/editorial-metadata/editorial-metadata.php:1948 -#: modules/editorial-metadata/editorial-metadata.php:2310 +#: modules/editorial-metadata/editorial-metadata.php:1958 +#: modules/editorial-metadata/editorial-metadata.php:2320 msgid "Select roles..." msgstr "Sélectionner les rôles" -#: modules/editorial-metadata/editorial-metadata.php:1966 -#: modules/editorial-metadata/editorial-metadata.php:2329 +#: modules/editorial-metadata/editorial-metadata.php:1976 +#: modules/editorial-metadata/editorial-metadata.php:2339 msgid "Select Type" msgstr "Sélectionner le type" +#: lib/Legacy/Util.php:207 +#| msgid "Search Notifications" +msgid "Send reminder notifications" +msgstr "Envoyer des notifications de rappel" + #: modules/notifications-log/library/NotificationsLogTable.php:282 msgid "Sent" msgstr "Envoyé" -#: modules/calendar/calendar.php:821 +#: modules/calendar/calendar.php:822 msgid "Sep" msgstr "Sep" @@ -2371,24 +2421,24 @@ msgid "Separate notify users with commas" msgstr "" "Separez les utilisateurs/utilisatrices de notification par des virgules" -#: modules/settings/settings.php:141 +#: modules/settings/settings.php:142 msgid "Settings" msgstr "Réglages" -#: modules/settings/settings.php:123 +#: modules/settings/settings.php:124 msgid "settings" msgstr "réglages" -#: modules/calendar/calendar.php:1391 +#: modules/calendar/calendar.php:1405 msgid "Seven months" msgstr "Sept mois" -#: modules/improved-notifications/improved-notifications.php:939 +#: modules/improved-notifications/improved-notifications.php:975 msgid "shortcode" msgstr "code court" -#: modules/editorial-metadata/editorial-metadata.php:2107 -#: modules/editorial-metadata/editorial-metadata.php:2470 +#: 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" @@ -2396,13 +2446,13 @@ msgstr "Afficher comme filtres d’aperçu du contenu" msgid "Show content from" msgstr "Afficher le contenu à partir de" -#: modules/editorial-metadata/editorial-metadata.php:2131 -#: modules/editorial-metadata/editorial-metadata.php:2496 +#: 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:2179 -#: modules/editorial-metadata/editorial-metadata.php:2545 +#: modules/editorial-metadata/editorial-metadata.php:2189 +#: modules/editorial-metadata/editorial-metadata.php:2555 msgid "Show on Post Types screen" msgstr "Afficher dans l’écran « Types de publication »" @@ -2419,8 +2469,8 @@ msgstr "" "Afficher le menu déroulant de l’état sur l’écran de modification de la " "publication :" -#: modules/editorial-metadata/editorial-metadata.php:1970 -#: modules/editorial-metadata/editorial-metadata.php:2332 +#: modules/editorial-metadata/editorial-metadata.php:1980 +#: modules/editorial-metadata/editorial-metadata.php:2342 msgid "Single Select" msgstr "Sélection simple" @@ -2429,11 +2479,11 @@ msgstr "Sélection simple" msgid "Site Administrator" msgstr "Administrateur/administratrice du site" -#: modules/calendar/calendar.php:1389 +#: modules/calendar/calendar.php:1403 msgid "Six months" msgstr "Six mois" -#: modules/calendar/calendar.php:1355 +#: modules/calendar/calendar.php:1369 msgid "Six months ago" msgstr "Il y a six mois" @@ -2456,13 +2506,18 @@ msgstr "" msgid "Skipped" msgstr "Ignoré" -#: modules/editorial-metadata/editorial-metadata.php:1899 -#: modules/editorial-metadata/editorial-metadata.php:2242 +#: lib/Legacy/Util.php:206 +#| msgid "Blacklisted taxonomies for Notifications" +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/custom-status/custom-status.php:1986 msgid "Slug" msgstr "Identifiant" -#: modules/editorial-metadata/editorial-metadata.php:1300 +#: modules/editorial-metadata/editorial-metadata.php:1301 msgid "Slug already in use. Please choose another." msgstr "Slug déjà utilisé. Veuillez en choisir un autre." @@ -2470,11 +2525,7 @@ msgstr "Slug déjà utilisé. Veuillez en choisir un autre." msgid "slug1,slug2" msgstr "slug1,slug2" -#: modules/dashboard/dashboard.php:316 -msgid "Sorry! You're not subscribed to any posts!" -msgstr "Désolé ! Vous n’êtes abonné à aucune publication !" - -#: modules/editorial-comments/editorial-comments.php:1050 +#: modules/editorial-comments/editorial-comments.php:1080 msgid "" "Sorry, you can't delete this editorial comment because it has some replies." msgstr "" @@ -2486,7 +2537,7 @@ 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." -#: modules/editorial-comments/editorial-comments.php:738 +#: modules/editorial-comments/editorial-comments.php:768 msgid "" "Sorry, you don't have the privileges to add editorial comments. Please talk " "to your Administrator." @@ -2494,8 +2545,8 @@ msgstr "" "Désolé, vous n’avez pas les privilèges pour ajouter des commentaires " "éditoriaux. Veuillez en parler à votre administrateur/administratrice." -#: modules/editorial-comments/editorial-comments.php:1029 -#: modules/editorial-comments/editorial-comments.php:1133 +#: modules/editorial-comments/editorial-comments.php:1059 +#: modules/editorial-comments/editorial-comments.php:1163 msgid "" "Sorry, you don't have the privileges to delete this editorial comment. " "Please talk to your Administrator." @@ -2503,8 +2554,8 @@ msgstr "" "Désolé, vous n’avez pas les privilèges pour supprimer ce commentaire " "éditorial. Veuillez en parler à votre administrateur/administratrice." -#: modules/editorial-comments/editorial-comments.php:881 -#: modules/editorial-comments/editorial-comments.php:1013 +#: modules/editorial-comments/editorial-comments.php:911 +#: modules/editorial-comments/editorial-comments.php:1043 msgid "" "Sorry, you don't have the privileges to edit editorial comments. Please talk " "to your Administrator." @@ -2512,7 +2563,7 @@ msgstr "" "Désolé, vous n’avez pas les privilèges pour modifier les commentaires " "éditoriaux. Veuillez en parler à votre administrateur/administratrice." -#: modules/editorial-comments/editorial-comments.php:899 +#: modules/editorial-comments/editorial-comments.php:929 msgid "" "Sorry, you don't have the privileges to edit this editorial comment. Please " "talk to your Administrator." @@ -2520,7 +2571,7 @@ 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:1339 +#: modules/calendar/calendar.php:1353 msgid "Start date" msgstr "Date de début" @@ -2565,6 +2616,7 @@ msgstr "Tri d’état mis à jour." #. 1: post type, 2: post id, 3. post title, 4. user name, 5. user email #: modules/notifications/notifications.php:2032 +#, php-format 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" @@ -2573,7 +2625,7 @@ msgstr "L’état a été changé pour %1$s #%2$s « %3$s » par %4$s %5$s" msgid "Statuses" msgstr "États" -#: modules/calendar/calendar.php:2537 +#: modules/calendar/calendar.php:2566 msgid "Statuses to display publish time" msgstr "États à afficher l’heure de publication" @@ -2586,7 +2638,7 @@ msgstr "Arrêtez de me notifier" msgid "Subject" msgstr "Objet" -#: modules/notifications-log/notifications-log.php:813 +#: modules/notifications-log/notifications-log.php:814 msgid "Subject:" msgstr "Objet :" @@ -2594,19 +2646,15 @@ msgstr "Objet :" msgid "Submitted on" msgstr "Envoyé le" -#: modules/calendar/calendar.php:1334 +#: modules/calendar/calendar.php:1348 msgid "Subscribe in iCal or Google Calendar" msgstr "Cliquez ici pour vous abonner à iCal ou Google Agenda" -#: modules/calendar/calendar.php:2529 -msgid "Subscription in iCal or Google Calendar" -msgstr "Abonnement à iCal ou Google Agenda" - #: modules/notifications-log/library/NotificationsLogTable.php:515 msgid "Success" msgstr "Succès" -#: modules/calendar/calendar.php:806 +#: modules/calendar/calendar.php:807 msgid "Sun" msgstr "Dim" @@ -2614,13 +2662,13 @@ msgstr "Dim" msgid "synchronous" msgstr "synchrone" -#: modules/calendar/calendar.php:3456 +#: modules/calendar/calendar.php:3511 msgid "Tag" msgid_plural "Tags" msgstr[0] "Étiquette" msgstr[1] "Étiquettes" -#: modules/calendar/calendar.php:3555 +#: modules/calendar/calendar.php:3610 msgid "Tags" msgstr "Étiquettes" @@ -2632,17 +2680,17 @@ msgstr "Taxonomies à afficher :" msgid "Taxonomy" msgstr "Taxonomie" -#: modules/editorial-metadata/editorial-metadata.php:445 +#: modules/editorial-metadata/editorial-metadata.php:446 msgctxt "taxonomy general name" msgid "Metadata" msgstr "Métadonnées" -#: modules/editorial-metadata/editorial-metadata.php:446 +#: modules/editorial-metadata/editorial-metadata.php:447 msgctxt "taxonomy singular name" msgid "Metadata" msgstr "Métadonnées" -#: modules/calendar/calendar.php:1397 +#: modules/calendar/calendar.php:1411 msgid "Ten months" msgstr "Dix mois" @@ -2650,16 +2698,16 @@ msgstr "Dix mois" msgid "Terms" msgstr "Termes" -#: modules/editorial-metadata/editorial-metadata.php:1604 +#: modules/editorial-metadata/editorial-metadata.php:1605 #: modules/custom-status/custom-status.php:1821 msgid "Terms not set." msgstr "Les conditions ne sont pas définies." -#: modules/editorial-metadata/editorial-metadata.php:288 +#: modules/editorial-metadata/editorial-metadata.php:289 msgid "Text" msgstr "Texte" -#: modules/editorial-metadata/editorial-metadata.php:2251 +#: modules/editorial-metadata/editorial-metadata.php:2261 msgid "" "The \"slug\" is the URL-friendly version of the name. It is usually all " "lowercase and contains only letters, numbers, and hyphens." @@ -2673,8 +2721,8 @@ msgstr "" msgid "The color is used to identify the status." msgstr "La couleur est utilisée pour identifier le statut." -#: modules/editorial-metadata/editorial-metadata.php:1920 -#: modules/editorial-metadata/editorial-metadata.php:2268 +#: modules/editorial-metadata/editorial-metadata.php:1930 +#: modules/editorial-metadata/editorial-metadata.php:2278 msgid "" "The description can be used to communicate with your team about what the " "metadata is for." @@ -2701,12 +2749,12 @@ msgstr "L’intégration de The Events Calendar" msgid "The icon is used to visually represent the status." msgstr "L’icône est utilisée pour représenter visuellement l’état." -#: modules/editorial-metadata/editorial-metadata.php:1934 +#: modules/editorial-metadata/editorial-metadata.php:1944 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:1894 -#: modules/editorial-metadata/editorial-metadata.php:2237 +#: modules/editorial-metadata/editorial-metadata.php:1904 +#: modules/editorial-metadata/editorial-metadata.php:2247 msgid "The name is for labeling the metadata field." msgstr "Le nom sert à labelliser le champ de métadonnées." @@ -2722,13 +2770,7 @@ msgstr "" "La notification a été définie comme « Planifiée » mais la tâche cron est " "introuvable" -#: modules/dashboard/dashboard.php:410 -msgid "" -"The notifications module will need to be enabled for this widget to display." -msgstr "" -"Le module de notification doit être activé pour que ce widget s’affiche." - -#: modules/calendar/calendar.php:2613 +#: modules/calendar/calendar.php:2642 msgid "" "The number of weeks shown on the calendar can be changed on a user-by-user " "basis using the calendar's screen options." @@ -2740,12 +2782,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:3675 +#: modules/calendar/calendar.php:3730 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:4154 +#: modules/calendar/calendar.php:4209 msgid "" "The selected user doesn't have enough permissions to be set as the post " "author." @@ -2753,7 +2795,7 @@ 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:1904 +#: modules/editorial-metadata/editorial-metadata.php:1914 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éé." @@ -2765,24 +2807,24 @@ msgstr "" "Le slug est un ID unique pour l’état et est modifié lorsque le nom est " "modifié." -#: modules/content-overview/content-overview.php:1540 +#: modules/content-overview/content-overview.php:1564 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é." -#: modules/settings/settings.php:290 +#: modules/settings/settings.php:289 msgid "There are no PublishPress modules registered" msgstr "Il n’y a aucun module PublishPress enregistré" -#: modules/editorial-comments/editorial-comments.php:835 -#: modules/editorial-comments/editorial-comments.php:965 -#: modules/editorial-comments/editorial-comments.php:1075 -#: modules/editorial-comments/editorial-comments.php:1159 +#: 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 msgid "" "There was a problem of some sort. Try again or contact your administrator." msgstr "" "Un problème est survenu. Essayez à nouveau ou contactez votre administrateur." -#: modules/calendar/calendar.php:188 +#: modules/calendar/calendar.php:189 msgid "There was an error updating the post. Please try again." msgstr "" "Une erreur s’est produite lors de la mise à jour de la publication. Veuillez " @@ -2790,6 +2832,7 @@ msgstr "" #. 1: date, 2: time, 3: timezone #: modules/notifications/notifications.php:2043 +#, php-format msgid "This action was taken on %1$s at %2$s %3$s" msgstr "Cette action a été effectuée le %1$s à %2$s %3$s" @@ -2800,10 +2843,11 @@ msgid "This editorial metadata type is not yet supported." msgstr "Ce type de metadonnée n’est pas encore pris en charge." #: modules/notifications/notifications.php:1056 +#, php-format msgid "This email was sent %s." msgstr "Cet e-mail à été envoyé %s." -#: modules/notifications-log/notifications-log.php:831 +#: modules/notifications-log/notifications-log.php:832 msgid "" "This is a preview of the scheduled message. The content can still change " "until the notification is sent." @@ -2811,20 +2855,20 @@ 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:2160 -#: modules/editorial-metadata/editorial-metadata.php:2526 +#: modules/editorial-metadata/editorial-metadata.php:2170 +#: modules/editorial-metadata/editorial-metadata.php:2536 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:2184 -#: modules/editorial-metadata/editorial-metadata.php:2549 +#: modules/editorial-metadata/editorial-metadata.php:2194 +#: modules/editorial-metadata/editorial-metadata.php:2559 msgid "" "This metadata will be viewable on the overview screens for these post types." msgstr "" "Ces métadonnées seront visibles sur les écrans d’aperçu de ces types de " "publication." -#: modules/notifications-log/notifications-log.php:438 +#: modules/notifications-log/notifications-log.php:439 msgid "" "This notification is very similar to another one sent less than %d minutes " "ago for the same receiver" @@ -2832,10 +2876,6 @@ msgstr "" "Cette notification est très similaire à une autre envoyée il y a moins de %d " "minutes pour le même destinataire" -#: modules/dashboard/dashboard.php:305 -msgid "This post was last updated on " -msgstr "Cette publication a été mis à jour pour la dernière fois le " - #: modules/improved-notifications/improved-notifications.php:355 msgid "" "This will prevent too many notifications being sent for the same or similar " @@ -2853,23 +2893,23 @@ 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:1383 +#: modules/calendar/calendar.php:1397 msgid "Three months" msgstr "Trois mois" -#: modules/calendar/calendar.php:1349 +#: modules/calendar/calendar.php:1363 msgid "Three months ago" msgstr "Il y a trois mois" -#: modules/calendar/calendar.php:1370 +#: modules/calendar/calendar.php:1384 msgid "Three weeks" msgstr "Trois semaines" -#: modules/calendar/calendar.php:810 +#: modules/calendar/calendar.php:811 msgid "Thu" msgstr "Jeu" -#: modules/calendar/calendar.php:3516 +#: modules/calendar/calendar.php:3571 #: modules/content-overview/content-overview.php:626 #: lib/Notifications/Table/Workflows.php:142 #: lib/Notifications/Table/Notifications.php:156 @@ -2877,10 +2917,11 @@ msgid "Title" msgstr "Titre" #: modules/notifications/notifications.php:2065 +#, php-format msgid "Title: %s" msgstr "Titre : %s" -#: modules/content-overview/content-overview.php:1389 +#: modules/content-overview/content-overview.php:1413 msgid "to" msgstr "à" @@ -2888,42 +2929,43 @@ msgstr "à" msgid "To date" msgstr "À ce jour" -#: modules/calendar/calendar.php:832 modules/calendar/calendar.php:2124 +#: modules/calendar/calendar.php:833 modules/calendar/calendar.php:2138 msgid "Today" msgstr "Aujourd’hui" -#: modules/calendar/calendar.php:2118 +#: modules/calendar/calendar.php:2132 +#, php-format msgid "Today is %s" msgstr "Aujourd‘hui est le %s" -#: common/php/class-module.php:272 modules/calendar/calendar.php:1814 -#: modules/calendar/calendar.php:3475 -#: modules/content-overview/content-overview.php:1892 +#: common/php/class-module.php:272 modules/calendar/calendar.php:1828 +#: modules/calendar/calendar.php:3530 +#: modules/content-overview/content-overview.php:1916 msgid "Trash" msgstr "Corbeille" -#: modules/calendar/calendar.php:808 +#: modules/calendar/calendar.php:809 msgid "Tue" msgstr "Mar" -#: modules/calendar/calendar.php:1401 +#: modules/calendar/calendar.php:1415 msgid "Twelve months" msgstr "Douze mois" -#: modules/calendar/calendar.php:1381 +#: modules/calendar/calendar.php:1395 msgid "Two months" msgstr "Deux mois" -#: modules/calendar/calendar.php:1347 +#: modules/calendar/calendar.php:1361 msgid "Two months ago" msgstr "Il y a deux mois" -#: modules/calendar/calendar.php:1368 +#: modules/calendar/calendar.php:1382 msgid "Two weeks" msgstr "Deux semaines" -#: modules/editorial-metadata/editorial-metadata.php:1929 -#: modules/editorial-metadata/editorial-metadata.php:2276 +#: modules/editorial-metadata/editorial-metadata.php:1939 +#: modules/editorial-metadata/editorial-metadata.php:2286 msgid "Type" msgstr "Type" @@ -2931,31 +2973,23 @@ msgstr "Type" msgid "Undefined error found" msgstr "Erreur indéfinie trouvée" -#: modules/calendar/calendar.php:1457 +#: modules/calendar/calendar.php:1471 #: modules/content-overview/content-overview.php:1076 msgid "Undo" msgstr "Annuler" -#: modules/dashboard/dashboard.php:165 -msgid "Unpublished Content" -msgstr "Contenu non publié" - -#: modules/calendar/calendar.php:797 modules/calendar/calendar.php:3681 +#: modules/calendar/calendar.php:798 modules/calendar/calendar.php:3736 msgid "Untitled" msgstr "Sans titre" -#: modules/editorial-metadata/editorial-metadata.php:451 +#: modules/editorial-metadata/editorial-metadata.php:452 msgid "Update Editorial Metadata" msgstr "Mise à jour des métadonnées éditoriales" -#: modules/editorial-metadata/editorial-metadata.php:2207 +#: modules/editorial-metadata/editorial-metadata.php:2217 msgid "Update Metadata Term" msgstr "Terme de mise à jour des métadonnées" -#: modules/dashboard/widgets/dashboard-notepad.php:168 -msgid "Update Note" -msgstr "Modification de la note" - #: modules/notifications/notifications.php:381 msgid "Update Notify Email" msgstr "Mettre à jour l’e-mail de notification" @@ -2972,23 +3006,34 @@ msgstr "Mettre à jour utilisateur/utilisatrice de notification" msgid "Update Status" msgstr "Mettre à jour le statut" -#: modules/calendar/calendar.php:192 +#: modules/calendar/calendar.php:193 +#, php-format msgid "" "Updating the post date dynamically doesn't work for published content. " "Please edit the post." msgstr "" "La mise à jour dynamique de la date de publication ne fonctionne pas pour le " -"contenu publié. Veuillez modifier la publication." +"contenu publié. Veuillez modifier la publication." -#: includes.php:159 +#: includes.php:159 lib/Legacy/Util.php:213 msgid "Upgrade to Pro" msgstr "Passer à la version Pro" +#: lib/Legacy/Util.php:198 +#| msgid "PublishPress Planner" +msgid "Upgrade to PublishPress Planner Pro" +msgstr "Passez à PublishPress Planner Pro" + #: modules/custom-status/custom-status.php:1856 msgid "Use on these post types:" msgstr "Utiliser sur ces types de publication :" -#: modules/editorial-metadata/editorial-metadata.php:289 +#: lib/Legacy/Util.php:208 +#| msgid "You don't have any notifications" +msgid "Use post meta in notifications" +msgstr "Utiliser le méta de la publication dans les notifications" + +#: modules/editorial-metadata/editorial-metadata.php:290 msgid "User" msgstr "Compte" @@ -2996,25 +3041,26 @@ msgstr "Compte" msgid "user" msgstr "compte" -#: modules/improved-notifications/improved-notifications.php:935 +#: modules/improved-notifications/improved-notifications.php:971 msgid "User making changes or comments" msgstr "" "Utilisateur/utilisatrice apportant des modifications ou des commentaires" -#: modules/editorial-metadata/editorial-metadata.php:1940 -#: modules/editorial-metadata/editorial-metadata.php:2302 +#: modules/editorial-metadata/editorial-metadata.php:1950 +#: modules/editorial-metadata/editorial-metadata.php:2312 msgid "User role" msgstr "Rôle du compte" -#: modules/editorial-comments/editorial-comments.php:1240 +#: modules/editorial-comments/editorial-comments.php:1270 msgid "User Url" msgstr "Url du compte" #: modules/notifications-log/library/NotificationsLogTable.php:122 +#, php-format msgid "User: %s (%d)" msgstr "Compte : %s (%d)" -#: modules/editorial-comments/editorial-comments.php:1235 +#: modules/editorial-comments/editorial-comments.php:1265 msgid "Username" msgstr "Identifiant" @@ -3029,24 +3075,30 @@ msgstr "" "Les utilisateurs/utilisatrices qui ont sélectionné « Me notifier » pour le " "contenu" -#: modules/calendar/calendar.php:1838 modules/calendar/calendar.php:3482 -#: modules/content-overview/content-overview.php:1908 +#: modules/calendar/calendar.php:1852 modules/calendar/calendar.php:3537 +#: modules/content-overview/content-overview.php:1932 msgid "View" msgstr "Voir" -#: modules/calendar/calendar.php:1832 -#: modules/content-overview/content-overview.php:1902 +#: modules/calendar/calendar.php:1846 +#: modules/content-overview/content-overview.php:1926 +#, php-format msgid "View “%s”" msgstr "Voir “%s”" #: modules/editorial-metadata/input-handlers/editorial-metadata-input-location-handler.php:82 +#, php-format msgid "View “%s” on Google Maps" msgstr "Voir “%s” sur Google Maps" -#: modules/calendar/calendar.php:3940 +#: modules/calendar/calendar.php:3995 msgid "View all categories" msgstr "Voir toutes les catégories" +#: lib/Legacy/Util.php:238 +msgid "View Knowledge Base" +msgstr "Voir la base de connaissances" + #: modules/notifications/notifications.php:380 msgid "View Notify Email" msgstr "Voir l’e-mail de notification" @@ -3061,12 +3113,13 @@ msgstr "Voir utilisateur/utilisatrice de notification" #: modules/notifications/notifications.php:2089 #: modules/notifications/notifications.php:2146 +#, php-format msgid "View: %s" msgstr "Voir : %s" -#: modules/editorial-metadata/editorial-metadata.php:2083 -#: modules/editorial-metadata/editorial-metadata.php:2443 -#: modules/editorial-metadata/editorial-metadata.php:2690 +#: modules/editorial-metadata/editorial-metadata.php:2093 +#: modules/editorial-metadata/editorial-metadata.php:2453 +#: modules/editorial-metadata/editorial-metadata.php:2700 msgid "Viewable" msgstr "Visibilité" @@ -3074,15 +3127,15 @@ msgstr "Visibilité" msgid "Warning" msgstr "Avertissement" -#: modules/calendar/calendar.php:809 +#: modules/calendar/calendar.php:810 msgid "Wed" msgstr "Mer" -#: modules/editorial-metadata/editorial-metadata.php:219 +#: modules/editorial-metadata/editorial-metadata.php:220 msgid "What the post needs to cover." msgstr "Ce que la publication doit couvrir." -#: modules/improved-notifications/improved-notifications.php:807 +#: modules/improved-notifications/improved-notifications.php:843 msgid "What to say?" msgstr "Que dire ?" @@ -3098,7 +3151,7 @@ msgstr "Lorsque le contenu est déplacé vers un nouveau statut" msgid "When the content is updated" msgstr "Lorsque le contenu a été mis à jour" -#: modules/editorial-metadata/editorial-metadata.php:211 +#: modules/editorial-metadata/editorial-metadata.php:212 msgid "When the first draft needs to be ready." msgstr "Quand la première ébauche doit être prête." @@ -3107,40 +3160,37 @@ msgid "When the status is changed" msgstr "Lorsque le statut est modifié" #: lib/Notifications/Plugin.php:57 -#: modules/improved-notifications/improved-notifications.php:777 +#: modules/improved-notifications/improved-notifications.php:813 #: modules/notifications-log/library/NotificationsLogTable.php:491 msgid "When to notify?" msgstr "Quand faut-il notifier ?" #: lib/Notifications/Plugin.php:59 -#: modules/improved-notifications/improved-notifications.php:797 +#: modules/improved-notifications/improved-notifications.php:833 #: modules/notifications-log/library/NotificationsLogTable.php:493 msgid "Who to notify?" msgstr "Qui doit être prévenu ?" -#: modules/dashboard/dashboard.php:70 -msgid "Widget Options" -msgstr "Options de Widget" - #: modules/notifications/notifications.php:1918 msgid "WordPress Scheduler" msgstr "Planificateur WordPress" -#: modules/improved-notifications/improved-notifications.php:936 +#: modules/improved-notifications/improved-notifications.php:972 msgid "Workflow" msgstr "Flux de travail" -#: modules/improved-notifications/improved-notifications.php:739 +#: modules/improved-notifications/improved-notifications.php:775 msgid "Workflow Settings" msgstr "Réglages du flux de travail" #: modules/notifications-log/library/NotificationsLogTable.php:110 +#, php-format msgid "Workflow: %s" msgstr "Fluxe de travail : %s" #: views/user_profile_notification_channels.html.php:14 #: modules/improved-notifications/improved-notifications.php:407 -#: modules/improved-notifications/improved-notifications.php:1115 +#: modules/improved-notifications/improved-notifications.php:1151 msgid "Workflows" msgstr "Flux de travail" @@ -3148,22 +3198,23 @@ msgstr "Flux de travail" msgid "Writer is working on the post." msgstr "Le rédacteur travaille actuellement sur la publication." -#: modules/editorial-metadata/editorial-metadata.php:2088 -#: modules/editorial-metadata/editorial-metadata.php:2112 -#: modules/editorial-metadata/editorial-metadata.php:2136 -#: modules/editorial-metadata/editorial-metadata.php:2447 -#: modules/editorial-metadata/editorial-metadata.php:2474 -#: modules/editorial-metadata/editorial-metadata.php:2500 -#: modules/editorial-metadata/editorial-metadata.php:2750 +#: 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/input-handlers/editorial-metadata-input-checkbox-handler.php:142 msgid "Yes" msgstr "Oui" #: modules/notifications/notifications.php:1051 +#, php-format msgid "You are receiving this email because you are subscribed to \"%s\"." msgstr "Vous recevez cet e-mail parce que vous êtes abonné à « %s »." -#: modules/improved-notifications/improved-notifications.php:929 +#: modules/improved-notifications/improved-notifications.php:965 msgid "" "You can add dynamic information to the Subject or Body text using the " "following shortcodes:" @@ -3171,7 +3222,7 @@ msgstr "" "Vous pouvez ajouter des informations dynamiques à l’objet ou au corps du " "texte en utilisant les codes courts suivants :" -#: modules/editorial-comments/editorial-comments.php:502 +#: modules/editorial-comments/editorial-comments.php:532 msgid "" "You can add editorial comments to a post once you've saved it for the first " "time." @@ -3180,6 +3231,7 @@ msgstr "" "que vous l’avez enregistrée pour la première fois." #: modules/notifications/notifications.php:2149 +#, php-format msgid "You can see all editorial comments on this %s here: " msgstr "Vous pouvez voir ici tous les commentaires éditoriaux sur cette %s : " @@ -3200,3 +3252,48 @@ msgstr "" "Vous utilisez la version gratuite de PublishPress Planner. La version Pro " "offre plus de fonctionnalités et de pris en charge. %sPasser à la version " "Pro%s" + +#~ msgid "%1$s last updated on %2$s" +#~ msgstr "%1$s mis à jour le %2$s" + +#~ msgid "Calendar" +#~ msgstr "Calendrier" + +#~ msgid "Dashboard" +#~ msgstr "Tableau de bord" + +#~ msgid "Dashboard Note" +#~ msgstr "Note du tableau de bord" + +#~ msgid "My Content Notifications" +#~ msgstr "Mes notifications de contenu" + +#~ msgid "Notepad" +#~ msgstr "Bloc-notes" + +#~ msgid "Post Status Widget" +#~ msgstr "Widget de l’état de la publication" + +#~ msgid "Posts at a Glance" +#~ msgstr "Aperçu des articles" + +#~ msgid "Sorry! You're not subscribed to any posts!" +#~ msgstr "Désolé ! Vous n’êtes abonné à aucune publication !" + +#~ msgid "" +#~ "The notifications module will need to be enabled for this widget to " +#~ "display." +#~ msgstr "" +#~ "Le module de notification doit être activé pour que ce widget s’affiche." + +#~ msgid "This post was last updated on " +#~ msgstr "Cette publication a été mis à jour pour la dernière fois le " + +#~ msgid "Unpublished Content" +#~ msgstr "Contenu non publié" + +#~ msgid "Update Note" +#~ msgstr "Modification de la note" + +#~ msgid "Widget Options" +#~ msgstr "Options de Widget" diff --git a/languages/publishpress-it_IT.mo b/languages/publishpress-it_IT.mo index 717c42fa7..a16a4ad42 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 0dce8e25f..9503f8c23 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/publishpress\n" -"POT-Creation-Date: 2023-09-06 10:48+0000\n" -"PO-Revision-Date: 2023-09-10 02:37+0200\n" +"POT-Creation-Date: 2023-09-28 15:49+0000\n" +"PO-Revision-Date: 2023-12-15 17:33+0100\n" "Last-Translator: \n" "Language-Team: Italian\n" "Language: it_IT\n" @@ -14,7 +14,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Poedit 3.3\n" +"X-Generator: Poedit 3.4\n" #: modules/notifications-log/library/NotificationsLogTable.php:257 msgid " Scheduled" @@ -30,26 +30,31 @@ msgstr "«Avvisami»" #. 1: post type, 2: post id, 3. post title, 4. user name, 5. user email #: modules/notifications/notifications.php:1951 +#, php-format msgid "%1$s #%2$s \"%3$s\" was moved to the trash by %4$s %5$s" msgstr "%1$s #%2$s \"%3$s\" è stato cestinato da %4$s %5$s" #. 1: post type, 2: post id, 3. post title, 4. user name, 5. user email #: modules/notifications/notifications.php:1998 +#, php-format msgid "%1$s #%2$s \"%3$s\" was published by %4$s %5$s" msgstr "%1$s #%2$s \"%3$s\" è stato pubblicato da %4$s %5$s" #. 1: post type, 2: post id, 3. post title, 4. user name, 5. user email #: modules/notifications/notifications.php:1968 +#, php-format msgid "%1$s #%2$s \"%3$s\" was restored from trash by %4$s %5$s" msgstr "%1$s #%2$s \"%3$s\" è stato ripristinato dal cestino da %4$s %5$s" #. 1: post type, 2: post id, 3. post title, 4. user name, 5. user email #: modules/notifications/notifications.php:2015 +#, php-format msgid "%1$s #%2$s \"%3$s\" was unpublished by %4$s %5$s" msgstr "%1$s #%2$s \"%3$s\" è stato modificato a non pubblicato da %4$s %5$s" #. 1: comment author, 2: author email, 3: date, 4: time #: modules/notifications/notifications.php:2114 +#, php-format msgid "%1$s (%2$s ) said on %3$s at %4$s:" msgstr "%1$s (%2$s ) ha detto %3$s alle %4$s:" @@ -61,6 +66,7 @@ msgstr " %1$s a %2$s" #. 1: old status, 2: new status #: modules/notifications/notifications.php:2056 +#, php-format msgid "%1$s => %2$s" msgstr "%1$s => %2$s" @@ -68,13 +74,10 @@ msgstr "%1$s => %2$s" #: modules/notifications/notifications.php:1892 #: modules/editorial-metadata/input-handlers/editorial-metadata-input-date-handler.php:201 #: modules/editorial-comments/library/EditorialCommentsTable.php:337 +#, php-format msgid "%1$s at %2$s" msgstr "%1$s alle %2$s" -#: modules/dashboard/widgets/dashboard-notepad.php:140 -msgid "%1$s last updated on %2$s" -msgstr "Ultimo aggiornamento di%1$s il %2$s" - #: lib/Notifications/Workflow/Step/Receiver/Role.php:176 msgid "%d Role" msgid_plural "%d Roles" @@ -87,39 +90,41 @@ msgid_plural "%d Users" msgstr[0] "%d utente" msgstr[1] "%d utenti" -#: modules/calendar/calendar.php:830 +#: modules/calendar/calendar.php:831 msgid "%d week" msgstr "%d settimana" -#: modules/calendar/calendar.php:831 +#: modules/calendar/calendar.php:832 msgid "%d weeks" msgstr "%d settimane" -#: modules/notifications-log/notifications-log.php:271 +#: modules/notifications-log/notifications-log.php:272 +#, php-format msgid "%s notification found." msgid_plural "%s notifications found." msgstr[0] "Notifica %s trovata." msgstr[1] "Notifiche %s trovate." -#: modules/calendar/calendar.php:4031 +#: modules/calendar/calendar.php:4086 +#, php-format msgid "%s week" msgid_plural "%s weeks" msgstr[0] "%s settimana" msgstr[1] "%s settimane" -#: modules/calendar/calendar.php:2141 +#: modules/calendar/calendar.php:2155 msgid "«" msgstr "«" -#: modules/calendar/calendar.php:2154 +#: modules/calendar/calendar.php:2168 msgid "‹" msgstr "‹" -#: modules/calendar/calendar.php:2110 +#: modules/calendar/calendar.php:2124 msgid "»" msgstr "»" -#: modules/calendar/calendar.php:2093 +#: modules/calendar/calendar.php:2107 msgid "›" msgstr "›" @@ -131,7 +136,7 @@ msgstr "(senza titolo)" msgid "- any status -" msgstr "- Qualsiasi stato -" -#: modules/calendar/calendar.php:210 +#: modules/calendar/calendar.php:211 msgid "" "

For more information:

Calendar Documentation

PublishPress su Github

" -#: modules/editorial-comments/editorial-comments.php:87 +#: modules/editorial-comments/editorial-comments.php:88 msgid "" "

For more information:

Editorial Comments " @@ -167,7 +172,7 @@ msgstr "" "Editoriali

PublishPress su Github

" -#: modules/editorial-metadata/editorial-metadata.php:125 +#: modules/editorial-metadata/editorial-metadata.php:126 msgid "" "

For more information:

Editorial Metadata " @@ -191,7 +196,7 @@ msgstr "" "a>

PublishPress " "su Github

" -#: modules/editorial-comments/editorial-comments.php:82 +#: modules/editorial-comments/editorial-comments.php:83 msgid "" "

Editorial comments help you cut down on email overload and keep the " "conversation close to where it matters: your content. Threaded commenting in " @@ -212,7 +217,7 @@ msgstr "" "abilitate, chi segue l'articolo riceverà un'email ogni volta che viene " "lasciato un commento.

" -#: modules/editorial-metadata/editorial-metadata.php:120 +#: 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. " @@ -274,7 +279,7 @@ msgstr "" "possono essere inviate a un gruppo specifico di utenti quando un post cambia " "stato.

" -#: modules/calendar/calendar.php:205 +#: modules/calendar/calendar.php:206 msgid "" "

The calendar is a convenient week-by-week or month-by-month view into " "your content. Quickly see which stories are on track to being published on " @@ -296,6 +301,7 @@ msgstr "" "stato dell'articolo." #: modules/notifications/notifications.php:2064 +#, php-format msgid "== %s Details ==" msgstr "== %s Dettagli ==" @@ -306,46 +312,55 @@ msgstr "== Azioni ==" #. 1: site name, 2: post type, 3. post title #: modules/notifications/notifications.php:1991 +#, php-format msgid "[%1$s] %2$s Published: \"%3$s\"" msgstr "[%1$s] %2$s Pubblicato: \"%3$s\"" #. 1: site name, 2: post type, 3. post title #: modules/notifications/notifications.php:1961 +#, php-format msgid "[%1$s] %2$s Restored (from Trash ): \"%3$s\"" msgstr "[%1$s] %2$s Ripristinato (dal cestino): \"%3$s\"" #. 1: site name, 2: post type, 3. post title #: modules/notifications/notifications.php:2025 +#, php-format msgid "[%1$s] %2$s Status Changed for \"%3$s\"" msgstr "[%1$s] %2$s Stato modificato per \"%3$s\"" #. 1: site name, 2: post type, 3. post title #: modules/notifications/notifications.php:1944 +#, php-format msgid "[%1$s] %2$s Trashed: \"%3$s\"" msgstr "[%1$s] %2$s Cestinato: \"%3$s\"" #. 1: site name, 2: post type, 3. post title #: modules/notifications/notifications.php:2008 +#, php-format msgid "[%1$s] %2$s Unpublished: \"%3$s\"" msgstr "[%1$s] %2$s Non pubblicato: \"%3$s\"" #. 1: site name, 2: post type, 3. post title #: modules/notifications/notifications.php:1927 +#, php-format msgid "[%1$s] New %2$s Created: \"%3$s\"" msgstr "[%1$s] New %2$s Creato: \"%3$s\"" #. 1: blog name, 2: post title #: modules/notifications/notifications.php:2100 +#, php-format msgid "[%1$s] New Editorial Comment: \"%2$s\"" msgstr "[%1$s] Nuovo commento editoriale: \"%2$s\"" #. 1: post type, 2: post id, 3. post title, 4. user name, 5. user email #: modules/notifications/notifications.php:1934 +#, php-format msgid "A new %1$s (#%2$s \"%3$s\" ) was created by %4$s %5$s" msgstr "A new %1$s (#%2$s \"%3$s\" ) è stato creato da %4$s %5$s" #. 1: post id, 2: post title, 3. post type #: modules/notifications/notifications.php:2107 +#, php-format msgid "A new editorial comment was added to %3$s #%1$s \"%2$s\"" msgstr "Un nuovo commento editoriale è stato aggiunto a %3$s #%1$s \"%2$s\"" @@ -374,39 +389,41 @@ msgstr "" "essere caricati dal filtro del contenuto della tassonomia quando si aggiunge " "un nuovo flusso di lavoro di notifica." -#: modules/editorial-comments/editorial-comments.php:522 -#: modules/editorial-comments/editorial-comments.php:526 +#: modules/editorial-comments/editorial-comments.php:552 +#: modules/editorial-comments/editorial-comments.php:556 msgid "Add an editorial comment" msgstr "Aggiungi un commento editoriale" -#: modules/editorial-metadata/editorial-metadata.php:2075 -#: modules/editorial-metadata/editorial-metadata.php:2436 +#: modules/editorial-metadata/editorial-metadata.php:2085 +#: modules/editorial-metadata/editorial-metadata.php:2446 msgid "Add Another Option" msgstr "Aggiungi una opzione" -#: modules/editorial-comments/editorial-comments.php:544 +#: modules/editorial-comments/editorial-comments.php:574 msgid "Add Comment" msgstr "Aggiungi un commento" -#: modules/calendar/calendar.php:802 +#: modules/calendar/calendar.php:803 +#, php-format msgid "Add content for %s" msgstr "Aggiungi contenuto per %s" #: modules/notifications/notifications.php:2085 #: modules/notifications/notifications.php:2142 +#, php-format msgid "Add editorial comment: %s" msgstr "Aggiungi commento editoriale: %s" -#: modules/editorial-metadata/editorial-metadata.php:1798 +#: modules/editorial-metadata/editorial-metadata.php:1799 #: modules/custom-status/custom-status.php:2112 msgid "Add New" msgstr "Aggiungi nuovo" -#: modules/editorial-metadata/editorial-metadata.php:452 +#: modules/editorial-metadata/editorial-metadata.php:453 msgid "Add New Editorial Metadata" msgstr "Aggiungi un nuovo metadato editoriale" -#: modules/editorial-metadata/editorial-metadata.php:2571 +#: modules/editorial-metadata/editorial-metadata.php:2581 msgid "Add New Metadata Term" msgstr "Aggiungi nuovo termine metadati" @@ -442,12 +459,12 @@ 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:2155 -#: modules/editorial-metadata/editorial-metadata.php:2522 +#: modules/editorial-metadata/editorial-metadata.php:2165 +#: modules/editorial-metadata/editorial-metadata.php:2532 msgid "Add to post types" msgstr "Aggiungi ai tipi di contenuto" -#: modules/improved-notifications/improved-notifications.php:93 +#: modules/improved-notifications/improved-notifications.php:94 msgid "Advanced Notifications" msgstr "Notifiche avanzate" @@ -455,8 +472,8 @@ msgstr "Notifiche avanzate" msgid "All" msgstr "Tutto" -#: modules/content-overview/content-overview.php:1254 -#: modules/content-overview/content-overview.php:1257 +#: modules/content-overview/content-overview.php:1278 +#: modules/content-overview/content-overview.php:1281 #, php-format msgid "All %s" msgstr "Tutti i %s" @@ -465,13 +482,13 @@ msgstr "Tutti i %s" msgid "All Actions" msgstr "Tutte le azioni" -#: modules/calendar/calendar.php:828 modules/calendar/calendar.php:3979 -#: modules/content-overview/content-overview.php:1276 -#: modules/content-overview/content-overview.php:1279 +#: modules/calendar/calendar.php:829 modules/calendar/calendar.php:4034 +#: modules/content-overview/content-overview.php:1300 +#: modules/content-overview/content-overview.php:1303 msgid "All authors" msgstr "Tutti gli autori" -#: modules/calendar/calendar.php:826 +#: modules/calendar/calendar.php:827 msgid "All categories" msgstr "Tutte le categorie" @@ -483,7 +500,7 @@ msgstr "Tutti i canali" msgid "All channels" msgstr "Tutti i canali" -#: modules/editorial-metadata/editorial-metadata.php:449 +#: modules/editorial-metadata/editorial-metadata.php:450 msgid "All Editorial Metadata" msgstr "Tutti i metadati editoriali" @@ -503,22 +520,22 @@ msgstr "Tutte le notifiche di ruolo" msgid "All Notify Users" msgstr "Tutti gli utenti di notifica" -#: modules/editorial-metadata/editorial-metadata.php:1267 -#: modules/editorial-metadata/editorial-metadata.php:1437 +#: modules/editorial-metadata/editorial-metadata.php:1268 +#: modules/editorial-metadata/editorial-metadata.php:1438 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:1306 +#: modules/content-overview/content-overview.php:1330 msgid "All post types" msgstr "Tutti i tipi di contenuto" #: modules/notifications-log/notifications-log.php:204 -#: modules/editorial-comments/editorial-comments.php:211 +#: modules/editorial-comments/editorial-comments.php:212 #: modules/editorial-comments/library/EditorialCommentsTable.php:182 msgid "All Posts" msgstr "Tutti gli articoli" -#: modules/calendar/calendar.php:2847 +#: modules/calendar/calendar.php:2896 msgid "All posts" msgstr "Tutti gli articoli" @@ -530,20 +547,20 @@ msgstr "Tutti i destinatari" msgid "All Statuses" msgstr "Tutti gli stati" -#: modules/calendar/calendar.php:825 modules/calendar/calendar.php:3923 -#: modules/content-overview/content-overview.php:1232 +#: modules/calendar/calendar.php:826 modules/calendar/calendar.php:3978 +#: modules/content-overview/content-overview.php:1256 msgid "All statuses" msgstr "Tutti gli stati" -#: modules/calendar/calendar.php:827 modules/calendar/calendar.php:3958 +#: modules/calendar/calendar.php:828 modules/calendar/calendar.php:4013 msgid "All tags" msgstr "Tutti i tag" -#: modules/calendar/calendar.php:829 modules/calendar/calendar.php:4006 +#: modules/calendar/calendar.php:830 modules/calendar/calendar.php:4061 msgid "All types" msgstr "Tutti i tipi" -#: modules/editorial-comments/editorial-comments.php:212 +#: modules/editorial-comments/editorial-comments.php:213 #: modules/editorial-comments/library/EditorialCommentsTable.php:197 msgid "All Users" msgstr "Tutti gli utenti" @@ -552,6 +569,10 @@ msgstr "Tutti gli utenti" msgid "All Workflows" msgstr "Tutti i workflows" +#: modules/calendar/calendar.php:2558 +msgid "Allow public access to subscriptions in iCal or Google Calendar" +msgstr "Permetti l'accesso pubblico agli abbonamenti a iCal o Google Calendar" + #: modules/notifications/notifications.php:1649 msgid "Always notify the author of the content:" msgstr "Avvisa sempre l'autore del contenuto:" @@ -560,7 +581,7 @@ 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:2577 +#: modules/calendar/calendar.php:2606 msgid "Always show complete post titles" msgstr "Visualizza sempre il titolo completo degli articoli" @@ -568,7 +589,7 @@ msgstr "Visualizza sempre il titolo completo degli articoli" msgid "Apply" msgstr "Applica" -#: modules/calendar/calendar.php:816 +#: modules/calendar/calendar.php:817 msgid "Apr" msgstr "Apr" @@ -580,7 +601,7 @@ msgstr "" "Sei sicuro di voler eliminare lo stato dell'articolo? Tutti gli articoli con " "questo stato verranno assegnati allo stato predefinito." -#: modules/editorial-metadata/editorial-metadata.php:366 +#: modules/editorial-metadata/editorial-metadata.php:367 msgid "" "Are you sure you want to delete this term? Any metadata for this term will " "remain but will not be visible unless this term is re-added." @@ -593,7 +614,7 @@ msgstr "" msgid "Assigned" msgstr "Assegnato" -#: modules/editorial-metadata/editorial-metadata.php:216 +#: modules/editorial-metadata/editorial-metadata.php:217 msgid "Assignment" msgstr "Incarico" @@ -605,20 +626,20 @@ msgstr "Notifiche asincrone" msgid "asynchronous" msgstr "asincrono" -#: modules/calendar/calendar.php:2596 +#: modules/calendar/calendar.php:2625 msgid "At least one post type must be selected" msgstr "Almeno un tipo di articolo deve essere selezionato" -#: modules/editorial-comments/editorial-comments.php:532 +#: modules/editorial-comments/editorial-comments.php:562 msgid "Attach file" msgstr "Allega file" -#: modules/calendar/calendar.php:820 +#: modules/calendar/calendar.php:821 msgid "Aug" msgstr "Ago" -#: modules/calendar/calendar.php:1949 modules/calendar/calendar.php:3446 -#: modules/calendar/calendar.php:3536 +#: modules/calendar/calendar.php:1963 modules/calendar/calendar.php:3501 +#: modules/calendar/calendar.php:3591 #: modules/content-overview/content-overview.php:629 #: modules/editorial-comments/library/EditorialCommentsTable.php:229 msgid "Author" @@ -628,6 +649,7 @@ msgstr[1] "Autori" #. 1: author name, 2: author email #: modules/notifications/notifications.php:2069 +#, php-format msgid "Author: %1$s (%2$s )" msgstr "Autore: %1$s (%2$s )" @@ -643,15 +665,15 @@ msgstr "Autori dei contenuti" msgid "Auto-draft" msgstr "Bozza automatica" -#: modules/improved-notifications/improved-notifications.php:945 +#: modules/improved-notifications/improved-notifications.php:981 msgid "Available fields" msgstr "Campi disponibili" -#: modules/calendar/calendar.php:2133 +#: modules/calendar/calendar.php:2147 msgid "Back %d weeks" msgstr "Indietro di %d settimane" -#: modules/calendar/calendar.php:2145 +#: modules/calendar/calendar.php:2159 msgid "Back 1 week" msgstr "Indietro di una settimana" @@ -687,14 +709,10 @@ msgstr "Blog: " msgid "Body" msgstr "Corpo del testo" -#: modules/calendar/calendar.php:170 -msgid "Calendar" -msgstr "Calendario" - -#: modules/editorial-metadata/editorial-metadata.php:2210 +#: modules/editorial-metadata/editorial-metadata.php:2220 #: modules/custom-status/custom-status.php:2078 #: modules/content-overview/content-overview.php:1028 -#: modules/editorial-comments/editorial-comments.php:548 +#: modules/editorial-comments/editorial-comments.php:578 msgid "Cancel" msgstr "Annulla" @@ -702,12 +720,12 @@ msgstr "Annulla" msgid "Cannot reassign to the status you want to delete" msgstr "Impossibile riassegnare allo stato che si desidera eliminare" -#: modules/calendar/calendar.php:3546 +#: modules/calendar/calendar.php:3601 #: lib/Notifications/Workflow/Step/Event_Content/Filter/Category.php:34 msgid "Categories" msgstr "Categorie" -#: modules/calendar/calendar.php:3451 +#: modules/calendar/calendar.php:3506 #: lib/Notifications/Workflow/Step/Event_Content/Category.php:24 msgid "Category" msgid_plural "Categories" @@ -720,7 +738,7 @@ msgstr "Cambia" #: views/user_profile_notification_channels.html.php:15 #: modules/improved-notifications/improved-notifications.php:408 -#: modules/improved-notifications/improved-notifications.php:1116 +#: modules/improved-notifications/improved-notifications.php:1152 msgid "Channels" msgstr "Canali" @@ -728,7 +746,7 @@ msgstr "Canali" msgid "Cheatin’ uh?" msgstr "Si tenta di fare i furbi, eh?" -#: modules/editorial-metadata/editorial-metadata.php:282 +#: modules/editorial-metadata/editorial-metadata.php:283 msgid "Checkbox" msgstr "Checkbox" @@ -744,25 +762,25 @@ msgstr "Scegli tra le notifiche di ruolo" msgid "Choose from the most used notify users" msgstr "Scegli tra gli utenti di notifica più usati" -#: modules/editorial-comments/editorial-comments.php:77 +#: modules/editorial-comments/editorial-comments.php:78 msgid "Choose Post Types" msgstr "Scegli i tipi di articoli" #: views/user_profile_notification_channels.html.php:6 #: modules/improved-notifications/improved-notifications.php:402 -#: modules/improved-notifications/improved-notifications.php:1110 +#: modules/improved-notifications/improved-notifications.php:1146 msgid "Choose the channels where each workflow will send notifications to:" msgstr "Scegli i canali a cui ogni workflow invierà notifiche:" -#: modules/improved-notifications/improved-notifications.php:947 +#: modules/improved-notifications/improved-notifications.php:983 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:1426 -msgid "Click here to Subscribe in iCal or Google Calendar" +#: modules/calendar/calendar.php:1440 +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:794 modules/calendar/calendar.php:796 +#: modules/calendar/calendar.php:795 modules/calendar/calendar.php:797 msgid "Click to add" msgstr "Fai clic per aggiungere" @@ -787,11 +805,11 @@ msgstr "" "Fai clic per non ricevere più notifiche sugli aggiornamenti di questo " "articolo" -#: modules/content-overview/content-overview.php:1481 +#: modules/content-overview/content-overview.php:1505 msgid "Click to toggle" msgstr "Fai clic per commutare" -#: modules/calendar/calendar.php:798 +#: modules/calendar/calendar.php:799 msgid "Close" msgstr "Chiudi" @@ -804,15 +822,16 @@ msgstr "Colore" msgid "Comment" msgstr "Commento" -#: modules/editorial-comments/editorial-comments.php:1209 +#: modules/editorial-comments/editorial-comments.php:1239 msgid "Comment author name field:" msgstr "Nome del campo del commento autore:" -#: modules/editorial-comments/editorial-comments.php:1151 +#: modules/editorial-comments/editorial-comments.php:1181 msgid "Comment deleted successfully." msgstr "Il commento è stato eliminato correttamente." #: lib/Notifications/Workflow/Step/Event/Editorial_Comment.php:92 +#, php-format msgid "Comment: %s (%d)" msgstr "Commento: %s (%d)" @@ -824,14 +843,14 @@ msgstr "Configura" msgid "Contact" msgstr "Contatti" -#: modules/calendar/calendar.php:3563 -#: modules/improved-notifications/improved-notifications.php:933 +#: modules/calendar/calendar.php:3618 +#: modules/improved-notifications/improved-notifications.php:969 #: lib/Notifications/Workflow/Step/Content/Main.php:29 msgid "Content" msgstr "Contenuto" -#: modules/calendar/calendar.php:408 modules/calendar/calendar.php:425 -#: modules/calendar/calendar.php:426 +#: modules/calendar/calendar.php:170 modules/calendar/calendar.php:409 +#: modules/calendar/calendar.php:426 modules/calendar/calendar.php:427 msgid "Content Calendar" msgstr "Calendario dei contenuti" @@ -842,11 +861,11 @@ msgstr "Calendario dei contenuti" msgid "Content Overview" msgstr "Panoramica dei contenuti" -#: modules/notifications-log/notifications-log.php:821 +#: modules/notifications-log/notifications-log.php:822 msgid "Content:" msgstr "Contenuto:" -#: modules/calendar/calendar.php:1420 +#: modules/calendar/calendar.php:1434 msgid "Copy to the clipboard" msgstr "Copia negli appunti" @@ -862,7 +881,7 @@ msgstr "Impossibile eliminare lo stato: " msgid "Created on" msgstr "Creato il" -#: modules/calendar/calendar.php:1343 +#: modules/calendar/calendar.php:1357 msgid "Current week" msgstr "Settimana corrente" @@ -874,16 +893,8 @@ msgstr "Stato personalizzato" msgid "Custom status doesn't exist." msgstr "Lo stato personalizzato non esiste." -#: modules/dashboard/dashboard.php:56 -msgid "Dashboard" -msgstr "Bacheca" - -#: modules/dashboard/widgets/dashboard-notepad.php:50 -msgid "Dashboard Note" -msgstr "Nota in bacheca" - -#: modules/editorial-metadata/editorial-metadata.php:284 -#: modules/calendar/calendar.php:3435 +#: modules/editorial-metadata/editorial-metadata.php:285 +#: modules/calendar/calendar.php:3490 #: lib/Notifications/Table/Notifications.php:158 #: modules/notifications-log/library/NotificationsLogTable.php:490 msgid "Date" @@ -897,7 +908,7 @@ msgstr "Debug" msgid "Debug data" msgstr "Dati di debug" -#: modules/calendar/calendar.php:824 +#: modules/calendar/calendar.php:825 msgid "Dec" msgstr "Dic" @@ -909,10 +920,10 @@ msgstr "Predefinito" msgid "Default notification channels:" msgstr "Canali di notifica predefiniti:" -#: modules/editorial-metadata/editorial-metadata.php:2037 -#: modules/editorial-metadata/editorial-metadata.php:2067 -#: modules/editorial-metadata/editorial-metadata.php:2398 -#: modules/editorial-metadata/editorial-metadata.php:2428 +#: 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 msgid "Default option" msgstr "Opzione predefinita" @@ -920,18 +931,18 @@ msgstr "Opzione predefinita" msgid "Default post status has been changed." msgstr "Lo stato predefinito dell'articolo è stato modificato." -#: modules/calendar/calendar.php:2553 +#: modules/calendar/calendar.php:2582 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:2040 -#: modules/editorial-metadata/editorial-metadata.php:2070 -#: modules/editorial-metadata/editorial-metadata.php:2401 -#: modules/editorial-metadata/editorial-metadata.php:2431 -#: modules/editorial-metadata/editorial-metadata.php:2827 +#: 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/custom-status/custom-status.php:2926 -#: modules/editorial-comments/editorial-comments.php:613 +#: modules/editorial-comments/editorial-comments.php:643 #: modules/notifications-log/library/NotificationsLogTable.php:370 #: modules/notifications-log/library/NotificationsLogTable.php:401 #: modules/editorial-comments/library/EditorialCommentsTable.php:435 @@ -946,22 +957,27 @@ msgstr "Eliminare tutto" msgid "Delete file" msgstr "Elimina file" -#: modules/editorial-metadata/editorial-metadata.php:1912 -#: modules/editorial-metadata/editorial-metadata.php:2259 -#: modules/editorial-metadata/editorial-metadata.php:2689 +#: modules/editorial-metadata/editorial-metadata.php:1922 +#: modules/editorial-metadata/editorial-metadata.php:2269 +#: modules/editorial-metadata/editorial-metadata.php:2699 #: modules/custom-status/custom-status.php:2007 #: modules/custom-status/custom-status.php:2141 #: modules/custom-status/custom-status.php:2780 msgid "Description" msgstr "Descrizione" +#: lib/Legacy/Util.php:236 +msgid "Detailed documentation is also available on the plugin website." +msgstr "" +"Una documentazione dettagliata è disponibile anche sul sito del plugin." + #: modules/custom-status/custom-status.php:1889 -#: modules/calendar/calendar.php:2627 modules/dashboard/dashboard.php:368 -#: modules/dashboard/dashboard.php:391 modules/dashboard/dashboard.php:425 +#: modules/calendar/calendar.php:2656 msgid "Disabled" msgstr "Disabilitato" -#: modules/settings/settings.php:381 +#: modules/settings/settings.php:380 +#, php-format msgid "" "Disabled because add_post_type_support('%1$s', '%2$s') is included in a " "loaded file." @@ -969,14 +985,14 @@ msgstr "" "Disattivato perché add_post_type_support('%1$s', '%2$s') è incluso in un " "file caricato." -#: modules/editorial-metadata/editorial-metadata.php:2028 -#: modules/editorial-metadata/editorial-metadata.php:2059 -#: modules/editorial-metadata/editorial-metadata.php:2389 -#: modules/editorial-metadata/editorial-metadata.php:2420 +#: 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 msgid "Display Label" msgstr "Visualizza eitichetta" -#: modules/editorial-comments/editorial-comments.php:1236 +#: modules/editorial-comments/editorial-comments.php:1266 msgid "Display Name" msgstr "Nome da visualizzare" @@ -984,7 +1000,7 @@ msgstr "Nome da visualizzare" msgid "Documentation" msgstr "Documentazione" -#: modules/calendar/calendar.php:1413 +#: modules/calendar/calendar.php:1427 msgid "Download .ics file" msgstr "Scarica file .ics" @@ -993,12 +1009,12 @@ msgstr "Scarica file .ics" msgid "Draft" msgstr "Bozza" -#: modules/editorial-metadata/editorial-metadata.php:1995 -#: modules/editorial-metadata/editorial-metadata.php:2358 +#: modules/editorial-metadata/editorial-metadata.php:2005 +#: modules/editorial-metadata/editorial-metadata.php:2368 msgid "Dropdown Option" msgstr "Opzioni del menu a discesa" -#: modules/editorial-metadata/editorial-metadata.php:283 +#: modules/editorial-metadata/editorial-metadata.php:284 msgid "Dropdown Select" msgstr "Seleziona menu a discesa" @@ -1010,25 +1026,27 @@ msgstr "Soglia di notifica duplicata:" msgid "E-mails" msgstr "Email" -#: modules/editorial-metadata/editorial-metadata.php:2807 +#: modules/editorial-metadata/editorial-metadata.php:2817 #: modules/custom-status/custom-status.php:2922 -#: modules/calendar/calendar.php:1804 modules/calendar/calendar.php:3468 -#: modules/content-overview/content-overview.php:1880 -#: modules/editorial-comments/editorial-comments.php:602 +#: modules/calendar/calendar.php:1818 modules/calendar/calendar.php:3523 +#: modules/content-overview/content-overview.php:1904 +#: modules/editorial-comments/editorial-comments.php:632 msgid "Edit" msgstr "Modifica" -#: modules/editorial-metadata/editorial-metadata.php:450 +#: modules/editorial-metadata/editorial-metadata.php:451 msgid "Edit Editorial Metadata" msgstr "Modifica metadato editoriale" -#: modules/efmigration/efmigration.php:287 +#: modules/efmigration/efmigration.php:288 msgid "" -"Edit Flow should not be used alongside PublishPress. If you want to use it, " -"deactive PublishPress first." +"Edit Flow should not be used alongside PublishPress Planner. If you want to " +"use PublishPress Planner, please complete Edit Flow data migration and then " +"deactivate Edit Flow." msgstr "" -"Edit Flow non deve essere utilizzato insieme a PublishPress. Se vuoi usarlo, " -"disattiva prima PublishPress." +"Edit Flow non deve essere utilizzato insieme a PublishPress Planner. Se vuoi " +"usare PublishPress Planner, completa prima la migrazione dei dati da Edit " +"Flow e poi disattiva Edit Flow." #: publishpress.php:1239 msgid "Edit Notification" @@ -1050,52 +1068,52 @@ msgstr "Modifica utente di notifica" msgid "Edit Statuses" msgstr "Modifica gli stati" -#: modules/calendar/calendar.php:1804 +#: modules/calendar/calendar.php:1818 msgid "Edit this item" msgstr "Modifica questo elemento" -#: modules/content-overview/content-overview.php:1876 -#: modules/dashboard/dashboard.php:299 +#: modules/content-overview/content-overview.php:1900 msgid "Edit this post" msgstr "Modifica questo articolo" #: modules/notifications/notifications.php:2088 #: modules/notifications/notifications.php:2145 +#, php-format msgid "Edit: %s" msgstr "Modifica: %s" -#: modules/improved-notifications/improved-notifications.php:934 +#: modules/improved-notifications/improved-notifications.php:970 msgid "Editorial Comment" msgstr "Commenti editoriali" -#: modules/editorial-comments/editorial-comments.php:62 -#: modules/editorial-comments/editorial-comments.php:234 +#: modules/editorial-comments/editorial-comments.php:63 #: modules/editorial-comments/editorial-comments.php:235 -#: modules/editorial-comments/editorial-comments.php:427 +#: modules/editorial-comments/editorial-comments.php:236 +#: modules/editorial-comments/editorial-comments.php:457 msgid "Editorial Comments" msgstr "Commenti editoriali" -#: modules/editorial-metadata/editorial-metadata.php:95 -#: modules/editorial-metadata/editorial-metadata.php:1774 +#: modules/editorial-metadata/editorial-metadata.php:96 #: modules/editorial-metadata/editorial-metadata.php:1775 +#: modules/editorial-metadata/editorial-metadata.php:1776 msgid "Editorial Metadata" msgstr "Metadati editoriali" #: views/user_profile_notification_channels.html.php:1 #: modules/improved-notifications/improved-notifications.php:401 -#: modules/improved-notifications/improved-notifications.php:1109 +#: modules/improved-notifications/improved-notifications.php:1145 msgid "Editorial Notifications" msgstr "Notifiche editoriali" -#: modules/calendar/calendar.php:1393 +#: modules/calendar/calendar.php:1407 msgid "Eight months" msgstr "Otto mesi" -#: modules/calendar/calendar.php:1399 +#: modules/calendar/calendar.php:1413 msgid "Eleven months" msgstr "Undici mesi" -#: modules/editorial-comments/editorial-comments.php:1239 +#: modules/editorial-comments/editorial-comments.php:1269 #: lib/Notifications/Workflow/Step/Channel/Email.php:31 msgid "Email" msgstr "Email" @@ -1108,13 +1126,16 @@ msgstr "email" msgid "Email from:" msgstr "Email da:" -#: modules/editorial-comments/editorial-comments.php:1202 +#: modules/editorial-comments/editorial-comments.php:1232 msgid "Enable for these post types:" msgstr "Abilita per questi tipi di contenuti:" +#: modules/calendar/calendar.php:2550 +msgid "Enable subscriptions in iCal or Google Calendar" +msgstr "Abilita gli abbonamenti a iCal o Google Calendar" + #: modules/custom-status/custom-status.php:1890 -#: modules/calendar/calendar.php:2628 modules/dashboard/dashboard.php:369 -#: modules/dashboard/dashboard.php:392 modules/dashboard/dashboard.php:426 +#: modules/calendar/calendar.php:2657 msgid "Enabled" msgstr "Abilitato" @@ -1122,10 +1143,14 @@ msgstr "Abilitato" msgid "Enabled features" msgstr "Funzionalità abilitate" -#: modules/calendar/calendar.php:1361 +#: modules/calendar/calendar.php:1375 msgid "End date" msgstr "Data di fine" +#: lib/Legacy/Util.php:203 +msgid "Enhance the power of PublishPress Planner with the Pro version:" +msgstr "Aumenta la potenza di PublishPress Planner con la versione Pro:" + #: modules/notifications/notifications.php:636 msgid "" "Enter any users, roles, or email address that should receive notifications " @@ -1134,8 +1159,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:2000 -#: modules/editorial-metadata/editorial-metadata.php:2361 +#: modules/editorial-metadata/editorial-metadata.php:2010 +#: modules/editorial-metadata/editorial-metadata.php:2371 msgid "" "Enter the dropdown option value and label. You can move options to change " "their order." @@ -1148,11 +1173,11 @@ msgstr "" msgid "Error" msgstr "Errore" -#: modules/editorial-metadata/editorial-metadata.php:1368 +#: modules/editorial-metadata/editorial-metadata.php:1369 msgid "Error adding term." msgstr "Errore nell'aggiungere il termine." -#: modules/editorial-metadata/editorial-metadata.php:1645 +#: modules/editorial-metadata/editorial-metadata.php:1646 msgid "Error deleting term." msgstr "Errore nell'eliminazione del termine." @@ -1160,8 +1185,8 @@ msgstr "Errore nell'eliminazione del termine." msgid "Error updating post status." msgstr "Errore durante l'aggiornamento dello stato dell'articolo." -#: modules/editorial-metadata/editorial-metadata.php:1531 -#: modules/editorial-metadata/editorial-metadata.php:1579 +#: modules/editorial-metadata/editorial-metadata.php:1532 +#: modules/editorial-metadata/editorial-metadata.php:1580 msgid "Error updating term." msgstr "Errore nell'aggiornamento del termine." @@ -1170,6 +1195,7 @@ msgid "Error while updating the status" msgstr "Errore durante l'aggiornamento dello stato" #: 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" @@ -1178,11 +1204,15 @@ msgstr "Evento: %s, ID Workflow: %s,ID Articolo: %s, ID Utente: %s" msgid "Failed" msgstr "Fallito" +#: lib/Legacy/Util.php:210 +msgid "Fast, professional support" +msgstr "Supporto veloce e professionale" + #: modules/modules-settings/modules-settings.php:50 msgid "Features" msgstr "Funzionalità" -#: modules/calendar/calendar.php:814 +#: modules/calendar/calendar.php:815 msgid "Feb" msgstr "Feb" @@ -1190,11 +1220,11 @@ msgstr "Feb" msgid "Feel free to select only the features you need." msgstr "Puoi scegliere liberamente le funzionalità che ti servono." -#: modules/improved-notifications/improved-notifications.php:940 +#: modules/improved-notifications/improved-notifications.php:976 msgid "field" msgstr "campo" -#: modules/calendar/calendar.php:2561 +#: modules/calendar/calendar.php:2590 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 " @@ -1204,7 +1234,7 @@ msgstr "" msgid "File info" msgstr "Informazioni file" -#: modules/content-overview/content-overview.php:1144 +#: modules/content-overview/content-overview.php:1145 #: modules/notifications-log/library/NotificationsLogTable.php:640 #: modules/editorial-comments/library/EditorialCommentsTable.php:211 msgid "Filter" @@ -1226,8 +1256,8 @@ msgstr "Filtra per utenti di notifica" msgid "Filter the content?" msgstr "Filtrare il contenuto?" -#: modules/editorial-metadata/editorial-metadata.php:1960 -#: modules/editorial-metadata/editorial-metadata.php:2324 +#: modules/editorial-metadata/editorial-metadata.php:1970 +#: modules/editorial-metadata/editorial-metadata.php:2334 msgid "" "Filter the list of users in the editorial meta to users in the selected " "roles." @@ -1235,52 +1265,52 @@ msgstr "" "Filtra la lista degli utenti dei meta editoriali per gli utenti dei ruoli " "selezionati." -#: modules/editorial-metadata/editorial-metadata.php:208 +#: modules/editorial-metadata/editorial-metadata.php:209 msgid "First Draft Date" msgstr "Data prima bozza" -#: modules/editorial-comments/editorial-comments.php:1237 +#: modules/editorial-comments/editorial-comments.php:1267 msgid "First Name" msgstr "Nome" -#: modules/calendar/calendar.php:1387 +#: modules/calendar/calendar.php:1401 msgid "Five months" msgstr "Cinque mesi" -#: modules/calendar/calendar.php:1353 +#: modules/calendar/calendar.php:1367 msgid "Five months ago" msgstr "Cinque mesi fa" -#: modules/improved-notifications/improved-notifications.php:787 +#: modules/improved-notifications/improved-notifications.php:823 #: modules/notifications-log/library/NotificationsLogTable.php:492 msgid "For which content?" msgstr "Per quale contenuto?" -#: modules/improved-notifications/improved-notifications.php:937 +#: modules/improved-notifications/improved-notifications.php:973 msgid "Format" msgstr "Formato" -#: modules/calendar/calendar.php:2099 +#: modules/calendar/calendar.php:2113 msgid "Forward %d weeks" msgstr "Avanti di %d settimane" -#: modules/calendar/calendar.php:2084 +#: modules/calendar/calendar.php:2098 msgid "Forward 1 week" msgstr "Avanti di una settimana" -#: modules/calendar/calendar.php:1385 +#: modules/calendar/calendar.php:1399 msgid "Four months" msgstr "Quattro mesi" -#: modules/calendar/calendar.php:1351 +#: modules/calendar/calendar.php:1365 msgid "Four months ago" msgstr "Quattro mesi fa" -#: modules/calendar/calendar.php:1372 +#: modules/calendar/calendar.php:1386 msgid "Four weeks" msgstr "Quattro settimane" -#: modules/calendar/calendar.php:811 +#: modules/calendar/calendar.php:812 msgid "Fri" msgstr "Ven" @@ -1288,7 +1318,7 @@ msgstr "Ven" msgid "From date" msgstr "Dalla data" -#: modules/editorial-metadata/editorial-metadata.php:2810 +#: modules/editorial-metadata/editorial-metadata.php:2820 msgid "Hidden metadata can only be viewed on the edit post view." msgstr "" "I metadati nascosti possono essere visualizzati solo nella visualizzazione " @@ -1302,7 +1332,7 @@ msgstr "https://publishpress.com" msgid "https://publishpress.com/" msgstr "https://publishpress.com/" -#: modules/calendar/calendar.php:196 +#: modules/calendar/calendar.php:197 msgid "" "iCal secret key regenerated. Please inform all users they will need to " "resubscribe." @@ -1316,7 +1346,7 @@ msgstr "" msgid "Icon" msgstr "Icona" -#: modules/calendar/calendar.php:3430 lib/Notifications/Table/Workflows.php:143 +#: modules/calendar/calendar.php:3485 lib/Notifications/Table/Workflows.php:143 #: lib/Notifications/Table/Notifications.php:159 msgid "ID" msgstr "ID" @@ -1325,9 +1355,9 @@ msgstr "ID" msgid "Idea proposed; waiting for acceptance." msgstr "Idea proposta; in attesa di conferma." -#: modules/editorial-metadata/editorial-metadata.php:2098 -#: modules/editorial-metadata/editorial-metadata.php:2462 -#: modules/editorial-metadata/editorial-metadata.php:2817 +#: 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." @@ -1335,8 +1365,8 @@ 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:2122 -#: modules/editorial-metadata/editorial-metadata.php:2488 +#: 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." @@ -1344,8 +1374,8 @@ msgstr "" "Se viene abilitato questo metadato sarà disponibile come opzione del filtro " "nella schermata della panoramica dei contenuti." -#: modules/editorial-metadata/editorial-metadata.php:2146 -#: modules/editorial-metadata/editorial-metadata.php:2514 +#: modules/editorial-metadata/editorial-metadata.php:2156 +#: modules/editorial-metadata/editorial-metadata.php:2524 msgid "" "If enabled, this metadata will be available when adding new posts on the " "Content Calendar screen." @@ -1353,10 +1383,17 @@ msgstr "" "Se viene abilitato questo metadato sarà disponibile quando si aggiungono " "nuovi articoli nella schermata del calendario dei contenuti." -#: modules/settings/settings.php:270 +#: modules/settings/settings.php:269 +#, php-format msgid "If you like %s please leave us a %s rating. Thank you!" msgstr "Se ti piace %s, lasciaci una valutazione di %s!" +#: lib/Legacy/Util.php:225 +msgid "If you need help or have a new feature request, let us know." +msgstr "" +"Se hai bisogno di aiuto o hai una richiesta di una nuova funzionalità, " +"faccelo sapere." + #: modules/debug/debug.php:304 msgid "" "If you see any error or look for information regarding PublishPress, please " @@ -1369,16 +1406,16 @@ msgstr "" msgid "In Progress" msgstr "In lavorazione" -#: modules/editorial-metadata/editorial-metadata.php:1988 -#: modules/editorial-metadata/editorial-metadata.php:2353 +#: modules/editorial-metadata/editorial-metadata.php:1998 +#: modules/editorial-metadata/editorial-metadata.php:2363 msgid "Indicate the select type." msgstr "Indica il tipo selezionato." -#: modules/editorial-metadata/editorial-metadata.php:2297 +#: modules/editorial-metadata/editorial-metadata.php:2307 msgid "Indicate the type of editorial metadata." msgstr "Indica il tipo di metadati editoriali." -#: modules/calendar/calendar.php:1494 +#: modules/calendar/calendar.php:1508 msgid "Initializing the calendar. Please wait..." msgstr "Inizializzando il calendario. Attendi…" @@ -1394,26 +1431,26 @@ msgstr "Azione nonce non valida." msgid "Invalid channel for the notification" msgstr "Canale non valido per la notifica" -#: modules/editorial-comments/editorial-comments.php:725 -#: modules/editorial-comments/editorial-comments.php:866 -#: modules/editorial-comments/editorial-comments.php:998 -#: modules/editorial-comments/editorial-comments.php:1114 +#: 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 msgid "Invalid comment data" msgstr "Dati del commento non validi" -#: modules/calendar/calendar.php:3170 +#: modules/calendar/calendar.php:3225 msgid "Invalid date" msgstr "Data non valida" -#: modules/calendar/calendar.php:3150 +#: modules/calendar/calendar.php:3205 msgid "Invalid input" msgstr "Input non valido" -#: core/Error.php:80 modules/calendar/calendar.php:3141 +#: core/Error.php:80 modules/calendar/calendar.php:3196 msgid "Invalid nonce" msgstr "Nonce non valido" -#: modules/calendar/calendar.php:3729 +#: modules/calendar/calendar.php:3784 msgid "Invalid Publish Date supplied." msgstr "Data di pubblicazione fornita non valida." @@ -1421,11 +1458,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:3705 +#: modules/calendar/calendar.php:3760 msgid "Invalid Status supplied." msgstr "Stato fornito non valido." -#: modules/calendar/calendar.php:1498 +#: modules/calendar/calendar.php:1512 msgid "" "It seems like it is taking too long. Please, try reloading the page again " "and check the browser console looking for errors." @@ -1433,15 +1470,15 @@ 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:813 +#: modules/calendar/calendar.php:814 msgid "Jan" msgstr "Gen" -#: modules/calendar/calendar.php:819 +#: modules/calendar/calendar.php:820 msgid "Jul" msgstr "Lug" -#: modules/calendar/calendar.php:818 +#: modules/calendar/calendar.php:819 msgid "Jun" msgstr "Giu" @@ -1449,20 +1486,20 @@ msgstr "Giu" msgid "Last Modified" msgstr "Ultima modifica" -#: modules/editorial-comments/editorial-comments.php:1238 +#: modules/editorial-comments/editorial-comments.php:1268 msgid "Last Name" msgstr "Cognome" -#: modules/calendar/calendar.php:793 +#: modules/calendar/calendar.php:794 msgid "Loading item..." msgstr "Caricando l'elemento…" -#: modules/calendar/calendar.php:792 +#: modules/calendar/calendar.php:793 #: modules/notifications-log/notifications-log.php:210 msgid "Loading..." msgstr "Caricando…" -#: modules/editorial-metadata/editorial-metadata.php:285 +#: modules/editorial-metadata/editorial-metadata.php:286 msgid "Location" msgstr "Luogo dell'evento" @@ -1478,23 +1515,23 @@ msgstr "File di registro" msgid "Log file not found." msgstr "File di registro non trovato." -#: modules/editorial-metadata/editorial-metadata.php:2814 +#: modules/editorial-metadata/editorial-metadata.php:2824 msgid "Make Hidden" msgstr "Rendi nascosto" -#: modules/editorial-metadata/editorial-metadata.php:2825 +#: modules/editorial-metadata/editorial-metadata.php:2835 msgid "Make Viewable" msgstr "Rendi visibile" -#: modules/calendar/calendar.php:815 +#: modules/calendar/calendar.php:816 msgid "Mar" msgstr "Mar" -#: modules/calendar/calendar.php:2569 +#: modules/calendar/calendar.php:2598 msgid "Max visible posts per date" msgstr "Numero massimo di post visibili per data" -#: modules/calendar/calendar.php:817 +#: modules/calendar/calendar.php:818 msgid "May" msgstr "Mag" @@ -1502,52 +1539,52 @@ msgstr "Mag" msgid "Message" msgstr "Messaggio" -#: modules/improved-notifications/improved-notifications.php:946 +#: modules/improved-notifications/improved-notifications.php:982 msgid "Meta fields" msgstr "Campi meta" -#: modules/editorial-metadata/editorial-metadata.php:2022 -#: modules/editorial-metadata/editorial-metadata.php:2053 -#: modules/editorial-metadata/editorial-metadata.php:2383 -#: modules/editorial-metadata/editorial-metadata.php:2414 +#: 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 msgid "Meta Value" msgstr "Valore meta" -#: modules/editorial-metadata/editorial-metadata.php:505 +#: modules/editorial-metadata/editorial-metadata.php:506 msgid "Metadata" msgstr "Metadati" -#: modules/editorial-metadata/editorial-metadata.php:1460 +#: modules/editorial-metadata/editorial-metadata.php:1461 msgid "Metadata name conflicts with existing term. Please choose another." msgstr "" "Il nome del metadato è in conflitto con un termine esistente. Scegli un " "altro nome." -#: modules/editorial-metadata/editorial-metadata.php:113 +#: modules/editorial-metadata/editorial-metadata.php:114 msgid "Metadata order updated." msgstr "Ordine dei metadati aggiornato." -#: modules/editorial-metadata/editorial-metadata.php:109 +#: modules/editorial-metadata/editorial-metadata.php:110 msgid "Metadata term added." msgstr "Termine dei metadati aggiunto." -#: modules/editorial-metadata/editorial-metadata.php:112 +#: modules/editorial-metadata/editorial-metadata.php:113 msgid "Metadata term deleted." msgstr "Termine dei metadati eliminato." -#: modules/editorial-metadata/editorial-metadata.php:111 +#: modules/editorial-metadata/editorial-metadata.php:112 msgid "Metadata term doesn't exist." msgstr "Termine dei metadati non esiste." -#: modules/editorial-metadata/editorial-metadata.php:110 +#: modules/editorial-metadata/editorial-metadata.php:111 msgid "Metadata term updated." msgstr "Termine dei metadati aggiornato." -#: modules/editorial-metadata/editorial-metadata.php:2688 +#: modules/editorial-metadata/editorial-metadata.php:2698 msgid "Metadata Type" msgstr "Tipo di metadati" -#: modules/editorial-metadata/editorial-metadata.php:114 +#: modules/editorial-metadata/editorial-metadata.php:115 msgid "Metadata visibility changed." msgstr "Visibilità dei metadati cambiata." @@ -1559,7 +1596,7 @@ msgstr "minuti" msgid "Modified on" msgstr "Modificato il" -#: modules/calendar/calendar.php:807 +#: modules/calendar/calendar.php:808 msgid "Mon" msgstr "Lun" @@ -1575,64 +1612,64 @@ msgstr "Notifiche di ruolo più usate" msgid "Most Used Notify User" msgstr "Gli utenti di notifica più usati" -#: modules/content-overview/content-overview.php:1888 +#: modules/content-overview/content-overview.php:1912 msgid "Move this item to the Trash" msgstr "Sposta questo elemento nel cestino" -#: modules/calendar/calendar.php:795 +#: modules/calendar/calendar.php:796 msgid "Moving the item..." msgstr "Spostando l'elemento…" -#: modules/editorial-metadata/editorial-metadata.php:1971 -#: modules/editorial-metadata/editorial-metadata.php:2333 +#: modules/editorial-metadata/editorial-metadata.php:1981 +#: modules/editorial-metadata/editorial-metadata.php:2343 msgid "Multiple Select" msgstr "Selezione multipla" #: modules/improved-notifications/improved-notifications.php:406 -#: modules/improved-notifications/improved-notifications.php:1097 -#: modules/improved-notifications/improved-notifications.php:1114 +#: modules/improved-notifications/improved-notifications.php:1133 +#: modules/improved-notifications/improved-notifications.php:1150 msgid "Muted" msgstr "Silenzioso" -#: modules/dashboard/dashboard.php:183 modules/dashboard/dashboard.php:346 -msgid "My Content Notifications" -msgstr "Le mie notifiche dei contenuti" - -#: modules/editorial-metadata/editorial-metadata.php:2228 -#: modules/editorial-metadata/editorial-metadata.php:2686 +#: modules/editorial-metadata/editorial-metadata.php:2238 +#: modules/editorial-metadata/editorial-metadata.php:2696 #: modules/custom-status/custom-status.php:2123 #: modules/custom-status/custom-status.php:2779 msgid "Name" msgstr "Nome" -#: modules/editorial-metadata/editorial-metadata.php:1296 -#: modules/editorial-metadata/editorial-metadata.php:1469 +#: modules/editorial-metadata/editorial-metadata.php:1297 +#: modules/editorial-metadata/editorial-metadata.php:1470 msgid "Name already in use. Please choose another." msgstr "Questo nome già esiste. Scegli un altro nome." -#: modules/editorial-metadata/editorial-metadata.php:1306 -#: modules/editorial-metadata/editorial-metadata.php:1313 -#: modules/editorial-metadata/editorial-metadata.php:1482 +#: modules/editorial-metadata/editorial-metadata.php:1307 +#: modules/editorial-metadata/editorial-metadata.php:1314 +#: modules/editorial-metadata/editorial-metadata.php:1483 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:1289 +#: modules/editorial-metadata/editorial-metadata.php:1290 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:1474 +#: modules/editorial-metadata/editorial-metadata.php:1475 msgid "" "Name conflicts with slug for another term. Please choose something else." msgstr "" "Questo nome è in conflitto con lo slug di un altro termine. Scegline uno " "differente." +#: lib/Legacy/Util.php:220 +msgid "Need PublishPress Planner Support?" +msgstr "Hai bisogno del supporto di PublishPress Planner?" + #: lib/Notifications/Workflow/Step/Event/Filter/Post_Status.php:59 msgid "New" msgstr "Nuovo" -#: modules/editorial-metadata/editorial-metadata.php:453 +#: modules/editorial-metadata/editorial-metadata.php:454 msgid "New Editorial Metadata" msgstr "Nuovo metadato editoriale" @@ -1649,6 +1686,7 @@ msgid "New Notify User" msgstr "Nuovo utente di notifica" #: lib/Notifications/Workflow/Step/Event/Post_StatusTransition.php:118 +#, php-format msgid "New post status: %s" msgstr "Nuovo stato articolo: %s" @@ -1656,26 +1694,27 @@ msgstr "Nuovo stato articolo: %s" msgid "New status" msgstr "Nuovo stato" -#: modules/editorial-comments/editorial-comments.php:1234 +#: modules/editorial-comments/editorial-comments.php:1264 msgid "Nickname" msgstr "Pseudonimo" -#: modules/calendar/calendar.php:1395 +#: modules/calendar/calendar.php:1409 msgid "Nine months" msgstr "Nove mesi" -#: modules/editorial-metadata/editorial-metadata.php:2087 -#: modules/editorial-metadata/editorial-metadata.php:2111 -#: modules/editorial-metadata/editorial-metadata.php:2135 -#: modules/editorial-metadata/editorial-metadata.php:2446 -#: modules/editorial-metadata/editorial-metadata.php:2473 -#: modules/editorial-metadata/editorial-metadata.php:2499 -#: modules/editorial-metadata/editorial-metadata.php:2752 +#: 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/input-handlers/editorial-metadata-input-checkbox-handler.php:143 msgid "No" msgstr "No" #: modules/notifications/notifications.php:705 +#, php-format msgid "No active notifications found for this %s." msgstr "Nessuna notifica attiva trovata per questo %s." @@ -1683,7 +1722,7 @@ msgstr "Nessuna notifica attiva trovata per questo %s." msgid "No custom statuses found." msgstr "Non sono stati trovati stati personalizzati." -#: modules/calendar/calendar.php:3664 +#: modules/calendar/calendar.php:3719 msgid "No date supplied." msgstr "Nessuna data specificata." @@ -1691,11 +1730,11 @@ msgstr "Nessuna data specificata." msgid "No editorial comments." msgstr "Nessun commento editoriale." -#: modules/editorial-metadata/editorial-metadata.php:2783 +#: modules/editorial-metadata/editorial-metadata.php:2793 msgid "No editorial metadata found." msgstr "Nessun metadato editoriale trovato." -#: modules/calendar/calendar.php:3161 +#: modules/calendar/calendar.php:3216 msgid "No enough permissions" msgstr "Non hai autorizzazioni sufficienti" @@ -1703,7 +1742,7 @@ msgstr "Non hai autorizzazioni sufficienti" msgid "No notification found" msgstr "Nessuna notifica trovata" -#: modules/notifications-log/notifications-log.php:283 +#: modules/notifications-log/notifications-log.php:284 msgid "No notifications found." msgstr "Non sono state trovate notifiche." @@ -1722,7 +1761,7 @@ msgstr "Nessuna notifica di ruoli" msgid "No notify users" msgstr "Nessun utente di notifica" -#: modules/calendar/calendar.php:833 +#: modules/calendar/calendar.php:834 msgid "No terms" msgstr "Nessun termine" @@ -1730,16 +1769,16 @@ msgstr "Nessun termine" msgid "No workflows found." msgstr "Nessun workflow trovato." -#: modules/editorial-comments/editorial-comments.php:717 +#: modules/editorial-comments/editorial-comments.php:747 msgid "" "Nonce check failed. Please ensure you're supposed to be adding editorial " "comments." msgstr "" "Nonce non riuscito. Assicurati di dover aggiungere commenti editoriali." -#: modules/editorial-comments/editorial-comments.php:855 -#: modules/editorial-comments/editorial-comments.php:987 -#: modules/editorial-comments/editorial-comments.php:1104 +#: modules/editorial-comments/editorial-comments.php:885 +#: modules/editorial-comments/editorial-comments.php:1017 +#: modules/editorial-comments/editorial-comments.php:1134 msgid "" "Nonce check failed. Please ensure you're supposed to be editing editorial " "comments." @@ -1747,8 +1786,8 @@ msgstr "" "Controllo nonce fallito. Assicurati che tu possa modificare i commenti " "editoriali." -#: modules/calendar/calendar.php:1784 -#: modules/content-overview/content-overview.php:1773 +#: modules/calendar/calendar.php:1798 +#: modules/content-overview/content-overview.php:1797 msgid "None" msgstr "Nessuno" @@ -1756,10 +1795,6 @@ msgstr "Nessuno" msgid "Not filtered" msgstr "Non filtrato" -#: modules/dashboard/dashboard.php:174 modules/dashboard/dashboard.php:353 -msgid "Notepad" -msgstr "Blocco note" - #: publishpress.php:1237 publishpress.php:1242 #: modules/notifications-log/notifications-log.php:209 msgid "Notification" @@ -1775,10 +1810,11 @@ msgstr "Registro delle notifiche non trovato" msgid "Notifications" msgstr "Notifiche" +#: modules/improved-notifications/improved-notifications.php:741 #: modules/notifications-log/notifications-log.php:75 -#: modules/notifications-log/notifications-log.php:262 -#: modules/notifications-log/notifications-log.php:485 +#: modules/notifications-log/notifications-log.php:263 #: modules/notifications-log/notifications-log.php:486 +#: modules/notifications-log/notifications-log.php:487 msgid "Notifications Log" msgstr "Registro delle notifiche" @@ -1828,11 +1864,11 @@ msgstr "Utenti di notifica" msgid "Notify when content is published" msgstr "Avvisa quando il contenuto viene pubblicato" -#: modules/calendar/calendar.php:823 +#: modules/calendar/calendar.php:824 msgid "Nov" msgstr "Nov" -#: modules/editorial-metadata/editorial-metadata.php:286 +#: modules/editorial-metadata/editorial-metadata.php:287 msgid "Number" msgstr "Numero" @@ -1840,15 +1876,16 @@ msgstr "Numero" msgid "Number of Columns: " msgstr "Numero di colonne: " -#: modules/calendar/calendar.php:822 +#: modules/calendar/calendar.php:823 msgid "Oct" msgstr "Ott" #: lib/Notifications/Workflow/Step/Event/Post_StatusTransition.php:114 +#, php-format msgid "Old post status: %s" msgstr "Vecchio stato dell'articolo: %s" -#: modules/improved-notifications/improved-notifications.php:941 +#: modules/improved-notifications/improved-notifications.php:977 msgid "" "On each shortcode, you can select one or more fields. If more than one, they " "will be displayed separated by \", \"." @@ -1856,15 +1893,15 @@ msgstr "" "Su ogni shortcode, puoi selezionare uno o più campi. Se più di uno, verranno " "visualizzati separati da una \", \"." -#: modules/calendar/calendar.php:1378 +#: modules/calendar/calendar.php:1392 msgid "One month" msgstr "Un mese" -#: modules/calendar/calendar.php:1345 +#: modules/calendar/calendar.php:1359 msgid "One month ago" msgstr "Un mese fa" -#: modules/calendar/calendar.php:1366 +#: modules/calendar/calendar.php:1380 msgid "One week" msgstr "Una settimana" @@ -1872,15 +1909,15 @@ msgstr "Una settimana" msgid "Options" msgstr "Opzioni" -#: modules/editorial-metadata/editorial-metadata.php:119 +#: modules/editorial-metadata/editorial-metadata.php:120 #: modules/custom-status/custom-status.php:112 -#: modules/calendar/calendar.php:204 -#: modules/editorial-comments/editorial-comments.php:81 +#: modules/calendar/calendar.php:205 +#: modules/editorial-comments/editorial-comments.php:82 #: modules/notifications/notifications.php:93 msgid "Overview" msgstr "Panoramica" -#: modules/editorial-metadata/editorial-metadata.php:287 +#: modules/editorial-metadata/editorial-metadata.php:288 msgid "Paragraph" msgstr "Paragrafo" @@ -1932,16 +1969,16 @@ msgstr "Planner" msgid "Please correct your form errors below and try again." msgstr "Correggi gli errori nel modulo sottostante e riprova." -#: modules/editorial-comments/editorial-comments.php:748 -#: modules/editorial-comments/editorial-comments.php:912 +#: modules/editorial-comments/editorial-comments.php:778 +#: modules/editorial-comments/editorial-comments.php:942 msgid "Please enter a comment." msgstr "Inserisci un commento." -#: modules/editorial-metadata/editorial-metadata.php:1446 +#: modules/editorial-metadata/editorial-metadata.php:1447 msgid "Please enter a name for the editorial metadata" msgstr "Inserisci un nome per i metadati editoriali" -#: modules/editorial-metadata/editorial-metadata.php:1276 +#: modules/editorial-metadata/editorial-metadata.php:1277 msgid "Please enter a name for the editorial metadata." msgstr "Inserisci un nome per i metadati editoriali." @@ -1950,11 +1987,11 @@ msgstr "Inserisci un nome per i metadati editoriali." msgid "Please enter a name for the status" msgstr "Inserisci un nome per lo stato" -#: modules/editorial-metadata/editorial-metadata.php:1283 +#: modules/editorial-metadata/editorial-metadata.php:1284 msgid "Please enter a slug for the editorial metadata." msgstr "Inserisci uno slug per i metadati editoriali." -#: modules/editorial-metadata/editorial-metadata.php:1451 +#: modules/editorial-metadata/editorial-metadata.php:1452 msgid "Please enter a valid, non-numeric name for the editorial metadata." msgstr "Inserisci un nome non numerico valido per i metadati editoriali." @@ -1970,7 +2007,7 @@ msgstr "" "Tieni presente che selezionando una casella verranno applicati tutti gli " "stati a quel tipo di articolo." -#: modules/editorial-metadata/editorial-metadata.php:1323 +#: modules/editorial-metadata/editorial-metadata.php:1324 msgid "Please select a valid metadata type." msgstr "Seleziona un tipo di metadati valido." @@ -1978,11 +2015,11 @@ msgstr "Seleziona un tipo di metadati valido." msgid "Please select at least one event" msgstr "Selezionare almeno un evento" -#: modules/calendar/calendar.php:805 +#: modules/calendar/calendar.php:806 msgid "Please, wait! Loading the form fields..." msgstr "Attendi! Caricamento in corso dei campi del modulo…" -#: modules/editorial-metadata/editorial-metadata.php:448 +#: modules/editorial-metadata/editorial-metadata.php:449 msgid "Popular Editorial Metadata" msgstr "Metadati editoriali più popolari" @@ -1998,7 +2035,7 @@ msgstr "Notifiche di ruolo più popolari" msgid "Popular Notify Users" msgstr "Utenti di notifica più popolari" -#: modules/editorial-metadata/editorial-metadata.php:2685 +#: modules/editorial-metadata/editorial-metadata.php:2695 #: modules/custom-status/custom-status.php:2778 msgid "Position" msgstr "Posizione" @@ -2007,11 +2044,11 @@ msgstr "Posizione" msgid "Post" msgstr "Articolo" -#: modules/calendar/calendar.php:3805 +#: modules/calendar/calendar.php:3860 msgid "Post could not be created" msgstr "L'articolo non può essere creato" -#: modules/calendar/calendar.php:3798 +#: modules/calendar/calendar.php:3853 msgid "Post created successfully" msgstr "Articolo creato con successo" @@ -2019,7 +2056,7 @@ msgstr "Articolo creato con successo" msgid "Post Date" msgstr "Data articolo" -#: modules/calendar/calendar.php:187 +#: modules/calendar/calendar.php:188 msgid "Post date updated." msgstr "Data dell'articolo aggiornata." @@ -2035,12 +2072,12 @@ msgstr "ID Articolo: %d" msgid "Post idea assigned to writer." msgstr "Idea per l'articolo assegnata allo scrittore." -#: modules/calendar/calendar.php:3156 +#: modules/calendar/calendar.php:3211 msgid "Post not found" msgstr "Articolo non trovato" -#: modules/calendar/calendar.php:2792 modules/calendar/calendar.php:3441 -#: modules/calendar/calendar.php:3521 +#: modules/calendar/calendar.php:2841 modules/calendar/calendar.php:3496 +#: modules/calendar/calendar.php:3576 msgid "Post Status" msgstr "Stati dell'articolo" @@ -2061,11 +2098,7 @@ msgstr "Lo stato dell'articolo non esiste." msgid "Post status updated." msgstr "Lo stato dell'articolo è stato aggiornato." -#: modules/dashboard/dashboard.php:339 -msgid "Post Status Widget" -msgstr "Widget stato articolo" - -#: modules/calendar/calendar.php:1957 modules/calendar/calendar.php:3425 +#: modules/calendar/calendar.php:1971 modules/calendar/calendar.php:3480 #: modules/content-overview/content-overview.php:628 msgid "Post Type" msgstr "Tipo di articolo" @@ -2074,24 +2107,25 @@ msgstr "Tipo di articolo" msgid "Post type" msgstr "Tipo di articolo" -#: modules/calendar/calendar.php:803 +#: modules/calendar/calendar.php:804 msgid "Post type not found" msgstr "Tipo di contenuto non trovato" -#: modules/calendar/calendar.php:804 +#: modules/calendar/calendar.php:805 msgid "Post type:" msgstr "Tipo di contenuto:" #: modules/notifications-log/library/NotificationsLogTable.php:151 +#, php-format msgid "Post type: %s" msgstr "Tipo di Articolo: %s" -#: modules/editorial-metadata/editorial-metadata.php:2687 +#: modules/editorial-metadata/editorial-metadata.php:2697 #: lib/Notifications/Workflow/Step/Event_Content/Filter/Post_Type.php:34 msgid "Post Types" msgstr "Tipi di articoli" -#: modules/calendar/calendar.php:2521 +#: modules/calendar/calendar.php:2542 msgid "Post types to show" msgstr "Tipi di articoli da mostrare" @@ -2099,21 +2133,18 @@ msgstr "Tipi di articoli da mostrare" msgid "Post types to show:" msgstr "Tipi di contenuto da mostrare:" -#: modules/dashboard/dashboard.php:211 -msgid "Posts at a Glance" -msgstr "Articoli a colpo d'occhio" - -#: modules/calendar/calendar.php:2545 +#: modules/calendar/calendar.php:2574 msgid "Posts publish time format" msgstr "Gli articoli pubblicano il formato dell'ora" -#: modules/calendar/calendar.php:1828 modules/calendar/calendar.php:3485 -#: modules/content-overview/content-overview.php:1921 +#: modules/calendar/calendar.php:1842 modules/calendar/calendar.php:3540 +#: modules/content-overview/content-overview.php:1945 msgid "Preview" msgstr "Anteprima" -#: modules/calendar/calendar.php:1825 -#: modules/content-overview/content-overview.php:1918 +#: modules/calendar/calendar.php:1839 +#: modules/content-overview/content-overview.php:1942 +#, php-format msgid "Preview “%s”" msgstr "Anteprima “%s”" @@ -2121,7 +2152,7 @@ msgstr "Anteprima “%s”" msgid "Previous status" msgstr "Stato precedente" -#: modules/content-overview/content-overview.php:1170 +#: modules/content-overview/content-overview.php:1194 msgid "Print" msgstr "Stampa" @@ -2133,21 +2164,21 @@ msgstr "Privato" msgid "Privately Published" msgstr "Pubblicato privatamente" -#: modules/calendar/calendar.php:3527 +#: modules/calendar/calendar.php:3582 msgid "Publish Time" msgstr "Pubblicare l'ora" #: common/php/class-module.php:267 modules/custom-status/custom-status.php:957 -#: modules/calendar/calendar.php:1970 +#: modules/calendar/calendar.php:1984 msgid "Published" msgstr "Pubblicato" -#: modules/calendar/calendar.php:2791 +#: modules/calendar/calendar.php:2840 msgid "Publishing Time" msgstr "Tempo di pubblicazione" #. Author of the plugin -#: modules/settings/settings.php:60 modules/calendar/calendar.php:1332 +#: modules/settings/settings.php:61 modules/calendar/calendar.php:1346 msgid "PublishPress" msgstr "PublishPress" @@ -2156,7 +2187,7 @@ msgid "PublishPress Debug Log" msgstr "Registro di debug di PublishPress" #. Name of the plugin -#: modules/settings/settings.php:267 +#: modules/settings/settings.php:266 msgid "PublishPress Planner" msgstr "PublishPress Planner" @@ -2179,47 +2210,56 @@ msgstr "" "rimuovi le altre istanze di PublishPress, in special modo se stai " "utilizzando PublishPress Pro." -#: modules/settings/settings.php:140 +#: modules/settings/settings.php:141 msgid "PublishPress Settings" msgstr "Impostazioni di PublishPress" -#: modules/improved-notifications/improved-notifications.php:938 +#: modules/improved-notifications/improved-notifications.php:974 msgid "Receiver" msgstr "Destinatario" -#: modules/calendar/calendar.php:2646 +#: modules/calendar/calendar.php:2675 msgid "Regenerate calendar feed secret" msgstr "Rigenera il feed secret del calendario" -#: modules/editorial-metadata/editorial-metadata.php:1692 +#: modules/editorial-metadata/editorial-metadata.php:1693 msgid "Register metadata for these post types:" msgstr "Registra i metadati per questi tipi di contenuto:" -#: modules/editorial-comments/editorial-comments.php:210 -#: modules/editorial-comments/editorial-comments.php:689 +#: modules/editorial-comments/editorial-comments.php:211 +#: modules/editorial-comments/editorial-comments.php:719 msgid "Remove" msgstr "Rimuovi" -#: modules/editorial-comments/editorial-comments.php:593 +#: lib/Legacy/Util.php:209 +msgid "Remove PublishPress ads and branding" +msgstr "Rimuovi la pubblicità e il marchio di PublishPress" + +#: modules/editorial-comments/editorial-comments.php:623 msgid "Reply" msgstr "Rispondi" -#: modules/editorial-comments/editorial-comments.php:590 +#: modules/editorial-comments/editorial-comments.php:620 msgid "Reply to this comment" msgstr "Rispondi a questo commento" #: modules/notifications/notifications.php:2138 +#, php-format msgid "Reply: %s" msgstr "Rispondi: %s" +#: lib/Legacy/Util.php:227 +msgid "Request Support" +msgstr "Richiesta di supporto" + #: modules/notifications-log/library/NotificationsLogTable.php:355 #: modules/notifications-log/library/NotificationsLogTable.php:400 msgid "Reschedule" msgstr "Riprogrammare" -#: modules/calendar/calendar.php:2076 +#: modules/calendar/calendar.php:2090 #: modules/content-overview/content-overview.php:1025 -#: modules/content-overview/content-overview.php:1146 +#: modules/content-overview/content-overview.php:1147 msgid "Reset" msgstr "Reimposta" @@ -2237,6 +2277,7 @@ msgstr "Ruolo" #: lib/Notifications/Workflow/Step/Receiver/Role.php:147 #: lib/Notifications/Workflow/Step/Receiver/Follower.php:100 +#, php-format msgid "role:%s" msgstr "ruolo:%s" @@ -2245,28 +2286,29 @@ msgstr "ruolo:%s" msgid "Roles" msgstr "Ruoli" -#: modules/calendar/calendar.php:812 +#: modules/calendar/calendar.php:813 msgid "Sat" msgstr "Sab" -#: modules/calendar/calendar.php:799 modules/calendar/calendar.php:1854 +#: modules/calendar/calendar.php:800 modules/calendar/calendar.php:1868 msgid "Save" msgstr "Salva" -#: modules/calendar/calendar.php:1848 +#: modules/calendar/calendar.php:1862 +#, php-format msgid "Save “%s”" msgstr "Salva “%s”" -#: modules/calendar/calendar.php:801 +#: modules/calendar/calendar.php:802 msgid "Save and edit" msgstr "Salva e modifica" -#: modules/calendar/calendar.php:800 +#: modules/calendar/calendar.php:801 msgid "Saving..." msgstr "Salvataggio in corso…" #: common/php/class-module.php:269 modules/custom-status/custom-status.php:919 -#: modules/calendar/calendar.php:1965 +#: modules/calendar/calendar.php:1979 #: modules/notifications-log/library/NotificationsLogTable.php:523 msgid "Scheduled" msgstr "Programmato" @@ -2284,15 +2326,15 @@ msgid "Search" msgstr "Cerca" #: modules/content-overview/content-overview.php:1048 -#: modules/content-overview/content-overview.php:1323 +#: modules/content-overview/content-overview.php:1347 msgid "Search box" msgstr "Casella di ricerca" -#: modules/editorial-comments/editorial-comments.php:283 +#: modules/editorial-comments/editorial-comments.php:289 msgid "Search Comments" msgstr "Cerca commenti" -#: modules/editorial-metadata/editorial-metadata.php:447 +#: modules/editorial-metadata/editorial-metadata.php:448 msgid "Search Editorial Metadata" msgstr "Cerca metadati editoriali" @@ -2313,12 +2355,12 @@ msgid "Search Notify Users" msgstr "Cerca utenti di notifica" #. %s: search keywords -#: modules/editorial-comments/editorial-comments.php:271 +#: modules/editorial-comments/editorial-comments.php:276 #, php-format msgid "Search results for “%s”" msgstr "Risultati della ricerca per “%s”" -#: modules/improved-notifications/improved-notifications.php:925 +#: modules/improved-notifications/improved-notifications.php:961 msgid "Select at least one option for each section." msgstr "Seleziona almeno una opzione per ciascuna selezione." @@ -2327,21 +2369,25 @@ msgstr "Seleziona almeno una opzione per ciascuna selezione." msgid "Select Icon" msgstr "Seleziona icona" -#: modules/editorial-metadata/editorial-metadata.php:1948 -#: modules/editorial-metadata/editorial-metadata.php:2310 +#: modules/editorial-metadata/editorial-metadata.php:1958 +#: modules/editorial-metadata/editorial-metadata.php:2320 msgid "Select roles..." msgstr "Selezionare i ruoli…" -#: modules/editorial-metadata/editorial-metadata.php:1966 -#: modules/editorial-metadata/editorial-metadata.php:2329 +#: modules/editorial-metadata/editorial-metadata.php:1976 +#: modules/editorial-metadata/editorial-metadata.php:2339 msgid "Select Type" msgstr "Selezione tipo" +#: lib/Legacy/Util.php:207 +msgid "Send reminder notifications" +msgstr "Invia notifiche di promemoria" + #: modules/notifications-log/library/NotificationsLogTable.php:282 msgid "Sent" msgstr "Inviato" -#: modules/calendar/calendar.php:821 +#: modules/calendar/calendar.php:822 msgid "Sep" msgstr "Set" @@ -2357,24 +2403,24 @@ msgstr "Separa con virgole le notifiche di ruolo" msgid "Separate notify users with commas" msgstr "Separa con virgole gli utenti di notifica" -#: modules/settings/settings.php:141 +#: modules/settings/settings.php:142 msgid "Settings" msgstr "Impostazioni" -#: modules/settings/settings.php:123 +#: modules/settings/settings.php:124 msgid "settings" msgstr "impostazioni" -#: modules/calendar/calendar.php:1391 +#: modules/calendar/calendar.php:1405 msgid "Seven months" msgstr "Sette mesi" -#: modules/improved-notifications/improved-notifications.php:939 +#: modules/improved-notifications/improved-notifications.php:975 msgid "shortcode" msgstr "shortcode" -#: modules/editorial-metadata/editorial-metadata.php:2107 -#: modules/editorial-metadata/editorial-metadata.php:2470 +#: 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" @@ -2382,13 +2428,13 @@ msgstr "Mostra come filtri della panoramica dei contenuti" msgid "Show content from" msgstr "Mostra i contenuti dal" -#: modules/editorial-metadata/editorial-metadata.php:2131 -#: modules/editorial-metadata/editorial-metadata.php:2496 +#: 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:2179 -#: modules/editorial-metadata/editorial-metadata.php:2545 +#: modules/editorial-metadata/editorial-metadata.php:2189 +#: modules/editorial-metadata/editorial-metadata.php:2555 msgid "Show on Post Types screen" msgstr "Mostra nelle schermate dei tipi di contenuto" @@ -2404,8 +2450,8 @@ msgstr "" "Mostra il menu a discesa dello stato nella schermata di modifica " "dell'articolo:" -#: modules/editorial-metadata/editorial-metadata.php:1970 -#: modules/editorial-metadata/editorial-metadata.php:2332 +#: modules/editorial-metadata/editorial-metadata.php:1980 +#: modules/editorial-metadata/editorial-metadata.php:2342 msgid "Single Select" msgstr "Selezione singola" @@ -2414,11 +2460,11 @@ msgstr "Selezione singola" msgid "Site Administrator" msgstr "Amministratore del sito" -#: modules/calendar/calendar.php:1389 +#: modules/calendar/calendar.php:1403 msgid "Six months" msgstr "Sei mesi" -#: modules/calendar/calendar.php:1355 +#: modules/calendar/calendar.php:1369 msgid "Six months ago" msgstr "Sei mesi fa" @@ -2439,13 +2485,17 @@ msgstr "Salta le notifiche per l'utente che ha creato l'azione" msgid "Skipped" msgstr "Saltato" -#: modules/editorial-metadata/editorial-metadata.php:1899 -#: modules/editorial-metadata/editorial-metadata.php:2242 +#: lib/Legacy/Util.php:206 +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/custom-status/custom-status.php:1986 msgid "Slug" msgstr "Slug" -#: modules/editorial-metadata/editorial-metadata.php:1300 +#: modules/editorial-metadata/editorial-metadata.php:1301 msgid "Slug already in use. Please choose another." msgstr "Questo slug già esiste. Scegli un altro nome." @@ -2453,11 +2503,7 @@ msgstr "Questo slug già esiste. Scegli un altro nome." msgid "slug1,slug2" msgstr "slug1,slug2" -#: modules/dashboard/dashboard.php:316 -msgid "Sorry! You're not subscribed to any posts!" -msgstr "Spiacente! Non sei iscritto a nessun articolo!" - -#: modules/editorial-comments/editorial-comments.php:1050 +#: modules/editorial-comments/editorial-comments.php:1080 msgid "" "Sorry, you can't delete this editorial comment because it has some replies." msgstr "" @@ -2468,7 +2514,7 @@ msgid "Sorry, you do not have permission to edit custom statuses." msgstr "" "Spiacente, non hai i privilegi per modificare gli stati personalizzati." -#: modules/editorial-comments/editorial-comments.php:738 +#: modules/editorial-comments/editorial-comments.php:768 msgid "" "Sorry, you don't have the privileges to add editorial comments. Please talk " "to your Administrator." @@ -2476,8 +2522,8 @@ msgstr "" "Spiacenti, non hai i privilegi per aggiungere commenti editoriali. Contatta " "l'amministratore." -#: modules/editorial-comments/editorial-comments.php:1029 -#: modules/editorial-comments/editorial-comments.php:1133 +#: modules/editorial-comments/editorial-comments.php:1059 +#: modules/editorial-comments/editorial-comments.php:1163 msgid "" "Sorry, you don't have the privileges to delete this editorial comment. " "Please talk to your Administrator." @@ -2485,8 +2531,8 @@ msgstr "" "Non hai i privilegi per eliminare questo commento editoriale. Rivolgiti " "all'amministratore." -#: modules/editorial-comments/editorial-comments.php:881 -#: modules/editorial-comments/editorial-comments.php:1013 +#: modules/editorial-comments/editorial-comments.php:911 +#: modules/editorial-comments/editorial-comments.php:1043 msgid "" "Sorry, you don't have the privileges to edit editorial comments. Please talk " "to your Administrator." @@ -2494,7 +2540,7 @@ msgstr "" "Non hai i privilegi per eliminare i commenti editoriali. Rivolgiti " "all'amministratore." -#: modules/editorial-comments/editorial-comments.php:899 +#: modules/editorial-comments/editorial-comments.php:929 msgid "" "Sorry, you don't have the privileges to edit this editorial comment. Please " "talk to your Administrator." @@ -2502,7 +2548,7 @@ msgstr "" "Non hai i privilegi per modificare questo commento editoriale. Rivolgiti " "all'amministratore." -#: modules/calendar/calendar.php:1339 +#: modules/calendar/calendar.php:1353 msgid "Start date" msgstr "Data d'inizio" @@ -2547,6 +2593,7 @@ msgstr "Ordine di stato aggiornato." #. 1: post type, 2: post id, 3. post title, 4. user name, 5. user email #: modules/notifications/notifications.php:2032 +#, php-format 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" @@ -2555,7 +2602,7 @@ msgstr "Lo stato per %1$s #%2$s \"%3$s\" è stato modificato da %4$s %5$s" msgid "Statuses" msgstr "Stati" -#: modules/calendar/calendar.php:2537 +#: modules/calendar/calendar.php:2566 msgid "Statuses to display publish time" msgstr "Stati per visualizzare l'ora di pubblicazione" @@ -2568,7 +2615,7 @@ msgstr "Non avvisarmi più" msgid "Subject" msgstr "Oggetto" -#: modules/notifications-log/notifications-log.php:813 +#: modules/notifications-log/notifications-log.php:814 msgid "Subject:" msgstr "Oggetto:" @@ -2576,19 +2623,15 @@ msgstr "Oggetto:" msgid "Submitted on" msgstr "Inviato il" -#: modules/calendar/calendar.php:1334 +#: modules/calendar/calendar.php:1348 msgid "Subscribe in iCal or Google Calendar" msgstr "Iscriviti a iCal o Google Calendar" -#: modules/calendar/calendar.php:2529 -msgid "Subscription in iCal or Google Calendar" -msgstr "Abbonamento a iCal o Google Calendar" - #: modules/notifications-log/library/NotificationsLogTable.php:515 msgid "Success" msgstr "Successo" -#: modules/calendar/calendar.php:806 +#: modules/calendar/calendar.php:807 msgid "Sun" msgstr "Dom" @@ -2596,13 +2639,13 @@ msgstr "Dom" msgid "synchronous" msgstr "sincrono" -#: modules/calendar/calendar.php:3456 +#: modules/calendar/calendar.php:3511 msgid "Tag" msgid_plural "Tags" msgstr[0] "Tag" msgstr[1] "Tag" -#: modules/calendar/calendar.php:3555 +#: modules/calendar/calendar.php:3610 msgid "Tags" msgstr "Tag" @@ -2614,17 +2657,17 @@ msgstr "Tassonomie da mostrare:" msgid "Taxonomy" msgstr "Tassonomia" -#: modules/editorial-metadata/editorial-metadata.php:445 +#: modules/editorial-metadata/editorial-metadata.php:446 msgctxt "taxonomy general name" msgid "Metadata" msgstr "Metadati" -#: modules/editorial-metadata/editorial-metadata.php:446 +#: modules/editorial-metadata/editorial-metadata.php:447 msgctxt "taxonomy singular name" msgid "Metadata" msgstr "Metadato" -#: modules/calendar/calendar.php:1397 +#: modules/calendar/calendar.php:1411 msgid "Ten months" msgstr "Dieci mesi" @@ -2632,16 +2675,16 @@ msgstr "Dieci mesi" msgid "Terms" msgstr "Termini" -#: modules/editorial-metadata/editorial-metadata.php:1604 +#: modules/editorial-metadata/editorial-metadata.php:1605 #: modules/custom-status/custom-status.php:1821 msgid "Terms not set." msgstr "Termini non impostati." -#: modules/editorial-metadata/editorial-metadata.php:288 +#: modules/editorial-metadata/editorial-metadata.php:289 msgid "Text" msgstr "Testo" -#: modules/editorial-metadata/editorial-metadata.php:2251 +#: modules/editorial-metadata/editorial-metadata.php:2261 msgid "" "The \"slug\" is the URL-friendly version of the name. It is usually all " "lowercase and contains only letters, numbers, and hyphens." @@ -2654,8 +2697,8 @@ msgstr "" msgid "The color is used to identify the status." msgstr "Il colore viene utilizzato per rappresentare visivamente lo stato." -#: modules/editorial-metadata/editorial-metadata.php:1920 -#: modules/editorial-metadata/editorial-metadata.php:2268 +#: modules/editorial-metadata/editorial-metadata.php:1930 +#: modules/editorial-metadata/editorial-metadata.php:2278 msgid "" "The description can be used to communicate with your team about what the " "metadata is for." @@ -2681,12 +2724,12 @@ msgstr "Integrazione The Events Calendar" msgid "The icon is used to visually represent the status." msgstr "L'icona viene utilizzata per rappresentare visivamente lo stato." -#: modules/editorial-metadata/editorial-metadata.php:1934 +#: modules/editorial-metadata/editorial-metadata.php:1944 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:1894 -#: modules/editorial-metadata/editorial-metadata.php:2237 +#: modules/editorial-metadata/editorial-metadata.php:1904 +#: modules/editorial-metadata/editorial-metadata.php:2247 msgid "The name is for labeling the metadata field." msgstr "Il nome serve per etichettare il campo dei metadati." @@ -2702,14 +2745,7 @@ msgstr "" "La notifica è stata impostata come \"Pianificata\" ma l'attività cron non è " "stata trovata" -#: modules/dashboard/dashboard.php:410 -msgid "" -"The notifications module will need to be enabled for this widget to display." -msgstr "" -"Il modulo delle notifiche dovrà essere abilitato per visualizzare questo " -"widget." - -#: modules/calendar/calendar.php:2613 +#: modules/calendar/calendar.php:2642 msgid "" "The number of weeks shown on the calendar can be changed on a user-by-user " "basis using the calendar's screen options." @@ -2721,11 +2757,11 @@ msgstr "" msgid "The parent log was deleted or probably rescheduled" msgstr "Il registro genitore è stato eliminato o probabilmente riprogrammato" -#: modules/calendar/calendar.php:3675 +#: modules/calendar/calendar.php:3730 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:4154 +#: modules/calendar/calendar.php:4209 msgid "" "The selected user doesn't have enough permissions to be set as the post " "author." @@ -2733,7 +2769,7 @@ msgstr "" "L'utente selezionato non dispone di autorizzazioni sufficienti per essere " "impostato come autore dell'articolo." -#: modules/editorial-metadata/editorial-metadata.php:1904 +#: modules/editorial-metadata/editorial-metadata.php:1914 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." @@ -2746,30 +2782,31 @@ msgstr "" "Lo slug è l'ID univoco per lo stato e viene modificato quando il nome viene " "modificato." -#: modules/content-overview/content-overview.php:1540 +#: modules/content-overview/content-overview.php:1564 msgid "There are no posts in the range or filter specified." msgstr "Non sono presenti post nell'intervallo o nel filtro specificato." -#: modules/settings/settings.php:290 +#: modules/settings/settings.php:289 msgid "There are no PublishPress modules registered" msgstr "Non ci sono moduli PublishPress registrati" -#: modules/editorial-comments/editorial-comments.php:835 -#: modules/editorial-comments/editorial-comments.php:965 -#: modules/editorial-comments/editorial-comments.php:1075 -#: modules/editorial-comments/editorial-comments.php:1159 +#: 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 msgid "" "There was a problem of some sort. Try again or contact your administrator." msgstr "" "C'era un problema di qualche tipo. Riprova o contatta il tuo amministratore." -#: modules/calendar/calendar.php:188 +#: modules/calendar/calendar.php:189 msgid "There was an error updating the post. Please try again." msgstr "" "Si è verificato un errore nell'aggiornamento dell'articolo. Prova ancora." #. 1: date, 2: time, 3: timezone #: modules/notifications/notifications.php:2043 +#, php-format msgid "This action was taken on %1$s at %2$s %3$s" msgstr "Questa azione è stata intrapresa il %1$s alle %2$s %3$s" @@ -2780,10 +2817,11 @@ msgid "This editorial metadata type is not yet supported." msgstr "Questo tipo di metadati editoriali non è ancora supportato." #: modules/notifications/notifications.php:1056 +#, php-format msgid "This email was sent %s." msgstr "Questa email è stata spedita %s." -#: modules/notifications-log/notifications-log.php:831 +#: modules/notifications-log/notifications-log.php:832 msgid "" "This is a preview of the scheduled message. The content can still change " "until the notification is sent." @@ -2791,20 +2829,20 @@ 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:2160 -#: modules/editorial-metadata/editorial-metadata.php:2526 +#: modules/editorial-metadata/editorial-metadata.php:2170 +#: modules/editorial-metadata/editorial-metadata.php:2536 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:2184 -#: modules/editorial-metadata/editorial-metadata.php:2549 +#: modules/editorial-metadata/editorial-metadata.php:2194 +#: modules/editorial-metadata/editorial-metadata.php:2559 msgid "" "This metadata will be viewable on the overview screens for these post types." msgstr "" "Questo metadato sarà visibile nelle schermate panoramiche per questo tipi di " "contenuto." -#: modules/notifications-log/notifications-log.php:438 +#: modules/notifications-log/notifications-log.php:439 msgid "" "This notification is very similar to another one sent less than %d minutes " "ago for the same receiver" @@ -2812,10 +2850,6 @@ msgstr "" "Questa notifica è molto simile a un'altra inviata meno di %d minuti fa allo " "stesso destinatario" -#: modules/dashboard/dashboard.php:305 -msgid "This post was last updated on " -msgstr "Questo articolo è stato aggiornato l'ultima volta il " - #: modules/improved-notifications/improved-notifications.php:355 msgid "" "This will prevent too many notifications being sent for the same or similar " @@ -2832,23 +2866,23 @@ 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:1383 +#: modules/calendar/calendar.php:1397 msgid "Three months" msgstr "Tre mesi" -#: modules/calendar/calendar.php:1349 +#: modules/calendar/calendar.php:1363 msgid "Three months ago" msgstr "Tre mesi fa" -#: modules/calendar/calendar.php:1370 +#: modules/calendar/calendar.php:1384 msgid "Three weeks" msgstr "Tre settimane" -#: modules/calendar/calendar.php:810 +#: modules/calendar/calendar.php:811 msgid "Thu" msgstr "Gio" -#: modules/calendar/calendar.php:3516 +#: modules/calendar/calendar.php:3571 #: modules/content-overview/content-overview.php:626 #: lib/Notifications/Table/Workflows.php:142 #: lib/Notifications/Table/Notifications.php:156 @@ -2856,10 +2890,11 @@ msgid "Title" msgstr "Titolo" #: modules/notifications/notifications.php:2065 +#, php-format msgid "Title: %s" msgstr "Titolo: %s" -#: modules/content-overview/content-overview.php:1389 +#: modules/content-overview/content-overview.php:1413 msgid "to" msgstr "a" @@ -2867,42 +2902,43 @@ msgstr "a" msgid "To date" msgstr "Ad oggi" -#: modules/calendar/calendar.php:832 modules/calendar/calendar.php:2124 +#: modules/calendar/calendar.php:833 modules/calendar/calendar.php:2138 msgid "Today" msgstr "Oggi" -#: modules/calendar/calendar.php:2118 +#: modules/calendar/calendar.php:2132 +#, php-format msgid "Today is %s" msgstr "Oggi è %s" -#: common/php/class-module.php:272 modules/calendar/calendar.php:1814 -#: modules/calendar/calendar.php:3475 -#: modules/content-overview/content-overview.php:1892 +#: common/php/class-module.php:272 modules/calendar/calendar.php:1828 +#: modules/calendar/calendar.php:3530 +#: modules/content-overview/content-overview.php:1916 msgid "Trash" msgstr "Cestino" -#: modules/calendar/calendar.php:808 +#: modules/calendar/calendar.php:809 msgid "Tue" msgstr "Mar" -#: modules/calendar/calendar.php:1401 +#: modules/calendar/calendar.php:1415 msgid "Twelve months" msgstr "Dodici mesi" -#: modules/calendar/calendar.php:1381 +#: modules/calendar/calendar.php:1395 msgid "Two months" msgstr "Due mesi" -#: modules/calendar/calendar.php:1347 +#: modules/calendar/calendar.php:1361 msgid "Two months ago" msgstr "Due mesi fa" -#: modules/calendar/calendar.php:1368 +#: modules/calendar/calendar.php:1382 msgid "Two weeks" msgstr "Due settimane" -#: modules/editorial-metadata/editorial-metadata.php:1929 -#: modules/editorial-metadata/editorial-metadata.php:2276 +#: modules/editorial-metadata/editorial-metadata.php:1939 +#: modules/editorial-metadata/editorial-metadata.php:2286 msgid "Type" msgstr "Tipo" @@ -2910,31 +2946,23 @@ msgstr "Tipo" msgid "Undefined error found" msgstr "Si è verificato un errore indefinito" -#: modules/calendar/calendar.php:1457 +#: modules/calendar/calendar.php:1471 #: modules/content-overview/content-overview.php:1076 msgid "Undo" msgstr "Annulla azione" -#: modules/dashboard/dashboard.php:165 -msgid "Unpublished Content" -msgstr "Contenuto non pubblicato" - -#: modules/calendar/calendar.php:797 modules/calendar/calendar.php:3681 +#: modules/calendar/calendar.php:798 modules/calendar/calendar.php:3736 msgid "Untitled" msgstr "Senza titolo" -#: modules/editorial-metadata/editorial-metadata.php:451 +#: modules/editorial-metadata/editorial-metadata.php:452 msgid "Update Editorial Metadata" msgstr "Aggiorna metadato editoriale" -#: modules/editorial-metadata/editorial-metadata.php:2207 +#: modules/editorial-metadata/editorial-metadata.php:2217 msgid "Update Metadata Term" msgstr "Aggiorna termine metadati" -#: modules/dashboard/widgets/dashboard-notepad.php:168 -msgid "Update Note" -msgstr "Nota di aggiornamento" - #: modules/notifications/notifications.php:381 msgid "Update Notify Email" msgstr "Aggiorna l'email di notifica" @@ -2951,7 +2979,8 @@ msgstr "Aggiorna utente di notifica" msgid "Update Status" msgstr "Aggiorna stato" -#: modules/calendar/calendar.php:192 +#: modules/calendar/calendar.php:193 +#, php-format msgid "" "Updating the post date dynamically doesn't work for published content. " "Please edit the post." @@ -2959,15 +2988,23 @@ msgstr "" "L'aggiornamento dinamico della data di pubblicazione non funziona per i " "contenuti pubblicati. Dovresti modificare l'articolo." -#: includes.php:159 +#: includes.php:159 lib/Legacy/Util.php:213 msgid "Upgrade to Pro" msgstr "Aggiorna a Pro" +#: lib/Legacy/Util.php:198 +msgid "Upgrade to PublishPress Planner Pro" +msgstr "Aggiorna a PublishPress Planner Pro" + #: modules/custom-status/custom-status.php:1856 msgid "Use on these post types:" msgstr "Usa in questi tipi di articoli:" -#: modules/editorial-metadata/editorial-metadata.php:289 +#: lib/Legacy/Util.php:208 +msgid "Use post meta in notifications" +msgstr "Utilizza i metadati dell'articolo nelle notifiche" + +#: modules/editorial-metadata/editorial-metadata.php:290 msgid "User" msgstr "Utente" @@ -2975,24 +3012,25 @@ msgstr "Utente" msgid "user" msgstr "utente" -#: modules/improved-notifications/improved-notifications.php:935 +#: modules/improved-notifications/improved-notifications.php:971 msgid "User making changes or comments" msgstr "Utente che apporta modifiche o commenti" -#: modules/editorial-metadata/editorial-metadata.php:1940 -#: modules/editorial-metadata/editorial-metadata.php:2302 +#: modules/editorial-metadata/editorial-metadata.php:1950 +#: modules/editorial-metadata/editorial-metadata.php:2312 msgid "User role" msgstr "Ruolo utente" -#: modules/editorial-comments/editorial-comments.php:1240 +#: modules/editorial-comments/editorial-comments.php:1270 msgid "User Url" msgstr "Url utente" #: modules/notifications-log/library/NotificationsLogTable.php:122 +#, php-format msgid "User: %s (%d)" msgstr "Utente: %s (%d)" -#: modules/editorial-comments/editorial-comments.php:1235 +#: modules/editorial-comments/editorial-comments.php:1265 msgid "Username" msgstr "Nome utente" @@ -3005,24 +3043,30 @@ msgstr "Utenti" msgid "Users who selected \"Notify me\" for the content" msgstr "Utenti che hanno selezionato «Avvisami» per il contenuto" -#: modules/calendar/calendar.php:1838 modules/calendar/calendar.php:3482 -#: modules/content-overview/content-overview.php:1908 +#: modules/calendar/calendar.php:1852 modules/calendar/calendar.php:3537 +#: modules/content-overview/content-overview.php:1932 msgid "View" msgstr "Visualizza" -#: modules/calendar/calendar.php:1832 -#: modules/content-overview/content-overview.php:1902 +#: modules/calendar/calendar.php:1846 +#: modules/content-overview/content-overview.php:1926 +#, php-format msgid "View “%s”" msgstr "Visualizza “%s”" #: modules/editorial-metadata/input-handlers/editorial-metadata-input-location-handler.php:82 +#, php-format msgid "View “%s” on Google Maps" msgstr "Visualizza “%s” su Google Maps" -#: modules/calendar/calendar.php:3940 +#: modules/calendar/calendar.php:3995 msgid "View all categories" msgstr "Visualizza tutte le categorie" +#: lib/Legacy/Util.php:238 +msgid "View Knowledge Base" +msgstr "Vedi la documentazione di base" + #: modules/notifications/notifications.php:380 msgid "View Notify Email" msgstr "Visualizza l'email di notifica" @@ -3037,12 +3081,13 @@ msgstr "Visualizza utente di notifica" #: modules/notifications/notifications.php:2089 #: modules/notifications/notifications.php:2146 +#, php-format msgid "View: %s" msgstr "Visualizza: %s" -#: modules/editorial-metadata/editorial-metadata.php:2083 -#: modules/editorial-metadata/editorial-metadata.php:2443 -#: modules/editorial-metadata/editorial-metadata.php:2690 +#: modules/editorial-metadata/editorial-metadata.php:2093 +#: modules/editorial-metadata/editorial-metadata.php:2453 +#: modules/editorial-metadata/editorial-metadata.php:2700 msgid "Viewable" msgstr "Visibile" @@ -3050,15 +3095,15 @@ msgstr "Visibile" msgid "Warning" msgstr "Attenzione" -#: modules/calendar/calendar.php:809 +#: modules/calendar/calendar.php:810 msgid "Wed" msgstr "Mer" -#: modules/editorial-metadata/editorial-metadata.php:219 +#: modules/editorial-metadata/editorial-metadata.php:220 msgid "What the post needs to cover." msgstr "Di che cosa deve trattare l'articolo." -#: modules/improved-notifications/improved-notifications.php:807 +#: modules/improved-notifications/improved-notifications.php:843 msgid "What to say?" msgstr "Cosa dire?" @@ -3074,7 +3119,7 @@ msgstr "Quando il contenuto viene cambiato di stato" msgid "When the content is updated" msgstr "Quando il contenuto è aggiornato" -#: modules/editorial-metadata/editorial-metadata.php:211 +#: modules/editorial-metadata/editorial-metadata.php:212 msgid "When the first draft needs to be ready." msgstr "Quando deve essere pronta la prima bozza." @@ -3083,40 +3128,37 @@ msgid "When the status is changed" msgstr "Quando lo stato è cambiato" #: lib/Notifications/Plugin.php:57 -#: modules/improved-notifications/improved-notifications.php:777 +#: modules/improved-notifications/improved-notifications.php:813 #: modules/notifications-log/library/NotificationsLogTable.php:491 msgid "When to notify?" msgstr "Quando notificare?" #: lib/Notifications/Plugin.php:59 -#: modules/improved-notifications/improved-notifications.php:797 +#: modules/improved-notifications/improved-notifications.php:833 #: modules/notifications-log/library/NotificationsLogTable.php:493 msgid "Who to notify?" msgstr "Cosa notificare?" -#: modules/dashboard/dashboard.php:70 -msgid "Widget Options" -msgstr "Opzioni del widget" - #: modules/notifications/notifications.php:1918 msgid "WordPress Scheduler" msgstr "Programmazione di WordPress" -#: modules/improved-notifications/improved-notifications.php:936 +#: modules/improved-notifications/improved-notifications.php:972 msgid "Workflow" msgstr "Workflow" -#: modules/improved-notifications/improved-notifications.php:739 +#: modules/improved-notifications/improved-notifications.php:775 msgid "Workflow Settings" msgstr "Impostazioni del workflow" #: modules/notifications-log/library/NotificationsLogTable.php:110 +#, php-format msgid "Workflow: %s" msgstr "Workflow: %s" #: views/user_profile_notification_channels.html.php:14 #: modules/improved-notifications/improved-notifications.php:407 -#: modules/improved-notifications/improved-notifications.php:1115 +#: modules/improved-notifications/improved-notifications.php:1151 msgid "Workflows" msgstr "Workflow" @@ -3124,22 +3166,23 @@ msgstr "Workflow" msgid "Writer is working on the post." msgstr "Lo scrittore sta lavorando all'articolo." -#: modules/editorial-metadata/editorial-metadata.php:2088 -#: modules/editorial-metadata/editorial-metadata.php:2112 -#: modules/editorial-metadata/editorial-metadata.php:2136 -#: modules/editorial-metadata/editorial-metadata.php:2447 -#: modules/editorial-metadata/editorial-metadata.php:2474 -#: modules/editorial-metadata/editorial-metadata.php:2500 -#: modules/editorial-metadata/editorial-metadata.php:2750 +#: 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/input-handlers/editorial-metadata-input-checkbox-handler.php:142 msgid "Yes" msgstr "Sì" #: modules/notifications/notifications.php:1051 +#, php-format msgid "You are receiving this email because you are subscribed to \"%s\"." msgstr "Hai ricevuto questa email perché ti sei iscritto a \"%s\"." -#: modules/improved-notifications/improved-notifications.php:929 +#: modules/improved-notifications/improved-notifications.php:965 msgid "" "You can add dynamic information to the Subject or Body text using the " "following shortcodes:" @@ -3147,7 +3190,7 @@ msgstr "" "Puoi aggiungere informazioni dinamiche all'oggetto o al corpo del testo " "utilizzando i seguenti shortcode:" -#: modules/editorial-comments/editorial-comments.php:502 +#: modules/editorial-comments/editorial-comments.php:532 msgid "" "You can add editorial comments to a post once you've saved it for the first " "time." @@ -3156,6 +3199,7 @@ msgstr "" "salvato la prima volta." #: modules/notifications/notifications.php:2149 +#, php-format msgid "You can see all editorial comments on this %s here: " msgstr "Puoi vedere qui tutti i commenti editoriali su questo %s: " @@ -3175,3 +3219,49 @@ msgid "" msgstr "" "Stai usando la versione gratuita di PublishPress Planner. La versione Pro ha " "più funzionalità e un supporto migliore. %sAggiorna a Pro%s" + +#~ msgid "%1$s last updated on %2$s" +#~ msgstr "Ultimo aggiornamento di%1$s il %2$s" + +#~ msgid "Calendar" +#~ msgstr "Calendario" + +#~ msgid "Dashboard" +#~ msgstr "Bacheca" + +#~ msgid "Dashboard Note" +#~ msgstr "Nota in bacheca" + +#~ msgid "My Content Notifications" +#~ msgstr "Le mie notifiche dei contenuti" + +#~ msgid "Notepad" +#~ msgstr "Blocco note" + +#~ msgid "Post Status Widget" +#~ msgstr "Widget stato articolo" + +#~ msgid "Posts at a Glance" +#~ msgstr "Articoli a colpo d'occhio" + +#~ msgid "Sorry! You're not subscribed to any posts!" +#~ msgstr "Spiacente! Non sei iscritto a nessun articolo!" + +#~ msgid "" +#~ "The notifications module will need to be enabled for this widget to " +#~ "display." +#~ msgstr "" +#~ "Il modulo delle notifiche dovrà essere abilitato per visualizzare questo " +#~ "widget." + +#~ msgid "This post was last updated on " +#~ msgstr "Questo articolo è stato aggiornato l'ultima volta il " + +#~ msgid "Unpublished Content" +#~ msgstr "Contenuto non pubblicato" + +#~ msgid "Update Note" +#~ msgstr "Nota di aggiornamento" + +#~ msgid "Widget Options" +#~ msgstr "Opzioni del widget" diff --git a/languages/publishpress.pot b/languages/publishpress.pot index 5468577ee..6e50c8412 100644 --- a/languages/publishpress.pot +++ b/languages/publishpress.pot @@ -1,3042 +1,2659 @@ -# Copyright (C) 2022 PublishPress -# This file is distributed under the same license as the PublishPress plugin. -#, fuzzy +# Copyright (C) 2024 PublishPress +# This file is distributed under the same license as the PublishPress Planner plugin. msgid "" msgstr "" -"Project-Id-Version: PublishPress 3.7.1-beta.1\n" -"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/publishpress\n" +"Project-Id-Version: PublishPress Planner 4.0.1\n" +"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/project\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"POT-Creation-Date: 2023-09-28 15:49+0000\n" +"POT-Creation-Date: 2024-01-04T15:45:17+00:00\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"X-Generator: Loco https://localise.biz/\n" +"X-Generator: WP-CLI 2.8.1\n" "X-Domain: publishpress\n" -"Language: \n" -"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;" -#: modules/notifications-log/library/NotificationsLogTable.php:257 -msgid " Scheduled" -msgstr "" - -#: modules/notifications-log/library/NotificationsLogTable.php:255 -msgid " Scheduled, but late" -msgstr "" - -#: lib/Notifications/Workflow/Step/Receiver/Follower.php:177 -msgid "\"Notify me\"" +#. Plugin Name of the plugin +#: modules/settings/settings.php:266 +msgid "PublishPress Planner" msgstr "" -#. 1: post type, 2: post id, 3. post title, 4. user name, 5. user email -#: modules/notifications/notifications.php:1951 -#, php-format -msgid "%1$s #%2$s \"%3$s\" was moved to the trash by %4$s %5$s" +#. Plugin URI of the plugin +msgid "https://publishpress.com/" msgstr "" -#. 1: post type, 2: post id, 3. post title, 4. user name, 5. user email -#: modules/notifications/notifications.php:1998 -#, php-format -msgid "%1$s #%2$s \"%3$s\" was published by %4$s %5$s" +#. Description of the plugin +msgid "PublishPress Planner helps you plan and publish content with WordPress. Features include a content calendar, notifications, and custom statuses." msgstr "" -#. 1: post type, 2: post id, 3. post title, 4. user name, 5. user email -#: modules/notifications/notifications.php:1968 -#, php-format -msgid "%1$s #%2$s \"%3$s\" was restored from trash by %4$s %5$s" +#. Author of the plugin +#: modules/calendar/calendar.php:1349 +#: modules/settings/settings.php:61 +msgid "PublishPress" msgstr "" -#. 1: post type, 2: post id, 3. post title, 4. user name, 5. user email -#: modules/notifications/notifications.php:2015 -#, php-format -msgid "%1$s #%2$s \"%3$s\" was unpublished by %4$s %5$s" +#. Author URI of the plugin +msgid "https://publishpress.com" msgstr "" -#. 1: comment author, 2: author email, 3: date, 4: time -#: modules/notifications/notifications.php:2114 -#, php-format -msgid "%1$s (%2$s ) said on %3$s at %4$s:" +#: common/php/class-module.php:262 +#: modules/calendar/calendar.php:1988 +msgid "Published" msgstr "" -#: modules/content-overview/content-overview.php:1012 -#, php-format -msgctxt "%1$s = start date, %2$s = end date" -msgid " %1$s to %2$s" +#: common/php/class-module.php:263 +msgid "Draft" msgstr "" -#. 1: old status, 2: new status -#: modules/notifications/notifications.php:2056 -#, php-format -msgid "%1$s => %2$s" +#: common/php/class-module.php:264 +#: modules/calendar/calendar.php:1983 +#: modules/notifications-log/library/NotificationsLogTable.php:523 +msgid "Scheduled" msgstr "" -#. 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:337 -#, php-format -msgid "%1$s at %2$s" +#: common/php/class-module.php:265 +msgid "Private" msgstr "" -#: lib/Notifications/Workflow/Step/Receiver/Role.php:176 -msgid "%d Role" -msgid_plural "%d Roles" -msgstr[0] "" -msgstr[1] "" - -#: lib/Notifications/Workflow/Step/Receiver/User.php:152 -msgid "%d User" -msgid_plural "%d Users" -msgstr[0] "" -msgstr[1] "" - -#: modules/calendar/calendar.php:831 -msgid "%d week" +#: common/php/class-module.php:266 +msgid "Pending Review" msgstr "" -#: modules/calendar/calendar.php:832 -msgid "%d weeks" +#: common/php/class-module.php:267 +#: modules/calendar/calendar.php:1832 +#: modules/calendar/calendar.php:3591 +#: modules/content-overview/content-overview.php:1916 +msgid "Trash" msgstr "" -#: modules/notifications-log/notifications-log.php:272 -#, php-format -msgid "%s notification found." -msgid_plural "%s notifications found." -msgstr[0] "" -msgstr[1] "" - -#: modules/calendar/calendar.php:4086 -#, php-format -msgid "%s week" -msgid_plural "%s weeks" -msgstr[0] "" -msgstr[1] "" - -#: modules/calendar/calendar.php:2155 -msgid "«" +#: common/php/class-module.php:675 +#: lib/Notifications/Workflow/Step/Receiver/Role.php:31 +msgid "Roles" msgstr "" -#: modules/calendar/calendar.php:2168 -msgid "‹" +#: common/php/class-module.php:678 +msgid "Role" msgstr "" -#: modules/calendar/calendar.php:2124 -msgid "»" +#: common/php/class-module.php:686 +#: lib/Notifications/Workflow/Step/Receiver/User.php:26 +msgid "Users" msgstr "" -#: modules/calendar/calendar.php:2107 -msgid "›" +#: common/php/class-module.php:696 +msgid "E-mails" msgstr "" #: common/php/util.php:46 msgid "(no title)" msgstr "" -#: lib/Notifications/Workflow/Step/Event/Filter/Post_Status.php:37 -msgid "- any status -" -msgstr "" - -#: modules/calendar/calendar.php:211 -msgid "" -"

For more information:

Calendar Documentation

PublishPress on " -"Github

" -msgstr "" - -#: modules/custom-status/custom-status.php:118 -msgid "" -"

For more information:

Custom Status " -"Documentation

PublishPress on Github

" -msgstr "" - -#: modules/editorial-comments/editorial-comments.php:88 -msgid "" -"

For more information:

Editorial Comments " -"Documentation

PublishPress on Github

" -msgstr "" - -#: modules/editorial-metadata/editorial-metadata.php:126 -msgid "" -"

For more information:

Editorial Metadata " -"Documentation

PublishPress on Github

" -msgstr "" - -#: modules/notifications/notifications.php:99 -msgid "" -"

For more information:

Notifications Documentation" -"

PublishPress " -"on Github

" -msgstr "" - -#: modules/editorial-comments/editorial-comments.php:83 -msgid "" -"

Editorial comments help you cut down on email overload and keep the " -"conversation close to where it matters: your content. Threaded commenting in " -"the admin, similar to what you find at the end of a blog post, allows " -"writers and editors to privately leave feedback and discuss what needs to be " -"changed before publication.

Anyone with access to view the story in " -"progress will also have the ability to comment on it. If you have " -"notifications enabled, those following the post will receive an email every " -"time a comment is left.

" -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.

" -msgstr "" - -#: modules/notifications/notifications.php:94 -msgid "" -"

Notifications ensure you keep up to date with progress your most " -"important content. Users can be subscribed to notifications on a post one by " -"one or by selecting roles.

When enabled, notifications can be sent " -"when a post changes status or an editorial comment is left by a writer or an " -"editor.

" -msgstr "" - -#: modules/custom-status/custom-status.php:113 -msgid "" -"

PublishPress’s custom statuses allow you to define the most important " -"stages of your editorial workflow. Out of the box, WordPress only offers " -"“Draft” and “Pending Review” as post states. With custom statuses, you can " -"create your own post states like “In Progress”, “Pitch”, or “Waiting for " -"Edit” and keep or delete the originals. You can also drag and drop statuses " -"to set the best order for your workflow.

Custom statuses are fully " -"integrated into the rest of PublishPress and the WordPress admin. On the " -"calendar and content overview, you can filter your view to see only posts of " -"a specific post state. Furthermore, email notifications can be sent to a " -"specific group of users when a post changes state.

" -msgstr "" - -#: modules/calendar/calendar.php:206 -msgid "" -"

The calendar is a convenient week-by-week or month-by-month view into " -"your content. Quickly see which stories are on track to being published on " -"time, and which will need extra effort.

" -msgstr "" - -#: modules/custom-status/custom-status.php:518 -msgid "" -"Note: Your browser does not support JavaScript or has " -"JavaScript disabled. You will not be able to access or change the post " -"status." -msgstr "" - -#: modules/notifications/notifications.php:2064 -#, php-format -msgid "== %s Details ==" -msgstr "" - -#: modules/notifications/notifications.php:2083 -#: modules/notifications/notifications.php:2136 -msgid "== Actions ==" -msgstr "" - -#. 1: site name, 2: post type, 3. post title -#: modules/notifications/notifications.php:1991 -#, php-format -msgid "[%1$s] %2$s Published: \"%3$s\"" -msgstr "" - -#. 1: site name, 2: post type, 3. post title -#: modules/notifications/notifications.php:1961 -#, php-format -msgid "[%1$s] %2$s Restored (from Trash ): \"%3$s\"" -msgstr "" - -#. 1: site name, 2: post type, 3. post title -#: modules/notifications/notifications.php:2025 -#, php-format -msgid "[%1$s] %2$s Status Changed for \"%3$s\"" -msgstr "" - -#. 1: site name, 2: post type, 3. post title -#: modules/notifications/notifications.php:1944 -#, php-format -msgid "[%1$s] %2$s Trashed: \"%3$s\"" -msgstr "" - -#. 1: site name, 2: post type, 3. post title -#: modules/notifications/notifications.php:2008 -#, php-format -msgid "[%1$s] %2$s Unpublished: \"%3$s\"" -msgstr "" - -#. 1: site name, 2: post type, 3. post title -#: modules/notifications/notifications.php:1927 -#, php-format -msgid "[%1$s] New %2$s Created: \"%3$s\"" -msgstr "" - -#. 1: blog name, 2: post title -#: modules/notifications/notifications.php:2100 -#, php-format -msgid "[%1$s] New Editorial Comment: \"%2$s\"" -msgstr "" - -#. 1: post type, 2: post id, 3. post title, 4. user name, 5. user email -#: modules/notifications/notifications.php:1934 -#, php-format -msgid "A new %1$s (#%2$s \"%3$s\" ) was created by %4$s %5$s" -msgstr "" - -#. 1: post id, 2: post title, 3. post type -#: modules/notifications/notifications.php:2107 -#, php-format -msgid "A new editorial comment was added to %3$s #%1$s \"%2$s\"" +#: core/Error.php:79 +msgid "Undefined error found" msgstr "" -#: modules/settings/views/footer-base.html.php:21 -msgid "About" +#: core/Error.php:80 +#: modules/calendar/calendar.php:3257 +msgid "Invalid nonce" msgstr "" #: core/Error.php:81 msgid "Access denied" msgstr "" -#: modules/debug/debug.php:358 -msgid "Action nonce not found." -msgstr "" - -#: modules/notifications/notifications.php:676 -msgid "Active Notifications" -msgstr "" - -#: modules/notifications/notifications.php:1785 -msgid "" -"Add a list of taxonomy-slugs separated by comma that should not be loaded by " -"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 -msgid "Add an editorial comment" -msgstr "" - -#: modules/editorial-metadata/editorial-metadata.php:2085 -#: modules/editorial-metadata/editorial-metadata.php:2446 -msgid "Add Another Option" -msgstr "" - -#: modules/editorial-comments/editorial-comments.php:574 -msgid "Add Comment" -msgstr "" - -#: modules/calendar/calendar.php:803 -#, php-format -msgid "Add content for %s" -msgstr "" - -#: modules/notifications/notifications.php:2085 -#: modules/notifications/notifications.php:2142 -#, php-format -msgid "Add editorial comment: %s" -msgstr "" - -#: modules/editorial-metadata/editorial-metadata.php:1799 -#: modules/custom-status/custom-status.php:2112 -msgid "Add New" -msgstr "" - -#: modules/editorial-metadata/editorial-metadata.php:453 -msgid "Add New Editorial Metadata" -msgstr "" - -#: modules/editorial-metadata/editorial-metadata.php:2581 -msgid "Add New Metadata Term" -msgstr "" - -#: publishpress.php:1238 -msgid "Add New Notification" -msgstr "" - -#: modules/notifications/notifications.php:382 -msgid "Add New Notify Email" -msgstr "" - -#: modules/notifications/notifications.php:347 -msgid "Add New Notify Role" -msgstr "" - -#: modules/notifications/notifications.php:312 -msgid "Add New Notify User" -msgstr "" - -#: modules/custom-status/custom-status.php:2208 -msgid "Add New Status" -msgstr "" - -#: modules/notifications/notifications.php:385 -msgid "Add or remove notify emails" +#: includes.php:127 +msgid "You're using PublishPress Planner Free. The Pro version has more features and support. %sUpgrade to Pro%s" msgstr "" -#: modules/notifications/notifications.php:350 -msgid "Add or remove notify roles" +#: includes.php:159 +#: lib/Legacy/Util.php:213 +msgid "Upgrade to Pro" msgstr "" -#: modules/notifications/notifications.php:315 -msgid "Add or remove notify users" +#: lib/Legacy/Util.php:198 +msgid "Upgrade to PublishPress Planner Pro" msgstr "" -#: modules/editorial-metadata/editorial-metadata.php:2165 -#: modules/editorial-metadata/editorial-metadata.php:2532 -msgid "Add to post types" +#: lib/Legacy/Util.php:203 +msgid "Enhance the power of PublishPress Planner with the Pro version:" msgstr "" -#: modules/improved-notifications/improved-notifications.php:94 -msgid "Advanced Notifications" +#: lib/Legacy/Util.php:206 +msgid "Slack integration for notifications" msgstr "" -#: modules/notifications-log/library/NotificationsLogTable.php:511 -msgid "All" +#: lib/Legacy/Util.php:207 +msgid "Send reminder notifications" msgstr "" -#: modules/content-overview/content-overview.php:1278 -#: modules/content-overview/content-overview.php:1281 -#, php-format -msgid "All %s" +#: lib/Legacy/Util.php:208 +msgid "Use post meta in notifications" msgstr "" -#: modules/notifications-log/notifications-log.php:206 -msgid "All Actions" +#: lib/Legacy/Util.php:209 +msgid "Remove PublishPress ads and branding" msgstr "" -#: modules/calendar/calendar.php:829 modules/calendar/calendar.php:4034 -#: modules/content-overview/content-overview.php:1300 -#: modules/content-overview/content-overview.php:1303 -msgid "All authors" +#: lib/Legacy/Util.php:210 +msgid "Fast, professional support" msgstr "" -#: modules/calendar/calendar.php:827 -msgid "All categories" +#: lib/Legacy/Util.php:220 +msgid "Need PublishPress Planner Support?" msgstr "" -#: modules/notifications-log/notifications-log.php:207 -msgid "All Channels" +#: lib/Legacy/Util.php:225 +msgid "If you need help or have a new feature request, let us know." msgstr "" -#: modules/notifications-log/library/NotificationsLogTable.php:601 -msgid "All channels" +#: lib/Legacy/Util.php:227 +msgid "Request Support" msgstr "" -#: modules/editorial-metadata/editorial-metadata.php:450 -msgid "All Editorial Metadata" +#: lib/Legacy/Util.php:236 +msgid "Detailed documentation is also available on the plugin website." msgstr "" -#: modules/notifications-log/library/NotificationsLogTable.php:584 -msgid "All events" +#: lib/Legacy/Util.php:238 +msgid "View Knowledge Base" msgstr "" -#: modules/notifications/notifications.php:376 -msgid "All Notify Emails" +#: lib/Notifications/Plugin.php:57 +#: modules/improved-notifications/improved-notifications.php:813 +#: modules/notifications-log/library/NotificationsLogTable.php:491 +msgid "When to notify?" msgstr "" -#: modules/notifications/notifications.php:341 -msgid "All Notify Roles" +#: lib/Notifications/Plugin.php:58 +msgid "Filter the content?" msgstr "" -#: modules/notifications/notifications.php:306 -msgid "All Notify Users" +#: lib/Notifications/Plugin.php:59 +#: modules/improved-notifications/improved-notifications.php:833 +#: modules/notifications-log/library/NotificationsLogTable.php:493 +msgid "Who to notify?" msgstr "" -#: modules/editorial-metadata/editorial-metadata.php:1268 -#: modules/editorial-metadata/editorial-metadata.php:1438 -msgid "All options value and labels are required." +#: lib/Notifications/Plugin.php:188 +msgid "Please select at least one event" msgstr "" -#: modules/content-overview/content-overview.php:1330 -msgid "All post types" +#: lib/Notifications/Plugin.php:221 +msgid "Not filtered" msgstr "" -#: modules/notifications-log/notifications-log.php:204 -#: modules/editorial-comments/editorial-comments.php:212 -#: modules/editorial-comments/library/EditorialCommentsTable.php:182 -msgid "All Posts" +#: lib/Notifications/Table/Notifications.php:156 +#: lib/Notifications/Table/Workflows.php:142 +#: modules/calendar/calendar.php:3632 +#: modules/content-overview/content-overview.php:626 +msgid "Title" msgstr "" -#: modules/calendar/calendar.php:2896 -msgid "All posts" +#: lib/Notifications/Table/Notifications.php:157 +msgid "Message" msgstr "" -#: modules/notifications-log/library/NotificationsLogTable.php:634 -msgid "All Receivers" +#: lib/Notifications/Table/Notifications.php:158 +#: modules/calendar/calendar.php:3551 +#: modules/editorial-metadata/editorial-metadata.php:285 +#: modules/notifications-log/library/NotificationsLogTable.php:490 +msgid "Date" msgstr "" -#: modules/notifications-log/notifications-log.php:208 -msgid "All Statuses" +#: lib/Notifications/Table/Notifications.php:159 +#: lib/Notifications/Table/Workflows.php:143 +#: modules/calendar/calendar.php:3546 +msgid "ID" msgstr "" -#: modules/calendar/calendar.php:826 modules/calendar/calendar.php:3978 -#: modules/content-overview/content-overview.php:1256 -msgid "All statuses" +#: lib/Notifications/Table/Notifications.php:235 +msgid "You don't have any notifications" msgstr "" -#: modules/calendar/calendar.php:828 modules/calendar/calendar.php:4013 -msgid "All tags" +#: lib/Notifications/Table/Workflows.php:217 +msgid "No workflows found." msgstr "" -#: modules/calendar/calendar.php:830 modules/calendar/calendar.php:4061 -msgid "All types" +#: lib/Notifications/Workflow/Option/SkipUser.php:26 +msgid "Skip current user" msgstr "" -#: modules/editorial-comments/editorial-comments.php:213 -#: modules/editorial-comments/library/EditorialCommentsTable.php:197 -msgid "All Users" +#: lib/Notifications/Workflow/Option/SkipUser.php:31 +msgid "Skip notifications for the user who triggered the action" msgstr "" -#: modules/notifications-log/notifications-log.php:205 -msgid "All Workflows" +#: lib/Notifications/Workflow/Step/Channel/Email.php:31 +#: modules/editorial-comments/editorial-comments.php:1269 +msgid "Email" msgstr "" -#: modules/calendar/calendar.php:2558 -msgid "Allow public access to subscriptions in iCal or Google Calendar" +#: lib/Notifications/Workflow/Step/Content/Main.php:29 +#: modules/calendar/calendar.php:3679 +#: modules/improved-notifications/improved-notifications.php:971 +msgid "Content" msgstr "" -#: modules/notifications/notifications.php:1649 -msgid "Always notify the author of the content:" +#: lib/Notifications/Workflow/Step/Content/Main.php:53 +msgid "Subject" msgstr "" -#: modules/notifications/notifications.php:1657 -msgid "Always notify users who have edited the content:" +#: lib/Notifications/Workflow/Step/Content/Main.php:54 +msgid "Body" msgstr "" -#: modules/calendar/calendar.php:2606 -msgid "Always show complete post titles" +#: lib/Notifications/Workflow/Step/Event/Editorial_Comment.php:24 +msgid "When an editorial comment is added" msgstr "" -#: modules/content-overview/content-overview.php:1022 -msgid "Apply" +#: lib/Notifications/Workflow/Step/Event/Editorial_Comment.php:92 +msgid "Comment: %s (%d)" msgstr "" -#: modules/calendar/calendar.php:817 -msgid "Apr" +#: lib/Notifications/Workflow/Step/Event/Filter/Post_Status.php:34 +msgid "When the status is changed" msgstr "" -#: modules/custom-status/custom-status.php:409 -msgid "" -"Are you sure you want to delete the post status? All posts with this status " -"will be assigned to the default status." +#: lib/Notifications/Workflow/Step/Event/Filter/Post_Status.php:35 +msgid "Previous status" msgstr "" -#: modules/editorial-metadata/editorial-metadata.php:367 -msgid "" -"Are you sure you want to delete this term? Any metadata for this term will " -"remain but will not be visible unless this term is re-added." +#: lib/Notifications/Workflow/Step/Event/Filter/Post_Status.php:36 +msgid "New status" msgstr "" -#: modules/custom-status/custom-status.php:195 -msgid "Assigned" +#: lib/Notifications/Workflow/Step/Event/Filter/Post_Status.php:37 +msgid "- any status -" msgstr "" -#: modules/editorial-metadata/editorial-metadata.php:217 -msgid "Assignment" +#: lib/Notifications/Workflow/Step/Event/Filter/Post_Status.php:59 +msgid "New" msgstr "" -#: modules/async-notifications/async-notifications.php:71 -msgid "Async Notifications" +#: lib/Notifications/Workflow/Step/Event/Filter/Post_Status.php:64 +msgid "Auto-draft" msgstr "" -#: modules/notifications-log/library/NotificationsLogTable.php:298 -msgid "asynchronous" +#: lib/Notifications/Workflow/Step/Event/Post_StatusTransition.php:28 +msgid "When the content is moved to a new status" msgstr "" -#: modules/calendar/calendar.php:2625 -msgid "At least one post type must be selected" +#: lib/Notifications/Workflow/Step/Event/Post_StatusTransition.php:114 +msgid "Old post status: %s" msgstr "" -#: modules/editorial-comments/editorial-comments.php:562 -msgid "Attach file" +#: lib/Notifications/Workflow/Step/Event/Post_StatusTransition.php:118 +msgid "New post status: %s" msgstr "" -#: modules/calendar/calendar.php:821 -msgid "Aug" +#: lib/Notifications/Workflow/Step/Event/Post_Update.php:26 +msgid "When the content is updated" msgstr "" -#: modules/calendar/calendar.php:1963 modules/calendar/calendar.php:3501 -#: modules/calendar/calendar.php:3591 -#: modules/content-overview/content-overview.php:629 -#: modules/editorial-comments/library/EditorialCommentsTable.php:229 -msgid "Author" -msgid_plural "Authors" +#: lib/Notifications/Workflow/Step/Event_Content/Category.php:24 +#: modules/calendar/calendar.php:3567 +msgid "Category" +msgid_plural "Categories" msgstr[0] "" msgstr[1] "" -#. 1: author name, 2: author email -#: modules/notifications/notifications.php:2069 -#, php-format -msgid "Author: %1$s (%2$s )" -msgstr "" - -#: lib/Notifications/Workflow/Step/Receiver/Author.php:92 -msgid "Authors" -msgstr "" - -#: lib/Notifications/Workflow/Step/Receiver/Author.php:26 -msgid "Authors of the content" -msgstr "" - -#: lib/Notifications/Workflow/Step/Event/Filter/Post_Status.php:64 -msgid "Auto-draft" -msgstr "" - -#: modules/improved-notifications/improved-notifications.php:981 -msgid "Available fields" -msgstr "" - -#: modules/calendar/calendar.php:2147 -msgid "Back %d weeks" +#: lib/Notifications/Workflow/Step/Event_Content/Filter/Category.php:34 +#: modules/calendar/calendar.php:3662 +msgid "Categories" msgstr "" -#: modules/calendar/calendar.php:2159 -msgid "Back 1 week" +#: lib/Notifications/Workflow/Step/Event_Content/Filter/Post_Type.php:34 +#: modules/editorial-metadata/editorial-metadata.php:2697 +msgid "Post Types" msgstr "" -#: modules/notifications/notifications.php:393 -msgid "Back to notify emails" +#: lib/Notifications/Workflow/Step/Event_Content/Filter/Term.php:33 +msgid "Terms" msgstr "" -#: modules/notifications/notifications.php:358 -msgid "Back to notify roles" +#: lib/Notifications/Workflow/Step/Event_Content/Post_Type.php:24 +msgid "Post type" msgstr "" -#: modules/notifications/notifications.php:323 -msgid "Back to notify users" +#: lib/Notifications/Workflow/Step/Event_Content/Taxonomy.php:24 +msgid "Taxonomy" msgstr "" -#: modules/modules-settings/modules-settings.php:241 -msgid "Basic Notifications" +#: lib/Notifications/Workflow/Step/Receiver/Author.php:26 +msgid "Authors of the content" msgstr "" -#: modules/notifications/notifications.php:1665 -msgid "Blacklisted taxonomies for Notifications" +#: lib/Notifications/Workflow/Step/Receiver/Author.php:92 +msgid "Authors" msgstr "" -#: modules/notifications-log/library/NotificationsLogTable.php:157 -msgid "Blog ID: %d" +#: lib/Notifications/Workflow/Step/Receiver/Follower.php:30 +msgid "Users who selected \"Notify me\" for the content" msgstr "" -#: modules/notifications-log/library/NotificationsLogTable.php:377 -msgid "Blog: " +#: lib/Notifications/Workflow/Step/Receiver/Follower.php:100 +#: lib/Notifications/Workflow/Step/Receiver/Role.php:147 +msgid "role:%s" msgstr "" -#: lib/Notifications/Workflow/Step/Content/Main.php:54 -msgid "Body" +#: lib/Notifications/Workflow/Step/Receiver/Follower.php:120 +msgid "user" msgstr "" -#: modules/editorial-metadata/editorial-metadata.php:2220 -#: modules/custom-status/custom-status.php:2078 -#: modules/content-overview/content-overview.php:1028 -#: modules/editorial-comments/editorial-comments.php:578 -msgid "Cancel" +#: lib/Notifications/Workflow/Step/Receiver/Follower.php:135 +msgid "email" msgstr "" -#: modules/custom-status/custom-status.php:1212 -msgid "Cannot reassign to the status you want to delete" +#: lib/Notifications/Workflow/Step/Receiver/Follower.php:177 +msgid "\"Notify me\"" msgstr "" -#: modules/calendar/calendar.php:3601 -#: lib/Notifications/Workflow/Step/Event_Content/Filter/Category.php:34 -msgid "Categories" +#: lib/Notifications/Workflow/Step/Receiver/Role.php:176 +msgid "%d Role" +msgid_plural "%d Roles" +msgstr[0] "" +msgstr[1] "" + +#: lib/Notifications/Workflow/Step/Receiver/Site_Admin.php:24 +#: lib/Notifications/Workflow/Step/Receiver/Site_Admin.php:73 +msgid "Site Administrator" msgstr "" -#: modules/calendar/calendar.php:3506 -#: lib/Notifications/Workflow/Step/Event_Content/Category.php:24 -msgid "Category" -msgid_plural "Categories" +#: lib/Notifications/Workflow/Step/Receiver/User.php:152 +msgid "%d User" +msgid_plural "%d Users" msgstr[0] "" msgstr[1] "" -#: modules/content-overview/content-overview.php:1029 -msgid "Change" +#: modules/async-notifications/async-notifications.php:71 +msgid "Async Notifications" msgstr "" -#: views/user_profile_notification_channels.html.php:15 -#: modules/improved-notifications/improved-notifications.php:408 -#: modules/improved-notifications/improved-notifications.php:1152 -msgid "Channels" +#: modules/async-notifications/async-notifications.php:172 +msgid "Event: %s, Workflow ID: %s, Post ID: %s, User ID: %s" msgstr "" -#: publishpress.php:660 -msgid "Cheatin’ uh?" +#: modules/calendar/calendar.php:170 +#: modules/calendar/calendar.php:410 +#: modules/calendar/calendar.php:427 +#: modules/calendar/calendar.php:428 +msgid "Content Calendar" msgstr "" -#: modules/editorial-metadata/editorial-metadata.php:283 -msgid "Checkbox" +#: modules/calendar/calendar.php:188 +msgid "Post date updated." msgstr "" -#: modules/notifications/notifications.php:386 -msgid "Choose from the most used notify emails" +#: modules/calendar/calendar.php:189 +msgid "Post status updated." msgstr "" -#: modules/notifications/notifications.php:351 -msgid "Choose from the most used notify roles" +#: modules/calendar/calendar.php:190 +msgid "There was an error updating the post. Please try again." msgstr "" -#: modules/notifications/notifications.php:316 -msgid "Choose from the most used notify users" +#: modules/calendar/calendar.php:194 +msgid "Updating the post date dynamically doesn't work for published content. Please edit the post." msgstr "" -#: modules/editorial-comments/editorial-comments.php:78 -msgid "Choose Post Types" +#: modules/calendar/calendar.php:198 +msgid "iCal secret key regenerated. Please inform all users they will need to resubscribe." msgstr "" -#: views/user_profile_notification_channels.html.php:6 -#: modules/improved-notifications/improved-notifications.php:402 -#: modules/improved-notifications/improved-notifications.php:1146 -msgid "Choose the channels where each workflow will send notifications to:" +#: 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 "" -#: modules/improved-notifications/improved-notifications.php:983 -msgid "Click here to read more about shortcode options..." +#: modules/calendar/calendar.php:207 +msgid "

The calendar is a convenient week-by-week or month-by-month view into your content. Quickly see which stories are on track to being published on time, and which will need extra effort.

" msgstr "" -#: modules/calendar/calendar.php:1440 -msgid "Click here to subscribe in iCal or Google Calendar" +#: modules/calendar/calendar.php:212 +msgid "

For more information:

Calendar Documentation

PublishPress on Github

" msgstr "" -#: modules/calendar/calendar.php:795 modules/calendar/calendar.php:797 -msgid "Click to add" +#: modules/calendar/calendar.php:796 +#: modules/notifications-log/notifications-log.php:210 +msgid "Loading..." msgstr "" -#: modules/debug/debug.php:308 -msgid "" -"Click to delete the log file. Be careful, this operation can not be undone. " +#: modules/calendar/calendar.php:797 +msgid "Loading item..." msgstr "" -#: modules/notifications/notifications.php:573 -#: modules/notifications/notifications.php:943 -msgid "Click to start being notified on updates for this post" +#: modules/calendar/calendar.php:798 +#: modules/calendar/calendar.php:800 +msgid "Click to add" msgstr "" -#: modules/notifications/notifications.php:569 -#: modules/notifications/notifications.php:937 -msgid "Click to stop being notified on updates for this post" +#: modules/calendar/calendar.php:799 +msgid "Moving the item..." msgstr "" -#: modules/content-overview/content-overview.php:1505 -msgid "Click to toggle" +#: modules/calendar/calendar.php:801 +#: modules/calendar/calendar.php:3797 +msgid "Untitled" msgstr "" -#: modules/calendar/calendar.php:799 +#: modules/calendar/calendar.php:802 msgid "Close" msgstr "" -#: modules/custom-status/custom-status.php:2029 -#: modules/custom-status/custom-status.php:2161 -msgid "Color" +#: modules/calendar/calendar.php:803 +#: modules/calendar/calendar.php:1872 +#: modules/editorial-comments/lib/editorial-comments.js:349 +msgid "Save" msgstr "" -#: modules/editorial-comments/library/EditorialCommentsTable.php:230 -msgid "Comment" +#: modules/calendar/calendar.php:804 +msgid "Saving..." msgstr "" -#: modules/editorial-comments/editorial-comments.php:1239 -msgid "Comment author name field:" +#: modules/calendar/calendar.php:805 +msgid "Save and edit" msgstr "" -#: modules/editorial-comments/editorial-comments.php:1181 -msgid "Comment deleted successfully." +#: modules/calendar/calendar.php:806 +msgid "Add content for %s" msgstr "" -#: lib/Notifications/Workflow/Step/Event/Editorial_Comment.php:92 -#, php-format -msgid "Comment: %s (%d)" +#: modules/calendar/calendar.php:807 +msgid "Post type not found" msgstr "" -#: publishpress.php:656 -msgid "Configure" +#: modules/calendar/calendar.php:808 +msgid "Post type:" msgstr "" -#: modules/settings/views/footer-base.html.php:29 -msgid "Contact" +#: modules/calendar/calendar.php:809 +msgid "Please, wait! Loading the form fields..." msgstr "" -#: modules/calendar/calendar.php:3618 -#: modules/improved-notifications/improved-notifications.php:969 -#: lib/Notifications/Workflow/Step/Content/Main.php:29 -msgid "Content" +#: modules/calendar/calendar.php:810 +msgid "Sun" msgstr "" -#: modules/calendar/calendar.php:170 modules/calendar/calendar.php:409 -#: modules/calendar/calendar.php:426 modules/calendar/calendar.php:427 -msgid "Content Calendar" +#: modules/calendar/calendar.php:811 +msgid "Mon" msgstr "" -#: 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 -msgid "Content Overview" +#: modules/calendar/calendar.php:812 +msgid "Tue" msgstr "" -#: modules/notifications-log/notifications-log.php:822 -msgid "Content:" +#: modules/calendar/calendar.php:813 +msgid "Wed" msgstr "" -#: modules/calendar/calendar.php:1434 -msgid "Copy to the clipboard" +#: modules/calendar/calendar.php:814 +msgid "Thu" msgstr "" -#: modules/custom-status/custom-status.php:1591 -msgid "Could not add status: " +#: modules/calendar/calendar.php:815 +msgid "Fri" msgstr "" -#: modules/custom-status/custom-status.php:1766 -msgid "Could not delete the status: " +#: modules/calendar/calendar.php:816 +msgid "Sat" msgstr "" -#: modules/debug/debug.php:296 -msgid "Created on" +#: modules/calendar/calendar.php:817 +msgid "Jan" msgstr "" -#: modules/calendar/calendar.php:1357 -msgid "Current week" +#: modules/calendar/calendar.php:818 +msgid "Feb" msgstr "" -#: modules/custom-status/custom-status.php:1965 -msgid "Custom Status" +#: modules/calendar/calendar.php:819 +msgid "Mar" msgstr "" -#: modules/custom-status/custom-status.php:1130 -msgid "Custom status doesn't exist." +#: modules/calendar/calendar.php:820 +msgid "Apr" msgstr "" -#: modules/editorial-metadata/editorial-metadata.php:285 -#: modules/calendar/calendar.php:3490 -#: lib/Notifications/Table/Notifications.php:158 -#: modules/notifications-log/library/NotificationsLogTable.php:490 -msgid "Date" +#: modules/calendar/calendar.php:821 +msgid "May" msgstr "" -#: modules/debug/debug.php:68 -msgid "Debug" +#: modules/calendar/calendar.php:822 +msgid "Jun" msgstr "" -#: modules/debug/debug.php:299 -msgid "Debug data" +#: modules/calendar/calendar.php:823 +msgid "Jul" +msgstr "" + +#: modules/calendar/calendar.php:824 +msgid "Aug" msgstr "" #: modules/calendar/calendar.php:825 +msgid "Sep" +msgstr "" + +#: modules/calendar/calendar.php:826 +msgid "Oct" +msgstr "" + +#: modules/calendar/calendar.php:827 +msgid "Nov" +msgstr "" + +#: modules/calendar/calendar.php:828 msgid "Dec" msgstr "" -#: modules/custom-status/custom-status.php:2909 -msgid "Default" +#: modules/calendar/calendar.php:829 +#: modules/calendar/calendar.php:4039 +#: modules/content-overview/content-overview.php:1256 +msgid "All statuses" msgstr "" -#: modules/improved-notifications/improved-notifications.php:229 -msgid "Default notification channels:" +#: modules/calendar/calendar.php:830 +msgid "All categories" msgstr "" -#: 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 -msgid "Default option" +#: modules/calendar/calendar.php:831 +#: modules/calendar/calendar.php:4074 +msgid "All tags" msgstr "" -#: modules/custom-status/custom-status.php:104 -msgid "Default post status has been changed." +#: modules/calendar/calendar.php:832 +#: modules/calendar/calendar.php:4095 +#: modules/content-overview/content-overview.php:1300 +#: modules/content-overview/content-overview.php:1303 +msgid "All authors" msgstr "" -#: modules/calendar/calendar.php:2582 -msgid "Default publish time for items created in the calendar" +#: modules/calendar/calendar.php:833 +#: modules/calendar/calendar.php:4122 +msgid "All types" msgstr "" -#: 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/custom-status/custom-status.php:2926 -#: modules/editorial-comments/editorial-comments.php:643 -#: modules/notifications-log/library/NotificationsLogTable.php:370 -#: modules/notifications-log/library/NotificationsLogTable.php:401 -#: modules/editorial-comments/library/EditorialCommentsTable.php:435 -msgid "Delete" +#: modules/calendar/calendar.php:834 +msgid "%d week" msgstr "" -#: modules/notifications-log/library/NotificationsLogTable.php:402 -msgid "Delete All" +#: modules/calendar/calendar.php:835 +msgid "%d weeks" msgstr "" -#: modules/debug/debug.php:298 -msgid "Delete file" +#: modules/calendar/calendar.php:836 +#: modules/calendar/calendar.php:2142 +msgid "Today" msgstr "" -#: modules/editorial-metadata/editorial-metadata.php:1922 -#: modules/editorial-metadata/editorial-metadata.php:2269 -#: modules/editorial-metadata/editorial-metadata.php:2699 -#: modules/custom-status/custom-status.php:2007 -#: modules/custom-status/custom-status.php:2141 -#: modules/custom-status/custom-status.php:2780 -msgid "Description" +#: modules/calendar/calendar.php:837 +msgid "No terms" msgstr "" -#: lib/Legacy/Util.php:236 -msgid "Detailed documentation is also available on the plugin website." +#: modules/calendar/calendar.php:1351 +msgid "Subscribe in iCal or Google Calendar" msgstr "" -#: modules/custom-status/custom-status.php:1889 -#: modules/calendar/calendar.php:2656 -msgid "Disabled" +#: modules/calendar/calendar.php:1356 +msgid "Start date" msgstr "" -#: modules/settings/settings.php:380 -#, php-format -msgid "" -"Disabled because add_post_type_support('%1$s', '%2$s') is included in a " -"loaded file." +#: modules/calendar/calendar.php:1360 +msgid "Current week" msgstr "" -#: 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 -msgid "Display Label" +#: modules/calendar/calendar.php:1362 +msgid "One month ago" msgstr "" -#: modules/editorial-comments/editorial-comments.php:1266 -msgid "Display Name" +#: modules/calendar/calendar.php:1364 +msgid "Two months ago" msgstr "" -#: modules/settings/views/footer-base.html.php:25 -msgid "Documentation" +#: modules/calendar/calendar.php:1366 +msgid "Three months ago" msgstr "" -#: modules/calendar/calendar.php:1427 -msgid "Download .ics file" +#: modules/calendar/calendar.php:1368 +msgid "Four months ago" msgstr "" -#: common/php/class-module.php:268 modules/custom-status/custom-status.php:881 -#: modules/custom-status/custom-status.php:995 -msgid "Draft" +#: modules/calendar/calendar.php:1370 +msgid "Five months ago" msgstr "" -#: modules/editorial-metadata/editorial-metadata.php:2005 -#: modules/editorial-metadata/editorial-metadata.php:2368 -msgid "Dropdown Option" +#: modules/calendar/calendar.php:1372 +msgid "Six months ago" msgstr "" -#: modules/editorial-metadata/editorial-metadata.php:284 -msgid "Dropdown Select" +#: modules/calendar/calendar.php:1378 +msgid "End date" msgstr "" -#: modules/improved-notifications/improved-notifications.php:221 -msgid "Duplicated notification threshold:" +#: modules/calendar/calendar.php:1383 +msgid "One week" msgstr "" -#: common/php/class-module.php:701 -msgid "E-mails" +#: modules/calendar/calendar.php:1385 +msgid "Two weeks" msgstr "" -#: modules/editorial-metadata/editorial-metadata.php:2817 -#: modules/custom-status/custom-status.php:2922 -#: modules/calendar/calendar.php:1818 modules/calendar/calendar.php:3523 -#: modules/content-overview/content-overview.php:1904 -#: modules/editorial-comments/editorial-comments.php:632 -msgid "Edit" +#: modules/calendar/calendar.php:1387 +msgid "Three weeks" msgstr "" -#: modules/editorial-metadata/editorial-metadata.php:451 -msgid "Edit Editorial Metadata" +#: modules/calendar/calendar.php:1389 +msgid "Four weeks" msgstr "" -#: modules/efmigration/efmigration.php:288 -msgid "" -"Edit Flow should not be used alongside PublishPress Planner. If you want to " -"use PublishPress Planner, please complete Edit Flow data migration and then " -"deactivate Edit Flow." +#: modules/calendar/calendar.php:1395 +msgid "One month" msgstr "" -#: publishpress.php:1239 -msgid "Edit Notification" +#: modules/calendar/calendar.php:1398 +msgid "Two months" msgstr "" -#: modules/notifications/notifications.php:379 -msgid "Edit Notify Email" +#: modules/calendar/calendar.php:1400 +msgid "Three months" msgstr "" -#: modules/notifications/notifications.php:344 -msgid "Edit Notify Role" +#: modules/calendar/calendar.php:1402 +msgid "Four months" msgstr "" -#: modules/notifications/notifications.php:309 -msgid "Edit Notify User" +#: modules/calendar/calendar.php:1404 +msgid "Five months" msgstr "" -#: modules/custom-status/custom-status.php:99 -msgid "Edit Statuses" +#: modules/calendar/calendar.php:1406 +msgid "Six months" msgstr "" -#: modules/calendar/calendar.php:1818 -msgid "Edit this item" +#: modules/calendar/calendar.php:1408 +msgid "Seven months" msgstr "" -#: modules/content-overview/content-overview.php:1900 -msgid "Edit this post" +#: modules/calendar/calendar.php:1410 +msgid "Eight months" msgstr "" -#: modules/notifications/notifications.php:2088 -#: modules/notifications/notifications.php:2145 -#, php-format -msgid "Edit: %s" +#: modules/calendar/calendar.php:1412 +msgid "Nine months" msgstr "" -#: modules/improved-notifications/improved-notifications.php:970 -msgid "Editorial Comment" +#: modules/calendar/calendar.php:1414 +msgid "Ten months" 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 -msgid "Editorial Comments" +#: modules/calendar/calendar.php:1416 +msgid "Eleven months" msgstr "" -#: modules/editorial-metadata/editorial-metadata.php:96 -#: modules/editorial-metadata/editorial-metadata.php:1775 -#: modules/editorial-metadata/editorial-metadata.php:1776 -msgid "Editorial Metadata" +#: modules/calendar/calendar.php:1418 +msgid "Twelve months" msgstr "" -#: views/user_profile_notification_channels.html.php:1 -#: modules/improved-notifications/improved-notifications.php:401 -#: modules/improved-notifications/improved-notifications.php:1145 -msgid "Editorial Notifications" +#: modules/calendar/calendar.php:1430 +msgid "Download .ics file" msgstr "" -#: modules/calendar/calendar.php:1407 -msgid "Eight months" +#: modules/calendar/calendar.php:1437 +msgid "Copy to the clipboard" msgstr "" -#: modules/calendar/calendar.php:1413 -msgid "Eleven months" +#: modules/calendar/calendar.php:1443 +msgid "Click here to subscribe in iCal or Google Calendar" msgstr "" -#: modules/editorial-comments/editorial-comments.php:1269 -#: lib/Notifications/Workflow/Step/Channel/Email.php:31 -msgid "Email" +#: modules/calendar/calendar.php:1474 +#: modules/content-overview/content-overview.php:1076 +msgid "Undo" msgstr "" -#: lib/Notifications/Workflow/Step/Receiver/Follower.php:135 -msgid "email" +#: modules/calendar/calendar.php:1511 +msgid "Initializing the calendar. Please wait..." msgstr "" -#: modules/notifications/notifications.php:1641 -msgid "Email from:" +#: modules/calendar/calendar.php:1515 +msgid "It seems like it is taking too long. Please, try reloading the page again and check the browser console looking for errors." msgstr "" -#: modules/editorial-comments/editorial-comments.php:1232 -msgid "Enable for these post types:" +#: modules/calendar/calendar.php:1802 +#: modules/content-overview/content-overview.php:1797 +msgid "None" msgstr "" -#: modules/calendar/calendar.php:2550 -msgid "Enable subscriptions in iCal or Google Calendar" +#: modules/calendar/calendar.php:1822 +msgid "Edit this item" msgstr "" -#: modules/custom-status/custom-status.php:1890 -#: modules/calendar/calendar.php:2657 -msgid "Enabled" +#: modules/calendar/calendar.php:1822 +#: modules/calendar/calendar.php:3584 +#: modules/content-overview/content-overview.php:1904 +#: modules/editorial-comments/editorial-comments.php:632 +#: modules/editorial-metadata/editorial-metadata.php:2817 +msgid "Edit" msgstr "" -#: modules/modules-settings/modules-settings.php:219 -msgid "Enabled features" +#: modules/calendar/calendar.php:1843 +#: modules/content-overview/content-overview.php:1942 +msgid "Preview “%s”" msgstr "" -#: modules/calendar/calendar.php:1375 -msgid "End date" +#: modules/calendar/calendar.php:1846 +#: modules/calendar/calendar.php:3601 +#: modules/content-overview/content-overview.php:1945 +msgid "Preview" msgstr "" -#: lib/Legacy/Util.php:203 -msgid "Enhance the power of PublishPress Planner with the Pro version:" +#: modules/calendar/calendar.php:1850 +#: modules/content-overview/content-overview.php:1926 +msgid "View “%s”" msgstr "" -#: modules/notifications/notifications.php:636 -msgid "" -"Enter any users, roles, or email address that should receive notifications " -"from workflows." +#: modules/calendar/calendar.php:1856 +#: modules/calendar/calendar.php:3598 +#: modules/content-overview/content-overview.php:1932 +msgid "View" msgstr "" -#: modules/editorial-metadata/editorial-metadata.php:2010 -#: modules/editorial-metadata/editorial-metadata.php:2371 -msgid "" -"Enter the dropdown option value and label. You can move options to change " -"their order." +#: modules/calendar/calendar.php:1866 +msgid "Save “%s”" msgstr "" -#: modules/notifications-log/library/NotificationsLogTable.php:276 -#: modules/notifications-log/library/NotificationsLogTable.php:527 -msgid "Error" +#: modules/calendar/calendar.php:1967 +#: modules/calendar/calendar.php:3562 +#: modules/calendar/calendar.php:3652 +#: modules/content-overview/content-overview.php:629 +#: modules/editorial-comments/library/EditorialCommentsTable.php:229 +msgid "Author" +msgid_plural "Authors" +msgstr[0] "" +msgstr[1] "" + +#: modules/calendar/calendar.php:1975 +#: modules/calendar/calendar.php:3541 +#: modules/content-overview/content-overview.php:628 +msgid "Post Type" msgstr "" -#: modules/editorial-metadata/editorial-metadata.php:1369 -msgid "Error adding term." +#: modules/calendar/calendar.php:2094 +#: modules/content-overview/content-overview.php:1025 +#: modules/content-overview/content-overview.php:1147 +msgid "Reset" msgstr "" -#: modules/editorial-metadata/editorial-metadata.php:1646 -msgid "Error deleting term." +#: modules/calendar/calendar.php:2102 +msgid "Forward 1 week" msgstr "" -#: modules/custom-status/custom-status.php:1719 -msgid "Error updating post status." +#: modules/calendar/calendar.php:2111 +msgid "›" msgstr "" -#: modules/editorial-metadata/editorial-metadata.php:1532 -#: modules/editorial-metadata/editorial-metadata.php:1580 -msgid "Error updating term." +#: modules/calendar/calendar.php:2117 +msgid "Forward %d weeks" msgstr "" -#: modules/custom-status/custom-status.php:1182 -msgid "Error while updating the status" +#: modules/calendar/calendar.php:2128 +msgid "»" msgstr "" -#: modules/async-notifications/async-notifications.php:172 -#, php-format -msgid "Event: %s, Workflow ID: %s, Post ID: %s, User ID: %s" +#: modules/calendar/calendar.php:2136 +msgid "Today is %s" msgstr "" -#: modules/notifications-log/library/NotificationsLogTable.php:271 -#: modules/notifications-log/library/NotificationsLogTable.php:287 -msgid "Failed" +#: modules/calendar/calendar.php:2151 +msgid "Back %d weeks" msgstr "" -#: lib/Legacy/Util.php:210 -msgid "Fast, professional support" +#: modules/calendar/calendar.php:2159 +msgid "«" msgstr "" -#: modules/modules-settings/modules-settings.php:50 -msgid "Features" +#: modules/calendar/calendar.php:2163 +msgid "Back 1 week" msgstr "" -#: modules/calendar/calendar.php:815 -msgid "Feb" +#: modules/calendar/calendar.php:2172 +msgid "‹" msgstr "" -#: modules/modules-settings/modules-settings.php:213 -msgid "Feel free to select only the features you need." +#: modules/calendar/calendar.php:2545 +msgid "Post types to show" msgstr "" -#: modules/improved-notifications/improved-notifications.php:976 -msgid "field" +#: modules/calendar/calendar.php:2553 +msgid "Enable subscriptions in iCal or Google Calendar" msgstr "" -#: modules/calendar/calendar.php:2590 -msgid "Field used for sorting the calendar items in a day cell" +#: modules/calendar/calendar.php:2561 +msgid "Allow public access to subscriptions in iCal or Google Calendar" msgstr "" -#: modules/debug/debug.php:292 -msgid "File info" +#: modules/calendar/calendar.php:2569 +msgid "Statuses to display publish time" msgstr "" -#: modules/content-overview/content-overview.php:1145 -#: modules/notifications-log/library/NotificationsLogTable.php:640 -#: modules/editorial-comments/library/EditorialCommentsTable.php:211 -msgid "Filter" +#: modules/calendar/calendar.php:2577 +msgid "Posts publish time format" msgstr "" -#: modules/notifications/notifications.php:389 -msgid "Filter by notify email" +#: modules/calendar/calendar.php:2585 +msgid "Default publish time for items created in the calendar" msgstr "" -#: modules/notifications/notifications.php:354 -msgid "Filter by notify role" +#: modules/calendar/calendar.php:2593 +msgid "Field used for sorting the calendar items in a day cell" msgstr "" -#: modules/notifications/notifications.php:319 -msgid "Filter by notify user" +#: modules/calendar/calendar.php:2601 +msgid "Max visible posts per date" msgstr "" -#: lib/Notifications/Plugin.php:58 -msgid "Filter the content?" +#: modules/calendar/calendar.php:2609 +msgid "Always show complete post titles" msgstr "" -#: modules/editorial-metadata/editorial-metadata.php:1970 -#: modules/editorial-metadata/editorial-metadata.php:2334 -msgid "" -"Filter the list of users in the editorial meta to users in the selected " -"roles." +#: modules/calendar/calendar.php:2628 +msgid "At least one post type must be selected" msgstr "" -#: modules/editorial-metadata/editorial-metadata.php:209 -msgid "First Draft Date" +#: modules/calendar/calendar.php:2645 +msgid "The number of weeks shown on the calendar can be changed on a user-by-user basis using the calendar's screen options." msgstr "" -#: modules/editorial-comments/editorial-comments.php:1267 -msgid "First Name" +#: modules/calendar/calendar.php:2659 +msgid "Disabled" msgstr "" -#: modules/calendar/calendar.php:1401 -msgid "Five months" +#: modules/calendar/calendar.php:2660 +msgid "Enabled" msgstr "" -#: modules/calendar/calendar.php:1367 -msgid "Five months ago" +#: modules/calendar/calendar.php:2678 +msgid "Regenerate calendar feed secret" msgstr "" -#: modules/improved-notifications/improved-notifications.php:823 -#: modules/notifications-log/library/NotificationsLogTable.php:492 -msgid "For which content?" +#: modules/calendar/calendar.php:2901 +msgid "Publishing Time" msgstr "" -#: modules/improved-notifications/improved-notifications.php:973 -msgid "Format" +#: modules/calendar/calendar.php:2902 +#: modules/calendar/calendar.php:3557 +#: modules/calendar/calendar.php:3637 +msgid "Post Status" msgstr "" -#: modules/calendar/calendar.php:2113 -msgid "Forward %d weeks" +#: modules/calendar/calendar.php:2957 +msgid "All posts" msgstr "" -#: modules/calendar/calendar.php:2098 -msgid "Forward 1 week" +#: modules/calendar/calendar.php:3266 +msgid "Invalid input" msgstr "" -#: modules/calendar/calendar.php:1399 -msgid "Four months" +#: modules/calendar/calendar.php:3272 +msgid "Post not found" msgstr "" -#: modules/calendar/calendar.php:1365 -msgid "Four months ago" +#: modules/calendar/calendar.php:3277 +msgid "No enough permissions" msgstr "" -#: modules/calendar/calendar.php:1386 -msgid "Four weeks" +#: modules/calendar/calendar.php:3286 +msgid "Invalid date" msgstr "" -#: modules/calendar/calendar.php:812 -msgid "Fri" +#: modules/calendar/calendar.php:3572 +msgid "Tag" +msgid_plural "Tags" +msgstr[0] "" +msgstr[1] "" + +#: modules/calendar/calendar.php:3643 +msgid "Publish Time" msgstr "" -#: modules/notifications-log/library/NotificationsLogTable.php:620 -msgid "From date" +#: modules/calendar/calendar.php:3671 +msgid "Tags" msgstr "" -#: modules/editorial-metadata/editorial-metadata.php:2820 -msgid "Hidden metadata can only be viewed on the edit post view." +#: modules/calendar/calendar.php:3780 +msgid "No date supplied." msgstr "" -#. Author URI of the plugin -msgid "https://publishpress.com" +#: modules/calendar/calendar.php:3791 +msgid "The selected post type is not enabled for the calendar." msgstr "" -#. URI of the plugin -msgid "https://publishpress.com/" +#: modules/calendar/calendar.php:3821 +msgid "Invalid Status supplied." msgstr "" -#: modules/calendar/calendar.php:197 -msgid "" -"iCal secret key regenerated. Please inform all users they will need to " -"resubscribe." +#: modules/calendar/calendar.php:3845 +msgid "Invalid Publish Date supplied." msgstr "" -#: modules/custom-status/custom-status.php:2047 -#: modules/custom-status/custom-status.php:2175 -#: modules/custom-status/custom-status.php:2781 -msgid "Icon" +#: modules/calendar/calendar.php:3914 +msgid "Post created successfully" msgstr "" -#: modules/calendar/calendar.php:3485 lib/Notifications/Table/Workflows.php:143 -#: lib/Notifications/Table/Notifications.php:159 -msgid "ID" +#: modules/calendar/calendar.php:3921 +msgid "Post could not be created" msgstr "" -#: modules/custom-status/custom-status.php:188 -msgid "Idea proposed; waiting for acceptance." +#: modules/calendar/calendar.php:4056 +msgid "View all categories" msgstr "" -#: 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/calendar/calendar.php:4147 +msgid "%s week" +msgid_plural "%s weeks" +msgstr[0] "" +msgstr[1] "" + +#: modules/calendar/calendar.php:4270 +msgid "The selected user doesn't have enough permissions to be set as the post author." msgstr "" -#: 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/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 +msgid "Content Overview" msgstr "" -#: modules/editorial-metadata/editorial-metadata.php:2156 -#: modules/editorial-metadata/editorial-metadata.php:2524 -msgid "" -"If enabled, this metadata will be available when adding new posts on the " -"Content Calendar screen." +#: modules/content-overview/content-overview.php:271 +msgid "Screen Layout" msgstr "" -#: modules/settings/settings.php:269 -#, php-format -msgid "If you like %s please leave us a %s rating. Thank you!" +#: modules/content-overview/content-overview.php:298 +msgid "Post types to show:" msgstr "" -#: lib/Legacy/Util.php:225 -msgid "If you need help or have a new feature request, let us know." +#: modules/content-overview/content-overview.php:306 +msgid "Taxonomies to show:" msgstr "" -#: modules/debug/debug.php:304 -msgid "" -"If you see any error or look for information regarding PublishPress, please " -"don't hesitate to contact the support team. E-mail us:" +#: modules/content-overview/content-overview.php:627 +#: modules/notifications-log/library/NotificationsLogTable.php:494 +msgid "Status" msgstr "" -#: modules/custom-status/custom-status.php:205 -msgid "In Progress" +#: modules/content-overview/content-overview.php:630 +msgid "Post Date" msgstr "" -#: modules/editorial-metadata/editorial-metadata.php:1998 -#: modules/editorial-metadata/editorial-metadata.php:2363 -msgid "Indicate the select type." +#: modules/content-overview/content-overview.php:631 +msgid "Last Modified" msgstr "" -#: modules/editorial-metadata/editorial-metadata.php:2307 -msgid "Indicate the type of editorial metadata." +#: modules/content-overview/content-overview.php:689 +msgid "Number of Columns: " msgstr "" -#: modules/calendar/calendar.php:1508 -msgid "Initializing the calendar. Please wait..." +#: modules/content-overview/content-overview.php:983 +msgid "Show content from" msgstr "" -#: modules/theeventscalendar-integration/theeventscalendar-integration.php:53 -msgid "Integrate with the The Events Calendar plugin" +#: modules/content-overview/content-overview.php:1012 +msgctxt "%1$s = start date, %2$s = end date" +msgid " %1$s to %2$s" msgstr "" -#: modules/debug/debug.php:365 -msgid "Invalid action nonce." +#: modules/content-overview/content-overview.php:1022 +msgid "Apply" msgstr "" -#: modules/notifications-log/library/ModuleErrors.php:55 -msgid "Invalid channel for the notification" +#: modules/content-overview/content-overview.php:1028 +#: modules/editorial-comments/editorial-comments.php:578 +#: modules/editorial-metadata/editorial-metadata.php:2220 +#: modules/editorial-comments/lib/editorial-comments.js:350 +msgid "Cancel" 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 -msgid "Invalid comment data" +#: modules/content-overview/content-overview.php:1029 +msgid "Change" msgstr "" -#: modules/calendar/calendar.php:3225 -msgid "Invalid date" +#: modules/content-overview/content-overview.php:1048 +#: modules/content-overview/content-overview.php:1347 +msgid "Search box" msgstr "" -#: modules/calendar/calendar.php:3205 -msgid "Invalid input" +#: modules/content-overview/content-overview.php:1049 +msgid "Search" msgstr "" -#: core/Error.php:80 modules/calendar/calendar.php:3196 -msgid "Invalid nonce" +#: modules/content-overview/content-overview.php:1145 +#: modules/editorial-comments/library/EditorialCommentsTable.php:211 +#: modules/notifications-log/library/NotificationsLogTable.php:640 +msgid "Filter" msgstr "" -#: modules/calendar/calendar.php:3784 -msgid "Invalid Publish Date supplied." +#: modules/content-overview/content-overview.php:1194 +msgid "Print" msgstr "" -#: modules/notifications-log/library/ModuleErrors.php:54 -msgid "Invalid receiver for the notification" +#: modules/content-overview/content-overview.php:1278 +#: modules/content-overview/content-overview.php:1281 +msgid "All %s" msgstr "" -#: modules/calendar/calendar.php:3760 -msgid "Invalid Status supplied." +#: modules/content-overview/content-overview.php:1330 +msgid "All post types" msgstr "" -#: modules/calendar/calendar.php:1512 -msgid "" -"It seems like it is taking too long. Please, try reloading the page again " -"and check the browser console looking for errors." +#: modules/content-overview/content-overview.php:1413 +msgid "to" msgstr "" -#: modules/calendar/calendar.php:814 -msgid "Jan" +#: modules/content-overview/content-overview.php:1505 +msgid "Click to toggle" msgstr "" -#: modules/calendar/calendar.php:820 -msgid "Jul" +#: modules/content-overview/content-overview.php:1564 +msgid "There are no posts in the range or filter specified." msgstr "" -#: modules/calendar/calendar.php:819 -msgid "Jun" +#: modules/content-overview/content-overview.php:1900 +msgid "Edit this post" msgstr "" -#: modules/content-overview/content-overview.php:631 -msgid "Last Modified" +#: modules/content-overview/content-overview.php:1912 +msgid "Move this item to the Trash" msgstr "" -#: modules/editorial-comments/editorial-comments.php:1268 -msgid "Last Name" +#: modules/debug/debug.php:68 +msgid "Debug" msgstr "" -#: modules/calendar/calendar.php:794 -msgid "Loading item..." +#: modules/debug/debug.php:228 +#: modules/debug/debug.php:291 +msgid "PublishPress Debug Log" msgstr "" -#: modules/calendar/calendar.php:793 -#: modules/notifications-log/notifications-log.php:210 -msgid "Loading..." +#: modules/debug/debug.php:292 +msgid "File info" msgstr "" -#: modules/editorial-metadata/editorial-metadata.php:286 -msgid "Location" +#: modules/debug/debug.php:293 +msgid "Path" msgstr "" #: modules/debug/debug.php:294 msgid "Log content" msgstr "" -#: modules/debug/debug.php:300 -msgid "Log File" -msgstr "" - -#: modules/debug/debug.php:303 -msgid "Log file not found." +#: modules/debug/debug.php:295 +msgid "Size" msgstr "" -#: modules/editorial-metadata/editorial-metadata.php:2824 -msgid "Make Hidden" +#: modules/debug/debug.php:296 +msgid "Created on" msgstr "" -#: modules/editorial-metadata/editorial-metadata.php:2835 -msgid "Make Viewable" +#: modules/debug/debug.php:297 +msgid "Modified on" msgstr "" -#: modules/calendar/calendar.php:816 -msgid "Mar" +#: modules/debug/debug.php:298 +msgid "Delete file" msgstr "" -#: modules/calendar/calendar.php:2598 -msgid "Max visible posts per date" +#: modules/debug/debug.php:299 +msgid "Debug data" msgstr "" -#: modules/calendar/calendar.php:818 -msgid "May" +#: modules/debug/debug.php:300 +msgid "Log File" msgstr "" -#: lib/Notifications/Table/Notifications.php:157 -msgid "Message" +#: modules/debug/debug.php:303 +msgid "Log file not found." msgstr "" -#: modules/improved-notifications/improved-notifications.php:982 -msgid "Meta fields" +#: modules/debug/debug.php:304 +msgid "If you see any error or look for information regarding PublishPress, please don't hesitate to contact the support team. E-mail us:" msgstr "" -#: 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 -msgid "Meta Value" +#: modules/debug/debug.php:308 +msgid "Click to delete the log file. Be careful, this operation can not be undone. " msgstr "" -#: modules/editorial-metadata/editorial-metadata.php:506 -msgid "Metadata" +#: modules/debug/debug.php:358 +msgid "Action nonce not found." msgstr "" -#: modules/editorial-metadata/editorial-metadata.php:1461 -msgid "Metadata name conflicts with existing term. Please choose another." +#: modules/debug/debug.php:365 +msgid "Invalid action nonce." msgstr "" -#: modules/editorial-metadata/editorial-metadata.php:114 -msgid "Metadata order updated." +#: 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 +msgid "Editorial Comments" msgstr "" -#: modules/editorial-metadata/editorial-metadata.php:110 -msgid "Metadata term added." +#: modules/editorial-comments/editorial-comments.php:78 +msgid "Choose Post Types" msgstr "" -#: modules/editorial-metadata/editorial-metadata.php:113 -msgid "Metadata term deleted." +#: modules/editorial-comments/editorial-comments.php:83 +msgid "

Editorial comments help you cut down on email overload and keep the conversation close to where it matters: your content. Threaded commenting in the admin, similar to what you find at the end of a blog post, allows writers and editors to privately leave feedback and discuss what needs to be changed before publication.

Anyone with access to view the story in progress will also have the ability to comment on it. If you have notifications enabled, those following the post will receive an email every time a comment is left.

" msgstr "" -#: modules/editorial-metadata/editorial-metadata.php:112 -msgid "Metadata term doesn't exist." +#: modules/editorial-comments/editorial-comments.php:88 +msgid "

For more information:

Editorial Comments Documentation

PublishPress on Github

" msgstr "" -#: modules/editorial-metadata/editorial-metadata.php:111 -msgid "Metadata term updated." +#: modules/editorial-comments/editorial-comments.php:211 +#: modules/editorial-comments/editorial-comments.php:719 +msgid "Remove" msgstr "" -#: modules/editorial-metadata/editorial-metadata.php:2698 -msgid "Metadata Type" +#: modules/editorial-comments/editorial-comments.php:212 +#: modules/editorial-comments/library/EditorialCommentsTable.php:182 +#: modules/notifications-log/notifications-log.php:204 +msgid "All Posts" msgstr "" -#: modules/editorial-metadata/editorial-metadata.php:115 -msgid "Metadata visibility changed." +#: modules/editorial-comments/editorial-comments.php:213 +#: modules/editorial-comments/library/EditorialCommentsTable.php:197 +msgid "All Users" msgstr "" -#: modules/improved-notifications/improved-notifications.php:351 -msgid "minutes" +#. translators: %s: search keywords +#: modules/editorial-comments/editorial-comments.php:276 +msgid "Search results for “%s”" msgstr "" -#: modules/debug/debug.php:297 -msgid "Modified on" +#: modules/editorial-comments/editorial-comments.php:289 +msgid "Search Comments" msgstr "" -#: modules/calendar/calendar.php:808 -msgid "Mon" +#: modules/editorial-comments/editorial-comments.php:532 +msgid "You can add editorial comments to a post once you've saved it for the first time." msgstr "" -#: modules/notifications/notifications.php:392 -msgid "Most Used Notify Email" +#: modules/editorial-comments/editorial-comments.php:552 +#: modules/editorial-comments/editorial-comments.php:556 +msgid "Add an editorial comment" msgstr "" -#: modules/notifications/notifications.php:357 -msgid "Most Used Notify Role" +#: modules/editorial-comments/editorial-comments.php:562 +msgid "Attach file" msgstr "" -#: modules/notifications/notifications.php:322 -msgid "Most Used Notify User" +#: modules/editorial-comments/editorial-comments.php:574 +msgid "Add Comment" msgstr "" -#: modules/content-overview/content-overview.php:1912 -msgid "Move this item to the Trash" +#: modules/editorial-comments/editorial-comments.php:620 +msgid "Reply to this comment" msgstr "" -#: modules/calendar/calendar.php:796 -msgid "Moving the item..." +#: modules/editorial-comments/editorial-comments.php:623 +msgid "Reply" msgstr "" -#: modules/editorial-metadata/editorial-metadata.php:1981 -#: modules/editorial-metadata/editorial-metadata.php:2343 -msgid "Multiple Select" +#: modules/editorial-comments/editorial-comments.php:643 +#: modules/editorial-comments/library/EditorialCommentsTable.php:435 +#: 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/notifications-log/library/NotificationsLogTable.php:370 +#: modules/notifications-log/library/NotificationsLogTable.php:401 +msgid "Delete" msgstr "" -#: modules/improved-notifications/improved-notifications.php:406 -#: modules/improved-notifications/improved-notifications.php:1133 -#: modules/improved-notifications/improved-notifications.php:1150 -msgid "Muted" +#: modules/editorial-comments/editorial-comments.php:689 +msgid "said on %1$s at %2$s" msgstr "" -#: modules/editorial-metadata/editorial-metadata.php:2238 -#: modules/editorial-metadata/editorial-metadata.php:2696 -#: modules/custom-status/custom-status.php:2123 -#: modules/custom-status/custom-status.php:2779 -msgid "Name" +#: modules/editorial-comments/editorial-comments.php:747 +msgid "Nonce check failed. Please ensure you're supposed to be adding editorial comments." msgstr "" -#: modules/editorial-metadata/editorial-metadata.php:1297 -#: modules/editorial-metadata/editorial-metadata.php:1470 -msgid "Name already in use. Please choose another." +#: 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 +msgid "Invalid comment data" msgstr "" -#: modules/editorial-metadata/editorial-metadata.php:1307 -#: modules/editorial-metadata/editorial-metadata.php:1314 -#: modules/editorial-metadata/editorial-metadata.php:1483 -msgid "Name cannot exceed 200 characters. Please try a shorter name." +#: modules/editorial-comments/editorial-comments.php:768 +msgid "Sorry, you don't have the privileges to add editorial comments. Please talk to your Administrator." msgstr "" -#: modules/editorial-metadata/editorial-metadata.php:1290 -msgid "Name conflicts with existing term. Please choose another." +#: modules/editorial-comments/editorial-comments.php:778 +#: modules/editorial-comments/editorial-comments.php:942 +msgid "Please enter a comment." msgstr "" -#: modules/editorial-metadata/editorial-metadata.php:1475 -msgid "" -"Name conflicts with slug for another term. Please choose something else." +#: 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 +msgid "There was a problem of some sort. Try again or contact your administrator." msgstr "" -#: lib/Legacy/Util.php:220 -msgid "Need PublishPress Planner Support?" +#: modules/editorial-comments/editorial-comments.php:885 +#: modules/editorial-comments/editorial-comments.php:1017 +#: modules/editorial-comments/editorial-comments.php:1134 +msgid "Nonce check failed. Please ensure you're supposed to be editing editorial comments." msgstr "" -#: lib/Notifications/Workflow/Step/Event/Filter/Post_Status.php:59 -msgid "New" +#: modules/editorial-comments/editorial-comments.php:911 +#: modules/editorial-comments/editorial-comments.php:1043 +msgid "Sorry, you don't have the privileges to edit editorial comments. Please talk to your Administrator." msgstr "" -#: modules/editorial-metadata/editorial-metadata.php:454 -msgid "New Editorial Metadata" +#: modules/editorial-comments/editorial-comments.php:929 +msgid "Sorry, you don't have the privileges to edit this editorial comment. Please talk to your Administrator." msgstr "" -#: modules/notifications/notifications.php:383 -msgid "New Notify Email" +#: modules/editorial-comments/editorial-comments.php:1059 +#: modules/editorial-comments/editorial-comments.php:1163 +msgid "Sorry, you don't have the privileges to delete this editorial comment. Please talk to your Administrator." msgstr "" -#: modules/notifications/notifications.php:348 -msgid "New Notify Role" +#: modules/editorial-comments/editorial-comments.php:1080 +msgid "Sorry, you can't delete this editorial comment because it has some replies." msgstr "" -#: modules/notifications/notifications.php:313 -msgid "New Notify User" +#: modules/editorial-comments/editorial-comments.php:1181 +msgid "Comment deleted successfully." msgstr "" -#: lib/Notifications/Workflow/Step/Event/Post_StatusTransition.php:118 -#, php-format -msgid "New post status: %s" +#: modules/editorial-comments/editorial-comments.php:1232 +msgid "Enable for these post types:" msgstr "" -#: lib/Notifications/Workflow/Step/Event/Filter/Post_Status.php:36 -msgid "New status" +#: modules/editorial-comments/editorial-comments.php:1239 +msgid "Comment author name field:" msgstr "" #: modules/editorial-comments/editorial-comments.php:1264 msgid "Nickname" msgstr "" -#: modules/calendar/calendar.php:1409 -msgid "Nine months" +#: modules/editorial-comments/editorial-comments.php:1265 +msgid "Username" msgstr "" -#: 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/input-handlers/editorial-metadata-input-checkbox-handler.php:143 -msgid "No" +#: modules/editorial-comments/editorial-comments.php:1266 +msgid "Display Name" msgstr "" -#: modules/notifications/notifications.php:705 -#, php-format -msgid "No active notifications found for this %s." +#: modules/editorial-comments/editorial-comments.php:1267 +msgid "First Name" msgstr "" -#: modules/custom-status/custom-status.php:2803 -msgid "No custom statuses found." +#: modules/editorial-comments/editorial-comments.php:1268 +msgid "Last Name" msgstr "" -#: modules/calendar/calendar.php:3719 -msgid "No date supplied." +#: modules/editorial-comments/editorial-comments.php:1270 +msgid "User Url" msgstr "" #: modules/editorial-comments/library/EditorialCommentsTable.php:159 msgid "No editorial comments." msgstr "" -#: modules/editorial-metadata/editorial-metadata.php:2793 -msgid "No editorial metadata found." -msgstr "" - -#: modules/calendar/calendar.php:3216 -msgid "No enough permissions" +#: modules/editorial-comments/library/EditorialCommentsTable.php:230 +msgid "Comment" msgstr "" -#: publishpress.php:1243 publishpress.php:1244 -msgid "No notification found" +#: modules/editorial-comments/library/EditorialCommentsTable.php:232 +msgid "Post" msgstr "" -#: modules/notifications-log/notifications-log.php:284 -msgid "No notifications found." +#: modules/editorial-comments/library/EditorialCommentsTable.php:234 +msgid "Submitted on" msgstr "" -#: modules/notifications/notifications.php:387 -#: modules/notifications/notifications.php:388 -msgid "No notify emails" +#. translators: 1: Comment date, 2: Comment time. +#: modules/editorial-comments/library/EditorialCommentsTable.php:337 +#: modules/editorial-metadata/input-handlers/editorial-metadata-input-date-handler.php:201 +#: modules/notifications/notifications.php:1892 +msgid "%1$s at %2$s" msgstr "" -#: modules/notifications/notifications.php:352 -#: modules/notifications/notifications.php:353 -msgid "No notify roles" +#: modules/editorial-metadata/editorial-metadata.php:96 +#: modules/editorial-metadata/editorial-metadata.php:1775 +#: modules/editorial-metadata/editorial-metadata.php:1776 +msgid "Editorial Metadata" msgstr "" -#: modules/notifications/notifications.php:317 -#: modules/notifications/notifications.php:318 -msgid "No notify users" +#: modules/editorial-metadata/editorial-metadata.php:110 +msgid "Metadata term added." msgstr "" -#: modules/calendar/calendar.php:834 -msgid "No terms" +#: modules/editorial-metadata/editorial-metadata.php:111 +msgid "Metadata term updated." msgstr "" -#: lib/Notifications/Table/Workflows.php:217 -msgid "No workflows found." +#: modules/editorial-metadata/editorial-metadata.php:112 +msgid "Metadata term doesn't exist." msgstr "" -#: modules/editorial-comments/editorial-comments.php:747 -msgid "" -"Nonce check failed. Please ensure you're supposed to be adding editorial " -"comments." +#: modules/editorial-metadata/editorial-metadata.php:113 +msgid "Metadata term deleted." msgstr "" -#: modules/editorial-comments/editorial-comments.php:885 -#: modules/editorial-comments/editorial-comments.php:1017 -#: modules/editorial-comments/editorial-comments.php:1134 -msgid "" -"Nonce check failed. Please ensure you're supposed to be editing editorial " -"comments." +#: modules/editorial-metadata/editorial-metadata.php:114 +msgid "Metadata order updated." msgstr "" -#: modules/calendar/calendar.php:1798 -#: modules/content-overview/content-overview.php:1797 -msgid "None" +#: modules/editorial-metadata/editorial-metadata.php:115 +msgid "Metadata visibility changed." msgstr "" -#: lib/Notifications/Plugin.php:221 -msgid "Not filtered" +#: 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.

" msgstr "" -#: publishpress.php:1237 publishpress.php:1242 -#: modules/notifications-log/notifications-log.php:209 -msgid "Notification" +#: modules/editorial-metadata/editorial-metadata.php:126 +msgid "

For more information:

Editorial Metadata Documentation

PublishPress on Github

" msgstr "" -#: modules/notifications-log/library/ModuleErrors.php:56 -msgid "Notification log not found" +#: modules/editorial-metadata/editorial-metadata.php:209 +msgid "First Draft Date" msgstr "" -#: publishpress.php:1236 publishpress.php:1241 -#: modules/notifications/notifications.php:72 -#: modules/notifications/notifications.php:600 -msgid "Notifications" +#: modules/editorial-metadata/editorial-metadata.php:212 +msgid "When the first draft needs to be ready." msgstr "" -#: modules/improved-notifications/improved-notifications.php:741 -#: modules/notifications-log/notifications-log.php:75 -#: modules/notifications-log/notifications-log.php:263 -#: modules/notifications-log/notifications-log.php:486 -#: modules/notifications-log/notifications-log.php:487 -msgid "Notifications Log" +#: modules/editorial-metadata/editorial-metadata.php:217 +msgid "Assignment" msgstr "" -#: modules/notifications/notifications.php:370 -#: modules/notifications/notifications.php:373 -#: modules/notifications/notifications.php:390 -#: modules/notifications/notifications.php:391 -msgid "Notify Email" +#: modules/editorial-metadata/editorial-metadata.php:220 +msgid "What the post needs to cover." msgstr "" -#: modules/notifications/notifications.php:372 -msgid "Notify Emails" +#: modules/editorial-metadata/editorial-metadata.php:283 +msgid "Checkbox" msgstr "" -#: modules/notifications/notifications.php:574 -#: modules/notifications/notifications.php:942 -msgid "Notify me" +#: modules/editorial-metadata/editorial-metadata.php:284 +msgid "Dropdown Select" msgstr "" -#: modules/improved-notifications/improved-notifications.php:306 -msgid "Notify on editorial comments" +#: modules/editorial-metadata/editorial-metadata.php:286 +msgid "Location" msgstr "" -#: modules/notifications/notifications.php:335 -#: modules/notifications/notifications.php:338 -#: modules/notifications/notifications.php:355 -#: modules/notifications/notifications.php:356 -msgid "Notify Role" +#: modules/editorial-metadata/editorial-metadata.php:287 +msgid "Number" msgstr "" -#: modules/notifications/notifications.php:337 -msgid "Notify Roles" +#: modules/editorial-metadata/editorial-metadata.php:288 +msgid "Paragraph" msgstr "" -#: modules/notifications/notifications.php:300 -#: modules/notifications/notifications.php:303 -#: modules/notifications/notifications.php:320 -#: modules/notifications/notifications.php:321 -msgid "Notify User" +#: modules/editorial-metadata/editorial-metadata.php:289 +msgid "Text" msgstr "" -#: modules/notifications/notifications.php:302 -msgid "Notify Users" +#: modules/editorial-metadata/editorial-metadata.php:290 +msgid "User" msgstr "" -#: modules/improved-notifications/improved-notifications.php:272 -msgid "Notify when content is published" +#: modules/editorial-metadata/editorial-metadata.php:367 +msgid "Are you sure you want to delete this term? Any metadata for this term will remain but will not be visible unless this term is re-added." msgstr "" -#: modules/calendar/calendar.php:824 -msgid "Nov" +#: modules/editorial-metadata/editorial-metadata.php:446 +msgctxt "taxonomy general name" +msgid "Metadata" msgstr "" -#: modules/editorial-metadata/editorial-metadata.php:287 -msgid "Number" +#: modules/editorial-metadata/editorial-metadata.php:447 +msgctxt "taxonomy singular name" +msgid "Metadata" msgstr "" -#: modules/content-overview/content-overview.php:689 -msgid "Number of Columns: " +#: modules/editorial-metadata/editorial-metadata.php:448 +msgid "Search Editorial Metadata" msgstr "" -#: modules/calendar/calendar.php:823 -msgid "Oct" +#: modules/editorial-metadata/editorial-metadata.php:449 +msgid "Popular Editorial Metadata" msgstr "" -#: lib/Notifications/Workflow/Step/Event/Post_StatusTransition.php:114 -#, php-format -msgid "Old post status: %s" +#: modules/editorial-metadata/editorial-metadata.php:450 +msgid "All Editorial Metadata" msgstr "" -#: modules/improved-notifications/improved-notifications.php:977 -msgid "" -"On each shortcode, you can select one or more fields. If more than one, they " -"will be displayed separated by \", \"." +#: modules/editorial-metadata/editorial-metadata.php:451 +msgid "Edit Editorial Metadata" msgstr "" -#: modules/calendar/calendar.php:1392 -msgid "One month" +#: modules/editorial-metadata/editorial-metadata.php:452 +msgid "Update Editorial Metadata" msgstr "" -#: modules/calendar/calendar.php:1359 -msgid "One month ago" +#: modules/editorial-metadata/editorial-metadata.php:453 +msgid "Add New Editorial Metadata" msgstr "" -#: modules/calendar/calendar.php:1380 -msgid "One week" +#: modules/editorial-metadata/editorial-metadata.php:454 +msgid "New Editorial Metadata" msgstr "" -#: modules/custom-status/custom-status.php:2105 -msgid "Options" +#: modules/editorial-metadata/editorial-metadata.php:506 +msgid "Metadata" msgstr "" -#: modules/editorial-metadata/editorial-metadata.php:120 -#: modules/custom-status/custom-status.php:112 -#: modules/calendar/calendar.php:205 -#: modules/editorial-comments/editorial-comments.php:82 -#: modules/notifications/notifications.php:93 -msgid "Overview" +#: modules/editorial-metadata/editorial-metadata.php:1268 +#: modules/editorial-metadata/editorial-metadata.php:1438 +msgid "All options value and labels are required." msgstr "" -#: modules/editorial-metadata/editorial-metadata.php:288 -msgid "Paragraph" +#: modules/editorial-metadata/editorial-metadata.php:1277 +msgid "Please enter a name for the editorial metadata." msgstr "" -#: modules/notifications/notifications.php:377 -msgid "Parent Notify Email" +#: modules/editorial-metadata/editorial-metadata.php:1284 +msgid "Please enter a slug for the editorial metadata." msgstr "" -#: modules/notifications/notifications.php:378 -msgid "Parent Notify Email:" +#: modules/editorial-metadata/editorial-metadata.php:1290 +msgid "Name conflicts with existing term. Please choose another." msgstr "" -#: modules/notifications/notifications.php:342 -msgid "Parent Notify Role" +#: modules/editorial-metadata/editorial-metadata.php:1297 +#: modules/editorial-metadata/editorial-metadata.php:1470 +msgid "Name already in use. Please choose another." msgstr "" -#: modules/notifications/notifications.php:343 -msgid "Parent Notify Role:" +#: modules/editorial-metadata/editorial-metadata.php:1301 +msgid "Slug already in use. Please choose another." msgstr "" -#: modules/notifications/notifications.php:307 -msgid "Parent Notify User" +#: modules/editorial-metadata/editorial-metadata.php:1307 +#: modules/editorial-metadata/editorial-metadata.php:1314 +#: modules/editorial-metadata/editorial-metadata.php:1483 +msgid "Name cannot exceed 200 characters. Please try a shorter name." msgstr "" -#: modules/notifications/notifications.php:308 -msgid "Parent Notify User:" +#: modules/editorial-metadata/editorial-metadata.php:1324 +msgid "Please select a valid metadata type." msgstr "" -#: modules/debug/debug.php:293 -msgid "Path" +#: modules/editorial-metadata/editorial-metadata.php:1369 +msgid "Error adding term." msgstr "" -#: common/php/class-module.php:271 -msgid "Pending Review" +#: modules/editorial-metadata/editorial-metadata.php:1447 +msgid "Please enter a name for the editorial metadata" msgstr "" -#: modules/custom-status/custom-status.php:900 -msgid "Pending review" +#: modules/editorial-metadata/editorial-metadata.php:1452 +msgid "Please enter a valid, non-numeric name for the editorial metadata." msgstr "" -#: modules/custom-status/custom-status.php:185 -msgid "Pitch" +#: modules/editorial-metadata/editorial-metadata.php:1461 +msgid "Metadata name conflicts with existing term. Please choose another." msgstr "" -#: publishpress.php:575 -msgid "Planner" +#: modules/editorial-metadata/editorial-metadata.php:1475 +msgid "Name conflicts with slug for another term. Please choose something else." msgstr "" -#: publishpress.php:659 -msgid "Please correct your form errors below and try again." +#: modules/editorial-metadata/editorial-metadata.php:1532 +#: modules/editorial-metadata/editorial-metadata.php:1580 +msgid "Error updating term." msgstr "" -#: modules/editorial-comments/editorial-comments.php:778 -#: modules/editorial-comments/editorial-comments.php:942 -msgid "Please enter a comment." +#: modules/editorial-metadata/editorial-metadata.php:1605 +msgid "Terms not set." msgstr "" -#: modules/editorial-metadata/editorial-metadata.php:1447 -msgid "Please enter a name for the editorial metadata" +#: modules/editorial-metadata/editorial-metadata.php:1646 +msgid "Error deleting term." msgstr "" -#: modules/editorial-metadata/editorial-metadata.php:1277 -msgid "Please enter a name for the editorial metadata." +#: modules/editorial-metadata/editorial-metadata.php:1693 +msgid "Register metadata for these post types:" msgstr "" -#: modules/custom-status/custom-status.php:1533 -#: modules/custom-status/custom-status.php:1643 -msgid "Please enter a name for the status" +#: modules/editorial-metadata/editorial-metadata.php:1799 +msgid "Add New" msgstr "" -#: modules/editorial-metadata/editorial-metadata.php:1284 -msgid "Please enter a slug for the editorial metadata." +#: modules/editorial-metadata/editorial-metadata.php:1904 +#: modules/editorial-metadata/editorial-metadata.php:2247 +msgid "The name is for labeling the metadata field." msgstr "" -#: modules/editorial-metadata/editorial-metadata.php:1452 -msgid "Please enter a valid, non-numeric name for the editorial metadata." +#: modules/editorial-metadata/editorial-metadata.php:1909 +#: modules/editorial-metadata/editorial-metadata.php:2252 +msgid "Slug" msgstr "" -#: modules/custom-status/custom-status.php:1537 -#: modules/custom-status/custom-status.php:1647 -msgid "Please enter a valid, non-numeric name for the status." +#: modules/editorial-metadata/editorial-metadata.php:1914 +msgid "The slug cannot be changed once the term has been created." msgstr "" -#: modules/custom-status/custom-status.php:2222 -msgid "" -"Please note that checking a box will apply all statuses to that post type." +#: modules/editorial-metadata/editorial-metadata.php:1922 +#: modules/editorial-metadata/editorial-metadata.php:2269 +#: modules/editorial-metadata/editorial-metadata.php:2699 +msgid "Description" msgstr "" -#: modules/editorial-metadata/editorial-metadata.php:1324 -msgid "Please select a valid metadata type." +#: modules/editorial-metadata/editorial-metadata.php:1930 +#: modules/editorial-metadata/editorial-metadata.php:2278 +msgid "The description can be used to communicate with your team about what the metadata is for." msgstr "" -#: lib/Notifications/Plugin.php:188 -msgid "Please select at least one event" +#: modules/editorial-metadata/editorial-metadata.php:1939 +#: modules/editorial-metadata/editorial-metadata.php:2286 +msgid "Type" msgstr "" -#: modules/calendar/calendar.php:806 -msgid "Please, wait! Loading the form fields..." +#: modules/editorial-metadata/editorial-metadata.php:1944 +msgid "The metadata type cannot be changed once created." msgstr "" -#: modules/editorial-metadata/editorial-metadata.php:449 -msgid "Popular Editorial Metadata" +#: modules/editorial-metadata/editorial-metadata.php:1950 +#: modules/editorial-metadata/editorial-metadata.php:2312 +msgid "User role" msgstr "" -#: modules/notifications/notifications.php:375 -msgid "Popular Notify Emails" +#: modules/editorial-metadata/editorial-metadata.php:1958 +#: modules/editorial-metadata/editorial-metadata.php:2320 +msgid "Select roles..." msgstr "" -#: modules/notifications/notifications.php:340 -msgid "Popular Notify Roles" +#: modules/editorial-metadata/editorial-metadata.php:1970 +#: modules/editorial-metadata/editorial-metadata.php:2334 +msgid "Filter the list of users in the editorial meta to users in the selected roles." msgstr "" -#: modules/notifications/notifications.php:305 -msgid "Popular Notify Users" +#: modules/editorial-metadata/editorial-metadata.php:1976 +#: modules/editorial-metadata/editorial-metadata.php:2339 +msgid "Select Type" msgstr "" -#: modules/editorial-metadata/editorial-metadata.php:2695 -#: modules/custom-status/custom-status.php:2778 -msgid "Position" +#: modules/editorial-metadata/editorial-metadata.php:1980 +#: modules/editorial-metadata/editorial-metadata.php:2342 +msgid "Single Select" msgstr "" -#: modules/editorial-comments/library/EditorialCommentsTable.php:232 -msgid "Post" +#: modules/editorial-metadata/editorial-metadata.php:1981 +#: modules/editorial-metadata/editorial-metadata.php:2343 +msgid "Multiple Select" msgstr "" -#: modules/calendar/calendar.php:3860 -msgid "Post could not be created" +#: modules/editorial-metadata/editorial-metadata.php:1998 +#: modules/editorial-metadata/editorial-metadata.php:2363 +msgid "Indicate the select type." msgstr "" -#: modules/calendar/calendar.php:3853 -msgid "Post created successfully" +#: modules/editorial-metadata/editorial-metadata.php:2005 +#: modules/editorial-metadata/editorial-metadata.php:2368 +msgid "Dropdown Option" msgstr "" -#: modules/content-overview/content-overview.php:630 -msgid "Post Date" +#: modules/editorial-metadata/editorial-metadata.php:2010 +#: modules/editorial-metadata/editorial-metadata.php:2371 +msgid "Enter the dropdown option value and label. You can move options to change their order." msgstr "" -#: modules/calendar/calendar.php:188 -msgid "Post date updated." +#: 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 +msgid "Meta Value" msgstr "" -#: publishpress.php:665 -msgid "Post does not exist" +#: 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 +msgid "Display Label" msgstr "" -#: modules/notifications-log/library/NotificationsLogTable.php:154 -msgid "Post ID: %d" +#: 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 +msgid "Default option" msgstr "" -#: modules/custom-status/custom-status.php:198 -msgid "Post idea assigned to writer." +#: modules/editorial-metadata/editorial-metadata.php:2085 +#: modules/editorial-metadata/editorial-metadata.php:2446 +msgid "Add Another Option" msgstr "" -#: modules/calendar/calendar.php:3211 -msgid "Post not found" +#: modules/editorial-metadata/editorial-metadata.php:2093 +#: modules/editorial-metadata/editorial-metadata.php:2453 +#: modules/editorial-metadata/editorial-metadata.php:2700 +msgid "Viewable" msgstr "" -#: modules/calendar/calendar.php:2841 modules/calendar/calendar.php:3496 -#: modules/calendar/calendar.php:3576 -msgid "Post Status" +#: 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/input-handlers/editorial-metadata-input-checkbox-handler.php:143 +msgid "No" msgstr "" -#: modules/custom-status/custom-status.php:101 -msgid "Post status created." +#: 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/input-handlers/editorial-metadata-input-checkbox-handler.php:142 +msgid "Yes" msgstr "" -#: modules/custom-status/custom-status.php:106 -msgid "Post status deleted." +#: 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 "" -#: modules/custom-status/custom-status.php:103 -msgid "Post status doesn't exist." +#: modules/editorial-metadata/editorial-metadata.php:2117 +#: modules/editorial-metadata/editorial-metadata.php:2480 +msgid "Show as Content Overview filters" msgstr "" -#: modules/custom-status/custom-status.php:102 -#: modules/custom-status/custom-status.php:105 -msgid "Post status updated." +#: 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 "" -#: modules/calendar/calendar.php:1971 modules/calendar/calendar.php:3480 -#: modules/content-overview/content-overview.php:628 -msgid "Post Type" +#: modules/editorial-metadata/editorial-metadata.php:2141 +#: modules/editorial-metadata/editorial-metadata.php:2506 +msgid "Show on Content Calendar form" msgstr "" -#: lib/Notifications/Workflow/Step/Event_Content/Post_Type.php:24 -msgid "Post type" +#: modules/editorial-metadata/editorial-metadata.php:2156 +#: modules/editorial-metadata/editorial-metadata.php:2524 +msgid "If enabled, this metadata will be available when adding new posts on the Content Calendar screen." msgstr "" -#: modules/calendar/calendar.php:804 -msgid "Post type not found" +#: modules/editorial-metadata/editorial-metadata.php:2165 +#: modules/editorial-metadata/editorial-metadata.php:2532 +msgid "Add to post types" msgstr "" -#: modules/calendar/calendar.php:805 -msgid "Post type:" +#: modules/editorial-metadata/editorial-metadata.php:2170 +#: modules/editorial-metadata/editorial-metadata.php:2536 +msgid "This metadata will be available for these post types." msgstr "" -#: modules/notifications-log/library/NotificationsLogTable.php:151 -#, php-format -msgid "Post type: %s" +#: modules/editorial-metadata/editorial-metadata.php:2189 +#: modules/editorial-metadata/editorial-metadata.php:2555 +msgid "Show on Post Types screen" msgstr "" -#: modules/editorial-metadata/editorial-metadata.php:2697 -#: lib/Notifications/Workflow/Step/Event_Content/Filter/Post_Type.php:34 -msgid "Post Types" +#: modules/editorial-metadata/editorial-metadata.php:2194 +#: modules/editorial-metadata/editorial-metadata.php:2559 +msgid "This metadata will be viewable on the overview screens for these post types." msgstr "" -#: modules/calendar/calendar.php:2542 -msgid "Post types to show" +#: modules/editorial-metadata/editorial-metadata.php:2217 +msgid "Update Metadata Term" msgstr "" -#: modules/content-overview/content-overview.php:298 -msgid "Post types to show:" +#: modules/editorial-metadata/editorial-metadata.php:2238 +#: modules/editorial-metadata/editorial-metadata.php:2696 +msgid "Name" msgstr "" -#: modules/calendar/calendar.php:2574 -msgid "Posts publish time format" +#: modules/editorial-metadata/editorial-metadata.php:2261 +msgid "The \"slug\" is the URL-friendly version of the name. It is usually all lowercase and contains only letters, numbers, and hyphens." msgstr "" -#: modules/calendar/calendar.php:1842 modules/calendar/calendar.php:3540 -#: modules/content-overview/content-overview.php:1945 -msgid "Preview" +#: modules/editorial-metadata/editorial-metadata.php:2307 +msgid "Indicate the type of editorial metadata." msgstr "" -#: modules/calendar/calendar.php:1839 -#: modules/content-overview/content-overview.php:1942 -#, php-format -msgid "Preview “%s”" +#: modules/editorial-metadata/editorial-metadata.php:2581 +msgid "Add New Metadata Term" msgstr "" -#: lib/Notifications/Workflow/Step/Event/Filter/Post_Status.php:35 -msgid "Previous status" +#: modules/editorial-metadata/editorial-metadata.php:2695 +msgid "Position" msgstr "" -#: modules/content-overview/content-overview.php:1194 -msgid "Print" +#: modules/editorial-metadata/editorial-metadata.php:2698 +msgid "Metadata Type" msgstr "" -#: common/php/class-module.php:270 -msgid "Private" +#: modules/editorial-metadata/editorial-metadata.php:2793 +msgid "No editorial metadata found." msgstr "" -#: modules/custom-status/custom-status.php:938 -msgid "Privately Published" +#: modules/editorial-metadata/editorial-metadata.php:2820 +msgid "Hidden metadata can only be viewed on the edit post view." msgstr "" -#: modules/calendar/calendar.php:3582 -msgid "Publish Time" +#: modules/editorial-metadata/editorial-metadata.php:2824 +msgid "Make Hidden" msgstr "" -#: common/php/class-module.php:267 modules/custom-status/custom-status.php:957 -#: modules/calendar/calendar.php:1984 -msgid "Published" +#: modules/editorial-metadata/editorial-metadata.php:2835 +msgid "Make Viewable" msgstr "" -#: modules/calendar/calendar.php:2840 -msgid "Publishing Time" +#: 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." msgstr "" -#. Author of the plugin -#: modules/settings/settings.php:61 modules/calendar/calendar.php:1346 -msgid "PublishPress" +#: modules/editorial-metadata/input-handlers/editorial-metadata-input-location-handler.php:82 +msgid "View “%s” on Google Maps" msgstr "" -#: modules/debug/debug.php:228 modules/debug/debug.php:291 -msgid "PublishPress Debug Log" +#: modules/efmigration/efmigration.php:288 +msgid "Edit Flow should not be used alongside PublishPress Planner. If you want to use PublishPress Planner, please complete Edit Flow data migration and then deactivate Edit Flow." msgstr "" -#. Name of the plugin -#: modules/settings/settings.php:266 -msgid "PublishPress Planner" +#: modules/improved-notifications/improved-notifications.php:94 +msgid "Advanced Notifications" msgstr "" -#. Description of the plugin -msgid "" -"PublishPress Planner helps you plan and publish content with WordPress. " -"Features include a content calendar, notifications, and custom statuses." +#: modules/improved-notifications/improved-notifications.php:221 +msgid "Duplicated notification threshold:" msgstr "" -#: publishpress.php:1283 -msgid "" -"PublishPress Planner tried to load multiple times. Please, deactivate and " -"remove other instances of PublishPress, specially if you are using " -"PublishPress Pro." +#: modules/improved-notifications/improved-notifications.php:229 +msgid "Default notification channels:" msgstr "" -#: modules/settings/settings.php:141 -msgid "PublishPress Settings" +#: modules/improved-notifications/improved-notifications.php:272 +msgid "Notify when content is published" msgstr "" -#: modules/improved-notifications/improved-notifications.php:974 -msgid "Receiver" +#: modules/improved-notifications/improved-notifications.php:306 +msgid "Notify on editorial comments" msgstr "" -#: modules/calendar/calendar.php:2675 -msgid "Regenerate calendar feed secret" +#: modules/improved-notifications/improved-notifications.php:351 +msgid "minutes" msgstr "" -#: modules/editorial-metadata/editorial-metadata.php:1693 -msgid "Register metadata for these post types:" +#: modules/improved-notifications/improved-notifications.php:355 +msgid "This will prevent too many notifications being sent for the same or similar events. Set this to a higher number if you are receiving duplicate emails." msgstr "" -#: modules/editorial-comments/editorial-comments.php:211 -#: modules/editorial-comments/editorial-comments.php:719 -msgid "Remove" +#: modules/improved-notifications/improved-notifications.php:401 +#: modules/improved-notifications/improved-notifications.php:1147 +#: views/user_profile_notification_channels.html.php:1 +msgid "Editorial Notifications" msgstr "" -#: lib/Legacy/Util.php:209 -msgid "Remove PublishPress ads and branding" +#: modules/improved-notifications/improved-notifications.php:402 +#: modules/improved-notifications/improved-notifications.php:1148 +#: views/user_profile_notification_channels.html.php:6 +msgid "Choose the channels where each workflow will send notifications to:" msgstr "" -#: modules/editorial-comments/editorial-comments.php:623 -msgid "Reply" +#: modules/improved-notifications/improved-notifications.php:406 +#: modules/improved-notifications/improved-notifications.php:1135 +#: modules/improved-notifications/improved-notifications.php:1152 +msgid "Muted" msgstr "" -#: modules/editorial-comments/editorial-comments.php:620 -msgid "Reply to this comment" +#: modules/improved-notifications/improved-notifications.php:407 +#: modules/improved-notifications/improved-notifications.php:1153 +#: views/user_profile_notification_channels.html.php:14 +msgid "Workflows" msgstr "" -#: modules/notifications/notifications.php:2138 -#, php-format -msgid "Reply: %s" +#: modules/improved-notifications/improved-notifications.php:408 +#: modules/improved-notifications/improved-notifications.php:1154 +#: views/user_profile_notification_channels.html.php:15 +msgid "Channels" msgstr "" -#: lib/Legacy/Util.php:227 -msgid "Request Support" +#: modules/improved-notifications/improved-notifications.php:741 +#: modules/notifications-log/notifications-log.php:75 +#: modules/notifications-log/notifications-log.php:263 +#: modules/notifications-log/notifications-log.php:489 +#: modules/notifications-log/notifications-log.php:490 +msgid "Notifications Log" msgstr "" -#: modules/notifications-log/library/NotificationsLogTable.php:355 -#: modules/notifications-log/library/NotificationsLogTable.php:400 -msgid "Reschedule" +#: modules/improved-notifications/improved-notifications.php:775 +msgid "Workflow Settings" msgstr "" -#: modules/calendar/calendar.php:2090 -#: modules/content-overview/content-overview.php:1025 -#: modules/content-overview/content-overview.php:1147 -msgid "Reset" +#: modules/improved-notifications/improved-notifications.php:823 +#: modules/notifications-log/library/NotificationsLogTable.php:492 +msgid "For which content?" msgstr "" -#: modules/custom-status/custom-status.php:1240 -msgid "Restricted status " +#: modules/improved-notifications/improved-notifications.php:843 +msgid "What to say?" msgstr "" -#: modules/reviews/reviews.php:66 -msgid "Reviews" +#: modules/improved-notifications/improved-notifications.php:963 +msgid "Select at least one option for each section." msgstr "" -#: common/php/class-module.php:683 -msgid "Role" +#: modules/improved-notifications/improved-notifications.php:967 +msgid "You can add dynamic information to the Subject or Body text using the following shortcodes:" msgstr "" -#: lib/Notifications/Workflow/Step/Receiver/Role.php:147 -#: lib/Notifications/Workflow/Step/Receiver/Follower.php:100 -#, php-format -msgid "role:%s" +#: modules/improved-notifications/improved-notifications.php:972 +msgid "Editorial Comment" msgstr "" -#: common/php/class-module.php:680 -#: lib/Notifications/Workflow/Step/Receiver/Role.php:31 -msgid "Roles" +#: modules/improved-notifications/improved-notifications.php:973 +msgid "User making changes or comments" msgstr "" -#: modules/calendar/calendar.php:813 -msgid "Sat" +#: modules/improved-notifications/improved-notifications.php:974 +msgid "Workflow" msgstr "" -#: modules/calendar/calendar.php:800 modules/calendar/calendar.php:1868 -msgid "Save" +#: modules/improved-notifications/improved-notifications.php:975 +msgid "Format" msgstr "" -#: modules/calendar/calendar.php:1862 -#, php-format -msgid "Save “%s”" +#: modules/improved-notifications/improved-notifications.php:976 +msgid "Receiver" msgstr "" -#: modules/calendar/calendar.php:802 -msgid "Save and edit" +#: modules/improved-notifications/improved-notifications.php:977 +msgid "shortcode" msgstr "" -#: modules/calendar/calendar.php:801 -msgid "Saving..." +#: modules/improved-notifications/improved-notifications.php:978 +msgid "field" msgstr "" -#: common/php/class-module.php:269 modules/custom-status/custom-status.php:919 -#: modules/calendar/calendar.php:1979 -#: modules/notifications-log/library/NotificationsLogTable.php:523 -msgid "Scheduled" +#: modules/improved-notifications/improved-notifications.php:979 +msgid "On each shortcode, you can select one or more fields. If more than one, they will be displayed separated by \", \"." msgstr "" -#: modules/notifications-log/library/NotificationsLogTable.php:227 -msgid "Scheduled for %d receivers. Click here to display them." +#: modules/improved-notifications/improved-notifications.php:983 +msgid "Available fields" msgstr "" -#: modules/content-overview/content-overview.php:271 -msgid "Screen Layout" +#: modules/improved-notifications/improved-notifications.php:984 +msgid "Meta fields" msgstr "" -#: modules/content-overview/content-overview.php:1049 -msgid "Search" +#: modules/improved-notifications/improved-notifications.php:985 +msgid "Click here to read more about shortcode options..." msgstr "" -#: modules/content-overview/content-overview.php:1048 -#: modules/content-overview/content-overview.php:1347 -msgid "Search box" +#: modules/modules-settings/modules-settings.php:50 +msgid "Features" msgstr "" -#: modules/editorial-comments/editorial-comments.php:289 -msgid "Search Comments" +#: modules/modules-settings/modules-settings.php:213 +msgid "Feel free to select only the features you need." msgstr "" -#: modules/editorial-metadata/editorial-metadata.php:448 -msgid "Search Editorial Metadata" +#: modules/modules-settings/modules-settings.php:219 +msgid "Enabled features" msgstr "" -#: publishpress.php:1240 -msgid "Search Notifications" +#: modules/modules-settings/modules-settings.php:241 +msgid "Basic Notifications" msgstr "" -#: modules/notifications/notifications.php:374 -msgid "Search Notify Emails" +#: modules/modules-settings/modules-settings.php:260 +msgid "For custom post statuses, activate the %1$sPublishPress Statuses%2$s plugin. %3$sLearn more...%4$s" msgstr "" -#: modules/notifications/notifications.php:339 -msgid "Search Notify Roles" +#: modules/modules-settings/modules-settings.php:268 +msgid "For custom post statuses, install the %1$sPublishPress Statuses%2$s plugin. %3$sLearn more...%4$s" msgstr "" -#: modules/notifications/notifications.php:304 -msgid "Search Notify Users" +#: modules/notifications-log/library/ModuleErrors.php:54 +msgid "Invalid receiver for the notification" msgstr "" -#. %s: search keywords -#: modules/editorial-comments/editorial-comments.php:276 -#, php-format -msgid "Search results for “%s”" +#: modules/notifications-log/library/ModuleErrors.php:55 +msgid "Invalid channel for the notification" msgstr "" -#: modules/improved-notifications/improved-notifications.php:961 -msgid "Select at least one option for each section." +#: modules/notifications-log/library/ModuleErrors.php:56 +msgid "Notification log not found" msgstr "" -#: modules/custom-status/custom-status.php:2061 -#: modules/custom-status/custom-status.php:2190 -msgid "Select Icon" +#: modules/notifications-log/library/NotificationsLogModel.php:264 +msgid "The parent log was deleted or probably rescheduled" msgstr "" -#: modules/editorial-metadata/editorial-metadata.php:1958 -#: modules/editorial-metadata/editorial-metadata.php:2320 -msgid "Select roles..." +#: modules/notifications-log/library/NotificationsLogTable.php:110 +msgid "Workflow: %s" msgstr "" -#: modules/editorial-metadata/editorial-metadata.php:1976 -#: modules/editorial-metadata/editorial-metadata.php:2339 -msgid "Select Type" +#: modules/notifications-log/library/NotificationsLogTable.php:122 +msgid "User: %s (%d)" msgstr "" -#: lib/Legacy/Util.php:207 -msgid "Send reminder notifications" +#: modules/notifications-log/library/NotificationsLogTable.php:151 +msgid "Post type: %s" msgstr "" -#: modules/notifications-log/library/NotificationsLogTable.php:282 -msgid "Sent" +#: modules/notifications-log/library/NotificationsLogTable.php:154 +msgid "Post ID: %d" msgstr "" -#: modules/calendar/calendar.php:822 -msgid "Sep" +#: modules/notifications-log/library/NotificationsLogTable.php:157 +msgid "Blog ID: %d" msgstr "" -#: modules/notifications/notifications.php:384 -msgid "Separate notify emails with commas" +#: modules/notifications-log/library/NotificationsLogTable.php:227 +msgid "Scheduled for %d receivers. Click here to display them." msgstr "" -#: modules/notifications/notifications.php:349 -msgid "Separate notify roles with commas" +#: modules/notifications-log/library/NotificationsLogTable.php:255 +msgid " Scheduled, but late" msgstr "" -#: modules/notifications/notifications.php:314 -msgid "Separate notify users with commas" +#: modules/notifications-log/library/NotificationsLogTable.php:257 +msgid " Scheduled" msgstr "" -#: modules/settings/settings.php:142 -msgid "Settings" +#: modules/notifications-log/library/NotificationsLogTable.php:271 +#: modules/notifications-log/library/NotificationsLogTable.php:287 +msgid "Failed" msgstr "" -#: modules/settings/settings.php:124 -msgid "settings" +#: modules/notifications-log/library/NotificationsLogTable.php:276 +#: modules/notifications-log/library/NotificationsLogTable.php:527 +msgid "Error" msgstr "" -#: modules/calendar/calendar.php:1405 -msgid "Seven months" +#: modules/notifications-log/library/NotificationsLogTable.php:277 +msgid "The notification was set as \"Scheduled\" but the cron task is not found" msgstr "" -#: modules/improved-notifications/improved-notifications.php:975 -msgid "shortcode" +#: modules/notifications-log/library/NotificationsLogTable.php:282 +msgid "Sent" msgstr "" -#: modules/editorial-metadata/editorial-metadata.php:2117 -#: modules/editorial-metadata/editorial-metadata.php:2480 -msgid "Show as Content Overview filters" +#: modules/notifications-log/library/NotificationsLogTable.php:285 +#: modules/notifications-log/library/NotificationsLogTable.php:519 +msgid "Skipped" msgstr "" -#: modules/content-overview/content-overview.php:983 -msgid "Show content from" +#: modules/notifications-log/library/NotificationsLogTable.php:298 +msgid "asynchronous" msgstr "" -#: modules/editorial-metadata/editorial-metadata.php:2141 -#: modules/editorial-metadata/editorial-metadata.php:2506 -msgid "Show on Content Calendar form" +#: modules/notifications-log/library/NotificationsLogTable.php:298 +msgid "synchronous" msgstr "" -#: modules/editorial-metadata/editorial-metadata.php:2189 -#: modules/editorial-metadata/editorial-metadata.php:2555 -msgid "Show on Post Types screen" +#: modules/notifications-log/library/NotificationsLogTable.php:355 +#: modules/notifications-log/library/NotificationsLogTable.php:400 +msgid "Reschedule" msgstr "" -#: modules/notifications/notifications.php:1633 -msgid "" -"Show the \"Notify me\" and \"Stop notifying me\" links for these post types:" +#: modules/notifications-log/library/NotificationsLogTable.php:377 +msgid "Blog: " msgstr "" -#: modules/custom-status/custom-status.php:1863 -msgid "Show the status dropdown menu on the post editing screen:" +#: modules/notifications-log/library/NotificationsLogTable.php:402 +msgid "Delete All" msgstr "" -#: modules/editorial-metadata/editorial-metadata.php:1980 -#: modules/editorial-metadata/editorial-metadata.php:2342 -msgid "Single Select" +#: modules/notifications-log/library/NotificationsLogTable.php:511 +msgid "All" msgstr "" -#: lib/Notifications/Workflow/Step/Receiver/Site_Admin.php:24 -#: lib/Notifications/Workflow/Step/Receiver/Site_Admin.php:73 -msgid "Site Administrator" +#: modules/notifications-log/library/NotificationsLogTable.php:515 +msgid "Success" msgstr "" -#: modules/calendar/calendar.php:1403 -msgid "Six months" +#: modules/notifications-log/library/NotificationsLogTable.php:584 +msgid "All events" msgstr "" -#: modules/calendar/calendar.php:1369 -msgid "Six months ago" +#: modules/notifications-log/library/NotificationsLogTable.php:601 +msgid "All channels" msgstr "" -#: modules/debug/debug.php:295 -msgid "Size" +#: modules/notifications-log/library/NotificationsLogTable.php:620 +msgid "From date" msgstr "" -#: lib/Notifications/Workflow/Option/SkipUser.php:26 -msgid "Skip current user" +#: modules/notifications-log/library/NotificationsLogTable.php:626 +msgid "To date" msgstr "" -#: lib/Notifications/Workflow/Option/SkipUser.php:31 -msgid "Skip notifications for the user who triggered the action" +#: modules/notifications-log/library/NotificationsLogTable.php:634 +msgid "All Receivers" msgstr "" -#: modules/notifications-log/library/NotificationsLogTable.php:285 -#: modules/notifications-log/library/NotificationsLogTable.php:519 -msgid "Skipped" +#: modules/notifications-log/notifications-log.php:205 +msgid "All Workflows" msgstr "" -#: lib/Legacy/Util.php:206 -msgid "Slack integration for notifications" +#: modules/notifications-log/notifications-log.php:206 +msgid "All Actions" msgstr "" -#: modules/editorial-metadata/editorial-metadata.php:1909 -#: modules/editorial-metadata/editorial-metadata.php:2252 -#: modules/custom-status/custom-status.php:1986 -msgid "Slug" +#: modules/notifications-log/notifications-log.php:207 +msgid "All Channels" msgstr "" -#: modules/editorial-metadata/editorial-metadata.php:1301 -msgid "Slug already in use. Please choose another." +#: modules/notifications-log/notifications-log.php:208 +msgid "All Statuses" msgstr "" -#: modules/notifications/notifications.php:1779 -msgid "slug1,slug2" +#: modules/notifications-log/notifications-log.php:209 +#: publishpress.php:1324 +#: publishpress.php:1329 +msgid "Notification" msgstr "" -#: modules/editorial-comments/editorial-comments.php:1080 -msgid "" -"Sorry, you can't delete this editorial comment because it has some replies." -msgstr "" +#: modules/notifications-log/notifications-log.php:272 +msgid "%s notification found." +msgid_plural "%s notifications found." +msgstr[0] "" +msgstr[1] "" -#: modules/custom-status/custom-status.php:1754 -msgid "Sorry, you do not have permission to edit custom statuses." +#: modules/notifications-log/notifications-log.php:284 +msgid "No notifications found." msgstr "" -#: modules/editorial-comments/editorial-comments.php:768 -msgid "" -"Sorry, you don't have the privileges to add editorial comments. Please talk " -"to your Administrator." +#: modules/notifications-log/notifications-log.php:442 +msgid "This notification is very similar to another one sent less than %d minutes ago for the same receiver" msgstr "" -#: modules/editorial-comments/editorial-comments.php:1059 -#: modules/editorial-comments/editorial-comments.php:1163 -msgid "" -"Sorry, you don't have the privileges to delete this editorial comment. " -"Please talk to your Administrator." +#: modules/notifications-log/notifications-log.php:817 +msgid "Subject:" msgstr "" -#: modules/editorial-comments/editorial-comments.php:911 -#: modules/editorial-comments/editorial-comments.php:1043 -msgid "" -"Sorry, you don't have the privileges to edit editorial comments. Please talk " -"to your Administrator." +#: modules/notifications-log/notifications-log.php:825 +msgid "Content:" msgstr "" -#: modules/editorial-comments/editorial-comments.php:929 -msgid "" -"Sorry, you don't have the privileges to edit this editorial comment. Please " -"talk to your Administrator." +#: 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/calendar/calendar.php:1353 -msgid "Start date" +#: modules/notifications/notifications.php:72 +#: modules/notifications/notifications.php:600 +#: publishpress.php:1323 +#: publishpress.php:1328 +msgid "Notifications" msgstr "" -#: modules/custom-status/custom-status.php:1450 -#: modules/content-overview/content-overview.php:627 -#: modules/notifications-log/library/NotificationsLogTable.php:494 -msgid "Status" +#: modules/notifications/notifications.php:94 +msgid "

Notifications ensure you keep up to date with progress your most important content. Users can be subscribed to notifications on a post one by one or by selecting roles.

When enabled, notifications can be sent when a post changes status or an editorial comment is left by a writer or an editor.

" msgstr "" -#: modules/custom-status/custom-status.php:1761 -msgid "Status does not exist." +#: modules/notifications/notifications.php:99 +msgid "

For more information:

Notifications Documentation

PublishPress on Github

" msgstr "" -#: modules/custom-status/custom-status.php:1554 -#: modules/custom-status/custom-status.php:1664 -msgid "Status name cannot exceed 20 characters. Please try a shorter name." +#: modules/notifications/notifications.php:300 +#: modules/notifications/notifications.php:303 +#: modules/notifications/notifications.php:320 +#: modules/notifications/notifications.php:321 +msgid "Notify User" msgstr "" -#: modules/custom-status/custom-status.php:1687 -msgid "Status name conflicts with existing status. Please choose another." +#: modules/notifications/notifications.php:302 +msgid "Notify Users" msgstr "" -#: modules/custom-status/custom-status.php:1562 -#: modules/custom-status/custom-status.php:1678 -msgid "Status name conflicts with existing term. Please choose another." +#: modules/notifications/notifications.php:304 +msgid "Search Notify Users" msgstr "" -#: modules/custom-status/custom-status.php:1569 -#: modules/custom-status/custom-status.php:1694 -msgid "Status name is restricted. Please choose another name." +#: modules/notifications/notifications.php:305 +msgid "Popular Notify Users" msgstr "" -#: modules/custom-status/custom-status.php:107 -msgid "Status order updated." +#: modules/notifications/notifications.php:306 +msgid "All Notify Users" msgstr "" -#. 1: post type, 2: post id, 3. post title, 4. user name, 5. user email -#: modules/notifications/notifications.php:2032 -#, php-format -msgid "Status was changed for %1$s #%2$s \"%3$s\" by %4$s %5$s" +#: modules/notifications/notifications.php:307 +msgid "Parent Notify User" msgstr "" -#: modules/custom-status/custom-status.php:83 -#: modules/custom-status/custom-status.php:304 -msgid "Statuses" +#: modules/notifications/notifications.php:308 +msgid "Parent Notify User:" msgstr "" -#: modules/calendar/calendar.php:2566 -msgid "Statuses to display publish time" +#: modules/notifications/notifications.php:309 +msgid "Edit Notify User" msgstr "" -#: modules/notifications/notifications.php:570 -#: modules/notifications/notifications.php:936 -msgid "Stop notifying me" +#: modules/notifications/notifications.php:310 +msgid "View Notify User" msgstr "" -#: lib/Notifications/Workflow/Step/Content/Main.php:53 -msgid "Subject" +#: modules/notifications/notifications.php:311 +msgid "Update Notify User" msgstr "" -#: modules/notifications-log/notifications-log.php:814 -msgid "Subject:" +#: modules/notifications/notifications.php:312 +msgid "Add New Notify User" msgstr "" -#: modules/editorial-comments/library/EditorialCommentsTable.php:234 -msgid "Submitted on" +#: modules/notifications/notifications.php:313 +msgid "New Notify User" msgstr "" -#: modules/calendar/calendar.php:1348 -msgid "Subscribe in iCal or Google Calendar" +#: modules/notifications/notifications.php:314 +msgid "Separate notify users with commas" msgstr "" -#: modules/notifications-log/library/NotificationsLogTable.php:515 -msgid "Success" +#: modules/notifications/notifications.php:315 +msgid "Add or remove notify users" msgstr "" -#: modules/calendar/calendar.php:807 -msgid "Sun" +#: modules/notifications/notifications.php:316 +msgid "Choose from the most used notify users" msgstr "" -#: modules/notifications-log/library/NotificationsLogTable.php:298 -msgid "synchronous" +#: modules/notifications/notifications.php:317 +#: modules/notifications/notifications.php:318 +msgid "No notify users" msgstr "" -#: modules/calendar/calendar.php:3511 -msgid "Tag" -msgid_plural "Tags" -msgstr[0] "" -msgstr[1] "" +#: modules/notifications/notifications.php:319 +msgid "Filter by notify user" +msgstr "" -#: modules/calendar/calendar.php:3610 -msgid "Tags" +#: modules/notifications/notifications.php:322 +msgid "Most Used Notify User" msgstr "" -#: modules/content-overview/content-overview.php:306 -msgid "Taxonomies to show:" +#: modules/notifications/notifications.php:323 +msgid "Back to notify users" msgstr "" -#: lib/Notifications/Workflow/Step/Event_Content/Taxonomy.php:24 -msgid "Taxonomy" +#: modules/notifications/notifications.php:335 +#: modules/notifications/notifications.php:338 +#: modules/notifications/notifications.php:355 +#: modules/notifications/notifications.php:356 +msgid "Notify Role" msgstr "" -#: modules/editorial-metadata/editorial-metadata.php:446 -msgctxt "taxonomy general name" -msgid "Metadata" +#: modules/notifications/notifications.php:337 +msgid "Notify Roles" msgstr "" -#: modules/editorial-metadata/editorial-metadata.php:447 -msgctxt "taxonomy singular name" -msgid "Metadata" +#: modules/notifications/notifications.php:339 +msgid "Search Notify Roles" msgstr "" -#: modules/calendar/calendar.php:1411 -msgid "Ten months" +#: modules/notifications/notifications.php:340 +msgid "Popular Notify Roles" msgstr "" -#: lib/Notifications/Workflow/Step/Event_Content/Filter/Term.php:33 -msgid "Terms" +#: modules/notifications/notifications.php:341 +msgid "All Notify Roles" msgstr "" -#: modules/editorial-metadata/editorial-metadata.php:1605 -#: modules/custom-status/custom-status.php:1821 -msgid "Terms not set." +#: modules/notifications/notifications.php:342 +msgid "Parent Notify Role" msgstr "" -#: modules/editorial-metadata/editorial-metadata.php:289 -msgid "Text" +#: modules/notifications/notifications.php:343 +msgid "Parent Notify Role:" msgstr "" -#: modules/editorial-metadata/editorial-metadata.php:2261 -msgid "" -"The \"slug\" is the URL-friendly version of the name. It is usually all " -"lowercase and contains only letters, numbers, and hyphens." +#: modules/notifications/notifications.php:344 +msgid "Edit Notify Role" msgstr "" -#: modules/custom-status/custom-status.php:2041 -#: modules/custom-status/custom-status.php:2170 -msgid "The color is used to identify the status." +#: modules/notifications/notifications.php:345 +msgid "View Notify Role" msgstr "" -#: modules/editorial-metadata/editorial-metadata.php:1930 -#: modules/editorial-metadata/editorial-metadata.php:2278 -msgid "" -"The description can be used to communicate with your team about what the " -"metadata is for." +#: modules/notifications/notifications.php:346 +msgid "Update Notify Role" msgstr "" -#: modules/custom-status/custom-status.php:2020 -#: modules/custom-status/custom-status.php:2153 -msgid "" -"The description is primarily for administrative use, to give you some " -"context on what the custom status is to be used for." +#: modules/notifications/notifications.php:347 +msgid "Add New Notify Role" msgstr "" -#: modules/theeventscalendar-integration/theeventscalendar-integration.php:52 -msgid "The Events Calendar Integration" +#: modules/notifications/notifications.php:348 +msgid "New Notify Role" msgstr "" -#: modules/custom-status/custom-status.php:2067 -#: modules/custom-status/custom-status.php:2196 -msgid "The icon is used to visually represent the status." +#: modules/notifications/notifications.php:349 +msgid "Separate notify roles with commas" msgstr "" -#: modules/editorial-metadata/editorial-metadata.php:1944 -msgid "The metadata type cannot be changed once created." +#: modules/notifications/notifications.php:350 +msgid "Add or remove notify roles" msgstr "" -#: modules/editorial-metadata/editorial-metadata.php:1904 -#: modules/editorial-metadata/editorial-metadata.php:2247 -msgid "The name is for labeling the metadata field." +#: modules/notifications/notifications.php:351 +msgid "Choose from the most used notify roles" msgstr "" -#: modules/custom-status/custom-status.php:1977 -#: modules/custom-status/custom-status.php:2133 -msgid "The name is used to identify the status. (Max: 20 characters)" +#: modules/notifications/notifications.php:352 +#: modules/notifications/notifications.php:353 +msgid "No notify roles" msgstr "" -#: modules/notifications-log/library/NotificationsLogTable.php:277 -msgid "" -"The notification was set as \"Scheduled\" but the cron task is not found" +#: modules/notifications/notifications.php:354 +msgid "Filter by notify role" msgstr "" -#: modules/calendar/calendar.php:2642 -msgid "" -"The number of weeks shown on the calendar can be changed on a user-by-user " -"basis using the calendar's screen options." +#: modules/notifications/notifications.php:357 +msgid "Most Used Notify Role" msgstr "" -#: modules/notifications-log/library/NotificationsLogModel.php:264 -msgid "The parent log was deleted or probably rescheduled" +#: modules/notifications/notifications.php:358 +msgid "Back to notify roles" msgstr "" -#: modules/calendar/calendar.php:3730 -msgid "The selected post type is not enabled for the calendar." +#: modules/notifications/notifications.php:370 +#: modules/notifications/notifications.php:373 +#: modules/notifications/notifications.php:390 +#: modules/notifications/notifications.php:391 +msgid "Notify Email" msgstr "" -#: modules/calendar/calendar.php:4209 -msgid "" -"The selected user doesn't have enough permissions to be set as the post " -"author." +#: modules/notifications/notifications.php:372 +msgid "Notify Emails" msgstr "" -#: modules/editorial-metadata/editorial-metadata.php:1914 -msgid "The slug cannot be changed once the term has been created." +#: modules/notifications/notifications.php:374 +msgid "Search Notify Emails" msgstr "" -#: modules/custom-status/custom-status.php:1998 -msgid "" -"The slug is the unique ID for the status and is changed when the name is " -"changed." +#: modules/notifications/notifications.php:375 +msgid "Popular Notify Emails" msgstr "" -#: modules/content-overview/content-overview.php:1564 -msgid "There are no posts in the range or filter specified." +#: modules/notifications/notifications.php:376 +msgid "All Notify Emails" msgstr "" -#: modules/settings/settings.php:289 -msgid "There are no PublishPress modules registered" +#: modules/notifications/notifications.php:377 +msgid "Parent Notify Email" 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 -msgid "" -"There was a problem of some sort. Try again or contact your administrator." +#: modules/notifications/notifications.php:378 +msgid "Parent Notify Email:" msgstr "" -#: modules/calendar/calendar.php:189 -msgid "There was an error updating the post. Please try again." +#: modules/notifications/notifications.php:379 +msgid "Edit Notify Email" msgstr "" -#. 1: date, 2: time, 3: timezone -#: modules/notifications/notifications.php:2043 -#, php-format -msgid "This action was taken on %1$s at %2$s %3$s" +#: modules/notifications/notifications.php:380 +msgid "View Notify Email" 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." +#: modules/notifications/notifications.php:381 +msgid "Update Notify Email" msgstr "" -#: modules/notifications/notifications.php:1056 -#, php-format -msgid "This email was sent %s." +#: modules/notifications/notifications.php:382 +msgid "Add New Notify Email" msgstr "" -#: modules/notifications-log/notifications-log.php:832 -msgid "" -"This is a preview of the scheduled message. The content can still change " -"until the notification is sent." +#: modules/notifications/notifications.php:383 +msgid "New Notify Email" msgstr "" -#: modules/editorial-metadata/editorial-metadata.php:2170 -#: modules/editorial-metadata/editorial-metadata.php:2536 -msgid "This metadata will be available for these post types." +#: modules/notifications/notifications.php:384 +msgid "Separate notify emails with commas" msgstr "" -#: modules/editorial-metadata/editorial-metadata.php:2194 -#: modules/editorial-metadata/editorial-metadata.php:2559 -msgid "" -"This metadata will be viewable on the overview screens for these post types." +#: modules/notifications/notifications.php:385 +msgid "Add or remove notify emails" msgstr "" -#: modules/notifications-log/notifications-log.php:439 -msgid "" -"This notification is very similar to another one sent less than %d minutes " -"ago for the same receiver" +#: modules/notifications/notifications.php:386 +msgid "Choose from the most used notify emails" msgstr "" -#: modules/improved-notifications/improved-notifications.php:355 -msgid "" -"This will prevent too many notifications being sent for the same or similar " -"events. Set this to a higher number if you are receiving duplicate emails." +#: modules/notifications/notifications.php:387 +#: modules/notifications/notifications.php:388 +msgid "No notify emails" msgstr "" -#: modules/notifications/notifications.php:662 -msgid "" -"This won't have any effect unless you have at least one workflow targeting " -"the \"Notify me\" box." +#: modules/notifications/notifications.php:389 +msgid "Filter by notify email" msgstr "" -#: modules/calendar/calendar.php:1397 -msgid "Three months" +#: modules/notifications/notifications.php:392 +msgid "Most Used Notify Email" msgstr "" -#: modules/calendar/calendar.php:1363 -msgid "Three months ago" +#: modules/notifications/notifications.php:393 +msgid "Back to notify emails" msgstr "" -#: modules/calendar/calendar.php:1384 -msgid "Three weeks" +#: modules/notifications/notifications.php:569 +#: modules/notifications/notifications.php:937 +msgid "Click to stop being notified on updates for this post" msgstr "" -#: modules/calendar/calendar.php:811 -msgid "Thu" +#: modules/notifications/notifications.php:570 +#: modules/notifications/notifications.php:936 +msgid "Stop notifying me" msgstr "" -#: modules/calendar/calendar.php:3571 -#: modules/content-overview/content-overview.php:626 -#: lib/Notifications/Table/Workflows.php:142 -#: lib/Notifications/Table/Notifications.php:156 -msgid "Title" +#: modules/notifications/notifications.php:573 +#: modules/notifications/notifications.php:943 +msgid "Click to start being notified on updates for this post" +msgstr "" + +#: modules/notifications/notifications.php:574 +#: modules/notifications/notifications.php:942 +msgid "Notify me" +msgstr "" + +#: modules/notifications/notifications.php:636 +msgid "Enter any users, roles, or email address that should receive notifications from workflows." msgstr "" -#: modules/notifications/notifications.php:2065 -#, php-format -msgid "Title: %s" +#: modules/notifications/notifications.php:662 +msgid "This won't have any effect unless you have at least one workflow targeting the \"Notify me\" box." msgstr "" -#: modules/content-overview/content-overview.php:1413 -msgid "to" +#: modules/notifications/notifications.php:676 +msgid "Active Notifications" msgstr "" -#: modules/notifications-log/library/NotificationsLogTable.php:626 -msgid "To date" +#: modules/notifications/notifications.php:705 +msgid "No active notifications found for this %s." msgstr "" -#: modules/calendar/calendar.php:833 modules/calendar/calendar.php:2138 -msgid "Today" +#: modules/notifications/notifications.php:1051 +msgid "You are receiving this email because you are subscribed to \"%s\"." msgstr "" -#: modules/calendar/calendar.php:2132 -#, php-format -msgid "Today is %s" +#: modules/notifications/notifications.php:1056 +msgid "This email was sent %s." msgstr "" -#: common/php/class-module.php:272 modules/calendar/calendar.php:1828 -#: modules/calendar/calendar.php:3530 -#: modules/content-overview/content-overview.php:1916 -msgid "Trash" +#: modules/notifications/notifications.php:1633 +msgid "Show the \"Notify me\" and \"Stop notifying me\" links for these post types:" msgstr "" -#: modules/calendar/calendar.php:809 -msgid "Tue" +#: modules/notifications/notifications.php:1641 +msgid "Email from:" msgstr "" -#: modules/calendar/calendar.php:1415 -msgid "Twelve months" +#: modules/notifications/notifications.php:1649 +msgid "Always notify the author of the content:" msgstr "" -#: modules/calendar/calendar.php:1395 -msgid "Two months" +#: modules/notifications/notifications.php:1657 +msgid "Always notify users who have edited the content:" msgstr "" -#: modules/calendar/calendar.php:1361 -msgid "Two months ago" +#: modules/notifications/notifications.php:1665 +msgid "Blacklisted taxonomies for Notifications" msgstr "" -#: modules/calendar/calendar.php:1382 -msgid "Two weeks" +#: modules/notifications/notifications.php:1779 +msgid "slug1,slug2" msgstr "" -#: modules/editorial-metadata/editorial-metadata.php:1939 -#: modules/editorial-metadata/editorial-metadata.php:2286 -msgid "Type" +#: modules/notifications/notifications.php:1785 +msgid "Add a list of taxonomy-slugs separated by comma that should not be loaded by the Taxonomy content filter when adding a new Notification Workflow." msgstr "" -#: core/Error.php:79 -msgid "Undefined error found" +#: modules/notifications/notifications.php:1918 +msgid "WordPress Scheduler" msgstr "" -#: modules/calendar/calendar.php:1471 -#: modules/content-overview/content-overview.php:1076 -msgid "Undo" +#: modules/notifications/notifications.php:1927 +msgid "[%1$s] New %2$s Created: \"%3$s\"" msgstr "" -#: modules/calendar/calendar.php:798 modules/calendar/calendar.php:3736 -msgid "Untitled" +#: modules/notifications/notifications.php:1934 +msgid "A new %1$s (#%2$s \"%3$s\" ) was created by %4$s %5$s" msgstr "" -#: modules/editorial-metadata/editorial-metadata.php:452 -msgid "Update Editorial Metadata" +#: modules/notifications/notifications.php:1944 +msgid "[%1$s] %2$s Trashed: \"%3$s\"" msgstr "" -#: modules/editorial-metadata/editorial-metadata.php:2217 -msgid "Update Metadata Term" +#: modules/notifications/notifications.php:1951 +msgid "%1$s #%2$s \"%3$s\" was moved to the trash by %4$s %5$s" msgstr "" -#: modules/notifications/notifications.php:381 -msgid "Update Notify Email" +#: modules/notifications/notifications.php:1961 +msgid "[%1$s] %2$s Restored (from Trash ): \"%3$s\"" msgstr "" -#: modules/notifications/notifications.php:346 -msgid "Update Notify Role" +#: modules/notifications/notifications.php:1968 +msgid "%1$s #%2$s \"%3$s\" was restored from trash by %4$s %5$s" msgstr "" -#: modules/notifications/notifications.php:311 -msgid "Update Notify User" +#: modules/notifications/notifications.php:1991 +msgid "[%1$s] %2$s Published: \"%3$s\"" msgstr "" -#: modules/custom-status/custom-status.php:2074 -msgid "Update Status" +#: modules/notifications/notifications.php:1998 +msgid "%1$s #%2$s \"%3$s\" was published by %4$s %5$s" msgstr "" -#: modules/calendar/calendar.php:193 -#, php-format -msgid "" -"Updating the post date dynamically doesn't work for published content. " -"Please edit the post." +#: modules/notifications/notifications.php:2008 +msgid "[%1$s] %2$s Unpublished: \"%3$s\"" msgstr "" -#: includes.php:159 lib/Legacy/Util.php:213 -msgid "Upgrade to Pro" +#: modules/notifications/notifications.php:2015 +msgid "%1$s #%2$s \"%3$s\" was unpublished by %4$s %5$s" msgstr "" -#: lib/Legacy/Util.php:198 -msgid "Upgrade to PublishPress Planner Pro" +#: modules/notifications/notifications.php:2025 +msgid "[%1$s] %2$s Status Changed for \"%3$s\"" msgstr "" -#: modules/custom-status/custom-status.php:1856 -msgid "Use on these post types:" +#: modules/notifications/notifications.php:2032 +msgid "Status was changed for %1$s #%2$s \"%3$s\" by %4$s %5$s" msgstr "" -#: lib/Legacy/Util.php:208 -msgid "Use post meta in notifications" +#: modules/notifications/notifications.php:2043 +msgid "This action was taken on %1$s at %2$s %3$s" msgstr "" -#: modules/editorial-metadata/editorial-metadata.php:290 -msgid "User" +#: modules/notifications/notifications.php:2056 +msgid "%1$s => %2$s" msgstr "" -#: lib/Notifications/Workflow/Step/Receiver/Follower.php:120 -msgid "user" +#: modules/notifications/notifications.php:2064 +msgid "== %s Details ==" msgstr "" -#: modules/improved-notifications/improved-notifications.php:971 -msgid "User making changes or comments" +#: modules/notifications/notifications.php:2065 +msgid "Title: %s" msgstr "" -#: modules/editorial-metadata/editorial-metadata.php:1950 -#: modules/editorial-metadata/editorial-metadata.php:2312 -msgid "User role" +#: modules/notifications/notifications.php:2069 +msgid "Author: %1$s (%2$s )" msgstr "" -#: modules/editorial-comments/editorial-comments.php:1270 -msgid "User Url" +#: modules/notifications/notifications.php:2083 +#: modules/notifications/notifications.php:2136 +msgid "== Actions ==" msgstr "" -#: modules/notifications-log/library/NotificationsLogTable.php:122 -#, php-format -msgid "User: %s (%d)" +#: modules/notifications/notifications.php:2085 +#: modules/notifications/notifications.php:2142 +msgid "Add editorial comment: %s" msgstr "" -#: modules/editorial-comments/editorial-comments.php:1265 -msgid "Username" +#: modules/notifications/notifications.php:2088 +#: modules/notifications/notifications.php:2145 +msgid "Edit: %s" msgstr "" -#: common/php/class-module.php:691 -#: lib/Notifications/Workflow/Step/Receiver/User.php:26 -msgid "Users" +#: modules/notifications/notifications.php:2089 +#: modules/notifications/notifications.php:2146 +msgid "View: %s" msgstr "" -#: lib/Notifications/Workflow/Step/Receiver/Follower.php:30 -msgid "Users who selected \"Notify me\" for the content" +#: modules/notifications/notifications.php:2100 +msgid "[%1$s] New Editorial Comment: \"%2$s\"" msgstr "" -#: modules/calendar/calendar.php:1852 modules/calendar/calendar.php:3537 -#: modules/content-overview/content-overview.php:1932 -msgid "View" +#: modules/notifications/notifications.php:2107 +msgid "A new editorial comment was added to %3$s #%1$s \"%2$s\"" msgstr "" -#: modules/calendar/calendar.php:1846 -#: modules/content-overview/content-overview.php:1926 -#, php-format -msgid "View “%s”" +#: modules/notifications/notifications.php:2114 +msgid "%1$s (%2$s ) said on %3$s at %4$s:" msgstr "" -#: modules/editorial-metadata/input-handlers/editorial-metadata-input-location-handler.php:82 -#, php-format -msgid "View “%s” on Google Maps" +#: modules/notifications/notifications.php:2138 +msgid "Reply: %s" msgstr "" -#: modules/calendar/calendar.php:3995 -msgid "View all categories" +#: modules/notifications/notifications.php:2149 +msgid "You can see all editorial comments on this %s here: " msgstr "" -#: lib/Legacy/Util.php:238 -msgid "View Knowledge Base" +#: modules/reviews/reviews.php:66 +msgid "Reviews" msgstr "" -#: modules/notifications/notifications.php:380 -msgid "View Notify Email" +#: modules/settings/settings.php:124 +msgid "settings" msgstr "" -#: modules/notifications/notifications.php:345 -msgid "View Notify Role" +#: modules/settings/settings.php:141 +msgid "PublishPress Settings" msgstr "" -#: modules/notifications/notifications.php:310 -msgid "View Notify User" +#: modules/settings/settings.php:142 +msgid "Settings" msgstr "" -#: modules/notifications/notifications.php:2089 -#: modules/notifications/notifications.php:2146 -#, php-format -msgid "View: %s" +#: modules/settings/settings.php:269 +msgid "If you like %s please leave us a %s rating. Thank you!" msgstr "" -#: modules/editorial-metadata/editorial-metadata.php:2093 -#: modules/editorial-metadata/editorial-metadata.php:2453 -#: modules/editorial-metadata/editorial-metadata.php:2700 -msgid "Viewable" +#: modules/settings/settings.php:289 +msgid "There are no PublishPress modules registered" msgstr "" -#: publishpress.php:1291 -msgid "Warning" +#: modules/settings/settings.php:380 +msgid "Disabled because add_post_type_support('%1$s', '%2$s') is included in a loaded file." msgstr "" -#: modules/calendar/calendar.php:810 -msgid "Wed" +#: modules/settings/views/footer-base.html.php:21 +msgid "About" msgstr "" -#: modules/editorial-metadata/editorial-metadata.php:220 -msgid "What the post needs to cover." +#: modules/settings/views/footer-base.html.php:25 +msgid "Documentation" msgstr "" -#: modules/improved-notifications/improved-notifications.php:843 -msgid "What to say?" +#: modules/settings/views/footer-base.html.php:29 +msgid "Contact" msgstr "" -#: lib/Notifications/Workflow/Step/Event/Editorial_Comment.php:24 -msgid "When an editorial comment is added" +#: modules/theeventscalendar-integration/theeventscalendar-integration.php:52 +msgid "The Events Calendar Integration" msgstr "" -#: lib/Notifications/Workflow/Step/Event/Post_StatusTransition.php:28 -msgid "When the content is moved to a new status" +#: modules/theeventscalendar-integration/theeventscalendar-integration.php:53 +msgid "Integrate with the The Events Calendar plugin" msgstr "" -#: lib/Notifications/Workflow/Step/Event/Post_Update.php:26 -msgid "When the content is updated" +#: publishpress.php:584 +msgid "Planner" msgstr "" -#: modules/editorial-metadata/editorial-metadata.php:212 -msgid "When the first draft needs to be ready." +#: publishpress.php:665 +msgid "Configure" msgstr "" -#: lib/Notifications/Workflow/Step/Event/Filter/Post_Status.php:34 -msgid "When the status is changed" +#: publishpress.php:668 +msgid "Please correct your form errors below and try again." msgstr "" -#: lib/Notifications/Plugin.php:57 -#: modules/improved-notifications/improved-notifications.php:813 -#: modules/notifications-log/library/NotificationsLogTable.php:491 -msgid "When to notify?" +#: publishpress.php:669 +msgid "Cheatin’ uh?" msgstr "" -#: lib/Notifications/Plugin.php:59 -#: modules/improved-notifications/improved-notifications.php:833 -#: modules/notifications-log/library/NotificationsLogTable.php:493 -msgid "Who to notify?" +#: publishpress.php:670 +msgid "You do not have necessary permissions to complete this action." msgstr "" -#: modules/notifications/notifications.php:1918 -msgid "WordPress Scheduler" +#: publishpress.php:674 +msgid "Post does not exist" msgstr "" -#: modules/improved-notifications/improved-notifications.php:972 -msgid "Workflow" +#: publishpress.php:1325 +msgid "Add New Notification" msgstr "" -#: modules/improved-notifications/improved-notifications.php:775 -msgid "Workflow Settings" +#: publishpress.php:1326 +msgid "Edit Notification" msgstr "" -#: modules/notifications-log/library/NotificationsLogTable.php:110 -#, php-format -msgid "Workflow: %s" +#: publishpress.php:1327 +msgid "Search Notifications" msgstr "" -#: views/user_profile_notification_channels.html.php:14 -#: modules/improved-notifications/improved-notifications.php:407 -#: modules/improved-notifications/improved-notifications.php:1151 -msgid "Workflows" +#: publishpress.php:1330 +#: publishpress.php:1331 +msgid "No notification found" msgstr "" -#: modules/custom-status/custom-status.php:208 -msgid "Writer is working on the post." +#: publishpress.php:1370 +msgid "PublishPress Planner tried to load multiple times. Please, deactivate and remove other instances of PublishPress, specially if you are using PublishPress Pro." msgstr "" -#: 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/input-handlers/editorial-metadata-input-checkbox-handler.php:142 -msgid "Yes" +#: publishpress.php:1378 +msgid "Warning" msgstr "" -#: modules/notifications/notifications.php:1051 -#, php-format -msgid "You are receiving this email because you are subscribed to \"%s\"." +#: statuses-intro.php:115 +msgid "Custom statuses are disabled until you activate the %1$sPublishPress Statuses%2$s plugin. See %3$sPlanner > Settings%4$s for details." msgstr "" -#: modules/improved-notifications/improved-notifications.php:965 -msgid "" -"You can add dynamic information to the Subject or Body text using the " -"following shortcodes:" +#: statuses-intro.php:123 +msgid "Custom statuses are disabled until you install the %1$sPublishPress Statuses%2$s plugin. See %3$sPlanner > Settings%4$s for details." msgstr "" -#: modules/editorial-comments/editorial-comments.php:532 -msgid "" -"You can add editorial comments to a post once you've saved it for the first " -"time." +#: modules/editorial-comments/lib/editorial-comments.js:377 +msgid "Sending content..." msgstr "" -#: modules/notifications/notifications.php:2149 -#, php-format -msgid "You can see all editorial comments on this %s here: " +#: modules/editorial-comments/lib/editorial-comments.js:434 +msgid "This comment can't be deleted because it has one or more replies. Before deleting it make sure to delete all the replies first." msgstr "" -#: publishpress.php:661 -msgid "You do not have necessary permissions to complete this action." +#: modules/editorial-comments/lib/editorial-comments.js:438 +msgid "Are you sure you want to delete this comment?" msgstr "" -#: lib/Notifications/Table/Notifications.php:235 -msgid "You don't have any notifications" +#: modules/notifications-log/assets/js/admin.js:73 +msgid "for" msgstr "" -#: includes.php:127 -#, php-format -msgid "" -"You're using PublishPress Planner Free. The Pro version has more features " -"and support. %sUpgrade to Pro%s" +#: modules/notifications-log/assets/js/admin.js:73 +msgid "by" msgstr "" diff --git a/lib/Notifications/Shortcodes.php b/lib/Notifications/Shortcodes.php index d540d73dc..de31c13ad 100644 --- a/lib/Notifications/Shortcodes.php +++ b/lib/Notifications/Shortcodes.php @@ -117,6 +117,8 @@ protected function get_actor() * - login * - url * - display_name + * - first_name + * - last_name * - email * - separator * @@ -185,6 +187,14 @@ private function get_user_field($user, $field, $attrs) $result = $user->display_name; break; + case 'first_name': + $result = $user->first_name; + break; + + case 'last_name': + $result = $user->last_name; + break; + case 'email': $result = $user->user_email; break; @@ -428,7 +438,7 @@ private function get_post_field($post, $field, $attrs) case 'old_status': case 'new_status': - $status = $publishpress->custom_status->get_custom_status_by( + $status = $publishpress->getPostStatusBy( 'slug', $this->event_args['params'][$field] ); @@ -437,7 +447,7 @@ private function get_post_field($post, $field, $attrs) break; } - $result = $status->name; + $result = $status->label; break; case 'content': @@ -495,7 +505,7 @@ private function get_post_field($post, $field, $attrs) if (!empty($rel_post) && !is_wp_error($rel_post)) { $result = $this->get_post_field($rel_post, $meta_sub_field, $attrs); } - } elseif ('meta-user' == $arr[0]) { + } elseif ('meta-user' == $arr[0] || strpos($meta_name, '_pp_editorial_meta_user') === 0) { $rel_user = get_user_by('ID', (int)$meta); if (!empty($rel_user) && !is_wp_error($rel_user)) { diff --git a/lib/Notifications/Traits/PublishPress_Module.php b/lib/Notifications/Traits/PublishPress_Module.php index baa39ab99..f5706100b 100644 --- a/lib/Notifications/Traits/PublishPress_Module.php +++ b/lib/Notifications/Traits/PublishPress_Module.php @@ -19,14 +19,9 @@ trait PublishPress_Module */ public function get_post_statuses() { - if ($this->is_module_enabled('custom_status')) { - $publishpress = $this->get_service('publishpress'); - $statuses = $publishpress->custom_status->get_custom_statuses(); + $publishpress = $this->get_service('publishpress'); - return $statuses; - } else { - return $this->get_core_post_statuses(); - } + return $publishpress->getPostStatuses(); } /** @@ -36,6 +31,10 @@ public function get_post_statuses() */ public function is_module_enabled($slug) { + if ('custom_status' == $slug) { + return class_exists('PublishPress_Statuses'); + } + $publishpress = $this->get_service('publishpress'); if (isset($publishpress->$slug)) { @@ -58,26 +57,9 @@ public function is_module_enabled($slug) */ protected function get_core_post_statuses() { - return [ - (object)[ - 'name' => __('Draft'), - 'description' => '', - 'slug' => 'draft', - 'position' => 1, - ], - (object)[ - 'name' => __('Pending Review'), - 'description' => '', - 'slug' => 'pending', - 'position' => 2, - ], - (object)[ - 'name' => __('Published'), - 'description' => '', - 'slug' => 'publish', - 'position' => 3, - ], - ]; + $publishpress = $this->get_service('publishpress'); + + return $publishpress->getCorePostStatuses(); } /** diff --git a/lib/Notifications/Workflow/Step/Event/Filter/Post_Status.php b/lib/Notifications/Workflow/Step/Event/Filter/Post_Status.php index a75801958..c48dfdce0 100644 --- a/lib/Notifications/Workflow/Step/Event/Filter/Post_Status.php +++ b/lib/Notifications/Workflow/Step/Event/Filter/Post_Status.php @@ -70,7 +70,7 @@ protected function get_options($group) foreach ($statuses as $status) { $options[] = [ 'value' => esc_attr($status->slug), - 'label' => esc_html($status->name), + 'label' => esc_html($status->label), 'selected' => in_array($status->slug, $metadata[$group]), ]; } diff --git a/lib/Notifications/Workflow/Step/Event/Post_StatusTransition.php b/lib/Notifications/Workflow/Step/Event/Post_StatusTransition.php index 6358aaa4d..57b519130 100644 --- a/lib/Notifications/Workflow/Step/Event/Post_StatusTransition.php +++ b/lib/Notifications/Workflow/Step/Event/Post_StatusTransition.php @@ -106,16 +106,16 @@ public function filter_action_params_for_log($paramsString, $log) if ($log->event === static::EVENT_NAME) { global $publishpress; - $oldStatus = $publishpress->custom_status->get_custom_status_by('slug', $log->oldStatus); - $newStatus = $publishpress->custom_status->get_custom_status_by('slug', $log->newStatus); + $oldStatus = $publishpress->getPostStatusBy('slug', $log->oldStatus); + $newStatus = $publishpress->getPostStatusBy('slug', $log->newStatus); $paramsString = ''; if (is_object($oldStatus)) { - $paramsString .= '
' . sprintf(__('Old post status: %s', 'publishpress'), $oldStatus->name) . '
'; + $paramsString .= '
' . sprintf(__('Old post status: %s', 'publishpress'), $oldStatus->label) . '
'; } if (is_object($newStatus)) { - $paramsString .= '
' . sprintf(__('New post status: %s', 'publishpress'), $newStatus->name) . '
'; + $paramsString .= '
' . sprintf(__('New post status: %s', 'publishpress'), $newStatus->label) . '
'; } } diff --git a/lib/composer.lock b/lib/composer.lock index e85795ef1..98a46e545 100644 --- a/lib/composer.lock +++ b/lib/composer.lock @@ -244,16 +244,16 @@ }, { "name": "publishpress/wordpress-reviews", - "version": "v1.1.19", + "version": "v1.1.20", "source": { "type": "git", "url": "https://github.com/publishpress/library-wordpress-reviews.git", - "reference": "028e573eb7c5da2455a7a823cabbbe5e3f89ca9c" + "reference": "6d0b687a66439721b0432ef1320fd818cd56309f" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/publishpress/library-wordpress-reviews/zipball/028e573eb7c5da2455a7a823cabbbe5e3f89ca9c", - "reference": "028e573eb7c5da2455a7a823cabbbe5e3f89ca9c", + "url": "https://api.github.com/repos/publishpress/library-wordpress-reviews/zipball/6d0b687a66439721b0432ef1320fd818cd56309f", + "reference": "6d0b687a66439721b0432ef1320fd818cd56309f", "shasum": "" }, "require": { @@ -272,7 +272,6 @@ "overtrue/phplint": "^2.1", "phpmd/phpmd": "^2.8", "publishpress/publishpress-plugin-builder": "^1.2", - "sebastian/phpcpd": "^5.0", "squizlabs/php_codesniffer": "^3.5", "wp-cli/i18n-command": "^2.2", "wp-cli/wp-cli": "^2.5" @@ -306,22 +305,22 @@ ], "support": { "issues": "https://github.com/publishpress/library-wordpress-reviews/issues", - "source": "https://github.com/publishpress/library-wordpress-reviews/tree/v1.1.19" + "source": "https://github.com/publishpress/library-wordpress-reviews/tree/v1.1.20" }, - "time": "2022-06-03T13:38:53+00:00" + "time": "2023-10-06T17:22:31+00:00" }, { "name": "publishpress/wordpress-version-notices", - "version": "2.1.2", + "version": "2.1.3", "source": { "type": "git", "url": "https://github.com/publishpress/library-wordpress-version-notices.git", - "reference": "b0efcf04ab9d37304e38673bee471116e44cdb0e" + "reference": "8e54558d2427a0f93174ccbc1d02c1ba7e2abc8d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/publishpress/library-wordpress-version-notices/zipball/b0efcf04ab9d37304e38673bee471116e44cdb0e", - "reference": "b0efcf04ab9d37304e38673bee471116e44cdb0e", + "url": "https://api.github.com/repos/publishpress/library-wordpress-version-notices/zipball/8e54558d2427a0f93174ccbc1d02c1ba7e2abc8d", + "reference": "8e54558d2427a0f93174ccbc1d02c1ba7e2abc8d", "shasum": "" }, "require": { @@ -372,9 +371,9 @@ "description": "Library for displaying version notices for Pro plugins in WordPress.", "support": { "issues": "https://github.com/publishpress/library-wordpress-version-notices/issues", - "source": "https://github.com/publishpress/library-wordpress-version-notices/tree/2.1.2" + "source": "https://github.com/publishpress/library-wordpress-version-notices/tree/2.1.3" }, - "time": "2023-05-30T19:00:42+00:00" + "time": "2023-10-11T15:04:44+00:00" }, { "name": "sabre/vobject", @@ -458,5 +457,5 @@ "php": ">=7.2.5" }, "platform-dev": [], - "plugin-api-version": "2.3.0" + "plugin-api-version": "2.2.0" } diff --git a/lib/vendor/autoload.php b/lib/vendor/autoload.php index eee0ef9e8..5c19b399f 100644 --- a/lib/vendor/autoload.php +++ b/lib/vendor/autoload.php @@ -2,24 +2,6 @@ // autoload.php @generated by Composer -if (PHP_VERSION_ID < 50600) { - if (!headers_sent()) { - header('HTTP/1.1 500 Internal Server Error'); - } - $err = 'Composer 2.3.0 dropped support for autoloading on PHP <5.6 and you are running '.PHP_VERSION.', please upgrade PHP or use Composer 2.2 LTS via "composer self-update --2.2". Aborting.'.PHP_EOL; - if (!ini_get('display_errors')) { - if (PHP_SAPI === 'cli' || PHP_SAPI === 'phpdbg') { - fwrite(STDERR, $err); - } elseif (!headers_sent()) { - echo $err; - } - } - trigger_error( - $err, - E_USER_ERROR - ); -} - require_once __DIR__ . '/composer/autoload_real.php'; return ComposerAutoloaderInitPublishPressPlanner::getLoader(); diff --git a/lib/vendor/composer/ClassLoader.php b/lib/vendor/composer/ClassLoader.php index 7824d8f7e..afef3fa2a 100644 --- a/lib/vendor/composer/ClassLoader.php +++ b/lib/vendor/composer/ClassLoader.php @@ -42,37 +42,35 @@ */ class ClassLoader { - /** @var \Closure(string):void */ - private static $includeFile; - - /** @var string|null */ + /** @var ?string */ private $vendorDir; // PSR-4 /** - * @var array> + * @var array[] + * @psalm-var array> */ private $prefixLengthsPsr4 = array(); /** - * @var array> + * @var array[] + * @psalm-var array> */ private $prefixDirsPsr4 = array(); /** - * @var list + * @var array[] + * @psalm-var array */ private $fallbackDirsPsr4 = array(); // PSR-0 /** - * List of PSR-0 prefixes - * - * Structured as array('F (first letter)' => array('Foo\Bar (full prefix)' => array('path', 'path2'))) - * - * @var array>> + * @var array[] + * @psalm-var array> */ private $prefixesPsr0 = array(); /** - * @var list + * @var array[] + * @psalm-var array */ private $fallbackDirsPsr0 = array(); @@ -80,7 +78,8 @@ class ClassLoader private $useIncludePath = false; /** - * @var array + * @var string[] + * @psalm-var array */ private $classMap = array(); @@ -88,29 +87,29 @@ class ClassLoader private $classMapAuthoritative = false; /** - * @var array + * @var bool[] + * @psalm-var array */ private $missingClasses = array(); - /** @var string|null */ + /** @var ?string */ private $apcuPrefix; /** - * @var array + * @var self[] */ private static $registeredLoaders = array(); /** - * @param string|null $vendorDir + * @param ?string $vendorDir */ public function __construct($vendorDir = null) { $this->vendorDir = $vendorDir; - self::initializeIncludeClosure(); } /** - * @return array> + * @return string[] */ public function getPrefixes() { @@ -122,7 +121,8 @@ public function getPrefixes() } /** - * @return array> + * @return array[] + * @psalm-return array> */ public function getPrefixesPsr4() { @@ -130,7 +130,8 @@ public function getPrefixesPsr4() } /** - * @return list + * @return array[] + * @psalm-return array */ public function getFallbackDirs() { @@ -138,7 +139,8 @@ public function getFallbackDirs() } /** - * @return list + * @return array[] + * @psalm-return array */ public function getFallbackDirsPsr4() { @@ -146,7 +148,8 @@ public function getFallbackDirsPsr4() } /** - * @return array Array of classname => path + * @return string[] Array of classname => path + * @psalm-return array */ public function getClassMap() { @@ -154,7 +157,8 @@ public function getClassMap() } /** - * @param array $classMap Class to filename map + * @param string[] $classMap Class to filename map + * @psalm-param array $classMap * * @return void */ @@ -171,25 +175,24 @@ public function addClassMap(array $classMap) * Registers a set of PSR-0 directories for a given prefix, either * appending or prepending to the ones previously set for this prefix. * - * @param string $prefix The prefix - * @param list|string $paths The PSR-0 root directories - * @param bool $prepend Whether to prepend the directories + * @param string $prefix The prefix + * @param string[]|string $paths The PSR-0 root directories + * @param bool $prepend Whether to prepend the directories * * @return void */ public function add($prefix, $paths, $prepend = false) { - $paths = (array) $paths; if (!$prefix) { if ($prepend) { $this->fallbackDirsPsr0 = array_merge( - $paths, + (array) $paths, $this->fallbackDirsPsr0 ); } else { $this->fallbackDirsPsr0 = array_merge( $this->fallbackDirsPsr0, - $paths + (array) $paths ); } @@ -198,19 +201,19 @@ public function add($prefix, $paths, $prepend = false) $first = $prefix[0]; if (!isset($this->prefixesPsr0[$first][$prefix])) { - $this->prefixesPsr0[$first][$prefix] = $paths; + $this->prefixesPsr0[$first][$prefix] = (array) $paths; return; } if ($prepend) { $this->prefixesPsr0[$first][$prefix] = array_merge( - $paths, + (array) $paths, $this->prefixesPsr0[$first][$prefix] ); } else { $this->prefixesPsr0[$first][$prefix] = array_merge( $this->prefixesPsr0[$first][$prefix], - $paths + (array) $paths ); } } @@ -219,9 +222,9 @@ public function add($prefix, $paths, $prepend = false) * Registers a set of PSR-4 directories for a given namespace, either * appending or prepending to the ones previously set for this namespace. * - * @param string $prefix The prefix/namespace, with trailing '\\' - * @param list|string $paths The PSR-4 base directories - * @param bool $prepend Whether to prepend the directories + * @param string $prefix The prefix/namespace, with trailing '\\' + * @param string[]|string $paths The PSR-4 base directories + * @param bool $prepend Whether to prepend the directories * * @throws \InvalidArgumentException * @@ -229,18 +232,17 @@ public function add($prefix, $paths, $prepend = false) */ public function addPsr4($prefix, $paths, $prepend = false) { - $paths = (array) $paths; if (!$prefix) { // Register directories for the root namespace. if ($prepend) { $this->fallbackDirsPsr4 = array_merge( - $paths, + (array) $paths, $this->fallbackDirsPsr4 ); } else { $this->fallbackDirsPsr4 = array_merge( $this->fallbackDirsPsr4, - $paths + (array) $paths ); } } elseif (!isset($this->prefixDirsPsr4[$prefix])) { @@ -250,18 +252,18 @@ public function addPsr4($prefix, $paths, $prepend = false) throw new \InvalidArgumentException("A non-empty PSR-4 prefix must end with a namespace separator."); } $this->prefixLengthsPsr4[$prefix[0]][$prefix] = $length; - $this->prefixDirsPsr4[$prefix] = $paths; + $this->prefixDirsPsr4[$prefix] = (array) $paths; } elseif ($prepend) { // Prepend directories for an already registered namespace. $this->prefixDirsPsr4[$prefix] = array_merge( - $paths, + (array) $paths, $this->prefixDirsPsr4[$prefix] ); } else { // Append directories for an already registered namespace. $this->prefixDirsPsr4[$prefix] = array_merge( $this->prefixDirsPsr4[$prefix], - $paths + (array) $paths ); } } @@ -270,8 +272,8 @@ public function addPsr4($prefix, $paths, $prepend = false) * Registers a set of PSR-0 directories for a given prefix, * replacing any others previously set for this prefix. * - * @param string $prefix The prefix - * @param list|string $paths The PSR-0 base directories + * @param string $prefix The prefix + * @param string[]|string $paths The PSR-0 base directories * * @return void */ @@ -288,8 +290,8 @@ public function set($prefix, $paths) * Registers a set of PSR-4 directories for a given namespace, * replacing any others previously set for this namespace. * - * @param string $prefix The prefix/namespace, with trailing '\\' - * @param list|string $paths The PSR-4 base directories + * @param string $prefix The prefix/namespace, with trailing '\\' + * @param string[]|string $paths The PSR-4 base directories * * @throws \InvalidArgumentException * @@ -423,8 +425,7 @@ public function unregister() public function loadClass($class) { if ($file = $this->findFile($class)) { - $includeFile = self::$includeFile; - $includeFile($file); + includeFile($file); return true; } @@ -475,9 +476,9 @@ public function findFile($class) } /** - * Returns the currently registered loaders keyed by their corresponding vendor directories. + * Returns the currently registered loaders indexed by their corresponding vendor directories. * - * @return array + * @return self[] */ public static function getRegisteredLoaders() { @@ -554,26 +555,18 @@ private function findFileWithExtension($class, $ext) return false; } +} - /** - * @return void - */ - private static function initializeIncludeClosure() - { - if (self::$includeFile !== null) { - return; - } - - /** - * Scope isolated include. - * - * Prevents access to $this/self from included files. - * - * @param string $file - * @return void - */ - self::$includeFile = \Closure::bind(static function($file) { - include $file; - }, null, null); - } +/** + * Scope isolated include. + * + * Prevents access to $this/self from included files. + * + * @param string $file + * @return void + * @private + */ +function includeFile($file) +{ + include $file; } diff --git a/lib/vendor/composer/InstalledVersions.php b/lib/vendor/composer/InstalledVersions.php index 51e734a77..015819496 100644 --- a/lib/vendor/composer/InstalledVersions.php +++ b/lib/vendor/composer/InstalledVersions.php @@ -21,14 +21,12 @@ * See also https://getcomposer.org/doc/07-runtime.md#installed-versions * * To require its presence, you can require `composer-runtime-api ^2.0` - * - * @final */ class InstalledVersions { /** * @var mixed[]|null - * @psalm-var array{root: array{name: string, pretty_version: string, version: string, reference: string|null, type: string, install_path: string, aliases: string[], dev: bool}, versions: array}|array{}|null + * @psalm-var array{root: array{name: string, version: string, reference: string, pretty_version: string, aliases: string[], dev: bool, install_path: string, type: string}, versions: array}|array{}|null */ private static $installed; @@ -39,7 +37,7 @@ class InstalledVersions /** * @var array[] - * @psalm-var array}> + * @psalm-var array}> */ private static $installedByVendor = array(); @@ -98,7 +96,7 @@ public static function isInstalled($packageName, $includeDevRequirements = true) { foreach (self::getInstalled() as $installed) { if (isset($installed['versions'][$packageName])) { - return $includeDevRequirements || !isset($installed['versions'][$packageName]['dev_requirement']) || $installed['versions'][$packageName]['dev_requirement'] === false; + return $includeDevRequirements || empty($installed['versions'][$packageName]['dev_requirement']); } } @@ -119,7 +117,7 @@ public static function isInstalled($packageName, $includeDevRequirements = true) */ public static function satisfies(VersionParser $parser, $packageName, $constraint) { - $constraint = $parser->parseConstraints((string) $constraint); + $constraint = $parser->parseConstraints($constraint); $provided = $parser->parseConstraints(self::getVersionRanges($packageName)); return $provided->matches($constraint); @@ -243,7 +241,7 @@ public static function getInstallPath($packageName) /** * @return array - * @psalm-return array{name: string, pretty_version: string, version: string, reference: string|null, type: string, install_path: string, aliases: string[], dev: bool} + * @psalm-return array{name: string, version: string, reference: string, pretty_version: string, aliases: string[], dev: bool, install_path: string, type: string} */ public static function getRootPackage() { @@ -257,7 +255,7 @@ public static function getRootPackage() * * @deprecated Use getAllRawData() instead which returns all datasets for all autoloaders present in the process. getRawData only returns the first dataset loaded, which may not be what you expect. * @return array[] - * @psalm-return array{root: array{name: string, pretty_version: string, version: string, reference: string|null, type: string, install_path: string, aliases: string[], dev: bool}, versions: array} + * @psalm-return array{root: array{name: string, version: string, reference: string, pretty_version: string, aliases: string[], dev: bool, install_path: string, type: string}, versions: array} */ public static function getRawData() { @@ -280,7 +278,7 @@ public static function getRawData() * Returns the raw data of all installed.php which are currently loaded for custom implementations * * @return array[] - * @psalm-return list}> + * @psalm-return list}> */ public static function getAllRawData() { @@ -303,7 +301,7 @@ public static function getAllRawData() * @param array[] $data A vendor/composer/installed.php data set * @return void * - * @psalm-param array{root: array{name: string, pretty_version: string, version: string, reference: string|null, type: string, install_path: string, aliases: string[], dev: bool}, versions: array} $data + * @psalm-param array{root: array{name: string, version: string, reference: string, pretty_version: string, aliases: string[], dev: bool, install_path: string, type: string}, versions: array} $data */ public static function reload($data) { @@ -313,7 +311,7 @@ public static function reload($data) /** * @return array[] - * @psalm-return list}> + * @psalm-return list}> */ private static function getInstalled() { diff --git a/lib/vendor/composer/LICENSE b/lib/vendor/composer/LICENSE index f27399a04..62ecfd8d0 100644 --- a/lib/vendor/composer/LICENSE +++ b/lib/vendor/composer/LICENSE @@ -1,4 +1,3 @@ - Copyright (c) Nils Adermann, Jordi Boggiano Permission is hereby granted, free of charge, to any person obtaining a copy @@ -18,4 +17,3 @@ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - diff --git a/lib/vendor/composer/autoload_classmap.php b/lib/vendor/composer/autoload_classmap.php index 0fb0a2c19..b26f1b13b 100644 --- a/lib/vendor/composer/autoload_classmap.php +++ b/lib/vendor/composer/autoload_classmap.php @@ -2,7 +2,7 @@ // autoload_classmap.php @generated by Composer -$vendorDir = dirname(__DIR__); +$vendorDir = dirname(dirname(__FILE__)); $baseDir = dirname($vendorDir); return array( diff --git a/lib/vendor/composer/autoload_files.php b/lib/vendor/composer/autoload_files.php index 2fd444363..84462ead4 100644 --- a/lib/vendor/composer/autoload_files.php +++ b/lib/vendor/composer/autoload_files.php @@ -2,7 +2,7 @@ // autoload_files.php @generated by Composer -$vendorDir = dirname(__DIR__); +$vendorDir = dirname(dirname(__FILE__)); $baseDir = dirname($vendorDir); return array( diff --git a/lib/vendor/composer/autoload_namespaces.php b/lib/vendor/composer/autoload_namespaces.php index 15a2ff3ad..b7fc0125d 100644 --- a/lib/vendor/composer/autoload_namespaces.php +++ b/lib/vendor/composer/autoload_namespaces.php @@ -2,7 +2,7 @@ // autoload_namespaces.php @generated by Composer -$vendorDir = dirname(__DIR__); +$vendorDir = dirname(dirname(__FILE__)); $baseDir = dirname($vendorDir); return array( diff --git a/lib/vendor/composer/autoload_psr4.php b/lib/vendor/composer/autoload_psr4.php index 9dde0db04..cfe379c75 100644 --- a/lib/vendor/composer/autoload_psr4.php +++ b/lib/vendor/composer/autoload_psr4.php @@ -2,7 +2,7 @@ // autoload_psr4.php @generated by Composer -$vendorDir = dirname(__DIR__); +$vendorDir = dirname(dirname(__FILE__)); $baseDir = dirname($vendorDir); return array( diff --git a/lib/vendor/composer/autoload_real.php b/lib/vendor/composer/autoload_real.php index d220f05e5..acb4e1bc3 100644 --- a/lib/vendor/composer/autoload_real.php +++ b/lib/vendor/composer/autoload_real.php @@ -23,26 +23,56 @@ public static function getLoader() } spl_autoload_register(array('ComposerAutoloaderInitPublishPressPlanner', 'loadClassLoader'), true, true); - self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(__DIR__)); + self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(\dirname(__FILE__))); spl_autoload_unregister(array('ComposerAutoloaderInitPublishPressPlanner', 'loadClassLoader')); - require __DIR__ . '/autoload_static.php'; - call_user_func(\Composer\Autoload\ComposerStaticInitPublishPressPlanner::getInitializer($loader)); + $useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded()); + if ($useStaticLoader) { + require __DIR__ . '/autoload_static.php'; - $loader->register(true); + call_user_func(\Composer\Autoload\ComposerStaticInitPublishPressPlanner::getInitializer($loader)); + } else { + $map = require __DIR__ . '/autoload_namespaces.php'; + foreach ($map as $namespace => $path) { + $loader->set($namespace, $path); + } - $filesToLoad = \Composer\Autoload\ComposerStaticInitPublishPressPlanner::$files; - $requireFile = \Closure::bind(static function ($fileIdentifier, $file) { - if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) { - $GLOBALS['__composer_autoload_files'][$fileIdentifier] = true; + $map = require __DIR__ . '/autoload_psr4.php'; + foreach ($map as $namespace => $path) { + $loader->setPsr4($namespace, $path); + } - require $file; + $classMap = require __DIR__ . '/autoload_classmap.php'; + if ($classMap) { + $loader->addClassMap($classMap); } - }, null, null); - foreach ($filesToLoad as $fileIdentifier => $file) { - $requireFile($fileIdentifier, $file); + } + + $loader->register(true); + + if ($useStaticLoader) { + $includeFiles = Composer\Autoload\ComposerStaticInitPublishPressPlanner::$files; + } else { + $includeFiles = require __DIR__ . '/autoload_files.php'; + } + foreach ($includeFiles as $fileIdentifier => $file) { + composerRequirePublishPressPlanner($fileIdentifier, $file); } return $loader; } } + +/** + * @param string $fileIdentifier + * @param string $file + * @return void + */ +function composerRequirePublishPressPlanner($fileIdentifier, $file) +{ + if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) { + $GLOBALS['__composer_autoload_files'][$fileIdentifier] = true; + + require $file; + } +} diff --git a/lib/vendor/composer/installed.json b/lib/vendor/composer/installed.json index 51ee81a11..ca7e5238b 100644 --- a/lib/vendor/composer/installed.json +++ b/lib/vendor/composer/installed.json @@ -247,17 +247,17 @@ }, { "name": "publishpress/wordpress-reviews", - "version": "v1.1.19", - "version_normalized": "1.1.19.0", + "version": "v1.1.20", + "version_normalized": "1.1.20.0", "source": { "type": "git", "url": "https://github.com/publishpress/library-wordpress-reviews.git", - "reference": "028e573eb7c5da2455a7a823cabbbe5e3f89ca9c" + "reference": "6d0b687a66439721b0432ef1320fd818cd56309f" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/publishpress/library-wordpress-reviews/zipball/028e573eb7c5da2455a7a823cabbbe5e3f89ca9c", - "reference": "028e573eb7c5da2455a7a823cabbbe5e3f89ca9c", + "url": "https://api.github.com/repos/publishpress/library-wordpress-reviews/zipball/6d0b687a66439721b0432ef1320fd818cd56309f", + "reference": "6d0b687a66439721b0432ef1320fd818cd56309f", "shasum": "" }, "require": { @@ -276,12 +276,11 @@ "overtrue/phplint": "^2.1", "phpmd/phpmd": "^2.8", "publishpress/publishpress-plugin-builder": "^1.2", - "sebastian/phpcpd": "^5.0", "squizlabs/php_codesniffer": "^3.5", "wp-cli/i18n-command": "^2.2", "wp-cli/wp-cli": "^2.5" }, - "time": "2022-06-03T13:38:53+00:00", + "time": "2023-10-06T17:22:31+00:00", "type": "library", "installation-source": "dist", "autoload": { @@ -312,23 +311,23 @@ ], "support": { "issues": "https://github.com/publishpress/library-wordpress-reviews/issues", - "source": "https://github.com/publishpress/library-wordpress-reviews/tree/v1.1.19" + "source": "https://github.com/publishpress/library-wordpress-reviews/tree/v1.1.20" }, "install-path": "../publishpress/wordpress-reviews" }, { "name": "publishpress/wordpress-version-notices", - "version": "2.1.2", - "version_normalized": "2.1.2.0", + "version": "2.1.3", + "version_normalized": "2.1.3.0", "source": { "type": "git", "url": "https://github.com/publishpress/library-wordpress-version-notices.git", - "reference": "b0efcf04ab9d37304e38673bee471116e44cdb0e" + "reference": "8e54558d2427a0f93174ccbc1d02c1ba7e2abc8d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/publishpress/library-wordpress-version-notices/zipball/b0efcf04ab9d37304e38673bee471116e44cdb0e", - "reference": "b0efcf04ab9d37304e38673bee471116e44cdb0e", + "url": "https://api.github.com/repos/publishpress/library-wordpress-version-notices/zipball/8e54558d2427a0f93174ccbc1d02c1ba7e2abc8d", + "reference": "8e54558d2427a0f93174ccbc1d02c1ba7e2abc8d", "shasum": "" }, "require": { @@ -350,7 +349,7 @@ "overtrue/phplint": "^2.1", "publishpress/version-loader-generator": "^1.0" }, - "time": "2023-05-30T19:00:42+00:00", + "time": "2023-10-11T15:04:44+00:00", "type": "library", "extra": { "generator": { @@ -381,7 +380,7 @@ "description": "Library for displaying version notices for Pro plugins in WordPress.", "support": { "issues": "https://github.com/publishpress/library-wordpress-version-notices/issues", - "source": "https://github.com/publishpress/library-wordpress-version-notices/tree/2.1.2" + "source": "https://github.com/publishpress/library-wordpress-version-notices/tree/2.1.3" }, "install-path": "../publishpress/wordpress-version-notices" }, diff --git a/lib/vendor/composer/installed.php b/lib/vendor/composer/installed.php index 1c9888fd2..87b0d765f 100644 --- a/lib/vendor/composer/installed.php +++ b/lib/vendor/composer/installed.php @@ -1,76 +1,76 @@ array( - 'name' => '__root__', 'pretty_version' => 'dev-master', 'version' => 'dev-master', - 'reference' => '7571f9bf2f82d44c76f8d99a7c67728501941141', 'type' => 'library', 'install_path' => __DIR__ . '/../../', 'aliases' => array(), + 'reference' => '97a97e714290a52f6d1504413e5bb53a45963b42', + 'name' => '__root__', 'dev' => true, ), 'versions' => array( '__root__' => array( 'pretty_version' => 'dev-master', 'version' => 'dev-master', - 'reference' => '7571f9bf2f82d44c76f8d99a7c67728501941141', 'type' => 'library', 'install_path' => __DIR__ . '/../../', 'aliases' => array(), + 'reference' => '97a97e714290a52f6d1504413e5bb53a45963b42', 'dev_requirement' => false, ), 'publishpress/instance-protection' => array( 'pretty_version' => '2.0.1', 'version' => '2.0.1.0', - 'reference' => '4193f84a8a680bf4c0d40cc64976ddcadd92158a', 'type' => 'library', 'install_path' => __DIR__ . '/../publishpress/instance-protection', 'aliases' => array(), + 'reference' => '4193f84a8a680bf4c0d40cc64976ddcadd92158a', 'dev_requirement' => false, ), 'publishpress/pimple-pimple' => array( 'pretty_version' => '3.5.0.10', 'version' => '3.5.0.10', - 'reference' => 'f2784f4b1ccaf195b373a46a74cf3742e7c9f826', 'type' => 'library', 'install_path' => __DIR__ . '/../publishpress/pimple-pimple', 'aliases' => array(), + 'reference' => 'f2784f4b1ccaf195b373a46a74cf3742e7c9f826', 'dev_requirement' => false, ), 'publishpress/psr-container' => array( 'pretty_version' => '2.0.1.10', 'version' => '2.0.1.10', - 'reference' => '4ccd2cb058e7b93e96186791ca25870a02e35c5d', 'type' => 'library', 'install_path' => __DIR__ . '/../publishpress/psr-container', 'aliases' => array(), + 'reference' => '4ccd2cb058e7b93e96186791ca25870a02e35c5d', 'dev_requirement' => false, ), 'publishpress/wordpress-reviews' => array( - 'pretty_version' => 'v1.1.19', - 'version' => '1.1.19.0', - 'reference' => '028e573eb7c5da2455a7a823cabbbe5e3f89ca9c', + 'pretty_version' => 'v1.1.20', + 'version' => '1.1.20.0', 'type' => 'library', 'install_path' => __DIR__ . '/../publishpress/wordpress-reviews', 'aliases' => array(), + 'reference' => '6d0b687a66439721b0432ef1320fd818cd56309f', 'dev_requirement' => false, ), 'publishpress/wordpress-version-notices' => array( - 'pretty_version' => '2.1.2', - 'version' => '2.1.2.0', - 'reference' => 'b0efcf04ab9d37304e38673bee471116e44cdb0e', + 'pretty_version' => '2.1.3', + 'version' => '2.1.3.0', 'type' => 'library', 'install_path' => __DIR__ . '/../publishpress/wordpress-version-notices', 'aliases' => array(), + 'reference' => '8e54558d2427a0f93174ccbc1d02c1ba7e2abc8d', 'dev_requirement' => false, ), 'sabre/vobject' => array( 'pretty_version' => '3.5.3', 'version' => '3.5.3.0', - 'reference' => '129d80533a9ec0d9cacfb50b51180c34edb6874c', 'type' => 'library', 'install_path' => __DIR__ . '/../sabre/vobject', 'aliases' => array(), + 'reference' => '129d80533a9ec0d9cacfb50b51180c34edb6874c', 'dev_requirement' => false, ), ), diff --git a/lib/vendor/publishpress/wordpress-reviews/ReviewsController.php b/lib/vendor/publishpress/wordpress-reviews/ReviewsController.php index 1d4445a37..fcff08f8d 100644 --- a/lib/vendor/publishpress/wordpress-reviews/ReviewsController.php +++ b/lib/vendor/publishpress/wordpress-reviews/ReviewsController.php @@ -39,6 +39,10 @@ use Exception; +if (class_exists('PublishPress\\WordPressReviews\\ReviewsController')) { + return; +} + /** * Class ReviewsController * diff --git a/lib/vendor/publishpress/wordpress-version-notices/src/Module/MenuLink/Module.php b/lib/vendor/publishpress/wordpress-version-notices/src/Module/MenuLink/Module.php index a4a3d8727..b1e969bb6 100644 --- a/lib/vendor/publishpress/wordpress-version-notices/src/Module/MenuLink/Module.php +++ b/lib/vendor/publishpress/wordpress-version-notices/src/Module/MenuLink/Module.php @@ -63,7 +63,7 @@ public function __construct(TemplateLoaderInterface $templateLoader) public function init() { add_action('admin_head', [$this, 'adminHeadAddStyle']); - add_action('init', [$this, 'collectTheSettings'], 5); + add_action('init', [$this, 'collectTheSettings'], 50); add_action('admin_menu', [$this, 'addMenuLink'], 20); add_action('admin_print_scripts', [$this, 'setUpgradeMenuLink'], 9999); } diff --git a/lib/vendor/publishpress/wordpress-version-notices/src/Module/TopNotice/Module.php b/lib/vendor/publishpress/wordpress-version-notices/src/Module/TopNotice/Module.php index d103be86c..e8106752a 100644 --- a/lib/vendor/publishpress/wordpress-version-notices/src/Module/TopNotice/Module.php +++ b/lib/vendor/publishpress/wordpress-version-notices/src/Module/TopNotice/Module.php @@ -64,7 +64,7 @@ public function init() { add_action(self::DISPLAY_ACTION, [$this, 'display'], 10, 2); add_action('in_admin_header', [$this, 'displayTopNotice']); - add_action('admin_init', [$this, 'collectTheSettings'], 5); + add_action('admin_init', [$this, 'collectTheSettings'], 50); add_action('admin_head', [$this, 'adminHeadAddStyle']); } diff --git a/lib/vendor/publishpress/wordpress-version-notices/src/autoload.php b/lib/vendor/publishpress/wordpress-version-notices/src/autoload.php index a0d2e1d5e..2d1a2ef8e 100644 --- a/lib/vendor/publishpress/wordpress-version-notices/src/autoload.php +++ b/lib/vendor/publishpress/wordpress-version-notices/src/autoload.php @@ -10,7 +10,7 @@ add_action('plugins_loaded', function () { if (! defined('PP_VERSION_NOTICES_LOADED')) { - define('PP_VERSION_NOTICES_VERSION', '2.1.1'); + define('PP_VERSION_NOTICES_VERSION', '2.1.3'); define('PP_VERSION_NOTICES_BASE_PATH', __DIR__ . '/../'); define('PP_VERSION_NOTICES_SRC_PATH', __DIR__); diff --git a/lib/vendor/publishpress/wordpress-version-notices/src/include.php b/lib/vendor/publishpress/wordpress-version-notices/src/include.php index 21234f713..0ab7e0725 100644 --- a/lib/vendor/publishpress/wordpress-version-notices/src/include.php +++ b/lib/vendor/publishpress/wordpress-version-notices/src/include.php @@ -16,7 +16,7 @@ return; } -if (! function_exists(__NAMESPACE__ . '\register2Dot1Dot2')) { +if (! function_exists(__NAMESPACE__ . '\register2Dot1Dot3')) { if (! defined('PUBLISHPRESS_WORDPRESS_VERSION_NOTICES_INCLUDED')) { define('PUBLISHPRESS_WORDPRESS_VERSION_NOTICES_INCLUDED', __DIR__); } @@ -27,24 +27,24 @@ add_action('plugins_loaded', [Versions::class, 'initializeLatestVersion'], -150, 0); } - add_action('plugins_loaded', __NAMESPACE__ . '\register2Dot1Dot2', -190, 0); + add_action('plugins_loaded', __NAMESPACE__ . '\register2Dot1Dot3', -190, 0); - function register2Dot1Dot2() + function register2Dot1Dot3() { if (! class_exists('PublishPress\WordpressVersionNotices\ServicesProvider')) { $versions = Versions::getInstance(); - $versions->register('2.1.2', __NAMESPACE__ . '\initialize2Dot1Dot2'); + $versions->register('2.1.3', __NAMESPACE__ . '\initialize2Dot1Dot3'); } } - function initialize2Dot1Dot2() + function initialize2Dot1Dot3() { require_once __DIR__ . '/autoload.php'; if (! defined('PUBLISHPRESS_WORDPRESS_VERSION_NOTICES_VERSION')) { - define('PUBLISHPRESS_WORDPRESS_VERSION_NOTICES_VERSION', '2.1.2'); + define('PUBLISHPRESS_WORDPRESS_VERSION_NOTICES_VERSION', '2.1.3'); } - do_action('publishpress_wordpress_version_notices_2Dot1Dot2_initialized'); + do_action('publishpress_wordpress_version_notices_2Dot1Dot3_initialized'); } } diff --git a/modules/calendar/calendar.php b/modules/calendar/calendar.php index 3f21b43f2..46eb6a32d 100644 --- a/modules/calendar/calendar.php +++ b/modules/calendar/calendar.php @@ -186,6 +186,7 @@ public function __construct() ], 'messages' => [ 'post-date-updated' => __('Post date updated.', 'publishpress'), + 'status-updated' => __('Post status updated.', 'publishpress'), 'update-error' => __( 'There was an error updating the post. Please try again.', 'publishpress' @@ -544,7 +545,7 @@ protected function getPostStatusOptions() } $postStatuses[] = [ 'value' => esc_attr($status->slug), - 'text' => esc_html($status->name), + 'text' => esc_html($status->label), ]; } @@ -651,6 +652,7 @@ public function enqueue_admin_scripts() true ); + // TODO: Replace react and react-dom with the wp.element dependency wp_enqueue_script( 'publishpress-async-calendar-js', $this->module_url . 'lib/async-calendar/js/index.min.js', @@ -664,6 +666,7 @@ public function enqueue_admin_scripts() 'jquery-ui-droppable', 'jquery-inputmask', 'wp-i18n', + 'wp-element', 'date_i18n', ], PUBLISHPRESS_VERSION, @@ -724,7 +727,7 @@ public function enqueue_admin_scripts() $calendar_request_filter['post_type'] = $postType; } } - + if (isset($userFilters['weeks'])) { $weeks = sanitize_key($userFilters['weeks']); @@ -1695,7 +1698,7 @@ protected function get_post_status_options($post_status) global $publishpress; // Check if we have a custom icon for this post_status - $term = $publishpress->custom_status->get_custom_status_by('slug', $post_status); + $term = $publishpress->getPostStatusBy('slug', $post_status); // Icon $icon = null; @@ -1716,9 +1719,10 @@ protected function get_post_status_options($post_status) } // Color - $color = PP_Custom_Status::DEFAULT_COLOR; if (! empty($term->color)) { $color = $term->color; + } else { + $color = (class_exists('PublishPress_Statuses')) ? \PublishPress_Statuses::DEFAULT_COLOR : '#78645a'; } return [ @@ -2258,7 +2262,7 @@ public function getCalendarDataForMultipleWeeks($args = [], $context = 'dashboar if (isset($this->module->options->sort_by)) { add_filter('posts_orderby', [$this, 'filterPostsOrderBy'], 10); } - + $post_results = new WP_Query($args); $posts = []; @@ -2330,7 +2334,6 @@ public function get_calendar_posts_for_week($args = [], $context = 'dashboard') $args['suppress_filters'] = true; } } - // The WP functions for printing the category and author assign a value of 0 to the default // options, but passing this to the query is bad (trashed and auto-draft posts appear!), so // unset those arguments. @@ -2710,9 +2713,11 @@ public function settings_ics_subscription_public_visibility_option() */ public function settings_show_posts_publish_time_option() { + global $publishpress; + $field_name = esc_attr($this->module->options_group_name) . '[show_posts_publish_time]'; - $customStatuses = PP_Custom_Status::getCustomStatuses(); + $customStatuses = $publishpress->getCustomStatuses(); if (empty($customStatuses)) { $statuses = [ @@ -2723,7 +2728,7 @@ public function settings_show_posts_publish_time_option() $statuses = []; foreach ($customStatuses as $status) { - $statuses[$status->slug] = $status->name; + $statuses[$status->slug] = ['title' => $status->label, 'status_obj' => $status]; } } @@ -2735,21 +2740,77 @@ public function settings_show_posts_publish_time_option() ]; } - foreach ($statuses as $status => $title) { - $id = esc_attr($status) . '-display-publish-time'; + if (empty($customStatuses)) { + foreach ($statuses as $status) { + $id = esc_attr($status) . '-display-publish-time'; + + echo '
'; + + echo '
'; + } + } else { + echo ''; + + echo '
'; + + foreach ($statuses as $status => $arr_status) { + $id = esc_attr($status) . '-display-publish-time'; + + echo '
'; + + if (class_exists('PublishPress_Statuses')) { + $_args = [ + 'action' => 'edit-status', + 'return_module' => 'pp-calendar-settings', + ]; + + $_args['name'] = $arr_status['status_obj']->name; - if (isset($this->module->options->show_posts_publish_time[$status])) { - checked($this->module->options->show_posts_publish_time[$status], 'on'); + $item_edit_link = esc_url( + PublishPress_Statuses::get_link( + $_args + ) + ); + + echo ' ' . __('edit') . ''; + } + + echo '
'; } - // Defining post_type_supports in the functions.php file or similar should disable the checkbox - disabled(post_type_supports($status, $this->module->post_type_support), true); - echo ' type="checkbox" value="on" />   ' . esc_html($title) . ''; - echo '
'; + echo '
'; } } @@ -3098,8 +3159,8 @@ public function searchAuthors() * @param array $args */ $results = apply_filters( - 'publishpress_search_authors_with_args_results_pre_search', - [], + 'publishpress_search_authors_with_args_results_pre_search', + [], ['search' => $queryText, 'role__in' => $user_roles] ); } @@ -3356,7 +3417,7 @@ public function fetchCalendarDataJson() * Update the current user's filters for calendar display with the filters in $_GET($request_filter). The filters * in $_GET($request_filter) take precedence over the current users filters if they exist. * @param array $request_filter - * + * * @return array $filters updated filter */ public function update_user_filters($request_filter) @@ -3416,7 +3477,7 @@ private function getPostStatusName($postStatusSlug) foreach ($postStatuses as $postStatus) { if ($postStatus->slug === $postStatusSlug) { - return $postStatus->name; + return $postStatus->label; } } @@ -3555,7 +3616,7 @@ public function getPostData() public function getPostTypeFields() { global $publishpress; - + if (! wp_verify_nonce(sanitize_text_field($_GET['nonce']), 'publishpress-calendar-get-data')) { wp_send_json([], 403); } @@ -3981,7 +4042,7 @@ public function calendar_filter_options($select_id, $select_name, $filters) echo "'; + ) . '>' . esc_html($post_status->label) . ''; } ?> diff --git a/modules/calendar/lib/async-calendar/js/AsyncCalendar.jsx b/modules/calendar/lib/async-calendar/js/AsyncCalendar.jsx index 3bb43a722..010e45c4f 100644 --- a/modules/calendar/lib/async-calendar/js/AsyncCalendar.jsx +++ b/modules/calendar/lib/async-calendar/js/AsyncCalendar.jsx @@ -15,7 +15,7 @@ export default function AsyncCalendar(props) { let statusValue = (props.requestFilter.post_status) ? props.requestFilter.post_status : ''; let typesValue = (props.requestFilter.post_type) ? props.requestFilter.post_type : ''; let weeksValue = (props.requestFilter.weeks) ? props.requestFilter.weeks : props.numberOfWeeksToDisplay; - + let categoryValue = ''; if (props.requestFilter.category && props.requestFilter.category.value) { categoryValue = props.requestFilter.category.value; @@ -25,12 +25,12 @@ export default function AsyncCalendar(props) { if (props.requestFilter.post_tag && props.requestFilter.post_tag.value) { postTagValue = props.requestFilter.post_tag.value; } - + let authorValue = ''; if (props.requestFilter.post_author && props.requestFilter.post_author.value) { authorValue = props.requestFilter.post_author.value; } - + const [firstDateToDisplay, setFirstDateToDisplay] = React.useState(getBeginDateOfWeekByDate(props.firstDateToDisplay, props.weekStartsOnSunday)); const [numberOfWeeksToDisplay, setNumberOfWeeksToDisplay] = React.useState(weeksValue); const [itemsByDate, setItemsByDate] = React.useState(props.items); @@ -454,7 +454,7 @@ export default function AsyncCalendar(props) { if (dayIndexInTheRow === 7) { dayIndexInTheRow = 0; tableRows.push( - {rowCells} + {rowCells} ); } diff --git a/modules/calendar/lib/async-calendar/js/DayCell.jsx b/modules/calendar/lib/async-calendar/js/DayCell.jsx index ebee9272d..ec6f4b0f7 100644 --- a/modules/calendar/lib/async-calendar/js/DayCell.jsx +++ b/modules/calendar/lib/async-calendar/js/DayCell.jsx @@ -55,7 +55,6 @@ export default function DayCell(props) { return ( {label} ); diff --git a/modules/calendar/lib/async-calendar/js/Functions.jsx b/modules/calendar/lib/async-calendar/js/Functions.jsx index 27cdded8d..73362ebb9 100644 --- a/modules/calendar/lib/async-calendar/js/Functions.jsx +++ b/modules/calendar/lib/async-calendar/js/Functions.jsx @@ -136,9 +136,9 @@ export function getDateWithNoTimezoneOffset(dateString) { export function getPostLinksElement(linkData, handleOnClick) { if (linkData.url) { - return ({linkData.label}); + return ({linkData.label}); } else if (linkData.action) { - return ( handleOnClick(e, linkData)}>{linkData.label}); + return ( handleOnClick(e, linkData)}>{linkData.label}); } } diff --git a/modules/calendar/lib/async-calendar/js/ItemFormPopup.jsx b/modules/calendar/lib/async-calendar/js/ItemFormPopup.jsx index c0e58a023..0a7116f5a 100644 --- a/modules/calendar/lib/async-calendar/js/ItemFormPopup.jsx +++ b/modules/calendar/lib/async-calendar/js/ItemFormPopup.jsx @@ -241,7 +241,7 @@ export default function ItemFormPopup(props) { } fieldRows.push( - + {field} @@ -389,11 +389,11 @@ export default function ItemFormPopup(props) { linkData = formLinks[linkName]; if (savingLink === linkData.id) { - links.push({linkData.labelLoading}); + links.push({linkData.labelLoading}); } else { links.push(getPostLinksElement(linkData, handleLinkOnClick)); } - links.push(|); + links.push(|); } links.pop(); diff --git a/modules/calendar/lib/async-calendar/js/ItemPopup.jsx b/modules/calendar/lib/async-calendar/js/ItemPopup.jsx index f6480e279..6bddbff57 100644 --- a/modules/calendar/lib/async-calendar/js/ItemPopup.jsx +++ b/modules/calendar/lib/async-calendar/js/ItemPopup.jsx @@ -123,7 +123,7 @@ export default function ItemPopup(props) { } fieldRows.push( - + {dataProperty.label}: {field} @@ -155,15 +155,15 @@ export default function ItemPopup(props) { if (linkData.url) { links.push( - {linkData.label} + {linkData.label} ); } else if (linkData.action) { links.push( - handleOnClick(e, linkData)}>{linkData.label} + handleOnClick(e, linkData)}>{linkData.label} ); } - links.push(|); + links.push(|); } links.pop(); diff --git a/modules/calendar/lib/async-calendar/js/Select.jsx b/modules/calendar/lib/async-calendar/js/Select.jsx index 71e9f4752..5f2dd3037 100644 --- a/modules/calendar/lib/async-calendar/js/Select.jsx +++ b/modules/calendar/lib/async-calendar/js/Select.jsx @@ -86,7 +86,7 @@ export default function Select(props) { if (props.options) { options = props.options.map(option => { - return + return }); } @@ -98,6 +98,7 @@ export default function Select(props) { className += props.metadata ? 'pp-calendar-form-metafied ' + props.post_types : ''; return (