12 lines
236 B
JavaScript
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,
|
|
};
|