Commit 6579f486 authored by Allan Day's avatar Allan Day

Update labels

General polish for the page text. Fixes #18.
parent 0ca5711b
......@@ -51,7 +51,7 @@ impl WelcomePageWidget {
title.show();
self.widget.add(&title);
let text = gtk::Label::new(Some(&gettext("Hi there! If you are new to GNOME, you can take the tour to learn some essential features.")));
let text = gtk::Label::new(Some(&gettext("Hi there! Take the tour to learn your way around and discover essential features.")));
text.get_style_context().add_class("body");
text.set_margin_top(12);
text.show();
......@@ -69,7 +69,7 @@ impl WelcomePageWidget {
skip_tour_btn.show();
actions_container.add(&skip_tour_btn);
let start_tour_btn = gtk::Button::with_label(&gettext("_Take the Tour"));
let start_tour_btn = gtk::Button::with_label(&gettext("_Start Tour"));
start_tour_btn.set_property_height_request(40);
start_tour_btn.set_property_width_request(180);
start_tour_btn.set_use_underline(true);
......
......@@ -47,22 +47,22 @@ impl Window {
self.paginator.borrow_mut().add_page(Box::new(ImagePageWidget::new(
"/org/gnome/Tour/activities.svg",
gettext("Activities Overview"),
gettext("Open Activities to start apps"),
gettext("You can also view open windows, search and use workspaces."),
gettext("Open Activities to launch apps"),
gettext("The activities view can also be used to switch windows and search."),
)));
self.paginator.borrow_mut().add_page(Box::new(ImagePageWidget::new(
"/org/gnome/Tour/search.svg",
gettext("Search"),
gettext("In the Activities Overview, just start typing to search"),
gettext("Search can be used to launch apps, find settings, do calculations and much more."),
gettext("Just type to search"),
gettext("In the activities view, just start tying to search for apps, settings and more."),
)));
self.paginator.borrow_mut().add_page(Box::new(ImagePageWidget::new(
"/org/gnome/Tour/calendar.svg",
gettext("Date & Time"),
gettext("Click the time to see your now and next"),
gettext("This includes notifications, media controls, calendar events, the weather and world clocks."),
gettext("Click the time to see notifications"),
gettext("The notifications popover also includes personal planning tools."),
)));
self.paginator.borrow_mut().add_page(Box::new(ImagePageWidget::new(
......@@ -74,15 +74,15 @@ impl Window {
self.paginator.borrow_mut().add_page(Box::new(ImagePageWidget::new(
"/org/gnome/Tour/software.svg",
gettext("Software"),
gettext("Find and install apps"),
gettext("The Software app makes it easy to find and install all the apps you need."),
gettext("Use Software to find and install apps"),
gettext("Discover great apps through search, browsing and our recommendations."),
)));
let last_page = ImagePageWidget::new(
"/org/gnome/Tour/ready-to-go.svg",
gettext("Learn More"),
gettext("That's it! To learn more, see the Help"),
gettext("The help app contains information, tips and tricks."),
gettext("Tour Completed"),
gettext("That's it! We hope that you enjoy NAME OF DISTRO."),
gettext("To get more advice and tips, see the Help app."),
);
last_page.widget.get_style_context().add_class("last-page");
self.paginator.borrow_mut().add_page(Box::new(last_page));
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment