From eac4a7fcb57e2a1250a14089d70c2ffa65859c1f Mon Sep 17 00:00:00 2001 From: Bleak Grey Date: Sun, 14 Feb 2021 15:07:20 +0300 Subject: [PATCH] Close #283 --- src/Dialogs/NewAccount.vala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Dialogs/NewAccount.vala b/src/Dialogs/NewAccount.vala index 5353d39..a33b0bd 100644 --- a/src/Dialogs/NewAccount.vala +++ b/src/Dialogs/NewAccount.vala @@ -81,7 +81,7 @@ public class Tootle.Dialogs.NewAccount: Hdy.Window { void invalidate () { next_button.sensitive = !is_working; - next_button.label = stack.visible_child == done_step ? _("Close") : _("Next"); + next_button.label = stack.visible_child == done_step ? _("Done") : _("Next"); back_button.label = stack.visible_child == done_step ? _("Add Another") : _("Back"); back_button.visible = stack.visible_child != instance_step; }