Merge lp:~knitzsche/scope-aggregator/4.8-local-hints into lp:scope-aggregator

Proposed by Kyle Nitzsche
Status: Merged
Merged at revision: 164
Proposed branch: lp:~knitzsche/scope-aggregator/4.8-local-hints
Merge into: lp:scope-aggregator
Diff against target: 8015 lines (+4293/-1789)
47 files modified
4.8-rebase-local-hints-README.md (+279/-0)
CMakeLists.txt (+2/-1)
data/CMakeLists.txt (+1/-0)
data/hints.json (+144/-9)
data/icons/.directory (+4/-0)
data/icons/bollywood/.directory (+4/-0)
data/icons/contact.svg (+135/-0)
data/icons/properties.svg (+189/-0)
data/translatables.json (+1/-1)
include/action.h (+42/-0)
include/preview.h (+5/-26)
include/query.h (+7/-3)
include/scope.h (+5/-1)
include/utils.h (+0/-3)
po/JSONS (+1/-0)
po/bg.po (+145/-79)
po/ca.po (+144/-79)
po/cs.po (+140/-74)
po/da.po (+143/-77)
po/de.po (+147/-81)
po/el.po (+148/-81)
po/es.po (+145/-79)
po/eu.po (+141/-76)
po/fi.po (+147/-76)
po/fr.po (+148/-81)
po/gl.po (+142/-77)
po/hu.po (+145/-81)
po/it.po (+144/-79)
po/json_get_i18n.py (+48/-0)
po/make-pot.sh (+3/-1)
po/merge-hints-po-to-other-po.sh (+35/-0)
po/nl.po (+146/-79)
po/pl.po (+143/-77)
po/pt.po (+161/-78)
po/pt_BR.po (+79/-12)
po/ru.po (+148/-80)
po/sk.po (+145/-78)
po/sl.po (+148/-79)
po/sv.po (+141/-75)
src/CMakeLists.txt (+1/-0)
src/action.cpp (+57/-0)
src/aggchildscope.cpp (+0/-1)
src/preview.cpp (+33/-24)
src/query.cpp (+36/-17)
src/resultforwarder.cpp (+0/-1)
src/scope.cpp (+26/-1)
src/utils.cpp (+245/-122)
To merge this branch: bzr merge lp:~knitzsche/scope-aggregator/4.8-local-hints
Reviewer Review Type Date Requested Status
Zhang Enwei (community) Approve
Penk Chen Pending
Jin Pending
Gary.Wang Pending
Review via email: mp+298263@code.launchpad.net

Description of the change

For a 4.8 scope-aggregator release.

Enable scope-aggregator projects to display "hints" without the hints child scope. That is, quick start help (if any), no network message and no location message. Hints child scope is still supported though.

The goal of this is to duplicate the user experience but without the hints scope. With this, scope-aggregator can later add features, for example displaying quick start help dynamically depending on the child scopes that are actually available/installed, and etc.

* I did not use jsoncpp due to https://sourceforge.net/p/jsoncpp/bugs/43/ (Actually I had the implementation complete in jsoncpp and then discovered that the unity-scope-api people found this bug.)
* There's a new file that (hopefully) explains everything in detail, including how to rebase a scope on 4.8 (this MP): 4.8-rebase-local-hints-README.md. As usual, it is harder to explain than it is to do :)
* I rebased sample today-scope [1], nearby-scope [2] and photos-scope [3] for testing purposes and they all passed.

[1] https://code.launchpad.net/~knitzsche/today-scope/local-hints
[2] https://code.launchpad.net/~knitzsche/nearby-scope/local-hints
[3] https://code.launchpad.net/~knitzsche/photos-scope/local-hints

To post a comment you must log in.
Revision history for this message
Zhang Enwei (zhangew401) wrote :

Only minor error in the guidance part. I verified this in china-dashboard.
thanks.

review: Needs Fixing
Revision history for this message
Zhang Enwei (zhangew401) :
173. By Kyle Nitzsche

fixed 4.8-rebase-local-hints-README.md doc per review comment.

updated make-po.sh per review comment.

Revision history for this message
Kyle Nitzsche (knitzsche) wrote :

Thanks Enwei. I have fixed the docs and make-pot.sh per your comments. (I also found and fixed other typos in the doc.)

Anything else?

Cheers - Kyle

Revision history for this message
Zhang Enwei (zhangew401) :
review: Approve

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== added file '4.8-rebase-local-hints-README.md'
2--- 4.8-rebase-local-hints-README.md 1970-01-01 00:00:00 +0000
3+++ 4.8-rebase-local-hints-README.md 2016-06-27 15:49:40 +0000
4@@ -0,0 +1,279 @@
5+# 4.8 Rebasing and Local Hints Overview
6+
7+With the 4.8 scope-aggregator release, the hints scope is no longer needed for scope-aggregator based projects to provide:
8+
9+ * Quick start help (the aggregator scope's hints.json file contains the content previously in the hints child scope and the po/ dir has its translations)
10+ * No network and no location messages (the aggregator scope contains the source strings in translatable.json and the po/ dir has the translations).
11+
12+This is called "local hints".
13+
14+With local hints:
15+
16+* Users can install the agg scope from the store and be certain that designed functionality is present.
17+* After all aggregator scopes that use hints have been updated, we can drop the hints scope from custom tarballs.
18+
19+New possibilities:
20+
21+ * Quick start help could be dynamic depending on currently available child scopes. Currently, the help displays information about a hard coded list of child scopes, which could be incorrect or incomplete depending on what is installed.
22+ * The user could redisplay quick start help from a scope settings button. Currently, after the user dismisses quick start help, it cannot be displayed again.
23+
24+For now, the purpose is for local hints to support the exact same functionality that hints child scope provides.
25+
26+Modifications are required for every aggregator scope rebasing on 4.8, even if the aggregator scope is still going to use the hints child scope (the hints.json file format changes slightly).
27+
28+# Samples
29+
30+Here are sample click-src/aggregator/hints.json files for 4.8 agg scopes that do not use the hints child scope.
31+
32+## Not using any hints
33+
34+This agg scope does not use quick start help, does not want a no network message, and does not want a no location message:
35+
36+ {
37+ "using_hints": "false"
38+ }
39+
40+## No quick start help, enabled no network/no location messages
41+
42+ {
43+ "using_hints": "true",
44+ "hints_source": "local",
45+ "message_on_no_network": "true",
46+ "message_on_no_location": "true"
47+ }
48+
49+Note: As described below, both messages and their translations must be added to scope aggregator.
50+
51+## With quick start help
52+
53+The agg scope provides its own quick start help.
54+
55+ * Quick start help is contained in hints.json's local/content/categories
56+ * You can declare multiple categories each with "items"
57+ * "items" contains objects for each result in the category
58+
59+The structure and format of the content object is identical to that used in the hints scope with these exceptions:
60+
61+ * layout: contains the actual category renderer json (in hints scope it was a file name that contained the renderer json)
62+ * layout/template/card-background: only use a color (in hints scope you could define a background image but this caused varying layouts. The recommended way for a card to have an icon, text and action is shown here.)
63+ * item/art: the value is a file name that must be in click-src/aggregator/images/ (in hints child scope it was a longer path)
64+
65+hinst.json:
66+
67+ {
68+ "using_hints": "true",
69+ "hints_source": "local",
70+ "quick_start_help": "true",
71+ "message_on_no_network": "true",
72+ "message_on_no_location": "true",
73+ "local":
74+ {
75+ "content":
76+ {
77+ "categories":
78+ [
79+ {
80+ "id": "welcome",
81+ "_title": "Welcome to the Today scope",
82+ "layout":
83+ {
84+ "schema-version": 1,
85+ "template": {
86+ "category-layout": "grid",
87+ "card-size": "large",
88+ "card-layout":"horizontal",
89+ "collapsed-rows": 0
90+ },
91+ "components": {
92+ "title": "title",
93+ "art": "art",
94+ "subtitle": "subtitle",
95+ "emblem":"emblem"
96+ }
97+ },
98+ "items": [
99+ {
100+ "_title": "Manage your day with all the essentials.",
101+ "_subtitle": "Tap here for more information.",
102+ "_description": "Today gives you a overview of your day including:<br>- events and tasks<br>- calls and messages<br>- news, weather and more.<br><br> You can customise what is shown in Today using the scope settings icon.<br><br> Some services require your log-in below or later.",
103+ "art": "welcome.png"
104+ }
105+ ]
106+ },
107+ {
108+ "id": "fitbit-account",
109+ "_title": "Track your activity with Fitbit.",
110+ "layout":
111+ {
112+ "schema-version": 1,
113+ "template": {
114+ "category-layout": "grid",
115+ "card-size": "large",
116+ "card-background":"color:///#FFFFFF",
117+ "collapsed-rows": 0
118+
119+ },
120+ "components": {
121+ "title": "title",
122+ "mascot":"art"
123+ }
124+ },
125+ "items": [
126+ {
127+ "_title": "<b> Add your account</b>",
128+ "oaccount": {
129+ "ServiceName": "com.canonical.scopes.fitbit_fitbit",
130+ "ServiceType": "fitbit-scope",
131+ "ProviderName": "com.canonical.scopes.fitbit_fitbitaccount",
132+ "QueryScope": "com.canonical.scopes.fitbit_fitbit",
133+ "idontthinkweneedtoshowresultwhenloggedin_loggedin":"<b> Successfully logged in</b>"
134+ },
135+ "action": {
136+ "_name": "Add account",
137+ "uri": "settings:///system/online-accounts"
138+ },
139+ "art":"fitbit.png"
140+ }
141+ ]
142+ },
143+ {
144+ "id": "skip",
145+ "_title": "Set up your accounts later.",
146+ "_loggedin":"Get started.",
147+ "layout":
148+ {
149+ "schema-version": 1,
150+ "template": {
151+ "category-layout": "vertical-journal",
152+ "card-size": "large",
153+ "card-background":"color:///#12a3d8",
154+ "collapsed-rows": 0
155+
156+ },
157+ "components": {
158+ "title": "title"
159+ }
160+ },
161+ "items": [
162+ {
163+ "_title": "<b>Skip &amp; set up later</b>",
164+ "hide_hints": "true"
165+ }
166+ ]
167+ }
168+ ]
169+ }
170+ }
171+ }
172+
173+
174+
175+# Still Using Hints Child Scope
176+
177+This configuration supports an agg scope that is rebased on this (or higher) versions of scope-aggregator that has not yet been modified to drop the hints child scope.
178+
179+ {
180+ "using_hints": "true",
181+ "hints_source": "hints_scope",
182+ "quick_start_help": "true",
183+ "message_on_no_network": "true",
184+ "message_on_no_location": "true",
185+ "hints_scope":
186+ {
187+ "hints_scope_id": "com.canonical.scopes.hints_hints",
188+ "hints_this_scope": "dashboard",
189+ "hints_help": "dashboard",
190+ "hints_hide": "start"
191+ }
192+ }
193+
194+Note: in this case, the agg scope does not need messages or their translations: these are provided by hints child scope.
195+
196+# Converting Agg Scope
197+
198+As noted, all scope-aggregators rebasing on 4.8 or higher need to modify their hints.json. The extent of modification depends on the options used.
199+
200+* Modify click-src/aggregator/hints.json as shown above
201+* If the agg scope uses no network or no location messages, add ubuntu.png to click-src/aggregator/images/
202+* Ensure all image files referenced in hints.json are in click-src/aggregator/images/
203+* Ensure all translations are merged from the hints scope source into the aggregator source (see "Translations" section)
204+
205+Note: All images previously provided by hints scope and now referenced in the hints.json file must be in the aggregator scope's click-src/aggregator/images/ directory.
206+
207+## Translations
208+
209+### Add new and modified translation scripts
210+
211+ 1. Check and remember the POT variable defined in make-pot.sh.
212+ 1. Copy the following from scope-aggregator po/ into the aggregator scope po/ directory:
213+ * json\_get\_i18n.py
214+ * make-pot.sh
215+ 1. Add json\_get\_i18n.py to bzr.
216+ 1. Edit make-pot.sh and reset POT variable to what it was. For example, in the today scope, make-pot.sh should have this line near the top:
217+ POT=today
218+
219+Why? The json2po tool used to gather translatable messages for inclusion in the pot file cannot handle json values of int (yes, really ;). So json\_get\_i18n.py creates a new (disposable) json file (i18n.json) for each json file listed in po/JSONS. This new file contains only objects whose key starts with "_". These are by definition (in our tool chain) translatable and therefore have string values only. make-pot.sh scans this generated json (instead of the original source, for example hints.json) to find strings to include in the new pot file. make-pot.sh calls json2po, which now does not encounter the int value error.
220+
221+### Add no network/no location strings to source
222+
223+If the agg scope uses no network or no location messages, these strings need to be added to the aggregator scope source, ensure they are present in the po/translatables.json file.
224+
225+Notes:
226+
227+ * The key names must start with "_"
228+ * The key name has no significance (it only needs be be unique)
229+ * Do not modify the no net/no location messages (because they are already translated and are used in scope-aggregator c++ source code)
230+
231+translatables.json:
232+
233+ {
234+ "_no_loc_msg": "Please enable location services. Refresh by pulling down the middle of the screen.",
235+ "_no_net_msg": "Please connect to the internet. Refresh by pulling down the middle of the screen.",
236+ "_1": "Recent",
237+ "_2": "Today",
238+ "_3": "All your info in one place",
239+ "_4": "Next Holiday",
240+ "_5": "Favorite Contacts",
241+ "_6": "My Activity",
242+ "_7": "Weather",
243+ "_8": "Today's News",
244+ "_9": "Trending on Twitter"
245+ }
246+
247+Ensure the po/JSONS file includes translatables.jsoni (and hints.json if providing local hints quick start content):
248+
249+ $ cat po/JSONS
250+ ./translatables.json
251+ ../click-src/aggregator/hints.json
252+
253+### Generate a New Pot File
254+
255+ 1. Move to po/
256+ 1. Run ```./make-pot.sh```
257+ 1. Verify the generated pot file has the correct (previous) filename (required for LP translations).
258+ 1. Verify the generated pot file contains expected translatable strings, including those from hints.json and translatables.json.
259+
260+### Merge Translations from Hints scope into Aggregator Scope
261+
262+The hints scope source contains translations for all existing quick start help strings and for the no network and no location messages.
263+
264+You can merge them into the po files in your scope aggregator source as follows:
265+
266+
267+ 1. Update the pot file in YOUR\_AGG\_SCOPE\_DIR/po as described above
268+ 1. bzr branch lp:~hanloon-team/hanloon/hints
269+ 1. bzr branch lp:scope-aggregator
270+ 1. cd hints/po
271+ 1. cp ../../scope-aggregator/po/merge-hints-po-to-other-po.sh .
272+ 1. ./merge-hints-po-to-other-po.sh YOUR\_AGG\_SCOPE\_DIR/po
273+ 1. cd YOUR\_AGG\_SCOPE\_DIR/po
274+ 1. ./update-pos-from-pot.sh
275+
276+Result: Each po file in YOUR\_AGG\_SCOPE\_DIR/po now also contains translations for all strings relating to hints, if the hints scope had translations for them, and if they are valid strings for this aggragator scope.
277+
278+Note: Please verify translations are correctly merged by installing the click, changing the language on the device to a langauge supportied by the hints child scope, for example French, and viewing the quick start help and the no network/no location messages.
279+
280+Note: You can force an agg scope to display quick start help (if it is configured for it) by deleting the hints_is_hidden file from the scope's cache directory on the device. For dashboard:
281+
282+ phablet@ubuntu-phablet:~$ rm .local/share/unity-scopes/unconfined/com.canonical.scopes.dashboard_dashboard/hints_is_hidden
283+
284
285=== modified file 'CMakeLists.txt'
286--- CMakeLists.txt 2016-04-25 17:34:24 +0000
287+++ CMakeLists.txt 2016-06-27 15:49:40 +0000
288@@ -1,4 +1,4 @@
289-set(VERSION "4.7")
290+set(VERSION "4.8")
291
292 # Supress qDebug() output
293 ADD_DEFINITIONS( -DQT_NO_DEBUG_OUTPUT )
294@@ -71,6 +71,7 @@
295
296 include_directories(
297 "${CMAKE_SOURCE_DIR}/include"
298+ ${JSONCPP_INCLUDE_DIRS}
299 )
300
301 configure_file (
302
303=== modified file 'data/CMakeLists.txt'
304--- data/CMakeLists.txt 2015-06-03 21:19:01 +0000
305+++ data/CMakeLists.txt 2016-06-27 15:49:40 +0000
306@@ -30,5 +30,6 @@
307 )
308
309 INSTALL(DIRECTORY "images" DESTINATION "${SCOPE_INSTALLDIR}")
310+INSTALL(DIRECTORY "icons" DESTINATION "${SCOPE_INSTALLDIR}")
311 install(FILES "child_scopes.json" DESTINATION ${SCOPE_INSTALLDIR})
312 install(FILES "hints.json" DESTINATION ${SCOPE_INSTALLDIR})
313
314=== modified file 'data/hints.json'
315--- data/hints.json 2015-06-26 17:21:32 +0000
316+++ data/hints.json 2016-06-27 15:49:40 +0000
317@@ -1,11 +1,146 @@
318 {
319- "using_hints": "false",
320- "display_hints_on_no_location": "false",
321- "display_hints_on_no_networrk": "false",
322- "display_hints_on_firstuse": "false",
323- "hints_scope_id": "com.canonical.scopes.hints_hints",
324- "hints_this_scope": "aggregator",
325- "hints_help": "aggregator",
326- "hints_hide": "start"
327+ "using_hints": "true",
328+ "COMMENT_hints_source": "hints_source is either 'local' or 'hints_scope'",
329+ "hints_source": "hints_scope",
330+ "quick_start_help": "true",
331+ "COMMENT_messages": "both of the 'message_' keys require ubuntu.png in scope_dir/images/",
332+ "message_on_no_network": "true",
333+ "message_on_no_location": "true",
334+ "hints_scope":
335+ {
336+ "hints_scope_id": "com.canonical.scopes.hints_hints",
337+ "hints_this_scope": "dashboard",
338+ "hints_help": "dashboard",
339+ "hints_hide": "start"
340+ },
341+ "COMMENT_local": "when 'hints_source' is 'local', the following must be completed",
342+ "local":
343+ {
344+ "content":
345+ {
346+ "categories":
347+ [
348+ {
349+ "id": "welcome",
350+ "_title": "NOT Welcome to the Today scope",
351+ "layout":
352+ {
353+ "schema-version": 1,
354+ "template": {
355+ "category-layout": "grid",
356+ "card-size": "large",
357+ "card-layout":"horizontal",
358+ "collapsed-rows": 0
359+ },
360+ "components": {
361+ "title": "title",
362+ "art": "art",
363+ "subtitle": "subtitle",
364+ "emblem":"emblem"
365+ }
366+ },
367+ "items": [
368+ {
369+ "_title": "Manage your day with all the essentials.",
370+ "_subtitle": "Tap here for more information.",
371+ "_description": "Today gives you a overview of your day including:<br>- events and tasks<br>- calls and messages<br>- news, weather and more.<br><br> You can customise what is shown in Today using the scope settings icon.<br><br> Some services require your log-in below or later.",
372+ "art": "icons/today/welcome.png"
373+ }
374+ ]
375+ },
376+ {
377+ "id": "accounts",
378+ "_title": "See your events and more from Google.",
379+ "layout":
380+ {
381+ "schema-version": 1,
382+ "template": {
383+ "category-layout": "grid",
384+ "card-size": "large",
385+ "card-background":"color:///#FFFFFF",
386+ "collapsed-rows": 0
387+
388+ },
389+ "components": {
390+ "title": "title",
391+ "mascot":"art"
392+ }
393+ },
394+ "items": [
395+ {
396+ "_title": "<b> Review your Google sync settings</b>",
397+ "_description": "Adding your Google account will allow Today to display your events and contacts.<br><br>Press the button below to add your account (or go to accounts in the Settings app).<br><br>Remember to enable the contact and calendar sync once you have successfully added it.",
398+ "art":"icons/today/google.png",
399+ "action": {
400+ "_name": "Add account",
401+ "uri": "settings:///system/online-accounts"
402+ }
403+ }
404+ ]
405+ },
406+ {
407+ "id": "accounts2",
408+ "_title": "Track your activity with Fitbit.",
409+ "layout":
410+ {
411+ "schema-version": 1,
412+ "template": {
413+ "category-layout": "grid",
414+ "card-size": "large",
415+ "card-background":"color:///#FFFFFF",
416+ "collapsed-rows": 0
417+
418+ },
419+ "components": {
420+ "title": "title",
421+ "mascot":"art"
422+ }
423+ },
424+ "items": [
425+ {
426+ "_title": "<b> Add your account</b>",
427+ "oaccount": {
428+ "ServiceName": "com.canonical.scopes.fitbit_fitbit",
429+ "ServiceType": "fitbit-scope",
430+ "ProviderName": "com.canonical.scopes.fitbit_fitbitaccount",
431+ "QueryScope": "com.canonical.scopes.fitbit_fitbit",
432+ "idontthinkweneedtoshowresultwhenloggedin_loggedin":"<b> Successfully logged in</b>"
433+ },
434+ "action": {
435+ "_name": "Add account",
436+ "uri": "settings:///system/online-accounts"
437+ },
438+ "art":"icons/today/fitbit.png"
439+ }
440+ ]
441+ },
442+ {
443+ "id": "skip",
444+ "_title": "Set up your accounts later.",
445+ "_loggedin":"Get started.",
446+ "layout":
447+ {
448+ "schema-version": 1,
449+ "template": {
450+ "category-layout": "vertical-journal",
451+ "card-size": "large",
452+ "card-background":"color:///#12a3d8",
453+ "collapsed-rows": 0
454+
455+ },
456+ "components": {
457+ "title": "title"
458+ }
459+ },
460+ "items": [
461+ {
462+ "_title": "<b>Skip &amp; set up later</b>",
463+ "hide_hints": "true",
464+ "uri": "com.canonical.scopes.dashboard_dashboard"
465+ }
466+ ]
467+ }
468+ ]
469+ }
470+ }
471 }
472-
473
474=== added directory 'data/icons'
475=== added file 'data/icons/.directory'
476--- data/icons/.directory 1970-01-01 00:00:00 +0000
477+++ data/icons/.directory 2016-06-27 15:49:40 +0000
478@@ -0,0 +1,4 @@
479+[Dolphin]
480+PreviewsShown=true
481+Timestamp=2015,7,13,13,46,49
482+Version=3
483
484=== added directory 'data/icons/bollywood'
485=== added file 'data/icons/bollywood/.directory'
486--- data/icons/bollywood/.directory 1970-01-01 00:00:00 +0000
487+++ data/icons/bollywood/.directory 2016-06-27 15:49:40 +0000
488@@ -0,0 +1,4 @@
489+[Dolphin]
490+PreviewsShown=true
491+Timestamp=2015,7,13,13,46,57
492+Version=3
493
494=== added file 'data/icons/bollywood/bollywood.png'
495Binary files data/icons/bollywood/bollywood.png 1970-01-01 00:00:00 +0000 and data/icons/bollywood/bollywood.png 2016-06-27 15:49:40 +0000 differ
496=== added file 'data/icons/bollywood/cinema.png'
497Binary files data/icons/bollywood/cinema.png 1970-01-01 00:00:00 +0000 and data/icons/bollywood/cinema.png 2016-06-27 15:49:40 +0000 differ
498=== added file 'data/icons/bollywood/erosnow.png'
499Binary files data/icons/bollywood/erosnow.png 1970-01-01 00:00:00 +0000 and data/icons/bollywood/erosnow.png 2016-06-27 15:49:40 +0000 differ
500=== added file 'data/icons/bollywood/hotstar.png'
501Binary files data/icons/bollywood/hotstar.png 1970-01-01 00:00:00 +0000 and data/icons/bollywood/hotstar.png 2016-06-27 15:49:40 +0000 differ
502=== added file 'data/icons/bollywood/shemaroo.png'
503Binary files data/icons/bollywood/shemaroo.png 1970-01-01 00:00:00 +0000 and data/icons/bollywood/shemaroo.png 2016-06-27 15:49:40 +0000 differ
504=== added file 'data/icons/bollywood/toi.png'
505Binary files data/icons/bollywood/toi.png 1970-01-01 00:00:00 +0000 and data/icons/bollywood/toi.png 2016-06-27 15:49:40 +0000 differ
506=== added file 'data/icons/bollywood/zeetv.png'
507Binary files data/icons/bollywood/zeetv.png 1970-01-01 00:00:00 +0000 and data/icons/bollywood/zeetv.png 2016-06-27 15:49:40 +0000 differ
508=== added directory 'data/icons/books'
509=== added file 'data/icons/books/amazon.png'
510Binary files data/icons/books/amazon.png 1970-01-01 00:00:00 +0000 and data/icons/books/amazon.png 2016-06-27 15:49:40 +0000 differ
511=== added file 'data/icons/books/books.png'
512Binary files data/icons/books/books.png 1970-01-01 00:00:00 +0000 and data/icons/books/books.png 2016-06-27 15:49:40 +0000 differ
513=== added file 'data/icons/books/cm.png'
514Binary files data/icons/books/cm.png 1970-01-01 00:00:00 +0000 and data/icons/books/cm.png 2016-06-27 15:49:40 +0000 differ
515=== added file 'data/icons/books/douban.png'
516Binary files data/icons/books/douban.png 1970-01-01 00:00:00 +0000 and data/icons/books/douban.png 2016-06-27 15:49:40 +0000 differ
517=== added file 'data/icons/books/ebay.png'
518Binary files data/icons/books/ebay.png 1970-01-01 00:00:00 +0000 and data/icons/books/ebay.png 2016-06-27 15:49:40 +0000 differ
519=== added file 'data/icons/books/open_library.png'
520Binary files data/icons/books/open_library.png 1970-01-01 00:00:00 +0000 and data/icons/books/open_library.png 2016-06-27 15:49:40 +0000 differ
521=== added file 'data/icons/books/viva.png'
522Binary files data/icons/books/viva.png 1970-01-01 00:00:00 +0000 and data/icons/books/viva.png 2016-06-27 15:49:40 +0000 differ
523=== added file 'data/icons/contact.svg'
524--- data/icons/contact.svg 1970-01-01 00:00:00 +0000
525+++ data/icons/contact.svg 2016-06-27 15:49:40 +0000
526@@ -0,0 +1,135 @@
527+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
528+<!-- Created with Inkscape (http://www.inkscape.org/) -->
529+
530+<svg
531+ xmlns:dc="http://purl.org/dc/elements/1.1/"
532+ xmlns:cc="http://creativecommons.org/ns#"
533+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
534+ xmlns:svg="http://www.w3.org/2000/svg"
535+ xmlns="http://www.w3.org/2000/svg"
536+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
537+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
538+ width="90"
539+ height="90.000031"
540+ id="svg3615"
541+ version="1.1"
542+ inkscape:version="0.48+devel r12221"
543+ sodipodi:docname="contact.svg">
544+ <defs
545+ id="defs3617">
546+ <clipPath
547+ clipPathUnits="userSpaceOnUse"
548+ id="clipPath2995-6">
549+ <path
550+ style="color:#000000;fill:#ff00ff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
551+ d="m 222,818.36215 0,54 126,0 0,-54 -43.875,0 c -0.0316,0.0521 -0.062,0.1043 -0.0937,0.15625 -2.2906,3.75334 -4.87723,7.16686 -7.875,9.875 -2.99777,2.70814 -6.52444,5 -11.125,5 -4.60056,0 -8.12214,-2.29391 -11.125,-5 -3.00286,-2.70609 -5.60728,-6.12218 -7.90625,-9.875 -0.0318,-0.0519 -0.062,-0.1042 -0.0937,-0.15625 L 222.0001,818.36215 Z"
552+ id="path2997-4"
553+ inkscape:connector-curvature="0" />
554+ </clipPath>
555+ </defs>
556+ <sodipodi:namedview
557+ id="base"
558+ pagecolor="#ffffff"
559+ bordercolor="#666666"
560+ borderopacity="1.0"
561+ inkscape:pageopacity="0.0"
562+ inkscape:pageshadow="2"
563+ inkscape:zoom="7.9580786"
564+ inkscape:cx="36.190065"
565+ inkscape:cy="48.918863"
566+ inkscape:document-units="px"
567+ inkscape:current-layer="g4271"
568+ showgrid="true"
569+ fit-margin-top="0"
570+ fit-margin-left="0"
571+ fit-margin-right="0"
572+ fit-margin-bottom="0"
573+ inkscape:window-width="1920"
574+ inkscape:window-height="1029"
575+ inkscape:window-x="0"
576+ inkscape:window-y="24"
577+ inkscape:window-maximized="1">
578+ <inkscape:grid
579+ type="xygrid"
580+ id="grid2986"
581+ empspacing="6"
582+ visible="true"
583+ enabled="true"
584+ snapvisiblegridlinesonly="true"
585+ originx="0px"
586+ originy="2.6171875e-06px" />
587+ </sodipodi:namedview>
588+ <metadata
589+ id="metadata3620">
590+ <rdf:RDF>
591+ <cc:Work
592+ rdf:about="">
593+ <dc:format>image/svg+xml</dc:format>
594+ <dc:type
595+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
596+ <dc:title />
597+ </cc:Work>
598+ </rdf:RDF>
599+ </metadata>
600+ <g
601+ inkscape:label="Layer 1"
602+ inkscape:groupmode="layer"
603+ id="layer1"
604+ transform="translate(1978.2857,336.49495)">
605+ <g
606+ id="g4271"
607+ transform="translate(-2218.2857,-1106.8571)">
608+ <path
609+ style="color:#000000;fill:#808080;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
610+ clip-path="none"
611+ d="M 30.21875 54.15625 C 11.057821 55.125058 6 61.297631 6 75 L 6 81 C 6 90 6 90 18 90 L 72 90 C 84 90 84 90 84 81 L 84 75 C 84 61.305107 78.947539 55.130228 59.8125 54.15625 C 58.661142 55.560765 57.451922 56.86076 56.15625 58.03125 C 53.15848 60.73939 49.63181 63.03125 45.03125 63.03125 C 40.43069 63.03125 36.90911 60.73734 33.90625 58.03125 C 32.605846 56.859364 31.377261 55.564123 30.21875 54.15625 z "
612+ transform="translate(240,770.36215)"
613+ id="rect3461-3-1" />
614+ <rect
615+ y="770.36218"
616+ x="240"
617+ height="90"
618+ width="90"
619+ id="rect4269"
620+ style="color:#000000;fill:none;stroke:none;stroke-width:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
621+ <path
622+ inkscape:transform-center-y="21.408856"
623+ inkscape:transform-center-x="-0.0067782248"
624+ id="path3447-0-6"
625+ d="m 285.00024,770.36215 c -14.99976,-3e-5 -20.99976,6.00003 -20.99976,21.00003 l 0,3 c 0,12 12.03506,33 21.01729,33 8.98223,0 20.98223,-21 20.98223,-33 l 0,-3 c 0,-15 -6,-21 -20.99976,-21.00003 z"
626+ style="color:#000000;fill:#808080;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
627+ inkscape:connector-curvature="0"
628+ sodipodi:nodetypes="zsszssz" />
629+ </g>
630+ </g>
631+ <g
632+ inkscape:groupmode="layer"
633+ id="layer2"
634+ inkscape:label="Clips"
635+ sodipodi:insensitive="true"
636+ style="display:none">
637+ <path
638+ transform="translate(-240,-770.36215)"
639+ style="color:#000000;fill:#808080;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
640+ d="m 246,851.36218 c 0,9 0,9 12,9 l 54,0 c 12,0 12,0 12,-9 l 0,-6 c 0,-15 -6,-21 -30,-21 l -18,0 C 252,824.36218 246,830.36218 246,845.36218 Z"
641+ id="rect3461-3-1-5"
642+ inkscape:connector-curvature="0"
643+ sodipodi:nodetypes="csscccccc"
644+ clip-path="url(#clipPath2995-6)" />
645+ <rect
646+ y="3.2134991e-05"
647+ x="0"
648+ height="90"
649+ width="90"
650+ id="rect4269-8"
651+ style="color:#000000;fill:none;stroke:none;stroke-width:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
652+ <path
653+ inkscape:transform-center-y="21.408856"
654+ inkscape:transform-center-x="-0.0067782248"
655+ id="path3447-0-6-9"
656+ d="M 45.00024,-4.8230939e-7 C 30.00048,-3.0482196e-5 24.00048,6.0000295 24.00048,21.00003 l 0,3 c 0,12 12.03506,33 21.01729,33 8.98223,0 20.98223,-21 20.98223,-33 l 0,-3 C 66,6.0000295 60,2.9517803e-5 45.00024,-4.8230939e-7 Z"
657+ style="color:#000000;fill:#808080;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
658+ inkscape:connector-curvature="0"
659+ sodipodi:nodetypes="zsszssz" />
660+ </g>
661+</svg>
662
663=== added file 'data/icons/hint.png'
664Binary files data/icons/hint.png 1970-01-01 00:00:00 +0000 and data/icons/hint.png 2016-06-27 15:49:40 +0000 differ
665=== added file 'data/icons/info.png'
666Binary files data/icons/info.png 1970-01-01 00:00:00 +0000 and data/icons/info.png 2016-06-27 15:49:40 +0000 differ
667=== added directory 'data/icons/nearby'
668=== added directory 'data/icons/nearby-india'
669=== added file 'data/icons/nearby-india/zomato.png'
670Binary files data/icons/nearby-india/zomato.png 1970-01-01 00:00:00 +0000 and data/icons/nearby-india/zomato.png 2016-06-27 15:49:40 +0000 differ
671=== added file 'data/icons/nearby/Weather.png'
672Binary files data/icons/nearby/Weather.png 1970-01-01 00:00:00 +0000 and data/icons/nearby/Weather.png 2016-06-27 15:49:40 +0000 differ
673=== added file 'data/icons/nearby/flikr.png'
674Binary files data/icons/nearby/flikr.png 1970-01-01 00:00:00 +0000 and data/icons/nearby/flikr.png 2016-06-27 15:49:40 +0000 differ
675=== added file 'data/icons/nearby/inrix.png'
676Binary files data/icons/nearby/inrix.png 1970-01-01 00:00:00 +0000 and data/icons/nearby/inrix.png 2016-06-27 15:49:40 +0000 differ
677=== added file 'data/icons/nearby/nearby.jpg'
678Binary files data/icons/nearby/nearby.jpg 1970-01-01 00:00:00 +0000 and data/icons/nearby/nearby.jpg 2016-06-27 15:49:40 +0000 differ
679=== added file 'data/icons/nearby/osm.png'
680Binary files data/icons/nearby/osm.png 1970-01-01 00:00:00 +0000 and data/icons/nearby/osm.png 2016-06-27 15:49:40 +0000 differ
681=== added file 'data/icons/nearby/sk.png'
682Binary files data/icons/nearby/sk.png 1970-01-01 00:00:00 +0000 and data/icons/nearby/sk.png 2016-06-27 15:49:40 +0000 differ
683=== added file 'data/icons/nearby/timeout.jpg'
684Binary files data/icons/nearby/timeout.jpg 1970-01-01 00:00:00 +0000 and data/icons/nearby/timeout.jpg 2016-06-27 15:49:40 +0000 differ
685=== added file 'data/icons/nearby/wiki.png'
686Binary files data/icons/nearby/wiki.png 1970-01-01 00:00:00 +0000 and data/icons/nearby/wiki.png 2016-06-27 15:49:40 +0000 differ
687=== added file 'data/icons/nearby/yelp.png'
688Binary files data/icons/nearby/yelp.png 1970-01-01 00:00:00 +0000 and data/icons/nearby/yelp.png 2016-06-27 15:49:40 +0000 differ
689=== added directory 'data/icons/news'
690=== added file 'data/icons/news/bbc.png'
691Binary files data/icons/news/bbc.png 1970-01-01 00:00:00 +0000 and data/icons/news/bbc.png 2016-06-27 15:49:40 +0000 differ
692=== added file 'data/icons/news/cd.png'
693Binary files data/icons/news/cd.png 1970-01-01 00:00:00 +0000 and data/icons/news/cd.png 2016-06-27 15:49:40 +0000 differ
694=== added file 'data/icons/news/cnet.png'
695Binary files data/icons/news/cnet.png 1970-01-01 00:00:00 +0000 and data/icons/news/cnet.png 2016-06-27 15:49:40 +0000 differ
696=== added file 'data/icons/news/ej.png'
697Binary files data/icons/news/ej.png 1970-01-01 00:00:00 +0000 and data/icons/news/ej.png 2016-06-27 15:49:40 +0000 differ
698=== added file 'data/icons/news/elpais.png'
699Binary files data/icons/news/elpais.png 1970-01-01 00:00:00 +0000 and data/icons/news/elpais.png 2016-06-27 15:49:40 +0000 differ
700=== added file 'data/icons/news/engadget.png'
701Binary files data/icons/news/engadget.png 1970-01-01 00:00:00 +0000 and data/icons/news/engadget.png 2016-06-27 15:49:40 +0000 differ
702=== added file 'data/icons/news/euronews.png'
703Binary files data/icons/news/euronews.png 1970-01-01 00:00:00 +0000 and data/icons/news/euronews.png 2016-06-27 15:49:40 +0000 differ
704=== added file 'data/icons/news/news.png'
705Binary files data/icons/news/news.png 1970-01-01 00:00:00 +0000 and data/icons/news/news.png 2016-06-27 15:49:40 +0000 differ
706=== added directory 'data/icons/photos'
707=== added file 'data/icons/photos/fb.png'
708Binary files data/icons/photos/fb.png 1970-01-01 00:00:00 +0000 and data/icons/photos/fb.png 2016-06-27 15:49:40 +0000 differ
709=== added file 'data/icons/photos/flikr.png'
710Binary files data/icons/photos/flikr.png 1970-01-01 00:00:00 +0000 and data/icons/photos/flikr.png 2016-06-27 15:49:40 +0000 differ
711=== added file 'data/icons/photos/gallery.png'
712Binary files data/icons/photos/gallery.png 1970-01-01 00:00:00 +0000 and data/icons/photos/gallery.png 2016-06-27 15:49:40 +0000 differ
713=== added file 'data/icons/photos/instagram.png'
714Binary files data/icons/photos/instagram.png 1970-01-01 00:00:00 +0000 and data/icons/photos/instagram.png 2016-06-27 15:49:40 +0000 differ
715=== added file 'data/icons/photos/photos.png'
716Binary files data/icons/photos/photos.png 1970-01-01 00:00:00 +0000 and data/icons/photos/photos.png 2016-06-27 15:49:40 +0000 differ
717=== added file 'data/icons/properties.svg'
718--- data/icons/properties.svg 1970-01-01 00:00:00 +0000
719+++ data/icons/properties.svg 2016-06-27 15:49:40 +0000
720@@ -0,0 +1,189 @@
721+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
722+<!-- Created with Inkscape (http://www.inkscape.org/) -->
723+
724+<svg
725+ xmlns:dc="http://purl.org/dc/elements/1.1/"
726+ xmlns:cc="http://creativecommons.org/ns#"
727+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
728+ xmlns:svg="http://www.w3.org/2000/svg"
729+ xmlns="http://www.w3.org/2000/svg"
730+ xmlns:xlink="http://www.w3.org/1999/xlink"
731+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
732+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
733+ width="90"
734+ height="90.000015"
735+ id="svg3133"
736+ version="1.1"
737+ inkscape:version="0.48+devel r12275"
738+ sodipodi:docname="properties.svg">
739+ <defs
740+ id="defs3135">
741+ <linearGradient
742+ inkscape:collect="always"
743+ id="linearGradient3803">
744+ <stop
745+ style="stop-color:#e7e5e5;stop-opacity:1;"
746+ offset="0"
747+ id="stop3805" />
748+ <stop
749+ style="stop-color:#e2dfdf;stop-opacity:1"
750+ offset="1"
751+ id="stop3807" />
752+ </linearGradient>
753+ <linearGradient
754+ inkscape:collect="always"
755+ xlink:href="#linearGradient3803"
756+ id="linearGradient3809"
757+ x1="53.012165"
758+ y1="-102.79017"
759+ x2="53.012165"
760+ y2="-66.661224"
761+ gradientUnits="userSpaceOnUse" />
762+ <linearGradient
763+ inkscape:collect="always"
764+ xlink:href="#linearGradient3803"
765+ id="linearGradient3813"
766+ gradientUnits="userSpaceOnUse"
767+ x1="53.012165"
768+ y1="-102.79017"
769+ x2="53.012165"
770+ y2="-66.661224"
771+ gradientTransform="translate(-625,0)" />
772+ </defs>
773+ <sodipodi:namedview
774+ id="base"
775+ pagecolor="#ffffff"
776+ bordercolor="#666666"
777+ borderopacity="1.0"
778+ inkscape:pageopacity="0.0"
779+ inkscape:pageshadow="2"
780+ inkscape:zoom="7.9580781"
781+ inkscape:cx="49.564967"
782+ inkscape:cy="55.21579"
783+ inkscape:document-units="px"
784+ inkscape:current-layer="g3842"
785+ showgrid="true"
786+ inkscape:window-width="1920"
787+ inkscape:window-height="1029"
788+ inkscape:window-x="0"
789+ inkscape:window-y="24"
790+ inkscape:window-maximized="1"
791+ inkscape:snap-grids="true"
792+ inkscape:snap-global="true"
793+ fit-margin-top="0"
794+ fit-margin-left="0"
795+ fit-margin-right="0"
796+ fit-margin-bottom="0"
797+ inkscape:snap-bbox="true"
798+ inkscape:bbox-paths="true"
799+ inkscape:bbox-nodes="true"
800+ inkscape:snap-bbox-edge-midpoints="true"
801+ inkscape:snap-bbox-midpoints="true"
802+ inkscape:object-paths="true"
803+ inkscape:snap-intersection-paths="true"
804+ inkscape:snap-midpoints="true"
805+ inkscape:snap-smooth-nodes="true"
806+ inkscape:object-nodes="true"
807+ inkscape:snap-object-midpoints="true"
808+ inkscape:snap-center="true">
809+ <inkscape:grid
810+ type="xygrid"
811+ id="grid3016"
812+ empspacing="6"
813+ visible="true"
814+ enabled="true"
815+ snapvisiblegridlinesonly="true"
816+ originx="-2.98e-06px"
817+ originy="2.6171874e-06px" />
818+ </sodipodi:namedview>
819+ <metadata
820+ id="metadata3138">
821+ <rdf:RDF>
822+ <cc:Work
823+ rdf:about="">
824+ <dc:format>image/svg+xml</dc:format>
825+ <dc:type
826+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
827+ <dc:title></dc:title>
828+ </cc:Work>
829+ </rdf:RDF>
830+ </metadata>
831+ <g
832+ inkscape:label="Layer 1"
833+ inkscape:groupmode="layer"
834+ id="layer1"
835+ transform="translate(-2.98e-6,-962.36219)"
836+ style="display:inline">
837+ <g
838+ transform="matrix(0.99934414,0,0,1,-106.92982,549.00002)"
839+ id="g3842"
840+ style="display:inline">
841+ <rect
842+ style="opacity:0.05;color:#000000;fill:none;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
843+ id="rect3844"
844+ width="90.059067"
845+ height="90.000015"
846+ x="107"
847+ y="-503.36218"
848+ transform="scale(1,-1)" />
849+ <path
850+ sodipodi:type="arc"
851+ style="color:#000000;fill:none;stroke:#808080;stroke-width:14.78582573;stroke-miterlimit:4;stroke-dasharray:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
852+ id="path2995"
853+ sodipodi:cx="35.999996"
854+ sodipodi:cy="36.500011"
855+ sodipodi:rx="33"
856+ sodipodi:ry="33.5"
857+ d="m 68.999996,36.500011 a 33,33.5 0 1 1 -65.9999998,0 A 33,33.5 0 1 1 68.999996,36.500011 Z"
858+ transform="matrix(0.8173894,0,0,0.80635659,122.60353,428.93016)" />
859+ <path
860+ style="color:#000000;fill:#808080;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:12;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
861+ d="m 152.02296,416.36218 c 8.3452,0 10.01313,0 10.01313,8 l 0,6 c 0,3.324 -4.45992,6 -9.99979,6 l -0.0133,0 c -5.53987,0 -9.99979,-2.676 -9.99979,-6 l 0,-6 C 142.02317,416.36218 143.67777,416.36218 152.02296,416.36218 Z"
862+ id="rect840"
863+ inkscape:connector-curvature="0"
864+ sodipodi:nodetypes="zcsssssz"
865+ inkscape:transform-center-x="-0.00011983339"
866+ inkscape:transform-center-y="-32.000003" />
867+ <path
868+ inkscape:transform-center-y="32.000007"
869+ inkscape:transform-center-x="0.00012000848"
870+ sodipodi:nodetypes="zcsssssz"
871+ inkscape:connector-curvature="0"
872+ id="path837"
873+ d="m 152.0361,500.36219 c -8.3452,0 -10.01313,0 -10.01313,-8 l 0,-6 c 0,-3.324 4.45992,-6 9.99979,-6 l 0.0133,0 c 5.53987,0 9.99979,2.676 9.99979,6 l 0,6 C 162.03589,500.36219 160.38129,500.36219 152.0361,500.36219 Z"
874+ style="color:#000000;fill:#808080;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:12;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
875+ <path
876+ inkscape:transform-center-y="-16.340064"
877+ inkscape:transform-center-x="-28.304513"
878+ sodipodi:nodetypes="zcsssssz"
879+ inkscape:connector-curvature="0"
880+ id="path847"
881+ d="m 188.42319,437.3565 c 4.1726,7.22241 5.00656,8.66593 -1.92619,12.66593 l -5.19956,3 c -2.88056,1.662 -7.42952,-0.85987 -10.19946,-5.65439 l -0.007,-0.0115 c -2.76993,-4.79452 -2.68089,-9.99239 0.19967,-11.65439 l 5.19956,-3 C 183.42329,428.7021 184.25059,430.13409 188.42319,437.3565 Z"
882+ style="color:#000000;fill:#808080;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:12;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
883+ <path
884+ style="color:#000000;fill:#808080;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:12;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
885+ d="m 115.63587,479.36787 c -4.1726,-7.22241 -5.00656,-8.66594 1.92619,-12.66594 l 5.19956,-3 c 2.88056,-1.662 7.42952,0.85988 10.19946,5.6544 l 0.007,0.0115 c 2.76993,4.79452 2.68089,9.99239 -0.19967,11.65439 l -5.19956,3 C 120.63577,488.02226 119.80847,486.59028 115.63587,479.36787 Z"
886+ id="path849"
887+ inkscape:connector-curvature="0"
888+ sodipodi:nodetypes="zcsssssz"
889+ inkscape:transform-center-x="28.304513"
890+ inkscape:transform-center-y="16.340062" />
891+ <path
892+ style="color:#000000;fill:#808080;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:12;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
893+ d="m 188.42975,479.3565 c -4.17259,7.22242 -5.00656,8.66593 -11.93931,4.66593 l -5.19956,-2.99999 c -2.88056,-1.66201 -2.9696,-6.85987 -0.19967,-11.6544 l 0.006,-0.0118 c 2.76993,-4.79451 7.31889,-7.31639 10.19945,-5.65438 l 5.19956,2.99999 C 193.42965,470.7021 192.60235,472.13409 188.42975,479.3565 Z"
894+ id="path851"
895+ inkscape:connector-curvature="0"
896+ sodipodi:nodetypes="zcsssssz"
897+ inkscape:transform-center-x="-28.30633"
898+ inkscape:transform-center-y="16.338383" />
899+ <path
900+ inkscape:transform-center-y="-16.338383"
901+ inkscape:transform-center-x="28.306331"
902+ sodipodi:nodetypes="zcsssssz"
903+ inkscape:connector-curvature="0"
904+ id="path853"
905+ d="m 115.6293,437.36786 c 4.1726,-7.22241 5.00657,-8.66593 11.93932,-4.66593 l 5.19956,3 c 2.88056,1.662 2.9696,6.85987 0.19967,11.65439 l -0.006,0.0118 c -2.76994,4.79452 -7.3189,7.31639 -10.19946,5.65439 l -5.19956,-3 C 110.62941,446.02226 111.45671,444.59028 115.6293,437.36786 Z"
906+ style="color:#000000;fill:#808080;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:12;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
907+ </g>
908+ </g>
909+</svg>
910
911=== added directory 'data/icons/today'
912=== added file 'data/icons/today/Activity.png'
913Binary files data/icons/today/Activity.png 1970-01-01 00:00:00 +0000 and data/icons/today/Activity.png 2016-06-27 15:49:40 +0000 differ
914=== added file 'data/icons/today/Events.png'
915Binary files data/icons/today/Events.png 1970-01-01 00:00:00 +0000 and data/icons/today/Events.png 2016-06-27 15:49:40 +0000 differ
916=== added file 'data/icons/today/Evernote.png'
917Binary files data/icons/today/Evernote.png 1970-01-01 00:00:00 +0000 and data/icons/today/Evernote.png 2016-06-27 15:49:40 +0000 differ
918=== added file 'data/icons/today/News.png'
919Binary files data/icons/today/News.png 1970-01-01 00:00:00 +0000 and data/icons/today/News.png 2016-06-27 15:49:40 +0000 differ
920=== added file 'data/icons/today/Today.png'
921Binary files data/icons/today/Today.png 1970-01-01 00:00:00 +0000 and data/icons/today/Today.png 2016-06-27 15:49:40 +0000 differ
922=== added file 'data/icons/today/Weather.png'
923Binary files data/icons/today/Weather.png 1970-01-01 00:00:00 +0000 and data/icons/today/Weather.png 2016-06-27 15:49:40 +0000 differ
924=== added file 'data/icons/today/calls.png'
925Binary files data/icons/today/calls.png 1970-01-01 00:00:00 +0000 and data/icons/today/calls.png 2016-06-27 15:49:40 +0000 differ
926=== added file 'data/icons/today/contacts.png'
927Binary files data/icons/today/contacts.png 1970-01-01 00:00:00 +0000 and data/icons/today/contacts.png 2016-06-27 15:49:40 +0000 differ
928=== added file 'data/icons/today/day.png'
929Binary files data/icons/today/day.png 1970-01-01 00:00:00 +0000 and data/icons/today/day.png 2016-06-27 15:49:40 +0000 differ
930=== added file 'data/icons/today/evernotebutton.png'
931Binary files data/icons/today/evernotebutton.png 1970-01-01 00:00:00 +0000 and data/icons/today/evernotebutton.png 2016-06-27 15:49:40 +0000 differ
932=== added file 'data/icons/today/fitbit.png'
933Binary files data/icons/today/fitbit.png 1970-01-01 00:00:00 +0000 and data/icons/today/fitbit.png 2016-06-27 15:49:40 +0000 differ
934=== added file 'data/icons/today/fitbitbutton.png'
935Binary files data/icons/today/fitbitbutton.png 1970-01-01 00:00:00 +0000 and data/icons/today/fitbitbutton.png 2016-06-27 15:49:40 +0000 differ
936=== added file 'data/icons/today/google.png'
937Binary files data/icons/today/google.png 1970-01-01 00:00:00 +0000 and data/icons/today/google.png 2016-06-27 15:49:40 +0000 differ
938=== added file 'data/icons/today/google_cal.png'
939Binary files data/icons/today/google_cal.png 1970-01-01 00:00:00 +0000 and data/icons/today/google_cal.png 2016-06-27 15:49:40 +0000 differ
940=== added file 'data/icons/today/google_gmail.png'
941Binary files data/icons/today/google_gmail.png 1970-01-01 00:00:00 +0000 and data/icons/today/google_gmail.png 2016-06-27 15:49:40 +0000 differ
942=== added file 'data/icons/today/googlebutton.png'
943Binary files data/icons/today/googlebutton.png 1970-01-01 00:00:00 +0000 and data/icons/today/googlebutton.png 2016-06-27 15:49:40 +0000 differ
944=== added file 'data/icons/today/info.png'
945Binary files data/icons/today/info.png 1970-01-01 00:00:00 +0000 and data/icons/today/info.png 2016-06-27 15:49:40 +0000 differ
946=== added file 'data/icons/today/messages.png'
947Binary files data/icons/today/messages.png 1970-01-01 00:00:00 +0000 and data/icons/today/messages.png 2016-06-27 15:49:40 +0000 differ
948=== added file 'data/icons/today/reminder.png'
949Binary files data/icons/today/reminder.png 1970-01-01 00:00:00 +0000 and data/icons/today/reminder.png 2016-06-27 15:49:40 +0000 differ
950=== added file 'data/icons/today/tasks.png'
951Binary files data/icons/today/tasks.png 1970-01-01 00:00:00 +0000 and data/icons/today/tasks.png 2016-06-27 15:49:40 +0000 differ
952=== added file 'data/icons/today/twitter.png'
953Binary files data/icons/today/twitter.png 1970-01-01 00:00:00 +0000 and data/icons/today/twitter.png 2016-06-27 15:49:40 +0000 differ
954=== added file 'data/icons/today/welcome.png'
955Binary files data/icons/today/welcome.png 1970-01-01 00:00:00 +0000 and data/icons/today/welcome.png 2016-06-27 15:49:40 +0000 differ
956=== added file 'data/images/ubuntu.png'
957Binary files data/images/ubuntu.png 1970-01-01 00:00:00 +0000 and data/images/ubuntu.png 2016-06-27 15:49:40 +0000 differ
958=== modified file 'data/translatables.json'
959--- data/translatables.json 2015-07-20 21:23:04 +0000
960+++ data/translatables.json 2016-06-27 15:49:40 +0000
961@@ -1,5 +1,5 @@
962 {
963 "_category_title": "Install More Sources:",
964- "_no_loc_msg": "Please enable location services. Refresh by pulling down the middle of the screen",
965+ "_no_loc_msg": "Please enable location services. Refresh by pulling down the middle of the screen.",
966 "_no_net_msg": "Please connect to the internet. Refresh by pulling down the middle of the screen."
967 }
968
969=== added file 'include/action.h'
970--- include/action.h 1970-01-01 00:00:00 +0000
971+++ include/action.h 2016-06-27 15:49:40 +0000
972@@ -0,0 +1,42 @@
973+/*
974+ * Copyright (C) 2016 Canonical Ltd
975+ *
976+ * This program is free software: you can redistribute it and/or modify
977+ * it under the terms of the GNU General Public License version 3 as
978+ * published by the Free Software Foundation.
979+ *
980+ * This program is distributed in the hope that it will be useful,
981+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
982+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
983+ * GNU General Public License for more details.
984+ *
985+ * You should have received a copy of the GNU General Public License
986+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
987+ * * Authored by:
988+ * Kyle Nitzsche <kyle.nitzsche@canonical.com>
989+ */
990+
991+#ifndef SCOPE_ACTION_H_
992+#define SCOPE_ACTION_H_
993+
994+#include "scope.h"
995+#include <unity/scopes/ActionMetadata.h>
996+#include <unity/scopes/ActivationQueryBase.h>
997+#include <unity/scopes/ActivationResponse.h>
998+#include <unity/scopes/Result.h>
999+
1000+class Action : public unity::scopes::ActivationQueryBase {
1001+ public:
1002+ Action(unity::scopes::Result const& result,
1003+ unity::scopes::ActionMetadata const& metadata,
1004+ std::string const& cache_dir,
1005+ std::string const& scope_id);
1006+
1007+ virtual ~Action() = default;
1008+ virtual unity::scopes::ActivationResponse activate() override;
1009+
1010+ private:
1011+ std::string cache_dir_;
1012+ std::string scope_id_;
1013+};
1014+#endif
1015
1016=== modified file 'include/preview.h'
1017--- include/preview.h 2015-01-28 09:38:14 +0000
1018+++ include/preview.h 2016-06-27 15:49:40 +0000
1019@@ -1,39 +1,18 @@
1020-/*
1021- * Copyright (C) 2014 Canonical Ltd
1022- *
1023- * This program is free software: you can redistribute it and/or modify
1024- * it under the terms of the GNU General Public License version 3 as
1025- * published by the Free Software Foundation.
1026- *
1027- * This program is distributed in the hope that it will be useful,
1028- * but WITHOUT ANY WARRANTY; without even the implied warranty of
1029- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
1030- * GNU General Public License for more details.
1031- *
1032- * You should have received a copy of the GNU General Public License
1033- * along with this program. If not, see <http://www.gnu.org/licenses/>.
1034- *
1035- * Authored by Scott Sweeny <scott.sweeny@canonical.com>
1036- *
1037- */
1038-
1039-#ifndef AGGSCOPEPREVIEW_H
1040-#define AGGSCOPEPREVIEW_H
1041+#ifndef PREVIEW_H
1042+#define PREVIEW_H
1043
1044 #include<unity/scopes/PreviewQueryBase.h>
1045+#include<unity/scopes/Result.h>
1046+#include<unity/scopes/ActionMetadata.h>
1047
1048 class Preview : public unity::scopes::PreviewQueryBase
1049 {
1050 public:
1051- Preview(unity::scopes::Result const& result,
1052- unity::scopes::ActionMetadata const& metadata);
1053+ Preview(unity::scopes::Result const& result, unity::scopes::ActionMetadata const& metadata);
1054 ~Preview();
1055
1056 virtual void cancelled() override;
1057 virtual void run(unity::scopes::PreviewReplyProxy const& reply) override;
1058-
1059-private:
1060- std::string uri_;
1061 };
1062
1063 #endif
1064
1065=== modified file 'include/query.h'
1066--- include/query.h 2016-04-22 23:29:09 +0000
1067+++ include/query.h 2016-06-27 15:49:40 +0000
1068@@ -32,6 +32,8 @@
1069 #include <unity/scopes/ChildScope.h>
1070 #include <unity-scopes.h>
1071
1072+#include <QJsonObject>
1073+
1074 class Query : public unity::scopes::SearchQueryBase
1075 {
1076 public:
1077@@ -196,18 +198,20 @@
1078
1079 void noSources(unity::scopes::SearchReplyProxy const& reply);
1080
1081+ bool local_hints = false;
1082 bool no_network_msg = false;
1083- bool no_network_msg_hints = false;
1084 bool no_location_msg = false;
1085- bool no_location_msg_hints = false;
1086 bool uses_hints = false;
1087 unity::scopes::ScopeProxy hints_scope;
1088 bool hints_quickstart = false;
1089 QString hints_file = "hints_is_hidden";
1090 QString firstboot = "firstboot";
1091+ QJsonObject root;
1092+ QJsonObject hints_local_json;
1093
1094- void load_hints();
1095+ void load_hints_config();
1096 bool hints_exists();
1097+ void display_local_hints_quickstart(us::SearchReplyProxy const& upstream_reply_);
1098 void display_hints_quickstart(us::SearchReplyProxy const& upstream_reply_);
1099 bool show_hints(us::SearchReplyProxy const& upstream_reply_);
1100 bool hints_hidden();
1101
1102=== modified file 'include/scope.h'
1103--- include/scope.h 2015-08-18 18:35:08 +0000
1104+++ include/scope.h 2016-06-27 15:49:40 +0000
1105@@ -41,7 +41,11 @@
1106 virtual unity::scopes::SearchQueryBase::UPtr search(unity::scopes::CannedQuery const& q,
1107 unity::scopes::SearchMetadata const&) override;
1108
1109- unity::scopes::ChildScopeList find_child_scopes() const override;
1110+ unity::scopes::ActivationQueryBase::UPtr
1111+ activate(unity::scopes::Result const& result,
1112+ unity::scopes::ActionMetadata const& metadata)override;
1113+
1114+ unity::scopes::ChildScopeList find_child_scopes() const override;
1115
1116 enum class IdType {id, local_id};
1117
1118
1119=== modified file 'include/utils.h'
1120--- include/utils.h 2015-04-10 13:06:26 +0000
1121+++ include/utils.h 2016-06-27 15:49:40 +0000
1122@@ -20,9 +20,6 @@
1123 #ifndef UTILS_H
1124 #define UTILs_H
1125
1126-#include<QString>
1127
1128-QString qstr(std::string str);
1129-std::string sstr(QString str);
1130
1131 #endif
1132
1133=== modified file 'po/JSONS'
1134--- po/JSONS 2015-05-19 15:20:59 +0000
1135+++ po/JSONS 2016-06-27 15:49:40 +0000
1136@@ -1,1 +1,2 @@
1137 ../data/translatables.json
1138+../data/hints.json
1139
1140=== modified file 'po/bg.po'
1141--- po/bg.po 2015-07-20 23:53:41 +0000
1142+++ po/bg.po 2016-06-27 15:49:40 +0000
1143@@ -3,13 +3,17 @@
1144 # This file is distributed under the same license as the PACKAGE package.
1145 # Automatically generated, 2014.
1146 #
1147+#. #-#-#-#-# hints.json.pot (PACKAGE VERSION) #-#-#-#-#
1148+#. extracted from i18n.json
1149+#. #-#-#-#-# aggregator.pot.in.pot (PACKAGE VERSION) #-#-#-#-#
1150 #. #-#-#-#-# translatables.json.pot (PACKAGE VERSION) #-#-#-#-#
1151-#. extracted from ../data/translatables.json
1152+#. extracted from i18n.json
1153+#, fuzzy
1154 msgid ""
1155 msgstr ""
1156 "Project-Id-Version: photos\n"
1157 "Report-Msgid-Bugs-To: \n"
1158-"POT-Creation-Date: 2015-07-20 17:12-0400\n"
1159+"POT-Creation-Date: 2016-06-14 15:38+0800\n"
1160 "PO-Revision-Date: 2014-08-26 13:00-0400\n"
1161 "Last-Translator: Automatically generated\n"
1162 "Language-Team: none\n"
1163@@ -17,9 +21,89 @@
1164 "MIME-Version: 1.0\n"
1165 "Content-Type: text/plain; charset=UTF-8\n"
1166 "Content-Transfer-Encoding: 8bit\n"
1167-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
1168-
1169-#: ._no_net_msg
1170+"#-#-#-#-# bg.po (photos) #-#-#-#-#\n"
1171+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
1172+"#-#-#-#-# orig_bg.po (photos) #-#-#-#-#\n"
1173+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
1174+
1175+#: ._name8 ._name4
1176+msgid "Add account"
1177+msgstr "Добавяне на акаунт"
1178+
1179+#: ._title7
1180+msgid "See your events and more from Google."
1181+msgstr "Вижте събитията си и още от Google."
1182+
1183+#: ._title5
1184+msgid "<b> Review your Google sync settings</b>"
1185+msgstr "<b> Преглед на настройките за синхронизиране на Google</b>"
1186+
1187+#: ._title3
1188+msgid "Welcome to the Today scope"
1189+msgstr "Добре дошли в обхвата на Today"
1190+
1191+#: ._title1
1192+msgid "Manage your day with all the essentials."
1193+msgstr "Управлявайте деня си с всички основни средства."
1194+
1195+#: ._subtitle2
1196+msgid "Tap here for more information."
1197+msgstr "Докоснете тук за повече информация."
1198+
1199+#: ._title9
1200+msgid "<b> Add your account</b>"
1201+msgstr "<b> Добавете акаунта си</b>"
1202+
1203+#: ._loggedin11
1204+msgid "Get started."
1205+msgstr "Започнете."
1206+
1207+#: ._title10
1208+msgid "Track your activity with Fitbit."
1209+msgstr "Проследете активността си с Fitbit."
1210+
1211+#: ._description6
1212+msgid ""
1213+"Adding your Google account will allow Today to display your events and "
1214+"contacts.<br><br>Press the button below to add your account (or go to "
1215+"accounts in the Settings app).<br><br>Remember to enable the contact and "
1216+"calendar sync once you have successfully added it."
1217+msgstr ""
1218+"Добавянето на акаунт в Google ще разреши на Today да показва вашите събития "
1219+"и контакти.<br><br>Натиснете бутона по-долу, за да добавите акаунта си (или "
1220+"преминете към акаунтите в приложението Settings).<br><br>Помнете, че трябва "
1221+"да активирате синхронизиране на контактите и календара след като го добавите "
1222+"успешно."
1223+
1224+#: ._title13
1225+msgid "<b>Skip &amp; set up later</b>"
1226+msgstr "<b>Пропусни &amp; и задай по-късно</b>"
1227+
1228+#: ._description0
1229+msgid ""
1230+"Today gives you a overview of your day including:<br>- events and tasks<br>- "
1231+"calls and messages<br>- news, weather and more.<br><br> You can customise "
1232+"what is shown in Today using the scope settings icon.<br><br> Some services "
1233+"require your log-in below or later."
1234+msgstr ""
1235+"Today предлага преглед на деня ви, включително:<br>- събития и задачи<br>- "
1236+"повиквания и съобщения<br>- новини, времето и други.<br><br> Можете да "
1237+"персонализирате показваното в Today като използвате иконата за настройки на "
1238+"обхват.<br><br> Някои от услугите изискват влизане по-долу или по-късно."
1239+
1240+#: ._title12
1241+msgid "Set up your accounts later."
1242+msgstr "Задайте акаунтите си по-късно."
1243+
1244+#: ._no_loc_msg2 ../src/query.cpp:245
1245+msgid ""
1246+"Please enable location services. Refresh by pulling down the middle of the "
1247+"screen."
1248+msgstr ""
1249+"Моля, активирайте услугите за местоположение. Обновете като издърпате надолу "
1250+"средата на екрана."
1251+
1252+#: ._no_net_msg0 ../src/query.cpp:207
1253 msgid ""
1254 "Please connect to the internet. Refresh by pulling down the middle of the "
1255 "screen."
1256@@ -27,19 +111,10 @@
1257 "Моля, свържете се към интернет. Обновете като издърпате надолу средата на "
1258 "екрана."
1259
1260-#: ._category_title
1261+#: ._category_title1
1262 msgid "Install More Sources:"
1263 msgstr ""
1264
1265-#
1266-#: ._no_loc_msg
1267-msgid ""
1268-"Please enable location services. Refresh by pulling down the middle of the "
1269-"screen"
1270-msgstr ""
1271-"Моля, активирайте услугите за местоположение. Обновете като издърпате надолу "
1272-"средата на екрана."
1273-
1274 #: ../data/scope.ini.in.h:1
1275 msgid "Aggregator"
1276 msgstr ""
1277@@ -48,76 +123,12 @@
1278 msgid "A template for creating an aggregator scope"
1279 msgstr ""
1280
1281-#~ msgid ""
1282-#~ "Please enable location services. Refresh by pulling down the middle of "
1283-#~ "the screen."
1284-#~ msgstr ""
1285-#~ "Моля, активирайте услугите за местоположение. Обновете като издърпате "
1286-#~ "надолу средата на екрана."
1287-
1288-#~ msgid "Tap here for more information."
1289-#~ msgstr "Докоснете тук за повече информация."
1290-
1291-#~ msgid "Manage your day with all the essentials."
1292-#~ msgstr "Управлявайте деня си с всички основни средства."
1293-
1294-#~ msgid ""
1295-#~ "Today gives you a overview of your day including:<br>- events and "
1296-#~ "tasks<br>- calls and messages<br>- news, weather and more.<br><br> You "
1297-#~ "can customise what is shown in Today using the scope settings icon."
1298-#~ "<br><br> Some services require your log-in below or later."
1299-#~ msgstr ""
1300-#~ "Today предлага преглед на деня ви, включително:<br>- събития и "
1301-#~ "задачи<br>- повиквания и съобщения<br>- новини, времето и други.<br><br> "
1302-#~ "Можете да персонализирате показваното в Today като използвате иконата за "
1303-#~ "настройки на обхват.<br><br> Някои от услугите изискват влизане по-долу "
1304-#~ "или по-късно."
1305-
1306-#~ msgid "Welcome to the Today scope"
1307-#~ msgstr "Добре дошли в обхвата на Today"
1308-
1309-#~ msgid "Add account"
1310-#~ msgstr "Добавяне на акаунт"
1311-
1312-#~ msgid "<b> Review your Google sync settings</b>"
1313-#~ msgstr "<b> Преглед на настройките за синхронизиране на Google</b>"
1314-
1315-#~ msgid ""
1316-#~ "Adding your Google account will allow Today to display your events and "
1317-#~ "contacts.<br><br>Press the button below to add your account (or go to "
1318-#~ "accounts in the Settings app).<br><br>Remember to enable the contact and "
1319-#~ "calendar sync once you have successfully added it."
1320-#~ msgstr ""
1321-#~ "Добавянето на акаунт в Google ще разреши на Today да показва вашите "
1322-#~ "събития и контакти.<br><br>Натиснете бутона по-долу, за да добавите "
1323-#~ "акаунта си (или преминете към акаунтите в приложението Settings)."
1324-#~ "<br><br>Помнете, че трябва да активирате синхронизиране на контактите и "
1325-#~ "календара след като го добавите успешно."
1326-
1327-#~ msgid "See your events and more from Google."
1328-#~ msgstr "Вижте събитията си и още от Google."
1329-
1330 #~ msgid "<b> Successfully logged in</b>"
1331 #~ msgstr "<b> Успешно влизане</b>"
1332
1333-#~ msgid "<b> Add your account</b>"
1334-#~ msgstr "<b> Добавете акаунта си</b>"
1335-
1336-#~ msgid "Track your activity with Fitbit."
1337-#~ msgstr "Проследете активността си с Fitbit."
1338-
1339-#~ msgid "Get started."
1340-#~ msgstr "Започнете."
1341-
1342 #~ msgid "<b>OK</b>"
1343 #~ msgstr "<b>OK</b>"
1344
1345-#~ msgid "<b>Skip &amp; set up later</b>"
1346-#~ msgstr "<b>Пропусни &amp; и задай по-късно</b>"
1347-
1348-#~ msgid "Set up your accounts later."
1349-#~ msgstr "Задайте акаунтите си по-късно."
1350-
1351 #~ msgid "Click here for more information."
1352 #~ msgstr "Щракнете тук за повече информация."
1353
1354@@ -227,6 +238,53 @@
1355 #~ msgid "See your photo feed from Instagram."
1356 #~ msgstr "Вижте фийда на Вашите снимки от Instagram."
1357
1358+#, fuzzy
1359+#~ msgid "Stay up to date with the latest bollywood news, music, movies."
1360+#~ msgstr "Бъдете в крак с най-актуалните новини."
1361+
1362+#, fuzzy
1363+#~ msgid ""
1364+#~ "Book displays content from a variety of different sources.<br><br>You can "
1365+#~ "use the scope settings to decide which book sources are shown allowing "
1366+#~ "you to create your own book feed based on your interests."
1367+#~ msgstr ""
1368+#~ "Новините изобразяват съдържание от разнообразни източници.<br><br>Можете "
1369+#~ "да използвате настройките за обхват, за да решите кои източници на новини "
1370+#~ "да се показват, което Ви позволява да създадете свой собствен новинарски "
1371+#~ "фийд, базиран на Вашите интереси."
1372+
1373+#, fuzzy
1374+#~ msgid "Welcome to the Bollywood scope"
1375+#~ msgstr "Добре дошли в обхвата на Today"
1376+
1377+#, fuzzy
1378+#~ msgid "Hot star"
1379+#~ msgstr "Започнете."
1380+
1381+#, fuzzy
1382+#~ msgid "Contents of your Bollywood scope"
1383+#~ msgstr "Съдържание на Вашите Новини"
1384+
1385+#, fuzzy
1386+#~ msgid "Find your books here."
1387+#~ msgstr "Намерете Вашите снимки тук"
1388+
1389+#, fuzzy
1390+#~ msgid ""
1391+#~ "Books makes it easy to browse your books, magazines from Douban, China "
1392+#~ "mobile, and Viva - all in one place."
1393+#~ msgstr ""
1394+#~ "Снимките улесняват разглеждането на Вашите снимки от Instagram, Facebook, "
1395+#~ "Flickr и камерата - всичко на едно място."
1396+
1397+#, fuzzy
1398+#~ msgid "Welcome to the Book scope"
1399+#~ msgstr "Добре дошли в обхвата на Today"
1400+
1401+#, fuzzy
1402+#~ msgid "Contents of your book scope"
1403+#~ msgstr "Съдържание на Вашите Новини"
1404+
1405 #~ msgid "Hints"
1406 #~ msgstr "Съвети"
1407
1408@@ -251,6 +309,14 @@
1409 #~ msgid "Hints will now be hidden"
1410 #~ msgstr "Сега съветите ще бъдат скрити"
1411
1412+#
1413+#~ msgid ""
1414+#~ "Please enable location services. Refresh by pulling down the middle of "
1415+#~ "the screen"
1416+#~ msgstr ""
1417+#~ "Моля, активирайте услугите за местоположение. Обновете като издърпате "
1418+#~ "надолу средата на екрана."
1419+
1420 #~ msgid "Photos"
1421 #~ msgstr "Снимки"
1422
1423
1424=== modified file 'po/ca.po'
1425--- po/ca.po 2015-07-20 23:53:41 +0000
1426+++ po/ca.po 2016-06-27 15:49:40 +0000
1427@@ -3,13 +3,17 @@
1428 # This file is distributed under the same license as the PACKAGE package.
1429 # Automatically generated, 2014.
1430 #
1431+#. #-#-#-#-# hints.json.pot (PACKAGE VERSION) #-#-#-#-#
1432+#. extracted from i18n.json
1433+#. #-#-#-#-# aggregator.pot.in.pot (PACKAGE VERSION) #-#-#-#-#
1434 #. #-#-#-#-# translatables.json.pot (PACKAGE VERSION) #-#-#-#-#
1435-#. extracted from ../data/translatables.json
1436+#. extracted from i18n.json
1437+#, fuzzy
1438 msgid ""
1439 msgstr ""
1440 "Project-Id-Version: photos\n"
1441 "Report-Msgid-Bugs-To: \n"
1442-"POT-Creation-Date: 2015-07-20 17:12-0400\n"
1443+"POT-Creation-Date: 2016-06-14 15:38+0800\n"
1444 "PO-Revision-Date: 2014-08-26 13:00-0400\n"
1445 "Last-Translator: Automatically generated\n"
1446 "Language-Team: none\n"
1447@@ -17,8 +21,88 @@
1448 "MIME-Version: 1.0\n"
1449 "Content-Type: text/plain; charset=UTF-8\n"
1450 "Content-Transfer-Encoding: 8bit\n"
1451-
1452-#: ._no_net_msg
1453+"#-#-#-#-# ca.po (photos) #-#-#-#-#\n"
1454+"#-#-#-#-# orig_ca.po (photos) #-#-#-#-#\n"
1455+
1456+#: ._name8 ._name4
1457+msgid "Add account"
1458+msgstr "Afegeix compte"
1459+
1460+#: ._title7
1461+msgid "See your events and more from Google."
1462+msgstr "Vegeu els vostres esdeveniments del Google i molt més."
1463+
1464+#: ._title5
1465+msgid "<b> Review your Google sync settings</b>"
1466+msgstr "<b> Reviseu la vostra configuració de sincronització del Google </b>"
1467+
1468+#: ._title3
1469+msgid "Welcome to the Today scope"
1470+msgstr "Benvinguts a l'ambit d'Avui"
1471+
1472+#: ._title1
1473+msgid "Manage your day with all the essentials."
1474+msgstr "Gestioneu el dia amb tots els aspectes bàsics."
1475+
1476+#: ._subtitle2
1477+msgid "Tap here for more information."
1478+msgstr "Feu un toc aquí per obtenir més informació."
1479+
1480+#: ._title9
1481+msgid "<b> Add your account</b>"
1482+msgstr "<b> Afegiu el compte</b>"
1483+
1484+#: ._loggedin11
1485+msgid "Get started."
1486+msgstr "Comenceu."
1487+
1488+#: ._title10
1489+msgid "Track your activity with Fitbit."
1490+msgstr "Feu un seguiment de la vostra activitat amb el Fitbit."
1491+
1492+#: ._description6
1493+msgid ""
1494+"Adding your Google account will allow Today to display your events and "
1495+"contacts.<br><br>Press the button below to add your account (or go to "
1496+"accounts in the Settings app).<br><br>Remember to enable the contact and "
1497+"calendar sync once you have successfully added it."
1498+msgstr ""
1499+"Si afegiu el compte del Google, Avui podrà mostrar els vostres esdeveniments "
1500+"i contactes.<br><br>Premeu el següent botó per afegir el compte (o aneu a "
1501+"Comptes a l'aplicació Configuració).<br><br>Recordeu-vos d'habilitar la "
1502+"sincronització de contactes i calendari un cop s'hagi afegit el compte "
1503+"correctament."
1504+
1505+#: ._title13
1506+msgid "<b>Skip &amp; set up later</b>"
1507+msgstr "<b>Omet i configura més endavant</b>"
1508+
1509+#: ._description0
1510+msgid ""
1511+"Today gives you a overview of your day including:<br>- events and tasks<br>- "
1512+"calls and messages<br>- news, weather and more.<br><br> You can customise "
1513+"what is shown in Today using the scope settings icon.<br><br> Some services "
1514+"require your log-in below or later."
1515+msgstr ""
1516+"Avui ofereix un resum del dia, incloent-hi:<br>- esdeveniments i "
1517+"tasques<br>- trucades i missatges<br>- notícies, el temps i molt més."
1518+"<br><br> Podeu personalitzar el que es mostra a Avui utilitzant la icona de "
1519+"configuració d'àmbit.<br><br> Per a alguns serveis, és necessari que inicieu "
1520+"sessió abans o després."
1521+
1522+#: ._title12
1523+msgid "Set up your accounts later."
1524+msgstr "Configureu els comptes més endavant."
1525+
1526+#: ._no_loc_msg2 ../src/query.cpp:245
1527+msgid ""
1528+"Please enable location services. Refresh by pulling down the middle of the "
1529+"screen."
1530+msgstr ""
1531+"Habiliteu els serveis d'ubicació. Per actualitzar, desplegueu la part "
1532+"central de la pantalla."
1533+
1534+#: ._no_net_msg0 ../src/query.cpp:207
1535 msgid ""
1536 "Please connect to the internet. Refresh by pulling down the middle of the "
1537 "screen."
1538@@ -26,19 +110,10 @@
1539 "Connecteu-vos a Internet. Per actualitzar, desplegueu la part central de la "
1540 "pantalla."
1541
1542-#: ._category_title
1543+#: ._category_title1
1544 msgid "Install More Sources:"
1545 msgstr ""
1546
1547-#
1548-#: ._no_loc_msg
1549-msgid ""
1550-"Please enable location services. Refresh by pulling down the middle of the "
1551-"screen"
1552-msgstr ""
1553-"Habiliteu els serveis d'ubicació. Per actualitzar, desplegueu la part "
1554-"central de la pantalla."
1555-
1556 #: ../data/scope.ini.in.h:1
1557 msgid "Aggregator"
1558 msgstr ""
1559@@ -47,77 +122,12 @@
1560 msgid "A template for creating an aggregator scope"
1561 msgstr ""
1562
1563-#~ msgid ""
1564-#~ "Please enable location services. Refresh by pulling down the middle of "
1565-#~ "the screen."
1566-#~ msgstr ""
1567-#~ "Habiliteu els serveis d'ubicació. Per actualitzar, desplegueu la part "
1568-#~ "central de la pantalla."
1569-
1570-#~ msgid "Tap here for more information."
1571-#~ msgstr "Feu un toc aquí per obtenir més informació."
1572-
1573-#~ msgid "Manage your day with all the essentials."
1574-#~ msgstr "Gestioneu el dia amb tots els aspectes bàsics."
1575-
1576-#~ msgid ""
1577-#~ "Today gives you a overview of your day including:<br>- events and "
1578-#~ "tasks<br>- calls and messages<br>- news, weather and more.<br><br> You "
1579-#~ "can customise what is shown in Today using the scope settings icon."
1580-#~ "<br><br> Some services require your log-in below or later."
1581-#~ msgstr ""
1582-#~ "Avui ofereix un resum del dia, incloent-hi:<br>- esdeveniments i "
1583-#~ "tasques<br>- trucades i missatges<br>- notícies, el temps i molt més."
1584-#~ "<br><br> Podeu personalitzar el que es mostra a Avui utilitzant la icona "
1585-#~ "de configuració d'àmbit.<br><br> Per a alguns serveis, és necessari que "
1586-#~ "inicieu sessió abans o després."
1587-
1588-#~ msgid "Welcome to the Today scope"
1589-#~ msgstr "Benvinguts a l'ambit d'Avui"
1590-
1591-#~ msgid "Add account"
1592-#~ msgstr "Afegeix compte"
1593-
1594-#~ msgid "<b> Review your Google sync settings</b>"
1595-#~ msgstr ""
1596-#~ "<b> Reviseu la vostra configuració de sincronització del Google </b>"
1597-
1598-#~ msgid ""
1599-#~ "Adding your Google account will allow Today to display your events and "
1600-#~ "contacts.<br><br>Press the button below to add your account (or go to "
1601-#~ "accounts in the Settings app).<br><br>Remember to enable the contact and "
1602-#~ "calendar sync once you have successfully added it."
1603-#~ msgstr ""
1604-#~ "Si afegiu el compte del Google, Avui podrà mostrar els vostres "
1605-#~ "esdeveniments i contactes.<br><br>Premeu el següent botó per afegir el "
1606-#~ "compte (o aneu a Comptes a l'aplicació Configuració).<br><br>Recordeu-vos "
1607-#~ "d'habilitar la sincronització de contactes i calendari un cop s'hagi "
1608-#~ "afegit el compte correctament."
1609-
1610-#~ msgid "See your events and more from Google."
1611-#~ msgstr "Vegeu els vostres esdeveniments del Google i molt més."
1612-
1613 #~ msgid "<b> Successfully logged in</b>"
1614 #~ msgstr "<b> S'ha iniciat sessió correctament</b>"
1615
1616-#~ msgid "<b> Add your account</b>"
1617-#~ msgstr "<b> Afegiu el compte</b>"
1618-
1619-#~ msgid "Track your activity with Fitbit."
1620-#~ msgstr "Feu un seguiment de la vostra activitat amb el Fitbit."
1621-
1622-#~ msgid "Get started."
1623-#~ msgstr "Comenceu."
1624-
1625 #~ msgid "<b>OK</b>"
1626 #~ msgstr "<b>D'acord</b>"
1627
1628-#~ msgid "<b>Skip &amp; set up later</b>"
1629-#~ msgstr "<b>Omet i configura més endavant</b>"
1630-
1631-#~ msgid "Set up your accounts later."
1632-#~ msgstr "Configureu els comptes més endavant."
1633-
1634 #~ msgid "Click here for more information."
1635 #~ msgstr "Feu clic aquí per obtenir més informació."
1636
1637@@ -227,6 +237,53 @@
1638 #~ msgid "See your photo feed from Instagram."
1639 #~ msgstr "Vegeu el vostre canal de fotos de l'Instagram."
1640
1641+#, fuzzy
1642+#~ msgid "Stay up to date with the latest bollywood news, music, movies."
1643+#~ msgstr "Estigueu al dia amb les notícies més recents."
1644+
1645+#, fuzzy
1646+#~ msgid ""
1647+#~ "Book displays content from a variety of different sources.<br><br>You can "
1648+#~ "use the scope settings to decide which book sources are shown allowing "
1649+#~ "you to create your own book feed based on your interests."
1650+#~ msgstr ""
1651+#~ "Notícies mostra contingut procedent de diverses fonts.<br><br>Podeu "
1652+#~ "utilitzar la configuració d'àmbit per decidir les fonts de notícies que "
1653+#~ "voleu que es mostrin i crear els vostres propis canals de notícies segons "
1654+#~ "el que us interessi."
1655+
1656+#, fuzzy
1657+#~ msgid "Welcome to the Bollywood scope"
1658+#~ msgstr "Benvinguts a l'ambit d'Avui"
1659+
1660+#, fuzzy
1661+#~ msgid "Hot star"
1662+#~ msgstr "Comenceu."
1663+
1664+#, fuzzy
1665+#~ msgid "Contents of your Bollywood scope"
1666+#~ msgstr "Contingut de l'ambit de Notícies"
1667+
1668+#, fuzzy
1669+#~ msgid "Find your books here."
1670+#~ msgstr "Cerqueu aquí les vostres fotos"
1671+
1672+#, fuzzy
1673+#~ msgid ""
1674+#~ "Books makes it easy to browse your books, magazines from Douban, China "
1675+#~ "mobile, and Viva - all in one place."
1676+#~ msgstr ""
1677+#~ "Fotos facilita la cerca de fotografies de l'Instagram, el Facebook, el "
1678+#~ "Flickr i la càmera. Tot al mateix lloc."
1679+
1680+#, fuzzy
1681+#~ msgid "Welcome to the Book scope"
1682+#~ msgstr "Benvinguts a l'ambit d'Avui"
1683+
1684+#, fuzzy
1685+#~ msgid "Contents of your book scope"
1686+#~ msgstr "Contingut de l'ambit de Notícies"
1687+
1688 #~ msgid "Hints"
1689 #~ msgstr "Consells"
1690
1691@@ -253,6 +310,14 @@
1692 #~ msgid "Hints will now be hidden"
1693 #~ msgstr "A partir d'ara, s'ocultaran els consells"
1694
1695+#
1696+#~ msgid ""
1697+#~ "Please enable location services. Refresh by pulling down the middle of "
1698+#~ "the screen"
1699+#~ msgstr ""
1700+#~ "Habiliteu els serveis d'ubicació. Per actualitzar, desplegueu la part "
1701+#~ "central de la pantalla."
1702+
1703 #~ msgid "Photos"
1704 #~ msgstr "Fotos"
1705
1706
1707=== modified file 'po/cs.po'
1708--- po/cs.po 2015-07-20 23:53:41 +0000
1709+++ po/cs.po 2016-06-27 15:49:40 +0000
1710@@ -3,13 +3,17 @@
1711 # This file is distributed under the same license as the PACKAGE package.
1712 # Automatically generated, 2014.
1713 #
1714+#. #-#-#-#-# hints.json.pot (PACKAGE VERSION) #-#-#-#-#
1715+#. extracted from i18n.json
1716+#. #-#-#-#-# aggregator.pot.in.pot (PACKAGE VERSION) #-#-#-#-#
1717 #. #-#-#-#-# translatables.json.pot (PACKAGE VERSION) #-#-#-#-#
1718-#. extracted from ../data/translatables.json
1719+#. extracted from i18n.json
1720+#, fuzzy
1721 msgid ""
1722 msgstr ""
1723 "Project-Id-Version: photos\n"
1724 "Report-Msgid-Bugs-To: \n"
1725-"POT-Creation-Date: 2015-07-20 17:12-0400\n"
1726+"POT-Creation-Date: 2016-06-14 15:38+0800\n"
1727 "PO-Revision-Date: 2014-08-26 13:00-0400\n"
1728 "Last-Translator: Automatically generated\n"
1729 "Language-Team: none\n"
1730@@ -17,25 +21,96 @@
1731 "MIME-Version: 1.0\n"
1732 "Content-Type: text/plain; charset=UTF-8\n"
1733 "Content-Transfer-Encoding: 8bit\n"
1734-"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
1735-
1736-#: ._no_net_msg
1737+"#-#-#-#-# cs.po (photos) #-#-#-#-#\n"
1738+"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
1739+"#-#-#-#-# orig_cs.po (photos) #-#-#-#-#\n"
1740+"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
1741+
1742+#: ._name8 ._name4
1743+msgid "Add account"
1744+msgstr "Přidat účet"
1745+
1746+#: ._title7
1747+msgid "See your events and more from Google."
1748+msgstr "Podívejte se na události a další položky v Google."
1749+
1750+#: ._title5
1751+msgid "<b> Review your Google sync settings</b>"
1752+msgstr "<b> Zkontrolujte si nastavení synchronizace Google</b>"
1753+
1754+#: ._title3
1755+msgid "Welcome to the Today scope"
1756+msgstr "Vítejte v přehledu Dnes"
1757+
1758+#: ._title1
1759+msgid "Manage your day with all the essentials."
1760+msgstr "Uspořádejte si den se všemi základními fakty."
1761+
1762+#: ._subtitle2
1763+msgid "Tap here for more information."
1764+msgstr "Klepněte zde pro více informací."
1765+
1766+#: ._title9
1767+msgid "<b> Add your account</b>"
1768+msgstr "<b> Zadejte svůj účet</b>"
1769+
1770+#: ._loggedin11
1771+msgid "Get started."
1772+msgstr "Jděte do toho."
1773+
1774+#: ._title10
1775+msgid "Track your activity with Fitbit."
1776+msgstr "Sledujte svou aktivitu pomocí Fitbit."
1777+
1778+#: ._description6
1779+msgid ""
1780+"Adding your Google account will allow Today to display your events and "
1781+"contacts.<br><br>Press the button below to add your account (or go to "
1782+"accounts in the Settings app).<br><br>Remember to enable the contact and "
1783+"calendar sync once you have successfully added it."
1784+msgstr ""
1785+"Když si přidáte účet Google, budou se zobrazovat vaše události a kontakty v "
1786+"přehledu Dnes.<br><br>Stisknutím tlačítka dole zadejte svůj účet (nebo "
1787+"přejděte na účty v aplikaci Nastavení).<br><br>Po úspěšném zadání účtu "
1788+"nezapomeňte zapnout synchronizaci kontaktů a kalendáře."
1789+
1790+#: ._title13
1791+msgid "<b>Skip &amp; set up later</b>"
1792+msgstr "<b>Přeskočit &amp; nastavit později</b>"
1793+
1794+#: ._description0
1795+msgid ""
1796+"Today gives you a overview of your day including:<br>- events and tasks<br>- "
1797+"calls and messages<br>- news, weather and more.<br><br> You can customise "
1798+"what is shown in Today using the scope settings icon.<br><br> Some services "
1799+"require your log-in below or later."
1800+msgstr ""
1801+"V přehledu Dnes je uveden souhrn celého dne včetně těchto položek:<br>- "
1802+"události a úkoly<br>- volání a zprávy<br>- novinky, počasí a další.<br><br> "
1803+"Obsah zobrazující se v přehledu Dnes si můžete přizpůsobit pomocí ikony "
1804+"nastavení přehledu.<br><br> Některé služby vyžadují, abyste se níže nyní "
1805+"nebo později přihlásili."
1806+
1807+#: ._title12
1808+msgid "Set up your accounts later."
1809+msgstr "Nastavte svoje účty později."
1810+
1811+#: ._no_loc_msg2 ../src/query.cpp:245
1812+msgid ""
1813+"Please enable location services. Refresh by pulling down the middle of the "
1814+"screen."
1815+msgstr "Zapněte lokační služby. Obnovte stažením prostředku obrazovky dolů."
1816+
1817+#: ._no_net_msg0 ../src/query.cpp:207
1818 msgid ""
1819 "Please connect to the internet. Refresh by pulling down the middle of the "
1820 "screen."
1821 msgstr "Připojte se k internetu. Obnovte stažením prostředku obrazovky dolů."
1822
1823-#: ._category_title
1824+#: ._category_title1
1825 msgid "Install More Sources:"
1826 msgstr ""
1827
1828-#
1829-#: ._no_loc_msg
1830-msgid ""
1831-"Please enable location services. Refresh by pulling down the middle of the "
1832-"screen"
1833-msgstr "Zapněte lokační služby. Obnovte stažením prostředku obrazovky dolů."
1834-
1835 #: ../data/scope.ini.in.h:1
1836 msgid "Aggregator"
1837 msgstr ""
1838@@ -44,73 +119,12 @@
1839 msgid "A template for creating an aggregator scope"
1840 msgstr ""
1841
1842-#~ msgid ""
1843-#~ "Please enable location services. Refresh by pulling down the middle of "
1844-#~ "the screen."
1845-#~ msgstr "Zapněte lokační služby. Obnovte stažením prostředku obrazovky dolů."
1846-
1847-#~ msgid "Tap here for more information."
1848-#~ msgstr "Klepněte zde pro více informací."
1849-
1850-#~ msgid "Manage your day with all the essentials."
1851-#~ msgstr "Uspořádejte si den se všemi základními fakty."
1852-
1853-#~ msgid ""
1854-#~ "Today gives you a overview of your day including:<br>- events and "
1855-#~ "tasks<br>- calls and messages<br>- news, weather and more.<br><br> You "
1856-#~ "can customise what is shown in Today using the scope settings icon."
1857-#~ "<br><br> Some services require your log-in below or later."
1858-#~ msgstr ""
1859-#~ "V přehledu Dnes je uveden souhrn celého dne včetně těchto položek:<br>- "
1860-#~ "události a úkoly<br>- volání a zprávy<br>- novinky, počasí a další."
1861-#~ "<br><br> Obsah zobrazující se v přehledu Dnes si můžete přizpůsobit "
1862-#~ "pomocí ikony nastavení přehledu.<br><br> Některé služby vyžadují, abyste "
1863-#~ "se níže nyní nebo později přihlásili."
1864-
1865-#~ msgid "Welcome to the Today scope"
1866-#~ msgstr "Vítejte v přehledu Dnes"
1867-
1868-#~ msgid "Add account"
1869-#~ msgstr "Přidat účet"
1870-
1871-#~ msgid "<b> Review your Google sync settings</b>"
1872-#~ msgstr "<b> Zkontrolujte si nastavení synchronizace Google</b>"
1873-
1874-#~ msgid ""
1875-#~ "Adding your Google account will allow Today to display your events and "
1876-#~ "contacts.<br><br>Press the button below to add your account (or go to "
1877-#~ "accounts in the Settings app).<br><br>Remember to enable the contact and "
1878-#~ "calendar sync once you have successfully added it."
1879-#~ msgstr ""
1880-#~ "Když si přidáte účet Google, budou se zobrazovat vaše události a kontakty "
1881-#~ "v přehledu Dnes.<br><br>Stisknutím tlačítka dole zadejte svůj účet (nebo "
1882-#~ "přejděte na účty v aplikaci Nastavení).<br><br>Po úspěšném zadání účtu "
1883-#~ "nezapomeňte zapnout synchronizaci kontaktů a kalendáře."
1884-
1885-#~ msgid "See your events and more from Google."
1886-#~ msgstr "Podívejte se na události a další položky v Google."
1887-
1888 #~ msgid "<b> Successfully logged in</b>"
1889 #~ msgstr "<b> Přihlášení proběhlo úspěšně</b>"
1890
1891-#~ msgid "<b> Add your account</b>"
1892-#~ msgstr "<b> Zadejte svůj účet</b>"
1893-
1894-#~ msgid "Track your activity with Fitbit."
1895-#~ msgstr "Sledujte svou aktivitu pomocí Fitbit."
1896-
1897-#~ msgid "Get started."
1898-#~ msgstr "Jděte do toho."
1899-
1900 #~ msgid "<b>OK</b>"
1901 #~ msgstr "<b>OK</b>"
1902
1903-#~ msgid "<b>Skip &amp; set up later</b>"
1904-#~ msgstr "<b>Přeskočit &amp; nastavit později</b>"
1905-
1906-#~ msgid "Set up your accounts later."
1907-#~ msgstr "Nastavte svoje účty později."
1908-
1909 #~ msgid "Click here for more information."
1910 #~ msgstr "Klikněte zde pro více informací."
1911
1912@@ -219,6 +233,52 @@
1913 #~ msgid "See your photo feed from Instagram."
1914 #~ msgstr "Podívejte se na svoje fotografie z Instagramu."
1915
1916+#, fuzzy
1917+#~ msgid "Stay up to date with the latest bollywood news, music, movies."
1918+#~ msgstr "Udržujte si aktuální přehled o novinkách."
1919+
1920+#, fuzzy
1921+#~ msgid ""
1922+#~ "Book displays content from a variety of different sources.<br><br>You can "
1923+#~ "use the scope settings to decide which book sources are shown allowing "
1924+#~ "you to create your own book feed based on your interests."
1925+#~ msgstr ""
1926+#~ "Novinky zobrazují obsah z řady různých zdrojů.<br><br>Pomocí nastavení "
1927+#~ "rozsahu můžete rozhodnout, které zdroje novinek se budou zobrazovat a "
1928+#~ "vytvořit si tak vlastní náplň novinek podle svých zájmů."
1929+
1930+#, fuzzy
1931+#~ msgid "Welcome to the Bollywood scope"
1932+#~ msgstr "Vítejte v přehledu Dnes"
1933+
1934+#, fuzzy
1935+#~ msgid "Hot star"
1936+#~ msgstr "Jděte do toho."
1937+
1938+#, fuzzy
1939+#~ msgid "Contents of your Bollywood scope"
1940+#~ msgstr "Obsah vašeho přehledu Novinky"
1941+
1942+#, fuzzy
1943+#~ msgid "Find your books here."
1944+#~ msgstr "Zde najdete svoje fotografie"
1945+
1946+#, fuzzy
1947+#~ msgid ""
1948+#~ "Books makes it easy to browse your books, magazines from Douban, China "
1949+#~ "mobile, and Viva - all in one place."
1950+#~ msgstr ""
1951+#~ "Přehled Fotografie umožňuje snadné procházení vašich obrázků z aplikací "
1952+#~ "Instagram, Facebook, Flickr a z fotoaparátu - vše na jednom místě."
1953+
1954+#, fuzzy
1955+#~ msgid "Welcome to the Book scope"
1956+#~ msgstr "Vítejte v přehledu Dnes"
1957+
1958+#, fuzzy
1959+#~ msgid "Contents of your book scope"
1960+#~ msgstr "Obsah vašeho přehledu Novinky"
1961+
1962 #~ msgid "Hints"
1963 #~ msgstr "Rady"
1964
1965@@ -244,6 +304,12 @@
1966 #~ msgid "Hints will now be hidden"
1967 #~ msgstr "Rady budou skryté"
1968
1969+#
1970+#~ msgid ""
1971+#~ "Please enable location services. Refresh by pulling down the middle of "
1972+#~ "the screen"
1973+#~ msgstr "Zapněte lokační služby. Obnovte stažením prostředku obrazovky dolů."
1974+
1975 #~ msgid "Photos"
1976 #~ msgstr "Fotografie"
1977
1978
1979=== modified file 'po/da.po'
1980--- po/da.po 2015-07-20 23:53:41 +0000
1981+++ po/da.po 2016-06-27 15:49:40 +0000
1982@@ -3,13 +3,17 @@
1983 # This file is distributed under the same license as the PACKAGE package.
1984 # Automatically generated, 2014.
1985 #
1986+#. #-#-#-#-# hints.json.pot (PACKAGE VERSION) #-#-#-#-#
1987+#. extracted from i18n.json
1988+#. #-#-#-#-# aggregator.pot.in.pot (PACKAGE VERSION) #-#-#-#-#
1989 #. #-#-#-#-# translatables.json.pot (PACKAGE VERSION) #-#-#-#-#
1990-#. extracted from ../data/translatables.json
1991+#. extracted from i18n.json
1992+#, fuzzy
1993 msgid ""
1994 msgstr ""
1995 "Project-Id-Version: photos\n"
1996 "Report-Msgid-Bugs-To: \n"
1997-"POT-Creation-Date: 2015-07-20 17:12-0400\n"
1998+"POT-Creation-Date: 2016-06-14 15:38+0800\n"
1999 "PO-Revision-Date: 2014-08-26 13:00-0400\n"
2000 "Last-Translator: Automatically generated\n"
2001 "Language-Team: none\n"
2002@@ -17,9 +21,87 @@
2003 "MIME-Version: 1.0\n"
2004 "Content-Type: text/plain; charset=UTF-8\n"
2005 "Content-Transfer-Encoding: 8bit\n"
2006-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
2007-
2008-#: ._no_net_msg
2009+"#-#-#-#-# da.po (photos) #-#-#-#-#\n"
2010+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
2011+"#-#-#-#-# orig_da.po (photos) #-#-#-#-#\n"
2012+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
2013+
2014+#: ._name8 ._name4
2015+msgid "Add account"
2016+msgstr "Tilføj konto"
2017+
2018+#: ._title7
2019+msgid "See your events and more from Google."
2020+msgstr "Se dine begivenheder med mere fra Google."
2021+
2022+#: ._title5
2023+msgid "<b> Review your Google sync settings</b>"
2024+msgstr "<b> Kontroller dine indstillinger for Google-synkronisering</b>"
2025+
2026+#: ._title3
2027+msgid "Welcome to the Today scope"
2028+msgstr "Velkommen til området I dag"
2029+
2030+#: ._title1
2031+msgid "Manage your day with all the essentials."
2032+msgstr "Hold styr på din dag med alle de vigtigste ting."
2033+
2034+#: ._subtitle2
2035+msgid "Tap here for more information."
2036+msgstr "Tryk her for at få flere oplysninger."
2037+
2038+#: ._title9
2039+msgid "<b> Add your account</b>"
2040+msgstr "<b> Tilføj din konto</b>"
2041+
2042+#: ._loggedin11
2043+msgid "Get started."
2044+msgstr "Kom i gang."
2045+
2046+#: ._title10
2047+msgid "Track your activity with Fitbit."
2048+msgstr "Spor din aktivitet med Fitbit."
2049+
2050+#: ._description6
2051+msgid ""
2052+"Adding your Google account will allow Today to display your events and "
2053+"contacts.<br><br>Press the button below to add your account (or go to "
2054+"accounts in the Settings app).<br><br>Remember to enable the contact and "
2055+"calendar sync once you have successfully added it."
2056+msgstr ""
2057+"Når du tilføjer din Google-konto, kan I dag vise dine begivenheder og "
2058+"kontakter.<br><br>Tryk på knappen nedenfor for at tilføje din konto (eller "
2059+"gå til Konti i app'en Indstillinger).<br><br>Husk at aktivere synkronisering "
2060+"af kontaktpersoner og kalender, når du har tilføjet den."
2061+
2062+#: ._title13
2063+msgid "<b>Skip &amp; set up later</b>"
2064+msgstr "<b>Spring over, og opret senere</b>"
2065+
2066+#: ._description0
2067+msgid ""
2068+"Today gives you a overview of your day including:<br>- events and tasks<br>- "
2069+"calls and messages<br>- news, weather and more.<br><br> You can customise "
2070+"what is shown in Today using the scope settings icon.<br><br> Some services "
2071+"require your log-in below or later."
2072+msgstr ""
2073+"I dag giver dig en oversigt over din dag, herunder:<br>- begivenheder og "
2074+"opgaver<br>- opkald og beskeder<br>- nyheder, vejret med mere.<br><br> Du "
2075+"kan tilpasse, hvad der vises i I dag, ved hjælp af områdeindstillingsikonet."
2076+"<br><br> Nogle tjenester kræver, at du logger på nedenfor eller senere."
2077+
2078+#: ._title12
2079+msgid "Set up your accounts later."
2080+msgstr "Opret dine konti senere."
2081+
2082+#: ._no_loc_msg2 ../src/query.cpp:245
2083+msgid ""
2084+"Please enable location services. Refresh by pulling down the middle of the "
2085+"screen."
2086+msgstr ""
2087+"Aktiver placeringstjenester. Opdater ved at trække ned fra midten af skærmen."
2088+
2089+#: ._no_net_msg0 ../src/query.cpp:207
2090 msgid ""
2091 "Please connect to the internet. Refresh by pulling down the middle of the "
2092 "screen."
2093@@ -27,18 +109,10 @@
2094 "Opret forbindelse til internettet. Opdater ved at trække ned fra midten af "
2095 "skærmen."
2096
2097-#: ._category_title
2098+#: ._category_title1
2099 msgid "Install More Sources:"
2100 msgstr ""
2101
2102-#
2103-#: ._no_loc_msg
2104-msgid ""
2105-"Please enable location services. Refresh by pulling down the middle of the "
2106-"screen"
2107-msgstr ""
2108-"Aktiver placeringstjenester. Opdater ved at trække ned fra midten af skærmen."
2109-
2110 #: ../data/scope.ini.in.h:1
2111 msgid "Aggregator"
2112 msgstr ""
2113@@ -47,75 +121,12 @@
2114 msgid "A template for creating an aggregator scope"
2115 msgstr ""
2116
2117-#~ msgid ""
2118-#~ "Please enable location services. Refresh by pulling down the middle of "
2119-#~ "the screen."
2120-#~ msgstr ""
2121-#~ "Aktiver placeringstjenester. Opdater ved at trække ned fra midten af "
2122-#~ "skærmen."
2123-
2124-#~ msgid "Tap here for more information."
2125-#~ msgstr "Tryk her for at få flere oplysninger."
2126-
2127-#~ msgid "Manage your day with all the essentials."
2128-#~ msgstr "Hold styr på din dag med alle de vigtigste ting."
2129-
2130-#~ msgid ""
2131-#~ "Today gives you a overview of your day including:<br>- events and "
2132-#~ "tasks<br>- calls and messages<br>- news, weather and more.<br><br> You "
2133-#~ "can customise what is shown in Today using the scope settings icon."
2134-#~ "<br><br> Some services require your log-in below or later."
2135-#~ msgstr ""
2136-#~ "I dag giver dig en oversigt over din dag, herunder:<br>- begivenheder og "
2137-#~ "opgaver<br>- opkald og beskeder<br>- nyheder, vejret med mere.<br><br> Du "
2138-#~ "kan tilpasse, hvad der vises i I dag, ved hjælp af "
2139-#~ "områdeindstillingsikonet.<br><br> Nogle tjenester kræver, at du logger på "
2140-#~ "nedenfor eller senere."
2141-
2142-#~ msgid "Welcome to the Today scope"
2143-#~ msgstr "Velkommen til området I dag"
2144-
2145-#~ msgid "Add account"
2146-#~ msgstr "Tilføj konto"
2147-
2148-#~ msgid "<b> Review your Google sync settings</b>"
2149-#~ msgstr "<b> Kontroller dine indstillinger for Google-synkronisering</b>"
2150-
2151-#~ msgid ""
2152-#~ "Adding your Google account will allow Today to display your events and "
2153-#~ "contacts.<br><br>Press the button below to add your account (or go to "
2154-#~ "accounts in the Settings app).<br><br>Remember to enable the contact and "
2155-#~ "calendar sync once you have successfully added it."
2156-#~ msgstr ""
2157-#~ "Når du tilføjer din Google-konto, kan I dag vise dine begivenheder og "
2158-#~ "kontakter.<br><br>Tryk på knappen nedenfor for at tilføje din konto "
2159-#~ "(eller gå til Konti i app'en Indstillinger).<br><br>Husk at aktivere "
2160-#~ "synkronisering af kontaktpersoner og kalender, når du har tilføjet den."
2161-
2162-#~ msgid "See your events and more from Google."
2163-#~ msgstr "Se dine begivenheder med mere fra Google."
2164-
2165 #~ msgid "<b> Successfully logged in</b>"
2166 #~ msgstr "<b> Logget på</b>"
2167
2168-#~ msgid "<b> Add your account</b>"
2169-#~ msgstr "<b> Tilføj din konto</b>"
2170-
2171-#~ msgid "Track your activity with Fitbit."
2172-#~ msgstr "Spor din aktivitet med Fitbit."
2173-
2174-#~ msgid "Get started."
2175-#~ msgstr "Kom i gang."
2176-
2177 #~ msgid "<b>OK</b>"
2178 #~ msgstr "<b>OK</b>"
2179
2180-#~ msgid "<b>Skip &amp; set up later</b>"
2181-#~ msgstr "<b>Spring over, og opret senere</b>"
2182-
2183-#~ msgid "Set up your accounts later."
2184-#~ msgstr "Opret dine konti senere."
2185-
2186 #~ msgid "Click here for more information."
2187 #~ msgstr "Klik her for at få flere oplysninger."
2188
2189@@ -225,6 +236,53 @@
2190 #~ msgid "See your photo feed from Instagram."
2191 #~ msgstr "Se dit foto-feed fra Instagram."
2192
2193+#, fuzzy
2194+#~ msgid "Stay up to date with the latest bollywood news, music, movies."
2195+#~ msgstr "Hold dig opdateret med de seneste nyheder."
2196+
2197+#, fuzzy
2198+#~ msgid ""
2199+#~ "Book displays content from a variety of different sources.<br><br>You can "
2200+#~ "use the scope settings to decide which book sources are shown allowing "
2201+#~ "you to create your own book feed based on your interests."
2202+#~ msgstr ""
2203+#~ "Nyheder viser indhold fra en række forskellige kilder.<br><br>Du kan "
2204+#~ "bruge områdeindstillingerne til at vælge, hvilke nyhedskilder der skal "
2205+#~ "vises, så du kan oprette dit eget nyhedsfeed på grundlag af dine "
2206+#~ "interesser."
2207+
2208+#, fuzzy
2209+#~ msgid "Welcome to the Bollywood scope"
2210+#~ msgstr "Velkommen til området I dag"
2211+
2212+#, fuzzy
2213+#~ msgid "Hot star"
2214+#~ msgstr "Kom i gang."
2215+
2216+#, fuzzy
2217+#~ msgid "Contents of your Bollywood scope"
2218+#~ msgstr "Indhold i dit Nyheder-område"
2219+
2220+#, fuzzy
2221+#~ msgid "Find your books here."
2222+#~ msgstr "Find dine fotos her"
2223+
2224+#, fuzzy
2225+#~ msgid ""
2226+#~ "Books makes it easy to browse your books, magazines from Douban, China "
2227+#~ "mobile, and Viva - all in one place."
2228+#~ msgstr ""
2229+#~ "Fotos hør det nemt at finde dine billeder fra Instagram, Facebook, Flickr "
2230+#~ "og kameraet – det hele på ét sted."
2231+
2232+#, fuzzy
2233+#~ msgid "Welcome to the Book scope"
2234+#~ msgstr "Velkommen til området I dag"
2235+
2236+#, fuzzy
2237+#~ msgid "Contents of your book scope"
2238+#~ msgstr "Indhold i dit Nyheder-område"
2239+
2240 #~ msgid "Hints"
2241 #~ msgstr "Tip"
2242
2243@@ -251,6 +309,14 @@
2244 #~ msgid "Hints will now be hidden"
2245 #~ msgstr "Tip vil nu blive skjult"
2246
2247+#
2248+#~ msgid ""
2249+#~ "Please enable location services. Refresh by pulling down the middle of "
2250+#~ "the screen"
2251+#~ msgstr ""
2252+#~ "Aktiver placeringstjenester. Opdater ved at trække ned fra midten af "
2253+#~ "skærmen."
2254+
2255 #~ msgid "Photos"
2256 #~ msgstr "Fotos"
2257
2258
2259=== modified file 'po/de.po'
2260--- po/de.po 2015-07-20 23:53:41 +0000
2261+++ po/de.po 2016-06-27 15:49:40 +0000
2262@@ -3,13 +3,17 @@
2263 # This file is distributed under the same license as the PACKAGE package.
2264 # Automatically generated, 2014.
2265 #
2266+#. #-#-#-#-# hints.json.pot (PACKAGE VERSION) #-#-#-#-#
2267+#. extracted from i18n.json
2268+#. #-#-#-#-# aggregator.pot.in.pot (PACKAGE VERSION) #-#-#-#-#
2269 #. #-#-#-#-# translatables.json.pot (PACKAGE VERSION) #-#-#-#-#
2270-#. extracted from ../data/translatables.json
2271+#. extracted from i18n.json
2272+#, fuzzy
2273 msgid ""
2274 msgstr ""
2275 "Project-Id-Version: photos\n"
2276 "Report-Msgid-Bugs-To: \n"
2277-"POT-Creation-Date: 2015-07-20 17:12-0400\n"
2278+"POT-Creation-Date: 2016-06-14 15:38+0800\n"
2279 "PO-Revision-Date: 2014-08-26 13:00-0400\n"
2280 "Last-Translator: Automatically generated\n"
2281 "Language-Team: none\n"
2282@@ -17,9 +21,91 @@
2283 "MIME-Version: 1.0\n"
2284 "Content-Type: text/plain; charset=UTF-8\n"
2285 "Content-Transfer-Encoding: 8bit\n"
2286-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
2287-
2288-#: ._no_net_msg
2289+"#-#-#-#-# de.po (photos) #-#-#-#-#\n"
2290+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
2291+"#-#-#-#-# orig_de.po (photos) #-#-#-#-#\n"
2292+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
2293+
2294+#: ._name8 ._name4
2295+msgid "Add account"
2296+msgstr "Konto hinzufügen"
2297+
2298+#: ._title7
2299+msgid "See your events and more from Google."
2300+msgstr "Zeigen Sie Ihre Ereignisse und mehr von Google an."
2301+
2302+#: ._title5
2303+msgid "<b> Review your Google sync settings</b>"
2304+msgstr "<b> Überprüfen Sie Ihre Google-Synchronisierungseinstellungen</b>"
2305+
2306+#: ._title3
2307+msgid "Welcome to the Today scope"
2308+msgstr "Willkommen im Bereich \"Heute\""
2309+
2310+#: ._title1
2311+msgid "Manage your day with all the essentials."
2312+msgstr "Verwalten Sie Ihren Tag mit allem was wichtig ist."
2313+
2314+#: ._subtitle2
2315+msgid "Tap here for more information."
2316+msgstr "Tippen Sie hier, um mehr Informationen zu erhalten."
2317+
2318+#: ._title9
2319+msgid "<b> Add your account</b>"
2320+msgstr "<b> Ihr Konto hinzufügen</b>"
2321+
2322+#: ._loggedin11
2323+msgid "Get started."
2324+msgstr "Erste Schritte."
2325+
2326+#: ._title10
2327+msgid "Track your activity with Fitbit."
2328+msgstr "Verfolgen Sie Ihre Aktivität mit Fitbit."
2329+
2330+#: ._description6
2331+msgid ""
2332+"Adding your Google account will allow Today to display your events and "
2333+"contacts.<br><br>Press the button below to add your account (or go to "
2334+"accounts in the Settings app).<br><br>Remember to enable the contact and "
2335+"calendar sync once you have successfully added it."
2336+msgstr ""
2337+"Wenn Sie Ihr Google-Konto hinzufügen, können Sie Ihre Ereignisse und "
2338+"Kontakte unter \"Heute\" anzeigen.<br><br>Drücken Sie die Schaltfläche "
2339+"unten, um Ihr Konto hinzuzufügen (oder gehen Sie in der Einstellungen-App zu "
2340+"\"Konten\").<br><br>Denken Sie daran, die Kontakt- und "
2341+"Kalendersynchronisierung zu aktivieren, sobald Sie sie erfolgreich "
2342+"hinzugefügt haben."
2343+
2344+#: ._title13
2345+msgid "<b>Skip &amp; set up later</b>"
2346+msgstr "<b>Überspringen &amp; und später einrichten</b>"
2347+
2348+#: ._description0
2349+msgid ""
2350+"Today gives you a overview of your day including:<br>- events and tasks<br>- "
2351+"calls and messages<br>- news, weather and more.<br><br> You can customise "
2352+"what is shown in Today using the scope settings icon.<br><br> Some services "
2353+"require your log-in below or later."
2354+msgstr ""
2355+"\"Heute\" bietet Ihnen einen Überblick über Ihren Tag, einschließlich:<br>- "
2356+"Ereignisse und Aufgaben<br>- Anrufe und Nachrichten<br>- Nachrichten, Wetter "
2357+"und mehr<br><br> Sie können mithilfe des Bereichseinstellungen-Symbols "
2358+"anpassen, was unter \"Heute\" angezeigt wird.<br><br> Für einige Services "
2359+"müssen Sie sich unten oder später anmelden."
2360+
2361+#: ._title12
2362+msgid "Set up your accounts later."
2363+msgstr "Richten Sie Ihre Konten später ein."
2364+
2365+#: ._no_loc_msg2 ../src/query.cpp:245
2366+msgid ""
2367+"Please enable location services. Refresh by pulling down the middle of the "
2368+"screen."
2369+msgstr ""
2370+"Bitte aktivieren Sie Ortsdienste. Aktualisieren Sie, indem Sie die Mitte des "
2371+"Bildschirms nach unten ziehen."
2372+
2373+#: ._no_net_msg0 ../src/query.cpp:207
2374 msgid ""
2375 "Please connect to the internet. Refresh by pulling down the middle of the "
2376 "screen."
2377@@ -27,19 +113,10 @@
2378 "Bitte verbinden Sie sich mit dem Internet. Aktualisieren Sie, indem Sie die "
2379 "Mitte des Bildschirms nach unten ziehen."
2380
2381-#: ._category_title
2382+#: ._category_title1
2383 msgid "Install More Sources:"
2384 msgstr ""
2385
2386-#
2387-#: ._no_loc_msg
2388-msgid ""
2389-"Please enable location services. Refresh by pulling down the middle of the "
2390-"screen"
2391-msgstr ""
2392-"Bitte aktivieren Sie Ortsdienste. Aktualisieren Sie, indem Sie die Mitte des "
2393-"Bildschirms nach unten ziehen."
2394-
2395 #: ../data/scope.ini.in.h:1
2396 msgid "Aggregator"
2397 msgstr ""
2398@@ -48,78 +125,12 @@
2399 msgid "A template for creating an aggregator scope"
2400 msgstr ""
2401
2402-#~ msgid ""
2403-#~ "Please enable location services. Refresh by pulling down the middle of "
2404-#~ "the screen."
2405-#~ msgstr ""
2406-#~ "Bitte aktivieren Sie Ortsdienste. Aktualisieren Sie, indem Sie die Mitte "
2407-#~ "des Bildschirms nach unten ziehen."
2408-
2409-#~ msgid "Tap here for more information."
2410-#~ msgstr "Tippen Sie hier, um mehr Informationen zu erhalten."
2411-
2412-#~ msgid "Manage your day with all the essentials."
2413-#~ msgstr "Verwalten Sie Ihren Tag mit allem was wichtig ist."
2414-
2415-#~ msgid ""
2416-#~ "Today gives you a overview of your day including:<br>- events and "
2417-#~ "tasks<br>- calls and messages<br>- news, weather and more.<br><br> You "
2418-#~ "can customise what is shown in Today using the scope settings icon."
2419-#~ "<br><br> Some services require your log-in below or later."
2420-#~ msgstr ""
2421-#~ "\"Heute\" bietet Ihnen einen Überblick über Ihren Tag, einschließlich:"
2422-#~ "<br>- Ereignisse und Aufgaben<br>- Anrufe und Nachrichten<br>- "
2423-#~ "Nachrichten, Wetter und mehr<br><br> Sie können mithilfe des "
2424-#~ "Bereichseinstellungen-Symbols anpassen, was unter \"Heute\" angezeigt "
2425-#~ "wird.<br><br> Für einige Services müssen Sie sich unten oder später "
2426-#~ "anmelden."
2427-
2428-#~ msgid "Welcome to the Today scope"
2429-#~ msgstr "Willkommen im Bereich \"Heute\""
2430-
2431-#~ msgid "Add account"
2432-#~ msgstr "Konto hinzufügen"
2433-
2434-#~ msgid "<b> Review your Google sync settings</b>"
2435-#~ msgstr "<b> Überprüfen Sie Ihre Google-Synchronisierungseinstellungen</b>"
2436-
2437-#~ msgid ""
2438-#~ "Adding your Google account will allow Today to display your events and "
2439-#~ "contacts.<br><br>Press the button below to add your account (or go to "
2440-#~ "accounts in the Settings app).<br><br>Remember to enable the contact and "
2441-#~ "calendar sync once you have successfully added it."
2442-#~ msgstr ""
2443-#~ "Wenn Sie Ihr Google-Konto hinzufügen, können Sie Ihre Ereignisse und "
2444-#~ "Kontakte unter \"Heute\" anzeigen.<br><br>Drücken Sie die Schaltfläche "
2445-#~ "unten, um Ihr Konto hinzuzufügen (oder gehen Sie in der Einstellungen-App "
2446-#~ "zu \"Konten\").<br><br>Denken Sie daran, die Kontakt- und "
2447-#~ "Kalendersynchronisierung zu aktivieren, sobald Sie sie erfolgreich "
2448-#~ "hinzugefügt haben."
2449-
2450-#~ msgid "See your events and more from Google."
2451-#~ msgstr "Zeigen Sie Ihre Ereignisse und mehr von Google an."
2452-
2453 #~ msgid "<b> Successfully logged in</b>"
2454 #~ msgstr "<b> Erfolgreich angemeldet</b>"
2455
2456-#~ msgid "<b> Add your account</b>"
2457-#~ msgstr "<b> Ihr Konto hinzufügen</b>"
2458-
2459-#~ msgid "Track your activity with Fitbit."
2460-#~ msgstr "Verfolgen Sie Ihre Aktivität mit Fitbit."
2461-
2462-#~ msgid "Get started."
2463-#~ msgstr "Erste Schritte."
2464-
2465 #~ msgid "<b>OK</b>"
2466 #~ msgstr "<b>OK</b>"
2467
2468-#~ msgid "<b>Skip &amp; set up later</b>"
2469-#~ msgstr "<b>Überspringen &amp; und später einrichten</b>"
2470-
2471-#~ msgid "Set up your accounts later."
2472-#~ msgstr "Richten Sie Ihre Konten später ein."
2473-
2474 #~ msgid "Click here for more information."
2475 #~ msgstr "Klicken Sie hier, um mehr Informationen zu erhalten."
2476
2477@@ -230,6 +241,53 @@
2478 #~ msgid "See your photo feed from Instagram."
2479 #~ msgstr "Zeigen Sie Ihren Foto-Feed von Instagram an."
2480
2481+#, fuzzy
2482+#~ msgid "Stay up to date with the latest bollywood news, music, movies."
2483+#~ msgstr "Bei den neuesten Nachrichten auf dem neuesten Stand bleiben"
2484+
2485+#, fuzzy
2486+#~ msgid ""
2487+#~ "Book displays content from a variety of different sources.<br><br>You can "
2488+#~ "use the scope settings to decide which book sources are shown allowing "
2489+#~ "you to create your own book feed based on your interests."
2490+#~ msgstr ""
2491+#~ "Anzeige von Nachrichteninhalten aus einer Vielzahl verschiedener "
2492+#~ "Quellen<br><br>Sie können die Bereichseinstellungen verwenden, um zu "
2493+#~ "entscheiden, welche Nachrichtenquellen angezeigt werden, sodass Sie Ihren "
2494+#~ "eigenen News-Feed auf Basis Ihrer Interessen erstellen können."
2495+
2496+#, fuzzy
2497+#~ msgid "Welcome to the Bollywood scope"
2498+#~ msgstr "Willkommen im Bereich \"Heute\""
2499+
2500+#, fuzzy
2501+#~ msgid "Hot star"
2502+#~ msgstr "Erste Schritte."
2503+
2504+#, fuzzy
2505+#~ msgid "Contents of your Bollywood scope"
2506+#~ msgstr "Inhalt Ihres Bereichs \"Nachrichten\""
2507+
2508+#, fuzzy
2509+#~ msgid "Find your books here."
2510+#~ msgstr "Sie finden Ihre Fotos hier"
2511+
2512+#, fuzzy
2513+#~ msgid ""
2514+#~ "Books makes it easy to browse your books, magazines from Douban, China "
2515+#~ "mobile, and Viva - all in one place."
2516+#~ msgstr ""
2517+#~ "Fotos machen es Ihnen einfach, Ihre Bilder von Instagram, Facebook, "
2518+#~ "Flickr und der Kamera zu durchsuchen – alle an einem Ort."
2519+
2520+#, fuzzy
2521+#~ msgid "Welcome to the Book scope"
2522+#~ msgstr "Willkommen im Bereich \"Heute\""
2523+
2524+#, fuzzy
2525+#~ msgid "Contents of your book scope"
2526+#~ msgstr "Inhalt Ihres Bereichs \"Nachrichten\""
2527+
2528 #~ msgid "Hints"
2529 #~ msgstr "Tipps"
2530
2531@@ -256,6 +314,14 @@
2532 #~ msgid "Hints will now be hidden"
2533 #~ msgstr "Tipps werden jetzt ausgeblendet"
2534
2535+#
2536+#~ msgid ""
2537+#~ "Please enable location services. Refresh by pulling down the middle of "
2538+#~ "the screen"
2539+#~ msgstr ""
2540+#~ "Bitte aktivieren Sie Ortsdienste. Aktualisieren Sie, indem Sie die Mitte "
2541+#~ "des Bildschirms nach unten ziehen."
2542+
2543 #~ msgid "Photos"
2544 #~ msgstr "Fotos"
2545
2546
2547=== modified file 'po/el.po'
2548--- po/el.po 2015-07-20 23:53:41 +0000
2549+++ po/el.po 2016-06-27 15:49:40 +0000
2550@@ -3,13 +3,17 @@
2551 # This file is distributed under the same license as the PACKAGE package.
2552 # Automatically generated, 2014.
2553 #
2554+#. #-#-#-#-# hints.json.pot (PACKAGE VERSION) #-#-#-#-#
2555+#. extracted from i18n.json
2556+#. #-#-#-#-# aggregator.pot.in.pot (PACKAGE VERSION) #-#-#-#-#
2557 #. #-#-#-#-# translatables.json.pot (PACKAGE VERSION) #-#-#-#-#
2558-#. extracted from ../data/translatables.json
2559+#. extracted from i18n.json
2560+#, fuzzy
2561 msgid ""
2562 msgstr ""
2563 "Project-Id-Version: photos\n"
2564 "Report-Msgid-Bugs-To: \n"
2565-"POT-Creation-Date: 2015-07-20 17:12-0400\n"
2566+"POT-Creation-Date: 2016-06-14 15:38+0800\n"
2567 "PO-Revision-Date: 2014-08-26 13:00-0400\n"
2568 "Last-Translator: Automatically generated\n"
2569 "Language-Team: none\n"
2570@@ -17,9 +21,91 @@
2571 "MIME-Version: 1.0\n"
2572 "Content-Type: text/plain; charset=UTF-8\n"
2573 "Content-Transfer-Encoding: 8bit\n"
2574-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
2575-
2576-#: ._no_net_msg
2577+"#-#-#-#-# el.po (photos) #-#-#-#-#\n"
2578+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
2579+"#-#-#-#-# orig_el.po (photos) #-#-#-#-#\n"
2580+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
2581+
2582+#: ._name8 ._name4
2583+msgid "Add account"
2584+msgstr "Προσθήκη λογαριασμού"
2585+
2586+#: ._title7
2587+msgid "See your events and more from Google."
2588+msgstr "Δείτε τις εκδηλώσεις σας και ακόμη περισσότερα από την Google."
2589+
2590+#: ._title5
2591+msgid "<b> Review your Google sync settings</b>"
2592+msgstr "<b> Ελέγξτε τις ρυθμίσεις συγχρονισμού Google</b>"
2593+
2594+#: ._title3
2595+msgid "Welcome to the Today scope"
2596+msgstr "Καλώς ορίσατε στο περιεχόμενο του στοιχείου «Σήμερα»"
2597+
2598+#: ._title1
2599+msgid "Manage your day with all the essentials."
2600+msgstr "Διαχειριστείτε την ημέρα σας με όλα τα βασικά στοιχεία."
2601+
2602+#: ._subtitle2
2603+msgid "Tap here for more information."
2604+msgstr "Για περισσότερες πληροφορίες, πατήστε εδώ."
2605+
2606+#: ._title9
2607+msgid "<b> Add your account</b>"
2608+msgstr "<b> Προσθέστε τον λογαριασμό σας</b>"
2609+
2610+#: ._loggedin11
2611+msgid "Get started."
2612+msgstr "Ξεκινήστε."
2613+
2614+#: ._title10
2615+msgid "Track your activity with Fitbit."
2616+msgstr "Παρακολουθήστε τη δραστηριότητά σας με το Fitbit."
2617+
2618+#: ._description6
2619+msgid ""
2620+"Adding your Google account will allow Today to display your events and "
2621+"contacts.<br><br>Press the button below to add your account (or go to "
2622+"accounts in the Settings app).<br><br>Remember to enable the contact and "
2623+"calendar sync once you have successfully added it."
2624+msgstr ""
2625+"Προσθέτοντας τον λογαριασμό σας Google, επιτρέπετε στην επιλογή «Σήμερα» να "
2626+"εμφανίζει τις εκδηλώσεις και τις επαφές σας.<br><br>Πιέστε το παρακάτω "
2627+"κουμπί για να προσθέσετε τον λογαριασμό σας (ή μεταβείτε στους λογαριασμούς "
2628+"σας στην εφαρμογή «Ρυθμίσεις»).<br><br>Θυμηθείτε να ενεργοποιήσετε τον "
2629+"συγχρονισμό επαφών και ημερολογίου μόλις τον προσθέσετε επιτυχώς."
2630+
2631+#: ._title13
2632+msgid "<b>Skip &amp; set up later</b>"
2633+msgstr "<b>Παράβλεψη και ρύθμιση αργότερα</b>"
2634+
2635+#: ._description0
2636+msgid ""
2637+"Today gives you a overview of your day including:<br>- events and tasks<br>- "
2638+"calls and messages<br>- news, weather and more.<br><br> You can customise "
2639+"what is shown in Today using the scope settings icon.<br><br> Some services "
2640+"require your log-in below or later."
2641+msgstr ""
2642+"Η επιλογή «Σήμερα» παρέχει μια επισκόπηση της ημέρας σας, όπου "
2643+"συμπεριλαμβάνονται:<br>- εκδηλώσεις και εργασίες<br>- κλήσεις και "
2644+"μηνύματα<br>- νέα, καιρός και άλλα πολλά.<br><br> Μπορείτε να προσαρμόσετε "
2645+"τι θα εμφανίζεται στην επιλογή «Σήμερα» χρησιμοποιώντας το εικονίδιο "
2646+"ρυθμίσεων περιεχομένου.<br><br> Ορισμένες υπηρεσίες απαιτούν να συνδεθείτε "
2647+"παρακάτω ή αργότερα."
2648+
2649+#: ._title12
2650+msgid "Set up your accounts later."
2651+msgstr "Ρυθμίστε τους λογαριασμούς σας αργότερα."
2652+
2653+#: ._no_loc_msg2 ../src/query.cpp:245
2654+msgid ""
2655+"Please enable location services. Refresh by pulling down the middle of the "
2656+"screen."
2657+msgstr ""
2658+"Ενεργοποιήστε τις υπηρεσίες τοποθεσίας. Πραγματοποιήστε ανανέωση σύροντας "
2659+"προς τα κάτω το μεσαίο τμήμα της οθόνης."
2660+
2661+#: ._no_net_msg0 ../src/query.cpp:207
2662 msgid ""
2663 "Please connect to the internet. Refresh by pulling down the middle of the "
2664 "screen."
2665@@ -27,19 +113,10 @@
2666 "Συνδεθείτε στο διαδίκτυο. Πραγματοποιήστε ανανέωση σύροντας προς τα κάτω το "
2667 "μεσαίο τμήμα της οθόνης."
2668
2669-#: ._category_title
2670+#: ._category_title1
2671 msgid "Install More Sources:"
2672 msgstr ""
2673
2674-#
2675-#: ._no_loc_msg
2676-msgid ""
2677-"Please enable location services. Refresh by pulling down the middle of the "
2678-"screen"
2679-msgstr ""
2680-"Ενεργοποιήστε τις υπηρεσίες τοποθεσίας. Πραγματοποιήστε ανανέωση σύροντας "
2681-"προς τα κάτω το μεσαίο τμήμα της οθόνης."
2682-
2683 #: ../data/scope.ini.in.h:1
2684 msgid "Aggregator"
2685 msgstr ""
2686@@ -48,78 +125,12 @@
2687 msgid "A template for creating an aggregator scope"
2688 msgstr ""
2689
2690-#~ msgid ""
2691-#~ "Please enable location services. Refresh by pulling down the middle of "
2692-#~ "the screen."
2693-#~ msgstr ""
2694-#~ "Ενεργοποιήστε τις υπηρεσίες τοποθεσίας. Πραγματοποιήστε ανανέωση σύροντας "
2695-#~ "προς τα κάτω το μεσαίο τμήμα της οθόνης."
2696-
2697-#~ msgid "Tap here for more information."
2698-#~ msgstr "Για περισσότερες πληροφορίες, πατήστε εδώ."
2699-
2700-#~ msgid "Manage your day with all the essentials."
2701-#~ msgstr "Διαχειριστείτε την ημέρα σας με όλα τα βασικά στοιχεία."
2702-
2703-#~ msgid ""
2704-#~ "Today gives you a overview of your day including:<br>- events and "
2705-#~ "tasks<br>- calls and messages<br>- news, weather and more.<br><br> You "
2706-#~ "can customise what is shown in Today using the scope settings icon."
2707-#~ "<br><br> Some services require your log-in below or later."
2708-#~ msgstr ""
2709-#~ "Η επιλογή «Σήμερα» παρέχει μια επισκόπηση της ημέρας σας, όπου "
2710-#~ "συμπεριλαμβάνονται:<br>- εκδηλώσεις και εργασίες<br>- κλήσεις και "
2711-#~ "μηνύματα<br>- νέα, καιρός και άλλα πολλά.<br><br> Μπορείτε να "
2712-#~ "προσαρμόσετε τι θα εμφανίζεται στην επιλογή «Σήμερα» χρησιμοποιώντας το "
2713-#~ "εικονίδιο ρυθμίσεων περιεχομένου.<br><br> Ορισμένες υπηρεσίες απαιτούν να "
2714-#~ "συνδεθείτε παρακάτω ή αργότερα."
2715-
2716-#~ msgid "Welcome to the Today scope"
2717-#~ msgstr "Καλώς ορίσατε στο περιεχόμενο του στοιχείου «Σήμερα»"
2718-
2719-#~ msgid "Add account"
2720-#~ msgstr "Προσθήκη λογαριασμού"
2721-
2722-#~ msgid "<b> Review your Google sync settings</b>"
2723-#~ msgstr "<b> Ελέγξτε τις ρυθμίσεις συγχρονισμού Google</b>"
2724-
2725-#~ msgid ""
2726-#~ "Adding your Google account will allow Today to display your events and "
2727-#~ "contacts.<br><br>Press the button below to add your account (or go to "
2728-#~ "accounts in the Settings app).<br><br>Remember to enable the contact and "
2729-#~ "calendar sync once you have successfully added it."
2730-#~ msgstr ""
2731-#~ "Προσθέτοντας τον λογαριασμό σας Google, επιτρέπετε στην επιλογή «Σήμερα» "
2732-#~ "να εμφανίζει τις εκδηλώσεις και τις επαφές σας.<br><br>Πιέστε το παρακάτω "
2733-#~ "κουμπί για να προσθέσετε τον λογαριασμό σας (ή μεταβείτε στους "
2734-#~ "λογαριασμούς σας στην εφαρμογή «Ρυθμίσεις»).<br><br>Θυμηθείτε να "
2735-#~ "ενεργοποιήσετε τον συγχρονισμό επαφών και ημερολογίου μόλις τον "
2736-#~ "προσθέσετε επιτυχώς."
2737-
2738-#~ msgid "See your events and more from Google."
2739-#~ msgstr "Δείτε τις εκδηλώσεις σας και ακόμη περισσότερα από την Google."
2740-
2741 #~ msgid "<b> Successfully logged in</b>"
2742 #~ msgstr "<b> Έγινε επιτυχώς σύνδεση σε</b>"
2743
2744-#~ msgid "<b> Add your account</b>"
2745-#~ msgstr "<b> Προσθέστε τον λογαριασμό σας</b>"
2746-
2747-#~ msgid "Track your activity with Fitbit."
2748-#~ msgstr "Παρακολουθήστε τη δραστηριότητά σας με το Fitbit."
2749-
2750-#~ msgid "Get started."
2751-#~ msgstr "Ξεκινήστε."
2752-
2753 #~ msgid "<b>OK</b>"
2754 #~ msgstr "<b>OK</b>"
2755
2756-#~ msgid "<b>Skip &amp; set up later</b>"
2757-#~ msgstr "<b>Παράβλεψη και ρύθμιση αργότερα</b>"
2758-
2759-#~ msgid "Set up your accounts later."
2760-#~ msgstr "Ρυθμίστε τους λογαριασμούς σας αργότερα."
2761-
2762 #~ msgid "Click here for more information."
2763 #~ msgstr "Για περισσότερες πληροφορίες, κάντε κλικ εδώ."
2764
2765@@ -231,6 +242,54 @@
2766 #~ msgid "See your photo feed from Instagram."
2767 #~ msgstr "Δείτε τις φωτογραφίες σας από το Instagram."
2768
2769+#, fuzzy
2770+#~ msgid "Stay up to date with the latest bollywood news, music, movies."
2771+#~ msgstr "Μείνετε ενημερωμένοι με τα τελευταία νέα."
2772+
2773+#, fuzzy
2774+#~ msgid ""
2775+#~ "Book displays content from a variety of different sources.<br><br>You can "
2776+#~ "use the scope settings to decide which book sources are shown allowing "
2777+#~ "you to create your own book feed based on your interests."
2778+#~ msgstr ""
2779+#~ "Στα νέα εμφανίζεται περιεχόμενο από ποικιλία διαφορετικών πηγών."
2780+#~ "<br><br>Μπορείτε να χρησιμοποιήσετε τις ρυθμίσεις περιεχομένου για να "
2781+#~ "αποφασίσετε τις πηγές ειδήσεων που θα εμφανίζονται, επιτρέποντάς σας να "
2782+#~ "δημιουργήσετε τη δική σας τροφοδοσία νέων με βάση τα ενδιαφέροντά σας."
2783+
2784+#, fuzzy
2785+#~ msgid "Welcome to the Bollywood scope"
2786+#~ msgstr "Καλώς ορίσατε στο περιεχόμενο του στοιχείου «Σήμερα»"
2787+
2788+#, fuzzy
2789+#~ msgid "Hot star"
2790+#~ msgstr "Ξεκινήστε."
2791+
2792+#, fuzzy
2793+#~ msgid "Contents of your Bollywood scope"
2794+#~ msgstr "Περιεχόμενα του στοιχείου «Νέα»"
2795+
2796+#, fuzzy
2797+#~ msgid "Find your books here."
2798+#~ msgstr "Εύρεση των φωτογραφιών σας εδώ"
2799+
2800+#, fuzzy
2801+#~ msgid ""
2802+#~ "Books makes it easy to browse your books, magazines from Douban, China "
2803+#~ "mobile, and Viva - all in one place."
2804+#~ msgstr ""
2805+#~ "Το στοιχείο «Φωτογραφίες» διευκολύνει την περιήγησή σας στις φωτογραφίες "
2806+#~ "σας από το Instagram, το Facebook, το Flickr και την κάμερά σας - όλες σε "
2807+#~ "ένα μέρος."
2808+
2809+#, fuzzy
2810+#~ msgid "Welcome to the Book scope"
2811+#~ msgstr "Καλώς ορίσατε στο περιεχόμενο του στοιχείου «Σήμερα»"
2812+
2813+#, fuzzy
2814+#~ msgid "Contents of your book scope"
2815+#~ msgstr "Περιεχόμενα του στοιχείου «Νέα»"
2816+
2817 #~ msgid "Hints"
2818 #~ msgstr "Υποδείξεις"
2819
2820@@ -259,6 +318,14 @@
2821 #~ msgid "Hints will now be hidden"
2822 #~ msgstr "Θα γίνει απόκρυψη των υποδείξεων"
2823
2824+#
2825+#~ msgid ""
2826+#~ "Please enable location services. Refresh by pulling down the middle of "
2827+#~ "the screen"
2828+#~ msgstr ""
2829+#~ "Ενεργοποιήστε τις υπηρεσίες τοποθεσίας. Πραγματοποιήστε ανανέωση σύροντας "
2830+#~ "προς τα κάτω το μεσαίο τμήμα της οθόνης."
2831+
2832 #~ msgid "Photos"
2833 #~ msgstr "Φωτογραφίες"
2834
2835
2836=== modified file 'po/es.po'
2837--- po/es.po 2015-07-20 23:53:41 +0000
2838+++ po/es.po 2016-06-27 15:49:40 +0000
2839@@ -3,13 +3,17 @@
2840 # This file is distributed under the same license as the PACKAGE package.
2841 # Automatically generated, 2014.
2842 #
2843+#. #-#-#-#-# hints.json.pot (PACKAGE VERSION) #-#-#-#-#
2844+#. extracted from i18n.json
2845+#. #-#-#-#-# aggregator.pot.in.pot (PACKAGE VERSION) #-#-#-#-#
2846 #. #-#-#-#-# translatables.json.pot (PACKAGE VERSION) #-#-#-#-#
2847-#. extracted from ../data/translatables.json
2848+#. extracted from i18n.json
2849+#, fuzzy
2850 msgid ""
2851 msgstr ""
2852 "Project-Id-Version: PACKAGE VERSION\n"
2853 "Report-Msgid-Bugs-To: \n"
2854-"POT-Creation-Date: 2015-07-20 17:12-0400\n"
2855+"POT-Creation-Date: 2016-06-14 15:38+0800\n"
2856 "PO-Revision-Date: 2014-08-26 13:00-0400\n"
2857 "Last-Translator: Automatically generated\n"
2858 "Language-Team: none\n"
2859@@ -17,9 +21,90 @@
2860 "MIME-Version: 1.0\n"
2861 "Content-Type: text/plain; charset=UTF-8\n"
2862 "Content-Transfer-Encoding: 8bit\n"
2863-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
2864-
2865-#: ._no_net_msg
2866+"#-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-#\n"
2867+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
2868+"#-#-#-#-# orig_es.po (PACKAGE VERSION) #-#-#-#-#\n"
2869+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
2870+
2871+#: ._name8 ._name4
2872+msgid "Add account"
2873+msgstr "Añadir cuenta"
2874+
2875+#: ._title7
2876+msgid "See your events and more from Google."
2877+msgstr "Mostrar tus eventos y más cosas de Google."
2878+
2879+#: ._title5
2880+msgid "<b> Review your Google sync settings</b>"
2881+msgstr "<b> Revisar la sincronización con Google</b> "
2882+
2883+#: ._title3
2884+msgid "Welcome to the Today scope"
2885+msgstr "Bienvenido al scope Hoy"
2886+
2887+#: ._title1
2888+msgid "Manage your day with all the essentials."
2889+msgstr "Organiza tu día con todo lo esencial."
2890+
2891+#: ._subtitle2
2892+msgid "Tap here for more information."
2893+msgstr "Toca aquí para más información"
2894+
2895+#: ._title9
2896+msgid "<b> Add your account</b>"
2897+msgstr "<b> Añade tu cuenta</b>"
2898+
2899+#: ._loggedin11
2900+msgid "Get started."
2901+msgstr "Vamos a empezar."
2902+
2903+#: ._title10
2904+msgid "Track your activity with Fitbit."
2905+msgstr "Sigue tu actividad con Fitbit."
2906+
2907+#: ._description6
2908+msgid ""
2909+"Adding your Google account will allow Today to display your events and "
2910+"contacts.<br><br>Press the button below to add your account (or go to "
2911+"accounts in the Settings app).<br><br>Remember to enable the contact and "
2912+"calendar sync once you have successfully added it."
2913+msgstr ""
2914+"Al añadir tu cuenta de Google permitirás al scope Hoy mostrar tus eventos y "
2915+"contactos. <br> Pulsa el botón de abajo para agregar la cuenta (o vete a "
2916+"Cuentas en la aplicación de Configuración del Sistema). <br> Una vez que "
2917+"hayas añadido la cuenta, recuerda activar la sincronización de contactos y "
2918+"calendario."
2919+
2920+#: ._title13
2921+msgid "<b>Skip &amp; set up later</b>"
2922+msgstr "<b>Continuar y configurar más tarde</b>"
2923+
2924+#: ._description0
2925+msgid ""
2926+"Today gives you a overview of your day including:<br>- events and tasks<br>- "
2927+"calls and messages<br>- news, weather and more.<br><br> You can customise "
2928+"what is shown in Today using the scope settings icon.<br><br> Some services "
2929+"require your log-in below or later."
2930+msgstr ""
2931+"Hoy te da un resumen del día, incluyendo: <br> - eventos y tareas <br> - "
2932+"llamadas y mensajes <br> - noticias, el tiempo y más.<BR> Puedes "
2933+"personalizar lo que se muestra en Hoy mediante el icono de configuración del "
2934+"scope. <br> <br>Algunos servicios requieren autenticación, algo que puedes "
2935+"hacerlo ahora o más tarde."
2936+
2937+#: ._title12
2938+msgid "Set up your accounts later."
2939+msgstr "Configura tus cuentas más tarde."
2940+
2941+#: ._no_loc_msg2 ../src/query.cpp:245
2942+msgid ""
2943+"Please enable location services. Refresh by pulling down the middle of the "
2944+"screen."
2945+msgstr ""
2946+"Por favor, activa los servicios de ubicación. Actualiza arrastrando hacia "
2947+"abajo la pantalla."
2948+
2949+#: ._no_net_msg0 ../src/query.cpp:207
2950 msgid ""
2951 "Please connect to the internet. Refresh by pulling down the middle of the "
2952 "screen."
2953@@ -27,19 +112,10 @@
2954 "Por favor, conectate a internet. Actualiza arrastrando hacia abajo la "
2955 "pantalla."
2956
2957-#: ._category_title
2958+#: ._category_title1
2959 msgid "Install More Sources:"
2960 msgstr ""
2961
2962-#
2963-#: ._no_loc_msg
2964-msgid ""
2965-"Please enable location services. Refresh by pulling down the middle of the "
2966-"screen"
2967-msgstr ""
2968-"Por favor, activa los servicios de ubicación. Actualiza arrastrando hacia "
2969-"abajo la pantalla."
2970-
2971 #: ../data/scope.ini.in.h:1
2972 msgid "Aggregator"
2973 msgstr ""
2974@@ -48,76 +124,12 @@
2975 msgid "A template for creating an aggregator scope"
2976 msgstr ""
2977
2978-#~ msgid ""
2979-#~ "Please enable location services. Refresh by pulling down the middle of "
2980-#~ "the screen."
2981-#~ msgstr ""
2982-#~ "Por favor, activa los servicios de ubicación. Actualiza arrastrando hacia "
2983-#~ "abajo la pantalla."
2984-
2985-#~ msgid "Tap here for more information."
2986-#~ msgstr "Toca aquí para más información"
2987-
2988-#~ msgid "Manage your day with all the essentials."
2989-#~ msgstr "Organiza tu día con todo lo esencial."
2990-
2991-#~ msgid ""
2992-#~ "Today gives you a overview of your day including:<br>- events and "
2993-#~ "tasks<br>- calls and messages<br>- news, weather and more.<br><br> You "
2994-#~ "can customise what is shown in Today using the scope settings icon."
2995-#~ "<br><br> Some services require your log-in below or later."
2996-#~ msgstr ""
2997-#~ "Hoy te da un resumen del día, incluyendo: <br> - eventos y tareas <br> - "
2998-#~ "llamadas y mensajes <br> - noticias, el tiempo y más.<BR> Puedes "
2999-#~ "personalizar lo que se muestra en Hoy mediante el icono de configuración "
3000-#~ "del scope. <br> <br>Algunos servicios requieren autenticación, algo que "
3001-#~ "puedes hacerlo ahora o más tarde."
3002-
3003-#~ msgid "Welcome to the Today scope"
3004-#~ msgstr "Bienvenido al scope Hoy"
3005-
3006-#~ msgid "Add account"
3007-#~ msgstr "Añadir cuenta"
3008-
3009-#~ msgid "<b> Review your Google sync settings</b>"
3010-#~ msgstr "<b> Revisar la sincronización con Google</b> "
3011-
3012-#~ msgid ""
3013-#~ "Adding your Google account will allow Today to display your events and "
3014-#~ "contacts.<br><br>Press the button below to add your account (or go to "
3015-#~ "accounts in the Settings app).<br><br>Remember to enable the contact and "
3016-#~ "calendar sync once you have successfully added it."
3017-#~ msgstr ""
3018-#~ "Al añadir tu cuenta de Google permitirás al scope Hoy mostrar tus eventos "
3019-#~ "y contactos. <br> Pulsa el botón de abajo para agregar la cuenta (o vete "
3020-#~ "a Cuentas en la aplicación de Configuración del Sistema). <br> Una vez "
3021-#~ "que hayas añadido la cuenta, recuerda activar la sincronización de "
3022-#~ "contactos y calendario."
3023-
3024-#~ msgid "See your events and more from Google."
3025-#~ msgstr "Mostrar tus eventos y más cosas de Google."
3026-
3027 #~ msgid "<b> Successfully logged in</b>"
3028 #~ msgstr "<b> Sesión iniciada correctamente</b>"
3029
3030-#~ msgid "<b> Add your account</b>"
3031-#~ msgstr "<b> Añade tu cuenta</b>"
3032-
3033-#~ msgid "Track your activity with Fitbit."
3034-#~ msgstr "Sigue tu actividad con Fitbit."
3035-
3036-#~ msgid "Get started."
3037-#~ msgstr "Vamos a empezar."
3038-
3039 #~ msgid "<b>OK</b>"
3040 #~ msgstr "<b>Aceptar</b>"
3041
3042-#~ msgid "<b>Skip &amp; set up later</b>"
3043-#~ msgstr "<b>Continuar y configurar más tarde</b>"
3044-
3045-#~ msgid "Set up your accounts later."
3046-#~ msgstr "Configura tus cuentas más tarde."
3047-
3048 #~ msgid "Click here for more information."
3049 #~ msgstr "Pulsa aquí para más información."
3050
3051@@ -211,6 +223,60 @@
3052 #~ msgid "See your photo feed from Instagram."
3053 #~ msgstr "Mostrar tu canal de fotos de Instagram."
3054
3055+#, fuzzy
3056+#~ msgid "Stay up to date with the latest bollywood news, music, movies."
3057+#~ msgstr "Manténte al día de las últimas noticias."
3058+
3059+#, fuzzy
3060+#~ msgid ""
3061+#~ "Book displays content from a variety of different sources.<br><br>You can "
3062+#~ "use the scope settings to decide which book sources are shown allowing "
3063+#~ "you to create your own book feed based on your interests."
3064+#~ msgstr ""
3065+#~ "Noticias muestra contenido de una variedad de fuentes.<br><br>Puedes usar "
3066+#~ "el icono de configuración parar seleccionar qué fuentes se muestran en "
3067+#~ "base a tus intereses."
3068+
3069+#, fuzzy
3070+#~ msgid "Welcome to the Bollywood scope"
3071+#~ msgstr "Bienvenido al scope Hoy"
3072+
3073+#, fuzzy
3074+#~ msgid "Hot star"
3075+#~ msgstr "Vamos a empezar."
3076+
3077+#, fuzzy
3078+#~ msgid "Contents of your Bollywood scope"
3079+#~ msgstr "Contenidos en el scope de Noticias"
3080+
3081+#, fuzzy
3082+#~ msgid "Find your books here."
3083+#~ msgstr "Aquí encontrarás tus fotos"
3084+
3085+#, fuzzy
3086+#~ msgid ""
3087+#~ "Books makes it easy to browse your books, magazines from Douban, China "
3088+#~ "mobile, and Viva - all in one place."
3089+#~ msgstr ""
3090+#~ "Fotos reúne tus imágenes de Instagram, Facebook, Flickr y la cámara - "
3091+#~ "todo en el mismo sitio."
3092+
3093+#, fuzzy
3094+#~ msgid "Welcome to the Book scope"
3095+#~ msgstr "Bienvenido al scope Hoy"
3096+
3097+#, fuzzy
3098+#~ msgid "Contents of your book scope"
3099+#~ msgstr "Contenidos en el scope de Noticias"
3100+
3101+#
3102+#~ msgid ""
3103+#~ "Please enable location services. Refresh by pulling down the middle of "
3104+#~ "the screen"
3105+#~ msgstr ""
3106+#~ "Por favor, activa los servicios de ubicación. Actualiza arrastrando hacia "
3107+#~ "abajo la pantalla."
3108+
3109 #
3110 #~ msgid "To refresh your scope content: pull down the middle of the screen."
3111 #~ msgstr ""
3112
3113=== modified file 'po/eu.po'
3114--- po/eu.po 2015-07-20 23:53:41 +0000
3115+++ po/eu.po 2016-06-27 15:49:40 +0000
3116@@ -3,13 +3,17 @@
3117 # This file is distributed under the same license as the PACKAGE package.
3118 # Automatically generated, 2014.
3119 #
3120+#. #-#-#-#-# hints.json.pot (PACKAGE VERSION) #-#-#-#-#
3121+#. extracted from i18n.json
3122+#. #-#-#-#-# aggregator.pot.in.pot (PACKAGE VERSION) #-#-#-#-#
3123 #. #-#-#-#-# translatables.json.pot (PACKAGE VERSION) #-#-#-#-#
3124-#. extracted from ../data/translatables.json
3125+#. extracted from i18n.json
3126+#, fuzzy
3127 msgid ""
3128 msgstr ""
3129 "Project-Id-Version: photos\n"
3130 "Report-Msgid-Bugs-To: \n"
3131-"POT-Creation-Date: 2015-07-20 17:12-0400\n"
3132+"POT-Creation-Date: 2016-06-14 15:38+0800\n"
3133 "PO-Revision-Date: 2014-08-26 13:00-0400\n"
3134 "Last-Translator: Automatically generated\n"
3135 "Language-Team: none\n"
3136@@ -17,26 +21,96 @@
3137 "MIME-Version: 1.0\n"
3138 "Content-Type: text/plain; charset=UTF-8\n"
3139 "Content-Transfer-Encoding: 8bit\n"
3140-
3141-#: ._no_net_msg
3142+"#-#-#-#-# eu.po (photos) #-#-#-#-#\n"
3143+"#-#-#-#-# orig_eu.po (photos) #-#-#-#-#\n"
3144+
3145+#: ._name8 ._name4
3146+msgid "Add account"
3147+msgstr "Gehitu kontua"
3148+
3149+#: ._title7
3150+msgid "See your events and more from Google."
3151+msgstr "Ikusi zure ekitaldiak eta gehiago Googletik."
3152+
3153+#: ._title5
3154+msgid "<b> Review your Google sync settings</b>"
3155+msgstr "<b> Berrikus itzazu zure Google Sync ezarpenak</b>"
3156+
3157+#: ._title3
3158+msgid "Welcome to the Today scope"
3159+msgstr "Ongi etorri Gaurkoa esparrura"
3160+
3161+#: ._title1
3162+msgid "Manage your day with all the essentials."
3163+msgstr "Kudeatu zure eguna, funtsezko guztiekin."
3164+
3165+#: ._subtitle2
3166+msgid "Tap here for more information."
3167+msgstr "Sakatu hemen, informazio gehiago eskuratzeko."
3168+
3169+#: ._title9
3170+msgid "<b> Add your account</b>"
3171+msgstr "<b> Gehitu zure kontua</b>"
3172+
3173+#: ._loggedin11
3174+msgid "Get started."
3175+msgstr "Hasi."
3176+
3177+#: ._title10
3178+msgid "Track your activity with Fitbit."
3179+msgstr "Egin zure jardueraren segimendua Fitbitekin."
3180+
3181+#: ._description6
3182+msgid ""
3183+"Adding your Google account will allow Today to display your events and "
3184+"contacts.<br><br>Press the button below to add your account (or go to "
3185+"accounts in the Settings app).<br><br>Remember to enable the contact and "
3186+"calendar sync once you have successfully added it."
3187+msgstr ""
3188+"Zure Google kontua gehituta, Gaurkoan agertu ahalko dira zure ekitaldiak eta "
3189+"kontaktuak.<br><br>Sakatu beheko botoia, zure kontua gehitzeko (edo joan "
3190+"Kontuak atalera, ezarpenen aplikazioan).<br><br>Gogoan izan kontaktuen eta "
3191+"egutegiaren sinkronizazioa gaitzea, behin ondo gehitu duzunean."
3192+
3193+#: ._title13
3194+msgid "<b>Skip &amp; set up later</b>"
3195+msgstr "<b>Saltatu, eta konfiguratu geroago</b>"
3196+
3197+#: ._description0
3198+msgid ""
3199+"Today gives you a overview of your day including:<br>- events and tasks<br>- "
3200+"calls and messages<br>- news, weather and more.<br><br> You can customise "
3201+"what is shown in Today using the scope settings icon.<br><br> Some services "
3202+"require your log-in below or later."
3203+msgstr ""
3204+"Gaurkoak zure egunaren ikuspegi orokorra ematen dizu. Besteak beste:<br>- "
3205+"ekitaldiak eta zereginak<br>- deiak eta mezuak<br>- albisteak, eguraldiak "
3206+"eta gehiago.<br><br> Gaurkoa atalean zer agertzen den pertsonaliza dezakezu, "
3207+"esparru ezarpenen ikonoa erabiliz.<br><br> Zerbitzu batzuek saioa hastea "
3208+"eskatzen dizute, behean edo geroago."
3209+
3210+#: ._title12
3211+msgid "Set up your accounts later."
3212+msgstr "Konfiguratu zure kontuak geroago."
3213+
3214+#: ._no_loc_msg2 ../src/query.cpp:245
3215+msgid ""
3216+"Please enable location services. Refresh by pulling down the middle of the "
3217+"screen."
3218+msgstr ""
3219+"Gaitu kokaleku zerbitzuak Freskatu, pantailaren erdian beherantz eraginez."
3220+
3221+#: ._no_net_msg0 ../src/query.cpp:207
3222 msgid ""
3223 "Please connect to the internet. Refresh by pulling down the middle of the "
3224 "screen."
3225 msgstr ""
3226 "Konektatu Internetera. Freskatu, pantailaren erdian beherantz eraginez."
3227
3228-#: ._category_title
3229+#: ._category_title1
3230 msgid "Install More Sources:"
3231 msgstr ""
3232
3233-#
3234-#: ._no_loc_msg
3235-msgid ""
3236-"Please enable location services. Refresh by pulling down the middle of the "
3237-"screen"
3238-msgstr ""
3239-"Gaitu kokaleku zerbitzuak Freskatu, pantailaren erdian beherantz eraginez."
3240-
3241 #: ../data/scope.ini.in.h:1
3242 msgid "Aggregator"
3243 msgstr ""
3244@@ -45,75 +119,12 @@
3245 msgid "A template for creating an aggregator scope"
3246 msgstr ""
3247
3248-#~ msgid ""
3249-#~ "Please enable location services. Refresh by pulling down the middle of "
3250-#~ "the screen."
3251-#~ msgstr ""
3252-#~ "Gaitu kokaleku zerbitzuak Freskatu, pantailaren erdian beherantz eraginez."
3253-
3254-#~ msgid "Tap here for more information."
3255-#~ msgstr "Sakatu hemen, informazio gehiago eskuratzeko."
3256-
3257-#~ msgid "Manage your day with all the essentials."
3258-#~ msgstr "Kudeatu zure eguna, funtsezko guztiekin."
3259-
3260-#~ msgid ""
3261-#~ "Today gives you a overview of your day including:<br>- events and "
3262-#~ "tasks<br>- calls and messages<br>- news, weather and more.<br><br> You "
3263-#~ "can customise what is shown in Today using the scope settings icon."
3264-#~ "<br><br> Some services require your log-in below or later."
3265-#~ msgstr ""
3266-#~ "Gaurkoak zure egunaren ikuspegi orokorra ematen dizu. Besteak beste:<br>- "
3267-#~ "ekitaldiak eta zereginak<br>- deiak eta mezuak<br>- albisteak, eguraldiak "
3268-#~ "eta gehiago.<br><br> Gaurkoa atalean zer agertzen den pertsonaliza "
3269-#~ "dezakezu, esparru ezarpenen ikonoa erabiliz.<br><br> Zerbitzu batzuek "
3270-#~ "saioa hastea eskatzen dizute, behean edo geroago."
3271-
3272-#~ msgid "Welcome to the Today scope"
3273-#~ msgstr "Ongi etorri Gaurkoa esparrura"
3274-
3275-#~ msgid "Add account"
3276-#~ msgstr "Gehitu kontua"
3277-
3278-#~ msgid "<b> Review your Google sync settings</b>"
3279-#~ msgstr "<b> Berrikus itzazu zure Google Sync ezarpenak</b>"
3280-
3281-#~ msgid ""
3282-#~ "Adding your Google account will allow Today to display your events and "
3283-#~ "contacts.<br><br>Press the button below to add your account (or go to "
3284-#~ "accounts in the Settings app).<br><br>Remember to enable the contact and "
3285-#~ "calendar sync once you have successfully added it."
3286-#~ msgstr ""
3287-#~ "Zure Google kontua gehituta, Gaurkoan agertu ahalko dira zure ekitaldiak "
3288-#~ "eta kontaktuak.<br><br>Sakatu beheko botoia, zure kontua gehitzeko (edo "
3289-#~ "joan Kontuak atalera, ezarpenen aplikazioan).<br><br>Gogoan izan "
3290-#~ "kontaktuen eta egutegiaren sinkronizazioa gaitzea, behin ondo gehitu "
3291-#~ "duzunean."
3292-
3293-#~ msgid "See your events and more from Google."
3294-#~ msgstr "Ikusi zure ekitaldiak eta gehiago Googletik."
3295-
3296 #~ msgid "<b> Successfully logged in</b>"
3297 #~ msgstr "<b> Saioa ondo hasita</b>"
3298
3299-#~ msgid "<b> Add your account</b>"
3300-#~ msgstr "<b> Gehitu zure kontua</b>"
3301-
3302-#~ msgid "Track your activity with Fitbit."
3303-#~ msgstr "Egin zure jardueraren segimendua Fitbitekin."
3304-
3305-#~ msgid "Get started."
3306-#~ msgstr "Hasi."
3307-
3308 #~ msgid "<b>OK</b>"
3309 #~ msgstr "<b>Ados</b>"
3310
3311-#~ msgid "<b>Skip &amp; set up later</b>"
3312-#~ msgstr "<b>Saltatu, eta konfiguratu geroago</b>"
3313-
3314-#~ msgid "Set up your accounts later."
3315-#~ msgstr "Konfiguratu zure kontuak geroago."
3316-
3317 #~ msgid "Click here for more information."
3318 #~ msgstr "Klikatu hemen, informazio gehiago eskuratzeko."
3319
3320@@ -224,6 +235,53 @@
3321 #~ msgid "See your photo feed from Instagram."
3322 #~ msgstr "Ikusi Instagrameko zure argazkiak."
3323
3324+#, fuzzy
3325+#~ msgid "Stay up to date with the latest bollywood news, music, movies."
3326+#~ msgstr "Izan egunean, azken berriekin."
3327+
3328+#, fuzzy
3329+#~ msgid ""
3330+#~ "Book displays content from a variety of different sources.<br><br>You can "
3331+#~ "use the scope settings to decide which book sources are shown allowing "
3332+#~ "you to create your own book feed based on your interests."
3333+#~ msgstr ""
3334+#~ "Albisteetan hainbat iturritako edukia azaltzen da.<br><br>Esparruko "
3335+#~ "ezarpenak erabiliz erabaki dezakezu ea zein albiste iturri erakusten "
3336+#~ "diren. Horrela, zeure albistegia sor dezakezu, zeure interesetan "
3337+#~ "oinarritua."
3338+
3339+#, fuzzy
3340+#~ msgid "Welcome to the Bollywood scope"
3341+#~ msgstr "Ongi etorri Gaurkoa esparrura"
3342+
3343+#, fuzzy
3344+#~ msgid "Hot star"
3345+#~ msgstr "Hasi."
3346+
3347+#, fuzzy
3348+#~ msgid "Contents of your Bollywood scope"
3349+#~ msgstr "Zure Albiste esparruko edukiak"
3350+
3351+#, fuzzy
3352+#~ msgid "Find your books here."
3353+#~ msgstr "Aurkitu zure argazkiak hemen"
3354+
3355+#, fuzzy
3356+#~ msgid ""
3357+#~ "Books makes it easy to browse your books, magazines from Douban, China "
3358+#~ "mobile, and Viva - all in one place."
3359+#~ msgstr ""
3360+#~ "Argazki esparruak erraztu egiten du Instagramen, Facebooken, Flickren eta "
3361+#~ "kameran dituzun argazkietan arakatzea, guztietan batera."
3362+
3363+#, fuzzy
3364+#~ msgid "Welcome to the Book scope"
3365+#~ msgstr "Ongi etorri Gaurkoa esparrura"
3366+
3367+#, fuzzy
3368+#~ msgid "Contents of your book scope"
3369+#~ msgstr "Zure Albiste esparruko edukiak"
3370+
3371 #~ msgid "Hints"
3372 #~ msgstr "Iradokizunak"
3373
3374@@ -249,6 +307,13 @@
3375 #~ msgid "Hints will now be hidden"
3376 #~ msgstr "Iradokizunak ezkutatu egingo dira orain"
3377
3378+#
3379+#~ msgid ""
3380+#~ "Please enable location services. Refresh by pulling down the middle of "
3381+#~ "the screen"
3382+#~ msgstr ""
3383+#~ "Gaitu kokaleku zerbitzuak Freskatu, pantailaren erdian beherantz eraginez."
3384+
3385 #~ msgid "Photos"
3386 #~ msgstr "Argazkiak"
3387
3388
3389=== modified file 'po/fi.po'
3390--- po/fi.po 2015-07-20 23:53:41 +0000
3391+++ po/fi.po 2016-06-27 15:49:40 +0000
3392@@ -3,13 +3,17 @@
3393 # This file is distributed under the same license as the PACKAGE package.
3394 # Automatically generated, 2014.
3395 #
3396+#. #-#-#-#-# hints.json.pot (PACKAGE VERSION) #-#-#-#-#
3397+#. extracted from i18n.json
3398+#. #-#-#-#-# aggregator.pot.in.pot (PACKAGE VERSION) #-#-#-#-#
3399 #. #-#-#-#-# translatables.json.pot (PACKAGE VERSION) #-#-#-#-#
3400-#. extracted from ../data/translatables.json
3401+#. extracted from i18n.json
3402+#, fuzzy
3403 msgid ""
3404 msgstr ""
3405 "Project-Id-Version: photos\n"
3406 "Report-Msgid-Bugs-To: \n"
3407-"POT-Creation-Date: 2015-07-20 17:12-0400\n"
3408+"POT-Creation-Date: 2016-06-14 15:38+0800\n"
3409 "PO-Revision-Date: 2014-08-26 13:00-0400\n"
3410 "Last-Translator: Automatically generated\n"
3411 "Language-Team: none\n"
3412@@ -17,26 +21,96 @@
3413 "MIME-Version: 1.0\n"
3414 "Content-Type: text/plain; charset=UTF-8\n"
3415 "Content-Transfer-Encoding: 8bit\n"
3416-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
3417-
3418-#: ._no_net_msg
3419+"#-#-#-#-# fi.po (photos) #-#-#-#-#\n"
3420+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
3421+"#-#-#-#-# orig_fi.po (photos) #-#-#-#-#\n"
3422+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
3423+
3424+#: ._name8 ._name4
3425+msgid "Add account"
3426+msgstr "Lisää tili"
3427+
3428+#: ._title7
3429+msgid "See your events and more from Google."
3430+msgstr "Näytä omat tapahtumat ja muuta Googlesta."
3431+
3432+#: ._title5
3433+msgid "<b> Review your Google sync settings</b>"
3434+msgstr "<b> Tarkista Google-synkronointiasetukset</b>"
3435+
3436+#: ._title3
3437+msgid "Welcome to the Today scope"
3438+msgstr "Tervetuloa Tänään-laajuuteen"
3439+
3440+#: ._title1
3441+msgid "Manage your day with all the essentials."
3442+msgstr "Hallitse päivääsi kaikella olennaisella."
3443+
3444+#: ._subtitle2
3445+msgid "Tap here for more information."
3446+msgstr "Napauta tätä, kun haluat lisätietoja."
3447+
3448+#: ._title9
3449+msgid "<b> Add your account</b>"
3450+msgstr "<b> Lisää oma tilisi</b>"
3451+
3452+#: ._loggedin11
3453+msgid "Get started."
3454+msgstr "Aloita."
3455+
3456+#: ._title10
3457+msgid "Track your activity with Fitbit."
3458+msgstr "Seuraa aktiivisuuttasi Fitbitillä."
3459+
3460+#: ._description6
3461+msgid ""
3462+"Adding your Google account will allow Today to display your events and "
3463+"contacts.<br><br>Press the button below to add your account (or go to "
3464+"accounts in the Settings app).<br><br>Remember to enable the contact and "
3465+"calendar sync once you have successfully added it."
3466+msgstr ""
3467+"Kun lisäät Google-tilin, Tänään voi näyttää tapahtumasi ja yhteystietosi."
3468+"<br><br>Lisää tilisi painamalla alla olevaa painiketta (tai siirry tileihin "
3469+"Asetukset-sovelluksessa).<br><br>Muista ottaa yhteystietojen ja kalenterin "
3470+"synkronointikäyttöön, kun ne on lisätty."
3471+
3472+#: ._title13
3473+msgid "<b>Skip &amp; set up later</b>"
3474+msgstr "<b>Ohita ja määritä myöhemmin</b>"
3475+
3476+#: ._description0
3477+msgid ""
3478+"Today gives you a overview of your day including:<br>- events and tasks<br>- "
3479+"calls and messages<br>- news, weather and more.<br><br> You can customise "
3480+"what is shown in Today using the scope settings icon.<br><br> Some services "
3481+"require your log-in below or later."
3482+msgstr ""
3483+"Tänään antaa yleiskuvauksen päivästä sisältäen:<br>- tapahtumat ja "
3484+"tehtävät<br>- puhelut ja viestit<br>- uutiset, sää jne.<br><br> Voit "
3485+"mukauttaa, mitä Tänään näyttää, käyttämällä laajuusasetuskuvaketta.<br><br> "
3486+"Eräät palvelut vaativat kirjautumisen alla tai myöhemmin."
3487+
3488+#: ._title12
3489+msgid "Set up your accounts later."
3490+msgstr "Määritä tilisi myöhemmin."
3491+
3492+#: ._no_loc_msg2 ../src/query.cpp:245
3493+msgid ""
3494+"Please enable location services. Refresh by pulling down the middle of the "
3495+"screen."
3496+msgstr ""
3497+"Ota sijaintipalvelut käyttöön. Päivitä vetämällä alas keskeltä näyttöä."
3498+
3499+#: ._no_net_msg0 ../src/query.cpp:207
3500 msgid ""
3501 "Please connect to the internet. Refresh by pulling down the middle of the "
3502 "screen."
3503 msgstr "Muodosta Internet-yhteys. Päivitä vetämällä alas keskeltä näyttöä."
3504
3505-#: ._category_title
3506+#: ._category_title1
3507 msgid "Install More Sources:"
3508 msgstr ""
3509
3510-#
3511-#: ._no_loc_msg
3512-msgid ""
3513-"Please enable location services. Refresh by pulling down the middle of the "
3514-"screen"
3515-msgstr ""
3516-"Ota sijaintipalvelut käyttöön. Päivitä vetämällä alas keskeltä näyttöä."
3517-
3518 #: ../data/scope.ini.in.h:1
3519 msgid "Aggregator"
3520 msgstr ""
3521@@ -45,73 +119,12 @@
3522 msgid "A template for creating an aggregator scope"
3523 msgstr ""
3524
3525-#~ msgid ""
3526-#~ "Please enable location services. Refresh by pulling down the middle of "
3527-#~ "the screen."
3528-#~ msgstr ""
3529-#~ "Ota sijaintipalvelut käyttöön. Päivitä vetämällä alas keskeltä näyttöä."
3530-
3531-#~ msgid "Tap here for more information."
3532-#~ msgstr "Napauta tätä, kun haluat lisätietoja."
3533-
3534-#~ msgid "Manage your day with all the essentials."
3535-#~ msgstr "Hallitse päivääsi kaikella olennaisella."
3536-
3537-#~ msgid ""
3538-#~ "Today gives you a overview of your day including:<br>- events and "
3539-#~ "tasks<br>- calls and messages<br>- news, weather and more.<br><br> You "
3540-#~ "can customise what is shown in Today using the scope settings icon."
3541-#~ "<br><br> Some services require your log-in below or later."
3542-#~ msgstr ""
3543-#~ "Tänään antaa yleiskuvauksen päivästä sisältäen:<br>- tapahtumat ja "
3544-#~ "tehtävät<br>- puhelut ja viestit<br>- uutiset, sää jne.<br><br> Voit "
3545-#~ "mukauttaa, mitä Tänään näyttää, käyttämällä laajuusasetuskuvaketta."
3546-#~ "<br><br> Eräät palvelut vaativat kirjautumisen alla tai myöhemmin."
3547-
3548-#~ msgid "Welcome to the Today scope"
3549-#~ msgstr "Tervetuloa Tänään-laajuuteen"
3550-
3551-#~ msgid "Add account"
3552-#~ msgstr "Lisää tili"
3553-
3554-#~ msgid "<b> Review your Google sync settings</b>"
3555-#~ msgstr "<b> Tarkista Google-synkronointiasetukset</b>"
3556-
3557-#~ msgid ""
3558-#~ "Adding your Google account will allow Today to display your events and "
3559-#~ "contacts.<br><br>Press the button below to add your account (or go to "
3560-#~ "accounts in the Settings app).<br><br>Remember to enable the contact and "
3561-#~ "calendar sync once you have successfully added it."
3562-#~ msgstr ""
3563-#~ "Kun lisäät Google-tilin, Tänään voi näyttää tapahtumasi ja yhteystietosi."
3564-#~ "<br><br>Lisää tilisi painamalla alla olevaa painiketta (tai siirry "
3565-#~ "tileihin Asetukset-sovelluksessa).<br><br>Muista ottaa yhteystietojen ja "
3566-#~ "kalenterin synkronointikäyttöön, kun ne on lisätty."
3567-
3568-#~ msgid "See your events and more from Google."
3569-#~ msgstr "Näytä omat tapahtumat ja muuta Googlesta."
3570-
3571 #~ msgid "<b> Successfully logged in</b>"
3572 #~ msgstr "<b> Kirjautuminen onnistui</b>"
3573
3574-#~ msgid "<b> Add your account</b>"
3575-#~ msgstr "<b> Lisää oma tilisi</b>"
3576-
3577-#~ msgid "Track your activity with Fitbit."
3578-#~ msgstr "Seuraa aktiivisuuttasi Fitbitillä."
3579-
3580-#~ msgid "Get started."
3581-#~ msgstr "Aloita."
3582-
3583 #~ msgid "<b>OK</b>"
3584 #~ msgstr "<b>OK</b>"
3585
3586-#~ msgid "<b>Skip &amp; set up later</b>"
3587-#~ msgstr "<b>Ohita ja määritä myöhemmin</b>"
3588-
3589-#~ msgid "Set up your accounts later."
3590-#~ msgstr "Määritä tilisi myöhemmin."
3591-
3592 #~ msgid "Click here for more information."
3593 #~ msgstr "Napsauta tätä, kun haluat lisätietoja."
3594
3595@@ -129,8 +142,13 @@
3596 #~ "<br><br>Muista, että oletusarvoisesti näytettävän sisällön lisäksi voit "
3597 #~ "aina etsiä muuta sisältöä käyttämällä hakupalkkia."
3598
3599+#, fuzzy
3600 #~ msgid "Welcome to the NearBy scope"
3601-#~ msgstr "Tervetuloa NearBy-laajuuteen"
3602+#~ msgstr ""
3603+#~ "#-#-#-#-# fi.po (photos) #-#-#-#-#\n"
3604+#~ "Tervetuloa NearBy-näkymään\n"
3605+#~ "#-#-#-#-# orig_fi.po (photos) #-#-#-#-#\n"
3606+#~ "Tervetuloa NearBy-laajuuteen"
3607
3608 #~ msgid "Weather"
3609 #~ msgstr "Sää"
3610@@ -220,6 +238,52 @@
3611 #~ msgid "See your photo feed from Instagram."
3612 #~ msgstr "Näytä valokuvasyötteesi Instagramista."
3613
3614+#, fuzzy
3615+#~ msgid "Stay up to date with the latest bollywood news, music, movies."
3616+#~ msgstr "Pysy ajan tasalla viimeisimpien uutisten avulla."
3617+
3618+#, fuzzy
3619+#~ msgid ""
3620+#~ "Book displays content from a variety of different sources.<br><br>You can "
3621+#~ "use the scope settings to decide which book sources are shown allowing "
3622+#~ "you to create your own book feed based on your interests."
3623+#~ msgstr ""
3624+#~ "Uutiset näyttävät sisältöä useista eri lähteistä.<br><br>Laajuusasetusten "
3625+#~ "avulla voit päättää näytettävät uutislähteet. Näin voit luoda oman "
3626+#~ "uutissyötteesi omien kiinnostustesi perusteella."
3627+
3628+#, fuzzy
3629+#~ msgid "Welcome to the Bollywood scope"
3630+#~ msgstr "Tervetuloa Tänään-laajuuteen"
3631+
3632+#, fuzzy
3633+#~ msgid "Hot star"
3634+#~ msgstr "Aloita."
3635+
3636+#, fuzzy
3637+#~ msgid "Contents of your Bollywood scope"
3638+#~ msgstr "Uutiset-laajuutesi sisältö"
3639+
3640+#, fuzzy
3641+#~ msgid "Find your books here."
3642+#~ msgstr "Löydä valokuvasi täältä"
3643+
3644+#, fuzzy
3645+#~ msgid ""
3646+#~ "Books makes it easy to browse your books, magazines from Douban, China "
3647+#~ "mobile, and Viva - all in one place."
3648+#~ msgstr ""
3649+#~ "Valokuvat-ominaisuus helpottaa Instagram-, Facebook-, Flickr- ja kameran "
3650+#~ "valokuvien selaamista – kaikki yhdessä paikassa."
3651+
3652+#, fuzzy
3653+#~ msgid "Welcome to the Book scope"
3654+#~ msgstr "Tervetuloa Tänään-laajuuteen"
3655+
3656+#, fuzzy
3657+#~ msgid "Contents of your book scope"
3658+#~ msgstr "Uutiset-laajuutesi sisältö"
3659+
3660 #~ msgid "Hints"
3661 #~ msgstr "Vihjeitä"
3662
3663@@ -244,6 +308,13 @@
3664 #~ msgid "Hints will now be hidden"
3665 #~ msgstr "Vihjeet piilotetaan"
3666
3667+#
3668+#~ msgid ""
3669+#~ "Please enable location services. Refresh by pulling down the middle of "
3670+#~ "the screen"
3671+#~ msgstr ""
3672+#~ "Ota sijaintipalvelut käyttöön. Päivitä vetämällä alas keskeltä näyttöä."
3673+
3674 #~ msgid "Photos"
3675 #~ msgstr "Valokuvat"
3676
3677
3678=== modified file 'po/fr.po'
3679--- po/fr.po 2015-07-20 23:53:41 +0000
3680+++ po/fr.po 2016-06-27 15:49:40 +0000
3681@@ -3,13 +3,17 @@
3682 # This file is distributed under the same license as the PACKAGE package.
3683 # Automatically generated, 2014.
3684 #
3685+#. #-#-#-#-# hints.json.pot (PACKAGE VERSION) #-#-#-#-#
3686+#. extracted from i18n.json
3687+#. #-#-#-#-# aggregator.pot.in.pot (PACKAGE VERSION) #-#-#-#-#
3688 #. #-#-#-#-# translatables.json.pot (PACKAGE VERSION) #-#-#-#-#
3689-#. extracted from ../data/translatables.json
3690+#. extracted from i18n.json
3691+#, fuzzy
3692 msgid ""
3693 msgstr ""
3694 "Project-Id-Version: photos\n"
3695 "Report-Msgid-Bugs-To: \n"
3696-"POT-Creation-Date: 2015-07-20 17:12-0400\n"
3697+"POT-Creation-Date: 2016-06-14 15:38+0800\n"
3698 "PO-Revision-Date: 2014-08-26 13:00-0400\n"
3699 "Last-Translator: Automatically generated\n"
3700 "Language-Team: none\n"
3701@@ -17,9 +21,91 @@
3702 "MIME-Version: 1.0\n"
3703 "Content-Type: text/plain; charset=UTF-8\n"
3704 "Content-Transfer-Encoding: 8bit\n"
3705-"Plural-Forms: nplurals=2; plural=(n > 1);\n"
3706-
3707-#: ._no_net_msg
3708+"#-#-#-#-# fr.po (photos) #-#-#-#-#\n"
3709+"Plural-Forms: nplurals=2; plural=(n > 1);\n"
3710+"#-#-#-#-# orig_fr.po (photos) #-#-#-#-#\n"
3711+"Plural-Forms: nplurals=2; plural=(n > 1);\n"
3712+
3713+#: ._name8 ._name4
3714+msgid "Add account"
3715+msgstr "Ajouter un compte"
3716+
3717+#: ._title7
3718+msgid "See your events and more from Google."
3719+msgstr "Visualisez vos événements et plus depuis Google."
3720+
3721+#: ._title5
3722+msgid "<b> Review your Google sync settings</b>"
3723+msgstr "<b> Vérifiez vos paramètres de synchronisation Google</b>"
3724+
3725+#: ._title3
3726+msgid "Welcome to the Today scope"
3727+msgstr "Bienvenue dans l'application Aujourd'hui"
3728+
3729+#: ._title1
3730+msgid "Manage your day with all the essentials."
3731+msgstr "Organisez votre journée avec l'essentiel."
3732+
3733+#: ._subtitle2
3734+msgid "Tap here for more information."
3735+msgstr "Tapez ici pour plus d'informations."
3736+
3737+#: ._title9
3738+msgid "<b> Add your account</b>"
3739+msgstr "<b> Ajoutez votre compte</b>"
3740+
3741+#: ._loggedin11
3742+msgid "Get started."
3743+msgstr "Démarrer."
3744+
3745+#: ._title10
3746+msgid "Track your activity with Fitbit."
3747+msgstr "Effectuez le suivi de votre activité avec Fitbit."
3748+
3749+#: ._description6
3750+msgid ""
3751+"Adding your Google account will allow Today to display your events and "
3752+"contacts.<br><br>Press the button below to add your account (or go to "
3753+"accounts in the Settings app).<br><br>Remember to enable the contact and "
3754+"calendar sync once you have successfully added it."
3755+msgstr ""
3756+"Ajoutez un compte Google pour afficher vos événements et vos contacts dans "
3757+"Aujourd'hui.<br><br>Appuyez sur le bouton ci-dessous pour ajouter votre "
3758+"compte (ou accédez à Comptes dans l'application Réglages).<br><br>N'oubliez "
3759+"pas d'activer la synchronisation du calendrier et des contacts une fois "
3760+"votre compte ajouté."
3761+
3762+#: ._title13
3763+msgid "<b>Skip &amp; set up later</b>"
3764+msgstr "<b>Ignorer et configurer ultérieurement</b>"
3765+
3766+#: ._description0
3767+msgid ""
3768+"Today gives you a overview of your day including:<br>- events and tasks<br>- "
3769+"calls and messages<br>- news, weather and more.<br><br> You can customise "
3770+"what is shown in Today using the scope settings icon.<br><br> Some services "
3771+"require your log-in below or later."
3772+msgstr ""
3773+"L'application Aujourd'hui vous donne un aperçu de votre journée, et vous "
3774+"fournit des informations telles que :<br>- événements et tâches<br>- appels "
3775+"et messages<br>- actualités, météo et davantage.<br><br> Vous pouvez "
3776+"personnaliser les informations affichées dans l'application Aujourd'hui à "
3777+"l'aide de l'icône de paramétrage correspondante.<br><br> Certains services "
3778+"vous obligent à vous connecter ci-dessous ou ultérieurement."
3779+
3780+#: ._title12
3781+msgid "Set up your accounts later."
3782+msgstr "Configurez vos comptes ultérieurement."
3783+
3784+#: ._no_loc_msg2 ../src/query.cpp:245
3785+msgid ""
3786+"Please enable location services. Refresh by pulling down the middle of the "
3787+"screen."
3788+msgstr ""
3789+"Activez les services de localisation. Actualisez en faisant glisser votre "
3790+"doigt vers le bas à partir du centre de l'écran."
3791+
3792+#: ._no_net_msg0 ../src/query.cpp:207
3793 msgid ""
3794 "Please connect to the internet. Refresh by pulling down the middle of the "
3795 "screen."
3796@@ -27,19 +113,10 @@
3797 "Connectez-vous à Internet. Actualisez en faisant glisser votre doigt vers le "
3798 "bas à partir du centre de l'écran."
3799
3800-#: ._category_title
3801+#: ._category_title1
3802 msgid "Install More Sources:"
3803 msgstr ""
3804
3805-#
3806-#: ._no_loc_msg
3807-msgid ""
3808-"Please enable location services. Refresh by pulling down the middle of the "
3809-"screen"
3810-msgstr ""
3811-"Activez les services de localisation. Actualisez en faisant glisser votre "
3812-"doigt vers le bas à partir du centre de l'écran."
3813-
3814 #: ../data/scope.ini.in.h:1
3815 msgid "Aggregator"
3816 msgstr ""
3817@@ -48,78 +125,12 @@
3818 msgid "A template for creating an aggregator scope"
3819 msgstr ""
3820
3821-#~ msgid ""
3822-#~ "Please enable location services. Refresh by pulling down the middle of "
3823-#~ "the screen."
3824-#~ msgstr ""
3825-#~ "Activez les services de localisation. Actualisez en faisant glisser votre "
3826-#~ "doigt vers le bas à partir du centre de l'écran."
3827-
3828-#~ msgid "Tap here for more information."
3829-#~ msgstr "Tapez ici pour plus d'informations."
3830-
3831-#~ msgid "Manage your day with all the essentials."
3832-#~ msgstr "Organisez votre journée avec l'essentiel."
3833-
3834-#~ msgid ""
3835-#~ "Today gives you a overview of your day including:<br>- events and "
3836-#~ "tasks<br>- calls and messages<br>- news, weather and more.<br><br> You "
3837-#~ "can customise what is shown in Today using the scope settings icon."
3838-#~ "<br><br> Some services require your log-in below or later."
3839-#~ msgstr ""
3840-#~ "L'application Aujourd'hui vous donne un aperçu de votre journée, et vous "
3841-#~ "fournit des informations telles que :<br>- événements et tâches<br>- "
3842-#~ "appels et messages<br>- actualités, météo et davantage.<br><br> Vous "
3843-#~ "pouvez personnaliser les informations affichées dans l'application "
3844-#~ "Aujourd'hui à l'aide de l'icône de paramétrage correspondante.<br><br> "
3845-#~ "Certains services vous obligent à vous connecter ci-dessous ou "
3846-#~ "ultérieurement."
3847-
3848-#~ msgid "Welcome to the Today scope"
3849-#~ msgstr "Bienvenue dans l'application Aujourd'hui"
3850-
3851-#~ msgid "Add account"
3852-#~ msgstr "Ajouter un compte"
3853-
3854-#~ msgid "<b> Review your Google sync settings</b>"
3855-#~ msgstr "<b> Vérifiez vos paramètres de synchronisation Google</b>"
3856-
3857-#~ msgid ""
3858-#~ "Adding your Google account will allow Today to display your events and "
3859-#~ "contacts.<br><br>Press the button below to add your account (or go to "
3860-#~ "accounts in the Settings app).<br><br>Remember to enable the contact and "
3861-#~ "calendar sync once you have successfully added it."
3862-#~ msgstr ""
3863-#~ "Ajoutez un compte Google pour afficher vos événements et vos contacts "
3864-#~ "dans Aujourd'hui.<br><br>Appuyez sur le bouton ci-dessous pour ajouter "
3865-#~ "votre compte (ou accédez à Comptes dans l'application Réglages)."
3866-#~ "<br><br>N'oubliez pas d'activer la synchronisation du calendrier et des "
3867-#~ "contacts une fois votre compte ajouté."
3868-
3869-#~ msgid "See your events and more from Google."
3870-#~ msgstr "Visualisez vos événements et plus depuis Google."
3871-
3872 #~ msgid "<b> Successfully logged in</b>"
3873 #~ msgstr "<b> Connexion réussie</b>"
3874
3875-#~ msgid "<b> Add your account</b>"
3876-#~ msgstr "<b> Ajoutez votre compte</b>"
3877-
3878-#~ msgid "Track your activity with Fitbit."
3879-#~ msgstr "Effectuez le suivi de votre activité avec Fitbit."
3880-
3881-#~ msgid "Get started."
3882-#~ msgstr "Démarrer."
3883-
3884 #~ msgid "<b>OK</b>"
3885 #~ msgstr "<b>OK</b>"
3886
3887-#~ msgid "<b>Skip &amp; set up later</b>"
3888-#~ msgstr "<b>Ignorer et configurer ultérieurement</b>"
3889-
3890-#~ msgid "Set up your accounts later."
3891-#~ msgstr "Configurez vos comptes ultérieurement."
3892-
3893 #~ msgid "Click here for more information."
3894 #~ msgstr "Cliquez ici pour plus d'informations."
3895
3896@@ -232,6 +243,54 @@
3897 #~ msgid "See your photo feed from Instagram."
3898 #~ msgstr "Affichez les photos de votre profil Instagram."
3899
3900+#, fuzzy
3901+#~ msgid "Stay up to date with the latest bollywood news, music, movies."
3902+#~ msgstr "Restez informé en accédant aux dernières nouvelles."
3903+
3904+#, fuzzy
3905+#~ msgid ""
3906+#~ "Book displays content from a variety of different sources.<br><br>You can "
3907+#~ "use the scope settings to decide which book sources are shown allowing "
3908+#~ "you to create your own book feed based on your interests."
3909+#~ msgstr ""
3910+#~ "Actualités provenant de diverses sources.<br><br>Vous pouvez utiliser les "
3911+#~ "réglages de l'application pour spécifier les sources que vous souhaitez "
3912+#~ "afficher afin de créer votre propre fil d'actualités en fonction de vos "
3913+#~ "intérêts."
3914+
3915+#, fuzzy
3916+#~ msgid "Welcome to the Bollywood scope"
3917+#~ msgstr "Bienvenue dans l'application Aujourd'hui"
3918+
3919+#, fuzzy
3920+#~ msgid "Hot star"
3921+#~ msgstr "Démarrer."
3922+
3923+#, fuzzy
3924+#~ msgid "Contents of your Bollywood scope"
3925+#~ msgstr "Contenu de votre application Actualités"
3926+
3927+#, fuzzy
3928+#~ msgid "Find your books here."
3929+#~ msgstr "Vos photos sont regroupées ici"
3930+
3931+#, fuzzy
3932+#~ msgid ""
3933+#~ "Books makes it easy to browse your books, magazines from Douban, China "
3934+#~ "mobile, and Viva - all in one place."
3935+#~ msgstr ""
3936+#~ "Photos vous permet de regrouper facilement vos photos d'Instagram, de "
3937+#~ "Facebook, de Flickr et de l'appareil photo au sein d'un emplacement "
3938+#~ "unique."
3939+
3940+#, fuzzy
3941+#~ msgid "Welcome to the Book scope"
3942+#~ msgstr "Bienvenue dans l'application Aujourd'hui"
3943+
3944+#, fuzzy
3945+#~ msgid "Contents of your book scope"
3946+#~ msgstr "Contenu de votre application Actualités"
3947+
3948 #~ msgid "Hints"
3949 #~ msgstr "Conseils"
3950
3951@@ -262,6 +321,14 @@
3952 #~ msgid "Hints will now be hidden"
3953 #~ msgstr "Les conseils seront masqués"
3954
3955+#
3956+#~ msgid ""
3957+#~ "Please enable location services. Refresh by pulling down the middle of "
3958+#~ "the screen"
3959+#~ msgstr ""
3960+#~ "Activez les services de localisation. Actualisez en faisant glisser votre "
3961+#~ "doigt vers le bas à partir du centre de l'écran."
3962+
3963 #~ msgid "Photos"
3964 #~ msgstr "Photos"
3965
3966
3967=== modified file 'po/gl.po'
3968--- po/gl.po 2015-07-20 23:53:41 +0000
3969+++ po/gl.po 2016-06-27 15:49:40 +0000
3970@@ -3,13 +3,17 @@
3971 # This file is distributed under the same license as the PACKAGE package.
3972 # Automatically generated, 2014.
3973 #
3974+#. #-#-#-#-# hints.json.pot (PACKAGE VERSION) #-#-#-#-#
3975+#. extracted from i18n.json
3976+#. #-#-#-#-# aggregator.pot.in.pot (PACKAGE VERSION) #-#-#-#-#
3977 #. #-#-#-#-# translatables.json.pot (PACKAGE VERSION) #-#-#-#-#
3978-#. extracted from ../data/translatables.json
3979+#. extracted from i18n.json
3980+#, fuzzy
3981 msgid ""
3982 msgstr ""
3983 "Project-Id-Version: photos\n"
3984 "Report-Msgid-Bugs-To: \n"
3985-"POT-Creation-Date: 2015-07-20 17:12-0400\n"
3986+"POT-Creation-Date: 2016-06-14 15:38+0800\n"
3987 "PO-Revision-Date: 2014-08-26 13:00-0400\n"
3988 "Last-Translator: Automatically generated\n"
3989 "Language-Team: none\n"
3990@@ -17,8 +21,87 @@
3991 "MIME-Version: 1.0\n"
3992 "Content-Type: text/plain; charset=UTF-8\n"
3993 "Content-Transfer-Encoding: 8bit\n"
3994-
3995-#: ._no_net_msg
3996+"#-#-#-#-# gl.po (photos) #-#-#-#-#\n"
3997+"#-#-#-#-# orig_gl.po (photos) #-#-#-#-#\n"
3998+
3999+#: ._name8 ._name4
4000+msgid "Add account"
4001+msgstr "Engadir conta"
4002+
4003+#: ._title7
4004+msgid "See your events and more from Google."
4005+msgstr "Ver os seus eventos e máis desde Google."
4006+
4007+#: ._title5
4008+msgid "<b> Review your Google sync settings</b>"
4009+msgstr "<b> Revise a súa configuración de sincronización de Google</b>"
4010+
4011+#: ._title3
4012+msgid "Welcome to the Today scope"
4013+msgstr "Benvido ao ámbito Hoxe"
4014+
4015+#: ._title1
4016+msgid "Manage your day with all the essentials."
4017+msgstr "Xestione a súa xornada cos elementos básicos."
4018+
4019+#: ._subtitle2
4020+msgid "Tap here for more information."
4021+msgstr "Prema aquí se quere máis información."
4022+
4023+#: ._title9
4024+msgid "<b> Add your account</b>"
4025+msgstr "<b> Engadir a súa conta</b>"
4026+
4027+#: ._loggedin11
4028+msgid "Get started."
4029+msgstr "Comezar."
4030+
4031+#: ._title10
4032+msgid "Track your activity with Fitbit."
4033+msgstr "Seguir a súa actividade con Fitbit."
4034+
4035+#: ._description6
4036+msgid ""
4037+"Adding your Google account will allow Today to display your events and "
4038+"contacts.<br><br>Press the button below to add your account (or go to "
4039+"accounts in the Settings app).<br><br>Remember to enable the contact and "
4040+"calendar sync once you have successfully added it."
4041+msgstr ""
4042+"Engadir a súa conta de Google permite que Hoxe mostre os seus eventos e "
4043+"contactos.<br><br>Prema o botón inferior para engadir a súa conta (ou vaia a "
4044+"contas na aplicación Configuración).<br><br>Cando a engada, lembre permitir "
4045+"a sincronización de contactos e calendario."
4046+
4047+#: ._title13
4048+msgid "<b>Skip &amp; set up later</b>"
4049+msgstr "<b>Omitir e configurar despois</b>"
4050+
4051+#: ._description0
4052+msgid ""
4053+"Today gives you a overview of your day including:<br>- events and tasks<br>- "
4054+"calls and messages<br>- news, weather and more.<br><br> You can customise "
4055+"what is shown in Today using the scope settings icon.<br><br> Some services "
4056+"require your log-in below or later."
4057+msgstr ""
4058+"Hoxe proporciona un resumo da súa xornada que inclúe:<br>- Eventos e "
4059+"tarefas<br>- Chamadas e mensaxes<br>- Noticias, tempo e máis.<br><br> Pode "
4060+"personalizar o que se mostra en Hoxe a través da icona de configuración do "
4061+"ámbito.<br><br> Algúns servizos requiren que inicie sesión máis abaixo ou "
4062+"despois."
4063+
4064+#: ._title12
4065+msgid "Set up your accounts later."
4066+msgstr "Configurar as súas contas despois."
4067+
4068+#: ._no_loc_msg2 ../src/query.cpp:245
4069+msgid ""
4070+"Please enable location services. Refresh by pulling down the middle of the "
4071+"screen."
4072+msgstr ""
4073+"Por favor, permita os servizos de localización. Actualice tirando cara "
4074+"abaixo desde o medio da pantalla."
4075+
4076+#: ._no_net_msg0 ../src/query.cpp:207
4077 msgid ""
4078 "Please connect to the internet. Refresh by pulling down the middle of the "
4079 "screen."
4080@@ -26,19 +109,10 @@
4081 "Por favor, conéctese a Internet. Actualice tirando cara abaixo desde o medio "
4082 "da pantalla."
4083
4084-#: ._category_title
4085+#: ._category_title1
4086 msgid "Install More Sources:"
4087 msgstr ""
4088
4089-#
4090-#: ._no_loc_msg
4091-msgid ""
4092-"Please enable location services. Refresh by pulling down the middle of the "
4093-"screen"
4094-msgstr ""
4095-"Por favor, permita os servizos de localización. Actualice tirando cara "
4096-"abaixo desde o medio da pantalla."
4097-
4098 #: ../data/scope.ini.in.h:1
4099 msgid "Aggregator"
4100 msgstr ""
4101@@ -47,75 +121,12 @@
4102 msgid "A template for creating an aggregator scope"
4103 msgstr ""
4104
4105-#~ msgid ""
4106-#~ "Please enable location services. Refresh by pulling down the middle of "
4107-#~ "the screen."
4108-#~ msgstr ""
4109-#~ "Por favor, permita os servizos de localización. Actualice tirando cara "
4110-#~ "abaixo desde o medio da pantalla."
4111-
4112-#~ msgid "Tap here for more information."
4113-#~ msgstr "Prema aquí se quere máis información."
4114-
4115-#~ msgid "Manage your day with all the essentials."
4116-#~ msgstr "Xestione a súa xornada cos elementos básicos."
4117-
4118-#~ msgid ""
4119-#~ "Today gives you a overview of your day including:<br>- events and "
4120-#~ "tasks<br>- calls and messages<br>- news, weather and more.<br><br> You "
4121-#~ "can customise what is shown in Today using the scope settings icon."
4122-#~ "<br><br> Some services require your log-in below or later."
4123-#~ msgstr ""
4124-#~ "Hoxe proporciona un resumo da súa xornada que inclúe:<br>- Eventos e "
4125-#~ "tarefas<br>- Chamadas e mensaxes<br>- Noticias, tempo e máis.<br><br> "
4126-#~ "Pode personalizar o que se mostra en Hoxe a través da icona de "
4127-#~ "configuración do ámbito.<br><br> Algúns servizos requiren que inicie "
4128-#~ "sesión máis abaixo ou despois."
4129-
4130-#~ msgid "Welcome to the Today scope"
4131-#~ msgstr "Benvido ao ámbito Hoxe"
4132-
4133-#~ msgid "Add account"
4134-#~ msgstr "Engadir conta"
4135-
4136-#~ msgid "<b> Review your Google sync settings</b>"
4137-#~ msgstr "<b> Revise a súa configuración de sincronización de Google</b>"
4138-
4139-#~ msgid ""
4140-#~ "Adding your Google account will allow Today to display your events and "
4141-#~ "contacts.<br><br>Press the button below to add your account (or go to "
4142-#~ "accounts in the Settings app).<br><br>Remember to enable the contact and "
4143-#~ "calendar sync once you have successfully added it."
4144-#~ msgstr ""
4145-#~ "Engadir a súa conta de Google permite que Hoxe mostre os seus eventos e "
4146-#~ "contactos.<br><br>Prema o botón inferior para engadir a súa conta (ou "
4147-#~ "vaia a contas na aplicación Configuración).<br><br>Cando a engada, lembre "
4148-#~ "permitir a sincronización de contactos e calendario."
4149-
4150-#~ msgid "See your events and more from Google."
4151-#~ msgstr "Ver os seus eventos e máis desde Google."
4152-
4153 #~ msgid "<b> Successfully logged in</b>"
4154 #~ msgstr "<b> Iniciou sesión correctamente</b>"
4155
4156-#~ msgid "<b> Add your account</b>"
4157-#~ msgstr "<b> Engadir a súa conta</b>"
4158-
4159-#~ msgid "Track your activity with Fitbit."
4160-#~ msgstr "Seguir a súa actividade con Fitbit."
4161-
4162-#~ msgid "Get started."
4163-#~ msgstr "Comezar."
4164-
4165 #~ msgid "<b>OK</b>"
4166 #~ msgstr "<b>OK</b>"
4167
4168-#~ msgid "<b>Skip &amp; set up later</b>"
4169-#~ msgstr "<b>Omitir e configurar despois</b>"
4170-
4171-#~ msgid "Set up your accounts later."
4172-#~ msgstr "Configurar as súas contas despois."
4173-
4174 #~ msgid "Click here for more information."
4175 #~ msgstr "Prema aquí se quere máis información."
4176
4177@@ -224,6 +235,52 @@
4178 #~ msgid "See your photo feed from Instagram."
4179 #~ msgstr "Ver as súas fotografías de Instagram."
4180
4181+#, fuzzy
4182+#~ msgid "Stay up to date with the latest bollywood news, music, movies."
4183+#~ msgstr "Manterse actualizado coas últimas noticias."
4184+
4185+#, fuzzy
4186+#~ msgid ""
4187+#~ "Book displays content from a variety of different sources.<br><br>You can "
4188+#~ "use the scope settings to decide which book sources are shown allowing "
4189+#~ "you to create your own book feed based on your interests."
4190+#~ msgstr ""
4191+#~ "Noticias mostra contido procedente de fontes diferentes.<br><br>Pode usar "
4192+#~ "a configuración de ámbito para escoller que fontes de noticias se mostran "
4193+#~ "e crear a súa propia baseada nos seus intereses."
4194+
4195+#, fuzzy
4196+#~ msgid "Welcome to the Bollywood scope"
4197+#~ msgstr "Benvido ao ámbito Hoxe"
4198+
4199+#, fuzzy
4200+#~ msgid "Hot star"
4201+#~ msgstr "Comezar."
4202+
4203+#, fuzzy
4204+#~ msgid "Contents of your Bollywood scope"
4205+#~ msgstr "Contidos do seu ámbito Noticias"
4206+
4207+#, fuzzy
4208+#~ msgid "Find your books here."
4209+#~ msgstr "Busque aquí as súas fotografías"
4210+
4211+#, fuzzy
4212+#~ msgid ""
4213+#~ "Books makes it easy to browse your books, magazines from Douban, China "
4214+#~ "mobile, and Viva - all in one place."
4215+#~ msgstr ""
4216+#~ "Fotografías simplifica a busca das súas imaxes de Instagram, Facebook, "
4217+#~ "Flickr e a cámara: todas nun só lugar."
4218+
4219+#, fuzzy
4220+#~ msgid "Welcome to the Book scope"
4221+#~ msgstr "Benvido ao ámbito Hoxe"
4222+
4223+#, fuzzy
4224+#~ msgid "Contents of your book scope"
4225+#~ msgstr "Contidos do seu ámbito Noticias"
4226+
4227 #~ msgid "Hints"
4228 #~ msgstr "Pistas"
4229
4230@@ -250,6 +307,14 @@
4231 #~ msgid "Hints will now be hidden"
4232 #~ msgstr "As pistas xa non se amosarán"
4233
4234+#
4235+#~ msgid ""
4236+#~ "Please enable location services. Refresh by pulling down the middle of "
4237+#~ "the screen"
4238+#~ msgstr ""
4239+#~ "Por favor, permita os servizos de localización. Actualice tirando cara "
4240+#~ "abaixo desde o medio da pantalla."
4241+
4242 #~ msgid "Photos"
4243 #~ msgstr "Fotografías"
4244
4245
4246=== modified file 'po/hu.po'
4247--- po/hu.po 2015-07-20 23:53:41 +0000
4248+++ po/hu.po 2016-06-27 15:49:40 +0000
4249@@ -3,13 +3,17 @@
4250 # This file is distributed under the same license as the PACKAGE package.
4251 # Automatically generated, 2014.
4252 #
4253+#. #-#-#-#-# hints.json.pot (PACKAGE VERSION) #-#-#-#-#
4254+#. extracted from i18n.json
4255+#. #-#-#-#-# aggregator.pot.in.pot (PACKAGE VERSION) #-#-#-#-#
4256 #. #-#-#-#-# translatables.json.pot (PACKAGE VERSION) #-#-#-#-#
4257-#. extracted from ../data/translatables.json
4258+#. extracted from i18n.json
4259+#, fuzzy
4260 msgid ""
4261 msgstr ""
4262 "Project-Id-Version: photos\n"
4263 "Report-Msgid-Bugs-To: \n"
4264-"POT-Creation-Date: 2015-07-20 17:12-0400\n"
4265+"POT-Creation-Date: 2016-06-14 15:38+0800\n"
4266 "PO-Revision-Date: 2014-08-26 13:00-0400\n"
4267 "Last-Translator: Automatically generated\n"
4268 "Language-Team: none\n"
4269@@ -17,9 +21,90 @@
4270 "MIME-Version: 1.0\n"
4271 "Content-Type: text/plain; charset=UTF-8\n"
4272 "Content-Transfer-Encoding: 8bit\n"
4273-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
4274-
4275-#: ._no_net_msg
4276+"#-#-#-#-# hu.po (photos) #-#-#-#-#\n"
4277+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
4278+"#-#-#-#-# orig_hu.po (photos) #-#-#-#-#\n"
4279+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
4280+
4281+#: ._name8 ._name4
4282+msgid "Add account"
4283+msgstr "Fiók hozzáadása"
4284+
4285+#: ._title7
4286+msgid "See your events and more from Google."
4287+msgstr ""
4288+"Tekintse meg a Google-ban megtalálható eseményeit és egyéb információit."
4289+
4290+#: ._title5
4291+msgid "<b> Review your Google sync settings</b>"
4292+msgstr "<b> A Google szinkronizálási beállításainak ellenőrzése</b>"
4293+
4294+#: ._title3
4295+msgid "Welcome to the Today scope"
4296+msgstr "Üdvözöljük a Ma munkalapon"
4297+
4298+#: ._title1
4299+msgid "Manage your day with all the essentials."
4300+msgstr "Szervezze meg a napját az összes szükséges információ megadásával."
4301+
4302+#: ._subtitle2
4303+msgid "Tap here for more information."
4304+msgstr "További információkért kattintson ide."
4305+
4306+#: ._title9
4307+msgid "<b> Add your account</b>"
4308+msgstr "<b> Adja hozzá a fiókját</b>"
4309+
4310+#: ._loggedin11
4311+msgid "Get started."
4312+msgstr "Kezdje meg a munkát."
4313+
4314+#: ._title10
4315+msgid "Track your activity with Fitbit."
4316+msgstr "Kövesse tevékenységeit a Fitbit segítségével."
4317+
4318+#: ._description6
4319+msgid ""
4320+"Adding your Google account will allow Today to display your events and "
4321+"contacts.<br><br>Press the button below to add your account (or go to "
4322+"accounts in the Settings app).<br><br>Remember to enable the contact and "
4323+"calendar sync once you have successfully added it."
4324+msgstr ""
4325+"A Google-fiók hozzáadásával az eseményei és a partnerei meg fognak jelenni a "
4326+"Ma lapon.<br><br>Kattintson az alábbi gombra a fiók hozzáadásához (vagy a "
4327+"Beállítások alkalmazásban keresse meg a Fiókok lehetőséget).<br><br>A fiók "
4328+"hozzáadása után engedélyezze a partnerek és a naptár szinkronizálását."
4329+
4330+#: ._title13
4331+msgid "<b>Skip &amp; set up later</b>"
4332+msgstr "<b>Kihagyás, és beállítás később</b>"
4333+
4334+#: ._description0
4335+msgid ""
4336+"Today gives you a overview of your day including:<br>- events and tasks<br>- "
4337+"calls and messages<br>- news, weather and more.<br><br> You can customise "
4338+"what is shown in Today using the scope settings icon.<br><br> Some services "
4339+"require your log-in below or later."
4340+msgstr ""
4341+"A Ma lapon áttekintheti a napra vonatkozó<br>- eseményeket és feladatokat, "
4342+"<br>- hívásokat és üzeneteket,<br>- híreket, időjárás-előrejelzést stb."
4343+"<br><br> A munkalap beállítása ikon segítségével testre szabhatja, hogy mi "
4344+"jelenjen meg a Ma lapon.<br><br> Bizonyos szolgáltatások használatához az "
4345+"alábbiakban vagy később be kell jelentkeznie."
4346+
4347+#: ._title12
4348+msgid "Set up your accounts later."
4349+msgstr "A fiókjait később állítja be."
4350+
4351+#: ._no_loc_msg2 ../src/query.cpp:245
4352+msgid ""
4353+"Please enable location services. Refresh by pulling down the middle of the "
4354+"screen."
4355+msgstr ""
4356+"Engedélyezze a helyzetmeghatározási szolgáltatásokat. A frissítéshez húzza "
4357+"lefelé a képernyő középső részét."
4358+
4359+#: ._no_net_msg0 ../src/query.cpp:207
4360 msgid ""
4361 "Please connect to the internet. Refresh by pulling down the middle of the "
4362 "screen."
4363@@ -27,19 +112,10 @@
4364 "Kapcsolódjon az internethez. A frissítéshez húzza lefelé a képernyő középső "
4365 "részét."
4366
4367-#: ._category_title
4368+#: ._category_title1
4369 msgid "Install More Sources:"
4370 msgstr ""
4371
4372-#
4373-#: ._no_loc_msg
4374-msgid ""
4375-"Please enable location services. Refresh by pulling down the middle of the "
4376-"screen"
4377-msgstr ""
4378-"Engedélyezze a helyzetmeghatározási szolgáltatásokat. A frissítéshez húzza "
4379-"lefelé a képernyő középső részét."
4380-
4381 #: ../data/scope.ini.in.h:1
4382 msgid "Aggregator"
4383 msgstr ""
4384@@ -48,78 +124,12 @@
4385 msgid "A template for creating an aggregator scope"
4386 msgstr ""
4387
4388-#~ msgid ""
4389-#~ "Please enable location services. Refresh by pulling down the middle of "
4390-#~ "the screen."
4391-#~ msgstr ""
4392-#~ "Engedélyezze a helyzetmeghatározási szolgáltatásokat. A frissítéshez "
4393-#~ "húzza lefelé a képernyő középső részét."
4394-
4395-#~ msgid "Tap here for more information."
4396-#~ msgstr "További információkért kattintson ide."
4397-
4398-#~ msgid "Manage your day with all the essentials."
4399-#~ msgstr "Szervezze meg a napját az összes szükséges információ megadásával."
4400-
4401-#~ msgid ""
4402-#~ "Today gives you a overview of your day including:<br>- events and "
4403-#~ "tasks<br>- calls and messages<br>- news, weather and more.<br><br> You "
4404-#~ "can customise what is shown in Today using the scope settings icon."
4405-#~ "<br><br> Some services require your log-in below or later."
4406-#~ msgstr ""
4407-#~ "A Ma lapon áttekintheti a napra vonatkozó<br>- eseményeket és "
4408-#~ "feladatokat, <br>- hívásokat és üzeneteket,<br>- híreket, időjárás-"
4409-#~ "előrejelzést stb.<br><br> A munkalap beállítása ikon segítségével testre "
4410-#~ "szabhatja, hogy mi jelenjen meg a Ma lapon.<br><br> Bizonyos "
4411-#~ "szolgáltatások használatához az alábbiakban vagy később be kell "
4412-#~ "jelentkeznie."
4413-
4414-#~ msgid "Welcome to the Today scope"
4415-#~ msgstr "Üdvözöljük a Ma munkalapon"
4416-
4417-#~ msgid "Add account"
4418-#~ msgstr "Fiók hozzáadása"
4419-
4420-#~ msgid "<b> Review your Google sync settings</b>"
4421-#~ msgstr "<b> A Google szinkronizálási beállításainak ellenőrzése</b>"
4422-
4423-#~ msgid ""
4424-#~ "Adding your Google account will allow Today to display your events and "
4425-#~ "contacts.<br><br>Press the button below to add your account (or go to "
4426-#~ "accounts in the Settings app).<br><br>Remember to enable the contact and "
4427-#~ "calendar sync once you have successfully added it."
4428-#~ msgstr ""
4429-#~ "A Google-fiók hozzáadásával az eseményei és a partnerei meg fognak "
4430-#~ "jelenni a Ma lapon.<br><br>Kattintson az alábbi gombra a fiók "
4431-#~ "hozzáadásához (vagy a Beállítások alkalmazásban keresse meg a Fiókok "
4432-#~ "lehetőséget).<br><br>A fiók hozzáadása után engedélyezze a partnerek és a "
4433-#~ "naptár szinkronizálását."
4434-
4435-#~ msgid "See your events and more from Google."
4436-#~ msgstr ""
4437-#~ "Tekintse meg a Google-ban megtalálható eseményeit és egyéb információit."
4438-
4439 #~ msgid "<b> Successfully logged in</b>"
4440 #~ msgstr "<b> Sikeresen bejelentkezett</b>"
4441
4442-#~ msgid "<b> Add your account</b>"
4443-#~ msgstr "<b> Adja hozzá a fiókját</b>"
4444-
4445-#~ msgid "Track your activity with Fitbit."
4446-#~ msgstr "Kövesse tevékenységeit a Fitbit segítségével."
4447-
4448-#~ msgid "Get started."
4449-#~ msgstr "Kezdje meg a munkát."
4450-
4451 #~ msgid "<b>OK</b>"
4452 #~ msgstr "<b>OK</b>"
4453
4454-#~ msgid "<b>Skip &amp; set up later</b>"
4455-#~ msgstr "<b>Kihagyás, és beállítás később</b>"
4456-
4457-#~ msgid "Set up your accounts later."
4458-#~ msgstr "A fiókjait később állítja be."
4459-
4460 #~ msgid "Click here for more information."
4461 #~ msgstr "További információkért kattintson ide."
4462
4463@@ -228,6 +238,52 @@
4464 #~ msgid "See your photo feed from Instagram."
4465 #~ msgstr "Tekintse meg az Instagramon található fényképeit."
4466
4467+#, fuzzy
4468+#~ msgid "Stay up to date with the latest bollywood news, music, movies."
4469+#~ msgstr "Elolvashatja a legfrissebb híreket."
4470+
4471+#, fuzzy
4472+#~ msgid ""
4473+#~ "Book displays content from a variety of different sources.<br><br>You can "
4474+#~ "use the scope settings to decide which book sources are shown allowing "
4475+#~ "you to create your own book feed based on your interests."
4476+#~ msgstr ""
4477+#~ "A hírek között különböző forrásokból származó tartalmat talál.<br><br>A "
4478+#~ "munkalap-beállításokkal meghatározhatja, hogy mely."
4479+
4480+#, fuzzy
4481+#~ msgid "Welcome to the Bollywood scope"
4482+#~ msgstr "Üdvözöljük a Ma munkalapon"
4483+
4484+#, fuzzy
4485+#~ msgid "Hot star"
4486+#~ msgstr "Kezdje meg a munkát."
4487+
4488+#, fuzzy
4489+#~ msgid "Contents of your Bollywood scope"
4490+#~ msgstr "A Hírek munkalap tartalma"
4491+
4492+#, fuzzy
4493+#~ msgid "Find your books here."
4494+#~ msgstr "Itt kereshet a fotói között"
4495+
4496+#, fuzzy
4497+#~ msgid ""
4498+#~ "Books makes it easy to browse your books, magazines from Douban, China "
4499+#~ "mobile, and Viva - all in one place."
4500+#~ msgstr ""
4501+#~ "A Fotók munkalapon egyszerűen, egy helyen böngészhet az Instagramon, a "
4502+#~ "Facebookon és a Flickren található, illetve a fényképezőgépről származó "
4503+#~ "képek között."
4504+
4505+#, fuzzy
4506+#~ msgid "Welcome to the Book scope"
4507+#~ msgstr "Üdvözöljük a Ma munkalapon"
4508+
4509+#, fuzzy
4510+#~ msgid "Contents of your book scope"
4511+#~ msgstr "A Hírek munkalap tartalma"
4512+
4513 #~ msgid "Hints"
4514 #~ msgstr "Tippek"
4515
4516@@ -256,6 +312,14 @@
4517 #~ msgid "Hints will now be hidden"
4518 #~ msgstr "A tippek nem lesznek láthatóak"
4519
4520+#
4521+#~ msgid ""
4522+#~ "Please enable location services. Refresh by pulling down the middle of "
4523+#~ "the screen"
4524+#~ msgstr ""
4525+#~ "Engedélyezze a helyzetmeghatározási szolgáltatásokat. A frissítéshez "
4526+#~ "húzza lefelé a képernyő középső részét."
4527+
4528 #~ msgid "Photos"
4529 #~ msgstr "Fényképek"
4530
4531
4532=== modified file 'po/it.po'
4533--- po/it.po 2015-07-20 23:53:41 +0000
4534+++ po/it.po 2016-06-27 15:49:40 +0000
4535@@ -3,13 +3,17 @@
4536 # This file is distributed under the same license as the PACKAGE package.
4537 # Automatically generated, 2014.
4538 #
4539+#. #-#-#-#-# hints.json.pot (PACKAGE VERSION) #-#-#-#-#
4540+#. extracted from i18n.json
4541+#. #-#-#-#-# aggregator.pot.in.pot (PACKAGE VERSION) #-#-#-#-#
4542 #. #-#-#-#-# translatables.json.pot (PACKAGE VERSION) #-#-#-#-#
4543-#. extracted from ../data/translatables.json
4544+#. extracted from i18n.json
4545+#, fuzzy
4546 msgid ""
4547 msgstr ""
4548 "Project-Id-Version: photos\n"
4549 "Report-Msgid-Bugs-To: \n"
4550-"POT-Creation-Date: 2015-07-20 17:12-0400\n"
4551+"POT-Creation-Date: 2016-06-14 15:38+0800\n"
4552 "PO-Revision-Date: 2014-08-26 13:00-0400\n"
4553 "Last-Translator: Automatically generated\n"
4554 "Language-Team: none\n"
4555@@ -17,9 +21,89 @@
4556 "MIME-Version: 1.0\n"
4557 "Content-Type: text/plain; charset=UTF-8\n"
4558 "Content-Transfer-Encoding: 8bit\n"
4559-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
4560-
4561-#: ._no_net_msg
4562+"#-#-#-#-# it.po (photos) #-#-#-#-#\n"
4563+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
4564+"#-#-#-#-# orig_it.po (photos) #-#-#-#-#\n"
4565+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
4566+
4567+#: ._name8 ._name4
4568+msgid "Add account"
4569+msgstr "Aggiungi account"
4570+
4571+#: ._title7
4572+msgid "See your events and more from Google."
4573+msgstr "Guarda i tuoi eventi e molto altro da Google."
4574+
4575+#: ._title5
4576+msgid "<b> Review your Google sync settings</b>"
4577+msgstr "<b> Rivedi le impostazioni di sincronizzazione Google</b>"
4578+
4579+#: ._title3
4580+msgid "Welcome to the Today scope"
4581+msgstr "Benvenuto nello scope di Oggi"
4582+
4583+#: ._title1
4584+msgid "Manage your day with all the essentials."
4585+msgstr "Gestisci la giornata con tutto ciò che occorre."
4586+
4587+#: ._subtitle2
4588+msgid "Tap here for more information."
4589+msgstr "Toccare qui per maggiori informazioni."
4590+
4591+#: ._title9
4592+msgid "<b> Add your account</b>"
4593+msgstr "<b> Aggiungi il tuo account</b>"
4594+
4595+#: ._loggedin11
4596+msgid "Get started."
4597+msgstr "Inizia ora."
4598+
4599+#: ._title10
4600+msgid "Track your activity with Fitbit."
4601+msgstr "Monitorizza la tua attività con Fitbit."
4602+
4603+#: ._description6
4604+msgid ""
4605+"Adding your Google account will allow Today to display your events and "
4606+"contacts.<br><br>Press the button below to add your account (or go to "
4607+"accounts in the Settings app).<br><br>Remember to enable the contact and "
4608+"calendar sync once you have successfully added it."
4609+msgstr ""
4610+"Aggiungendo l'account Google potrai visualizzare gli eventi e i contatti in "
4611+"Today.<br><br>Premi il pulsante di seguito per aggiungere il tuo account "
4612+"(oppure vai agli account nella app Impostazioni).<br><br>Ricorda di "
4613+"abilitare la sincronizzazione di contatti e calendari dopo averlo aggiunto."
4614+
4615+#: ._title13
4616+msgid "<b>Skip &amp; set up later</b>"
4617+msgstr "<b>Ignora e imposta più tardi</b>"
4618+
4619+#: ._description0
4620+msgid ""
4621+"Today gives you a overview of your day including:<br>- events and tasks<br>- "
4622+"calls and messages<br>- news, weather and more.<br><br> You can customise "
4623+"what is shown in Today using the scope settings icon.<br><br> Some services "
4624+"require your log-in below or later."
4625+msgstr ""
4626+"Today offre la panoramica della giornata con:<br>- eventi e task<br>- "
4627+"chiamate e messaggi<br>- notizie, meteo e altro ancora.<br><br> Puoi "
4628+"personalizzare la visualizzazione di Today usando le icone delle "
4629+"impostazioni degli scope.<br><br> Alcuni servizi richiedono il login di "
4630+"seguito o successivamente."
4631+
4632+#: ._title12
4633+msgid "Set up your accounts later."
4634+msgstr "Imposta gli account più tardi."
4635+
4636+#: ._no_loc_msg2 ../src/query.cpp:245
4637+msgid ""
4638+"Please enable location services. Refresh by pulling down the middle of the "
4639+"screen."
4640+msgstr ""
4641+"Abilita i servizi di localizzazione. Per aggiornare spingi verso il basso il "
4642+"centro dello schermo."
4643+
4644+#: ._no_net_msg0 ../src/query.cpp:207
4645 msgid ""
4646 "Please connect to the internet. Refresh by pulling down the middle of the "
4647 "screen."
4648@@ -27,19 +111,10 @@
4649 "Connettiti a Internet. Per aggiornare spingi verso il basso il centro dello "
4650 "schermo."
4651
4652-#: ._category_title
4653+#: ._category_title1
4654 msgid "Install More Sources:"
4655 msgstr ""
4656
4657-#
4658-#: ._no_loc_msg
4659-msgid ""
4660-"Please enable location services. Refresh by pulling down the middle of the "
4661-"screen"
4662-msgstr ""
4663-"Abilita i servizi di localizzazione. Per aggiornare spingi verso il basso il "
4664-"centro dello schermo."
4665-
4666 #: ../data/scope.ini.in.h:1
4667 msgid "Aggregator"
4668 msgstr ""
4669@@ -48,76 +123,12 @@
4670 msgid "A template for creating an aggregator scope"
4671 msgstr ""
4672
4673-#~ msgid ""
4674-#~ "Please enable location services. Refresh by pulling down the middle of "
4675-#~ "the screen."
4676-#~ msgstr ""
4677-#~ "Abilita i servizi di localizzazione. Per aggiornare spingi verso il basso "
4678-#~ "il centro dello schermo."
4679-
4680-#~ msgid "Tap here for more information."
4681-#~ msgstr "Toccare qui per maggiori informazioni."
4682-
4683-#~ msgid "Manage your day with all the essentials."
4684-#~ msgstr "Gestisci la giornata con tutto ciò che occorre."
4685-
4686-#~ msgid ""
4687-#~ "Today gives you a overview of your day including:<br>- events and "
4688-#~ "tasks<br>- calls and messages<br>- news, weather and more.<br><br> You "
4689-#~ "can customise what is shown in Today using the scope settings icon."
4690-#~ "<br><br> Some services require your log-in below or later."
4691-#~ msgstr ""
4692-#~ "Today offre la panoramica della giornata con:<br>- eventi e task<br>- "
4693-#~ "chiamate e messaggi<br>- notizie, meteo e altro ancora.<br><br> Puoi "
4694-#~ "personalizzare la visualizzazione di Today usando le icone delle "
4695-#~ "impostazioni degli scope.<br><br> Alcuni servizi richiedono il login di "
4696-#~ "seguito o successivamente."
4697-
4698-#~ msgid "Welcome to the Today scope"
4699-#~ msgstr "Benvenuto nello scope di Oggi"
4700-
4701-#~ msgid "Add account"
4702-#~ msgstr "Aggiungi account"
4703-
4704-#~ msgid "<b> Review your Google sync settings</b>"
4705-#~ msgstr "<b> Rivedi le impostazioni di sincronizzazione Google</b>"
4706-
4707-#~ msgid ""
4708-#~ "Adding your Google account will allow Today to display your events and "
4709-#~ "contacts.<br><br>Press the button below to add your account (or go to "
4710-#~ "accounts in the Settings app).<br><br>Remember to enable the contact and "
4711-#~ "calendar sync once you have successfully added it."
4712-#~ msgstr ""
4713-#~ "Aggiungendo l'account Google potrai visualizzare gli eventi e i contatti "
4714-#~ "in Today.<br><br>Premi il pulsante di seguito per aggiungere il tuo "
4715-#~ "account (oppure vai agli account nella app Impostazioni).<br><br>Ricorda "
4716-#~ "di abilitare la sincronizzazione di contatti e calendari dopo averlo "
4717-#~ "aggiunto."
4718-
4719-#~ msgid "See your events and more from Google."
4720-#~ msgstr "Guarda i tuoi eventi e molto altro da Google."
4721-
4722 #~ msgid "<b> Successfully logged in</b>"
4723 #~ msgstr "<b> Login riuscito</b>"
4724
4725-#~ msgid "<b> Add your account</b>"
4726-#~ msgstr "<b> Aggiungi il tuo account</b>"
4727-
4728-#~ msgid "Track your activity with Fitbit."
4729-#~ msgstr "Monitorizza la tua attività con Fitbit."
4730-
4731-#~ msgid "Get started."
4732-#~ msgstr "Inizia ora."
4733-
4734 #~ msgid "<b>OK</b>"
4735 #~ msgstr "<b>OK</b>"
4736
4737-#~ msgid "<b>Skip &amp; set up later</b>"
4738-#~ msgstr "<b>Ignora e imposta più tardi</b>"
4739-
4740-#~ msgid "Set up your accounts later."
4741-#~ msgstr "Imposta gli account più tardi."
4742-
4743 #~ msgid "Click here for more information."
4744 #~ msgstr "Fare clic qui per maggiori informazioni."
4745
4746@@ -226,6 +237,52 @@
4747 #~ msgid "See your photo feed from Instagram."
4748 #~ msgstr "Guarda il tuo feed di foto da Instagram."
4749
4750+#, fuzzy
4751+#~ msgid "Stay up to date with the latest bollywood news, music, movies."
4752+#~ msgstr "Rimani aggiornato con le ultime notizie."
4753+
4754+#, fuzzy
4755+#~ msgid ""
4756+#~ "Book displays content from a variety of different sources.<br><br>You can "
4757+#~ "use the scope settings to decide which book sources are shown allowing "
4758+#~ "you to create your own book feed based on your interests."
4759+#~ msgstr ""
4760+#~ "Notizie visualizza contenuti da molte diverse origini.<br><br>Puoi usare "
4761+#~ "le impostazioni di scope per decidere le origini da visualizzare per "
4762+#~ "creare il tuo feed in base ai tuoi interessi."
4763+
4764+#, fuzzy
4765+#~ msgid "Welcome to the Bollywood scope"
4766+#~ msgstr "Benvenuto nello scope di Oggi"
4767+
4768+#, fuzzy
4769+#~ msgid "Hot star"
4770+#~ msgstr "Inizia ora."
4771+
4772+#, fuzzy
4773+#~ msgid "Contents of your Bollywood scope"
4774+#~ msgstr "Contenuti scope di Notizie"
4775+
4776+#, fuzzy
4777+#~ msgid "Find your books here."
4778+#~ msgstr "Trova le tue foto qui"
4779+
4780+#, fuzzy
4781+#~ msgid ""
4782+#~ "Books makes it easy to browse your books, magazines from Douban, China "
4783+#~ "mobile, and Viva - all in one place."
4784+#~ msgstr ""
4785+#~ "Con Foto puoi scorrere tutte le tue immagini di Instagram, Facebook, "
4786+#~ "Flickr e della fotocamera, in una sola posizione."
4787+
4788+#, fuzzy
4789+#~ msgid "Welcome to the Book scope"
4790+#~ msgstr "Benvenuto nello scope di Oggi"
4791+
4792+#, fuzzy
4793+#~ msgid "Contents of your book scope"
4794+#~ msgstr "Contenuti scope di Notizie"
4795+
4796 #~ msgid "Hints"
4797 #~ msgstr "Suggerimenti"
4798
4799@@ -252,6 +309,14 @@
4800 #~ msgid "Hints will now be hidden"
4801 #~ msgstr "I suggerimenti ora saranno nascosti"
4802
4803+#
4804+#~ msgid ""
4805+#~ "Please enable location services. Refresh by pulling down the middle of "
4806+#~ "the screen"
4807+#~ msgstr ""
4808+#~ "Abilita i servizi di localizzazione. Per aggiornare spingi verso il basso "
4809+#~ "il centro dello schermo."
4810+
4811 #~ msgid "Photos"
4812 #~ msgstr "Foto"
4813
4814
4815=== added file 'po/json_get_i18n.py'
4816--- po/json_get_i18n.py 1970-01-01 00:00:00 +0000
4817+++ po/json_get_i18n.py 2016-06-27 15:49:40 +0000
4818@@ -0,0 +1,48 @@
4819+#!/usr/bin/python3
4820+import json
4821+import os
4822+import sys
4823+
4824+idx = -1
4825+trans = dict();
4826+
4827+def dolist(alist ):
4828+ for l in alist:
4829+ if type(l) is list:
4830+ dolist(l)
4831+ if type(l) is dict:
4832+ dodict(l)
4833+
4834+def dodict(adict):
4835+ for k,v in adict.items():
4836+ if k.startswith("_"):
4837+ global idx
4838+ idx += 1
4839+ global tran
4840+ trans[k + str(idx)] = v
4841+ if type(v) is list:
4842+ dolist(v)
4843+ if type(v) is dict:
4844+ dodict(v)
4845+
4846+if len(sys.argv) < 2:
4847+ print("File arg missing. Stopping")
4848+ sys.exit(1)
4849+
4850+if os.path.exists("i18n.json"):
4851+ os.remove("i18n.json")
4852+
4853+print("the filel:", sys.argv[1])
4854+
4855+with open(sys.argv[1]) as j_file:
4856+ j = json.load(j_file)
4857+
4858+if type(j) is list:
4859+ dolist(j)
4860+if type(j) is dict:
4861+ dodict(j)
4862+
4863+with open("i18n.json", "w") as outfile:
4864+ json.dump(trans, outfile, indent=4)
4865+
4866+#print(json.dumps(trans, indent=4))
4867
4868=== modified file 'po/make-pot.sh'
4869--- po/make-pot.sh 2015-05-19 15:54:12 +0000
4870+++ po/make-pot.sh 2016-06-27 15:49:40 +0000
4871@@ -1,4 +1,5 @@
4872 #!/bin/bash
4873+set -e
4874
4875 PWD=$(pwd)
4876 POT=aggregator
4877@@ -34,9 +35,10 @@
4878
4879 echo "Processing: $json"
4880
4881+ ./json_get_i18n.py $json
4882 name=$(basename $json)
4883 #echo "name: $name"
4884- in_in_in_in="$json"
4885+ in_in_in_in="i18n.json"
4886 #echo "in_in_in_in: $in_in_in_in"
4887 in_in_in="/tmp/$name.pot.in.in.in"
4888 rm -f $in_in_in
4889
4890=== added file 'po/merge-hints-po-to-other-po.sh'
4891--- po/merge-hints-po-to-other-po.sh 1970-01-01 00:00:00 +0000
4892+++ po/merge-hints-po-to-other-po.sh 2016-06-27 15:49:40 +0000
4893@@ -0,0 +1,35 @@
4894+#!/bin/bash
4895+REMOTE_DIR=$1
4896+
4897+function usage(){
4898+ echo "$0 REMOTE_PO_DIR"
4899+ echo "Merges current dir of po files with remote dir of po files as follows:"
4900+ echo "For every po file in current directory, if there is a po file in the"
4901+ echo "remote director, the two are mereged. If there is no po file for the"
4902+ echo "same language in the remote directory, the po file from here is copied"
4903+ echo "there."
4904+ echo ""
4905+ echo "After running this, you need to update the pot file in the remote"
4906+ echo "directory and then update the po files from it."
4907+ exit 1
4908+}
4909+
4910+[ -z $REMOTE_DIR ] && usage
4911+
4912+pos=$(ls *po)
4913+
4914+for po in $pos; do
4915+ lang=$(echo $po | cut -f 1 -d \.)
4916+ mergedpo="merged.${lang}.po"
4917+ rpo=${REMOTE_DIR}/${po}
4918+
4919+ rm -f $mergedpo
4920+
4921+ if [ ! -e $rpo ]; then
4922+ cp $po $rpo
4923+ continue
4924+ fi
4925+
4926+ msgcat --less-than 2 -o $mergedpo $po $rpo
4927+ mv $mergedpo $rpo
4928+done;
4929
4930=== modified file 'po/nl.po'
4931--- po/nl.po 2015-07-20 23:53:41 +0000
4932+++ po/nl.po 2016-06-27 15:49:40 +0000
4933@@ -3,13 +3,17 @@
4934 # This file is distributed under the same license as the PACKAGE package.
4935 # Automatically generated, 2014.
4936 #
4937+#. #-#-#-#-# hints.json.pot (PACKAGE VERSION) #-#-#-#-#
4938+#. extracted from i18n.json
4939+#. #-#-#-#-# aggregator.pot.in.pot (PACKAGE VERSION) #-#-#-#-#
4940 #. #-#-#-#-# translatables.json.pot (PACKAGE VERSION) #-#-#-#-#
4941-#. extracted from ../data/translatables.json
4942+#. extracted from i18n.json
4943+#, fuzzy
4944 msgid ""
4945 msgstr ""
4946 "Project-Id-Version: photos\n"
4947 "Report-Msgid-Bugs-To: \n"
4948-"POT-Creation-Date: 2015-07-20 17:12-0400\n"
4949+"POT-Creation-Date: 2016-06-14 15:38+0800\n"
4950 "PO-Revision-Date: 2014-08-26 13:00-0400\n"
4951 "Last-Translator: Automatically generated\n"
4952 "Language-Team: none\n"
4953@@ -17,9 +21,90 @@
4954 "MIME-Version: 1.0\n"
4955 "Content-Type: text/plain; charset=UTF-8\n"
4956 "Content-Transfer-Encoding: 8bit\n"
4957-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
4958-
4959-#: ._no_net_msg
4960+"#-#-#-#-# nl.po (photos) #-#-#-#-#\n"
4961+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
4962+"#-#-#-#-# orig_nl.po (photos) #-#-#-#-#\n"
4963+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
4964+
4965+#: ._name8 ._name4
4966+msgid "Add account"
4967+msgstr "Account toevoegen"
4968+
4969+#: ._title7
4970+msgid "See your events and more from Google."
4971+msgstr "Uw gebeurtenissen en meer van Google bekijken."
4972+
4973+#: ._title5
4974+msgid "<b> Review your Google sync settings</b>"
4975+msgstr "<b> Uw Google-synchronisatie-instellingen bekijken</b>"
4976+
4977+#: ._title3
4978+msgid "Welcome to the Today scope"
4979+msgstr "Welkom bij de Vandaag-taken"
4980+
4981+#: ._title1
4982+msgid "Manage your day with all the essentials."
4983+msgstr "Beheer uw dag met alle essentiële punten."
4984+
4985+#: ._subtitle2
4986+msgid "Tap here for more information."
4987+msgstr "Tik hier voor meer informatie."
4988+
4989+#: ._title9
4990+msgid "<b> Add your account</b>"
4991+msgstr "<b> Uw account toevoegen</b>"
4992+
4993+#: ._loggedin11
4994+msgid "Get started."
4995+msgstr "Aan de slag."
4996+
4997+#: ._title10
4998+msgid "Track your activity with Fitbit."
4999+msgstr "Uw activiteit volgen met Fitbit."
5000+
The diff has been truncated for viewing.

Subscribers

People subscribed via source and target branches