From d62e16402dc19c569d2122eab16b121775cc302f Mon Sep 17 00:00:00 2001 From: Damiano Galassi Date: Fri, 15 Feb 2019 08:48:48 +0100 Subject: [PATCH] MacGui: Use the 00:00:00 format for all the time strings. --- macosx/HBStateFormatter.m | 6 +++--- 1 file 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]; } } -- 2.40.0