summaryrefslogtreecommitdiff
path: root/zen/i18n.h
diff options
context:
space:
mode:
authorDaniel Wilhelm <shieldwed@outlook.com>2018-05-09 00:04:33 +0200
committerDaniel Wilhelm <shieldwed@outlook.com>2018-05-09 00:04:33 +0200
commit017e56b81ba735c39c43701f737ac7dde55da7b4 (patch)
treeea7aaaee13a06a702701e2f74f5d390e10ae303e /zen/i18n.h
parent9.4 (diff)
downloadFreeFileSync-017e56b81ba735c39c43701f737ac7dde55da7b4.tar.gz
FreeFileSync-017e56b81ba735c39c43701f737ac7dde55da7b4.tar.bz2
FreeFileSync-017e56b81ba735c39c43701f737ac7dde55da7b4.zip
9.5
Diffstat (limited to 'zen/i18n.h')
-rwxr-xr-xzen/i18n.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/zen/i18n.h b/zen/i18n.h
index ebe22459..e6d97b7b 100755
--- a/zen/i18n.h
+++ b/zen/i18n.h
@@ -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));
}
}
bgstack15