Kaydet (Commit) dfbaef22 authored tarafından Alex Gulyás's avatar Alex Gulyás Kaydeden (comit) Markus Mohrhard

fdo#78004 fix string formatting

Added missing 's'

Change-Id: I7570d86d65ebcffc547b06ab9c19843de0b90436
Reviewed-on: https://gerrit.libreoffice.org/9181Tested-by: 's avatarMarkus Mohrhard <markus.mohrhard@googlemail.com>
Reviewed-by: 's avatarMarkus Mohrhard <markus.mohrhard@googlemail.com>
üst 62219707
......@@ -553,7 +553,7 @@ public abstract class BaseNLPSolver extends WeakBase
if (days > 0)
return String.format("%d %s, %d %s",
days, resourceManager.getLocalizedString(String.format("Time.Day%", days == 1 ? "" : "s"), "Days"),
days, resourceManager.getLocalizedString(String.format("Time.Day%s", days == 1 ? "" : "s"), "Days"),
hours, resourceManager.getLocalizedString(String.format("Time.Hour%s", hours == 1 ? "" : "s"), "Hours"));
if (hours > 0)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment