diff options
author | Chocobozzz <me@florianbigard.com> | 2023-02-13 15:57:08 +0100 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2023-02-13 15:57:08 +0100 |
commit | dc3e3c26b95bc419ca3ad953539b3655885950c7 (patch) | |
tree | 87eaeca2d2056d47767c93a6b51d1dca111e88fc /scripts/i18n | |
parent | c5b28f63367ac373bfa38d4b21791a0a5f1d78c1 (diff) | |
download | PeerTube-dc3e3c26b95bc419ca3ad953539b3655885950c7.tar.gz PeerTube-dc3e3c26b95bc419ca3ad953539b3655885950c7.tar.zst PeerTube-dc3e3c26b95bc419ca3ad953539b3655885950c7.zip |
Fix untranslatable "previous/next video"
Diffstat (limited to 'scripts/i18n')
-rwxr-xr-x | scripts/i18n/create-custom-files.ts | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/scripts/i18n/create-custom-files.ts b/scripts/i18n/create-custom-files.ts index eca2fe09d..66dbbfcb8 100755 --- a/scripts/i18n/create-custom-files.ts +++ b/scripts/i18n/create-custom-files.ts | |||
@@ -62,7 +62,9 @@ const playerKeys = { | |||
62 | 'The video failed to play, will try to fast forward.': 'The video failed to play, will try to fast forward.', | 62 | 'The video failed to play, will try to fast forward.': 'The video failed to play, will try to fast forward.', |
63 | '{1} / {2} dropped of {3}': '{1} / {2} dropped of {3}', | 63 | '{1} / {2} dropped of {3}': '{1} / {2} dropped of {3}', |
64 | ' (muted)': ' (muted)', | 64 | ' (muted)': ' (muted)', |
65 | '{1} from servers · {2} from peers': '{1} from servers · {2} from peers' | 65 | '{1} from servers · {2} from peers': '{1} from servers · {2} from peers', |
66 | 'Previous video': 'Previous video', | ||
67 | 'Next video': 'Next video' | ||
66 | } | 68 | } |
67 | Object.assign(playerKeys, videojs) | 69 | Object.assign(playerKeys, videojs) |
68 | 70 | ||