Created
April 13, 2020 15:50
-
-
Save tmkasun/e6de049a108e87570e7d9aaddb14dbe7 to your computer and use it in GitHub Desktop.
Revisions
-
tmkasun created this gist
Apr 13, 2020 .There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,41 @@ const Configurations = { /* Refer devportal/source/src/defaultTheme.js */ custom: { languageSwitch: { active: true, languages: [ { key: 'en', image: '/site/public/images/flags/en.png', imageWidth: 24, // in pixles text: 'English', direction: 'ltr', }, { key: 'es', image: '/site/public/images/flags/sp.png', imageWidth: 24, // in pixles text: 'Spanish', direction: 'ltr', }, { key: 'ar', image: '/site/public/images/flags/ar.png', imageWidth: 24, // in pixles text: 'Arabic', direction: 'rtl', }, { key: 'si', image: '/site/public/images/flags/si.png', imageWidth: 24, // in pixles text: 'Sinhala', direction: 'ltr', } ], showFlag: true, showText: true, minWidth: 60, // Width of the language switcher in pixles } } };