diff --git a/src/Views/OnlineAccountsView.vala b/src/Views/OnlineAccountsView.vala index 9cbdffc0..208624de 100644 --- a/src/Views/OnlineAccountsView.vala +++ b/src/Views/OnlineAccountsView.vala @@ -21,7 +21,7 @@ public class Onboarding.OnlineAccountsView : AbstractOnboardingView { public OnlineAccountsView () { Object ( view_name: "onlineaccounts", - description: _("Use Mail, Calendar, and Tasks with an existing online account to sync emails, events, and tasks with this device."), + description: _("Use Mail, Calendar, and Tasks with an existing online account to sync emails, events, and tasks with %s.").printf (Environment.get_host_name ()), icon_name: "preferences-desktop-online-accounts", title: _("Online Accounts") ); diff --git a/src/Views/UpdatesView.vala b/src/Views/UpdatesView.vala index 8e528078..12a68652 100644 --- a/src/Views/UpdatesView.vala +++ b/src/Views/UpdatesView.vala @@ -7,7 +7,7 @@ public class Onboarding.UpdatesView : AbstractOnboardingView { public UpdatesView () { Object ( view_name: "updates", - description: _("Updates can be automatically installed when your device is connected to the Internet."), + description: _("Updates can be automatically installed when %s is connected to the Internet.").printf (Environment.get_host_name ()), icon_name: "system-software-update", title: _("Automatic Updates") ); @@ -30,7 +30,7 @@ public class Onboarding.UpdatesView : AbstractOnboardingView { var system_label = new Granite.HeaderLabel (_("Operating System")) { mnemonic_widget = system_check, - secondary_text = _("Will be installed when you choose to restart this device") + secondary_text = _("Will be installed when you choose to restart %s").printf (Environment.get_host_name ()) }; var system_box = new Gtk.Box (HORIZONTAL, 0);