We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e22bfab commit 797952fCopy full SHA for 797952f
3 files changed
src/uu/who/locales/en-US.ftl
@@ -32,9 +32,7 @@ who-user-count = # { $count ->
32
}
33
34
# Idle time indicators
35
-who-idle-current = .
36
who-idle-old = old
37
-who-idle-unknown = ?
38
39
# System information
40
who-runlevel = run-level { $level }
src/uu/who/locales/fr-FR.ftl
@@ -32,7 +32,6 @@ who-user-count = # { $count ->
who-idle-old = anc.
who-runlevel = niveau-exec { $level }
src/uu/who/src/platform/unix.rs
@@ -379,7 +379,7 @@ impl Who {
379
380
381
let idle = if last_change == 0 {
382
- translate!("who-idle-unknown").into()
+ " ?".into()
383
} else {
384
idle_string(last_change, 0)
385
};
0 commit comments