Skip to content

Commit d0c61da

Browse files
committed
fix localization
1 parent 2c348ef commit d0c61da

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

sshdconfig/locales/en-us.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ defaultShellMustBeString = "shell must be a string"
2525
windowsOnly = "Microsoft.OpenSSH.SSHD/Windows is only applicable to Windows"
2626

2727
[main]
28-
export = "Export"
28+
export = "Export command: %{input}"
2929
schema = "Schema command:"
3030
set = "Set command: '%{input}'"
3131

sshdconfig/src/main.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ fn main() {
3535

3636
let result = match &args.command {
3737
Command::Export { input } => {
38+
debug!("{}: {:?}", t!("main.export").to_string(), input);
3839
match build_command_info(input.as_ref(), false) {
3940
Ok(cmd_info) => get_sshd_settings(&cmd_info, false),
4041
Err(e) => Err(e),

0 commit comments

Comments
 (0)