diff options
author | Kirill Volinsky <mataes2007@gmail.com> | 2012-07-08 11:24:25 +0000 |
---|---|---|
committer | Kirill Volinsky <mataes2007@gmail.com> | 2012-07-08 11:24:25 +0000 |
commit | f7d1561aae86e90bfb02704264fc220fad59896c (patch) | |
tree | 321d39cc0408873a27f18276c920c335e6f58d3b | |
parent | e8c9fd3c802c8c2b9aa47381b1dc54c03c65b595 (diff) |
HistoryPlusPlus:
translation fix
git-svn-id: http://svn.miranda-ng.org/main/trunk@843 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
-rw-r--r-- | plugins/HistoryPlusPlus/HistoryForm.pas | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/HistoryPlusPlus/HistoryForm.pas b/plugins/HistoryPlusPlus/HistoryForm.pas index fb523319f8..37dce5cd06 100644 --- a/plugins/HistoryPlusPlus/HistoryForm.pas +++ b/plugins/HistoryPlusPlus/HistoryForm.pas @@ -2987,9 +2987,9 @@ begin t := FormatDateTime('[yyyy, mmmm, d]', dt) + #13#10;
if Time / 60 > 60 then
- timestr := Format('%0.1n h', [Time / (60 * 60)])
+ timestr := Format(TranslateW('%0.1n h'), [Time / (60 * 60)])
else
- timestr := Format('%d min', [Time div 60]);
+ timestr := Format(TranslateW('%d min'), [Time div 60]);
if count = 1 then
tvSess.Hint := t + Format('' + TranslateW('%d event'), [count])
|