diff options
Diffstat (limited to 'shared/core-utils/i18n')
-rw-r--r-- | shared/core-utils/i18n/i18n.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/shared/core-utils/i18n/i18n.ts b/shared/core-utils/i18n/i18n.ts index abc7acc8b..b720fb84e 100644 --- a/shared/core-utils/i18n/i18n.ts +++ b/shared/core-utils/i18n/i18n.ts | |||
@@ -82,7 +82,7 @@ export function isDefaultLocale (locale: string) { | |||
82 | } | 82 | } |
83 | 83 | ||
84 | export function peertubeTranslate (str: string, translations?: { [ id: string ]: string }) { | 84 | export function peertubeTranslate (str: string, translations?: { [ id: string ]: string }) { |
85 | if (!translations || !translations[str]) return str | 85 | if (!translations?.[str]) return str |
86 | 86 | ||
87 | return translations[str] | 87 | return translations[str] |
88 | } | 88 | } |