diff --git a/scripts/TranslationsToCsv.mjs b/scripts/TranslationsToCsv.mjs index 17464b7e..a52318f6 100644 --- a/scripts/TranslationsToCsv.mjs +++ b/scripts/TranslationsToCsv.mjs @@ -47,7 +47,9 @@ async function translationsToCsv() { for (let key of translationKeys) { let row = key; for (let lang of languages) { - row += '","' + (translations[lang][key] || '').replace(/"/g, '""'); + row += '","' + (translations[lang][key] || '') + .replace(/"/g, '""') + .replace(/,/g, '\\,'); } csv += row + '"\n'; if (key !== translationKeys[translationKeys.length - 1]) { diff --git a/src/js/translations/en.mjs b/src/js/translations/en.mjs index f758e8cc..37c22746 100644 --- a/src/js/translations/en.mjs +++ b/src/js/translations/en.mjs @@ -51,6 +51,7 @@ export default { "no_contacts_in_list": "No contacts in list", "no_followers_yet": "Share your profile link so others can follow you:", "no_notifications_yet": "No notifications yet", + "no_followers_yet_info": "Your posts, replies and likes are only shown to your followers and their network.", "none": "None", "note_to_self": "Note to Self", "nothing": "Nothing",