Files
element-desktop/src/language-helper.js
2021-04-23 16:56:17 +01:00

12 lines
236 B
JavaScript

// 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,
};