From fac29e775a65bad8c360dff8d09cacd6f478767b Mon Sep 17 00:00:00 2001 From: Fabian Boehm Date: Thu, 9 Jan 2025 16:41:17 +0100 Subject: [PATCH] type: Do not translate the type "builtin" This is a functional string, it should not be translated. And we do not translate the others. --- src/builtins/type.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/builtins/type.rs b/src/builtins/type.rs index 7a6c5727d..50e764d20 100644 --- a/src/builtins/type.rs +++ b/src/builtins/type.rs @@ -169,7 +169,7 @@ pub fn r#type(parser: &Parser, streams: &mut IoStreams, argv: &mut [&wstr]) -> O if !opts.get_type { streams.out.append(wgettext_fmt!("%ls is a builtin\n", arg)); } else if opts.get_type { - streams.out.append(wgettext!("builtin\n")); + streams.out.append(L!("builtin\n")); } if !opts.all { continue;