Header Capitalization

This commit is contained in:
Hugo Posnic 2023-03-21 15:53:10 +01:00
parent 2e3213c303
commit 2d8329ed79
2 changed files with 5 additions and 4 deletions

View File

@ -44,7 +44,7 @@
</child>
<child>
<object class="GtkButton" id="filechooser_button">
<property name="label" translatable="yes">Browse files</property>
<property name="label" translatable="yes">Browse Files</property>
<property name="action-name">win.select-file</property>
<property name="margin-bottom">20</property>
<style>
@ -118,14 +118,14 @@
<object class="GtkButton" id="back_button">
<property name="action-name">win.back</property>
<property name="icon-name">go-previous-symbolic</property>
<property name="tooltip-text" translatable="yes">Compress your images</property>
<property name="tooltip-text" translatable="yes">Compress Images</property>
</object>
</child>
<child>
<object class="GtkButton" id="forward_button">
<property name="action-name">win.forward</property>
<property name="icon-name">go-next-symbolic</property>
<property name="tooltip-text" translatable="yes">See saving results</property>
<property name="tooltip-text" translatable="yes">Saving Results</property>
</object>
</child>
</object>

View File

@ -166,7 +166,7 @@ class CurtailWindow(Gtk.ApplicationWindow):
self.show_treeview(True)
def on_select(self, *args):
dialog = Gtk.FileChooserNative.new(_("Browse files"), self,
dialog = Gtk.FileChooserNative.new(_("Browse Files"), self,
Gtk.FileChooserAction.OPEN)
dialog.set_select_multiple(True)
add_filechooser_filters(dialog)
@ -358,6 +358,7 @@ class CurtailWindow(Gtk.ApplicationWindow):
'Balló György',
'olokelo',
'Archisman Panigrahi',
'Maximiliano'
]
)
about.present()