Skip to content

Commit

Permalink
libtracker: add B_TRANSLATE to List view menu.
Browse files Browse the repository at this point in the history
Signed-off-by: Augustin Cavalier <waddlesplash@gmail.com>
  • Loading branch information
mt819 authored and waddlesplash committed Mar 8, 2017
1 parent 488681e commit adad093
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/kits/tracker/ContainerWindow.cpp
Expand Up @@ -2020,7 +2020,7 @@ BContainerWindow::AddWindowMenu(BMenu* menu)
item->SetTarget(PoseView());
menu->AddItem(item);

BMenu* listViewMenu = new BMenu("List view");
BMenu* listViewMenu = new BMenu(B_TRANSLATE("List view"));

message = new BMessage(kListMode);
message->AddInt32("icon_size", B_MINI_ICON);
Expand Down
2 changes: 1 addition & 1 deletion src/kits/tracker/VirtualDirectoryWindow.cpp
Expand Up @@ -136,7 +136,7 @@ VirtualDirectoryWindow::AddWindowMenu(BMenu* menu)
BMenuItem* item;
BMessage* message;

BMenu* listViewMenu = new BMenu("List view");
BMenu* listViewMenu = new BMenu(B_TRANSLATE("List view"));

message = new BMessage(kListMode);
message->AddInt32("icon_size", B_MINI_ICON);
Expand Down

0 comments on commit adad093

Please sign in to comment.