├── .editorconfig ├── .eslintignore ├── .eslintrc.js ├── .github ├── ISSUE_TEMPLATE.md ├── ISSUE_TEMPLATE │ ├── 1-bug-report.yml │ ├── 2-enhancement.yml │ ├── Woo-express-bug-form.yml │ └── config.yml ├── PULL_REQUEST_TEMPLATE.md └── workflows │ ├── check-bundle-size.yml │ ├── check-coding-standards.yml │ ├── ci-release-smoke-test.yml │ ├── ci-release.yml │ ├── ci.yml │ └── setup-node.yml ├── .gitignore ├── .husky └── pre-commit ├── .nvmrc ├── .prettierrc.js ├── LICENSE ├── README.md ├── assets ├── css │ ├── customize-store.css │ ├── ecommerce-navigation.css │ ├── ecommerce.css │ ├── free-trial-admin.css │ ├── free-trial-plan-picker-banner.css │ └── nav-unification.css ├── fonts │ ├── WCPay.eot │ ├── WCPay.svg │ ├── WCPay.ttf │ └── WCPay.woff ├── images │ ├── cart-active.png │ ├── cart-default.png │ ├── cart-hovered.png │ ├── extensions-landing-page-hero-desktop.png │ ├── extensions-landing-page-hero-mobile.png │ ├── icon-flag.svg │ ├── klarna.png │ ├── plugins-landing-page-hero-desktop.png │ ├── square.png │ ├── wcpay-banner.svg │ ├── welcome-modal-illustration-1.png │ ├── welcome-modal-illustration-2.png │ └── woocommerce-setup.svg └── scripts │ ├── free-trial-wc-payments.js │ ├── frontend-banner-tracks.js │ └── wc-data-patch.js ├── babel.config.js ├── bin ├── check-versions.sh ├── install-wp-tests.sh └── lint-php-staged.sh ├── class-wc-calypso-bridge-dotcom-features.php ├── class-wc-calypso-bridge-shared.php ├── class-wc-calypso-bridge.php ├── composer.json ├── composer.lock ├── includes ├── atomic-api │ └── class-wc-calypso-bridge-atomic-launch-api.php ├── class-wc-calypso-bridge-addons-screen.php ├── class-wc-calypso-bridge-addons.php ├── class-wc-calypso-bridge-base-admin-menu.php ├── class-wc-calypso-bridge-coming-soon.php ├── class-wc-calypso-bridge-crowdsignal-redirect.php ├── class-wc-calypso-bridge-customize-store.php ├── class-wc-calypso-bridge-events.php ├── class-wc-calypso-bridge-filters.php ├── class-wc-calypso-bridge-footer-credits.php ├── class-wc-calypso-bridge-free-trial-payment-restrictions.php ├── class-wc-calypso-bridge-free-trial-payment-task.php ├── class-wc-calypso-bridge-free-trial-store-details-task.php ├── class-wc-calypso-bridge-fse.php ├── class-wc-calypso-bridge-helper-functions.php ├── class-wc-calypso-bridge-hide-alerts.php ├── class-wc-calypso-bridge-jetpack.php ├── class-wc-calypso-bridge-notes.php ├── class-wc-calypso-bridge-plugins.php ├── class-wc-calypso-bridge-product-import-fix.php ├── class-wc-calypso-bridge-setup-tasks.php ├── class-wc-calypso-bridge-setup.php ├── class-wc-calypso-bridge-skip-obw.php ├── class-wc-calypso-bridge-smart-shipping.php ├── class-wc-calypso-bridge-themes-setup.php ├── class-wc-calypso-bridge-tracks.php ├── class-wc-calypso-bridge-woo-express-introductory-offers.php ├── class-wc-calypso-bridge-woocommerce-admin-features.php ├── experiments │ └── class-wc-calypso-bridge-task-list-reminderbar-experiment.php ├── free-trial │ ├── class-wc-calypso-bridge-free-trial-expired-plan-redirects.php │ ├── class-wc-calypso-bridge-free-trial-hide-tasklist-tasks.php │ ├── class-wc-calypso-bridge-free-trial-orders-changes.php │ ├── class-wc-calypso-bridge-free-trial-orders-notice.php │ ├── class-wc-calypso-bridge-free-trial-plan-picker-banner.php │ ├── class-wc-calypso-bridge-free-trial-plugins-screen.php │ ├── class-wc-calypso-bridge-free-trial-wc-payments.php │ └── partners │ │ ├── class-wc-calypso-bridge-partner-paypal.php │ │ ├── class-wc-calypso-bridge-partner-square.php │ │ └── class-wc-calypso-bridge-partner-stripe.php ├── notes │ ├── class-wc-calypso-bridge-choose-domain.php │ ├── class-wc-calypso-bridge-free-trial-welcome.php │ └── data │ │ └── class-wc-calypso-bridge-admin-note-data-store.php ├── tasks │ ├── class-wc-calypso-task-add-domain.php │ ├── class-wc-calypso-task-appearance.php │ ├── class-wc-calypso-task-free-trial-payments.php │ ├── class-wc-calypso-task-free-trial-store-details.php │ ├── class-wc-calypso-task-get-paid-with-paypal.php │ ├── class-wc-calypso-task-get-paid-with-square.php │ ├── class-wc-calypso-task-get-paid-with-stripe.php │ ├── class-wc-calypso-task-headstart-products.php │ └── class-wc-calypso-task-launch-site.php ├── templates │ └── html-admin-page-addons-landing-page.php └── wc-calypso-bridge-deprecated-functions.php ├── jest-unit.config.js ├── languages ├── wc-calypso-bridge-ar-09bb012e7dde92df64cb62b6649b1279.json ├── wc-calypso-bridge-ar-9a24f2fa7a9667f948a7250d074c3a30.json ├── wc-calypso-bridge-ar-b465a58df1aa4e563112b65e45dffa1c.json ├── wc-calypso-bridge-ar-beb9e19fb5e7cb316b39d09ff6ca8bdf.json ├── wc-calypso-bridge-ar-ce1126179ccf98c51c6a61cf74680416.json ├── wc-calypso-bridge-ar-d306b16f43f72fde801a43dea46bfd64.json ├── wc-calypso-bridge-ar-dfbff627e6c248bcb3b61d7d06da9ca9.json ├── wc-calypso-bridge-ar.mo ├── wc-calypso-bridge-ar.po ├── wc-calypso-bridge-de_DE-09bb012e7dde92df64cb62b6649b1279.json ├── wc-calypso-bridge-de_DE-9a24f2fa7a9667f948a7250d074c3a30.json ├── wc-calypso-bridge-de_DE-b465a58df1aa4e563112b65e45dffa1c.json ├── wc-calypso-bridge-de_DE-beb9e19fb5e7cb316b39d09ff6ca8bdf.json ├── wc-calypso-bridge-de_DE-ce1126179ccf98c51c6a61cf74680416.json ├── wc-calypso-bridge-de_DE-d306b16f43f72fde801a43dea46bfd64.json ├── wc-calypso-bridge-de_DE-dfbff627e6c248bcb3b61d7d06da9ca9.json ├── wc-calypso-bridge-de_DE.mo ├── wc-calypso-bridge-de_DE.po ├── wc-calypso-bridge-es_CL-09bb012e7dde92df64cb62b6649b1279.json ├── wc-calypso-bridge-es_CL-9a24f2fa7a9667f948a7250d074c3a30.json ├── wc-calypso-bridge-es_CL-b465a58df1aa4e563112b65e45dffa1c.json ├── wc-calypso-bridge-es_CL-beb9e19fb5e7cb316b39d09ff6ca8bdf.json ├── wc-calypso-bridge-es_CL-ce1126179ccf98c51c6a61cf74680416.json ├── wc-calypso-bridge-es_CL-d306b16f43f72fde801a43dea46bfd64.json ├── wc-calypso-bridge-es_CL-dfbff627e6c248bcb3b61d7d06da9ca9.json ├── wc-calypso-bridge-es_CL.mo ├── wc-calypso-bridge-es_CL.po ├── wc-calypso-bridge-es_ES-09bb012e7dde92df64cb62b6649b1279.json ├── wc-calypso-bridge-es_ES-9a24f2fa7a9667f948a7250d074c3a30.json ├── wc-calypso-bridge-es_ES-b465a58df1aa4e563112b65e45dffa1c.json ├── wc-calypso-bridge-es_ES-beb9e19fb5e7cb316b39d09ff6ca8bdf.json ├── wc-calypso-bridge-es_ES-ce1126179ccf98c51c6a61cf74680416.json ├── wc-calypso-bridge-es_ES-d306b16f43f72fde801a43dea46bfd64.json ├── wc-calypso-bridge-es_ES-dfbff627e6c248bcb3b61d7d06da9ca9.json ├── wc-calypso-bridge-es_ES.mo ├── wc-calypso-bridge-es_ES.po ├── wc-calypso-bridge-es_MX-09bb012e7dde92df64cb62b6649b1279.json ├── wc-calypso-bridge-es_MX-9a24f2fa7a9667f948a7250d074c3a30.json ├── wc-calypso-bridge-es_MX-b465a58df1aa4e563112b65e45dffa1c.json ├── wc-calypso-bridge-es_MX-beb9e19fb5e7cb316b39d09ff6ca8bdf.json ├── wc-calypso-bridge-es_MX-ce1126179ccf98c51c6a61cf74680416.json ├── wc-calypso-bridge-es_MX-d306b16f43f72fde801a43dea46bfd64.json ├── wc-calypso-bridge-es_MX-dfbff627e6c248bcb3b61d7d06da9ca9.json ├── wc-calypso-bridge-es_MX.mo ├── wc-calypso-bridge-es_MX.po ├── wc-calypso-bridge-fr_BE-09bb012e7dde92df64cb62b6649b1279.json ├── wc-calypso-bridge-fr_BE-9a24f2fa7a9667f948a7250d074c3a30.json ├── wc-calypso-bridge-fr_BE-b465a58df1aa4e563112b65e45dffa1c.json ├── wc-calypso-bridge-fr_BE-beb9e19fb5e7cb316b39d09ff6ca8bdf.json ├── wc-calypso-bridge-fr_BE-ce1126179ccf98c51c6a61cf74680416.json ├── wc-calypso-bridge-fr_BE-d306b16f43f72fde801a43dea46bfd64.json ├── wc-calypso-bridge-fr_BE-dfbff627e6c248bcb3b61d7d06da9ca9.json ├── wc-calypso-bridge-fr_BE.mo ├── wc-calypso-bridge-fr_BE.po ├── wc-calypso-bridge-fr_CA-09bb012e7dde92df64cb62b6649b1279.json ├── wc-calypso-bridge-fr_CA-9a24f2fa7a9667f948a7250d074c3a30.json ├── wc-calypso-bridge-fr_CA-b465a58df1aa4e563112b65e45dffa1c.json ├── wc-calypso-bridge-fr_CA-beb9e19fb5e7cb316b39d09ff6ca8bdf.json ├── wc-calypso-bridge-fr_CA-ce1126179ccf98c51c6a61cf74680416.json ├── wc-calypso-bridge-fr_CA-d306b16f43f72fde801a43dea46bfd64.json ├── wc-calypso-bridge-fr_CA-dfbff627e6c248bcb3b61d7d06da9ca9.json ├── wc-calypso-bridge-fr_CA.mo ├── wc-calypso-bridge-fr_CA.po ├── wc-calypso-bridge-fr_FR-09bb012e7dde92df64cb62b6649b1279.json ├── wc-calypso-bridge-fr_FR-9a24f2fa7a9667f948a7250d074c3a30.json ├── wc-calypso-bridge-fr_FR-b465a58df1aa4e563112b65e45dffa1c.json ├── wc-calypso-bridge-fr_FR-beb9e19fb5e7cb316b39d09ff6ca8bdf.json ├── wc-calypso-bridge-fr_FR-ce1126179ccf98c51c6a61cf74680416.json ├── wc-calypso-bridge-fr_FR-d306b16f43f72fde801a43dea46bfd64.json ├── wc-calypso-bridge-fr_FR-dfbff627e6c248bcb3b61d7d06da9ca9.json ├── wc-calypso-bridge-fr_FR.mo ├── wc-calypso-bridge-fr_FR.po ├── wc-calypso-bridge-he_IL-09bb012e7dde92df64cb62b6649b1279.json ├── wc-calypso-bridge-he_IL-9a24f2fa7a9667f948a7250d074c3a30.json ├── wc-calypso-bridge-he_IL-b465a58df1aa4e563112b65e45dffa1c.json ├── wc-calypso-bridge-he_IL-beb9e19fb5e7cb316b39d09ff6ca8bdf.json ├── wc-calypso-bridge-he_IL-ce1126179ccf98c51c6a61cf74680416.json ├── wc-calypso-bridge-he_IL-d306b16f43f72fde801a43dea46bfd64.json ├── wc-calypso-bridge-he_IL-dfbff627e6c248bcb3b61d7d06da9ca9.json ├── wc-calypso-bridge-he_IL.mo ├── wc-calypso-bridge-he_IL.po ├── wc-calypso-bridge-id_ID-09bb012e7dde92df64cb62b6649b1279.json ├── wc-calypso-bridge-id_ID-9a24f2fa7a9667f948a7250d074c3a30.json ├── wc-calypso-bridge-id_ID-b465a58df1aa4e563112b65e45dffa1c.json ├── wc-calypso-bridge-id_ID-beb9e19fb5e7cb316b39d09ff6ca8bdf.json ├── wc-calypso-bridge-id_ID-ce1126179ccf98c51c6a61cf74680416.json ├── wc-calypso-bridge-id_ID-d306b16f43f72fde801a43dea46bfd64.json ├── wc-calypso-bridge-id_ID-dfbff627e6c248bcb3b61d7d06da9ca9.json ├── wc-calypso-bridge-id_ID.mo ├── wc-calypso-bridge-id_ID.po ├── wc-calypso-bridge-it_IT-09bb012e7dde92df64cb62b6649b1279.json ├── wc-calypso-bridge-it_IT-9a24f2fa7a9667f948a7250d074c3a30.json ├── wc-calypso-bridge-it_IT-b465a58df1aa4e563112b65e45dffa1c.json ├── wc-calypso-bridge-it_IT-beb9e19fb5e7cb316b39d09ff6ca8bdf.json ├── wc-calypso-bridge-it_IT-ce1126179ccf98c51c6a61cf74680416.json ├── wc-calypso-bridge-it_IT-d306b16f43f72fde801a43dea46bfd64.json ├── wc-calypso-bridge-it_IT-dfbff627e6c248bcb3b61d7d06da9ca9.json ├── wc-calypso-bridge-it_IT.mo ├── wc-calypso-bridge-it_IT.po ├── wc-calypso-bridge-ja-09bb012e7dde92df64cb62b6649b1279.json ├── wc-calypso-bridge-ja-9a24f2fa7a9667f948a7250d074c3a30.json ├── wc-calypso-bridge-ja-b465a58df1aa4e563112b65e45dffa1c.json ├── wc-calypso-bridge-ja-beb9e19fb5e7cb316b39d09ff6ca8bdf.json ├── wc-calypso-bridge-ja-ce1126179ccf98c51c6a61cf74680416.json ├── wc-calypso-bridge-ja-d306b16f43f72fde801a43dea46bfd64.json ├── wc-calypso-bridge-ja-dfbff627e6c248bcb3b61d7d06da9ca9.json ├── wc-calypso-bridge-ja.mo ├── wc-calypso-bridge-ja.po ├── wc-calypso-bridge-ko_KR-09bb012e7dde92df64cb62b6649b1279.json ├── wc-calypso-bridge-ko_KR-9a24f2fa7a9667f948a7250d074c3a30.json ├── wc-calypso-bridge-ko_KR-b465a58df1aa4e563112b65e45dffa1c.json ├── wc-calypso-bridge-ko_KR-beb9e19fb5e7cb316b39d09ff6ca8bdf.json ├── wc-calypso-bridge-ko_KR-ce1126179ccf98c51c6a61cf74680416.json ├── wc-calypso-bridge-ko_KR-d306b16f43f72fde801a43dea46bfd64.json ├── wc-calypso-bridge-ko_KR-dfbff627e6c248bcb3b61d7d06da9ca9.json ├── wc-calypso-bridge-ko_KR.mo ├── wc-calypso-bridge-ko_KR.po ├── wc-calypso-bridge-nl_NL-09bb012e7dde92df64cb62b6649b1279.json ├── wc-calypso-bridge-nl_NL-9a24f2fa7a9667f948a7250d074c3a30.json ├── wc-calypso-bridge-nl_NL-b465a58df1aa4e563112b65e45dffa1c.json ├── wc-calypso-bridge-nl_NL-beb9e19fb5e7cb316b39d09ff6ca8bdf.json ├── wc-calypso-bridge-nl_NL-ce1126179ccf98c51c6a61cf74680416.json ├── wc-calypso-bridge-nl_NL-d306b16f43f72fde801a43dea46bfd64.json ├── wc-calypso-bridge-nl_NL-dfbff627e6c248bcb3b61d7d06da9ca9.json ├── wc-calypso-bridge-nl_NL.mo ├── wc-calypso-bridge-nl_NL.po ├── wc-calypso-bridge-pt_BR-09bb012e7dde92df64cb62b6649b1279.json ├── wc-calypso-bridge-pt_BR-9a24f2fa7a9667f948a7250d074c3a30.json ├── wc-calypso-bridge-pt_BR-b465a58df1aa4e563112b65e45dffa1c.json ├── wc-calypso-bridge-pt_BR-beb9e19fb5e7cb316b39d09ff6ca8bdf.json ├── wc-calypso-bridge-pt_BR-ce1126179ccf98c51c6a61cf74680416.json ├── wc-calypso-bridge-pt_BR-d306b16f43f72fde801a43dea46bfd64.json ├── wc-calypso-bridge-pt_BR-dfbff627e6c248bcb3b61d7d06da9ca9.json ├── wc-calypso-bridge-pt_BR.mo ├── wc-calypso-bridge-pt_BR.po ├── wc-calypso-bridge-ru_RU-09bb012e7dde92df64cb62b6649b1279.json ├── wc-calypso-bridge-ru_RU-9a24f2fa7a9667f948a7250d074c3a30.json ├── wc-calypso-bridge-ru_RU-b465a58df1aa4e563112b65e45dffa1c.json ├── wc-calypso-bridge-ru_RU-beb9e19fb5e7cb316b39d09ff6ca8bdf.json ├── wc-calypso-bridge-ru_RU-ce1126179ccf98c51c6a61cf74680416.json ├── wc-calypso-bridge-ru_RU-d306b16f43f72fde801a43dea46bfd64.json ├── wc-calypso-bridge-ru_RU-dfbff627e6c248bcb3b61d7d06da9ca9.json ├── wc-calypso-bridge-ru_RU.mo ├── wc-calypso-bridge-ru_RU.po ├── wc-calypso-bridge-sv_SE-09bb012e7dde92df64cb62b6649b1279.json ├── wc-calypso-bridge-sv_SE-9a24f2fa7a9667f948a7250d074c3a30.json ├── wc-calypso-bridge-sv_SE-b465a58df1aa4e563112b65e45dffa1c.json ├── wc-calypso-bridge-sv_SE-beb9e19fb5e7cb316b39d09ff6ca8bdf.json ├── wc-calypso-bridge-sv_SE-ce1126179ccf98c51c6a61cf74680416.json ├── wc-calypso-bridge-sv_SE-d306b16f43f72fde801a43dea46bfd64.json ├── wc-calypso-bridge-sv_SE-dfbff627e6c248bcb3b61d7d06da9ca9.json ├── wc-calypso-bridge-sv_SE.mo ├── wc-calypso-bridge-sv_SE.po ├── wc-calypso-bridge-tr_TR-09bb012e7dde92df64cb62b6649b1279.json ├── wc-calypso-bridge-tr_TR-9a24f2fa7a9667f948a7250d074c3a30.json ├── wc-calypso-bridge-tr_TR-b465a58df1aa4e563112b65e45dffa1c.json ├── wc-calypso-bridge-tr_TR-beb9e19fb5e7cb316b39d09ff6ca8bdf.json ├── wc-calypso-bridge-tr_TR-ce1126179ccf98c51c6a61cf74680416.json ├── wc-calypso-bridge-tr_TR-d306b16f43f72fde801a43dea46bfd64.json ├── wc-calypso-bridge-tr_TR-dfbff627e6c248bcb3b61d7d06da9ca9.json ├── wc-calypso-bridge-tr_TR.mo ├── wc-calypso-bridge-tr_TR.po ├── wc-calypso-bridge-zh_CN-09bb012e7dde92df64cb62b6649b1279.json ├── wc-calypso-bridge-zh_CN-9a24f2fa7a9667f948a7250d074c3a30.json ├── wc-calypso-bridge-zh_CN-b465a58df1aa4e563112b65e45dffa1c.json ├── wc-calypso-bridge-zh_CN-beb9e19fb5e7cb316b39d09ff6ca8bdf.json ├── wc-calypso-bridge-zh_CN-ce1126179ccf98c51c6a61cf74680416.json ├── wc-calypso-bridge-zh_CN-d306b16f43f72fde801a43dea46bfd64.json ├── wc-calypso-bridge-zh_CN-dfbff627e6c248bcb3b61d7d06da9ca9.json ├── wc-calypso-bridge-zh_CN.mo ├── wc-calypso-bridge-zh_CN.po ├── wc-calypso-bridge-zh_SG-09bb012e7dde92df64cb62b6649b1279.json ├── wc-calypso-bridge-zh_SG-9a24f2fa7a9667f948a7250d074c3a30.json ├── wc-calypso-bridge-zh_SG-b465a58df1aa4e563112b65e45dffa1c.json ├── wc-calypso-bridge-zh_SG-beb9e19fb5e7cb316b39d09ff6ca8bdf.json ├── wc-calypso-bridge-zh_SG-ce1126179ccf98c51c6a61cf74680416.json ├── wc-calypso-bridge-zh_SG-d306b16f43f72fde801a43dea46bfd64.json ├── wc-calypso-bridge-zh_SG-dfbff627e6c248bcb3b61d7d06da9ca9.json ├── wc-calypso-bridge-zh_SG.mo ├── wc-calypso-bridge-zh_SG.po ├── wc-calypso-bridge-zh_TW-09bb012e7dde92df64cb62b6649b1279.json ├── wc-calypso-bridge-zh_TW-9a24f2fa7a9667f948a7250d074c3a30.json ├── wc-calypso-bridge-zh_TW-b465a58df1aa4e563112b65e45dffa1c.json ├── wc-calypso-bridge-zh_TW-beb9e19fb5e7cb316b39d09ff6ca8bdf.json ├── wc-calypso-bridge-zh_TW-ce1126179ccf98c51c6a61cf74680416.json ├── wc-calypso-bridge-zh_TW-d306b16f43f72fde801a43dea46bfd64.json ├── wc-calypso-bridge-zh_TW-dfbff627e6c248bcb3b61d7d06da9ca9.json ├── wc-calypso-bridge-zh_TW.mo ├── wc-calypso-bridge-zh_TW.po └── wc-calypso-bridge.pot ├── package.json ├── phpcs.xml.dist ├── phpunit.xml ├── readme.txt ├── scripts ├── .gitignore ├── commands │ ├── build.js │ ├── bump-version.js │ ├── readme.js │ ├── tag.js │ └── update-translations.js ├── package.json ├── prep-release.js ├── release.js └── utils.js ├── src ├── disabled-tasks │ ├── collapsible-list.tsx │ ├── index.tsx │ └── style.scss ├── free-trial │ ├── fills │ │ ├── index.ts │ │ ├── task-headers │ │ │ ├── payments.js │ │ │ └── woocommerce-payments.js │ │ └── woocommerce-payments.js │ └── tax │ │ ├── avalara │ │ ├── card.tsx │ │ └── logo.png │ │ ├── components │ │ ├── bullet.tsx │ │ ├── connect-form.tsx │ │ ├── connect.tsx │ │ ├── location.js │ │ ├── partner-card.scss │ │ ├── partner-card.tsx │ │ ├── partners.scss │ │ ├── partners.tsx │ │ ├── store-address.tsx │ │ └── store-location.tsx │ │ ├── index.tsx │ │ ├── manual-configuration │ │ ├── configure.tsx │ │ └── index.tsx │ │ ├── utils.ts │ │ └── woocommerce-tax │ │ ├── automated-taxes.tsx │ │ ├── card.tsx │ │ ├── connect.tsx │ │ ├── index.tsx │ │ ├── logo.png │ │ ├── plugins.tsx │ │ ├── setup.scss │ │ └── setup.tsx ├── homescreen-banner │ ├── index.js │ └── style.scss ├── homescreen-progress-header │ ├── index.js │ ├── progress-header.tsx │ ├── progress-title.tsx │ ├── style.scss │ └── task-list-menu.tsx ├── i18n-loader.js ├── index.js ├── introductory-offer-banner │ ├── get-offer-message.ts │ ├── index.js │ └── style.scss ├── launch-store │ ├── images │ │ ├── card_icon.js │ │ ├── confetti.js │ │ ├── copy.js │ │ ├── globe_icon.js │ │ ├── lock.js │ │ └── products_icon.js │ ├── index.js │ └── style.scss ├── marketing │ ├── browser-image.tsx │ ├── images │ │ ├── automate-woo.svg │ │ ├── browser-people.jpg │ │ ├── gift-card.svg │ │ ├── google-ads.svg │ │ └── social-media.svg │ ├── index.tsx │ └── style.scss ├── notice │ ├── index.js │ └── style.scss ├── payment-gateway-suggestions │ ├── components │ │ ├── Action.js │ │ ├── List │ │ │ ├── Item.js │ │ │ ├── List.js │ │ │ ├── List.scss │ │ │ ├── Placeholder.js │ │ │ ├── fallback.png │ │ │ ├── index.js │ │ │ └── test │ │ │ │ └── list.js │ │ ├── Setup │ │ │ ├── Configure.js │ │ │ ├── Placeholder.js │ │ │ ├── Setup.js │ │ │ ├── Setup.scss │ │ │ ├── index.js │ │ │ └── test │ │ │ │ ├── configure.js │ │ │ │ └── setup.js │ │ ├── Toggle │ │ │ ├── Toggle.js │ │ │ ├── Toggle.scss │ │ │ └── index.js │ │ └── WCPay │ │ │ ├── Modal.js │ │ │ ├── Suggestion.js │ │ │ ├── UsageModal.js │ │ │ ├── index.js │ │ │ ├── suggestion.scss │ │ │ └── utils.js │ ├── index.js │ ├── payment-gateway-suggestions.scss │ ├── plugins │ │ └── Bacs.js │ ├── test │ │ ├── index.js │ │ └── utils.js │ └── utils.js ├── payments-welcome │ ├── banner.tsx │ ├── cards │ │ ├── amex.js │ │ ├── applepay.js │ │ ├── cb.js │ │ ├── diners.js │ │ ├── discover.js │ │ ├── gpay.js │ │ ├── jcb.js │ │ ├── maestro.js │ │ ├── mastercard.js │ │ ├── unionpay.js │ │ └── visa.js │ ├── exit-survey-modal.tsx │ ├── faq.tsx │ ├── index.tsx │ ├── strings.tsx │ ├── style.scss │ └── tracks.ts ├── plugins │ └── index.tsx ├── stylesheets │ ├── _mixins.scss │ └── _variables.scss ├── task-completion │ ├── completed-celebration-header.jsx │ ├── fill.tsx │ ├── index.tsx │ └── style.scss ├── task-fills │ ├── appearance.js │ ├── get-paid-with-paypal.js │ ├── get-paid-with-square.js │ ├── get-paid-with-stripe.js │ └── index.js ├── task-headers │ ├── add-domain.js │ ├── appearance.js │ ├── assets │ │ └── images │ │ │ ├── add-domain-illustration.png │ │ │ └── timer.svg │ ├── get-paid-with-paypal.js │ ├── get-paid-with-square.js │ ├── get-paid-with-stripe.js │ ├── index.ts │ └── products.js ├── track-menu-item.ts ├── utils │ ├── admin-settings.js │ ├── escape.js │ ├── hooks │ │ └── use-appearance-click.js │ ├── index.js │ └── storage.js ├── wc-navigation-root-url.js └── welcome-modal │ ├── index.js │ └── style.scss ├── store-on-wpcom ├── api │ ├── class-wc-calypso-bridge-data-counts-controller.php │ ├── class-wc-calypso-bridge-mailchimp-settings-controller.php │ ├── class-wc-calypso-bridge-product-reviews-controller.php │ ├── class-wc-calypso-bridge-send-invoice-controller.php │ └── class-wc-calypso-bridge-settings-email-groups-controller.php ├── assets │ ├── css │ │ ├── admin │ │ │ ├── customizer.css │ │ │ └── nav-unification.css │ │ └── masterbar.css │ ├── icon-128x128.png │ ├── icon-256x256.png │ └── js │ │ └── admin │ │ └── customizer.js ├── class-wc-calypso-bridge.php ├── inc │ ├── wc-calypso-bridge-add-bacs-accounts.php │ ├── wc-calypso-bridge-cheque-defaults.php │ ├── wc-calypso-bridge-disable-publicize.php │ ├── wc-calypso-bridge-enable-auto-update-db.php │ ├── wc-calypso-bridge-jetpack-hotfixes.php │ ├── wc-calypso-bridge-mailchimp-deactivate-hook.php │ ├── wc-calypso-bridge-masterbar-menu.php │ ├── wc-calypso-bridge-paypal-defaults.php │ └── wc-calypso-bridge-products.php ├── phpunit.xml └── tests │ ├── bootstrap.php │ └── unit-tests │ ├── bacs-accounts.php │ ├── email-groups-controller.php │ ├── paypal-method-supports.php │ └── send-invoice-controller.php ├── tests ├── bootstrap.php ├── mocks │ ├── static.js │ └── woocommerce-settings.js ├── setup │ ├── setup-globals.js │ ├── setup-react-testing-library.js │ └── setup-window-globals.js └── unit-tests │ └── example.php ├── tsconfig.json ├── typings ├── global.d.ts └── index.d.ts ├── wc-calypso-bridge.php └── webpack.config.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | !.eslintrc.js 2 | node_modules 3 | 4 | -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/1-bug-report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/.github/ISSUE_TEMPLATE/1-bug-report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/2-enhancement.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/.github/ISSUE_TEMPLATE/2-enhancement.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/Woo-express-bug-form.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/.github/ISSUE_TEMPLATE/Woo-express-bug-form.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/check-bundle-size.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/.github/workflows/check-bundle-size.yml -------------------------------------------------------------------------------- /.github/workflows/check-coding-standards.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/.github/workflows/check-coding-standards.yml -------------------------------------------------------------------------------- /.github/workflows/ci-release-smoke-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/.github/workflows/ci-release-smoke-test.yml -------------------------------------------------------------------------------- /.github/workflows/ci-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/.github/workflows/ci-release.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/setup-node.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/.github/workflows/setup-node.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env sh 2 | . "$(dirname -- "$0")/_/husky.sh" 3 | 4 | npm run lint:php:staged 5 | -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 16 2 | -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- 1 | module.exports = require("@wordpress/prettier-config"); 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/README.md -------------------------------------------------------------------------------- /assets/css/customize-store.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/assets/css/customize-store.css -------------------------------------------------------------------------------- /assets/css/ecommerce-navigation.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/assets/css/ecommerce-navigation.css -------------------------------------------------------------------------------- /assets/css/ecommerce.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/assets/css/ecommerce.css -------------------------------------------------------------------------------- /assets/css/free-trial-admin.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/assets/css/free-trial-admin.css -------------------------------------------------------------------------------- /assets/css/free-trial-plan-picker-banner.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/assets/css/free-trial-plan-picker-banner.css -------------------------------------------------------------------------------- /assets/css/nav-unification.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/assets/css/nav-unification.css -------------------------------------------------------------------------------- /assets/fonts/WCPay.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/assets/fonts/WCPay.eot -------------------------------------------------------------------------------- /assets/fonts/WCPay.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/assets/fonts/WCPay.svg -------------------------------------------------------------------------------- /assets/fonts/WCPay.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/assets/fonts/WCPay.ttf -------------------------------------------------------------------------------- /assets/fonts/WCPay.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/assets/fonts/WCPay.woff -------------------------------------------------------------------------------- /assets/images/cart-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/assets/images/cart-active.png -------------------------------------------------------------------------------- /assets/images/cart-default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/assets/images/cart-default.png -------------------------------------------------------------------------------- /assets/images/cart-hovered.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/assets/images/cart-hovered.png -------------------------------------------------------------------------------- /assets/images/extensions-landing-page-hero-desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/assets/images/extensions-landing-page-hero-desktop.png -------------------------------------------------------------------------------- /assets/images/extensions-landing-page-hero-mobile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/assets/images/extensions-landing-page-hero-mobile.png -------------------------------------------------------------------------------- /assets/images/icon-flag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/assets/images/icon-flag.svg -------------------------------------------------------------------------------- /assets/images/klarna.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/assets/images/klarna.png -------------------------------------------------------------------------------- /assets/images/plugins-landing-page-hero-desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/assets/images/plugins-landing-page-hero-desktop.png -------------------------------------------------------------------------------- /assets/images/square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/assets/images/square.png -------------------------------------------------------------------------------- /assets/images/wcpay-banner.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/assets/images/wcpay-banner.svg -------------------------------------------------------------------------------- /assets/images/welcome-modal-illustration-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/assets/images/welcome-modal-illustration-1.png -------------------------------------------------------------------------------- /assets/images/welcome-modal-illustration-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/assets/images/welcome-modal-illustration-2.png -------------------------------------------------------------------------------- /assets/images/woocommerce-setup.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/assets/images/woocommerce-setup.svg -------------------------------------------------------------------------------- /assets/scripts/free-trial-wc-payments.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/assets/scripts/free-trial-wc-payments.js -------------------------------------------------------------------------------- /assets/scripts/frontend-banner-tracks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/assets/scripts/frontend-banner-tracks.js -------------------------------------------------------------------------------- /assets/scripts/wc-data-patch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/assets/scripts/wc-data-patch.js -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/babel.config.js -------------------------------------------------------------------------------- /bin/check-versions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/bin/check-versions.sh -------------------------------------------------------------------------------- /bin/install-wp-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/bin/install-wp-tests.sh -------------------------------------------------------------------------------- /bin/lint-php-staged.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/bin/lint-php-staged.sh -------------------------------------------------------------------------------- /class-wc-calypso-bridge-dotcom-features.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/class-wc-calypso-bridge-dotcom-features.php -------------------------------------------------------------------------------- /class-wc-calypso-bridge-shared.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/class-wc-calypso-bridge-shared.php -------------------------------------------------------------------------------- /class-wc-calypso-bridge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/class-wc-calypso-bridge.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/composer.lock -------------------------------------------------------------------------------- /includes/atomic-api/class-wc-calypso-bridge-atomic-launch-api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/includes/atomic-api/class-wc-calypso-bridge-atomic-launch-api.php -------------------------------------------------------------------------------- /includes/class-wc-calypso-bridge-addons-screen.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/includes/class-wc-calypso-bridge-addons-screen.php -------------------------------------------------------------------------------- /includes/class-wc-calypso-bridge-addons.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/includes/class-wc-calypso-bridge-addons.php -------------------------------------------------------------------------------- /includes/class-wc-calypso-bridge-base-admin-menu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/includes/class-wc-calypso-bridge-base-admin-menu.php -------------------------------------------------------------------------------- /includes/class-wc-calypso-bridge-coming-soon.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/includes/class-wc-calypso-bridge-coming-soon.php -------------------------------------------------------------------------------- /includes/class-wc-calypso-bridge-crowdsignal-redirect.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/includes/class-wc-calypso-bridge-crowdsignal-redirect.php -------------------------------------------------------------------------------- /includes/class-wc-calypso-bridge-customize-store.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/includes/class-wc-calypso-bridge-customize-store.php -------------------------------------------------------------------------------- /includes/class-wc-calypso-bridge-events.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/includes/class-wc-calypso-bridge-events.php -------------------------------------------------------------------------------- /includes/class-wc-calypso-bridge-filters.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/includes/class-wc-calypso-bridge-filters.php -------------------------------------------------------------------------------- /includes/class-wc-calypso-bridge-footer-credits.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/includes/class-wc-calypso-bridge-footer-credits.php -------------------------------------------------------------------------------- /includes/class-wc-calypso-bridge-free-trial-payment-restrictions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/includes/class-wc-calypso-bridge-free-trial-payment-restrictions.php -------------------------------------------------------------------------------- /includes/class-wc-calypso-bridge-free-trial-payment-task.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/includes/class-wc-calypso-bridge-free-trial-payment-task.php -------------------------------------------------------------------------------- /includes/class-wc-calypso-bridge-free-trial-store-details-task.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/includes/class-wc-calypso-bridge-free-trial-store-details-task.php -------------------------------------------------------------------------------- /includes/class-wc-calypso-bridge-fse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/includes/class-wc-calypso-bridge-fse.php -------------------------------------------------------------------------------- /includes/class-wc-calypso-bridge-helper-functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/includes/class-wc-calypso-bridge-helper-functions.php -------------------------------------------------------------------------------- /includes/class-wc-calypso-bridge-hide-alerts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/includes/class-wc-calypso-bridge-hide-alerts.php -------------------------------------------------------------------------------- /includes/class-wc-calypso-bridge-jetpack.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/includes/class-wc-calypso-bridge-jetpack.php -------------------------------------------------------------------------------- /includes/class-wc-calypso-bridge-notes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/includes/class-wc-calypso-bridge-notes.php -------------------------------------------------------------------------------- /includes/class-wc-calypso-bridge-plugins.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/includes/class-wc-calypso-bridge-plugins.php -------------------------------------------------------------------------------- /includes/class-wc-calypso-bridge-product-import-fix.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/includes/class-wc-calypso-bridge-product-import-fix.php -------------------------------------------------------------------------------- /includes/class-wc-calypso-bridge-setup-tasks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/includes/class-wc-calypso-bridge-setup-tasks.php -------------------------------------------------------------------------------- /includes/class-wc-calypso-bridge-setup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/includes/class-wc-calypso-bridge-setup.php -------------------------------------------------------------------------------- /includes/class-wc-calypso-bridge-skip-obw.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/includes/class-wc-calypso-bridge-skip-obw.php -------------------------------------------------------------------------------- /includes/class-wc-calypso-bridge-smart-shipping.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/includes/class-wc-calypso-bridge-smart-shipping.php -------------------------------------------------------------------------------- /includes/class-wc-calypso-bridge-themes-setup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/includes/class-wc-calypso-bridge-themes-setup.php -------------------------------------------------------------------------------- /includes/class-wc-calypso-bridge-tracks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/includes/class-wc-calypso-bridge-tracks.php -------------------------------------------------------------------------------- /includes/class-wc-calypso-bridge-woo-express-introductory-offers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/includes/class-wc-calypso-bridge-woo-express-introductory-offers.php -------------------------------------------------------------------------------- /includes/class-wc-calypso-bridge-woocommerce-admin-features.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/includes/class-wc-calypso-bridge-woocommerce-admin-features.php -------------------------------------------------------------------------------- /includes/experiments/class-wc-calypso-bridge-task-list-reminderbar-experiment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/includes/experiments/class-wc-calypso-bridge-task-list-reminderbar-experiment.php -------------------------------------------------------------------------------- /includes/free-trial/class-wc-calypso-bridge-free-trial-expired-plan-redirects.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/includes/free-trial/class-wc-calypso-bridge-free-trial-expired-plan-redirects.php -------------------------------------------------------------------------------- /includes/free-trial/class-wc-calypso-bridge-free-trial-hide-tasklist-tasks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/includes/free-trial/class-wc-calypso-bridge-free-trial-hide-tasklist-tasks.php -------------------------------------------------------------------------------- /includes/free-trial/class-wc-calypso-bridge-free-trial-orders-changes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/includes/free-trial/class-wc-calypso-bridge-free-trial-orders-changes.php -------------------------------------------------------------------------------- /includes/free-trial/class-wc-calypso-bridge-free-trial-orders-notice.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/includes/free-trial/class-wc-calypso-bridge-free-trial-orders-notice.php -------------------------------------------------------------------------------- /includes/free-trial/class-wc-calypso-bridge-free-trial-plan-picker-banner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/includes/free-trial/class-wc-calypso-bridge-free-trial-plan-picker-banner.php -------------------------------------------------------------------------------- /includes/free-trial/class-wc-calypso-bridge-free-trial-plugins-screen.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/includes/free-trial/class-wc-calypso-bridge-free-trial-plugins-screen.php -------------------------------------------------------------------------------- /includes/free-trial/class-wc-calypso-bridge-free-trial-wc-payments.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/includes/free-trial/class-wc-calypso-bridge-free-trial-wc-payments.php -------------------------------------------------------------------------------- /includes/free-trial/partners/class-wc-calypso-bridge-partner-paypal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/includes/free-trial/partners/class-wc-calypso-bridge-partner-paypal.php -------------------------------------------------------------------------------- /includes/free-trial/partners/class-wc-calypso-bridge-partner-square.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/includes/free-trial/partners/class-wc-calypso-bridge-partner-square.php -------------------------------------------------------------------------------- /includes/free-trial/partners/class-wc-calypso-bridge-partner-stripe.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/includes/free-trial/partners/class-wc-calypso-bridge-partner-stripe.php -------------------------------------------------------------------------------- /includes/notes/class-wc-calypso-bridge-choose-domain.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/includes/notes/class-wc-calypso-bridge-choose-domain.php -------------------------------------------------------------------------------- /includes/notes/class-wc-calypso-bridge-free-trial-welcome.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/includes/notes/class-wc-calypso-bridge-free-trial-welcome.php -------------------------------------------------------------------------------- /includes/notes/data/class-wc-calypso-bridge-admin-note-data-store.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/includes/notes/data/class-wc-calypso-bridge-admin-note-data-store.php -------------------------------------------------------------------------------- /includes/tasks/class-wc-calypso-task-add-domain.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/includes/tasks/class-wc-calypso-task-add-domain.php -------------------------------------------------------------------------------- /includes/tasks/class-wc-calypso-task-appearance.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/includes/tasks/class-wc-calypso-task-appearance.php -------------------------------------------------------------------------------- /includes/tasks/class-wc-calypso-task-free-trial-payments.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/includes/tasks/class-wc-calypso-task-free-trial-payments.php -------------------------------------------------------------------------------- /includes/tasks/class-wc-calypso-task-free-trial-store-details.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/includes/tasks/class-wc-calypso-task-free-trial-store-details.php -------------------------------------------------------------------------------- /includes/tasks/class-wc-calypso-task-get-paid-with-paypal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/includes/tasks/class-wc-calypso-task-get-paid-with-paypal.php -------------------------------------------------------------------------------- /includes/tasks/class-wc-calypso-task-get-paid-with-square.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/includes/tasks/class-wc-calypso-task-get-paid-with-square.php -------------------------------------------------------------------------------- /includes/tasks/class-wc-calypso-task-get-paid-with-stripe.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/includes/tasks/class-wc-calypso-task-get-paid-with-stripe.php -------------------------------------------------------------------------------- /includes/tasks/class-wc-calypso-task-headstart-products.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/includes/tasks/class-wc-calypso-task-headstart-products.php -------------------------------------------------------------------------------- /includes/tasks/class-wc-calypso-task-launch-site.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/includes/tasks/class-wc-calypso-task-launch-site.php -------------------------------------------------------------------------------- /includes/templates/html-admin-page-addons-landing-page.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/includes/templates/html-admin-page-addons-landing-page.php -------------------------------------------------------------------------------- /includes/wc-calypso-bridge-deprecated-functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/includes/wc-calypso-bridge-deprecated-functions.php -------------------------------------------------------------------------------- /jest-unit.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/jest-unit.config.js -------------------------------------------------------------------------------- /languages/wc-calypso-bridge-ar-09bb012e7dde92df64cb62b6649b1279.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/languages/wc-calypso-bridge-ar-09bb012e7dde92df64cb62b6649b1279.json -------------------------------------------------------------------------------- /languages/wc-calypso-bridge-ar-9a24f2fa7a9667f948a7250d074c3a30.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/languages/wc-calypso-bridge-ar-9a24f2fa7a9667f948a7250d074c3a30.json -------------------------------------------------------------------------------- /languages/wc-calypso-bridge-ar-b465a58df1aa4e563112b65e45dffa1c.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/languages/wc-calypso-bridge-ar-b465a58df1aa4e563112b65e45dffa1c.json -------------------------------------------------------------------------------- /languages/wc-calypso-bridge-ar-beb9e19fb5e7cb316b39d09ff6ca8bdf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/languages/wc-calypso-bridge-ar-beb9e19fb5e7cb316b39d09ff6ca8bdf.json -------------------------------------------------------------------------------- /languages/wc-calypso-bridge-ar-ce1126179ccf98c51c6a61cf74680416.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/languages/wc-calypso-bridge-ar-ce1126179ccf98c51c6a61cf74680416.json -------------------------------------------------------------------------------- /languages/wc-calypso-bridge-ar-d306b16f43f72fde801a43dea46bfd64.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/languages/wc-calypso-bridge-ar-d306b16f43f72fde801a43dea46bfd64.json -------------------------------------------------------------------------------- /languages/wc-calypso-bridge-ar-dfbff627e6c248bcb3b61d7d06da9ca9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/languages/wc-calypso-bridge-ar-dfbff627e6c248bcb3b61d7d06da9ca9.json -------------------------------------------------------------------------------- /languages/wc-calypso-bridge-ar.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/languages/wc-calypso-bridge-ar.mo -------------------------------------------------------------------------------- /languages/wc-calypso-bridge-ar.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/languages/wc-calypso-bridge-ar.po -------------------------------------------------------------------------------- /languages/wc-calypso-bridge-de_DE-09bb012e7dde92df64cb62b6649b1279.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/languages/wc-calypso-bridge-de_DE-09bb012e7dde92df64cb62b6649b1279.json -------------------------------------------------------------------------------- /languages/wc-calypso-bridge-de_DE-9a24f2fa7a9667f948a7250d074c3a30.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/languages/wc-calypso-bridge-de_DE-9a24f2fa7a9667f948a7250d074c3a30.json -------------------------------------------------------------------------------- /languages/wc-calypso-bridge-de_DE-b465a58df1aa4e563112b65e45dffa1c.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/languages/wc-calypso-bridge-de_DE-b465a58df1aa4e563112b65e45dffa1c.json -------------------------------------------------------------------------------- /languages/wc-calypso-bridge-de_DE-beb9e19fb5e7cb316b39d09ff6ca8bdf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/languages/wc-calypso-bridge-de_DE-beb9e19fb5e7cb316b39d09ff6ca8bdf.json -------------------------------------------------------------------------------- /languages/wc-calypso-bridge-de_DE-ce1126179ccf98c51c6a61cf74680416.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/languages/wc-calypso-bridge-de_DE-ce1126179ccf98c51c6a61cf74680416.json -------------------------------------------------------------------------------- /languages/wc-calypso-bridge-de_DE-d306b16f43f72fde801a43dea46bfd64.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/languages/wc-calypso-bridge-de_DE-d306b16f43f72fde801a43dea46bfd64.json -------------------------------------------------------------------------------- /languages/wc-calypso-bridge-de_DE-dfbff627e6c248bcb3b61d7d06da9ca9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/languages/wc-calypso-bridge-de_DE-dfbff627e6c248bcb3b61d7d06da9ca9.json -------------------------------------------------------------------------------- /languages/wc-calypso-bridge-de_DE.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/languages/wc-calypso-bridge-de_DE.mo -------------------------------------------------------------------------------- /languages/wc-calypso-bridge-de_DE.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/languages/wc-calypso-bridge-de_DE.po -------------------------------------------------------------------------------- /languages/wc-calypso-bridge-es_CL-09bb012e7dde92df64cb62b6649b1279.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/languages/wc-calypso-bridge-es_CL-09bb012e7dde92df64cb62b6649b1279.json -------------------------------------------------------------------------------- /languages/wc-calypso-bridge-es_CL-9a24f2fa7a9667f948a7250d074c3a30.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/languages/wc-calypso-bridge-es_CL-9a24f2fa7a9667f948a7250d074c3a30.json -------------------------------------------------------------------------------- /languages/wc-calypso-bridge-es_CL-b465a58df1aa4e563112b65e45dffa1c.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/languages/wc-calypso-bridge-es_CL-b465a58df1aa4e563112b65e45dffa1c.json -------------------------------------------------------------------------------- /languages/wc-calypso-bridge-es_CL-beb9e19fb5e7cb316b39d09ff6ca8bdf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/languages/wc-calypso-bridge-es_CL-beb9e19fb5e7cb316b39d09ff6ca8bdf.json -------------------------------------------------------------------------------- /languages/wc-calypso-bridge-es_CL-ce1126179ccf98c51c6a61cf74680416.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/languages/wc-calypso-bridge-es_CL-ce1126179ccf98c51c6a61cf74680416.json -------------------------------------------------------------------------------- /languages/wc-calypso-bridge-es_CL-d306b16f43f72fde801a43dea46bfd64.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/languages/wc-calypso-bridge-es_CL-d306b16f43f72fde801a43dea46bfd64.json -------------------------------------------------------------------------------- /languages/wc-calypso-bridge-es_CL-dfbff627e6c248bcb3b61d7d06da9ca9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/languages/wc-calypso-bridge-es_CL-dfbff627e6c248bcb3b61d7d06da9ca9.json -------------------------------------------------------------------------------- /languages/wc-calypso-bridge-es_CL.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/languages/wc-calypso-bridge-es_CL.mo -------------------------------------------------------------------------------- /languages/wc-calypso-bridge-es_CL.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/languages/wc-calypso-bridge-es_CL.po -------------------------------------------------------------------------------- /languages/wc-calypso-bridge-es_ES-09bb012e7dde92df64cb62b6649b1279.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/languages/wc-calypso-bridge-es_ES-09bb012e7dde92df64cb62b6649b1279.json -------------------------------------------------------------------------------- /languages/wc-calypso-bridge-es_ES-9a24f2fa7a9667f948a7250d074c3a30.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/languages/wc-calypso-bridge-es_ES-9a24f2fa7a9667f948a7250d074c3a30.json -------------------------------------------------------------------------------- /languages/wc-calypso-bridge-es_ES-b465a58df1aa4e563112b65e45dffa1c.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/languages/wc-calypso-bridge-es_ES-b465a58df1aa4e563112b65e45dffa1c.json -------------------------------------------------------------------------------- /languages/wc-calypso-bridge-es_ES-beb9e19fb5e7cb316b39d09ff6ca8bdf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/languages/wc-calypso-bridge-es_ES-beb9e19fb5e7cb316b39d09ff6ca8bdf.json -------------------------------------------------------------------------------- /languages/wc-calypso-bridge-es_ES-ce1126179ccf98c51c6a61cf74680416.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/languages/wc-calypso-bridge-es_ES-ce1126179ccf98c51c6a61cf74680416.json -------------------------------------------------------------------------------- /languages/wc-calypso-bridge-es_ES-d306b16f43f72fde801a43dea46bfd64.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/languages/wc-calypso-bridge-es_ES-d306b16f43f72fde801a43dea46bfd64.json -------------------------------------------------------------------------------- /languages/wc-calypso-bridge-es_ES-dfbff627e6c248bcb3b61d7d06da9ca9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/languages/wc-calypso-bridge-es_ES-dfbff627e6c248bcb3b61d7d06da9ca9.json -------------------------------------------------------------------------------- /languages/wc-calypso-bridge-es_ES.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/languages/wc-calypso-bridge-es_ES.mo -------------------------------------------------------------------------------- /languages/wc-calypso-bridge-es_ES.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/languages/wc-calypso-bridge-es_ES.po -------------------------------------------------------------------------------- /languages/wc-calypso-bridge-es_MX-09bb012e7dde92df64cb62b6649b1279.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/languages/wc-calypso-bridge-es_MX-09bb012e7dde92df64cb62b6649b1279.json -------------------------------------------------------------------------------- /languages/wc-calypso-bridge-es_MX-9a24f2fa7a9667f948a7250d074c3a30.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/languages/wc-calypso-bridge-es_MX-9a24f2fa7a9667f948a7250d074c3a30.json -------------------------------------------------------------------------------- /languages/wc-calypso-bridge-es_MX-b465a58df1aa4e563112b65e45dffa1c.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/languages/wc-calypso-bridge-es_MX-b465a58df1aa4e563112b65e45dffa1c.json -------------------------------------------------------------------------------- /languages/wc-calypso-bridge-es_MX-beb9e19fb5e7cb316b39d09ff6ca8bdf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/languages/wc-calypso-bridge-es_MX-beb9e19fb5e7cb316b39d09ff6ca8bdf.json -------------------------------------------------------------------------------- /languages/wc-calypso-bridge-es_MX-ce1126179ccf98c51c6a61cf74680416.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/languages/wc-calypso-bridge-es_MX-ce1126179ccf98c51c6a61cf74680416.json -------------------------------------------------------------------------------- /languages/wc-calypso-bridge-es_MX-d306b16f43f72fde801a43dea46bfd64.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/languages/wc-calypso-bridge-es_MX-d306b16f43f72fde801a43dea46bfd64.json -------------------------------------------------------------------------------- /languages/wc-calypso-bridge-es_MX-dfbff627e6c248bcb3b61d7d06da9ca9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/languages/wc-calypso-bridge-es_MX-dfbff627e6c248bcb3b61d7d06da9ca9.json -------------------------------------------------------------------------------- /languages/wc-calypso-bridge-es_MX.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/languages/wc-calypso-bridge-es_MX.mo -------------------------------------------------------------------------------- /languages/wc-calypso-bridge-es_MX.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/languages/wc-calypso-bridge-es_MX.po -------------------------------------------------------------------------------- /languages/wc-calypso-bridge-fr_BE-09bb012e7dde92df64cb62b6649b1279.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/languages/wc-calypso-bridge-fr_BE-09bb012e7dde92df64cb62b6649b1279.json -------------------------------------------------------------------------------- /languages/wc-calypso-bridge-fr_BE-9a24f2fa7a9667f948a7250d074c3a30.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/languages/wc-calypso-bridge-fr_BE-9a24f2fa7a9667f948a7250d074c3a30.json -------------------------------------------------------------------------------- /languages/wc-calypso-bridge-fr_BE-b465a58df1aa4e563112b65e45dffa1c.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/languages/wc-calypso-bridge-fr_BE-b465a58df1aa4e563112b65e45dffa1c.json -------------------------------------------------------------------------------- /languages/wc-calypso-bridge-fr_BE-beb9e19fb5e7cb316b39d09ff6ca8bdf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/languages/wc-calypso-bridge-fr_BE-beb9e19fb5e7cb316b39d09ff6ca8bdf.json -------------------------------------------------------------------------------- /languages/wc-calypso-bridge-fr_BE-ce1126179ccf98c51c6a61cf74680416.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/languages/wc-calypso-bridge-fr_BE-ce1126179ccf98c51c6a61cf74680416.json -------------------------------------------------------------------------------- /languages/wc-calypso-bridge-fr_BE-d306b16f43f72fde801a43dea46bfd64.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/languages/wc-calypso-bridge-fr_BE-d306b16f43f72fde801a43dea46bfd64.json -------------------------------------------------------------------------------- /languages/wc-calypso-bridge-fr_BE-dfbff627e6c248bcb3b61d7d06da9ca9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/languages/wc-calypso-bridge-fr_BE-dfbff627e6c248bcb3b61d7d06da9ca9.json -------------------------------------------------------------------------------- /languages/wc-calypso-bridge-fr_BE.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/languages/wc-calypso-bridge-fr_BE.mo -------------------------------------------------------------------------------- /languages/wc-calypso-bridge-fr_BE.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/languages/wc-calypso-bridge-fr_BE.po -------------------------------------------------------------------------------- /languages/wc-calypso-bridge-fr_CA-09bb012e7dde92df64cb62b6649b1279.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/languages/wc-calypso-bridge-fr_CA-09bb012e7dde92df64cb62b6649b1279.json -------------------------------------------------------------------------------- /languages/wc-calypso-bridge-fr_CA-9a24f2fa7a9667f948a7250d074c3a30.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/languages/wc-calypso-bridge-fr_CA-9a24f2fa7a9667f948a7250d074c3a30.json -------------------------------------------------------------------------------- /languages/wc-calypso-bridge-fr_CA-b465a58df1aa4e563112b65e45dffa1c.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/languages/wc-calypso-bridge-fr_CA-b465a58df1aa4e563112b65e45dffa1c.json -------------------------------------------------------------------------------- /languages/wc-calypso-bridge-fr_CA-beb9e19fb5e7cb316b39d09ff6ca8bdf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/languages/wc-calypso-bridge-fr_CA-beb9e19fb5e7cb316b39d09ff6ca8bdf.json -------------------------------------------------------------------------------- /languages/wc-calypso-bridge-fr_CA-ce1126179ccf98c51c6a61cf74680416.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/languages/wc-calypso-bridge-fr_CA-ce1126179ccf98c51c6a61cf74680416.json -------------------------------------------------------------------------------- /languages/wc-calypso-bridge-fr_CA-d306b16f43f72fde801a43dea46bfd64.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/languages/wc-calypso-bridge-fr_CA-d306b16f43f72fde801a43dea46bfd64.json -------------------------------------------------------------------------------- /languages/wc-calypso-bridge-fr_CA-dfbff627e6c248bcb3b61d7d06da9ca9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/languages/wc-calypso-bridge-fr_CA-dfbff627e6c248bcb3b61d7d06da9ca9.json -------------------------------------------------------------------------------- /languages/wc-calypso-bridge-fr_CA.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/languages/wc-calypso-bridge-fr_CA.mo -------------------------------------------------------------------------------- /languages/wc-calypso-bridge-fr_CA.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/languages/wc-calypso-bridge-fr_CA.po -------------------------------------------------------------------------------- /languages/wc-calypso-bridge-fr_FR-09bb012e7dde92df64cb62b6649b1279.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/languages/wc-calypso-bridge-fr_FR-09bb012e7dde92df64cb62b6649b1279.json -------------------------------------------------------------------------------- /languages/wc-calypso-bridge-fr_FR-9a24f2fa7a9667f948a7250d074c3a30.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/languages/wc-calypso-bridge-fr_FR-9a24f2fa7a9667f948a7250d074c3a30.json -------------------------------------------------------------------------------- /languages/wc-calypso-bridge-fr_FR-b465a58df1aa4e563112b65e45dffa1c.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/languages/wc-calypso-bridge-fr_FR-b465a58df1aa4e563112b65e45dffa1c.json -------------------------------------------------------------------------------- /languages/wc-calypso-bridge-fr_FR-beb9e19fb5e7cb316b39d09ff6ca8bdf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/languages/wc-calypso-bridge-fr_FR-beb9e19fb5e7cb316b39d09ff6ca8bdf.json -------------------------------------------------------------------------------- /languages/wc-calypso-bridge-fr_FR-ce1126179ccf98c51c6a61cf74680416.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/languages/wc-calypso-bridge-fr_FR-ce1126179ccf98c51c6a61cf74680416.json -------------------------------------------------------------------------------- /languages/wc-calypso-bridge-fr_FR-d306b16f43f72fde801a43dea46bfd64.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/languages/wc-calypso-bridge-fr_FR-d306b16f43f72fde801a43dea46bfd64.json -------------------------------------------------------------------------------- /languages/wc-calypso-bridge-fr_FR-dfbff627e6c248bcb3b61d7d06da9ca9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/languages/wc-calypso-bridge-fr_FR-dfbff627e6c248bcb3b61d7d06da9ca9.json -------------------------------------------------------------------------------- /languages/wc-calypso-bridge-fr_FR.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/languages/wc-calypso-bridge-fr_FR.mo -------------------------------------------------------------------------------- /languages/wc-calypso-bridge-fr_FR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/languages/wc-calypso-bridge-fr_FR.po -------------------------------------------------------------------------------- /languages/wc-calypso-bridge-he_IL-09bb012e7dde92df64cb62b6649b1279.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/languages/wc-calypso-bridge-he_IL-09bb012e7dde92df64cb62b6649b1279.json -------------------------------------------------------------------------------- /languages/wc-calypso-bridge-he_IL-9a24f2fa7a9667f948a7250d074c3a30.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/languages/wc-calypso-bridge-he_IL-9a24f2fa7a9667f948a7250d074c3a30.json -------------------------------------------------------------------------------- /languages/wc-calypso-bridge-he_IL-b465a58df1aa4e563112b65e45dffa1c.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/languages/wc-calypso-bridge-he_IL-b465a58df1aa4e563112b65e45dffa1c.json -------------------------------------------------------------------------------- /languages/wc-calypso-bridge-he_IL-beb9e19fb5e7cb316b39d09ff6ca8bdf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/languages/wc-calypso-bridge-he_IL-beb9e19fb5e7cb316b39d09ff6ca8bdf.json -------------------------------------------------------------------------------- /languages/wc-calypso-bridge-he_IL-ce1126179ccf98c51c6a61cf74680416.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/languages/wc-calypso-bridge-he_IL-ce1126179ccf98c51c6a61cf74680416.json -------------------------------------------------------------------------------- /languages/wc-calypso-bridge-he_IL-d306b16f43f72fde801a43dea46bfd64.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/languages/wc-calypso-bridge-he_IL-d306b16f43f72fde801a43dea46bfd64.json -------------------------------------------------------------------------------- /languages/wc-calypso-bridge-he_IL-dfbff627e6c248bcb3b61d7d06da9ca9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/languages/wc-calypso-bridge-he_IL-dfbff627e6c248bcb3b61d7d06da9ca9.json -------------------------------------------------------------------------------- /languages/wc-calypso-bridge-he_IL.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/languages/wc-calypso-bridge-he_IL.mo -------------------------------------------------------------------------------- /languages/wc-calypso-bridge-he_IL.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/languages/wc-calypso-bridge-he_IL.po -------------------------------------------------------------------------------- /languages/wc-calypso-bridge-id_ID-09bb012e7dde92df64cb62b6649b1279.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/languages/wc-calypso-bridge-id_ID-09bb012e7dde92df64cb62b6649b1279.json -------------------------------------------------------------------------------- /languages/wc-calypso-bridge-id_ID-9a24f2fa7a9667f948a7250d074c3a30.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/languages/wc-calypso-bridge-id_ID-9a24f2fa7a9667f948a7250d074c3a30.json -------------------------------------------------------------------------------- /languages/wc-calypso-bridge-id_ID-b465a58df1aa4e563112b65e45dffa1c.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/languages/wc-calypso-bridge-id_ID-b465a58df1aa4e563112b65e45dffa1c.json -------------------------------------------------------------------------------- /languages/wc-calypso-bridge-id_ID-beb9e19fb5e7cb316b39d09ff6ca8bdf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/languages/wc-calypso-bridge-id_ID-beb9e19fb5e7cb316b39d09ff6ca8bdf.json -------------------------------------------------------------------------------- /languages/wc-calypso-bridge-id_ID-ce1126179ccf98c51c6a61cf74680416.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/languages/wc-calypso-bridge-id_ID-ce1126179ccf98c51c6a61cf74680416.json -------------------------------------------------------------------------------- /languages/wc-calypso-bridge-id_ID-d306b16f43f72fde801a43dea46bfd64.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/languages/wc-calypso-bridge-id_ID-d306b16f43f72fde801a43dea46bfd64.json -------------------------------------------------------------------------------- /languages/wc-calypso-bridge-id_ID-dfbff627e6c248bcb3b61d7d06da9ca9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/languages/wc-calypso-bridge-id_ID-dfbff627e6c248bcb3b61d7d06da9ca9.json -------------------------------------------------------------------------------- /languages/wc-calypso-bridge-id_ID.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/languages/wc-calypso-bridge-id_ID.mo -------------------------------------------------------------------------------- /languages/wc-calypso-bridge-id_ID.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/languages/wc-calypso-bridge-id_ID.po -------------------------------------------------------------------------------- /languages/wc-calypso-bridge-it_IT-09bb012e7dde92df64cb62b6649b1279.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/languages/wc-calypso-bridge-it_IT-09bb012e7dde92df64cb62b6649b1279.json -------------------------------------------------------------------------------- /languages/wc-calypso-bridge-it_IT-9a24f2fa7a9667f948a7250d074c3a30.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/languages/wc-calypso-bridge-it_IT-9a24f2fa7a9667f948a7250d074c3a30.json -------------------------------------------------------------------------------- /languages/wc-calypso-bridge-it_IT-b465a58df1aa4e563112b65e45dffa1c.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/languages/wc-calypso-bridge-it_IT-b465a58df1aa4e563112b65e45dffa1c.json -------------------------------------------------------------------------------- /languages/wc-calypso-bridge-it_IT-beb9e19fb5e7cb316b39d09ff6ca8bdf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/languages/wc-calypso-bridge-it_IT-beb9e19fb5e7cb316b39d09ff6ca8bdf.json -------------------------------------------------------------------------------- /languages/wc-calypso-bridge-it_IT-ce1126179ccf98c51c6a61cf74680416.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/languages/wc-calypso-bridge-it_IT-ce1126179ccf98c51c6a61cf74680416.json -------------------------------------------------------------------------------- /languages/wc-calypso-bridge-it_IT-d306b16f43f72fde801a43dea46bfd64.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/languages/wc-calypso-bridge-it_IT-d306b16f43f72fde801a43dea46bfd64.json -------------------------------------------------------------------------------- /languages/wc-calypso-bridge-it_IT-dfbff627e6c248bcb3b61d7d06da9ca9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/languages/wc-calypso-bridge-it_IT-dfbff627e6c248bcb3b61d7d06da9ca9.json -------------------------------------------------------------------------------- /languages/wc-calypso-bridge-it_IT.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/languages/wc-calypso-bridge-it_IT.mo -------------------------------------------------------------------------------- /languages/wc-calypso-bridge-it_IT.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/languages/wc-calypso-bridge-it_IT.po -------------------------------------------------------------------------------- /languages/wc-calypso-bridge-ja-09bb012e7dde92df64cb62b6649b1279.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/languages/wc-calypso-bridge-ja-09bb012e7dde92df64cb62b6649b1279.json -------------------------------------------------------------------------------- /languages/wc-calypso-bridge-ja-9a24f2fa7a9667f948a7250d074c3a30.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/languages/wc-calypso-bridge-ja-9a24f2fa7a9667f948a7250d074c3a30.json -------------------------------------------------------------------------------- /languages/wc-calypso-bridge-ja-b465a58df1aa4e563112b65e45dffa1c.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/languages/wc-calypso-bridge-ja-b465a58df1aa4e563112b65e45dffa1c.json -------------------------------------------------------------------------------- /languages/wc-calypso-bridge-ja-beb9e19fb5e7cb316b39d09ff6ca8bdf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/languages/wc-calypso-bridge-ja-beb9e19fb5e7cb316b39d09ff6ca8bdf.json -------------------------------------------------------------------------------- /languages/wc-calypso-bridge-ja-ce1126179ccf98c51c6a61cf74680416.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/languages/wc-calypso-bridge-ja-ce1126179ccf98c51c6a61cf74680416.json -------------------------------------------------------------------------------- /languages/wc-calypso-bridge-ja-d306b16f43f72fde801a43dea46bfd64.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/languages/wc-calypso-bridge-ja-d306b16f43f72fde801a43dea46bfd64.json -------------------------------------------------------------------------------- /languages/wc-calypso-bridge-ja-dfbff627e6c248bcb3b61d7d06da9ca9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/languages/wc-calypso-bridge-ja-dfbff627e6c248bcb3b61d7d06da9ca9.json -------------------------------------------------------------------------------- /languages/wc-calypso-bridge-ja.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/languages/wc-calypso-bridge-ja.mo -------------------------------------------------------------------------------- /languages/wc-calypso-bridge-ja.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/languages/wc-calypso-bridge-ja.po -------------------------------------------------------------------------------- /languages/wc-calypso-bridge-ko_KR-09bb012e7dde92df64cb62b6649b1279.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/languages/wc-calypso-bridge-ko_KR-09bb012e7dde92df64cb62b6649b1279.json -------------------------------------------------------------------------------- /languages/wc-calypso-bridge-ko_KR-9a24f2fa7a9667f948a7250d074c3a30.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/languages/wc-calypso-bridge-ko_KR-9a24f2fa7a9667f948a7250d074c3a30.json -------------------------------------------------------------------------------- /languages/wc-calypso-bridge-ko_KR-b465a58df1aa4e563112b65e45dffa1c.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/languages/wc-calypso-bridge-ko_KR-b465a58df1aa4e563112b65e45dffa1c.json -------------------------------------------------------------------------------- /languages/wc-calypso-bridge-ko_KR-beb9e19fb5e7cb316b39d09ff6ca8bdf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/languages/wc-calypso-bridge-ko_KR-beb9e19fb5e7cb316b39d09ff6ca8bdf.json -------------------------------------------------------------------------------- /languages/wc-calypso-bridge-ko_KR-ce1126179ccf98c51c6a61cf74680416.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/languages/wc-calypso-bridge-ko_KR-ce1126179ccf98c51c6a61cf74680416.json -------------------------------------------------------------------------------- /languages/wc-calypso-bridge-ko_KR-d306b16f43f72fde801a43dea46bfd64.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/languages/wc-calypso-bridge-ko_KR-d306b16f43f72fde801a43dea46bfd64.json -------------------------------------------------------------------------------- /languages/wc-calypso-bridge-ko_KR-dfbff627e6c248bcb3b61d7d06da9ca9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/languages/wc-calypso-bridge-ko_KR-dfbff627e6c248bcb3b61d7d06da9ca9.json -------------------------------------------------------------------------------- /languages/wc-calypso-bridge-ko_KR.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/languages/wc-calypso-bridge-ko_KR.mo -------------------------------------------------------------------------------- /languages/wc-calypso-bridge-ko_KR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/languages/wc-calypso-bridge-ko_KR.po -------------------------------------------------------------------------------- /languages/wc-calypso-bridge-nl_NL-09bb012e7dde92df64cb62b6649b1279.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/languages/wc-calypso-bridge-nl_NL-09bb012e7dde92df64cb62b6649b1279.json -------------------------------------------------------------------------------- /languages/wc-calypso-bridge-nl_NL-9a24f2fa7a9667f948a7250d074c3a30.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/languages/wc-calypso-bridge-nl_NL-9a24f2fa7a9667f948a7250d074c3a30.json -------------------------------------------------------------------------------- /languages/wc-calypso-bridge-nl_NL-b465a58df1aa4e563112b65e45dffa1c.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/languages/wc-calypso-bridge-nl_NL-b465a58df1aa4e563112b65e45dffa1c.json -------------------------------------------------------------------------------- /languages/wc-calypso-bridge-nl_NL-beb9e19fb5e7cb316b39d09ff6ca8bdf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/languages/wc-calypso-bridge-nl_NL-beb9e19fb5e7cb316b39d09ff6ca8bdf.json -------------------------------------------------------------------------------- /languages/wc-calypso-bridge-nl_NL-ce1126179ccf98c51c6a61cf74680416.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/languages/wc-calypso-bridge-nl_NL-ce1126179ccf98c51c6a61cf74680416.json -------------------------------------------------------------------------------- /languages/wc-calypso-bridge-nl_NL-d306b16f43f72fde801a43dea46bfd64.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/languages/wc-calypso-bridge-nl_NL-d306b16f43f72fde801a43dea46bfd64.json -------------------------------------------------------------------------------- /languages/wc-calypso-bridge-nl_NL-dfbff627e6c248bcb3b61d7d06da9ca9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/languages/wc-calypso-bridge-nl_NL-dfbff627e6c248bcb3b61d7d06da9ca9.json -------------------------------------------------------------------------------- /languages/wc-calypso-bridge-nl_NL.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/languages/wc-calypso-bridge-nl_NL.mo -------------------------------------------------------------------------------- /languages/wc-calypso-bridge-nl_NL.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/languages/wc-calypso-bridge-nl_NL.po -------------------------------------------------------------------------------- /languages/wc-calypso-bridge-pt_BR-09bb012e7dde92df64cb62b6649b1279.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/languages/wc-calypso-bridge-pt_BR-09bb012e7dde92df64cb62b6649b1279.json -------------------------------------------------------------------------------- /languages/wc-calypso-bridge-pt_BR-9a24f2fa7a9667f948a7250d074c3a30.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/languages/wc-calypso-bridge-pt_BR-9a24f2fa7a9667f948a7250d074c3a30.json -------------------------------------------------------------------------------- /languages/wc-calypso-bridge-pt_BR-b465a58df1aa4e563112b65e45dffa1c.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/languages/wc-calypso-bridge-pt_BR-b465a58df1aa4e563112b65e45dffa1c.json -------------------------------------------------------------------------------- /languages/wc-calypso-bridge-pt_BR-beb9e19fb5e7cb316b39d09ff6ca8bdf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/languages/wc-calypso-bridge-pt_BR-beb9e19fb5e7cb316b39d09ff6ca8bdf.json -------------------------------------------------------------------------------- /languages/wc-calypso-bridge-pt_BR-ce1126179ccf98c51c6a61cf74680416.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/languages/wc-calypso-bridge-pt_BR-ce1126179ccf98c51c6a61cf74680416.json -------------------------------------------------------------------------------- /languages/wc-calypso-bridge-pt_BR-d306b16f43f72fde801a43dea46bfd64.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/languages/wc-calypso-bridge-pt_BR-d306b16f43f72fde801a43dea46bfd64.json -------------------------------------------------------------------------------- /languages/wc-calypso-bridge-pt_BR-dfbff627e6c248bcb3b61d7d06da9ca9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/languages/wc-calypso-bridge-pt_BR-dfbff627e6c248bcb3b61d7d06da9ca9.json -------------------------------------------------------------------------------- /languages/wc-calypso-bridge-pt_BR.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/languages/wc-calypso-bridge-pt_BR.mo -------------------------------------------------------------------------------- /languages/wc-calypso-bridge-pt_BR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/languages/wc-calypso-bridge-pt_BR.po -------------------------------------------------------------------------------- /languages/wc-calypso-bridge-ru_RU-09bb012e7dde92df64cb62b6649b1279.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/languages/wc-calypso-bridge-ru_RU-09bb012e7dde92df64cb62b6649b1279.json -------------------------------------------------------------------------------- /languages/wc-calypso-bridge-ru_RU-9a24f2fa7a9667f948a7250d074c3a30.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/languages/wc-calypso-bridge-ru_RU-9a24f2fa7a9667f948a7250d074c3a30.json -------------------------------------------------------------------------------- /languages/wc-calypso-bridge-ru_RU-b465a58df1aa4e563112b65e45dffa1c.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/languages/wc-calypso-bridge-ru_RU-b465a58df1aa4e563112b65e45dffa1c.json -------------------------------------------------------------------------------- /languages/wc-calypso-bridge-ru_RU-beb9e19fb5e7cb316b39d09ff6ca8bdf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/languages/wc-calypso-bridge-ru_RU-beb9e19fb5e7cb316b39d09ff6ca8bdf.json -------------------------------------------------------------------------------- /languages/wc-calypso-bridge-ru_RU-ce1126179ccf98c51c6a61cf74680416.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/languages/wc-calypso-bridge-ru_RU-ce1126179ccf98c51c6a61cf74680416.json -------------------------------------------------------------------------------- /languages/wc-calypso-bridge-ru_RU-d306b16f43f72fde801a43dea46bfd64.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/languages/wc-calypso-bridge-ru_RU-d306b16f43f72fde801a43dea46bfd64.json -------------------------------------------------------------------------------- /languages/wc-calypso-bridge-ru_RU-dfbff627e6c248bcb3b61d7d06da9ca9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/languages/wc-calypso-bridge-ru_RU-dfbff627e6c248bcb3b61d7d06da9ca9.json -------------------------------------------------------------------------------- /languages/wc-calypso-bridge-ru_RU.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/languages/wc-calypso-bridge-ru_RU.mo -------------------------------------------------------------------------------- /languages/wc-calypso-bridge-ru_RU.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/languages/wc-calypso-bridge-ru_RU.po -------------------------------------------------------------------------------- /languages/wc-calypso-bridge-sv_SE-09bb012e7dde92df64cb62b6649b1279.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/languages/wc-calypso-bridge-sv_SE-09bb012e7dde92df64cb62b6649b1279.json -------------------------------------------------------------------------------- /languages/wc-calypso-bridge-sv_SE-9a24f2fa7a9667f948a7250d074c3a30.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/languages/wc-calypso-bridge-sv_SE-9a24f2fa7a9667f948a7250d074c3a30.json -------------------------------------------------------------------------------- /languages/wc-calypso-bridge-sv_SE-b465a58df1aa4e563112b65e45dffa1c.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/languages/wc-calypso-bridge-sv_SE-b465a58df1aa4e563112b65e45dffa1c.json -------------------------------------------------------------------------------- /languages/wc-calypso-bridge-sv_SE-beb9e19fb5e7cb316b39d09ff6ca8bdf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/languages/wc-calypso-bridge-sv_SE-beb9e19fb5e7cb316b39d09ff6ca8bdf.json -------------------------------------------------------------------------------- /languages/wc-calypso-bridge-sv_SE-ce1126179ccf98c51c6a61cf74680416.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/languages/wc-calypso-bridge-sv_SE-ce1126179ccf98c51c6a61cf74680416.json -------------------------------------------------------------------------------- /languages/wc-calypso-bridge-sv_SE-d306b16f43f72fde801a43dea46bfd64.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/languages/wc-calypso-bridge-sv_SE-d306b16f43f72fde801a43dea46bfd64.json -------------------------------------------------------------------------------- /languages/wc-calypso-bridge-sv_SE-dfbff627e6c248bcb3b61d7d06da9ca9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/languages/wc-calypso-bridge-sv_SE-dfbff627e6c248bcb3b61d7d06da9ca9.json -------------------------------------------------------------------------------- /languages/wc-calypso-bridge-sv_SE.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/languages/wc-calypso-bridge-sv_SE.mo -------------------------------------------------------------------------------- /languages/wc-calypso-bridge-sv_SE.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/languages/wc-calypso-bridge-sv_SE.po -------------------------------------------------------------------------------- /languages/wc-calypso-bridge-tr_TR-09bb012e7dde92df64cb62b6649b1279.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/languages/wc-calypso-bridge-tr_TR-09bb012e7dde92df64cb62b6649b1279.json -------------------------------------------------------------------------------- /languages/wc-calypso-bridge-tr_TR-9a24f2fa7a9667f948a7250d074c3a30.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/languages/wc-calypso-bridge-tr_TR-9a24f2fa7a9667f948a7250d074c3a30.json -------------------------------------------------------------------------------- /languages/wc-calypso-bridge-tr_TR-b465a58df1aa4e563112b65e45dffa1c.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/languages/wc-calypso-bridge-tr_TR-b465a58df1aa4e563112b65e45dffa1c.json -------------------------------------------------------------------------------- /languages/wc-calypso-bridge-tr_TR-beb9e19fb5e7cb316b39d09ff6ca8bdf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/languages/wc-calypso-bridge-tr_TR-beb9e19fb5e7cb316b39d09ff6ca8bdf.json -------------------------------------------------------------------------------- /languages/wc-calypso-bridge-tr_TR-ce1126179ccf98c51c6a61cf74680416.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/languages/wc-calypso-bridge-tr_TR-ce1126179ccf98c51c6a61cf74680416.json -------------------------------------------------------------------------------- /languages/wc-calypso-bridge-tr_TR-d306b16f43f72fde801a43dea46bfd64.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/languages/wc-calypso-bridge-tr_TR-d306b16f43f72fde801a43dea46bfd64.json -------------------------------------------------------------------------------- /languages/wc-calypso-bridge-tr_TR-dfbff627e6c248bcb3b61d7d06da9ca9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/languages/wc-calypso-bridge-tr_TR-dfbff627e6c248bcb3b61d7d06da9ca9.json -------------------------------------------------------------------------------- /languages/wc-calypso-bridge-tr_TR.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/languages/wc-calypso-bridge-tr_TR.mo -------------------------------------------------------------------------------- /languages/wc-calypso-bridge-tr_TR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/languages/wc-calypso-bridge-tr_TR.po -------------------------------------------------------------------------------- /languages/wc-calypso-bridge-zh_CN-09bb012e7dde92df64cb62b6649b1279.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/languages/wc-calypso-bridge-zh_CN-09bb012e7dde92df64cb62b6649b1279.json -------------------------------------------------------------------------------- /languages/wc-calypso-bridge-zh_CN-9a24f2fa7a9667f948a7250d074c3a30.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/languages/wc-calypso-bridge-zh_CN-9a24f2fa7a9667f948a7250d074c3a30.json -------------------------------------------------------------------------------- /languages/wc-calypso-bridge-zh_CN-b465a58df1aa4e563112b65e45dffa1c.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/languages/wc-calypso-bridge-zh_CN-b465a58df1aa4e563112b65e45dffa1c.json -------------------------------------------------------------------------------- /languages/wc-calypso-bridge-zh_CN-beb9e19fb5e7cb316b39d09ff6ca8bdf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/languages/wc-calypso-bridge-zh_CN-beb9e19fb5e7cb316b39d09ff6ca8bdf.json -------------------------------------------------------------------------------- /languages/wc-calypso-bridge-zh_CN-ce1126179ccf98c51c6a61cf74680416.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/languages/wc-calypso-bridge-zh_CN-ce1126179ccf98c51c6a61cf74680416.json -------------------------------------------------------------------------------- /languages/wc-calypso-bridge-zh_CN-d306b16f43f72fde801a43dea46bfd64.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/languages/wc-calypso-bridge-zh_CN-d306b16f43f72fde801a43dea46bfd64.json -------------------------------------------------------------------------------- /languages/wc-calypso-bridge-zh_CN-dfbff627e6c248bcb3b61d7d06da9ca9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/languages/wc-calypso-bridge-zh_CN-dfbff627e6c248bcb3b61d7d06da9ca9.json -------------------------------------------------------------------------------- /languages/wc-calypso-bridge-zh_CN.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/languages/wc-calypso-bridge-zh_CN.mo -------------------------------------------------------------------------------- /languages/wc-calypso-bridge-zh_CN.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/languages/wc-calypso-bridge-zh_CN.po -------------------------------------------------------------------------------- /languages/wc-calypso-bridge-zh_SG-09bb012e7dde92df64cb62b6649b1279.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/languages/wc-calypso-bridge-zh_SG-09bb012e7dde92df64cb62b6649b1279.json -------------------------------------------------------------------------------- /languages/wc-calypso-bridge-zh_SG-9a24f2fa7a9667f948a7250d074c3a30.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/languages/wc-calypso-bridge-zh_SG-9a24f2fa7a9667f948a7250d074c3a30.json -------------------------------------------------------------------------------- /languages/wc-calypso-bridge-zh_SG-b465a58df1aa4e563112b65e45dffa1c.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/languages/wc-calypso-bridge-zh_SG-b465a58df1aa4e563112b65e45dffa1c.json -------------------------------------------------------------------------------- /languages/wc-calypso-bridge-zh_SG-beb9e19fb5e7cb316b39d09ff6ca8bdf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/languages/wc-calypso-bridge-zh_SG-beb9e19fb5e7cb316b39d09ff6ca8bdf.json -------------------------------------------------------------------------------- /languages/wc-calypso-bridge-zh_SG-ce1126179ccf98c51c6a61cf74680416.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/languages/wc-calypso-bridge-zh_SG-ce1126179ccf98c51c6a61cf74680416.json -------------------------------------------------------------------------------- /languages/wc-calypso-bridge-zh_SG-d306b16f43f72fde801a43dea46bfd64.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/languages/wc-calypso-bridge-zh_SG-d306b16f43f72fde801a43dea46bfd64.json -------------------------------------------------------------------------------- /languages/wc-calypso-bridge-zh_SG-dfbff627e6c248bcb3b61d7d06da9ca9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/languages/wc-calypso-bridge-zh_SG-dfbff627e6c248bcb3b61d7d06da9ca9.json -------------------------------------------------------------------------------- /languages/wc-calypso-bridge-zh_SG.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/languages/wc-calypso-bridge-zh_SG.mo -------------------------------------------------------------------------------- /languages/wc-calypso-bridge-zh_SG.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/languages/wc-calypso-bridge-zh_SG.po -------------------------------------------------------------------------------- /languages/wc-calypso-bridge-zh_TW-09bb012e7dde92df64cb62b6649b1279.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/languages/wc-calypso-bridge-zh_TW-09bb012e7dde92df64cb62b6649b1279.json -------------------------------------------------------------------------------- /languages/wc-calypso-bridge-zh_TW-9a24f2fa7a9667f948a7250d074c3a30.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/languages/wc-calypso-bridge-zh_TW-9a24f2fa7a9667f948a7250d074c3a30.json -------------------------------------------------------------------------------- /languages/wc-calypso-bridge-zh_TW-b465a58df1aa4e563112b65e45dffa1c.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/languages/wc-calypso-bridge-zh_TW-b465a58df1aa4e563112b65e45dffa1c.json -------------------------------------------------------------------------------- /languages/wc-calypso-bridge-zh_TW-beb9e19fb5e7cb316b39d09ff6ca8bdf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/languages/wc-calypso-bridge-zh_TW-beb9e19fb5e7cb316b39d09ff6ca8bdf.json -------------------------------------------------------------------------------- /languages/wc-calypso-bridge-zh_TW-ce1126179ccf98c51c6a61cf74680416.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/languages/wc-calypso-bridge-zh_TW-ce1126179ccf98c51c6a61cf74680416.json -------------------------------------------------------------------------------- /languages/wc-calypso-bridge-zh_TW-d306b16f43f72fde801a43dea46bfd64.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/languages/wc-calypso-bridge-zh_TW-d306b16f43f72fde801a43dea46bfd64.json -------------------------------------------------------------------------------- /languages/wc-calypso-bridge-zh_TW-dfbff627e6c248bcb3b61d7d06da9ca9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/languages/wc-calypso-bridge-zh_TW-dfbff627e6c248bcb3b61d7d06da9ca9.json -------------------------------------------------------------------------------- /languages/wc-calypso-bridge-zh_TW.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/languages/wc-calypso-bridge-zh_TW.mo -------------------------------------------------------------------------------- /languages/wc-calypso-bridge-zh_TW.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/languages/wc-calypso-bridge-zh_TW.po -------------------------------------------------------------------------------- /languages/wc-calypso-bridge.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/languages/wc-calypso-bridge.pot -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/package.json -------------------------------------------------------------------------------- /phpcs.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/phpcs.xml.dist -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/phpunit.xml -------------------------------------------------------------------------------- /readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/readme.txt -------------------------------------------------------------------------------- /scripts/.gitignore: -------------------------------------------------------------------------------- 1 | ./node_modules/ 2 | -------------------------------------------------------------------------------- /scripts/commands/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/scripts/commands/build.js -------------------------------------------------------------------------------- /scripts/commands/bump-version.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/scripts/commands/bump-version.js -------------------------------------------------------------------------------- /scripts/commands/readme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/scripts/commands/readme.js -------------------------------------------------------------------------------- /scripts/commands/tag.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/scripts/commands/tag.js -------------------------------------------------------------------------------- /scripts/commands/update-translations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/scripts/commands/update-translations.js -------------------------------------------------------------------------------- /scripts/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/scripts/package.json -------------------------------------------------------------------------------- /scripts/prep-release.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/scripts/prep-release.js -------------------------------------------------------------------------------- /scripts/release.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/scripts/release.js -------------------------------------------------------------------------------- /scripts/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/scripts/utils.js -------------------------------------------------------------------------------- /src/disabled-tasks/collapsible-list.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/src/disabled-tasks/collapsible-list.tsx -------------------------------------------------------------------------------- /src/disabled-tasks/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/src/disabled-tasks/index.tsx -------------------------------------------------------------------------------- /src/disabled-tasks/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/src/disabled-tasks/style.scss -------------------------------------------------------------------------------- /src/free-trial/fills/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/src/free-trial/fills/index.ts -------------------------------------------------------------------------------- /src/free-trial/fills/task-headers/payments.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/src/free-trial/fills/task-headers/payments.js -------------------------------------------------------------------------------- /src/free-trial/fills/task-headers/woocommerce-payments.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/src/free-trial/fills/task-headers/woocommerce-payments.js -------------------------------------------------------------------------------- /src/free-trial/fills/woocommerce-payments.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/src/free-trial/fills/woocommerce-payments.js -------------------------------------------------------------------------------- /src/free-trial/tax/avalara/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/src/free-trial/tax/avalara/card.tsx -------------------------------------------------------------------------------- /src/free-trial/tax/avalara/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/src/free-trial/tax/avalara/logo.png -------------------------------------------------------------------------------- /src/free-trial/tax/components/bullet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/src/free-trial/tax/components/bullet.tsx -------------------------------------------------------------------------------- /src/free-trial/tax/components/connect-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/src/free-trial/tax/components/connect-form.tsx -------------------------------------------------------------------------------- /src/free-trial/tax/components/connect.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/src/free-trial/tax/components/connect.tsx -------------------------------------------------------------------------------- /src/free-trial/tax/components/location.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/src/free-trial/tax/components/location.js -------------------------------------------------------------------------------- /src/free-trial/tax/components/partner-card.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/src/free-trial/tax/components/partner-card.scss -------------------------------------------------------------------------------- /src/free-trial/tax/components/partner-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/src/free-trial/tax/components/partner-card.tsx -------------------------------------------------------------------------------- /src/free-trial/tax/components/partners.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/src/free-trial/tax/components/partners.scss -------------------------------------------------------------------------------- /src/free-trial/tax/components/partners.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/src/free-trial/tax/components/partners.tsx -------------------------------------------------------------------------------- /src/free-trial/tax/components/store-address.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/src/free-trial/tax/components/store-address.tsx -------------------------------------------------------------------------------- /src/free-trial/tax/components/store-location.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/src/free-trial/tax/components/store-location.tsx -------------------------------------------------------------------------------- /src/free-trial/tax/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/src/free-trial/tax/index.tsx -------------------------------------------------------------------------------- /src/free-trial/tax/manual-configuration/configure.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/src/free-trial/tax/manual-configuration/configure.tsx -------------------------------------------------------------------------------- /src/free-trial/tax/manual-configuration/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/src/free-trial/tax/manual-configuration/index.tsx -------------------------------------------------------------------------------- /src/free-trial/tax/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/src/free-trial/tax/utils.ts -------------------------------------------------------------------------------- /src/free-trial/tax/woocommerce-tax/automated-taxes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/src/free-trial/tax/woocommerce-tax/automated-taxes.tsx -------------------------------------------------------------------------------- /src/free-trial/tax/woocommerce-tax/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/src/free-trial/tax/woocommerce-tax/card.tsx -------------------------------------------------------------------------------- /src/free-trial/tax/woocommerce-tax/connect.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/src/free-trial/tax/woocommerce-tax/connect.tsx -------------------------------------------------------------------------------- /src/free-trial/tax/woocommerce-tax/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/src/free-trial/tax/woocommerce-tax/index.tsx -------------------------------------------------------------------------------- /src/free-trial/tax/woocommerce-tax/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/src/free-trial/tax/woocommerce-tax/logo.png -------------------------------------------------------------------------------- /src/free-trial/tax/woocommerce-tax/plugins.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/src/free-trial/tax/woocommerce-tax/plugins.tsx -------------------------------------------------------------------------------- /src/free-trial/tax/woocommerce-tax/setup.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/src/free-trial/tax/woocommerce-tax/setup.scss -------------------------------------------------------------------------------- /src/free-trial/tax/woocommerce-tax/setup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/src/free-trial/tax/woocommerce-tax/setup.tsx -------------------------------------------------------------------------------- /src/homescreen-banner/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/src/homescreen-banner/index.js -------------------------------------------------------------------------------- /src/homescreen-banner/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/src/homescreen-banner/style.scss -------------------------------------------------------------------------------- /src/homescreen-progress-header/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/src/homescreen-progress-header/index.js -------------------------------------------------------------------------------- /src/homescreen-progress-header/progress-header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/src/homescreen-progress-header/progress-header.tsx -------------------------------------------------------------------------------- /src/homescreen-progress-header/progress-title.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/src/homescreen-progress-header/progress-title.tsx -------------------------------------------------------------------------------- /src/homescreen-progress-header/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/src/homescreen-progress-header/style.scss -------------------------------------------------------------------------------- /src/homescreen-progress-header/task-list-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/src/homescreen-progress-header/task-list-menu.tsx -------------------------------------------------------------------------------- /src/i18n-loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/src/i18n-loader.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/src/index.js -------------------------------------------------------------------------------- /src/introductory-offer-banner/get-offer-message.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/src/introductory-offer-banner/get-offer-message.ts -------------------------------------------------------------------------------- /src/introductory-offer-banner/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/src/introductory-offer-banner/index.js -------------------------------------------------------------------------------- /src/introductory-offer-banner/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/src/introductory-offer-banner/style.scss -------------------------------------------------------------------------------- /src/launch-store/images/card_icon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/src/launch-store/images/card_icon.js -------------------------------------------------------------------------------- /src/launch-store/images/confetti.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/src/launch-store/images/confetti.js -------------------------------------------------------------------------------- /src/launch-store/images/copy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/src/launch-store/images/copy.js -------------------------------------------------------------------------------- /src/launch-store/images/globe_icon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/src/launch-store/images/globe_icon.js -------------------------------------------------------------------------------- /src/launch-store/images/lock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/src/launch-store/images/lock.js -------------------------------------------------------------------------------- /src/launch-store/images/products_icon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/src/launch-store/images/products_icon.js -------------------------------------------------------------------------------- /src/launch-store/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/src/launch-store/index.js -------------------------------------------------------------------------------- /src/launch-store/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/src/launch-store/style.scss -------------------------------------------------------------------------------- /src/marketing/browser-image.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/src/marketing/browser-image.tsx -------------------------------------------------------------------------------- /src/marketing/images/automate-woo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/src/marketing/images/automate-woo.svg -------------------------------------------------------------------------------- /src/marketing/images/browser-people.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/src/marketing/images/browser-people.jpg -------------------------------------------------------------------------------- /src/marketing/images/gift-card.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/src/marketing/images/gift-card.svg -------------------------------------------------------------------------------- /src/marketing/images/google-ads.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/src/marketing/images/google-ads.svg -------------------------------------------------------------------------------- /src/marketing/images/social-media.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/src/marketing/images/social-media.svg -------------------------------------------------------------------------------- /src/marketing/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/src/marketing/index.tsx -------------------------------------------------------------------------------- /src/marketing/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/src/marketing/style.scss -------------------------------------------------------------------------------- /src/notice/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/src/notice/index.js -------------------------------------------------------------------------------- /src/notice/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/src/notice/style.scss -------------------------------------------------------------------------------- /src/payment-gateway-suggestions/components/Action.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/src/payment-gateway-suggestions/components/Action.js -------------------------------------------------------------------------------- /src/payment-gateway-suggestions/components/List/Item.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/src/payment-gateway-suggestions/components/List/Item.js -------------------------------------------------------------------------------- /src/payment-gateway-suggestions/components/List/List.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/src/payment-gateway-suggestions/components/List/List.js -------------------------------------------------------------------------------- /src/payment-gateway-suggestions/components/List/List.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/src/payment-gateway-suggestions/components/List/List.scss -------------------------------------------------------------------------------- /src/payment-gateway-suggestions/components/List/Placeholder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/src/payment-gateway-suggestions/components/List/Placeholder.js -------------------------------------------------------------------------------- /src/payment-gateway-suggestions/components/List/fallback.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/src/payment-gateway-suggestions/components/List/fallback.png -------------------------------------------------------------------------------- /src/payment-gateway-suggestions/components/List/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/src/payment-gateway-suggestions/components/List/index.js -------------------------------------------------------------------------------- /src/payment-gateway-suggestions/components/List/test/list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/src/payment-gateway-suggestions/components/List/test/list.js -------------------------------------------------------------------------------- /src/payment-gateway-suggestions/components/Setup/Configure.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/src/payment-gateway-suggestions/components/Setup/Configure.js -------------------------------------------------------------------------------- /src/payment-gateway-suggestions/components/Setup/Placeholder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/src/payment-gateway-suggestions/components/Setup/Placeholder.js -------------------------------------------------------------------------------- /src/payment-gateway-suggestions/components/Setup/Setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/src/payment-gateway-suggestions/components/Setup/Setup.js -------------------------------------------------------------------------------- /src/payment-gateway-suggestions/components/Setup/Setup.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/src/payment-gateway-suggestions/components/Setup/Setup.scss -------------------------------------------------------------------------------- /src/payment-gateway-suggestions/components/Setup/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/src/payment-gateway-suggestions/components/Setup/index.js -------------------------------------------------------------------------------- /src/payment-gateway-suggestions/components/Setup/test/configure.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/src/payment-gateway-suggestions/components/Setup/test/configure.js -------------------------------------------------------------------------------- /src/payment-gateway-suggestions/components/Setup/test/setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/src/payment-gateway-suggestions/components/Setup/test/setup.js -------------------------------------------------------------------------------- /src/payment-gateway-suggestions/components/Toggle/Toggle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/src/payment-gateway-suggestions/components/Toggle/Toggle.js -------------------------------------------------------------------------------- /src/payment-gateway-suggestions/components/Toggle/Toggle.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/src/payment-gateway-suggestions/components/Toggle/Toggle.scss -------------------------------------------------------------------------------- /src/payment-gateway-suggestions/components/Toggle/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/src/payment-gateway-suggestions/components/Toggle/index.js -------------------------------------------------------------------------------- /src/payment-gateway-suggestions/components/WCPay/Modal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/src/payment-gateway-suggestions/components/WCPay/Modal.js -------------------------------------------------------------------------------- /src/payment-gateway-suggestions/components/WCPay/Suggestion.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/src/payment-gateway-suggestions/components/WCPay/Suggestion.js -------------------------------------------------------------------------------- /src/payment-gateway-suggestions/components/WCPay/UsageModal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/src/payment-gateway-suggestions/components/WCPay/UsageModal.js -------------------------------------------------------------------------------- /src/payment-gateway-suggestions/components/WCPay/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/src/payment-gateway-suggestions/components/WCPay/index.js -------------------------------------------------------------------------------- /src/payment-gateway-suggestions/components/WCPay/suggestion.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/src/payment-gateway-suggestions/components/WCPay/suggestion.scss -------------------------------------------------------------------------------- /src/payment-gateway-suggestions/components/WCPay/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/src/payment-gateway-suggestions/components/WCPay/utils.js -------------------------------------------------------------------------------- /src/payment-gateway-suggestions/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/src/payment-gateway-suggestions/index.js -------------------------------------------------------------------------------- /src/payment-gateway-suggestions/payment-gateway-suggestions.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/src/payment-gateway-suggestions/payment-gateway-suggestions.scss -------------------------------------------------------------------------------- /src/payment-gateway-suggestions/plugins/Bacs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/src/payment-gateway-suggestions/plugins/Bacs.js -------------------------------------------------------------------------------- /src/payment-gateway-suggestions/test/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/src/payment-gateway-suggestions/test/index.js -------------------------------------------------------------------------------- /src/payment-gateway-suggestions/test/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/src/payment-gateway-suggestions/test/utils.js -------------------------------------------------------------------------------- /src/payment-gateway-suggestions/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/src/payment-gateway-suggestions/utils.js -------------------------------------------------------------------------------- /src/payments-welcome/banner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/src/payments-welcome/banner.tsx -------------------------------------------------------------------------------- /src/payments-welcome/cards/amex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/src/payments-welcome/cards/amex.js -------------------------------------------------------------------------------- /src/payments-welcome/cards/applepay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/src/payments-welcome/cards/applepay.js -------------------------------------------------------------------------------- /src/payments-welcome/cards/cb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/src/payments-welcome/cards/cb.js -------------------------------------------------------------------------------- /src/payments-welcome/cards/diners.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/src/payments-welcome/cards/diners.js -------------------------------------------------------------------------------- /src/payments-welcome/cards/discover.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/src/payments-welcome/cards/discover.js -------------------------------------------------------------------------------- /src/payments-welcome/cards/gpay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/src/payments-welcome/cards/gpay.js -------------------------------------------------------------------------------- /src/payments-welcome/cards/jcb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/src/payments-welcome/cards/jcb.js -------------------------------------------------------------------------------- /src/payments-welcome/cards/maestro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/src/payments-welcome/cards/maestro.js -------------------------------------------------------------------------------- /src/payments-welcome/cards/mastercard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/src/payments-welcome/cards/mastercard.js -------------------------------------------------------------------------------- /src/payments-welcome/cards/unionpay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/src/payments-welcome/cards/unionpay.js -------------------------------------------------------------------------------- /src/payments-welcome/cards/visa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/src/payments-welcome/cards/visa.js -------------------------------------------------------------------------------- /src/payments-welcome/exit-survey-modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/src/payments-welcome/exit-survey-modal.tsx -------------------------------------------------------------------------------- /src/payments-welcome/faq.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/src/payments-welcome/faq.tsx -------------------------------------------------------------------------------- /src/payments-welcome/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/src/payments-welcome/index.tsx -------------------------------------------------------------------------------- /src/payments-welcome/strings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/src/payments-welcome/strings.tsx -------------------------------------------------------------------------------- /src/payments-welcome/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/src/payments-welcome/style.scss -------------------------------------------------------------------------------- /src/payments-welcome/tracks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/src/payments-welcome/tracks.ts -------------------------------------------------------------------------------- /src/plugins/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/src/plugins/index.tsx -------------------------------------------------------------------------------- /src/stylesheets/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/src/stylesheets/_mixins.scss -------------------------------------------------------------------------------- /src/stylesheets/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/src/stylesheets/_variables.scss -------------------------------------------------------------------------------- /src/task-completion/completed-celebration-header.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/src/task-completion/completed-celebration-header.jsx -------------------------------------------------------------------------------- /src/task-completion/fill.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/src/task-completion/fill.tsx -------------------------------------------------------------------------------- /src/task-completion/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/src/task-completion/index.tsx -------------------------------------------------------------------------------- /src/task-completion/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/src/task-completion/style.scss -------------------------------------------------------------------------------- /src/task-fills/appearance.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/src/task-fills/appearance.js -------------------------------------------------------------------------------- /src/task-fills/get-paid-with-paypal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/src/task-fills/get-paid-with-paypal.js -------------------------------------------------------------------------------- /src/task-fills/get-paid-with-square.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/src/task-fills/get-paid-with-square.js -------------------------------------------------------------------------------- /src/task-fills/get-paid-with-stripe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/src/task-fills/get-paid-with-stripe.js -------------------------------------------------------------------------------- /src/task-fills/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/src/task-fills/index.js -------------------------------------------------------------------------------- /src/task-headers/add-domain.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/src/task-headers/add-domain.js -------------------------------------------------------------------------------- /src/task-headers/appearance.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/src/task-headers/appearance.js -------------------------------------------------------------------------------- /src/task-headers/assets/images/add-domain-illustration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/src/task-headers/assets/images/add-domain-illustration.png -------------------------------------------------------------------------------- /src/task-headers/assets/images/timer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/src/task-headers/assets/images/timer.svg -------------------------------------------------------------------------------- /src/task-headers/get-paid-with-paypal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/src/task-headers/get-paid-with-paypal.js -------------------------------------------------------------------------------- /src/task-headers/get-paid-with-square.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/src/task-headers/get-paid-with-square.js -------------------------------------------------------------------------------- /src/task-headers/get-paid-with-stripe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/src/task-headers/get-paid-with-stripe.js -------------------------------------------------------------------------------- /src/task-headers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/src/task-headers/index.ts -------------------------------------------------------------------------------- /src/task-headers/products.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/src/task-headers/products.js -------------------------------------------------------------------------------- /src/track-menu-item.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/src/track-menu-item.ts -------------------------------------------------------------------------------- /src/utils/admin-settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/src/utils/admin-settings.js -------------------------------------------------------------------------------- /src/utils/escape.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/src/utils/escape.js -------------------------------------------------------------------------------- /src/utils/hooks/use-appearance-click.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/src/utils/hooks/use-appearance-click.js -------------------------------------------------------------------------------- /src/utils/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/src/utils/index.js -------------------------------------------------------------------------------- /src/utils/storage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/src/utils/storage.js -------------------------------------------------------------------------------- /src/wc-navigation-root-url.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/src/wc-navigation-root-url.js -------------------------------------------------------------------------------- /src/welcome-modal/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/src/welcome-modal/index.js -------------------------------------------------------------------------------- /src/welcome-modal/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/src/welcome-modal/style.scss -------------------------------------------------------------------------------- /store-on-wpcom/api/class-wc-calypso-bridge-data-counts-controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/store-on-wpcom/api/class-wc-calypso-bridge-data-counts-controller.php -------------------------------------------------------------------------------- /store-on-wpcom/api/class-wc-calypso-bridge-mailchimp-settings-controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/store-on-wpcom/api/class-wc-calypso-bridge-mailchimp-settings-controller.php -------------------------------------------------------------------------------- /store-on-wpcom/api/class-wc-calypso-bridge-product-reviews-controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/store-on-wpcom/api/class-wc-calypso-bridge-product-reviews-controller.php -------------------------------------------------------------------------------- /store-on-wpcom/api/class-wc-calypso-bridge-send-invoice-controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/store-on-wpcom/api/class-wc-calypso-bridge-send-invoice-controller.php -------------------------------------------------------------------------------- /store-on-wpcom/api/class-wc-calypso-bridge-settings-email-groups-controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/store-on-wpcom/api/class-wc-calypso-bridge-settings-email-groups-controller.php -------------------------------------------------------------------------------- /store-on-wpcom/assets/css/admin/customizer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/store-on-wpcom/assets/css/admin/customizer.css -------------------------------------------------------------------------------- /store-on-wpcom/assets/css/admin/nav-unification.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/store-on-wpcom/assets/css/admin/nav-unification.css -------------------------------------------------------------------------------- /store-on-wpcom/assets/css/masterbar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/store-on-wpcom/assets/css/masterbar.css -------------------------------------------------------------------------------- /store-on-wpcom/assets/icon-128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/store-on-wpcom/assets/icon-128x128.png -------------------------------------------------------------------------------- /store-on-wpcom/assets/icon-256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/store-on-wpcom/assets/icon-256x256.png -------------------------------------------------------------------------------- /store-on-wpcom/assets/js/admin/customizer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/store-on-wpcom/assets/js/admin/customizer.js -------------------------------------------------------------------------------- /store-on-wpcom/class-wc-calypso-bridge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/store-on-wpcom/class-wc-calypso-bridge.php -------------------------------------------------------------------------------- /store-on-wpcom/inc/wc-calypso-bridge-add-bacs-accounts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/store-on-wpcom/inc/wc-calypso-bridge-add-bacs-accounts.php -------------------------------------------------------------------------------- /store-on-wpcom/inc/wc-calypso-bridge-cheque-defaults.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/store-on-wpcom/inc/wc-calypso-bridge-cheque-defaults.php -------------------------------------------------------------------------------- /store-on-wpcom/inc/wc-calypso-bridge-disable-publicize.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/store-on-wpcom/inc/wc-calypso-bridge-disable-publicize.php -------------------------------------------------------------------------------- /store-on-wpcom/inc/wc-calypso-bridge-enable-auto-update-db.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/store-on-wpcom/inc/wc-calypso-bridge-enable-auto-update-db.php -------------------------------------------------------------------------------- /store-on-wpcom/inc/wc-calypso-bridge-jetpack-hotfixes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/store-on-wpcom/inc/wc-calypso-bridge-jetpack-hotfixes.php -------------------------------------------------------------------------------- /store-on-wpcom/inc/wc-calypso-bridge-mailchimp-deactivate-hook.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/store-on-wpcom/inc/wc-calypso-bridge-mailchimp-deactivate-hook.php -------------------------------------------------------------------------------- /store-on-wpcom/inc/wc-calypso-bridge-masterbar-menu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/store-on-wpcom/inc/wc-calypso-bridge-masterbar-menu.php -------------------------------------------------------------------------------- /store-on-wpcom/inc/wc-calypso-bridge-paypal-defaults.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/store-on-wpcom/inc/wc-calypso-bridge-paypal-defaults.php -------------------------------------------------------------------------------- /store-on-wpcom/inc/wc-calypso-bridge-products.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/store-on-wpcom/inc/wc-calypso-bridge-products.php -------------------------------------------------------------------------------- /store-on-wpcom/phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/store-on-wpcom/phpunit.xml -------------------------------------------------------------------------------- /store-on-wpcom/tests/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/store-on-wpcom/tests/bootstrap.php -------------------------------------------------------------------------------- /store-on-wpcom/tests/unit-tests/bacs-accounts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/store-on-wpcom/tests/unit-tests/bacs-accounts.php -------------------------------------------------------------------------------- /store-on-wpcom/tests/unit-tests/email-groups-controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/store-on-wpcom/tests/unit-tests/email-groups-controller.php -------------------------------------------------------------------------------- /store-on-wpcom/tests/unit-tests/paypal-method-supports.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/store-on-wpcom/tests/unit-tests/paypal-method-supports.php -------------------------------------------------------------------------------- /store-on-wpcom/tests/unit-tests/send-invoice-controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/store-on-wpcom/tests/unit-tests/send-invoice-controller.php -------------------------------------------------------------------------------- /tests/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/tests/bootstrap.php -------------------------------------------------------------------------------- /tests/mocks/static.js: -------------------------------------------------------------------------------- 1 | module.exports = {}; 2 | 3 | -------------------------------------------------------------------------------- /tests/mocks/woocommerce-settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/tests/mocks/woocommerce-settings.js -------------------------------------------------------------------------------- /tests/setup/setup-globals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/tests/setup/setup-globals.js -------------------------------------------------------------------------------- /tests/setup/setup-react-testing-library.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/tests/setup/setup-react-testing-library.js -------------------------------------------------------------------------------- /tests/setup/setup-window-globals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/tests/setup/setup-window-globals.js -------------------------------------------------------------------------------- /tests/unit-tests/example.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/tests/unit-tests/example.php -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/tsconfig.json -------------------------------------------------------------------------------- /typings/global.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/typings/global.d.ts -------------------------------------------------------------------------------- /typings/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/typings/index.d.ts -------------------------------------------------------------------------------- /wc-calypso-bridge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/wc-calypso-bridge.php -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/wc-calypso-bridge/HEAD/webpack.config.js --------------------------------------------------------------------------------