Skip to content

Commit

Permalink
viewtabs: Improve headerbar tooltips (#254)
Browse files Browse the repository at this point in the history
  • Loading branch information
fkinoshita authored Apr 7, 2023
1 parent f06d83a commit 00de9d1
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/ViewTabs.blp
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,14 @@ Box view_tabs {
[start]
Button button_new_tab {
icon-name: "tab-new-symbolic";
tooltip-text: _("Add new tab");
tooltip-text: _("New Tab");
}

[end]
MenuButton {
icon-name: "open-menu-symbolic";
menu-model: menu_app;
tooltip-text: _("Menu");
tooltip-text: _("Main Menu");
}
}

Expand Down Expand Up @@ -86,23 +86,23 @@ Box navigation_buttons {
Button button_back {
sensitive: false;
icon-name: "go-previous-symbolic";
tooltip-text: _("Go back to the previous page");
tooltip-text: _("Back");
}

Button button_forward {
sensitive: false;
icon-name: "go-next-symbolic";
tooltip-text: _("Go forward to the next page");
tooltip-text: _("Forward");
}

Button button_reload {
icon-name: "view-refresh-symbolic";
tooltip-text: _("Reload the current page page");
tooltip-text: _("Reload");
}

Button button_home {
icon-name: "go-home-symbolic";
tooltip-text: _("Go to homepage");
tooltip-text: _("Homepage");
}
}

Expand Down

0 comments on commit 00de9d1

Please sign in to comment.