chess-window: Make tooltips shorter and use header capitalization

"Tooltip labels should be short and written in header capitalization".

https://developer.gnome.org/hig/patterns/feedback/tooltips.html

Closes https://gitlab.gnome.org/GNOME/gnome-chess/-/issues/75

Part-of: <https://gitlab.gnome.org/GNOME/gnome-chess/-/merge_requests/51>
This commit is contained in:
Automeris naranja 2023-09-28 19:12:42 -03:00 committed by Automeris naranja
parent b4cd8909e7
commit 0bced86372

View file

@ -64,7 +64,7 @@
<object class="GtkButton">
<property name="valign">center</property>
<property name="action-name">app.undo</property>
<property name="tooltip-text" translatable="yes">Undo your most recent move</property>
<property name="tooltip-text" translatable="yes">Undo Move</property>
<style>
<class name="image-button"/>
</style>
@ -148,7 +148,7 @@
<object class="GtkButton" id="first_move_button">
<property name="action-name">app.go-first</property>
<property name="sensitive">0</property>
<property name="tooltip-text" translatable="yes" comments="Tooltip on the show first move (i.e. game start) navigation button">Rewind to the game start</property>
<property name="tooltip-text" translatable="yes" comments="Tooltip on the show first move (i.e. game start) navigation button">Rewind to Game Start</property>
<style>
<class name="image-button"/>
</style>
@ -165,7 +165,7 @@
<object class="GtkButton" id="prev_move_button">
<property name="action-name">app.go-previous</property>
<property name="sensitive">0</property>
<property name="tooltip-text" translatable="yes" comments="Tooltip on the show previous move navigation button">Show the previous move</property>
<property name="tooltip-text" translatable="yes" comments="Tooltip on the show previous move navigation button">Show Previous Move</property>
<style>
<class name="image-button"/>
</style>
@ -182,7 +182,7 @@
<object class="GtkButton" id="next_move_button">
<property name="action-name">app.go-next</property>
<property name="sensitive">0</property>
<property name="tooltip-text" translatable="yes" comments="Tooltip on the show next move navigation button">Show the next move</property>
<property name="tooltip-text" translatable="yes" comments="Tooltip on the show next move navigation button">Show Next Move</property>
<style>
<class name="image-button"/>
</style>
@ -199,7 +199,7 @@
<object class="GtkButton" id="last_move_button">
<property name="action-name">app.go-last</property>
<property name="sensitive">0</property>
<property name="tooltip-text" translatable="yes" comments="Tooltip on the show current move navigation button">Show the current move</property>
<property name="tooltip-text" translatable="yes" comments="Tooltip on the show current move navigation button">Show Current Move</property>
<style>
<class name="image-button"/>
</style>