diff options
author | Dart Raiden <wowemuh@gmail.com> | 2014-04-25 21:44:28 +0000 |
---|---|---|
committer | Dart Raiden <wowemuh@gmail.com> | 2014-04-25 21:44:28 +0000 |
commit | fd08256f89431cd0fa0089f65370913c231f9ba3 (patch) | |
tree | d24de365d525211b17ce8ae281fc9a90e0925a47 /plugins/NotesAndReminders | |
parent | fe8ea9e25fdf39e7f18177eabf45c184c810ce7a (diff) |
translation improvements
langpacks/russian: update
git-svn-id: http://svn.miranda-ng.org/main/trunk@9086 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/NotesAndReminders')
-rw-r--r-- | plugins/NotesAndReminders/src/notes.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/NotesAndReminders/src/notes.cpp b/plugins/NotesAndReminders/src/notes.cpp index 0255271dc0..731140420a 100644 --- a/plugins/NotesAndReminders/src/notes.cpp +++ b/plugins/NotesAndReminders/src/notes.cpp @@ -1965,14 +1965,14 @@ INT_PTR CALLBACK DlgProcViewNotes(HWND Dialog,UINT Message,WPARAM wParam,LPARAM ListView_InsertColumn(H,0,&lvCol);
lvCol.mask = LVCF_TEXT | LVCF_WIDTH;
- S = TranslateT("T");
+ S = TranslateT("Top");
lvCol.pszText = S;
lvCol.cchTextMax = (int)_tcslen(S);
lvCol.cx = g_notesListColGeom[2];
ListView_InsertColumn(H,0,&lvCol);
lvCol.mask = LVCF_TEXT | LVCF_WIDTH;
- S = TranslateT("V");
+ S = TranslateT("Visible");
lvCol.pszText = S;
lvCol.cchTextMax = (int)strlen(S);
lvCol.cx = g_notesListColGeom[1];
|