joplin/ReactNativeClient/lib/locale.js

9 lines
219 B
JavaScript
Raw Normal View History

2017-05-14 21:51:45 +00: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 21:51:45 +00:00
function _(s, ...args) {
return sprintf(s, ...args);
2017-05-09 19:17:58 +00:00
}
export { _ };