Merge lp:~ken-vandine/ubuntu-system-settings/lp1318008 into lp:ubuntu-system-settings

Proposed by Ken VanDine
Status: Merged
Approved by: Ken VanDine
Approved revision: 1032
Merged at revision: 1034
Proposed branch: lp:~ken-vandine/ubuntu-system-settings/lp1318008
Merge into: lp:ubuntu-system-settings
Diff against target: 2985 lines (+1297/-1271)
5 files modified
CMakeLists.txt (+14/-2)
debian/control (+1/-0)
po/CMakeLists.txt (+20/-6)
po/ubuntu-system-settings.pot (+1259/-1260)
ubuntu-system-settings.desktop.in.in (+3/-3)
To merge this branch: bzr merge lp:~ken-vandine/ubuntu-system-settings/lp1318008
Reviewer Review Type Date Requested Status
PS Jenkins bot continuous-integration Needs Fixing
Sebastien Bacher (community) Approve
Review via email: mp+234336@code.launchpad.net

Commit message

Translate desktop file (LP: #1318008)

Description of the change

Translate desktop file (LP: #1318008)

To post a comment you must log in.
Revision history for this message
Sebastien Bacher (seb128) wrote :

That looks fine thanks, do we need to update the pot though? There are other changes pending review that are going to require a pot refresh so we might as well do a manual commit after the next landing

review: Approve
Revision history for this message
PS Jenkins bot (ps-jenkins) wrote :
review: Needs Fixing (continuous-integration)
1032. By Ken VanDine

build depend on intltool

Revision history for this message
PS Jenkins bot (ps-jenkins) wrote :
review: Needs Fixing (continuous-integration)

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'CMakeLists.txt'
2--- CMakeLists.txt 2014-08-05 10:12:14 +0000
3+++ CMakeLists.txt 2014-09-11 19:31:52 +0000
4@@ -47,6 +47,8 @@
5
6 find_program(XGETTEXT_BIN xgettext)
7 find_program(MSGFMT_BIN msgfmt)
8+find_program(INTLTOOL_MERGE intltool-merge)
9+find_program(INTLTOOL_EXTRACT intltool-extract)
10
11 set(PLUGIN_MANIFEST_DIR_BASE share/ubuntu/settings/system)
12 set(PLUGIN_MODULE_DIR_BASE ubuntu-system-settings)
13@@ -62,6 +64,9 @@
14
15 SET(CMAKE_INSTALL_RPATH "${PLUGIN_MODULE_DIR}")
16
17+set(DESKTOP_FILE ubuntu-system-settings.desktop)
18+set(GETTEXT_PACKAGE ubuntu-system-settings)
19+
20 add_subdirectory(po)
21 add_subdirectory(schema)
22 add_subdirectory(lib)
23@@ -72,8 +77,15 @@
24 add_subdirectory(tests)
25 add_subdirectory(wizard)
26
27-configure_file(ubuntu-system-settings.desktop.in ubuntu-system-settings.desktop @ONLY)
28-install(FILES ${CMAKE_CURRENT_BINARY_DIR}/ubuntu-system-settings.desktop DESTINATION share/applications)
29+configure_file(${DESKTOP_FILE}.in.in ${DESKTOP_FILE}.in @ONLY)
30+add_custom_target(${DESKTOP_FILE} ALL
31+ COMMENT "Merging translations into ${DESKTOP_FILE}"
32+ COMMAND ${INTLTOOL_MERGE} -d -u ${CMAKE_SOURCE_DIR}/po
33+ ${CMAKE_CURRENT_BINARY_DIR}/${DESKTOP_FILE}.in ${DESKTOP_FILE})
34+
35+install(FILES ${CMAKE_CURRENT_BINARY_DIR}/${DESKTOP_FILE}
36+ DESTINATION ${CMAKE_INSTALL_DATADIR}/applications)
37+
38 install(FILES ubuntu-system-settings.url-dispatcher DESTINATION share/url-dispatcher/urls)
39 install(FILES screenshot.png DESTINATION ${SETTINGS_SHARE_DIR})
40 install(PROGRAMS push-helper/software-updates-helper.py DESTINATION ${PUSH_HELPER_DIR} RENAME ubuntu-system-settings)
41
42=== modified file 'debian/control'
43--- debian/control 2014-09-04 20:57:56 +0000
44+++ debian/control 2014-09-11 19:31:52 +0000
45@@ -9,6 +9,7 @@
46 python3-setuptools,
47 python3-all:any,
48 gdb:any,
49+ intltool,
50 libaccountsservice-dev,
51 libandroid-properties-dev [amd64 armhf i386],
52 libglib2.0-dev (>= 2.37.92),
53
54=== modified file 'po/CMakeLists.txt'
55--- po/CMakeLists.txt 2014-09-02 09:44:12 +0000
56+++ po/CMakeLists.txt 2014-09-11 19:31:52 +0000
57@@ -1,3 +1,9 @@
58+
59+file(RELATIVE_PATH DESKTOP_FILE_IN_IN ${CMAKE_SOURCE_DIR}
60+ ${CMAKE_SOURCE_DIR}/${DESKTOP_FILE}.in.in)
61+file(RELATIVE_PATH DESKTOP_FILE_IN_IN_H ${CMAKE_CURRENT_SOURCE_DIR}
62+ ${CMAKE_CURRENT_SOURCE_DIR}/${DESKTOP_FILE_IN_IN}.h)
63+
64 file(GLOB CPPFILES RELATIVE "${CMAKE_CURRENT_SOURCE_DIR}"
65 "${CMAKE_SOURCE_DIR}/plugins/*/*.cpp"
66 "${CMAKE_SOURCE_DIR}/src/*.cpp"
67@@ -18,13 +24,21 @@
68 DEPENDS ${SETTINGSFILES}
69 )
70
71-#add_custom_command(OUTPUT desktop.js
72-# command some_script ${CMAKE_SOURCE_DIR}/ubuntu-system-settings.desktop ${CMAKE_CURRENT_BINARY_DIR}/desktop.js
73-# DEPENDS ${CMAKE_SOURCE_DIR}/ubuntu-system-settings.desktop
74-#)
75+add_custom_target(pot-desktop
76+ COMMAND ${INTLTOOL_EXTRACT} --update --type=gettext/ini
77+ --srcdir=${CMAKE_SOURCE_DIR} ${DESKTOP_FILE_IN_IN}
78+ COMMAND ${XGETTEXT_BIN} -o ubuntu-system-settings.pot
79+ --copyright=\"Canonical Ltd.\"
80+ --package-name ubuntu-system-settings
81+ --qt --c++ --add-comments=TRANSLATORS
82+ --keyword=N_ --from-code=UTF-8
83+ ${DESKTOP_FILE_IN_IN_H}
84+ WORKING_DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR}"
85+)
86
87 add_custom_target(pot-qml
88 COMMAND ${XGETTEXT_BIN} -o ubuntu-system-settings.pot
89+ --join-existing
90 --copyright=\"Canonical Ltd.\"
91 --package-name ubuntu-system-settings
92 --qt --c++ --add-comments=TRANSLATORS
93@@ -32,7 +46,7 @@
94 --keyword=tr --keyword=tr:1,2 --from-code=UTF-8
95 ${QMLFILES} "${CMAKE_CURRENT_BINARY_DIR}/settings.js"
96 WORKING_DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR}"
97- DEPENDS ${QMLFILES} "${CMAKE_CURRENT_BINARY_DIR}/settings.js" #desktop.js
98+ DEPENDS pot-desktop ${QMLFILES} "${CMAKE_CURRENT_BINARY_DIR}/settings.js" #desktop.js
99 )
100
101 add_custom_target(pot-cpp
102@@ -59,7 +73,7 @@
103 DEPENDS ${PYFILES}
104 )
105
106-add_custom_target(pot DEPENDS pot-qml pot-cpp pot-py)
107+add_custom_target(pot DEPENDS pot-desktop pot-qml pot-cpp pot-py)
108
109 set(languages "ar;ast;be;bg;bs;ca;cs;de;el;en_AU;en_GB;eo;es;fa;fi;fr;gl;gu;he;hi;hr;hu;id;it;km;ko;lo;lv;ms;my;nb;pl;pt_BR;pt;ru;shn;sl;sv;tr;ug;uk;xh;zh_CN;zh_HK;zh_TW")
110 foreach(i ${languages})
111
112=== modified file 'po/ubuntu-system-settings.pot'
113--- po/ubuntu-system-settings.pot 2014-09-11 06:58:39 +0000
114+++ po/ubuntu-system-settings.pot 2014-09-11 19:31:52 +0000
115@@ -8,7 +8,7 @@
116 msgstr ""
117 "Project-Id-Version: ubuntu-system-settings\n"
118 "Report-Msgid-Bugs-To: \n"
119-"POT-Creation-Date: 2014-09-11 08:57+0200\n"
120+"POT-Creation-Date: 2014-09-11 12:06-0400\n"
121 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
122 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
123 "Language-Team: LANGUAGE <LL@li.org>\n"
124@@ -18,18 +18,30 @@
125 "Content-Transfer-Encoding: 8bit\n"
126 "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
127
128-#: ../plugins/wifi//PreviousNetworks.qml:26
129-#: ../plugins/wifi//PageComponent.qml:114
130-msgid "Previous networks"
131+#: ubuntu-system-settings.desktop.in.in.h:1 ../src/qml/MainWindow.qml:110
132+msgid "System Settings"
133+msgstr ""
134+
135+#: ubuntu-system-settings.desktop.in.in.h:2
136+msgid "System;"
137+msgstr ""
138+
139+#: ubuntu-system-settings.desktop.in.in.h:3
140+msgid "Preferences;Settings;"
141 msgstr ""
142
143 #. TRANSLATORS: This is a keyword or name for the wifi plugin which is used while searching
144 #: ../plugins/wifi//PageComponent.qml:26
145 #: ../plugins/battery//PageComponent.qml:333
146-#: /tmp/ubuntu-system-settings/obj-x86_64-linux-gnu/po/settings.js:2
147+#: /storage/1/work/phablet/settings/lp1318008/build/po/settings.js:10
148 msgid "Wi-Fi"
149 msgstr ""
150
151+#: ../plugins/wifi//PageComponent.qml:114
152+#: ../plugins/wifi//PreviousNetworks.qml:26
153+msgid "Previous networks"
154+msgstr ""
155+
156 #: ../plugins/wifi//PageComponent.qml:120 ../plugins/wifi//OtherNetwork.qml:27
157 msgid "Other network"
158 msgstr ""
159@@ -67,19 +79,19 @@
160 msgstr ""
161
162 #: ../plugins/wifi//OtherNetwork.qml:113
163+#: ../plugins/reset//EraseEverything.qml:54
164+#: ../plugins/reset//ResetLauncherHome.qml:55
165+#: ../plugins/reset//ResetAllSettings.qml:38
166+#: ../plugins/cellular//HotspotSetup.qml:85
167+#: ../plugins/language//DisplayLanguage.qml:98
168+#: ../plugins/language//RebootNecessary.qml:47
169+#: ../plugins/phone//CallForwarding.qml:139
170 #: ../plugins/time-date//TimePicker.qml:173
171 #: ../plugins/security-privacy//SimPin.qml:146
172 #: ../plugins/security-privacy//SimPin.qml:263
173 #: ../plugins/security-privacy//LockSecurity.qml:283
174-#: ../plugins/reset//ResetLauncherHome.qml:55
175-#: ../plugins/reset//ResetAllSettings.qml:38
176-#: ../plugins/reset//EraseEverything.qml:54
177-#: ../plugins/phone//CallForwarding.qml:139
178-#: ../plugins/language//RebootNecessary.qml:47
179-#: ../plugins/language//DisplayLanguage.qml:98
180-#: ../plugins/cellular//HotspotSetup.qml:85
181+#: ../plugins/bluetooth//ProvidePasskeyDialog.qml:54
182 #: ../plugins/bluetooth//ProvidePinCodeDialog.qml:55
183-#: ../plugins/bluetooth//ProvidePasskeyDialog.qml:54
184 #: ../plugins/bluetooth//ConfirmPasskeyDialog.qml:49
185 #: ../plugins/background//Preview.qml:101
186 #: ../plugins/cellular//Components//SimEditor.qml:189
187@@ -92,15 +104,6 @@
188 msgid "Connect"
189 msgstr ""
190
191-#: ../plugins/wifi//NetworkDetailsBrief.qml:42
192-#: ../plugins/bluetooth//PageComponent.qml:408
193-msgid "Disconnect"
194-msgstr ""
195-
196-#: ../plugins/wifi//NetworkDetailsBrief.qml:58
197-msgid "IP address"
198-msgstr ""
199-
200 #: ../plugins/wifi//NetworkDetails.qml:36
201 msgid "Network details"
202 msgstr ""
203@@ -115,15 +118,15 @@
204 msgstr ""
205
206 #: ../plugins/wifi//NetworkDetails.qml:55
207+#: ../plugins/about//PageComponent.qml:166
208+#: ../plugins/security-privacy//PageComponent.qml:140
209+#: ../plugins/security-privacy//PhoneLocking.qml:78
210+#: ../plugins/security-privacy//PhoneLocking.qml:87
211 #: ../plugins/system-update//PageComponent.qml:563
212 #: ../plugins/system-update//Configuration.qml:53
213-#: ../plugins/security-privacy//PhoneLocking.qml:78
214-#: ../plugins/security-privacy//PhoneLocking.qml:87
215-#: ../plugins/security-privacy//PageComponent.qml:140
216-#: ../plugins/battery//SleepValues.qml:106
217 #: ../plugins/battery//PageComponent.qml:315
218 #: ../plugins/battery//PageComponent.qml:324
219-#: ../plugins/about//PageComponent.qml:166
220+#: ../plugins/battery//SleepValues.qml:106
221 msgid "Never"
222 msgstr ""
223
224@@ -135,248 +138,243 @@
225 msgid "Forget network"
226 msgstr ""
227
228-#: ../plugins/time-date//TimePicker.qml:26
229-msgid "Set time & date"
230-msgstr ""
231-
232-#: ../plugins/time-date//TimePicker.qml:68
233-msgid "Time"
234-msgstr ""
235-
236-#: ../plugins/time-date//TimePicker.qml:81
237-msgid "Hour"
238-msgstr ""
239-
240-#: ../plugins/time-date//TimePicker.qml:95
241-msgid "Minute"
242-msgstr ""
243-
244-#: ../plugins/time-date//TimePicker.qml:109
245-msgid "Second"
246-msgstr ""
247-
248-#: ../plugins/time-date//TimePicker.qml:118
249-msgid "Date"
250-msgstr ""
251-
252-#: ../plugins/time-date//TimePicker.qml:130
253-msgid "Day"
254-msgstr ""
255-
256-#: ../plugins/time-date//TimePicker.qml:144
257-msgid "Month"
258-msgstr ""
259-
260-#: ../plugins/time-date//TimePicker.qml:162
261-msgid "Year"
262-msgstr ""
263-
264-#: ../plugins/time-date//TimePicker.qml:182
265-#: ../plugins/security-privacy//LockSecurity.qml:304
266-#: ../plugins/phone//CallForwarding.qml:152
267-#: ../plugins/background//Preview.qml:108
268-msgid "Set"
269-msgstr ""
270-
271-#. TRANSLATORS: This is a keyword or name for the time-date plugin which is used while searching
272-#: ../plugins/time-date//PageComponent.qml:29
273-#: /tmp/ubuntu-system-settings/obj-x86_64-linux-gnu/po/settings.js:14
274-msgid "Time & Date"
275-msgstr ""
276-
277-#: ../plugins/time-date//PageComponent.qml:53
278-msgid "Time zone:"
279-msgstr ""
280-
281-#: ../plugins/time-date//PageComponent.qml:68
282-msgid "Set the time and date:"
283-msgstr ""
284-
285+#: ../plugins/wifi//NetworkDetailsBrief.qml:42
286+#: ../plugins/bluetooth//PageComponent.qml:408
287+msgid "Disconnect"
288+msgstr ""
289+
290+#: ../plugins/wifi//NetworkDetailsBrief.qml:58
291+msgid "IP address"
292+msgstr ""
293+
294+#. TRANSLATORS: This is a keyword or name for the reset plugin which is used while searching
295+#: ../plugins/reset//PageComponent.qml:32
296+#: /storage/1/work/phablet/settings/lp1318008/build/po/settings.js:22
297+msgid "Reset phone"
298+msgstr ""
299+
300+#: ../plugins/reset//PageComponent.qml:73
301+#: ../plugins/reset//ResetLauncherHome.qml:44
302+msgid "Reset Launcher"
303+msgstr ""
304+
305+#: ../plugins/reset//PageComponent.qml:87
306+msgid "Reset all system settings…"
307+msgstr ""
308+
309+#: ../plugins/reset//PageComponent.qml:101
310+msgid "Erase & Reset Everything…"
311+msgstr ""
312+
313+#: ../plugins/reset//EraseEverything.qml:41
314+msgid ""
315+"All documents, saved games, settings, and other items will be permanently "
316+"deleted from this phone."
317+msgstr ""
318+
319+#: ../plugins/reset//EraseEverything.qml:44
320+msgid "Erase & Reset Everything"
321+msgstr ""
322+
323+#: ../plugins/reset//ResetLauncherHome.qml:40
324+msgid "The Launcher will be returned to its original contents."
325+msgstr ""
326+
327+#: ../plugins/reset//ResetLauncherHome.qml:59
328+#: ../plugins/language//RebootNecessary.qml:34
329+msgid "The phone needs to restart for changes to take effect."
330+msgstr ""
331+
332+#: ../plugins/reset//ResetAllSettings.qml:29
333+msgid ""
334+"The contents and layout of the launcher, and the filters in the home screen "
335+"will be returned to their original settings."
336+msgstr ""
337+
338+#: ../plugins/reset//ResetAllSettings.qml:31
339+msgid "Reset all system settings"
340+msgstr ""
341+
342+#: ../plugins/cellular//PageChooseCarriers.qml:28
343+#: ../plugins/cellular//Components//MultiSim.qml:68
344+msgid "Carriers"
345+msgstr ""
346+
347+#: ../plugins/cellular//PageChooseCarriers.qml:49
348+#: ../plugins/cellular//PageChooseCarriers.qml:65
349+#: ../plugins/about//Storage.qml:204 ../plugins/battery//PageComponent.qml:131
350+#: ../plugins/battery//PageComponent.qml:287
351+#: ../plugins/cellular//Components//NoSim.qml:48
352+#: ../plugins/cellular//Components//SingleSim.qml:62
353+msgid "N/A"
354+msgstr ""
355+
356+#: ../plugins/cellular//HotspotSetup.qml:29
357+msgid "Change hotspot setup"
358+msgstr ""
359+
360+#: ../plugins/cellular//HotspotSetup.qml:40
361+msgid "Hotspot name"
362+msgstr ""
363+
364+#: ../plugins/cellular//HotspotSetup.qml:54
365+msgid "Key (must be 8 characters or longer)"
366+msgstr ""
367+
368+#: ../plugins/cellular//HotspotSetup.qml:68
369+msgid "Show key"
370+msgstr ""
371+
372+#: ../plugins/cellular//HotspotSetup.qml:94
373+#: ../plugins/security-privacy//SimPin.qml:154
374+#: ../plugins/security-privacy//LockSecurity.qml:302
375+msgid "Change"
376+msgstr ""
377+
378+#. TRANSLATORS: This is a keyword or name for the cellular plugin which is used while searching
379+#: ../plugins/cellular//PageComponent.qml:32
380+#: /storage/1/work/phablet/settings/lp1318008/build/po/settings.js:28
381+msgid "Cellular"
382+msgstr ""
383+
384+#: ../plugins/cellular//Hotspot.qml:29
385+#: ../plugins/cellular//Components//MultiSim.qml:48
386+#: ../plugins/cellular//Components//SingleSim.qml:43
387+msgid "Wi-Fi hotspot"
388+msgstr ""
389+
390+#: ../plugins/cellular//Hotspot.qml:40
391+msgid "Hotspot"
392+msgstr ""
393+
394+#: ../plugins/cellular//Hotspot.qml:60
395+msgid ""
396+"When hotspot is on, other devices can use your cellular data connection over "
397+"Wi-Fi. Normal data charges apply."
398+msgstr ""
399+
400+#: ../plugins/cellular//Hotspot.qml:61
401+msgid ""
402+"Other devices can use your cellular data connection over the Wi-Fi network. "
403+"Normal data charges apply."
404+msgstr ""
405+
406+#: ../plugins/cellular//Hotspot.qml:65
407+msgid "Set up hotspot"
408+msgstr ""
409+
410+#: ../plugins/cellular//PageChooseCarrier.qml:102
411+msgid "Choose carrier:"
412+msgstr ""
413+
414+#: ../plugins/cellular//PageChooseCarrier.qml:103
415 #: ../plugins/time-date//PageComponent.qml:69
416 #: ../plugins/time-date//ChooseTimeZone.qml:47
417-#: ../plugins/cellular//PageChooseCarrier.qml:103
418 msgid "Automatically"
419 msgstr ""
420
421+#: ../plugins/cellular//PageChooseCarrier.qml:103
422 #: ../plugins/time-date//PageComponent.qml:69
423 #: ../plugins/time-date//ChooseTimeZone.qml:47
424 #: ../plugins/security-privacy//PageComponent.qml:149
425-#: ../plugins/cellular//PageChooseCarrier.qml:103
426 msgid "Manually"
427 msgstr ""
428
429-#: ../plugins/time-date//ChooseTimeZone.qml:28
430-msgid "Time zone"
431-msgstr ""
432-
433-#: ../plugins/time-date//ChooseTimeZone.qml:46
434-msgid "Set the time zone:"
435-msgstr ""
436-
437-#: ../plugins/time-date//ChooseTimeZone.qml:126
438-msgid "Enter your current location."
439-msgstr ""
440-
441-#: ../plugins/time-date//ChooseTimeZone.qml:127
442-msgid "No matching place"
443-msgstr ""
444-
445-#. TRANSLATORS: This is a keyword or name for the system-update plugin which is used while searching
446-#: ../plugins/system-update//PageComponent.qml:36
447-#: /tmp/ubuntu-system-settings/obj-x86_64-linux-gnu/po/settings.js:26
448-msgid "Updates"
449-msgstr ""
450-
451-#: ../plugins/system-update//PageComponent.qml:87
452-msgid "Update System"
453-msgstr ""
454-
455-#: ../plugins/system-update//PageComponent.qml:88
456-msgid "The phone needs to restart to install the system update."
457-msgstr ""
458-
459-#: ../plugins/system-update//PageComponent.qml:88
460-msgid "Connect the phone to power before installing the system update."
461-msgstr ""
462-
463-#: ../plugins/system-update//PageComponent.qml:91
464-msgid "Install & Restart"
465-msgstr ""
466-
467-#: ../plugins/system-update//PageComponent.qml:101
468-msgid "Not Now"
469-msgstr ""
470-
471-#: ../plugins/system-update//PageComponent.qml:107
472-msgid "Install"
473-msgstr ""
474-
475-#: ../plugins/system-update//PageComponent.qml:128
476-msgid "Software is up to date"
477-msgstr ""
478-
479-#: ../plugins/system-update//PageComponent.qml:239
480-msgid "Checking for updates…"
481-msgstr ""
482-
483-#: ../plugins/system-update//PageComponent.qml:257
484-#, qt-format
485-msgid "Install %1 update…"
486-msgid_plural "Install %1 updates…"
487-msgstr[0] ""
488-msgstr[1] ""
489-
490-#: ../plugins/system-update//PageComponent.qml:258
491-#, qt-format
492-msgid "Install %1 update"
493-msgid_plural "Install %1 updates"
494-msgstr[0] ""
495-msgstr[1] ""
496-
497-#: ../plugins/system-update//PageComponent.qml:259
498-msgid "Pause All"
499-msgstr ""
500-
501-#: ../plugins/system-update//PageComponent.qml:313
502-msgid "Retry"
503-msgstr ""
504-
505-#: ../plugins/system-update//PageComponent.qml:329
506-msgid "Download"
507-msgstr ""
508-
509-#: ../plugins/system-update//PageComponent.qml:329
510-msgid "Update"
511-msgstr ""
512-
513-#: ../plugins/system-update//PageComponent.qml:330
514-msgid "Resume"
515-msgstr ""
516-
517-#: ../plugins/system-update//PageComponent.qml:331
518-msgid "Pause"
519-msgstr ""
520-
521-#: ../plugins/system-update//PageComponent.qml:389
522-msgid "Installing"
523-msgstr ""
524-
525-#: ../plugins/system-update//PageComponent.qml:422
526-msgid "Installed"
527-msgstr ""
528-
529-#: ../plugins/system-update//PageComponent.qml:447
530-msgid "Version: "
531-msgstr ""
532-
533-#: ../plugins/system-update//PageComponent.qml:469
534-msgid "Sign in to Ubuntu One to receive updates for apps."
535-msgstr ""
536-
537-#: ../plugins/system-update//PageComponent.qml:478
538-msgid "Sign In…"
539-msgstr ""
540-
541-#: ../plugins/system-update//PageComponent.qml:545
542-msgid "Installing update…"
543-msgstr ""
544-
545-#: ../plugins/system-update//PageComponent.qml:560
546-#: ../plugins/system-update//Configuration.qml:30
547-msgid "Auto download"
548-msgstr ""
549-
550-#: ../plugins/system-update//PageComponent.qml:565
551-msgid "On wi-fi"
552-msgstr ""
553-
554-#: ../plugins/system-update//PageComponent.qml:567
555-msgid "Always"
556-msgstr ""
557-
558-#: ../plugins/system-update//PageComponent.qml:582
559-msgid " bytes"
560-msgstr ""
561-
562-#: ../plugins/system-update//PageComponent.qml:585
563-msgid " KiB"
564-msgstr ""
565-
566-#: ../plugins/system-update//PageComponent.qml:588
567-msgid " MiB"
568-msgstr ""
569-
570-#: ../plugins/system-update//PageComponent.qml:591
571-msgid " GiB"
572-msgstr ""
573-
574-#: ../plugins/system-update//Configuration.qml:35
575-msgid "Download future updates automatically:"
576-msgstr ""
577-
578-#: ../plugins/system-update//Configuration.qml:54
579-msgid "When on wi-fi"
580-msgstr ""
581-
582-#: ../plugins/system-update//Configuration.qml:55
583-msgid "On any data connection"
584-msgstr ""
585-
586-#: ../plugins/system-update//Configuration.qml:56
587-msgid "Data charges may apply."
588-msgstr ""
589-
590-#: ../plugins/sound//SoundsList.qml:60
591-msgid "Stop playing"
592-msgstr ""
593-
594-#: ../plugins/sound//SilentModeWarning.qml:31
595-msgid "The phone is in Silent Mode."
596+#: ../plugins/cellular//PageChooseCarrier.qml:130
597+msgid "Refresh"
598+msgstr ""
599+
600+#: ../plugins/cellular//PageChooseCarrier.qml:151
601+msgid "Searching"
602+msgstr ""
603+
604+#: ../plugins/language//DisplayLanguage.qml:36
605+msgid "Display language"
606+msgstr ""
607+
608+#: ../plugins/language//DisplayLanguage.qml:118
609+msgid "Confirm"
610+msgstr ""
611+
612+#. TRANSLATORS: This is a keyword or name for the language plugin which is used while searching
613+#: ../plugins/language//PageComponent.qml:34
614+#: /storage/1/work/phablet/settings/lp1318008/build/po/settings.js:40
615+msgid "Language & Text"
616+msgstr ""
617+
618+#: ../plugins/language//PageComponent.qml:100
619+msgid "Display language…"
620+msgstr ""
621+
622+#: ../plugins/language//PageComponent.qml:117
623+#: ../plugins/language//KeyboardLayouts.qml:26
624+msgid "Keyboard layouts"
625+msgstr ""
626+
627+#: ../plugins/language//PageComponent.qml:132
628+#: ../plugins/language//PageComponent.qml:142
629+#: ../plugins/language//SpellChecking.qml:27
630+#: ../plugins/language//SpellChecking.qml:36
631+msgid "Spell checking"
632+msgstr ""
633+
634+#: ../plugins/language//PageComponent.qml:152
635+msgid "Auto correction"
636+msgstr ""
637+
638+#: ../plugins/language//PageComponent.qml:162
639+msgid "Word suggestions"
640+msgstr ""
641+
642+#: ../plugins/language//PageComponent.qml:175
643+msgid "Auto capitalization"
644+msgstr ""
645+
646+#: ../plugins/language//PageComponent.qml:185
647+msgid "Turns on Shift to capitalize the first letter of each sentence."
648+msgstr ""
649+
650+#: ../plugins/language//PageComponent.qml:192
651+msgid "Auto punctuation"
652+msgstr ""
653+
654+#: ../plugins/language//PageComponent.qml:202
655+msgid ""
656+"Adds a period, and any missing quotes or brackets, when you tap Space twice."
657+msgstr ""
658+
659+#: ../plugins/language//PageComponent.qml:209
660+#: ../plugins/sound//PageComponent.qml:196
661+msgid "Keyboard sound"
662+msgstr ""
663+
664+#: ../plugins/language//PageComponent.qml:219
665+msgid "Keyboard vibration"
666+msgstr ""
667+
668+#: ../plugins/language//KeyboardLayouts.qml:39
669+msgid "Current layouts:"
670+msgstr ""
671+
672+#: ../plugins/language//KeyboardLayouts.qml:40
673+msgid "All layouts available:"
674+msgstr ""
675+
676+#: ../plugins/language//SpellChecking.qml:53
677+msgid "Current spelling languages:"
678+msgstr ""
679+
680+#: ../plugins/language//SpellChecking.qml:54
681+msgid "All languages available:"
682+msgstr ""
683+
684+#: ../plugins/language//RebootNecessary.qml:38
685+msgid "Restart Now"
686 msgstr ""
687
688 #. TRANSLATORS: This is a keyword or name for the sound plugin which is used while searching
689 #: ../plugins/sound//PageComponent.qml:37
690-#: /tmp/ubuntu-system-settings/obj-x86_64-linux-gnu/po/settings.js:36
691+#: /storage/1/work/phablet/settings/lp1318008/build/po/settings.js:58
692 msgid "Sound"
693 msgstr ""
694
695@@ -428,21 +426,457 @@
696 msgid "Other sounds:"
697 msgstr ""
698
699-#: ../plugins/sound//PageComponent.qml:196
700-#: ../plugins/language//PageComponent.qml:209
701-msgid "Keyboard sound"
702-msgstr ""
703-
704 #: ../plugins/sound//PageComponent.qml:210
705 msgid "Lock sound"
706 msgstr ""
707
708+#: ../plugins/sound//SoundsList.qml:60
709+msgid "Stop playing"
710+msgstr ""
711+
712+#: ../plugins/sound//SilentModeWarning.qml:31
713+msgid "The phone is in Silent Mode."
714+msgstr ""
715+
716+#. TRANSLATORS: This is a keyword or name for the phone plugin which is used while searching
717+#: ../plugins/phone//PageComponent.qml:32
718+#: ../plugins/bluetooth//PageComponent.qml:93
719+#: /storage/1/work/phablet/settings/lp1318008/build/po/settings.js:64
720+msgid "Phone"
721+msgstr ""
722+
723+#: ../plugins/phone//ServiceInfo.qml:109
724+#, qt-format
725+msgid "Last called %1"
726+msgstr ""
727+
728+#: ../plugins/phone//ServiceInfo.qml:119
729+msgid "Call"
730+msgstr ""
731+
732+#: ../plugins/phone//MultiSim.qml:36 ../plugins/phone//MultiSim.qml:74
733+#: ../plugins/phone//NoSims.qml:28 ../plugins/phone//CallForwarding.qml:32
734+#: ../plugins/phone//CallForwarding.qml:76 ../plugins/phone//SingleSim.qml:33
735+msgid "Call forwarding"
736+msgstr ""
737+
738+#: ../plugins/phone//MultiSim.qml:46 ../plugins/phone//MultiSim.qml:84
739+#: ../plugins/phone//NoSims.qml:34 ../plugins/phone//SingleSim.qml:40
740+#: ../plugins/phone//CallWaiting.qml:31 ../plugins/phone//CallWaiting.qml:74
741+msgid "Call waiting"
742+msgstr ""
743+
744+#: ../plugins/phone//MultiSim.qml:56 ../plugins/phone//MultiSim.qml:94
745+#: ../plugins/phone//NoSims.qml:42
746+msgid "Services"
747+msgstr ""
748+
749+#: ../plugins/phone//CallForwarding.qml:91
750+msgid ""
751+"Redirects phone calls to another number whenever you don't answer, or your "
752+"phone is busy, turned off, or out of range."
753+msgstr ""
754+
755+#: ../plugins/phone//CallForwarding.qml:101
756+msgid "Forward to"
757+msgstr ""
758+
759+#: ../plugins/phone//CallForwarding.qml:152
760+#: ../plugins/time-date//TimePicker.qml:182
761+#: ../plugins/security-privacy//LockSecurity.qml:304
762+#: ../plugins/background//Preview.qml:108
763+msgid "Set"
764+msgstr ""
765+
766+#: ../plugins/phone//SingleSim.qml:29
767+msgid "SIM"
768+msgstr ""
769+
770+#. TRANSLATORS: %1 is the name of the (network) carrier
771+#: ../plugins/phone//SingleSim.qml:51 ../plugins/phone//Services.qml:34
772+#, qt-format
773+msgid "%1 Services"
774+msgstr ""
775+
776+#: ../plugins/phone//CallWaiting.qml:89
777+msgid ""
778+"Lets you answer or start a new call while on another call, and switch "
779+"between them"
780+msgstr ""
781+
782+#: ../plugins/about//License.qml:30
783+msgid "Sorry, this license could not be displayed."
784+msgstr ""
785+
786+#: ../plugins/about//Version.qml:36
787+msgid "OS Build Details"
788+msgstr ""
789+
790+#: ../plugins/about//Version.qml:65
791+msgid "OS build number"
792+msgstr ""
793+
794+#: ../plugins/about//Version.qml:71
795+msgid "Ubuntu Image part"
796+msgstr ""
797+
798+#: ../plugins/about//Version.qml:79
799+msgid "Ubuntu build description"
800+msgstr ""
801+
802+#: ../plugins/about//Version.qml:85
803+msgid "Device Image part"
804+msgstr ""
805+
806+#: ../plugins/about//Version.qml:92
807+msgid "Device build description"
808+msgstr ""
809+
810+#: ../plugins/about//Version.qml:99
811+msgid "Customization Image part"
812+msgstr ""
813+
814+#: ../plugins/about//PhoneNumbers.qml:31
815+msgid "Phone number:"
816+msgstr ""
817+
818+#. TRANSLATORS: This is a keyword or name for the about plugin which is used while searching
819+#: ../plugins/about//PageComponent.qml:34
820+#: /storage/1/work/phablet/settings/lp1318008/build/po/settings.js:70
821+msgid "About this phone"
822+msgstr ""
823+
824+#: ../plugins/about//PageComponent.qml:109
825+msgid "Serial"
826+msgstr ""
827+
828+#: ../plugins/about//PageComponent.qml:124
829+msgid "Wi-Fi address"
830+msgstr ""
831+
832+#: ../plugins/about//PageComponent.qml:132
833+msgid "Bluetooth address"
834+msgstr ""
835+
836+#: ../plugins/about//PageComponent.qml:143 ../plugins/about//Storage.qml:33
837+msgid "Storage"
838+msgstr ""
839+
840+#: ../plugins/about//PageComponent.qml:150
841+msgid "Software:"
842+msgstr ""
843+
844+#: ../plugins/about//PageComponent.qml:155
845+msgid "OS"
846+msgstr ""
847+
848+#: ../plugins/about//PageComponent.qml:164
849+msgid "Last updated"
850+msgstr ""
851+
852+#: ../plugins/about//PageComponent.qml:172
853+msgid "Check for updates"
854+msgstr ""
855+
856+#: ../plugins/about//PageComponent.qml:181
857+msgid "Legal:"
858+msgstr ""
859+
860+#: ../plugins/about//PageComponent.qml:186 ../plugins/about//Software.qml:11
861+msgid "Software licenses"
862+msgstr ""
863+
864+#: ../plugins/about//PageComponent.qml:194
865+msgid "Regulatory info"
866+msgstr ""
867+
868+#: ../plugins/about//PageComponent.qml:202
869+msgid "Developer mode"
870+msgstr ""
871+
872+#: ../plugins/about//DevMode.qml:35 ../plugins/about//DevMode.qml:88
873+msgid "Developer Mode"
874+msgstr ""
875+
876+#: ../plugins/about//DevMode.qml:82
877+msgid ""
878+"In Developer Mode, anyone can access, change or delete anything on this "
879+"phone by connecting it to another device."
880+msgstr ""
881+
882+#: ../plugins/about//DevMode.qml:108
883+msgid "You need a PIN code or passphrase set to use Developer Mode."
884+msgstr ""
885+
886+#: ../plugins/about//DevMode.qml:114
887+#: ../plugins/security-privacy//PhoneLocking.qml:49
888+#: ../plugins/security-privacy//LockSecurity.qml:32
889+msgid "Lock security"
890+msgstr ""
891+
892+#: ../plugins/about//Storage.qml:87
893+msgid "Used by Ubuntu"
894+msgstr ""
895+
896+#: ../plugins/about//Storage.qml:88
897+msgid "Videos"
898+msgstr ""
899+
900+#: ../plugins/about//Storage.qml:89
901+msgid "Audio"
902+msgstr ""
903+
904+#: ../plugins/about//Storage.qml:90
905+msgid "Pictures"
906+msgstr ""
907+
908+#: ../plugins/about//Storage.qml:91
909+msgid "Other files"
910+msgstr ""
911+
912+#: ../plugins/about//Storage.qml:92
913+msgid "Used by apps"
914+msgstr ""
915+
916+#: ../plugins/about//Storage.qml:142
917+msgid "Total storage"
918+msgstr ""
919+
920+#: ../plugins/about//Storage.qml:154
921+msgid "Free space"
922+msgstr ""
923+
924+#: ../plugins/about//Storage.qml:174
925+msgid "By name"
926+msgstr ""
927+
928+#: ../plugins/about//Storage.qml:174
929+msgid "By size"
930+msgstr ""
931+
932+#: ../plugins/about//PhoneNumber.qml:36
933+msgid "Phone number"
934+msgstr ""
935+
936+#. TRANSLATORS: This is a keyword or name for the notifications plugin which is used while searching
937+#: ../plugins/notifications//PageComponent.qml:29
938+#: /storage/1/work/phablet/settings/lp1318008/build/po/settings.js:96
939+msgid "Notifications"
940+msgstr ""
941+
942+#: ../plugins/notifications//PageComponent.qml:40
943+msgid ""
944+"Selected apps can alert you using notification bubbles, sounds, vibrations, "
945+"and the Notification Center."
946+msgstr ""
947+
948+#: ../plugins/time-date//TimePicker.qml:26
949+msgid "Set time & date"
950+msgstr ""
951+
952+#: ../plugins/time-date//TimePicker.qml:68
953+msgid "Time"
954+msgstr ""
955+
956+#: ../plugins/time-date//TimePicker.qml:81
957+msgid "Hour"
958+msgstr ""
959+
960+#: ../plugins/time-date//TimePicker.qml:95
961+msgid "Minute"
962+msgstr ""
963+
964+#: ../plugins/time-date//TimePicker.qml:109
965+msgid "Second"
966+msgstr ""
967+
968+#: ../plugins/time-date//TimePicker.qml:118
969+msgid "Date"
970+msgstr ""
971+
972+#: ../plugins/time-date//TimePicker.qml:130
973+msgid "Day"
974+msgstr ""
975+
976+#: ../plugins/time-date//TimePicker.qml:144
977+msgid "Month"
978+msgstr ""
979+
980+#: ../plugins/time-date//TimePicker.qml:162
981+msgid "Year"
982+msgstr ""
983+
984+#. TRANSLATORS: This is a keyword or name for the time-date plugin which is used while searching
985+#: ../plugins/time-date//PageComponent.qml:29
986+#: /storage/1/work/phablet/settings/lp1318008/build/po/settings.js:104
987+msgid "Time & Date"
988+msgstr ""
989+
990+#: ../plugins/time-date//PageComponent.qml:53
991+msgid "Time zone:"
992+msgstr ""
993+
994+#: ../plugins/time-date//PageComponent.qml:68
995+msgid "Set the time and date:"
996+msgstr ""
997+
998+#: ../plugins/time-date//ChooseTimeZone.qml:28
999+msgid "Time zone"
1000+msgstr ""
1001+
1002+#: ../plugins/time-date//ChooseTimeZone.qml:46
1003+msgid "Set the time zone:"
1004+msgstr ""
1005+
1006+#: ../plugins/time-date//ChooseTimeZone.qml:126
1007+msgid "Enter your current location."
1008+msgstr ""
1009+
1010+#: ../plugins/time-date//ChooseTimeZone.qml:127
1011+msgid "No matching place"
1012+msgstr ""
1013+
1014+#: ../plugins/security-privacy//AppAccess.qml:28
1015+#: ../plugins/security-privacy//PageComponent.qml:253
1016+msgid "Other app access"
1017+msgstr ""
1018+
1019+#: ../plugins/security-privacy//AppAccess.qml:35
1020+msgid "Apps that you have granted and have requested access to:"
1021+msgstr ""
1022+
1023+#: ../plugins/security-privacy//AppAccess.qml:41
1024+#: ../plugins/bluetooth//PageComponent.qml:105
1025+msgid "Camera"
1026+msgstr ""
1027+
1028+#: ../plugins/security-privacy//AppAccess.qml:42
1029+msgid "Apps that have requested access to your camera"
1030+msgstr ""
1031+
1032+#: ../plugins/security-privacy//AppAccess.qml:46
1033+msgid "Mic"
1034+msgstr ""
1035+
1036+#: ../plugins/security-privacy//AppAccess.qml:47
1037+msgid "Apps that have requested access to your mic"
1038+msgstr ""
1039+
1040+#: ../plugins/security-privacy//AppAccess.qml:59
1041+#, qt-format
1042+msgid "%1/%2"
1043+msgstr ""
1044+
1045+#: ../plugins/security-privacy//AppAccess.qml:60
1046+msgid "0"
1047+msgstr ""
1048+
1049+#. TRANSLATORS: This is a keyword or name for the security-privacy plugin which is used while searching
1050+#: ../plugins/security-privacy//PageComponent.qml:37
1051+#: /storage/1/work/phablet/settings/lp1318008/build/po/settings.js:114
1052+msgid "Security & Privacy"
1053+msgstr ""
1054+
1055+#: ../plugins/security-privacy//PageComponent.qml:100
1056+#: ../plugins/security-privacy//PageComponent.qml:218
1057+#: ../plugins/security-privacy//Dash.qml:46
1058+msgid "Phone and Internet"
1059+msgstr ""
1060+
1061+#: ../plugins/security-privacy//PageComponent.qml:102
1062+#: ../plugins/security-privacy//PageComponent.qml:219
1063+#: ../plugins/security-privacy//Dash.qml:46
1064+msgid "Phone only"
1065+msgstr ""
1066+
1067+#: ../plugins/security-privacy//PageComponent.qml:131
1068+msgid "Lock phone"
1069+msgstr ""
1070+
1071+#. TRANSLATORS: %1 is the number of minutes
1072+#: ../plugins/security-privacy//PageComponent.qml:137
1073+#: ../plugins/security-privacy//PageComponent.qml:146
1074+#: ../plugins/battery//PageComponent.qml:312
1075+#: ../plugins/battery//PageComponent.qml:321
1076+#: ../plugins/battery//SleepValues.qml:83
1077+#: ../plugins/battery//SleepValues.qml:87
1078+#: ../plugins/battery//SleepValues.qml:91
1079+#: ../plugins/battery//SleepValues.qml:95
1080+#: ../plugins/battery//SleepValues.qml:99
1081+#: ../plugins/battery//SleepValues.qml:103
1082+#, qt-format
1083+msgid "After %1 minute"
1084+msgid_plural "After %1 minutes"
1085+msgstr[0] ""
1086+msgstr[1] ""
1087+
1088+#: ../plugins/security-privacy//PageComponent.qml:158
1089 #: ../plugins/security-privacy//SimPin.qml:34
1090 #: ../plugins/security-privacy//SimPin.qml:319
1091-#: ../plugins/security-privacy//PageComponent.qml:158
1092 msgid "SIM PIN"
1093 msgstr ""
1094
1095+#: ../plugins/security-privacy//PageComponent.qml:161
1096+#: ../plugins/security-privacy//PageComponent.qml:244
1097+msgid "On"
1098+msgstr ""
1099+
1100+#: ../plugins/security-privacy//PageComponent.qml:165
1101+#: ../plugins/security-privacy//PageComponent.qml:244
1102+#: ../plugins/cellular//Components//NoSim.qml:32
1103+#: ../plugins/cellular//Components//CellularSingleSim.qml:50
1104+#: ../plugins/cellular//Components//CellularMultiSim.qml:30
1105+msgid "Off"
1106+msgstr ""
1107+
1108+#: ../plugins/security-privacy//PageComponent.qml:172
1109+msgid "Encryption"
1110+msgstr ""
1111+
1112+#: ../plugins/security-privacy//PageComponent.qml:181
1113+msgid ""
1114+"Encryption protects against access to phone data when the phone is connected "
1115+"to a PC or other device."
1116+msgstr ""
1117+
1118+#: ../plugins/security-privacy//PageComponent.qml:185
1119+msgid "Privacy"
1120+msgstr ""
1121+
1122+#: ../plugins/security-privacy//PageComponent.qml:188
1123+msgid "Stats on welcome screen"
1124+msgstr ""
1125+
1126+#: ../plugins/security-privacy//PageComponent.qml:201
1127+msgid "Messages on welcome screen"
1128+msgstr ""
1129+
1130+#: ../plugins/security-privacy//PageComponent.qml:216
1131+#: ../plugins/security-privacy//Dash.qml:29
1132+msgid "Dash search"
1133+msgstr ""
1134+
1135+#: ../plugins/security-privacy//PageComponent.qml:235
1136+msgid "Location access"
1137+msgstr ""
1138+
1139+#: ../plugins/security-privacy//PageComponent.qml:258
1140+#: ../plugins/security-privacy//diagnostics//PageComponent.qml:30
1141+msgid "Diagnostics"
1142+msgstr ""
1143+
1144+#. TRANSLATORS: This string is shown when crash
1145+#. reports are to be sent by the system.
1146+#: ../plugins/security-privacy//PageComponent.qml:263
1147+msgid "Sent"
1148+msgstr ""
1149+
1150+#. TRANSLATORS: This string is shown when crash
1151+#. reports are not to be sent by the system
1152+#: ../plugins/security-privacy//PageComponent.qml:266
1153+msgid "Not sent"
1154+msgstr ""
1155+
1156 #: ../plugins/security-privacy//SimPin.qml:44
1157 msgid "Change SIM PIN"
1158 msgstr ""
1159@@ -475,12 +909,6 @@
1160 msgid "PINs don't match. Try again."
1161 msgstr ""
1162
1163-#: ../plugins/security-privacy//SimPin.qml:154
1164-#: ../plugins/security-privacy//LockSecurity.qml:302
1165-#: ../plugins/cellular//HotspotSetup.qml:94
1166-msgid "Change"
1167-msgstr ""
1168-
1169 #: ../plugins/security-privacy//SimPin.qml:180
1170 msgid "Enter SIM PIN"
1171 msgstr ""
1172@@ -511,6 +939,66 @@
1173 msgid "Entering an incorrect PIN repeatedly may lock the SIM permanently."
1174 msgstr ""
1175
1176+#: ../plugins/security-privacy//Location.qml:31
1177+#: ../wizard/qml/Pages//30-location.qml:25
1178+msgid "Location"
1179+msgstr ""
1180+
1181+#: ../plugins/security-privacy//Location.qml:49
1182+msgid "Location detection"
1183+msgstr ""
1184+
1185+#: ../plugins/security-privacy//Location.qml:71
1186+msgid ""
1187+"Uses GPS to detect your rough location. When off, GPS turns off to save "
1188+"battery."
1189+msgstr ""
1190+
1191+#: ../plugins/security-privacy//Location.qml:73
1192+msgid ""
1193+"Uses wi-fi and GPS to detect your rough location. Turning off location "
1194+"detection saves battery."
1195+msgstr ""
1196+
1197+#: ../plugins/security-privacy//Location.qml:75
1198+msgid ""
1199+"Uses wi-fi (currently off) and GPS to detect your rough location. Turning "
1200+"off location detection saves battery."
1201+msgstr ""
1202+
1203+#: ../plugins/security-privacy//Location.qml:77
1204+msgid ""
1205+"Uses wi-fi, cell tower locations, and GPS to detect your rough location. "
1206+"Turning off location detection saves battery."
1207+msgstr ""
1208+
1209+#: ../plugins/security-privacy//Location.qml:79
1210+msgid ""
1211+"Uses wi-fi, cell tower locations (no current cellular connection), and GPS "
1212+"to detect your rough location. Turning off location detection saves battery."
1213+msgstr ""
1214+
1215+#: ../plugins/security-privacy//Location.qml:81
1216+msgid ""
1217+"Uses wi-fi (currently off), cell tower locations, and GPS to detect your "
1218+"rough location. Turning off location detection saves battery."
1219+msgstr ""
1220+
1221+#: ../plugins/security-privacy//Location.qml:83
1222+msgid ""
1223+"Uses wi-fi (currently off), cell tower locations (no current cellular "
1224+"connection), and GPS to detect your rough location. Turning off location "
1225+"detection saves battery."
1226+msgstr ""
1227+
1228+#: ../plugins/security-privacy//Location.qml:90
1229+msgid "Allow access to location:"
1230+msgstr ""
1231+
1232+#: ../plugins/security-privacy//Dash.qml:45
1233+msgid "Return results from:"
1234+msgstr ""
1235+
1236 #: ../plugins/security-privacy//PhoneLocking.qml:31
1237 msgid "Phone locking"
1238 msgstr ""
1239@@ -531,12 +1019,6 @@
1240 msgid "Passphrase"
1241 msgstr ""
1242
1243-#: ../plugins/security-privacy//PhoneLocking.qml:49
1244-#: ../plugins/security-privacy//LockSecurity.qml:32
1245-#: ../plugins/about//DevMode.qml:114
1246-msgid "Lock security"
1247-msgstr ""
1248-
1249 #: ../plugins/security-privacy//PhoneLocking.qml:68
1250 #: ../plugins/battery//PageComponent.qml:306
1251 msgid "Lock when idle"
1252@@ -580,111 +1062,6 @@
1253 msgid "Other apps and functions will prompt you to unlock."
1254 msgstr ""
1255
1256-#. TRANSLATORS: This is a keyword or name for the security-privacy plugin which is used while searching
1257-#: ../plugins/security-privacy//PageComponent.qml:37
1258-#: /tmp/ubuntu-system-settings/obj-x86_64-linux-gnu/po/settings.js:42
1259-msgid "Security & Privacy"
1260-msgstr ""
1261-
1262-#: ../plugins/security-privacy//PageComponent.qml:100
1263-#: ../plugins/security-privacy//PageComponent.qml:218
1264-#: ../plugins/security-privacy//Dash.qml:46
1265-msgid "Phone and Internet"
1266-msgstr ""
1267-
1268-#: ../plugins/security-privacy//PageComponent.qml:102
1269-#: ../plugins/security-privacy//PageComponent.qml:219
1270-#: ../plugins/security-privacy//Dash.qml:46
1271-msgid "Phone only"
1272-msgstr ""
1273-
1274-#: ../plugins/security-privacy//PageComponent.qml:131
1275-msgid "Lock phone"
1276-msgstr ""
1277-
1278-#. TRANSLATORS: %1 is the number of minutes
1279-#: ../plugins/security-privacy//PageComponent.qml:137
1280-#: ../plugins/security-privacy//PageComponent.qml:146
1281-#: ../plugins/battery//SleepValues.qml:83
1282-#: ../plugins/battery//SleepValues.qml:87
1283-#: ../plugins/battery//SleepValues.qml:91
1284-#: ../plugins/battery//SleepValues.qml:95
1285-#: ../plugins/battery//SleepValues.qml:99
1286-#: ../plugins/battery//SleepValues.qml:103
1287-#: ../plugins/battery//PageComponent.qml:312
1288-#: ../plugins/battery//PageComponent.qml:321
1289-#, qt-format
1290-msgid "After %1 minute"
1291-msgid_plural "After %1 minutes"
1292-msgstr[0] ""
1293-msgstr[1] ""
1294-
1295-#: ../plugins/security-privacy//PageComponent.qml:161
1296-#: ../plugins/security-privacy//PageComponent.qml:244
1297-msgid "On"
1298-msgstr ""
1299-
1300-#: ../plugins/security-privacy//PageComponent.qml:165
1301-#: ../plugins/security-privacy//PageComponent.qml:244
1302-#: ../plugins/cellular//Components//NoSim.qml:32
1303-#: ../plugins/cellular//Components//CellularSingleSim.qml:50
1304-#: ../plugins/cellular//Components//CellularMultiSim.qml:30
1305-msgid "Off"
1306-msgstr ""
1307-
1308-#: ../plugins/security-privacy//PageComponent.qml:172
1309-msgid "Encryption"
1310-msgstr ""
1311-
1312-#: ../plugins/security-privacy//PageComponent.qml:181
1313-msgid ""
1314-"Encryption protects against access to phone data when the phone is connected "
1315-"to a PC or other device."
1316-msgstr ""
1317-
1318-#: ../plugins/security-privacy//PageComponent.qml:185
1319-msgid "Privacy"
1320-msgstr ""
1321-
1322-#: ../plugins/security-privacy//PageComponent.qml:188
1323-msgid "Stats on welcome screen"
1324-msgstr ""
1325-
1326-#: ../plugins/security-privacy//PageComponent.qml:201
1327-msgid "Messages on welcome screen"
1328-msgstr ""
1329-
1330-#: ../plugins/security-privacy//PageComponent.qml:216
1331-#: ../plugins/security-privacy//Dash.qml:29
1332-msgid "Dash search"
1333-msgstr ""
1334-
1335-#: ../plugins/security-privacy//PageComponent.qml:235
1336-msgid "Location access"
1337-msgstr ""
1338-
1339-#: ../plugins/security-privacy//PageComponent.qml:253
1340-#: ../plugins/security-privacy//AppAccess.qml:28
1341-msgid "Other app access"
1342-msgstr ""
1343-
1344-#: ../plugins/security-privacy//PageComponent.qml:258
1345-#: ../plugins/security-privacy//diagnostics//PageComponent.qml:30
1346-msgid "Diagnostics"
1347-msgstr ""
1348-
1349-#. TRANSLATORS: This string is shown when crash
1350-#. reports are to be sent by the system.
1351-#: ../plugins/security-privacy//PageComponent.qml:263
1352-msgid "Sent"
1353-msgstr ""
1354-
1355-#. TRANSLATORS: This string is shown when crash
1356-#. reports are not to be sent by the system
1357-#: ../plugins/security-privacy//PageComponent.qml:266
1358-msgid "Not sent"
1359-msgstr ""
1360-
1361 #: ../plugins/security-privacy//LockSecurity.qml:96
1362 #: ../plugins/security-privacy//LockSecurity.qml:384
1363 msgid "Change PIN code…"
1364@@ -767,402 +1144,165 @@
1365 msgid "Passphrase…"
1366 msgstr ""
1367
1368-#: ../plugins/security-privacy//Location.qml:31
1369-#: ../wizard/qml/Pages//30-location.qml:25
1370-msgid "Location"
1371-msgstr ""
1372-
1373-#: ../plugins/security-privacy//Location.qml:49
1374-msgid "Location detection"
1375-msgstr ""
1376-
1377-#: ../plugins/security-privacy//Location.qml:71
1378-msgid ""
1379-"Uses GPS to detect your rough location. When off, GPS turns off to save "
1380-"battery."
1381-msgstr ""
1382-
1383-#: ../plugins/security-privacy//Location.qml:73
1384-msgid ""
1385-"Uses wi-fi and GPS to detect your rough location. Turning off location "
1386-"detection saves battery."
1387-msgstr ""
1388-
1389-#: ../plugins/security-privacy//Location.qml:75
1390-msgid ""
1391-"Uses wi-fi (currently off) and GPS to detect your rough location. Turning "
1392-"off location detection saves battery."
1393-msgstr ""
1394-
1395-#: ../plugins/security-privacy//Location.qml:77
1396-msgid ""
1397-"Uses wi-fi, cell tower locations, and GPS to detect your rough location. "
1398-"Turning off location detection saves battery."
1399-msgstr ""
1400-
1401-#: ../plugins/security-privacy//Location.qml:79
1402-msgid ""
1403-"Uses wi-fi, cell tower locations (no current cellular connection), and GPS "
1404-"to detect your rough location. Turning off location detection saves battery."
1405-msgstr ""
1406-
1407-#: ../plugins/security-privacy//Location.qml:81
1408-msgid ""
1409-"Uses wi-fi (currently off), cell tower locations, and GPS to detect your "
1410-"rough location. Turning off location detection saves battery."
1411-msgstr ""
1412-
1413-#: ../plugins/security-privacy//Location.qml:83
1414-msgid ""
1415-"Uses wi-fi (currently off), cell tower locations (no current cellular "
1416-"connection), and GPS to detect your rough location. Turning off location "
1417-"detection saves battery."
1418-msgstr ""
1419-
1420-#: ../plugins/security-privacy//Location.qml:90
1421-msgid "Allow access to location:"
1422-msgstr ""
1423-
1424-#: ../plugins/security-privacy//Dash.qml:45
1425-msgid "Return results from:"
1426-msgstr ""
1427-
1428-#: ../plugins/security-privacy//AppAccess.qml:35
1429-msgid "Apps that you have granted and have requested access to:"
1430-msgstr ""
1431-
1432-#: ../plugins/security-privacy//AppAccess.qml:41
1433-#: ../plugins/bluetooth//PageComponent.qml:105
1434-msgid "Camera"
1435-msgstr ""
1436-
1437-#: ../plugins/security-privacy//AppAccess.qml:42
1438-msgid "Apps that have requested access to your camera"
1439-msgstr ""
1440-
1441-#: ../plugins/security-privacy//AppAccess.qml:46
1442-msgid "Mic"
1443-msgstr ""
1444-
1445-#: ../plugins/security-privacy//AppAccess.qml:47
1446-msgid "Apps that have requested access to your mic"
1447-msgstr ""
1448-
1449-#: ../plugins/security-privacy//AppAccess.qml:59
1450-#, qt-format
1451-msgid "%1/%2"
1452-msgstr ""
1453-
1454-#: ../plugins/security-privacy//AppAccess.qml:60
1455-msgid "0"
1456-msgstr ""
1457-
1458-#: ../plugins/reset//ResetLauncherHome.qml:40
1459-msgid "The Launcher will be returned to its original contents."
1460-msgstr ""
1461-
1462-#: ../plugins/reset//ResetLauncherHome.qml:44
1463-#: ../plugins/reset//PageComponent.qml:73
1464-msgid "Reset Launcher"
1465-msgstr ""
1466-
1467-#: ../plugins/reset//ResetLauncherHome.qml:59
1468-#: ../plugins/language//RebootNecessary.qml:34
1469-msgid "The phone needs to restart for changes to take effect."
1470-msgstr ""
1471-
1472-#: ../plugins/reset//ResetAllSettings.qml:29
1473-msgid ""
1474-"The contents and layout of the launcher, and the filters in the home screen "
1475-"will be returned to their original settings."
1476-msgstr ""
1477-
1478-#: ../plugins/reset//ResetAllSettings.qml:31
1479-msgid "Reset all system settings"
1480-msgstr ""
1481-
1482-#. TRANSLATORS: This is a keyword or name for the reset plugin which is used while searching
1483-#: ../plugins/reset//PageComponent.qml:32
1484-#: /tmp/ubuntu-system-settings/obj-x86_64-linux-gnu/po/settings.js:50
1485-msgid "Reset phone"
1486-msgstr ""
1487-
1488-#: ../plugins/reset//PageComponent.qml:87
1489-msgid "Reset all system settings…"
1490-msgstr ""
1491-
1492-#: ../plugins/reset//PageComponent.qml:101
1493-msgid "Erase & Reset Everything…"
1494-msgstr ""
1495-
1496-#: ../plugins/reset//EraseEverything.qml:41
1497-msgid ""
1498-"All documents, saved games, settings, and other items will be permanently "
1499-"deleted from this phone."
1500-msgstr ""
1501-
1502-#: ../plugins/reset//EraseEverything.qml:44
1503-msgid "Erase & Reset Everything"
1504-msgstr ""
1505-
1506-#: ../plugins/phone//SingleSim.qml:29
1507-msgid "SIM"
1508-msgstr ""
1509-
1510-#: ../plugins/phone//SingleSim.qml:33 ../plugins/phone//NoSims.qml:28
1511-#: ../plugins/phone//MultiSim.qml:36 ../plugins/phone//MultiSim.qml:74
1512-#: ../plugins/phone//CallForwarding.qml:32
1513-#: ../plugins/phone//CallForwarding.qml:76
1514-msgid "Call forwarding"
1515-msgstr ""
1516-
1517-#: ../plugins/phone//SingleSim.qml:40 ../plugins/phone//NoSims.qml:34
1518-#: ../plugins/phone//MultiSim.qml:46 ../plugins/phone//MultiSim.qml:84
1519-#: ../plugins/phone//CallWaiting.qml:31 ../plugins/phone//CallWaiting.qml:74
1520-msgid "Call waiting"
1521-msgstr ""
1522-
1523-#. TRANSLATORS: %1 is the name of the (network) carrier
1524-#: ../plugins/phone//SingleSim.qml:51 ../plugins/phone//Services.qml:34
1525-#, qt-format
1526-msgid "%1 Services"
1527-msgstr ""
1528-
1529-#: ../plugins/phone//ServiceInfo.qml:109
1530-#, qt-format
1531-msgid "Last called %1"
1532-msgstr ""
1533-
1534-#: ../plugins/phone//ServiceInfo.qml:119
1535-msgid "Call"
1536-msgstr ""
1537-
1538-#. TRANSLATORS: This is a keyword or name for the phone plugin which is used while searching
1539-#: ../plugins/phone//PageComponent.qml:32
1540-#: ../plugins/bluetooth//PageComponent.qml:93
1541-#: /tmp/ubuntu-system-settings/obj-x86_64-linux-gnu/po/settings.js:56
1542-msgid "Phone"
1543-msgstr ""
1544-
1545-#: ../plugins/phone//NoSims.qml:42 ../plugins/phone//MultiSim.qml:56
1546-#: ../plugins/phone//MultiSim.qml:94
1547-msgid "Services"
1548-msgstr ""
1549-
1550-#: ../plugins/phone//CallWaiting.qml:89
1551-msgid ""
1552-"Lets you answer or start a new call while on another call, and switch "
1553-"between them"
1554-msgstr ""
1555-
1556-#: ../plugins/phone//CallForwarding.qml:91
1557-msgid ""
1558-"Redirects phone calls to another number whenever you don't answer, or your "
1559-"phone is busy, turned off, or out of range."
1560-msgstr ""
1561-
1562-#: ../plugins/phone//CallForwarding.qml:101
1563-msgid "Forward to"
1564-msgstr ""
1565-
1566-#. TRANSLATORS: This is a keyword or name for the notifications plugin which is used while searching
1567-#: ../plugins/notifications//PageComponent.qml:29
1568-#: /tmp/ubuntu-system-settings/obj-x86_64-linux-gnu/po/settings.js:72
1569-msgid "Notifications"
1570-msgstr ""
1571-
1572-#: ../plugins/notifications//PageComponent.qml:40
1573-msgid ""
1574-"Selected apps can alert you using notification bubbles, sounds, vibrations, "
1575-"and the Notification Center."
1576-msgstr ""
1577-
1578-#: ../plugins/language//SpellChecking.qml:27
1579-#: ../plugins/language//SpellChecking.qml:36
1580-#: ../plugins/language//PageComponent.qml:132
1581-#: ../plugins/language//PageComponent.qml:142
1582-msgid "Spell checking"
1583-msgstr ""
1584-
1585-#: ../plugins/language//SpellChecking.qml:53
1586-msgid "Current spelling languages:"
1587-msgstr ""
1588-
1589-#: ../plugins/language//SpellChecking.qml:54
1590-msgid "All languages available:"
1591-msgstr ""
1592-
1593-#: ../plugins/language//RebootNecessary.qml:38
1594-msgid "Restart Now"
1595-msgstr ""
1596-
1597-#. TRANSLATORS: This is a keyword or name for the language plugin which is used while searching
1598-#: ../plugins/language//PageComponent.qml:34
1599-#: /tmp/ubuntu-system-settings/obj-x86_64-linux-gnu/po/settings.js:80
1600-msgid "Language & Text"
1601-msgstr ""
1602-
1603-#: ../plugins/language//PageComponent.qml:100
1604-msgid "Display language…"
1605-msgstr ""
1606-
1607-#: ../plugins/language//PageComponent.qml:117
1608-#: ../plugins/language//KeyboardLayouts.qml:26
1609-msgid "Keyboard layouts"
1610-msgstr ""
1611-
1612-#: ../plugins/language//PageComponent.qml:152
1613-msgid "Auto correction"
1614-msgstr ""
1615-
1616-#: ../plugins/language//PageComponent.qml:162
1617-msgid "Word suggestions"
1618-msgstr ""
1619-
1620-#: ../plugins/language//PageComponent.qml:175
1621-msgid "Auto capitalization"
1622-msgstr ""
1623-
1624-#: ../plugins/language//PageComponent.qml:185
1625-msgid "Turns on Shift to capitalize the first letter of each sentence."
1626-msgstr ""
1627-
1628-#: ../plugins/language//PageComponent.qml:192
1629-msgid "Auto punctuation"
1630-msgstr ""
1631-
1632-#: ../plugins/language//PageComponent.qml:202
1633-msgid ""
1634-"Adds a period, and any missing quotes or brackets, when you tap Space twice."
1635-msgstr ""
1636-
1637-#: ../plugins/language//PageComponent.qml:219
1638-msgid "Keyboard vibration"
1639-msgstr ""
1640-
1641-#: ../plugins/language//KeyboardLayouts.qml:39
1642-msgid "Current layouts:"
1643-msgstr ""
1644-
1645-#: ../plugins/language//KeyboardLayouts.qml:40
1646-msgid "All layouts available:"
1647-msgstr ""
1648-
1649-#: ../plugins/language//DisplayLanguage.qml:36
1650-msgid "Display language"
1651-msgstr ""
1652-
1653-#: ../plugins/language//DisplayLanguage.qml:118
1654-msgid "Confirm"
1655-msgstr ""
1656-
1657-#. TRANSLATORS: This is a keyword or name for the cellular plugin which is used while searching
1658-#: ../plugins/cellular//PageComponent.qml:32
1659-#: /tmp/ubuntu-system-settings/obj-x86_64-linux-gnu/po/settings.js:106
1660-msgid "Cellular"
1661-msgstr ""
1662-
1663-#: ../plugins/cellular//HotspotSetup.qml:29
1664-msgid "Change hotspot setup"
1665-msgstr ""
1666-
1667-#: ../plugins/cellular//HotspotSetup.qml:40
1668-msgid "Hotspot name"
1669-msgstr ""
1670-
1671-#: ../plugins/cellular//HotspotSetup.qml:54
1672-msgid "Key (must be 8 characters or longer)"
1673-msgstr ""
1674-
1675-#: ../plugins/cellular//HotspotSetup.qml:68
1676-msgid "Show key"
1677-msgstr ""
1678-
1679-#: ../plugins/cellular//Hotspot.qml:29
1680-#: ../plugins/cellular//Components//SingleSim.qml:43
1681-#: ../plugins/cellular//Components//MultiSim.qml:48
1682-msgid "Wi-Fi hotspot"
1683-msgstr ""
1684-
1685-#: ../plugins/cellular//Hotspot.qml:40
1686-msgid "Hotspot"
1687-msgstr ""
1688-
1689-#: ../plugins/cellular//Hotspot.qml:60
1690-msgid ""
1691-"When hotspot is on, other devices can use your cellular data connection over "
1692-"Wi-Fi. Normal data charges apply."
1693-msgstr ""
1694-
1695-#: ../plugins/cellular//Hotspot.qml:61
1696-msgid ""
1697-"Other devices can use your cellular data connection over the Wi-Fi network. "
1698-"Normal data charges apply."
1699-msgstr ""
1700-
1701-#: ../plugins/cellular//Hotspot.qml:65
1702-msgid "Set up hotspot"
1703-msgstr ""
1704-
1705-#: ../plugins/cellular//PageChooseCarriers.qml:28
1706-#: ../plugins/cellular//Components//MultiSim.qml:68
1707-msgid "Carriers"
1708-msgstr ""
1709-
1710-#: ../plugins/cellular//PageChooseCarriers.qml:49
1711-#: ../plugins/cellular//PageChooseCarriers.qml:65
1712-#: ../plugins/battery//PageComponent.qml:131
1713-#: ../plugins/battery//PageComponent.qml:287 ../plugins/about//Storage.qml:204
1714-#: ../plugins/cellular//Components//SingleSim.qml:62
1715-#: ../plugins/cellular//Components//NoSim.qml:48
1716-msgid "N/A"
1717-msgstr ""
1718-
1719-#: ../plugins/cellular//PageChooseCarrier.qml:102
1720-msgid "Choose carrier:"
1721-msgstr ""
1722-
1723-#: ../plugins/cellular//PageChooseCarrier.qml:130
1724-msgid "Refresh"
1725-msgstr ""
1726-
1727-#: ../plugins/cellular//PageChooseCarrier.qml:151
1728-msgid "Searching"
1729-msgstr ""
1730-
1731-#. TRANSLATORS: This is a keyword or name for the brightness plugin which is used while searching
1732-#: ../plugins/brightness//PageComponent.qml:32
1733-#: /tmp/ubuntu-system-settings/obj-x86_64-linux-gnu/po/settings.js:118
1734-msgid "Brightness"
1735-msgstr ""
1736-
1737-#: ../plugins/brightness//PageComponent.qml:52
1738-msgid "Adjust automatically"
1739-msgstr ""
1740-
1741-#: ../plugins/brightness//PageComponent.qml:65
1742-msgid "Brightens and dims the display to suit the surroundings."
1743-msgstr ""
1744-
1745-#: ../plugins/brightness//BrightnessSlider.qml:51
1746-#: ../plugins/battery//PageComponent.qml:296
1747-msgid "Display brightness"
1748-msgstr ""
1749-
1750+#. TRANSLATORS: This is a keyword or name for the system-update plugin which is used while searching
1751+#: ../plugins/system-update//PageComponent.qml:36
1752+#: /storage/1/work/phablet/settings/lp1318008/build/po/settings.js:124
1753+msgid "Updates"
1754+msgstr ""
1755+
1756+#: ../plugins/system-update//PageComponent.qml:87
1757+msgid "Update System"
1758+msgstr ""
1759+
1760+#: ../plugins/system-update//PageComponent.qml:88
1761+msgid "The phone needs to restart to install the system update."
1762+msgstr ""
1763+
1764+#: ../plugins/system-update//PageComponent.qml:88
1765+msgid "Connect the phone to power before installing the system update."
1766+msgstr ""
1767+
1768+#: ../plugins/system-update//PageComponent.qml:91
1769+msgid "Install & Restart"
1770+msgstr ""
1771+
1772+#: ../plugins/system-update//PageComponent.qml:101
1773+msgid "Not Now"
1774+msgstr ""
1775+
1776+#: ../plugins/system-update//PageComponent.qml:107
1777+msgid "Install"
1778+msgstr ""
1779+
1780+#: ../plugins/system-update//PageComponent.qml:128
1781+msgid "Software is up to date"
1782+msgstr ""
1783+
1784+#: ../plugins/system-update//PageComponent.qml:239
1785+msgid "Checking for updates…"
1786+msgstr ""
1787+
1788+#: ../plugins/system-update//PageComponent.qml:257
1789+#, qt-format
1790+msgid "Install %1 update…"
1791+msgid_plural "Install %1 updates…"
1792+msgstr[0] ""
1793+msgstr[1] ""
1794+
1795+#: ../plugins/system-update//PageComponent.qml:258
1796+#, qt-format
1797+msgid "Install %1 update"
1798+msgid_plural "Install %1 updates"
1799+msgstr[0] ""
1800+msgstr[1] ""
1801+
1802+#: ../plugins/system-update//PageComponent.qml:259
1803+msgid "Pause All"
1804+msgstr ""
1805+
1806+#: ../plugins/system-update//PageComponent.qml:313
1807+msgid "Retry"
1808+msgstr ""
1809+
1810+#: ../plugins/system-update//PageComponent.qml:329
1811+msgid "Download"
1812+msgstr ""
1813+
1814+#: ../plugins/system-update//PageComponent.qml:329
1815+msgid "Update"
1816+msgstr ""
1817+
1818+#: ../plugins/system-update//PageComponent.qml:330
1819+msgid "Resume"
1820+msgstr ""
1821+
1822+#: ../plugins/system-update//PageComponent.qml:331
1823+msgid "Pause"
1824+msgstr ""
1825+
1826+#: ../plugins/system-update//PageComponent.qml:389
1827+msgid "Installing"
1828+msgstr ""
1829+
1830+#: ../plugins/system-update//PageComponent.qml:422
1831+msgid "Installed"
1832+msgstr ""
1833+
1834+#: ../plugins/system-update//PageComponent.qml:447
1835+msgid "Version: "
1836+msgstr ""
1837+
1838+#: ../plugins/system-update//PageComponent.qml:469
1839+msgid "Sign in to Ubuntu One to receive updates for apps."
1840+msgstr ""
1841+
1842+#: ../plugins/system-update//PageComponent.qml:478
1843+msgid "Sign In…"
1844+msgstr ""
1845+
1846+#: ../plugins/system-update//PageComponent.qml:545
1847+msgid "Installing update…"
1848+msgstr ""
1849+
1850+#: ../plugins/system-update//PageComponent.qml:560
1851+#: ../plugins/system-update//Configuration.qml:30
1852+msgid "Auto download"
1853+msgstr ""
1854+
1855+#: ../plugins/system-update//PageComponent.qml:565
1856+msgid "On wi-fi"
1857+msgstr ""
1858+
1859+#: ../plugins/system-update//PageComponent.qml:567
1860+msgid "Always"
1861+msgstr ""
1862+
1863+#: ../plugins/system-update//PageComponent.qml:582
1864+msgid " bytes"
1865+msgstr ""
1866+
1867+#: ../plugins/system-update//PageComponent.qml:585
1868+msgid " KiB"
1869+msgstr ""
1870+
1871+#: ../plugins/system-update//PageComponent.qml:588
1872+msgid " MiB"
1873+msgstr ""
1874+
1875+#: ../plugins/system-update//PageComponent.qml:591
1876+msgid " GiB"
1877+msgstr ""
1878+
1879+#: ../plugins/system-update//Configuration.qml:35
1880+msgid "Download future updates automatically:"
1881+msgstr ""
1882+
1883+#: ../plugins/system-update//Configuration.qml:54
1884+msgid "When on wi-fi"
1885+msgstr ""
1886+
1887+#: ../plugins/system-update//Configuration.qml:55
1888+msgid "On any data connection"
1889+msgstr ""
1890+
1891+#: ../plugins/system-update//Configuration.qml:56
1892+msgid "Data charges may apply."
1893+msgstr ""
1894+
1895+#: ../plugins/bluetooth//ProvidePasskeyDialog.qml:28
1896 #: ../plugins/bluetooth//ProvidePinCodeDialog.qml:28
1897-#: ../plugins/bluetooth//ProvidePasskeyDialog.qml:28
1898 #: ../plugins/bluetooth//ConfirmPasskeyDialog.qml:28
1899 msgid "Bluetooth Pairing Request"
1900 msgstr ""
1901
1902+#: ../plugins/bluetooth//ProvidePasskeyDialog.qml:36
1903 #: ../plugins/bluetooth//ProvidePinCodeDialog.qml:36
1904-#: ../plugins/bluetooth//ProvidePasskeyDialog.qml:36
1905 #, qt-format
1906 msgid "PIN for '%1'"
1907 msgstr ""
1908
1909+#: ../plugins/bluetooth//ProvidePasskeyDialog.qml:62
1910 #: ../plugins/bluetooth//ProvidePinCodeDialog.qml:63
1911-#: ../plugins/bluetooth//ProvidePasskeyDialog.qml:62
1912 msgid "Pair"
1913 msgstr ""
1914
1915@@ -1170,7 +1310,7 @@
1916 #: ../plugins/bluetooth//PageComponent.qml:32
1917 #: ../plugins/bluetooth//PageComponent.qml:147
1918 #: ../plugins/battery//PageComponent.qml:363
1919-#: /tmp/ubuntu-system-settings/obj-x86_64-linux-gnu/po/settings.js:124
1920+#: /storage/1/work/phablet/settings/lp1318008/build/po/settings.js:134
1921 msgid "Bluetooth"
1922 msgstr ""
1923
1924@@ -1317,27 +1457,9 @@
1925 msgid "Confirm PIN"
1926 msgstr ""
1927
1928-#: ../plugins/battery//SleepValues.qml:77
1929-msgid "Lock the phone when it's not in use:"
1930-msgstr ""
1931-
1932-#: ../plugins/battery//SleepValues.qml:77
1933-msgid "Put the phone to sleep when it is not in use:"
1934-msgstr ""
1935-
1936-#: ../plugins/battery//SleepValues.qml:117
1937-msgid ""
1938-"Shorter times are more secure. Phone won't lock during calls or video "
1939-"playback."
1940-msgstr ""
1941-
1942-#: ../plugins/battery//SleepValues.qml:117
1943-msgid "Phone won’t sleep during calls or video playback."
1944-msgstr ""
1945-
1946 #. TRANSLATORS: This is a keyword or name for the battery plugin which is used while searching
1947 #: ../plugins/battery//PageComponent.qml:34
1948-#: /tmp/ubuntu-system-settings/obj-x86_64-linux-gnu/po/settings.js:130
1949+#: /storage/1/work/phablet/settings/lp1318008/build/po/settings.js:140
1950 msgid "Battery"
1951 msgstr ""
1952
1953@@ -1409,6 +1531,11 @@
1954 msgid "Ways to reduce battery use:"
1955 msgstr ""
1956
1957+#: ../plugins/battery//PageComponent.qml:296
1958+#: ../plugins/brightness//BrightnessSlider.qml:51
1959+msgid "Display brightness"
1960+msgstr ""
1961+
1962 #: ../plugins/battery//PageComponent.qml:394
1963 msgid "GPS"
1964 msgstr ""
1965@@ -1417,17 +1544,27 @@
1966 msgid "Accurate location detection requires GPS and/or Wi-Fi."
1967 msgstr ""
1968
1969-#: ../plugins/background//Preview.qml:70
1970-msgid "Preview"
1971-msgstr ""
1972-
1973-#: ../plugins/background//Preview.qml:101
1974-msgid "Remove image"
1975+#: ../plugins/battery//SleepValues.qml:77
1976+msgid "Lock the phone when it's not in use:"
1977+msgstr ""
1978+
1979+#: ../plugins/battery//SleepValues.qml:77
1980+msgid "Put the phone to sleep when it is not in use:"
1981+msgstr ""
1982+
1983+#: ../plugins/battery//SleepValues.qml:117
1984+msgid ""
1985+"Shorter times are more secure. Phone won't lock during calls or video "
1986+"playback."
1987+msgstr ""
1988+
1989+#: ../plugins/battery//SleepValues.qml:117
1990+msgid "Phone won’t sleep during calls or video playback."
1991 msgstr ""
1992
1993 #. TRANSLATORS: This is a keyword or name for the background plugin which is used while searching
1994 #: ../plugins/background//MainPage.qml:38
1995-#: /tmp/ubuntu-system-settings/obj-x86_64-linux-gnu/po/settings.js:136
1996+#: /storage/1/work/phablet/settings/lp1318008/build/po/settings.js:146
1997 msgid "Background"
1998 msgstr ""
1999
2000@@ -1439,200 +1576,26 @@
2001 msgid "Custom"
2002 msgstr ""
2003
2004-#: ../plugins/about//Version.qml:36
2005-msgid "OS Build Details"
2006-msgstr ""
2007-
2008-#: ../plugins/about//Version.qml:65
2009-msgid "OS build number"
2010-msgstr ""
2011-
2012-#: ../plugins/about//Version.qml:71
2013-msgid "Ubuntu Image part"
2014-msgstr ""
2015-
2016-#: ../plugins/about//Version.qml:79
2017-msgid "Ubuntu build description"
2018-msgstr ""
2019-
2020-#: ../plugins/about//Version.qml:85
2021-msgid "Device Image part"
2022-msgstr ""
2023-
2024-#: ../plugins/about//Version.qml:92
2025-msgid "Device build description"
2026-msgstr ""
2027-
2028-#: ../plugins/about//Version.qml:99
2029-msgid "Customization Image part"
2030-msgstr ""
2031-
2032-#: ../plugins/about//Storage.qml:33 ../plugins/about//PageComponent.qml:143
2033-msgid "Storage"
2034-msgstr ""
2035-
2036-#: ../plugins/about//Storage.qml:87
2037-msgid "Used by Ubuntu"
2038-msgstr ""
2039-
2040-#: ../plugins/about//Storage.qml:88
2041-msgid "Videos"
2042-msgstr ""
2043-
2044-#: ../plugins/about//Storage.qml:89
2045-msgid "Audio"
2046-msgstr ""
2047-
2048-#: ../plugins/about//Storage.qml:90
2049-msgid "Pictures"
2050-msgstr ""
2051-
2052-#: ../plugins/about//Storage.qml:91
2053-msgid "Other files"
2054-msgstr ""
2055-
2056-#: ../plugins/about//Storage.qml:92
2057-msgid "Used by apps"
2058-msgstr ""
2059-
2060-#: ../plugins/about//Storage.qml:142
2061-msgid "Total storage"
2062-msgstr ""
2063-
2064-#: ../plugins/about//Storage.qml:154
2065-msgid "Free space"
2066-msgstr ""
2067-
2068-#: ../plugins/about//Storage.qml:174
2069-msgid "By name"
2070-msgstr ""
2071-
2072-#: ../plugins/about//Storage.qml:174
2073-msgid "By size"
2074-msgstr ""
2075-
2076-#: ../plugins/about//Software.qml:11 ../plugins/about//PageComponent.qml:186
2077-msgid "Software licenses"
2078-msgstr ""
2079-
2080-#: ../plugins/about//PhoneNumbers.qml:31
2081-msgid "Phone number:"
2082-msgstr ""
2083-
2084-#: ../plugins/about//PhoneNumber.qml:36
2085-msgid "Phone number"
2086-msgstr ""
2087-
2088-#. TRANSLATORS: This is a keyword or name for the about plugin which is used while searching
2089-#: ../plugins/about//PageComponent.qml:34
2090-#: /tmp/ubuntu-system-settings/obj-x86_64-linux-gnu/po/settings.js:152
2091-msgid "About this phone"
2092-msgstr ""
2093-
2094-#: ../plugins/about//PageComponent.qml:109
2095-msgid "Serial"
2096-msgstr ""
2097-
2098-#: ../plugins/about//PageComponent.qml:124
2099-msgid "Wi-Fi address"
2100-msgstr ""
2101-
2102-#: ../plugins/about//PageComponent.qml:132
2103-msgid "Bluetooth address"
2104-msgstr ""
2105-
2106-#: ../plugins/about//PageComponent.qml:150
2107-msgid "Software:"
2108-msgstr ""
2109-
2110-#: ../plugins/about//PageComponent.qml:155
2111-msgid "OS"
2112-msgstr ""
2113-
2114-#: ../plugins/about//PageComponent.qml:164
2115-msgid "Last updated"
2116-msgstr ""
2117-
2118-#: ../plugins/about//PageComponent.qml:172
2119-msgid "Check for updates"
2120-msgstr ""
2121-
2122-#: ../plugins/about//PageComponent.qml:181
2123-msgid "Legal:"
2124-msgstr ""
2125-
2126-#: ../plugins/about//PageComponent.qml:194
2127-msgid "Regulatory info"
2128-msgstr ""
2129-
2130-#: ../plugins/about//PageComponent.qml:202
2131-msgid "Developer mode"
2132-msgstr ""
2133-
2134-#: ../plugins/about//License.qml:30
2135-msgid "Sorry, this license could not be displayed."
2136-msgstr ""
2137-
2138-#: ../plugins/about//DevMode.qml:35 ../plugins/about//DevMode.qml:88
2139-msgid "Developer Mode"
2140-msgstr ""
2141-
2142-#: ../plugins/about//DevMode.qml:82
2143-msgid ""
2144-"In Developer Mode, anyone can access, change or delete anything on this "
2145-"phone by connecting it to another device."
2146-msgstr ""
2147-
2148-#: ../plugins/about//DevMode.qml:108
2149-msgid "You need a PIN code or passphrase set to use Developer Mode."
2150-msgstr ""
2151-
2152-#: ../plugins/security-privacy//diagnostics//PageComponent.qml:51
2153-msgid "Privacy policy"
2154-msgstr ""
2155-
2156-#: ../plugins/security-privacy//diagnostics//PageComponent.qml:59
2157-msgid "Report to Canonical:"
2158-msgstr ""
2159-
2160-#: ../plugins/security-privacy//diagnostics//PageComponent.qml:73
2161-msgid "App crashes and errors"
2162-msgstr ""
2163-
2164-#: ../plugins/security-privacy//diagnostics//PageComponent.qml:79
2165-msgid "Previous error reports"
2166-msgstr ""
2167-
2168-#: ../plugins/security-privacy//diagnostics//PageComponent.qml:90
2169-msgid "Includes info about what an app was doing when it failed."
2170-msgstr ""
2171-
2172-#: ../plugins/cellular//Components//SingleSim.qml:37
2173-#: ../plugins/cellular//Components//MultiSim.qml:42
2174-msgid "Hotspot disabled because Wi-Fi is off."
2175-msgstr ""
2176-
2177-#: ../plugins/cellular//Components//SingleSim.qml:52
2178-#: ../plugins/cellular//Components//MultiSim.qml:58
2179-msgid "Data usage statistics"
2180-msgstr ""
2181-
2182-#: ../plugins/cellular//Components//SingleSim.qml:58
2183-#: ../plugins/cellular//Components//SingleSim.qml:66
2184-#: ../plugins/cellular//Components//NoSim.qml:47
2185-msgid "Carrier"
2186-msgstr ""
2187-
2188-#: ../plugins/cellular//Components//SingleSim.qml:72
2189-msgid "APN"
2190-msgstr ""
2191-
2192-#: ../plugins/cellular//Components//SimEditor.qml:77
2193-msgid "Edit SIM Name"
2194-msgstr ""
2195-
2196-#: ../plugins/cellular//Components//SimEditor.qml:200
2197-msgid "OK"
2198+#: ../plugins/background//Preview.qml:70
2199+msgid "Preview"
2200+msgstr ""
2201+
2202+#: ../plugins/background//Preview.qml:101
2203+msgid "Remove image"
2204+msgstr ""
2205+
2206+#. TRANSLATORS: This is a keyword or name for the brightness plugin which is used while searching
2207+#: ../plugins/brightness//PageComponent.qml:32
2208+#: /storage/1/work/phablet/settings/lp1318008/build/po/settings.js:154
2209+msgid "Brightness"
2210+msgstr ""
2211+
2212+#: ../plugins/brightness//PageComponent.qml:52
2213+msgid "Adjust automatically"
2214+msgstr ""
2215+
2216+#: ../plugins/brightness//PageComponent.qml:65
2217+msgid "Brightens and dims the display to suit the surroundings."
2218 msgstr ""
2219
2220 #: ../plugins/cellular//Components//NoSim.qml:29
2221@@ -1659,6 +1622,27 @@
2222 msgid "Data roaming"
2223 msgstr ""
2224
2225+#: ../plugins/cellular//Components//NoSim.qml:47
2226+#: ../plugins/cellular//Components//SingleSim.qml:58
2227+#: ../plugins/cellular//Components//SingleSim.qml:66
2228+msgid "Carrier"
2229+msgstr ""
2230+
2231+#: ../plugins/cellular//Components//CellularSingleSim.qml:52
2232+#: ../plugins/cellular//Components//CellularMultiSim.qml:139
2233+msgid "2G/3G (faster)"
2234+msgstr ""
2235+
2236+#: ../plugins/cellular//Components//MultiSim.qml:42
2237+#: ../plugins/cellular//Components//SingleSim.qml:37
2238+msgid "Hotspot disabled because Wi-Fi is off."
2239+msgstr ""
2240+
2241+#: ../plugins/cellular//Components//MultiSim.qml:58
2242+#: ../plugins/cellular//Components//SingleSim.qml:52
2243+msgid "Data usage statistics"
2244+msgstr ""
2245+
2246 #: ../plugins/cellular//Components//DefaultSim.qml:29
2247 msgid "Ask me each time"
2248 msgstr ""
2249@@ -1677,9 +1661,36 @@
2250 msgid "For messages, use:"
2251 msgstr ""
2252
2253-#: ../plugins/cellular//Components//CellularSingleSim.qml:52
2254-#: ../plugins/cellular//Components//CellularMultiSim.qml:139
2255-msgid "2G/3G (faster)"
2256+#: ../plugins/cellular//Components//SingleSim.qml:72
2257+msgid "APN"
2258+msgstr ""
2259+
2260+#: ../plugins/cellular//Components//SimEditor.qml:77
2261+msgid "Edit SIM Name"
2262+msgstr ""
2263+
2264+#: ../plugins/cellular//Components//SimEditor.qml:200
2265+msgid "OK"
2266+msgstr ""
2267+
2268+#: ../plugins/security-privacy//diagnostics//PageComponent.qml:51
2269+msgid "Privacy policy"
2270+msgstr ""
2271+
2272+#: ../plugins/security-privacy//diagnostics//PageComponent.qml:59
2273+msgid "Report to Canonical:"
2274+msgstr ""
2275+
2276+#: ../plugins/security-privacy//diagnostics//PageComponent.qml:73
2277+msgid "App crashes and errors"
2278+msgstr ""
2279+
2280+#: ../plugins/security-privacy//diagnostics//PageComponent.qml:79
2281+msgid "Previous error reports"
2282+msgstr ""
2283+
2284+#: ../plugins/security-privacy//diagnostics//PageComponent.qml:90
2285+msgid "Includes info about what an app was doing when it failed."
2286 msgstr ""
2287
2288 #: ../plugins/background//Components//AddRemove.qml:52
2289@@ -1701,10 +1712,6 @@
2290 msgid "Remove images…"
2291 msgstr ""
2292
2293-#: ../src/qml/MainWindow.qml:110
2294-msgid "System Settings"
2295-msgstr ""
2296-
2297 #: ../src/qml/MainWindow.qml:131
2298 msgid "Search"
2299 msgstr ""
2300@@ -1717,23 +1724,61 @@
2301 msgid "System"
2302 msgstr ""
2303
2304-#: ../wizard/qml/Pages//20-wifi.qml:27
2305-msgid "Connect to Wi‑Fi"
2306-msgstr ""
2307-
2308-#: ../wizard/qml/Pages//20-wifi.qml:146
2309-msgid "Available networks"
2310-msgstr ""
2311-
2312-#: ../wizard/qml/Pages//20-wifi.qml:195 ../wizard/qml/Pages//10-welcome.qml:85
2313+#: ../wizard/qml/Pages//15-passwd.qml:38
2314+msgid "Set lock security"
2315+msgstr ""
2316+
2317+#: ../wizard/qml/Pages//15-passwd.qml:97
2318+msgid "Swipe"
2319+msgstr ""
2320+
2321+#: ../wizard/qml/Pages//15-passwd.qml:147
2322+msgid "Those PIN codes don't match."
2323+msgstr ""
2324+
2325+#: ../wizard/qml/Pages//15-passwd.qml:149
2326+msgid "Those passphrases don't match."
2327+msgstr ""
2328+
2329+#: ../wizard/qml/Pages//15-passwd.qml:157
2330+msgid "PIN code must be at least four digits long."
2331+msgstr ""
2332+
2333+#: ../wizard/qml/Pages//15-passwd.qml:159
2334+msgid "Passphrase must be at least four characters long."
2335+msgstr ""
2336+
2337+#: ../wizard/qml/Pages//15-passwd.qml:170
2338+#: ../wizard/qml/Pages//30-location.qml:79
2339 #: ../wizard/qml/Pages//40-reporting.qml:50
2340-#: ../wizard/qml/Pages//30-location.qml:79
2341-#: ../wizard/qml/Pages//15-passwd.qml:170
2342+#: ../wizard/qml/Pages//10-welcome.qml:85 ../wizard/qml/Pages//20-wifi.qml:195
2343 msgid "Continue"
2344 msgstr ""
2345
2346-#: ../wizard/qml/Pages//20-wifi.qml:195 ../wizard/qml/Pages//no-sim.qml:50
2347-msgid "Skip"
2348+#: ../wizard/qml/Pages//terms.qml:25
2349+msgid "Terms & Conditions"
2350+msgstr ""
2351+
2352+#: ../wizard/qml/Pages//30-location.qml:60
2353+msgid "Use your mobile network and Wi-Fi to work out where you are"
2354+msgstr ""
2355+
2356+#: ../wizard/qml/Pages//30-location.qml:69
2357+msgid ""
2358+"I have read and agreed to the HERE <a href='terms.qml'>terms and conditions</"
2359+"a>"
2360+msgstr ""
2361+
2362+#: ../wizard/qml/Pages//40-reporting.qml:22
2363+msgid "Bug reporting"
2364+msgstr ""
2365+
2366+#: ../wizard/qml/Pages//40-reporting.qml:35
2367+msgid "Your phone is set up to automatically report errors to Canonical."
2368+msgstr ""
2369+
2370+#: ../wizard/qml/Pages//40-reporting.qml:43
2371+msgid "This can be disabled in System Settings."
2372 msgstr ""
2373
2374 #: ../wizard/qml/Pages//10-welcome.qml:25
2375@@ -1748,22 +1793,6 @@
2376 msgid "Let’s get started."
2377 msgstr ""
2378
2379-#: ../wizard/qml/Pages//terms.qml:25
2380-msgid "Terms & Conditions"
2381-msgstr ""
2382-
2383-#: ../wizard/qml/Pages//no-sim.qml:22
2384-msgid "Add a SIM card"
2385-msgstr ""
2386-
2387-#: ../wizard/qml/Pages//no-sim.qml:33
2388-msgid "Please insert a SIM card before you continue."
2389-msgstr ""
2390-
2391-#: ../wizard/qml/Pages//no-sim.qml:35
2392-msgid "Without it, you won’t be able to make calls or use text messaging."
2393-msgstr ""
2394-
2395 #: ../wizard/qml/Pages//80-finished.qml:22
2396 msgid "All done"
2397 msgstr ""
2398@@ -1780,50 +1809,28 @@
2399 msgid "Finish"
2400 msgstr ""
2401
2402-#: ../wizard/qml/Pages//40-reporting.qml:22
2403-msgid "Bug reporting"
2404-msgstr ""
2405-
2406-#: ../wizard/qml/Pages//40-reporting.qml:35
2407-msgid "Your phone is set up to automatically report errors to Canonical."
2408-msgstr ""
2409-
2410-#: ../wizard/qml/Pages//40-reporting.qml:43
2411-msgid "This can be disabled in System Settings."
2412-msgstr ""
2413-
2414-#: ../wizard/qml/Pages//30-location.qml:60
2415-msgid "Use your mobile network and Wi-Fi to work out where you are"
2416-msgstr ""
2417-
2418-#: ../wizard/qml/Pages//30-location.qml:69
2419-msgid ""
2420-"I have read and agreed to the HERE <a href='terms.qml'>terms and conditions</"
2421-"a>"
2422-msgstr ""
2423-
2424-#: ../wizard/qml/Pages//15-passwd.qml:38
2425-msgid "Set lock security"
2426-msgstr ""
2427-
2428-#: ../wizard/qml/Pages//15-passwd.qml:97
2429-msgid "Swipe"
2430-msgstr ""
2431-
2432-#: ../wizard/qml/Pages//15-passwd.qml:147
2433-msgid "Those PIN codes don't match."
2434-msgstr ""
2435-
2436-#: ../wizard/qml/Pages//15-passwd.qml:149
2437-msgid "Those passphrases don't match."
2438-msgstr ""
2439-
2440-#: ../wizard/qml/Pages//15-passwd.qml:157
2441-msgid "PIN code must be at least four digits long."
2442-msgstr ""
2443-
2444-#: ../wizard/qml/Pages//15-passwd.qml:159
2445-msgid "Passphrase must be at least four characters long."
2446+#: ../wizard/qml/Pages//20-wifi.qml:27
2447+msgid "Connect to Wi‑Fi"
2448+msgstr ""
2449+
2450+#: ../wizard/qml/Pages//20-wifi.qml:146
2451+msgid "Available networks"
2452+msgstr ""
2453+
2454+#: ../wizard/qml/Pages//20-wifi.qml:195 ../wizard/qml/Pages//no-sim.qml:50
2455+msgid "Skip"
2456+msgstr ""
2457+
2458+#: ../wizard/qml/Pages//no-sim.qml:22
2459+msgid "Add a SIM card"
2460+msgstr ""
2461+
2462+#: ../wizard/qml/Pages//no-sim.qml:33
2463+msgid "Please insert a SIM card before you continue."
2464+msgstr ""
2465+
2466+#: ../wizard/qml/Pages//no-sim.qml:35
2467+msgid "Without it, you won’t be able to make calls or use text messaging."
2468 msgstr ""
2469
2470 #: ../wizard/qml/Components//Page.qml:84
2471@@ -1840,290 +1847,286 @@
2472 msgid "%1 〉"
2473 msgstr ""
2474
2475+#. TRANSLATORS: This is a keyword or name for the example plugin which is used while searching
2476+#: /storage/1/work/phablet/settings/lp1318008/build/po/settings.js:2
2477+msgid "Example"
2478+msgstr ""
2479+
2480+#. TRANSLATORS: This is a keyword or name for the example plugin which is used while searching
2481+#: /storage/1/work/phablet/settings/lp1318008/build/po/settings.js:4
2482+msgid "example"
2483+msgstr ""
2484+
2485+#. TRANSLATORS: This is a keyword or name for the example plugin which is used while searching
2486+#: /storage/1/work/phablet/settings/lp1318008/build/po/settings.js:6
2487+msgid "test"
2488+msgstr ""
2489+
2490+#. TRANSLATORS: This is a keyword or name for the example plugin which is used while searching
2491+#: /storage/1/work/phablet/settings/lp1318008/build/po/settings.js:8
2492+msgid "sample"
2493+msgstr ""
2494+
2495 #. TRANSLATORS: This is a keyword or name for the wifi plugin which is used while searching
2496 #. TRANSLATORS: This is a keyword or name for the cellular plugin which is used while searching
2497-#: /tmp/ubuntu-system-settings/obj-x86_64-linux-gnu/po/settings.js:4
2498-#: /tmp/ubuntu-system-settings/obj-x86_64-linux-gnu/po/settings.js:110
2499+#: /storage/1/work/phablet/settings/lp1318008/build/po/settings.js:12
2500+#: /storage/1/work/phablet/settings/lp1318008/build/po/settings.js:32
2501 msgid "network"
2502 msgstr ""
2503
2504 #. TRANSLATORS: This is a keyword or name for the wifi plugin which is used while searching
2505-#: /tmp/ubuntu-system-settings/obj-x86_64-linux-gnu/po/settings.js:6
2506+#: /storage/1/work/phablet/settings/lp1318008/build/po/settings.js:14
2507 msgid "wireless"
2508 msgstr ""
2509
2510 #. TRANSLATORS: This is a keyword or name for the wifi plugin which is used while searching
2511-#: /tmp/ubuntu-system-settings/obj-x86_64-linux-gnu/po/settings.js:8
2512+#: /storage/1/work/phablet/settings/lp1318008/build/po/settings.js:16
2513 msgid "wifi"
2514 msgstr ""
2515
2516 #. TRANSLATORS: This is a keyword or name for the wifi plugin which is used while searching
2517-#: /tmp/ubuntu-system-settings/obj-x86_64-linux-gnu/po/settings.js:10
2518+#: /storage/1/work/phablet/settings/lp1318008/build/po/settings.js:18
2519 msgid "wi-fi"
2520 msgstr ""
2521
2522 #. TRANSLATORS: This is a keyword or name for the wifi plugin which is used while searching
2523-#. TRANSLATORS: This is a keyword or name for the time-date plugin which is used while searching
2524-#. TRANSLATORS: This is a keyword or name for the system-update plugin which is used while searching
2525+#. TRANSLATORS: This is a keyword or name for the reset plugin which is used while searching
2526+#. TRANSLATORS: This is a keyword or name for the cellular plugin which is used while searching
2527+#. TRANSLATORS: This is a keyword or name for the language plugin which is used while searching
2528+#. TRANSLATORS: This is a keyword or name for the accessibility plugin which is used while searching
2529 #. TRANSLATORS: This is a keyword or name for the sound plugin which is used while searching
2530-#. TRANSLATORS: This is a keyword or name for the security-privacy plugin which is used while searching
2531-#. TRANSLATORS: This is a keyword or name for the reset plugin which is used while searching
2532 #. TRANSLATORS: This is a keyword or name for the phone plugin which is used while searching
2533 #. TRANSLATORS: This is a keyword or name for the notifications plugin which is used while searching
2534-#. TRANSLATORS: This is a keyword or name for the language plugin which is used while searching
2535-#. TRANSLATORS: This is a keyword or name for the cellular plugin which is used while searching
2536+#. TRANSLATORS: This is a keyword or name for the time-date plugin which is used while searching
2537+#. TRANSLATORS: This is a keyword or name for the security-privacy plugin which is used while searching
2538+#. TRANSLATORS: This is a keyword or name for the system-update plugin which is used while searching
2539+#. TRANSLATORS: This is a keyword or name for the bluetooth plugin which is used while searching
2540 #. TRANSLATORS: This is a keyword or name for the brightness plugin which is used while searching
2541-#. TRANSLATORS: This is a keyword or name for the bluetooth plugin which is used while searching
2542-#. TRANSLATORS: This is a keyword or name for the accessibility plugin which is used while searching
2543-#: /tmp/ubuntu-system-settings/obj-x86_64-linux-gnu/po/settings.js:12
2544-#: /tmp/ubuntu-system-settings/obj-x86_64-linux-gnu/po/settings.js:22
2545-#: /tmp/ubuntu-system-settings/obj-x86_64-linux-gnu/po/settings.js:34
2546-#: /tmp/ubuntu-system-settings/obj-x86_64-linux-gnu/po/settings.js:40
2547-#: /tmp/ubuntu-system-settings/obj-x86_64-linux-gnu/po/settings.js:48
2548-#: /tmp/ubuntu-system-settings/obj-x86_64-linux-gnu/po/settings.js:54
2549-#: /tmp/ubuntu-system-settings/obj-x86_64-linux-gnu/po/settings.js:60
2550-#: /tmp/ubuntu-system-settings/obj-x86_64-linux-gnu/po/settings.js:78
2551-#: /tmp/ubuntu-system-settings/obj-x86_64-linux-gnu/po/settings.js:88
2552-#: /tmp/ubuntu-system-settings/obj-x86_64-linux-gnu/po/settings.js:116
2553-#: /tmp/ubuntu-system-settings/obj-x86_64-linux-gnu/po/settings.js:122
2554-#: /tmp/ubuntu-system-settings/obj-x86_64-linux-gnu/po/settings.js:128
2555-#: /tmp/ubuntu-system-settings/obj-x86_64-linux-gnu/po/settings.js:150
2556+#: /storage/1/work/phablet/settings/lp1318008/build/po/settings.js:20
2557+#: /storage/1/work/phablet/settings/lp1318008/build/po/settings.js:26
2558+#: /storage/1/work/phablet/settings/lp1318008/build/po/settings.js:38
2559+#: /storage/1/work/phablet/settings/lp1318008/build/po/settings.js:48
2560+#: /storage/1/work/phablet/settings/lp1318008/build/po/settings.js:56
2561+#: /storage/1/work/phablet/settings/lp1318008/build/po/settings.js:62
2562+#: /storage/1/work/phablet/settings/lp1318008/build/po/settings.js:68
2563+#: /storage/1/work/phablet/settings/lp1318008/build/po/settings.js:102
2564+#: /storage/1/work/phablet/settings/lp1318008/build/po/settings.js:112
2565+#: /storage/1/work/phablet/settings/lp1318008/build/po/settings.js:120
2566+#: /storage/1/work/phablet/settings/lp1318008/build/po/settings.js:132
2567+#: /storage/1/work/phablet/settings/lp1318008/build/po/settings.js:138
2568+#: /storage/1/work/phablet/settings/lp1318008/build/po/settings.js:158
2569 msgid "settings"
2570 msgstr ""
2571
2572-#. TRANSLATORS: This is a keyword or name for the time-date plugin which is used while searching
2573-#: /tmp/ubuntu-system-settings/obj-x86_64-linux-gnu/po/settings.js:16
2574-msgid "time"
2575-msgstr ""
2576-
2577-#. TRANSLATORS: This is a keyword or name for the time-date plugin which is used while searching
2578-#: /tmp/ubuntu-system-settings/obj-x86_64-linux-gnu/po/settings.js:18
2579-msgid "date"
2580-msgstr ""
2581-
2582-#. TRANSLATORS: This is a keyword or name for the time-date plugin which is used while searching
2583-#: /tmp/ubuntu-system-settings/obj-x86_64-linux-gnu/po/settings.js:20
2584-msgid "timezone"
2585-msgstr ""
2586-
2587-#. TRANSLATORS: This is a keyword or name for the update-notification plugin which is used while searching
2588-#: /tmp/ubuntu-system-settings/obj-x86_64-linux-gnu/po/settings.js:24
2589-msgid "Updates available"
2590-msgstr ""
2591-
2592-#. TRANSLATORS: This is a keyword or name for the system-update plugin which is used while searching
2593-#: /tmp/ubuntu-system-settings/obj-x86_64-linux-gnu/po/settings.js:28
2594-msgid "system"
2595-msgstr ""
2596-
2597-#. TRANSLATORS: This is a keyword or name for the system-update plugin which is used while searching
2598-#. TRANSLATORS: This is a keyword or name for the notifications plugin which is used while searching
2599-#: /tmp/ubuntu-system-settings/obj-x86_64-linux-gnu/po/settings.js:30
2600-#: /tmp/ubuntu-system-settings/obj-x86_64-linux-gnu/po/settings.js:74
2601-msgid "software"
2602-msgstr ""
2603-
2604-#. TRANSLATORS: This is a keyword or name for the system-update plugin which is used while searching
2605-#: /tmp/ubuntu-system-settings/obj-x86_64-linux-gnu/po/settings.js:32
2606-msgid "update"
2607+#. TRANSLATORS: This is a keyword or name for the reset plugin which is used while searching
2608+#: /storage/1/work/phablet/settings/lp1318008/build/po/settings.js:24
2609+msgid "reset"
2610+msgstr ""
2611+
2612+#. TRANSLATORS: This is a keyword or name for the cellular plugin which is used while searching
2613+#: /storage/1/work/phablet/settings/lp1318008/build/po/settings.js:30
2614+msgid "cellular"
2615+msgstr ""
2616+
2617+#. TRANSLATORS: This is a keyword or name for the cellular plugin which is used while searching
2618+#: /storage/1/work/phablet/settings/lp1318008/build/po/settings.js:34
2619+msgid "mobile"
2620+msgstr ""
2621+
2622+#. TRANSLATORS: This is a keyword or name for the cellular plugin which is used while searching
2623+#: /storage/1/work/phablet/settings/lp1318008/build/po/settings.js:36
2624+msgid "gsm"
2625+msgstr ""
2626+
2627+#. TRANSLATORS: This is a keyword or name for the language plugin which is used while searching
2628+#: /storage/1/work/phablet/settings/lp1318008/build/po/settings.js:42
2629+msgid "language"
2630+msgstr ""
2631+
2632+#. TRANSLATORS: This is a keyword or name for the language plugin which is used while searching
2633+#: /storage/1/work/phablet/settings/lp1318008/build/po/settings.js:44
2634+msgid "lang"
2635+msgstr ""
2636+
2637+#. TRANSLATORS: This is a keyword or name for the language plugin which is used while searching
2638+#: /storage/1/work/phablet/settings/lp1318008/build/po/settings.js:46
2639+msgid "i18n"
2640+msgstr ""
2641+
2642+#. TRANSLATORS: This is a keyword or name for the accessibility plugin which is used while searching
2643+#: /storage/1/work/phablet/settings/lp1318008/build/po/settings.js:50
2644+msgid "Accessibility"
2645+msgstr ""
2646+
2647+#. TRANSLATORS: This is a keyword or name for the accessibility plugin which is used while searching
2648+#: /storage/1/work/phablet/settings/lp1318008/build/po/settings.js:52
2649+msgid "accessibility"
2650+msgstr ""
2651+
2652+#. TRANSLATORS: This is a keyword or name for the accessibility plugin which is used while searching
2653+#: /storage/1/work/phablet/settings/lp1318008/build/po/settings.js:54
2654+msgid "a11y"
2655 msgstr ""
2656
2657 #. TRANSLATORS: This is a keyword or name for the sound plugin which is used while searching
2658-#: /tmp/ubuntu-system-settings/obj-x86_64-linux-gnu/po/settings.js:38
2659+#: /storage/1/work/phablet/settings/lp1318008/build/po/settings.js:60
2660 msgid "sound"
2661 msgstr ""
2662
2663-#. TRANSLATORS: This is a keyword or name for the security-privacy plugin which is used while searching
2664-#: /tmp/ubuntu-system-settings/obj-x86_64-linux-gnu/po/settings.js:44
2665-msgid "security"
2666-msgstr ""
2667-
2668-#. TRANSLATORS: This is a keyword or name for the security-privacy plugin which is used while searching
2669-#: /tmp/ubuntu-system-settings/obj-x86_64-linux-gnu/po/settings.js:46
2670-msgid "privacy"
2671-msgstr ""
2672-
2673-#. TRANSLATORS: This is a keyword or name for the reset plugin which is used while searching
2674-#: /tmp/ubuntu-system-settings/obj-x86_64-linux-gnu/po/settings.js:52
2675-msgid "reset"
2676-msgstr ""
2677-
2678 #. TRANSLATORS: This is a keyword or name for the phone plugin which is used while searching
2679-#: /tmp/ubuntu-system-settings/obj-x86_64-linux-gnu/po/settings.js:58
2680+#: /storage/1/work/phablet/settings/lp1318008/build/po/settings.js:66
2681 msgid "phone"
2682 msgstr ""
2683
2684+#. TRANSLATORS: This is a keyword or name for the about plugin which is used while searching
2685+#: /storage/1/work/phablet/settings/lp1318008/build/po/settings.js:72
2686+msgid "about"
2687+msgstr ""
2688+
2689+#. TRANSLATORS: This is a keyword or name for the about plugin which is used while searching
2690+#: /storage/1/work/phablet/settings/lp1318008/build/po/settings.js:74
2691+msgid "device"
2692+msgstr ""
2693+
2694+#. TRANSLATORS: This is a keyword or name for the about plugin which is used while searching
2695+#: /storage/1/work/phablet/settings/lp1318008/build/po/settings.js:76
2696+msgid "info"
2697+msgstr ""
2698+
2699 #. TRANSLATORS: This is a keyword or name for the orientation-lock plugin which is used while searching
2700-#: /tmp/ubuntu-system-settings/obj-x86_64-linux-gnu/po/settings.js:62
2701+#: /storage/1/work/phablet/settings/lp1318008/build/po/settings.js:78
2702 msgid "Orientation Lock"
2703 msgstr ""
2704
2705 #. TRANSLATORS: This is a keyword or name for the orientation-lock plugin which is used while searching
2706-#: /tmp/ubuntu-system-settings/obj-x86_64-linux-gnu/po/settings.js:64
2707+#: /storage/1/work/phablet/settings/lp1318008/build/po/settings.js:80
2708 msgid "rotation"
2709 msgstr ""
2710
2711 #. TRANSLATORS: This is a keyword or name for the orientation-lock plugin which is used while searching
2712-#: /tmp/ubuntu-system-settings/obj-x86_64-linux-gnu/po/settings.js:66
2713+#: /storage/1/work/phablet/settings/lp1318008/build/po/settings.js:82
2714 msgid "orientation"
2715 msgstr ""
2716
2717 #. TRANSLATORS: This is a keyword or name for the orientation-lock plugin which is used while searching
2718-#: /tmp/ubuntu-system-settings/obj-x86_64-linux-gnu/po/settings.js:68
2719+#: /storage/1/work/phablet/settings/lp1318008/build/po/settings.js:84
2720 msgid "lock"
2721 msgstr ""
2722
2723 #. TRANSLATORS: This is a keyword or name for the orientation-lock plugin which is used while searching
2724-#: /tmp/ubuntu-system-settings/obj-x86_64-linux-gnu/po/settings.js:70
2725+#: /storage/1/work/phablet/settings/lp1318008/build/po/settings.js:86
2726 msgid "screen"
2727 msgstr ""
2728
2729-#. TRANSLATORS: This is a keyword or name for the notifications plugin which is used while searching
2730-#: /tmp/ubuntu-system-settings/obj-x86_64-linux-gnu/po/settings.js:76
2731-msgid "notifications"
2732-msgstr ""
2733-
2734-#. TRANSLATORS: This is a keyword or name for the language plugin which is used while searching
2735-#: /tmp/ubuntu-system-settings/obj-x86_64-linux-gnu/po/settings.js:82
2736-msgid "language"
2737-msgstr ""
2738-
2739-#. TRANSLATORS: This is a keyword or name for the language plugin which is used while searching
2740-#: /tmp/ubuntu-system-settings/obj-x86_64-linux-gnu/po/settings.js:84
2741-msgid "lang"
2742-msgstr ""
2743-
2744-#. TRANSLATORS: This is a keyword or name for the language plugin which is used while searching
2745-#: /tmp/ubuntu-system-settings/obj-x86_64-linux-gnu/po/settings.js:86
2746-msgid "i18n"
2747-msgstr ""
2748-
2749 #. TRANSLATORS: This is a keyword or name for the flight-mode plugin which is used while searching
2750-#: /tmp/ubuntu-system-settings/obj-x86_64-linux-gnu/po/settings.js:90
2751+#: /storage/1/work/phablet/settings/lp1318008/build/po/settings.js:88
2752 msgid "Flight Mode"
2753 msgstr ""
2754
2755 #. TRANSLATORS: This is a keyword or name for the flight-mode plugin which is used while searching
2756-#: /tmp/ubuntu-system-settings/obj-x86_64-linux-gnu/po/settings.js:92
2757+#: /storage/1/work/phablet/settings/lp1318008/build/po/settings.js:90
2758 msgid "flight"
2759 msgstr ""
2760
2761 #. TRANSLATORS: This is a keyword or name for the flight-mode plugin which is used while searching
2762-#: /tmp/ubuntu-system-settings/obj-x86_64-linux-gnu/po/settings.js:94
2763+#: /storage/1/work/phablet/settings/lp1318008/build/po/settings.js:92
2764 msgid "plane"
2765 msgstr ""
2766
2767 #. TRANSLATORS: This is a keyword or name for the flight-mode plugin which is used while searching
2768-#: /tmp/ubuntu-system-settings/obj-x86_64-linux-gnu/po/settings.js:96
2769+#: /storage/1/work/phablet/settings/lp1318008/build/po/settings.js:94
2770 msgid "offline"
2771 msgstr ""
2772
2773-#. TRANSLATORS: This is a keyword or name for the example plugin which is used while searching
2774-#: /tmp/ubuntu-system-settings/obj-x86_64-linux-gnu/po/settings.js:98
2775-msgid "Example"
2776-msgstr ""
2777-
2778-#. TRANSLATORS: This is a keyword or name for the example plugin which is used while searching
2779-#: /tmp/ubuntu-system-settings/obj-x86_64-linux-gnu/po/settings.js:100
2780-msgid "example"
2781-msgstr ""
2782-
2783-#. TRANSLATORS: This is a keyword or name for the example plugin which is used while searching
2784-#: /tmp/ubuntu-system-settings/obj-x86_64-linux-gnu/po/settings.js:102
2785-msgid "test"
2786-msgstr ""
2787-
2788-#. TRANSLATORS: This is a keyword or name for the example plugin which is used while searching
2789-#: /tmp/ubuntu-system-settings/obj-x86_64-linux-gnu/po/settings.js:104
2790-msgid "sample"
2791-msgstr ""
2792-
2793-#. TRANSLATORS: This is a keyword or name for the cellular plugin which is used while searching
2794-#: /tmp/ubuntu-system-settings/obj-x86_64-linux-gnu/po/settings.js:108
2795-msgid "cellular"
2796-msgstr ""
2797-
2798-#. TRANSLATORS: This is a keyword or name for the cellular plugin which is used while searching
2799-#: /tmp/ubuntu-system-settings/obj-x86_64-linux-gnu/po/settings.js:112
2800-msgid "mobile"
2801-msgstr ""
2802-
2803-#. TRANSLATORS: This is a keyword or name for the cellular plugin which is used while searching
2804-#: /tmp/ubuntu-system-settings/obj-x86_64-linux-gnu/po/settings.js:114
2805-msgid "gsm"
2806-msgstr ""
2807-
2808-#. TRANSLATORS: This is a keyword or name for the brightness plugin which is used while searching
2809-#: /tmp/ubuntu-system-settings/obj-x86_64-linux-gnu/po/settings.js:120
2810-msgid "brightness"
2811+#. TRANSLATORS: This is a keyword or name for the notifications plugin which is used while searching
2812+#. TRANSLATORS: This is a keyword or name for the system-update plugin which is used while searching
2813+#: /storage/1/work/phablet/settings/lp1318008/build/po/settings.js:98
2814+#: /storage/1/work/phablet/settings/lp1318008/build/po/settings.js:128
2815+msgid "software"
2816+msgstr ""
2817+
2818+#. TRANSLATORS: This is a keyword or name for the notifications plugin which is used while searching
2819+#: /storage/1/work/phablet/settings/lp1318008/build/po/settings.js:100
2820+msgid "notifications"
2821+msgstr ""
2822+
2823+#. TRANSLATORS: This is a keyword or name for the time-date plugin which is used while searching
2824+#: /storage/1/work/phablet/settings/lp1318008/build/po/settings.js:106
2825+msgid "time"
2826+msgstr ""
2827+
2828+#. TRANSLATORS: This is a keyword or name for the time-date plugin which is used while searching
2829+#: /storage/1/work/phablet/settings/lp1318008/build/po/settings.js:108
2830+msgid "date"
2831+msgstr ""
2832+
2833+#. TRANSLATORS: This is a keyword or name for the time-date plugin which is used while searching
2834+#: /storage/1/work/phablet/settings/lp1318008/build/po/settings.js:110
2835+msgid "timezone"
2836+msgstr ""
2837+
2838+#. TRANSLATORS: This is a keyword or name for the security-privacy plugin which is used while searching
2839+#: /storage/1/work/phablet/settings/lp1318008/build/po/settings.js:116
2840+msgid "security"
2841+msgstr ""
2842+
2843+#. TRANSLATORS: This is a keyword or name for the security-privacy plugin which is used while searching
2844+#: /storage/1/work/phablet/settings/lp1318008/build/po/settings.js:118
2845+msgid "privacy"
2846+msgstr ""
2847+
2848+#. TRANSLATORS: This is a keyword or name for the update-notification plugin which is used while searching
2849+#: /storage/1/work/phablet/settings/lp1318008/build/po/settings.js:122
2850+msgid "Updates available"
2851+msgstr ""
2852+
2853+#. TRANSLATORS: This is a keyword or name for the system-update plugin which is used while searching
2854+#: /storage/1/work/phablet/settings/lp1318008/build/po/settings.js:126
2855+msgid "system"
2856+msgstr ""
2857+
2858+#. TRANSLATORS: This is a keyword or name for the system-update plugin which is used while searching
2859+#: /storage/1/work/phablet/settings/lp1318008/build/po/settings.js:130
2860+msgid "update"
2861 msgstr ""
2862
2863 #. TRANSLATORS: This is a keyword or name for the bluetooth plugin which is used while searching
2864-#: /tmp/ubuntu-system-settings/obj-x86_64-linux-gnu/po/settings.js:126
2865+#: /storage/1/work/phablet/settings/lp1318008/build/po/settings.js:136
2866 msgid "bluetooth"
2867 msgstr ""
2868
2869 #. TRANSLATORS: This is a keyword or name for the battery plugin which is used while searching
2870-#: /tmp/ubuntu-system-settings/obj-x86_64-linux-gnu/po/settings.js:132
2871+#: /storage/1/work/phablet/settings/lp1318008/build/po/settings.js:142
2872 msgid "battery"
2873 msgstr ""
2874
2875 #. TRANSLATORS: This is a keyword or name for the battery plugin which is used while searching
2876-#: /tmp/ubuntu-system-settings/obj-x86_64-linux-gnu/po/settings.js:134
2877+#: /storage/1/work/phablet/settings/lp1318008/build/po/settings.js:144
2878 msgid "power"
2879 msgstr ""
2880
2881 #. TRANSLATORS: This is a keyword or name for the background plugin which is used while searching
2882-#: /tmp/ubuntu-system-settings/obj-x86_64-linux-gnu/po/settings.js:138
2883+#: /storage/1/work/phablet/settings/lp1318008/build/po/settings.js:148
2884 msgid "appearance"
2885 msgstr ""
2886
2887 #. TRANSLATORS: This is a keyword or name for the background plugin which is used while searching
2888-#: /tmp/ubuntu-system-settings/obj-x86_64-linux-gnu/po/settings.js:140
2889+#: /storage/1/work/phablet/settings/lp1318008/build/po/settings.js:150
2890 msgid "background"
2891 msgstr ""
2892
2893 #. TRANSLATORS: This is a keyword or name for the background plugin which is used while searching
2894-#: /tmp/ubuntu-system-settings/obj-x86_64-linux-gnu/po/settings.js:142
2895+#: /storage/1/work/phablet/settings/lp1318008/build/po/settings.js:152
2896 msgid "wallpaper"
2897 msgstr ""
2898
2899-#. TRANSLATORS: This is a keyword or name for the accessibility plugin which is used while searching
2900-#: /tmp/ubuntu-system-settings/obj-x86_64-linux-gnu/po/settings.js:144
2901-msgid "Accessibility"
2902-msgstr ""
2903-
2904-#. TRANSLATORS: This is a keyword or name for the accessibility plugin which is used while searching
2905-#: /tmp/ubuntu-system-settings/obj-x86_64-linux-gnu/po/settings.js:146
2906-msgid "accessibility"
2907-msgstr ""
2908-
2909-#. TRANSLATORS: This is a keyword or name for the accessibility plugin which is used while searching
2910-#: /tmp/ubuntu-system-settings/obj-x86_64-linux-gnu/po/settings.js:148
2911-msgid "a11y"
2912-msgstr ""
2913-
2914-#. TRANSLATORS: This is a keyword or name for the about plugin which is used while searching
2915-#: /tmp/ubuntu-system-settings/obj-x86_64-linux-gnu/po/settings.js:154
2916-msgid "about"
2917-msgstr ""
2918-
2919-#. TRANSLATORS: This is a keyword or name for the about plugin which is used while searching
2920-#: /tmp/ubuntu-system-settings/obj-x86_64-linux-gnu/po/settings.js:156
2921-msgid "device"
2922-msgstr ""
2923-
2924-#. TRANSLATORS: This is a keyword or name for the about plugin which is used while searching
2925-#: /tmp/ubuntu-system-settings/obj-x86_64-linux-gnu/po/settings.js:158
2926-msgid "info"
2927-msgstr ""
2928-
2929-#: ../plugins/system-update//system_update.cpp:92
2930-msgid "Can't cancel current request (can't contact service)"
2931-msgstr ""
2932-
2933-#: ../plugins/system-update//system_update.cpp:98
2934-msgid "Can't pause current request (can't contact service)"
2935+#. TRANSLATORS: This is a keyword or name for the brightness plugin which is used while searching
2936+#: /storage/1/work/phablet/settings/lp1318008/build/po/settings.js:156
2937+msgid "brightness"
2938+msgstr ""
2939+
2940+#: ../plugins/about//click.cpp:134
2941+msgid "Unknown title"
2942 msgstr ""
2943
2944 #: ../plugins/security-privacy//securityprivacy.cpp:318
2945@@ -2146,14 +2149,10 @@
2946 msgid "Authentication token manipulation error"
2947 msgstr ""
2948
2949-#: ../plugins/about//click.cpp:134
2950-msgid "Unknown title"
2951-msgstr ""
2952-
2953-#: ../push-helper/software-updates-helper.py:78
2954-msgid "There's an updated system image."
2955-msgstr ""
2956-
2957-#: ../push-helper/software-updates-helper.py:79
2958-msgid "Tap to open the system updater."
2959+#: ../plugins/system-update//system_update.cpp:92
2960+msgid "Can't cancel current request (can't contact service)"
2961+msgstr ""
2962+
2963+#: ../plugins/system-update//system_update.cpp:98
2964+msgid "Can't pause current request (can't contact service)"
2965 msgstr ""
2966
2967=== renamed file 'ubuntu-system-settings.desktop.in' => 'ubuntu-system-settings.desktop.in.in'
2968--- ubuntu-system-settings.desktop.in 2014-07-21 14:50:49 +0000
2969+++ ubuntu-system-settings.desktop.in.in 2014-09-11 19:31:52 +0000
2970@@ -1,12 +1,12 @@
2971 [Desktop Entry]
2972-Name=System Settings
2973+_Name=System Settings
2974+_Categories=System;
2975+_Keywords=Preferences;Settings;
2976 Icon=system-settings
2977 Exec=system-settings %u
2978 Terminal=false
2979 Type=Application
2980 StartupNotify=true
2981-Categories=System;
2982-Keywords=Preferences;Settings;
2983 X-Screenshot=@SETTINGS_SHARE_DIR@/screenshot.png
2984 X-Ubuntu-Gettext-Domain=ubuntu-system-settings
2985 X-Ubuntu-Touch=true

Subscribers

People subscribed via source and target branches