GLife: Fix localization, use unicode multiplication sign

Change-Id: Iba5c98142289aae52ab55066c5ac62d5e957e34b
Reviewed-on: https://review.haiku-os.org/c/haiku/+/7518
Reviewed-by: Adrien Destugues <pulkomandy@pulkomandy.tk>
Tested-by: Commit checker robot <no-reply+buildbot@haiku-os.org>
This commit is contained in:
Pascal Abresch 2024-03-11 10:32:05 +01:00 committed by waddlesplash
parent f758e73fe6
commit dd1a164fd6
1 changed files with 3 additions and 3 deletions

View File

@ -139,9 +139,9 @@ GLifeConfig::_UpdateLabels()
if (delay <= 0)
newLabel = B_TRANSLATE("Grid life delay: none");
else {
newLabel.SetToFormat(B_TRANSLATE_CONTEXT("Grid life delay: "
"%" B_PRId32 "x", "This is a factor: the x represents 'times', "
"don't translate '%" B_PRId32"'"), delay);
newLabel.SetToFormat(B_TRANSLATE_CONTEXT("Grid life delay: %ld×",
"This is a factor: the × represents 'times', don't translate '%ld'"),
delay);
}
fGridDelay->SetLabel(newLabel);
}