diff options
author | Daniel Wilhelm <shieldwed@outlook.com> | 2018-05-09 00:04:33 +0200 |
---|---|---|
committer | Daniel Wilhelm <shieldwed@outlook.com> | 2018-05-09 00:04:33 +0200 |
commit | 017e56b81ba735c39c43701f737ac7dde55da7b4 (patch) | |
tree | ea7aaaee13a06a702701e2f74f5d390e10ae303e /zen/i18n.h | |
parent | 9.4 (diff) | |
download | FreeFileSync-017e56b81ba735c39c43701f737ac7dde55da7b4.tar.gz FreeFileSync-017e56b81ba735c39c43701f737ac7dde55da7b4.tar.bz2 FreeFileSync-017e56b81ba735c39c43701f737ac7dde55da7b4.zip |
9.5
Diffstat (limited to 'zen/i18n.h')
-rwxr-xr-x | zen/i18n.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -106,7 +106,7 @@ std::wstring translate(const std::wstring& singular, const std::wstring& plural, return translation; } //fallback: - return replaceCpy(std::abs(n64) == 1 ? singular : plural, L"%x", toGuiString(n)); + return replaceCpy(std::abs(n64) == 1 ? singular : plural, L"%x", formatNumber(n)); } } |