summaryrefslogtreecommitdiff
path: root/plugins/TopToolBar
diff options
context:
space:
mode:
authorGeorge Hazan <george.hazan@gmail.com>2023-11-06 12:19:50 +0300
committerGeorge Hazan <george.hazan@gmail.com>2023-11-06 12:19:50 +0300
commit344e95ad9416e7e04924ec74e524c4d98fe441c7 (patch)
tree977b3c3b84dc6f4502626212658e7a67bf7153d4 /plugins/TopToolBar
parentdbebd421bbee09149a26b106ae32de795b683711 (diff)
fixes #3828 (TopToolBar: описания многих кнопок не переводятся)
Diffstat (limited to 'plugins/TopToolBar')
-rw-r--r--plugins/TopToolBar/src/ttbopt.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/TopToolBar/src/ttbopt.cpp b/plugins/TopToolBar/src/ttbopt.cpp
index 7cc8dc1d7d..263d80ba7f 100644
--- a/plugins/TopToolBar/src/ttbopt.cpp
+++ b/plugins/TopToolBar/src/ttbopt.cpp
@@ -34,7 +34,7 @@ static HTREEITEM AddLine(HWND hTree, TopButtonInt *b, HTREEITEM hItem, HIMAGELIS
else index = ImageList_AddIcon(il, b->hIconUp);
tmp = mir_a2u(b->pszName);
- tvis.item.pszText = TranslateW(tmp);
+ tvis.item.pszText = TranslateW_LP(tmp, b->pPlugin);
}
tvis.item.iImage = tvis.item.iSelectedImage = index;