Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
spawns
/
wp-content1
/
themes
/
Divi
/
core
/
code-snippets
/
app
/
lib
:
i18n.js
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
// External dependencies. import { get } from 'lodash'; const i18n = (context, key, ...args) => { const value = get(context, key, ''); if ('production' !== process.env.NODE_ENV && '' === value) { console.error('Failed to find i18n string:', key); } if (args.length > 0) { const sprintf = get(window, 'wp.i18n.sprintf'); return sprintf(value, ...args); } return value; }; export default (path, key, ...args) => i18n(window.et_code_snippets_data.i18n, [path, key], ...args);