Added more profiles and changed bottom text

This commit is contained in:
z0ccc 2022-05-07 16:15:57 -04:00
parent fcea9f5b5f
commit 5cfb9c9fda
3 changed files with 231 additions and 206 deletions

View file

@ -128,7 +128,8 @@ const Popup = () => {
fontSize: '10px', fontSize: '10px',
}} }}
> >
Leave field blank to use real value. Tabs need to be initialized for full protection.
{/* <a href="/">Read more</a> */}
</div> </div>
</div> </div>
</div> </div>

View file

@ -83,7 +83,7 @@ const countryLocales = {
IL: { locale: 'he-IL' }, IL: { locale: 'he-IL' },
IN: { locale: 'hi-IN' }, IN: { locale: 'hi-IN' },
IQ: { locale: 'ar-IQ' }, IQ: { locale: 'ar-IQ' },
IR: { locale: 'hi-IN' }, IR: { locale: 'fa-IR' },
IS: { locale: 'is-IS' }, IS: { locale: 'is-IS' },
IT: { locale: 'it-IT' }, IT: { locale: 'it-IT' },
JM: { locale: 'en-JM' }, JM: { locale: 'en-JM' },

View file

@ -1,11 +1,35 @@
const profiles = { const profiles = {
none: { timezone: '', locale: '', lat: '', lon: '' }, none: { timezone: '', locale: '', lat: '', lon: '' },
baghdad: {
timezone: 'Asia/Baghdad',
locale: 'ar-IQ',
lat: 33.3152,
lon: 44.3661,
},
bangkok: {
timezone: 'Asia/Bangkok',
locale: 'th-TH',
lat: 13.7563,
lon: 100.5018,
},
berlin: { berlin: {
timezone: 'Europe/Berlin', timezone: 'Europe/Berlin',
locale: 'de-DE', locale: 'de-DE',
lat: 52.520007, lat: 52.520007,
lon: 13.404954, lon: 13.404954,
}, },
cairo: {
timezone: 'Africa/Cairo',
locale: 'ar-EG',
lat: 30.0444,
lon: 31.2357,
},
delhi: {
timezone: 'Asia/Kolkata',
locale: 'hi-IN',
lat: 28.7041,
lon: 77.1025,
},
} }
export default profiles export default profiles