diff --git a/docs/commands.md b/docs/commands.md index 76e5371..394a000 100644 --- a/docs/commands.md +++ b/docs/commands.md @@ -563,7 +563,7 @@ Set your locale Usage: discloud user locale [arguments] -h, --help Print this usage information. -l, --locale= --s, --system Use current system language (C.UTF-8) +-s, --system Use current system language (en-US) ``` ### zip diff --git a/lib/commands/user/locale.dart b/lib/commands/user/locale.dart index 6f8fcd9..e662c0e 100644 --- a/lib/commands/user/locale.dart +++ b/lib/commands/user/locale.dart @@ -16,7 +16,7 @@ final class UserLocaleCommand extends Command { ..addFlag( "system", abbr: "s", - help: "Use current system language (${Platform.localeName})", + help: "Use current system language ($_localeName)", negatable: false, ); }