Chore: Add translated languages to account settings (#826)
* Add available languages in account settings Co-authored-by: Sojan <sojan@pepalo.com>
This commit is contained in:
@@ -1,12 +0,0 @@
|
||||
export default {
|
||||
COMPONENTS: {
|
||||
FILE_BUBBLE: {
|
||||
DOWNLOAD: 'Download',
|
||||
UPLOADING: 'Uploading...',
|
||||
},
|
||||
FORM_BUBBLE: {
|
||||
SUBMIT: 'Submit',
|
||||
},
|
||||
},
|
||||
POWERED_BY: 'Powered by Chatwoot',
|
||||
};
|
||||
@@ -1,5 +1,15 @@
|
||||
import en from './en';
|
||||
import { default as ca } from './locale/ca.json';
|
||||
import { default as de } from './locale/de.json';
|
||||
import { default as el } from './locale/el.json';
|
||||
import { default as en } from './locale/en.json';
|
||||
import { default as ml } from './locale/ml.json';
|
||||
import { default as pt } from './locale/pt.json';
|
||||
|
||||
export default {
|
||||
ca,
|
||||
de,
|
||||
el,
|
||||
en,
|
||||
ml,
|
||||
pt,
|
||||
};
|
||||
|
||||
14
app/javascript/widget/i18n/locale/ca.json
Normal file
14
app/javascript/widget/i18n/locale/ca.json
Normal file
@@ -0,0 +1,14 @@
|
||||
{
|
||||
"COMPONENTS": {
|
||||
"FILE_BUBBLE": {
|
||||
"DOWNLOAD": "Descarrega",
|
||||
"UPLOADING": "S'està pujant..."
|
||||
},
|
||||
"FORM_BUBBLE": {
|
||||
"SUBMIT": "sotmetre's"
|
||||
}
|
||||
},
|
||||
"POWERED_BY": "Desenvolupat per Chatwoot",
|
||||
"EMAIL_PLACEHOLDER": "Introduïu el vostre correu electrònic",
|
||||
"CHAT_PLACEHOLDER": "Escriu el teu missatge"
|
||||
}
|
||||
14
app/javascript/widget/i18n/locale/de.json
Normal file
14
app/javascript/widget/i18n/locale/de.json
Normal file
@@ -0,0 +1,14 @@
|
||||
{
|
||||
"COMPONENTS": {
|
||||
"FILE_BUBBLE": {
|
||||
"DOWNLOAD": "Herunterladen",
|
||||
"UPLOADING": "Hochladen..."
|
||||
},
|
||||
"FORM_BUBBLE": {
|
||||
"SUBMIT": "Submit"
|
||||
}
|
||||
},
|
||||
"POWERED_BY": "Unterstützt von Chatwoot",
|
||||
"EMAIL_PLACEHOLDER": "Bitte geben Sie ihre E-Mail-Adresse ein",
|
||||
"CHAT_PLACEHOLDER": "Geben Sie Ihre Nachricht ein"
|
||||
}
|
||||
14
app/javascript/widget/i18n/locale/el.json
Normal file
14
app/javascript/widget/i18n/locale/el.json
Normal file
@@ -0,0 +1,14 @@
|
||||
{
|
||||
"COMPONENTS": {
|
||||
"FILE_BUBBLE": {
|
||||
"DOWNLOAD": "Κατεβάστε",
|
||||
"UPLOADING": "Μεταφόρτωση..."
|
||||
},
|
||||
"FORM_BUBBLE": {
|
||||
"SUBMIT": "υποβάλλουν"
|
||||
}
|
||||
},
|
||||
"POWERED_BY": "Με την υποστήριξη του Chatwoot",
|
||||
"EMAIL_PLACEHOLDER": "Εισαγάγετε το email σας",
|
||||
"CHAT_PLACEHOLDER": "Πληκτρολογήστε το μήνυμά σας"
|
||||
}
|
||||
14
app/javascript/widget/i18n/locale/en.json
Normal file
14
app/javascript/widget/i18n/locale/en.json
Normal file
@@ -0,0 +1,14 @@
|
||||
{
|
||||
"COMPONENTS": {
|
||||
"FILE_BUBBLE": {
|
||||
"DOWNLOAD": "Download",
|
||||
"UPLOADING": "Uploading..."
|
||||
},
|
||||
"FORM_BUBBLE": {
|
||||
"SUBMIT": "Submit"
|
||||
}
|
||||
},
|
||||
"POWERED_BY": "Powered by Chatwoot",
|
||||
"EMAIL_PLACEHOLDER": "Please enter your email",
|
||||
"CHAT_PLACEHOLDER": "Type your message"
|
||||
}
|
||||
14
app/javascript/widget/i18n/locale/ml.json
Normal file
14
app/javascript/widget/i18n/locale/ml.json
Normal file
@@ -0,0 +1,14 @@
|
||||
{
|
||||
"COMPONENTS": {
|
||||
"FILE_BUBBLE": {
|
||||
"DOWNLOAD": "ഡൗൺലോഡ്",
|
||||
"UPLOADING": "അപ്ലോഡുചെയ്യുന്നു..."
|
||||
},
|
||||
"FORM_BUBBLE": {
|
||||
"SUBMIT": "സമർപ്പിക്കുക"
|
||||
}
|
||||
},
|
||||
"POWERED_BY": "Powered by Chatwoot",
|
||||
"EMAIL_PLACEHOLDER": "നിങ്ങളുടെ ഇമെയിൽ നൽകുക",
|
||||
"CHAT_PLACEHOLDER": "നിങ്ങളുടെ സന്ദേശം ടൈപ്പുചെയ്യുക"
|
||||
}
|
||||
14
app/javascript/widget/i18n/locale/pt.json
Normal file
14
app/javascript/widget/i18n/locale/pt.json
Normal file
@@ -0,0 +1,14 @@
|
||||
{
|
||||
"COMPONENTS": {
|
||||
"FILE_BUBBLE": {
|
||||
"DOWNLOAD": "Baixar",
|
||||
"UPLOADING": "Enviando..."
|
||||
},
|
||||
"FORM_BUBBLE": {
|
||||
"SUBMIT": "Enviar"
|
||||
}
|
||||
},
|
||||
"POWERED_BY": "Desenvolvido por Chatwoot",
|
||||
"EMAIL_PLACEHOLDER": "Por favor introduza o seu e-mail",
|
||||
"CHAT_PLACEHOLDER": "Digite sua mensagem"
|
||||
}
|
||||
Reference in New Issue
Block a user