element-desktop/src/language-helper.js

12 lines
236 B
JavaScript
Raw Normal View History

// Function which only purpose is to mark that a string is translatable
// Does not actually do anything. It's helpful for automatic extraction of translatable strings
function _td(s) {
return s;
}
module.exports = {
_td,
};