PluginProbe
Content Blocks Builder – Create blocks, repeater blocks with carousel, grid, popup layouts / trunk
Content Blocks Builder – Create blocks, repeater blocks with carousel, grid, popup layouts vtrunk
2.8.14 2.8.13 2.8.12 2.7.5 2.7.6 2.7.7 2.7.8 2.7.9 2.8.0 2.8.1 2.8.10 2.8.11 2.8.2 2.8.3 2.8.4 2.8.5 2.8.6 2.8.7 2.8.8 2.8.9 trunk 1.0.1 1.0.2 1.1.0 1.1.1 All 147 releases
content-blocks-builder / src / block-library / constants.js

constants.js in Content Blocks Builder – Create blocks, repeater blocks with carousel, grid, popup layouts trunk, at src/block-library/constants.js

60 lines 2.2 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
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