diff options
author | Lennart Poettering <lennart@poettering.net> | 2012-11-23 21:38:42 +0100 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2012-11-23 21:38:42 +0100 |
commit | 3062c15117ab6eac5e8b3a3ceb5351ec22ea4481 (patch) | |
tree | 8a2935f2c0a543ac14f70010bb4768dc6508aa12 /src | |
parent | b8b3589f2e774f06ea48bdbbf4bb8ba3459f28a4 (diff) |
timedatectl: improve english language DST change texts a bit
Diffstat (limited to 'src')
-rw-r--r-- | src/timedate/timedatectl.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/timedate/timedatectl.c b/src/timedate/timedatectl.c index d379bccd7f..6a1c19a574 100644 --- a/src/timedate/timedatectl.c +++ b/src/timedate/timedatectl.c @@ -173,10 +173,10 @@ static void print_status_info(StatusInfo *i) { zero(tm); assert_se(strftime(b, sizeof(b), "%a %Y-%m-%d %H:%M:%S %Z", localtime_r(&tc, &tm)) > 0); char_array_0(b); - printf(" Last DST change: DST became %s\n" + printf(" Last DST change: DST %s at\n" " %s\n" " %s\n", - is_dstc ? "active" : "inactive", a, b); + is_dstc ? "began" : "ended", a, b); t = tn - 1; zero(tm); @@ -186,10 +186,10 @@ static void print_status_info(StatusInfo *i) { zero(tm); assert_se(strftime(b, sizeof(b), "%a %Y-%m-%d %H:%M:%S %Z", localtime_r(&tn, &tm)) > 0); char_array_0(b); - printf(" Next DST change: DST will become %s, the clock will jump %s\n" + printf(" Next DST change: DST %s (the clock jumps %s) at\n" " %s\n" " %s\n", - is_dstn ? "active" : "inactive", jump_str(dn, s, sizeof(s)), a, b); + is_dstn ? "begins" : "ends", jump_str(dn, s, sizeof(s)), a, b); free(zc); free(zn); |