30d65a2a2853dbc1a97fa0acf6dafca945df8680
[oweals/peertube.git] / client / src / app / shared / i18n / i18n-utils.ts
1 import { environment } from '../../../environments/environment'
2
3 function isOnDevLocale () {
4   return environment.production === false && window.location.search === '?lang=fr'
5 }
6
7 function getDevLocale () {
8   return 'fr-FR'
9 }
10
11 export {
12   getDevLocale,
13   isOnDevLocale
14 }