Merge lp:~dpm/help-app/metadata-fixes into lp:~ubuntu-touch-coreapps-drivers/help-app/trunk

Proposed by David Planella
Status: Superseded
Proposed branch: lp:~dpm/help-app/metadata-fixes
Merge into: lp:~ubuntu-touch-coreapps-drivers/help-app/trunk
Diff against target: 1670 lines (+663/-640)
3 files modified
content/pages/faq.md (+3/-1)
internals/translations/build.py (+28/-9)
po/help.pot (+632/-630)
To merge this branch: bzr merge lp:~dpm/help-app/metadata-fixes
Reviewer Review Type Date Requested Status
Daniel Holbach (community) Needs Fixing
Review via email: mp+253635@code.launchpad.net

This proposal has been superseded by a proposal from 2015-03-20.

Description of the change

With this branch, Pelican metadata in the original markdown files is now preserved in the translated markdown files. This allows specifying more metadata, including customized one. An example is the ability to specify the template to use when building the final HTML files, so that it can be different than the 'page' default.

This would be useful to build the index pages for the web and app themes, and would allow us to drop the JavaScript code that does all the inserting of multiple pages into one for the app theme.

I've added metadata to the faq.md file, including a custom 'Sortorder' key to show how it works.

Notes:
- I'm not a regex expert, perhaps the part that extracts metadata from the original markdown could be done in a cleverer way
- This branch relies on the facts that:
  a) Metadata is at the start of the file
  b) The title line is always the first line of the file (which Pelican seems to rely on too)
  c) When manipulating the original markdown files, as markdown does not support line breaks too well (unless explicitly marked as two trailing spaces at the end of a line), the metadata is rolled into one single line. I've noticed that if a metadata line is finished by a colon (.), that is no longer the case, which might bring some problems. But I think it's fair to assume that we won't be using colons for metadata.

To post a comment you must log in.
Revision history for this message
Daniel Holbach (dholbach) wrote :
review: Needs Fixing
Revision history for this message
Daniel Holbach (dholbach) wrote :

This could generally be broken up a little bit and have a few more tests, which is something we can deal with separately and I'm happy to look into. The MP above should make your branch good for inclusion.

Thanks a lot for your work on this!

lp:~dpm/help-app/metadata-fixes updated
121. By David Planella

Merged fixes from dholbach

Unmerged revisions

121. By David Planella

Merged fixes from dholbach

120. By David Planella

Added some custom metadata to the FAQ page

119. By David Planella

Updated translation template

118. By David Planella

Metadata should not contain colons, it gets either python-markdown or po4a confused

117. By David Planella

Preserve the metadata added to the original markdown files when writing their translated versions

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'content/pages/faq.md'
2--- content/pages/faq.md 2015-03-19 08:33:13 +0000
3+++ content/pages/faq.md 2015-03-20 07:04:51 +0000
4@@ -1,4 +1,6 @@
5-Title: Get your questions answered.
6+Title: Get your questions answered
7+Sortorder: 20
8+Template: page
9
10 We divided the questions up into categories, so you can spot yours more
11 easily. Here we go:
12
13=== modified file 'internals/translations/build.py'
14--- internals/translations/build.py 2015-03-19 17:23:39 +0000
15+++ internals/translations/build.py 2015-03-20 07:04:51 +0000
16@@ -4,6 +4,7 @@
17 import re
18 import shutil
19 import subprocess
20+from collections import OrderedDict
21
22 from translations.utils import (
23 find_bcp47_code,
24@@ -112,7 +113,9 @@
25
26 def replace_title_lines(self):
27 for entry, first_line in self.find_title_lines():
28- if entry.msgid != first_line:
29+ if entry.msgid.startswith(first_line):
30+ entry.msgid = first_line
31+ else:
32 print('Title line "%s" found, but not on the first line '
33 'of "%s".' % (entry.msgid, entry.linenum))
34 return False
35@@ -154,7 +157,7 @@
36 def __init__(self, po4a):
37 self.fake_lang_code = 'en_US'
38 self.fake_po_fn = normalise_path(
39- os.path.join(TRANSLATIONS_DIR,
40+ os.path.join(TRANSLATIONS_DIR,
41 '%s.po' % self.fake_lang_code))
42 self.pot_fn = normalise_path(os.path.join(TRANSLATIONS_DIR,
43 'help.pot'))
44@@ -258,14 +261,30 @@
45 po.langs[po_fn]['pofile'].readd_attr_list_statements()
46 for doc_fn in self.docs:
47 output = self._call_po4a_translate(doc_fn, po_fn, po4a)
48- title_line = output.split('\n')[0].split('Title: ')[1]
49+
50+ # Extract the metadata from the first line
51+ first_line = output.split('\n')[0]
52+ metadata_keys = re.findall(r'\w+:', first_line)
53+ metadata_values = re.split(r'[\s]?\w+:\s', first_line)[1:]
54+ metadata = OrderedDict(zip(metadata_keys, metadata_values))
55+
56+ # Replace the title string by its translated version
57 translated_title_line = po.find_translated_title_line(
58- title_line, po_fn)
59- output = '\n'.join([line for line in output.split('\n')][1:])
60- new_path = full_path(self.translated_doc_fn(
61- doc_fn, po.langs[po_fn]['bcp47']))
62- text = "Title: %s\nDate:\n\n" % (translated_title_line)
63- text += output
64+ metadata['Title:'], po_fn)
65+ metadata['Title:'] = translated_title_line
66+
67+ # Remove the metadata line
68+ content = '\n'.join([line for line in output.split('\n')][1:])
69+ new_path = self.translated_doc_fn(doc_fn,
70+ po.langs[po_fn]['bcp47'])
71+
72+ # Flatten the metadata dict into a string
73+ metadata_serialized = '\n'.join("{} {}".format(key, val)
74+ for (key, val) in metadata.items())
75+
76+ # Join the metadata and content into the final,
77+ # translated markdown text
78+ text = metadata_serialized + '\n' + content
79 if os.path.exists(new_path):
80 os.remove(new_path)
81 if not os.path.exists(os.path.dirname(new_path)):
82
83=== modified file 'po/help.pot'
84--- po/help.pot 2015-03-19 14:41:33 +0000
85+++ po/help.pot 2015-03-20 07:04:51 +0000
86@@ -2,12 +2,12 @@
87 # Copyright (C) YEAR Free Software Foundation, Inc.
88 # This file is distributed under the same license as the PACKAGE package.
89 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
90-#
91+#
92 #, fuzzy
93 msgid ""
94 msgstr ""
95 "Project-Id-Version: PACKAGE VERSION\n"
96-"POT-Creation-Date: 2015-03-19 15:41+0100\n"
97+"POT-Creation-Date: 2015-03-20 07:43+0100\n"
98 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
99 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
100 "Language-Team: LANGUAGE <LL@li.org>\n"
101@@ -18,7 +18,7 @@
102
103 #. type: Plain text
104 #: content/pages/security.md:2
105-msgid "Title: Security"
106+msgid "Security"
107 msgstr ""
108
109 #. type: Plain text
110@@ -28,14 +28,16 @@
111 msgstr ""
112
113 #. type: Plain text
114-#: content/pages/security.md:6 content/pages/basic.md:6 content/pages/settings.md:6 content/pages/ui.md:6 content/pages/apps.md:7 content/pages/scopes.md:6
115+#: content/pages/security.md:6 content/pages/apps.md:7
116+#: content/pages/settings.md:6 content/pages/ui.md:6 content/pages/basic.md:6
117+#: content/pages/scopes.md:6
118 msgid "[TOC]"
119 msgstr ""
120
121-#. type: Title ###
122+#. !!T
123 #: content/pages/security.md:7
124 #, no-wrap
125-msgid "How do I lock the phone? !!T"
126+msgid "How do I lock the phone?"
127 msgstr ""
128
129 #. type: Plain text
130@@ -47,10 +49,10 @@
131 "& Privacy*, then *Phone Locking* to adjust the *Lock when idle* setting."
132 msgstr ""
133
134-#. type: Title ###
135+#. !!T
136 #: content/pages/security.md:10
137 #, no-wrap
138-msgid "How do I unlock the phone? !!T"
139+msgid "How do I unlock the phone?"
140 msgstr ""
141
142 #. type: Plain text
143@@ -60,10 +62,10 @@
144 "enabled, you might be required to enter a pin or passcode."
145 msgstr ""
146
147-#. type: Title ###
148+#. !!T
149 #: content/pages/security.md:13
150 #, no-wrap
151-msgid "How do I unlock the bootloader? !!T"
152+msgid "How do I unlock the bootloader?"
153 msgstr ""
154
155 #. type: Plain text
156@@ -73,10 +75,10 @@
157 "related tasks, see the [developer site](http://developer.ubuntu.com/)"
158 msgstr ""
159
160-#. type: Title ###
161+#. !!T
162 #: content/pages/security.md:16
163 #, no-wrap
164-msgid "How can I change my PIN/Passcode? !!T"
165+msgid "How can I change my PIN/Passcode?"
166 msgstr ""
167
168 #. type: Plain text
169@@ -86,12 +88,12 @@
170 "*Security & Privacy* to adjust the *Lock when idle* setting."
171 msgstr ""
172
173-#. type: Title ###
174+#. !!T
175 #: content/pages/security.md:19
176 #, no-wrap
177 msgid ""
178-"Why do I have to type my PIN when using File Manager & Terminal (not default "
179-"apps)? !!T"
180+"Why do I have to type my PIN when using File Manager & Terminal (not default"
181+" apps)?"
182 msgstr ""
183
184 #. type: Plain text
185@@ -101,10 +103,11 @@
186 "pin/passcode is required. This is for your phone security."
187 msgstr ""
188
189-#. type: Title ###
190+#. !!T
191 #: content/pages/security.md:22
192 #, no-wrap
193-msgid "How can I stop someone using the indicators when the phone is unlocked? !!T"
194+msgid ""
195+"How can I stop someone using the indicators when the phone is unlocked?"
196 msgstr ""
197
198 #. type: Plain text
199@@ -116,10 +119,10 @@
200 "settings* option."
201 msgstr ""
202
203-#. type: Title ###
204+#. !!T
205 #: content/pages/security.md:25
206 #, no-wrap
207-msgid "I forgot my password or passcode. How can I unlock the phone? !!T"
208+msgid "I forgot my password or passcode. How can I unlock the phone?"
209 msgstr ""
210
211 #. type: Plain text
212@@ -128,548 +131,8 @@
213 msgstr ""
214
215 #. type: Plain text
216-#: content/pages/basic.md:2
217-msgid "Title: Basic tasks"
218-msgstr ""
219-
220-#. type: Plain text
221-#: content/pages/basic.md:4
222-#, no-wrap
223-msgid "*If you are wondering how to perform basic tasks, look here.*\n"
224-msgstr ""
225-
226-#. type: Title ###
227-#: content/pages/basic.md:7
228-#, no-wrap
229-msgid "How do I play music? !!T"
230-msgstr ""
231-
232-#. type: Plain text
233-#: content/pages/basic.md:9
234-msgid ""
235-"The music app let's you play music copied to the device. In addition, "
236-"[scopes]({filename}scopes.md) such as 7digital and Grooveshark can also play "
237-"music."
238-msgstr ""
239-
240-#. type: Title ###
241-#: content/pages/basic.md:10
242-#, no-wrap
243-msgid "How do I play videos? !!T"
244-msgstr ""
245-
246-#. type: Plain text
247-#: content/pages/basic.md:12
248-msgid ""
249-"The media player application will play videos copied to the device. You will "
250-"also find applications like youtube that give you streaming options."
251-msgstr ""
252-
253-#. type: Title ###
254-#: content/pages/basic.md:13
255-#, no-wrap
256-msgid "How do I take photos? !!T"
257-msgstr ""
258-
259-#. type: Plain text
260-#: content/pages/basic.md:15
261-msgid ""
262-"The included camera application allows you to take photos. If your device "
263-"has both a front and rear camera, you can toggle which camera to use."
264-msgstr ""
265-
266-#. type: Title ###
267-#: content/pages/basic.md:16
268-#, no-wrap
269-msgid "How do I take a screenshot? !!T"
270-msgstr ""
271-
272-#. type: Plain text
273-#: content/pages/basic.md:18
274-msgid ""
275-"Press the Volume Up and Volume Down buttons at the same time until you see "
276-"the screen flashing. The screenshot will capture what is on your screen, and "
277-"you can see the resulting picture in the Gallery app or the Photos scope."
278-msgstr ""
279-
280-#. type: Title ###
281-#: content/pages/basic.md:19
282-#, no-wrap
283-msgid "How do I see pictures I’ve taken? !!T"
284-msgstr ""
285-
286-#. type: Plain text
287-#: content/pages/basic.md:21
288-msgid ""
289-"If you've just taken a picture, you can see it easily by swiping to the left "
290-"from the right edge inside the camera app. Alternatively, use the gallery "
291-"app to find the picture."
292-msgstr ""
293-
294-#. type: Title ###
295-#: content/pages/basic.md:22
296-#, no-wrap
297-msgid "How do I record videos? !!T"
298-msgstr ""
299-
300-#. type: Plain text
301-#: content/pages/basic.md:24
302-msgid ""
303-"The included camera application allows you to take videos. If your device "
304-"has both a front and rear camera, you can toggle which camera to use."
305-msgstr ""
306-
307-#. type: Title ###
308-#: content/pages/basic.md:25
309-#, no-wrap
310-msgid "How can I send a text? !!T"
311-msgstr ""
312-
313-#. type: Plain text
314-#: content/pages/basic.md:27
315-msgid ""
316-"The default messaging application allows you to send sms as well as mms "
317-"messages."
318-msgstr ""
319-
320-#. type: Title ###
321-#: content/pages/basic.md:28
322-#, no-wrap
323-msgid "How do I make a call? !!T"
324-msgstr ""
325-
326-#. type: Plain text
327-#: content/pages/basic.md:30
328-msgid ""
329-"The default dialer app lets you make calls using a contact or by dialing a "
330-"number."
331-msgstr ""
332-
333-#. type: Title ###
334-#: content/pages/basic.md:31
335-#, no-wrap
336-msgid "How do I check recently made/missed calls? !!T"
337-msgstr ""
338-
339-#. type: Plain text
340-#: content/pages/basic.md:32
341-msgid ""
342-"Swiping up from the bottom edge of the dialer app reveals the recent call "
343-"list. You can also filter the list to include only missed calls."
344-msgstr ""
345-
346-#. type: Plain text
347-#: content/pages/faq.md:2
348-msgid "Title: Get your questions answered."
349-msgstr ""
350-
351-#. type: Plain text
352-#: content/pages/faq.md:5
353-msgid ""
354-"We divided the questions up into categories, so you can spot yours more "
355-"easily. Here we go:"
356-msgstr ""
357-
358-#. type: Title ###
359-#: content/pages/faq.md:6
360-#, no-wrap
361-msgid "[First day tasks]({filename}basic.md)"
362-msgstr ""
363-
364-#. type: Title ###
365-#: content/pages/faq.md:7
366-#, no-wrap
367-msgid "[User Interface]({filename}ui.md)"
368-msgstr ""
369-
370-#. type: Title ###
371-#: content/pages/faq.md:8
372-#, no-wrap
373-msgid "[Settings]({filename}settings.md)"
374-msgstr ""
375-
376-#. type: Title ###
377-#: content/pages/faq.md:9
378-#, no-wrap
379-msgid "[Apps]({filename}apps.md)"
380-msgstr ""
381-
382-#. type: Title ###
383-#: content/pages/faq.md:10
384-#, no-wrap
385-msgid "[Scopes]({filename}scopes.md)"
386-msgstr ""
387-
388-#. type: Title ###
389-#: content/pages/faq.md:11
390-#, no-wrap
391-msgid "[Security]({filename}security.md)"
392-msgstr ""
393-
394-#. type: Plain text
395-#: content/pages/index.md:2
396-msgid "Title: Welcome"
397-msgstr ""
398-
399-#. type: Plain text
400-#: content/pages/index.md:5
401-msgid ""
402-"The world-wide Ubuntu community wants to give you the best possible "
403-"experience on your Ubuntu device. This is why we collected:"
404-msgstr ""
405-
406-#. type: Bullet: ' * '
407-#: content/pages/index.md:9
408-msgid "Answers to frequently asked questions"
409-msgstr ""
410-
411-#. type: Bullet: ' * '
412-#: content/pages/index.md:9
413-msgid "Tips and tricks to make you more productive"
414-msgstr ""
415-
416-#. type: Bullet: ' * '
417-#: content/pages/index.md:9
418-msgid "Links to get in touch with experts and other community members"
419-msgstr ""
420-
421-#. type: Plain text
422-#: content/pages/index.md:11
423-msgid "[Take me to the FAQ!]({filename}faq.md)"
424-msgstr ""
425-
426-#. type: Plain text
427-#: content/pages/index.md:12
428-msgid "[Get in touch]({filename}get-in-touch.md)"
429-msgstr ""
430-
431-#. type: Plain text
432-#: content/pages/settings.md:2
433-msgid "Title: Settings"
434-msgstr ""
435-
436-#. type: Plain text
437-#: content/pages/settings.md:4
438-#, no-wrap
439-msgid "*How do I change my phone settings?*\n"
440-msgstr ""
441-
442-#. type: Title ###
443-#: content/pages/settings.md:7
444-#, no-wrap
445-msgid "How do I update my system? !!T"
446-msgstr ""
447-
448-#. type: Plain text
449-#: content/pages/settings.md:9
450-msgid ""
451-"Your device will prompt you when an update is ready. A notification will "
452-"appear informing you of the new update. If you wish, you can manually check "
453-"and perform an update yourself. Open the *System Settings* "
454-"application. Select *Update*, and then click the check for updates button."
455-msgstr ""
456-
457-#. type: Title ###
458-#: content/pages/settings.md:10
459-#, no-wrap
460-msgid "How do I set the time / language? !!T"
461-msgstr ""
462-
463-#. type: Plain text
464-#: content/pages/settings.md:13
465-msgid ""
466-"Open the *System Settings* application. For the time, check out the *Time & "
467-"Date* section. For language, select *Language & Text*. "
468-"![Icon]({filename}/images/settings.gif)"
469-msgstr ""
470-
471-#. type: Title ###
472-#: content/pages/settings.md:14
473-#, no-wrap
474-msgid "How can I change my wallpaper/background? !!T"
475-msgstr ""
476-
477-#. type: Plain text
478-#: content/pages/settings.md:16
479-msgid ""
480-"Open the *System Settings* application. Select the *Background* "
481-"option. Press the *Add Image* button and choice your image to set as a "
482-"background."
483-msgstr ""
484-
485-#. type: Title ###
486-#: content/pages/settings.md:17
487-#, no-wrap
488-msgid "How do I keep the screen on? !!T"
489-msgstr ""
490-
491-#. type: Plain text
492-#: content/pages/settings.md:19
493-msgid ""
494-"Open the *System Settings* application, and select the *Security & Privacy* "
495-"option. Select the *Lock Phone* option, and then *Lock when idle*. St"
496-msgstr ""
497-
498-#. type: Title ###
499-#: content/pages/settings.md:20
500-#, no-wrap
501-msgid "How do I set up my accounts? !!T"
502-msgstr ""
503-
504-#. type: Plain text
505-#: content/pages/settings.md:22
506-msgid ""
507-"You can set up some of your accounts from the scopes. Today scope allows you "
508-"to configure your Google and Fitbit account, while the Pictures scope lets "
509-"you configure your flickr, Facebook and Instagram account. You can manage "
510-"all your accounts (including social media, email, etc) from the *System "
511-"Settings* app, under *Personal*, *Accounts*."
512-msgstr ""
513-
514-#. type: Title ###
515-#: content/pages/settings.md:23
516-#, no-wrap
517-msgid "How do I configure my notifications? !!T"
518-msgstr ""
519-
520-#. type: Plain text
521-#: content/pages/settings.md:25
522-msgid ""
523-"If you’re receiving too many notifications of your activity or want to "
524-"change it for whatever reason, you can do so by going to the *System "
525-"Settings* and selecting *Notifications*. From here you can toggle on/off "
526-"notifications from any application on your device."
527-msgstr ""
528-
529-#. type: Title ###
530-#: content/pages/settings.md:26
531-#, no-wrap
532-msgid "How do I change the ringtone for calls and texts? !!T"
533-msgstr ""
534-
535-#. type: Plain text
536-#: content/pages/settings.md:27
537-msgid ""
538-"You can change you ringtone for calls and texts to something new. Open the "
539-"*System Settings* application, then select *Sound*. Under *Phone Calls* you "
540-"will find your current ringtone. Tap it to open a page of ringtones to "
541-"select from."
542-msgstr ""
543-
544-#. type: Plain text
545-#: content/pages/ui.md:2
546-msgid "Title: User Interface"
547-msgstr ""
548-
549-#. type: Plain text
550-#: content/pages/ui.md:4
551-#, no-wrap
552-msgid ""
553-"*Are you wondering about the dash, scopes, swiping? You've come to the right "
554-"place!*\n"
555-msgstr ""
556-
557-#. type: Title ###
558-#: content/pages/ui.md:7
559-#, no-wrap
560-msgid "What is the dash? !!T"
561-msgstr ""
562-
563-#. type: Plain text
564-#: content/pages/ui.md:9
565-msgid ""
566-"The dash contains a list of applications installed on the device, along with "
567-"presenting the scopes and store. The dash is the first thing you see when "
568-"booting the phone. You can switch to it again at any time by swiping left "
569-"from the right screen edge."
570-msgstr ""
571-
572-#. type: Title ###
573-#: content/pages/ui.md:10
574-#, no-wrap
575-msgid "What is the launcher? !!T"
576-msgstr ""
577-
578-#. type: Plain text
579-#: content/pages/ui.md:12
580-msgid ""
581-"The launcher allows you to easily launch new applications. You can access "
582-"the launcher at any time by swiping right from the left screen edge."
583-msgstr ""
584-
585-#. type: Title ###
586-#: content/pages/ui.md:13
587-#, no-wrap
588-msgid "How can I customize the launcher? !!T"
589-msgstr ""
590-
591-#. type: Plain text
592-#: content/pages/ui.md:16
593-msgid ""
594-"To pin a running app permanently to the launcher, long-press it to reveal "
595-"the context menu and choose the Pin to launcher option. You can do the same "
596-"to unpin apps. You can also move launcher icons around by long-pressing "
597-"them and dragging and dropping them to the position you'd like them to be "
598-"in."
599-msgstr ""
600-
601-#. type: Title ###
602-#: content/pages/ui.md:17
603-#, no-wrap
604-msgid "What are the indicators? !!T"
605-msgstr ""
606-
607-#. type: Plain text
608-#: content/pages/ui.md:19
609-msgid ""
610-"Indicators convey quick useful information about your device, like the time, "
611-"data connection, location, sound, and notifications. You can access the "
612-"indicators at any time by swiping down from the top screen edge."
613-msgstr ""
614-
615-#. type: Title ###
616-#: content/pages/ui.md:20
617-#, no-wrap
618-msgid "How do I switch applications? !!T"
619-msgstr ""
620-
621-#. type: Plain text
622-#: content/pages/ui.md:23
623-msgid ""
624-"To switch applications, slide your finger left from the right edge of the "
625-"screen. If you slide quickly you will cycle through each "
626-"application. However, if you slide more slowly, an application switcher will "
627-"appear allowing you to select the application you wish to switch to, "
628-"including the dash."
629-msgstr ""
630-
631-#. type: Title ###
632-#: content/pages/ui.md:24
633-#, no-wrap
634-msgid "How do I close applications? !!T"
635-msgstr ""
636-
637-#. type: Plain text
638-#: content/pages/ui.md:26
639-msgid ""
640-"To close an application, slide your finger *slowly* left from the right edge "
641-"of the screen. An application switcher will appear. Place your finger on the "
642-"application preview you wish to close and swipe up or down. The application "
643-"will disappear."
644-msgstr ""
645-
646-#. type: Title ###
647-#: content/pages/ui.md:27
648-#, no-wrap
649-msgid "How can I copy and paste? !!T"
650-msgstr ""
651-
652-#. type: Plain text
653-#: content/pages/ui.md:29
654-msgid ""
655-"For text that can be copied and pasted, press and hold the text in "
656-"question. A menu will appear allowing you to cut, copy and paste."
657-msgstr ""
658-
659-#. type: Title ###
660-#: content/pages/ui.md:30
661-#, no-wrap
662-msgid "What are the small characters on the keyboard and how can I select them? !!T"
663-msgstr ""
664-
665-#. type: Plain text
666-#: content/pages/ui.md:32
667-msgid ""
668-"Tapping and hold a character on the keyboard brings up a menu allowing you "
669-"to select secondary characters. This allows you to select things like "
670-"numbers and accented characters. Give it a try!"
671-msgstr ""
672-
673-#. type: Title ###
674-#: content/pages/ui.md:33
675-#, no-wrap
676-msgid "The keyboard behaves funny. What can I do about it? !!T"
677-msgstr ""
678-
679-#. type: Plain text
680-#: content/pages/ui.md:35
681-msgid ""
682-"From the Settings app, you can go to Keyboard and try unsetting the "
683-"autocompletion feature, and/or the auto capitalize option. This way, you'll "
684-"still receive suggestions on the words you're writing, while having full "
685-"control of the input."
686-msgstr ""
687-
688-#. type: Title ###
689-#: content/pages/ui.md:36
690-#, no-wrap
691-msgid "How can I add a new keyboard language? !!T"
692-msgstr ""
693-
694-#. type: Plain text
695-#: content/pages/ui.md:39
696-msgid ""
697-"Adding a new keyboard language will enable you to type specific characters "
698-"that might not be available in other keyboards and (if available) use word "
699-"prediction and spell checking for that new language. Go to the Settings "
700-"app, tap on Language/Text and then on Keyboard layouts. From there, you can "
701-"then tick the keyboard you want to add and then [use "
702-"it](#how-can-i-switch-between-keyboard-languages)"
703-msgstr ""
704-
705-#. type: Title ###
706-#: content/pages/ui.md:40
707-#, no-wrap
708-msgid "How can I switch between keyboard languages? !!T"
709-msgstr ""
710-
711-#. type: Plain text
712-#: content/pages/ui.md:43
713-msgid ""
714-"While typing on the keyboard, tap on the globe icon near the bottom left "
715-"corner. A new pop-up will appear, where you can select the new keyboard you "
716-"want to switch to. You can do this to switch back and forth between "
717-"keyboards in different languages. [Make sure the language you want is "
718-"activated it in the Settings app](#how-can-i-add-a-new-keyboard-language)."
719-msgstr ""
720-
721-#. type: Title ###
722-#: content/pages/ui.md:44
723-#, no-wrap
724-msgid "How can I type Emoji icons? !!T"
725-msgstr ""
726-
727-#. type: Plain text
728-#: content/pages/ui.md:47
729-msgid ""
730-"[Learn wow to switch between keyboard "
731-"languages](#how-can-i-switch-between-keyboard-languages) to alternate "
732-"between the regular keyboard and the Emoji keyboard. Once done with typing "
733-"Emojis, you can switch back to the regular keyboard. If you can't see the "
734-"Emoji keyboard, make sure you've [activated it in the Settings "
735-"app](#how-can-i-add-a-new-keyboard-language)."
736-msgstr ""
737-
738-#. type: Title ###
739-#: content/pages/ui.md:48
740-#, no-wrap
741-msgid ""
742-"What is the round circle on the welcome screen for? What does it show? Can I "
743-"configure it? !!T"
744-msgstr ""
745-
746-#. type: Plain text
747-#: content/pages/ui.md:49
748-msgid ""
749-"The round circle is the infographic. It hows you recent phone activity, like "
750-"the number of messages received or the number of songs played. You can "
751-"disable it by launching the *Settings* app, navigating to *Security and "
752-"privacy* and unticking *Stats on Welcome screen*."
753-msgstr ""
754-
755-#. type: Plain text
756 #: content/pages/apps.md:2
757-msgid "Title: Apps"
758+msgid "Apps"
759 msgstr ""
760
761 #. type: Plain text
762@@ -686,24 +149,24 @@
763 msgid "The Store"
764 msgstr ""
765
766-#. type: Title ###
767+#. !!T
768 #: content/pages/apps.md:10
769 #, no-wrap
770-msgid "How do I find and install new scopes and applications? !!T"
771+msgid "How do I find and install new scopes and applications?"
772 msgstr ""
773
774 #. type: Plain text
775 #: content/pages/apps.md:12
776 msgid ""
777 "From the Apps scope, you can either tap on the “search” icon on the right "
778-"and start searching by name, or you can go all the way down in the scope and "
779-"tap on the Ubuntu Store icon."
780+"and start searching by name, or you can go all the way down in the scope and"
781+" tap on the Ubuntu Store icon."
782 msgstr ""
783
784-#. type: Title ###
785+#. !!T
786 #: content/pages/apps.md:13
787 #, no-wrap
788-msgid "How can I browse the store from my PC? !!T"
789+msgid "How can I browse the store from my PC?"
790 msgstr ""
791
792 #. type: Plain text
793@@ -714,19 +177,19 @@
794 "store](https://appstore.bhdouglass.com/apps)."
795 msgstr ""
796
797-#. type: Title ###
798+#. !!T
799 #: content/pages/apps.md:16
800 #, no-wrap
801-msgid "How do I remove scopes and applications? !!T"
802+msgid "How do I remove scopes and applications?"
803 msgstr ""
804
805 #. type: Plain text
806 #: content/pages/apps.md:18
807 msgid ""
808-"Search for the scope or application you wish to remove inside the "
809-"store. Open it and press the *Uninstall* button to remove the "
810-"application. Alternatively, for applications you can also long-press their "
811-"icons on the dash to show their store page and the *Uninstall* button."
812+"Search for the scope or application you wish to remove inside the store. "
813+"Open it and press the *Uninstall* button to remove the application. "
814+"Alternatively, for applications you can also long-press their icons on the "
815+"dash to show their store page and the *Uninstall* button."
816 msgstr ""
817
818 #. type: Title ##
819@@ -735,10 +198,10 @@
820 msgid "Misc"
821 msgstr ""
822
823-#. type: Title ###
824+#. !!T
825 #: content/pages/apps.md:21
826 #, no-wrap
827-msgid "Do you have Spotify? !!T"
828+msgid "Do you have Spotify?"
829 msgstr ""
830
831 #. type: Plain text
832@@ -748,10 +211,10 @@
833 "([video](https://www.youtube.com/watch?v=ea90rwK_VuI))."
834 msgstr ""
835
836-#. type: Title ###
837+#. !!T
838 #: content/pages/apps.md:25
839 #, no-wrap
840-msgid "Do you have Google Authenticator? !!T"
841+msgid "Do you have Google Authenticator?"
842 msgstr ""
843
844 #. type: Plain text
845@@ -765,27 +228,27 @@
846 msgid "Music"
847 msgstr ""
848
849-#. type: Title ###
850+#. !!T
851 #: content/pages/apps.md:30
852 #, no-wrap
853-msgid "How do I add music to my device? !!T"
854+msgid "How do I add music to my device?"
855 msgstr ""
856
857 #. type: Plain text
858 #: content/pages/apps.md:32
859 msgid ""
860 "You can add music in multiple ways. If you have pre-existing music files, "
861-"simply connect your phone to your pc via the usb cable. Next, copy the music "
862-"you wish to listen to to the *Music* folder. Your music will appear in the "
863+"simply connect your phone to your pc via the usb cable. Next, copy the music"
864+" you wish to listen to to the *Music* folder. Your music will appear in the "
865 "music app. Alternatively, you can acquire music directly using the device "
866 "via a scope, such as grooveshark or by downloading via the browser or "
867 "another application."
868 msgstr ""
869
870-#. type: Title ###
871+#. !!T
872 #: content/pages/apps.md:33
873 #, no-wrap
874-msgid "What music formats are supported? !!T"
875+msgid "What music formats are supported?"
876 msgstr ""
877
878 #. type: Plain text
879@@ -793,10 +256,10 @@
880 msgid "The music app supports OGG, FLAG and MP3 formats."
881 msgstr ""
882
883-#. type: Title ###
884+#. !!T
885 #: content/pages/apps.md:36
886 #, no-wrap
887-msgid "How do I listen to podcasts? !!!T"
888+msgid "How do I listen to podcasts? !"
889 msgstr ""
890
891 #. type: Plain text
892@@ -812,20 +275,20 @@
893 msgid "Contacts"
894 msgstr ""
895
896-#. type: Title ###
897+#. !!T
898 #: content/pages/apps.md:41
899 #, no-wrap
900-msgid "How can I sync my Google contacts to my device? !!T"
901+msgid "How can I sync my Google contacts to my device?"
902 msgstr ""
903
904 #. type: Plain text
905 #: content/pages/apps.md:43
906 msgid ""
907-"The first time you open the Contacts app you’ll be asked if you want to sync "
908-"contacts with your Google account. If you have answered “no” but change your "
909-"mind later, you can do so by going to the Today scope, and setting up your "
910-"Google account there. After that you can sync your contacts (and, if you "
911-"want, calendar events as well)."
912+"The first time you open the Contacts app you’ll be asked if you want to sync"
913+" contacts with your Google account. If you have answered “no” but change "
914+"your mind later, you can do so by going to the Today scope, and setting up "
915+"your Google account there. After that you can sync your contacts (and, if "
916+"you want, calendar events as well)."
917 msgstr ""
918
919 #. type: Title ##
920@@ -834,10 +297,10 @@
921 msgid "Gallery"
922 msgstr ""
923
924-#. type: Title ###
925+#. !!T
926 #: content/pages/apps.md:46
927 #, no-wrap
928-msgid "How can I share photos? !!T"
929+msgid "How can I share photos?"
930 msgstr ""
931
932 #. type: Plain text
933@@ -849,19 +312,19 @@
934 "you wish to share your photo."
935 msgstr ""
936
937-#. type: Title ###
938+#. !!T
939 #: content/pages/apps.md:49
940 #, no-wrap
941-msgid "How can I share videos? !!T"
942+msgid "How can I share videos?"
943 msgstr ""
944
945 #. type: Plain text
946 #: content/pages/apps.md:51
947 msgid ""
948-"If you've just recorded a video, share it easily by swiping to the left from "
949-"the right edge inside the Camera app. Alternatively, use the Gallery app to "
950-"find the video. Once loaded, select *Share* from the menu and choose how you "
951-"wish to share your video."
952+"If you've just recorded a video, share it easily by swiping to the left from"
953+" the right edge inside the Camera app. Alternatively, use the Gallery app to"
954+" find the video. Once loaded, select *Share* from the menu and choose how "
955+"you wish to share your video."
956 msgstr ""
957
958 #. type: Title ##
959@@ -870,10 +333,10 @@
960 msgid "Camera"
961 msgstr ""
962
963-#. type: Title ###
964+#. !!T
965 #: content/pages/apps.md:54
966 #, no-wrap
967-msgid "How can I take a picture? !!T"
968+msgid "How can I take a picture?"
969 msgstr ""
970
971 #. type: Plain text
972@@ -883,31 +346,31 @@
973 "bottom edge of the phone for additional options. Enjoy taking your picture!"
974 msgstr ""
975
976-#. type: Title ###
977+#. !!T
978 #: content/pages/apps.md:57
979 #, no-wrap
980-msgid "How can I crop / rotate a picture? !!T"
981+msgid "How can I crop / rotate a picture?"
982 msgstr ""
983
984 #. type: Plain text
985 #: content/pages/apps.md:59
986 msgid ""
987-"Use the gallery app to select your picture. Select the *Edit* button next to "
988-"the menu. Inside you'll find options to crop and rotate your picture."
989+"Use the gallery app to select your picture. Select the *Edit* button next to"
990+" the menu. Inside you'll find options to crop and rotate your picture."
991 msgstr ""
992
993-#. type: Title ###
994+#. !!T
995 #: content/pages/apps.md:60
996 #, no-wrap
997-msgid "How can I record video? !!T"
998+msgid "How can I record video?"
999 msgstr ""
1000
1001 #. type: Plain text
1002 #: content/pages/apps.md:62
1003 msgid ""
1004-"Select the Camera app from the launcher or apps scope. Select the video icon "
1005-"on the bottom of the screen. Swipe up from the bottom edge of the phone for "
1006-"additional options. Enjoy taking your video!"
1007+"Select the Camera app from the launcher or apps scope. Select the video icon"
1008+" on the bottom of the screen. Swipe up from the bottom edge of the phone for"
1009+" additional options. Enjoy taking your video!"
1010 msgstr ""
1011
1012 #. type: Title ##
1013@@ -916,10 +379,10 @@
1014 msgid "Clock"
1015 msgstr ""
1016
1017-#. type: Title ###
1018+#. !!T
1019 #: content/pages/apps.md:65
1020 #, no-wrap
1021-msgid "How do I set an alarm? !!T"
1022+msgid "How do I set an alarm?"
1023 msgstr ""
1024
1025 #. type: Plain text
1026@@ -941,10 +404,10 @@
1027 msgid "HERE Maps"
1028 msgstr ""
1029
1030-#. type: Title ###
1031+#. !!T
1032 #: content/pages/apps.md:71
1033 #, no-wrap
1034-msgid "How can I get directions? !!T"
1035+msgid "How can I get directions?"
1036 msgstr ""
1037
1038 #. type: Plain text
1039@@ -954,10 +417,10 @@
1040 "*Directions*. Enter your destination and tap the *Get Directions* button."
1041 msgstr ""
1042
1043-#. type: Title ###
1044+#. !!T
1045 #: content/pages/apps.md:74
1046 #, no-wrap
1047-msgid "Can I navigate offline? !!T"
1048+msgid "Can I navigate offline?"
1049 msgstr ""
1050
1051 #. type: Plain text
1052@@ -965,10 +428,10 @@
1053 msgid "Unfortunately navigation requires an active connection."
1054 msgstr ""
1055
1056-#. type: Title ###
1057+#. !!T
1058 #: content/pages/apps.md:77
1059 #, no-wrap
1060-msgid "Can I view the map offline? !!T"
1061+msgid "Can I view the map offline?"
1062 msgstr ""
1063
1064 #. type: Plain text
1065@@ -979,8 +442,120 @@
1066 msgstr ""
1067
1068 #. type: Plain text
1069+#: content/pages/settings.md:2
1070+msgid "Settings"
1071+msgstr ""
1072+
1073+#. type: Plain text
1074+#: content/pages/settings.md:4
1075+#, no-wrap
1076+msgid "*How do I change my phone settings?*\n"
1077+msgstr ""
1078+
1079+#. !!T
1080+#: content/pages/settings.md:7
1081+#, no-wrap
1082+msgid "How do I update my system?"
1083+msgstr ""
1084+
1085+#. type: Plain text
1086+#: content/pages/settings.md:9
1087+msgid ""
1088+"Your device will prompt you when an update is ready. A notification will "
1089+"appear informing you of the new update. If you wish, you can manually check "
1090+"and perform an update yourself. Open the *System Settings* application. "
1091+"Select *Update*, and then click the check for updates button."
1092+msgstr ""
1093+
1094+#. !!T
1095+#: content/pages/settings.md:10
1096+#, no-wrap
1097+msgid "How do I set the time / language?"
1098+msgstr ""
1099+
1100+#. type: Plain text
1101+#: content/pages/settings.md:13
1102+msgid ""
1103+"Open the *System Settings* application. For the time, check out the *Time & "
1104+"Date* section. For language, select *Language & Text*. "
1105+"![Icon]({filename}/images/settings.gif)"
1106+msgstr ""
1107+
1108+#. !!T
1109+#: content/pages/settings.md:14
1110+#, no-wrap
1111+msgid "How can I change my wallpaper/background?"
1112+msgstr ""
1113+
1114+#. type: Plain text
1115+#: content/pages/settings.md:16
1116+msgid ""
1117+"Open the *System Settings* application. Select the *Background* option. "
1118+"Press the *Add Image* button and choice your image to set as a background."
1119+msgstr ""
1120+
1121+#. !!T
1122+#: content/pages/settings.md:17
1123+#, no-wrap
1124+msgid "How do I keep the screen on?"
1125+msgstr ""
1126+
1127+#. type: Plain text
1128+#: content/pages/settings.md:19
1129+msgid ""
1130+"Open the *System Settings* application, and select the *Security & Privacy* "
1131+"option. Select the *Lock Phone* option, and then *Lock when idle*. St"
1132+msgstr ""
1133+
1134+#. !!T
1135+#: content/pages/settings.md:20
1136+#, no-wrap
1137+msgid "How do I set up my accounts?"
1138+msgstr ""
1139+
1140+#. type: Plain text
1141+#: content/pages/settings.md:22
1142+msgid ""
1143+"You can set up some of your accounts from the scopes. Today scope allows you"
1144+" to configure your Google and Fitbit account, while the Pictures scope lets "
1145+"you configure your flickr, Facebook and Instagram account. You can manage "
1146+"all your accounts (including social media, email, etc) from the *System "
1147+"Settings* app, under *Personal*, *Accounts*."
1148+msgstr ""
1149+
1150+#. !!T
1151+#: content/pages/settings.md:23
1152+#, no-wrap
1153+msgid "How do I configure my notifications?"
1154+msgstr ""
1155+
1156+#. type: Plain text
1157+#: content/pages/settings.md:25
1158+msgid ""
1159+"If you’re receiving too many notifications of your activity or want to "
1160+"change it for whatever reason, you can do so by going to the *System "
1161+"Settings* and selecting *Notifications*. From here you can toggle on/off "
1162+"notifications from any application on your device."
1163+msgstr ""
1164+
1165+#. !!T
1166+#: content/pages/settings.md:26
1167+#, no-wrap
1168+msgid "How do I change the ringtone for calls and texts?"
1169+msgstr ""
1170+
1171+#. type: Plain text
1172+#: content/pages/settings.md:27
1173+msgid ""
1174+"You can change you ringtone for calls and texts to something new. Open the "
1175+"*System Settings* application, then select *Sound*. Under *Phone Calls* you "
1176+"will find your current ringtone. Tap it to open a page of ringtones to "
1177+"select from."
1178+msgstr ""
1179+
1180+#. type: Plain text
1181 #: content/pages/get-in-touch.md:2
1182-msgid "Title: Get in touch"
1183+msgid "Get in touch"
1184 msgstr ""
1185
1186 #. type: Plain text
1187@@ -1004,8 +579,435 @@
1188 msgstr ""
1189
1190 #. type: Plain text
1191+#: content/pages/index.md:2
1192+msgid "Welcome"
1193+msgstr ""
1194+
1195+#. type: Plain text
1196+#: content/pages/index.md:5
1197+msgid ""
1198+"The world-wide Ubuntu community wants to give you the best possible "
1199+"experience on your Ubuntu device. This is why we collected:"
1200+msgstr ""
1201+
1202+#. type: Bullet: ' * '
1203+#: content/pages/index.md:9
1204+msgid "Answers to frequently asked questions"
1205+msgstr ""
1206+
1207+#. type: Bullet: ' * '
1208+#: content/pages/index.md:9
1209+msgid "Tips and tricks to make you more productive"
1210+msgstr ""
1211+
1212+#. type: Bullet: ' * '
1213+#: content/pages/index.md:9
1214+msgid "Links to get in touch with experts and other community members"
1215+msgstr ""
1216+
1217+#. type: Plain text
1218+#: content/pages/index.md:11
1219+msgid "[Take me to the FAQ!]({filename}faq.md)"
1220+msgstr ""
1221+
1222+#. type: Plain text
1223+#: content/pages/index.md:12
1224+msgid "[Get in touch]({filename}get-in-touch.md)"
1225+msgstr ""
1226+
1227+#. type: Plain text
1228+#: content/pages/faq.md:2
1229+msgid "Get your questions answered"
1230+msgstr ""
1231+
1232+#. type: Plain text
1233+#: content/pages/faq.md:5
1234+msgid ""
1235+"We divided the questions up into categories, so you can spot yours more "
1236+"easily. Here we go:"
1237+msgstr ""
1238+
1239+#. type: Title ###
1240+#: content/pages/faq.md:6
1241+#, no-wrap
1242+msgid "[First day tasks]({filename}basic.md)"
1243+msgstr ""
1244+
1245+#. type: Title ###
1246+#: content/pages/faq.md:7
1247+#, no-wrap
1248+msgid "[User Interface]({filename}ui.md)"
1249+msgstr ""
1250+
1251+#. type: Title ###
1252+#: content/pages/faq.md:8
1253+#, no-wrap
1254+msgid "[Settings]({filename}settings.md)"
1255+msgstr ""
1256+
1257+#. type: Title ###
1258+#: content/pages/faq.md:9
1259+#, no-wrap
1260+msgid "[Apps]({filename}apps.md)"
1261+msgstr ""
1262+
1263+#. type: Title ###
1264+#: content/pages/faq.md:10
1265+#, no-wrap
1266+msgid "[Scopes]({filename}scopes.md)"
1267+msgstr ""
1268+
1269+#. type: Title ###
1270+#: content/pages/faq.md:11
1271+#, no-wrap
1272+msgid "[Security]({filename}security.md)"
1273+msgstr ""
1274+
1275+#. type: Plain text
1276+#: content/pages/ui.md:2
1277+msgid "User Interface"
1278+msgstr ""
1279+
1280+#. type: Plain text
1281+#: content/pages/ui.md:4
1282+#, no-wrap
1283+msgid ""
1284+"*Are you wondering about the dash, scopes, swiping? You've come to the right"
1285+" place!*\n"
1286+msgstr ""
1287+
1288+#. !!T
1289+#: content/pages/ui.md:7
1290+#, no-wrap
1291+msgid "What is the dash?"
1292+msgstr ""
1293+
1294+#. type: Plain text
1295+#: content/pages/ui.md:9
1296+msgid ""
1297+"The dash contains a list of applications installed on the device, along with"
1298+" presenting the scopes and store. The dash is the first thing you see when "
1299+"booting the phone. You can switch to it again at any time by swiping left "
1300+"from the right screen edge."
1301+msgstr ""
1302+
1303+#. !!T
1304+#: content/pages/ui.md:10
1305+#, no-wrap
1306+msgid "What is the launcher?"
1307+msgstr ""
1308+
1309+#. type: Plain text
1310+#: content/pages/ui.md:12
1311+msgid ""
1312+"The launcher allows you to easily launch new applications. You can access "
1313+"the launcher at any time by swiping right from the left screen edge."
1314+msgstr ""
1315+
1316+#. !!T
1317+#: content/pages/ui.md:13
1318+#, no-wrap
1319+msgid "How can I customize the launcher?"
1320+msgstr ""
1321+
1322+#. type: Plain text
1323+#: content/pages/ui.md:16
1324+msgid ""
1325+"To pin a running app permanently to the launcher, long-press it to reveal "
1326+"the context menu and choose the Pin to launcher option. You can do the same "
1327+"to unpin apps. You can also move launcher icons around by long-pressing "
1328+"them and dragging and dropping them to the position you'd like them to be "
1329+"in."
1330+msgstr ""
1331+
1332+#. !!T
1333+#: content/pages/ui.md:17
1334+#, no-wrap
1335+msgid "What are the indicators?"
1336+msgstr ""
1337+
1338+#. type: Plain text
1339+#: content/pages/ui.md:19
1340+msgid ""
1341+"Indicators convey quick useful information about your device, like the time,"
1342+" data connection, location, sound, and notifications. You can access the "
1343+"indicators at any time by swiping down from the top screen edge."
1344+msgstr ""
1345+
1346+#. !!T
1347+#: content/pages/ui.md:20
1348+#, no-wrap
1349+msgid "How do I switch applications?"
1350+msgstr ""
1351+
1352+#. type: Plain text
1353+#: content/pages/ui.md:23
1354+msgid ""
1355+"To switch applications, slide your finger left from the right edge of the "
1356+"screen. If you slide quickly you will cycle through each application. "
1357+"However, if you slide more slowly, an application switcher will appear "
1358+"allowing you to select the application you wish to switch to, including the "
1359+"dash."
1360+msgstr ""
1361+
1362+#. !!T
1363+#: content/pages/ui.md:24
1364+#, no-wrap
1365+msgid "How do I close applications?"
1366+msgstr ""
1367+
1368+#. type: Plain text
1369+#: content/pages/ui.md:26
1370+msgid ""
1371+"To close an application, slide your finger *slowly* left from the right edge"
1372+" of the screen. An application switcher will appear. Place your finger on "
1373+"the application preview you wish to close and swipe up or down. The "
1374+"application will disappear."
1375+msgstr ""
1376+
1377+#. !!T
1378+#: content/pages/ui.md:27
1379+#, no-wrap
1380+msgid "How can I copy and paste?"
1381+msgstr ""
1382+
1383+#. type: Plain text
1384+#: content/pages/ui.md:29
1385+msgid ""
1386+"For text that can be copied and pasted, press and hold the text in question."
1387+" A menu will appear allowing you to cut, copy and paste."
1388+msgstr ""
1389+
1390+#. !!T
1391+#: content/pages/ui.md:30
1392+#, no-wrap
1393+msgid ""
1394+"What are the small characters on the keyboard and how can I select them?"
1395+msgstr ""
1396+
1397+#. type: Plain text
1398+#: content/pages/ui.md:32
1399+msgid ""
1400+"Tapping and hold a character on the keyboard brings up a menu allowing you "
1401+"to select secondary characters. This allows you to select things like "
1402+"numbers and accented characters. Give it a try!"
1403+msgstr ""
1404+
1405+#. !!T
1406+#: content/pages/ui.md:33
1407+#, no-wrap
1408+msgid "The keyboard behaves funny. What can I do about it?"
1409+msgstr ""
1410+
1411+#. type: Plain text
1412+#: content/pages/ui.md:35
1413+msgid ""
1414+"From the Settings app, you can go to Keyboard and try unsetting the "
1415+"autocompletion feature, and/or the auto capitalize option. This way, you'll "
1416+"still receive suggestions on the words you're writing, while having full "
1417+"control of the input."
1418+msgstr ""
1419+
1420+#. !!T
1421+#: content/pages/ui.md:36
1422+#, no-wrap
1423+msgid "How can I add a new keyboard language?"
1424+msgstr ""
1425+
1426+#. type: Plain text
1427+#: content/pages/ui.md:39
1428+msgid ""
1429+"Adding a new keyboard language will enable you to type specific characters "
1430+"that might not be available in other keyboards and (if available) use word "
1431+"prediction and spell checking for that new language. Go to the Settings "
1432+"app, tap on Language/Text and then on Keyboard layouts. From there, you can "
1433+"then tick the keyboard you want to add and then [use it](#how-can-i-switch-"
1434+"between-keyboard-languages)"
1435+msgstr ""
1436+
1437+#. !!T
1438+#: content/pages/ui.md:40
1439+#, no-wrap
1440+msgid "How can I switch between keyboard languages?"
1441+msgstr ""
1442+
1443+#. type: Plain text
1444+#: content/pages/ui.md:43
1445+msgid ""
1446+"While typing on the keyboard, tap on the globe icon near the bottom left "
1447+"corner. A new pop-up will appear, where you can select the new keyboard you "
1448+"want to switch to. You can do this to switch back and forth between "
1449+"keyboards in different languages. [Make sure the language you want is "
1450+"activated it in the Settings app](#how-can-i-add-a-new-keyboard-language)."
1451+msgstr ""
1452+
1453+#. !!T
1454+#: content/pages/ui.md:44
1455+#, no-wrap
1456+msgid "How can I type Emoji icons?"
1457+msgstr ""
1458+
1459+#. type: Plain text
1460+#: content/pages/ui.md:47
1461+msgid ""
1462+"[Learn wow to switch between keyboard languages](#how-can-i-switch-between-"
1463+"keyboard-languages) to alternate between the regular keyboard and the Emoji "
1464+"keyboard. Once done with typing Emojis, you can switch back to the regular "
1465+"keyboard. If you can't see the Emoji keyboard, make sure you've [activated "
1466+"it in the Settings app](#how-can-i-add-a-new-keyboard-language)."
1467+msgstr ""
1468+
1469+#. !!T
1470+#: content/pages/ui.md:48
1471+#, no-wrap
1472+msgid ""
1473+"What is the round circle on the welcome screen for? What does it show? Can I"
1474+" configure it?"
1475+msgstr ""
1476+
1477+#. type: Plain text
1478+#: content/pages/ui.md:49
1479+msgid ""
1480+"The round circle is the infographic. It hows you recent phone activity, like"
1481+" the number of messages received or the number of songs played. You can "
1482+"disable it by launching the *Settings* app, navigating to *Security and "
1483+"privacy* and unticking *Stats on Welcome screen*."
1484+msgstr ""
1485+
1486+#. type: Plain text
1487+#: content/pages/basic.md:2
1488+msgid "Basic tasks"
1489+msgstr ""
1490+
1491+#. type: Plain text
1492+#: content/pages/basic.md:4
1493+#, no-wrap
1494+msgid "*If you are wondering how to perform basic tasks, look here.*\n"
1495+msgstr ""
1496+
1497+#. !!T
1498+#: content/pages/basic.md:7
1499+#, no-wrap
1500+msgid "How do I play music?"
1501+msgstr ""
1502+
1503+#. type: Plain text
1504+#: content/pages/basic.md:9
1505+msgid ""
1506+"The music app let's you play music copied to the device. In addition, "
1507+"[scopes]({filename}scopes.md) such as 7digital and Grooveshark can also play"
1508+" music."
1509+msgstr ""
1510+
1511+#. !!T
1512+#: content/pages/basic.md:10
1513+#, no-wrap
1514+msgid "How do I play videos?"
1515+msgstr ""
1516+
1517+#. type: Plain text
1518+#: content/pages/basic.md:12
1519+msgid ""
1520+"The media player application will play videos copied to the device. You will"
1521+" also find applications like youtube that give you streaming options."
1522+msgstr ""
1523+
1524+#. !!T
1525+#: content/pages/basic.md:13
1526+#, no-wrap
1527+msgid "How do I take photos?"
1528+msgstr ""
1529+
1530+#. type: Plain text
1531+#: content/pages/basic.md:15
1532+msgid ""
1533+"The included camera application allows you to take photos. If your device "
1534+"has both a front and rear camera, you can toggle which camera to use."
1535+msgstr ""
1536+
1537+#. !!T
1538+#: content/pages/basic.md:16
1539+#, no-wrap
1540+msgid "How do I take a screenshot?"
1541+msgstr ""
1542+
1543+#. type: Plain text
1544+#: content/pages/basic.md:18
1545+msgid ""
1546+"Press the Volume Up and Volume Down buttons at the same time until you see "
1547+"the screen flashing. The screenshot will capture what is on your screen, and"
1548+" you can see the resulting picture in the Gallery app or the Photos scope."
1549+msgstr ""
1550+
1551+#. !!T
1552+#: content/pages/basic.md:19
1553+#, no-wrap
1554+msgid "How do I see pictures I’ve taken?"
1555+msgstr ""
1556+
1557+#. type: Plain text
1558+#: content/pages/basic.md:21
1559+msgid ""
1560+"If you've just taken a picture, you can see it easily by swiping to the left"
1561+" from the right edge inside the camera app. Alternatively, use the gallery "
1562+"app to find the picture."
1563+msgstr ""
1564+
1565+#. !!T
1566+#: content/pages/basic.md:22
1567+#, no-wrap
1568+msgid "How do I record videos?"
1569+msgstr ""
1570+
1571+#. type: Plain text
1572+#: content/pages/basic.md:24
1573+msgid ""
1574+"The included camera application allows you to take videos. If your device "
1575+"has both a front and rear camera, you can toggle which camera to use."
1576+msgstr ""
1577+
1578+#. !!T
1579+#: content/pages/basic.md:25
1580+#, no-wrap
1581+msgid "How can I send a text?"
1582+msgstr ""
1583+
1584+#. type: Plain text
1585+#: content/pages/basic.md:27
1586+msgid ""
1587+"The default messaging application allows you to send sms as well as mms "
1588+"messages."
1589+msgstr ""
1590+
1591+#. !!T
1592+#: content/pages/basic.md:28
1593+#, no-wrap
1594+msgid "How do I make a call?"
1595+msgstr ""
1596+
1597+#. type: Plain text
1598+#: content/pages/basic.md:30
1599+msgid ""
1600+"The default dialer app lets you make calls using a contact or by dialing a "
1601+"number."
1602+msgstr ""
1603+
1604+#. !!T
1605+#: content/pages/basic.md:31
1606+#, no-wrap
1607+msgid "How do I check recently made/missed calls?"
1608+msgstr ""
1609+
1610+#. type: Plain text
1611+#: content/pages/basic.md:32
1612+msgid ""
1613+"Swiping up from the bottom edge of the dialer app reveals the recent call "
1614+"list. You can also filter the list to include only missed calls."
1615+msgstr ""
1616+
1617+#. type: Plain text
1618 #: content/pages/scopes.md:2
1619-msgid "Title: Scopes"
1620+msgid "Scopes"
1621 msgstr ""
1622
1623 #. type: Plain text
1624@@ -1014,25 +1016,25 @@
1625 msgid "*Curious about scopes?*\n"
1626 msgstr ""
1627
1628-#. type: Title ###
1629+#. !!T
1630 #: content/pages/scopes.md:7
1631 #, no-wrap
1632-msgid "How do favorites work? !!T"
1633+msgid "How do favorites work?"
1634 msgstr ""
1635
1636 #. type: Plain text
1637 #: content/pages/scopes.md:9
1638 msgid ""
1639-"Swipe up from the bottom edge of the dash to reveal a scopes "
1640-"manager. Favorite scopes you wish to appear on your dash by selecting "
1641-"them. Selecting them again will remove the favorite. All favorited scopes "
1642-"will appear on your dash."
1643+"Swipe up from the bottom edge of the dash to reveal a scopes manager. "
1644+"Favorite scopes you wish to appear on your dash by selecting them. Selecting"
1645+" them again will remove the favorite. All favorited scopes will appear on "
1646+"your dash."
1647 msgstr ""
1648
1649-#. type: Title ###
1650+#. !!T
1651 #: content/pages/scopes.md:10
1652 #, no-wrap
1653-msgid "How do I add new scopes? !!T"
1654+msgid "How do I add new scopes?"
1655 msgstr ""
1656
1657 #. type: Plain text
1658@@ -1044,10 +1046,10 @@
1659 "store button in the upper right to look for it in the ubuntu store."
1660 msgstr ""
1661
1662-#. type: Title ###
1663+#. !!T
1664 #: content/pages/scopes.md:13
1665 #, no-wrap
1666-msgid "How do I remove a scope? !!T"
1667+msgid "How do I remove a scope?"
1668 msgstr ""
1669
1670 #. type: Plain text

Subscribers

People subscribed via source and target branches