diff --git a/common/css/publishpress-admin.css b/common/css/publishpress-admin.css index 8e7b2d902..dc496b2ca 100644 --- a/common/css/publishpress-admin.css +++ b/common/css/publishpress-admin.css @@ -244,6 +244,10 @@ Status color box */ float: left; } +.wrap.publishpress-admin .nav-tab-wrapper a { + margin-top: 10px; +} + .pp-admin-notice { padding: 10px !important; line-height: 18px; diff --git a/common/js/pp_date.js b/common/js/pp_date.js index 0be9bff56..80c44e8a7 100644 --- a/common/js/pp_date.js +++ b/common/js/pp_date.js @@ -54,6 +54,9 @@ jQuery(document).ready(function ($) { controlType: 'select', altFieldTimeOnly: false }); + if (self.hasClass('future-date')) { + options.minDate = new Date(); + } self.datetimepicker(options); }); diff --git a/common/php/class-module.php b/common/php/class-module.php index d853d4783..20225f3e7 100644 --- a/common/php/class-module.php +++ b/common/php/class-module.php @@ -196,6 +196,71 @@ public function get_post_statuses() return $publishpress->getPostStatuses(); } + + + /** + * Returns the CSS class name and color for the given custom status. + * It reutrns an array with the following keys: + * - icon + * - color + * + * @param string $post_status + * + * @return array + */ + public function get_post_status_options($post_status) + { + global $publishpress; + + // Check if we have a custom icon for this post_status + $term = $publishpress->getPostStatusBy('slug', $post_status); + + // Icon + $icon = null; + if (! empty($term->icon)) { + $icon = $term->icon; + } else { + // Add an icon for the items + $default_icons = [ + 'publish' => 'dashicons-yes', + 'future' => 'dashicons-calendar-alt', + 'private' => 'dashicons-lock', + 'draft' => 'dashicons-media-default', + 'pending' => 'dashicons-clock', + 'auto-draft' => 'dashicons-edit', + ]; + + $icon = isset($default_icons[$post_status]) ? $default_icons[$post_status] : 'dashicons-edit'; + } + + // Color + if (! empty($term->color)) { + $color = $term->color; + } else { + $default_status_colors = [ + 'pitch' => '#cc0000', + 'assigned' => '#00bcc5', + 'in-progress' => '#ccc500', + 'draft' => '#f91d84', + 'pending' => '#d87200', + 'private' => '#000000', + 'future' => '#655997', + 'publish' => '#655997', + ]; + + if (isset($default_status_colors[$post_status])) { + $color = $default_status_colors[$post_status]; + } else { + $color = (class_exists('PublishPress_Statuses')) ? \PublishPress_Statuses::DEFAULT_COLOR : '#78645a'; + } + } + + return [ + 'color' => $color, + 'icon' => $icon, + ]; + } + /** * Get core's 'draft' and 'pending' post statuses, but include our special attributes * @@ -437,7 +502,7 @@ public function print_ajax_response($status, $message = '', $data = null) */ protected function is_whitelisted_functional_view($module_name = null) { - $whitelisted_pages = ['pp-calendar', 'pp-content-overview', 'pp-notif-log', 'pp-modules-settings']; + $whitelisted_pages = ['pp-calendar', 'pp-content-overview', 'pp-content-board', 'pp-notif-log', 'pp-modules-settings']; if (isset($_GET['page']) && in_array($_GET['page'], $whitelisted_pages)) { return true; diff --git a/composer.lock b/composer.lock index b4765a12e..9e712d0ba 100644 --- a/composer.lock +++ b/composer.lock @@ -1542,16 +1542,16 @@ }, { "name": "doctrine/common", - "version": "3.4.3", + "version": "3.4.4", "source": { "type": "git", "url": "https://github.com/doctrine/common.git", - "reference": "8b5e5650391f851ed58910b3e3d48a71062eeced" + "reference": "0aad4b7ab7ce8c6602dfbb1e1a24581275fb9d1a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/common/zipball/8b5e5650391f851ed58910b3e3d48a71062eeced", - "reference": "8b5e5650391f851ed58910b3e3d48a71062eeced", + "url": "https://api.github.com/repos/doctrine/common/zipball/0aad4b7ab7ce8c6602dfbb1e1a24581275fb9d1a", + "reference": "0aad4b7ab7ce8c6602dfbb1e1a24581275fb9d1a", "shasum": "" }, "require": { @@ -1613,7 +1613,7 @@ ], "support": { "issues": "https://github.com/doctrine/common/issues", - "source": "https://github.com/doctrine/common/tree/3.4.3" + "source": "https://github.com/doctrine/common/tree/3.4.4" }, "funding": [ { @@ -1629,20 +1629,20 @@ "type": "tidelift" } ], - "time": "2022-10-09T11:47:59+00:00" + "time": "2024-04-16T13:35:33+00:00" }, { "name": "doctrine/dbal", - "version": "3.8.3", + "version": "3.8.4", "source": { "type": "git", "url": "https://github.com/doctrine/dbal.git", - "reference": "db922ba9436b7b18a23d1653a0b41ff2369ca41c" + "reference": "b05e48a745f722801f55408d0dbd8003b403dbbd" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/dbal/zipball/db922ba9436b7b18a23d1653a0b41ff2369ca41c", - "reference": "db922ba9436b7b18a23d1653a0b41ff2369ca41c", + "url": "https://api.github.com/repos/doctrine/dbal/zipball/b05e48a745f722801f55408d0dbd8003b403dbbd", + "reference": "b05e48a745f722801f55408d0dbd8003b403dbbd", "shasum": "" }, "require": { @@ -1726,7 +1726,7 @@ ], "support": { "issues": "https://github.com/doctrine/dbal/issues", - "source": "https://github.com/doctrine/dbal/tree/3.8.3" + "source": "https://github.com/doctrine/dbal/tree/3.8.4" }, "funding": [ { @@ -1742,7 +1742,7 @@ "type": "tidelift" } ], - "time": "2024-03-03T15:55:06+00:00" + "time": "2024-04-25T07:04:44+00:00" }, { "name": "doctrine/deprecations", @@ -2124,16 +2124,16 @@ }, { "name": "doctrine/orm", - "version": "2.19.3", + "version": "2.19.5", "source": { "type": "git", "url": "https://github.com/doctrine/orm.git", - "reference": "1a5a4c674a416b4fdf76833c627c5e7f58bbb890" + "reference": "94986af28452da42a46a4489d1c958a2e5d710e5" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/orm/zipball/1a5a4c674a416b4fdf76833c627c5e7f58bbb890", - "reference": "1a5a4c674a416b4fdf76833c627c5e7f58bbb890", + "url": "https://api.github.com/repos/doctrine/orm/zipball/94986af28452da42a46a4489d1c958a2e5d710e5", + "reference": "94986af28452da42a46a4489d1c958a2e5d710e5", "shasum": "" }, "require": { @@ -2219,9 +2219,9 @@ ], "support": { "issues": "https://github.com/doctrine/orm/issues", - "source": "https://github.com/doctrine/orm/tree/2.19.3" + "source": "https://github.com/doctrine/orm/tree/2.19.5" }, - "time": "2024-03-21T11:01:42+00:00" + "time": "2024-04-30T06:49:54+00:00" }, { "name": "doctrine/persistence", @@ -3292,28 +3292,35 @@ }, { "name": "phpdocumentor/reflection-docblock", - "version": "5.3.0", + "version": "5.4.0", "source": { "type": "git", "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git", - "reference": "622548b623e81ca6d78b721c5e029f4ce664f170" + "reference": "298d2febfe79d03fe714eb871d5538da55205b1a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/622548b623e81ca6d78b721c5e029f4ce664f170", - "reference": "622548b623e81ca6d78b721c5e029f4ce664f170", + "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/298d2febfe79d03fe714eb871d5538da55205b1a", + "reference": "298d2febfe79d03fe714eb871d5538da55205b1a", "shasum": "" }, "require": { + "doctrine/deprecations": "^1.1", "ext-filter": "*", - "php": "^7.2 || ^8.0", + "php": "^7.4 || ^8.0", "phpdocumentor/reflection-common": "^2.2", - "phpdocumentor/type-resolver": "^1.3", + "phpdocumentor/type-resolver": "^1.7", + "phpstan/phpdoc-parser": "^1.7", "webmozart/assert": "^1.9.1" }, "require-dev": { - "mockery/mockery": "~1.3.2", - "psalm/phar": "^4.8" + "mockery/mockery": "~1.3.5", + "phpstan/extension-installer": "^1.1", + "phpstan/phpstan": "^1.8", + "phpstan/phpstan-mockery": "^1.1", + "phpstan/phpstan-webmozart-assert": "^1.2", + "phpunit/phpunit": "^9.5", + "vimeo/psalm": "^5.13" }, "type": "library", "extra": { @@ -3337,15 +3344,15 @@ }, { "name": "Jaap van Otterdijk", - "email": "account@ijaap.nl" + "email": "opensource@ijaap.nl" } ], "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.", "support": { "issues": "https://github.com/phpDocumentor/ReflectionDocBlock/issues", - "source": "https://github.com/phpDocumentor/ReflectionDocBlock/tree/5.3.0" + "source": "https://github.com/phpDocumentor/ReflectionDocBlock/tree/5.4.0" }, - "time": "2021-10-19T17:43:47+00:00" + "time": "2024-04-09T21:13:58+00:00" }, { "name": "phpdocumentor/type-resolver", @@ -3407,16 +3414,16 @@ }, { "name": "phpstan/phpdoc-parser", - "version": "1.28.0", + "version": "1.29.0", "source": { "type": "git", "url": "https://github.com/phpstan/phpdoc-parser.git", - "reference": "cd06d6b1a1b3c75b0b83f97577869fd85a3cd4fb" + "reference": "536889f2b340489d328f5ffb7b02bb6b183ddedc" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phpstan/phpdoc-parser/zipball/cd06d6b1a1b3c75b0b83f97577869fd85a3cd4fb", - "reference": "cd06d6b1a1b3c75b0b83f97577869fd85a3cd4fb", + "url": "https://api.github.com/repos/phpstan/phpdoc-parser/zipball/536889f2b340489d328f5ffb7b02bb6b183ddedc", + "reference": "536889f2b340489d328f5ffb7b02bb6b183ddedc", "shasum": "" }, "require": { @@ -3448,9 +3455,9 @@ "description": "PHPDoc parser with support for nullable, intersection and generic types", "support": { "issues": "https://github.com/phpstan/phpdoc-parser/issues", - "source": "https://github.com/phpstan/phpdoc-parser/tree/1.28.0" + "source": "https://github.com/phpstan/phpdoc-parser/tree/1.29.0" }, - "time": "2024-04-03T18:51:33+00:00" + "time": "2024-05-06T12:04:23+00:00" }, { "name": "phpunit/php-code-coverage", @@ -3751,16 +3758,16 @@ }, { "name": "phpunit/phpunit", - "version": "8.5.37", + "version": "8.5.38", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/phpunit.git", - "reference": "fce30f306cee78be33ba00c8f9a853f41db0491b" + "reference": "1ecad678646c817a29e55a32c930f3601c3f5a8c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/fce30f306cee78be33ba00c8f9a853f41db0491b", - "reference": "fce30f306cee78be33ba00c8f9a853f41db0491b", + "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/1ecad678646c817a29e55a32c930f3601c3f5a8c", + "reference": "1ecad678646c817a29e55a32c930f3601c3f5a8c", "shasum": "" }, "require": { @@ -3829,7 +3836,7 @@ "support": { "issues": "https://github.com/sebastianbergmann/phpunit/issues", "security": "https://github.com/sebastianbergmann/phpunit/security/policy", - "source": "https://github.com/sebastianbergmann/phpunit/tree/8.5.37" + "source": "https://github.com/sebastianbergmann/phpunit/tree/8.5.38" }, "funding": [ { @@ -3845,7 +3852,7 @@ "type": "tidelift" } ], - "time": "2024-03-06T06:27:42+00:00" + "time": "2024-04-05T04:31:23+00:00" }, { "name": "psr/cache", @@ -4048,20 +4055,20 @@ }, { "name": "psr/http-factory", - "version": "1.0.2", + "version": "1.1.0", "source": { "type": "git", "url": "https://github.com/php-fig/http-factory.git", - "reference": "e616d01114759c4c489f93b099585439f795fe35" + "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/php-fig/http-factory/zipball/e616d01114759c4c489f93b099585439f795fe35", - "reference": "e616d01114759c4c489f93b099585439f795fe35", + "url": "https://api.github.com/repos/php-fig/http-factory/zipball/2b4765fddfe3b508ac62f829e852b1501d3f6e8a", + "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a", "shasum": "" }, "require": { - "php": ">=7.0.0", + "php": ">=7.1", "psr/http-message": "^1.0 || ^2.0" }, "type": "library", @@ -4085,7 +4092,7 @@ "homepage": "https://www.php-fig.org/" } ], - "description": "Common interfaces for PSR-7 HTTP message factories", + "description": "PSR-17: Common interfaces for PSR-7 HTTP message factories", "keywords": [ "factory", "http", @@ -4097,9 +4104,9 @@ "response" ], "support": { - "source": "https://github.com/php-fig/http-factory/tree/1.0.2" + "source": "https://github.com/php-fig/http-factory" }, - "time": "2023-04-10T20:10:41+00:00" + "time": "2024-04-15T12:06:14+00:00" }, { "name": "psr/http-message", @@ -4340,20 +4347,20 @@ }, { "name": "ramsey/uuid", - "version": "4.7.5", + "version": "4.7.6", "source": { "type": "git", "url": "https://github.com/ramsey/uuid.git", - "reference": "5f0df49ae5ad6efb7afa69e6bfab4e5b1e080d8e" + "reference": "91039bc1faa45ba123c4328958e620d382ec7088" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/ramsey/uuid/zipball/5f0df49ae5ad6efb7afa69e6bfab4e5b1e080d8e", - "reference": "5f0df49ae5ad6efb7afa69e6bfab4e5b1e080d8e", + "url": "https://api.github.com/repos/ramsey/uuid/zipball/91039bc1faa45ba123c4328958e620d382ec7088", + "reference": "91039bc1faa45ba123c4328958e620d382ec7088", "shasum": "" }, "require": { - "brick/math": "^0.8.8 || ^0.9 || ^0.10 || ^0.11", + "brick/math": "^0.8.8 || ^0.9 || ^0.10 || ^0.11 || ^0.12", "ext-json": "*", "php": "^8.0", "ramsey/collection": "^1.2 || ^2.0" @@ -4416,7 +4423,7 @@ ], "support": { "issues": "https://github.com/ramsey/uuid/issues", - "source": "https://github.com/ramsey/uuid/tree/4.7.5" + "source": "https://github.com/ramsey/uuid/tree/4.7.6" }, "funding": [ { @@ -4428,7 +4435,7 @@ "type": "tidelift" } ], - "time": "2023-11-08T05:53:05+00:00" + "time": "2024-04-27T21:32:50+00:00" }, { "name": "sebastian/code-unit-reverse-lookup", @@ -5224,16 +5231,16 @@ }, { "name": "sirbrillig/phpcs-variable-analysis", - "version": "v2.11.17", + "version": "v2.11.18", "source": { "type": "git", "url": "https://github.com/sirbrillig/phpcs-variable-analysis.git", - "reference": "3b71162a6bf0cde2bff1752e40a1788d8273d049" + "reference": "ca242a0b7309e0f9d1f73b236e04ecf4ca3248d0" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sirbrillig/phpcs-variable-analysis/zipball/3b71162a6bf0cde2bff1752e40a1788d8273d049", - "reference": "3b71162a6bf0cde2bff1752e40a1788d8273d049", + "url": "https://api.github.com/repos/sirbrillig/phpcs-variable-analysis/zipball/ca242a0b7309e0f9d1f73b236e04ecf4ca3248d0", + "reference": "ca242a0b7309e0f9d1f73b236e04ecf4ca3248d0", "shasum": "" }, "require": { @@ -5278,20 +5285,20 @@ "source": "https://github.com/sirbrillig/phpcs-variable-analysis", "wiki": "https://github.com/sirbrillig/phpcs-variable-analysis/wiki" }, - "time": "2023-08-05T23:46:11+00:00" + "time": "2024-04-13T16:42:46+00:00" }, { "name": "squizlabs/php_codesniffer", - "version": "3.9.1", + "version": "3.9.2", "source": { "type": "git", "url": "https://github.com/PHPCSStandards/PHP_CodeSniffer.git", - "reference": "267a4405fff1d9c847134db3a3c92f1ab7f77909" + "reference": "aac1f6f347a5c5ac6bc98ad395007df00990f480" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/PHPCSStandards/PHP_CodeSniffer/zipball/267a4405fff1d9c847134db3a3c92f1ab7f77909", - "reference": "267a4405fff1d9c847134db3a3c92f1ab7f77909", + "url": "https://api.github.com/repos/PHPCSStandards/PHP_CodeSniffer/zipball/aac1f6f347a5c5ac6bc98ad395007df00990f480", + "reference": "aac1f6f347a5c5ac6bc98ad395007df00990f480", "shasum": "" }, "require": { @@ -5358,20 +5365,20 @@ "type": "open_collective" } ], - "time": "2024-03-31T21:03:09+00:00" + "time": "2024-04-23T20:25:34+00:00" }, { "name": "symfony/amqp-messenger", - "version": "v5.4.36", + "version": "v5.4.39", "source": { "type": "git", "url": "https://github.com/symfony/amqp-messenger.git", - "reference": "456958ef89fffddc3935f3954a7eac255a5adb21" + "reference": "252902bdd576b0a9279cb3d9b9f7e8317d1c54c3" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/amqp-messenger/zipball/456958ef89fffddc3935f3954a7eac255a5adb21", - "reference": "456958ef89fffddc3935f3954a7eac255a5adb21", + "url": "https://api.github.com/repos/symfony/amqp-messenger/zipball/252902bdd576b0a9279cb3d9b9f7e8317d1c54c3", + "reference": "252902bdd576b0a9279cb3d9b9f7e8317d1c54c3", "shasum": "" }, "require": { @@ -5411,7 +5418,7 @@ "description": "Symfony AMQP extension Messenger Bridge", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/amqp-messenger/tree/v5.4.36" + "source": "https://github.com/symfony/amqp-messenger/tree/v5.4.39" }, "funding": [ { @@ -5427,20 +5434,20 @@ "type": "tidelift" } ], - "time": "2024-02-14T16:15:37+00:00" + "time": "2024-04-18T08:26:06+00:00" }, { "name": "symfony/browser-kit", - "version": "v5.4.35", + "version": "v5.4.39", "source": { "type": "git", "url": "https://github.com/symfony/browser-kit.git", - "reference": "2f6f979b579ed1c051465c3c2fb81daf5bb4a002" + "reference": "4c5d1a88ceee2b1c5c0b400b0137989ec34f70fa" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/browser-kit/zipball/2f6f979b579ed1c051465c3c2fb81daf5bb4a002", - "reference": "2f6f979b579ed1c051465c3c2fb81daf5bb4a002", + "url": "https://api.github.com/repos/symfony/browser-kit/zipball/4c5d1a88ceee2b1c5c0b400b0137989ec34f70fa", + "reference": "4c5d1a88ceee2b1c5c0b400b0137989ec34f70fa", "shasum": "" }, "require": { @@ -5483,7 +5490,7 @@ "description": "Simulates the behavior of a web browser, allowing you to make requests, click on links and submit forms programmatically", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/browser-kit/tree/v5.4.35" + "source": "https://github.com/symfony/browser-kit/tree/v5.4.39" }, "funding": [ { @@ -5499,20 +5506,20 @@ "type": "tidelift" } ], - "time": "2024-01-23T13:51:25+00:00" + "time": "2024-04-18T08:26:06+00:00" }, { "name": "symfony/cache", - "version": "v5.4.38", + "version": "v5.4.39", "source": { "type": "git", "url": "https://github.com/symfony/cache.git", - "reference": "223c3afac82e003a76931b71d77db408636a0de8" + "reference": "982237e35079fdcc31ab724f06b6131992c4fd24" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/cache/zipball/223c3afac82e003a76931b71d77db408636a0de8", - "reference": "223c3afac82e003a76931b71d77db408636a0de8", + "url": "https://api.github.com/repos/symfony/cache/zipball/982237e35079fdcc31ab724f06b6131992c4fd24", + "reference": "982237e35079fdcc31ab724f06b6131992c4fd24", "shasum": "" }, "require": { @@ -5580,7 +5587,7 @@ "psr6" ], "support": { - "source": "https://github.com/symfony/cache/tree/v5.4.38" + "source": "https://github.com/symfony/cache/tree/v5.4.39" }, "funding": [ { @@ -5596,7 +5603,7 @@ "type": "tidelift" } ], - "time": "2024-03-19T09:55:32+00:00" + "time": "2024-04-18T08:26:06+00:00" }, { "name": "symfony/cache-contracts", @@ -5679,16 +5686,16 @@ }, { "name": "symfony/config", - "version": "v5.4.38", + "version": "v5.4.39", "source": { "type": "git", "url": "https://github.com/symfony/config.git", - "reference": "3dcd47d4bbd9fea4d1210e7a7a0a5ca02d99df14" + "reference": "62cec4a067931552624a9962002c210c502d42fd" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/config/zipball/3dcd47d4bbd9fea4d1210e7a7a0a5ca02d99df14", - "reference": "3dcd47d4bbd9fea4d1210e7a7a0a5ca02d99df14", + "url": "https://api.github.com/repos/symfony/config/zipball/62cec4a067931552624a9962002c210c502d42fd", + "reference": "62cec4a067931552624a9962002c210c502d42fd", "shasum": "" }, "require": { @@ -5738,7 +5745,7 @@ "description": "Helps you find, load, combine, autofill and validate configuration values of any kind", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/config/tree/v5.4.38" + "source": "https://github.com/symfony/config/tree/v5.4.39" }, "funding": [ { @@ -5754,20 +5761,20 @@ "type": "tidelift" } ], - "time": "2024-03-22T10:04:40+00:00" + "time": "2024-04-18T08:26:06+00:00" }, { "name": "symfony/console", - "version": "v5.4.36", + "version": "v5.4.39", "source": { "type": "git", "url": "https://github.com/symfony/console.git", - "reference": "39f75d9d73d0c11952fdcecf4877b4d0f62a8f6e" + "reference": "f3e591c48688a0cfa1a3296205926c05e84b22b1" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/console/zipball/39f75d9d73d0c11952fdcecf4877b4d0f62a8f6e", - "reference": "39f75d9d73d0c11952fdcecf4877b4d0f62a8f6e", + "url": "https://api.github.com/repos/symfony/console/zipball/f3e591c48688a0cfa1a3296205926c05e84b22b1", + "reference": "f3e591c48688a0cfa1a3296205926c05e84b22b1", "shasum": "" }, "require": { @@ -5837,7 +5844,7 @@ "terminal" ], "support": { - "source": "https://github.com/symfony/console/tree/v5.4.36" + "source": "https://github.com/symfony/console/tree/v5.4.39" }, "funding": [ { @@ -5853,20 +5860,20 @@ "type": "tidelift" } ], - "time": "2024-02-20T16:33:57+00:00" + "time": "2024-04-18T08:26:06+00:00" }, { "name": "symfony/css-selector", - "version": "v5.4.35", + "version": "v5.4.39", "source": { "type": "git", "url": "https://github.com/symfony/css-selector.git", - "reference": "9e615d367e2bed41f633abb383948c96a2dbbfae" + "reference": "0934c9f1d433776f25c629bdc93f3e157d139e08" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/css-selector/zipball/9e615d367e2bed41f633abb383948c96a2dbbfae", - "reference": "9e615d367e2bed41f633abb383948c96a2dbbfae", + "url": "https://api.github.com/repos/symfony/css-selector/zipball/0934c9f1d433776f25c629bdc93f3e157d139e08", + "reference": "0934c9f1d433776f25c629bdc93f3e157d139e08", "shasum": "" }, "require": { @@ -5903,7 +5910,7 @@ "description": "Converts CSS selectors to XPath expressions", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/css-selector/tree/v5.4.35" + "source": "https://github.com/symfony/css-selector/tree/v5.4.39" }, "funding": [ { @@ -5919,20 +5926,20 @@ "type": "tidelift" } ], - "time": "2024-01-23T13:51:25+00:00" + "time": "2024-04-18T08:26:06+00:00" }, { "name": "symfony/dependency-injection", - "version": "v5.4.38", + "version": "v5.4.39", "source": { "type": "git", "url": "https://github.com/symfony/dependency-injection.git", - "reference": "0ba1fa459d284a9398c71afa1cb5d13de025de17" + "reference": "5b4505f2afbe1d11d43a3917d0c1c178a38f6f19" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/0ba1fa459d284a9398c71afa1cb5d13de025de17", - "reference": "0ba1fa459d284a9398c71afa1cb5d13de025de17", + "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/5b4505f2afbe1d11d43a3917d0c1c178a38f6f19", + "reference": "5b4505f2afbe1d11d43a3917d0c1c178a38f6f19", "shasum": "" }, "require": { @@ -5992,7 +5999,7 @@ "description": "Allows you to standardize and centralize the way objects are constructed in your application", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/dependency-injection/tree/v5.4.38" + "source": "https://github.com/symfony/dependency-injection/tree/v5.4.39" }, "funding": [ { @@ -6008,7 +6015,7 @@ "type": "tidelift" } ], - "time": "2024-03-18T16:56:51+00:00" + "time": "2024-04-18T08:26:06+00:00" }, { "name": "symfony/deprecation-contracts", @@ -6151,16 +6158,16 @@ }, { "name": "symfony/dom-crawler", - "version": "v5.4.35", + "version": "v5.4.39", "source": { "type": "git", "url": "https://github.com/symfony/dom-crawler.git", - "reference": "e3b4806f88abf106a411847a78619a542e71de29" + "reference": "1dffb111b038412b028caba029240e379fda85b2" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/e3b4806f88abf106a411847a78619a542e71de29", - "reference": "e3b4806f88abf106a411847a78619a542e71de29", + "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/1dffb111b038412b028caba029240e379fda85b2", + "reference": "1dffb111b038412b028caba029240e379fda85b2", "shasum": "" }, "require": { @@ -6206,7 +6213,7 @@ "description": "Eases DOM navigation for HTML and XML documents", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/dom-crawler/tree/v5.4.35" + "source": "https://github.com/symfony/dom-crawler/tree/v5.4.39" }, "funding": [ { @@ -6222,20 +6229,20 @@ "type": "tidelift" } ], - "time": "2024-01-23T13:51:25+00:00" + "time": "2024-04-18T08:26:06+00:00" }, { "name": "symfony/event-dispatcher", - "version": "v5.4.35", + "version": "v5.4.39", "source": { "type": "git", "url": "https://github.com/symfony/event-dispatcher.git", - "reference": "7a69a85c7ea5bdd1e875806a99c51a87d3a74b38" + "reference": "d40fae9fd85c762b6ba378152fdd1157a85d7e4f" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/7a69a85c7ea5bdd1e875806a99c51a87d3a74b38", - "reference": "7a69a85c7ea5bdd1e875806a99c51a87d3a74b38", + "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/d40fae9fd85c762b6ba378152fdd1157a85d7e4f", + "reference": "d40fae9fd85c762b6ba378152fdd1157a85d7e4f", "shasum": "" }, "require": { @@ -6291,7 +6298,7 @@ "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/event-dispatcher/tree/v5.4.35" + "source": "https://github.com/symfony/event-dispatcher/tree/v5.4.39" }, "funding": [ { @@ -6307,7 +6314,7 @@ "type": "tidelift" } ], - "time": "2024-01-23T13:51:25+00:00" + "time": "2024-04-18T08:26:06+00:00" }, { "name": "symfony/event-dispatcher-contracts", @@ -6453,16 +6460,16 @@ }, { "name": "symfony/finder", - "version": "v5.4.35", + "version": "v5.4.39", "source": { "type": "git", "url": "https://github.com/symfony/finder.git", - "reference": "abe6d6f77d9465fed3cd2d029b29d03b56b56435" + "reference": "f6a96e4fcd468a25fede16ee665f50ced856bd0a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/finder/zipball/abe6d6f77d9465fed3cd2d029b29d03b56b56435", - "reference": "abe6d6f77d9465fed3cd2d029b29d03b56b56435", + "url": "https://api.github.com/repos/symfony/finder/zipball/f6a96e4fcd468a25fede16ee665f50ced856bd0a", + "reference": "f6a96e4fcd468a25fede16ee665f50ced856bd0a", "shasum": "" }, "require": { @@ -6496,7 +6503,7 @@ "description": "Finds files and directories via an intuitive fluent interface", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/finder/tree/v5.4.35" + "source": "https://github.com/symfony/finder/tree/v5.4.39" }, "funding": [ { @@ -6512,20 +6519,20 @@ "type": "tidelift" } ], - "time": "2024-01-23T13:51:25+00:00" + "time": "2024-04-18T08:26:06+00:00" }, { "name": "symfony/messenger", - "version": "v5.4.38", + "version": "v5.4.39", "source": { "type": "git", "url": "https://github.com/symfony/messenger.git", - "reference": "a69a4d07e20e4f298a5c030623a1a3328145a889" + "reference": "56366af2eb2b5041ae6ac21b3e9a5caf29e33c42" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/messenger/zipball/a69a4d07e20e4f298a5c030623a1a3328145a889", - "reference": "a69a4d07e20e4f298a5c030623a1a3328145a889", + "url": "https://api.github.com/repos/symfony/messenger/zipball/56366af2eb2b5041ae6ac21b3e9a5caf29e33c42", + "reference": "56366af2eb2b5041ae6ac21b3e9a5caf29e33c42", "shasum": "" }, "require": { @@ -6586,7 +6593,7 @@ "description": "Helps applications send and receive messages to/from other applications or via message queues", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/messenger/tree/v5.4.38" + "source": "https://github.com/symfony/messenger/tree/v5.4.39" }, "funding": [ { @@ -6602,7 +6609,7 @@ "type": "tidelift" } ], - "time": "2024-03-19T10:19:25+00:00" + "time": "2024-04-18T08:26:06+00:00" }, { "name": "symfony/polyfill-ctype", @@ -7229,16 +7236,16 @@ }, { "name": "symfony/process", - "version": "v5.4.36", + "version": "v5.4.39", "source": { "type": "git", "url": "https://github.com/symfony/process.git", - "reference": "4fdf34004f149cc20b2f51d7d119aa500caad975" + "reference": "85a554acd7c28522241faf2e97b9541247a0d3d5" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/process/zipball/4fdf34004f149cc20b2f51d7d119aa500caad975", - "reference": "4fdf34004f149cc20b2f51d7d119aa500caad975", + "url": "https://api.github.com/repos/symfony/process/zipball/85a554acd7c28522241faf2e97b9541247a0d3d5", + "reference": "85a554acd7c28522241faf2e97b9541247a0d3d5", "shasum": "" }, "require": { @@ -7271,7 +7278,7 @@ "description": "Executes commands in sub-processes", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/process/tree/v5.4.36" + "source": "https://github.com/symfony/process/tree/v5.4.39" }, "funding": [ { @@ -7287,20 +7294,20 @@ "type": "tidelift" } ], - "time": "2024-02-12T15:49:53+00:00" + "time": "2024-04-18T08:26:06+00:00" }, { "name": "symfony/redis-messenger", - "version": "v5.4.36", + "version": "v5.4.39", "source": { "type": "git", "url": "https://github.com/symfony/redis-messenger.git", - "reference": "54b107003c5abc03cc5077c8847678b432b1e602" + "reference": "7b7b1c5e8cbaab9c15808822ab5ef355eff6c4c3" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/redis-messenger/zipball/54b107003c5abc03cc5077c8847678b432b1e602", - "reference": "54b107003c5abc03cc5077c8847678b432b1e602", + "url": "https://api.github.com/repos/symfony/redis-messenger/zipball/7b7b1c5e8cbaab9c15808822ab5ef355eff6c4c3", + "reference": "7b7b1c5e8cbaab9c15808822ab5ef355eff6c4c3", "shasum": "" }, "require": { @@ -7338,7 +7345,7 @@ "description": "Symfony Redis extension Messenger Bridge", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/redis-messenger/tree/v5.4.36" + "source": "https://github.com/symfony/redis-messenger/tree/v5.4.39" }, "funding": [ { @@ -7354,7 +7361,7 @@ "type": "tidelift" } ], - "time": "2024-02-05T13:56:32+00:00" + "time": "2024-04-18T08:26:06+00:00" }, { "name": "symfony/requirements-checker", @@ -7424,16 +7431,16 @@ }, { "name": "symfony/serializer", - "version": "v5.4.38", + "version": "v5.4.39", "source": { "type": "git", "url": "https://github.com/symfony/serializer.git", - "reference": "978c155c92601227c014be0291b0bf5b58a1204a" + "reference": "107d7e0b67f9295098aa7b29b1daeddd6303c658" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/serializer/zipball/978c155c92601227c014be0291b0bf5b58a1204a", - "reference": "978c155c92601227c014be0291b0bf5b58a1204a", + "url": "https://api.github.com/repos/symfony/serializer/zipball/107d7e0b67f9295098aa7b29b1daeddd6303c658", + "reference": "107d7e0b67f9295098aa7b29b1daeddd6303c658", "shasum": "" }, "require": { @@ -7507,7 +7514,7 @@ "description": "Handles serializing and deserializing data structures, including object graphs, into array structures or other formats like XML and JSON.", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/serializer/tree/v5.4.38" + "source": "https://github.com/symfony/serializer/tree/v5.4.39" }, "funding": [ { @@ -7523,7 +7530,7 @@ "type": "tidelift" } ], - "time": "2024-03-19T09:55:32+00:00" + "time": "2024-04-18T08:26:06+00:00" }, { "name": "symfony/service-contracts", @@ -7610,16 +7617,16 @@ }, { "name": "symfony/stopwatch", - "version": "v5.4.35", + "version": "v5.4.39", "source": { "type": "git", "url": "https://github.com/symfony/stopwatch.git", - "reference": "887762aa99ff16f65dc8b48aafead415f942d407" + "reference": "fb97497490bcec8a3c32c809cacfdd4c15dc8390" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/stopwatch/zipball/887762aa99ff16f65dc8b48aafead415f942d407", - "reference": "887762aa99ff16f65dc8b48aafead415f942d407", + "url": "https://api.github.com/repos/symfony/stopwatch/zipball/fb97497490bcec8a3c32c809cacfdd4c15dc8390", + "reference": "fb97497490bcec8a3c32c809cacfdd4c15dc8390", "shasum": "" }, "require": { @@ -7652,7 +7659,7 @@ "description": "Provides a way to profile code", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/stopwatch/tree/v5.4.35" + "source": "https://github.com/symfony/stopwatch/tree/v5.4.39" }, "funding": [ { @@ -7668,7 +7675,7 @@ "type": "tidelift" } ], - "time": "2024-01-23T13:51:25+00:00" + "time": "2024-04-18T08:26:06+00:00" }, { "name": "symfony/string", @@ -7829,16 +7836,16 @@ }, { "name": "symfony/yaml", - "version": "v5.4.35", + "version": "v5.4.39", "source": { "type": "git", "url": "https://github.com/symfony/yaml.git", - "reference": "e78db7f5c70a21f0417a31f414c4a95fe76c07e4" + "reference": "bc780e16879000f77a1022163c052f5323b5e640" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/yaml/zipball/e78db7f5c70a21f0417a31f414c4a95fe76c07e4", - "reference": "e78db7f5c70a21f0417a31f414c4a95fe76c07e4", + "url": "https://api.github.com/repos/symfony/yaml/zipball/bc780e16879000f77a1022163c052f5323b5e640", + "reference": "bc780e16879000f77a1022163c052f5323b5e640", "shasum": "" }, "require": { @@ -7884,7 +7891,7 @@ "description": "Loads and dumps YAML files", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/yaml/tree/v5.4.35" + "source": "https://github.com/symfony/yaml/tree/v5.4.39" }, "funding": [ { @@ -7900,7 +7907,7 @@ "type": "tidelift" } ], - "time": "2024-01-23T13:51:25+00:00" + "time": "2024-04-23T11:57:27+00:00" }, { "name": "theseer/tokenizer", diff --git a/includes.php b/includes.php index 3afe44085..6a81208a4 100644 --- a/includes.php +++ b/includes.php @@ -34,7 +34,7 @@ if (! defined('PP_LOADED')) { if (! defined('PUBLISHPRESS_VERSION')) { // Define constants - define('PUBLISHPRESS_VERSION', '4.1.0'); + define('PUBLISHPRESS_VERSION', '4.2.0'); define('PUBLISHPRESS_BASE_PATH', __DIR__); define('PUBLISHPRESS_VIEWS_PATH', __DIR__ . '/views'); define('PUBLISHPRESS_FILE_PATH', PUBLISHPRESS_BASE_PATH . '/publishpress.php'); @@ -136,6 +136,7 @@ function ($settings) { ['base' => 'edit', 'id' => 'edit-psppnotif_workflow'], ['base' => 'post', 'id' => 'psppnotif_workflow'], ['base' => 'planner_page_pp-content-overview'], + ['base' => 'planner_page_pp-content-board'], ['base' => 'toplevel_page_pp-calendar', 'id' => 'toplevel_page_pp-calendar'], ] ]; @@ -151,6 +152,7 @@ function ($settings) { 'parent' => [ 'pp-calendar', 'pp-content-overview', + 'pp-content-board', 'edit.php?post_type=psppnotif_workflow', 'pp-notif-log', 'pp-manage-roles', diff --git a/languages/publishpress-es_ES.mo b/languages/publishpress-es_ES.mo index 03ff73bb8..a00c00a90 100644 Binary files a/languages/publishpress-es_ES.mo and b/languages/publishpress-es_ES.mo differ diff --git a/languages/publishpress-es_ES.po b/languages/publishpress-es_ES.po index 8f5901e41..6ed80b860 100644 --- a/languages/publishpress-es_ES.po +++ b/languages/publishpress-es_ES.po @@ -5,8 +5,8 @@ msgstr "" "Project-Id-Version: Plugins - PublishPress Planner: Organize and Schedule " "Your WordPress Content - Stable (latest release)\n" "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/project\n" -"POT-Creation-Date: 2024-01-23 11:07+0000\n" -"PO-Revision-Date: 2024-01-23 21:33+0100\n" +"POT-Creation-Date: 2024-04-04 04:10+0000\n" +"PO-Revision-Date: 2024-04-13 12:37+0200\n" "Last-Translator: \n" "Language-Team: Spanish (Spain)\n" "Language: es_ES\n" @@ -58,11 +58,13 @@ msgstr "%1$s #%2$s «%3$s» fue despublicada por %4$s %5$s" msgid "%1$s (%2$s ) said on %3$s at %4$s:" msgstr "%1$s (%2$s) dijo en %3$s a las %4$s:" -#: modules/content-overview/content-overview.php:1012 +#: modules/content-overview/content-overview.php:845 #, php-format +#| msgctxt "%1$s = start date, %2$s = end date" +#| msgid " %1$s to %2$s" msgctxt "%1$s = start date, %2$s = end date" -msgid " %1$s to %2$s" -msgstr " %1$s a %2$s" +msgid " %1$s
For more information:
" msgstr "" @@ -198,14 +201,14 @@ msgstr "" #: modules/editorial-metadata/editorial-metadata.php:121 msgid "" -"Keep track of important details about your content with editorial " -"metadata. This feature allows you to create as many date, text, number, etc. " -"fields as you like, and then use them to store information like contact " -"details or the location of an interview.
Once you’ve set your fields " -"up, editorial metadata integrates with both the calendar and the content " -"overview. Make an editorial metadata item visible to have it appear to the " -"rest of your team. Keep it hidden to restrict the information between the " -"writer and their editor.
" +"Keep track of important details about your content with editorial fields. " +"This feature allows you to create as many date, text, number, etc. fields as " +"you like, and then use them to store information like contact details or the " +"location of an interview.
Once you’ve set your fields up, editorial " +"fields integrates with both the calendar and the content overview. Make an " +"editorial fields item visible to have it appear to the rest of your team. " +"Keep it hidden to restrict the information between the writer and their " +"editor.
" msgstr "" #: modules/notifications/notifications.php:94 @@ -310,8 +313,8 @@ msgid "" "the Taxonomy content filter when adding a new Notification Workflow." msgstr "" -#: modules/editorial-comments/editorial-comments.php:552 -#: modules/editorial-comments/editorial-comments.php:556 +#: modules/editorial-comments/editorial-comments.php:554 +#: modules/editorial-comments/editorial-comments.php:558 msgid "Add an editorial comment" msgstr "" @@ -320,11 +323,11 @@ msgstr "" msgid "Add Another Option" msgstr "" -#: modules/content-overview/content-overview.php:1287 +#: modules/content-overview/content-overview.php:1288 msgid "Add Column" msgstr "" -#: modules/editorial-comments/editorial-comments.php:574 +#: modules/editorial-comments/editorial-comments.php:576 msgid "Add Comment" msgstr "" @@ -339,30 +342,35 @@ msgstr "" msgid "Add editorial comment: %s" msgstr "" -#: modules/content-overview/content-overview.php:1435 +#: modules/content-board/content-board.php:1409 +#: modules/content-overview/content-overview.php:1436 msgid "Add Filter" msgstr "" -#: modules/content-overview/content-overview.php:1267 -#: modules/content-overview/content-overview.php:1415 +#: modules/content-board/content-board.php:1241 +#: modules/content-board/content-board.php:1261 +#: modules/content-board/content-board.php:1389 +#: modules/content-overview/content-overview.php:1268 +#: modules/content-overview/content-overview.php:1416 #: modules/editorial-metadata/editorial-metadata.php:1783 msgid "Add New" msgstr "" -#: modules/content-overview/content-overview.php:1558 +#: modules/content-board/content-board.php:1581 +#: modules/content-overview/content-overview.php:1559 #, php-format msgid "Add New %s" msgstr "" #: modules/editorial-metadata/editorial-metadata.php:453 -msgid "Add New Editorial Metadata" +msgid "Add New Editorial Fields" msgstr "" #: modules/editorial-metadata/editorial-metadata.php:2509 -msgid "Add New Metadata Term" +msgid "Add New Editorial fields term" msgstr "" -#: publishpress.php:1310 +#: publishpress.php:1323 msgid "Add New Notification" msgstr "" @@ -403,8 +411,10 @@ msgstr "" msgid "All" msgstr "" -#: modules/content-overview/content-overview.php:2091 -#: modules/content-overview/content-overview.php:2094 +#: modules/content-board/content-board.php:2114 +#: modules/content-board/content-board.php:2117 +#: modules/content-overview/content-overview.php:2092 +#: modules/content-overview/content-overview.php:2095 #, php-format msgid "All %s" msgstr "" @@ -413,9 +423,11 @@ msgstr "" msgid "All Actions" msgstr "" -#: modules/calendar/calendar.php:793 modules/calendar/calendar.php:4071 -#: modules/content-overview/content-overview.php:2116 -#: modules/content-overview/content-overview.php:2119 +#: modules/calendar/calendar.php:793 modules/calendar/calendar.php:4008 +#: modules/content-board/content-board.php:2139 +#: modules/content-board/content-board.php:2142 +#: modules/content-overview/content-overview.php:2117 +#: modules/content-overview/content-overview.php:2120 msgid "All authors" msgstr "" @@ -432,7 +444,7 @@ msgid "All channels" msgstr "" #: modules/editorial-metadata/editorial-metadata.php:450 -msgid "All Editorial Metadata" +msgid "All Editorial Fields" msgstr "" #: modules/notifications-log/library/NotificationsLogTable.php:584 @@ -456,7 +468,8 @@ msgstr "" msgid "All options value and labels are required." msgstr "" -#: modules/content-overview/content-overview.php:2148 +#: modules/content-board/content-board.php:2171 +#: modules/content-overview/content-overview.php:2149 msgid "All post types" msgstr "" @@ -466,7 +479,7 @@ msgstr "" msgid "All Posts" msgstr "" -#: modules/calendar/calendar.php:2933 +#: modules/calendar/calendar.php:2870 msgid "All posts" msgstr "" @@ -474,7 +487,8 @@ msgstr "" msgid "All Receivers" msgstr "" -#: modules/content-overview/content-overview.php:2363 +#: modules/content-board/content-board.php:2386 +#: modules/content-overview/content-overview.php:2364 msgid "All status" msgstr "" @@ -482,16 +496,17 @@ msgstr "" msgid "All Statuses" msgstr "" -#: modules/calendar/calendar.php:790 modules/calendar/calendar.php:4015 -#: modules/content-overview/content-overview.php:2065 +#: modules/calendar/calendar.php:790 modules/calendar/calendar.php:3952 +#: modules/content-board/content-board.php:2088 +#: modules/content-overview/content-overview.php:2066 msgid "All statuses" msgstr "" -#: modules/calendar/calendar.php:792 modules/calendar/calendar.php:4050 +#: modules/calendar/calendar.php:792 modules/calendar/calendar.php:3987 msgid "All tags" msgstr "" -#: modules/calendar/calendar.php:794 modules/calendar/calendar.php:4098 +#: modules/calendar/calendar.php:794 modules/calendar/calendar.php:4035 msgid "All types" msgstr "" @@ -504,7 +519,7 @@ msgstr "" msgid "All Workflows" msgstr "" -#: modules/calendar/calendar.php:2537 +#: modules/calendar/calendar.php:2474 msgid "Allow public access to subscriptions in iCal or Google Calendar" msgstr "" @@ -516,21 +531,34 @@ msgstr "" msgid "Always notify users who have edited the content:" msgstr "" -#: modules/calendar/calendar.php:2585 +#: modules/calendar/calendar.php:2522 msgid "Always show complete post titles" msgstr "" -#: modules/content-overview/content-overview.php:855 -#: modules/content-overview/content-overview.php:865 -#: modules/content-overview/content-overview.php:2197 -#: modules/content-overview/content-overview.php:2308 -#: modules/content-overview/content-overview.php:2346 -#: modules/content-overview/content-overview.php:2423 +#: modules/content-board/content-board.php:1504 +#: modules/content-board/content-board.php:1554 +msgid "An error occured" +msgstr "" + +#: modules/content-board/content-board.php:836 +#: modules/content-board/content-board.php:846 +#: modules/content-board/content-board.php:2220 +#: modules/content-board/content-board.php:2331 +#: modules/content-board/content-board.php:2369 +#: modules/content-board/content-board.php:2450 +#: modules/content-overview/content-overview.php:857 +#: modules/content-overview/content-overview.php:867 +#: modules/content-overview/content-overview.php:2198 +#: modules/content-overview/content-overview.php:2309 +#: modules/content-overview/content-overview.php:2347 +#: modules/content-overview/content-overview.php:2428 msgid "Apply" msgstr "" -#: modules/content-overview/content-overview.php:1371 -#: modules/content-overview/content-overview.php:1519 +#: modules/content-board/content-board.php:1345 +#: modules/content-board/content-board.php:1493 +#: modules/content-overview/content-overview.php:1372 +#: modules/content-overview/content-overview.php:1520 msgid "Apply Changes" msgstr "" @@ -556,11 +584,11 @@ msgstr "" msgid "asynchronous" msgstr "" -#: modules/calendar/calendar.php:2604 +#: modules/calendar/calendar.php:2541 msgid "At least one post type must be selected" msgstr "" -#: modules/editorial-comments/editorial-comments.php:562 +#: modules/editorial-comments/editorial-comments.php:564 msgid "Attach file" msgstr "" @@ -568,14 +596,20 @@ msgstr "" msgid "Aug" msgstr "" -#: modules/calendar/calendar.php:1943 modules/calendar/calendar.php:3538 -#: modules/calendar/calendar.php:3628 -#: modules/content-overview/content-overview.php:1081 -#: modules/content-overview/content-overview.php:1095 -#: modules/content-overview/content-overview.php:1139 -#: modules/content-overview/content-overview.php:1200 -#: modules/content-overview/content-overview.php:1732 -#: modules/content-overview/content-overview.php:2114 +#: modules/calendar/calendar.php:1880 modules/calendar/calendar.php:3475 +#: modules/calendar/calendar.php:3565 +#: modules/content-board/content-board.php:1061 +#: modules/content-board/content-board.php:1072 +#: modules/content-board/content-board.php:1115 +#: modules/content-board/content-board.php:1174 +#: modules/content-board/content-board.php:1755 +#: modules/content-board/content-board.php:2137 +#: modules/content-overview/content-overview.php:1083 +#: modules/content-overview/content-overview.php:1096 +#: modules/content-overview/content-overview.php:1140 +#: modules/content-overview/content-overview.php:1201 +#: modules/content-overview/content-overview.php:1733 +#: modules/content-overview/content-overview.php:2115 #: modules/editorial-comments/library/EditorialCommentsTable.php:228 msgid "Author" msgid_plural "Authors" @@ -604,11 +638,11 @@ msgstr "" msgid "Available fields" msgstr "" -#: modules/calendar/calendar.php:2127 +#: modules/calendar/calendar.php:2064 msgid "Back %d weeks" msgstr "" -#: modules/calendar/calendar.php:2139 +#: modules/calendar/calendar.php:2076 msgid "Back 1 week" msgstr "" @@ -644,37 +678,43 @@ msgstr "" msgid "Body" msgstr "" -#: modules/content-overview/content-overview.php:861 -#: modules/editorial-comments/editorial-comments.php:578 +#: modules/content-board/content-board.php:842 +#: modules/content-overview/content-overview.php:863 +#: modules/editorial-comments/editorial-comments.php:580 #: modules/editorial-metadata/editorial-metadata.php:2174 msgid "Cancel" msgstr "" -#: modules/calendar/calendar.php:3638 -#: modules/content-overview/content-overview.php:1094 -#: modules/content-overview/content-overview.php:1742 +#: modules/calendar/calendar.php:3575 +#: modules/content-board/content-board.php:1765 +#: modules/content-overview/content-overview.php:1743 #: lib/Notifications/Workflow/Step/Event_Content/Filter/Category.php:34 msgid "Categories" msgstr "" -#: modules/calendar/calendar.php:3543 +#: modules/calendar/calendar.php:3480 #: lib/Notifications/Workflow/Step/Event_Content/Category.php:24 msgid "Category" msgid_plural "Categories" msgstr[0] "" msgstr[1] "" -#: modules/content-overview/content-overview.php:862 +#: modules/content-board/content-board.php:843 +#: modules/content-overview/content-overview.php:864 msgid "Change" msgstr "" +#: modules/content-board/content-board.php:1543 +msgid "Changes saved!" +msgstr "" + #: views/user_profile_notification_channels.html.php:15 #: modules/improved-notifications/improved-notifications.php:408 #: modules/improved-notifications/improved-notifications.php:1154 msgid "Channels" msgstr "" -#: publishpress.php:669 +#: publishpress.php:670 msgid "Cheatin’ uh?" msgstr "" @@ -682,7 +722,8 @@ msgstr "" msgid "Checkbox" msgstr "" -#: modules/content-overview/content-overview.php:2328 +#: modules/content-board/content-board.php:2351 +#: modules/content-overview/content-overview.php:2329 msgid "Checked" msgstr "" @@ -716,11 +757,16 @@ msgstr "" msgid "Click here to subscribe in iCal or Google Calendar" msgstr "" -#: modules/content-overview/content-overview.php:1129 +#: modules/content-board/content-board.php:1106 +msgid "Click the \"Add New\" button to create new card data." +msgstr "" + +#: modules/content-overview/content-overview.php:1130 msgid "Click the \"Add New\" button to create new columns." msgstr "" -#: modules/content-overview/content-overview.php:1191 +#: modules/content-board/content-board.php:1165 +#: modules/content-overview/content-overview.php:1192 msgid "Click the \"Add New\" button to create new filters." msgstr "" @@ -747,11 +793,12 @@ msgstr "" msgid "Close" msgstr "" -#: modules/content-overview/content-overview.php:1275 +#: modules/content-overview/content-overview.php:1276 msgid "Column Title" msgstr "" -#: modules/content-overview/content-overview.php:934 +#: modules/content-board/content-board.php:915 +#: modules/content-overview/content-overview.php:936 msgid "Column updated successfully." msgstr "" @@ -759,11 +806,11 @@ msgstr "" msgid "Comment" msgstr "" -#: modules/editorial-comments/editorial-comments.php:1239 +#: modules/editorial-comments/editorial-comments.php:1241 msgid "Comment author name field:" msgstr "" -#: modules/editorial-comments/editorial-comments.php:1181 +#: modules/editorial-comments/editorial-comments.php:1183 msgid "Comment deleted successfully." msgstr "" @@ -772,7 +819,7 @@ msgstr "" msgid "Comment: %s (%d)" msgstr "" -#: publishpress.php:665 +#: publishpress.php:666 msgid "Configure" msgstr "" @@ -780,13 +827,21 @@ msgstr "" msgid "Contact" msgstr "" -#: modules/calendar/calendar.php:3655 -#: modules/content-overview/content-overview.php:1759 +#: modules/calendar/calendar.php:3592 +#: modules/content-board/content-board.php:1782 +#: modules/content-overview/content-overview.php:1760 #: modules/improved-notifications/improved-notifications.php:971 #: lib/Notifications/Workflow/Step/Content/Main.php:29 msgid "Content" msgstr "" +#: modules/content-board/content-board.php:140 +#: modules/content-board/content-board.php:395 +#: modules/content-board/content-board.php:412 +#: modules/content-board/content-board.php:413 +msgid "Content Board" +msgstr "" + #: modules/calendar/calendar.php:170 modules/calendar/calendar.php:410 #: modules/calendar/calendar.php:427 modules/calendar/calendar.php:428 msgid "Content Calendar" @@ -807,7 +862,8 @@ msgstr "" msgid "Copy to the clipboard" msgstr "" -#: modules/content-overview/content-overview.php:1686 +#: modules/content-board/content-board.php:1709 +#: modules/content-overview/content-overview.php:1687 #, php-format msgid "Create %s" msgstr "" @@ -820,14 +876,19 @@ msgstr "" msgid "Current week" msgstr "" -#: modules/content-overview/content-overview.php:1128 +#: modules/content-overview/content-overview.php:1129 msgid "Custom Columns" msgstr "" -#: modules/content-overview/content-overview.php:1190 +#: modules/content-board/content-board.php:1164 +#: modules/content-overview/content-overview.php:1191 msgid "Custom filters" msgstr "" +#: modules/content-board/content-board.php:1105 +msgid "Custom Items" +msgstr "" + #: statuses-intro.php:142 #, php-format msgid "" @@ -842,10 +903,19 @@ msgid "" "Statuses%2$s plugin. See %3$sPlanner > Settings%4$s for details." msgstr "" -#: modules/content-overview/content-overview.php:1861 +#: modules/content-board/content-board.php:1884 +msgid "Customize Card Data" +msgstr "" + +#: modules/content-overview/content-overview.php:1862 msgid "Customize Columns" msgstr "" +#: modules/content-board/content-board.php:1894 +#: modules/content-overview/content-overview.php:1872 +msgid "Customize Filters" +msgstr "" + #: modules/dashboard/dashboard.php:56 msgid "Dashboard" msgstr "" @@ -854,8 +924,9 @@ msgstr "" msgid "Dashboard Note" msgstr "" -#: modules/calendar/calendar.php:3527 -#: modules/content-overview/content-overview.php:1919 +#: modules/calendar/calendar.php:3464 +#: modules/content-board/content-board.php:1942 +#: modules/content-overview/content-overview.php:1920 #: modules/editorial-metadata/editorial-metadata.php:285 #: lib/Notifications/Table/Notifications.php:158 #: modules/notifications-log/library/NotificationsLogTable.php:490 @@ -885,11 +956,11 @@ msgstr "" msgid "Default option" msgstr "" -#: modules/calendar/calendar.php:2561 +#: modules/calendar/calendar.php:2498 msgid "Default publish time for items created in the calendar" msgstr "" -#: modules/editorial-comments/editorial-comments.php:643 +#: modules/editorial-comments/editorial-comments.php:645 #: modules/editorial-metadata/editorial-metadata.php:2028 #: modules/editorial-metadata/editorial-metadata.php:2058 #: modules/editorial-metadata/editorial-metadata.php:2365 @@ -919,7 +990,7 @@ msgstr "" msgid "Detailed documentation is also available on the plugin website." msgstr "" -#: modules/calendar/calendar.php:2635 modules/dashboard/dashboard.php:368 +#: modules/calendar/calendar.php:2572 modules/dashboard/dashboard.php:368 #: modules/dashboard/dashboard.php:391 modules/dashboard/dashboard.php:425 msgid "Disabled" msgstr "" @@ -938,7 +1009,7 @@ msgstr "" msgid "Display Label" msgstr "" -#: modules/editorial-comments/editorial-comments.php:1266 +#: modules/editorial-comments/editorial-comments.php:1268 msgid "Display Name" msgstr "" @@ -950,15 +1021,20 @@ msgstr "" msgid "Download .ics file" msgstr "" -#: common/php/class-module.php:263 +#: common/php/class-module.php:328 msgid "Draft" msgstr "" -#: modules/content-overview/content-overview.php:1330 +#: modules/content-board/content-board.php:1304 +msgid "Drag to change enabled card data order." +msgstr "" + +#: modules/content-overview/content-overview.php:1331 msgid "Drag to change enabled columns order." msgstr "" -#: modules/content-overview/content-overview.php:1478 +#: modules/content-board/content-board.php:1452 +#: modules/content-overview/content-overview.php:1479 msgid "Drag to change enabled filters order." msgstr "" @@ -975,19 +1051,20 @@ msgstr "" msgid "Duplicated notification threshold:" msgstr "" -#: common/php/class-module.php:696 +#: common/php/class-module.php:761 msgid "E-mails" msgstr "" -#: modules/calendar/calendar.php:1798 modules/calendar/calendar.php:3560 -#: modules/content-overview/content-overview.php:2982 -#: modules/editorial-comments/editorial-comments.php:632 +#: modules/calendar/calendar.php:1735 modules/calendar/calendar.php:3497 +#: modules/content-board/content-board.php:2665 +#: modules/content-overview/content-overview.php:3017 +#: modules/editorial-comments/editorial-comments.php:634 #: modules/editorial-metadata/editorial-metadata.php:2745 msgid "Edit" msgstr "" #: modules/editorial-metadata/editorial-metadata.php:451 -msgid "Edit Editorial Metadata" +msgid "Edit Editorial Fields" msgstr "" #: modules/efmigration/efmigration.php:288 @@ -997,7 +1074,7 @@ msgid "" "deactivate Edit Flow." msgstr "" -#: publishpress.php:1311 +#: publishpress.php:1324 msgid "Edit Notification" msgstr "" @@ -1013,11 +1090,12 @@ msgstr "" msgid "Edit Notify User" msgstr "" -#: modules/calendar/calendar.php:1798 +#: modules/calendar/calendar.php:1735 msgid "Edit this item" msgstr "" -#: modules/content-overview/content-overview.php:2978 +#: modules/content-board/content-board.php:2661 +#: modules/content-overview/content-overview.php:3013 #: modules/dashboard/dashboard.php:299 msgid "Edit this post" msgstr "" @@ -1033,18 +1111,45 @@ msgid "Editorial Comment" msgstr "" #: modules/editorial-comments/editorial-comments.php:63 -#: modules/editorial-comments/editorial-comments.php:235 -#: modules/editorial-comments/editorial-comments.php:236 -#: modules/editorial-comments/editorial-comments.php:457 +#: modules/editorial-comments/editorial-comments.php:237 +#: modules/editorial-comments/editorial-comments.php:238 +#: modules/editorial-comments/editorial-comments.php:459 msgid "Editorial Comments" msgstr "" -#: modules/content-overview/content-overview.php:1148 -#: modules/content-overview/content-overview.php:1208 +#: modules/content-board/content-board.php:1122 +#: modules/content-board/content-board.php:1182 +#: modules/content-overview/content-overview.php:1149 +#: modules/content-overview/content-overview.php:1209 #: modules/editorial-metadata/editorial-metadata.php:96 +#: modules/editorial-metadata/editorial-metadata.php:506 #: modules/editorial-metadata/editorial-metadata.php:1759 #: modules/editorial-metadata/editorial-metadata.php:1760 -msgid "Editorial Metadata" +msgid "Editorial Fields" +msgstr "" + +#: modules/editorial-metadata/editorial-metadata.php:114 +msgid "Editorial fields order updated." +msgstr "" + +#: modules/editorial-metadata/editorial-metadata.php:110 +msgid "Editorial fields term added." +msgstr "" + +#: modules/editorial-metadata/editorial-metadata.php:113 +msgid "Editorial fields term deleted." +msgstr "" + +#: modules/editorial-metadata/editorial-metadata.php:112 +msgid "Editorial fields term doesn't exist." +msgstr "" + +#: modules/editorial-metadata/editorial-metadata.php:111 +msgid "Editorial fields term updated." +msgstr "" + +#: modules/editorial-metadata/editorial-metadata.php:115 +msgid "Editorial fields visibility changed." msgstr "" #: views/user_profile_notification_channels.html.php:1 @@ -1061,7 +1166,7 @@ msgstr "" msgid "Eleven months" msgstr "" -#: modules/editorial-comments/editorial-comments.php:1269 +#: modules/editorial-comments/editorial-comments.php:1271 #: lib/Notifications/Workflow/Step/Channel/Email.php:31 msgid "Email" msgstr "" @@ -1074,31 +1179,44 @@ msgstr "" msgid "Email from:" msgstr "" -#: modules/content-overview/content-overview.php:1249 +#: modules/content-overview/content-overview.php:1250 msgid "Enable Columns" msgstr "" -#: modules/content-overview/content-overview.php:1397 +#: modules/content-board/content-board.php:1371 +#: modules/content-overview/content-overview.php:1398 msgid "Enable Filters" msgstr "" -#: modules/editorial-comments/editorial-comments.php:1232 +#: modules/editorial-comments/editorial-comments.php:1234 msgid "Enable for these post types:" msgstr "" -#: modules/content-overview/content-overview.php:1403 +#: modules/content-board/content-board.php:1223 +msgid "Enable or Disable" +msgstr "" + +#: modules/content-board/content-board.php:1229 +msgid "Enable or Disable Content Board Card Data." +msgstr "" + +#: modules/content-board/content-board.php:1377 +msgid "Enable or Disable Content Board filter." +msgstr "" + +#: modules/content-overview/content-overview.php:1404 msgid "Enable or Disable Content Overview filter." msgstr "" -#: modules/content-overview/content-overview.php:1255 +#: modules/content-overview/content-overview.php:1256 msgid "Enable or Disable Content Overview table column." msgstr "" -#: modules/calendar/calendar.php:2529 +#: modules/calendar/calendar.php:2466 msgid "Enable subscriptions in iCal or Google Calendar" msgstr "" -#: modules/calendar/calendar.php:2636 modules/dashboard/dashboard.php:369 +#: modules/calendar/calendar.php:2573 modules/dashboard/dashboard.php:369 #: modules/dashboard/dashboard.php:392 modules/dashboard/dashboard.php:426 msgid "Enabled" msgstr "" @@ -1141,12 +1259,18 @@ msgstr "" msgid "Error deleting term." msgstr "" +#: modules/content-board/content-board.php:1517 +msgid "Error fetching post data." +msgstr "" + #: modules/editorial-metadata/editorial-metadata.php:1516 #: modules/editorial-metadata/editorial-metadata.php:1564 msgid "Error updating term." msgstr "" -#: modules/content-overview/content-overview.php:1535 +#: modules/content-board/content-board.php:1508 +#: modules/content-board/content-board.php:1558 +#: modules/content-overview/content-overview.php:1536 msgid "Error validating nonce. Please reload this page and try again." msgstr "" @@ -1155,7 +1279,8 @@ msgstr "" msgid "Event: %s, Workflow ID: %s, Post ID: %s, User ID: %s" msgstr "" -#: modules/content-overview/content-overview.php:2367 +#: modules/content-board/content-board.php:2390 +#: modules/content-overview/content-overview.php:2368 #: modules/notifications-log/library/NotificationsLogTable.php:271 #: modules/notifications-log/library/NotificationsLogTable.php:287 msgid "Failed" @@ -1181,7 +1306,11 @@ msgstr "" msgid "field" msgstr "" -#: modules/calendar/calendar.php:2569 +#: modules/editorial-metadata/editorial-metadata.php:2626 +msgid "Field Type" +msgstr "" + +#: modules/calendar/calendar.php:2506 msgid "Field used for sorting the calendar items in a day cell" msgstr "" @@ -1217,11 +1346,13 @@ msgid "" "roles." msgstr "" -#: modules/content-overview/content-overview.php:1423 +#: modules/content-board/content-board.php:1397 +#: modules/content-overview/content-overview.php:1424 msgid "Filter Title" msgstr "" -#: modules/content-overview/content-overview.php:948 +#: modules/content-board/content-board.php:929 +#: modules/content-overview/content-overview.php:950 msgid "Filter updated successfully." msgstr "" @@ -1229,7 +1360,7 @@ msgstr "" msgid "First Draft Date" msgstr "" -#: modules/editorial-comments/editorial-comments.php:1267 +#: modules/editorial-comments/editorial-comments.php:1269 msgid "First Name" msgstr "" @@ -1264,11 +1395,11 @@ msgstr "" msgid "Format" msgstr "" -#: modules/calendar/calendar.php:2093 +#: modules/calendar/calendar.php:2030 msgid "Forward %d weeks" msgstr "" -#: modules/calendar/calendar.php:2078 +#: modules/calendar/calendar.php:2015 msgid "Forward 1 week" msgstr "" @@ -1292,8 +1423,12 @@ msgstr "" msgid "From date" msgstr "" +#: modules/improved-notifications/improved-notifications.php:793 +msgid "Help" +msgstr "" + #: modules/editorial-metadata/editorial-metadata.php:2748 -msgid "Hidden metadata can only be viewed on the edit post view." +msgid "Hidden field can only be viewed on the edit post view." msgstr "" #: modules/calendar/calendar.php:760 @@ -1315,7 +1450,7 @@ msgid "" "resubscribe." msgstr "" -#: modules/calendar/calendar.php:3522 +#: modules/calendar/calendar.php:3459 #: lib/Notifications/Table/Notifications.php:159 #: lib/Notifications/Table/Workflows.php:143 msgid "ID" @@ -1324,13 +1459,13 @@ msgstr "" #: modules/editorial-metadata/editorial-metadata.php:2086 #: modules/editorial-metadata/editorial-metadata.php:2426 #: modules/editorial-metadata/editorial-metadata.php:2755 -msgid "If enabled, this metadata can be seen on the Content Calendar screens." +msgid "If enabled, this field can be seen on the Content Calendar screens." msgstr "" #: modules/editorial-metadata/editorial-metadata.php:2110 #: modules/editorial-metadata/editorial-metadata.php:2452 msgid "" -"If enabled, this metadata will be available when adding new posts on the " +"If enabled, this field will be available when adding new posts on the " "Content Calendar and Overview screen." msgstr "" @@ -1349,11 +1484,16 @@ msgid "" "don't hesitate to contact the support team. E-mail us:" msgstr "" -#: modules/content-overview/content-overview.php:1135 +#: modules/content-board/content-board.php:1112 +msgid "Inbuilt Card Data" +msgstr "" + +#: modules/content-overview/content-overview.php:1136 msgid "Inbuilt Columns" msgstr "" -#: modules/content-overview/content-overview.php:1197 +#: modules/content-board/content-board.php:1171 +#: modules/content-overview/content-overview.php:1198 msgid "Inbuilt filters" msgstr "" @@ -1363,7 +1503,7 @@ msgid "Indicate the select type." msgstr "" #: modules/editorial-metadata/editorial-metadata.php:2261 -msgid "Indicate the type of editorial metadata." +msgid "Indicate the type of editorial fields." msgstr "" #: modules/calendar/calendar.php:1472 @@ -1382,30 +1522,32 @@ msgstr "" msgid "Invalid channel for the notification" msgstr "" -#: modules/editorial-comments/editorial-comments.php:755 -#: modules/editorial-comments/editorial-comments.php:896 -#: modules/editorial-comments/editorial-comments.php:1028 -#: modules/editorial-comments/editorial-comments.php:1144 +#: modules/editorial-comments/editorial-comments.php:757 +#: modules/editorial-comments/editorial-comments.php:898 +#: modules/editorial-comments/editorial-comments.php:1030 +#: modules/editorial-comments/editorial-comments.php:1146 msgid "Invalid comment data" msgstr "" -#: modules/calendar/calendar.php:3262 +#: modules/calendar/calendar.php:3199 msgid "Invalid date" msgstr "" -#: modules/content-overview/content-overview.php:1537 +#: modules/content-board/content-board.php:1510 +#: modules/content-board/content-board.php:1560 +#: modules/content-overview/content-overview.php:1538 msgid "Invalid form request." msgstr "" -#: modules/calendar/calendar.php:3242 +#: modules/calendar/calendar.php:3179 msgid "Invalid input" msgstr "" -#: core/Error.php:80 modules/calendar/calendar.php:3233 +#: core/Error.php:80 modules/calendar/calendar.php:3170 msgid "Invalid nonce" msgstr "" -#: modules/calendar/calendar.php:3821 +#: modules/calendar/calendar.php:3758 msgid "Invalid Publish Date supplied." msgstr "" @@ -1413,7 +1555,7 @@ msgstr "" msgid "Invalid receiver for the notification" msgstr "" -#: modules/calendar/calendar.php:3797 +#: modules/calendar/calendar.php:3734 msgid "Invalid Status supplied." msgstr "" @@ -1435,12 +1577,12 @@ msgstr "" msgid "Jun" msgstr "" -#: modules/content-overview/content-overview.php:1083 -#: modules/content-overview/content-overview.php:1141 +#: modules/content-overview/content-overview.php:1085 +#: modules/content-overview/content-overview.php:1142 msgid "Last Modified" msgstr "" -#: modules/editorial-comments/editorial-comments.php:1268 +#: modules/editorial-comments/editorial-comments.php:1270 msgid "Last Name" msgstr "" @@ -1477,15 +1619,11 @@ msgstr "" msgid "Make Viewable" msgstr "" -#: modules/content-overview/content-overview.php:1871 -msgid "Manage Filters" -msgstr "" - #: modules/calendar/calendar.php:780 msgid "Mar" msgstr "" -#: modules/calendar/calendar.php:2577 +#: modules/calendar/calendar.php:2514 msgid "Max visible posts per date" msgstr "" @@ -1493,7 +1631,8 @@ msgstr "" msgid "May" msgstr "" -#: modules/content-overview/content-overview.php:1858 +#: modules/content-board/content-board.php:1881 +#: modules/content-overview/content-overview.php:1859 msgid "Me Mode" msgstr "" @@ -1512,42 +1651,10 @@ msgstr "" msgid "Meta Value" msgstr "" -#: modules/editorial-metadata/editorial-metadata.php:506 -msgid "Metadata" -msgstr "" - #: modules/editorial-metadata/editorial-metadata.php:1452 msgid "Metadata name conflicts with existing term. Please choose another." msgstr "" -#: modules/editorial-metadata/editorial-metadata.php:114 -msgid "Metadata order updated." -msgstr "" - -#: modules/editorial-metadata/editorial-metadata.php:110 -msgid "Metadata term added." -msgstr "" - -#: modules/editorial-metadata/editorial-metadata.php:113 -msgid "Metadata term deleted." -msgstr "" - -#: modules/editorial-metadata/editorial-metadata.php:112 -msgid "Metadata term doesn't exist." -msgstr "" - -#: modules/editorial-metadata/editorial-metadata.php:111 -msgid "Metadata term updated." -msgstr "" - -#: modules/editorial-metadata/editorial-metadata.php:2626 -msgid "Metadata Type" -msgstr "" - -#: modules/editorial-metadata/editorial-metadata.php:115 -msgid "Metadata visibility changed." -msgstr "" - #: modules/improved-notifications/improved-notifications.php:351 msgid "minutes" msgstr "" @@ -1572,7 +1679,13 @@ msgstr "" msgid "Most Used Notify User" msgstr "" -#: modules/content-overview/content-overview.php:2990 +#: modules/content-board/content-board.php:2595 +#: modules/content-board/content-board.php:2729 +msgid "Move posts here to change their status" +msgstr "" + +#: modules/content-board/content-board.php:2673 +#: modules/content-overview/content-overview.php:3025 msgid "Move this item to the Trash" msgstr "" @@ -1629,7 +1742,7 @@ msgid "New" msgstr "" #: modules/editorial-metadata/editorial-metadata.php:454 -msgid "New Editorial Metadata" +msgid "New Editorial Fields" msgstr "" #: modules/notifications/notifications.php:383 @@ -1644,7 +1757,8 @@ msgstr "" msgid "New Notify User" msgstr "" -#: modules/content-overview/content-overview.php:1888 +#: modules/content-board/content-board.php:1911 +#: modules/content-overview/content-overview.php:1889 msgid "New Post" msgstr "" @@ -1657,7 +1771,7 @@ msgstr "" msgid "New status" msgstr "" -#: modules/editorial-comments/editorial-comments.php:1264 +#: modules/editorial-comments/editorial-comments.php:1266 msgid "Nickname" msgstr "" @@ -1679,7 +1793,7 @@ msgstr "" msgid "No active notifications found for this %s." msgstr "" -#: modules/calendar/calendar.php:3756 +#: modules/calendar/calendar.php:3693 msgid "No date supplied." msgstr "" @@ -1688,14 +1802,14 @@ msgid "No editorial comments." msgstr "" #: modules/editorial-metadata/editorial-metadata.php:2721 -msgid "No editorial metadata found." +msgid "No editorial fields found." msgstr "" -#: modules/calendar/calendar.php:3253 +#: modules/calendar/calendar.php:3190 msgid "No enough permissions" msgstr "" -#: publishpress.php:1315 publishpress.php:1316 +#: publishpress.php:1328 publishpress.php:1329 msgid "No notification found" msgstr "" @@ -1718,7 +1832,8 @@ msgstr "" msgid "No notify users" msgstr "" -#: modules/content-overview/content-overview.php:2534 +#: modules/content-board/content-board.php:2750 +#: modules/content-overview/content-overview.php:2539 msgid "No results found" msgstr "" @@ -1730,22 +1845,23 @@ msgstr "" msgid "No workflows found." msgstr "" -#: modules/editorial-comments/editorial-comments.php:747 +#: modules/editorial-comments/editorial-comments.php:749 msgid "" "Nonce check failed. Please ensure you're supposed to be adding editorial " "comments." msgstr "" -#: modules/editorial-comments/editorial-comments.php:885 -#: modules/editorial-comments/editorial-comments.php:1017 -#: modules/editorial-comments/editorial-comments.php:1134 +#: modules/editorial-comments/editorial-comments.php:887 +#: modules/editorial-comments/editorial-comments.php:1019 +#: modules/editorial-comments/editorial-comments.php:1136 msgid "" "Nonce check failed. Please ensure you're supposed to be editing editorial " "comments." msgstr "" -#: modules/calendar/calendar.php:1778 -#: modules/content-overview/content-overview.php:2857 +#: modules/calendar/calendar.php:1715 +#: modules/content-board/content-board.php:3062 +#: modules/content-overview/content-overview.php:2892 msgid "None" msgstr "" @@ -1757,7 +1873,7 @@ msgstr "" msgid "Notepad" msgstr "" -#: publishpress.php:1309 publishpress.php:1314 +#: publishpress.php:1322 publishpress.php:1327 #: modules/notifications-log/notifications-log.php:209 msgid "Notification" msgstr "" @@ -1766,7 +1882,7 @@ msgstr "" msgid "Notification log not found" msgstr "" -#: publishpress.php:1308 publishpress.php:1313 +#: publishpress.php:1321 publishpress.php:1326 #: modules/notifications/notifications.php:72 #: modules/notifications/notifications.php:600 msgid "Notifications" @@ -1861,6 +1977,15 @@ msgstr "" msgid "One week" msgstr "" +#: modules/content-board/content-board.php:2595 +#: modules/content-board/content-board.php:2729 +msgid "Only editable posts will be moveable." +msgstr "" + +#: modules/improved-notifications/improved-notifications.php:784 +msgid "Options" +msgstr "" + #: modules/calendar/calendar.php:206 #: modules/editorial-comments/editorial-comments.php:82 #: modules/editorial-metadata/editorial-metadata.php:120 @@ -1896,7 +2021,8 @@ msgstr "" msgid "Parent Notify User:" msgstr "" -#: modules/content-overview/content-overview.php:2366 +#: modules/content-board/content-board.php:2389 +#: modules/content-overview/content-overview.php:2367 msgid "Passed" msgstr "" @@ -1904,37 +2030,37 @@ msgstr "" msgid "Path" msgstr "" -#: common/php/class-module.php:266 +#: common/php/class-module.php:331 msgid "Pending Review" msgstr "" -#: publishpress.php:584 +#: publishpress.php:585 msgid "Planner" msgstr "" -#: publishpress.php:668 +#: publishpress.php:669 msgid "Please correct your form errors below and try again." msgstr "" -#: modules/editorial-comments/editorial-comments.php:778 -#: modules/editorial-comments/editorial-comments.php:942 +#: modules/editorial-comments/editorial-comments.php:780 +#: modules/editorial-comments/editorial-comments.php:944 msgid "Please enter a comment." msgstr "" #: modules/editorial-metadata/editorial-metadata.php:1438 -msgid "Please enter a name for the editorial metadata" +msgid "Please enter a name for the editorial fields" msgstr "" #: modules/editorial-metadata/editorial-metadata.php:1275 -msgid "Please enter a name for the editorial metadata." +msgid "Please enter a name for the editorial fields." msgstr "" #: modules/editorial-metadata/editorial-metadata.php:1282 -msgid "Please enter a slug for the editorial metadata." +msgid "Please enter a slug for the editorial fields." msgstr "" #: modules/editorial-metadata/editorial-metadata.php:1443 -msgid "Please enter a valid, non-numeric name for the editorial metadata." +msgid "Please enter a valid, non-numeric name for the editorial fields." msgstr "" #: modules/editorial-metadata/editorial-metadata.php:1322 @@ -1946,12 +2072,13 @@ msgid "Please select at least one event" msgstr "" #: modules/calendar/calendar.php:770 -#: modules/content-overview/content-overview.php:1694 +#: modules/content-board/content-board.php:1717 +#: modules/content-overview/content-overview.php:1695 msgid "Please, wait! Loading the form fields..." msgstr "" #: modules/editorial-metadata/editorial-metadata.php:449 -msgid "Popular Editorial Metadata" +msgid "Popular Editorial Fields" msgstr "" #: modules/notifications/notifications.php:375 @@ -1974,16 +2101,16 @@ msgstr "" msgid "Post" msgstr "" -#: modules/calendar/calendar.php:3897 +#: modules/calendar/calendar.php:3834 msgid "Post could not be created" msgstr "" -#: modules/calendar/calendar.php:3890 +#: modules/calendar/calendar.php:3827 msgid "Post created successfully" msgstr "" -#: modules/content-overview/content-overview.php:1082 -#: modules/content-overview/content-overview.php:1140 +#: modules/content-overview/content-overview.php:1084 +#: modules/content-overview/content-overview.php:1141 msgid "Post Date" msgstr "" @@ -1991,7 +2118,7 @@ msgstr "" msgid "Post date updated." msgstr "" -#: publishpress.php:674 +#: publishpress.php:675 msgid "Post does not exist" msgstr "" @@ -1999,15 +2126,18 @@ msgstr "" msgid "Post ID: %d" msgstr "" -#: modules/calendar/calendar.php:3248 +#: modules/calendar/calendar.php:3185 msgid "Post not found" msgstr "" -#: modules/calendar/calendar.php:2878 modules/calendar/calendar.php:3533 -#: modules/calendar/calendar.php:3613 -#: modules/content-overview/content-overview.php:1199 -#: modules/content-overview/content-overview.php:1723 -#: modules/content-overview/content-overview.php:2061 +#: modules/calendar/calendar.php:2815 modules/calendar/calendar.php:3470 +#: modules/calendar/calendar.php:3550 +#: modules/content-board/content-board.php:1173 +#: modules/content-board/content-board.php:1746 +#: modules/content-board/content-board.php:2084 +#: modules/content-overview/content-overview.php:1200 +#: modules/content-overview/content-overview.php:1724 +#: modules/content-overview/content-overview.php:2062 msgid "Post Status" msgstr "" @@ -2019,13 +2149,19 @@ msgstr "" msgid "Post Status Widget" msgstr "" -#: modules/calendar/calendar.php:1951 modules/calendar/calendar.php:3517 -#: modules/content-overview/content-overview.php:1080 -#: modules/content-overview/content-overview.php:1096 -#: modules/content-overview/content-overview.php:1138 -#: modules/content-overview/content-overview.php:1201 -#: modules/content-overview/content-overview.php:1712 -#: modules/content-overview/content-overview.php:2144 +#: modules/calendar/calendar.php:1888 modules/calendar/calendar.php:3454 +#: modules/content-board/content-board.php:1060 +#: modules/content-board/content-board.php:1073 +#: modules/content-board/content-board.php:1114 +#: modules/content-board/content-board.php:1175 +#: modules/content-board/content-board.php:1735 +#: modules/content-board/content-board.php:2167 +#: modules/content-overview/content-overview.php:1082 +#: modules/content-overview/content-overview.php:1097 +#: modules/content-overview/content-overview.php:1139 +#: modules/content-overview/content-overview.php:1202 +#: modules/content-overview/content-overview.php:1713 +#: modules/content-overview/content-overview.php:2145 msgid "Post Type" msgstr "" @@ -2051,10 +2187,11 @@ msgstr "" msgid "Post Types" msgstr "" -#: modules/calendar/calendar.php:2521 +#: modules/calendar/calendar.php:2458 msgid "Post types to show" msgstr "" +#: modules/content-board/content-board.php:243 #: modules/content-overview/content-overview.php:252 msgid "Post types to show:" msgstr "" @@ -2063,17 +2200,19 @@ msgstr "" msgid "Posts at a Glance" msgstr "" -#: modules/calendar/calendar.php:2553 +#: modules/calendar/calendar.php:2490 msgid "Posts publish time format" msgstr "" -#: modules/calendar/calendar.php:1822 modules/calendar/calendar.php:3577 -#: modules/content-overview/content-overview.php:3023 +#: modules/calendar/calendar.php:1759 modules/calendar/calendar.php:3514 +#: modules/content-board/content-board.php:2706 +#: modules/content-overview/content-overview.php:3058 msgid "Preview" msgstr "" -#: modules/calendar/calendar.php:1819 -#: modules/content-overview/content-overview.php:3020 +#: modules/calendar/calendar.php:1756 +#: modules/content-board/content-board.php:2703 +#: modules/content-overview/content-overview.php:3055 #, php-format msgid "Preview “%s”" msgstr "" @@ -2082,23 +2221,24 @@ msgstr "" msgid "Previous status" msgstr "" -#: modules/content-overview/content-overview.php:1880 +#: modules/content-board/content-board.php:1903 +#: modules/content-overview/content-overview.php:1881 msgid "Print" msgstr "" -#: common/php/class-module.php:265 +#: common/php/class-module.php:330 msgid "Private" msgstr "" -#: modules/calendar/calendar.php:3619 +#: modules/calendar/calendar.php:3556 msgid "Publish Time" msgstr "" -#: common/php/class-module.php:262 modules/calendar/calendar.php:1964 +#: common/php/class-module.php:327 modules/calendar/calendar.php:1901 msgid "Published" msgstr "" -#: modules/calendar/calendar.php:2877 +#: modules/calendar/calendar.php:2814 msgid "Publishing Time" msgstr "" @@ -2122,7 +2262,7 @@ msgid "" "Features include a content calendar, notifications, and custom statuses." msgstr "" -#: publishpress.php:1355 +#: publishpress.php:1368 msgid "" "PublishPress Planner tried to load multiple times. Please, deactivate and " "remove other instances of PublishPress, specially if you are using " @@ -2137,7 +2277,7 @@ msgstr "" msgid "Receiver" msgstr "" -#: modules/calendar/calendar.php:2654 +#: modules/calendar/calendar.php:2591 msgid "Regenerate calendar feed secret" msgstr "" @@ -2146,7 +2286,7 @@ msgid "Register metadata for these post types:" msgstr "" #: modules/editorial-comments/editorial-comments.php:211 -#: modules/editorial-comments/editorial-comments.php:719 +#: modules/editorial-comments/editorial-comments.php:721 msgid "Remove" msgstr "" @@ -2154,19 +2294,24 @@ msgstr "" msgid "Remove PublishPress ads and branding" msgstr "" -#: modules/content-overview/content-overview.php:1250 +#: modules/content-board/content-board.php:1224 +msgid "Reorder" +msgstr "" + +#: modules/content-overview/content-overview.php:1251 msgid "Reorder Columns" msgstr "" -#: modules/content-overview/content-overview.php:1398 +#: modules/content-board/content-board.php:1372 +#: modules/content-overview/content-overview.php:1399 msgid "Reorder Filters" msgstr "" -#: modules/editorial-comments/editorial-comments.php:623 +#: modules/editorial-comments/editorial-comments.php:625 msgid "Reply" msgstr "" -#: modules/editorial-comments/editorial-comments.php:620 +#: modules/editorial-comments/editorial-comments.php:622 msgid "Reply to this comment" msgstr "" @@ -2184,13 +2329,16 @@ msgstr "" msgid "Reschedule" msgstr "" -#: modules/calendar/calendar.php:2070 -#: modules/content-overview/content-overview.php:858 -#: modules/content-overview/content-overview.php:1954 +#: modules/calendar/calendar.php:2007 +#: modules/content-board/content-board.php:839 +#: modules/content-board/content-board.php:1977 +#: modules/content-overview/content-overview.php:860 +#: modules/content-overview/content-overview.php:1955 msgid "Reset" msgstr "" -#: modules/content-overview/content-overview.php:1953 +#: modules/content-board/content-board.php:1976 +#: modules/content-overview/content-overview.php:1954 msgid "Reset Filters" msgstr "" @@ -2198,7 +2346,7 @@ msgstr "" msgid "Reviews" msgstr "" -#: common/php/class-module.php:678 +#: common/php/class-module.php:743 msgid "Role" msgstr "" @@ -2208,7 +2356,7 @@ msgstr "" msgid "role:%s" msgstr "" -#: common/php/class-module.php:675 +#: common/php/class-module.php:740 #: lib/Notifications/Workflow/Step/Receiver/Role.php:31 msgid "Roles" msgstr "" @@ -2217,11 +2365,11 @@ msgstr "" msgid "Sat" msgstr "" -#: modules/calendar/calendar.php:764 modules/calendar/calendar.php:1848 +#: modules/calendar/calendar.php:764 modules/calendar/calendar.php:1785 msgid "Save" msgstr "" -#: modules/calendar/calendar.php:1842 +#: modules/calendar/calendar.php:1779 #, php-format msgid "Save “%s”" msgstr "" @@ -2234,7 +2382,12 @@ msgstr "" msgid "Saving..." msgstr "" -#: common/php/class-module.php:264 modules/calendar/calendar.php:1959 +#: modules/content-board/content-board.php:2561 +msgid "Schedule Date" +msgstr "" + +#: common/php/class-module.php:329 modules/calendar/calendar.php:1896 +#: modules/content-board/content-board.php:2500 #: modules/notifications-log/library/NotificationsLogTable.php:523 msgid "Scheduled" msgstr "" @@ -2243,24 +2396,27 @@ msgstr "" msgid "Scheduled for %d receivers. Click here to display them." msgstr "" -#: modules/content-overview/content-overview.php:1902 +#: modules/content-board/content-board.php:1925 +#: modules/content-overview/content-overview.php:1903 msgid "Search" msgstr "" -#: modules/content-overview/content-overview.php:1901 -#: modules/content-overview/content-overview.php:2168 +#: modules/content-board/content-board.php:1924 +#: modules/content-board/content-board.php:2191 +#: modules/content-overview/content-overview.php:1902 +#: modules/content-overview/content-overview.php:2169 msgid "Search box" msgstr "" -#: modules/editorial-comments/editorial-comments.php:289 +#: modules/editorial-comments/editorial-comments.php:291 msgid "Search Comments" msgstr "" #: modules/editorial-metadata/editorial-metadata.php:448 -msgid "Search Editorial Metadata" +msgid "Search Editorial Fields" msgstr "" -#: publishpress.php:1312 +#: publishpress.php:1325 msgid "Search Notifications" msgstr "" @@ -2277,7 +2433,7 @@ msgid "Search Notify Users" msgstr "" #. %s: search keywords -#: modules/editorial-comments/editorial-comments.php:276 +#: modules/editorial-comments/editorial-comments.php:278 #, php-format msgid "Search results for “%s”" msgstr "" @@ -2286,12 +2442,15 @@ msgstr "" msgid "Select at least one option for each section." msgstr "" -#: modules/content-overview/content-overview.php:1279 -#: modules/content-overview/content-overview.php:1427 +#: modules/content-board/content-board.php:1253 +#: modules/content-board/content-board.php:1401 +#: modules/content-overview/content-overview.php:1280 +#: modules/content-overview/content-overview.php:1428 msgid "Select Metakey" msgstr "" -#: modules/content-overview/content-overview.php:2210 +#: modules/content-board/content-board.php:2233 +#: modules/content-overview/content-overview.php:2211 msgid "Select option..." msgstr "" @@ -2350,7 +2509,8 @@ msgstr "" msgid "Show %s more" msgstr "" -#: modules/content-overview/content-overview.php:816 +#: modules/content-board/content-board.php:797 +#: modules/content-overview/content-overview.php:818 msgid "Show content from" msgstr "" @@ -2425,32 +2585,32 @@ msgstr "" msgid "Sorry! You're not subscribed to any posts!" msgstr "" -#: modules/editorial-comments/editorial-comments.php:1080 +#: modules/editorial-comments/editorial-comments.php:1082 msgid "" "Sorry, you can't delete this editorial comment because it has some replies." msgstr "" -#: modules/editorial-comments/editorial-comments.php:768 +#: modules/editorial-comments/editorial-comments.php:770 msgid "" "Sorry, you don't have the privileges to add editorial comments. Please talk " "to your Administrator." msgstr "" -#: modules/editorial-comments/editorial-comments.php:1059 -#: modules/editorial-comments/editorial-comments.php:1163 +#: modules/editorial-comments/editorial-comments.php:1061 +#: modules/editorial-comments/editorial-comments.php:1165 msgid "" "Sorry, you don't have the privileges to delete this editorial comment. " "Please talk to your Administrator." msgstr "" -#: modules/editorial-comments/editorial-comments.php:911 -#: modules/editorial-comments/editorial-comments.php:1043 +#: modules/editorial-comments/editorial-comments.php:913 +#: modules/editorial-comments/editorial-comments.php:1045 msgid "" "Sorry, you don't have the privileges to edit editorial comments. Please talk " "to your Administrator." msgstr "" -#: modules/editorial-comments/editorial-comments.php:929 +#: modules/editorial-comments/editorial-comments.php:931 msgid "" "Sorry, you don't have the privileges to edit this editorial comment. Please " "talk to your Administrator." @@ -2460,9 +2620,10 @@ msgstr "" msgid "Start date" msgstr "" -#: modules/content-overview/content-overview.php:1079 -#: modules/content-overview/content-overview.php:1093 -#: modules/content-overview/content-overview.php:1137 +#: modules/content-board/content-board.php:1071 +#: modules/content-overview/content-overview.php:1081 +#: modules/content-overview/content-overview.php:1095 +#: modules/content-overview/content-overview.php:1138 #: modules/notifications-log/library/NotificationsLogTable.php:494 msgid "Status" msgstr "" @@ -2473,7 +2634,7 @@ msgstr "" msgid "Status was changed for %1$s #%2$s \"%3$s\" by %4$s %5$s" msgstr "" -#: modules/calendar/calendar.php:2545 +#: modules/calendar/calendar.php:2482 msgid "Statuses to display publish time" msgstr "" @@ -2510,19 +2671,22 @@ msgstr "" msgid "synchronous" msgstr "" -#: modules/calendar/calendar.php:3548 +#: modules/calendar/calendar.php:3485 msgid "Tag" msgid_plural "Tags" msgstr[0] "" msgstr[1] "" -#: modules/calendar/calendar.php:3647 -#: modules/content-overview/content-overview.php:1751 +#: modules/calendar/calendar.php:3584 +#: modules/content-board/content-board.php:1774 +#: modules/content-overview/content-overview.php:1752 msgid "Tags" msgstr "" -#: modules/content-overview/content-overview.php:1155 -#: modules/content-overview/content-overview.php:1215 +#: modules/content-board/content-board.php:1129 +#: modules/content-board/content-board.php:1189 +#: modules/content-overview/content-overview.php:1156 +#: modules/content-overview/content-overview.php:1216 msgid "Taxonomies" msgstr "" @@ -2532,12 +2696,12 @@ msgstr "" #: modules/editorial-metadata/editorial-metadata.php:446 msgctxt "taxonomy general name" -msgid "Metadata" +msgid "Editorial Field" msgstr "" #: modules/editorial-metadata/editorial-metadata.php:447 msgctxt "taxonomy singular name" -msgid "Metadata" +msgid "Editorial Field" msgstr "" #: modules/calendar/calendar.php:1375 @@ -2563,6 +2727,11 @@ msgid "" msgstr "" #: modules/editorial-metadata/editorial-metadata.php:1908 +msgid "" +"The description can be used to communicate with your team about what the " +"field is for." +msgstr "" + #: modules/editorial-metadata/editorial-metadata.php:2232 msgid "" "The description can be used to communicate with your team about what the " @@ -2574,12 +2743,12 @@ msgid "The Events Calendar Integration" msgstr "" #: modules/editorial-metadata/editorial-metadata.php:1922 -msgid "The metadata type cannot be changed once created." +msgid "The field type cannot be changed once created." msgstr "" #: modules/editorial-metadata/editorial-metadata.php:1882 #: modules/editorial-metadata/editorial-metadata.php:2201 -msgid "The name is for labeling the metadata field." +msgid "The name is for labeling the editorial fields." msgstr "" #: modules/notifications-log/library/NotificationsLogTable.php:277 @@ -2592,7 +2761,7 @@ msgid "" "The notifications module will need to be enabled for this widget to display." msgstr "" -#: modules/calendar/calendar.php:2621 +#: modules/calendar/calendar.php:2558 msgid "" "The number of weeks shown on the calendar can be changed on a user-by-user " "basis using the calendar's screen options." @@ -2602,11 +2771,11 @@ msgstr "" msgid "The parent log was deleted or probably rescheduled" msgstr "" -#: modules/calendar/calendar.php:3767 +#: modules/calendar/calendar.php:3704 msgid "The selected post type is not enabled for the calendar." msgstr "" -#: modules/calendar/calendar.php:4246 +#: modules/calendar/calendar.php:4183 msgid "" "The selected user doesn't have enough permissions to be set as the post " "author." @@ -2616,7 +2785,8 @@ msgstr "" msgid "The slug cannot be changed once the term has been created." msgstr "" -#: modules/content-overview/content-overview.php:2539 +#: modules/content-board/content-board.php:2755 +#: modules/content-overview/content-overview.php:2544 msgid "There are no posts in the range or filter specified." msgstr "" @@ -2624,10 +2794,10 @@ msgstr "" msgid "There are no PublishPress modules registered" msgstr "" -#: modules/editorial-comments/editorial-comments.php:865 -#: modules/editorial-comments/editorial-comments.php:995 -#: modules/editorial-comments/editorial-comments.php:1105 -#: modules/editorial-comments/editorial-comments.php:1189 +#: modules/editorial-comments/editorial-comments.php:867 +#: modules/editorial-comments/editorial-comments.php:997 +#: modules/editorial-comments/editorial-comments.php:1107 +#: modules/editorial-comments/editorial-comments.php:1191 msgid "" "There was a problem of some sort. Try again or contact your administrator." msgstr "" @@ -2645,7 +2815,7 @@ msgstr "" #: modules/editorial-metadata/input-handlers/editorial-metadata-input-handler.php:84 #: modules/editorial-metadata/input-handlers/editorial-metadata-input-handler.php:106 #: modules/editorial-metadata/input-handlers/editorial-metadata-input-handler.php:127 -msgid "This editorial metadata type is not yet supported." +msgid "This editorial fields type is not yet supported." msgstr "" #: modules/notifications/notifications.php:1056 @@ -2653,21 +2823,21 @@ msgstr "" msgid "This email was sent %s." msgstr "" -#: modules/notifications-log/notifications-log.php:835 -msgid "" -"This is a preview of the scheduled message. The content can still change " -"until the notification is sent." -msgstr "" - #: modules/editorial-metadata/editorial-metadata.php:2124 #: modules/editorial-metadata/editorial-metadata.php:2464 -msgid "This metadata will be available for these post types." +msgid "This field will be available for these post types." msgstr "" #: modules/editorial-metadata/editorial-metadata.php:2148 #: modules/editorial-metadata/editorial-metadata.php:2487 msgid "" -"This metadata will be viewable on the overview screens for these post types." +"This field will be viewable on the overview screens for these post types." +msgstr "" + +#: modules/notifications-log/notifications-log.php:835 +msgid "" +"This is a preview of the scheduled message. The content can still change " +"until the notification is sent." msgstr "" #: modules/notifications-log/notifications-log.php:442 @@ -2708,9 +2878,12 @@ msgstr "" msgid "Thu" msgstr "" -#: modules/calendar/calendar.php:3608 +#: modules/calendar/calendar.php:3545 +#: modules/content-board/content-board.php:536 +#: modules/content-board/content-board.php:1249 +#: modules/content-board/content-board.php:1741 #: modules/content-overview/content-overview.php:557 -#: modules/content-overview/content-overview.php:1718 +#: modules/content-overview/content-overview.php:1719 #: lib/Notifications/Table/Notifications.php:156 #: lib/Notifications/Table/Workflows.php:142 msgid "Title" @@ -2721,9 +2894,12 @@ msgstr "" msgid "Title: %s" msgstr "" -#: modules/content-overview/content-overview.php:1915 -#: modules/content-overview/content-overview.php:2244 -#: modules/content-overview/content-overview.php:2278 +#: modules/content-board/content-board.php:1938 +#: modules/content-board/content-board.php:2267 +#: modules/content-board/content-board.php:2301 +#: modules/content-overview/content-overview.php:1916 +#: modules/content-overview/content-overview.php:2245 +#: modules/content-overview/content-overview.php:2279 msgid "to" msgstr "" @@ -2731,18 +2907,19 @@ msgstr "" msgid "To date" msgstr "" -#: modules/calendar/calendar.php:797 modules/calendar/calendar.php:2118 +#: modules/calendar/calendar.php:797 modules/calendar/calendar.php:2055 msgid "Today" msgstr "" -#: modules/calendar/calendar.php:2112 +#: modules/calendar/calendar.php:2049 #, php-format msgid "Today is %s" msgstr "" -#: common/php/class-module.php:267 modules/calendar/calendar.php:1808 -#: modules/calendar/calendar.php:3567 -#: modules/content-overview/content-overview.php:2994 +#: common/php/class-module.php:332 modules/calendar/calendar.php:1745 +#: modules/calendar/calendar.php:3504 +#: modules/content-board/content-board.php:2677 +#: modules/content-overview/content-overview.php:3029 msgid "Trash" msgstr "" @@ -2776,7 +2953,8 @@ msgid "Undefined error found" msgstr "" #: modules/calendar/calendar.php:1435 -#: modules/content-overview/content-overview.php:893 +#: modules/content-board/content-board.php:874 +#: modules/content-overview/content-overview.php:895 msgid "Undo" msgstr "" @@ -2784,16 +2962,16 @@ msgstr "" msgid "Unpublished Content" msgstr "" -#: modules/calendar/calendar.php:762 modules/calendar/calendar.php:3773 +#: modules/calendar/calendar.php:762 modules/calendar/calendar.php:3710 msgid "Untitled" msgstr "" #: modules/editorial-metadata/editorial-metadata.php:452 -msgid "Update Editorial Metadata" +msgid "Update Editorial Fields" msgstr "" #: modules/editorial-metadata/editorial-metadata.php:2171 -msgid "Update Metadata Term" +msgid "Update Editorial fields term" msgstr "" #: modules/dashboard/widgets/dashboard-notepad.php:168 @@ -2819,7 +2997,7 @@ msgid "" "Please edit the post." msgstr "" -#: includes.php:159 lib/Legacy/Util.php:213 +#: includes.php:161 lib/Legacy/Util.php:213 msgid "Upgrade to Pro" msgstr "" @@ -2848,7 +3026,7 @@ msgstr "" msgid "User role" msgstr "" -#: modules/editorial-comments/editorial-comments.php:1270 +#: modules/editorial-comments/editorial-comments.php:1272 msgid "User Url" msgstr "" @@ -2857,11 +3035,11 @@ msgstr "" msgid "User: %s (%d)" msgstr "" -#: modules/editorial-comments/editorial-comments.php:1265 +#: modules/editorial-comments/editorial-comments.php:1267 msgid "Username" msgstr "" -#: common/php/class-module.php:686 +#: common/php/class-module.php:751 #: lib/Notifications/Workflow/Step/Receiver/User.php:26 msgid "Users" msgstr "" @@ -2870,13 +3048,15 @@ msgstr "" msgid "Users who selected \"Notify me\" for the content" msgstr "" -#: modules/calendar/calendar.php:1832 modules/calendar/calendar.php:3574 -#: modules/content-overview/content-overview.php:3010 +#: modules/calendar/calendar.php:1769 modules/calendar/calendar.php:3511 +#: modules/content-board/content-board.php:2693 +#: modules/content-overview/content-overview.php:3045 msgid "View" msgstr "" -#: modules/calendar/calendar.php:1826 -#: modules/content-overview/content-overview.php:3004 +#: modules/calendar/calendar.php:1763 +#: modules/content-board/content-board.php:2687 +#: modules/content-overview/content-overview.php:3039 #, php-format msgid "View “%s”" msgstr "" @@ -2886,7 +3066,7 @@ msgstr "" msgid "View “%s” on Google Maps" msgstr "" -#: modules/calendar/calendar.php:4032 +#: modules/calendar/calendar.php:3969 msgid "View all categories" msgstr "" @@ -2918,7 +3098,7 @@ msgstr "" msgid "Viewable" msgstr "" -#: publishpress.php:1363 +#: publishpress.php:1376 msgid "Warning" msgstr "" @@ -3013,7 +3193,7 @@ msgid "" "following shortcodes:" msgstr "" -#: modules/editorial-comments/editorial-comments.php:532 +#: modules/editorial-comments/editorial-comments.php:534 msgid "" "You can add editorial comments to a post once you've saved it for the first " "time." @@ -3024,25 +3204,34 @@ msgstr "" msgid "You can see all editorial comments on this %s here: " msgstr "" -#: modules/content-overview/content-overview.php:1149 -#: modules/content-overview/content-overview.php:1209 -msgid "You do not have any editorial metadata enabled" +#: modules/content-board/content-board.php:1123 +#: modules/content-board/content-board.php:1183 +#: modules/content-overview/content-overview.php:1150 +#: modules/content-overview/content-overview.php:1210 +msgid "You do not have any editorial fields enabled" msgstr "" -#: modules/content-overview/content-overview.php:1156 -#: modules/content-overview/content-overview.php:1216 +#: modules/content-board/content-board.php:1130 +#: modules/content-board/content-board.php:1190 +#: modules/content-overview/content-overview.php:1157 +#: modules/content-overview/content-overview.php:1217 msgid "You do not have any public taxonomies" msgstr "" -#: publishpress.php:670 +#: publishpress.php:671 msgid "You do not have necessary permissions to complete this action." msgstr "" -#: modules/content-overview/content-overview.php:1009 +#: modules/content-board/content-board.php:990 +#: modules/content-overview/content-overview.php:1011 #, php-format msgid "You do not have permission to add new %s" msgstr "" +#: modules/content-board/content-board.php:1521 +msgid "You do not have permission to edit selected post." +msgstr "" + #: lib/Notifications/Table/Notifications.php:235 msgid "You don't have any notifications" msgstr "" diff --git a/lib/Notifications/Table/Base.php b/lib/Notifications/Table/Base.php index 812735a3c..b5fd1e401 100644 --- a/lib/Notifications/Table/Base.php +++ b/lib/Notifications/Table/Base.php @@ -180,7 +180,7 @@ public function __construct($args = []) if (empty($this->modes)) { $this->modes = [ 'list' => __('List View'), - 'excerpt' => __('Excerpt View'), + 'excerpt' => __('Excerpt View', 'publishpress'), ]; } } @@ -657,7 +657,7 @@ protected function bulk_actions($which = '') 'Select bulk action' ) . ''; echo '