From a3fbcb9fbead10dc7c98058db492ef1e9cff20ee Mon Sep 17 00:00:00 2001 From: Mikael Finstad Date: Thu, 16 Feb 2023 23:47:01 +0800 Subject: [PATCH] fix source i18n typo --- src/dialogs/index.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/dialogs/index.jsx b/src/dialogs/index.jsx index 6df67bce..d6e71cac 100644 --- a/src/dialogs/index.jsx +++ b/src/dialogs/index.jsx @@ -209,7 +209,7 @@ async function askForSegmentsRandomDurationRange() { input: 'text', showCancelButton: true, inputValue: 'Duration 3 to 5, Gap 0 to 2', - text: i18n.t('Divide timeline into segments with randomized durations and gaps between sergments, in a range specified in seconds with the correct format.'), + text: i18n.t('Divide timeline into segments with randomized durations and gaps between segments, in a range specified in seconds with the correct format.'), inputValidator: (v) => { const parsed = parse(v); if (!parsed) return i18n.t('Invalid input');