Skip to content

Commit

Permalink
fix welcome message
Browse files Browse the repository at this point in the history
  • Loading branch information
jardon committed Sep 30, 2024
1 parent 2e01075 commit 57f3f1f
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions vanilla_first_setup/defaults/welcome.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,11 +72,10 @@ def change_langs():
for locale in all_locale:
translator = translation('vanilla-first-setup', localedir='/usr/share/locale', languages=[locale], fallback=True)
_ = translator.gettext
breakpoint()
GLib.idle_add(self.title_label.set_text, _("Welcome!"))
GLib.idle_add(self.btn_next.set_label, _("Next"))
GLib.idle_add(self.btn_advanced.set_label, _("Advanced"))
GLib.idle_add(self.welcome_message.set_label, _("Advanced"))
GLib.idle_add(self.welcome_message.set_label, _("Make your choices, this wizard will take care of everything."))
time.sleep(1.2)

RunAsync(change_langs, None)
Expand Down

0 comments on commit 57f3f1f

Please sign in to comment.