Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
X
ximper-welcome
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Ximper Linux
ximper-welcome
Commits
6579f486
Commit
6579f486
authored
Jul 14, 2020
by
Allan Day
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update labels
General polish for the page text. Fixes #18.
parent
0ca5711b
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
13 deletions
+13
-13
welcome.rs
src/widgets/pages/welcome.rs
+2
-2
window.rs
src/widgets/window.rs
+11
-11
No files found.
src/widgets/pages/welcome.rs
View file @
6579f486
...
...
@@ -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
);
...
...
src/widgets/window.rs
View file @
6579f486
...
...
@@ -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
(
"Th
is includes notifications, media controls, calendar events, the weather and world clock
s."
),
gettext
(
"Click the time to see
notifications
"
),
gettext
(
"Th
e notifications popover also includes personal planning tool
s."
),
)));
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
(
"
F
ind and install apps"
),
gettext
(
"
The Software app makes it easy to find and install all the apps you need
."
),
gettext
(
"
Use Software to f
ind 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
(
"T
he help app contains information, tips and tricks
."
),
gettext
(
"
Tour Completed
"
),
gettext
(
"That's it!
We hope that you enjoy NAME OF DISTRO.
"
),
gettext
(
"T
o 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
));
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment