mirror of
https://gitee.com/hhyykk/ipms-sjy.git
synced 2025-07-13 18:45:06 +08:00
13 lines
330 B
JavaScript
13 lines
330 B
JavaScript
import translations from './zn'
|
|
export default function customTranslate(template, replacements) {
|
|
replacements = replacements || {};
|
|
|
|
// Translate
|
|
template = translations[template] || template;
|
|
|
|
// Replace
|
|
return template.replace(/{([^}]+)}/g, function(_, key) {
|
|
return replacements[key] || '{' + key + '}';
|
|
});
|
|
}
|