summaryrefslogtreecommitdiff
path: root/zen/i18n.h
diff options
context:
space:
mode:
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