language based time formatting

This commit is contained in:
frost768 2023-04-23 20:01:12 +03:00
parent cccc84624a
commit 6ef41bdf1c
4 changed files with 7 additions and 8 deletions

View File

@ -58,7 +58,7 @@
"backToHomeShort": "Back", "backToHomeShort": "Back",
"seasonAndEpisode": "S{{season}} E{{episode}}", "seasonAndEpisode": "S{{season}} E{{episode}}",
"timeLeft": "{{timeLeft}} left", "timeLeft": "{{timeLeft}} left",
"finishAt": "Finish at {{timeFinished}}", "finishAt": "Finish at {{timeFinished, datetime}}",
"buttons": { "buttons": {
"episodes": "Episodes", "episodes": "Episodes",
"source": "Source", "source": "Source",

View File

@ -40,7 +40,7 @@
"backToHomeShort": "Retour", "backToHomeShort": "Retour",
"seasonAndEpisode": "S{{season}} E{{episode}}", "seasonAndEpisode": "S{{season}} E{{episode}}",
"timeLeft": "{{timeLeft}} restant", "timeLeft": "{{timeLeft}} restant",
"finishAt": "Terminer à {{timeFinished}}", "finishAt": "Terminer à {{timeFinished, datetime}}",
"buttons": { "buttons": {
"episodes": "Épisodes", "episodes": "Épisodes",
"source": "Source", "source": "Source",

View File

@ -58,7 +58,7 @@
"backToHomeShort": "Terug", "backToHomeShort": "Terug",
"seasonAndEpisode": "S{{season}} A{{episode}}", "seasonAndEpisode": "S{{season}} A{{episode}}",
"timeLeft": "Nog {{timeLeft}}", "timeLeft": "Nog {{timeLeft}}",
"finishAt": "Afgelopen om {{timeFinished}}", "finishAt": "Afgelopen om {{timeFinished, datetime}}",
"buttons": { "buttons": {
"episodes": "Afleveringen", "episodes": "Afleveringen",
"source": "Bron", "source": "Bron",

View File

@ -61,13 +61,12 @@ export function TimeAction(props: Props) {
const timeFinished = new Date( const timeFinished = new Date(
new Date().getTime() + new Date().getTime() +
(videoTime.duration * 1000) / mediaPlaying.playbackSpeed (videoTime.duration * 1000) / mediaPlaying.playbackSpeed
).toLocaleTimeString("en-US", { );
hour: "numeric",
minute: "numeric",
hour12: true,
});
const formattedTimeFinished = ` - ${t("videoPlayer.finishAt", { const formattedTimeFinished = ` - ${t("videoPlayer.finishAt", {
timeFinished, timeFinished,
formatParams: {
timeFinished: { hour: "numeric", minute: "numeric" },
},
})}`; })}`;
let formattedTime: string; let formattedTime: string;