Actions
Bug #1183
closedWTemplate::Functions::tr with Russian letters
Start date:
03/11/2012
Due date:
% Done:
0%
Estimated time:
Description
Hello!
I tried to use WTemplate::Functions::tr with WTemplate.
It seems to produce ? instead of Russian letters.
Test attached
Best Regards
Files
Updated by Wim Dumon over 12 years ago
Thank you. The one-liner patch below will be in git soon.
Wim.
---- a/src/Wt/WTemplate.C
- b/src/Wt/WTemplate.C
@@ --26,7 +26,7 @@ bool WTemplate::_tr(const std::vector& args,
WString s = WString::tr(args[0].toUTF8());
for (unsigned j = 1; j < args.size(); ++j)
s.arg(args[j]); - result << s; // FIXME formatting / escaping ?
- result << s.toUTF8(); // FIXME formatting / escaping ?
return true;
} else {
LOG_ERROR("Functions::tr(): expects at least one argument");
Updated by Koen Deforche over 12 years ago
- Status changed from New to Resolved
- Target version set to 3.2.1
Actions