You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
328 B
11 lines
328 B
const path = require('path'); |
|
|
|
const currentTranslations = require(path.join(__dirname, "../app/javascript/mastodon/locales/en.json")); |
|
|
|
exports.format = (msgs) => { |
|
const results = {}; |
|
for (const [id, msg] of Object.entries(msgs)) { |
|
results[id] = currentTranslations[id] || msg.defaultMessage; |
|
} |
|
return results; |
|
};
|
|
|