diff options
| author | HJ <30-hj@users.noreply.git.pleroma.social> | 2022-04-06 15:48:33 +0000 |
|---|---|---|
| committer | HJ <30-hj@users.noreply.git.pleroma.social> | 2022-04-06 15:48:33 +0000 |
| commit | 0e56ac1c2ba198cd6c91586803758ed0e88cab38 (patch) | |
| tree | 4e7c100030cbe779de64b77fb13409d41d2c71b7 /src | |
| parent | a6134471055935dcbb94d9b2ed69dc8c2cf57832 (diff) | |
| parent | 853f5145be2296911862a845d45fbb0242a62ade (diff) | |
Merge branch 'fix-csp-vue3' into 'develop'
Makes develop usable on stock PleromaBE
See merge request pleroma/pleroma-fe!1504
Diffstat (limited to 'src')
| -rw-r--r-- | src/i18n/messages.js | 4 | ||||
| -rw-r--r-- | src/i18n/te.json | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/i18n/messages.js b/src/i18n/messages.js index 2a1161be..977b8eb3 100644 --- a/src/i18n/messages.js +++ b/src/i18n/messages.js @@ -41,12 +41,12 @@ const loaders = { const messages = { languages: ['en', ...Object.keys(loaders)], default: { - en: require('./en.json') + en: require('./en.json').default }, setLanguage: async (i18n, language) => { if (loaders[language]) { let messages = await loaders[language]() - i18n.setLocaleMessage(language, messages) + i18n.setLocaleMessage(language, messages.default) } i18n.locale = language } diff --git a/src/i18n/te.json b/src/i18n/te.json index 1216de59..4f255505 100644 --- a/src/i18n/te.json +++ b/src/i18n/te.json @@ -49,7 +49,7 @@ "notifications.repeated_you": "మీ స్థితిని పునరావృతం చేసారు", "notifications.no_more_notifications": "ఇక నోటిఫికేషన్లు లేవు", "post_status.new_status": "క్రొత్త స్థితిని పోస్ట్ చేయండి", - "post_status.account_not_locked_warning": "మీ ఖాతా {౦} కాదు. ఎవరైనా మిమ్మల్ని అనుసరించి అనుచరులకు మాత్రమే ఉద్దేశించిన పోస్టులను చూడవచ్చు.", + "post_status.account_not_locked_warning": "మీ ఖాతా {0} కాదు. ఎవరైనా మిమ్మల్ని అనుసరించి అనుచరులకు మాత్రమే ఉద్దేశించిన పోస్టులను చూడవచ్చు.", "post_status.account_not_locked_warning_link": "తాళం వేయబడినది", "post_status.attachments_sensitive": "జోడింపులను సున్నితమైనవిగా గుర్తించండి", "post_status.content_type.text/plain": "సాధారణ అక్షరాలు", |
