File tree Expand file tree Collapse file tree 5 files changed +1392
-1
lines changed Expand file tree Collapse file tree 5 files changed +1392
-1
lines changed Original file line number Diff line number Diff line change 33## [ Unreleased]
44
55## 4.35.0
6+ - Add Arabic translation
67- Render number of blocks scanned and percentage progress using fixed-width digits for a more stable UI
78- Transaction details: show fiat value at time of transaction
89- Android: more modern look by changing the status bar color to white while the app is running
Original file line number Diff line number Diff line change @@ -27,6 +27,7 @@ type TLanguageSwitchProps = {
2727}
2828
2929const defaultLanguages = [
30+ { code : 'ar' , display : 'العربية' } ,
3031 { code : 'bg' , display : 'България' } ,
3132 { code : 'de' , display : 'Deutsch' } ,
3233 { code : 'en' , display : 'English' } ,
Original file line number Diff line number Diff line change 1616 */
1717
1818import i18n from 'i18next' ;
19+ import appTranslationsAR from '../locales/ar/app.json' ;
1920import appTranslationsDE from '../locales/de/app.json' ;
2021import appTranslationsEN from '../locales/en/app.json' ;
2122import appTranslationsFR from '../locales/fr/app.json' ;
@@ -66,6 +67,7 @@ i18Init.init({
6667 } ,
6768} ) ;
6869
70+ i18n . addResourceBundle ( 'ar' , 'app' , appTranslationsAR ) ;
6971i18n . addResourceBundle ( 'de' , 'app' , appTranslationsDE ) ;
7072i18n . addResourceBundle ( 'en' , 'app' , appTranslationsEN ) ;
7173i18n . addResourceBundle ( 'fr' , 'app' , appTranslationsFR ) ;
You can’t perform that action at this time.
0 commit comments