Merge lp:~dholbach/help-app/1434125 into lp:help-app

Proposed by Daniel Holbach
Status: Merged
Merged at revision: 119
Proposed branch: lp:~dholbach/help-app/1434125
Merge into: lp:help-app
Prerequisite: lp:~dholbach/help-app/1429896
Diff against target: 1402 lines (+559/-350)
4 files modified
HACKING (+6/-1)
Makefile (+7/-1)
internals/web-publish (+21/-0)
po/de.po (+525/-348)
To merge this branch: bzr merge lp:~dholbach/help-app/1434125
Reviewer Review Type Date Requested Status
Daniel Holbach (community) Approve
Nicholas Skaggs (community) Approve
Ubuntu Phone Apps Jenkins Bot continuous-integration Needs Fixing
Michael Vogt (community) Approve
David Planella Pending
Review via email: mp+253658@code.launchpad.net

This proposal supersedes a proposal from 2015-03-19.

Commit message

add publish-web makefile

Description of the change

add publish-web makefile

To post a comment you must log in.
Revision history for this message
David Planella (dpm) wrote : Posted in a previous version of this proposal

Thanks! Added inline comments.

review: Needs Fixing
lp:~dholbach/help-app/1434125 updated
127. By Daniel Holbach

use trap (http://redsymbol.net/articles/bash-exit-traps/), thanks mvo! don't test rc of 'bzr commit', we use 'set -e' already

128. By Daniel Holbach

merge from trunk

Revision history for this message
Michael Vogt (mvo) wrote :

LGTM

review: Approve
lp:~dholbach/help-app/1434125 updated
129. By Daniel Holbach

update .po files

130. By Daniel Holbach

we need bzrtools, thanks Nick!

Revision history for this message
Daniel Holbach (dholbach) wrote :
review: Needs Fixing
Revision history for this message
Nicholas Skaggs (nskaggs) wrote :

My guess is you'll get to the issue first.

bzr import make[1]: Entering directory '/home/nskaggs/projects/ubuntutouch/merges/1429896'
/home/nskaggs/projects/ubuntutouch/merges/1429896/build/web/wwwmake[1]: Leaving directory '/home/nskaggs/projects/ubuntutouch/merges/1429896'

Sorry I'm always breaking your stuff :-)

review: Needs Fixing
Revision history for this message
Daniel Holbach (dholbach) wrote :

Oops, sorry - I pushed changes to the wrong branch...

Revision history for this message
Daniel Holbach (dholbach) wrote :

Ignore the last change. Overwrote the branch with old contents again.

lp:~dholbach/help-app/1434125 updated
131. By Daniel Holbach

fix logic to obtain OUTPUTDIR_WEB value from Makefile

Revision history for this message
Ubuntu Phone Apps Jenkins Bot (ubuntu-phone-apps-jenkins-bot) wrote :

FAILED: Continuous integration, rev:131
No commit message was specified in the merge proposal. Click on the following link and set the commit message (if you want a jenkins rebuild you need to trigger it yourself):
https://code.launchpad.net/~dholbach/help-app/1434125/+merge/253658/+edit-commit-message

http://91.189.93.70:8080/job/help-app-ci/2/
Executed test runs:
    FAILURE: http://91.189.93.70:8080/job/help-app-utopic-amd64-ci/2/console
    FAILURE: http://91.189.93.70:8080/job/help-app-vivid-amd64-ci/2/console

Click here to trigger a rebuild:
http://91.189.93.70:8080/job/help-app-ci/2/rebuild

review: Needs Fixing (continuous-integration)
Revision history for this message
Ubuntu Phone Apps Jenkins Bot (ubuntu-phone-apps-jenkins-bot) wrote :
review: Needs Fixing (continuous-integration)
Revision history for this message
Nicholas Skaggs (nskaggs) wrote :

LGTM.

review: Approve
Revision history for this message
Daniel Holbach (dholbach) :
review: Approve

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'HACKING'
2--- HACKING 2015-03-19 15:36:04 +0000
3+++ HACKING 2015-03-23 16:51:34 +0000
4@@ -84,7 +84,7 @@
5
6 Before you get started, run:
7
8- sudo apt install python-pelican po4a make bzr \
9+ sudo apt install python-pelican po4a make bzrtools \
10 ubuntu-html5-ui-toolkit python3-polib python3-magic \
11 python3-markdown
12
13@@ -141,6 +141,11 @@
14
15 Find the resulting files in the ./build/web directory.
16
17+To update the publishing branch (you need to be member of ~help-app-dev),
18+run
19+
20+ make web-publish
21+
22 We plan to make use of
23 http://www.w3.org/International/questions/qa-apache-lang-neg for publishing
24 this on the web.
25
26=== modified file 'Makefile'
27--- Makefile 2015-03-19 16:04:43 +0000
28+++ Makefile 2015-03-23 16:51:34 +0000
29@@ -27,6 +27,9 @@
30
31 ignored := $(shell bzr ignored | cut -d' ' -f1)
32
33+print-%:
34+ @echo -n '$*=$($*)'
35+
36 clean:
37 ifneq ($(strip $(ignored)),)
38 $(foreach fn, $(ignored), $(shell rm -r $(fn);))
39@@ -74,4 +77,7 @@
40 update-pot:
41 cd $(INTERNALS_DIR) && ./generate-pot
42
43-.PHONY: html help clean web check launch click app update-pot translations
44+web-publish: web
45+ cd $(INTERNALS_DIR) && ./web-publish
46+
47+.PHONY: html help clean web check launch click app update-pot translations web-publish
48
49=== added file 'internals/web-publish'
50--- internals/web-publish 1970-01-01 00:00:00 +0000
51+++ internals/web-publish 2015-03-23 16:51:34 +0000
52@@ -0,0 +1,21 @@
53+#!/bin/sh -e
54+
55+finish() {
56+ cd "$workingdir" && rm -r "$tempdir"
57+}
58+
59+workingdir=$(pwd)
60+tempdir=$(mktemp -d)
61+trap finish EXIT INT
62+
63+web_branch="lp:~help-app-dev/help-app/help-app-web"
64+outputdir_web=$(make -C .. -s print-OUTPUTDIR_WEB | cut -d'=' -f2)
65+current_rev=$(bzr revno)
66+
67+cd "$tempdir"
68+bzr branch "$web_branch" output-web
69+
70+cd output-web; bzr import "$outputdir_web"
71+
72+bzr commit -m "Update content (rev $current_rev)" -q
73+bzr push :parent
74
75=== modified file 'po/de.po'
76--- po/de.po 2015-03-20 13:16:44 +0000
77+++ po/de.po 2015-03-23 16:51:34 +0000
78@@ -31,12 +31,6 @@
79 msgid "[TOC]"
80 msgstr "[TOC]"
81
82-#. !!T
83-#: content/pages/security.md:7
84-#, no-wrap
85-msgid "How do I lock the phone?"
86-msgstr ""
87-
88 #. type: Plain text
89 #: content/pages/security.md:9
90 msgid ""
91@@ -46,12 +40,6 @@
92 "& Privacy*, then *Phone Locking* to adjust the *Lock when idle* setting."
93 msgstr ""
94
95-#. !!T
96-#: content/pages/security.md:10
97-#, no-wrap
98-msgid "How do I unlock the phone?"
99-msgstr ""
100-
101 #. type: Plain text
102 #: content/pages/security.md:12
103 msgid ""
104@@ -59,12 +47,6 @@
105 "enabled, you might be required to enter a pin or passcode."
106 msgstr ""
107
108-#. !!T
109-#: content/pages/security.md:13
110-#, no-wrap
111-msgid "How do I unlock the bootloader?"
112-msgstr ""
113-
114 #. type: Plain text
115 #: content/pages/security.md:15
116 msgid ""
117@@ -72,12 +54,6 @@
118 "related tasks, see the [developer site](http://developer.ubuntu.com/)"
119 msgstr ""
120
121-#. !!T
122-#: content/pages/security.md:16
123-#, no-wrap
124-msgid "How can I change my PIN/Passcode?"
125-msgstr ""
126-
127 #. type: Plain text
128 #: content/pages/security.md:18
129 msgid ""
130@@ -85,14 +61,6 @@
131 "*Security & Privacy* to adjust the *Lock when idle* setting."
132 msgstr ""
133
134-#. !!T
135-#: content/pages/security.md:19
136-#, no-wrap
137-msgid ""
138-"Why do I have to type my PIN when using File Manager & Terminal (not default"
139-" apps)?"
140-msgstr ""
141-
142 #. type: Plain text
143 #: content/pages/security.md:21
144 msgid ""
145@@ -100,13 +68,6 @@
146 "pin/passcode is required. This is for your phone security."
147 msgstr ""
148
149-#. !!T
150-#: content/pages/security.md:22
151-#, no-wrap
152-msgid ""
153-"How can I stop someone using the indicators when the phone is unlocked?"
154-msgstr ""
155-
156 #. type: Plain text
157 #: content/pages/security.md:24
158 msgid ""
159@@ -116,12 +77,6 @@
160 "settings* option."
161 msgstr ""
162
163-#. !!T
164-#: content/pages/security.md:25
165-#, no-wrap
166-msgid "I forgot my password or passcode. How can I unlock the phone?"
167-msgstr ""
168-
169 #. type: Plain text
170 #: content/pages/security.md:26
171 msgid "TBD"
172@@ -133,12 +88,6 @@
173 msgid "*If you are wondering how to perform basic tasks, look here.*\n"
174 msgstr ""
175
176-#. !!T
177-#: content/pages/basic.md:7
178-#, no-wrap
179-msgid "How do I play music?"
180-msgstr ""
181-
182 #. type: Plain text
183 #: content/pages/basic.md:9
184 msgid ""
185@@ -150,12 +99,6 @@
186 "[scopes]({filename}scopes.de.md) such as 7digital and Grooveshark can also "
187 "play music."
188
189-#. !!T
190-#: content/pages/basic.md:10
191-#, no-wrap
192-msgid "How do I play videos?"
193-msgstr ""
194-
195 #. type: Plain text
196 #: content/pages/basic.md:12
197 msgid ""
198@@ -163,12 +106,6 @@
199 " also find applications like youtube that give you streaming options."
200 msgstr ""
201
202-#. !!T
203-#: content/pages/basic.md:13
204-#, no-wrap
205-msgid "How do I take photos?"
206-msgstr ""
207-
208 #. type: Plain text
209 #: content/pages/basic.md:15
210 msgid ""
211@@ -176,12 +113,6 @@
212 "has both a front and rear camera, you can toggle which camera to use."
213 msgstr ""
214
215-#. !!T
216-#: content/pages/basic.md:16
217-#, no-wrap
218-msgid "How do I take a screenshot?"
219-msgstr ""
220-
221 #. type: Plain text
222 #: content/pages/basic.md:18
223 msgid ""
224@@ -190,12 +121,6 @@
225 " you can see the resulting picture in the Gallery app or the Photos scope."
226 msgstr ""
227
228-#. !!T
229-#: content/pages/basic.md:19
230-#, no-wrap
231-msgid "How do I see pictures I’ve taken?"
232-msgstr ""
233-
234 #. type: Plain text
235 #: content/pages/basic.md:21
236 msgid ""
237@@ -204,12 +129,6 @@
238 "app to find the picture."
239 msgstr ""
240
241-#. !!T
242-#: content/pages/basic.md:22
243-#, no-wrap
244-msgid "How do I record videos?"
245-msgstr ""
246-
247 #. type: Plain text
248 #: content/pages/basic.md:24
249 msgid ""
250@@ -217,12 +136,6 @@
251 "has both a front and rear camera, you can toggle which camera to use."
252 msgstr ""
253
254-#. !!T
255-#: content/pages/basic.md:25
256-#, no-wrap
257-msgid "How can I send a text?"
258-msgstr ""
259-
260 #. type: Plain text
261 #: content/pages/basic.md:27
262 msgid ""
263@@ -230,12 +143,6 @@
264 "messages."
265 msgstr ""
266
267-#. !!T
268-#: content/pages/basic.md:28
269-#, no-wrap
270-msgid "How do I make a call?"
271-msgstr ""
272-
273 #. type: Plain text
274 #: content/pages/basic.md:30
275 msgid ""
276@@ -243,12 +150,6 @@
277 "number."
278 msgstr ""
279
280-#. !!T
281-#: content/pages/basic.md:31
282-#, no-wrap
283-msgid "How do I check recently made/missed calls?"
284-msgstr ""
285-
286 #. type: Plain text
287 #: content/pages/basic.md:32
288 msgid ""
289@@ -341,12 +242,6 @@
290 msgid "*How do I change my phone settings?*\n"
291 msgstr ""
292
293-#. !!T
294-#: content/pages/settings.md:7
295-#, no-wrap
296-msgid "How do I update my system?"
297-msgstr ""
298-
299 #. type: Plain text
300 #: content/pages/settings.md:9
301 msgid ""
302@@ -356,12 +251,6 @@
303 "Select *Update*, and then click the check for updates button."
304 msgstr ""
305
306-#. !!T
307-#: content/pages/settings.md:10
308-#, no-wrap
309-msgid "How do I set the time / language?"
310-msgstr ""
311-
312 #. type: Plain text
313 #: content/pages/settings.md:13
314 msgid ""
315@@ -370,12 +259,6 @@
316 "![Icon]({filename}/images/settings.gif)"
317 msgstr ""
318
319-#. !!T
320-#: content/pages/settings.md:14
321-#, no-wrap
322-msgid "How can I change my wallpaper/background?"
323-msgstr ""
324-
325 #. type: Plain text
326 #: content/pages/settings.md:16
327 msgid ""
328@@ -383,12 +266,6 @@
329 "Press the *Add Image* button and choice your image to set as a background."
330 msgstr ""
331
332-#. !!T
333-#: content/pages/settings.md:17
334-#, no-wrap
335-msgid "How do I keep the screen on?"
336-msgstr ""
337-
338 #. type: Plain text
339 #: content/pages/settings.md:19
340 msgid ""
341@@ -396,12 +273,6 @@
342 "option. Select the *Lock Phone* option, and then *Lock when idle*. St"
343 msgstr ""
344
345-#. !!T
346-#: content/pages/settings.md:20
347-#, no-wrap
348-msgid "How do I set up my accounts?"
349-msgstr ""
350-
351 #. type: Plain text
352 #: content/pages/settings.md:22
353 msgid ""
354@@ -412,12 +283,6 @@
355 "Settings* app, under *Personal*, *Accounts*."
356 msgstr ""
357
358-#. !!T
359-#: content/pages/settings.md:23
360-#, no-wrap
361-msgid "How do I configure my notifications?"
362-msgstr ""
363-
364 #. type: Plain text
365 #: content/pages/settings.md:25
366 msgid ""
367@@ -427,12 +292,6 @@
368 "notifications from any application on your device."
369 msgstr ""
370
371-#. !!T
372-#: content/pages/settings.md:26
373-#, no-wrap
374-msgid "How do I change the ringtone for calls and texts?"
375-msgstr ""
376-
377 #. type: Plain text
378 #: content/pages/settings.md:27
379 msgid ""
380@@ -450,12 +309,6 @@
381 " place!*\n"
382 msgstr ""
383
384-#. !!T
385-#: content/pages/ui.md:7
386-#, no-wrap
387-msgid "What is the dash?"
388-msgstr ""
389-
390 #. type: Plain text
391 #: content/pages/ui.md:9
392 msgid ""
393@@ -465,12 +318,6 @@
394 "from the right screen edge."
395 msgstr ""
396
397-#. !!T
398-#: content/pages/ui.md:10
399-#, no-wrap
400-msgid "What is the launcher?"
401-msgstr ""
402-
403 #. type: Plain text
404 #: content/pages/ui.md:12
405 msgid ""
406@@ -478,12 +325,6 @@
407 "the launcher at any time by swiping right from the left screen edge."
408 msgstr ""
409
410-#. !!T
411-#: content/pages/ui.md:13
412-#, no-wrap
413-msgid "How can I customize the launcher?"
414-msgstr ""
415-
416 #. type: Plain text
417 #: content/pages/ui.md:16
418 msgid ""
419@@ -494,12 +335,6 @@
420 "in."
421 msgstr ""
422
423-#. !!T
424-#: content/pages/ui.md:17
425-#, no-wrap
426-msgid "What are the indicators?"
427-msgstr ""
428-
429 #. type: Plain text
430 #: content/pages/ui.md:19
431 msgid ""
432@@ -508,12 +343,6 @@
433 "indicators at any time by swiping down from the top screen edge."
434 msgstr ""
435
436-#. !!T
437-#: content/pages/ui.md:20
438-#, no-wrap
439-msgid "How do I switch applications?"
440-msgstr ""
441-
442 #. type: Plain text
443 #: content/pages/ui.md:23
444 msgid ""
445@@ -524,12 +353,6 @@
446 "dash."
447 msgstr ""
448
449-#. !!T
450-#: content/pages/ui.md:24
451-#, no-wrap
452-msgid "How do I close applications?"
453-msgstr ""
454-
455 #. type: Plain text
456 #: content/pages/ui.md:26
457 msgid ""
458@@ -539,12 +362,6 @@
459 "application will disappear."
460 msgstr ""
461
462-#. !!T
463-#: content/pages/ui.md:27
464-#, no-wrap
465-msgid "How can I copy and paste?"
466-msgstr ""
467-
468 #. type: Plain text
469 #: content/pages/ui.md:29
470 msgid ""
471@@ -552,13 +369,6 @@
472 " A menu will appear allowing you to cut, copy and paste."
473 msgstr ""
474
475-#. !!T
476-#: content/pages/ui.md:30
477-#, no-wrap
478-msgid ""
479-"What are the small characters on the keyboard and how can I select them?"
480-msgstr ""
481-
482 #. type: Plain text
483 #: content/pages/ui.md:32
484 msgid ""
485@@ -567,12 +377,6 @@
486 "numbers and accented characters. Give it a try!"
487 msgstr ""
488
489-#. !!T
490-#: content/pages/ui.md:33
491-#, no-wrap
492-msgid "The keyboard behaves funny. What can I do about it?"
493-msgstr ""
494-
495 #. type: Plain text
496 #: content/pages/ui.md:35
497 msgid ""
498@@ -582,12 +386,6 @@
499 "control of the input."
500 msgstr ""
501
502-#. !!T
503-#: content/pages/ui.md:36
504-#, no-wrap
505-msgid "How can I add a new keyboard language?"
506-msgstr ""
507-
508 #. type: Plain text
509 #: content/pages/ui.md:39
510 msgid ""
511@@ -599,12 +397,6 @@
512 "between-keyboard-languages)"
513 msgstr ""
514
515-#. !!T
516-#: content/pages/ui.md:40
517-#, no-wrap
518-msgid "How can I switch between keyboard languages?"
519-msgstr ""
520-
521 #. type: Plain text
522 #: content/pages/ui.md:43
523 msgid ""
524@@ -615,12 +407,6 @@
525 "activated it in the Settings app](#how-can-i-add-a-new-keyboard-language)."
526 msgstr ""
527
528-#. !!T
529-#: content/pages/ui.md:44
530-#, no-wrap
531-msgid "How can I type Emoji icons?"
532-msgstr ""
533-
534 #. type: Plain text
535 #: content/pages/ui.md:47
536 msgid ""
537@@ -631,14 +417,6 @@
538 "it in the Settings app](#how-can-i-add-a-new-keyboard-language)."
539 msgstr ""
540
541-#. !!T
542-#: content/pages/ui.md:48
543-#, no-wrap
544-msgid ""
545-"What is the round circle on the welcome screen for? What does it show? Can I"
546-" configure it?"
547-msgstr ""
548-
549 #. type: Plain text
550 #: content/pages/ui.md:49
551 msgid ""
552@@ -662,12 +440,6 @@
553 msgid "The Store"
554 msgstr ""
555
556-#. !!T
557-#: content/pages/apps.md:10
558-#, no-wrap
559-msgid "How do I find and install new scopes and applications?"
560-msgstr ""
561-
562 #. type: Plain text
563 #: content/pages/apps.md:12
564 msgid ""
565@@ -676,12 +448,6 @@
566 " tap on the Ubuntu Store icon."
567 msgstr ""
568
569-#. !!T
570-#: content/pages/apps.md:13
571-#, no-wrap
572-msgid "How can I browse the store from my PC?"
573-msgstr ""
574-
575 #. type: Plain text
576 #: content/pages/apps.md:15
577 msgid ""
578@@ -690,12 +456,6 @@
579 "store](https://appstore.bhdouglass.com/apps)."
580 msgstr ""
581
582-#. !!T
583-#: content/pages/apps.md:16
584-#, no-wrap
585-msgid "How do I remove scopes and applications?"
586-msgstr ""
587-
588 #. type: Plain text
589 #: content/pages/apps.md:18
590 msgid ""
591@@ -711,12 +471,6 @@
592 msgid "Misc"
593 msgstr ""
594
595-#. !!T
596-#: content/pages/apps.md:21
597-#, no-wrap
598-msgid "Do you have Spotify?"
599-msgstr ""
600-
601 #. type: Plain text
602 #: content/pages/apps.md:24
603 msgid ""
604@@ -724,12 +478,6 @@
605 "([video](https://www.youtube.com/watch?v=ea90rwK_VuI))."
606 msgstr ""
607
608-#. !!T
609-#: content/pages/apps.md:25
610-#, no-wrap
611-msgid "Do you have Google Authenticator?"
612-msgstr ""
613-
614 #. type: Plain text
615 #: content/pages/apps.md:27
616 msgid "Sure, install the 'Authenticator' app from the software store."
617@@ -741,12 +489,6 @@
618 msgid "Music"
619 msgstr ""
620
621-#. !!T
622-#: content/pages/apps.md:30
623-#, no-wrap
624-msgid "How do I add music to my device?"
625-msgstr ""
626-
627 #. type: Plain text
628 #: content/pages/apps.md:32
629 msgid ""
630@@ -758,23 +500,11 @@
631 "another application."
632 msgstr ""
633
634-#. !!T
635-#: content/pages/apps.md:33
636-#, no-wrap
637-msgid "What music formats are supported?"
638-msgstr ""
639-
640 #. type: Plain text
641 #: content/pages/apps.md:35
642 msgid "The music app supports OGG, FLAG and MP3 formats."
643 msgstr ""
644
645-#. !!T
646-#: content/pages/apps.md:36
647-#, no-wrap
648-msgid "How do I listen to podcasts? !"
649-msgstr ""
650-
651 #. type: Plain text
652 #: content/pages/apps.md:38
653 msgid ""
654@@ -788,12 +518,6 @@
655 msgid "Contacts"
656 msgstr ""
657
658-#. !!T
659-#: content/pages/apps.md:41
660-#, no-wrap
661-msgid "How can I sync my Google contacts to my device?"
662-msgstr ""
663-
664 #. type: Plain text
665 #: content/pages/apps.md:43
666 msgid ""
667@@ -810,12 +534,6 @@
668 msgid "Gallery"
669 msgstr ""
670
671-#. !!T
672-#: content/pages/apps.md:46
673-#, no-wrap
674-msgid "How can I share photos?"
675-msgstr ""
676-
677 #. type: Plain text
678 #: content/pages/apps.md:48
679 msgid ""
680@@ -825,12 +543,6 @@
681 "you wish to share your photo."
682 msgstr ""
683
684-#. !!T
685-#: content/pages/apps.md:49
686-#, no-wrap
687-msgid "How can I share videos?"
688-msgstr ""
689-
690 #. type: Plain text
691 #: content/pages/apps.md:51
692 msgid ""
693@@ -846,12 +558,6 @@
694 msgid "Camera"
695 msgstr ""
696
697-#. !!T
698-#: content/pages/apps.md:54
699-#, no-wrap
700-msgid "How can I take a picture?"
701-msgstr ""
702-
703 #. type: Plain text
704 #: content/pages/apps.md:56
705 msgid ""
706@@ -859,12 +565,6 @@
707 "bottom edge of the phone for additional options. Enjoy taking your picture!"
708 msgstr ""
709
710-#. !!T
711-#: content/pages/apps.md:57
712-#, no-wrap
713-msgid "How can I crop / rotate a picture?"
714-msgstr ""
715-
716 #. type: Plain text
717 #: content/pages/apps.md:59
718 msgid ""
719@@ -872,12 +572,6 @@
720 " the menu. Inside you'll find options to crop and rotate your picture."
721 msgstr ""
722
723-#. !!T
724-#: content/pages/apps.md:60
725-#, no-wrap
726-msgid "How can I record video?"
727-msgstr ""
728-
729 #. type: Plain text
730 #: content/pages/apps.md:62
731 msgid ""
732@@ -892,12 +586,6 @@
733 msgid "Clock"
734 msgstr ""
735
736-#. !!T
737-#: content/pages/apps.md:65
738-#, no-wrap
739-msgid "How do I set an alarm?"
740-msgstr ""
741-
742 #. type: Plain text
743 #: content/pages/apps.md:68
744 msgid ""
745@@ -917,12 +605,6 @@
746 msgid "HERE Maps"
747 msgstr ""
748
749-#. !!T
750-#: content/pages/apps.md:71
751-#, no-wrap
752-msgid "How can I get directions?"
753-msgstr ""
754-
755 #. type: Plain text
756 #: content/pages/apps.md:73
757 msgid ""
758@@ -930,23 +612,11 @@
759 "*Directions*. Enter your destination and tap the *Get Directions* button."
760 msgstr ""
761
762-#. !!T
763-#: content/pages/apps.md:74
764-#, no-wrap
765-msgid "Can I navigate offline?"
766-msgstr ""
767-
768 #. type: Plain text
769 #: content/pages/apps.md:76
770 msgid "Unfortunately navigation requires an active connection."
771 msgstr ""
772
773-#. !!T
774-#: content/pages/apps.md:77
775-#, no-wrap
776-msgid "Can I view the map offline?"
777-msgstr ""
778-
779 #. type: Plain text
780 #: content/pages/apps.md:78
781 msgid ""
782@@ -986,12 +656,6 @@
783 msgid "*Curious about scopes?*\n"
784 msgstr ""
785
786-#. !!T
787-#: content/pages/scopes.md:7
788-#, no-wrap
789-msgid "How do favorites work?"
790-msgstr ""
791-
792 #. type: Plain text
793 #: content/pages/scopes.md:9
794 msgid ""
795@@ -1001,12 +665,6 @@
796 "your dash."
797 msgstr ""
798
799-#. !!T
800-#: content/pages/scopes.md:10
801-#, no-wrap
802-msgid "How do I add new scopes?"
803-msgstr ""
804-
805 #. type: Plain text
806 #: content/pages/scopes.md:12
807 msgid ""
808@@ -1016,12 +674,6 @@
809 "store button in the upper right to look for it in the ubuntu store."
810 msgstr ""
811
812-#. !!T
813-#: content/pages/scopes.md:13
814-#, no-wrap
815-msgid "How do I remove a scope?"
816-msgstr ""
817-
818 #. type: Plain text
819 #: content/pages/scopes.md:14
820 msgid ""
821@@ -1036,11 +688,110 @@
822 msgid "Security"
823 msgstr ""
824
825+#. !!T
826+#: content/pages/security.md:7
827+#, no-wrap
828+msgid "How do I lock the phone?"
829+msgstr ""
830+
831+#. !!T
832+#: content/pages/security.md:10
833+#, no-wrap
834+msgid "How do I unlock the phone?"
835+msgstr ""
836+
837+#. !!T
838+#: content/pages/security.md:13
839+#, no-wrap
840+msgid "How do I unlock the bootloader?"
841+msgstr ""
842+
843+#. !!T
844+#: content/pages/security.md:16
845+#, no-wrap
846+msgid "How can I change my PIN/Passcode?"
847+msgstr ""
848+
849+#. !!T
850+#: content/pages/security.md:19
851+#, no-wrap
852+msgid ""
853+"Why do I have to type my PIN when using File Manager & Terminal (not default"
854+" apps)?"
855+msgstr ""
856+
857+#. !!T
858+#: content/pages/security.md:22
859+#, no-wrap
860+msgid ""
861+"How can I stop someone using the indicators when the phone is unlocked?"
862+msgstr ""
863+
864+#. !!T
865+#: content/pages/security.md:25
866+#, no-wrap
867+msgid "I forgot my password or passcode. How can I unlock the phone?"
868+msgstr ""
869+
870 #. type: Plain text
871 #: content/pages/basic.md:2
872 msgid "Basic tasks"
873 msgstr ""
874
875+#. !!T
876+#: content/pages/basic.md:7
877+#, no-wrap
878+msgid "How do I play music?"
879+msgstr ""
880+
881+#. !!T
882+#: content/pages/basic.md:10
883+#, no-wrap
884+msgid "How do I play videos?"
885+msgstr ""
886+
887+#. !!T
888+#: content/pages/basic.md:13
889+#, no-wrap
890+msgid "How do I take photos?"
891+msgstr ""
892+
893+#. !!T
894+#: content/pages/basic.md:16
895+#, no-wrap
896+msgid "How do I take a screenshot?"
897+msgstr ""
898+
899+#. !!T
900+#: content/pages/basic.md:19
901+#, no-wrap
902+msgid "How do I see pictures I’ve taken?"
903+msgstr ""
904+
905+#. !!T
906+#: content/pages/basic.md:22
907+#, no-wrap
908+msgid "How do I record videos?"
909+msgstr ""
910+
911+#. !!T
912+#: content/pages/basic.md:25
913+#, no-wrap
914+msgid "How can I send a text?"
915+msgstr ""
916+
917+#. !!T
918+#: content/pages/basic.md:28
919+#, no-wrap
920+msgid "How do I make a call?"
921+msgstr ""
922+
923+#. !!T
924+#: content/pages/basic.md:31
925+#, no-wrap
926+msgid "How do I check recently made/missed calls?"
927+msgstr ""
928+
929 #. type: Plain text
930 #: content/pages/faq.md:4
931 msgid "Get your questions answered"
932@@ -1056,16 +807,247 @@
933 msgid "Settings"
934 msgstr ""
935
936+#. !!T
937+#: content/pages/settings.md:7
938+#, no-wrap
939+msgid "How do I update my system?"
940+msgstr ""
941+
942+#. !!T
943+#: content/pages/settings.md:10
944+#, no-wrap
945+msgid "How do I set the time / language?"
946+msgstr ""
947+
948+#. !!T
949+#: content/pages/settings.md:14
950+#, no-wrap
951+msgid "How can I change my wallpaper/background?"
952+msgstr ""
953+
954+#. !!T
955+#: content/pages/settings.md:17
956+#, no-wrap
957+msgid "How do I keep the screen on?"
958+msgstr ""
959+
960+#. !!T
961+#: content/pages/settings.md:20
962+#, no-wrap
963+msgid "How do I set up my accounts?"
964+msgstr ""
965+
966+#. !!T
967+#: content/pages/settings.md:23
968+#, no-wrap
969+msgid "How do I configure my notifications?"
970+msgstr ""
971+
972+#. !!T
973+#: content/pages/settings.md:26
974+#, no-wrap
975+msgid "How do I change the ringtone for calls and texts?"
976+msgstr ""
977+
978 #. type: Plain text
979 #: content/pages/ui.md:2
980 msgid "User Interface"
981 msgstr ""
982
983+#. !!T
984+#: content/pages/ui.md:7
985+#, no-wrap
986+msgid "What is the dash?"
987+msgstr ""
988+
989+#. !!T
990+#: content/pages/ui.md:10
991+#, no-wrap
992+msgid "What is the launcher?"
993+msgstr ""
994+
995+#. !!T
996+#: content/pages/ui.md:13
997+#, no-wrap
998+msgid "How can I customize the launcher?"
999+msgstr ""
1000+
1001+#. !!T
1002+#: content/pages/ui.md:17
1003+#, no-wrap
1004+msgid "What are the indicators?"
1005+msgstr ""
1006+
1007+#. !!T
1008+#: content/pages/ui.md:20
1009+#, no-wrap
1010+msgid "How do I switch applications?"
1011+msgstr ""
1012+
1013+#. !!T
1014+#: content/pages/ui.md:24
1015+#, no-wrap
1016+msgid "How do I close applications?"
1017+msgstr ""
1018+
1019+#. !!T
1020+#: content/pages/ui.md:27
1021+#, no-wrap
1022+msgid "How can I copy and paste?"
1023+msgstr ""
1024+
1025+#. !!T
1026+#: content/pages/ui.md:30
1027+#, no-wrap
1028+msgid ""
1029+"What are the small characters on the keyboard and how can I select them?"
1030+msgstr ""
1031+
1032+#. !!T
1033+#: content/pages/ui.md:33
1034+#, no-wrap
1035+msgid "The keyboard behaves funny. What can I do about it?"
1036+msgstr ""
1037+
1038+#. !!T
1039+#: content/pages/ui.md:36
1040+#, no-wrap
1041+msgid "How can I add a new keyboard language?"
1042+msgstr ""
1043+
1044+#. !!T
1045+#: content/pages/ui.md:40
1046+#, no-wrap
1047+msgid "How can I switch between keyboard languages?"
1048+msgstr ""
1049+
1050+#. !!T
1051+#: content/pages/ui.md:44
1052+#, no-wrap
1053+msgid "How can I type Emoji icons?"
1054+msgstr ""
1055+
1056+#. !!T
1057+#: content/pages/ui.md:48
1058+#, no-wrap
1059+msgid ""
1060+"What is the round circle on the welcome screen for? What does it show? Can I"
1061+" configure it?"
1062+msgstr ""
1063+
1064 #. type: Plain text
1065 #: content/pages/apps.md:2
1066 msgid "Apps"
1067 msgstr ""
1068
1069+#. !!T
1070+#: content/pages/apps.md:10
1071+#, no-wrap
1072+msgid "How do I find and install new scopes and applications?"
1073+msgstr ""
1074+
1075+#. !!T
1076+#: content/pages/apps.md:13
1077+#, no-wrap
1078+msgid "How can I browse the store from my PC?"
1079+msgstr ""
1080+
1081+#. !!T
1082+#: content/pages/apps.md:16
1083+#, no-wrap
1084+msgid "How do I remove scopes and applications?"
1085+msgstr ""
1086+
1087+#. !!T
1088+#: content/pages/apps.md:21
1089+#, no-wrap
1090+msgid "Do you have Spotify?"
1091+msgstr ""
1092+
1093+#. !!T
1094+#: content/pages/apps.md:25
1095+#, no-wrap
1096+msgid "Do you have Google Authenticator?"
1097+msgstr ""
1098+
1099+#. !!T
1100+#: content/pages/apps.md:30
1101+#, no-wrap
1102+msgid "How do I add music to my device?"
1103+msgstr ""
1104+
1105+#. !!T
1106+#: content/pages/apps.md:33
1107+#, no-wrap
1108+msgid "What music formats are supported?"
1109+msgstr ""
1110+
1111+#. !!T
1112+#: content/pages/apps.md:36
1113+#, no-wrap
1114+msgid "How do I listen to podcasts? !"
1115+msgstr ""
1116+
1117+#. !!T
1118+#: content/pages/apps.md:41
1119+#, no-wrap
1120+msgid "How can I sync my Google contacts to my device?"
1121+msgstr ""
1122+
1123+#. !!T
1124+#: content/pages/apps.md:46
1125+#, no-wrap
1126+msgid "How can I share photos?"
1127+msgstr ""
1128+
1129+#. !!T
1130+#: content/pages/apps.md:49
1131+#, no-wrap
1132+msgid "How can I share videos?"
1133+msgstr ""
1134+
1135+#. !!T
1136+#: content/pages/apps.md:54
1137+#, no-wrap
1138+msgid "How can I take a picture?"
1139+msgstr ""
1140+
1141+#. !!T
1142+#: content/pages/apps.md:57
1143+#, no-wrap
1144+msgid "How can I crop / rotate a picture?"
1145+msgstr ""
1146+
1147+#. !!T
1148+#: content/pages/apps.md:60
1149+#, no-wrap
1150+msgid "How can I record video?"
1151+msgstr ""
1152+
1153+#. !!T
1154+#: content/pages/apps.md:65
1155+#, no-wrap
1156+msgid "How do I set an alarm?"
1157+msgstr ""
1158+
1159+#. !!T
1160+#: content/pages/apps.md:71
1161+#, no-wrap
1162+msgid "How can I get directions?"
1163+msgstr ""
1164+
1165+#. !!T
1166+#: content/pages/apps.md:74
1167+#, no-wrap
1168+msgid "Can I navigate offline?"
1169+msgstr ""
1170+
1171+#. !!T
1172+#: content/pages/apps.md:77
1173+#, no-wrap
1174+msgid "Can I view the map offline?"
1175+msgstr ""
1176+
1177 #. type: Plain text
1178 #: content/pages/get-in-touch.md:2
1179 msgid "Get in touch"
1180@@ -1076,12 +1058,81 @@
1181 msgid "Scopes"
1182 msgstr ""
1183
1184+#. !!T
1185+#: content/pages/scopes.md:7
1186+#, no-wrap
1187+msgid "How do favorites work?"
1188+msgstr ""
1189+
1190+#. !!T
1191+#: content/pages/scopes.md:10
1192+#, no-wrap
1193+msgid "How do I add new scopes?"
1194+msgstr ""
1195+
1196+#. !!T
1197+#: content/pages/scopes.md:13
1198+#, no-wrap
1199+msgid "How do I remove a scope?"
1200+msgstr ""
1201+
1202 #~ msgid "Title: Security"
1203 #~ msgstr ""
1204
1205+#~ msgid "How do I lock the phone? !!T"
1206+#~ msgstr ""
1207+
1208+#~ msgid "How do I unlock the phone? !!T"
1209+#~ msgstr ""
1210+
1211+#~ msgid "How do I unlock the bootloader? !!T"
1212+#~ msgstr ""
1213+
1214+#~ msgid "How can I change my PIN/Passcode? !!T"
1215+#~ msgstr ""
1216+
1217+#~ msgid ""
1218+#~ "Why do I have to type my PIN when using File Manager & Terminal (not default"
1219+#~ " apps)? !!T"
1220+#~ msgstr ""
1221+
1222+#~ msgid ""
1223+#~ "How can I stop someone using the indicators when the phone is unlocked? !!T"
1224+#~ msgstr ""
1225+
1226+#~ msgid "I forgot my password or passcode. How can I unlock the phone? !!T"
1227+#~ msgstr ""
1228+
1229 #~ msgid "Title: Basic tasks"
1230 #~ msgstr ""
1231
1232+#~ msgid "How do I play music? !!T"
1233+#~ msgstr ""
1234+
1235+#~ msgid "How do I play videos? !!T"
1236+#~ msgstr ""
1237+
1238+#~ msgid "How do I take photos? !!T"
1239+#~ msgstr ""
1240+
1241+#~ msgid "How do I take a screenshot? !!T"
1242+#~ msgstr ""
1243+
1244+#~ msgid "How do I see pictures I’ve taken? !!T"
1245+#~ msgstr ""
1246+
1247+#~ msgid "How do I record videos? !!T"
1248+#~ msgstr ""
1249+
1250+#~ msgid "How can I send a text? !!T"
1251+#~ msgstr ""
1252+
1253+#~ msgid "How do I make a call? !!T"
1254+#~ msgstr ""
1255+
1256+#~ msgid "How do I check recently made/missed calls? !!T"
1257+#~ msgstr ""
1258+
1259 #~ msgid "Title: Get your questions answered."
1260 #~ msgstr ""
1261
1262@@ -1091,14 +1142,140 @@
1263 #~ msgid "Title: Settings"
1264 #~ msgstr ""
1265
1266+#~ msgid "How do I update my system? !!T"
1267+#~ msgstr ""
1268+
1269+#~ msgid "How do I set the time / language? !!T"
1270+#~ msgstr ""
1271+
1272+#~ msgid "How can I change my wallpaper/background? !!T"
1273+#~ msgstr ""
1274+
1275+#~ msgid "How do I keep the screen on? !!T"
1276+#~ msgstr ""
1277+
1278+#~ msgid "How do I set up my accounts? !!T"
1279+#~ msgstr ""
1280+
1281+#~ msgid "How do I configure my notifications? !!T"
1282+#~ msgstr ""
1283+
1284+#~ msgid "How do I change the ringtone for calls and texts? !!T"
1285+#~ msgstr ""
1286+
1287 #~ msgid "Title: User Interface"
1288 #~ msgstr ""
1289
1290+#~ msgid "What is the dash? !!T"
1291+#~ msgstr ""
1292+
1293+#~ msgid "What is the launcher? !!T"
1294+#~ msgstr ""
1295+
1296+#~ msgid "How can I customize the launcher? !!T"
1297+#~ msgstr ""
1298+
1299+#~ msgid "What are the indicators? !!T"
1300+#~ msgstr ""
1301+
1302+#~ msgid "How do I switch applications? !!T"
1303+#~ msgstr ""
1304+
1305+#~ msgid "How do I close applications? !!T"
1306+#~ msgstr ""
1307+
1308+#~ msgid "How can I copy and paste? !!T"
1309+#~ msgstr ""
1310+
1311+#~ msgid ""
1312+#~ "What are the small characters on the keyboard and how can I select them? !!T"
1313+#~ msgstr ""
1314+
1315+#~ msgid "The keyboard behaves funny. What can I do about it? !!T"
1316+#~ msgstr ""
1317+
1318+#~ msgid "How can I add a new keyboard language? !!T"
1319+#~ msgstr ""
1320+
1321+#~ msgid "How can I switch between keyboard languages? !!T"
1322+#~ msgstr ""
1323+
1324+#~ msgid "How can I type Emoji icons? !!T"
1325+#~ msgstr ""
1326+
1327+#~ msgid ""
1328+#~ "What is the round circle on the welcome screen for? What does it show? Can I"
1329+#~ " configure it? !!T"
1330+#~ msgstr ""
1331+
1332 #~ msgid "Title: Apps"
1333 #~ msgstr ""
1334
1335+#~ msgid "How do I find and install new scopes and applications? !!T"
1336+#~ msgstr ""
1337+
1338+#~ msgid "How can I browse the store from my PC? !!T"
1339+#~ msgstr ""
1340+
1341+#~ msgid "How do I remove scopes and applications? !!T"
1342+#~ msgstr ""
1343+
1344+#~ msgid "Do you have Spotify? !!T"
1345+#~ msgstr ""
1346+
1347+#~ msgid "Do you have Google Authenticator? !!T"
1348+#~ msgstr ""
1349+
1350+#~ msgid "How do I add music to my device? !!T"
1351+#~ msgstr ""
1352+
1353+#~ msgid "What music formats are supported? !!T"
1354+#~ msgstr ""
1355+
1356+#~ msgid "How do I listen to podcasts? !!!T"
1357+#~ msgstr ""
1358+
1359+#~ msgid "How can I sync my Google contacts to my device? !!T"
1360+#~ msgstr ""
1361+
1362+#~ msgid "How can I share photos? !!T"
1363+#~ msgstr ""
1364+
1365+#~ msgid "How can I share videos? !!T"
1366+#~ msgstr ""
1367+
1368+#~ msgid "How can I take a picture? !!T"
1369+#~ msgstr ""
1370+
1371+#~ msgid "How can I crop / rotate a picture? !!T"
1372+#~ msgstr ""
1373+
1374+#~ msgid "How can I record video? !!T"
1375+#~ msgstr ""
1376+
1377+#~ msgid "How do I set an alarm? !!T"
1378+#~ msgstr ""
1379+
1380+#~ msgid "How can I get directions? !!T"
1381+#~ msgstr ""
1382+
1383+#~ msgid "Can I navigate offline? !!T"
1384+#~ msgstr ""
1385+
1386+#~ msgid "Can I view the map offline? !!T"
1387+#~ msgstr ""
1388+
1389 #~ msgid "Title: Get in touch"
1390 #~ msgstr ""
1391
1392 #~ msgid "Title: Scopes"
1393 #~ msgstr ""
1394+
1395+#~ msgid "How do favorites work? !!T"
1396+#~ msgstr ""
1397+
1398+#~ msgid "How do I add new scopes? !!T"
1399+#~ msgstr ""
1400+
1401+#~ msgid "How do I remove a scope? !!T"
1402+#~ msgstr ""

Subscribers

People subscribed via source and target branches