Skip to content

Commit d265e09

Browse files
authored
Improve tooltips (#259)
1 parent 6a46dd4 commit d265e09

File tree

3 files changed

+11
-9
lines changed

3 files changed

+11
-9
lines changed

src/Library/demos/Text Fields/main.blp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -90,9 +90,9 @@ Adw.Clamp {
9090
Entry entry_icon {
9191
primary-icon-name: "about-symbolic";
9292
primary-icon-activatable: true;
93-
primary-icon-tooltip-text: "Click on me";
93+
primary-icon-tooltip-text: "Click on Me";
9494
secondary-icon-name: "bell-symbolic";
95-
secondary-icon-tooltip-text: "No click on me";
95+
secondary-icon-tooltip-text: "No Click on Me";
9696
}
9797
}
9898

@@ -108,7 +108,7 @@ Adw.Clamp {
108108
Entry entry_progress {
109109
progress-fraction: 0;
110110
primary-icon-name: "media-playback-start-symbolic";
111-
primary-icon-tooltip-text: "Play animation";
111+
primary-icon-tooltip-text: "Play Animation";
112112
}
113113
}
114114
}

src/about.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,7 @@ ${getBlueprintVersion()}
5757
"Sriyansh Shivam https://linktr.ee/sonic_here",
5858
"Angelo Verlain https://www.vixalien.com",
5959
"bazylevnik0 https://github.com/bazylevnik0",
60+
"Felipe Kinoshita https://mastodon.social/@fkinoshita",
6061
// Add yourself as
6162
// "John Doe",
6263
// or

src/window.blp

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -98,6 +98,7 @@ Gtk.ApplicationWindow window {
9898
MenuButton button_menu {
9999
menu-model: menu_app;
100100
icon-name: "open-menu-symbolic";
101+
tooltip-text: _("Main Menu");
101102
primary: true;
102103
}
103104

@@ -155,7 +156,7 @@ Gtk.ApplicationWindow window {
155156
"Vala",
156157
]
157158
};
158-
tooltip-text: _("Switch document");
159+
tooltip-text: _("Switch Document");
159160
}
160161
}
161162
}
@@ -229,11 +230,11 @@ Gtk.ApplicationWindow window {
229230
"Blueprint",
230231
]
231232
};
232-
tooltip-text: _("Convert and switch syntax");
233+
tooltip-text: _("Convert and Switch Syntax");
233234
}
234235
Button button_ui_experimental_blueprint {
235236
icon-name: "applications-science-symbolic";
236-
tooltip-text: _("Information about Blueprint");
237+
tooltip-text: _("Information About Blueprint");
237238
}
238239
}
239240
}
@@ -283,7 +284,7 @@ Gtk.ApplicationWindow window {
283284
_("Center"),
284285
]
285286
};
286-
tooltip-text: _("Select Preview mode");
287+
tooltip-text: _("Select Preview Mode");
287288
}
288289

289290
[end]
@@ -388,7 +389,7 @@ Gtk.ApplicationWindow window {
388389
use-underline: true;
389390
};
390391
action-name: "win.console";
391-
tooltip-text: _("Show logs (Ctrl+Shift+K)");
392+
tooltip-text: _("Show Logs (Ctrl+Shift+K)");
392393
}
393394

394395
Button button_inspector {
@@ -412,7 +413,7 @@ Gtk.ApplicationWindow window {
412413
use-underline: true;
413414
};
414415
action-name: "win.clear";
415-
tooltip-text: _("Clear console (Ctrl+K)");
416+
tooltip-text: _("Clear Console (Ctrl+K)");
416417
}
417418
}
418419
}

0 commit comments

Comments
 (0)