From 6b779d59a1551901b645c88e795e9519fcd12556 Mon Sep 17 00:00:00 2001 From: Simon Benezan Date: Sun, 21 Apr 2024 03:21:07 +0200 Subject: [PATCH] Move help for --language-tagging --- crunchy-cli-core/src/archive/command.rs | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/crunchy-cli-core/src/archive/command.rs b/crunchy-cli-core/src/archive/command.rs index e2fff5c..0303db7 100644 --- a/crunchy-cli-core/src/archive/command.rs +++ b/crunchy-cli-core/src/archive/command.rs @@ -105,11 +105,6 @@ pub struct Archive { )] #[arg(long, default_value_t = 200)] pub(crate) merge_auto_tolerance: u32, - #[arg( - long, - help = "Specified which language tagging the audio and subtitle tracks and language specific format options should have. \ - Valid options are: 'default' (how Crunchyroll uses it internally), 'ietf' (according to the IETF standard)" - )] #[arg(help = "Tries to sync the timing of all downloaded audios to match one video")] #[arg( long_help = "Tries to sync the timing of all downloaded audios to match one video. \ @@ -122,6 +117,10 @@ pub struct Archive { #[arg(long, require_equals = true, num_args = 0..=1, default_missing_value = "7.5")] pub(crate) sync_start: Option, + #[arg( + help = "Specified which language tagging the audio and subtitle tracks and language specific format options should have. \ + Valid options are: 'default' (how Crunchyroll uses it internally), 'ietf' (according to the IETF standard)" + )] #[arg( long_help = "Specified which language tagging the audio and subtitle tracks and language specific format options should have. \ Valid options are: 'default' (how Crunchyroll uses it internally), 'ietf' (according to the IETF standard; you might run in issues as there are multiple locales which resolve to the same IETF language code, e.g. 'es-LA' and 'es-ES' are both resolving to 'es')"