| 1 |
/** |
| 2 |
* WordPress dependencies |
| 3 |
*/ |
| 4 |
import { __ } from "@wordpress/i18n"; |
| 5 |
|
| 6 |
/** |
| 7 |
* Internal dependencies |
| 8 |
*/ |
| 9 |
|
| 10 |
export const MESSAGES = { |
| 11 |
installPlugin: __("Install %s", "content-blocks-builder"), |
| 12 |
installAllPlugins: __("Install all plugins", "content-blocks-builder"), |
| 13 |
activatePlugin: __("Activate %s", "content-blocks-builder"), |
| 14 |
blockName: __("Block name: %s", "content-blocks-builder"), |
| 15 |
parentBlockName: __("Parent block: %s", "content-blocks-builder"), |
| 16 |
variationName: __("Variation name: %s", "content-blocks-builder"), |
| 17 |
warningRequiresOtherCBBItems: __( |
| 18 |
"This item requires additional blocks or variations from the library.", |
| 19 |
"content-blocks-builder", |
| 20 |
), |
| 21 |
warningRequiresExternalBlocks: __( |
| 22 |
"This item requires the following external block(s): %s. You must install and/or activate the required plugin(s) to use it.", |
| 23 |
"content-blocks-builder", |
| 24 |
), |
| 25 |
warningRequiresPro: __( |
| 26 |
"This item requires the Pro version of the plugin.", |
| 27 |
"content-blocks-builder", |
| 28 |
), |
| 29 |
warningInstallActivatePlugins: __( |
| 30 |
"You must install and/or activate the required plugin(s) to use this item.", |
| 31 |
"content-blocks-builder", |
| 32 |
), |
| 33 |
warningManagePluginsPermission: __( |
| 34 |
"You don't have permission to manage plugins, please contact the administrator for help.", |
| 35 |
"content-blocks-builder", |
| 36 |
), |
| 37 |
successInstalledActivatedPlugin: __( |
| 38 |
"The plugin %s has been installed and activated.", |
| 39 |
"content-blocks-builder", |
| 40 |
), |
| 41 |
successInstalledActivatedAllPlugins: __( |
| 42 |
"%s plugins have been installed and activated.", |
| 43 |
"content-blocks-builder", |
| 44 |
), |
| 45 |
successActivatedPlugin: __( |
| 46 |
"The plugin %s has been activated.", |
| 47 |
"content-blocks-builder", |
| 48 |
), |
| 49 |
successReloadPage: __("Reloading the page.", "content-blocks-builder"), |
| 50 |
actionImportAllCBBItems: __( |
| 51 |
"Import all required item(s)", |
| 52 |
"content-blocks-builder", |
| 53 |
), |
| 54 |
labelTutorials: __("Tutorials:", "content-blocks-builder"), |
| 55 |
labelResources: __("Resources:", "content-blocks-builder"), |
| 56 |
labelDependencies: __("Dependencies:", "content-blocks-builder"), |
| 57 |
labelCBBBlocks: __("CBB blocks", "content-blocks-builder"), |
| 58 |
labelCBBVariations: __("CBB variations", "content-blocks-builder"), |
| 59 |
}; |
| 60 |
|