This repository has been archived by the owner on Nov 4, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 48
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat!: remove Transifex calls for OEP-58 (#820)
- Loading branch information
Showing
18 changed files
with
3 additions
and
1,965 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,3 +17,5 @@ temp/babel-plugin-react-intl | |
/temp | ||
/.vscode | ||
module.config.js | ||
|
||
src/i18n/messages |
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
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,45 +1 @@ | ||
import { messages as paragonMessages } from '@openedx/paragon'; | ||
import { messages as headerMessages } from '@edx/frontend-component-header'; | ||
import { messages as footerMessages } from '@edx/frontend-component-footer'; | ||
|
||
import arMessages from './messages/ar.json'; | ||
import frMessages from './messages/fr.json'; | ||
import es419Messages from './messages/es_419.json'; | ||
import es419MessagesProtected from '../subscription/i18n-protected-messages/es_419.json'; | ||
import zhcnMessages from './messages/zh_CN.json'; | ||
import ptMessages from './messages/pt.json'; | ||
import itMessages from './messages/it.json'; | ||
import ukMessages from './messages/uk.json'; | ||
import deMessages from './messages/de.json'; | ||
import ruMessages from './messages/ru.json'; | ||
import hiMessages from './messages/hi.json'; | ||
import frCAMessages from './messages/fr_CA.json'; | ||
import deDEMessages from './messages/de_DE.json'; | ||
import itITMessages from './messages/it_IT.json'; | ||
import ptPTMessages from './messages/pt_PT.json'; | ||
// no need to import en messages-- they are in the defaultMessage field | ||
|
||
const appMessages = { | ||
ar: arMessages, | ||
// override the protected translations | ||
'es-419': { ...es419Messages, ...es419MessagesProtected }, | ||
fr: frMessages, | ||
'zh-cn': zhcnMessages, | ||
pt: ptMessages, | ||
it: itMessages, | ||
de: deMessages, | ||
hi: hiMessages, | ||
'fr-ca': frCAMessages, | ||
ru: ruMessages, | ||
uk: ukMessages, | ||
'de-de': deDEMessages, | ||
'it-it': itITMessages, | ||
'pt-pt': ptPTMessages, | ||
}; | ||
|
||
export default [ | ||
headerMessages, | ||
footerMessages, | ||
paragonMessages, | ||
appMessages, | ||
]; | ||
export default []; |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.