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 { ...@@ -51,7 +51,7 @@ impl WelcomePageWidget {
title.show(); title.show();
self.widget.add(&title); 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.get_style_context().add_class("body");
text.set_margin_top(12); text.set_margin_top(12);
text.show(); text.show();
...@@ -69,7 +69,7 @@ impl WelcomePageWidget { ...@@ -69,7 +69,7 @@ impl WelcomePageWidget {
skip_tour_btn.show(); skip_tour_btn.show();
actions_container.add(&skip_tour_btn); 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_height_request(40);
start_tour_btn.set_property_width_request(180); start_tour_btn.set_property_width_request(180);
start_tour_btn.set_use_underline(true); start_tour_btn.set_use_underline(true);
......
...@@ -47,22 +47,22 @@ impl Window { ...@@ -47,22 +47,22 @@ impl Window {
self.paginator.borrow_mut().add_page(Box::new(ImagePageWidget::new( self.paginator.borrow_mut().add_page(Box::new(ImagePageWidget::new(
"/org/gnome/Tour/activities.svg", "/org/gnome/Tour/activities.svg",
gettext("Activities Overview"), gettext("Activities Overview"),
gettext("Open Activities to start apps"), gettext("Open Activities to launch apps"),
gettext("You can also view open windows, search and use workspaces."), gettext("The activities view can also be used to switch windows and search."),
))); )));
self.paginator.borrow_mut().add_page(Box::new(ImagePageWidget::new( self.paginator.borrow_mut().add_page(Box::new(ImagePageWidget::new(
"/org/gnome/Tour/search.svg", "/org/gnome/Tour/search.svg",
gettext("Search"), gettext("Search"),
gettext("In the Activities Overview, just start typing to search"), gettext("Just type to search"),
gettext("Search can be used to launch apps, find settings, do calculations and much more."), 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( self.paginator.borrow_mut().add_page(Box::new(ImagePageWidget::new(
"/org/gnome/Tour/calendar.svg", "/org/gnome/Tour/calendar.svg",
gettext("Date & Time"), gettext("Date & Time"),
gettext("Click the time to see your now and next"), gettext("Click the time to see notifications"),
gettext("This includes notifications, media controls, calendar events, the weather and world clocks."), gettext("The notifications popover also includes personal planning tools."),
))); )));
self.paginator.borrow_mut().add_page(Box::new(ImagePageWidget::new( self.paginator.borrow_mut().add_page(Box::new(ImagePageWidget::new(
...@@ -74,15 +74,15 @@ impl Window { ...@@ -74,15 +74,15 @@ impl Window {
self.paginator.borrow_mut().add_page(Box::new(ImagePageWidget::new( self.paginator.borrow_mut().add_page(Box::new(ImagePageWidget::new(
"/org/gnome/Tour/software.svg", "/org/gnome/Tour/software.svg",
gettext("Software"), gettext("Software"),
gettext("Find and install apps"), gettext("Use Software to find and install apps"),
gettext("The Software app makes it easy to find and install all the apps you need."), gettext("Discover great apps through search, browsing and our recommendations."),
))); )));
let last_page = ImagePageWidget::new( let last_page = ImagePageWidget::new(
"/org/gnome/Tour/ready-to-go.svg", "/org/gnome/Tour/ready-to-go.svg",
gettext("Learn More"), gettext("Tour Completed"),
gettext("That's it! To learn more, see the Help"), gettext("That's it! We hope that you enjoy NAME OF DISTRO."),
gettext("The help app contains information, tips and tricks."), gettext("To get more advice and tips, see the Help app."),
); );
last_page.widget.get_style_context().add_class("last-page"); last_page.widget.get_style_context().add_class("last-page");
self.paginator.borrow_mut().add_page(Box::new(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