From b4b94fe4e11fda95cc13de4ffb1b33d003a2ae49 Mon Sep 17 00:00:00 2001 From: Miguel Peixe Date: Thu, 22 Jan 2026 11:15:43 -0300 Subject: [PATCH 01/21] chore: deprecate circle ci --- .circleci/config.yml | 50 ---------------------------- .github/workflows/build-and-test.yml | 27 +++++++++++++++ .github/workflows/i18n.yml | 16 +++++++++ .github/workflows/php.yml | 22 ++++++++++++ .github/workflows/release.yml | 37 ++++++++++++++++++++ 5 files changed, 102 insertions(+), 50 deletions(-) delete mode 100755 .circleci/config.yml create mode 100644 .github/workflows/build-and-test.yml create mode 100644 .github/workflows/i18n.yml create mode 100644 .github/workflows/php.yml create mode 100644 .github/workflows/release.yml diff --git a/.circleci/config.yml b/.circleci/config.yml deleted file mode 100755 index c441d7f8a4..0000000000 --- a/.circleci/config.yml +++ /dev/null @@ -1,50 +0,0 @@ -version: 2.1 - -orbs: - newspack: newspack/newspack@1.5.8 - -workflows: - version: 2 - all: - jobs: - - newspack/build - - newspack/i18n: - requires: - - newspack/build - filters: - branches: - only: - - trunk - - newspack/lint-js-scss: - requires: - - newspack/build - - newspack/test-js: - requires: - - newspack/build - - newspack/release: - requires: - - newspack/build - filters: - branches: - only: - - release - - alpha - - /^hotfix\/.*/ - - /^epic\/.*/ - - newspack/build-distributable: - requires: - - newspack/build - # Running this after release ensure the version number in files will be correct. - - newspack/release - archive-name: 'newspack-plugin' - - newspack/post-release: - requires: - - newspack/release - filters: - branches: - only: - - release - php: - jobs: - - newspack/lint-php - - newspack/test-php diff --git a/.github/workflows/build-and-test.yml b/.github/workflows/build-and-test.yml new file mode 100644 index 0000000000..fd46881274 --- /dev/null +++ b/.github/workflows/build-and-test.yml @@ -0,0 +1,27 @@ +name: Build and Test + +on: + pull_request: + push: + branches: + - trunk + - release + - alpha + - 'hotfix/**' + - 'epic/**' + +concurrency: + group: ${{ github.workflow }}-${{ github.ref }} + cancel-in-progress: true + +jobs: + build: + uses: Automattic/newspack-scripts/.github/workflows/reusable-build.yml@refactor/deprecate-circle-ci + + lint-js-scss: + needs: build + uses: Automattic/newspack-scripts/.github/workflows/reusable-lint-js-scss.yml@refactor/deprecate-circle-ci + + test-js: + needs: build + uses: Automattic/newspack-scripts/.github/workflows/reusable-test-js.yml@refactor/deprecate-circle-ci diff --git a/.github/workflows/i18n.yml b/.github/workflows/i18n.yml new file mode 100644 index 0000000000..926e8a09fc --- /dev/null +++ b/.github/workflows/i18n.yml @@ -0,0 +1,16 @@ +name: Internationalization + +on: + push: + branches: + - trunk + +concurrency: + group: ${{ github.workflow }}-${{ github.ref }} + cancel-in-progress: true + +jobs: + i18n: + uses: Automattic/newspack-scripts/.github/workflows/reusable-i18n.yml@refactor/deprecate-circle-ci + secrets: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/php.yml b/.github/workflows/php.yml new file mode 100644 index 0000000000..29df675bc4 --- /dev/null +++ b/.github/workflows/php.yml @@ -0,0 +1,22 @@ +name: PHP + +on: + pull_request: + push: + branches: + - trunk + - release + - alpha + - 'hotfix/**' + - 'epic/**' + +concurrency: + group: ${{ github.workflow }}-${{ github.ref }} + cancel-in-progress: true + +jobs: + lint-php: + uses: Automattic/newspack-scripts/.github/workflows/reusable-lint-php.yml@refactor/deprecate-circle-ci + + test-php: + uses: Automattic/newspack-scripts/.github/workflows/reusable-test-php.yml@refactor/deprecate-circle-ci diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml new file mode 100644 index 0000000000..1be17f6407 --- /dev/null +++ b/.github/workflows/release.yml @@ -0,0 +1,37 @@ +name: Release + +on: + push: + branches: + - release + - alpha + - 'hotfix/**' + - 'epic/**' + +concurrency: + group: ${{ github.workflow }}-${{ github.ref }} + cancel-in-progress: true + +jobs: + build: + uses: Automattic/newspack-scripts/.github/workflows/reusable-build.yml@refactor/deprecate-circle-ci + + release: + needs: build + uses: Automattic/newspack-scripts/.github/workflows/reusable-release.yml@refactor/deprecate-circle-ci + secrets: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + NPM_TOKEN: ${{ secrets.NPM_TOKEN }} + + build-distributable: + needs: release + uses: Automattic/newspack-scripts/.github/workflows/reusable-build-distributable.yml@refactor/deprecate-circle-ci + with: + archive-name: newspack-plugin + + post-release: + if: github.ref == 'refs/heads/release' + needs: release + uses: Automattic/newspack-scripts/.github/workflows/reusable-post-release.yml@refactor/deprecate-circle-ci + secrets: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} From c10c0e6cdfcfdf81767b24b0876cd2483fdb68a7 Mon Sep 17 00:00:00 2001 From: Miguel Peixe Date: Thu, 22 Jan 2026 15:20:21 -0300 Subject: [PATCH 02/21] feat: build distributable for prs --- .github/workflows/build-distributable.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .github/workflows/build-distributable.yml diff --git a/.github/workflows/build-distributable.yml b/.github/workflows/build-distributable.yml new file mode 100644 index 0000000000..b6dd2e4c01 --- /dev/null +++ b/.github/workflows/build-distributable.yml @@ -0,0 +1,14 @@ +name: Build distributable + +on: + pull_request: + +concurrency: + group: ${{ github.workflow }}-${{ github.ref }} + cancel-in-progress: true + +jobs: + build-distributable: + uses: Automattic/newspack-scripts/.github/workflows/reusable-build-distributable.yml@refactor/deprecate-circle-ci + with: + archive-name: newspack-plugin From c65f7ed84ff50b26dc87b5585818f72d6fdf29e7 Mon Sep 17 00:00:00 2001 From: Miguel Peixe Date: Thu, 22 Jan 2026 16:27:40 -0300 Subject: [PATCH 03/21] fix: trigger release workflow From a3efb68d39949139369500a1db913760bc44ce62 Mon Sep 17 00:00:00 2001 From: Miguel Peixe Date: Thu, 22 Jan 2026 16:30:57 -0300 Subject: [PATCH 04/21] fix: trigger release worfklow From 452a9a062747858268f7ecb8054dd8f65f81f3dc Mon Sep 17 00:00:00 2001 From: Miguel Peixe Date: Thu, 22 Jan 2026 16:35:15 -0300 Subject: [PATCH 05/21] fix: gh token references --- .github/workflows/i18n.yml | 2 -- .github/workflows/release.yml | 3 --- 2 files changed, 5 deletions(-) diff --git a/.github/workflows/i18n.yml b/.github/workflows/i18n.yml index 926e8a09fc..e2d4788d21 100644 --- a/.github/workflows/i18n.yml +++ b/.github/workflows/i18n.yml @@ -12,5 +12,3 @@ concurrency: jobs: i18n: uses: Automattic/newspack-scripts/.github/workflows/reusable-i18n.yml@refactor/deprecate-circle-ci - secrets: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 1be17f6407..13f14cf5c5 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -20,7 +20,6 @@ jobs: needs: build uses: Automattic/newspack-scripts/.github/workflows/reusable-release.yml@refactor/deprecate-circle-ci secrets: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} NPM_TOKEN: ${{ secrets.NPM_TOKEN }} build-distributable: @@ -33,5 +32,3 @@ jobs: if: github.ref == 'refs/heads/release' needs: release uses: Automattic/newspack-scripts/.github/workflows/reusable-post-release.yml@refactor/deprecate-circle-ci - secrets: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} From 5f50c4957e4c9fd4198c5aadc8c5525a2076c5c7 Mon Sep 17 00:00:00 2001 From: Miguel Peixe Date: Thu, 22 Jan 2026 17:43:20 -0300 Subject: [PATCH 06/21] chore: test i18n --- .github/workflows/i18n.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/i18n.yml b/.github/workflows/i18n.yml index 926e8a09fc..cbb6a11146 100644 --- a/.github/workflows/i18n.yml +++ b/.github/workflows/i18n.yml @@ -4,6 +4,7 @@ on: push: branches: - trunk + - chore/deprecate-circle-ci concurrency: group: ${{ github.workflow }}-${{ github.ref }} From 5d6feec0c3eb2b3f82e217d67d8ac863811c3307 Mon Sep 17 00:00:00 2001 From: Miguel Peixe Date: Thu, 22 Jan 2026 17:45:26 -0300 Subject: [PATCH 07/21] fix: i18n workflow --- .github/workflows/i18n.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/.github/workflows/i18n.yml b/.github/workflows/i18n.yml index cbb6a11146..9a2b50ad1d 100644 --- a/.github/workflows/i18n.yml +++ b/.github/workflows/i18n.yml @@ -13,5 +13,3 @@ concurrency: jobs: i18n: uses: Automattic/newspack-scripts/.github/workflows/reusable-i18n.yml@refactor/deprecate-circle-ci - secrets: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} From 8ca1fab151aee82fa58eee9a4436b977f85467d2 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 23 Jan 2026 13:59:20 +0000 Subject: [PATCH 08/21] chore: update translation files [skip ci] --- languages/newspack-plugin.pot | 1463 ++------------------------------- 1 file changed, 59 insertions(+), 1404 deletions(-) diff --git a/languages/newspack-plugin.pot b/languages/newspack-plugin.pot index 7e2316d68e..7d96d588f8 100644 --- a/languages/newspack-plugin.pot +++ b/languages/newspack-plugin.pot @@ -3,13 +3,13 @@ msgid "" msgstr "" "Project-Id-Version: Newspack 6.29.1\n" -"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/project\n" +"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/newspack-plugin\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"POT-Creation-Date: 2026-01-22T17:22:49+00:00\n" +"POT-Creation-Date: 2026-01-23T13:58:50+00:00\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "X-Generator: WP-CLI 2.12.0\n" "X-Domain: newspack-plugin\n" @@ -219,13 +219,11 @@ msgstr "" #: includes/class-magic-link.php:1157 #: dist/blocks.js:4 -#: src/blocks/reader-registration/edit.js:204 msgid "disabled" msgstr "" #: includes/class-magic-link.php:1157 #: dist/blocks.js:4 -#: src/blocks/reader-registration/edit.js:204 msgid "enabled" msgstr "" @@ -264,7 +262,6 @@ msgstr "" #: includes/reader-activation/class-reader-activation.php:1622 #: includes/reader-activation/class-reader-activation.php:1737 #: dist/audience-wizards.26392cdd43fc5adc8774.js:16 -#: src/wizards/audience/components/prompt-action-card/index.js:137 msgid "Close" msgstr "" @@ -633,13 +630,11 @@ msgstr "" #: includes/class-plugin-manager.php:312 #: dist/billboard.js:12 -#: src/wizards/advertising/components/ad-refresh-control/index.js:129 msgid "Ad Refresh Control" msgstr "" #: includes/class-plugin-manager.php:313 #: dist/billboard.js:12 -#: src/wizards/advertising/components/ad-refresh-control/index.js:130 msgid "Enable Active View refresh for Google Ad Manager ads without needing to modify any code." msgstr "" @@ -954,7 +949,6 @@ msgstr "" #: includes/collections/class-collection-category-taxonomy.php:99 #: includes/lite-site/class-lite-site.php:121 #: dist/billboard.js:12 -#: src/wizards/advertising/components/suppression/index.js:126 msgid "Categories" msgstr "" @@ -1010,13 +1004,11 @@ msgstr "" #: includes/collections/class-collection-meta.php:123 #: dist/audience-wizards.26392cdd43fc5adc8774.js:10 -#: src/wizards/audience/components/settings-modal/index.js:134 msgid "Show" msgstr "" #: includes/collections/class-collection-meta.php:127 #: dist/audience-wizards.26392cdd43fc5adc8774.js:10 -#: src/wizards/audience/components/settings-modal/index.js:134 msgid "Hide" msgstr "" @@ -1029,9 +1021,7 @@ msgstr "" #: includes/collections/class-post-meta.php:37 #: includes/collections/class-post-type.php:73 #: includes/collections/class-query-helper.php:205 -#: src/blocks/collections/class-collections-block.php:391 #: dist/blocks.js:4 -#: src/blocks/collections/components/CollectionItem.jsx:61 msgid "Order" msgstr "" @@ -1172,8 +1162,6 @@ msgstr "" #: includes/collections/class-collection-taxonomy.php:229 #: includes/wizards/newspack/class-newspack-settings.php:118 #: dist/blocks.js:4 -#: src/blocks/collections/components/InspectorPanel.jsx:86 -#: src/blocks/collections/index.js:15 msgid "Collections" msgstr "" @@ -1240,7 +1228,6 @@ msgid "View Collections" msgstr "" #: includes/collections/class-post-type.php:104 -#: src/blocks/collections/class-collections-block.php:110 msgid "No collections found." msgstr "" @@ -1273,15 +1260,12 @@ msgid "This collection could not be saved because a collection with the same tit msgstr "" #: includes/collections/class-query-helper.php:204 -#: src/blocks/collections/class-collections-block.php:387 #: dist/blocks.js:4 -#: src/blocks/collections/components/CollectionItem.jsx:57 msgid "Subscribe" msgstr "" #. translators: %s is the volume number of a collection #: includes/collections/class-template-helper.php:253 -#: src/blocks/collections/class-collections-block.php:334 #, php-format msgctxt "collection volume number" msgid "Vol. %s" @@ -1289,7 +1273,6 @@ msgstr "" #. translators: %s is the issue number of a collection #: includes/collections/class-template-helper.php:258 -#: src/blocks/collections/class-collections-block.php:347 #, php-format msgctxt "collection issue number" msgid "No. %s" @@ -1315,7 +1298,6 @@ msgstr "" #: includes/collections/class-template-helper.php:690 #: dist/blocks.js:4 -#: src/blocks/collections/components/InspectorPanel.jsx:76 msgid "Recent" msgstr "" @@ -1349,15 +1331,12 @@ msgstr "" #: includes/content-gate/class-content-gate.php:779 #: dist/billboard.js:12 -#: src/wizards/advertising/components/suppression/index.js:78 msgid "Post Types" msgstr "" #: includes/content-gate/class-metering-countdown.php:36 #: dist/audience-wizards.26392cdd43fc5adc8774.js:24 #: dist/commons.js:15 -#: src/blocks/content-gate/countdown-box/edit.jsx:112 -#: src/wizards/audience/views/setup/countdown-banner.js:111 msgid "Subscribe now and get unlimited access." msgstr "" @@ -1365,8 +1344,6 @@ msgstr "" #: includes/content-gate/content-gifting/class-content-gifting-cta.php:137 #: dist/audience-wizards.26392cdd43fc5adc8774.js:1 #: dist/audience-wizards.26392cdd43fc5adc8774.js:24 -#: src/wizards/audience/views/setup/content-gifting.js:186 -#: src/wizards/audience/views/setup/countdown-banner.js:124 msgid "Subscribe now" msgstr "" @@ -1392,7 +1369,6 @@ msgstr "" #: includes/reader-activation/class-reader-activation.php:291 #: includes/reader-activation/class-reader-activation.php:297 #: dist/audience-wizards.26392cdd43fc5adc8774.js:1 -#: src/wizards/audience/views/setup/content-gifting.js:171 msgid "Create an account" msgstr "" @@ -1400,19 +1376,14 @@ msgstr "" #: includes/content-gate/content-gifting/class-content-gifting-cta.php:240 #: includes/plugins/woocommerce-subscriptions/class-subscriptions-tiers.php:680 #: includes/reader-activation/class-reader-activation.php:292 -#: src/blocks/reader-registration/index.php:114 #: dist/audience-wizards.26392cdd43fc5adc8774.js:1 #: dist/audience-wizards.26392cdd43fc5adc8774.js:24 #: dist/blocks.js:4 -#: src/blocks/reader-registration/edit.js:325 -#: src/wizards/audience/views/setup/content-gifting.js:173 -#: src/wizards/audience/views/setup/countdown-banner.js:112 msgid "Sign in to an existing account" msgstr "" #: includes/content-gate/content-gifting/class-content-gifting-cta.php:48 #: dist/audience-wizards.26392cdd43fc5adc8774.js:1 -#: src/wizards/audience/views/setup/content-gifting.js:165 msgid "This article has been gifted to you by someone who values great journalism." msgstr "" @@ -1429,24 +1400,18 @@ msgstr "" #: includes/content-gate/content-gifting/class-content-gifting.php:273 #: dist/audience-wizards.26392cdd43fc5adc8774.js:1 #: dist/content-gate-editor-metering.js:1 -#: src/content-gate/editor/metering-settings.js:54 -#: src/wizards/audience/views/setup/content-gifting.js:57 msgid "Day" msgstr "" #: includes/content-gate/content-gifting/class-content-gifting.php:274 #: dist/audience-wizards.26392cdd43fc5adc8774.js:1 #: dist/content-gate-editor-metering.js:1 -#: src/content-gate/editor/metering-settings.js:55 -#: src/wizards/audience/views/setup/content-gifting.js:58 msgid "Week" msgstr "" #: includes/content-gate/content-gifting/class-content-gifting.php:275 #: dist/audience-wizards.26392cdd43fc5adc8774.js:1 #: dist/content-gate-editor-metering.js:1 -#: src/content-gate/editor/metering-settings.js:56 -#: src/wizards/audience/views/setup/content-gifting.js:59 msgid "Month" msgstr "" @@ -1480,13 +1445,11 @@ msgstr[1] "" #: includes/content-gate/content-gifting/class-content-gifting.php:382 #: dist/audience-wizards.26392cdd43fc5adc8774.js:1 -#: src/wizards/audience/views/setup/content-gifting.js:80 msgid "Hours" msgstr "" #: includes/content-gate/content-gifting/class-content-gifting.php:383 #: dist/audience-wizards.26392cdd43fc5adc8774.js:1 -#: src/wizards/audience/views/setup/content-gifting.js:81 msgid "Days" msgstr "" @@ -1714,7 +1677,6 @@ msgstr "" #: includes/corrections/class-corrections.php:148 #: dist/other-scripts/corrections-modal.js:1 -#: src/other-scripts/corrections-modal/index.js:208 msgid "Add New Correction" msgstr "" @@ -1817,13 +1779,11 @@ msgstr "" #: includes/corrections/class-corrections.php:412 #: dist/other-scripts/corrections-modal.js:1 -#: src/other-scripts/corrections-modal/index.js:27 msgid "Clarification" msgstr "" #: includes/corrections/class-corrections.php:414 #: dist/other-scripts/corrections-modal.js:1 -#: src/other-scripts/corrections-modal/index.js:26 msgid "Correction" msgstr "" @@ -1849,7 +1809,6 @@ msgstr "" #: includes/corrections/class-corrections.php:519 #: dist/blocks.js:4 -#: src/blocks/collections/index.js:33 msgid "loop" msgstr "" @@ -1975,7 +1934,6 @@ msgstr "" #: includes/emails/class-emails.php:593 #: dist/other-scripts/emails.js:2 -#: src/other-scripts/emails/index.js:86 msgid "Test email was not sent." msgstr "" @@ -1999,16 +1957,6 @@ msgstr "" #: dist/other-scripts/emails.js:2 #: dist/setup.js:7 #: dist/wizards.js:1 -#: src/blocks/avatar/edit.jsx:23 -#: src/blocks/byline/inspector.jsx:25 -#: src/blocks/collections/components/InspectorPanel.jsx:63 -#: src/content-gate/editor/editor.js:108 -#: src/other-scripts/emails/index.js:106 -#: src/wizards/advertising/index.js:154 -#: src/wizards/advertising/views/settings/index.js:20 -#: src/wizards/audience/components/settings-modal/index.js:48 -#: src/wizards/newsletters/index.js:30 -#: src/wizards/newsletters/views/settings/index.js:393 msgid "Settings" msgstr "" @@ -2153,7 +2101,6 @@ msgid "%1$s | Details: %2$s" msgstr "" #: includes/oauth/class-google-login.php:292 -#: src/blocks/reader-registration/index.php:341 msgid "Thank you for registering!" msgstr "" @@ -2285,13 +2232,6 @@ msgstr "" #: dist/newspack-wizards.80278d14c9e76a6696a2.js:23 #: dist/newspack-wizards.80278d14c9e76a6696a2.js:24 #: dist/setup.js:7 -#: src/wizards/advertising/views/ad-unit/index.js:167 -#: src/wizards/advertising/views/ad-units/index.js:137 -#: src/wizards/advertising/views/ad-units/index.js:190 -#: src/wizards/advertising/views/placements/index.js:226 -#: src/wizards/advertising/views/providers/index.js:111 -#: src/wizards/audience/components/settings-modal/index.js:179 -#: src/wizards/audience/views/campaigns/segments/single-segment.js:255 msgid "Save" msgstr "" @@ -2901,7 +2841,6 @@ msgstr "" #: includes/plugins/woocommerce-subscriptions/class-subscriptions-tiers.php:532 #: dist/audience-wizards.26392cdd43fc5adc8774.js:7 -#: src/wizards/audience/components/settings-modal/index.js:56 msgid "Frequency" msgstr "" @@ -2940,15 +2879,6 @@ msgstr "" #: dist/newspack-wizards.80278d14c9e76a6696a2.js:19 #: dist/newspack-wizards.80278d14c9e76a6696a2.js:23 #: dist/other-scripts/corrections-modal.js:7 -#: packages/components/src/with-wizard/index.js:261 -#: src/other-scripts/corrections-modal/index.js:410 -#: src/wizards/advertising/views/ad-unit/index.js:170 -#: src/wizards/advertising/views/placements/index.js:216 -#: src/wizards/advertising/views/providers/index.js:108 -#: src/wizards/audience/components/prompt-action-card/index.js:165 -#: src/wizards/audience/components/settings-modal/index.js:176 -#: src/wizards/audience/views/campaigns/campaigns/index.js:291 -#: src/wizards/audience/views/campaigns/segments/single-segment.js:258 msgid "Cancel" msgstr "" @@ -3054,9 +2984,6 @@ msgstr "" #: dist/commons.js:10 #: dist/newspack-wizards.80278d14c9e76a6696a2.js:7 #: dist/other-scripts/nextdoor.js:1 -#: packages/components/src/image-upload/index.js:98 -#: packages/components/src/sortable-newsletter-list-control/index.js:59 -#: src/other-scripts/nextdoor/index.js:257 msgid "Remove" msgstr "" @@ -3105,7 +3032,6 @@ msgstr "" #: includes/plugins/woocommerce/class-woocommerce-connection.php:509 #: includes/reader-activation/class-reader-activation.php:305 -#: src/blocks/reader-registration/index.php:106 msgid "My Account" msgstr "" @@ -3171,9 +3097,6 @@ msgstr "" #: dist/commons.js:10 #: dist/componentsDemo.js:1 #: dist/handoff-banner.js:1 -#: packages/components/src/handoff/index.js:58 -#: src/wizards/componentsDemo/index.js:265 -#: src/wizards/handoff-banner/index.js:22 msgid "Dismiss" msgstr "" @@ -3265,15 +3188,6 @@ msgstr "" #: dist/newspack-wizards.80278d14c9e76a6696a2.js:7 #: dist/setup.js:4 #: dist/setup.js:7 -#: src/wizards/audience/components/active-campaign.js:31 -#: src/wizards/audience/components/mailchimp.js:31 -#: src/wizards/audience/components/settings.js:42 -#: src/wizards/audience/views/setup/campaign.js:57 -#: src/wizards/audience/views/setup/complete.js:165 -#: src/wizards/audience/views/setup/content-gating.js:71 -#: src/wizards/audience/views/setup/setup.js:93 -#: src/wizards/newsletters/views/settings/index.js:169 -#: src/wizards/newsletters/views/settings/index.js:314 msgid "Something went wrong." msgstr "" @@ -3377,7 +3291,6 @@ msgstr "" #: includes/plugins/woocommerce/my-account/class-my-account-ui-v1.php:282 #: includes/wizards/newspack/class-newspack-dashboard.php:81 #: dist/audience-wizards.26392cdd43fc5adc8774.js:18 -#: src/wizards/audience/views/campaigns/segments/single-segment.js:208 msgid "Newsletters" msgstr "" @@ -3410,7 +3323,6 @@ msgstr "" #: includes/reader-activation/class-reader-activation.php:286 #: includes/reader-activation/class-reader-activation.php:314 #: dist/audience-wizards.26392cdd43fc5adc8774.js:43 -#: src/wizards/audience/views/setup/campaign.js:86 msgid "Continue" msgstr "" @@ -3747,8 +3659,6 @@ msgstr "" #: includes/plugins/woocommerce/my-account/templates/v1/my-subscriptions.php:35 #: dist/audience-wizards.26392cdd43fc5adc8774.js:1 #: dist/audience-wizards.26392cdd43fc5adc8774.js:24 -#: src/wizards/audience/views/setup/content-gifting.js:130 -#: src/wizards/audience/views/setup/countdown-banner.js:70 msgid "Product" msgstr "" @@ -3843,10 +3753,6 @@ msgstr "" #: dist/newspack-wizards.80278d14c9e76a6696a2.js:23 #: dist/newspack-wizards.80278d14c9e76a6696a2.js:24 #: dist/setup.js:7 -#: src/wizards/componentsDemo/index.js:606 -#: src/wizards/componentsDemo/index.js:612 -#: src/wizards/componentsDemo/index.js:628 -#: src/wizards/componentsDemo/index.js:646 msgid "Default" msgstr "" @@ -3872,12 +3778,6 @@ msgstr "" #: dist/newspack-wizards.80278d14c9e76a6696a2.js:1 #: dist/newspack-wizards.80278d14c9e76a6696a2.js:7 #: dist/setup.js:7 -#: src/wizards/advertising/views/ad-units/options-popover.js:37 -#: src/wizards/audience/components/prompt-action-card/index.js:140 -#: src/wizards/audience/components/prompt-popovers/primary.js:64 -#: src/wizards/audience/views/campaigns/segments/segments-list.js:82 -#: src/wizards/componentsDemo/index.js:314 -#: src/wizards/newsletters/views/settings/index.js:360 msgid "Edit" msgstr "" @@ -4098,7 +3998,6 @@ msgstr "" #: includes/reader-activation/class-reader-activation.php:293 #: dist/other-scripts/corrections-modal.js:7 -#: src/other-scripts/corrections-modal/index.js:375 msgid "Go back" msgstr "" @@ -4107,9 +4006,7 @@ msgid "Set a password (optional)" msgstr "" #: includes/reader-activation/class-reader-activation.php:298 -#: src/blocks/reader-registration/index.php:100 #: dist/blocks.js:1 -#: src/blocks/reader-registration/edit.js:70 msgid "Success! Your account was created and you’re signed in." msgstr "" @@ -4134,9 +4031,7 @@ msgid "Sign In" msgstr "" #: includes/reader-activation/class-reader-activation.php:308 -#: src/blocks/reader-registration/index.php:113 #: dist/blocks.js:4 -#: src/blocks/reader-registration/edit.js:270 msgid "Subscribe to our newsletter" msgstr "" @@ -4259,7 +4154,6 @@ msgstr "" #: includes/reader-activation/class-reader-activation.php:923 #: dist/audience-wizards.26392cdd43fc5adc8774.js:18 -#: src/wizards/audience/views/campaigns/segments/single-segment.js:222 msgid "Reader Revenue" msgstr "" @@ -4327,18 +4221,15 @@ msgstr "" #: includes/reader-activation/class-reader-activation.php:1957 #: dist/blocks.js:4 -#: src/blocks/reader-registration/edit.js:295 msgid "Sign in with Google" msgstr "" #: includes/reader-activation/class-reader-activation.php:1960 #: dist/blocks.js:4 -#: src/blocks/reader-registration/edit.js:297 msgid "Or" msgstr "" #: includes/reader-activation/class-reader-activation.php:2042 -#: src/blocks/reader-registration/index.php:415 msgid "You must enter a valid email address." msgstr "" @@ -4349,7 +4240,6 @@ msgstr "" #: includes/reader-activation/class-reader-activation.php:2053 #: includes/reader-activation/class-reader-activation.php:2119 -#: src/blocks/reader-registration/index.php:115 msgid "An account was already registered with this email. Please check your inbox for an authentication link." msgstr "" @@ -4476,7 +4366,6 @@ msgstr "" #: includes/reader-activation/sync/class-esp-sync.php:261 #: dist/other-scripts/salesforce.js:1 -#: src/other-scripts/salesforce/index.js:30 msgid "Synced" msgstr "" @@ -4592,9 +4481,6 @@ msgstr "" #: includes/templates/corrections/corrections-archive.php:16 #: dist/blocks.js:1 #: dist/other-scripts/corrections-modal.js:1 -#: src/blocks/correction-item/index.js:22 -#: src/other-scripts/corrections-modal/index.js:192 -#: src/other-scripts/corrections-modal/index.js:208 msgid "Corrections & Clarifications" msgstr "" @@ -4828,7 +4714,6 @@ msgstr "" #: includes/templates/collections/archive-newspack-collection.php:59 #: includes/templates/collections/archive-newspack-collection.php:74 #: dist/commons.js:10 -#: src/blocks/correction-box/edit.jsx:68 msgid "All" msgstr "" @@ -5138,9 +5023,6 @@ msgstr "" #: includes/wizards/advertising/class-advertising-display-ads.php:692 #: dist/billboard.js:12 -#: src/wizards/advertising/index.js:168 -#: src/wizards/advertising/index.js:179 -#: src/wizards/advertising/index.js:185 msgid "Advertising / Display Ads" msgstr "" @@ -5164,7 +5046,6 @@ msgstr "" #: includes/wizards/audience/class-audience-campaigns.php:50 #: dist/audience-wizards.26392cdd43fc5adc8774.js:18 -#: src/wizards/audience/views/campaigns/index.js:30 msgid "Audience Management / Campaigns" msgstr "" @@ -5172,22 +5053,16 @@ msgstr "" #: includes/wizards/newspack/class-newspack-dashboard.php:58 #: dist/audience-wizards.26392cdd43fc5adc8774.js:7 #: dist/audience-wizards.26392cdd43fc5adc8774.js:18 -#: src/wizards/audience/components/settings-modal/index.js:31 -#: src/wizards/audience/components/settings-modal/index.js:41 -#: src/wizards/audience/views/campaigns/campaigns/index.js:172 -#: src/wizards/audience/views/campaigns/campaigns/index.js:203 msgid "Campaigns" msgstr "" #: includes/wizards/audience/class-audience-content-gates.php:77 #: dist/audience-wizards.26392cdd43fc5adc8774.js:1 -#: src/wizards/audience/views/content-gates/index.js:28 msgid "Audience Management / Content Gates" msgstr "" #: includes/wizards/audience/class-audience-content-gates.php:130 #: dist/audience-wizards.26392cdd43fc5adc8774.js:1 -#: src/wizards/audience/views/content-gates/index.js:32 msgid "Content Gates" msgstr "" @@ -5225,7 +5100,6 @@ msgstr "" #: includes/wizards/audience/class-audience-donations.php:46 #: dist/audience-wizards.26392cdd43fc5adc8774.js:24 -#: src/wizards/audience/views/donations/index.js:34 msgid "Audience Management / Donations" msgstr "" @@ -5267,14 +5141,11 @@ msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:21 #: dist/audience-wizards.26392cdd43fc5adc8774.js:24 #: dist/audience-wizards.26392cdd43fc5adc8774.js:46 -#: src/wizards/audience/views/donations/index.js:26 -#: src/wizards/audience/views/setup/index.js:101 msgid "Configuration" msgstr "" #: includes/wizards/audience/class-audience-wizard.php:151 #: dist/audience-wizards.26392cdd43fc5adc8774.js:46 -#: src/wizards/audience/views/setup/index.js:101 msgid "Setup" msgstr "" @@ -5376,7 +5247,6 @@ msgstr "" #: includes/wizards/class-newsletters-wizard.php:71 #: dist/newsletters.js:4 -#: src/wizards/newsletters/index.js:46 msgid "Newsletters / Settings" msgstr "" @@ -5425,8 +5295,6 @@ msgstr "" #: includes/wizards/newspack/class-newspack-dashboard.php:260 #: dist/audience-wizards.26392cdd43fc5adc8774.js:37 #: dist/audience-wizards.26392cdd43fc5adc8774.js:46 -#: src/wizards/audience/views/setup/index.js:136 -#: src/wizards/audience/views/setup/setup.js:80 msgid "Audience Management" msgstr "" @@ -5564,7 +5432,6 @@ msgstr "" #: includes/wizards/newspack/class-newspack-dashboard.php:263 #: dist/componentsDemo.js:1 -#: src/wizards/componentsDemo/index.js:616 msgid "Disabled" msgstr "" @@ -5574,7 +5441,6 @@ msgstr "" #: includes/wizards/newspack/class-newspack-dashboard.php:275 #: dist/billboard.js:1 -#: src/wizards/advertising/views/providers/index.js:72 msgid "Google Ad Manager" msgstr "" @@ -5629,7 +5495,6 @@ msgstr "" #: dist/componentsDemo.js:1 #: dist/newspack-wizards.80278d14c9e76a6696a2.js:24 #: dist/setup.js:7 -#: src/wizards/componentsDemo/index.js:657 msgid "Theme and Brand" msgstr "" @@ -5663,102 +5528,6 @@ msgstr "" msgid "Loading..." msgstr "" -#: src/blocks/avatar/class-avatar-block.php:39 -msgid "Stacked" -msgstr "" - -#: src/blocks/byline/class-byline-block.php:252 -msgid "By" -msgstr "" - -#: src/blocks/byline/class-byline-block.php:274 -#: dist/blocks.js:4 -#: src/blocks/byline/utils.js:117 -msgctxt "post author separator" -msgid " and " -msgstr "" - -#. translators: 1: current number of metered views, 2: total metered views. -#: src/blocks/content-gate/countdown/class-content-gate-countdown-block.php:76 -#: dist/blocks.js:4 -#: dist/content-gate-countdown-block.js:1 -#: src/blocks/content-gate/countdown/edit.jsx:28 -#: src/blocks/content-gate/countdown/view.js:32 -#, php-format,js-format -msgid "%1$d/%2$d" -msgstr "" - -#: src/blocks/contribution-meter/meters/class-circular-meter.php:56 -#: dist/contribution-meter-block.js:4 -#: src/blocks/contribution-meter/components/CircularMeter.jsx:77 -msgid "Contribution progress indicator" -msgstr "" - -#: src/blocks/contribution-meter/meters/class-circular-meter.php:57 -#: dist/contribution-meter-block.js:4 -#: dist/contribution-meter-block.js:5 -#: src/blocks/contribution-meter/components/CircularMeter.jsx:79 -#: src/blocks/contribution-meter/index.js:16 -msgid "Contribution Meter" -msgstr "" - -#. translators: 1: percentage, 2: formatted goal amount -#: src/blocks/contribution-meter/meters/class-circular-meter.php:63 -#: dist/contribution-meter-block.js:5 -#: src/blocks/contribution-meter/components/CircularMeter.jsx:83 -#, php-format,js-format -msgid "%1$s%% progress toward %2$s goal" -msgstr "" - -#: src/blocks/contribution-meter/meters/class-circular-meter.php:106 -#: dist/contribution-meter-block.js:5 -#: src/blocks/contribution-meter/components/CircularMeter.jsx:120 -msgid "raised" -msgstr "" - -#: src/blocks/contribution-meter/meters/class-circular-meter.php:111 -#: dist/contribution-meter-block.js:5 -#: src/blocks/contribution-meter/components/CircularMeter.jsx:131 -#: src/blocks/contribution-meter/index.js:33 -msgid "goal" -msgstr "" - -#. translators: 1: amount raised, 2: goal amount -#: src/blocks/contribution-meter/meters/class-linear-meter.php:68 -#: dist/contribution-meter-block.js:2 -#: src/blocks/contribution-meter/components/LinearMeter.jsx:56 -#, php-format,js-format -msgid "%1$s raised of %2$s goal" -msgstr "" - -#. translators: %s: amount raised -#: src/blocks/contribution-meter/meters/class-linear-meter.php:84 -#: dist/contribution-meter-block.js:3 -#: src/blocks/contribution-meter/components/LinearMeter.jsx:68 -#, php-format,js-format -msgid "%s raised" -msgstr "" - -#. translators: %s: goal amount -#: src/blocks/contribution-meter/meters/class-linear-meter.php:99 -#: dist/contribution-meter-block.js:4 -#: src/blocks/contribution-meter/components/LinearMeter.jsx:79 -#, php-format,js-format -msgid "%s goal" -msgstr "" - -#. Translators: %s is a link to My Account. -#: src/blocks/reader-registration/index.php:105 -#, php-format -msgid "Please visit %s to verify and manage your account." -msgstr "" - -#: src/blocks/reader-registration/index.php:112 -#: dist/blocks.js:4 -#: src/blocks/reader-registration/edit.js:306 -msgid "Sign up" -msgstr "" - #: dist/audience-wizards.26392cdd43fc5adc8774.js:1 msgid "(no name)" msgstr "" @@ -5785,7 +5554,6 @@ msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:1 #: dist/content-gate-editor-metering.js:1 -#: src/content-gate/editor/metering-settings.js:19 msgid "Metering" msgstr "" @@ -5858,8 +5626,6 @@ msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:43 #: dist/bylines.js:1 #: dist/other-scripts/nextdoor.js:1 -#: src/bylines/index.js:423 -#: src/other-scripts/nextdoor/index.js:247 msgid "Update" msgstr "" @@ -5872,12 +5638,10 @@ msgid "Unpublish" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:1 -#: src/wizards/audience/components/prompt-popovers/primary.js:46 msgid "Restore" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:1 -#: src/wizards/audience/components/prompt-popovers/primary.js:49 msgid "Delete permanently" msgstr "" @@ -5887,20 +5651,11 @@ msgstr "" #: dist/componentsDemo.js:1 #: dist/newspack-wizards.80278d14c9e76a6696a2.js:1 #: dist/other-scripts/corrections-modal.js:1 -#: src/other-scripts/corrections-modal/index.js:300 -#: src/wizards/advertising/views/ad-unit/index.js:155 -#: src/wizards/audience/components/campaign-management-popover/index.js:104 -#: src/wizards/audience/components/prompt-popovers/primary.js:79 -#: src/wizards/audience/views/campaigns/segments/segments-list.js:85 -#: src/wizards/componentsDemo/index.js:315 -#: src/wizards/componentsDemo/index.js:363 msgid "Delete" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:1 #: dist/componentsDemo.js:1 -#: src/wizards/componentsDemo/index.js:357 -#: src/wizards/componentsDemo/index.js:362 msgid "Active" msgstr "" @@ -5913,7 +5668,6 @@ msgid "Pending Review" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:1 -#: src/wizards/audience/views/campaigns/utils.js:137 msgid "Scheduled" msgstr "" @@ -5923,7 +5677,6 @@ msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:1 #: dist/audience-wizards.26392cdd43fc5adc8774.js:18 -#: src/wizards/audience/views/campaigns/campaigns/index.js:158 msgid "Trash" msgstr "" @@ -5939,7 +5692,6 @@ msgstr "" #: dist/billboard.js:12 #: dist/newspack-wizards.80278d14c9e76a6696a2.js:1 #: dist/newspack-wizards.80278d14c9e76a6696a2.js:23 -#: src/wizards/advertising/views/ad-unit/index.js:79 msgid "Name" msgstr "" @@ -5954,197 +5706,144 @@ msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:1 #: dist/audience-wizards.26392cdd43fc5adc8774.js:43 #: dist/audience-wizards.26392cdd43fc5adc8774.js:46 -#: src/wizards/audience/views/content-gates/index.js:26 -#: src/wizards/audience/views/setup/content-gating.js:61 -#: src/wizards/audience/views/setup/index.js:106 msgid "Content Gating" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:1 -#: src/wizards/audience/views/content-gates/index.js:27 msgid "Configure content gating logic and appearance." msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:1 -#: src/wizards/audience/views/content-gates/index.js:37 -#: src/wizards/audience/views/setup/content-gifting.js:26 msgid "Content Gifting" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:1 #: dist/audience-wizards.26392cdd43fc5adc8774.js:24 -#: src/wizards/audience/views/content-gates/index.js:42 -#: src/wizards/audience/views/setup/countdown-banner.js:21 msgid "Metered Countdown" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:1 -#: src/wizards/audience/views/setup/content-gifting.js:28 msgid "Allow members to gift articles up to the configured limit." msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:1 #: dist/commons.js:10 -#: packages/components/src/plugin-settings/index.js:201 -#: src/wizards/audience/views/setup/content-gifting.js:40 msgid "General Settings" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:1 -#: src/wizards/audience/views/setup/content-gifting.js:43 msgid "Gifting limit" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:1 -#: src/wizards/audience/views/setup/content-gifting.js:44 msgid "Maximum number of articles that can be gifted per user for the configured interval." msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:1 -#: src/wizards/audience/views/setup/content-gifting.js:52 msgid "Gifting limit interval" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:1 -#: src/wizards/audience/views/setup/content-gifting.js:53 msgid "Interval at which the gifting limit is reset." msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:1 -#: src/wizards/audience/views/setup/content-gifting.js:64 msgid "Article link expiration time" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:1 -#: src/wizards/audience/views/setup/content-gifting.js:65 msgid "Time after which the article link expires." msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:1 -#: src/wizards/audience/views/setup/content-gifting.js:73 msgid "Article link expiration time unit" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:1 -#: src/wizards/audience/views/setup/content-gifting.js:74 msgid "Unit of time for the article link expiration time." msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:1 -#: src/wizards/audience/views/setup/content-gifting.js:91 msgid "Recipient Banner" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:1 #: dist/audience-wizards.26392cdd43fc5adc8774.js:24 -#: src/wizards/audience/views/setup/content-gifting.js:94 -#: src/wizards/audience/views/setup/countdown-banner.js:34 msgid "Message" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:1 -#: src/wizards/audience/views/setup/content-gifting.js:95 msgid "Text displayed in the banner shown to recipients of gifted articles." msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:1 #: dist/audience-wizards.26392cdd43fc5adc8774.js:24 -#: src/wizards/audience/views/setup/content-gifting.js:101 -#: src/wizards/audience/views/setup/countdown-banner.js:41 msgid "Subscribe button label" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:1 #: dist/audience-wizards.26392cdd43fc5adc8774.js:24 -#: src/wizards/audience/views/setup/content-gifting.js:102 -#: src/wizards/audience/views/setup/countdown-banner.js:42 msgid "Text displayed on the subscribe button in the banner." msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:1 #: dist/audience-wizards.26392cdd43fc5adc8774.js:24 -#: src/wizards/audience/views/setup/content-gifting.js:110 -#: src/wizards/audience/views/setup/countdown-banner.js:50 msgid "Style" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:1 #: dist/audience-wizards.26392cdd43fc5adc8774.js:24 -#: src/wizards/audience/views/setup/content-gifting.js:116 -#: src/wizards/audience/views/setup/countdown-banner.js:56 msgid "Light" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:1 #: dist/audience-wizards.26392cdd43fc5adc8774.js:24 -#: src/wizards/audience/views/setup/content-gifting.js:117 -#: src/wizards/audience/views/setup/countdown-banner.js:57 msgid "Dark" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:1 #: dist/audience-wizards.26392cdd43fc5adc8774.js:24 -#: src/wizards/audience/views/setup/content-gifting.js:120 -#: src/wizards/audience/views/setup/countdown-banner.js:60 msgid "Subscribe button action" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:1 #: dist/audience-wizards.26392cdd43fc5adc8774.js:24 -#: src/wizards/audience/views/setup/content-gifting.js:121 -#: src/wizards/audience/views/setup/countdown-banner.js:61 msgid "Whether the subscribe button should start a product checkout or redirect to a landing page." msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:1 #: dist/audience-wizards.26392cdd43fc5adc8774.js:24 -#: src/wizards/audience/views/setup/content-gifting.js:131 -#: src/wizards/audience/views/setup/countdown-banner.js:71 msgid "Landing page" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:1 #: dist/audience-wizards.26392cdd43fc5adc8774.js:24 -#: src/wizards/audience/views/setup/content-gifting.js:135 -#: src/wizards/audience/views/setup/countdown-banner.js:75 msgid "Subscribe button product" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:1 #: dist/audience-wizards.26392cdd43fc5adc8774.js:24 -#: src/wizards/audience/views/setup/content-gifting.js:136 -#: src/wizards/audience/views/setup/countdown-banner.js:76 msgid "Product linked to the subscribe button." msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:1 #: dist/audience-wizards.26392cdd43fc5adc8774.js:24 -#: src/wizards/audience/views/setup/content-gifting.js:137 -#: src/wizards/audience/views/setup/countdown-banner.js:77 msgid "Select a product" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:1 #: dist/audience-wizards.26392cdd43fc5adc8774.js:24 -#: src/wizards/audience/views/setup/content-gifting.js:148 -#: src/wizards/audience/views/setup/countdown-banner.js:88 msgid "Subscribe button URL" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:1 #: dist/audience-wizards.26392cdd43fc5adc8774.js:24 -#: src/wizards/audience/views/setup/content-gifting.js:149 -#: src/wizards/audience/views/setup/countdown-banner.js:89 msgid "URL for the landing page to redirect to." msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:1 #: dist/audience-wizards.26392cdd43fc5adc8774.js:24 #: dist/commons.js:10 -#: packages/components/src/web-preview/index.js:224 -#: src/wizards/audience/components/prompt-popovers/primary.js:61 -#: src/wizards/audience/views/setup/content-gifting.js:156 -#: src/wizards/audience/views/setup/countdown-banner.js:96 msgid "Preview" msgstr "" @@ -6158,12 +5857,6 @@ msgstr "" #: dist/newspack-wizards.80278d14c9e76a6696a2.js:22 #: dist/newspack-wizards.80278d14c9e76a6696a2.js:24 #: dist/setup.js:4 -#: src/wizards/advertising/components/suppression/index.js:69 -#: src/wizards/audience/components/cover-fees-settings/index.js:96 -#: src/wizards/audience/views/setup/content-gifting.js:198 -#: src/wizards/audience/views/setup/countdown-banner.js:136 -#: src/wizards/audience/views/setup/setup.js:309 -#: src/wizards/newsletters/views/settings/index.js:174 msgid "Save Settings" msgstr "" @@ -6171,334 +5864,254 @@ msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:18 #: dist/billboard.js:12 #: dist/newspack-wizards.80278d14c9e76a6696a2.js:1 -#: src/wizards/advertising/views/ad-units/options-popover.js:34 -#: src/wizards/audience/components/campaign-management-popover/index.js:32 -#: src/wizards/audience/components/prompt-popovers/primary.js:41 -#: src/wizards/audience/views/campaigns/segments/segments-list.js:79 msgid "Close Popover" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:1 -#: src/wizards/audience/components/campaign-management-popover/index.js:43 msgid "Activate all prompts" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:1 -#: src/wizards/audience/components/campaign-management-popover/index.js:54 msgid "Deactivate all prompts" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:1 #: dist/audience-wizards.26392cdd43fc5adc8774.js:16 #: dist/audience-wizards.26392cdd43fc5adc8774.js:18 -#: src/wizards/audience/components/campaign-management-popover/index.js:64 -#: src/wizards/audience/components/prompt-action-card/index.js:175 -#: src/wizards/audience/components/prompt-popovers/primary.js:67 -#: src/wizards/audience/views/campaigns/campaigns/index.js:49 -#: src/wizards/audience/views/campaigns/segments/segments-list.js:59 msgid "Duplicate" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:1 #: dist/audience-wizards.26392cdd43fc5adc8774.js:18 -#: src/wizards/audience/components/campaign-management-popover/index.js:73 -#: src/wizards/audience/views/campaigns/campaigns/index.js:47 msgid "Rename" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:1 #: dist/billboard.js:12 -#: src/wizards/advertising/views/ad-units/options-popover.js:40 -#: src/wizards/audience/components/campaign-management-popover/index.js:83 msgid "Archive" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:1 -#: src/wizards/audience/components/campaign-management-popover/index.js:94 msgid "Unarchive" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:1 -#: src/wizards/audience/components/prompt-popovers/primary.js:76 msgid "Deactivate" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:1 #: dist/commons.js:10 -#: packages/components/src/plugin-installer/index.js:169 -#: packages/components/src/plugin-installer/index.js:214 -#: src/wizards/audience/components/prompt-popovers/primary.js:76 msgid "Activate" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:1 -#: src/wizards/audience/components/prompt-popovers/primary.js:84 msgid "ID:" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:1 #: dist/audience-wizards.26392cdd43fc5adc8774.js:18 -#: src/wizards/audience/components/segment-group/index.js:116 -#: src/wizards/audience/views/campaigns/utils.js:53 msgid "Top Overlay" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:1 -#: src/wizards/audience/views/campaigns/utils.js:54 msgid "Top Left Overlay" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:1 -#: src/wizards/audience/views/campaigns/utils.js:55 msgid "Top Right Overlay" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:1 #: dist/audience-wizards.26392cdd43fc5adc8774.js:18 -#: src/wizards/audience/components/segment-group/index.js:110 -#: src/wizards/audience/views/campaigns/utils.js:56 msgid "Center Overlay" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:1 -#: src/wizards/audience/views/campaigns/utils.js:57 msgid "Center Left Overlay" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:1 -#: src/wizards/audience/views/campaigns/utils.js:58 msgid "Center Right Overlay" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:1 #: dist/audience-wizards.26392cdd43fc5adc8774.js:18 -#: src/wizards/audience/components/segment-group/index.js:122 -#: src/wizards/audience/views/campaigns/utils.js:59 msgid "Bottom Overlay" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:1 -#: src/wizards/audience/views/campaigns/utils.js:60 msgid "Bottom Left Overlay" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:1 -#: src/wizards/audience/views/campaigns/utils.js:61 msgid "Bottom Right Overlay" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:1 #: dist/audience-wizards.26392cdd43fc5adc8774.js:18 #: dist/content-gate-editor.js:25 -#: src/content-gate/editor/editor.js:20 -#: src/wizards/audience/components/segment-group/index.js:128 -#: src/wizards/audience/views/campaigns/utils.js:62 msgid "Inline" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:1 -#: src/wizards/audience/views/campaigns/utils.js:63 msgid "In archive pages" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:1 #: dist/audience-wizards.26392cdd43fc5adc8774.js:18 -#: src/wizards/audience/components/segment-group/index.js:140 -#: src/wizards/audience/views/campaigns/utils.js:64 msgid "Above Header" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:1 #: dist/audience-wizards.26392cdd43fc5adc8774.js:18 -#: src/wizards/audience/components/segment-group/index.js:152 -#: src/wizards/audience/views/campaigns/utils.js:65 msgid "Manual Only" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:1 #: dist/audience-wizards.26392cdd43fc5adc8774.js:18 -#: src/wizards/audience/components/segment-group/index.js:146 -#: src/wizards/audience/views/campaigns/utils.js:71 msgid "Custom Placement" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:1 -#: src/wizards/audience/views/campaigns/utils.js:96 msgid "Once a month" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:1 -#: src/wizards/audience/views/campaigns/utils.js:97 msgid "Once a week" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:1 -#: src/wizards/audience/views/campaigns/utils.js:98 msgid "Once a day" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:1 -#: src/wizards/audience/views/campaigns/utils.js:99 msgid "Every pageview" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:1 -#: src/wizards/audience/views/campaigns/utils.js:100 msgid "Custom frequency (edit prompt to manage)" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:1 -#: src/wizards/audience/views/campaigns/utils.js:124 msgid "Campaign: " msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:1 -#: src/wizards/audience/views/campaigns/utils.js:124 msgid "Campaigns: " msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:1 -#: src/wizards/audience/views/campaigns/utils.js:128 msgid "Categories: " msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:1 -#: src/wizards/audience/views/campaigns/utils.js:131 msgid "Tags: " msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:1 -#: src/wizards/audience/views/campaigns/utils.js:134 msgid "Pending review" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:1 -#: src/wizards/audience/views/campaigns/utils.js:139 msgid "Frequency: " msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:1 -#: src/wizards/audience/views/campaigns/utils.js:148 msgid "Segment disabled" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:1 -#: src/wizards/audience/views/campaigns/utils.js:228 msgid "Favorite Categories:" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:1 -#: src/wizards/audience/views/campaigns/utils.js:288 msgid "Subscribed to:" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:1 -#: src/wizards/audience/views/campaigns/utils.js:288 msgid "Not subscribed to:" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:1 #: dist/audience-wizards.26392cdd43fc5adc8774.js:18 -#: src/wizards/audience/views/campaigns/segments/single-segment.js:295 -#: src/wizards/audience/views/campaigns/utils.js:292 msgid "Deleted list" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:1 -#: src/wizards/audience/views/campaigns/utils.js:309 msgid "Has active subscription(s):" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:1 -#: src/wizards/audience/views/campaigns/utils.js:310 msgid "Does not have active subscription(s):" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:1 #: dist/audience-wizards.26392cdd43fc5adc8774.js:18 -#: src/wizards/audience/views/campaigns/segments/single-segment.js:313 -#: src/wizards/audience/views/campaigns/utils.js:314 msgid "Deleted subscription" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:1 -#: src/wizards/audience/views/campaigns/utils.js:330 msgid "Has active membership(s):" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:1 -#: src/wizards/audience/views/campaigns/utils.js:331 msgid "Does not have active membership(s):" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:1 -#: src/wizards/audience/views/campaigns/utils.js:335 msgid "Deleted membership" msgstr "" #. Translators: %s is prompt type (above-header or overlay). #: dist/audience-wizards.26392cdd43fc5adc8774.js:4 -#: src/wizards/audience/views/campaigns/utils.js:356 #, js-format msgid "If multiple %s are rendered on the same pageview, only the most recent one will be displayed." msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:4 -#: src/wizards/audience/views/campaigns/utils.js:357 msgid "above-header prompts" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:4 -#: src/wizards/audience/views/campaigns/utils.js:357 msgid "overlays" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:4 -#: src/wizards/audience/views/campaigns/utils.js:362 msgid "If multiple prompts are rendered in the same custom placement, only the most recent one will be displayed." msgstr "" #. Translators: %s: 'Conflicts' or 'Conflict' depending on number of conflicts. #: dist/audience-wizards.26392cdd43fc5adc8774.js:7 -#: src/wizards/audience/views/campaigns/utils.js:398 #, js-format msgid "%s detected:" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:7 -#: src/wizards/audience/views/campaigns/utils.js:399 msgid "Conflicts" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:7 -#: src/wizards/audience/views/campaigns/utils.js:399 msgid "Conflict" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:7 -#: src/wizards/audience/components/settings-modal/index.js:27 msgid "Close Modal" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:7 -#: src/wizards/audience/components/settings-modal/index.js:32 msgid "Assign a prompt to one or more campaigns for easier management" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:7 -#: src/wizards/audience/components/settings-modal/index.js:49 msgid "When and how should the prompt be displayed" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:7 #: dist/content-gate-editor.js:25 -#: src/content-gate/editor/editor.js:94 -#: src/wizards/audience/components/settings-modal/index.js:65 msgid "Position" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:7 -#: src/wizards/audience/components/settings-modal/index.js:65 msgid "Placement" msgstr "" @@ -6506,98 +6119,74 @@ msgstr "" #: dist/billboard.js:12 #: dist/blocks.js:4 #: dist/content-gate-editor.js:25 -#: src/blocks/collections/components/InspectorPanel.jsx:182 -#: src/content-gate/editor/editor.js:88 -#: src/wizards/advertising/components/ad-unit-size-control/index.js:66 -#: src/wizards/advertising/views/ad-unit/index.js:117 -#: src/wizards/audience/components/settings-modal/index.js:75 msgid "Size" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:7 -#: src/wizards/audience/components/settings-modal/index.js:87 msgid "Targeting" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:7 -#: src/wizards/audience/components/settings-modal/index.js:90 msgid "Under which conditions should the prompt be displayed" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:7 -#: src/wizards/audience/components/settings-modal/index.js:92 msgid "If multiple conditions are set, all will have to be satisfied in order to display the prompt" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:7 -#: src/wizards/audience/components/settings-modal/index.js:108 msgid "Segments" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:7 -#: src/wizards/audience/components/settings-modal/index.js:112 msgid "Post categories" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:7 -#: src/wizards/audience/components/settings-modal/index.js:117 msgid "Prompt will only appear on posts with the specified categories." msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:7 -#: src/wizards/audience/components/settings-modal/index.js:120 msgid "Post tags" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:7 -#: src/wizards/audience/components/settings-modal/index.js:126 msgid "Prompt will only appear on posts with the specified tags." msgstr "" #. translators: %s: whether to show or hide advanced settings fields. #: dist/audience-wizards.26392cdd43fc5adc8774.js:10 -#: src/wizards/audience/components/settings-modal/index.js:133 #, js-format msgid "%s Advanced Settings" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:10 -#: src/wizards/audience/components/settings-modal/index.js:141 msgid "Category Exclusions" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:10 -#: src/wizards/audience/components/settings-modal/index.js:152 msgid "Prompt will not appear on posts with the specified categories." msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:10 -#: src/wizards/audience/components/settings-modal/index.js:155 msgid "Tag Exclusions" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:10 -#: src/wizards/audience/components/settings-modal/index.js:167 msgid "Prompt will not appear on posts with the specified tags." msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:10 -#: src/wizards/audience/components/prompt-action-card/index.js:48 msgid " copy" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:10 #: dist/commons.js:1 #: dist/commons.js:10 -#: packages/components/src/autocomplete-with-latest-posts/index.js:138 -#: packages/components/src/autocomplete-with-suggestions/index.js:99 -#: packages/components/src/autocomplete-with-suggestions/index.js:133 -#: src/wizards/audience/components/prompt-action-card/index.js:58 msgid "(no title)" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:10 -#: src/wizards/audience/components/prompt-action-card/index.js:71 msgid "Prompt settings" msgstr "" @@ -6605,321 +6194,253 @@ msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:18 #: dist/billboard.js:12 #: dist/newspack-wizards.80278d14c9e76a6696a2.js:1 -#: src/wizards/advertising/views/ad-units/options-popover.js:28 -#: src/wizards/audience/components/prompt-action-card/index.js:78 -#: src/wizards/audience/views/campaigns/segments/segments-list.js:68 msgid "More options" msgstr "" #. Translators: %s: The title of the item. #: dist/audience-wizards.26392cdd43fc5adc8774.js:13 -#: src/wizards/audience/components/prompt-action-card/index.js:107 #, js-format msgid "Duplicate “%s”" msgstr "" #. Translators: %s: The title of the item. #: dist/audience-wizards.26392cdd43fc5adc8774.js:16 -#: src/wizards/audience/components/prompt-action-card/index.js:121 #, js-format msgid "Duplicate of “%s” created as a draft." msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:16 -#: src/wizards/audience/components/prompt-action-card/index.js:126 msgid "This prompt is currently not assigned to any campaign." msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:16 -#: src/wizards/audience/components/prompt-action-card/index.js:147 msgid "This prompt will not be assigned to any campaign." msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:16 #: dist/audience-wizards.26392cdd43fc5adc8774.js:18 -#: src/wizards/audience/components/prompt-action-card/index.js:151 -#: src/wizards/audience/views/campaigns/segments/single-segment.js:164 msgid "Title" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:16 -#: src/wizards/audience/components/segment-group/index.js:45 msgid "No unassigned prompts in this segment." msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:16 -#: src/wizards/audience/components/segment-group/index.js:47 msgid "No prompts in this segment for" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:16 -#: src/wizards/audience/components/segment-group/index.js:49 msgid "No active prompts in this segment." msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:16 -#: src/wizards/audience/components/segment-group/index.js:61 msgid "Edit Segment" msgstr "" #. translators: %s: segment label #: dist/audience-wizards.26392cdd43fc5adc8774.js:17 #: dist/audience-wizards.26392cdd43fc5adc8774.js:18 -#: src/wizards/audience/components/segment-group/index.js:68 -#: src/wizards/audience/components/segment-group/index.js:91 #, js-format msgid "Segment: %s" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:17 -#: src/wizards/audience/components/segment-group/index.js:76 msgid "All readers, regardless of segment" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:17 -#: src/wizards/audience/components/segment-group/index.js:86 msgid "Preview Segment" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:18 -#: src/wizards/audience/components/segment-group/index.js:97 -#: src/wizards/audience/components/segment-group/index.js:101 msgid "Add New Prompt" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:18 -#: src/wizards/audience/components/segment-group/index.js:111 msgid "Fixed at the center of the screen" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:18 -#: src/wizards/audience/components/segment-group/index.js:117 msgid "Fixed at the top of the screen" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:18 -#: src/wizards/audience/components/segment-group/index.js:123 msgid "Fixed at the bottom of the screen" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:18 -#: src/wizards/audience/components/segment-group/index.js:129 msgid "Embedded in content" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:18 -#: src/wizards/audience/components/segment-group/index.js:134 msgid "In Archive Pages" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:18 -#: src/wizards/audience/components/segment-group/index.js:135 msgid "Embedded once or many times in archive pages" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:18 -#: src/wizards/audience/components/segment-group/index.js:141 msgid "Embedded at the very top of the page" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:18 -#: src/wizards/audience/components/segment-group/index.js:147 msgid "Only appears when placed in content" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:18 -#: src/wizards/audience/components/segment-group/index.js:153 msgid "Only appears where Single Prompt block is inserted" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:18 -#: src/wizards/audience/views/campaigns/campaigns/index.js:38 msgid "Rename Campaign" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:18 -#: src/wizards/audience/views/campaigns/campaigns/index.js:40 msgid "Duplicate Campaign" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:18 -#: src/wizards/audience/views/campaigns/campaigns/index.js:42 -#: src/wizards/audience/views/campaigns/campaigns/index.js:260 msgid "Add New Campaign" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:18 #: dist/other-scripts/corrections-modal.js:4 -#: src/other-scripts/corrections-modal/index.js:353 -#: src/wizards/audience/views/campaigns/campaigns/index.js:51 msgid "Add" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:18 -#: src/wizards/audience/views/campaigns/campaigns/index.js:89 msgid "Everyone" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:18 -#: src/wizards/audience/views/campaigns/campaigns/index.js:150 msgid "Active Prompts" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:18 -#: src/wizards/audience/views/campaigns/campaigns/index.js:154 msgid "All Prompts" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:18 -#: src/wizards/audience/views/campaigns/campaigns/index.js:164 msgid "Unassigned Prompts" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:18 -#: src/wizards/audience/views/campaigns/campaigns/index.js:186 msgid "Archived Campaigns" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:18 -#: src/wizards/audience/views/campaigns/campaigns/index.js:193 msgid "(archived)" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:18 #: dist/newspack-wizards.80278d14c9e76a6696a2.js:19 -#: src/wizards/audience/views/campaigns/campaigns/index.js:222 msgid "Actions" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:18 -#: src/wizards/audience/views/campaigns/campaigns/index.js:271 -#: src/wizards/audience/views/campaigns/campaigns/index.js:273 msgid "Campaign Name" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:18 -#: src/wizards/audience/views/campaigns/segments/segments-list.js:21 msgid "Add New Segment" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:18 -#: src/wizards/audience/views/campaigns/segments/segments-list.js:160 msgid "There was an error sorting segments. Please try again." msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:18 -#: src/wizards/audience/views/campaigns/segments/segments-list.js:176 msgid "Audience segments" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:18 -#: src/wizards/audience/views/campaigns/segments/segments-list.js:199 msgid "You have no saved audience segments." msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:18 -#: src/wizards/audience/views/campaigns/segments/segments-list.js:202 msgid "Create audience segments to target visitors by engagement, activity, and more." msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:18 -#: src/wizards/audience/views/campaigns/segments/single-segment.js:291 msgid "Start typing to search for lists…" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:18 -#: src/wizards/audience/views/campaigns/segments/single-segment.js:309 msgid "Start typing to search for products…" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:18 -#: src/wizards/audience/views/campaigns/segments/single-segment.js:327 msgid "Start typing to search for membership plans…" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:18 -#: src/wizards/audience/views/campaigns/segments/single-segment.js:331 msgid "Deleted plan" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:18 -#: src/wizards/audience/views/campaigns/segments/single-segment.js:50 msgid "There are unsaved changes to this segment. Discard changes?" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:18 -#: src/wizards/audience/views/campaigns/segments/single-segment.js:161 msgid "Untitled Segment" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:18 -#: src/wizards/audience/views/campaigns/segments/single-segment.js:169 msgid "Segment Status" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:18 -#: src/wizards/audience/views/campaigns/segments/single-segment.js:170 msgid "If not enabled, the segment will be ignored for reader segmentation." msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:18 -#: src/wizards/audience/views/campaigns/segments/single-segment.js:174 msgid "Segment enabled" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:18 -#: src/wizards/audience/views/campaigns/segments/single-segment.js:181 msgid "Reader Engagement" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:18 -#: src/wizards/audience/views/campaigns/segments/single-segment.js:182 msgid "Target readers based on their browsing behavior." msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:18 -#: src/wizards/audience/views/campaigns/segments/single-segment.js:194 msgid "Registration" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:18 -#: src/wizards/audience/views/campaigns/segments/single-segment.js:195 msgid "Target readers based on their user account registration status." msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:18 -#: src/wizards/audience/views/campaigns/segments/single-segment.js:209 msgid "Target readers based on their newsletter subscription status." msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:18 -#: src/wizards/audience/views/campaigns/segments/single-segment.js:223 msgid "Target readers based on their revenue activity." msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:18 -#: src/wizards/audience/views/campaigns/segments/single-segment.js:236 msgid "Referrer Sources" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:18 -#: src/wizards/audience/views/campaigns/segments/single-segment.js:237 msgid "Target readers based on where they’re coming from." msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:18 -#: src/wizards/audience/views/campaigns/segments/single-segment.js:238 msgid "Segments using these options will apply only to the first page visited after coming from an external source." msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:18 -#: src/wizards/audience/views/campaigns/index.js:174 msgid "Error duplicating prompt. Please try again later." msgstr "" #. translators: %s: prompt title #: dist/audience-wizards.26392cdd43fc5adc8774.js:18 -#: src/wizards/audience/views/campaigns/index.js:220 #, js-format msgid "Prompt: %s" msgstr "" @@ -6998,17 +6519,14 @@ msgid "Your donations landing page is not yet published." msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:24 -#: src/wizards/audience/views/setup/countdown-banner.js:23 msgid "Show a countdown banner before content is restricted by a metered content gate." msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:24 -#: src/wizards/audience/views/setup/countdown-banner.js:35 msgid "Text displayed in the countdown banner." msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:24 -#: src/wizards/audience/views/setup/countdown-banner.js:107 msgid "1/10 free articles this month" msgstr "" @@ -7045,14 +6563,6 @@ msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:43 #: dist/audience-wizards.26392cdd43fc5adc8774.js:46 #: dist/newspack-wizards.80278d14c9e76a6696a2.js:7 -#: src/wizards/audience/components/payment-methods/index.js:39 -#: src/wizards/audience/components/payment-methods/index.js:54 -#: src/wizards/audience/components/payment-methods/payment-gateway.js:70 -#: src/wizards/audience/components/payment-methods/stripe.js:73 -#: src/wizards/audience/components/payment-methods/woopayments.js:70 -#: src/wizards/audience/views/setup/complete.js:142 -#: src/wizards/audience/views/setup/content-gating.js:66 -#: src/wizards/audience/views/setup/setup.js:88 msgid "Learn more" msgstr "" @@ -7061,7 +6571,6 @@ msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:46 #: dist/newspack-wizards.80278d14c9e76a6696a2.js:24 #: dist/other-scripts/corrections-modal.js:7 -#: src/other-scripts/corrections-modal/index.js:391 msgid "Saving…" msgstr "" @@ -7069,7 +6578,6 @@ msgstr "" #. Translators: %s is the email service provider title #: dist/audience-wizards.26392cdd43fc5adc8774.js:28 #: dist/audience-wizards.26392cdd43fc5adc8774.js:31 -#: src/wizards/audience/components/settings.js:44 #, js-format msgid "%s settings" msgstr "" @@ -7095,263 +6603,204 @@ msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:31 #: dist/audience-wizards.26392cdd43fc5adc8774.js:43 #: dist/audience-wizards.26392cdd43fc5adc8774.js:46 -#: src/wizards/audience/views/setup/campaign.js:83 -#: src/wizards/audience/views/setup/index.js:70 msgid "Skip" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:31 -#: src/wizards/audience/components/mailchimp.js:46 -#: src/wizards/audience/components/settings.js:35 msgid "Audience ID" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:31 -#: src/wizards/audience/components/active-campaign.js:46 -#: src/wizards/audience/components/settings.js:35 msgid "Master List" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:31 -#: src/wizards/audience/components/mailchimp.js:47 -#: src/wizards/audience/components/settings.js:37 msgid "Choose an audience to receive reader activity data." msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:31 -#: src/wizards/audience/components/settings.js:38 msgid "Choose a master list to which all registered readers will be added." msgstr "" #. Translators: %s is the email service provider title #: dist/audience-wizards.26392cdd43fc5adc8774.js:31 -#: src/wizards/audience/components/settings.js:46 #, js-format msgid "Settings for the %s integration." msgstr "" #. Translators: 1 is the term used to refer to lists for a given email service provider and 2 is the email service provider title #: dist/audience-wizards.26392cdd43fc5adc8774.js:34 -#: src/wizards/audience/components/settings.js:54 #, js-format msgid "No %1$s selected. You will not be able to send reader activity data to %2$s." msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:34 -#: src/wizards/audience/components/active-campaign.js:52 -#: src/wizards/audience/components/mailchimp.js:52 -#: src/wizards/audience/components/settings.js:68 msgid "None" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:34 -#: src/wizards/audience/components/mailchimp.js:58 -#: src/wizards/audience/components/settings.js:74 msgid "Default reader status" msgstr "" #. Translators: %s is the email service provider title. #: dist/audience-wizards.26392cdd43fc5adc8774.js:37 -#: src/wizards/audience/components/settings.js:77 #, js-format msgid "Choose which %s status readers should have by default if they are not subscribed to any newsletters" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:37 -#: src/wizards/audience/components/mailchimp.js:69 -#: src/wizards/audience/components/settings.js:89 msgid "Transactional/Non-Subscribed" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:37 -#: src/wizards/audience/components/mailchimp.js:71 -#: src/wizards/audience/components/settings.js:91 msgid "Subscribed" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:37 -#: src/wizards/audience/components/metadata-fields.js:16 msgid "Metadata field settings" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:37 -#: src/wizards/audience/components/metadata-fields.js:17 msgid "Select which data to sync for each contact." msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:37 -#: src/wizards/audience/components/metadata-fields.js:20 msgid "Metadata field prefix" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:37 -#: src/wizards/audience/components/metadata-fields.js:21 msgid "A string to prefix metadata fields attached to each contact synced to the ESP. Required to ensure that metadata field names are unique. Default: NP_" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:37 -#: packages/components/src/sortable-newsletter-list-control/index.js:42 msgid "Checked by default" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:37 -#: packages/components/src/sortable-newsletter-list-control/index.js:106 msgid "Add more lists:" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:37 -#: packages/components/src/sortable-newsletter-list-control/index.js:108 msgid "Select lists:" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:37 -#: src/wizards/audience/components/salesforce/index.js:74 msgid "We couldn’t establish a connection to Salesforce. Please verify your Consumer Key and Secret and try connecting again." msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:37 -#: src/wizards/audience/components/salesforce/index.js:143 msgid "Salesforce Settings" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:37 -#: src/wizards/audience/components/salesforce/index.js:149 msgid "Your site is connected to Salesforce." msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:37 -#: src/wizards/audience/components/salesforce/index.js:152 msgid "Establish a connection to sync WooCommerce order data to Salesforce. To connect with Salesforce, create or choose a Connected App for this site in your Salesforce dashboard. Make sure to paste the full URL for this page (" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:37 -#: src/wizards/audience/components/salesforce/index.js:163 msgid "copied to clipboard!" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:37 -#: src/wizards/audience/components/salesforce/index.js:163 msgid "copy to clipboard" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:37 -#: src/wizards/audience/components/salesforce/index.js:166 msgid ") into the “Callback URL” field in the Connected App’s settings. " msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:37 -#: src/wizards/audience/components/salesforce/index.js:169 msgid "Learn how to create a Connected App" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:37 -#: src/wizards/audience/views/setup/setup.js:83 msgid "Newspack's Audience Management system is a set of features that aim to increase reader loyalty, promote engagement, and drive revenue. " msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:37 -#: src/wizards/audience/views/setup/setup.js:94 msgid "The following plugins are required." msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:37 -#: src/wizards/audience/views/setup/setup.js:96 msgid "Complete these settings to enable Audience Management." msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:37 -#: src/wizards/audience/views/setup/setup.js:99 msgid "Audience Management is enabled." msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:37 -#: src/wizards/audience/views/setup/setup.js:104 msgid "Fetching status…" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:37 -#: src/wizards/audience/views/setup/setup.js:129 msgid "Present newsletter signup after checkout and registration" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:37 -#: src/wizards/audience/views/setup/setup.js:130 msgid "Ask readers to sign up for newsletters after creating an account or completing a purchase." msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:37 -#: src/wizards/audience/views/setup/setup.js:150 msgid "Initial list size" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:37 -#: src/wizards/audience/views/setup/setup.js:151 msgid "Number of newsletters initially visible during signup. Additional newsletters will be hidden behind a \"See all\" button." msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:37 -#: src/wizards/audience/views/setup/setup.js:163 msgid "Use My Account login screen for OAuth clients" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:37 -#: src/wizards/audience/views/setup/setup.js:164 msgid "Allow OAuth clients to redirect to the My Account login screen instead of the default WordPress login screen. Might require additional configuration." msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:37 -#: src/wizards/audience/views/setup/setup.js:176 msgid "Email Service Provider (ESP) Advanced Settings" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:37 -#: src/wizards/audience/views/setup/setup.js:177 msgid "Settings for Newspack Newsletters integration." msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:37 -#: src/wizards/audience/views/setup/setup.js:180 msgid "Newsletter subscription text on registration" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:37 -#: src/wizards/audience/views/setup/setup.js:181 msgid "The text to display while subscribing to newsletters from the sign-in modal." msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:37 -#: src/wizards/audience/views/setup/setup.js:185 msgid "Configure options for syncing reader data to the connected ESP." msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:37 -#: src/wizards/audience/views/setup/setup.js:188 msgid "Sync contacts to ESP" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:37 -#: src/wizards/audience/views/setup/setup.js:240 -#: src/wizards/audience/views/setup/setup.js:247 msgid "Sync user account deletion" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:37 -#: src/wizards/audience/views/setup/setup.js:241 msgid "If enabled, the contact will be deleted from the ESP when a user account is deleted. If disabled, the contact will be unsubscribed from all lists, but not deleted." msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:37 -#: src/wizards/audience/views/setup/setup.js:267 msgid "Please select a Mailchimp Audience ID." msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:37 -#: src/wizards/audience/views/setup/setup.js:272 msgid "Please select an ActiveCampaign Master List." msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:37 -#: src/wizards/audience/views/setup/setup.js:277 msgid "Please select a Constant Contact Master List." msgstr "" @@ -7386,107 +6835,84 @@ msgid "We recommend" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:43 -#: src/wizards/audience/views/setup/campaign.js:54 msgid "Set Up Audience Management Campaign" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:43 -#: src/wizards/audience/views/setup/campaign.js:55 msgid "Preview and customize the prompts, or use our suggested defaults." msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:43 -#: src/wizards/audience/views/setup/campaign.js:61 msgid "Retrieving prompts…" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:43 #: dist/billboard.js:12 #: dist/newspack-wizards.80278d14c9e76a6696a2.js:1 -#: src/wizards/advertising/views/ad-units/index.js:106 -#: src/wizards/audience/views/setup/campaign.js:89 -#: src/wizards/audience/views/setup/complete.js:176 msgid "Back" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:43 -#: src/wizards/audience/views/setup/complete.js:19 msgid "Your current segments and prompts will be deactivated and archived." msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:43 -#: src/wizards/audience/views/setup/complete.js:23 msgid "Reader registration will be activated to enable better targeting for driving engagement and conversations." msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:43 -#: src/wizards/audience/views/setup/complete.js:29 msgid "The Audience Management campaign will be activated with default segments and settings." msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:43 -#: src/wizards/audience/views/setup/complete.js:35 msgid "Setting up new segments…" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:43 -#: src/wizards/audience/views/setup/complete.js:36 msgid "Activating reader registration…" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:43 -#: src/wizards/audience/views/setup/complete.js:37 msgid "Activating Audience Management Campaign…" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:43 -#: src/wizards/audience/views/setup/complete.js:100 msgid "Done!" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:43 -#: src/wizards/audience/views/setup/complete.js:133 -#: src/wizards/audience/views/setup/complete.js:169 msgid "Enable Audience Management" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:43 -#: src/wizards/audience/views/setup/complete.js:136 msgid "An easy way to let your readers register for your site, sign up for newsletters, or become donors and paid members. " msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:43 -#: src/wizards/audience/views/setup/complete.js:158 msgid "You're all set to enable Audience Management!" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:43 -#: src/wizards/audience/views/setup/complete.js:159 msgid "This is what will happen next:" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:43 -#: src/wizards/audience/views/setup/content-gating.js:64 msgid "WooCommerce Memberships integration to improve the reader experience with content gating. " msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:43 -#: src/wizards/audience/views/setup/content-gating.js:73 msgid "Content Gate" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:43 -#: src/wizards/audience/views/setup/content-gating.js:50 msgid "Configure the gate rendered on content with restricted access." msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:43 -#: src/wizards/audience/views/setup/content-gating.js:52 msgid "The gate is currently published." msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:43 -#: src/wizards/audience/views/setup/content-gating.js:54 msgid "The gate is currently a draft." msgstr "" @@ -7498,48 +6924,30 @@ msgstr "" #: dist/newspack-wizards.80278d14c9e76a6696a2.js:4 #: dist/newspack-wizards.80278d14c9e76a6696a2.js:7 #: dist/newspack-wizards.80278d14c9e76a6696a2.js:23 -#: packages/components/src/plugin-toggle/index.js:172 -#: src/wizards/advertising/views/providers/index.js:74 -#: src/wizards/advertising/views/providers/index.js:92 -#: src/wizards/audience/components/payment-methods/payment-gateway.js:85 -#: src/wizards/audience/components/payment-methods/stripe.js:93 -#: src/wizards/audience/components/payment-methods/woopayments.js:85 -#: src/wizards/audience/views/setup/content-gating.js:77 -#: src/wizards/componentsDemo/index.js:372 -#: src/wizards/componentsDemo/index.js:382 -#: src/wizards/componentsDemo/index.js:410 -#: src/wizards/componentsDemo/index.js:477 -#: src/wizards/componentsDemo/index.js:483 msgid "Configure" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:43 -#: src/wizards/audience/views/setup/content-gating.js:83 msgid "Require membership in all plans" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:43 -#: src/wizards/audience/views/setup/content-gating.js:84 msgid "When enabled, readers must belong to all membership plans that apply to a restricted content item before they are granted access. Otherwise, they will be able to unlock access to that item with membership in any single plan that applies to it." msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:43 -#: src/wizards/audience/views/setup/content-gating.js:95 msgid "Display memberships on the subscriptions tab" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:43 -#: src/wizards/audience/views/setup/content-gating.js:96 msgid "Display memberships that don't have active subscriptions on the My Account Subscriptions tab, so readers can see information like expiration dates." msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:43 -#: src/wizards/audience/components/payment-methods/stripe.js:69 msgid "Stripe" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:43 -#: src/wizards/audience/components/payment-methods/stripe.js:72 msgid "Enable the Stripe payment gateway for WooCommerce. " msgstr "" @@ -7554,21 +6962,11 @@ msgstr "" #: dist/newspack-wizards.80278d14c9e76a6696a2.js:24 #: dist/newspack-wizards.80278d14c9e76a6696a2.js:28 #: dist/setup.js:7 -#: packages/components/src/autocomplete-with-latest-posts/index.js:261 -#: packages/components/src/autocomplete-with-suggestions/index.js:289 -#: packages/components/src/plugin-toggle/index.js:163 -#: packages/components/src/web-preview/index.js:170 -#: src/wizards/audience/components/payment-methods/payment-gateway.js:39 -#: src/wizards/audience/components/payment-methods/stripe.js:40 -#: src/wizards/audience/components/payment-methods/woopayments.js:39 msgid "Loading…" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:43 #: dist/audience-wizards.26392cdd43fc5adc8774.js:46 -#: src/wizards/audience/components/payment-methods/payment-gateway.js:45 -#: src/wizards/audience/components/payment-methods/stripe.js:49 -#: src/wizards/audience/components/payment-methods/woopayments.js:45 msgid "Connected - test mode" msgstr "" @@ -7577,14 +6975,10 @@ msgstr "" #: dist/newspack-wizards.80278d14c9e76a6696a2.js:1 #: dist/newspack-wizards.80278d14c9e76a6696a2.js:23 #: dist/newspack-wizards.80278d14c9e76a6696a2.js:24 -#: src/wizards/audience/components/payment-methods/payment-gateway.js:47 -#: src/wizards/audience/components/payment-methods/stripe.js:51 -#: src/wizards/audience/components/payment-methods/woopayments.js:47 msgid "Connected" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:43 -#: src/wizards/audience/components/payment-methods/stripe.js:46 msgid "Needs attention" msgstr "" @@ -7594,9 +6988,6 @@ msgstr "" #: dist/newspack-wizards.80278d14c9e76a6696a2.js:1 #: dist/newspack-wizards.80278d14c9e76a6696a2.js:23 #: dist/newspack-wizards.80278d14c9e76a6696a2.js:31 -#: src/wizards/audience/components/payment-methods/payment-gateway.js:42 -#: src/wizards/audience/components/payment-methods/stripe.js:43 -#: src/wizards/audience/components/payment-methods/woopayments.js:42 msgid "Not connected" msgstr "" @@ -7605,77 +6996,60 @@ msgstr "" #: dist/commons.js:18 #: dist/newspack-wizards.80278d14c9e76a6696a2.js:23 #: dist/newspack-wizards.80278d14c9e76a6696a2.js:31 -#: src/wizards/audience/components/payment-methods/payment-gateway.js:89 -#: src/wizards/audience/components/payment-methods/stripe.js:102 -#: src/wizards/audience/components/payment-methods/woopayments.js:89 msgid "Connect" msgstr "" #. Translators: %s is the payment gateway name. #: dist/audience-wizards.26392cdd43fc5adc8774.js:46 -#: src/wizards/audience/components/payment-methods/payment-gateway.js:67 -#: src/wizards/audience/components/payment-methods/woopayments.js:67 #, js-format msgid "Enable %s. " msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:46 -#: src/wizards/audience/components/payment-methods/index.js:31 msgid "Payment Gateways" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:46 -#: src/wizards/audience/components/payment-methods/index.js:34 msgid "Configure Newspack-supported payment gateways for WooCommerce. Payment gateways allow you to accept various payment methods from your readers. " msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:46 -#: src/wizards/audience/components/payment-methods/index.js:50 msgid "Missing or invalid SSL configuration detected. To collect payments, the site must be secured with SSL. " msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:46 -#: src/wizards/audience/components/nrh-settings/index.js:44 msgid "News Revenue Hub Settings" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:46 -#: src/wizards/audience/components/nrh-settings/index.js:45 msgid "Configure your site’s connection to News Revenue Hub." msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:46 -#: src/wizards/audience/components/nrh-settings/index.js:50 msgid "Organization ID" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:46 -#: src/wizards/audience/components/nrh-settings/index.js:56 msgid "Custom domain (optional)" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:46 -#: src/wizards/audience/components/nrh-settings/index.js:63 msgid "Salesforce Campaign ID (optional)" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:46 -#: src/wizards/audience/components/nrh-settings/index.js:72 msgid "Donor Landing Page" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:46 -#: src/wizards/audience/components/nrh-settings/index.js:80 msgid "Search for a New Donor Landing Page" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:46 -#: src/wizards/audience/components/nrh-settings/index.js:92 msgid "page" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:46 -#: src/wizards/audience/components/nrh-settings/index.js:93 msgid "pages" msgstr "" @@ -7724,53 +7098,42 @@ msgid "The privacy policy text to display at time of checkout for existing users msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:46 -#: src/wizards/audience/components/cover-fees-settings/index.js:37 -#: src/wizards/audience/components/cover-fees-settings/index.js:45 msgid "Collect transaction fees" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:46 -#: src/wizards/audience/components/cover-fees-settings/index.js:38 msgid "Allow readers to optionally cover transaction fees imposed by payment processors when making donations or subscribing." msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:46 -#: src/wizards/audience/components/cover-fees-settings/index.js:58 msgid "Fee multiplier" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:46 -#: src/wizards/audience/components/cover-fees-settings/index.js:66 msgid "Fee static portion" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:46 -#: src/wizards/audience/components/cover-fees-settings/index.js:72 msgid "Custom message" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:46 -#: src/wizards/audience/components/cover-fees-settings/index.js:73 msgid "A message to explain the transaction fee option (optional)." msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:46 -#: src/wizards/audience/components/cover-fees-settings/index.js:80 msgid "Cover fees by default" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:46 -#: src/wizards/audience/components/cover-fees-settings/index.js:83 msgid "If enabled, the option to cover the transaction fee will be checked by default." msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:46 -#: src/wizards/audience/components/cover-fees-settings/index.js:87 msgid "Donations only" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:46 -#: src/wizards/audience/components/cover-fees-settings/index.js:90 msgid "If enabled, the option to cover the transaction fee will only be available for donations." msgstr "" @@ -7792,7 +7155,6 @@ msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:46 #: dist/collections-admin.js:1 -#: src/collections/admin/collection-meta-ctas-field.js:206 msgid "Label" msgstr "" @@ -7811,7 +7173,6 @@ msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:46 #: dist/collections-admin.js:1 #: dist/newspack-wizards.80278d14c9e76a6696a2.js:19 -#: src/collections/admin/collection-meta-ctas-field.js:225 msgid "URL" msgstr "" @@ -7820,18 +7181,14 @@ msgid "Please provide a URL for the Terms & Conditions page." msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:46 -#: src/wizards/audience/views/setup/index.js:110 -#: src/wizards/audience/views/setup/payment.js:25 msgid "Checkout & Payment" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:46 -#: src/wizards/audience/views/setup/payment.js:26 msgid "Reader revenue configuration for donations and subscriptions." msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:46 -#: src/wizards/audience/views/setup/index.js:69 msgid "Are you sure you want to skip this step? You can always come back later." msgstr "" @@ -7903,27 +7260,22 @@ msgstr "" #: dist/avatar-block.js:1 #: dist/blocks.js:1 -#: src/blocks/avatar/index.js:15 msgid "Avatar" msgstr "" #: dist/avatar-block.js:1 #: dist/blocks.js:1 #: dist/blocks.js:4 -#: src/blocks/avatar/index.js:28 -#: src/blocks/byline/index.js:28 msgid "author" msgstr "" #: dist/avatar-block.js:1 #: dist/blocks.js:1 -#: src/blocks/avatar/index.js:29 msgid "user" msgstr "" #: dist/avatar-block.js:1 #: dist/blocks.js:1 -#: src/blocks/avatar/index.js:30 msgid "profile" msgstr "" @@ -7931,831 +7283,661 @@ msgstr "" #: dist/blocks.js:1 #: dist/blocks.js:4 #: dist/contribution-meter-block.js:5 -#: src/blocks/avatar/index.js:31 -#: src/blocks/byline/index.js:31 -#: src/blocks/collections/index.js:36 -#: src/blocks/contribution-meter/index.js:37 msgid "newspack" msgstr "" #: dist/avatar-block.js:1 #: dist/blocks.js:1 -#: src/blocks/avatar/index.js:33 msgid "Display post author avatar." msgstr "" #: dist/billboard.js:1 #: dist/billboard.js:12 -#: src/wizards/advertising/views/ad-units/index.js:166 -#: src/wizards/advertising/views/providers/index.js:48 msgid "Created custom targeting keys:" msgstr "" #: dist/billboard.js:1 #: dist/billboard.js:12 -#: src/wizards/advertising/views/ad-units/index.js:172 -#: src/wizards/advertising/views/providers/index.js:55 msgid "Visit your GAM dashboard" msgstr "" #: dist/billboard.js:1 -#: src/wizards/advertising/views/providers/index.js:63 msgid "Click here to connect your account." msgstr "" #: dist/billboard.js:1 #: dist/billboard.js:12 -#: src/wizards/advertising/index.js:145 -#: src/wizards/advertising/views/providers/index.js:70 msgid "Providers" msgstr "" #: dist/billboard.js:1 -#: src/wizards/advertising/views/providers/index.js:73 msgid "Manage Google Ad Manager ad units and placements directly from the Newspack dashboard." msgstr "" #: dist/billboard.js:1 -#: src/wizards/advertising/views/providers/index.js:98 msgid "Google Ad Manager Setup" msgstr "" #: dist/billboard.js:1 -#: src/wizards/advertising/components/placement-control/index.js:25 msgid "Select a provider" msgstr "" #: dist/billboard.js:1 #: dist/billboard.js:12 -#: src/wizards/advertising/components/placement-control/index.js:80 -#: src/wizards/advertising/views/placements/index.js:189 msgid "Ad Unit" msgstr "" #. translators: %s: ad bidder name. #: dist/billboard.js:4 -#: src/wizards/advertising/components/placement-control/index.js:111 #, js-format msgid "%s does not support the selected ad unit sizes." msgstr "" #: dist/billboard.js:4 -#: src/wizards/advertising/components/placement-control/index.js:127 msgid "Provider" msgstr "" #: dist/billboard.js:4 -#: src/wizards/advertising/components/placement-control/index.js:49 msgid "Select an Ad Unit" msgstr "" #. Translators: 1 is ad unit name and 2 is ad unit id. #: dist/billboard.js:7 -#: src/wizards/advertising/components/placement-control/index.js:56 #, js-format msgid "%1$s (%2$s)" msgstr "" -#. translators: %s: bidder name. #: dist/billboard.js:7 -#: src/wizards/advertising/components/placement-control/index.js:151 #, js-format msgid "%s Placement ID" msgstr "" #. translators: %s: bidder name. #: dist/billboard.js:9 -#: src/wizards/advertising/components/placement-control/index.js:120 -#: src/wizards/advertising/views/placements/index.js:128 msgid "There is no provider available." msgstr "" #: dist/billboard.js:9 #: dist/billboard.js:12 -#: src/wizards/advertising/index.js:150 -#: src/wizards/advertising/views/placements/index.js:127 msgid "Placements" msgstr "" #: dist/billboard.js:9 -#: src/wizards/advertising/views/placements/index.js:151 msgid "Placement settings" msgstr "" #. translators: %s is the name of the placement #: dist/billboard.js:12 -#: src/wizards/advertising/views/placements/index.js:164 #, js-format msgid "%s placement settings" msgstr "" #: dist/billboard.js:12 -#: src/wizards/advertising/views/placements/index.js:201 msgid "Stick to Top" msgstr "" #: dist/billboard.js:12 -#: src/wizards/advertising/components/suppression/index.js:73 msgid "Suppression settings" msgstr "" #: dist/billboard.js:12 -#: src/wizards/advertising/components/suppression/index.js:74 msgid "Configure where ads are suppressed." msgstr "" #: dist/billboard.js:12 -#: src/wizards/advertising/components/suppression/index.js:80 msgid "Suppress ads on specific post types." msgstr "" #: dist/billboard.js:12 -#: src/wizards/advertising/components/suppression/index.js:101 msgid "Tags" msgstr "" #: dist/billboard.js:12 -#: src/wizards/advertising/components/suppression/index.js:103 msgid "Suppress ads on specific tags and their archive pages." msgstr "" #: dist/billboard.js:12 -#: src/wizards/advertising/components/suppression/index.js:114 msgid "Tags to suppress ads on (archives and posts)" msgstr "" #: dist/billboard.js:12 -#: src/wizards/advertising/components/suppression/index.js:123 msgid "All tag archive pages" msgstr "" #: dist/billboard.js:12 -#: src/wizards/advertising/components/suppression/index.js:128 msgid "Suppress ads on specific categories and their archive pages." msgstr "" #: dist/billboard.js:12 -#: src/wizards/advertising/components/suppression/index.js:139 msgid "Categories to suppress ads on (archives and posts)" msgstr "" #: dist/billboard.js:12 -#: src/wizards/advertising/components/suppression/index.js:147 msgid "All category archive pages" msgstr "" #: dist/billboard.js:12 -#: src/wizards/advertising/components/suppression/index.js:150 msgid "Author Archive Pages" msgstr "" #: dist/billboard.js:12 -#: src/wizards/advertising/components/suppression/index.js:152 msgid "Suppress ads on automatically generated pages displaying a list of posts by an author." msgstr "" #: dist/billboard.js:12 -#: src/wizards/advertising/components/suppression/index.js:160 msgid "Suppress ads on author archive pages" msgstr "" #: dist/billboard.js:12 -#: src/wizards/advertising/components/ad-refresh-control/index.js:21 msgid "Viewability Threshold" msgstr "" #: dist/billboard.js:12 -#: src/wizards/advertising/components/ad-refresh-control/index.js:22 msgid "The percentage of the ad slot which must be visible in the viewport in order to be considered eligible for being refreshed. It's recommended you do not lower this below 50 or you risk third-party viewability tracking platforms flagging your ad impressions as not having been viewed before refreshing." msgstr "" #: dist/billboard.js:12 -#: src/wizards/advertising/components/ad-refresh-control/index.js:30 msgid "Refresh Interval" msgstr "" #: dist/billboard.js:12 -#: src/wizards/advertising/components/ad-refresh-control/index.js:31 msgid "The number of seconds that must pass between an ad crossing the viewability threshold and the the ad refreshing. The plugin enforces a minimum of 30 in order to avoid your site being flagged for abusing ad refreshes by advertisers. This value may however be overridden via the avc_refresh_interval_value filter hook." msgstr "" #: dist/billboard.js:12 -#: src/wizards/advertising/components/ad-refresh-control/index.js:39 msgid "Maximum Refreshes" msgstr "" #: dist/billboard.js:12 -#: src/wizards/advertising/components/ad-refresh-control/index.js:40 msgid "The number of times each ad slot is allowed to be refreshed. If this is set to 4 then an ad slot could have a total of 5 impressions by combining the initial loading of the ad with the 4 times it can refresh." msgstr "" #: dist/billboard.js:12 -#: src/wizards/advertising/components/ad-refresh-control/index.js:48 msgid "Excluded Advertiser IDs" msgstr "" #: dist/billboard.js:12 -#: src/wizards/advertising/components/ad-refresh-control/index.js:49 msgid "Prevent ad refreshes for specific advertiser IDs in the format of a comma separated list (e.g., 125,594,293). If an ad slot ever displays an ad creative from one of the listed advertiser IDs then that ad slot will stop refreshing for the remainder of the page view. AdSense does not allow their ads to be auto-refreshed. When Newspack detects that AdSense is the advertiser for any given impression, a refresh will not take place." msgstr "" #: dist/billboard.js:12 -#: src/wizards/advertising/components/ad-refresh-control/index.js:57 msgid "Line Items IDs to Exclude" msgstr "" #: dist/billboard.js:12 -#: src/wizards/advertising/components/ad-refresh-control/index.js:58 msgid "Prevent ad refreshs for specific line item IDs. (Comma Seperated List)" msgstr "" #: dist/billboard.js:12 -#: src/wizards/advertising/components/ad-refresh-control/index.js:63 msgid "Sizes to Exclude" msgstr "" #: dist/billboard.js:12 -#: src/wizards/advertising/components/ad-refresh-control/index.js:64 msgid "Prevent ad refreshs for specific sizes. Accepts string (fluid) or array (300x250). Example: fluid, 300x250." msgstr "" #: dist/billboard.js:12 -#: src/wizards/advertising/components/ad-refresh-control/index.js:69 msgid "Slot IDs to Exclude" msgstr "" #: dist/billboard.js:12 -#: src/wizards/advertising/components/ad-refresh-control/index.js:70 msgid "Prevent ad refreshs for specific slot IDs e.g. div-gpt-ad-grid-1. (Comma Seperated List)." msgstr "" #: dist/billboard.js:12 -#: src/wizards/advertising/components/media-kit/index.js:28 msgid "Something went wrong, the Media Kit feature is unavailable." msgstr "" #: dist/billboard.js:12 -#: src/wizards/advertising/components/media-kit/index.js:48 msgid "Media kit page is created but unpublished. Click the link to review and publish." msgstr "" #: dist/billboard.js:12 -#: src/wizards/advertising/components/media-kit/index.js:49 msgid "Edit Media Kit page" msgstr "" #: dist/billboard.js:12 -#: src/wizards/advertising/components/media-kit/index.js:53 msgid "Media Kit page is published. Click the link to edit it, or toggle this card to unpublish." msgstr "" #: dist/billboard.js:12 -#: src/wizards/advertising/components/media-kit/index.js:57 msgid "Review draft page" msgstr "" #: dist/billboard.js:12 -#: src/wizards/advertising/components/media-kit/index.js:61 msgid "Media Kit page has not been created. Toggle this card to create it." msgstr "" #: dist/billboard.js:12 -#: src/wizards/advertising/components/media-kit/index.js:74 msgid "Media Kit" msgstr "" #: dist/billboard.js:12 -#: src/wizards/advertising/views/ad-units/index.js:27 msgid "Google Ad Manager Error" msgstr "" #: dist/billboard.js:12 -#: src/wizards/advertising/views/ad-units/index.js:91 msgid "None (all ad units will be used)" msgstr "" #: dist/billboard.js:12 -#: src/wizards/advertising/views/ad-units/index.js:113 msgid "Connected GAM network code" msgstr "" #: dist/billboard.js:12 -#: src/wizards/advertising/views/ad-units/index.js:122 msgid "Parent network code (optional)" msgstr "" #: dist/billboard.js:12 -#: src/wizards/advertising/views/ad-units/index.js:128 msgid "Set parent ad unit for the site inventory" msgstr "" #: dist/billboard.js:12 -#: src/wizards/advertising/views/ad-units/index.js:146 msgid "The current parent ad unit is inactive or archived. Please select a different parent ad unit." msgstr "" #: dist/billboard.js:12 -#: src/wizards/advertising/views/ad-units/index.js:155 msgid "Your GAM network code is different than the network code the site was configured with. Legacy ad units are likely to not load." msgstr "" #: dist/billboard.js:12 -#: src/wizards/advertising/views/ad-units/index.js:180 msgid "Currently operating in legacy mode." msgstr "" #: dist/billboard.js:12 -#: src/wizards/advertising/views/ad-units/index.js:183 msgid "Network Code" msgstr "" #: dist/billboard.js:12 -#: src/wizards/advertising/views/ad-units/index.js:197 msgid "Set up multiple ad units to use on your homepage, articles and other places throughout your site." msgstr "" #: dist/billboard.js:12 -#: src/wizards/advertising/views/ad-units/index.js:199 msgid "You can place ads through our Newspack Ad Block in the Editor, Newspack Ad widget, and using the global placements." msgstr "" #: dist/billboard.js:12 -#: src/wizards/advertising/index.js:211 -#: src/wizards/advertising/views/ad-units/index.js:207 msgid "Add New Ad Unit" msgstr "" #: dist/billboard.js:12 -#: src/wizards/advertising/views/ad-units/index.js:229 msgid "Code:" msgstr "" #: dist/billboard.js:12 -#: src/wizards/advertising/views/ad-units/index.js:235 msgid "Sizes:" msgstr "" #: dist/billboard.js:12 -#: src/wizards/advertising/views/ad-units/index.js:239 msgid "Fluid" msgstr "" #: dist/billboard.js:12 -#: src/wizards/advertising/views/ad-units/index.js:245 msgid "Legacy ad unit." msgstr "" #: dist/billboard.js:12 -#: src/wizards/advertising/views/ad-units/index.js:251 msgid "Default ad unit." msgstr "" #: dist/billboard.js:12 -#: src/wizards/advertising/views/ad-units/index.js:257 msgid "Disconnected from GAM." msgstr "" #: dist/billboard.js:12 #: dist/newspack-wizards.80278d14c9e76a6696a2.js:23 #: dist/setup.js:7 -#: src/wizards/advertising/components/ad-unit-size-control/index.js:73 msgid "Custom" msgstr "" #: dist/billboard.js:12 -#: src/wizards/advertising/components/ad-unit-size-control/index.js:92 -#: src/wizards/advertising/views/ad-unit/index.js:118 msgid "Width" msgstr "" #: dist/billboard.js:12 -#: src/wizards/advertising/components/ad-unit-size-control/index.js:100 -#: src/wizards/advertising/views/ad-unit/index.js:119 msgid "Height" msgstr "" #: dist/billboard.js:12 -#: src/wizards/advertising/components/ad-unit-size-control/index.js:84 msgid "Fluid is a native ad size that allows more flexibility when styling your ad. It automatically sizes the ad by filling the width of the enclosing column and adjusting the height as appropriate." msgstr "" #: dist/billboard.js:12 -#: src/wizards/advertising/views/ad-unit/index.js:74 msgid "Ad Unit Details" msgstr "" #: dist/billboard.js:12 -#: src/wizards/advertising/views/ad-unit/index.js:85 msgid "Code" msgstr "" #: dist/billboard.js:12 -#: src/wizards/advertising/views/ad-unit/index.js:91 msgid "Identifies the ad unit in the associated ad tag. Once you've created the ad unit, you can't change the code." msgstr "" #: dist/billboard.js:12 -#: src/wizards/advertising/views/ad-unit/index.js:103 msgid "Ad Unit Sizes" msgstr "" #: dist/billboard.js:12 -#: src/wizards/advertising/views/ad-unit/index.js:103 msgid "Ad Unit Size" msgstr "" #: dist/billboard.js:12 -#: src/wizards/advertising/views/ad-unit/index.js:105 msgid "Add New Size" msgstr "" #: dist/billboard.js:12 -#: src/wizards/advertising/views/ad-unit/index.js:112 msgid "The ad unit must have at least one valid size or fluid size enabled." msgstr "" #: dist/billboard.js:12 #: dist/newspack-wizards.80278d14c9e76a6696a2.js:10 -#: src/wizards/advertising/views/ad-unit/index.js:120 msgid "Action" msgstr "" #: dist/billboard.js:12 -#: src/wizards/advertising/index.js:119 msgid "Are you sure you want to archive this ad unit?" msgstr "" #: dist/billboard.js:12 -#: src/wizards/advertising/index.js:194 msgid "Monetize your content through Google Ad Manager" msgstr "" #: dist/billboard.js:12 -#: src/wizards/advertising/index.js:212 -#: src/wizards/advertising/index.js:245 msgid "Allows you to place ads on your site" msgstr "" #: dist/billboard.js:12 -#: src/wizards/advertising/index.js:244 msgid "Edit Ad Unit" msgstr "" #: dist/blocks.js:1 #: dist/commons.js:15 #: dist/content-gate-countdown-box-block.js:1 -#: src/blocks/content-gate/countdown-box/edit.jsx:147 -#: src/blocks/content-gate/countdown-box/index.js:15 msgid "Content Gate Countdown" msgstr "" #: dist/blocks.js:1 #: dist/blocks.js:4 #: dist/content-gate-countdown-box-block.js:1 -#: src/blocks/content-gate/countdown-box/index.js:28 -#: src/blocks/content-gate/countdown/index.js:27 msgid "countdown" msgstr "" #: dist/blocks.js:1 #: dist/blocks.js:4 #: dist/content-gate-countdown-box-block.js:1 -#: src/blocks/content-gate/countdown-box/index.js:29 -#: src/blocks/content-gate/countdown/index.js:28 msgid "content gate" msgstr "" #: dist/blocks.js:1 #: dist/blocks.js:4 #: dist/content-gate-countdown-box-block.js:1 -#: src/blocks/content-gate/countdown-box/index.js:30 -#: src/blocks/content-gate/countdown/index.js:29 msgid "metered" msgstr "" #: dist/blocks.js:1 #: dist/blocks.js:4 #: dist/content-gate-countdown-box-block.js:1 -#: src/blocks/content-gate/countdown-box/index.js:31 -#: src/blocks/content-gate/countdown/index.js:30 msgid "paywall" msgstr "" #: dist/blocks.js:1 #: dist/blocks.js:4 #: dist/content-gate-countdown-box-block.js:1 -#: src/blocks/content-gate/countdown-box/index.js:32 -#: src/blocks/content-gate/countdown/index.js:31 msgid "tracking" msgstr "" #: dist/blocks.js:1 #: dist/content-gate-countdown-box-block.js:1 -#: src/blocks/content-gate/countdown-box/index.js:34 msgid "Displays how many free articles remain before the paywall, helping users track access with a real-time countdown." msgstr "" #: dist/blocks.js:1 #: dist/correction-item-block.js:1 -#: src/blocks/correction-item/index.js:15 msgid "Correction Item" msgstr "" #: dist/blocks.js:1 #: dist/correction-item-block.js:1 -#: src/blocks/correction-item/index.js:56 msgid "Display an archive of all the corrections and clarifications." msgstr "" #: dist/blocks.js:1 -#: src/blocks/correction-item/index.js:23 msgid "Please select \"Corrections\" as the post type in the Query Loop to use this block." msgstr "" #: dist/blocks.js:1 -#: src/blocks/correction-item/index.js:31 msgid "Correction Type, Date, and Time: " msgstr "" #: dist/blocks.js:1 -#: src/blocks/correction-item/index.js:33 msgid "This is where the content will appear, providing details about the update, whether correcting an error or offering additional context." msgstr "" #: dist/blocks.js:1 -#: src/blocks/correction-item/index.js:40 msgid "Post Title" msgstr "" #: dist/blocks.js:1 -#: src/blocks/reader-registration/edit.js:29 msgid "Initial" msgstr "" #: dist/blocks.js:1 -#: src/blocks/reader-registration/edit.js:30 msgid "Registration Success" msgstr "" #: dist/blocks.js:1 -#: src/blocks/reader-registration/edit.js:31 msgid "Login Success" msgstr "" #: dist/blocks.js:1 -#: src/blocks/reader-registration/edit.js:116 msgid "Form settings" msgstr "" #: dist/blocks.js:1 -#: src/blocks/reader-registration/edit.js:118 msgid "Input placeholder" msgstr "" #: dist/blocks.js:1 -#: src/blocks/reader-registration/edit.js:125 msgid "Newsletter Subscription" msgstr "" #: dist/blocks.js:1 -#: src/blocks/reader-registration/edit.js:127 msgid "Enable newsletter subscription" msgstr "" #: dist/blocks.js:1 -#: src/blocks/reader-registration/edit.js:137 msgid "To enable newsletter subscription, you must configure subscription lists on Newspack Newsletters." msgstr "" #: dist/blocks.js:1 -#: src/blocks/reader-registration/edit.js:146 msgid "Display list description" msgstr "" #: dist/blocks.js:1 -#: src/blocks/reader-registration/edit.js:156 msgid "Hide newsletter selection and always subscribe" msgstr "" #: dist/blocks.js:1 -#: src/blocks/reader-registration/edit.js:168 msgid "You must select at least one list." msgstr "" #: dist/blocks.js:1 -#: src/blocks/reader-registration/edit.js:172 msgid "Lists" msgstr "" #: dist/blocks.js:1 -#: src/blocks/reader-registration/edit.js:193 msgid "Configure your subscription lists" msgstr "" #: dist/blocks.js:1 -#: src/blocks/reader-registration/edit.js:199 msgid "Spam protection" msgstr "" #. translators: %s is either 'enabled' or 'disabled'. #: dist/blocks.js:4 -#: src/blocks/reader-registration/edit.js:203 #, js-format msgid "reCAPTCHA is currently %s." msgstr "" #: dist/blocks.js:4 -#: src/blocks/reader-registration/edit.js:209 msgid "It's highly recommended that you enable reCAPTCHA protection to prevent spambots from using this form!" msgstr "" #: dist/blocks.js:4 -#: src/blocks/reader-registration/edit.js:216 msgid "Configure your reCAPTCHA settings." msgstr "" #: dist/blocks.js:4 -#: src/blocks/reader-registration/edit.js:222 msgid "Edited State" msgstr "" #: dist/blocks.js:4 -#: src/blocks/reader-registration/edit.js:241 msgid "Add title" msgstr "" #: dist/blocks.js:4 -#: src/blocks/reader-registration/edit.js:250 msgid "Add description" msgstr "" #: dist/blocks.js:4 -#: src/blocks/reader-registration/edit.js:335 +msgid "Sign up" +msgstr "" + +#: dist/blocks.js:4 msgid "Terms & Conditions statement…" msgstr "" #: dist/blocks.js:4 -#: src/blocks/reader-registration/edit.js:363 msgid "Logged in message…" msgstr "" #: dist/blocks.js:4 -#: src/blocks/byline/inspector.jsx:30 +msgctxt "post author separator" +msgid " and " +msgstr "" + +#: dist/blocks.js:4 msgid "Prefix" msgstr "" #: dist/blocks.js:4 -#: src/blocks/byline/inspector.jsx:31 msgid "Text displayed before the author name(s)." msgstr "" #: dist/blocks.js:4 #: dist/commons.js:10 -#: src/blocks/avatar/edit.jsx:40 -#: src/blocks/byline/inspector.jsx:37 msgid "Link to author archive" msgstr "" #: dist/blocks.js:4 -#: src/blocks/byline/inspector.jsx:45 msgid "Prefix and link settings are controlled by the custom byline and cannot be changed here." msgstr "" #: dist/blocks.js:4 -#: src/blocks/byline/edit.jsx:87 msgid "[Author]" msgstr "" #: dist/blocks.js:4 #: dist/bylines.js:1 -#: src/blocks/byline/index.js:15 -#: src/bylines/index.js:385 msgid "Byline" msgstr "" #: dist/blocks.js:4 -#: src/blocks/byline/index.js:29 msgid "byline" msgstr "" #: dist/blocks.js:4 -#: src/blocks/byline/index.js:30 msgid "writer" msgstr "" #: dist/blocks.js:4 -#: src/blocks/byline/index.js:33 msgid "Display post author(s) with support for custom bylines and CoAuthors Plus." msgstr "" #: dist/blocks.js:4 -#: src/blocks/collections/components/InspectorPanel.jsx:65 msgid "Mode" msgstr "" #: dist/blocks.js:4 -#: src/blocks/collections/components/InspectorPanel.jsx:71 msgid "The block will display the most recent collection(s)." msgstr "" #: dist/blocks.js:4 -#: src/blocks/collections/components/InspectorPanel.jsx:72 msgid "The block will display only the specifically selected collection(s)." msgstr "" #: dist/blocks.js:4 -#: src/blocks/collections/components/InspectorPanel.jsx:77 msgid "Static" msgstr "" #: dist/blocks.js:4 -#: src/blocks/collections/components/InspectorPanel.jsx:87 msgid "Begin typing any word in a collection title. Click on an autocomplete result to select it." msgstr "" #: dist/blocks.js:4 -#: src/blocks/collections/components/InspectorPanel.jsx:95 msgid "Number of collections" msgstr "" #: dist/blocks.js:4 -#: src/blocks/collections/components/InspectorPanel.jsx:104 msgid "Offset" msgstr "" #: dist/blocks.js:4 -#: src/blocks/collections/components/InspectorPanel.jsx:109 msgid "Number of collections to skip from the beginning" msgstr "" #: dist/blocks.js:4 -#: src/blocks/collections/components/InspectorPanel.jsx:118 msgid "Included categories" msgstr "" #: dist/blocks.js:4 -#: src/blocks/collections/components/InspectorPanel.jsx:128 msgid "Excluded categories" msgstr "" #: dist/blocks.js:4 -#: src/blocks/collections/components/InspectorPanel.jsx:137 msgid "Grid" msgstr "" #: dist/blocks.js:4 -#: src/blocks/collections/components/InspectorPanel.jsx:139 msgid "Columns" msgstr "" #: dist/blocks.js:4 -#: src/blocks/collections/components/InspectorPanel.jsx:149 msgid "Featured Image" msgstr "" #: dist/blocks.js:4 -#: src/blocks/collections/components/InspectorPanel.jsx:151 msgid "Show featured image" msgstr "" #: dist/blocks.js:4 -#: src/blocks/collections/components/InspectorPanel.jsx:158 msgid "Alignment" msgstr "" #. translators: Overlay Position #: dist/blocks.js:4 #: dist/content-gate-editor.js:3 -#: packages/components/src/position-control/index.js:27 -#: src/blocks/collections/components/InspectorPanel.jsx:165 msgid "Top" msgstr "" #: dist/blocks.js:4 -#: src/blocks/collections/components/InspectorPanel.jsx:167 -#: src/blocks/collections/edit.jsx:41 msgid "Show image on top" msgstr "" #: dist/blocks.js:4 -#: src/blocks/collections/components/InspectorPanel.jsx:170 msgid "Left" msgstr "" #: dist/blocks.js:4 -#: src/blocks/collections/components/InspectorPanel.jsx:172 -#: src/blocks/collections/edit.jsx:47 msgid "Show image on left" msgstr "" #: dist/blocks.js:4 -#: src/blocks/collections/components/InspectorPanel.jsx:175 msgid "Right" msgstr "" #: dist/blocks.js:4 -#: src/blocks/collections/components/InspectorPanel.jsx:177 -#: src/blocks/collections/edit.jsx:53 msgid "Show image on right" msgstr "" @@ -8763,8 +7945,6 @@ msgstr "" #: dist/contribution-meter-block.js:1 #: dist/newspack-wizards.80278d14c9e76a6696a2.js:23 #: dist/setup.js:7 -#: src/blocks/collections/components/InspectorPanel.jsx:189 -#: src/blocks/contribution-meter/components/InspectorPanel.jsx:169 msgid "S" msgstr "" @@ -8773,11 +7953,6 @@ msgstr "" #: dist/content-gate-editor.js:25 #: dist/contribution-meter-block.js:1 #: dist/newspack-wizards.80278d14c9e76a6696a2.js:23 -#: src/blocks/collections/components/InspectorPanel.jsx:191 -#: src/blocks/contribution-meter/components/InspectorPanel.jsx:169 -#: src/content-gate/editor/editor.js:31 -#: src/wizards/componentsDemo/index.js:560 -#: src/wizards/componentsDemo/index.js:634 msgid "Small" msgstr "" @@ -8785,17 +7960,12 @@ msgstr "" #: dist/contribution-meter-block.js:1 #: dist/newspack-wizards.80278d14c9e76a6696a2.js:23 #: dist/setup.js:7 -#: src/blocks/collections/components/InspectorPanel.jsx:194 -#: src/blocks/contribution-meter/components/InspectorPanel.jsx:170 msgid "M" msgstr "" #: dist/blocks.js:4 #: dist/content-gate-editor.js:25 #: dist/contribution-meter-block.js:1 -#: src/blocks/collections/components/InspectorPanel.jsx:196 -#: src/blocks/contribution-meter/components/InspectorPanel.jsx:170 -#: src/content-gate/editor/editor.js:32 msgid "Medium" msgstr "" @@ -8803,8 +7973,6 @@ msgstr "" #: dist/contribution-meter-block.js:1 #: dist/newspack-wizards.80278d14c9e76a6696a2.js:23 #: dist/setup.js:7 -#: src/blocks/collections/components/InspectorPanel.jsx:199 -#: src/blocks/contribution-meter/components/InspectorPanel.jsx:171 msgid "L" msgstr "" @@ -8812,532 +7980,420 @@ msgstr "" #: dist/content-gate-editor.js:25 #: dist/contribution-meter-block.js:1 #: dist/newspack-wizards.80278d14c9e76a6696a2.js:23 -#: src/blocks/collections/components/InspectorPanel.jsx:201 -#: src/blocks/contribution-meter/components/InspectorPanel.jsx:171 -#: src/content-gate/editor/editor.js:33 msgid "Large" msgstr "" #: dist/blocks.js:4 -#: src/blocks/collections/components/InspectorPanel.jsx:208 msgid "Collection Meta" msgstr "" #: dist/blocks.js:4 -#: src/blocks/collections/components/InspectorPanel.jsx:210 msgid "Show title" msgstr "" #: dist/blocks.js:4 -#: src/blocks/collections/components/InspectorPanel.jsx:216 msgid "Show category" msgstr "" #: dist/blocks.js:4 -#: src/blocks/collections/components/InspectorPanel.jsx:222 msgid "Show excerpt" msgstr "" #: dist/blocks.js:4 -#: src/blocks/collections/components/InspectorPanel.jsx:228 msgid "Show period" msgstr "" #: dist/blocks.js:4 -#: src/blocks/collections/components/InspectorPanel.jsx:234 msgid "Show volume" msgstr "" #: dist/blocks.js:4 -#: src/blocks/collections/components/InspectorPanel.jsx:240 msgid "Show number" msgstr "" #: dist/blocks.js:4 -#: src/blocks/collections/components/InspectorPanel.jsx:246 msgid "Show CTAs" msgstr "" #: dist/blocks.js:4 -#: src/blocks/collections/components/InspectorPanel.jsx:254 msgid "Number of CTAs" msgstr "" #: dist/blocks.js:4 -#: src/blocks/collections/components/InspectorPanel.jsx:259 msgid "Maximum number of CTAs to display" msgstr "" #: dist/blocks.js:4 -#: src/blocks/collections/components/InspectorPanel.jsx:264 msgid "Show subscription URL" msgstr "" #: dist/blocks.js:4 -#: src/blocks/collections/components/InspectorPanel.jsx:270 msgid "Show order URL" msgstr "" #: dist/blocks.js:4 -#: src/blocks/collections/components/InspectorPanel.jsx:277 msgid "Specific CTAs (comma-separated)" msgstr "" #: dist/blocks.js:4 -#: src/blocks/collections/components/InspectorPanel.jsx:278 msgid "Enter specific CTA to show, e.g. \"Digital Edition\" (should match existing CTA label). Leave empty to show first available CTAs." msgstr "" #: dist/blocks.js:4 -#: src/blocks/collections/index.js:28 msgid "collections" msgstr "" #: dist/blocks.js:4 -#: src/blocks/collections/index.js:29 msgid "issues" msgstr "" #: dist/blocks.js:4 -#: src/blocks/collections/index.js:30 msgid "magazine" msgstr "" #: dist/blocks.js:4 -#: src/blocks/collections/index.js:31 msgid "publications" msgstr "" #: dist/blocks.js:4 -#: src/blocks/collections/index.js:32 msgid "content" msgstr "" #: dist/blocks.js:4 -#: src/blocks/collections/index.js:34 msgid "query" msgstr "" #: dist/blocks.js:4 -#: src/blocks/collections/index.js:35 msgid "latest" msgstr "" #: dist/blocks.js:4 -#: src/blocks/collections/index.js:38 msgid "An advanced block that allows displaying collections based on different parameters and visual configurations." msgstr "" #: dist/blocks.js:4 -#: src/blocks/collections/edit.jsx:23 msgid "List view" msgstr "" #: dist/blocks.js:4 -#: src/blocks/collections/edit.jsx:29 msgid "Grid view" msgstr "" #: dist/blocks.js:4 -#: src/blocks/collections/edit.jsx:113 msgid "Loading collections…" msgstr "" #: dist/blocks.js:4 -#: src/blocks/collections/edit.jsx:120 msgid "No collections found" msgstr "" #: dist/blocks.js:4 -#: src/blocks/content-gate/countdown/index.js:14 msgid "Article Counter" msgstr "" #: dist/blocks.js:4 -#: src/blocks/content-gate/countdown/index.js:33 msgid "Displays the current free article count." msgstr "" +#. translators: 1: current number of metered views, 2: total metered views. +#: dist/blocks.js:4 +#: dist/content-gate-countdown-block.js:1 +#, js-format +msgid "%1$d/%2$d" +msgstr "" + #: dist/blocks.js:4 #: dist/correction-box-block.js:1 -#: src/blocks/correction-box/index.js:15 msgid "Corrections" msgstr "" #: dist/blocks.js:4 #: dist/correction-box-block.js:1 -#: src/blocks/correction-box/index.js:27 msgid "clarifications" msgstr "" #: dist/blocks.js:4 #: dist/correction-box-block.js:1 -#: src/blocks/correction-box/index.js:27 msgid "updates" msgstr "" #: dist/blocks.js:4 #: dist/correction-box-block.js:1 -#: src/blocks/correction-box/index.js:28 msgid "Display all corrections and clarifications made to a post." msgstr "" #: dist/bylines.js:1 -#: src/bylines/index.js:134 msgid "Add author" msgstr "" #: dist/bylines.js:1 -#: src/bylines/index.js:389 msgid "Provides flexibility in defining how the byline appears." msgstr "" #: dist/bylines.js:1 -#: src/bylines/index.js:390 msgid "Enable custom byline" msgstr "" #: dist/bylines.js:1 -#: src/bylines/index.js:402 -#: src/bylines/index.js:407 msgid "Edit byline" msgstr "" #: dist/collections-admin.js:1 -#: src/collections/admin/collection-meta-attachment-info.js:49 msgid "Remove attachment" msgstr "" #: dist/collections-admin.js:1 -#: src/collections/admin/collection-meta-ctas-field.js:60 -#: src/collections/admin/collection-meta-panel.js:61 msgid "Please enter a valid URL." msgstr "" #: dist/collections-admin.js:1 -#: src/collections/admin/collection-meta-ctas-field.js:93 msgid "Please upload a PDF file." msgstr "" #: dist/collections-admin.js:1 -#: src/collections/admin/collection-meta-ctas-field.js:200 msgid "Drag to reorder" msgstr "" #: dist/collections-admin.js:1 -#: src/collections/admin/collection-meta-ctas-field.js:205 msgid "Enter a label…" msgstr "" #: dist/collections-admin.js:1 -#: src/collections/admin/collection-meta-ctas-field.js:212 msgid "External Link" msgstr "" #: dist/collections-admin.js:1 -#: src/collections/admin/collection-meta-ctas-field.js:213 msgid "File Upload" msgstr "" #: dist/collections-admin.js:1 #: dist/other-scripts/corrections-modal.js:1 #: dist/other-scripts/corrections-modal.js:4 -#: src/collections/admin/collection-meta-ctas-field.js:215 -#: src/other-scripts/corrections-modal/index.js:232 -#: src/other-scripts/corrections-modal/index.js:327 msgid "Type" msgstr "" #: dist/collections-admin.js:1 -#: src/collections/admin/collection-meta-ctas-field.js:224 msgid "Enter the URL…" msgstr "" #: dist/collections-admin.js:1 -#: src/collections/admin/collection-meta-ctas-field.js:229 msgid "File" msgstr "" #: dist/collections-admin.js:1 -#: src/collections/admin/collection-meta-ctas-field.js:242 msgid "Upload PDF" msgstr "" #: dist/collections-admin.js:1 -#: src/collections/admin/collection-meta-ctas-field.js:250 msgid "Remove CTA" msgstr "" #: dist/collections-admin.js:1 -#: src/collections/admin/collection-meta-ctas-field.js:258 msgid "Add CTA" msgstr "" #: dist/commons.js:1 -#: src/wizards/advertising/components/onboarding/index.js:63 msgid "Authenticate with Google in order to connect your Google Ad Manager account:" msgstr "" #: dist/commons.js:1 -#: src/wizards/advertising/components/onboarding/index.js:71 msgid "We're all set here!" msgstr "" #: dist/commons.js:1 -#: src/wizards/advertising/components/onboarding/index.js:75 msgid "Enter your Google Ad Manager network code and service account credentials for a full integration:" msgstr "" #: dist/commons.js:1 -#: src/wizards/advertising/components/onboarding/index.js:84 msgid "Network code" msgstr "" #: dist/commons.js:1 -#: src/wizards/advertising/components/onboarding/index.js:91 msgid "Upload credentials" msgstr "" #: dist/commons.js:1 -#: src/wizards/advertising/components/onboarding/index.js:93 msgid "Upload your Service Account credentials file to connect your GAM account." msgstr "" #: dist/commons.js:1 -#: src/wizards/advertising/components/onboarding/index.js:100 msgid "How to get a service account user for API access" msgstr "" #: dist/commons.js:1 #: dist/commons.js:10 -#: packages/components/src/autocomplete-with-latest-posts/index.js:20 -#: packages/components/src/autocomplete-with-suggestions/index.js:20 msgid "Begin typing search term, click autocomplete result to select." msgstr "" #: dist/commons.js:1 #: dist/commons.js:10 -#: packages/components/src/autocomplete-with-latest-posts/index.js:23 -#: packages/components/src/autocomplete-with-suggestions/index.js:22 msgid "Search" msgstr "" #: dist/commons.js:1 -#: packages/components/src/autocomplete-with-suggestions/index.js:28 msgid "item" msgstr "" #: dist/commons.js:1 -#: packages/components/src/autocomplete-with-suggestions/index.js:29 msgid "items" msgstr "" #. Translators: %1: the length of selections. %2: the selection leabel. #: dist/commons.js:4 -#: packages/components/src/autocomplete-with-suggestions/index.js:178 #, js-format msgid "%1$s %2$s selected" msgstr "" #. Translators: %s: The label for the selection. #: dist/commons.js:7 -#: packages/components/src/autocomplete-with-suggestions/index.js:184 #, js-format msgid "Selected %s" msgstr "" #: dist/commons.js:7 -#: packages/components/src/autocomplete-with-suggestions/index.js:192 msgctxt "separator character" msgid " – " msgstr "" #: dist/commons.js:7 -#: packages/components/src/autocomplete-with-suggestions/index.js:195 msgid "Clear all" msgstr "" #. Translators: %s: The name of the type. #: dist/commons.js:10 -#: packages/components/src/autocomplete-with-suggestions/index.js:221 #, js-format msgid "%s type" msgstr "" #. Translators: %s: the name of a post type. #: dist/commons.js:10 -#: packages/components/src/autocomplete-with-suggestions/index.js:279 #, js-format msgid "Or, select a recent %s:" msgstr "" #: dist/commons.js:10 -#: packages/components/src/autocomplete-with-latest-posts/index.js:261 -#: packages/components/src/autocomplete-with-suggestions/index.js:289 msgid "Load more" msgstr "" #: dist/commons.js:10 -#: packages/components/src/autocomplete-with-latest-posts/index.js:256 msgid "Latest Posts" msgstr "" #: dist/commons.js:10 -#: packages/components/src/footer/index.js:34 msgid "About" msgstr "" #: dist/commons.js:10 -#: packages/components/src/footer/index.js:39 msgid "Documentation" msgstr "" #: dist/commons.js:10 #: dist/componentsDemo.js:1 -#: packages/components/src/footer/index.js:46 -#: src/wizards/componentsDemo/index.js:109 msgid "Components Demo" msgstr "" #: dist/commons.js:10 -#: packages/components/src/footer/index.js:52 msgid "Setup Wizard" msgstr "" #: dist/commons.js:10 -#: packages/components/src/footer/index.js:58 msgid "Reset Newspack" msgstr "" #: dist/commons.js:10 -#: packages/components/src/footer/index.js:64 msgid "Remove Starter Content" msgstr "" #: dist/commons.js:10 -#: packages/components/src/footer/index.js:70 msgid "Contact Support" msgstr "" #: dist/commons.js:10 -#: packages/components/src/handoff/index.js:55 -#: packages/components/src/handoff/index.js:56 -#: packages/components/src/handoff/index.js:57 msgid "Manage" msgstr "" #: dist/commons.js:10 -#: packages/components/src/handoff/index.js:115 msgid " not installed" msgstr "" #: dist/commons.js:10 -#: packages/components/src/handoff/index.js:126 msgid "Retrieving Plugin Info" msgstr "" #: dist/commons.js:10 -#: packages/components/src/image-upload/index.js:91 msgid "Image preview" msgstr "" #: dist/commons.js:10 -#: packages/components/src/image-upload/index.js:94 msgid "Replace" msgstr "" #: dist/commons.js:10 -#: packages/components/src/image-upload/index.js:104 msgid "Upload" msgstr "" #: dist/commons.js:10 #: dist/componentsDemo.js:1 -#: packages/components/src/plugin-installer/index.js:169 -#: src/wizards/componentsDemo/index.js:306 -#: src/wizards/componentsDemo/index.js:333 -#: src/wizards/componentsDemo/index.js:393 -#: src/wizards/componentsDemo/index.js:429 -#: src/wizards/componentsDemo/index.js:439 -#: src/wizards/componentsDemo/index.js:449 -#: src/wizards/componentsDemo/index.js:459 -#: src/wizards/componentsDemo/index.js:469 msgid "Install" msgstr "" #: dist/commons.js:10 -#: packages/components/src/plugin-installer/index.js:181 msgid "Retrieving plugin information…" msgstr "" #: dist/commons.js:10 -#: packages/components/src/plugin-installer/index.js:221 msgid "Installed" msgstr "" #: dist/commons.js:10 -#: packages/components/src/plugin-installer/index.js:199 msgid "Contact Newspack support to install" msgstr "" #: dist/commons.js:10 -#: packages/components/src/plugin-installer/index.js:200 msgid "Plugin must be installed manually" msgstr "" #: dist/commons.js:10 -#: packages/components/src/plugin-toggle/index.js:68 msgid "There was an error managing this plugin." msgstr "" #: dist/commons.js:10 #: dist/componentsDemo.js:1 #: dist/newspack-wizards.80278d14c9e76a6696a2.js:24 -#: packages/components/src/plugin-toggle/index.js:149 -#: src/wizards/componentsDemo/index.js:327 msgid "Installing…" msgstr "" #: dist/commons.js:10 -#: packages/components/src/plugin-toggle/index.js:156 msgid "Deactivating…" msgstr "" #: dist/commons.js:10 -#: packages/components/src/select-control/GroupedSelectControl.js:47 msgid "-- Select --" msgstr "" #: dist/commons.js:10 -#: packages/components/src/settings/MinMaxSetting.js:16 msgid "Min" msgstr "" #: dist/commons.js:10 -#: packages/components/src/settings/MinMaxSetting.js:29 msgid "Max" msgstr "" #: dist/commons.js:10 -#: packages/components/src/style-card/index.js:36 msgid "Thumbnail" msgstr "" #: dist/commons.js:10 -#: packages/components/src/style-card/index.js:40 msgid "Selected" msgstr "" #: dist/commons.js:10 #: dist/newspack-wizards.80278d14c9e76a6696a2.js:23 #: dist/newspack-wizards.80278d14c9e76a6696a2.js:24 -#: packages/components/src/style-card/index.js:45 -#: packages/components/src/style-card/index.js:48 msgid "Select" msgstr "" #: dist/commons.js:10 -#: packages/components/src/style-card/index.js:51 msgid "View Demo" msgstr "" @@ -9346,173 +8402,134 @@ msgid "(required)" msgstr "" #: dist/commons.js:10 -#: packages/components/src/web-preview/index.js:124 msgid "Preview Size" msgstr "" #: dist/commons.js:10 -#: packages/components/src/web-preview/index.js:136 msgid "Desktop" msgstr "" #: dist/commons.js:10 -#: packages/components/src/web-preview/index.js:147 msgid "Tablet" msgstr "" #: dist/commons.js:10 -#: packages/components/src/web-preview/index.js:158 msgid "Phone" msgstr "" #: dist/commons.js:10 -#: packages/components/src/web-preview/index.js:163 msgid "Close Preview" msgstr "" #: dist/commons.js:10 #: dist/commons.js:15 #: dist/componentsDemo.js:1 -#: packages/components/src/with-wizard-screen/index.js:69 -#: packages/components/src/with-wizard/index.js:104 -#: packages/components/src/with-wizard/index.js:218 -#: packages/components/src/wizard/components/WizardError.js:41 -#: packages/components/src/wizard/index.js:101 -#: src/wizards/componentsDemo/index.js:101 msgid "Return to Dashboard" msgstr "" #: dist/commons.js:10 #: dist/commons.js:15 -#: packages/components/src/with-wizard/index.js:228 -#: packages/components/src/wizard/index.js:72 msgid "Required plugins" msgstr "" #: dist/commons.js:10 #: dist/commons.js:15 -#: packages/components/src/with-wizard/index.js:229 -#: packages/components/src/wizard/index.js:72 msgid "Required plugin" msgstr "" #: dist/commons.js:10 -#: packages/components/src/with-wizard/index.js:260 msgid "OK" msgstr "" #: dist/commons.js:10 -#: src/blocks/correction-box/edit.jsx:38 msgid "This is the Corrections block, it will display all the corrections and clarifications." msgstr "" #: dist/commons.js:10 -#: src/blocks/correction-box/edit.jsx:39 msgid "If there are no corrections or clarifications, this block will not be displayed." msgstr "" #: dist/commons.js:10 -#: src/blocks/correction-box/edit.jsx:59 msgid "Correction Box Settings" msgstr "" #: dist/commons.js:10 -#: src/blocks/correction-box/edit.jsx:62 msgid "Corrections by Priority" msgstr "" #: dist/commons.js:10 -#: src/blocks/correction-box/edit.jsx:63 msgid "Filter corrections by their priority." msgstr "" #: dist/commons.js:10 #: dist/other-scripts/corrections-modal.js:1 -#: src/blocks/correction-box/edit.jsx:66 -#: src/other-scripts/corrections-modal/index.js:36 msgid "High" msgstr "" #: dist/commons.js:10 #: dist/other-scripts/corrections-modal.js:1 -#: src/blocks/correction-box/edit.jsx:67 -#: src/other-scripts/corrections-modal/index.js:37 msgid "Low" msgstr "" #: dist/commons.js:10 -#: src/blocks/correction-box/edit.jsx:88 msgid "Refresh" msgstr "" #: dist/commons.js:10 -#: src/wizards/advertising/components/utils/index.js:21 msgid "Invalid JSON file" msgstr "" #: dist/commons.js:10 -#: src/wizards/advertising/components/utils/index.js:26 msgid "Unable to read file" msgstr "" #: dist/commons.js:10 -#: src/blocks/avatar/edit.jsx:27 msgid "Image size" msgstr "" #. translators: %s: Author name. #: dist/commons.js:13 -#: src/blocks/avatar/hooks.js:51 #, js-format msgid "%s Avatar" msgstr "" #: dist/commons.js:13 -#: src/blocks/avatar/hooks.js:52 msgid "Default Avatar" msgstr "" #: dist/commons.js:13 -#: src/blocks/avatar/edit.jsx:96 msgid "Loading avatar…" msgstr "" #: dist/commons.js:13 -#: packages/components/src/action-card/index.js:312 msgid "Move one position up" msgstr "" #: dist/commons.js:13 -#: packages/components/src/action-card/index.js:318 msgid "Move one position down" msgstr "" #. translators: %s is the metered period, e.g. "month" or "week". #: dist/commons.js:14 -#: src/blocks/content-gate/countdown-box/edit.jsx:91 #, js-format msgid "free articles this %s" msgstr "" #. translators: %1$s is subscribe message, %2$s is sign in link #: dist/commons.js:15 -#: src/blocks/content-gate/countdown-box/edit.jsx:111 #, js-format msgid "%1$s %2$s" msgstr "" #: dist/commons.js:15 -#: src/blocks/content-gate/countdown-box/edit.jsx:113 msgid "Sign in to an existing account." msgstr "" #: dist/commons.js:15 -#: src/blocks/content-gate/countdown-box/edit.jsx:133 msgid "Subscribe now" msgstr "" #: dist/commons.js:15 -#: src/blocks/content-gate/countdown-box/edit.jsx:150 msgid "The content gate countdown block will only display in restricted content when metering is enabled." msgstr "" @@ -9530,1269 +8547,1038 @@ msgstr "" #: dist/newspack-wizards.80278d14c9e76a6696a2.js:1 #: dist/newspack-wizards.80278d14c9e76a6696a2.js:23 #: dist/newspack-wizards.80278d14c9e76a6696a2.js:31 -#: src/wizards/componentsDemo/index.js:419 msgid "Disconnect" msgstr "" #: dist/componentsDemo.js:1 -#: src/wizards/componentsDemo/index.js:110 msgid "Simple components used for composing the UI of Newspack" msgstr "" #: dist/componentsDemo.js:1 -#: src/wizards/componentsDemo/index.js:117 msgid "Autocomplete with Suggestions (single-select)" msgstr "" #: dist/componentsDemo.js:1 -#: src/wizards/componentsDemo/index.js:119 msgid "Search for a post" msgstr "" #: dist/componentsDemo.js:1 -#: src/wizards/componentsDemo/index.js:120 -#: src/wizards/componentsDemo/index.js:132 msgid "Begin typing post title, click autocomplete result to select." msgstr "" #: dist/componentsDemo.js:1 -#: src/wizards/componentsDemo/index.js:127 msgid "Autocomplete with Suggestions (multi-select)" msgstr "" #: dist/componentsDemo.js:1 -#: src/wizards/componentsDemo/index.js:131 msgid "Search widgets" msgstr "" #: dist/componentsDemo.js:1 -#: src/wizards/componentsDemo/index.js:148 msgid "Autocomplete with Latest Posts (single-select)" msgstr "" #: dist/componentsDemo.js:1 -#: src/wizards/componentsDemo/index.js:151 -#: src/wizards/componentsDemo/index.js:162 msgid "Posts" msgstr "" #: dist/componentsDemo.js:1 -#: src/wizards/componentsDemo/index.js:158 msgid "Autocomplete with Latest Posts (multi-select)" msgstr "" #: dist/componentsDemo.js:1 -#: src/wizards/componentsDemo/index.js:172 msgid "Plugin toggles" msgstr "" #: dist/componentsDemo.js:1 -#: src/wizards/componentsDemo/index.js:179 msgid "Configure Instant Articles" msgstr "" #: dist/componentsDemo.js:1 -#: src/wizards/componentsDemo/index.js:186 msgid "Web Previews" msgstr "" #: dist/componentsDemo.js:1 -#: src/wizards/componentsDemo/index.js:188 -#: src/wizards/componentsDemo/index.js:193 -#: src/wizards/componentsDemo/index.js:196 msgid "Preview Newspack Site" msgstr "" #: dist/componentsDemo.js:1 -#: src/wizards/componentsDemo/index.js:201 msgid "Waiting" msgstr "" #: dist/componentsDemo.js:1 -#: src/wizards/componentsDemo/index.js:207 msgid "Spinner on the left" msgstr "" #: dist/componentsDemo.js:1 -#: src/wizards/componentsDemo/index.js:211 msgid "Spinner on the right" msgstr "" #: dist/componentsDemo.js:1 -#: src/wizards/componentsDemo/index.js:218 msgid "Color picker" msgstr "" #: dist/componentsDemo.js:1 -#: src/wizards/componentsDemo/index.js:220 msgid "Color Picker" msgstr "" #: dist/componentsDemo.js:1 -#: src/wizards/componentsDemo/index.js:226 msgid "Handoff Buttons" msgstr "" #: dist/componentsDemo.js:1 -#: src/wizards/componentsDemo/index.js:229 msgid "Manage AMP" msgstr "" #: dist/componentsDemo.js:1 -#: src/wizards/componentsDemo/index.js:230 msgid "Click to go to the AMP dashboard. There will be a notification bar at the top with a link to return to Newspack." msgstr "" #: dist/componentsDemo.js:1 -#: src/wizards/componentsDemo/index.js:241 msgid "Specific Yoast Page" msgstr "" #: dist/componentsDemo.js:1 -#: src/wizards/componentsDemo/index.js:246 msgid "Modal" msgstr "" #: dist/componentsDemo.js:1 -#: src/wizards/componentsDemo/index.js:249 msgid "Open modal" msgstr "" #: dist/componentsDemo.js:1 -#: src/wizards/componentsDemo/index.js:254 msgid "This is the modal title" msgstr "" #: dist/componentsDemo.js:1 -#: src/wizards/componentsDemo/index.js:258 msgid "Based on industry research, we advise to test the modal component, and continuing this sentence so we can see how the text wraps is one good way of doing that." msgstr "" #: dist/componentsDemo.js:1 -#: src/wizards/componentsDemo/index.js:268 msgid "Also dismiss" msgstr "" #: dist/componentsDemo.js:1 -#: src/wizards/componentsDemo/index.js:275 msgid "Notice" msgstr "" #: dist/componentsDemo.js:1 -#: src/wizards/componentsDemo/index.js:276 msgid "This is an info notice." msgstr "" #: dist/componentsDemo.js:1 -#: src/wizards/componentsDemo/index.js:277 msgid "This is an error notice." msgstr "" #: dist/componentsDemo.js:1 -#: src/wizards/componentsDemo/index.js:278 msgid "This is a help notice." msgstr "" #: dist/componentsDemo.js:1 -#: src/wizards/componentsDemo/index.js:279 msgid "This is a success notice." msgstr "" #: dist/componentsDemo.js:1 -#: src/wizards/componentsDemo/index.js:280 msgid "This is a warning notice." msgstr "" #: dist/componentsDemo.js:1 -#: src/wizards/componentsDemo/index.js:283 msgid "Plugin installer" msgstr "" #: dist/componentsDemo.js:1 -#: src/wizards/componentsDemo/index.js:293 msgid "Plugin installer (small)" msgstr "" #: dist/componentsDemo.js:1 -#: src/wizards/componentsDemo/index.js:304 msgid "Example One" msgstr "" #: dist/componentsDemo.js:1 -#: src/wizards/componentsDemo/index.js:305 msgid "Has an action button." msgstr "" #: dist/componentsDemo.js:1 -#: src/wizards/componentsDemo/index.js:312 msgid "Example Two" msgstr "" #: dist/componentsDemo.js:1 -#: src/wizards/componentsDemo/index.js:313 msgid "Has action button and secondary button." msgstr "" #: dist/componentsDemo.js:1 -#: src/wizards/componentsDemo/index.js:325 msgid "Example Three" msgstr "" #: dist/componentsDemo.js:1 -#: src/wizards/componentsDemo/index.js:326 msgid "Waiting/in-progress state, no action button." msgstr "" #: dist/componentsDemo.js:1 -#: src/wizards/componentsDemo/index.js:331 msgid "Example Four" msgstr "" #: dist/componentsDemo.js:1 -#: src/wizards/componentsDemo/index.js:332 msgid "Error notification" msgstr "" #: dist/componentsDemo.js:1 -#: src/wizards/componentsDemo/index.js:345 msgid "Example Five" msgstr "" #: dist/componentsDemo.js:1 -#: src/wizards/componentsDemo/index.js:346 msgid "Warning notification, action button" msgstr "" #: dist/componentsDemo.js:1 -#: src/wizards/componentsDemo/index.js:355 msgid "Example Six" msgstr "" #: dist/componentsDemo.js:1 -#: src/wizards/componentsDemo/index.js:356 msgid "Static text, no button" msgstr "" #: dist/componentsDemo.js:1 -#: src/wizards/componentsDemo/index.js:360 msgid "Example Seven" msgstr "" #: dist/componentsDemo.js:1 -#: src/wizards/componentsDemo/index.js:361 msgid "Static text, secondary action button." msgstr "" #: dist/componentsDemo.js:1 -#: src/wizards/componentsDemo/index.js:370 msgid "Example Eight" msgstr "" #: dist/componentsDemo.js:1 -#: src/wizards/componentsDemo/index.js:371 msgid "Image with link and action button." msgstr "" #: dist/componentsDemo.js:1 -#: src/wizards/componentsDemo/index.js:380 msgid "Example Nine" msgstr "" #: dist/componentsDemo.js:1 -#: src/wizards/componentsDemo/index.js:381 msgid "Action Card with Toggle Control." msgstr "" #: dist/componentsDemo.js:1 -#: src/wizards/componentsDemo/index.js:390 -#: src/wizards/componentsDemo/index.js:426 msgid "Premium" msgstr "" #: dist/componentsDemo.js:1 -#: src/wizards/componentsDemo/index.js:391 msgid "Example Ten" msgstr "" #: dist/componentsDemo.js:1 -#: src/wizards/componentsDemo/index.js:392 msgid "An example of an action card with a badge." msgstr "" #: dist/componentsDemo.js:1 -#: src/wizards/componentsDemo/index.js:400 msgid "Example Eleven" msgstr "" #: dist/componentsDemo.js:1 -#: src/wizards/componentsDemo/index.js:401 msgid "An example of a small action card." msgstr "" #: dist/componentsDemo.js:1 -#: src/wizards/componentsDemo/index.js:402 msgid "Installing" msgstr "" #: dist/componentsDemo.js:1 -#: src/wizards/componentsDemo/index.js:408 msgid "Example Twelve" msgstr "" #: dist/componentsDemo.js:1 -#: src/wizards/componentsDemo/index.js:409 msgid "Action card with an unchecked checkbox." msgstr "" #: dist/componentsDemo.js:1 -#: src/wizards/componentsDemo/index.js:417 msgid "Example Thirteen" msgstr "" #: dist/componentsDemo.js:1 -#: src/wizards/componentsDemo/index.js:418 msgid "Action card with a checked checkbox." msgstr "" #: dist/componentsDemo.js:1 -#: src/wizards/componentsDemo/index.js:426 msgid "Archived" msgstr "" #: dist/componentsDemo.js:1 -#: src/wizards/componentsDemo/index.js:427 msgid "Example Fourteen" msgstr "" #: dist/componentsDemo.js:1 -#: src/wizards/componentsDemo/index.js:428 msgid "An example of an action card with two badges." msgstr "" #: dist/componentsDemo.js:1 -#: src/wizards/componentsDemo/index.js:435 msgid "It works" msgstr "" #: dist/componentsDemo.js:1 -#: src/wizards/componentsDemo/index.js:437 msgid "Example Fifteen" msgstr "" #: dist/componentsDemo.js:1 -#: src/wizards/componentsDemo/index.js:438 msgid "An example of an action card with a success badge." msgstr "" #: dist/componentsDemo.js:1 -#: src/wizards/componentsDemo/index.js:445 msgid "Uh oh" msgstr "" #: dist/componentsDemo.js:1 -#: src/wizards/componentsDemo/index.js:447 msgid "Example Sixteen" msgstr "" #: dist/componentsDemo.js:1 -#: src/wizards/componentsDemo/index.js:448 msgid "An example of an action card with a warning badge." msgstr "" #: dist/componentsDemo.js:1 -#: src/wizards/componentsDemo/index.js:455 msgid "Oh no" msgstr "" #: dist/componentsDemo.js:1 -#: src/wizards/componentsDemo/index.js:457 msgid "Example Seventeen" msgstr "" #: dist/componentsDemo.js:1 -#: src/wizards/componentsDemo/index.js:458 msgid "An example of an action card with an error badge." msgstr "" #: dist/componentsDemo.js:1 -#: src/wizards/componentsDemo/index.js:465 msgid "Brand awareness" msgstr "" #: dist/componentsDemo.js:1 -#: src/wizards/componentsDemo/index.js:467 msgid "Example Eighteen" msgstr "" #: dist/componentsDemo.js:1 -#: src/wizards/componentsDemo/index.js:468 msgid "An example of an action card with a brand-colored badge." msgstr "" #: dist/componentsDemo.js:1 -#: src/wizards/componentsDemo/index.js:475 -#: src/wizards/componentsDemo/index.js:481 msgid "Handoff" msgstr "" #: dist/componentsDemo.js:1 -#: src/wizards/componentsDemo/index.js:476 msgid "An example of an action card with Handoff." msgstr "" #: dist/componentsDemo.js:1 -#: src/wizards/componentsDemo/index.js:482 msgid " An example of an action card with Handoff and EditLink." msgstr "" #: dist/componentsDemo.js:1 -#: src/wizards/componentsDemo/index.js:489 msgid "Expandable" msgstr "" #: dist/componentsDemo.js:1 -#: src/wizards/componentsDemo/index.js:490 msgid " An example of an action card with expandable inner content." msgstr "" #: dist/componentsDemo.js:1 -#: src/wizards/componentsDemo/index.js:492 msgid "Some inner content to display when the card is expanded." msgstr "" #: dist/componentsDemo.js:1 -#: src/wizards/componentsDemo/index.js:495 msgid "Image Uploader" msgstr "" #: dist/componentsDemo.js:1 #: dist/contribution-meter-block.js:1 -#: src/blocks/contribution-meter/components/InspectorPanel.jsx:46 -#: src/blocks/contribution-meter/components/InspectorPanel.jsx:138 -#: src/wizards/componentsDemo/index.js:506 msgid "Progress bar" msgstr "" #: dist/componentsDemo.js:1 -#: src/wizards/componentsDemo/index.js:508 -#: src/wizards/componentsDemo/index.js:510 msgid "Progress made" msgstr "" #: dist/componentsDemo.js:1 -#: src/wizards/componentsDemo/index.js:513 msgid "Select dropdowns" msgstr "" #: dist/componentsDemo.js:1 -#: src/wizards/componentsDemo/index.js:516 msgid "Label for Select with a preselection" msgstr "" #: dist/componentsDemo.js:1 -#: src/wizards/componentsDemo/index.js:521 -#: src/wizards/componentsDemo/index.js:536 -#: src/wizards/componentsDemo/index.js:551 -#: src/wizards/componentsDemo/index.js:566 msgid "- Select -" msgstr "" #: dist/componentsDemo.js:1 -#: src/wizards/componentsDemo/index.js:524 -#: src/wizards/componentsDemo/index.js:539 -#: src/wizards/componentsDemo/index.js:554 -#: src/wizards/componentsDemo/index.js:569 -#: src/wizards/componentsDemo/index.js:580 msgid "First" msgstr "" #: dist/componentsDemo.js:1 -#: src/wizards/componentsDemo/index.js:525 -#: src/wizards/componentsDemo/index.js:540 -#: src/wizards/componentsDemo/index.js:555 -#: src/wizards/componentsDemo/index.js:570 -#: src/wizards/componentsDemo/index.js:581 msgid "Second" msgstr "" #: dist/componentsDemo.js:1 -#: src/wizards/componentsDemo/index.js:526 -#: src/wizards/componentsDemo/index.js:541 -#: src/wizards/componentsDemo/index.js:556 -#: src/wizards/componentsDemo/index.js:571 -#: src/wizards/componentsDemo/index.js:582 msgid "Third" msgstr "" #: dist/componentsDemo.js:1 -#: src/wizards/componentsDemo/index.js:531 msgid "Label for Select with no preselection" msgstr "" #: dist/componentsDemo.js:1 -#: src/wizards/componentsDemo/index.js:546 msgid "Label for disabled Select" msgstr "" #: dist/componentsDemo.js:1 -#: src/wizards/componentsDemo/index.js:577 msgid "Multi-select" msgstr "" #: dist/componentsDemo.js:1 -#: src/wizards/componentsDemo/index.js:583 msgid "Fourth" msgstr "" #: dist/componentsDemo.js:1 -#: src/wizards/componentsDemo/index.js:584 msgid "Fifth" msgstr "" #: dist/componentsDemo.js:1 -#: src/wizards/componentsDemo/index.js:585 msgid "Sixth" msgstr "" #: dist/componentsDemo.js:1 -#: src/wizards/componentsDemo/index.js:586 msgid "Seventh" msgstr "" #: dist/componentsDemo.js:1 -#: src/wizards/componentsDemo/index.js:593 msgid "Selected:" msgstr "" #: dist/componentsDemo.js:1 -#: src/wizards/componentsDemo/index.js:596 msgid "none" msgstr "" #: dist/componentsDemo.js:1 -#: src/wizards/componentsDemo/index.js:603 msgid "Buttons" msgstr "" #: dist/componentsDemo.js:1 #: dist/newspack-wizards.80278d14c9e76a6696a2.js:23 #: dist/setup.js:7 -#: src/wizards/componentsDemo/index.js:609 -#: src/wizards/componentsDemo/index.js:620 msgid "Primary" msgstr "" #: dist/componentsDemo.js:1 #: dist/newspack-wizards.80278d14c9e76a6696a2.js:23 #: dist/setup.js:7 -#: src/wizards/componentsDemo/index.js:610 -#: src/wizards/componentsDemo/index.js:623 msgid "Secondary" msgstr "" #: dist/componentsDemo.js:1 -#: src/wizards/componentsDemo/index.js:611 -#: src/wizards/componentsDemo/index.js:626 msgid "Tertiary" msgstr "" #: dist/componentsDemo.js:1 -#: src/wizards/componentsDemo/index.js:613 -#: src/wizards/componentsDemo/index.js:630 -#: src/wizards/componentsDemo/index.js:648 msgid "isLink" msgstr "" #: dist/componentsDemo.js:1 -#: src/wizards/componentsDemo/index.js:638 msgid "isPrimary" msgstr "" #: dist/componentsDemo.js:1 -#: src/wizards/componentsDemo/index.js:641 msgid "isSecondary" msgstr "" #: dist/componentsDemo.js:1 -#: src/wizards/componentsDemo/index.js:644 msgid "isTertiary" msgstr "" #: dist/componentsDemo.js:1 -#: src/wizards/componentsDemo/index.js:654 msgid "ButtonCard" msgstr "" #: dist/componentsDemo.js:1 -#: src/wizards/componentsDemo/index.js:658 msgid "Customize the look and feel of your site" msgstr "" #: dist/componentsDemo.js:1 -#: src/wizards/componentsDemo/index.js:664 msgid "Start a new site" msgstr "" #: dist/componentsDemo.js:1 -#: src/wizards/componentsDemo/index.js:665 msgid "You don't have content to import" msgstr "" #: dist/componentsDemo.js:1 -#: src/wizards/componentsDemo/index.js:672 msgid "Migrate an existing site" msgstr "" #: dist/componentsDemo.js:1 -#: src/wizards/componentsDemo/index.js:673 msgid "You have content to import" msgstr "" #: dist/componentsDemo.js:1 -#: src/wizards/componentsDemo/index.js:680 msgid "Add a new Podcast" msgstr "" #: dist/componentsDemo.js:1 -#: src/wizards/componentsDemo/index.js:689 msgid "Add a new Font" msgstr "" #: dist/componentsDemo.js:1 -#: src/wizards/componentsDemo/index.js:699 msgid "Plugin Settings Section" msgstr "" #: dist/componentsDemo.js:1 -#: src/wizards/componentsDemo/index.js:702 msgid "Example plugin settings" msgstr "" #: dist/componentsDemo.js:1 -#: src/wizards/componentsDemo/index.js:703 msgid "Example plugin settings description" msgstr "" #: dist/componentsDemo.js:1 -#: src/wizards/componentsDemo/index.js:709 msgid "Example Text Field" msgstr "" #: dist/componentsDemo.js:1 -#: src/wizards/componentsDemo/index.js:710 msgid "Example text field help text" msgstr "" #: dist/componentsDemo.js:1 -#: src/wizards/componentsDemo/index.js:711 msgid "Example Value" msgstr "" #: dist/componentsDemo.js:1 -#: src/wizards/componentsDemo/index.js:716 msgid "Example checkbox Field" msgstr "" #: dist/componentsDemo.js:1 -#: src/wizards/componentsDemo/index.js:717 msgid "Example checkbox field help text" msgstr "" #: dist/componentsDemo.js:1 -#: src/wizards/componentsDemo/index.js:723 msgid "Example options field" msgstr "" #: dist/componentsDemo.js:1 -#: src/wizards/componentsDemo/index.js:724 msgid "Example options field help text" msgstr "" #: dist/componentsDemo.js:1 -#: src/wizards/componentsDemo/index.js:728 -#: src/wizards/componentsDemo/index.js:745 msgid "Example Value 1" msgstr "" #: dist/componentsDemo.js:1 -#: src/wizards/componentsDemo/index.js:732 -#: src/wizards/componentsDemo/index.js:749 msgid "Example Value 2" msgstr "" #: dist/componentsDemo.js:1 -#: src/wizards/componentsDemo/index.js:739 msgid "Example multiple options field" msgstr "" #: dist/componentsDemo.js:1 -#: src/wizards/componentsDemo/index.js:740 msgid "Example multiple options field help text" msgstr "" #: dist/componentsDemo.js:1 -#: src/wizards/componentsDemo/index.js:763 msgid "Draggable Action Cards" msgstr "" #: dist/componentsDemo.js:1 -#: src/wizards/componentsDemo/index.js:779 msgid "An example of an action card that is draggable." msgstr "" #: dist/componentsDemo.js:1 -#: src/wizards/componentsDemo/index.js:785 msgid "Box Contrast" msgstr "" #: dist/componentsDemo.js:1 -#: src/wizards/componentsDemo/index.js:789 msgid "Demo 1:" msgstr "" #: dist/componentsDemo.js:1 -#: src/wizards/componentsDemo/index.js:794 msgid "Demo 2:" msgstr "" #: dist/componentsDemo.js:1 -#: src/wizards/componentsDemo/index.js:799 msgid "Demo 3:" msgstr "" #: dist/componentsDemo.js:1 -#: src/wizards/componentsDemo/index.js:806 msgid "Newspack Icons" msgstr "" #: dist/componentsDemo.js:1 -#: src/wizards/componentsDemo/index.js:809 msgid "This is a collection of custom SVG icons for Newspack projects.
They are available in newspack-plugin in the newspack-icons package.
There's also an npm package that you can install to use them in your projects." msgstr "" #. translators: %s is the list of plans. #: dist/content-gate-editor-memberships.js:4 -#: src/content-gate/editor/memberships.js:20 #, js-format msgid "You're currently editing a gate for content restricted by: %s" msgstr "" #: dist/content-gate-editor-memberships.js:4 -#: src/content-gate/editor/memberships.js:40 msgid "WooCommerce Memberships" msgstr "" #. translators: %s is the list of plans. #: dist/content-gate-editor-memberships.js:7 -#: src/content-gate/editor/memberships.js:55 #, js-format msgid "This gate will be rendered for the following membership plans: %s" msgstr "" #. translators: %s is the link to the primary gate. #: dist/content-gate-editor-memberships.js:10 -#: src/content-gate/editor/memberships.js:64 #, js-format msgid "Edit the primary gate, or:" msgstr "" #: dist/content-gate-editor-memberships.js:10 -#: src/content-gate/editor/memberships.js:44 msgid "This gate will be rendered for all membership plans. Manage custom gates for when the content is locked behind a specific plan:" msgstr "" #: dist/content-gate-editor-memberships.js:10 -#: src/content-gate/editor/memberships.js:78 msgid "published" msgstr "" #: dist/content-gate-editor-memberships.js:10 -#: src/content-gate/editor/memberships.js:78 msgid "draft" msgstr "" #: dist/content-gate-editor-memberships.js:10 -#: src/content-gate/editor/memberships.js:84 msgid "edit gate" msgstr "" #: dist/content-gate-editor-memberships.js:10 -#: src/content-gate/editor/memberships.js:84 msgid "create gate" msgstr "" #: dist/content-gate-editor-metering.js:1 -#: src/content-gate/editor/metering-settings.js:21 msgid "Enable metering" msgstr "" #: dist/content-gate-editor-metering.js:1 -#: src/content-gate/editor/metering-settings.js:24 msgid "Implement metering to configure access to restricted content before showing the gate." msgstr "" #: dist/content-gate-editor-metering.js:1 -#: src/content-gate/editor/metering-settings.js:32 msgid "Available views for anonymous readers" msgstr "" #: dist/content-gate-editor-metering.js:1 -#: src/content-gate/editor/metering-settings.js:34 msgid "Number of times an anonymous reader can view gated content. If set to 0, anonymous readers will always render the gate." msgstr "" #: dist/content-gate-editor-metering.js:1 -#: src/content-gate/editor/metering-settings.js:43 msgid "Available views for registered readers" msgstr "" #: dist/content-gate-editor-metering.js:1 -#: src/content-gate/editor/metering-settings.js:45 msgid "Number of times a registered reader can view gated content. If set to 0, registered readers without membership plan will always render the gate." msgstr "" #: dist/content-gate-editor-metering.js:1 -#: src/content-gate/editor/metering-settings.js:51 msgid "Time period" msgstr "" #: dist/content-gate-editor-metering.js:1 -#: src/content-gate/editor/metering-settings.js:59 msgid "The time period during which the metering views will be counted. For example, if the metering period is set to a week, the metering views will be reset every week." msgstr "" #. translators: Overlay Position #: dist/content-gate-editor.js:5 #: dist/content-gate-editor.js:17 -#: packages/components/src/position-control/index.js:32 -#: packages/components/src/position-control/index.js:64 msgid "Center" msgstr "" #. translators: Overlay Position #: dist/content-gate-editor.js:7 -#: packages/components/src/position-control/index.js:37 msgid "Bottom" msgstr "" #. translators: Overlay Position #: dist/content-gate-editor.js:9 -#: packages/components/src/position-control/index.js:44 msgid "Top Left" msgstr "" #. translators: Overlay Position #: dist/content-gate-editor.js:11 -#: packages/components/src/position-control/index.js:49 msgid "Top Center" msgstr "" #. translators: Overlay Position #: dist/content-gate-editor.js:13 -#: packages/components/src/position-control/index.js:54 msgid "Top Right" msgstr "" #. translators: Overlay Position #: dist/content-gate-editor.js:15 -#: packages/components/src/position-control/index.js:59 msgid "Center Left" msgstr "" #. translators: Overlay Position #: dist/content-gate-editor.js:19 -#: packages/components/src/position-control/index.js:69 msgid "Center Right" msgstr "" #. translators: Overlay Position #: dist/content-gate-editor.js:21 -#: packages/components/src/position-control/index.js:74 msgid "Bottom Left" msgstr "" #. translators: Overlay Position #: dist/content-gate-editor.js:23 -#: packages/components/src/position-control/index.js:79 msgid "Bottom Center" msgstr "" #. translators: Overlay Position #: dist/content-gate-editor.js:25 -#: packages/components/src/position-control/index.js:84 msgid "Bottom Right" msgstr "" #: dist/content-gate-editor.js:25 -#: packages/components/src/position-control/index.js:90 msgid "Select Position" msgstr "" #: dist/content-gate-editor.js:25 -#: src/content-gate/editor/editor.js:21 msgid "Overlay" msgstr "" #: dist/content-gate-editor.js:25 -#: src/content-gate/editor/editor.js:25 msgid "center" msgstr "" #: dist/content-gate-editor.js:25 -#: src/content-gate/editor/editor.js:26 msgid "bottom" msgstr "" #: dist/content-gate-editor.js:25 #: dist/contribution-meter-block.js:1 -#: src/blocks/contribution-meter/components/InspectorPanel.jsx:168 -#: src/content-gate/editor/editor.js:30 msgid "Extra Small" msgstr "" #: dist/content-gate-editor.js:25 -#: src/content-gate/editor/editor.js:34 msgid "Full Width" msgstr "" #: dist/content-gate-editor.js:25 -#: src/content-gate/editor/editor.js:60 msgid "Newspack Campaign prompts won't be displayed when rendering gated content." msgstr "" #: dist/content-gate-editor.js:25 -#: src/content-gate/editor/editor.js:63 msgid "Styles" msgstr "" #: dist/content-gate-editor.js:25 -#: src/content-gate/editor/editor.js:79 msgid "Apply fade to last paragraph" msgstr "" #: dist/content-gate-editor.js:25 -#: src/content-gate/editor/editor.js:82 msgid "Whether to apply a gradient fade effect before rendering the gate." msgstr "" #. translators: %s is the placement of the gate. #: dist/content-gate-editor.js:28 -#: src/content-gate/editor/editor.js:101 #, js-format msgid "The gate will be displayed at the %s of the screen." msgstr "" #: dist/content-gate-editor.js:28 -#: src/content-gate/editor/editor.js:113 msgid "Default paragraph count" msgstr "" #: dist/content-gate-editor.js:28 -#: src/content-gate/editor/editor.js:115 msgid "Number of paragraphs that readers can see above the content gate." msgstr "" #: dist/content-gate-editor.js:28 -#: src/content-gate/editor/editor.js:119 msgid "Use “More” tag to manually place content gate" msgstr "" #: dist/content-gate-editor.js:28 -#: src/content-gate/editor/editor.js:122 msgid "Override the default paragraph count on pages where a “More” block has been placed." msgstr "" #: dist/contribution-meter-block.js:1 -#: src/blocks/contribution-meter/components/InspectorPanel.jsx:41 msgid "Color" msgstr "" #: dist/contribution-meter-block.js:1 -#: src/blocks/contribution-meter/components/InspectorPanel.jsx:51 msgid "Contribution data" msgstr "" #: dist/contribution-meter-block.js:1 -#: src/blocks/contribution-meter/components/InspectorPanel.jsx:54 msgid "Goal amount" msgstr "" #: dist/contribution-meter-block.js:1 -#: src/blocks/contribution-meter/components/InspectorPanel.jsx:55 msgid "Set the total contribution goal." msgstr "" #: dist/contribution-meter-block.js:1 -#: src/blocks/contribution-meter/components/InspectorPanel.jsx:71 msgid "Start date" msgstr "" #: dist/contribution-meter-block.js:1 -#: src/blocks/contribution-meter/components/InspectorPanel.jsx:72 msgid "Contributions from this date are included in the total amount raised." msgstr "" #: dist/contribution-meter-block.js:1 -#: src/blocks/contribution-meter/components/InspectorPanel.jsx:91 msgid "Set end date" msgstr "" #: dist/contribution-meter-block.js:1 -#: src/blocks/contribution-meter/components/InspectorPanel.jsx:103 msgid "Enable this if the contribution meter should stop counting contributions after a specific date." msgstr "" #: dist/contribution-meter-block.js:1 -#: src/blocks/contribution-meter/components/InspectorPanel.jsx:112 msgid "End date" msgstr "" #: dist/contribution-meter-block.js:1 -#: src/blocks/contribution-meter/components/InspectorPanel.jsx:113 msgid "Contributions up to and including this date are counted in the total amount raised." msgstr "" #: dist/contribution-meter-block.js:1 -#: src/blocks/contribution-meter/components/InspectorPanel.jsx:140 msgid "Show goal" msgstr "" #: dist/contribution-meter-block.js:1 -#: src/blocks/contribution-meter/components/InspectorPanel.jsx:143 msgid "Display the total target amount next to the progress bar." msgstr "" #: dist/contribution-meter-block.js:1 -#: src/blocks/contribution-meter/components/InspectorPanel.jsx:147 msgid "Show amount raised" msgstr "" #: dist/contribution-meter-block.js:1 -#: src/blocks/contribution-meter/components/InspectorPanel.jsx:150 msgid "Display the total contributions received so far." msgstr "" #: dist/contribution-meter-block.js:1 -#: src/blocks/contribution-meter/components/InspectorPanel.jsx:154 msgid "Show percentage" msgstr "" #: dist/contribution-meter-block.js:1 -#: src/blocks/contribution-meter/components/InspectorPanel.jsx:157 msgid "Display progress as a percentage of the goal." msgstr "" #: dist/contribution-meter-block.js:1 -#: src/blocks/contribution-meter/components/InspectorPanel.jsx:161 msgid "Thickness" msgstr "" #: dist/contribution-meter-block.js:1 -#: src/blocks/contribution-meter/components/InspectorPanel.jsx:165 msgid "Adjust the visual weight of the progress bar." msgstr "" #: dist/contribution-meter-block.js:1 #: dist/newspack-wizards.80278d14c9e76a6696a2.js:23 #: dist/setup.js:7 -#: src/blocks/contribution-meter/components/InspectorPanel.jsx:168 msgid "XS" msgstr "" +#. translators: 1: amount raised, 2: goal amount +#: dist/contribution-meter-block.js:2 +#, js-format +msgid "%1$s raised of %2$s goal" +msgstr "" + +#. translators: %s: amount raised +#: dist/contribution-meter-block.js:3 +#, js-format +msgid "%s raised" +msgstr "" + +#. translators: %s: goal amount +#: dist/contribution-meter-block.js:4 +#, js-format +msgid "%s goal" +msgstr "" + +#: dist/contribution-meter-block.js:4 +msgid "Contribution progress indicator" +msgstr "" + +#: dist/contribution-meter-block.js:4 +#: dist/contribution-meter-block.js:5 +msgid "Contribution Meter" +msgstr "" + +#. translators: 1: percentage, 2: formatted goal amount +#: dist/contribution-meter-block.js:5 +#, js-format +msgid "%1$s%% progress toward %2$s goal" +msgstr "" + +#: dist/contribution-meter-block.js:5 +msgid "raised" +msgstr "" + +#: dist/contribution-meter-block.js:5 +msgid "goal" +msgstr "" + #: dist/contribution-meter-block.js:5 -#: src/blocks/contribution-meter/index.js:29 msgid "donations" msgstr "" #: dist/contribution-meter-block.js:5 -#: src/blocks/contribution-meter/index.js:30 msgid "fundraising" msgstr "" #: dist/contribution-meter-block.js:5 -#: src/blocks/contribution-meter/index.js:31 msgid "revenue" msgstr "" #: dist/contribution-meter-block.js:5 -#: src/blocks/contribution-meter/index.js:32 msgid "progress" msgstr "" #: dist/contribution-meter-block.js:5 -#: src/blocks/contribution-meter/index.js:34 msgid "campaign" msgstr "" #: dist/contribution-meter-block.js:5 -#: src/blocks/contribution-meter/index.js:35 msgid "contribution" msgstr "" #: dist/contribution-meter-block.js:5 -#: src/blocks/contribution-meter/index.js:36 msgid "meter" msgstr "" #: dist/contribution-meter-block.js:5 -#: src/blocks/contribution-meter/index.js:39 msgid "Display progress toward your goal. Works seamlessly with the Donate block." msgstr "" #: dist/contribution-meter-block.js:5 -#: src/blocks/contribution-meter/edit.jsx:95 msgid "Failed to load contribution data." msgstr "" #: dist/contribution-meter-block.js:5 -#: src/blocks/contribution-meter/edit.jsx:135 msgid "Loading contribution data…" msgstr "" #: dist/contribution-meter-block.js:5 #: dist/newspack-wizards.80278d14c9e76a6696a2.js:10 -#: src/blocks/contribution-meter/edit.jsx:142 msgid "Error" msgstr "" #: dist/contribution-meter-block.js:5 -#: src/blocks/contribution-meter/index.js:48 msgid "Linear" msgstr "" #: dist/contribution-meter-block.js:5 -#: src/blocks/contribution-meter/index.js:54 msgid "Circular" msgstr "" #: dist/handoff-banner.js:1 -#: src/wizards/handoff-banner/index.js:20 msgid "Return to Newspack after completing configuration" msgstr "" #: dist/handoff-banner.js:1 -#: src/wizards/handoff-banner/index.js:21 msgid "Back to Newspack" msgstr "" #: dist/indesign-export.js:1 -#: src/indesign-export/index.js:40 msgid "InDesign Exporter Tag Name" msgstr "" #: dist/indesign-export.js:1 -#: src/indesign-export/index.js:41 msgid "Define a custom tag name to be used in the Tagged Text export." msgstr "" #: dist/newsletters.js:1 #: dist/setup.js:4 -#: src/wizards/newsletters/views/settings/index.js:167 msgid "Email Service Provider" msgstr "" #: dist/newsletters.js:1 #: dist/setup.js:4 -#: src/wizards/newsletters/views/settings/index.js:168 msgid "Connect an email service provider (ESP) to author and send newsletters." msgstr "" #: dist/newsletters.js:1 #: dist/setup.js:4 -#: src/wizards/newsletters/views/settings/index.js:182 msgid "Authorize Application" msgstr "" #. translators: %s is the name of the ESP. #: dist/newsletters.js:4 #: dist/setup.js:7 -#: src/wizards/newsletters/views/settings/index.js:186 #, js-format msgid "Authorize %s to connect to Newspack." msgstr "" #: dist/newsletters.js:4 #: dist/setup.js:7 -#: src/wizards/newsletters/views/settings/index.js:191 msgid "Authorize" msgstr "" #: dist/newsletters.js:4 #: dist/setup.js:7 -#: src/wizards/newsletters/views/settings/index.js:197 msgid "Campaign Monitor support will be deprecated" msgstr "" #: dist/newsletters.js:4 #: dist/setup.js:7 -#: src/wizards/newsletters/views/settings/index.js:312 msgid "Please save your ESP settings before changing your subscription lists." msgstr "" #: dist/newsletters.js:4 #: dist/setup.js:7 -#: src/wizards/newsletters/views/settings/index.js:320 msgid "Subscription Lists" msgstr "" #: dist/newsletters.js:4 #: dist/setup.js:7 -#: src/wizards/newsletters/views/settings/index.js:321 msgid "Manage the lists available to readers for subscription." msgstr "" #: dist/newsletters.js:4 #: dist/setup.js:7 -#: src/wizards/newsletters/views/settings/index.js:333 msgid "Add New" msgstr "" #: dist/newsletters.js:4 #: dist/setup.js:7 -#: src/wizards/newsletters/views/settings/index.js:337 msgid "Save Subscription Lists" msgstr "" #: dist/newsletters.js:4 #: dist/setup.js:7 -#: src/wizards/newsletters/views/settings/index.js:366 msgid "List title" msgstr "" #: dist/newsletters.js:4 #: dist/setup.js:7 -#: src/wizards/newsletters/views/settings/index.js:372 msgid "List description" msgstr "" #: dist/newsletters.js:4 -#: src/wizards/newsletters/index.js:34 -#: src/wizards/newsletters/views/tracking/index.js:55 msgid "Ads Tracking" msgstr "" #: dist/newsletters.js:4 -#: src/wizards/newsletters/views/tracking/index.js:57 msgid "Click-tracking" msgstr "" #: dist/newsletters.js:4 -#: src/wizards/newsletters/views/tracking/index.js:58 msgid "Track the clicks on ads in your newsletter." msgstr "" #: dist/newsletters.js:4 -#: src/wizards/newsletters/views/tracking/index.js:64 msgid "Ads impressions" msgstr "" #: dist/newsletters.js:4 -#: src/wizards/newsletters/views/tracking/index.js:65 msgid "Track the impressions of ads in your newsletter." msgstr "" #: dist/newsletters.js:4 -#: src/wizards/newsletters/index.js:50 msgid "Newsletters / Tracking" msgstr "" @@ -11146,7 +9932,6 @@ msgstr "" #: dist/newspack-wizards.80278d14c9e76a6696a2.js:1 #: dist/other-scripts/nextdoor.js:1 -#: src/other-scripts/nextdoor/index.js:194 msgid "Status:" msgstr "" @@ -12303,289 +11088,230 @@ msgid "Site status" msgstr "" #: dist/other-scripts/corrections-modal.js:1 -#: src/other-scripts/corrections-modal/index.js:181 msgid "Changes have been saved successfully." msgstr "" #: dist/other-scripts/corrections-modal.js:1 -#: src/other-scripts/corrections-modal/index.js:198 msgid "Manage corrections and clarifications" msgstr "" #: dist/other-scripts/corrections-modal.js:1 -#: src/other-scripts/corrections-modal/index.js:201 msgid "Manage corrections" msgstr "" #: dist/other-scripts/corrections-modal.js:1 -#: src/other-scripts/corrections-modal/index.js:222 msgid "No corrections or clarifications have been added." msgstr "" #: dist/other-scripts/corrections-modal.js:1 #: dist/other-scripts/corrections-modal.js:4 -#: src/other-scripts/corrections-modal/index.js:247 -#: src/other-scripts/corrections-modal/index.js:334 msgid "Priority" msgstr "" #: dist/other-scripts/corrections-modal.js:1 -#: src/other-scripts/corrections-modal/index.js:255 -#: src/other-scripts/corrections-modal/index.js:274 msgid "Date" msgstr "" #: dist/other-scripts/corrections-modal.js:1 #: dist/other-scripts/corrections-modal.js:4 -#: src/other-scripts/corrections-modal/index.js:292 -#: src/other-scripts/corrections-modal/index.js:341 msgid "Description" msgstr "" #. translators: %s: type of correction. #: dist/other-scripts/corrections-modal.js:4 -#: src/other-scripts/corrections-modal/index.js:308 #, js-format msgid "%s deleted successfully." msgstr "" #. translators: %s: type of correction. #: dist/other-scripts/corrections-modal.js:7 -#: src/other-scripts/corrections-modal/index.js:362 #, js-format msgid "%s added successfully." msgstr "" #: dist/other-scripts/corrections-modal.js:7 -#: src/other-scripts/corrections-modal/index.js:391 msgid "Save & close" msgstr "" #: dist/other-scripts/corrections-modal.js:7 -#: src/other-scripts/corrections-modal/index.js:400 msgid "Add new correction" msgstr "" #. translators: 1: "From" email address 2: "From" email name #: dist/other-scripts/emails.js:2 -#: src/other-scripts/emails/index.js:60 #, js-format msgid "This email will be sent from %1$s <%2$s>." msgstr "" #: dist/other-scripts/emails.js:2 -#: src/other-scripts/emails/index.js:95 msgid "Instructions" msgstr "" #: dist/other-scripts/emails.js:2 -#: src/other-scripts/emails/index.js:96 msgid "Use the following placeholders to insert dynamic content in the email:" msgstr "" #: dist/other-scripts/emails.js:2 -#: src/other-scripts/emails/index.js:107 msgid "Subject" msgstr "" #: dist/other-scripts/emails.js:2 -#: src/other-scripts/emails/index.js:109 msgid "Testing" msgstr "" #: dist/other-scripts/emails.js:2 -#: src/other-scripts/emails/index.js:111 msgid "Send to" msgstr "" #: dist/other-scripts/emails.js:2 -#: src/other-scripts/emails/index.js:83 msgid "Test email sent!" msgstr "" #: dist/other-scripts/emails.js:2 -#: src/other-scripts/emails/index.js:118 msgid "Sending…" msgstr "" #: dist/other-scripts/emails.js:2 -#: src/other-scripts/emails/index.js:118 msgid "Send" msgstr "" #: dist/other-scripts/nextdoor.js:1 -#: src/other-scripts/nextdoor/index.js:57 msgid "Failed to load Nextdoor status." msgstr "" #: dist/other-scripts/nextdoor.js:1 -#: src/other-scripts/nextdoor/index.js:78 msgid "Failed to communicate with Nextdoor." msgstr "" #: dist/other-scripts/nextdoor.js:1 -#: src/other-scripts/nextdoor/index.js:280 msgid "Nextdoor" msgstr "" #: dist/other-scripts/nextdoor.js:1 -#: src/other-scripts/nextdoor/index.js:154 msgid "Loading Nextdoor status…" msgstr "" #: dist/other-scripts/nextdoor.js:1 -#: src/other-scripts/nextdoor/index.js:171 msgid "Post must be published before sharing to Nextdoor." msgstr "" #: dist/other-scripts/nextdoor.js:1 -#: src/other-scripts/nextdoor/index.js:200 msgid "This post is available in your Nextdoor community." msgstr "" #: dist/other-scripts/nextdoor.js:1 -#: src/other-scripts/nextdoor/index.js:204 msgid "This post could not be published on Nextdoor for the following reasons:" msgstr "" #: dist/other-scripts/nextdoor.js:1 -#: src/other-scripts/nextdoor/index.js:210 msgid "Please refer to the Publisher policy on Nextdoor for content guidelines." msgstr "" #: dist/other-scripts/nextdoor.js:1 -#: src/other-scripts/nextdoor/index.js:215 msgid "This post is being processed by Nextdoor. It may take a while (~1 Hour) as Nextdoor runs ML models on it for its distribution and moderation before it starts appearing on the page profile." msgstr "" #: dist/other-scripts/nextdoor.js:1 -#: src/other-scripts/nextdoor/index.js:222 msgid "This post was removed from Nextdoor." msgstr "" #: dist/other-scripts/nextdoor.js:1 -#: src/other-scripts/nextdoor/index.js:228 msgid "Shared:" msgstr "" #: dist/other-scripts/nextdoor.js:1 -#: src/other-scripts/nextdoor/index.js:234 msgid "Updated:" msgstr "" #: dist/other-scripts/nextdoor.js:1 -#: src/other-scripts/nextdoor/index.js:100 msgid "Update sent to Nextdoor." msgstr "" #: dist/other-scripts/nextdoor.js:1 -#: src/other-scripts/nextdoor/index.js:101 msgid "Failed to update." msgstr "" #: dist/other-scripts/nextdoor.js:1 -#: src/other-scripts/nextdoor/index.js:247 msgid "Updating…" msgstr "" #: dist/other-scripts/nextdoor.js:1 -#: src/other-scripts/nextdoor/index.js:110 msgid "Post removed from Nextdoor." msgstr "" #: dist/other-scripts/nextdoor.js:1 -#: src/other-scripts/nextdoor/index.js:111 msgid "Failed to remove post." msgstr "" #: dist/other-scripts/nextdoor.js:1 -#: src/other-scripts/nextdoor/index.js:257 msgid "Removing…" msgstr "" #: dist/other-scripts/nextdoor.js:1 -#: src/other-scripts/nextdoor/index.js:267 msgid "Share this post to your Nextdoor community to engage local readers." msgstr "" #: dist/other-scripts/nextdoor.js:1 -#: src/other-scripts/nextdoor/index.js:90 msgid "Published to Nextdoor." msgstr "" #: dist/other-scripts/nextdoor.js:1 -#: src/other-scripts/nextdoor/index.js:91 msgid "Failed to publish." msgstr "" #: dist/other-scripts/nextdoor.js:1 -#: src/other-scripts/nextdoor/index.js:270 msgid "Publishing…" msgstr "" #: dist/other-scripts/nextdoor.js:1 -#: src/other-scripts/nextdoor/index.js:270 msgid "Publish on Nextdoor" msgstr "" #: dist/other-scripts/nextdoor.js:1 -#: src/other-scripts/nextdoor/index.js:163 msgid "You do not have permission to publish to Nextdoor. Please contact the site administrator." msgstr "" #: dist/other-scripts/recaptcha.js:1 -#: src/other-scripts/recaptcha/index.js:66 msgid "There was an error connecting with reCAPTCHA. Please reload the page and try again." msgstr "" #: dist/other-scripts/salesforce.js:1 -#: src/other-scripts/salesforce/index.js:23 msgid "Not synced" msgstr "" #: dist/other-scripts/salesforce.js:1 -#: src/other-scripts/salesforce/index.js:34 -#: src/other-scripts/salesforce/index.js:39 msgid "Error fetching status" msgstr "" #: dist/plugins-screen.js:1 -#: src/plugins-screen/plugins-screen.js:47 msgid "Plugin review required" msgstr "" #: dist/plugins-screen.js:1 -#: src/plugins-screen/plugins-screen.js:48 msgid "Please submit a plugin for review by the Newspack Team before installing it on your website. If you plan to install an approved plugin, feel free to close this message." msgstr "" #: dist/plugins-screen.js:1 -#: src/plugins-screen/plugins-screen.js:56 msgid "Plugin Review Form" msgstr "" #: dist/plugins-screen.js:1 -#: src/plugins-screen/plugins-screen.js:57 msgid "Approved Plugins List" msgstr "" #: dist/plugins-screen.js:1 -#: src/plugins-screen/plugins-screen.js:58 msgid "Close this message" msgstr "" #: dist/setup.js:7 -#: src/wizards/setup/views/services/ReaderRevenue.js:27 msgid "To edit settings for News Revenue Hub, visit the Reader Revenue section from the Newspack dashboard." msgstr "" #: dist/setup.js:7 -#: src/wizards/setup/views/services/ReaderRevenue.js:33 msgid "Use a third-party reader revenue platform." msgstr "" #: dist/setup.js:7 -#: src/wizards/setup/views/services/ReaderRevenue.js:37 msgid "Use Newspack’s advanced integration with WooCommerce. For more configuration options, visit the Reader Revenue section from the Newspack dashboard." msgstr "" @@ -12613,168 +11339,97 @@ msgstr "" msgid "loading" msgstr "" -#: src/wizards/audience/components/active-campaign.js:33 -msgid "ActiveCampaign settings" -msgstr "" - -#: src/wizards/audience/components/active-campaign.js:34 -msgid "Settings for the ActiveCampaign integration." -msgstr "" - -#: src/wizards/audience/components/active-campaign.js:38 -msgid "No Master List selected. You will not be able to send reader activity data to ActiveCampaign." -msgstr "" - -#: src/wizards/audience/components/active-campaign.js:47 -msgid "Choose a list to which all registered readers will be added." -msgstr "" - -#: src/wizards/audience/components/mailchimp.js:33 -msgid "Mailchimp settings" -msgstr "" - -#: src/wizards/audience/components/mailchimp.js:34 -msgid "Settings for the Mailchimp integration." -msgstr "" - -#: src/wizards/audience/components/mailchimp.js:38 -msgid "No Mailchimp audience selected. You will not be able to send reader activity data to Mailchimp." -msgstr "" - -#: src/wizards/audience/components/mailchimp.js:59 -msgid "Choose which MailChimp status readers should have by default if they are not subscribed to any newsletters" -msgstr "" - -#: src/wizards/audience/views/campaigns/analytics/index.js:18 -msgid "Coming soon" -msgstr "" - -#: src/wizards/audience/views/campaigns/analytics/index.js:21 -msgid "We’re currently redesigning this dashboard to accommodate GA4 and give you deeper insights into Campaign performance. In the meantime, you can find Campaign event data within your GA account. Review this " -msgstr "" - -#: src/wizards/audience/views/campaigns/analytics/index.js:26 -msgid "help page" -msgstr "" - -#: src/wizards/audience/views/campaigns/analytics/index.js:28 -msgid " to see how Campaign data is being recorded in GA." -msgstr "" - -#: src/wizards/audience/views/campaigns/analytics/index.js:33 -msgid "View the help page" -msgstr "" - #: dist/blocks/byline/block.json -#: src/blocks/byline/block.json msgctxt "block title" msgid "Byline" msgstr "" #: dist/blocks/byline/block.json -#: src/blocks/byline/block.json msgctxt "block description" msgid "Display post author(s) with support for custom bylines and CoAuthors Plus." msgstr "" #: dist/blocks/collections/block.json -#: src/blocks/collections/block.json msgctxt "block title" msgid "Collections" msgstr "" #: dist/blocks/collections/block.json -#: src/blocks/collections/block.json msgctxt "block description" msgid "An advanced block that allows displaying collections based on different parameters and visual configurations." msgstr "" #: dist/blocks/collections/block.json -#: src/blocks/collections/block.json msgctxt "block keyword" msgid "collections" msgstr "" #: dist/blocks/collections/block.json -#: src/blocks/collections/block.json msgctxt "block keyword" msgid "issues" msgstr "" #: dist/blocks/collections/block.json -#: src/blocks/collections/block.json msgctxt "block keyword" msgid "publications" msgstr "" #: dist/blocks/collections/block.json -#: src/blocks/collections/block.json msgctxt "block keyword" msgid "magazines" msgstr "" #: dist/blocks/collections/block.json -#: src/blocks/collections/block.json msgctxt "block keyword" msgid "groups" msgstr "" #: dist/blocks/contribution-meter/block.json -#: src/blocks/contribution-meter/block.json msgctxt "block title" msgid "Contribution Meter" msgstr "" #: dist/blocks/contribution-meter/block.json -#: src/blocks/contribution-meter/block.json msgctxt "block description" msgid "Display progress toward your goal. Works seamlessly with the Donate block." msgstr "" #: dist/blocks/contribution-meter/block.json -#: src/blocks/contribution-meter/block.json msgctxt "block keyword" msgid "donations" msgstr "" #: dist/blocks/contribution-meter/block.json -#: src/blocks/contribution-meter/block.json msgctxt "block keyword" msgid "fundraising" msgstr "" #: dist/blocks/contribution-meter/block.json -#: src/blocks/contribution-meter/block.json msgctxt "block keyword" msgid "revenue" msgstr "" #: dist/blocks/contribution-meter/block.json -#: src/blocks/contribution-meter/block.json msgctxt "block keyword" msgid "progress" msgstr "" #: dist/blocks/contribution-meter/block.json -#: src/blocks/contribution-meter/block.json msgctxt "block keyword" msgid "goal" msgstr "" #: dist/blocks/contribution-meter/block.json -#: src/blocks/contribution-meter/block.json msgctxt "block keyword" msgid "campaign" msgstr "" #: dist/blocks/reader-registration/block.json -#: src/blocks/reader-registration/block.json msgctxt "block title" msgid "Reader Registration" msgstr "" #: dist/blocks/reader-registration/block.json -#: src/blocks/reader-registration/block.json msgctxt "block description" msgid "Register a reader with their email." msgstr "" From 5415d98f59f6a2743554af5273fffa79463018b1 Mon Sep 17 00:00:00 2001 From: Miguel Peixe Date: Fri, 23 Jan 2026 11:05:34 -0300 Subject: [PATCH 09/21] chore: remove superfluous secret --- .github/workflows/release.yml | 3 --- 1 file changed, 3 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 1be17f6407..13f14cf5c5 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -20,7 +20,6 @@ jobs: needs: build uses: Automattic/newspack-scripts/.github/workflows/reusable-release.yml@refactor/deprecate-circle-ci secrets: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} NPM_TOKEN: ${{ secrets.NPM_TOKEN }} build-distributable: @@ -33,5 +32,3 @@ jobs: if: github.ref == 'refs/heads/release' needs: release uses: Automattic/newspack-scripts/.github/workflows/reusable-post-release.yml@refactor/deprecate-circle-ci - secrets: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} From 8c8348c771cc055dd3b1248e248687f4cf2dd0f1 Mon Sep 17 00:00:00 2001 From: Miguel Peixe Date: Fri, 23 Jan 2026 12:42:49 -0300 Subject: [PATCH 10/21] fix: remove superfluous build --- .github/workflows/release.yml | 6 ------ 1 file changed, 6 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 13f14cf5c5..ba074e4ca2 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -22,12 +22,6 @@ jobs: secrets: NPM_TOKEN: ${{ secrets.NPM_TOKEN }} - build-distributable: - needs: release - uses: Automattic/newspack-scripts/.github/workflows/reusable-build-distributable.yml@refactor/deprecate-circle-ci - with: - archive-name: newspack-plugin - post-release: if: github.ref == 'refs/heads/release' needs: release From 6ac24adc32cbfe9c531c8543edbf211351a35ba5 Mon Sep 17 00:00:00 2001 From: Miguel Peixe Date: Mon, 26 Jan 2026 10:15:43 -0300 Subject: [PATCH 11/21] fix: empty commit From 6a15da04ad0a37748bd923b3308515d849b54946 Mon Sep 17 00:00:00 2001 From: Miguel Peixe Date: Mon, 26 Jan 2026 10:50:58 -0300 Subject: [PATCH 12/21] fix: update branch name --- .github/workflows/build-and-test.yml | 6 +++--- .github/workflows/build-distributable.yml | 2 +- .github/workflows/i18n.yml | 2 +- .github/workflows/php.yml | 4 ++-- .github/workflows/release.yml | 6 +++--- 5 files changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/build-and-test.yml b/.github/workflows/build-and-test.yml index fd46881274..bc08da0baf 100644 --- a/.github/workflows/build-and-test.yml +++ b/.github/workflows/build-and-test.yml @@ -16,12 +16,12 @@ concurrency: jobs: build: - uses: Automattic/newspack-scripts/.github/workflows/reusable-build.yml@refactor/deprecate-circle-ci + uses: Automattic/newspack-scripts/.github/workflows/reusable-build.yml@refactor/deprecate-circle-ci-v2 lint-js-scss: needs: build - uses: Automattic/newspack-scripts/.github/workflows/reusable-lint-js-scss.yml@refactor/deprecate-circle-ci + uses: Automattic/newspack-scripts/.github/workflows/reusable-lint-js-scss.yml@refactor/deprecate-circle-ci-v2 test-js: needs: build - uses: Automattic/newspack-scripts/.github/workflows/reusable-test-js.yml@refactor/deprecate-circle-ci + uses: Automattic/newspack-scripts/.github/workflows/reusable-test-js.yml@refactor/deprecate-circle-ci-v2 diff --git a/.github/workflows/build-distributable.yml b/.github/workflows/build-distributable.yml index b6dd2e4c01..f1e0a61fa6 100644 --- a/.github/workflows/build-distributable.yml +++ b/.github/workflows/build-distributable.yml @@ -9,6 +9,6 @@ concurrency: jobs: build-distributable: - uses: Automattic/newspack-scripts/.github/workflows/reusable-build-distributable.yml@refactor/deprecate-circle-ci + uses: Automattic/newspack-scripts/.github/workflows/reusable-build-distributable.yml@refactor/deprecate-circle-ci-v2 with: archive-name: newspack-plugin diff --git a/.github/workflows/i18n.yml b/.github/workflows/i18n.yml index e2d4788d21..b1a3d4b9b0 100644 --- a/.github/workflows/i18n.yml +++ b/.github/workflows/i18n.yml @@ -11,4 +11,4 @@ concurrency: jobs: i18n: - uses: Automattic/newspack-scripts/.github/workflows/reusable-i18n.yml@refactor/deprecate-circle-ci + uses: Automattic/newspack-scripts/.github/workflows/reusable-i18n.yml@refactor/deprecate-circle-ci-v2 diff --git a/.github/workflows/php.yml b/.github/workflows/php.yml index 29df675bc4..778ee7881c 100644 --- a/.github/workflows/php.yml +++ b/.github/workflows/php.yml @@ -16,7 +16,7 @@ concurrency: jobs: lint-php: - uses: Automattic/newspack-scripts/.github/workflows/reusable-lint-php.yml@refactor/deprecate-circle-ci + uses: Automattic/newspack-scripts/.github/workflows/reusable-lint-php.yml@refactor/deprecate-circle-ci-v2 test-php: - uses: Automattic/newspack-scripts/.github/workflows/reusable-test-php.yml@refactor/deprecate-circle-ci + uses: Automattic/newspack-scripts/.github/workflows/reusable-test-php.yml@refactor/deprecate-circle-ci-v2 diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index ba074e4ca2..059049e862 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -14,15 +14,15 @@ concurrency: jobs: build: - uses: Automattic/newspack-scripts/.github/workflows/reusable-build.yml@refactor/deprecate-circle-ci + uses: Automattic/newspack-scripts/.github/workflows/reusable-build.yml@refactor/deprecate-circle-ci-v2 release: needs: build - uses: Automattic/newspack-scripts/.github/workflows/reusable-release.yml@refactor/deprecate-circle-ci + uses: Automattic/newspack-scripts/.github/workflows/reusable-release.yml@refactor/deprecate-circle-ci-v2 secrets: NPM_TOKEN: ${{ secrets.NPM_TOKEN }} post-release: if: github.ref == 'refs/heads/release' needs: release - uses: Automattic/newspack-scripts/.github/workflows/reusable-post-release.yml@refactor/deprecate-circle-ci + uses: Automattic/newspack-scripts/.github/workflows/reusable-post-release.yml@refactor/deprecate-circle-ci-v2 From fc68fb3c196067378ecee5944f36ba3eb7a077e0 Mon Sep 17 00:00:00 2001 From: Miguel Peixe Date: Mon, 26 Jan 2026 11:25:40 -0300 Subject: [PATCH 13/21] fix: empty commit From a053d2df3637c14d8f467878fb76d799248a1a81 Mon Sep 17 00:00:00 2001 From: Miguel Peixe Date: Mon, 26 Jan 2026 11:28:48 -0300 Subject: [PATCH 14/21] Revert "fix: update branch name" This reverts commit 6a15da04ad0a37748bd923b3308515d849b54946. --- .github/workflows/build-and-test.yml | 6 +++--- .github/workflows/build-distributable.yml | 2 +- .github/workflows/i18n.yml | 2 +- .github/workflows/php.yml | 4 ++-- .github/workflows/release.yml | 6 +++--- 5 files changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/build-and-test.yml b/.github/workflows/build-and-test.yml index bc08da0baf..fd46881274 100644 --- a/.github/workflows/build-and-test.yml +++ b/.github/workflows/build-and-test.yml @@ -16,12 +16,12 @@ concurrency: jobs: build: - uses: Automattic/newspack-scripts/.github/workflows/reusable-build.yml@refactor/deprecate-circle-ci-v2 + uses: Automattic/newspack-scripts/.github/workflows/reusable-build.yml@refactor/deprecate-circle-ci lint-js-scss: needs: build - uses: Automattic/newspack-scripts/.github/workflows/reusable-lint-js-scss.yml@refactor/deprecate-circle-ci-v2 + uses: Automattic/newspack-scripts/.github/workflows/reusable-lint-js-scss.yml@refactor/deprecate-circle-ci test-js: needs: build - uses: Automattic/newspack-scripts/.github/workflows/reusable-test-js.yml@refactor/deprecate-circle-ci-v2 + uses: Automattic/newspack-scripts/.github/workflows/reusable-test-js.yml@refactor/deprecate-circle-ci diff --git a/.github/workflows/build-distributable.yml b/.github/workflows/build-distributable.yml index f1e0a61fa6..b6dd2e4c01 100644 --- a/.github/workflows/build-distributable.yml +++ b/.github/workflows/build-distributable.yml @@ -9,6 +9,6 @@ concurrency: jobs: build-distributable: - uses: Automattic/newspack-scripts/.github/workflows/reusable-build-distributable.yml@refactor/deprecate-circle-ci-v2 + uses: Automattic/newspack-scripts/.github/workflows/reusable-build-distributable.yml@refactor/deprecate-circle-ci with: archive-name: newspack-plugin diff --git a/.github/workflows/i18n.yml b/.github/workflows/i18n.yml index b1a3d4b9b0..e2d4788d21 100644 --- a/.github/workflows/i18n.yml +++ b/.github/workflows/i18n.yml @@ -11,4 +11,4 @@ concurrency: jobs: i18n: - uses: Automattic/newspack-scripts/.github/workflows/reusable-i18n.yml@refactor/deprecate-circle-ci-v2 + uses: Automattic/newspack-scripts/.github/workflows/reusable-i18n.yml@refactor/deprecate-circle-ci diff --git a/.github/workflows/php.yml b/.github/workflows/php.yml index 778ee7881c..29df675bc4 100644 --- a/.github/workflows/php.yml +++ b/.github/workflows/php.yml @@ -16,7 +16,7 @@ concurrency: jobs: lint-php: - uses: Automattic/newspack-scripts/.github/workflows/reusable-lint-php.yml@refactor/deprecate-circle-ci-v2 + uses: Automattic/newspack-scripts/.github/workflows/reusable-lint-php.yml@refactor/deprecate-circle-ci test-php: - uses: Automattic/newspack-scripts/.github/workflows/reusable-test-php.yml@refactor/deprecate-circle-ci-v2 + uses: Automattic/newspack-scripts/.github/workflows/reusable-test-php.yml@refactor/deprecate-circle-ci diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 059049e862..ba074e4ca2 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -14,15 +14,15 @@ concurrency: jobs: build: - uses: Automattic/newspack-scripts/.github/workflows/reusable-build.yml@refactor/deprecate-circle-ci-v2 + uses: Automattic/newspack-scripts/.github/workflows/reusable-build.yml@refactor/deprecate-circle-ci release: needs: build - uses: Automattic/newspack-scripts/.github/workflows/reusable-release.yml@refactor/deprecate-circle-ci-v2 + uses: Automattic/newspack-scripts/.github/workflows/reusable-release.yml@refactor/deprecate-circle-ci secrets: NPM_TOKEN: ${{ secrets.NPM_TOKEN }} post-release: if: github.ref == 'refs/heads/release' needs: release - uses: Automattic/newspack-scripts/.github/workflows/reusable-post-release.yml@refactor/deprecate-circle-ci-v2 + uses: Automattic/newspack-scripts/.github/workflows/reusable-post-release.yml@refactor/deprecate-circle-ci From f664591f9ad1627aeb32d6afe44254debeac5b8a Mon Sep 17 00:00:00 2001 From: Miguel Peixe Date: Mon, 26 Jan 2026 11:43:57 -0300 Subject: [PATCH 15/21] fix: add repo env --- .github/workflows/release.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index ba074e4ca2..a02449046d 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -18,8 +18,9 @@ jobs: release: needs: build - uses: Automattic/newspack-scripts/.github/workflows/reusable-release.yml@refactor/deprecate-circle-ci + uses: Automattic/newspack-scripts/.github/workflows/reusable-release.yml@1b654fae0446656ac8221ae7400a42bbd80b2140 secrets: + GITHUB_REPOSITORY: ${{ github.repository }} NPM_TOKEN: ${{ secrets.NPM_TOKEN }} post-release: From 24b5c0e5960d895aa188622ae7317a4e5391939b Mon Sep 17 00:00:00 2001 From: Miguel Peixe Date: Mon, 26 Jan 2026 11:51:05 -0300 Subject: [PATCH 16/21] fix: update scripts package --- package-lock.json | 81 +++++++++++------------------------------------ package.json | 2 +- 2 files changed, 20 insertions(+), 63 deletions(-) diff --git a/package-lock.json b/package-lock.json index cc236aa083..0e111a392f 100644 --- a/package-lock.json +++ b/package-lock.json @@ -20,7 +20,7 @@ "tachyons": "^4.12.0" }, "devDependencies": { - "newspack-scripts": "^5.8.0" + "newspack-scripts": "github:Automattic/newspack-scripts#1b654fae0446656ac8221ae7400a42bbd80b2140" } }, "node_modules/@actions/core": { @@ -155,7 +155,6 @@ "integrity": "sha512-e7jT4DxYvIDLk1ZHmU/m/mB19rex9sv0c2ftBtjSBv+kVM/902eh0fINUzD7UwLLNR+jU585GxUJ8/EBfAM5fw==", "dev": true, "license": "MIT", - "peer": true, "dependencies": { "@babel/code-frame": "^7.27.1", "@babel/generator": "^7.28.5", @@ -2167,7 +2166,6 @@ "integrity": "sha512-h0Un1ieD+HUrzBH6dJXhod3ifSghk5Hw/2Y4/KHBziPlZecrFyE9YOTPU6eOs0V9pYl8gOs86fkr/KN8lUX39A==", "dev": true, "license": "MIT", - "peer": true, "dependencies": { "@keyv/serialize": "^1.1.1" } @@ -2555,7 +2553,6 @@ } ], "license": "MIT", - "peer": true, "engines": { "node": ">=18" }, @@ -2579,7 +2576,6 @@ } ], "license": "MIT", - "peer": true, "engines": { "node": ">=18" } @@ -2721,7 +2717,6 @@ "integrity": "sha512-O000MLDBDdk/EohJPFUqvnp4qnHeYkVP5B0xEG0D/L7cOKP9kefu2DXn8dj74cQfsEzUqh+sr1RzFqiL1o+PpA==", "dev": true, "license": "MIT", - "peer": true, "dependencies": { "@babel/runtime": "^7.18.3", "@emotion/babel-plugin": "^11.13.5", @@ -3751,7 +3746,6 @@ "integrity": "sha512-t54CUOsFMappY1Jbzb7fetWeO0n6K0k/4+/ZpkS+3Joz8I4VcvY9OiEBFRYISqaI2fq5sCiPtAjRDOzVYG8m+Q==", "dev": true, "license": "MIT", - "peer": true, "dependencies": { "@octokit/auth-token": "^6.0.0", "@octokit/graphql": "^9.0.2", @@ -3898,7 +3892,6 @@ "integrity": "sha512-3giAOQvZiH5F9bMlMiv8+GSPMeqg0dbaeo58/0SlA9sxSqZhnUtxzX9/2FzyhS9sWQf5S0GJE0AKBrFqjpeYcg==", "dev": true, "license": "Apache-2.0", - "peer": true, "engines": { "node": ">=8.0.0" } @@ -3922,7 +3915,6 @@ "integrity": "sha512-s5vvxXPVdjqS3kTLKMeBMvop9hbWkwzBpu+mUO2M7sZtlkyDJGwFe33wRKnbaYDo8ExRVBIIdwIGrqpxHuKttA==", "dev": true, "license": "Apache-2.0", - "peer": true, "engines": { "node": ">=14" }, @@ -3936,7 +3928,6 @@ "integrity": "sha512-OOCM2C/QIURhJMuKaekP3TRBxBKxG/TWWA0TL2J6nXUtDnuCtccy49LUJF8xPFXMX+0LMcxFpCo8M9cGY1W6rQ==", "dev": true, "license": "Apache-2.0", - "peer": true, "dependencies": { "@opentelemetry/semantic-conventions": "1.28.0" }, @@ -4419,7 +4410,6 @@ "integrity": "sha512-5UxZqiAgLYGFjS4s9qm5mBVo433u+dSPUFWVWXmLAD4wB65oMCoXaJP1KJa9DIYYMeHu3z4BZcStG3LC593cWA==", "dev": true, "license": "Apache-2.0", - "peer": true, "dependencies": { "@opentelemetry/core": "1.30.1", "@opentelemetry/semantic-conventions": "1.28.0" @@ -4447,7 +4437,6 @@ "integrity": "sha512-jVPgBbH1gCy2Lb7X0AVQ8XAfgg0pJ4nvl8/IiQA6nxOsPvS+0zMJaFSs2ltXe0J6C8dqjcnpyqINDJmU30+uOg==", "dev": true, "license": "Apache-2.0", - "peer": true, "dependencies": { "@opentelemetry/core": "1.30.1", "@opentelemetry/resources": "1.30.1", @@ -4476,7 +4465,6 @@ "integrity": "sha512-JD6DerIKdJGmRp4jQyX5FlrQjA4tjOw1cvfsPAZXfOOEErMUHjPcPSICS+6WnM0nB0efSFARh0KAZss+bvExOA==", "dev": true, "license": "Apache-2.0", - "peer": true, "engines": { "node": ">=14" } @@ -6589,7 +6577,6 @@ "integrity": "sha512-8QqtOQT5ACVlmsvKOJNEaWmRPmcojMOzCz4Hs2BGG/toAp/K38LcsMRyLp349glq5AzJbCEeimEoxaX6v/fLrA==", "dev": true, "license": "MIT", - "peer": true, "dependencies": { "@babel/core": "^7.21.3", "@svgr/babel-preset": "8.1.0", @@ -6936,7 +6923,8 @@ "resolved": "https://registry.npmjs.org/@types/aria-query/-/aria-query-5.0.4.tgz", "integrity": "sha512-rfT93uj5s0PRL7EzccGMs3brplhcrghnDoV26NqKhCAS1hVo+WdNsPvE/yb6ilfr5hi2MEk6d5EWJTKdxg8jVw==", "dev": true, - "license": "MIT" + "license": "MIT", + "peer": true }, "node_modules/@types/babel__core": { "version": "7.20.5", @@ -7041,7 +7029,6 @@ "integrity": "sha512-FXx2pKgId/WyYo2jXw63kk7/+TY7u7AziEJxJAnSFzHlqTAS3Ync6SvgYAN/k4/PQpnnVuzoMuVnByKK2qp0ag==", "dev": true, "license": "MIT", - "peer": true, "dependencies": { "@types/estree": "*", "@types/json-schema": "*" @@ -7234,8 +7221,7 @@ "resolved": "https://registry.npmjs.org/@types/node/-/node-20.5.1.tgz", "integrity": "sha512-4tT2UrL5LBqDwoed9wZ6N3umC4Yhz3W3FloMmiiG4JwmUJWpie0c7lcnUNd4gtMKuDEO4wRVS8B6Xa0uMRsMKg==", "dev": true, - "license": "MIT", - "peer": true + "license": "MIT" }, "node_modules/@types/node-forge": { "version": "1.3.14", @@ -7310,7 +7296,6 @@ "integrity": "sha512-RFA/bURkcKzx/X9oumPG9Vp3D3JUgus/d0b67KB0t5S/raciymilkOa66olh78MUI92QLbEJevO7rvqU/kjwKA==", "dev": true, "license": "MIT", - "peer": true, "dependencies": { "@types/prop-types": "*", "csstype": "^3.0.2" @@ -7322,7 +7307,6 @@ "integrity": "sha512-MEe3UeoENYVFXzoXEWsvcpg6ZvlrFNlOQ7EOsvhI3CfAXwzPfO8Qwuxd40nepsYKqyyVQnTdEfv68q91yLcKrQ==", "dev": true, "license": "MIT", - "peer": true, "peerDependencies": { "@types/react": "^18.0.0" } @@ -9014,7 +8998,6 @@ "integrity": "sha512-oy9+hTPCUFpngkEZUSzbf9MxI65wbKFoQYsgPdILTfbUldp5ovUuphZVe4i30emU9M/kP+T64Di0mxl7dSw3MA==", "dev": true, "license": "MIT", - "peer": true, "dependencies": { "@eslint-community/regexpp": "^4.5.1", "@typescript-eslint/scope-manager": "6.21.0", @@ -9051,7 +9034,6 @@ "integrity": "sha512-tbsV1jPne5CkFQCgPBcDOt30ItF7aJoZL997JSF7MhGQqOeT3svWRYxiqlfA5RUdlHN6Fi+EI9bxqbdyAUZjYQ==", "dev": true, "license": "BSD-2-Clause", - "peer": true, "dependencies": { "@typescript-eslint/scope-manager": "6.21.0", "@typescript-eslint/types": "6.21.0", @@ -10414,7 +10396,6 @@ "integrity": "sha512-NZyJarBfL7nWwIq+FDL6Zp/yHEhePMNnnJ0y3qfieCrmNvYct8uvtiV41UvlSe6apAfk0fY1FbWx+NwfmpvtTg==", "dev": true, "license": "MIT", - "peer": true, "bin": { "acorn": "bin/acorn" }, @@ -10522,7 +10503,6 @@ "integrity": "sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==", "dev": true, "license": "MIT", - "peer": true, "dependencies": { "fast-deep-equal": "^3.1.3", "fast-uri": "^3.0.1", @@ -11640,7 +11620,6 @@ } ], "license": "MIT", - "peer": true, "dependencies": { "baseline-browser-mapping": "^2.8.19", "caniuse-lite": "^1.0.30001751", @@ -12933,7 +12912,6 @@ "integrity": "sha512-itvL5h8RETACmOTFc4UfIyB2RfEHi71Ax6E/PivVxq9NseKbOWpeyHEOIbmAw1rs8Ak0VursQNww7lf7YtUwzg==", "dev": true, "license": "MIT", - "peer": true, "dependencies": { "env-paths": "^2.2.1", "import-fresh": "^3.3.0", @@ -13904,8 +13882,7 @@ "resolved": "https://registry.npmjs.org/devtools-protocol/-/devtools-protocol-0.0.1507524.tgz", "integrity": "sha512-OjaNE7qpk6GRTXtqQjAE5bGx6+c4F1zZH0YXtpZQLM92HNXx4zMAaqlKhP4T52DosG6hDW8gPMNhGOF8xbwk/w==", "dev": true, - "license": "BSD-3-Clause", - "peer": true + "license": "BSD-3-Clause" }, "node_modules/diff": { "version": "4.0.2", @@ -13971,7 +13948,8 @@ "resolved": "https://registry.npmjs.org/dom-accessibility-api/-/dom-accessibility-api-0.5.16.tgz", "integrity": "sha512-X7BJ2yElsnOJ30pZF4uIIDfBEVgF4XEBxL9Bxhy6dnrm5hkzqmsWHGTiHqRiITNhMyFLyAiWndIJP7Z1NTteDg==", "dev": true, - "license": "MIT" + "license": "MIT", + "peer": true }, "node_modules/dom-serializer": { "version": "2.0.0", @@ -14794,7 +14772,6 @@ "deprecated": "This version is no longer supported. Please see https://eslint.org/version-support for other options.", "dev": true, "license": "MIT", - "peer": true, "dependencies": { "@eslint-community/eslint-utils": "^4.2.0", "@eslint-community/regexpp": "^4.6.1", @@ -14851,7 +14828,6 @@ "integrity": "sha512-82GZUjRS0p/jganf6q1rEO25VSoHH0hKPCTrgillPjdI/3bgBhAE1QzHrHTizjpRvy6pGAvKjDJtk2pF9NDq8w==", "dev": true, "license": "MIT", - "peer": true, "bin": { "eslint-config-prettier": "bin/cli.js" }, @@ -14975,7 +14951,6 @@ "integrity": "sha512-EE44T0OSMCeXhDrrdsbKAhprobKkPtJTbQz5yEktysNpHeDZTAL1SfDTNKmcFfJkY6yrQLtTKZALrD3j/Gpmiw==", "dev": true, "license": "MIT", - "peer": true, "dependencies": { "@typescript-eslint/utils": "^8.0.0" }, @@ -18790,7 +18765,6 @@ "integrity": "sha512-NIy3oAFp9shda19hy4HK0HRTWKtPJmGdnvywu01nOqNC2vZg+Z+fvJDxpMQA88eb2I9EcafcdjYgsDthnYTvGw==", "dev": true, "license": "MIT", - "peer": true, "dependencies": { "@jest/core": "^29.7.0", "@jest/types": "^29.6.3", @@ -20276,8 +20250,7 @@ "resolved": "https://registry.npmjs.org/devtools-protocol/-/devtools-protocol-0.0.1521046.tgz", "integrity": "sha512-vhE6eymDQSKWUXwwA37NtTTVEzjtGVfDr3pRbsWEQ5onH/Snp2c+2xZHWJJawG/0hCCJLRGt4xVtEVUVILol4w==", "dev": true, - "license": "BSD-3-Clause", - "peer": true + "license": "BSD-3-Clause" }, "node_modules/lighthouse/node_modules/puppeteer-core/node_modules/ws": { "version": "8.18.3", @@ -21032,6 +21005,7 @@ "integrity": "sha512-h5bgJWpxJNswbU7qCrV0tIKQCaS3blPDrqKWx+QxzuzL1zGUzij9XCWLrSLsJPu5t+eWA/ycetzYAO5IOMcWAQ==", "dev": true, "license": "MIT", + "peer": true, "bin": { "lz-string": "bin/bin.js" } @@ -21233,7 +21207,6 @@ "integrity": "sha512-8dD6FusOQSrpv9Z1rdNMdlSgQOIP880DHqnohobOmYLElGEqAL/JvxvuxZO16r4HtjTlfPRDC1hbvxC9dPN2nA==", "dev": true, "license": "MIT", - "peer": true, "bin": { "marked": "bin/marked.js" }, @@ -21692,7 +21665,6 @@ "node_modules/moment": { "version": "2.30.1", "license": "MIT", - "peer": true, "engines": { "node": "*" } @@ -21872,8 +21844,8 @@ }, "node_modules/newspack-scripts": { "version": "5.8.0", - "resolved": "https://registry.npmjs.org/newspack-scripts/-/newspack-scripts-5.8.0.tgz", - "integrity": "sha512-INOymPHxavzLFziqa9zcfB9KRfi9w+FOwq1cNj8IKnfBSlWrYMLsw43LMgAk7wrGtv6crvHEREweHhPGWMAtGQ==", + "resolved": "git+ssh://git@github.com/Automattic/newspack-scripts.git#1b654fae0446656ac8221ae7400a42bbd80b2140", + "integrity": "sha512-NzUACVvKJJLiYXtFIHmxZNzVsqmYJmW0HuzUpNa3Y/pJEUK1QfqWk+SCACTyDx7zXoNlIvjBTbNUD6R1zSF72w==", "dev": true, "license": "ISC", "dependencies": { @@ -22252,7 +22224,6 @@ "integrity": "sha512-cuXAJJB1Rdqz0UO6w524matlBqDBjcNt7Ru+RDIu4y6RI1gVqiWBnylrK8sPRk81gGBA0X8hJbDXolVOoTc+sA==", "dev": true, "license": "MIT", - "peer": true, "dependencies": { "ajv": "^6.12.6", "ajv-errors": "^1.0.1", @@ -24768,7 +24739,6 @@ "dev": true, "inBundle": true, "license": "MIT", - "peer": true, "engines": { "node": ">=12" }, @@ -25965,6 +25935,7 @@ "integrity": "sha512-aFi5B0WovBHTEvpM3DzXTUaeN6eN0qWnTkKx4NQaH4Wvcmc153PdaY2UBdSYKaGYw+UyWXSVyxDUg5DoPEttjw==", "dev": true, "license": "Apache-2.0", + "peer": true, "dependencies": { "playwright-core": "1.56.1" }, @@ -25984,6 +25955,7 @@ "integrity": "sha512-hutraynyn31F+Bifme+Ps9Vq59hKuUCz7H1kDOcBs+2oGguKkWTU50bBWrtz34OUWmIwpBTWDxaRPXrIXkgvmQ==", "dev": true, "license": "Apache-2.0", + "peer": true, "bin": { "playwright-core": "cli.js" }, @@ -26002,6 +25974,7 @@ "os": [ "darwin" ], + "peer": true, "engines": { "node": "^8.16.0 || ^10.6.0 || >=11.0.0" } @@ -26052,7 +26025,6 @@ } ], "license": "MIT", - "peer": true, "dependencies": { "nanoid": "^3.3.11", "picocolors": "^1.1.1", @@ -26859,7 +26831,6 @@ "integrity": "sha512-5SYSgFKSyhCbk6SrXyMpqjb5+MQBgfvEKE/OC+PujcY34sOpqtr+0AZQtPYx5IA6VxynQ7rUPCtKzyovpj9Bpg==", "dev": true, "license": "MIT", - "peer": true, "funding": { "type": "opencollective", "url": "https://opencollective.com/preact" @@ -26882,7 +26853,6 @@ "integrity": "sha512-X4UlrxDTH8oom9qXlcjnydsjAOD2BmB6yFmvS4Z2zdTzqqpRWb+fbqrH412+l+OUXmbzJlSXjlMFYPgYG12IAA==", "dev": true, "license": "MIT", - "peer": true, "bin": { "prettier": "bin/prettier.cjs" }, @@ -26912,6 +26882,7 @@ "integrity": "sha512-Qb1gy5OrP5+zDf2Bvnzdl3jsTf1qXVMazbvCoKhtKqVs4/YK4ozX4gKQJJVyNe+cajNPn0KoC0MC3FUmaHWEmQ==", "dev": true, "license": "MIT", + "peer": true, "dependencies": { "ansi-regex": "^5.0.1", "ansi-styles": "^5.0.0", @@ -26927,6 +26898,7 @@ "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", "dev": true, "license": "MIT", + "peer": true, "engines": { "node": ">=10" }, @@ -26939,7 +26911,8 @@ "resolved": "https://registry.npmjs.org/react-is/-/react-is-17.0.2.tgz", "integrity": "sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==", "dev": true, - "license": "MIT" + "license": "MIT", + "peer": true }, "node_modules/pretty-ms": { "version": "9.3.0", @@ -27345,7 +27318,6 @@ "node_modules/react": { "version": "18.3.1", "license": "MIT", - "peer": true, "dependencies": { "loose-envify": "^1.1.0" }, @@ -27419,7 +27391,6 @@ "integrity": "sha512-5m4nQKp+rZRb09LNH59GM4BxTh9251/ylbKIbpe7TpGxfJ+9kv6BLkLBXIjjspbgbnIBNqlI23tRnTWT0snUIw==", "dev": true, "license": "MIT", - "peer": true, "dependencies": { "loose-envify": "^1.1.0", "scheduler": "^0.23.2" @@ -27455,7 +27426,6 @@ "integrity": "sha512-jCvmsr+1IUSMUyzOkRcvnVbX3ZYC6g9TDrDbFuFmRDq7PD4yaGbLKNQL6k2jnArV8hjYxh7hVhAZB6s9HDGpZA==", "dev": true, "license": "MIT", - "peer": true, "engines": { "node": ">=0.10.0" } @@ -27896,8 +27866,7 @@ "resolved": "https://registry.npmjs.org/redux/-/redux-5.0.1.tgz", "integrity": "sha512-M9/ELqF6fy8FwmkpnF0S3YKOqMyoWJ4+CS5Efg2ct3oY9daQvd/Pc71FpGZsVsbl3Cpb+IIcjBDUnnyBdQbq4w==", "dev": true, - "license": "MIT", - "peer": true + "license": "MIT" }, "node_modules/reflect.getprototypeof": { "version": "1.0.10", @@ -28437,7 +28406,6 @@ "integrity": "sha512-t+YPtOQHpGW1QWsh1CHQ5cPIr9lbbGZLZnbihP/D/qZj/yuV68m8qarcV17nvkOX81BCrvzAlq2klCQFZghyTg==", "dev": true, "license": "MIT", - "peer": true, "dependencies": { "chokidar": "^4.0.0", "immutable": "^5.0.2", @@ -28571,7 +28539,6 @@ "integrity": "sha512-0OCYLm0AfVilNGukM+w0C4aptITfuW1Mhvmz8LQliLeYbPOTFRCIJzoltWWx/F5zVFe6np9eNatBUHdAvMFeZg==", "dev": true, "license": "MIT", - "peer": true, "dependencies": { "@semantic-release/commit-analyzer": "^13.0.1", "@semantic-release/error": "^4.0.0", @@ -30724,7 +30691,6 @@ } ], "license": "MIT", - "peer": true, "dependencies": { "@csstools/css-parser-algorithms": "^3.0.5", "@csstools/css-tokenizer": "^3.0.4", @@ -31054,7 +31020,6 @@ "integrity": "sha512-8sLjZwK0R+JlxlYcTuVnyT2v+htpdrjDOKuMcOVdYjt52Lh8hWRYpxBPoKx/Zg+bcjc3wx6fmQevMmUztS/ccA==", "dev": true, "license": "MIT", - "peer": true, "dependencies": { "cssesc": "^3.0.0", "util-deprecate": "^1.0.2" @@ -31729,7 +31694,6 @@ "integrity": "sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==", "dev": true, "license": "MIT", - "peer": true, "engines": { "node": ">=12" }, @@ -32024,7 +31988,6 @@ "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", "dev": true, "license": "(MIT OR CC0-1.0)", - "peer": true, "engines": { "node": ">=10" }, @@ -32137,7 +32100,6 @@ "integrity": "sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==", "dev": true, "license": "Apache-2.0", - "peer": true, "bin": { "tsc": "bin/tsc", "tsserver": "bin/tsserver" @@ -32425,7 +32387,6 @@ "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", "dev": true, "license": "MIT", - "peer": true, "dependencies": { "fast-deep-equal": "^3.1.1", "fast-json-stable-stringify": "^2.0.0", @@ -32748,7 +32709,6 @@ "integrity": "sha512-7h/weGm9d/ywQ6qzJ+Xy+r9n/3qgp/thalBbpOi5i223dPXKi04IBtqPN9nTd+jBc7QKfvDbaBnFipYp4sJAUQ==", "dev": true, "license": "MIT", - "peer": true, "dependencies": { "@types/eslint-scope": "^3.7.7", "@types/estree": "^1.0.8", @@ -32857,7 +32817,6 @@ "integrity": "sha512-pIDJHIEI9LR0yxHXQ+Qh95k2EvXpWzZ5l+d+jIo+RdSm9MiHfzazIxwwni/p7+x4eJZuvG1AJwgC4TNQ7NRgsg==", "dev": true, "license": "MIT", - "peer": true, "dependencies": { "@discoveryjs/json-ext": "^0.5.0", "@webpack-cli/configtest": "^2.1.1", @@ -32938,7 +32897,6 @@ "integrity": "sha512-0XavAZbNJ5sDrCbkpWL8mia0o5WPOd2YGtxrEiZkBK9FjLppIUK2TgxK6qGD2P3hUXTJNNPVibrerKcx5WkR1g==", "dev": true, "license": "MIT", - "peer": true, "dependencies": { "@types/bonjour": "^3.5.9", "@types/connect-history-api-fallback": "^1.3.5", @@ -33583,7 +33541,6 @@ "integrity": "sha512-OIDwaflOaq4wC6YlPBy2L6ceKeKuF7DeTxx+jPzv1FHn9tCZ0ZwSRnUBxD05E3yed46fv/FWJbvR+Ud7x0L7zw==", "dev": true, "license": "MIT", - "peer": true, "dependencies": { "lib0": "^0.2.99" }, diff --git a/package.json b/package.json index 88c454ead3..66f0a5f985 100644 --- a/package.json +++ b/package.json @@ -50,6 +50,6 @@ "tachyons": "^4.12.0" }, "devDependencies": { - "newspack-scripts": "^5.8.0" + "newspack-scripts": "github:Automattic/newspack-scripts#1b654fae0446656ac8221ae7400a42bbd80b2140" } } From e42c26190ae4cbc00ae0eb0d95c5402b0f3fc8cc Mon Sep 17 00:00:00 2001 From: Miguel Peixe Date: Mon, 26 Jan 2026 12:01:30 -0300 Subject: [PATCH 17/21] Revert "fix: update scripts package" This reverts commit 24b5c0e5960d895aa188622ae7317a4e5391939b. --- package-lock.json | 81 ++++++++++++++++++++++++++++++++++++----------- package.json | 2 +- 2 files changed, 63 insertions(+), 20 deletions(-) diff --git a/package-lock.json b/package-lock.json index 0e111a392f..cc236aa083 100644 --- a/package-lock.json +++ b/package-lock.json @@ -20,7 +20,7 @@ "tachyons": "^4.12.0" }, "devDependencies": { - "newspack-scripts": "github:Automattic/newspack-scripts#1b654fae0446656ac8221ae7400a42bbd80b2140" + "newspack-scripts": "^5.8.0" } }, "node_modules/@actions/core": { @@ -155,6 +155,7 @@ "integrity": "sha512-e7jT4DxYvIDLk1ZHmU/m/mB19rex9sv0c2ftBtjSBv+kVM/902eh0fINUzD7UwLLNR+jU585GxUJ8/EBfAM5fw==", "dev": true, "license": "MIT", + "peer": true, "dependencies": { "@babel/code-frame": "^7.27.1", "@babel/generator": "^7.28.5", @@ -2166,6 +2167,7 @@ "integrity": "sha512-h0Un1ieD+HUrzBH6dJXhod3ifSghk5Hw/2Y4/KHBziPlZecrFyE9YOTPU6eOs0V9pYl8gOs86fkr/KN8lUX39A==", "dev": true, "license": "MIT", + "peer": true, "dependencies": { "@keyv/serialize": "^1.1.1" } @@ -2553,6 +2555,7 @@ } ], "license": "MIT", + "peer": true, "engines": { "node": ">=18" }, @@ -2576,6 +2579,7 @@ } ], "license": "MIT", + "peer": true, "engines": { "node": ">=18" } @@ -2717,6 +2721,7 @@ "integrity": "sha512-O000MLDBDdk/EohJPFUqvnp4qnHeYkVP5B0xEG0D/L7cOKP9kefu2DXn8dj74cQfsEzUqh+sr1RzFqiL1o+PpA==", "dev": true, "license": "MIT", + "peer": true, "dependencies": { "@babel/runtime": "^7.18.3", "@emotion/babel-plugin": "^11.13.5", @@ -3746,6 +3751,7 @@ "integrity": "sha512-t54CUOsFMappY1Jbzb7fetWeO0n6K0k/4+/ZpkS+3Joz8I4VcvY9OiEBFRYISqaI2fq5sCiPtAjRDOzVYG8m+Q==", "dev": true, "license": "MIT", + "peer": true, "dependencies": { "@octokit/auth-token": "^6.0.0", "@octokit/graphql": "^9.0.2", @@ -3892,6 +3898,7 @@ "integrity": "sha512-3giAOQvZiH5F9bMlMiv8+GSPMeqg0dbaeo58/0SlA9sxSqZhnUtxzX9/2FzyhS9sWQf5S0GJE0AKBrFqjpeYcg==", "dev": true, "license": "Apache-2.0", + "peer": true, "engines": { "node": ">=8.0.0" } @@ -3915,6 +3922,7 @@ "integrity": "sha512-s5vvxXPVdjqS3kTLKMeBMvop9hbWkwzBpu+mUO2M7sZtlkyDJGwFe33wRKnbaYDo8ExRVBIIdwIGrqpxHuKttA==", "dev": true, "license": "Apache-2.0", + "peer": true, "engines": { "node": ">=14" }, @@ -3928,6 +3936,7 @@ "integrity": "sha512-OOCM2C/QIURhJMuKaekP3TRBxBKxG/TWWA0TL2J6nXUtDnuCtccy49LUJF8xPFXMX+0LMcxFpCo8M9cGY1W6rQ==", "dev": true, "license": "Apache-2.0", + "peer": true, "dependencies": { "@opentelemetry/semantic-conventions": "1.28.0" }, @@ -4410,6 +4419,7 @@ "integrity": "sha512-5UxZqiAgLYGFjS4s9qm5mBVo433u+dSPUFWVWXmLAD4wB65oMCoXaJP1KJa9DIYYMeHu3z4BZcStG3LC593cWA==", "dev": true, "license": "Apache-2.0", + "peer": true, "dependencies": { "@opentelemetry/core": "1.30.1", "@opentelemetry/semantic-conventions": "1.28.0" @@ -4437,6 +4447,7 @@ "integrity": "sha512-jVPgBbH1gCy2Lb7X0AVQ8XAfgg0pJ4nvl8/IiQA6nxOsPvS+0zMJaFSs2ltXe0J6C8dqjcnpyqINDJmU30+uOg==", "dev": true, "license": "Apache-2.0", + "peer": true, "dependencies": { "@opentelemetry/core": "1.30.1", "@opentelemetry/resources": "1.30.1", @@ -4465,6 +4476,7 @@ "integrity": "sha512-JD6DerIKdJGmRp4jQyX5FlrQjA4tjOw1cvfsPAZXfOOEErMUHjPcPSICS+6WnM0nB0efSFARh0KAZss+bvExOA==", "dev": true, "license": "Apache-2.0", + "peer": true, "engines": { "node": ">=14" } @@ -6577,6 +6589,7 @@ "integrity": "sha512-8QqtOQT5ACVlmsvKOJNEaWmRPmcojMOzCz4Hs2BGG/toAp/K38LcsMRyLp349glq5AzJbCEeimEoxaX6v/fLrA==", "dev": true, "license": "MIT", + "peer": true, "dependencies": { "@babel/core": "^7.21.3", "@svgr/babel-preset": "8.1.0", @@ -6923,8 +6936,7 @@ "resolved": "https://registry.npmjs.org/@types/aria-query/-/aria-query-5.0.4.tgz", "integrity": "sha512-rfT93uj5s0PRL7EzccGMs3brplhcrghnDoV26NqKhCAS1hVo+WdNsPvE/yb6ilfr5hi2MEk6d5EWJTKdxg8jVw==", "dev": true, - "license": "MIT", - "peer": true + "license": "MIT" }, "node_modules/@types/babel__core": { "version": "7.20.5", @@ -7029,6 +7041,7 @@ "integrity": "sha512-FXx2pKgId/WyYo2jXw63kk7/+TY7u7AziEJxJAnSFzHlqTAS3Ync6SvgYAN/k4/PQpnnVuzoMuVnByKK2qp0ag==", "dev": true, "license": "MIT", + "peer": true, "dependencies": { "@types/estree": "*", "@types/json-schema": "*" @@ -7221,7 +7234,8 @@ "resolved": "https://registry.npmjs.org/@types/node/-/node-20.5.1.tgz", "integrity": "sha512-4tT2UrL5LBqDwoed9wZ6N3umC4Yhz3W3FloMmiiG4JwmUJWpie0c7lcnUNd4gtMKuDEO4wRVS8B6Xa0uMRsMKg==", "dev": true, - "license": "MIT" + "license": "MIT", + "peer": true }, "node_modules/@types/node-forge": { "version": "1.3.14", @@ -7296,6 +7310,7 @@ "integrity": "sha512-RFA/bURkcKzx/X9oumPG9Vp3D3JUgus/d0b67KB0t5S/raciymilkOa66olh78MUI92QLbEJevO7rvqU/kjwKA==", "dev": true, "license": "MIT", + "peer": true, "dependencies": { "@types/prop-types": "*", "csstype": "^3.0.2" @@ -7307,6 +7322,7 @@ "integrity": "sha512-MEe3UeoENYVFXzoXEWsvcpg6ZvlrFNlOQ7EOsvhI3CfAXwzPfO8Qwuxd40nepsYKqyyVQnTdEfv68q91yLcKrQ==", "dev": true, "license": "MIT", + "peer": true, "peerDependencies": { "@types/react": "^18.0.0" } @@ -8998,6 +9014,7 @@ "integrity": "sha512-oy9+hTPCUFpngkEZUSzbf9MxI65wbKFoQYsgPdILTfbUldp5ovUuphZVe4i30emU9M/kP+T64Di0mxl7dSw3MA==", "dev": true, "license": "MIT", + "peer": true, "dependencies": { "@eslint-community/regexpp": "^4.5.1", "@typescript-eslint/scope-manager": "6.21.0", @@ -9034,6 +9051,7 @@ "integrity": "sha512-tbsV1jPne5CkFQCgPBcDOt30ItF7aJoZL997JSF7MhGQqOeT3svWRYxiqlfA5RUdlHN6Fi+EI9bxqbdyAUZjYQ==", "dev": true, "license": "BSD-2-Clause", + "peer": true, "dependencies": { "@typescript-eslint/scope-manager": "6.21.0", "@typescript-eslint/types": "6.21.0", @@ -10396,6 +10414,7 @@ "integrity": "sha512-NZyJarBfL7nWwIq+FDL6Zp/yHEhePMNnnJ0y3qfieCrmNvYct8uvtiV41UvlSe6apAfk0fY1FbWx+NwfmpvtTg==", "dev": true, "license": "MIT", + "peer": true, "bin": { "acorn": "bin/acorn" }, @@ -10503,6 +10522,7 @@ "integrity": "sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==", "dev": true, "license": "MIT", + "peer": true, "dependencies": { "fast-deep-equal": "^3.1.3", "fast-uri": "^3.0.1", @@ -11620,6 +11640,7 @@ } ], "license": "MIT", + "peer": true, "dependencies": { "baseline-browser-mapping": "^2.8.19", "caniuse-lite": "^1.0.30001751", @@ -12912,6 +12933,7 @@ "integrity": "sha512-itvL5h8RETACmOTFc4UfIyB2RfEHi71Ax6E/PivVxq9NseKbOWpeyHEOIbmAw1rs8Ak0VursQNww7lf7YtUwzg==", "dev": true, "license": "MIT", + "peer": true, "dependencies": { "env-paths": "^2.2.1", "import-fresh": "^3.3.0", @@ -13882,7 +13904,8 @@ "resolved": "https://registry.npmjs.org/devtools-protocol/-/devtools-protocol-0.0.1507524.tgz", "integrity": "sha512-OjaNE7qpk6GRTXtqQjAE5bGx6+c4F1zZH0YXtpZQLM92HNXx4zMAaqlKhP4T52DosG6hDW8gPMNhGOF8xbwk/w==", "dev": true, - "license": "BSD-3-Clause" + "license": "BSD-3-Clause", + "peer": true }, "node_modules/diff": { "version": "4.0.2", @@ -13948,8 +13971,7 @@ "resolved": "https://registry.npmjs.org/dom-accessibility-api/-/dom-accessibility-api-0.5.16.tgz", "integrity": "sha512-X7BJ2yElsnOJ30pZF4uIIDfBEVgF4XEBxL9Bxhy6dnrm5hkzqmsWHGTiHqRiITNhMyFLyAiWndIJP7Z1NTteDg==", "dev": true, - "license": "MIT", - "peer": true + "license": "MIT" }, "node_modules/dom-serializer": { "version": "2.0.0", @@ -14772,6 +14794,7 @@ "deprecated": "This version is no longer supported. Please see https://eslint.org/version-support for other options.", "dev": true, "license": "MIT", + "peer": true, "dependencies": { "@eslint-community/eslint-utils": "^4.2.0", "@eslint-community/regexpp": "^4.6.1", @@ -14828,6 +14851,7 @@ "integrity": "sha512-82GZUjRS0p/jganf6q1rEO25VSoHH0hKPCTrgillPjdI/3bgBhAE1QzHrHTizjpRvy6pGAvKjDJtk2pF9NDq8w==", "dev": true, "license": "MIT", + "peer": true, "bin": { "eslint-config-prettier": "bin/cli.js" }, @@ -14951,6 +14975,7 @@ "integrity": "sha512-EE44T0OSMCeXhDrrdsbKAhprobKkPtJTbQz5yEktysNpHeDZTAL1SfDTNKmcFfJkY6yrQLtTKZALrD3j/Gpmiw==", "dev": true, "license": "MIT", + "peer": true, "dependencies": { "@typescript-eslint/utils": "^8.0.0" }, @@ -18765,6 +18790,7 @@ "integrity": "sha512-NIy3oAFp9shda19hy4HK0HRTWKtPJmGdnvywu01nOqNC2vZg+Z+fvJDxpMQA88eb2I9EcafcdjYgsDthnYTvGw==", "dev": true, "license": "MIT", + "peer": true, "dependencies": { "@jest/core": "^29.7.0", "@jest/types": "^29.6.3", @@ -20250,7 +20276,8 @@ "resolved": "https://registry.npmjs.org/devtools-protocol/-/devtools-protocol-0.0.1521046.tgz", "integrity": "sha512-vhE6eymDQSKWUXwwA37NtTTVEzjtGVfDr3pRbsWEQ5onH/Snp2c+2xZHWJJawG/0hCCJLRGt4xVtEVUVILol4w==", "dev": true, - "license": "BSD-3-Clause" + "license": "BSD-3-Clause", + "peer": true }, "node_modules/lighthouse/node_modules/puppeteer-core/node_modules/ws": { "version": "8.18.3", @@ -21005,7 +21032,6 @@ "integrity": "sha512-h5bgJWpxJNswbU7qCrV0tIKQCaS3blPDrqKWx+QxzuzL1zGUzij9XCWLrSLsJPu5t+eWA/ycetzYAO5IOMcWAQ==", "dev": true, "license": "MIT", - "peer": true, "bin": { "lz-string": "bin/bin.js" } @@ -21207,6 +21233,7 @@ "integrity": "sha512-8dD6FusOQSrpv9Z1rdNMdlSgQOIP880DHqnohobOmYLElGEqAL/JvxvuxZO16r4HtjTlfPRDC1hbvxC9dPN2nA==", "dev": true, "license": "MIT", + "peer": true, "bin": { "marked": "bin/marked.js" }, @@ -21665,6 +21692,7 @@ "node_modules/moment": { "version": "2.30.1", "license": "MIT", + "peer": true, "engines": { "node": "*" } @@ -21844,8 +21872,8 @@ }, "node_modules/newspack-scripts": { "version": "5.8.0", - "resolved": "git+ssh://git@github.com/Automattic/newspack-scripts.git#1b654fae0446656ac8221ae7400a42bbd80b2140", - "integrity": "sha512-NzUACVvKJJLiYXtFIHmxZNzVsqmYJmW0HuzUpNa3Y/pJEUK1QfqWk+SCACTyDx7zXoNlIvjBTbNUD6R1zSF72w==", + "resolved": "https://registry.npmjs.org/newspack-scripts/-/newspack-scripts-5.8.0.tgz", + "integrity": "sha512-INOymPHxavzLFziqa9zcfB9KRfi9w+FOwq1cNj8IKnfBSlWrYMLsw43LMgAk7wrGtv6crvHEREweHhPGWMAtGQ==", "dev": true, "license": "ISC", "dependencies": { @@ -22224,6 +22252,7 @@ "integrity": "sha512-cuXAJJB1Rdqz0UO6w524matlBqDBjcNt7Ru+RDIu4y6RI1gVqiWBnylrK8sPRk81gGBA0X8hJbDXolVOoTc+sA==", "dev": true, "license": "MIT", + "peer": true, "dependencies": { "ajv": "^6.12.6", "ajv-errors": "^1.0.1", @@ -24739,6 +24768,7 @@ "dev": true, "inBundle": true, "license": "MIT", + "peer": true, "engines": { "node": ">=12" }, @@ -25935,7 +25965,6 @@ "integrity": "sha512-aFi5B0WovBHTEvpM3DzXTUaeN6eN0qWnTkKx4NQaH4Wvcmc153PdaY2UBdSYKaGYw+UyWXSVyxDUg5DoPEttjw==", "dev": true, "license": "Apache-2.0", - "peer": true, "dependencies": { "playwright-core": "1.56.1" }, @@ -25955,7 +25984,6 @@ "integrity": "sha512-hutraynyn31F+Bifme+Ps9Vq59hKuUCz7H1kDOcBs+2oGguKkWTU50bBWrtz34OUWmIwpBTWDxaRPXrIXkgvmQ==", "dev": true, "license": "Apache-2.0", - "peer": true, "bin": { "playwright-core": "cli.js" }, @@ -25974,7 +26002,6 @@ "os": [ "darwin" ], - "peer": true, "engines": { "node": "^8.16.0 || ^10.6.0 || >=11.0.0" } @@ -26025,6 +26052,7 @@ } ], "license": "MIT", + "peer": true, "dependencies": { "nanoid": "^3.3.11", "picocolors": "^1.1.1", @@ -26831,6 +26859,7 @@ "integrity": "sha512-5SYSgFKSyhCbk6SrXyMpqjb5+MQBgfvEKE/OC+PujcY34sOpqtr+0AZQtPYx5IA6VxynQ7rUPCtKzyovpj9Bpg==", "dev": true, "license": "MIT", + "peer": true, "funding": { "type": "opencollective", "url": "https://opencollective.com/preact" @@ -26853,6 +26882,7 @@ "integrity": "sha512-X4UlrxDTH8oom9qXlcjnydsjAOD2BmB6yFmvS4Z2zdTzqqpRWb+fbqrH412+l+OUXmbzJlSXjlMFYPgYG12IAA==", "dev": true, "license": "MIT", + "peer": true, "bin": { "prettier": "bin/prettier.cjs" }, @@ -26882,7 +26912,6 @@ "integrity": "sha512-Qb1gy5OrP5+zDf2Bvnzdl3jsTf1qXVMazbvCoKhtKqVs4/YK4ozX4gKQJJVyNe+cajNPn0KoC0MC3FUmaHWEmQ==", "dev": true, "license": "MIT", - "peer": true, "dependencies": { "ansi-regex": "^5.0.1", "ansi-styles": "^5.0.0", @@ -26898,7 +26927,6 @@ "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", "dev": true, "license": "MIT", - "peer": true, "engines": { "node": ">=10" }, @@ -26911,8 +26939,7 @@ "resolved": "https://registry.npmjs.org/react-is/-/react-is-17.0.2.tgz", "integrity": "sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==", "dev": true, - "license": "MIT", - "peer": true + "license": "MIT" }, "node_modules/pretty-ms": { "version": "9.3.0", @@ -27318,6 +27345,7 @@ "node_modules/react": { "version": "18.3.1", "license": "MIT", + "peer": true, "dependencies": { "loose-envify": "^1.1.0" }, @@ -27391,6 +27419,7 @@ "integrity": "sha512-5m4nQKp+rZRb09LNH59GM4BxTh9251/ylbKIbpe7TpGxfJ+9kv6BLkLBXIjjspbgbnIBNqlI23tRnTWT0snUIw==", "dev": true, "license": "MIT", + "peer": true, "dependencies": { "loose-envify": "^1.1.0", "scheduler": "^0.23.2" @@ -27426,6 +27455,7 @@ "integrity": "sha512-jCvmsr+1IUSMUyzOkRcvnVbX3ZYC6g9TDrDbFuFmRDq7PD4yaGbLKNQL6k2jnArV8hjYxh7hVhAZB6s9HDGpZA==", "dev": true, "license": "MIT", + "peer": true, "engines": { "node": ">=0.10.0" } @@ -27866,7 +27896,8 @@ "resolved": "https://registry.npmjs.org/redux/-/redux-5.0.1.tgz", "integrity": "sha512-M9/ELqF6fy8FwmkpnF0S3YKOqMyoWJ4+CS5Efg2ct3oY9daQvd/Pc71FpGZsVsbl3Cpb+IIcjBDUnnyBdQbq4w==", "dev": true, - "license": "MIT" + "license": "MIT", + "peer": true }, "node_modules/reflect.getprototypeof": { "version": "1.0.10", @@ -28406,6 +28437,7 @@ "integrity": "sha512-t+YPtOQHpGW1QWsh1CHQ5cPIr9lbbGZLZnbihP/D/qZj/yuV68m8qarcV17nvkOX81BCrvzAlq2klCQFZghyTg==", "dev": true, "license": "MIT", + "peer": true, "dependencies": { "chokidar": "^4.0.0", "immutable": "^5.0.2", @@ -28539,6 +28571,7 @@ "integrity": "sha512-0OCYLm0AfVilNGukM+w0C4aptITfuW1Mhvmz8LQliLeYbPOTFRCIJzoltWWx/F5zVFe6np9eNatBUHdAvMFeZg==", "dev": true, "license": "MIT", + "peer": true, "dependencies": { "@semantic-release/commit-analyzer": "^13.0.1", "@semantic-release/error": "^4.0.0", @@ -30691,6 +30724,7 @@ } ], "license": "MIT", + "peer": true, "dependencies": { "@csstools/css-parser-algorithms": "^3.0.5", "@csstools/css-tokenizer": "^3.0.4", @@ -31020,6 +31054,7 @@ "integrity": "sha512-8sLjZwK0R+JlxlYcTuVnyT2v+htpdrjDOKuMcOVdYjt52Lh8hWRYpxBPoKx/Zg+bcjc3wx6fmQevMmUztS/ccA==", "dev": true, "license": "MIT", + "peer": true, "dependencies": { "cssesc": "^3.0.0", "util-deprecate": "^1.0.2" @@ -31694,6 +31729,7 @@ "integrity": "sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==", "dev": true, "license": "MIT", + "peer": true, "engines": { "node": ">=12" }, @@ -31988,6 +32024,7 @@ "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", "dev": true, "license": "(MIT OR CC0-1.0)", + "peer": true, "engines": { "node": ">=10" }, @@ -32100,6 +32137,7 @@ "integrity": "sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==", "dev": true, "license": "Apache-2.0", + "peer": true, "bin": { "tsc": "bin/tsc", "tsserver": "bin/tsserver" @@ -32387,6 +32425,7 @@ "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", "dev": true, "license": "MIT", + "peer": true, "dependencies": { "fast-deep-equal": "^3.1.1", "fast-json-stable-stringify": "^2.0.0", @@ -32709,6 +32748,7 @@ "integrity": "sha512-7h/weGm9d/ywQ6qzJ+Xy+r9n/3qgp/thalBbpOi5i223dPXKi04IBtqPN9nTd+jBc7QKfvDbaBnFipYp4sJAUQ==", "dev": true, "license": "MIT", + "peer": true, "dependencies": { "@types/eslint-scope": "^3.7.7", "@types/estree": "^1.0.8", @@ -32817,6 +32857,7 @@ "integrity": "sha512-pIDJHIEI9LR0yxHXQ+Qh95k2EvXpWzZ5l+d+jIo+RdSm9MiHfzazIxwwni/p7+x4eJZuvG1AJwgC4TNQ7NRgsg==", "dev": true, "license": "MIT", + "peer": true, "dependencies": { "@discoveryjs/json-ext": "^0.5.0", "@webpack-cli/configtest": "^2.1.1", @@ -32897,6 +32938,7 @@ "integrity": "sha512-0XavAZbNJ5sDrCbkpWL8mia0o5WPOd2YGtxrEiZkBK9FjLppIUK2TgxK6qGD2P3hUXTJNNPVibrerKcx5WkR1g==", "dev": true, "license": "MIT", + "peer": true, "dependencies": { "@types/bonjour": "^3.5.9", "@types/connect-history-api-fallback": "^1.3.5", @@ -33541,6 +33583,7 @@ "integrity": "sha512-OIDwaflOaq4wC6YlPBy2L6ceKeKuF7DeTxx+jPzv1FHn9tCZ0ZwSRnUBxD05E3yed46fv/FWJbvR+Ud7x0L7zw==", "dev": true, "license": "MIT", + "peer": true, "dependencies": { "lib0": "^0.2.99" }, diff --git a/package.json b/package.json index 66f0a5f985..88c454ead3 100644 --- a/package.json +++ b/package.json @@ -50,6 +50,6 @@ "tachyons": "^4.12.0" }, "devDependencies": { - "newspack-scripts": "github:Automattic/newspack-scripts#1b654fae0446656ac8221ae7400a42bbd80b2140" + "newspack-scripts": "^5.8.0" } } From 89461126a81c2a64310c9141f703228aa8fae01a Mon Sep 17 00:00:00 2001 From: Miguel Peixe Date: Mon, 26 Jan 2026 12:01:46 -0300 Subject: [PATCH 18/21] fix: update lock file --- package-lock.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package-lock.json b/package-lock.json index cc236aa083..23306f17db 100644 --- a/package-lock.json +++ b/package-lock.json @@ -21872,8 +21872,8 @@ }, "node_modules/newspack-scripts": { "version": "5.8.0", - "resolved": "https://registry.npmjs.org/newspack-scripts/-/newspack-scripts-5.8.0.tgz", - "integrity": "sha512-INOymPHxavzLFziqa9zcfB9KRfi9w+FOwq1cNj8IKnfBSlWrYMLsw43LMgAk7wrGtv6crvHEREweHhPGWMAtGQ==", + "resolved": "git+ssh://git@github.com/Automattic/newspack-scripts.git#1b654fae0446656ac8221ae7400a42bbd80b2140", + "integrity": "sha512-NzUACVvKJJLiYXtFIHmxZNzVsqmYJmW0HuzUpNa3Y/pJEUK1QfqWk+SCACTyDx7zXoNlIvjBTbNUD6R1zSF72w==", "dev": true, "license": "ISC", "dependencies": { From 9b5204fb87dd878e11566834cec234fb9d36b454 Mon Sep 17 00:00:00 2001 From: Miguel Peixe Date: Mon, 26 Jan 2026 12:04:22 -0300 Subject: [PATCH 19/21] Revert "Merge branch 'chore/deprecate-circle-ci' into hotfix/test-gh-action-release-workflow" This reverts commit 987fb1e5c1203b845e6aaf580cb0a521dc5a9582, reversing changes made to 24b5c0e5960d895aa188622ae7317a4e5391939b. --- .github/workflows/i18n.yml | 1 - languages/newspack-plugin.pot | 1463 +++++++++++++++++++++++++++++++-- 2 files changed, 1404 insertions(+), 60 deletions(-) diff --git a/.github/workflows/i18n.yml b/.github/workflows/i18n.yml index 9a2b50ad1d..e2d4788d21 100644 --- a/.github/workflows/i18n.yml +++ b/.github/workflows/i18n.yml @@ -4,7 +4,6 @@ on: push: branches: - trunk - - chore/deprecate-circle-ci concurrency: group: ${{ github.workflow }}-${{ github.ref }} diff --git a/languages/newspack-plugin.pot b/languages/newspack-plugin.pot index 7d96d588f8..7e2316d68e 100644 --- a/languages/newspack-plugin.pot +++ b/languages/newspack-plugin.pot @@ -3,13 +3,13 @@ msgid "" msgstr "" "Project-Id-Version: Newspack 6.29.1\n" -"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/newspack-plugin\n" +"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/project\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"POT-Creation-Date: 2026-01-23T13:58:50+00:00\n" +"POT-Creation-Date: 2026-01-22T17:22:49+00:00\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "X-Generator: WP-CLI 2.12.0\n" "X-Domain: newspack-plugin\n" @@ -219,11 +219,13 @@ msgstr "" #: includes/class-magic-link.php:1157 #: dist/blocks.js:4 +#: src/blocks/reader-registration/edit.js:204 msgid "disabled" msgstr "" #: includes/class-magic-link.php:1157 #: dist/blocks.js:4 +#: src/blocks/reader-registration/edit.js:204 msgid "enabled" msgstr "" @@ -262,6 +264,7 @@ msgstr "" #: includes/reader-activation/class-reader-activation.php:1622 #: includes/reader-activation/class-reader-activation.php:1737 #: dist/audience-wizards.26392cdd43fc5adc8774.js:16 +#: src/wizards/audience/components/prompt-action-card/index.js:137 msgid "Close" msgstr "" @@ -630,11 +633,13 @@ msgstr "" #: includes/class-plugin-manager.php:312 #: dist/billboard.js:12 +#: src/wizards/advertising/components/ad-refresh-control/index.js:129 msgid "Ad Refresh Control" msgstr "" #: includes/class-plugin-manager.php:313 #: dist/billboard.js:12 +#: src/wizards/advertising/components/ad-refresh-control/index.js:130 msgid "Enable Active View refresh for Google Ad Manager ads without needing to modify any code." msgstr "" @@ -949,6 +954,7 @@ msgstr "" #: includes/collections/class-collection-category-taxonomy.php:99 #: includes/lite-site/class-lite-site.php:121 #: dist/billboard.js:12 +#: src/wizards/advertising/components/suppression/index.js:126 msgid "Categories" msgstr "" @@ -1004,11 +1010,13 @@ msgstr "" #: includes/collections/class-collection-meta.php:123 #: dist/audience-wizards.26392cdd43fc5adc8774.js:10 +#: src/wizards/audience/components/settings-modal/index.js:134 msgid "Show" msgstr "" #: includes/collections/class-collection-meta.php:127 #: dist/audience-wizards.26392cdd43fc5adc8774.js:10 +#: src/wizards/audience/components/settings-modal/index.js:134 msgid "Hide" msgstr "" @@ -1021,7 +1029,9 @@ msgstr "" #: includes/collections/class-post-meta.php:37 #: includes/collections/class-post-type.php:73 #: includes/collections/class-query-helper.php:205 +#: src/blocks/collections/class-collections-block.php:391 #: dist/blocks.js:4 +#: src/blocks/collections/components/CollectionItem.jsx:61 msgid "Order" msgstr "" @@ -1162,6 +1172,8 @@ msgstr "" #: includes/collections/class-collection-taxonomy.php:229 #: includes/wizards/newspack/class-newspack-settings.php:118 #: dist/blocks.js:4 +#: src/blocks/collections/components/InspectorPanel.jsx:86 +#: src/blocks/collections/index.js:15 msgid "Collections" msgstr "" @@ -1228,6 +1240,7 @@ msgid "View Collections" msgstr "" #: includes/collections/class-post-type.php:104 +#: src/blocks/collections/class-collections-block.php:110 msgid "No collections found." msgstr "" @@ -1260,12 +1273,15 @@ msgid "This collection could not be saved because a collection with the same tit msgstr "" #: includes/collections/class-query-helper.php:204 +#: src/blocks/collections/class-collections-block.php:387 #: dist/blocks.js:4 +#: src/blocks/collections/components/CollectionItem.jsx:57 msgid "Subscribe" msgstr "" #. translators: %s is the volume number of a collection #: includes/collections/class-template-helper.php:253 +#: src/blocks/collections/class-collections-block.php:334 #, php-format msgctxt "collection volume number" msgid "Vol. %s" @@ -1273,6 +1289,7 @@ msgstr "" #. translators: %s is the issue number of a collection #: includes/collections/class-template-helper.php:258 +#: src/blocks/collections/class-collections-block.php:347 #, php-format msgctxt "collection issue number" msgid "No. %s" @@ -1298,6 +1315,7 @@ msgstr "" #: includes/collections/class-template-helper.php:690 #: dist/blocks.js:4 +#: src/blocks/collections/components/InspectorPanel.jsx:76 msgid "Recent" msgstr "" @@ -1331,12 +1349,15 @@ msgstr "" #: includes/content-gate/class-content-gate.php:779 #: dist/billboard.js:12 +#: src/wizards/advertising/components/suppression/index.js:78 msgid "Post Types" msgstr "" #: includes/content-gate/class-metering-countdown.php:36 #: dist/audience-wizards.26392cdd43fc5adc8774.js:24 #: dist/commons.js:15 +#: src/blocks/content-gate/countdown-box/edit.jsx:112 +#: src/wizards/audience/views/setup/countdown-banner.js:111 msgid "Subscribe now and get unlimited access." msgstr "" @@ -1344,6 +1365,8 @@ msgstr "" #: includes/content-gate/content-gifting/class-content-gifting-cta.php:137 #: dist/audience-wizards.26392cdd43fc5adc8774.js:1 #: dist/audience-wizards.26392cdd43fc5adc8774.js:24 +#: src/wizards/audience/views/setup/content-gifting.js:186 +#: src/wizards/audience/views/setup/countdown-banner.js:124 msgid "Subscribe now" msgstr "" @@ -1369,6 +1392,7 @@ msgstr "" #: includes/reader-activation/class-reader-activation.php:291 #: includes/reader-activation/class-reader-activation.php:297 #: dist/audience-wizards.26392cdd43fc5adc8774.js:1 +#: src/wizards/audience/views/setup/content-gifting.js:171 msgid "Create an account" msgstr "" @@ -1376,14 +1400,19 @@ msgstr "" #: includes/content-gate/content-gifting/class-content-gifting-cta.php:240 #: includes/plugins/woocommerce-subscriptions/class-subscriptions-tiers.php:680 #: includes/reader-activation/class-reader-activation.php:292 +#: src/blocks/reader-registration/index.php:114 #: dist/audience-wizards.26392cdd43fc5adc8774.js:1 #: dist/audience-wizards.26392cdd43fc5adc8774.js:24 #: dist/blocks.js:4 +#: src/blocks/reader-registration/edit.js:325 +#: src/wizards/audience/views/setup/content-gifting.js:173 +#: src/wizards/audience/views/setup/countdown-banner.js:112 msgid "Sign in to an existing account" msgstr "" #: includes/content-gate/content-gifting/class-content-gifting-cta.php:48 #: dist/audience-wizards.26392cdd43fc5adc8774.js:1 +#: src/wizards/audience/views/setup/content-gifting.js:165 msgid "This article has been gifted to you by someone who values great journalism." msgstr "" @@ -1400,18 +1429,24 @@ msgstr "" #: includes/content-gate/content-gifting/class-content-gifting.php:273 #: dist/audience-wizards.26392cdd43fc5adc8774.js:1 #: dist/content-gate-editor-metering.js:1 +#: src/content-gate/editor/metering-settings.js:54 +#: src/wizards/audience/views/setup/content-gifting.js:57 msgid "Day" msgstr "" #: includes/content-gate/content-gifting/class-content-gifting.php:274 #: dist/audience-wizards.26392cdd43fc5adc8774.js:1 #: dist/content-gate-editor-metering.js:1 +#: src/content-gate/editor/metering-settings.js:55 +#: src/wizards/audience/views/setup/content-gifting.js:58 msgid "Week" msgstr "" #: includes/content-gate/content-gifting/class-content-gifting.php:275 #: dist/audience-wizards.26392cdd43fc5adc8774.js:1 #: dist/content-gate-editor-metering.js:1 +#: src/content-gate/editor/metering-settings.js:56 +#: src/wizards/audience/views/setup/content-gifting.js:59 msgid "Month" msgstr "" @@ -1445,11 +1480,13 @@ msgstr[1] "" #: includes/content-gate/content-gifting/class-content-gifting.php:382 #: dist/audience-wizards.26392cdd43fc5adc8774.js:1 +#: src/wizards/audience/views/setup/content-gifting.js:80 msgid "Hours" msgstr "" #: includes/content-gate/content-gifting/class-content-gifting.php:383 #: dist/audience-wizards.26392cdd43fc5adc8774.js:1 +#: src/wizards/audience/views/setup/content-gifting.js:81 msgid "Days" msgstr "" @@ -1677,6 +1714,7 @@ msgstr "" #: includes/corrections/class-corrections.php:148 #: dist/other-scripts/corrections-modal.js:1 +#: src/other-scripts/corrections-modal/index.js:208 msgid "Add New Correction" msgstr "" @@ -1779,11 +1817,13 @@ msgstr "" #: includes/corrections/class-corrections.php:412 #: dist/other-scripts/corrections-modal.js:1 +#: src/other-scripts/corrections-modal/index.js:27 msgid "Clarification" msgstr "" #: includes/corrections/class-corrections.php:414 #: dist/other-scripts/corrections-modal.js:1 +#: src/other-scripts/corrections-modal/index.js:26 msgid "Correction" msgstr "" @@ -1809,6 +1849,7 @@ msgstr "" #: includes/corrections/class-corrections.php:519 #: dist/blocks.js:4 +#: src/blocks/collections/index.js:33 msgid "loop" msgstr "" @@ -1934,6 +1975,7 @@ msgstr "" #: includes/emails/class-emails.php:593 #: dist/other-scripts/emails.js:2 +#: src/other-scripts/emails/index.js:86 msgid "Test email was not sent." msgstr "" @@ -1957,6 +1999,16 @@ msgstr "" #: dist/other-scripts/emails.js:2 #: dist/setup.js:7 #: dist/wizards.js:1 +#: src/blocks/avatar/edit.jsx:23 +#: src/blocks/byline/inspector.jsx:25 +#: src/blocks/collections/components/InspectorPanel.jsx:63 +#: src/content-gate/editor/editor.js:108 +#: src/other-scripts/emails/index.js:106 +#: src/wizards/advertising/index.js:154 +#: src/wizards/advertising/views/settings/index.js:20 +#: src/wizards/audience/components/settings-modal/index.js:48 +#: src/wizards/newsletters/index.js:30 +#: src/wizards/newsletters/views/settings/index.js:393 msgid "Settings" msgstr "" @@ -2101,6 +2153,7 @@ msgid "%1$s | Details: %2$s" msgstr "" #: includes/oauth/class-google-login.php:292 +#: src/blocks/reader-registration/index.php:341 msgid "Thank you for registering!" msgstr "" @@ -2232,6 +2285,13 @@ msgstr "" #: dist/newspack-wizards.80278d14c9e76a6696a2.js:23 #: dist/newspack-wizards.80278d14c9e76a6696a2.js:24 #: dist/setup.js:7 +#: src/wizards/advertising/views/ad-unit/index.js:167 +#: src/wizards/advertising/views/ad-units/index.js:137 +#: src/wizards/advertising/views/ad-units/index.js:190 +#: src/wizards/advertising/views/placements/index.js:226 +#: src/wizards/advertising/views/providers/index.js:111 +#: src/wizards/audience/components/settings-modal/index.js:179 +#: src/wizards/audience/views/campaigns/segments/single-segment.js:255 msgid "Save" msgstr "" @@ -2841,6 +2901,7 @@ msgstr "" #: includes/plugins/woocommerce-subscriptions/class-subscriptions-tiers.php:532 #: dist/audience-wizards.26392cdd43fc5adc8774.js:7 +#: src/wizards/audience/components/settings-modal/index.js:56 msgid "Frequency" msgstr "" @@ -2879,6 +2940,15 @@ msgstr "" #: dist/newspack-wizards.80278d14c9e76a6696a2.js:19 #: dist/newspack-wizards.80278d14c9e76a6696a2.js:23 #: dist/other-scripts/corrections-modal.js:7 +#: packages/components/src/with-wizard/index.js:261 +#: src/other-scripts/corrections-modal/index.js:410 +#: src/wizards/advertising/views/ad-unit/index.js:170 +#: src/wizards/advertising/views/placements/index.js:216 +#: src/wizards/advertising/views/providers/index.js:108 +#: src/wizards/audience/components/prompt-action-card/index.js:165 +#: src/wizards/audience/components/settings-modal/index.js:176 +#: src/wizards/audience/views/campaigns/campaigns/index.js:291 +#: src/wizards/audience/views/campaigns/segments/single-segment.js:258 msgid "Cancel" msgstr "" @@ -2984,6 +3054,9 @@ msgstr "" #: dist/commons.js:10 #: dist/newspack-wizards.80278d14c9e76a6696a2.js:7 #: dist/other-scripts/nextdoor.js:1 +#: packages/components/src/image-upload/index.js:98 +#: packages/components/src/sortable-newsletter-list-control/index.js:59 +#: src/other-scripts/nextdoor/index.js:257 msgid "Remove" msgstr "" @@ -3032,6 +3105,7 @@ msgstr "" #: includes/plugins/woocommerce/class-woocommerce-connection.php:509 #: includes/reader-activation/class-reader-activation.php:305 +#: src/blocks/reader-registration/index.php:106 msgid "My Account" msgstr "" @@ -3097,6 +3171,9 @@ msgstr "" #: dist/commons.js:10 #: dist/componentsDemo.js:1 #: dist/handoff-banner.js:1 +#: packages/components/src/handoff/index.js:58 +#: src/wizards/componentsDemo/index.js:265 +#: src/wizards/handoff-banner/index.js:22 msgid "Dismiss" msgstr "" @@ -3188,6 +3265,15 @@ msgstr "" #: dist/newspack-wizards.80278d14c9e76a6696a2.js:7 #: dist/setup.js:4 #: dist/setup.js:7 +#: src/wizards/audience/components/active-campaign.js:31 +#: src/wizards/audience/components/mailchimp.js:31 +#: src/wizards/audience/components/settings.js:42 +#: src/wizards/audience/views/setup/campaign.js:57 +#: src/wizards/audience/views/setup/complete.js:165 +#: src/wizards/audience/views/setup/content-gating.js:71 +#: src/wizards/audience/views/setup/setup.js:93 +#: src/wizards/newsletters/views/settings/index.js:169 +#: src/wizards/newsletters/views/settings/index.js:314 msgid "Something went wrong." msgstr "" @@ -3291,6 +3377,7 @@ msgstr "" #: includes/plugins/woocommerce/my-account/class-my-account-ui-v1.php:282 #: includes/wizards/newspack/class-newspack-dashboard.php:81 #: dist/audience-wizards.26392cdd43fc5adc8774.js:18 +#: src/wizards/audience/views/campaigns/segments/single-segment.js:208 msgid "Newsletters" msgstr "" @@ -3323,6 +3410,7 @@ msgstr "" #: includes/reader-activation/class-reader-activation.php:286 #: includes/reader-activation/class-reader-activation.php:314 #: dist/audience-wizards.26392cdd43fc5adc8774.js:43 +#: src/wizards/audience/views/setup/campaign.js:86 msgid "Continue" msgstr "" @@ -3659,6 +3747,8 @@ msgstr "" #: includes/plugins/woocommerce/my-account/templates/v1/my-subscriptions.php:35 #: dist/audience-wizards.26392cdd43fc5adc8774.js:1 #: dist/audience-wizards.26392cdd43fc5adc8774.js:24 +#: src/wizards/audience/views/setup/content-gifting.js:130 +#: src/wizards/audience/views/setup/countdown-banner.js:70 msgid "Product" msgstr "" @@ -3753,6 +3843,10 @@ msgstr "" #: dist/newspack-wizards.80278d14c9e76a6696a2.js:23 #: dist/newspack-wizards.80278d14c9e76a6696a2.js:24 #: dist/setup.js:7 +#: src/wizards/componentsDemo/index.js:606 +#: src/wizards/componentsDemo/index.js:612 +#: src/wizards/componentsDemo/index.js:628 +#: src/wizards/componentsDemo/index.js:646 msgid "Default" msgstr "" @@ -3778,6 +3872,12 @@ msgstr "" #: dist/newspack-wizards.80278d14c9e76a6696a2.js:1 #: dist/newspack-wizards.80278d14c9e76a6696a2.js:7 #: dist/setup.js:7 +#: src/wizards/advertising/views/ad-units/options-popover.js:37 +#: src/wizards/audience/components/prompt-action-card/index.js:140 +#: src/wizards/audience/components/prompt-popovers/primary.js:64 +#: src/wizards/audience/views/campaigns/segments/segments-list.js:82 +#: src/wizards/componentsDemo/index.js:314 +#: src/wizards/newsletters/views/settings/index.js:360 msgid "Edit" msgstr "" @@ -3998,6 +4098,7 @@ msgstr "" #: includes/reader-activation/class-reader-activation.php:293 #: dist/other-scripts/corrections-modal.js:7 +#: src/other-scripts/corrections-modal/index.js:375 msgid "Go back" msgstr "" @@ -4006,7 +4107,9 @@ msgid "Set a password (optional)" msgstr "" #: includes/reader-activation/class-reader-activation.php:298 +#: src/blocks/reader-registration/index.php:100 #: dist/blocks.js:1 +#: src/blocks/reader-registration/edit.js:70 msgid "Success! Your account was created and you’re signed in." msgstr "" @@ -4031,7 +4134,9 @@ msgid "Sign In" msgstr "" #: includes/reader-activation/class-reader-activation.php:308 +#: src/blocks/reader-registration/index.php:113 #: dist/blocks.js:4 +#: src/blocks/reader-registration/edit.js:270 msgid "Subscribe to our newsletter" msgstr "" @@ -4154,6 +4259,7 @@ msgstr "" #: includes/reader-activation/class-reader-activation.php:923 #: dist/audience-wizards.26392cdd43fc5adc8774.js:18 +#: src/wizards/audience/views/campaigns/segments/single-segment.js:222 msgid "Reader Revenue" msgstr "" @@ -4221,15 +4327,18 @@ msgstr "" #: includes/reader-activation/class-reader-activation.php:1957 #: dist/blocks.js:4 +#: src/blocks/reader-registration/edit.js:295 msgid "Sign in with Google" msgstr "" #: includes/reader-activation/class-reader-activation.php:1960 #: dist/blocks.js:4 +#: src/blocks/reader-registration/edit.js:297 msgid "Or" msgstr "" #: includes/reader-activation/class-reader-activation.php:2042 +#: src/blocks/reader-registration/index.php:415 msgid "You must enter a valid email address." msgstr "" @@ -4240,6 +4349,7 @@ msgstr "" #: includes/reader-activation/class-reader-activation.php:2053 #: includes/reader-activation/class-reader-activation.php:2119 +#: src/blocks/reader-registration/index.php:115 msgid "An account was already registered with this email. Please check your inbox for an authentication link." msgstr "" @@ -4366,6 +4476,7 @@ msgstr "" #: includes/reader-activation/sync/class-esp-sync.php:261 #: dist/other-scripts/salesforce.js:1 +#: src/other-scripts/salesforce/index.js:30 msgid "Synced" msgstr "" @@ -4481,6 +4592,9 @@ msgstr "" #: includes/templates/corrections/corrections-archive.php:16 #: dist/blocks.js:1 #: dist/other-scripts/corrections-modal.js:1 +#: src/blocks/correction-item/index.js:22 +#: src/other-scripts/corrections-modal/index.js:192 +#: src/other-scripts/corrections-modal/index.js:208 msgid "Corrections & Clarifications" msgstr "" @@ -4714,6 +4828,7 @@ msgstr "" #: includes/templates/collections/archive-newspack-collection.php:59 #: includes/templates/collections/archive-newspack-collection.php:74 #: dist/commons.js:10 +#: src/blocks/correction-box/edit.jsx:68 msgid "All" msgstr "" @@ -5023,6 +5138,9 @@ msgstr "" #: includes/wizards/advertising/class-advertising-display-ads.php:692 #: dist/billboard.js:12 +#: src/wizards/advertising/index.js:168 +#: src/wizards/advertising/index.js:179 +#: src/wizards/advertising/index.js:185 msgid "Advertising / Display Ads" msgstr "" @@ -5046,6 +5164,7 @@ msgstr "" #: includes/wizards/audience/class-audience-campaigns.php:50 #: dist/audience-wizards.26392cdd43fc5adc8774.js:18 +#: src/wizards/audience/views/campaigns/index.js:30 msgid "Audience Management / Campaigns" msgstr "" @@ -5053,16 +5172,22 @@ msgstr "" #: includes/wizards/newspack/class-newspack-dashboard.php:58 #: dist/audience-wizards.26392cdd43fc5adc8774.js:7 #: dist/audience-wizards.26392cdd43fc5adc8774.js:18 +#: src/wizards/audience/components/settings-modal/index.js:31 +#: src/wizards/audience/components/settings-modal/index.js:41 +#: src/wizards/audience/views/campaigns/campaigns/index.js:172 +#: src/wizards/audience/views/campaigns/campaigns/index.js:203 msgid "Campaigns" msgstr "" #: includes/wizards/audience/class-audience-content-gates.php:77 #: dist/audience-wizards.26392cdd43fc5adc8774.js:1 +#: src/wizards/audience/views/content-gates/index.js:28 msgid "Audience Management / Content Gates" msgstr "" #: includes/wizards/audience/class-audience-content-gates.php:130 #: dist/audience-wizards.26392cdd43fc5adc8774.js:1 +#: src/wizards/audience/views/content-gates/index.js:32 msgid "Content Gates" msgstr "" @@ -5100,6 +5225,7 @@ msgstr "" #: includes/wizards/audience/class-audience-donations.php:46 #: dist/audience-wizards.26392cdd43fc5adc8774.js:24 +#: src/wizards/audience/views/donations/index.js:34 msgid "Audience Management / Donations" msgstr "" @@ -5141,11 +5267,14 @@ msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:21 #: dist/audience-wizards.26392cdd43fc5adc8774.js:24 #: dist/audience-wizards.26392cdd43fc5adc8774.js:46 +#: src/wizards/audience/views/donations/index.js:26 +#: src/wizards/audience/views/setup/index.js:101 msgid "Configuration" msgstr "" #: includes/wizards/audience/class-audience-wizard.php:151 #: dist/audience-wizards.26392cdd43fc5adc8774.js:46 +#: src/wizards/audience/views/setup/index.js:101 msgid "Setup" msgstr "" @@ -5247,6 +5376,7 @@ msgstr "" #: includes/wizards/class-newsletters-wizard.php:71 #: dist/newsletters.js:4 +#: src/wizards/newsletters/index.js:46 msgid "Newsletters / Settings" msgstr "" @@ -5295,6 +5425,8 @@ msgstr "" #: includes/wizards/newspack/class-newspack-dashboard.php:260 #: dist/audience-wizards.26392cdd43fc5adc8774.js:37 #: dist/audience-wizards.26392cdd43fc5adc8774.js:46 +#: src/wizards/audience/views/setup/index.js:136 +#: src/wizards/audience/views/setup/setup.js:80 msgid "Audience Management" msgstr "" @@ -5432,6 +5564,7 @@ msgstr "" #: includes/wizards/newspack/class-newspack-dashboard.php:263 #: dist/componentsDemo.js:1 +#: src/wizards/componentsDemo/index.js:616 msgid "Disabled" msgstr "" @@ -5441,6 +5574,7 @@ msgstr "" #: includes/wizards/newspack/class-newspack-dashboard.php:275 #: dist/billboard.js:1 +#: src/wizards/advertising/views/providers/index.js:72 msgid "Google Ad Manager" msgstr "" @@ -5495,6 +5629,7 @@ msgstr "" #: dist/componentsDemo.js:1 #: dist/newspack-wizards.80278d14c9e76a6696a2.js:24 #: dist/setup.js:7 +#: src/wizards/componentsDemo/index.js:657 msgid "Theme and Brand" msgstr "" @@ -5528,6 +5663,102 @@ msgstr "" msgid "Loading..." msgstr "" +#: src/blocks/avatar/class-avatar-block.php:39 +msgid "Stacked" +msgstr "" + +#: src/blocks/byline/class-byline-block.php:252 +msgid "By" +msgstr "" + +#: src/blocks/byline/class-byline-block.php:274 +#: dist/blocks.js:4 +#: src/blocks/byline/utils.js:117 +msgctxt "post author separator" +msgid " and " +msgstr "" + +#. translators: 1: current number of metered views, 2: total metered views. +#: src/blocks/content-gate/countdown/class-content-gate-countdown-block.php:76 +#: dist/blocks.js:4 +#: dist/content-gate-countdown-block.js:1 +#: src/blocks/content-gate/countdown/edit.jsx:28 +#: src/blocks/content-gate/countdown/view.js:32 +#, php-format,js-format +msgid "%1$d/%2$d" +msgstr "" + +#: src/blocks/contribution-meter/meters/class-circular-meter.php:56 +#: dist/contribution-meter-block.js:4 +#: src/blocks/contribution-meter/components/CircularMeter.jsx:77 +msgid "Contribution progress indicator" +msgstr "" + +#: src/blocks/contribution-meter/meters/class-circular-meter.php:57 +#: dist/contribution-meter-block.js:4 +#: dist/contribution-meter-block.js:5 +#: src/blocks/contribution-meter/components/CircularMeter.jsx:79 +#: src/blocks/contribution-meter/index.js:16 +msgid "Contribution Meter" +msgstr "" + +#. translators: 1: percentage, 2: formatted goal amount +#: src/blocks/contribution-meter/meters/class-circular-meter.php:63 +#: dist/contribution-meter-block.js:5 +#: src/blocks/contribution-meter/components/CircularMeter.jsx:83 +#, php-format,js-format +msgid "%1$s%% progress toward %2$s goal" +msgstr "" + +#: src/blocks/contribution-meter/meters/class-circular-meter.php:106 +#: dist/contribution-meter-block.js:5 +#: src/blocks/contribution-meter/components/CircularMeter.jsx:120 +msgid "raised" +msgstr "" + +#: src/blocks/contribution-meter/meters/class-circular-meter.php:111 +#: dist/contribution-meter-block.js:5 +#: src/blocks/contribution-meter/components/CircularMeter.jsx:131 +#: src/blocks/contribution-meter/index.js:33 +msgid "goal" +msgstr "" + +#. translators: 1: amount raised, 2: goal amount +#: src/blocks/contribution-meter/meters/class-linear-meter.php:68 +#: dist/contribution-meter-block.js:2 +#: src/blocks/contribution-meter/components/LinearMeter.jsx:56 +#, php-format,js-format +msgid "%1$s raised of %2$s goal" +msgstr "" + +#. translators: %s: amount raised +#: src/blocks/contribution-meter/meters/class-linear-meter.php:84 +#: dist/contribution-meter-block.js:3 +#: src/blocks/contribution-meter/components/LinearMeter.jsx:68 +#, php-format,js-format +msgid "%s raised" +msgstr "" + +#. translators: %s: goal amount +#: src/blocks/contribution-meter/meters/class-linear-meter.php:99 +#: dist/contribution-meter-block.js:4 +#: src/blocks/contribution-meter/components/LinearMeter.jsx:79 +#, php-format,js-format +msgid "%s goal" +msgstr "" + +#. Translators: %s is a link to My Account. +#: src/blocks/reader-registration/index.php:105 +#, php-format +msgid "Please visit %s to verify and manage your account." +msgstr "" + +#: src/blocks/reader-registration/index.php:112 +#: dist/blocks.js:4 +#: src/blocks/reader-registration/edit.js:306 +msgid "Sign up" +msgstr "" + #: dist/audience-wizards.26392cdd43fc5adc8774.js:1 msgid "(no name)" msgstr "" @@ -5554,6 +5785,7 @@ msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:1 #: dist/content-gate-editor-metering.js:1 +#: src/content-gate/editor/metering-settings.js:19 msgid "Metering" msgstr "" @@ -5626,6 +5858,8 @@ msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:43 #: dist/bylines.js:1 #: dist/other-scripts/nextdoor.js:1 +#: src/bylines/index.js:423 +#: src/other-scripts/nextdoor/index.js:247 msgid "Update" msgstr "" @@ -5638,10 +5872,12 @@ msgid "Unpublish" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:1 +#: src/wizards/audience/components/prompt-popovers/primary.js:46 msgid "Restore" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:1 +#: src/wizards/audience/components/prompt-popovers/primary.js:49 msgid "Delete permanently" msgstr "" @@ -5651,11 +5887,20 @@ msgstr "" #: dist/componentsDemo.js:1 #: dist/newspack-wizards.80278d14c9e76a6696a2.js:1 #: dist/other-scripts/corrections-modal.js:1 +#: src/other-scripts/corrections-modal/index.js:300 +#: src/wizards/advertising/views/ad-unit/index.js:155 +#: src/wizards/audience/components/campaign-management-popover/index.js:104 +#: src/wizards/audience/components/prompt-popovers/primary.js:79 +#: src/wizards/audience/views/campaigns/segments/segments-list.js:85 +#: src/wizards/componentsDemo/index.js:315 +#: src/wizards/componentsDemo/index.js:363 msgid "Delete" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:1 #: dist/componentsDemo.js:1 +#: src/wizards/componentsDemo/index.js:357 +#: src/wizards/componentsDemo/index.js:362 msgid "Active" msgstr "" @@ -5668,6 +5913,7 @@ msgid "Pending Review" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:1 +#: src/wizards/audience/views/campaigns/utils.js:137 msgid "Scheduled" msgstr "" @@ -5677,6 +5923,7 @@ msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:1 #: dist/audience-wizards.26392cdd43fc5adc8774.js:18 +#: src/wizards/audience/views/campaigns/campaigns/index.js:158 msgid "Trash" msgstr "" @@ -5692,6 +5939,7 @@ msgstr "" #: dist/billboard.js:12 #: dist/newspack-wizards.80278d14c9e76a6696a2.js:1 #: dist/newspack-wizards.80278d14c9e76a6696a2.js:23 +#: src/wizards/advertising/views/ad-unit/index.js:79 msgid "Name" msgstr "" @@ -5706,144 +5954,197 @@ msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:1 #: dist/audience-wizards.26392cdd43fc5adc8774.js:43 #: dist/audience-wizards.26392cdd43fc5adc8774.js:46 +#: src/wizards/audience/views/content-gates/index.js:26 +#: src/wizards/audience/views/setup/content-gating.js:61 +#: src/wizards/audience/views/setup/index.js:106 msgid "Content Gating" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:1 +#: src/wizards/audience/views/content-gates/index.js:27 msgid "Configure content gating logic and appearance." msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:1 +#: src/wizards/audience/views/content-gates/index.js:37 +#: src/wizards/audience/views/setup/content-gifting.js:26 msgid "Content Gifting" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:1 #: dist/audience-wizards.26392cdd43fc5adc8774.js:24 +#: src/wizards/audience/views/content-gates/index.js:42 +#: src/wizards/audience/views/setup/countdown-banner.js:21 msgid "Metered Countdown" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:1 +#: src/wizards/audience/views/setup/content-gifting.js:28 msgid "Allow members to gift articles up to the configured limit." msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:1 #: dist/commons.js:10 +#: packages/components/src/plugin-settings/index.js:201 +#: src/wizards/audience/views/setup/content-gifting.js:40 msgid "General Settings" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:1 +#: src/wizards/audience/views/setup/content-gifting.js:43 msgid "Gifting limit" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:1 +#: src/wizards/audience/views/setup/content-gifting.js:44 msgid "Maximum number of articles that can be gifted per user for the configured interval." msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:1 +#: src/wizards/audience/views/setup/content-gifting.js:52 msgid "Gifting limit interval" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:1 +#: src/wizards/audience/views/setup/content-gifting.js:53 msgid "Interval at which the gifting limit is reset." msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:1 +#: src/wizards/audience/views/setup/content-gifting.js:64 msgid "Article link expiration time" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:1 +#: src/wizards/audience/views/setup/content-gifting.js:65 msgid "Time after which the article link expires." msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:1 +#: src/wizards/audience/views/setup/content-gifting.js:73 msgid "Article link expiration time unit" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:1 +#: src/wizards/audience/views/setup/content-gifting.js:74 msgid "Unit of time for the article link expiration time." msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:1 +#: src/wizards/audience/views/setup/content-gifting.js:91 msgid "Recipient Banner" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:1 #: dist/audience-wizards.26392cdd43fc5adc8774.js:24 +#: src/wizards/audience/views/setup/content-gifting.js:94 +#: src/wizards/audience/views/setup/countdown-banner.js:34 msgid "Message" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:1 +#: src/wizards/audience/views/setup/content-gifting.js:95 msgid "Text displayed in the banner shown to recipients of gifted articles." msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:1 #: dist/audience-wizards.26392cdd43fc5adc8774.js:24 +#: src/wizards/audience/views/setup/content-gifting.js:101 +#: src/wizards/audience/views/setup/countdown-banner.js:41 msgid "Subscribe button label" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:1 #: dist/audience-wizards.26392cdd43fc5adc8774.js:24 +#: src/wizards/audience/views/setup/content-gifting.js:102 +#: src/wizards/audience/views/setup/countdown-banner.js:42 msgid "Text displayed on the subscribe button in the banner." msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:1 #: dist/audience-wizards.26392cdd43fc5adc8774.js:24 +#: src/wizards/audience/views/setup/content-gifting.js:110 +#: src/wizards/audience/views/setup/countdown-banner.js:50 msgid "Style" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:1 #: dist/audience-wizards.26392cdd43fc5adc8774.js:24 +#: src/wizards/audience/views/setup/content-gifting.js:116 +#: src/wizards/audience/views/setup/countdown-banner.js:56 msgid "Light" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:1 #: dist/audience-wizards.26392cdd43fc5adc8774.js:24 +#: src/wizards/audience/views/setup/content-gifting.js:117 +#: src/wizards/audience/views/setup/countdown-banner.js:57 msgid "Dark" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:1 #: dist/audience-wizards.26392cdd43fc5adc8774.js:24 +#: src/wizards/audience/views/setup/content-gifting.js:120 +#: src/wizards/audience/views/setup/countdown-banner.js:60 msgid "Subscribe button action" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:1 #: dist/audience-wizards.26392cdd43fc5adc8774.js:24 +#: src/wizards/audience/views/setup/content-gifting.js:121 +#: src/wizards/audience/views/setup/countdown-banner.js:61 msgid "Whether the subscribe button should start a product checkout or redirect to a landing page." msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:1 #: dist/audience-wizards.26392cdd43fc5adc8774.js:24 +#: src/wizards/audience/views/setup/content-gifting.js:131 +#: src/wizards/audience/views/setup/countdown-banner.js:71 msgid "Landing page" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:1 #: dist/audience-wizards.26392cdd43fc5adc8774.js:24 +#: src/wizards/audience/views/setup/content-gifting.js:135 +#: src/wizards/audience/views/setup/countdown-banner.js:75 msgid "Subscribe button product" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:1 #: dist/audience-wizards.26392cdd43fc5adc8774.js:24 +#: src/wizards/audience/views/setup/content-gifting.js:136 +#: src/wizards/audience/views/setup/countdown-banner.js:76 msgid "Product linked to the subscribe button." msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:1 #: dist/audience-wizards.26392cdd43fc5adc8774.js:24 +#: src/wizards/audience/views/setup/content-gifting.js:137 +#: src/wizards/audience/views/setup/countdown-banner.js:77 msgid "Select a product" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:1 #: dist/audience-wizards.26392cdd43fc5adc8774.js:24 +#: src/wizards/audience/views/setup/content-gifting.js:148 +#: src/wizards/audience/views/setup/countdown-banner.js:88 msgid "Subscribe button URL" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:1 #: dist/audience-wizards.26392cdd43fc5adc8774.js:24 +#: src/wizards/audience/views/setup/content-gifting.js:149 +#: src/wizards/audience/views/setup/countdown-banner.js:89 msgid "URL for the landing page to redirect to." msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:1 #: dist/audience-wizards.26392cdd43fc5adc8774.js:24 #: dist/commons.js:10 +#: packages/components/src/web-preview/index.js:224 +#: src/wizards/audience/components/prompt-popovers/primary.js:61 +#: src/wizards/audience/views/setup/content-gifting.js:156 +#: src/wizards/audience/views/setup/countdown-banner.js:96 msgid "Preview" msgstr "" @@ -5857,6 +6158,12 @@ msgstr "" #: dist/newspack-wizards.80278d14c9e76a6696a2.js:22 #: dist/newspack-wizards.80278d14c9e76a6696a2.js:24 #: dist/setup.js:4 +#: src/wizards/advertising/components/suppression/index.js:69 +#: src/wizards/audience/components/cover-fees-settings/index.js:96 +#: src/wizards/audience/views/setup/content-gifting.js:198 +#: src/wizards/audience/views/setup/countdown-banner.js:136 +#: src/wizards/audience/views/setup/setup.js:309 +#: src/wizards/newsletters/views/settings/index.js:174 msgid "Save Settings" msgstr "" @@ -5864,254 +6171,334 @@ msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:18 #: dist/billboard.js:12 #: dist/newspack-wizards.80278d14c9e76a6696a2.js:1 +#: src/wizards/advertising/views/ad-units/options-popover.js:34 +#: src/wizards/audience/components/campaign-management-popover/index.js:32 +#: src/wizards/audience/components/prompt-popovers/primary.js:41 +#: src/wizards/audience/views/campaigns/segments/segments-list.js:79 msgid "Close Popover" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:1 +#: src/wizards/audience/components/campaign-management-popover/index.js:43 msgid "Activate all prompts" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:1 +#: src/wizards/audience/components/campaign-management-popover/index.js:54 msgid "Deactivate all prompts" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:1 #: dist/audience-wizards.26392cdd43fc5adc8774.js:16 #: dist/audience-wizards.26392cdd43fc5adc8774.js:18 +#: src/wizards/audience/components/campaign-management-popover/index.js:64 +#: src/wizards/audience/components/prompt-action-card/index.js:175 +#: src/wizards/audience/components/prompt-popovers/primary.js:67 +#: src/wizards/audience/views/campaigns/campaigns/index.js:49 +#: src/wizards/audience/views/campaigns/segments/segments-list.js:59 msgid "Duplicate" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:1 #: dist/audience-wizards.26392cdd43fc5adc8774.js:18 +#: src/wizards/audience/components/campaign-management-popover/index.js:73 +#: src/wizards/audience/views/campaigns/campaigns/index.js:47 msgid "Rename" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:1 #: dist/billboard.js:12 +#: src/wizards/advertising/views/ad-units/options-popover.js:40 +#: src/wizards/audience/components/campaign-management-popover/index.js:83 msgid "Archive" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:1 +#: src/wizards/audience/components/campaign-management-popover/index.js:94 msgid "Unarchive" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:1 +#: src/wizards/audience/components/prompt-popovers/primary.js:76 msgid "Deactivate" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:1 #: dist/commons.js:10 +#: packages/components/src/plugin-installer/index.js:169 +#: packages/components/src/plugin-installer/index.js:214 +#: src/wizards/audience/components/prompt-popovers/primary.js:76 msgid "Activate" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:1 +#: src/wizards/audience/components/prompt-popovers/primary.js:84 msgid "ID:" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:1 #: dist/audience-wizards.26392cdd43fc5adc8774.js:18 +#: src/wizards/audience/components/segment-group/index.js:116 +#: src/wizards/audience/views/campaigns/utils.js:53 msgid "Top Overlay" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:1 +#: src/wizards/audience/views/campaigns/utils.js:54 msgid "Top Left Overlay" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:1 +#: src/wizards/audience/views/campaigns/utils.js:55 msgid "Top Right Overlay" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:1 #: dist/audience-wizards.26392cdd43fc5adc8774.js:18 +#: src/wizards/audience/components/segment-group/index.js:110 +#: src/wizards/audience/views/campaigns/utils.js:56 msgid "Center Overlay" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:1 +#: src/wizards/audience/views/campaigns/utils.js:57 msgid "Center Left Overlay" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:1 +#: src/wizards/audience/views/campaigns/utils.js:58 msgid "Center Right Overlay" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:1 #: dist/audience-wizards.26392cdd43fc5adc8774.js:18 +#: src/wizards/audience/components/segment-group/index.js:122 +#: src/wizards/audience/views/campaigns/utils.js:59 msgid "Bottom Overlay" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:1 +#: src/wizards/audience/views/campaigns/utils.js:60 msgid "Bottom Left Overlay" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:1 +#: src/wizards/audience/views/campaigns/utils.js:61 msgid "Bottom Right Overlay" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:1 #: dist/audience-wizards.26392cdd43fc5adc8774.js:18 #: dist/content-gate-editor.js:25 +#: src/content-gate/editor/editor.js:20 +#: src/wizards/audience/components/segment-group/index.js:128 +#: src/wizards/audience/views/campaigns/utils.js:62 msgid "Inline" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:1 +#: src/wizards/audience/views/campaigns/utils.js:63 msgid "In archive pages" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:1 #: dist/audience-wizards.26392cdd43fc5adc8774.js:18 +#: src/wizards/audience/components/segment-group/index.js:140 +#: src/wizards/audience/views/campaigns/utils.js:64 msgid "Above Header" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:1 #: dist/audience-wizards.26392cdd43fc5adc8774.js:18 +#: src/wizards/audience/components/segment-group/index.js:152 +#: src/wizards/audience/views/campaigns/utils.js:65 msgid "Manual Only" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:1 #: dist/audience-wizards.26392cdd43fc5adc8774.js:18 +#: src/wizards/audience/components/segment-group/index.js:146 +#: src/wizards/audience/views/campaigns/utils.js:71 msgid "Custom Placement" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:1 +#: src/wizards/audience/views/campaigns/utils.js:96 msgid "Once a month" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:1 +#: src/wizards/audience/views/campaigns/utils.js:97 msgid "Once a week" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:1 +#: src/wizards/audience/views/campaigns/utils.js:98 msgid "Once a day" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:1 +#: src/wizards/audience/views/campaigns/utils.js:99 msgid "Every pageview" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:1 +#: src/wizards/audience/views/campaigns/utils.js:100 msgid "Custom frequency (edit prompt to manage)" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:1 +#: src/wizards/audience/views/campaigns/utils.js:124 msgid "Campaign: " msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:1 +#: src/wizards/audience/views/campaigns/utils.js:124 msgid "Campaigns: " msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:1 +#: src/wizards/audience/views/campaigns/utils.js:128 msgid "Categories: " msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:1 +#: src/wizards/audience/views/campaigns/utils.js:131 msgid "Tags: " msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:1 +#: src/wizards/audience/views/campaigns/utils.js:134 msgid "Pending review" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:1 +#: src/wizards/audience/views/campaigns/utils.js:139 msgid "Frequency: " msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:1 +#: src/wizards/audience/views/campaigns/utils.js:148 msgid "Segment disabled" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:1 +#: src/wizards/audience/views/campaigns/utils.js:228 msgid "Favorite Categories:" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:1 +#: src/wizards/audience/views/campaigns/utils.js:288 msgid "Subscribed to:" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:1 +#: src/wizards/audience/views/campaigns/utils.js:288 msgid "Not subscribed to:" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:1 #: dist/audience-wizards.26392cdd43fc5adc8774.js:18 +#: src/wizards/audience/views/campaigns/segments/single-segment.js:295 +#: src/wizards/audience/views/campaigns/utils.js:292 msgid "Deleted list" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:1 +#: src/wizards/audience/views/campaigns/utils.js:309 msgid "Has active subscription(s):" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:1 +#: src/wizards/audience/views/campaigns/utils.js:310 msgid "Does not have active subscription(s):" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:1 #: dist/audience-wizards.26392cdd43fc5adc8774.js:18 +#: src/wizards/audience/views/campaigns/segments/single-segment.js:313 +#: src/wizards/audience/views/campaigns/utils.js:314 msgid "Deleted subscription" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:1 +#: src/wizards/audience/views/campaigns/utils.js:330 msgid "Has active membership(s):" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:1 +#: src/wizards/audience/views/campaigns/utils.js:331 msgid "Does not have active membership(s):" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:1 +#: src/wizards/audience/views/campaigns/utils.js:335 msgid "Deleted membership" msgstr "" #. Translators: %s is prompt type (above-header or overlay). #: dist/audience-wizards.26392cdd43fc5adc8774.js:4 +#: src/wizards/audience/views/campaigns/utils.js:356 #, js-format msgid "If multiple %s are rendered on the same pageview, only the most recent one will be displayed." msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:4 +#: src/wizards/audience/views/campaigns/utils.js:357 msgid "above-header prompts" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:4 +#: src/wizards/audience/views/campaigns/utils.js:357 msgid "overlays" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:4 +#: src/wizards/audience/views/campaigns/utils.js:362 msgid "If multiple prompts are rendered in the same custom placement, only the most recent one will be displayed." msgstr "" #. Translators: %s: 'Conflicts' or 'Conflict' depending on number of conflicts. #: dist/audience-wizards.26392cdd43fc5adc8774.js:7 +#: src/wizards/audience/views/campaigns/utils.js:398 #, js-format msgid "%s detected:" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:7 +#: src/wizards/audience/views/campaigns/utils.js:399 msgid "Conflicts" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:7 +#: src/wizards/audience/views/campaigns/utils.js:399 msgid "Conflict" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:7 +#: src/wizards/audience/components/settings-modal/index.js:27 msgid "Close Modal" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:7 +#: src/wizards/audience/components/settings-modal/index.js:32 msgid "Assign a prompt to one or more campaigns for easier management" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:7 +#: src/wizards/audience/components/settings-modal/index.js:49 msgid "When and how should the prompt be displayed" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:7 #: dist/content-gate-editor.js:25 +#: src/content-gate/editor/editor.js:94 +#: src/wizards/audience/components/settings-modal/index.js:65 msgid "Position" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:7 +#: src/wizards/audience/components/settings-modal/index.js:65 msgid "Placement" msgstr "" @@ -6119,74 +6506,98 @@ msgstr "" #: dist/billboard.js:12 #: dist/blocks.js:4 #: dist/content-gate-editor.js:25 +#: src/blocks/collections/components/InspectorPanel.jsx:182 +#: src/content-gate/editor/editor.js:88 +#: src/wizards/advertising/components/ad-unit-size-control/index.js:66 +#: src/wizards/advertising/views/ad-unit/index.js:117 +#: src/wizards/audience/components/settings-modal/index.js:75 msgid "Size" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:7 +#: src/wizards/audience/components/settings-modal/index.js:87 msgid "Targeting" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:7 +#: src/wizards/audience/components/settings-modal/index.js:90 msgid "Under which conditions should the prompt be displayed" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:7 +#: src/wizards/audience/components/settings-modal/index.js:92 msgid "If multiple conditions are set, all will have to be satisfied in order to display the prompt" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:7 +#: src/wizards/audience/components/settings-modal/index.js:108 msgid "Segments" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:7 +#: src/wizards/audience/components/settings-modal/index.js:112 msgid "Post categories" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:7 +#: src/wizards/audience/components/settings-modal/index.js:117 msgid "Prompt will only appear on posts with the specified categories." msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:7 +#: src/wizards/audience/components/settings-modal/index.js:120 msgid "Post tags" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:7 +#: src/wizards/audience/components/settings-modal/index.js:126 msgid "Prompt will only appear on posts with the specified tags." msgstr "" #. translators: %s: whether to show or hide advanced settings fields. #: dist/audience-wizards.26392cdd43fc5adc8774.js:10 +#: src/wizards/audience/components/settings-modal/index.js:133 #, js-format msgid "%s Advanced Settings" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:10 +#: src/wizards/audience/components/settings-modal/index.js:141 msgid "Category Exclusions" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:10 +#: src/wizards/audience/components/settings-modal/index.js:152 msgid "Prompt will not appear on posts with the specified categories." msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:10 +#: src/wizards/audience/components/settings-modal/index.js:155 msgid "Tag Exclusions" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:10 +#: src/wizards/audience/components/settings-modal/index.js:167 msgid "Prompt will not appear on posts with the specified tags." msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:10 +#: src/wizards/audience/components/prompt-action-card/index.js:48 msgid " copy" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:10 #: dist/commons.js:1 #: dist/commons.js:10 +#: packages/components/src/autocomplete-with-latest-posts/index.js:138 +#: packages/components/src/autocomplete-with-suggestions/index.js:99 +#: packages/components/src/autocomplete-with-suggestions/index.js:133 +#: src/wizards/audience/components/prompt-action-card/index.js:58 msgid "(no title)" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:10 +#: src/wizards/audience/components/prompt-action-card/index.js:71 msgid "Prompt settings" msgstr "" @@ -6194,253 +6605,321 @@ msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:18 #: dist/billboard.js:12 #: dist/newspack-wizards.80278d14c9e76a6696a2.js:1 +#: src/wizards/advertising/views/ad-units/options-popover.js:28 +#: src/wizards/audience/components/prompt-action-card/index.js:78 +#: src/wizards/audience/views/campaigns/segments/segments-list.js:68 msgid "More options" msgstr "" #. Translators: %s: The title of the item. #: dist/audience-wizards.26392cdd43fc5adc8774.js:13 +#: src/wizards/audience/components/prompt-action-card/index.js:107 #, js-format msgid "Duplicate “%s”" msgstr "" #. Translators: %s: The title of the item. #: dist/audience-wizards.26392cdd43fc5adc8774.js:16 +#: src/wizards/audience/components/prompt-action-card/index.js:121 #, js-format msgid "Duplicate of “%s” created as a draft." msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:16 +#: src/wizards/audience/components/prompt-action-card/index.js:126 msgid "This prompt is currently not assigned to any campaign." msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:16 +#: src/wizards/audience/components/prompt-action-card/index.js:147 msgid "This prompt will not be assigned to any campaign." msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:16 #: dist/audience-wizards.26392cdd43fc5adc8774.js:18 +#: src/wizards/audience/components/prompt-action-card/index.js:151 +#: src/wizards/audience/views/campaigns/segments/single-segment.js:164 msgid "Title" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:16 +#: src/wizards/audience/components/segment-group/index.js:45 msgid "No unassigned prompts in this segment." msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:16 +#: src/wizards/audience/components/segment-group/index.js:47 msgid "No prompts in this segment for" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:16 +#: src/wizards/audience/components/segment-group/index.js:49 msgid "No active prompts in this segment." msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:16 +#: src/wizards/audience/components/segment-group/index.js:61 msgid "Edit Segment" msgstr "" #. translators: %s: segment label #: dist/audience-wizards.26392cdd43fc5adc8774.js:17 #: dist/audience-wizards.26392cdd43fc5adc8774.js:18 +#: src/wizards/audience/components/segment-group/index.js:68 +#: src/wizards/audience/components/segment-group/index.js:91 #, js-format msgid "Segment: %s" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:17 +#: src/wizards/audience/components/segment-group/index.js:76 msgid "All readers, regardless of segment" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:17 +#: src/wizards/audience/components/segment-group/index.js:86 msgid "Preview Segment" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:18 +#: src/wizards/audience/components/segment-group/index.js:97 +#: src/wizards/audience/components/segment-group/index.js:101 msgid "Add New Prompt" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:18 +#: src/wizards/audience/components/segment-group/index.js:111 msgid "Fixed at the center of the screen" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:18 +#: src/wizards/audience/components/segment-group/index.js:117 msgid "Fixed at the top of the screen" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:18 +#: src/wizards/audience/components/segment-group/index.js:123 msgid "Fixed at the bottom of the screen" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:18 +#: src/wizards/audience/components/segment-group/index.js:129 msgid "Embedded in content" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:18 +#: src/wizards/audience/components/segment-group/index.js:134 msgid "In Archive Pages" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:18 +#: src/wizards/audience/components/segment-group/index.js:135 msgid "Embedded once or many times in archive pages" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:18 +#: src/wizards/audience/components/segment-group/index.js:141 msgid "Embedded at the very top of the page" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:18 +#: src/wizards/audience/components/segment-group/index.js:147 msgid "Only appears when placed in content" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:18 +#: src/wizards/audience/components/segment-group/index.js:153 msgid "Only appears where Single Prompt block is inserted" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:18 +#: src/wizards/audience/views/campaigns/campaigns/index.js:38 msgid "Rename Campaign" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:18 +#: src/wizards/audience/views/campaigns/campaigns/index.js:40 msgid "Duplicate Campaign" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:18 +#: src/wizards/audience/views/campaigns/campaigns/index.js:42 +#: src/wizards/audience/views/campaigns/campaigns/index.js:260 msgid "Add New Campaign" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:18 #: dist/other-scripts/corrections-modal.js:4 +#: src/other-scripts/corrections-modal/index.js:353 +#: src/wizards/audience/views/campaigns/campaigns/index.js:51 msgid "Add" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:18 +#: src/wizards/audience/views/campaigns/campaigns/index.js:89 msgid "Everyone" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:18 +#: src/wizards/audience/views/campaigns/campaigns/index.js:150 msgid "Active Prompts" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:18 +#: src/wizards/audience/views/campaigns/campaigns/index.js:154 msgid "All Prompts" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:18 +#: src/wizards/audience/views/campaigns/campaigns/index.js:164 msgid "Unassigned Prompts" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:18 +#: src/wizards/audience/views/campaigns/campaigns/index.js:186 msgid "Archived Campaigns" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:18 +#: src/wizards/audience/views/campaigns/campaigns/index.js:193 msgid "(archived)" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:18 #: dist/newspack-wizards.80278d14c9e76a6696a2.js:19 +#: src/wizards/audience/views/campaigns/campaigns/index.js:222 msgid "Actions" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:18 +#: src/wizards/audience/views/campaigns/campaigns/index.js:271 +#: src/wizards/audience/views/campaigns/campaigns/index.js:273 msgid "Campaign Name" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:18 +#: src/wizards/audience/views/campaigns/segments/segments-list.js:21 msgid "Add New Segment" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:18 +#: src/wizards/audience/views/campaigns/segments/segments-list.js:160 msgid "There was an error sorting segments. Please try again." msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:18 +#: src/wizards/audience/views/campaigns/segments/segments-list.js:176 msgid "Audience segments" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:18 +#: src/wizards/audience/views/campaigns/segments/segments-list.js:199 msgid "You have no saved audience segments." msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:18 +#: src/wizards/audience/views/campaigns/segments/segments-list.js:202 msgid "Create audience segments to target visitors by engagement, activity, and more." msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:18 +#: src/wizards/audience/views/campaigns/segments/single-segment.js:291 msgid "Start typing to search for lists…" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:18 +#: src/wizards/audience/views/campaigns/segments/single-segment.js:309 msgid "Start typing to search for products…" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:18 +#: src/wizards/audience/views/campaigns/segments/single-segment.js:327 msgid "Start typing to search for membership plans…" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:18 +#: src/wizards/audience/views/campaigns/segments/single-segment.js:331 msgid "Deleted plan" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:18 +#: src/wizards/audience/views/campaigns/segments/single-segment.js:50 msgid "There are unsaved changes to this segment. Discard changes?" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:18 +#: src/wizards/audience/views/campaigns/segments/single-segment.js:161 msgid "Untitled Segment" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:18 +#: src/wizards/audience/views/campaigns/segments/single-segment.js:169 msgid "Segment Status" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:18 +#: src/wizards/audience/views/campaigns/segments/single-segment.js:170 msgid "If not enabled, the segment will be ignored for reader segmentation." msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:18 +#: src/wizards/audience/views/campaigns/segments/single-segment.js:174 msgid "Segment enabled" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:18 +#: src/wizards/audience/views/campaigns/segments/single-segment.js:181 msgid "Reader Engagement" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:18 +#: src/wizards/audience/views/campaigns/segments/single-segment.js:182 msgid "Target readers based on their browsing behavior." msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:18 +#: src/wizards/audience/views/campaigns/segments/single-segment.js:194 msgid "Registration" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:18 +#: src/wizards/audience/views/campaigns/segments/single-segment.js:195 msgid "Target readers based on their user account registration status." msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:18 +#: src/wizards/audience/views/campaigns/segments/single-segment.js:209 msgid "Target readers based on their newsletter subscription status." msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:18 +#: src/wizards/audience/views/campaigns/segments/single-segment.js:223 msgid "Target readers based on their revenue activity." msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:18 +#: src/wizards/audience/views/campaigns/segments/single-segment.js:236 msgid "Referrer Sources" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:18 +#: src/wizards/audience/views/campaigns/segments/single-segment.js:237 msgid "Target readers based on where they’re coming from." msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:18 +#: src/wizards/audience/views/campaigns/segments/single-segment.js:238 msgid "Segments using these options will apply only to the first page visited after coming from an external source." msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:18 +#: src/wizards/audience/views/campaigns/index.js:174 msgid "Error duplicating prompt. Please try again later." msgstr "" #. translators: %s: prompt title #: dist/audience-wizards.26392cdd43fc5adc8774.js:18 +#: src/wizards/audience/views/campaigns/index.js:220 #, js-format msgid "Prompt: %s" msgstr "" @@ -6519,14 +6998,17 @@ msgid "Your donations landing page is not yet published." msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:24 +#: src/wizards/audience/views/setup/countdown-banner.js:23 msgid "Show a countdown banner before content is restricted by a metered content gate." msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:24 +#: src/wizards/audience/views/setup/countdown-banner.js:35 msgid "Text displayed in the countdown banner." msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:24 +#: src/wizards/audience/views/setup/countdown-banner.js:107 msgid "1/10 free articles this month" msgstr "" @@ -6563,6 +7045,14 @@ msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:43 #: dist/audience-wizards.26392cdd43fc5adc8774.js:46 #: dist/newspack-wizards.80278d14c9e76a6696a2.js:7 +#: src/wizards/audience/components/payment-methods/index.js:39 +#: src/wizards/audience/components/payment-methods/index.js:54 +#: src/wizards/audience/components/payment-methods/payment-gateway.js:70 +#: src/wizards/audience/components/payment-methods/stripe.js:73 +#: src/wizards/audience/components/payment-methods/woopayments.js:70 +#: src/wizards/audience/views/setup/complete.js:142 +#: src/wizards/audience/views/setup/content-gating.js:66 +#: src/wizards/audience/views/setup/setup.js:88 msgid "Learn more" msgstr "" @@ -6571,6 +7061,7 @@ msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:46 #: dist/newspack-wizards.80278d14c9e76a6696a2.js:24 #: dist/other-scripts/corrections-modal.js:7 +#: src/other-scripts/corrections-modal/index.js:391 msgid "Saving…" msgstr "" @@ -6578,6 +7069,7 @@ msgstr "" #. Translators: %s is the email service provider title #: dist/audience-wizards.26392cdd43fc5adc8774.js:28 #: dist/audience-wizards.26392cdd43fc5adc8774.js:31 +#: src/wizards/audience/components/settings.js:44 #, js-format msgid "%s settings" msgstr "" @@ -6603,204 +7095,263 @@ msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:31 #: dist/audience-wizards.26392cdd43fc5adc8774.js:43 #: dist/audience-wizards.26392cdd43fc5adc8774.js:46 +#: src/wizards/audience/views/setup/campaign.js:83 +#: src/wizards/audience/views/setup/index.js:70 msgid "Skip" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:31 +#: src/wizards/audience/components/mailchimp.js:46 +#: src/wizards/audience/components/settings.js:35 msgid "Audience ID" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:31 +#: src/wizards/audience/components/active-campaign.js:46 +#: src/wizards/audience/components/settings.js:35 msgid "Master List" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:31 +#: src/wizards/audience/components/mailchimp.js:47 +#: src/wizards/audience/components/settings.js:37 msgid "Choose an audience to receive reader activity data." msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:31 +#: src/wizards/audience/components/settings.js:38 msgid "Choose a master list to which all registered readers will be added." msgstr "" #. Translators: %s is the email service provider title #: dist/audience-wizards.26392cdd43fc5adc8774.js:31 +#: src/wizards/audience/components/settings.js:46 #, js-format msgid "Settings for the %s integration." msgstr "" #. Translators: 1 is the term used to refer to lists for a given email service provider and 2 is the email service provider title #: dist/audience-wizards.26392cdd43fc5adc8774.js:34 +#: src/wizards/audience/components/settings.js:54 #, js-format msgid "No %1$s selected. You will not be able to send reader activity data to %2$s." msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:34 +#: src/wizards/audience/components/active-campaign.js:52 +#: src/wizards/audience/components/mailchimp.js:52 +#: src/wizards/audience/components/settings.js:68 msgid "None" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:34 +#: src/wizards/audience/components/mailchimp.js:58 +#: src/wizards/audience/components/settings.js:74 msgid "Default reader status" msgstr "" #. Translators: %s is the email service provider title. #: dist/audience-wizards.26392cdd43fc5adc8774.js:37 +#: src/wizards/audience/components/settings.js:77 #, js-format msgid "Choose which %s status readers should have by default if they are not subscribed to any newsletters" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:37 +#: src/wizards/audience/components/mailchimp.js:69 +#: src/wizards/audience/components/settings.js:89 msgid "Transactional/Non-Subscribed" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:37 +#: src/wizards/audience/components/mailchimp.js:71 +#: src/wizards/audience/components/settings.js:91 msgid "Subscribed" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:37 +#: src/wizards/audience/components/metadata-fields.js:16 msgid "Metadata field settings" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:37 +#: src/wizards/audience/components/metadata-fields.js:17 msgid "Select which data to sync for each contact." msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:37 +#: src/wizards/audience/components/metadata-fields.js:20 msgid "Metadata field prefix" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:37 +#: src/wizards/audience/components/metadata-fields.js:21 msgid "A string to prefix metadata fields attached to each contact synced to the ESP. Required to ensure that metadata field names are unique. Default: NP_" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:37 +#: packages/components/src/sortable-newsletter-list-control/index.js:42 msgid "Checked by default" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:37 +#: packages/components/src/sortable-newsletter-list-control/index.js:106 msgid "Add more lists:" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:37 +#: packages/components/src/sortable-newsletter-list-control/index.js:108 msgid "Select lists:" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:37 +#: src/wizards/audience/components/salesforce/index.js:74 msgid "We couldn’t establish a connection to Salesforce. Please verify your Consumer Key and Secret and try connecting again." msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:37 +#: src/wizards/audience/components/salesforce/index.js:143 msgid "Salesforce Settings" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:37 +#: src/wizards/audience/components/salesforce/index.js:149 msgid "Your site is connected to Salesforce." msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:37 +#: src/wizards/audience/components/salesforce/index.js:152 msgid "Establish a connection to sync WooCommerce order data to Salesforce. To connect with Salesforce, create or choose a Connected App for this site in your Salesforce dashboard. Make sure to paste the full URL for this page (" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:37 +#: src/wizards/audience/components/salesforce/index.js:163 msgid "copied to clipboard!" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:37 +#: src/wizards/audience/components/salesforce/index.js:163 msgid "copy to clipboard" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:37 +#: src/wizards/audience/components/salesforce/index.js:166 msgid ") into the “Callback URL” field in the Connected App’s settings. " msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:37 +#: src/wizards/audience/components/salesforce/index.js:169 msgid "Learn how to create a Connected App" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:37 +#: src/wizards/audience/views/setup/setup.js:83 msgid "Newspack's Audience Management system is a set of features that aim to increase reader loyalty, promote engagement, and drive revenue. " msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:37 +#: src/wizards/audience/views/setup/setup.js:94 msgid "The following plugins are required." msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:37 +#: src/wizards/audience/views/setup/setup.js:96 msgid "Complete these settings to enable Audience Management." msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:37 +#: src/wizards/audience/views/setup/setup.js:99 msgid "Audience Management is enabled." msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:37 +#: src/wizards/audience/views/setup/setup.js:104 msgid "Fetching status…" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:37 +#: src/wizards/audience/views/setup/setup.js:129 msgid "Present newsletter signup after checkout and registration" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:37 +#: src/wizards/audience/views/setup/setup.js:130 msgid "Ask readers to sign up for newsletters after creating an account or completing a purchase." msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:37 +#: src/wizards/audience/views/setup/setup.js:150 msgid "Initial list size" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:37 +#: src/wizards/audience/views/setup/setup.js:151 msgid "Number of newsletters initially visible during signup. Additional newsletters will be hidden behind a \"See all\" button." msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:37 +#: src/wizards/audience/views/setup/setup.js:163 msgid "Use My Account login screen for OAuth clients" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:37 +#: src/wizards/audience/views/setup/setup.js:164 msgid "Allow OAuth clients to redirect to the My Account login screen instead of the default WordPress login screen. Might require additional configuration." msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:37 +#: src/wizards/audience/views/setup/setup.js:176 msgid "Email Service Provider (ESP) Advanced Settings" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:37 +#: src/wizards/audience/views/setup/setup.js:177 msgid "Settings for Newspack Newsletters integration." msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:37 +#: src/wizards/audience/views/setup/setup.js:180 msgid "Newsletter subscription text on registration" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:37 +#: src/wizards/audience/views/setup/setup.js:181 msgid "The text to display while subscribing to newsletters from the sign-in modal." msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:37 +#: src/wizards/audience/views/setup/setup.js:185 msgid "Configure options for syncing reader data to the connected ESP." msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:37 +#: src/wizards/audience/views/setup/setup.js:188 msgid "Sync contacts to ESP" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:37 +#: src/wizards/audience/views/setup/setup.js:240 +#: src/wizards/audience/views/setup/setup.js:247 msgid "Sync user account deletion" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:37 +#: src/wizards/audience/views/setup/setup.js:241 msgid "If enabled, the contact will be deleted from the ESP when a user account is deleted. If disabled, the contact will be unsubscribed from all lists, but not deleted." msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:37 +#: src/wizards/audience/views/setup/setup.js:267 msgid "Please select a Mailchimp Audience ID." msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:37 +#: src/wizards/audience/views/setup/setup.js:272 msgid "Please select an ActiveCampaign Master List." msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:37 +#: src/wizards/audience/views/setup/setup.js:277 msgid "Please select a Constant Contact Master List." msgstr "" @@ -6835,84 +7386,107 @@ msgid "We recommend" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:43 +#: src/wizards/audience/views/setup/campaign.js:54 msgid "Set Up Audience Management Campaign" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:43 +#: src/wizards/audience/views/setup/campaign.js:55 msgid "Preview and customize the prompts, or use our suggested defaults." msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:43 +#: src/wizards/audience/views/setup/campaign.js:61 msgid "Retrieving prompts…" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:43 #: dist/billboard.js:12 #: dist/newspack-wizards.80278d14c9e76a6696a2.js:1 +#: src/wizards/advertising/views/ad-units/index.js:106 +#: src/wizards/audience/views/setup/campaign.js:89 +#: src/wizards/audience/views/setup/complete.js:176 msgid "Back" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:43 +#: src/wizards/audience/views/setup/complete.js:19 msgid "Your current segments and prompts will be deactivated and archived." msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:43 +#: src/wizards/audience/views/setup/complete.js:23 msgid "Reader registration will be activated to enable better targeting for driving engagement and conversations." msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:43 +#: src/wizards/audience/views/setup/complete.js:29 msgid "The Audience Management campaign will be activated with default segments and settings." msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:43 +#: src/wizards/audience/views/setup/complete.js:35 msgid "Setting up new segments…" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:43 +#: src/wizards/audience/views/setup/complete.js:36 msgid "Activating reader registration…" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:43 +#: src/wizards/audience/views/setup/complete.js:37 msgid "Activating Audience Management Campaign…" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:43 +#: src/wizards/audience/views/setup/complete.js:100 msgid "Done!" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:43 +#: src/wizards/audience/views/setup/complete.js:133 +#: src/wizards/audience/views/setup/complete.js:169 msgid "Enable Audience Management" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:43 +#: src/wizards/audience/views/setup/complete.js:136 msgid "An easy way to let your readers register for your site, sign up for newsletters, or become donors and paid members. " msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:43 +#: src/wizards/audience/views/setup/complete.js:158 msgid "You're all set to enable Audience Management!" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:43 +#: src/wizards/audience/views/setup/complete.js:159 msgid "This is what will happen next:" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:43 +#: src/wizards/audience/views/setup/content-gating.js:64 msgid "WooCommerce Memberships integration to improve the reader experience with content gating. " msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:43 +#: src/wizards/audience/views/setup/content-gating.js:73 msgid "Content Gate" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:43 +#: src/wizards/audience/views/setup/content-gating.js:50 msgid "Configure the gate rendered on content with restricted access." msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:43 +#: src/wizards/audience/views/setup/content-gating.js:52 msgid "The gate is currently published." msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:43 +#: src/wizards/audience/views/setup/content-gating.js:54 msgid "The gate is currently a draft." msgstr "" @@ -6924,30 +7498,48 @@ msgstr "" #: dist/newspack-wizards.80278d14c9e76a6696a2.js:4 #: dist/newspack-wizards.80278d14c9e76a6696a2.js:7 #: dist/newspack-wizards.80278d14c9e76a6696a2.js:23 +#: packages/components/src/plugin-toggle/index.js:172 +#: src/wizards/advertising/views/providers/index.js:74 +#: src/wizards/advertising/views/providers/index.js:92 +#: src/wizards/audience/components/payment-methods/payment-gateway.js:85 +#: src/wizards/audience/components/payment-methods/stripe.js:93 +#: src/wizards/audience/components/payment-methods/woopayments.js:85 +#: src/wizards/audience/views/setup/content-gating.js:77 +#: src/wizards/componentsDemo/index.js:372 +#: src/wizards/componentsDemo/index.js:382 +#: src/wizards/componentsDemo/index.js:410 +#: src/wizards/componentsDemo/index.js:477 +#: src/wizards/componentsDemo/index.js:483 msgid "Configure" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:43 +#: src/wizards/audience/views/setup/content-gating.js:83 msgid "Require membership in all plans" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:43 +#: src/wizards/audience/views/setup/content-gating.js:84 msgid "When enabled, readers must belong to all membership plans that apply to a restricted content item before they are granted access. Otherwise, they will be able to unlock access to that item with membership in any single plan that applies to it." msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:43 +#: src/wizards/audience/views/setup/content-gating.js:95 msgid "Display memberships on the subscriptions tab" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:43 +#: src/wizards/audience/views/setup/content-gating.js:96 msgid "Display memberships that don't have active subscriptions on the My Account Subscriptions tab, so readers can see information like expiration dates." msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:43 +#: src/wizards/audience/components/payment-methods/stripe.js:69 msgid "Stripe" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:43 +#: src/wizards/audience/components/payment-methods/stripe.js:72 msgid "Enable the Stripe payment gateway for WooCommerce. " msgstr "" @@ -6962,11 +7554,21 @@ msgstr "" #: dist/newspack-wizards.80278d14c9e76a6696a2.js:24 #: dist/newspack-wizards.80278d14c9e76a6696a2.js:28 #: dist/setup.js:7 +#: packages/components/src/autocomplete-with-latest-posts/index.js:261 +#: packages/components/src/autocomplete-with-suggestions/index.js:289 +#: packages/components/src/plugin-toggle/index.js:163 +#: packages/components/src/web-preview/index.js:170 +#: src/wizards/audience/components/payment-methods/payment-gateway.js:39 +#: src/wizards/audience/components/payment-methods/stripe.js:40 +#: src/wizards/audience/components/payment-methods/woopayments.js:39 msgid "Loading…" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:43 #: dist/audience-wizards.26392cdd43fc5adc8774.js:46 +#: src/wizards/audience/components/payment-methods/payment-gateway.js:45 +#: src/wizards/audience/components/payment-methods/stripe.js:49 +#: src/wizards/audience/components/payment-methods/woopayments.js:45 msgid "Connected - test mode" msgstr "" @@ -6975,10 +7577,14 @@ msgstr "" #: dist/newspack-wizards.80278d14c9e76a6696a2.js:1 #: dist/newspack-wizards.80278d14c9e76a6696a2.js:23 #: dist/newspack-wizards.80278d14c9e76a6696a2.js:24 +#: src/wizards/audience/components/payment-methods/payment-gateway.js:47 +#: src/wizards/audience/components/payment-methods/stripe.js:51 +#: src/wizards/audience/components/payment-methods/woopayments.js:47 msgid "Connected" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:43 +#: src/wizards/audience/components/payment-methods/stripe.js:46 msgid "Needs attention" msgstr "" @@ -6988,6 +7594,9 @@ msgstr "" #: dist/newspack-wizards.80278d14c9e76a6696a2.js:1 #: dist/newspack-wizards.80278d14c9e76a6696a2.js:23 #: dist/newspack-wizards.80278d14c9e76a6696a2.js:31 +#: src/wizards/audience/components/payment-methods/payment-gateway.js:42 +#: src/wizards/audience/components/payment-methods/stripe.js:43 +#: src/wizards/audience/components/payment-methods/woopayments.js:42 msgid "Not connected" msgstr "" @@ -6996,60 +7605,77 @@ msgstr "" #: dist/commons.js:18 #: dist/newspack-wizards.80278d14c9e76a6696a2.js:23 #: dist/newspack-wizards.80278d14c9e76a6696a2.js:31 +#: src/wizards/audience/components/payment-methods/payment-gateway.js:89 +#: src/wizards/audience/components/payment-methods/stripe.js:102 +#: src/wizards/audience/components/payment-methods/woopayments.js:89 msgid "Connect" msgstr "" #. Translators: %s is the payment gateway name. #: dist/audience-wizards.26392cdd43fc5adc8774.js:46 +#: src/wizards/audience/components/payment-methods/payment-gateway.js:67 +#: src/wizards/audience/components/payment-methods/woopayments.js:67 #, js-format msgid "Enable %s. " msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:46 +#: src/wizards/audience/components/payment-methods/index.js:31 msgid "Payment Gateways" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:46 +#: src/wizards/audience/components/payment-methods/index.js:34 msgid "Configure Newspack-supported payment gateways for WooCommerce. Payment gateways allow you to accept various payment methods from your readers. " msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:46 +#: src/wizards/audience/components/payment-methods/index.js:50 msgid "Missing or invalid SSL configuration detected. To collect payments, the site must be secured with SSL. " msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:46 +#: src/wizards/audience/components/nrh-settings/index.js:44 msgid "News Revenue Hub Settings" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:46 +#: src/wizards/audience/components/nrh-settings/index.js:45 msgid "Configure your site’s connection to News Revenue Hub." msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:46 +#: src/wizards/audience/components/nrh-settings/index.js:50 msgid "Organization ID" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:46 +#: src/wizards/audience/components/nrh-settings/index.js:56 msgid "Custom domain (optional)" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:46 +#: src/wizards/audience/components/nrh-settings/index.js:63 msgid "Salesforce Campaign ID (optional)" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:46 +#: src/wizards/audience/components/nrh-settings/index.js:72 msgid "Donor Landing Page" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:46 +#: src/wizards/audience/components/nrh-settings/index.js:80 msgid "Search for a New Donor Landing Page" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:46 +#: src/wizards/audience/components/nrh-settings/index.js:92 msgid "page" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:46 +#: src/wizards/audience/components/nrh-settings/index.js:93 msgid "pages" msgstr "" @@ -7098,42 +7724,53 @@ msgid "The privacy policy text to display at time of checkout for existing users msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:46 +#: src/wizards/audience/components/cover-fees-settings/index.js:37 +#: src/wizards/audience/components/cover-fees-settings/index.js:45 msgid "Collect transaction fees" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:46 +#: src/wizards/audience/components/cover-fees-settings/index.js:38 msgid "Allow readers to optionally cover transaction fees imposed by payment processors when making donations or subscribing." msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:46 +#: src/wizards/audience/components/cover-fees-settings/index.js:58 msgid "Fee multiplier" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:46 +#: src/wizards/audience/components/cover-fees-settings/index.js:66 msgid "Fee static portion" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:46 +#: src/wizards/audience/components/cover-fees-settings/index.js:72 msgid "Custom message" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:46 +#: src/wizards/audience/components/cover-fees-settings/index.js:73 msgid "A message to explain the transaction fee option (optional)." msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:46 +#: src/wizards/audience/components/cover-fees-settings/index.js:80 msgid "Cover fees by default" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:46 +#: src/wizards/audience/components/cover-fees-settings/index.js:83 msgid "If enabled, the option to cover the transaction fee will be checked by default." msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:46 +#: src/wizards/audience/components/cover-fees-settings/index.js:87 msgid "Donations only" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:46 +#: src/wizards/audience/components/cover-fees-settings/index.js:90 msgid "If enabled, the option to cover the transaction fee will only be available for donations." msgstr "" @@ -7155,6 +7792,7 @@ msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:46 #: dist/collections-admin.js:1 +#: src/collections/admin/collection-meta-ctas-field.js:206 msgid "Label" msgstr "" @@ -7173,6 +7811,7 @@ msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:46 #: dist/collections-admin.js:1 #: dist/newspack-wizards.80278d14c9e76a6696a2.js:19 +#: src/collections/admin/collection-meta-ctas-field.js:225 msgid "URL" msgstr "" @@ -7181,14 +7820,18 @@ msgid "Please provide a URL for the Terms & Conditions page." msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:46 +#: src/wizards/audience/views/setup/index.js:110 +#: src/wizards/audience/views/setup/payment.js:25 msgid "Checkout & Payment" msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:46 +#: src/wizards/audience/views/setup/payment.js:26 msgid "Reader revenue configuration for donations and subscriptions." msgstr "" #: dist/audience-wizards.26392cdd43fc5adc8774.js:46 +#: src/wizards/audience/views/setup/index.js:69 msgid "Are you sure you want to skip this step? You can always come back later." msgstr "" @@ -7260,22 +7903,27 @@ msgstr "" #: dist/avatar-block.js:1 #: dist/blocks.js:1 +#: src/blocks/avatar/index.js:15 msgid "Avatar" msgstr "" #: dist/avatar-block.js:1 #: dist/blocks.js:1 #: dist/blocks.js:4 +#: src/blocks/avatar/index.js:28 +#: src/blocks/byline/index.js:28 msgid "author" msgstr "" #: dist/avatar-block.js:1 #: dist/blocks.js:1 +#: src/blocks/avatar/index.js:29 msgid "user" msgstr "" #: dist/avatar-block.js:1 #: dist/blocks.js:1 +#: src/blocks/avatar/index.js:30 msgid "profile" msgstr "" @@ -7283,661 +7931,831 @@ msgstr "" #: dist/blocks.js:1 #: dist/blocks.js:4 #: dist/contribution-meter-block.js:5 +#: src/blocks/avatar/index.js:31 +#: src/blocks/byline/index.js:31 +#: src/blocks/collections/index.js:36 +#: src/blocks/contribution-meter/index.js:37 msgid "newspack" msgstr "" #: dist/avatar-block.js:1 #: dist/blocks.js:1 +#: src/blocks/avatar/index.js:33 msgid "Display post author avatar." msgstr "" #: dist/billboard.js:1 #: dist/billboard.js:12 +#: src/wizards/advertising/views/ad-units/index.js:166 +#: src/wizards/advertising/views/providers/index.js:48 msgid "Created custom targeting keys:" msgstr "" #: dist/billboard.js:1 #: dist/billboard.js:12 +#: src/wizards/advertising/views/ad-units/index.js:172 +#: src/wizards/advertising/views/providers/index.js:55 msgid "Visit your GAM dashboard" msgstr "" #: dist/billboard.js:1 +#: src/wizards/advertising/views/providers/index.js:63 msgid "Click here to connect your account." msgstr "" #: dist/billboard.js:1 #: dist/billboard.js:12 +#: src/wizards/advertising/index.js:145 +#: src/wizards/advertising/views/providers/index.js:70 msgid "Providers" msgstr "" #: dist/billboard.js:1 +#: src/wizards/advertising/views/providers/index.js:73 msgid "Manage Google Ad Manager ad units and placements directly from the Newspack dashboard." msgstr "" #: dist/billboard.js:1 +#: src/wizards/advertising/views/providers/index.js:98 msgid "Google Ad Manager Setup" msgstr "" #: dist/billboard.js:1 +#: src/wizards/advertising/components/placement-control/index.js:25 msgid "Select a provider" msgstr "" #: dist/billboard.js:1 #: dist/billboard.js:12 +#: src/wizards/advertising/components/placement-control/index.js:80 +#: src/wizards/advertising/views/placements/index.js:189 msgid "Ad Unit" msgstr "" #. translators: %s: ad bidder name. #: dist/billboard.js:4 +#: src/wizards/advertising/components/placement-control/index.js:111 #, js-format msgid "%s does not support the selected ad unit sizes." msgstr "" #: dist/billboard.js:4 +#: src/wizards/advertising/components/placement-control/index.js:127 msgid "Provider" msgstr "" #: dist/billboard.js:4 +#: src/wizards/advertising/components/placement-control/index.js:49 msgid "Select an Ad Unit" msgstr "" #. Translators: 1 is ad unit name and 2 is ad unit id. #: dist/billboard.js:7 +#: src/wizards/advertising/components/placement-control/index.js:56 #, js-format msgid "%1$s (%2$s)" msgstr "" +#. translators: %s: bidder name. #: dist/billboard.js:7 +#: src/wizards/advertising/components/placement-control/index.js:151 #, js-format msgid "%s Placement ID" msgstr "" #. translators: %s: bidder name. #: dist/billboard.js:9 +#: src/wizards/advertising/components/placement-control/index.js:120 +#: src/wizards/advertising/views/placements/index.js:128 msgid "There is no provider available." msgstr "" #: dist/billboard.js:9 #: dist/billboard.js:12 +#: src/wizards/advertising/index.js:150 +#: src/wizards/advertising/views/placements/index.js:127 msgid "Placements" msgstr "" #: dist/billboard.js:9 +#: src/wizards/advertising/views/placements/index.js:151 msgid "Placement settings" msgstr "" #. translators: %s is the name of the placement #: dist/billboard.js:12 +#: src/wizards/advertising/views/placements/index.js:164 #, js-format msgid "%s placement settings" msgstr "" #: dist/billboard.js:12 +#: src/wizards/advertising/views/placements/index.js:201 msgid "Stick to Top" msgstr "" #: dist/billboard.js:12 +#: src/wizards/advertising/components/suppression/index.js:73 msgid "Suppression settings" msgstr "" #: dist/billboard.js:12 +#: src/wizards/advertising/components/suppression/index.js:74 msgid "Configure where ads are suppressed." msgstr "" #: dist/billboard.js:12 +#: src/wizards/advertising/components/suppression/index.js:80 msgid "Suppress ads on specific post types." msgstr "" #: dist/billboard.js:12 +#: src/wizards/advertising/components/suppression/index.js:101 msgid "Tags" msgstr "" #: dist/billboard.js:12 +#: src/wizards/advertising/components/suppression/index.js:103 msgid "Suppress ads on specific tags and their archive pages." msgstr "" #: dist/billboard.js:12 +#: src/wizards/advertising/components/suppression/index.js:114 msgid "Tags to suppress ads on (archives and posts)" msgstr "" #: dist/billboard.js:12 +#: src/wizards/advertising/components/suppression/index.js:123 msgid "All tag archive pages" msgstr "" #: dist/billboard.js:12 +#: src/wizards/advertising/components/suppression/index.js:128 msgid "Suppress ads on specific categories and their archive pages." msgstr "" #: dist/billboard.js:12 +#: src/wizards/advertising/components/suppression/index.js:139 msgid "Categories to suppress ads on (archives and posts)" msgstr "" #: dist/billboard.js:12 +#: src/wizards/advertising/components/suppression/index.js:147 msgid "All category archive pages" msgstr "" #: dist/billboard.js:12 +#: src/wizards/advertising/components/suppression/index.js:150 msgid "Author Archive Pages" msgstr "" #: dist/billboard.js:12 +#: src/wizards/advertising/components/suppression/index.js:152 msgid "Suppress ads on automatically generated pages displaying a list of posts by an author." msgstr "" #: dist/billboard.js:12 +#: src/wizards/advertising/components/suppression/index.js:160 msgid "Suppress ads on author archive pages" msgstr "" #: dist/billboard.js:12 +#: src/wizards/advertising/components/ad-refresh-control/index.js:21 msgid "Viewability Threshold" msgstr "" #: dist/billboard.js:12 +#: src/wizards/advertising/components/ad-refresh-control/index.js:22 msgid "The percentage of the ad slot which must be visible in the viewport in order to be considered eligible for being refreshed. It's recommended you do not lower this below 50 or you risk third-party viewability tracking platforms flagging your ad impressions as not having been viewed before refreshing." msgstr "" #: dist/billboard.js:12 +#: src/wizards/advertising/components/ad-refresh-control/index.js:30 msgid "Refresh Interval" msgstr "" #: dist/billboard.js:12 +#: src/wizards/advertising/components/ad-refresh-control/index.js:31 msgid "The number of seconds that must pass between an ad crossing the viewability threshold and the the ad refreshing. The plugin enforces a minimum of 30 in order to avoid your site being flagged for abusing ad refreshes by advertisers. This value may however be overridden via the avc_refresh_interval_value filter hook." msgstr "" #: dist/billboard.js:12 +#: src/wizards/advertising/components/ad-refresh-control/index.js:39 msgid "Maximum Refreshes" msgstr "" #: dist/billboard.js:12 +#: src/wizards/advertising/components/ad-refresh-control/index.js:40 msgid "The number of times each ad slot is allowed to be refreshed. If this is set to 4 then an ad slot could have a total of 5 impressions by combining the initial loading of the ad with the 4 times it can refresh." msgstr "" #: dist/billboard.js:12 +#: src/wizards/advertising/components/ad-refresh-control/index.js:48 msgid "Excluded Advertiser IDs" msgstr "" #: dist/billboard.js:12 +#: src/wizards/advertising/components/ad-refresh-control/index.js:49 msgid "Prevent ad refreshes for specific advertiser IDs in the format of a comma separated list (e.g., 125,594,293). If an ad slot ever displays an ad creative from one of the listed advertiser IDs then that ad slot will stop refreshing for the remainder of the page view. AdSense does not allow their ads to be auto-refreshed. When Newspack detects that AdSense is the advertiser for any given impression, a refresh will not take place." msgstr "" #: dist/billboard.js:12 +#: src/wizards/advertising/components/ad-refresh-control/index.js:57 msgid "Line Items IDs to Exclude" msgstr "" #: dist/billboard.js:12 +#: src/wizards/advertising/components/ad-refresh-control/index.js:58 msgid "Prevent ad refreshs for specific line item IDs. (Comma Seperated List)" msgstr "" #: dist/billboard.js:12 +#: src/wizards/advertising/components/ad-refresh-control/index.js:63 msgid "Sizes to Exclude" msgstr "" #: dist/billboard.js:12 +#: src/wizards/advertising/components/ad-refresh-control/index.js:64 msgid "Prevent ad refreshs for specific sizes. Accepts string (fluid) or array (300x250). Example: fluid, 300x250." msgstr "" #: dist/billboard.js:12 +#: src/wizards/advertising/components/ad-refresh-control/index.js:69 msgid "Slot IDs to Exclude" msgstr "" #: dist/billboard.js:12 +#: src/wizards/advertising/components/ad-refresh-control/index.js:70 msgid "Prevent ad refreshs for specific slot IDs e.g. div-gpt-ad-grid-1. (Comma Seperated List)." msgstr "" #: dist/billboard.js:12 +#: src/wizards/advertising/components/media-kit/index.js:28 msgid "Something went wrong, the Media Kit feature is unavailable." msgstr "" #: dist/billboard.js:12 +#: src/wizards/advertising/components/media-kit/index.js:48 msgid "Media kit page is created but unpublished. Click the link to review and publish." msgstr "" #: dist/billboard.js:12 +#: src/wizards/advertising/components/media-kit/index.js:49 msgid "Edit Media Kit page" msgstr "" #: dist/billboard.js:12 +#: src/wizards/advertising/components/media-kit/index.js:53 msgid "Media Kit page is published. Click the link to edit it, or toggle this card to unpublish." msgstr "" #: dist/billboard.js:12 +#: src/wizards/advertising/components/media-kit/index.js:57 msgid "Review draft page" msgstr "" #: dist/billboard.js:12 +#: src/wizards/advertising/components/media-kit/index.js:61 msgid "Media Kit page has not been created. Toggle this card to create it." msgstr "" #: dist/billboard.js:12 +#: src/wizards/advertising/components/media-kit/index.js:74 msgid "Media Kit" msgstr "" #: dist/billboard.js:12 +#: src/wizards/advertising/views/ad-units/index.js:27 msgid "Google Ad Manager Error" msgstr "" #: dist/billboard.js:12 +#: src/wizards/advertising/views/ad-units/index.js:91 msgid "None (all ad units will be used)" msgstr "" #: dist/billboard.js:12 +#: src/wizards/advertising/views/ad-units/index.js:113 msgid "Connected GAM network code" msgstr "" #: dist/billboard.js:12 +#: src/wizards/advertising/views/ad-units/index.js:122 msgid "Parent network code (optional)" msgstr "" #: dist/billboard.js:12 +#: src/wizards/advertising/views/ad-units/index.js:128 msgid "Set parent ad unit for the site inventory" msgstr "" #: dist/billboard.js:12 +#: src/wizards/advertising/views/ad-units/index.js:146 msgid "The current parent ad unit is inactive or archived. Please select a different parent ad unit." msgstr "" #: dist/billboard.js:12 +#: src/wizards/advertising/views/ad-units/index.js:155 msgid "Your GAM network code is different than the network code the site was configured with. Legacy ad units are likely to not load." msgstr "" #: dist/billboard.js:12 +#: src/wizards/advertising/views/ad-units/index.js:180 msgid "Currently operating in legacy mode." msgstr "" #: dist/billboard.js:12 +#: src/wizards/advertising/views/ad-units/index.js:183 msgid "Network Code" msgstr "" #: dist/billboard.js:12 +#: src/wizards/advertising/views/ad-units/index.js:197 msgid "Set up multiple ad units to use on your homepage, articles and other places throughout your site." msgstr "" #: dist/billboard.js:12 +#: src/wizards/advertising/views/ad-units/index.js:199 msgid "You can place ads through our Newspack Ad Block in the Editor, Newspack Ad widget, and using the global placements." msgstr "" #: dist/billboard.js:12 +#: src/wizards/advertising/index.js:211 +#: src/wizards/advertising/views/ad-units/index.js:207 msgid "Add New Ad Unit" msgstr "" #: dist/billboard.js:12 +#: src/wizards/advertising/views/ad-units/index.js:229 msgid "Code:" msgstr "" #: dist/billboard.js:12 +#: src/wizards/advertising/views/ad-units/index.js:235 msgid "Sizes:" msgstr "" #: dist/billboard.js:12 +#: src/wizards/advertising/views/ad-units/index.js:239 msgid "Fluid" msgstr "" #: dist/billboard.js:12 +#: src/wizards/advertising/views/ad-units/index.js:245 msgid "Legacy ad unit." msgstr "" #: dist/billboard.js:12 +#: src/wizards/advertising/views/ad-units/index.js:251 msgid "Default ad unit." msgstr "" #: dist/billboard.js:12 +#: src/wizards/advertising/views/ad-units/index.js:257 msgid "Disconnected from GAM." msgstr "" #: dist/billboard.js:12 #: dist/newspack-wizards.80278d14c9e76a6696a2.js:23 #: dist/setup.js:7 +#: src/wizards/advertising/components/ad-unit-size-control/index.js:73 msgid "Custom" msgstr "" #: dist/billboard.js:12 +#: src/wizards/advertising/components/ad-unit-size-control/index.js:92 +#: src/wizards/advertising/views/ad-unit/index.js:118 msgid "Width" msgstr "" #: dist/billboard.js:12 +#: src/wizards/advertising/components/ad-unit-size-control/index.js:100 +#: src/wizards/advertising/views/ad-unit/index.js:119 msgid "Height" msgstr "" #: dist/billboard.js:12 +#: src/wizards/advertising/components/ad-unit-size-control/index.js:84 msgid "Fluid is a native ad size that allows more flexibility when styling your ad. It automatically sizes the ad by filling the width of the enclosing column and adjusting the height as appropriate." msgstr "" #: dist/billboard.js:12 +#: src/wizards/advertising/views/ad-unit/index.js:74 msgid "Ad Unit Details" msgstr "" #: dist/billboard.js:12 +#: src/wizards/advertising/views/ad-unit/index.js:85 msgid "Code" msgstr "" #: dist/billboard.js:12 +#: src/wizards/advertising/views/ad-unit/index.js:91 msgid "Identifies the ad unit in the associated ad tag. Once you've created the ad unit, you can't change the code." msgstr "" #: dist/billboard.js:12 +#: src/wizards/advertising/views/ad-unit/index.js:103 msgid "Ad Unit Sizes" msgstr "" #: dist/billboard.js:12 +#: src/wizards/advertising/views/ad-unit/index.js:103 msgid "Ad Unit Size" msgstr "" #: dist/billboard.js:12 +#: src/wizards/advertising/views/ad-unit/index.js:105 msgid "Add New Size" msgstr "" #: dist/billboard.js:12 +#: src/wizards/advertising/views/ad-unit/index.js:112 msgid "The ad unit must have at least one valid size or fluid size enabled." msgstr "" #: dist/billboard.js:12 #: dist/newspack-wizards.80278d14c9e76a6696a2.js:10 +#: src/wizards/advertising/views/ad-unit/index.js:120 msgid "Action" msgstr "" #: dist/billboard.js:12 +#: src/wizards/advertising/index.js:119 msgid "Are you sure you want to archive this ad unit?" msgstr "" #: dist/billboard.js:12 +#: src/wizards/advertising/index.js:194 msgid "Monetize your content through Google Ad Manager" msgstr "" #: dist/billboard.js:12 +#: src/wizards/advertising/index.js:212 +#: src/wizards/advertising/index.js:245 msgid "Allows you to place ads on your site" msgstr "" #: dist/billboard.js:12 +#: src/wizards/advertising/index.js:244 msgid "Edit Ad Unit" msgstr "" #: dist/blocks.js:1 #: dist/commons.js:15 #: dist/content-gate-countdown-box-block.js:1 +#: src/blocks/content-gate/countdown-box/edit.jsx:147 +#: src/blocks/content-gate/countdown-box/index.js:15 msgid "Content Gate Countdown" msgstr "" #: dist/blocks.js:1 #: dist/blocks.js:4 #: dist/content-gate-countdown-box-block.js:1 +#: src/blocks/content-gate/countdown-box/index.js:28 +#: src/blocks/content-gate/countdown/index.js:27 msgid "countdown" msgstr "" #: dist/blocks.js:1 #: dist/blocks.js:4 #: dist/content-gate-countdown-box-block.js:1 +#: src/blocks/content-gate/countdown-box/index.js:29 +#: src/blocks/content-gate/countdown/index.js:28 msgid "content gate" msgstr "" #: dist/blocks.js:1 #: dist/blocks.js:4 #: dist/content-gate-countdown-box-block.js:1 +#: src/blocks/content-gate/countdown-box/index.js:30 +#: src/blocks/content-gate/countdown/index.js:29 msgid "metered" msgstr "" #: dist/blocks.js:1 #: dist/blocks.js:4 #: dist/content-gate-countdown-box-block.js:1 +#: src/blocks/content-gate/countdown-box/index.js:31 +#: src/blocks/content-gate/countdown/index.js:30 msgid "paywall" msgstr "" #: dist/blocks.js:1 #: dist/blocks.js:4 #: dist/content-gate-countdown-box-block.js:1 +#: src/blocks/content-gate/countdown-box/index.js:32 +#: src/blocks/content-gate/countdown/index.js:31 msgid "tracking" msgstr "" #: dist/blocks.js:1 #: dist/content-gate-countdown-box-block.js:1 +#: src/blocks/content-gate/countdown-box/index.js:34 msgid "Displays how many free articles remain before the paywall, helping users track access with a real-time countdown." msgstr "" #: dist/blocks.js:1 #: dist/correction-item-block.js:1 +#: src/blocks/correction-item/index.js:15 msgid "Correction Item" msgstr "" #: dist/blocks.js:1 #: dist/correction-item-block.js:1 +#: src/blocks/correction-item/index.js:56 msgid "Display an archive of all the corrections and clarifications." msgstr "" #: dist/blocks.js:1 +#: src/blocks/correction-item/index.js:23 msgid "Please select \"Corrections\" as the post type in the Query Loop to use this block." msgstr "" #: dist/blocks.js:1 +#: src/blocks/correction-item/index.js:31 msgid "Correction Type, Date, and Time: " msgstr "" #: dist/blocks.js:1 +#: src/blocks/correction-item/index.js:33 msgid "This is where the content will appear, providing details about the update, whether correcting an error or offering additional context." msgstr "" #: dist/blocks.js:1 +#: src/blocks/correction-item/index.js:40 msgid "Post Title" msgstr "" #: dist/blocks.js:1 +#: src/blocks/reader-registration/edit.js:29 msgid "Initial" msgstr "" #: dist/blocks.js:1 +#: src/blocks/reader-registration/edit.js:30 msgid "Registration Success" msgstr "" #: dist/blocks.js:1 +#: src/blocks/reader-registration/edit.js:31 msgid "Login Success" msgstr "" #: dist/blocks.js:1 +#: src/blocks/reader-registration/edit.js:116 msgid "Form settings" msgstr "" #: dist/blocks.js:1 +#: src/blocks/reader-registration/edit.js:118 msgid "Input placeholder" msgstr "" #: dist/blocks.js:1 +#: src/blocks/reader-registration/edit.js:125 msgid "Newsletter Subscription" msgstr "" #: dist/blocks.js:1 +#: src/blocks/reader-registration/edit.js:127 msgid "Enable newsletter subscription" msgstr "" #: dist/blocks.js:1 +#: src/blocks/reader-registration/edit.js:137 msgid "To enable newsletter subscription, you must configure subscription lists on Newspack Newsletters." msgstr "" #: dist/blocks.js:1 +#: src/blocks/reader-registration/edit.js:146 msgid "Display list description" msgstr "" #: dist/blocks.js:1 +#: src/blocks/reader-registration/edit.js:156 msgid "Hide newsletter selection and always subscribe" msgstr "" #: dist/blocks.js:1 +#: src/blocks/reader-registration/edit.js:168 msgid "You must select at least one list." msgstr "" #: dist/blocks.js:1 +#: src/blocks/reader-registration/edit.js:172 msgid "Lists" msgstr "" #: dist/blocks.js:1 +#: src/blocks/reader-registration/edit.js:193 msgid "Configure your subscription lists" msgstr "" #: dist/blocks.js:1 +#: src/blocks/reader-registration/edit.js:199 msgid "Spam protection" msgstr "" #. translators: %s is either 'enabled' or 'disabled'. #: dist/blocks.js:4 +#: src/blocks/reader-registration/edit.js:203 #, js-format msgid "reCAPTCHA is currently %s." msgstr "" #: dist/blocks.js:4 +#: src/blocks/reader-registration/edit.js:209 msgid "It's highly recommended that you enable reCAPTCHA protection to prevent spambots from using this form!" msgstr "" #: dist/blocks.js:4 +#: src/blocks/reader-registration/edit.js:216 msgid "Configure your reCAPTCHA settings." msgstr "" #: dist/blocks.js:4 +#: src/blocks/reader-registration/edit.js:222 msgid "Edited State" msgstr "" #: dist/blocks.js:4 +#: src/blocks/reader-registration/edit.js:241 msgid "Add title" msgstr "" #: dist/blocks.js:4 +#: src/blocks/reader-registration/edit.js:250 msgid "Add description" msgstr "" #: dist/blocks.js:4 -msgid "Sign up" -msgstr "" - -#: dist/blocks.js:4 +#: src/blocks/reader-registration/edit.js:335 msgid "Terms & Conditions statement…" msgstr "" #: dist/blocks.js:4 +#: src/blocks/reader-registration/edit.js:363 msgid "Logged in message…" msgstr "" #: dist/blocks.js:4 -msgctxt "post author separator" -msgid " and " -msgstr "" - -#: dist/blocks.js:4 +#: src/blocks/byline/inspector.jsx:30 msgid "Prefix" msgstr "" #: dist/blocks.js:4 +#: src/blocks/byline/inspector.jsx:31 msgid "Text displayed before the author name(s)." msgstr "" #: dist/blocks.js:4 #: dist/commons.js:10 +#: src/blocks/avatar/edit.jsx:40 +#: src/blocks/byline/inspector.jsx:37 msgid "Link to author archive" msgstr "" #: dist/blocks.js:4 +#: src/blocks/byline/inspector.jsx:45 msgid "Prefix and link settings are controlled by the custom byline and cannot be changed here." msgstr "" #: dist/blocks.js:4 +#: src/blocks/byline/edit.jsx:87 msgid "[Author]" msgstr "" #: dist/blocks.js:4 #: dist/bylines.js:1 +#: src/blocks/byline/index.js:15 +#: src/bylines/index.js:385 msgid "Byline" msgstr "" #: dist/blocks.js:4 +#: src/blocks/byline/index.js:29 msgid "byline" msgstr "" #: dist/blocks.js:4 +#: src/blocks/byline/index.js:30 msgid "writer" msgstr "" #: dist/blocks.js:4 +#: src/blocks/byline/index.js:33 msgid "Display post author(s) with support for custom bylines and CoAuthors Plus." msgstr "" #: dist/blocks.js:4 +#: src/blocks/collections/components/InspectorPanel.jsx:65 msgid "Mode" msgstr "" #: dist/blocks.js:4 +#: src/blocks/collections/components/InspectorPanel.jsx:71 msgid "The block will display the most recent collection(s)." msgstr "" #: dist/blocks.js:4 +#: src/blocks/collections/components/InspectorPanel.jsx:72 msgid "The block will display only the specifically selected collection(s)." msgstr "" #: dist/blocks.js:4 +#: src/blocks/collections/components/InspectorPanel.jsx:77 msgid "Static" msgstr "" #: dist/blocks.js:4 +#: src/blocks/collections/components/InspectorPanel.jsx:87 msgid "Begin typing any word in a collection title. Click on an autocomplete result to select it." msgstr "" #: dist/blocks.js:4 +#: src/blocks/collections/components/InspectorPanel.jsx:95 msgid "Number of collections" msgstr "" #: dist/blocks.js:4 +#: src/blocks/collections/components/InspectorPanel.jsx:104 msgid "Offset" msgstr "" #: dist/blocks.js:4 +#: src/blocks/collections/components/InspectorPanel.jsx:109 msgid "Number of collections to skip from the beginning" msgstr "" #: dist/blocks.js:4 +#: src/blocks/collections/components/InspectorPanel.jsx:118 msgid "Included categories" msgstr "" #: dist/blocks.js:4 +#: src/blocks/collections/components/InspectorPanel.jsx:128 msgid "Excluded categories" msgstr "" #: dist/blocks.js:4 +#: src/blocks/collections/components/InspectorPanel.jsx:137 msgid "Grid" msgstr "" #: dist/blocks.js:4 +#: src/blocks/collections/components/InspectorPanel.jsx:139 msgid "Columns" msgstr "" #: dist/blocks.js:4 +#: src/blocks/collections/components/InspectorPanel.jsx:149 msgid "Featured Image" msgstr "" #: dist/blocks.js:4 +#: src/blocks/collections/components/InspectorPanel.jsx:151 msgid "Show featured image" msgstr "" #: dist/blocks.js:4 +#: src/blocks/collections/components/InspectorPanel.jsx:158 msgid "Alignment" msgstr "" #. translators: Overlay Position #: dist/blocks.js:4 #: dist/content-gate-editor.js:3 +#: packages/components/src/position-control/index.js:27 +#: src/blocks/collections/components/InspectorPanel.jsx:165 msgid "Top" msgstr "" #: dist/blocks.js:4 +#: src/blocks/collections/components/InspectorPanel.jsx:167 +#: src/blocks/collections/edit.jsx:41 msgid "Show image on top" msgstr "" #: dist/blocks.js:4 +#: src/blocks/collections/components/InspectorPanel.jsx:170 msgid "Left" msgstr "" #: dist/blocks.js:4 +#: src/blocks/collections/components/InspectorPanel.jsx:172 +#: src/blocks/collections/edit.jsx:47 msgid "Show image on left" msgstr "" #: dist/blocks.js:4 +#: src/blocks/collections/components/InspectorPanel.jsx:175 msgid "Right" msgstr "" #: dist/blocks.js:4 +#: src/blocks/collections/components/InspectorPanel.jsx:177 +#: src/blocks/collections/edit.jsx:53 msgid "Show image on right" msgstr "" @@ -7945,6 +8763,8 @@ msgstr "" #: dist/contribution-meter-block.js:1 #: dist/newspack-wizards.80278d14c9e76a6696a2.js:23 #: dist/setup.js:7 +#: src/blocks/collections/components/InspectorPanel.jsx:189 +#: src/blocks/contribution-meter/components/InspectorPanel.jsx:169 msgid "S" msgstr "" @@ -7953,6 +8773,11 @@ msgstr "" #: dist/content-gate-editor.js:25 #: dist/contribution-meter-block.js:1 #: dist/newspack-wizards.80278d14c9e76a6696a2.js:23 +#: src/blocks/collections/components/InspectorPanel.jsx:191 +#: src/blocks/contribution-meter/components/InspectorPanel.jsx:169 +#: src/content-gate/editor/editor.js:31 +#: src/wizards/componentsDemo/index.js:560 +#: src/wizards/componentsDemo/index.js:634 msgid "Small" msgstr "" @@ -7960,12 +8785,17 @@ msgstr "" #: dist/contribution-meter-block.js:1 #: dist/newspack-wizards.80278d14c9e76a6696a2.js:23 #: dist/setup.js:7 +#: src/blocks/collections/components/InspectorPanel.jsx:194 +#: src/blocks/contribution-meter/components/InspectorPanel.jsx:170 msgid "M" msgstr "" #: dist/blocks.js:4 #: dist/content-gate-editor.js:25 #: dist/contribution-meter-block.js:1 +#: src/blocks/collections/components/InspectorPanel.jsx:196 +#: src/blocks/contribution-meter/components/InspectorPanel.jsx:170 +#: src/content-gate/editor/editor.js:32 msgid "Medium" msgstr "" @@ -7973,6 +8803,8 @@ msgstr "" #: dist/contribution-meter-block.js:1 #: dist/newspack-wizards.80278d14c9e76a6696a2.js:23 #: dist/setup.js:7 +#: src/blocks/collections/components/InspectorPanel.jsx:199 +#: src/blocks/contribution-meter/components/InspectorPanel.jsx:171 msgid "L" msgstr "" @@ -7980,420 +8812,532 @@ msgstr "" #: dist/content-gate-editor.js:25 #: dist/contribution-meter-block.js:1 #: dist/newspack-wizards.80278d14c9e76a6696a2.js:23 +#: src/blocks/collections/components/InspectorPanel.jsx:201 +#: src/blocks/contribution-meter/components/InspectorPanel.jsx:171 +#: src/content-gate/editor/editor.js:33 msgid "Large" msgstr "" #: dist/blocks.js:4 +#: src/blocks/collections/components/InspectorPanel.jsx:208 msgid "Collection Meta" msgstr "" #: dist/blocks.js:4 +#: src/blocks/collections/components/InspectorPanel.jsx:210 msgid "Show title" msgstr "" #: dist/blocks.js:4 +#: src/blocks/collections/components/InspectorPanel.jsx:216 msgid "Show category" msgstr "" #: dist/blocks.js:4 +#: src/blocks/collections/components/InspectorPanel.jsx:222 msgid "Show excerpt" msgstr "" #: dist/blocks.js:4 +#: src/blocks/collections/components/InspectorPanel.jsx:228 msgid "Show period" msgstr "" #: dist/blocks.js:4 +#: src/blocks/collections/components/InspectorPanel.jsx:234 msgid "Show volume" msgstr "" #: dist/blocks.js:4 +#: src/blocks/collections/components/InspectorPanel.jsx:240 msgid "Show number" msgstr "" #: dist/blocks.js:4 +#: src/blocks/collections/components/InspectorPanel.jsx:246 msgid "Show CTAs" msgstr "" #: dist/blocks.js:4 +#: src/blocks/collections/components/InspectorPanel.jsx:254 msgid "Number of CTAs" msgstr "" #: dist/blocks.js:4 +#: src/blocks/collections/components/InspectorPanel.jsx:259 msgid "Maximum number of CTAs to display" msgstr "" #: dist/blocks.js:4 +#: src/blocks/collections/components/InspectorPanel.jsx:264 msgid "Show subscription URL" msgstr "" #: dist/blocks.js:4 +#: src/blocks/collections/components/InspectorPanel.jsx:270 msgid "Show order URL" msgstr "" #: dist/blocks.js:4 +#: src/blocks/collections/components/InspectorPanel.jsx:277 msgid "Specific CTAs (comma-separated)" msgstr "" #: dist/blocks.js:4 +#: src/blocks/collections/components/InspectorPanel.jsx:278 msgid "Enter specific CTA to show, e.g. \"Digital Edition\" (should match existing CTA label). Leave empty to show first available CTAs." msgstr "" #: dist/blocks.js:4 +#: src/blocks/collections/index.js:28 msgid "collections" msgstr "" #: dist/blocks.js:4 +#: src/blocks/collections/index.js:29 msgid "issues" msgstr "" #: dist/blocks.js:4 +#: src/blocks/collections/index.js:30 msgid "magazine" msgstr "" #: dist/blocks.js:4 +#: src/blocks/collections/index.js:31 msgid "publications" msgstr "" #: dist/blocks.js:4 +#: src/blocks/collections/index.js:32 msgid "content" msgstr "" #: dist/blocks.js:4 +#: src/blocks/collections/index.js:34 msgid "query" msgstr "" #: dist/blocks.js:4 +#: src/blocks/collections/index.js:35 msgid "latest" msgstr "" #: dist/blocks.js:4 +#: src/blocks/collections/index.js:38 msgid "An advanced block that allows displaying collections based on different parameters and visual configurations." msgstr "" #: dist/blocks.js:4 +#: src/blocks/collections/edit.jsx:23 msgid "List view" msgstr "" #: dist/blocks.js:4 +#: src/blocks/collections/edit.jsx:29 msgid "Grid view" msgstr "" #: dist/blocks.js:4 +#: src/blocks/collections/edit.jsx:113 msgid "Loading collections…" msgstr "" #: dist/blocks.js:4 +#: src/blocks/collections/edit.jsx:120 msgid "No collections found" msgstr "" #: dist/blocks.js:4 +#: src/blocks/content-gate/countdown/index.js:14 msgid "Article Counter" msgstr "" #: dist/blocks.js:4 +#: src/blocks/content-gate/countdown/index.js:33 msgid "Displays the current free article count." msgstr "" -#. translators: 1: current number of metered views, 2: total metered views. -#: dist/blocks.js:4 -#: dist/content-gate-countdown-block.js:1 -#, js-format -msgid "%1$d/%2$d" -msgstr "" - #: dist/blocks.js:4 #: dist/correction-box-block.js:1 +#: src/blocks/correction-box/index.js:15 msgid "Corrections" msgstr "" #: dist/blocks.js:4 #: dist/correction-box-block.js:1 +#: src/blocks/correction-box/index.js:27 msgid "clarifications" msgstr "" #: dist/blocks.js:4 #: dist/correction-box-block.js:1 +#: src/blocks/correction-box/index.js:27 msgid "updates" msgstr "" #: dist/blocks.js:4 #: dist/correction-box-block.js:1 +#: src/blocks/correction-box/index.js:28 msgid "Display all corrections and clarifications made to a post." msgstr "" #: dist/bylines.js:1 +#: src/bylines/index.js:134 msgid "Add author" msgstr "" #: dist/bylines.js:1 +#: src/bylines/index.js:389 msgid "Provides flexibility in defining how the byline appears." msgstr "" #: dist/bylines.js:1 +#: src/bylines/index.js:390 msgid "Enable custom byline" msgstr "" #: dist/bylines.js:1 +#: src/bylines/index.js:402 +#: src/bylines/index.js:407 msgid "Edit byline" msgstr "" #: dist/collections-admin.js:1 +#: src/collections/admin/collection-meta-attachment-info.js:49 msgid "Remove attachment" msgstr "" #: dist/collections-admin.js:1 +#: src/collections/admin/collection-meta-ctas-field.js:60 +#: src/collections/admin/collection-meta-panel.js:61 msgid "Please enter a valid URL." msgstr "" #: dist/collections-admin.js:1 +#: src/collections/admin/collection-meta-ctas-field.js:93 msgid "Please upload a PDF file." msgstr "" #: dist/collections-admin.js:1 +#: src/collections/admin/collection-meta-ctas-field.js:200 msgid "Drag to reorder" msgstr "" #: dist/collections-admin.js:1 +#: src/collections/admin/collection-meta-ctas-field.js:205 msgid "Enter a label…" msgstr "" #: dist/collections-admin.js:1 +#: src/collections/admin/collection-meta-ctas-field.js:212 msgid "External Link" msgstr "" #: dist/collections-admin.js:1 +#: src/collections/admin/collection-meta-ctas-field.js:213 msgid "File Upload" msgstr "" #: dist/collections-admin.js:1 #: dist/other-scripts/corrections-modal.js:1 #: dist/other-scripts/corrections-modal.js:4 +#: src/collections/admin/collection-meta-ctas-field.js:215 +#: src/other-scripts/corrections-modal/index.js:232 +#: src/other-scripts/corrections-modal/index.js:327 msgid "Type" msgstr "" #: dist/collections-admin.js:1 +#: src/collections/admin/collection-meta-ctas-field.js:224 msgid "Enter the URL…" msgstr "" #: dist/collections-admin.js:1 +#: src/collections/admin/collection-meta-ctas-field.js:229 msgid "File" msgstr "" #: dist/collections-admin.js:1 +#: src/collections/admin/collection-meta-ctas-field.js:242 msgid "Upload PDF" msgstr "" #: dist/collections-admin.js:1 +#: src/collections/admin/collection-meta-ctas-field.js:250 msgid "Remove CTA" msgstr "" #: dist/collections-admin.js:1 +#: src/collections/admin/collection-meta-ctas-field.js:258 msgid "Add CTA" msgstr "" #: dist/commons.js:1 +#: src/wizards/advertising/components/onboarding/index.js:63 msgid "Authenticate with Google in order to connect your Google Ad Manager account:" msgstr "" #: dist/commons.js:1 +#: src/wizards/advertising/components/onboarding/index.js:71 msgid "We're all set here!" msgstr "" #: dist/commons.js:1 +#: src/wizards/advertising/components/onboarding/index.js:75 msgid "Enter your Google Ad Manager network code and service account credentials for a full integration:" msgstr "" #: dist/commons.js:1 +#: src/wizards/advertising/components/onboarding/index.js:84 msgid "Network code" msgstr "" #: dist/commons.js:1 +#: src/wizards/advertising/components/onboarding/index.js:91 msgid "Upload credentials" msgstr "" #: dist/commons.js:1 +#: src/wizards/advertising/components/onboarding/index.js:93 msgid "Upload your Service Account credentials file to connect your GAM account." msgstr "" #: dist/commons.js:1 +#: src/wizards/advertising/components/onboarding/index.js:100 msgid "How to get a service account user for API access" msgstr "" #: dist/commons.js:1 #: dist/commons.js:10 +#: packages/components/src/autocomplete-with-latest-posts/index.js:20 +#: packages/components/src/autocomplete-with-suggestions/index.js:20 msgid "Begin typing search term, click autocomplete result to select." msgstr "" #: dist/commons.js:1 #: dist/commons.js:10 +#: packages/components/src/autocomplete-with-latest-posts/index.js:23 +#: packages/components/src/autocomplete-with-suggestions/index.js:22 msgid "Search" msgstr "" #: dist/commons.js:1 +#: packages/components/src/autocomplete-with-suggestions/index.js:28 msgid "item" msgstr "" #: dist/commons.js:1 +#: packages/components/src/autocomplete-with-suggestions/index.js:29 msgid "items" msgstr "" #. Translators: %1: the length of selections. %2: the selection leabel. #: dist/commons.js:4 +#: packages/components/src/autocomplete-with-suggestions/index.js:178 #, js-format msgid "%1$s %2$s selected" msgstr "" #. Translators: %s: The label for the selection. #: dist/commons.js:7 +#: packages/components/src/autocomplete-with-suggestions/index.js:184 #, js-format msgid "Selected %s" msgstr "" #: dist/commons.js:7 +#: packages/components/src/autocomplete-with-suggestions/index.js:192 msgctxt "separator character" msgid " – " msgstr "" #: dist/commons.js:7 +#: packages/components/src/autocomplete-with-suggestions/index.js:195 msgid "Clear all" msgstr "" #. Translators: %s: The name of the type. #: dist/commons.js:10 +#: packages/components/src/autocomplete-with-suggestions/index.js:221 #, js-format msgid "%s type" msgstr "" #. Translators: %s: the name of a post type. #: dist/commons.js:10 +#: packages/components/src/autocomplete-with-suggestions/index.js:279 #, js-format msgid "Or, select a recent %s:" msgstr "" #: dist/commons.js:10 +#: packages/components/src/autocomplete-with-latest-posts/index.js:261 +#: packages/components/src/autocomplete-with-suggestions/index.js:289 msgid "Load more" msgstr "" #: dist/commons.js:10 +#: packages/components/src/autocomplete-with-latest-posts/index.js:256 msgid "Latest Posts" msgstr "" #: dist/commons.js:10 +#: packages/components/src/footer/index.js:34 msgid "About" msgstr "" #: dist/commons.js:10 +#: packages/components/src/footer/index.js:39 msgid "Documentation" msgstr "" #: dist/commons.js:10 #: dist/componentsDemo.js:1 +#: packages/components/src/footer/index.js:46 +#: src/wizards/componentsDemo/index.js:109 msgid "Components Demo" msgstr "" #: dist/commons.js:10 +#: packages/components/src/footer/index.js:52 msgid "Setup Wizard" msgstr "" #: dist/commons.js:10 +#: packages/components/src/footer/index.js:58 msgid "Reset Newspack" msgstr "" #: dist/commons.js:10 +#: packages/components/src/footer/index.js:64 msgid "Remove Starter Content" msgstr "" #: dist/commons.js:10 +#: packages/components/src/footer/index.js:70 msgid "Contact Support" msgstr "" #: dist/commons.js:10 +#: packages/components/src/handoff/index.js:55 +#: packages/components/src/handoff/index.js:56 +#: packages/components/src/handoff/index.js:57 msgid "Manage" msgstr "" #: dist/commons.js:10 +#: packages/components/src/handoff/index.js:115 msgid " not installed" msgstr "" #: dist/commons.js:10 +#: packages/components/src/handoff/index.js:126 msgid "Retrieving Plugin Info" msgstr "" #: dist/commons.js:10 +#: packages/components/src/image-upload/index.js:91 msgid "Image preview" msgstr "" #: dist/commons.js:10 +#: packages/components/src/image-upload/index.js:94 msgid "Replace" msgstr "" #: dist/commons.js:10 +#: packages/components/src/image-upload/index.js:104 msgid "Upload" msgstr "" #: dist/commons.js:10 #: dist/componentsDemo.js:1 +#: packages/components/src/plugin-installer/index.js:169 +#: src/wizards/componentsDemo/index.js:306 +#: src/wizards/componentsDemo/index.js:333 +#: src/wizards/componentsDemo/index.js:393 +#: src/wizards/componentsDemo/index.js:429 +#: src/wizards/componentsDemo/index.js:439 +#: src/wizards/componentsDemo/index.js:449 +#: src/wizards/componentsDemo/index.js:459 +#: src/wizards/componentsDemo/index.js:469 msgid "Install" msgstr "" #: dist/commons.js:10 +#: packages/components/src/plugin-installer/index.js:181 msgid "Retrieving plugin information…" msgstr "" #: dist/commons.js:10 +#: packages/components/src/plugin-installer/index.js:221 msgid "Installed" msgstr "" #: dist/commons.js:10 +#: packages/components/src/plugin-installer/index.js:199 msgid "Contact Newspack support to install" msgstr "" #: dist/commons.js:10 +#: packages/components/src/plugin-installer/index.js:200 msgid "Plugin must be installed manually" msgstr "" #: dist/commons.js:10 +#: packages/components/src/plugin-toggle/index.js:68 msgid "There was an error managing this plugin." msgstr "" #: dist/commons.js:10 #: dist/componentsDemo.js:1 #: dist/newspack-wizards.80278d14c9e76a6696a2.js:24 +#: packages/components/src/plugin-toggle/index.js:149 +#: src/wizards/componentsDemo/index.js:327 msgid "Installing…" msgstr "" #: dist/commons.js:10 +#: packages/components/src/plugin-toggle/index.js:156 msgid "Deactivating…" msgstr "" #: dist/commons.js:10 +#: packages/components/src/select-control/GroupedSelectControl.js:47 msgid "-- Select --" msgstr "" #: dist/commons.js:10 +#: packages/components/src/settings/MinMaxSetting.js:16 msgid "Min" msgstr "" #: dist/commons.js:10 +#: packages/components/src/settings/MinMaxSetting.js:29 msgid "Max" msgstr "" #: dist/commons.js:10 +#: packages/components/src/style-card/index.js:36 msgid "Thumbnail" msgstr "" #: dist/commons.js:10 +#: packages/components/src/style-card/index.js:40 msgid "Selected" msgstr "" #: dist/commons.js:10 #: dist/newspack-wizards.80278d14c9e76a6696a2.js:23 #: dist/newspack-wizards.80278d14c9e76a6696a2.js:24 +#: packages/components/src/style-card/index.js:45 +#: packages/components/src/style-card/index.js:48 msgid "Select" msgstr "" #: dist/commons.js:10 +#: packages/components/src/style-card/index.js:51 msgid "View Demo" msgstr "" @@ -8402,134 +9346,173 @@ msgid "(required)" msgstr "" #: dist/commons.js:10 +#: packages/components/src/web-preview/index.js:124 msgid "Preview Size" msgstr "" #: dist/commons.js:10 +#: packages/components/src/web-preview/index.js:136 msgid "Desktop" msgstr "" #: dist/commons.js:10 +#: packages/components/src/web-preview/index.js:147 msgid "Tablet" msgstr "" #: dist/commons.js:10 +#: packages/components/src/web-preview/index.js:158 msgid "Phone" msgstr "" #: dist/commons.js:10 +#: packages/components/src/web-preview/index.js:163 msgid "Close Preview" msgstr "" #: dist/commons.js:10 #: dist/commons.js:15 #: dist/componentsDemo.js:1 +#: packages/components/src/with-wizard-screen/index.js:69 +#: packages/components/src/with-wizard/index.js:104 +#: packages/components/src/with-wizard/index.js:218 +#: packages/components/src/wizard/components/WizardError.js:41 +#: packages/components/src/wizard/index.js:101 +#: src/wizards/componentsDemo/index.js:101 msgid "Return to Dashboard" msgstr "" #: dist/commons.js:10 #: dist/commons.js:15 +#: packages/components/src/with-wizard/index.js:228 +#: packages/components/src/wizard/index.js:72 msgid "Required plugins" msgstr "" #: dist/commons.js:10 #: dist/commons.js:15 +#: packages/components/src/with-wizard/index.js:229 +#: packages/components/src/wizard/index.js:72 msgid "Required plugin" msgstr "" #: dist/commons.js:10 +#: packages/components/src/with-wizard/index.js:260 msgid "OK" msgstr "" #: dist/commons.js:10 +#: src/blocks/correction-box/edit.jsx:38 msgid "This is the Corrections block, it will display all the corrections and clarifications." msgstr "" #: dist/commons.js:10 +#: src/blocks/correction-box/edit.jsx:39 msgid "If there are no corrections or clarifications, this block will not be displayed." msgstr "" #: dist/commons.js:10 +#: src/blocks/correction-box/edit.jsx:59 msgid "Correction Box Settings" msgstr "" #: dist/commons.js:10 +#: src/blocks/correction-box/edit.jsx:62 msgid "Corrections by Priority" msgstr "" #: dist/commons.js:10 +#: src/blocks/correction-box/edit.jsx:63 msgid "Filter corrections by their priority." msgstr "" #: dist/commons.js:10 #: dist/other-scripts/corrections-modal.js:1 +#: src/blocks/correction-box/edit.jsx:66 +#: src/other-scripts/corrections-modal/index.js:36 msgid "High" msgstr "" #: dist/commons.js:10 #: dist/other-scripts/corrections-modal.js:1 +#: src/blocks/correction-box/edit.jsx:67 +#: src/other-scripts/corrections-modal/index.js:37 msgid "Low" msgstr "" #: dist/commons.js:10 +#: src/blocks/correction-box/edit.jsx:88 msgid "Refresh" msgstr "" #: dist/commons.js:10 +#: src/wizards/advertising/components/utils/index.js:21 msgid "Invalid JSON file" msgstr "" #: dist/commons.js:10 +#: src/wizards/advertising/components/utils/index.js:26 msgid "Unable to read file" msgstr "" #: dist/commons.js:10 +#: src/blocks/avatar/edit.jsx:27 msgid "Image size" msgstr "" #. translators: %s: Author name. #: dist/commons.js:13 +#: src/blocks/avatar/hooks.js:51 #, js-format msgid "%s Avatar" msgstr "" #: dist/commons.js:13 +#: src/blocks/avatar/hooks.js:52 msgid "Default Avatar" msgstr "" #: dist/commons.js:13 +#: src/blocks/avatar/edit.jsx:96 msgid "Loading avatar…" msgstr "" #: dist/commons.js:13 +#: packages/components/src/action-card/index.js:312 msgid "Move one position up" msgstr "" #: dist/commons.js:13 +#: packages/components/src/action-card/index.js:318 msgid "Move one position down" msgstr "" #. translators: %s is the metered period, e.g. "month" or "week". #: dist/commons.js:14 +#: src/blocks/content-gate/countdown-box/edit.jsx:91 #, js-format msgid "free articles this %s" msgstr "" #. translators: %1$s is subscribe message, %2$s is sign in link #: dist/commons.js:15 +#: src/blocks/content-gate/countdown-box/edit.jsx:111 #, js-format msgid "%1$s %2$s" msgstr "" #: dist/commons.js:15 +#: src/blocks/content-gate/countdown-box/edit.jsx:113 msgid "Sign in to an existing account." msgstr "" #: dist/commons.js:15 +#: src/blocks/content-gate/countdown-box/edit.jsx:133 msgid "Subscribe now" msgstr "" #: dist/commons.js:15 +#: src/blocks/content-gate/countdown-box/edit.jsx:150 msgid "The content gate countdown block will only display in restricted content when metering is enabled." msgstr "" @@ -8547,1038 +9530,1269 @@ msgstr "" #: dist/newspack-wizards.80278d14c9e76a6696a2.js:1 #: dist/newspack-wizards.80278d14c9e76a6696a2.js:23 #: dist/newspack-wizards.80278d14c9e76a6696a2.js:31 +#: src/wizards/componentsDemo/index.js:419 msgid "Disconnect" msgstr "" #: dist/componentsDemo.js:1 +#: src/wizards/componentsDemo/index.js:110 msgid "Simple components used for composing the UI of Newspack" msgstr "" #: dist/componentsDemo.js:1 +#: src/wizards/componentsDemo/index.js:117 msgid "Autocomplete with Suggestions (single-select)" msgstr "" #: dist/componentsDemo.js:1 +#: src/wizards/componentsDemo/index.js:119 msgid "Search for a post" msgstr "" #: dist/componentsDemo.js:1 +#: src/wizards/componentsDemo/index.js:120 +#: src/wizards/componentsDemo/index.js:132 msgid "Begin typing post title, click autocomplete result to select." msgstr "" #: dist/componentsDemo.js:1 +#: src/wizards/componentsDemo/index.js:127 msgid "Autocomplete with Suggestions (multi-select)" msgstr "" #: dist/componentsDemo.js:1 +#: src/wizards/componentsDemo/index.js:131 msgid "Search widgets" msgstr "" #: dist/componentsDemo.js:1 +#: src/wizards/componentsDemo/index.js:148 msgid "Autocomplete with Latest Posts (single-select)" msgstr "" #: dist/componentsDemo.js:1 +#: src/wizards/componentsDemo/index.js:151 +#: src/wizards/componentsDemo/index.js:162 msgid "Posts" msgstr "" #: dist/componentsDemo.js:1 +#: src/wizards/componentsDemo/index.js:158 msgid "Autocomplete with Latest Posts (multi-select)" msgstr "" #: dist/componentsDemo.js:1 +#: src/wizards/componentsDemo/index.js:172 msgid "Plugin toggles" msgstr "" #: dist/componentsDemo.js:1 +#: src/wizards/componentsDemo/index.js:179 msgid "Configure Instant Articles" msgstr "" #: dist/componentsDemo.js:1 +#: src/wizards/componentsDemo/index.js:186 msgid "Web Previews" msgstr "" #: dist/componentsDemo.js:1 +#: src/wizards/componentsDemo/index.js:188 +#: src/wizards/componentsDemo/index.js:193 +#: src/wizards/componentsDemo/index.js:196 msgid "Preview Newspack Site" msgstr "" #: dist/componentsDemo.js:1 +#: src/wizards/componentsDemo/index.js:201 msgid "Waiting" msgstr "" #: dist/componentsDemo.js:1 +#: src/wizards/componentsDemo/index.js:207 msgid "Spinner on the left" msgstr "" #: dist/componentsDemo.js:1 +#: src/wizards/componentsDemo/index.js:211 msgid "Spinner on the right" msgstr "" #: dist/componentsDemo.js:1 +#: src/wizards/componentsDemo/index.js:218 msgid "Color picker" msgstr "" #: dist/componentsDemo.js:1 +#: src/wizards/componentsDemo/index.js:220 msgid "Color Picker" msgstr "" #: dist/componentsDemo.js:1 +#: src/wizards/componentsDemo/index.js:226 msgid "Handoff Buttons" msgstr "" #: dist/componentsDemo.js:1 +#: src/wizards/componentsDemo/index.js:229 msgid "Manage AMP" msgstr "" #: dist/componentsDemo.js:1 +#: src/wizards/componentsDemo/index.js:230 msgid "Click to go to the AMP dashboard. There will be a notification bar at the top with a link to return to Newspack." msgstr "" #: dist/componentsDemo.js:1 +#: src/wizards/componentsDemo/index.js:241 msgid "Specific Yoast Page" msgstr "" #: dist/componentsDemo.js:1 +#: src/wizards/componentsDemo/index.js:246 msgid "Modal" msgstr "" #: dist/componentsDemo.js:1 +#: src/wizards/componentsDemo/index.js:249 msgid "Open modal" msgstr "" #: dist/componentsDemo.js:1 +#: src/wizards/componentsDemo/index.js:254 msgid "This is the modal title" msgstr "" #: dist/componentsDemo.js:1 +#: src/wizards/componentsDemo/index.js:258 msgid "Based on industry research, we advise to test the modal component, and continuing this sentence so we can see how the text wraps is one good way of doing that." msgstr "" #: dist/componentsDemo.js:1 +#: src/wizards/componentsDemo/index.js:268 msgid "Also dismiss" msgstr "" #: dist/componentsDemo.js:1 +#: src/wizards/componentsDemo/index.js:275 msgid "Notice" msgstr "" #: dist/componentsDemo.js:1 +#: src/wizards/componentsDemo/index.js:276 msgid "This is an info notice." msgstr "" #: dist/componentsDemo.js:1 +#: src/wizards/componentsDemo/index.js:277 msgid "This is an error notice." msgstr "" #: dist/componentsDemo.js:1 +#: src/wizards/componentsDemo/index.js:278 msgid "This is a help notice." msgstr "" #: dist/componentsDemo.js:1 +#: src/wizards/componentsDemo/index.js:279 msgid "This is a success notice." msgstr "" #: dist/componentsDemo.js:1 +#: src/wizards/componentsDemo/index.js:280 msgid "This is a warning notice." msgstr "" #: dist/componentsDemo.js:1 +#: src/wizards/componentsDemo/index.js:283 msgid "Plugin installer" msgstr "" #: dist/componentsDemo.js:1 +#: src/wizards/componentsDemo/index.js:293 msgid "Plugin installer (small)" msgstr "" #: dist/componentsDemo.js:1 +#: src/wizards/componentsDemo/index.js:304 msgid "Example One" msgstr "" #: dist/componentsDemo.js:1 +#: src/wizards/componentsDemo/index.js:305 msgid "Has an action button." msgstr "" #: dist/componentsDemo.js:1 +#: src/wizards/componentsDemo/index.js:312 msgid "Example Two" msgstr "" #: dist/componentsDemo.js:1 +#: src/wizards/componentsDemo/index.js:313 msgid "Has action button and secondary button." msgstr "" #: dist/componentsDemo.js:1 +#: src/wizards/componentsDemo/index.js:325 msgid "Example Three" msgstr "" #: dist/componentsDemo.js:1 +#: src/wizards/componentsDemo/index.js:326 msgid "Waiting/in-progress state, no action button." msgstr "" #: dist/componentsDemo.js:1 +#: src/wizards/componentsDemo/index.js:331 msgid "Example Four" msgstr "" #: dist/componentsDemo.js:1 +#: src/wizards/componentsDemo/index.js:332 msgid "Error notification" msgstr "" #: dist/componentsDemo.js:1 +#: src/wizards/componentsDemo/index.js:345 msgid "Example Five" msgstr "" #: dist/componentsDemo.js:1 +#: src/wizards/componentsDemo/index.js:346 msgid "Warning notification, action button" msgstr "" #: dist/componentsDemo.js:1 +#: src/wizards/componentsDemo/index.js:355 msgid "Example Six" msgstr "" #: dist/componentsDemo.js:1 +#: src/wizards/componentsDemo/index.js:356 msgid "Static text, no button" msgstr "" #: dist/componentsDemo.js:1 +#: src/wizards/componentsDemo/index.js:360 msgid "Example Seven" msgstr "" #: dist/componentsDemo.js:1 +#: src/wizards/componentsDemo/index.js:361 msgid "Static text, secondary action button." msgstr "" #: dist/componentsDemo.js:1 +#: src/wizards/componentsDemo/index.js:370 msgid "Example Eight" msgstr "" #: dist/componentsDemo.js:1 +#: src/wizards/componentsDemo/index.js:371 msgid "Image with link and action button." msgstr "" #: dist/componentsDemo.js:1 +#: src/wizards/componentsDemo/index.js:380 msgid "Example Nine" msgstr "" #: dist/componentsDemo.js:1 +#: src/wizards/componentsDemo/index.js:381 msgid "Action Card with Toggle Control." msgstr "" #: dist/componentsDemo.js:1 +#: src/wizards/componentsDemo/index.js:390 +#: src/wizards/componentsDemo/index.js:426 msgid "Premium" msgstr "" #: dist/componentsDemo.js:1 +#: src/wizards/componentsDemo/index.js:391 msgid "Example Ten" msgstr "" #: dist/componentsDemo.js:1 +#: src/wizards/componentsDemo/index.js:392 msgid "An example of an action card with a badge." msgstr "" #: dist/componentsDemo.js:1 +#: src/wizards/componentsDemo/index.js:400 msgid "Example Eleven" msgstr "" #: dist/componentsDemo.js:1 +#: src/wizards/componentsDemo/index.js:401 msgid "An example of a small action card." msgstr "" #: dist/componentsDemo.js:1 +#: src/wizards/componentsDemo/index.js:402 msgid "Installing" msgstr "" #: dist/componentsDemo.js:1 +#: src/wizards/componentsDemo/index.js:408 msgid "Example Twelve" msgstr "" #: dist/componentsDemo.js:1 +#: src/wizards/componentsDemo/index.js:409 msgid "Action card with an unchecked checkbox." msgstr "" #: dist/componentsDemo.js:1 +#: src/wizards/componentsDemo/index.js:417 msgid "Example Thirteen" msgstr "" #: dist/componentsDemo.js:1 +#: src/wizards/componentsDemo/index.js:418 msgid "Action card with a checked checkbox." msgstr "" #: dist/componentsDemo.js:1 +#: src/wizards/componentsDemo/index.js:426 msgid "Archived" msgstr "" #: dist/componentsDemo.js:1 +#: src/wizards/componentsDemo/index.js:427 msgid "Example Fourteen" msgstr "" #: dist/componentsDemo.js:1 +#: src/wizards/componentsDemo/index.js:428 msgid "An example of an action card with two badges." msgstr "" #: dist/componentsDemo.js:1 +#: src/wizards/componentsDemo/index.js:435 msgid "It works" msgstr "" #: dist/componentsDemo.js:1 +#: src/wizards/componentsDemo/index.js:437 msgid "Example Fifteen" msgstr "" #: dist/componentsDemo.js:1 +#: src/wizards/componentsDemo/index.js:438 msgid "An example of an action card with a success badge." msgstr "" #: dist/componentsDemo.js:1 +#: src/wizards/componentsDemo/index.js:445 msgid "Uh oh" msgstr "" #: dist/componentsDemo.js:1 +#: src/wizards/componentsDemo/index.js:447 msgid "Example Sixteen" msgstr "" #: dist/componentsDemo.js:1 +#: src/wizards/componentsDemo/index.js:448 msgid "An example of an action card with a warning badge." msgstr "" #: dist/componentsDemo.js:1 +#: src/wizards/componentsDemo/index.js:455 msgid "Oh no" msgstr "" #: dist/componentsDemo.js:1 +#: src/wizards/componentsDemo/index.js:457 msgid "Example Seventeen" msgstr "" #: dist/componentsDemo.js:1 +#: src/wizards/componentsDemo/index.js:458 msgid "An example of an action card with an error badge." msgstr "" #: dist/componentsDemo.js:1 +#: src/wizards/componentsDemo/index.js:465 msgid "Brand awareness" msgstr "" #: dist/componentsDemo.js:1 +#: src/wizards/componentsDemo/index.js:467 msgid "Example Eighteen" msgstr "" #: dist/componentsDemo.js:1 +#: src/wizards/componentsDemo/index.js:468 msgid "An example of an action card with a brand-colored badge." msgstr "" #: dist/componentsDemo.js:1 +#: src/wizards/componentsDemo/index.js:475 +#: src/wizards/componentsDemo/index.js:481 msgid "Handoff" msgstr "" #: dist/componentsDemo.js:1 +#: src/wizards/componentsDemo/index.js:476 msgid "An example of an action card with Handoff." msgstr "" #: dist/componentsDemo.js:1 +#: src/wizards/componentsDemo/index.js:482 msgid " An example of an action card with Handoff and EditLink." msgstr "" #: dist/componentsDemo.js:1 +#: src/wizards/componentsDemo/index.js:489 msgid "Expandable" msgstr "" #: dist/componentsDemo.js:1 +#: src/wizards/componentsDemo/index.js:490 msgid " An example of an action card with expandable inner content." msgstr "" #: dist/componentsDemo.js:1 +#: src/wizards/componentsDemo/index.js:492 msgid "Some inner content to display when the card is expanded." msgstr "" #: dist/componentsDemo.js:1 +#: src/wizards/componentsDemo/index.js:495 msgid "Image Uploader" msgstr "" #: dist/componentsDemo.js:1 #: dist/contribution-meter-block.js:1 +#: src/blocks/contribution-meter/components/InspectorPanel.jsx:46 +#: src/blocks/contribution-meter/components/InspectorPanel.jsx:138 +#: src/wizards/componentsDemo/index.js:506 msgid "Progress bar" msgstr "" #: dist/componentsDemo.js:1 +#: src/wizards/componentsDemo/index.js:508 +#: src/wizards/componentsDemo/index.js:510 msgid "Progress made" msgstr "" #: dist/componentsDemo.js:1 +#: src/wizards/componentsDemo/index.js:513 msgid "Select dropdowns" msgstr "" #: dist/componentsDemo.js:1 +#: src/wizards/componentsDemo/index.js:516 msgid "Label for Select with a preselection" msgstr "" #: dist/componentsDemo.js:1 +#: src/wizards/componentsDemo/index.js:521 +#: src/wizards/componentsDemo/index.js:536 +#: src/wizards/componentsDemo/index.js:551 +#: src/wizards/componentsDemo/index.js:566 msgid "- Select -" msgstr "" #: dist/componentsDemo.js:1 +#: src/wizards/componentsDemo/index.js:524 +#: src/wizards/componentsDemo/index.js:539 +#: src/wizards/componentsDemo/index.js:554 +#: src/wizards/componentsDemo/index.js:569 +#: src/wizards/componentsDemo/index.js:580 msgid "First" msgstr "" #: dist/componentsDemo.js:1 +#: src/wizards/componentsDemo/index.js:525 +#: src/wizards/componentsDemo/index.js:540 +#: src/wizards/componentsDemo/index.js:555 +#: src/wizards/componentsDemo/index.js:570 +#: src/wizards/componentsDemo/index.js:581 msgid "Second" msgstr "" #: dist/componentsDemo.js:1 +#: src/wizards/componentsDemo/index.js:526 +#: src/wizards/componentsDemo/index.js:541 +#: src/wizards/componentsDemo/index.js:556 +#: src/wizards/componentsDemo/index.js:571 +#: src/wizards/componentsDemo/index.js:582 msgid "Third" msgstr "" #: dist/componentsDemo.js:1 +#: src/wizards/componentsDemo/index.js:531 msgid "Label for Select with no preselection" msgstr "" #: dist/componentsDemo.js:1 +#: src/wizards/componentsDemo/index.js:546 msgid "Label for disabled Select" msgstr "" #: dist/componentsDemo.js:1 +#: src/wizards/componentsDemo/index.js:577 msgid "Multi-select" msgstr "" #: dist/componentsDemo.js:1 +#: src/wizards/componentsDemo/index.js:583 msgid "Fourth" msgstr "" #: dist/componentsDemo.js:1 +#: src/wizards/componentsDemo/index.js:584 msgid "Fifth" msgstr "" #: dist/componentsDemo.js:1 +#: src/wizards/componentsDemo/index.js:585 msgid "Sixth" msgstr "" #: dist/componentsDemo.js:1 +#: src/wizards/componentsDemo/index.js:586 msgid "Seventh" msgstr "" #: dist/componentsDemo.js:1 +#: src/wizards/componentsDemo/index.js:593 msgid "Selected:" msgstr "" #: dist/componentsDemo.js:1 +#: src/wizards/componentsDemo/index.js:596 msgid "none" msgstr "" #: dist/componentsDemo.js:1 +#: src/wizards/componentsDemo/index.js:603 msgid "Buttons" msgstr "" #: dist/componentsDemo.js:1 #: dist/newspack-wizards.80278d14c9e76a6696a2.js:23 #: dist/setup.js:7 +#: src/wizards/componentsDemo/index.js:609 +#: src/wizards/componentsDemo/index.js:620 msgid "Primary" msgstr "" #: dist/componentsDemo.js:1 #: dist/newspack-wizards.80278d14c9e76a6696a2.js:23 #: dist/setup.js:7 +#: src/wizards/componentsDemo/index.js:610 +#: src/wizards/componentsDemo/index.js:623 msgid "Secondary" msgstr "" #: dist/componentsDemo.js:1 +#: src/wizards/componentsDemo/index.js:611 +#: src/wizards/componentsDemo/index.js:626 msgid "Tertiary" msgstr "" #: dist/componentsDemo.js:1 +#: src/wizards/componentsDemo/index.js:613 +#: src/wizards/componentsDemo/index.js:630 +#: src/wizards/componentsDemo/index.js:648 msgid "isLink" msgstr "" #: dist/componentsDemo.js:1 +#: src/wizards/componentsDemo/index.js:638 msgid "isPrimary" msgstr "" #: dist/componentsDemo.js:1 +#: src/wizards/componentsDemo/index.js:641 msgid "isSecondary" msgstr "" #: dist/componentsDemo.js:1 +#: src/wizards/componentsDemo/index.js:644 msgid "isTertiary" msgstr "" #: dist/componentsDemo.js:1 +#: src/wizards/componentsDemo/index.js:654 msgid "ButtonCard" msgstr "" #: dist/componentsDemo.js:1 +#: src/wizards/componentsDemo/index.js:658 msgid "Customize the look and feel of your site" msgstr "" #: dist/componentsDemo.js:1 +#: src/wizards/componentsDemo/index.js:664 msgid "Start a new site" msgstr "" #: dist/componentsDemo.js:1 +#: src/wizards/componentsDemo/index.js:665 msgid "You don't have content to import" msgstr "" #: dist/componentsDemo.js:1 +#: src/wizards/componentsDemo/index.js:672 msgid "Migrate an existing site" msgstr "" #: dist/componentsDemo.js:1 +#: src/wizards/componentsDemo/index.js:673 msgid "You have content to import" msgstr "" #: dist/componentsDemo.js:1 +#: src/wizards/componentsDemo/index.js:680 msgid "Add a new Podcast" msgstr "" #: dist/componentsDemo.js:1 +#: src/wizards/componentsDemo/index.js:689 msgid "Add a new Font" msgstr "" #: dist/componentsDemo.js:1 +#: src/wizards/componentsDemo/index.js:699 msgid "Plugin Settings Section" msgstr "" #: dist/componentsDemo.js:1 +#: src/wizards/componentsDemo/index.js:702 msgid "Example plugin settings" msgstr "" #: dist/componentsDemo.js:1 +#: src/wizards/componentsDemo/index.js:703 msgid "Example plugin settings description" msgstr "" #: dist/componentsDemo.js:1 +#: src/wizards/componentsDemo/index.js:709 msgid "Example Text Field" msgstr "" #: dist/componentsDemo.js:1 +#: src/wizards/componentsDemo/index.js:710 msgid "Example text field help text" msgstr "" #: dist/componentsDemo.js:1 +#: src/wizards/componentsDemo/index.js:711 msgid "Example Value" msgstr "" #: dist/componentsDemo.js:1 +#: src/wizards/componentsDemo/index.js:716 msgid "Example checkbox Field" msgstr "" #: dist/componentsDemo.js:1 +#: src/wizards/componentsDemo/index.js:717 msgid "Example checkbox field help text" msgstr "" #: dist/componentsDemo.js:1 +#: src/wizards/componentsDemo/index.js:723 msgid "Example options field" msgstr "" #: dist/componentsDemo.js:1 +#: src/wizards/componentsDemo/index.js:724 msgid "Example options field help text" msgstr "" #: dist/componentsDemo.js:1 +#: src/wizards/componentsDemo/index.js:728 +#: src/wizards/componentsDemo/index.js:745 msgid "Example Value 1" msgstr "" #: dist/componentsDemo.js:1 +#: src/wizards/componentsDemo/index.js:732 +#: src/wizards/componentsDemo/index.js:749 msgid "Example Value 2" msgstr "" #: dist/componentsDemo.js:1 +#: src/wizards/componentsDemo/index.js:739 msgid "Example multiple options field" msgstr "" #: dist/componentsDemo.js:1 +#: src/wizards/componentsDemo/index.js:740 msgid "Example multiple options field help text" msgstr "" #: dist/componentsDemo.js:1 +#: src/wizards/componentsDemo/index.js:763 msgid "Draggable Action Cards" msgstr "" #: dist/componentsDemo.js:1 +#: src/wizards/componentsDemo/index.js:779 msgid "An example of an action card that is draggable." msgstr "" #: dist/componentsDemo.js:1 +#: src/wizards/componentsDemo/index.js:785 msgid "Box Contrast" msgstr "" #: dist/componentsDemo.js:1 +#: src/wizards/componentsDemo/index.js:789 msgid "Demo 1:" msgstr "" #: dist/componentsDemo.js:1 +#: src/wizards/componentsDemo/index.js:794 msgid "Demo 2:" msgstr "" #: dist/componentsDemo.js:1 +#: src/wizards/componentsDemo/index.js:799 msgid "Demo 3:" msgstr "" #: dist/componentsDemo.js:1 +#: src/wizards/componentsDemo/index.js:806 msgid "Newspack Icons" msgstr "" #: dist/componentsDemo.js:1 +#: src/wizards/componentsDemo/index.js:809 msgid "This is a collection of custom SVG icons for Newspack projects.
They are available in newspack-plugin in the newspack-icons package.
There's also an npm package that you can install to use them in your projects." msgstr "" #. translators: %s is the list of plans. #: dist/content-gate-editor-memberships.js:4 +#: src/content-gate/editor/memberships.js:20 #, js-format msgid "You're currently editing a gate for content restricted by: %s" msgstr "" #: dist/content-gate-editor-memberships.js:4 +#: src/content-gate/editor/memberships.js:40 msgid "WooCommerce Memberships" msgstr "" #. translators: %s is the list of plans. #: dist/content-gate-editor-memberships.js:7 +#: src/content-gate/editor/memberships.js:55 #, js-format msgid "This gate will be rendered for the following membership plans: %s" msgstr "" #. translators: %s is the link to the primary gate. #: dist/content-gate-editor-memberships.js:10 +#: src/content-gate/editor/memberships.js:64 #, js-format msgid "Edit the primary gate, or:" msgstr "" #: dist/content-gate-editor-memberships.js:10 +#: src/content-gate/editor/memberships.js:44 msgid "This gate will be rendered for all membership plans. Manage custom gates for when the content is locked behind a specific plan:" msgstr "" #: dist/content-gate-editor-memberships.js:10 +#: src/content-gate/editor/memberships.js:78 msgid "published" msgstr "" #: dist/content-gate-editor-memberships.js:10 +#: src/content-gate/editor/memberships.js:78 msgid "draft" msgstr "" #: dist/content-gate-editor-memberships.js:10 +#: src/content-gate/editor/memberships.js:84 msgid "edit gate" msgstr "" #: dist/content-gate-editor-memberships.js:10 +#: src/content-gate/editor/memberships.js:84 msgid "create gate" msgstr "" #: dist/content-gate-editor-metering.js:1 +#: src/content-gate/editor/metering-settings.js:21 msgid "Enable metering" msgstr "" #: dist/content-gate-editor-metering.js:1 +#: src/content-gate/editor/metering-settings.js:24 msgid "Implement metering to configure access to restricted content before showing the gate." msgstr "" #: dist/content-gate-editor-metering.js:1 +#: src/content-gate/editor/metering-settings.js:32 msgid "Available views for anonymous readers" msgstr "" #: dist/content-gate-editor-metering.js:1 +#: src/content-gate/editor/metering-settings.js:34 msgid "Number of times an anonymous reader can view gated content. If set to 0, anonymous readers will always render the gate." msgstr "" #: dist/content-gate-editor-metering.js:1 +#: src/content-gate/editor/metering-settings.js:43 msgid "Available views for registered readers" msgstr "" #: dist/content-gate-editor-metering.js:1 +#: src/content-gate/editor/metering-settings.js:45 msgid "Number of times a registered reader can view gated content. If set to 0, registered readers without membership plan will always render the gate." msgstr "" #: dist/content-gate-editor-metering.js:1 +#: src/content-gate/editor/metering-settings.js:51 msgid "Time period" msgstr "" #: dist/content-gate-editor-metering.js:1 +#: src/content-gate/editor/metering-settings.js:59 msgid "The time period during which the metering views will be counted. For example, if the metering period is set to a week, the metering views will be reset every week." msgstr "" #. translators: Overlay Position #: dist/content-gate-editor.js:5 #: dist/content-gate-editor.js:17 +#: packages/components/src/position-control/index.js:32 +#: packages/components/src/position-control/index.js:64 msgid "Center" msgstr "" #. translators: Overlay Position #: dist/content-gate-editor.js:7 +#: packages/components/src/position-control/index.js:37 msgid "Bottom" msgstr "" #. translators: Overlay Position #: dist/content-gate-editor.js:9 +#: packages/components/src/position-control/index.js:44 msgid "Top Left" msgstr "" #. translators: Overlay Position #: dist/content-gate-editor.js:11 +#: packages/components/src/position-control/index.js:49 msgid "Top Center" msgstr "" #. translators: Overlay Position #: dist/content-gate-editor.js:13 +#: packages/components/src/position-control/index.js:54 msgid "Top Right" msgstr "" #. translators: Overlay Position #: dist/content-gate-editor.js:15 +#: packages/components/src/position-control/index.js:59 msgid "Center Left" msgstr "" #. translators: Overlay Position #: dist/content-gate-editor.js:19 +#: packages/components/src/position-control/index.js:69 msgid "Center Right" msgstr "" #. translators: Overlay Position #: dist/content-gate-editor.js:21 +#: packages/components/src/position-control/index.js:74 msgid "Bottom Left" msgstr "" #. translators: Overlay Position #: dist/content-gate-editor.js:23 +#: packages/components/src/position-control/index.js:79 msgid "Bottom Center" msgstr "" #. translators: Overlay Position #: dist/content-gate-editor.js:25 +#: packages/components/src/position-control/index.js:84 msgid "Bottom Right" msgstr "" #: dist/content-gate-editor.js:25 +#: packages/components/src/position-control/index.js:90 msgid "Select Position" msgstr "" #: dist/content-gate-editor.js:25 +#: src/content-gate/editor/editor.js:21 msgid "Overlay" msgstr "" #: dist/content-gate-editor.js:25 +#: src/content-gate/editor/editor.js:25 msgid "center" msgstr "" #: dist/content-gate-editor.js:25 +#: src/content-gate/editor/editor.js:26 msgid "bottom" msgstr "" #: dist/content-gate-editor.js:25 #: dist/contribution-meter-block.js:1 +#: src/blocks/contribution-meter/components/InspectorPanel.jsx:168 +#: src/content-gate/editor/editor.js:30 msgid "Extra Small" msgstr "" #: dist/content-gate-editor.js:25 +#: src/content-gate/editor/editor.js:34 msgid "Full Width" msgstr "" #: dist/content-gate-editor.js:25 +#: src/content-gate/editor/editor.js:60 msgid "Newspack Campaign prompts won't be displayed when rendering gated content." msgstr "" #: dist/content-gate-editor.js:25 +#: src/content-gate/editor/editor.js:63 msgid "Styles" msgstr "" #: dist/content-gate-editor.js:25 +#: src/content-gate/editor/editor.js:79 msgid "Apply fade to last paragraph" msgstr "" #: dist/content-gate-editor.js:25 +#: src/content-gate/editor/editor.js:82 msgid "Whether to apply a gradient fade effect before rendering the gate." msgstr "" #. translators: %s is the placement of the gate. #: dist/content-gate-editor.js:28 +#: src/content-gate/editor/editor.js:101 #, js-format msgid "The gate will be displayed at the %s of the screen." msgstr "" #: dist/content-gate-editor.js:28 +#: src/content-gate/editor/editor.js:113 msgid "Default paragraph count" msgstr "" #: dist/content-gate-editor.js:28 +#: src/content-gate/editor/editor.js:115 msgid "Number of paragraphs that readers can see above the content gate." msgstr "" #: dist/content-gate-editor.js:28 +#: src/content-gate/editor/editor.js:119 msgid "Use “More” tag to manually place content gate" msgstr "" #: dist/content-gate-editor.js:28 +#: src/content-gate/editor/editor.js:122 msgid "Override the default paragraph count on pages where a “More” block has been placed." msgstr "" #: dist/contribution-meter-block.js:1 +#: src/blocks/contribution-meter/components/InspectorPanel.jsx:41 msgid "Color" msgstr "" #: dist/contribution-meter-block.js:1 +#: src/blocks/contribution-meter/components/InspectorPanel.jsx:51 msgid "Contribution data" msgstr "" #: dist/contribution-meter-block.js:1 +#: src/blocks/contribution-meter/components/InspectorPanel.jsx:54 msgid "Goal amount" msgstr "" #: dist/contribution-meter-block.js:1 +#: src/blocks/contribution-meter/components/InspectorPanel.jsx:55 msgid "Set the total contribution goal." msgstr "" #: dist/contribution-meter-block.js:1 +#: src/blocks/contribution-meter/components/InspectorPanel.jsx:71 msgid "Start date" msgstr "" #: dist/contribution-meter-block.js:1 +#: src/blocks/contribution-meter/components/InspectorPanel.jsx:72 msgid "Contributions from this date are included in the total amount raised." msgstr "" #: dist/contribution-meter-block.js:1 +#: src/blocks/contribution-meter/components/InspectorPanel.jsx:91 msgid "Set end date" msgstr "" #: dist/contribution-meter-block.js:1 +#: src/blocks/contribution-meter/components/InspectorPanel.jsx:103 msgid "Enable this if the contribution meter should stop counting contributions after a specific date." msgstr "" #: dist/contribution-meter-block.js:1 +#: src/blocks/contribution-meter/components/InspectorPanel.jsx:112 msgid "End date" msgstr "" #: dist/contribution-meter-block.js:1 +#: src/blocks/contribution-meter/components/InspectorPanel.jsx:113 msgid "Contributions up to and including this date are counted in the total amount raised." msgstr "" #: dist/contribution-meter-block.js:1 +#: src/blocks/contribution-meter/components/InspectorPanel.jsx:140 msgid "Show goal" msgstr "" #: dist/contribution-meter-block.js:1 +#: src/blocks/contribution-meter/components/InspectorPanel.jsx:143 msgid "Display the total target amount next to the progress bar." msgstr "" #: dist/contribution-meter-block.js:1 +#: src/blocks/contribution-meter/components/InspectorPanel.jsx:147 msgid "Show amount raised" msgstr "" #: dist/contribution-meter-block.js:1 +#: src/blocks/contribution-meter/components/InspectorPanel.jsx:150 msgid "Display the total contributions received so far." msgstr "" #: dist/contribution-meter-block.js:1 +#: src/blocks/contribution-meter/components/InspectorPanel.jsx:154 msgid "Show percentage" msgstr "" #: dist/contribution-meter-block.js:1 +#: src/blocks/contribution-meter/components/InspectorPanel.jsx:157 msgid "Display progress as a percentage of the goal." msgstr "" #: dist/contribution-meter-block.js:1 +#: src/blocks/contribution-meter/components/InspectorPanel.jsx:161 msgid "Thickness" msgstr "" #: dist/contribution-meter-block.js:1 +#: src/blocks/contribution-meter/components/InspectorPanel.jsx:165 msgid "Adjust the visual weight of the progress bar." msgstr "" #: dist/contribution-meter-block.js:1 #: dist/newspack-wizards.80278d14c9e76a6696a2.js:23 #: dist/setup.js:7 +#: src/blocks/contribution-meter/components/InspectorPanel.jsx:168 msgid "XS" msgstr "" -#. translators: 1: amount raised, 2: goal amount -#: dist/contribution-meter-block.js:2 -#, js-format -msgid "%1$s raised of %2$s goal" -msgstr "" - -#. translators: %s: amount raised -#: dist/contribution-meter-block.js:3 -#, js-format -msgid "%s raised" -msgstr "" - -#. translators: %s: goal amount -#: dist/contribution-meter-block.js:4 -#, js-format -msgid "%s goal" -msgstr "" - -#: dist/contribution-meter-block.js:4 -msgid "Contribution progress indicator" -msgstr "" - -#: dist/contribution-meter-block.js:4 -#: dist/contribution-meter-block.js:5 -msgid "Contribution Meter" -msgstr "" - -#. translators: 1: percentage, 2: formatted goal amount -#: dist/contribution-meter-block.js:5 -#, js-format -msgid "%1$s%% progress toward %2$s goal" -msgstr "" - -#: dist/contribution-meter-block.js:5 -msgid "raised" -msgstr "" - -#: dist/contribution-meter-block.js:5 -msgid "goal" -msgstr "" - #: dist/contribution-meter-block.js:5 +#: src/blocks/contribution-meter/index.js:29 msgid "donations" msgstr "" #: dist/contribution-meter-block.js:5 +#: src/blocks/contribution-meter/index.js:30 msgid "fundraising" msgstr "" #: dist/contribution-meter-block.js:5 +#: src/blocks/contribution-meter/index.js:31 msgid "revenue" msgstr "" #: dist/contribution-meter-block.js:5 +#: src/blocks/contribution-meter/index.js:32 msgid "progress" msgstr "" #: dist/contribution-meter-block.js:5 +#: src/blocks/contribution-meter/index.js:34 msgid "campaign" msgstr "" #: dist/contribution-meter-block.js:5 +#: src/blocks/contribution-meter/index.js:35 msgid "contribution" msgstr "" #: dist/contribution-meter-block.js:5 +#: src/blocks/contribution-meter/index.js:36 msgid "meter" msgstr "" #: dist/contribution-meter-block.js:5 +#: src/blocks/contribution-meter/index.js:39 msgid "Display progress toward your goal. Works seamlessly with the Donate block." msgstr "" #: dist/contribution-meter-block.js:5 +#: src/blocks/contribution-meter/edit.jsx:95 msgid "Failed to load contribution data." msgstr "" #: dist/contribution-meter-block.js:5 +#: src/blocks/contribution-meter/edit.jsx:135 msgid "Loading contribution data…" msgstr "" #: dist/contribution-meter-block.js:5 #: dist/newspack-wizards.80278d14c9e76a6696a2.js:10 +#: src/blocks/contribution-meter/edit.jsx:142 msgid "Error" msgstr "" #: dist/contribution-meter-block.js:5 +#: src/blocks/contribution-meter/index.js:48 msgid "Linear" msgstr "" #: dist/contribution-meter-block.js:5 +#: src/blocks/contribution-meter/index.js:54 msgid "Circular" msgstr "" #: dist/handoff-banner.js:1 +#: src/wizards/handoff-banner/index.js:20 msgid "Return to Newspack after completing configuration" msgstr "" #: dist/handoff-banner.js:1 +#: src/wizards/handoff-banner/index.js:21 msgid "Back to Newspack" msgstr "" #: dist/indesign-export.js:1 +#: src/indesign-export/index.js:40 msgid "InDesign Exporter Tag Name" msgstr "" #: dist/indesign-export.js:1 +#: src/indesign-export/index.js:41 msgid "Define a custom tag name to be used in the Tagged Text export." msgstr "" #: dist/newsletters.js:1 #: dist/setup.js:4 +#: src/wizards/newsletters/views/settings/index.js:167 msgid "Email Service Provider" msgstr "" #: dist/newsletters.js:1 #: dist/setup.js:4 +#: src/wizards/newsletters/views/settings/index.js:168 msgid "Connect an email service provider (ESP) to author and send newsletters." msgstr "" #: dist/newsletters.js:1 #: dist/setup.js:4 +#: src/wizards/newsletters/views/settings/index.js:182 msgid "Authorize Application" msgstr "" #. translators: %s is the name of the ESP. #: dist/newsletters.js:4 #: dist/setup.js:7 +#: src/wizards/newsletters/views/settings/index.js:186 #, js-format msgid "Authorize %s to connect to Newspack." msgstr "" #: dist/newsletters.js:4 #: dist/setup.js:7 +#: src/wizards/newsletters/views/settings/index.js:191 msgid "Authorize" msgstr "" #: dist/newsletters.js:4 #: dist/setup.js:7 +#: src/wizards/newsletters/views/settings/index.js:197 msgid "Campaign Monitor support will be deprecated" msgstr "" #: dist/newsletters.js:4 #: dist/setup.js:7 +#: src/wizards/newsletters/views/settings/index.js:312 msgid "Please save your ESP settings before changing your subscription lists." msgstr "" #: dist/newsletters.js:4 #: dist/setup.js:7 +#: src/wizards/newsletters/views/settings/index.js:320 msgid "Subscription Lists" msgstr "" #: dist/newsletters.js:4 #: dist/setup.js:7 +#: src/wizards/newsletters/views/settings/index.js:321 msgid "Manage the lists available to readers for subscription." msgstr "" #: dist/newsletters.js:4 #: dist/setup.js:7 +#: src/wizards/newsletters/views/settings/index.js:333 msgid "Add New" msgstr "" #: dist/newsletters.js:4 #: dist/setup.js:7 +#: src/wizards/newsletters/views/settings/index.js:337 msgid "Save Subscription Lists" msgstr "" #: dist/newsletters.js:4 #: dist/setup.js:7 +#: src/wizards/newsletters/views/settings/index.js:366 msgid "List title" msgstr "" #: dist/newsletters.js:4 #: dist/setup.js:7 +#: src/wizards/newsletters/views/settings/index.js:372 msgid "List description" msgstr "" #: dist/newsletters.js:4 +#: src/wizards/newsletters/index.js:34 +#: src/wizards/newsletters/views/tracking/index.js:55 msgid "Ads Tracking" msgstr "" #: dist/newsletters.js:4 +#: src/wizards/newsletters/views/tracking/index.js:57 msgid "Click-tracking" msgstr "" #: dist/newsletters.js:4 +#: src/wizards/newsletters/views/tracking/index.js:58 msgid "Track the clicks on ads in your newsletter." msgstr "" #: dist/newsletters.js:4 +#: src/wizards/newsletters/views/tracking/index.js:64 msgid "Ads impressions" msgstr "" #: dist/newsletters.js:4 +#: src/wizards/newsletters/views/tracking/index.js:65 msgid "Track the impressions of ads in your newsletter." msgstr "" #: dist/newsletters.js:4 +#: src/wizards/newsletters/index.js:50 msgid "Newsletters / Tracking" msgstr "" @@ -9932,6 +11146,7 @@ msgstr "" #: dist/newspack-wizards.80278d14c9e76a6696a2.js:1 #: dist/other-scripts/nextdoor.js:1 +#: src/other-scripts/nextdoor/index.js:194 msgid "Status:" msgstr "" @@ -11088,230 +12303,289 @@ msgid "Site status" msgstr "" #: dist/other-scripts/corrections-modal.js:1 +#: src/other-scripts/corrections-modal/index.js:181 msgid "Changes have been saved successfully." msgstr "" #: dist/other-scripts/corrections-modal.js:1 +#: src/other-scripts/corrections-modal/index.js:198 msgid "Manage corrections and clarifications" msgstr "" #: dist/other-scripts/corrections-modal.js:1 +#: src/other-scripts/corrections-modal/index.js:201 msgid "Manage corrections" msgstr "" #: dist/other-scripts/corrections-modal.js:1 +#: src/other-scripts/corrections-modal/index.js:222 msgid "No corrections or clarifications have been added." msgstr "" #: dist/other-scripts/corrections-modal.js:1 #: dist/other-scripts/corrections-modal.js:4 +#: src/other-scripts/corrections-modal/index.js:247 +#: src/other-scripts/corrections-modal/index.js:334 msgid "Priority" msgstr "" #: dist/other-scripts/corrections-modal.js:1 +#: src/other-scripts/corrections-modal/index.js:255 +#: src/other-scripts/corrections-modal/index.js:274 msgid "Date" msgstr "" #: dist/other-scripts/corrections-modal.js:1 #: dist/other-scripts/corrections-modal.js:4 +#: src/other-scripts/corrections-modal/index.js:292 +#: src/other-scripts/corrections-modal/index.js:341 msgid "Description" msgstr "" #. translators: %s: type of correction. #: dist/other-scripts/corrections-modal.js:4 +#: src/other-scripts/corrections-modal/index.js:308 #, js-format msgid "%s deleted successfully." msgstr "" #. translators: %s: type of correction. #: dist/other-scripts/corrections-modal.js:7 +#: src/other-scripts/corrections-modal/index.js:362 #, js-format msgid "%s added successfully." msgstr "" #: dist/other-scripts/corrections-modal.js:7 +#: src/other-scripts/corrections-modal/index.js:391 msgid "Save & close" msgstr "" #: dist/other-scripts/corrections-modal.js:7 +#: src/other-scripts/corrections-modal/index.js:400 msgid "Add new correction" msgstr "" #. translators: 1: "From" email address 2: "From" email name #: dist/other-scripts/emails.js:2 +#: src/other-scripts/emails/index.js:60 #, js-format msgid "This email will be sent from %1$s <%2$s>." msgstr "" #: dist/other-scripts/emails.js:2 +#: src/other-scripts/emails/index.js:95 msgid "Instructions" msgstr "" #: dist/other-scripts/emails.js:2 +#: src/other-scripts/emails/index.js:96 msgid "Use the following placeholders to insert dynamic content in the email:" msgstr "" #: dist/other-scripts/emails.js:2 +#: src/other-scripts/emails/index.js:107 msgid "Subject" msgstr "" #: dist/other-scripts/emails.js:2 +#: src/other-scripts/emails/index.js:109 msgid "Testing" msgstr "" #: dist/other-scripts/emails.js:2 +#: src/other-scripts/emails/index.js:111 msgid "Send to" msgstr "" #: dist/other-scripts/emails.js:2 +#: src/other-scripts/emails/index.js:83 msgid "Test email sent!" msgstr "" #: dist/other-scripts/emails.js:2 +#: src/other-scripts/emails/index.js:118 msgid "Sending…" msgstr "" #: dist/other-scripts/emails.js:2 +#: src/other-scripts/emails/index.js:118 msgid "Send" msgstr "" #: dist/other-scripts/nextdoor.js:1 +#: src/other-scripts/nextdoor/index.js:57 msgid "Failed to load Nextdoor status." msgstr "" #: dist/other-scripts/nextdoor.js:1 +#: src/other-scripts/nextdoor/index.js:78 msgid "Failed to communicate with Nextdoor." msgstr "" #: dist/other-scripts/nextdoor.js:1 +#: src/other-scripts/nextdoor/index.js:280 msgid "Nextdoor" msgstr "" #: dist/other-scripts/nextdoor.js:1 +#: src/other-scripts/nextdoor/index.js:154 msgid "Loading Nextdoor status…" msgstr "" #: dist/other-scripts/nextdoor.js:1 +#: src/other-scripts/nextdoor/index.js:171 msgid "Post must be published before sharing to Nextdoor." msgstr "" #: dist/other-scripts/nextdoor.js:1 +#: src/other-scripts/nextdoor/index.js:200 msgid "This post is available in your Nextdoor community." msgstr "" #: dist/other-scripts/nextdoor.js:1 +#: src/other-scripts/nextdoor/index.js:204 msgid "This post could not be published on Nextdoor for the following reasons:" msgstr "" #: dist/other-scripts/nextdoor.js:1 +#: src/other-scripts/nextdoor/index.js:210 msgid "Please refer to the Publisher policy on Nextdoor for content guidelines." msgstr "" #: dist/other-scripts/nextdoor.js:1 +#: src/other-scripts/nextdoor/index.js:215 msgid "This post is being processed by Nextdoor. It may take a while (~1 Hour) as Nextdoor runs ML models on it for its distribution and moderation before it starts appearing on the page profile." msgstr "" #: dist/other-scripts/nextdoor.js:1 +#: src/other-scripts/nextdoor/index.js:222 msgid "This post was removed from Nextdoor." msgstr "" #: dist/other-scripts/nextdoor.js:1 +#: src/other-scripts/nextdoor/index.js:228 msgid "Shared:" msgstr "" #: dist/other-scripts/nextdoor.js:1 +#: src/other-scripts/nextdoor/index.js:234 msgid "Updated:" msgstr "" #: dist/other-scripts/nextdoor.js:1 +#: src/other-scripts/nextdoor/index.js:100 msgid "Update sent to Nextdoor." msgstr "" #: dist/other-scripts/nextdoor.js:1 +#: src/other-scripts/nextdoor/index.js:101 msgid "Failed to update." msgstr "" #: dist/other-scripts/nextdoor.js:1 +#: src/other-scripts/nextdoor/index.js:247 msgid "Updating…" msgstr "" #: dist/other-scripts/nextdoor.js:1 +#: src/other-scripts/nextdoor/index.js:110 msgid "Post removed from Nextdoor." msgstr "" #: dist/other-scripts/nextdoor.js:1 +#: src/other-scripts/nextdoor/index.js:111 msgid "Failed to remove post." msgstr "" #: dist/other-scripts/nextdoor.js:1 +#: src/other-scripts/nextdoor/index.js:257 msgid "Removing…" msgstr "" #: dist/other-scripts/nextdoor.js:1 +#: src/other-scripts/nextdoor/index.js:267 msgid "Share this post to your Nextdoor community to engage local readers." msgstr "" #: dist/other-scripts/nextdoor.js:1 +#: src/other-scripts/nextdoor/index.js:90 msgid "Published to Nextdoor." msgstr "" #: dist/other-scripts/nextdoor.js:1 +#: src/other-scripts/nextdoor/index.js:91 msgid "Failed to publish." msgstr "" #: dist/other-scripts/nextdoor.js:1 +#: src/other-scripts/nextdoor/index.js:270 msgid "Publishing…" msgstr "" #: dist/other-scripts/nextdoor.js:1 +#: src/other-scripts/nextdoor/index.js:270 msgid "Publish on Nextdoor" msgstr "" #: dist/other-scripts/nextdoor.js:1 +#: src/other-scripts/nextdoor/index.js:163 msgid "You do not have permission to publish to Nextdoor. Please contact the site administrator." msgstr "" #: dist/other-scripts/recaptcha.js:1 +#: src/other-scripts/recaptcha/index.js:66 msgid "There was an error connecting with reCAPTCHA. Please reload the page and try again." msgstr "" #: dist/other-scripts/salesforce.js:1 +#: src/other-scripts/salesforce/index.js:23 msgid "Not synced" msgstr "" #: dist/other-scripts/salesforce.js:1 +#: src/other-scripts/salesforce/index.js:34 +#: src/other-scripts/salesforce/index.js:39 msgid "Error fetching status" msgstr "" #: dist/plugins-screen.js:1 +#: src/plugins-screen/plugins-screen.js:47 msgid "Plugin review required" msgstr "" #: dist/plugins-screen.js:1 +#: src/plugins-screen/plugins-screen.js:48 msgid "Please submit a plugin for review by the Newspack Team before installing it on your website. If you plan to install an approved plugin, feel free to close this message." msgstr "" #: dist/plugins-screen.js:1 +#: src/plugins-screen/plugins-screen.js:56 msgid "Plugin Review Form" msgstr "" #: dist/plugins-screen.js:1 +#: src/plugins-screen/plugins-screen.js:57 msgid "Approved Plugins List" msgstr "" #: dist/plugins-screen.js:1 +#: src/plugins-screen/plugins-screen.js:58 msgid "Close this message" msgstr "" #: dist/setup.js:7 +#: src/wizards/setup/views/services/ReaderRevenue.js:27 msgid "To edit settings for News Revenue Hub, visit the Reader Revenue section from the Newspack dashboard." msgstr "" #: dist/setup.js:7 +#: src/wizards/setup/views/services/ReaderRevenue.js:33 msgid "Use a third-party reader revenue platform." msgstr "" #: dist/setup.js:7 +#: src/wizards/setup/views/services/ReaderRevenue.js:37 msgid "Use Newspack’s advanced integration with WooCommerce. For more configuration options, visit the Reader Revenue section from the Newspack dashboard." msgstr "" @@ -11339,97 +12613,168 @@ msgstr "" msgid "loading" msgstr "" +#: src/wizards/audience/components/active-campaign.js:33 +msgid "ActiveCampaign settings" +msgstr "" + +#: src/wizards/audience/components/active-campaign.js:34 +msgid "Settings for the ActiveCampaign integration." +msgstr "" + +#: src/wizards/audience/components/active-campaign.js:38 +msgid "No Master List selected. You will not be able to send reader activity data to ActiveCampaign." +msgstr "" + +#: src/wizards/audience/components/active-campaign.js:47 +msgid "Choose a list to which all registered readers will be added." +msgstr "" + +#: src/wizards/audience/components/mailchimp.js:33 +msgid "Mailchimp settings" +msgstr "" + +#: src/wizards/audience/components/mailchimp.js:34 +msgid "Settings for the Mailchimp integration." +msgstr "" + +#: src/wizards/audience/components/mailchimp.js:38 +msgid "No Mailchimp audience selected. You will not be able to send reader activity data to Mailchimp." +msgstr "" + +#: src/wizards/audience/components/mailchimp.js:59 +msgid "Choose which MailChimp status readers should have by default if they are not subscribed to any newsletters" +msgstr "" + +#: src/wizards/audience/views/campaigns/analytics/index.js:18 +msgid "Coming soon" +msgstr "" + +#: src/wizards/audience/views/campaigns/analytics/index.js:21 +msgid "We’re currently redesigning this dashboard to accommodate GA4 and give you deeper insights into Campaign performance. In the meantime, you can find Campaign event data within your GA account. Review this " +msgstr "" + +#: src/wizards/audience/views/campaigns/analytics/index.js:26 +msgid "help page" +msgstr "" + +#: src/wizards/audience/views/campaigns/analytics/index.js:28 +msgid " to see how Campaign data is being recorded in GA." +msgstr "" + +#: src/wizards/audience/views/campaigns/analytics/index.js:33 +msgid "View the help page" +msgstr "" + #: dist/blocks/byline/block.json +#: src/blocks/byline/block.json msgctxt "block title" msgid "Byline" msgstr "" #: dist/blocks/byline/block.json +#: src/blocks/byline/block.json msgctxt "block description" msgid "Display post author(s) with support for custom bylines and CoAuthors Plus." msgstr "" #: dist/blocks/collections/block.json +#: src/blocks/collections/block.json msgctxt "block title" msgid "Collections" msgstr "" #: dist/blocks/collections/block.json +#: src/blocks/collections/block.json msgctxt "block description" msgid "An advanced block that allows displaying collections based on different parameters and visual configurations." msgstr "" #: dist/blocks/collections/block.json +#: src/blocks/collections/block.json msgctxt "block keyword" msgid "collections" msgstr "" #: dist/blocks/collections/block.json +#: src/blocks/collections/block.json msgctxt "block keyword" msgid "issues" msgstr "" #: dist/blocks/collections/block.json +#: src/blocks/collections/block.json msgctxt "block keyword" msgid "publications" msgstr "" #: dist/blocks/collections/block.json +#: src/blocks/collections/block.json msgctxt "block keyword" msgid "magazines" msgstr "" #: dist/blocks/collections/block.json +#: src/blocks/collections/block.json msgctxt "block keyword" msgid "groups" msgstr "" #: dist/blocks/contribution-meter/block.json +#: src/blocks/contribution-meter/block.json msgctxt "block title" msgid "Contribution Meter" msgstr "" #: dist/blocks/contribution-meter/block.json +#: src/blocks/contribution-meter/block.json msgctxt "block description" msgid "Display progress toward your goal. Works seamlessly with the Donate block." msgstr "" #: dist/blocks/contribution-meter/block.json +#: src/blocks/contribution-meter/block.json msgctxt "block keyword" msgid "donations" msgstr "" #: dist/blocks/contribution-meter/block.json +#: src/blocks/contribution-meter/block.json msgctxt "block keyword" msgid "fundraising" msgstr "" #: dist/blocks/contribution-meter/block.json +#: src/blocks/contribution-meter/block.json msgctxt "block keyword" msgid "revenue" msgstr "" #: dist/blocks/contribution-meter/block.json +#: src/blocks/contribution-meter/block.json msgctxt "block keyword" msgid "progress" msgstr "" #: dist/blocks/contribution-meter/block.json +#: src/blocks/contribution-meter/block.json msgctxt "block keyword" msgid "goal" msgstr "" #: dist/blocks/contribution-meter/block.json +#: src/blocks/contribution-meter/block.json msgctxt "block keyword" msgid "campaign" msgstr "" #: dist/blocks/reader-registration/block.json +#: src/blocks/reader-registration/block.json msgctxt "block title" msgid "Reader Registration" msgstr "" #: dist/blocks/reader-registration/block.json +#: src/blocks/reader-registration/block.json msgctxt "block description" msgid "Register a reader with their email." msgstr "" From 06133182802429d771bec1b0b54a25665f44e7a3 Mon Sep 17 00:00:00 2001 From: Miguel Peixe Date: Tue, 27 Jan 2026 11:56:26 -0300 Subject: [PATCH 20/21] chore(release): update reusable release workflow reference to deprecate CircleCI --- .github/workflows/release.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index a02449046d..ba074e4ca2 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -18,9 +18,8 @@ jobs: release: needs: build - uses: Automattic/newspack-scripts/.github/workflows/reusable-release.yml@1b654fae0446656ac8221ae7400a42bbd80b2140 + uses: Automattic/newspack-scripts/.github/workflows/reusable-release.yml@refactor/deprecate-circle-ci secrets: - GITHUB_REPOSITORY: ${{ github.repository }} NPM_TOKEN: ${{ secrets.NPM_TOKEN }} post-release: From 5207b0cad8d5d90504856b58dd1fc6632d284370 Mon Sep 17 00:00:00 2001 From: Miguel Peixe Date: Fri, 30 Jan 2026 13:49:59 -0300 Subject: [PATCH 21/21] fix: reference default branch --- .github/workflows/build-and-test.yml | 6 +++--- .github/workflows/build-distributable.yml | 2 +- .github/workflows/i18n.yml | 2 +- .github/workflows/php.yml | 4 ++-- .github/workflows/release.yml | 6 +++--- 5 files changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/build-and-test.yml b/.github/workflows/build-and-test.yml index fd46881274..ea8ac8e49d 100644 --- a/.github/workflows/build-and-test.yml +++ b/.github/workflows/build-and-test.yml @@ -16,12 +16,12 @@ concurrency: jobs: build: - uses: Automattic/newspack-scripts/.github/workflows/reusable-build.yml@refactor/deprecate-circle-ci + uses: Automattic/newspack-scripts/.github/workflows/reusable-build.yml lint-js-scss: needs: build - uses: Automattic/newspack-scripts/.github/workflows/reusable-lint-js-scss.yml@refactor/deprecate-circle-ci + uses: Automattic/newspack-scripts/.github/workflows/reusable-lint-js-scss.yml test-js: needs: build - uses: Automattic/newspack-scripts/.github/workflows/reusable-test-js.yml@refactor/deprecate-circle-ci + uses: Automattic/newspack-scripts/.github/workflows/reusable-test-js.yml diff --git a/.github/workflows/build-distributable.yml b/.github/workflows/build-distributable.yml index b6dd2e4c01..fec6e2ee8c 100644 --- a/.github/workflows/build-distributable.yml +++ b/.github/workflows/build-distributable.yml @@ -9,6 +9,6 @@ concurrency: jobs: build-distributable: - uses: Automattic/newspack-scripts/.github/workflows/reusable-build-distributable.yml@refactor/deprecate-circle-ci + uses: Automattic/newspack-scripts/.github/workflows/reusable-build-distributable.yml with: archive-name: newspack-plugin diff --git a/.github/workflows/i18n.yml b/.github/workflows/i18n.yml index e2d4788d21..b031c5e29b 100644 --- a/.github/workflows/i18n.yml +++ b/.github/workflows/i18n.yml @@ -11,4 +11,4 @@ concurrency: jobs: i18n: - uses: Automattic/newspack-scripts/.github/workflows/reusable-i18n.yml@refactor/deprecate-circle-ci + uses: Automattic/newspack-scripts/.github/workflows/reusable-i18n.yml diff --git a/.github/workflows/php.yml b/.github/workflows/php.yml index 29df675bc4..2f30659fd8 100644 --- a/.github/workflows/php.yml +++ b/.github/workflows/php.yml @@ -16,7 +16,7 @@ concurrency: jobs: lint-php: - uses: Automattic/newspack-scripts/.github/workflows/reusable-lint-php.yml@refactor/deprecate-circle-ci + uses: Automattic/newspack-scripts/.github/workflows/reusable-lint-php.yml test-php: - uses: Automattic/newspack-scripts/.github/workflows/reusable-test-php.yml@refactor/deprecate-circle-ci + uses: Automattic/newspack-scripts/.github/workflows/reusable-test-php.yml diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index ba074e4ca2..0e7743593f 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -14,15 +14,15 @@ concurrency: jobs: build: - uses: Automattic/newspack-scripts/.github/workflows/reusable-build.yml@refactor/deprecate-circle-ci + uses: Automattic/newspack-scripts/.github/workflows/reusable-build.yml release: needs: build - uses: Automattic/newspack-scripts/.github/workflows/reusable-release.yml@refactor/deprecate-circle-ci + uses: Automattic/newspack-scripts/.github/workflows/reusable-release.yml secrets: NPM_TOKEN: ${{ secrets.NPM_TOKEN }} post-release: if: github.ref == 'refs/heads/release' needs: release - uses: Automattic/newspack-scripts/.github/workflows/reusable-post-release.yml@refactor/deprecate-circle-ci + uses: Automattic/newspack-scripts/.github/workflows/reusable-post-release.yml