i18n.js
22 lines
| 1 | // https://developer.wordpress.org/block-editor/how-to-guides/internationalization/ |
| 2 | |
| 3 | const { __ } = wp.i18n; |
| 4 | |
| 5 | const i18n = {}; |
| 6 | |
| 7 | i18n.COMMON = { |
| 8 | MODULES: __( 'Modules', 'ai-engine' ), |
| 9 | SETTINGS: __( 'Settings', 'ai-engine' ), |
| 10 | CHATBOT: __( 'Chatbot', 'ai-engine' ), |
| 11 | STATISTICS: __( 'Statistics', 'ai-engine' ), |
| 12 | STYLE: __( 'Style', 'ai-engine' ), |
| 13 | ENABLE: __( 'Enable', 'ai-engine' ), |
| 14 | } |
| 15 | |
| 16 | i18n.SETTINGS = { |
| 17 | INTRO: __( 'Boost your WordPress with AI! Don\'t forget to visit the <a href="https://meowapps.com/ai-engine/" target="_blank">AI Engine website</a> for more information. Have fun! 🎵', 'ai-engine' ), |
| 18 | MODULES_INTRO: __( 'To avoid cluttering the UI and your WP, only enable the features you need.', 'ai-engine' ) |
| 19 | } |
| 20 | |
| 21 | export default i18n; |
| 22 |