forked from Chocobozzz/PeerTube
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
7ce44a7
commit 74b7c6d
Showing
10 changed files
with
81 additions
and
54 deletions.
There are no files selected for viewing
This file contains 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 characters
This file contains 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 characters
This file contains 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 characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,19 @@ | ||
import { environment } from '../../../environments/environment' | ||
|
||
function peertubeTranslate (str: string, translations: { [ id: string ]: string }) { | ||
return translations[str] ? translations[str] : str | ||
} | ||
|
||
function isOnDevLocale () { | ||
return environment.production === false && window.location.search === '?lang=fr' | ||
} | ||
|
||
function getDevLocale () { | ||
return 'fr' | ||
} | ||
|
||
export { | ||
getDevLocale, | ||
isOnDevLocale, | ||
peertubeTranslate | ||
} |
This file contains 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 characters
This file contains 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 characters
This file contains 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 characters
This file contains 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 characters
This file contains 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 characters
This file contains 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 characters
This file contains 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 characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,34 +1,45 @@ | ||
export const LOCALE_FILES = [ 'player', 'server' ] | ||
|
||
export const I18N_LOCALES = { | ||
'en-US': 'English (US)', | ||
fr: 'French' | ||
} | ||
|
||
const I18N_LOCALE_ALIAS = { | ||
'en': 'en-US' | ||
} | ||
|
||
export const POSSIBLE_LOCALES = Object.keys(I18N_LOCALES) | ||
.concat(Object.keys(I18N_LOCALE_ALIAS)) | ||
|
||
const possiblePaths = POSSIBLE_LOCALES.map(l => '/' + l) | ||
|
||
export function getDefaultLocale () { | ||
return 'en-US' | ||
} | ||
|
||
export function isDefaultLocale (locale: string) { | ||
return locale === getDefaultLocale() | ||
return getCompleteLocale(locale) === getCompleteLocale(getDefaultLocale()) | ||
} | ||
|
||
const possiblePaths = Object.keys(I18N_LOCALES).map(l => '/' + l) | ||
export function is18nPath (path: string) { | ||
return possiblePaths.indexOf(path) !== -1 | ||
} | ||
|
||
const possibleLanguages = Object.keys(I18N_LOCALES) | ||
export function is18nLocale (locale: string) { | ||
return possibleLanguages.indexOf(locale) !== -1 | ||
return POSSIBLE_LOCALES.indexOf(locale) !== -1 | ||
} | ||
|
||
export function getCompleteLocale (locale: string) { | ||
if (!locale) return locale | ||
|
||
if (I18N_LOCALE_ALIAS[locale]) return I18N_LOCALE_ALIAS[locale] | ||
|
||
return locale | ||
} | ||
|
||
// Only use in dev mode, so relax | ||
// In production, the locale always match with a I18N_LANGUAGES key | ||
export function buildFileLocale (locale: string) { | ||
if (!is18nLocale(locale)) { | ||
// Some working examples for development purpose | ||
if (locale.split('-')[ 0 ] === 'en') return 'en_US' | ||
else if (locale === 'fr') return 'fr' | ||
} | ||
const completeLocale = getCompleteLocale(locale) | ||
|
||
return locale.replace('-', '_') | ||
return completeLocale.replace('-', '_') | ||
} |