1
0
mirror of https://github.com/glitch-soc/mastodon.git synced 2025-02-28 21:44:17 -05:00

12 lines
328 B
JavaScript
Raw Normal View History

2023-05-31 23:43:39 +02:00
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;
};