1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-03-03 15:32:30 +02:00
joplin/lib/locale.js

9 lines
219 B
JavaScript
Raw Normal View History

2017-05-14 23:51:45 +02:00
import { sprintf } from 'sprintf-js';
2017-05-09 19:17:58 +00:00
// This function does nothing for now, but later will return
// a different string depending on the language.
2017-05-14 23:51:45 +02:00
function _(s, ...args) {
return sprintf(s, ...args);
2017-05-09 19:17:58 +00:00
}
export { _ };