1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-04-01 21:24:45 +02:00
2017-07-17 20:26:19 +00:00

13 lines
254 B
JavaScript

import { sprintf } from 'sprintf-js';
// This function does nothing for now, but later will return
// a different string depending on the language.
function _(s, ...args) {
return sprintf(s, ...args);
}
function loadLocale(locale) {
}
export { _ };