diff options
author | Damiano Galassi <[email protected]> | 2019-02-15 08:48:48 +0100 |
---|---|---|
committer | Damiano Galassi <[email protected]> | 2019-02-15 08:48:48 +0100 |
commit | d62e16402dc19c569d2122eab16b121775cc302f (patch) | |
tree | 9f4cfc59edce712e136d0973e0fee92b68994257 /macosx/HBStateFormatter.m | |
parent | 8796cf9a2f9614ef58cbb26e2bf9f15a3183556f (diff) |
MacGui: Use the 00:00:00 format for all the time strings.
Diffstat (limited to 'macosx/HBStateFormatter.m')
-rw-r--r-- | macosx/HBStateFormatter.m | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/macosx/HBStateFormatter.m b/macosx/HBStateFormatter.m index 9d39d29b2..584be2537 100644 --- a/macosx/HBStateFormatter.m +++ b/macosx/HBStateFormatter.m @@ -37,7 +37,7 @@ if (p.seconds > -1) { - [string appendFormat:HBKitLocalizedString(@" (ETA %02dh%02dm%02ds)", @"HBStateFormatter -> search time format"), p.hours, p.minutes, p.seconds]; + [string appendFormat:HBKitLocalizedString(@" (ETA %02d:%02d:%02d)", @"HBStateFormatter -> search time format"), p.hours, p.minutes, p.seconds]; } break; @@ -77,13 +77,13 @@ if (p.rate_cur > 0.0) { [string appendFormat: - HBKitLocalizedString(@" (%.2f fps, avg %.2f fps, ETA %02dh%02dm%02ds)", @"HBStateFormatter -> work time format"), + HBKitLocalizedString(@" (%.2f fps, avg %.2f fps, ETA %02d:%02d:%02d)", @"HBStateFormatter -> work time format"), p.rate_cur, p.rate_avg, p.hours, p.minutes, p.seconds]; } else { [string appendFormat: - HBKitLocalizedString(@" (ETA %02dh%02dm%02ds)", @"HBStateFormatter -> work time format"), + HBKitLocalizedString(@" (ETA %02d:%02d:%02d)", @"HBStateFormatter -> work time format"), p.hours, p.minutes, p.seconds]; } } |