-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Chore: Add translated languages to account settings (#826)
* Add available languages in account settings Co-authored-by: Sojan <[email protected]>
- Loading branch information
1 parent
d6d15c8
commit c7120e9
Showing
37 changed files
with
471 additions
and
248 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,5 @@ | ||
module ApplicationHelper | ||
def available_locales_with_name | ||
LANGUAGES_CONFIG.map { |_key, val| val.slice(:name, :iso_639_1_code) } | ||
end | ||
end |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,15 @@ | ||
import ca from './ca'; | ||
import en from './en'; | ||
import de from './de'; | ||
import ml from './ml'; | ||
import ca from './locale/ca'; | ||
import de from './locale/de'; | ||
import el from './locale/el'; | ||
import en from './locale/en'; | ||
import ml from './locale/ml'; | ||
import pt from './locale/pt'; | ||
|
||
export default { | ||
ca, | ||
de, | ||
el, | ||
en, | ||
ml, | ||
pt, | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
/* eslint-disable */ | ||
import { default as _agentMgmt } from './agentMgmt.json'; | ||
import { default as _billing } from './billing.json'; | ||
import { default as _cannedMgmt } from './cannedMgmt.json'; | ||
import { default as _chatlist } from './chatlist.json'; | ||
import { default as _contact } from './contact.json'; | ||
import { default as _conversation } from './conversation.json'; | ||
import { default as _inboxMgmt } from './inboxMgmt.json'; | ||
import { default as _login } from './login.json'; | ||
import { default as _report } from './report.json'; | ||
import { default as _resetPassword } from './resetPassword.json'; | ||
import { default as _setNewPassword } from './setNewPassword.json'; | ||
import { default as _settings } from './settings.json'; | ||
import { default as _signup } from './signup.json'; | ||
import { default as _integrations } from './integrations.json'; | ||
import { default as _generalSettings } from './generalSettings.json'; | ||
|
||
export default { | ||
..._agentMgmt, | ||
..._billing, | ||
..._cannedMgmt, | ||
..._chatlist, | ||
..._contact, | ||
..._conversation, | ||
..._inboxMgmt, | ||
..._login, | ||
..._report, | ||
..._resetPassword, | ||
..._setNewPassword, | ||
..._settings, | ||
..._signup, | ||
..._integrations, | ||
..._generalSettings, | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
/* eslint-disable */ | ||
import { default as _agentMgmt } from './agentMgmt.json'; | ||
import { default as _billing } from './billing.json'; | ||
import { default as _cannedMgmt } from './cannedMgmt.json'; | ||
import { default as _chatlist } from './chatlist.json'; | ||
import { default as _contact } from './contact.json'; | ||
import { default as _conversation } from './conversation.json'; | ||
import { default as _inboxMgmt } from './inboxMgmt.json'; | ||
import { default as _login } from './login.json'; | ||
import { default as _report } from './report.json'; | ||
import { default as _resetPassword } from './resetPassword.json'; | ||
import { default as _setNewPassword } from './setNewPassword.json'; | ||
import { default as _settings } from './settings.json'; | ||
import { default as _signup } from './signup.json'; | ||
import { default as _integrations } from './integrations.json'; | ||
import { default as _generalSettings } from './generalSettings.json'; | ||
|
||
export default { | ||
..._agentMgmt, | ||
..._billing, | ||
..._cannedMgmt, | ||
..._chatlist, | ||
..._contact, | ||
..._conversation, | ||
..._inboxMgmt, | ||
..._login, | ||
..._report, | ||
..._resetPassword, | ||
..._setNewPassword, | ||
..._settings, | ||
..._signup, | ||
..._integrations, | ||
..._generalSettings, | ||
}; |
Oops, something went wrong.