Skip to content

Commit

Permalink
training_timer: Use regular colon as time divider
Browse files Browse the repository at this point in the history
Use „:” (U+003A) instead of „∶” (U+2236). This will fix the reversed
time in RTL languages.

See
https://gitlab.gnome.org/Teams/Websites/developer.gnome.org-hig/-/issues/127
for more information.
  • Loading branch information
yoseforb authored Sep 15, 2024
1 parent 2a7376e commit 6b0b3de
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/training_timer.rs
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ fn remaining_str_colon(remaining_s: usize) -> String {
// Translators: Shown in the timer page when the training has come to the end
gettext("Finished!")
} else {
String::from("")
String::from(":")
}
}

Expand Down

0 comments on commit 6b0b3de

Please sign in to comment.