mirror of
https://github.com/CringeStudios/element-desktop.git
synced 2025-01-18 23:44:59 +01:00
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,
|
||
|
};
|