aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/shared/i18n/i18n-utils.ts
blob: c1de51b7bd64950abd82a6ce43eebcf457c501e8 (plain) (blame)
1
2
3
4
5
6
7
function peertubeTranslate (str: string, translations: { [ id: string ]: string }) {
  return translations[str] ? translations[str] : str
}

export {
  peertubeTranslate
}