]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame_incremental - client/src/app/helpers/i18n-utils.ts
Merge branch 'release/4.2.0' into develop
[github/Chocobozzz/PeerTube.git] / client / src / app / helpers / i18n-utils.ts
... / ...
CommitLineData
1import { environment } from '../../environments/environment'
2import IntlMessageFormat from 'intl-messageformat'
3
4function isOnDevLocale () {
5 return environment.production === false && window.location.search === '?lang=fr'
6}
7
8function getDevLocale () {
9 return 'fr-FR'
10}
11
12function prepareIcu (icu: string) {
13 let alreadyWarned = false
14
15 try {
16 const msg = new IntlMessageFormat(icu, $localize.locale)
17
18 return (context: { [id: string]: number | string }, fallback: string) => {
19 try {
20 return msg.format(context) as string
21 } catch (err) {
22 if (!alreadyWarned) console.warn('Cannot format ICU %s.', icu, err)
23
24 alreadyWarned = true
25 return fallback
26 }
27 }
28 } catch (err) {
29 console.warn('Cannot build intl message %s.', icu, err)
30
31 return (_context: unknown, fallback: string) => fallback
32 }
33}
34
35export {
36 getDevLocale,
37 prepareIcu,
38 isOnDevLocale
39}