Merge lp:~saviq/unity/8.i18n-updates into lp:unity/8.0

Proposed by Michał Sawicz
Status: Merged
Approved by: Ying-Chun Liu
Approved revision: no longer in the source branch.
Merged at revision: 6
Proposed branch: lp:~saviq/unity/8.i18n-updates
Merge into: lp:unity/8.0
Diff against target: 614 lines (+299/-45)
9 files modified
Applications/applications.js (+17/-17)
Dash/DashMusic.qml (+8/-1)
Dash/DashPeople.qml (+8/-1)
Dash/DashVideos.qml (+8/-1)
Dash/Video/VideoPreview.qml (+3/-3)
Panel/SearchIndicator.qml (+1/-1)
po/pl.po (+129/-12)
po/unity8.pot (+124/-8)
po/update-unity-pot (+1/-1)
To merge this branch: bzr merge lp:~saviq/unity/8.i18n-updates
Reviewer Review Type Date Requested Status
Ying-Chun Liu (community) Approve
PS Jenkins bot (community) continuous-integration Approve
Review via email: mp+168242@code.launchpad.net

Commit message

Add some new and temporary translations.

Description of the change

Some of these are strings that should ultimately come pre-translated from the backends, but for the sake of UI completion let's have them here for now.

To post a comment you must log in.
Revision history for this message
PS Jenkins bot (ps-jenkins) wrote :
review: Needs Fixing (continuous-integration)
Revision history for this message
PS Jenkins bot (ps-jenkins) wrote :
review: Approve (continuous-integration)
Revision history for this message
Ying-Chun Liu (paulliu) wrote :

+1

review: Approve

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
=== modified file 'Applications/applications.js'
--- Applications/applications.js 2013-06-05 22:03:08 +0000
+++ Applications/applications.js 2013-06-08 13:49:25 +0000
@@ -20,95 +20,95 @@
2020
21var __availableApplications = {21var __availableApplications = {
22 '/usr/share/applications/phone-app.desktop': {22 '/usr/share/applications/phone-app.desktop': {
23 'name': 'Phone',23 'name': i18n.tr("Phone"),
24 'icon': 'phone-app',24 'icon': 'phone-app',
25 'exec': '/usr/bin/phone-app',25 'exec': '/usr/bin/phone-app',
26 'stage': SideStage26 'stage': SideStage
27 },27 },
28 '/usr/share/applications/camera-app.desktop': {28 '/usr/share/applications/camera-app.desktop': {
29 'name': 'Camera',29 'name': i18n.tr("Camera"),
30 'icon': 'camera',30 'icon': 'camera',
31 'fullscreen': true,31 'fullscreen': true,
32 'exec': '/usr/bin/camera-app --fullscreen'32 'exec': '/usr/bin/camera-app --fullscreen'
33 },33 },
34 '/usr/share/applications/gallery-app.desktop': {34 '/usr/share/applications/gallery-app.desktop': {
35 'name': 'Gallery',35 'name': i18n.tr("Gallery"),
36 'icon': 'gallery',36 'icon': 'gallery',
37 'exec': '/usr/bin/gallery-app'37 'exec': '/usr/bin/gallery-app'
38 },38 },
39 '/usr/share/applications/facebook-webapp.desktop': {39 '/usr/share/applications/facebook-webapp.desktop': {
40 'name': 'Facebook',40 'name': i18n.tr("Facebook"),
41 'icon': 'facebook',41 'icon': 'facebook',
42 'exec': '/usr/bin/webbrowser-app --chromeless http://m.facebook.com',42 'exec': '/usr/bin/webbrowser-app --chromeless http://m.facebook.com',
43 'stage': SideStage43 'stage': SideStage
44 },44 },
45 '/usr/share/applications/webbrowser-app.desktop': {45 '/usr/share/applications/webbrowser-app.desktop': {
46 'name': 'Browser',46 'name': i18n.tr("Browser"),
47 'icon': 'browser',47 'icon': 'browser',
48 'exec': '/usr/bin/webbrowser-app'48 'exec': '/usr/bin/webbrowser-app'
49 },49 },
50 '/usr/share/applications/twitter-webapp.desktop': {50 '/usr/share/applications/twitter-webapp.desktop': {
51 'name': 'Twitter',51 'name': i18n.tr("Twitter"),
52 'icon': 'twitter',52 'icon': 'twitter',
53 'exec': '/usr/bin/webbrowser-app --chromeless http://www.twitter.com',53 'exec': '/usr/bin/webbrowser-app --chromeless http://www.twitter.com',
54 'stage': SideStage54 'stage': SideStage
55 },55 },
56 '/usr/share/applications/gmail-webapp.desktop': {56 '/usr/share/applications/gmail-webapp.desktop': {
57 'name': 'GMail',57 'name': i18n.tr("GMail"),
58 'icon': 'gmail',58 'icon': 'gmail',
59 'exec': '/usr/bin/webbrowser-app --chromeless http://m.gmail.com'59 'exec': '/usr/bin/webbrowser-app --chromeless http://m.gmail.com'
60 },60 },
61 '/usr/share/applications/ubuntu-weather-app.desktop': {61 '/usr/share/applications/ubuntu-weather-app.desktop': {
62 'name': 'Weather',62 'name': i18n.tr("Weather"),
63 'icon': 'weather',63 'icon': 'weather',
64 'exec': '/usr/bin/qmlscene /usr/share/ubuntu-weather-app/ubuntu-weather-app.qml',64 'exec': '/usr/bin/qmlscene /usr/share/ubuntu-weather-app/ubuntu-weather-app.qml',
65 'stage': SideStage65 'stage': SideStage
66 },66 },
67 '/usr/share/applications/notes-app.desktop': {67 '/usr/share/applications/notes-app.desktop': {
68 'name': 'Notepad',68 'name': i18n.tr("Notepad"),
69 'icon': 'notepad',69 'icon': 'notepad',
70 'exec': '/usr/bin/qmlscene /usr/share/notes-app/NotesApp.qml',70 'exec': '/usr/bin/qmlscene /usr/share/notes-app/NotesApp.qml',
71 'stage': SideStage71 'stage': SideStage
72 },72 },
73 '/usr/share/applications/ubuntu-calendar-app.desktop': {73 '/usr/share/applications/ubuntu-calendar-app.desktop': {
74 'name': 'Calendar',74 'name': i18n.tr("Calendar"),
75 'icon': 'calendar',75 'icon': 'calendar',
76 'exec': '/usr/bin/qmlscene /usr/share/ubuntu-calendar-app/calendar.qml',76 'exec': '/usr/bin/qmlscene /usr/share/ubuntu-calendar-app/calendar.qml',
77 'stage': SideStage77 'stage': SideStage
78 },78 },
79 '/usr/share/applications/mediaplayer-app.desktop': {79 '/usr/share/applications/mediaplayer-app.desktop': {
80 'name': 'Media Player',80 'name': i18n.tr("Media Player"),
81 'icon': 'mediaplayer-app',81 'icon': 'mediaplayer-app',
82 'fullscreen': true,82 'fullscreen': true,
83 'exec': '/usr/bin/mediaplayer-app'83 'exec': '/usr/bin/mediaplayer-app'
84 },84 },
85 '/usr/share/applications/evernote.desktop': {85 '/usr/share/applications/evernote.desktop': {
86 'name': 'Evernote',86 'name': i18n.tr("Evernote"),
87 'icon': 'evernote',87 'icon': 'evernote',
88 'exec': ''88 'exec': ''
89 },89 },
90 '/usr/share/applications/map.desktop': {90 '/usr/share/applications/map.desktop': {
91 'name': 'Map',91 'name': i18n.tr("Map"),
92 'icon': 'map',92 'icon': 'map',
93 'exec': ''93 'exec': ''
94 },94 },
95 '/usr/share/applications/pinterest.desktop': {95 '/usr/share/applications/pinterest.desktop': {
96 'name': 'Pinterest',96 'name': i18n.tr("Pinterest"),
97 'icon': 'pinterest',97 'icon': 'pinterest',
98 'exec': ''98 'exec': ''
99 },99 },
100 '/usr/share/applications/soundcloud.desktop': {100 '/usr/share/applications/soundcloud.desktop': {
101 'name': 'SoundCloud',101 'name': i18n.tr("SoundCloud"),
102 'icon': 'soundcloud',102 'icon': 'soundcloud',
103 'exec': ''103 'exec': ''
104 },104 },
105 '/usr/share/applications/wikipedia.desktop': {105 '/usr/share/applications/wikipedia.desktop': {
106 'name': 'Wikipedia',106 'name': i18n.tr("Wikipedia"),
107 'icon': 'wikipedia',107 'icon': 'wikipedia',
108 'exec': ''108 'exec': ''
109 },109 },
110 '/usr/share/applications/youtube.desktop': {110 '/usr/share/applications/youtube.desktop': {
111 'name': 'YouTube',111 'name': i18n.tr("YouTube"),
112 'icon': 'youtube',112 'icon': 'youtube',
113 'exec': ''113 'exec': ''
114 },114 },
115115
=== modified file 'Dash/DashMusic.qml'
--- Dash/DashMusic.qml 2013-06-05 22:03:08 +0000
+++ Dash/DashMusic.qml 2013-06-08 13:49:25 +0000
@@ -23,6 +23,13 @@
23LensView {23LensView {
24 id: lensView24 id: lensView
2525
26 property var categoryNames: [
27 i18n.tr("Featured"),
28 i18n.tr("Recent"),
29 i18n.tr("New Releases"),
30 i18n.tr("Top Charting")
31 ]
32
26 onIsCurrentChanged: {33 onIsCurrentChanged: {
27 pageHeader.resetSearch();34 pageHeader.resetSearch();
28 }35 }
@@ -84,7 +91,7 @@
84 sectionProperty: "name"91 sectionProperty: "name"
85 sectionDelegate: ListItems.Header {92 sectionDelegate: ListItems.Header {
86 width: categoryView.width93 width: categoryView.width
87 text: section94 text: i18n.tr(section)
88 }95 }
89 pageHeader: PageHeader {96 pageHeader: PageHeader {
90 id: pageHeader97 id: pageHeader
9198
=== modified file 'Dash/DashPeople.qml'
--- Dash/DashPeople.qml 2013-06-05 22:03:08 +0000
+++ Dash/DashPeople.qml 2013-06-08 13:49:25 +0000
@@ -27,6 +27,13 @@
27 id: lensView27 id: lensView
28 property alias previewShown: previewLoader.onScreen28 property alias previewShown: previewLoader.onScreen
2929
30 property var categoryNames: [
31 i18n.tr("Favourites"),
32 i18n.tr("Recently in touch"),
33 i18n.tr("New Contacts"),
34 i18n.tr("A-Z")
35 ]
36
30 onIsCurrentChanged: {37 onIsCurrentChanged: {
31 pageHeader.resetSearch();38 pageHeader.resetSearch();
32 }39 }
@@ -108,7 +115,7 @@
108 sectionProperty: "name"115 sectionProperty: "name"
109 sectionDelegate: ListItems.Header {116 sectionDelegate: ListItems.Header {
110 width: categoryView.width117 width: categoryView.width
111 text: section118 text: i18n.tr(section)
112 }119 }
113 pageHeader: PageHeader {120 pageHeader: PageHeader {
114 id: pageHeader121 id: pageHeader
115122
=== modified file 'Dash/DashVideos.qml'
--- Dash/DashVideos.qml 2013-06-05 22:03:08 +0000
+++ Dash/DashVideos.qml 2013-06-08 13:49:25 +0000
@@ -24,6 +24,13 @@
24 id: lensView24 id: lensView
25 property alias previewShown: previewLoader.onScreen25 property alias previewShown: previewLoader.onScreen
2626
27 property var categoryNames: [
28 i18n.tr("Featured"),
29 i18n.tr("Recent"),
30 i18n.tr("New Releases"),
31 i18n.tr("Popular Online")
32 ]
33
27 onIsCurrentChanged: {34 onIsCurrentChanged: {
28 pageHeader.resetSearch();35 pageHeader.resetSearch();
29 }36 }
@@ -139,7 +146,7 @@
139 sectionProperty: "name"146 sectionProperty: "name"
140 sectionDelegate: ListItems.Header {147 sectionDelegate: ListItems.Header {
141 width: categoryView.width148 width: categoryView.width
142 text: section149 text: i18n.tr(section)
143 }150 }
144151
145 pageHeader: PageHeader {152 pageHeader: PageHeader {
146153
=== modified file 'Dash/Video/VideoPreview.qml'
--- Dash/Video/VideoPreview.qml 2013-06-05 22:03:08 +0000
+++ Dash/Video/VideoPreview.qml 2013-06-08 13:49:25 +0000
@@ -95,7 +95,7 @@
95 color: "white"95 color: "white"
96 horizontalAlignment: Text.AlignRight96 horizontalAlignment: Text.AlignRight
97 width: parent.firstColWidth97 width: parent.firstColWidth
98 text: "Directed by:"98 text: i18n.tr("Directed by:")
99 style: Text.Raised99 style: Text.Raised
100 styleColor: "black"100 styleColor: "black"
101 }101 }
@@ -118,7 +118,7 @@
118 horizontalAlignment: Text.AlignRight118 horizontalAlignment: Text.AlignRight
119 color: "white"119 color: "white"
120 width: parent.firstColWidth120 width: parent.firstColWidth
121 text: "Starring:"121 text: i18n.tr("Starring:")
122 style: Text.Raised122 style: Text.Raised
123 styleColor: "black"123 styleColor: "black"
124 }124 }
@@ -141,7 +141,7 @@
141 horizontalAlignment: Text.AlignRight141 horizontalAlignment: Text.AlignRight
142 color: "white"142 color: "white"
143 width: parent.firstColWidth143 width: parent.firstColWidth
144 text: "Author:"144 text: i18n.tr("Author:")
145 style: Text.Raised145 style: Text.Raised
146 styleColor: "black"146 styleColor: "black"
147 }147 }
148148
=== modified file 'Panel/SearchIndicator.qml'
--- Panel/SearchIndicator.qml 2013-06-05 22:03:08 +0000
+++ Panel/SearchIndicator.qml 2013-06-08 13:49:25 +0000
@@ -23,7 +23,7 @@
23 width: units.gu(9)23 width: units.gu(9)
24 height: units.gu(3)24 height: units.gu(3)
2525
26 property string headerText: "Search"26 property string headerText: i18n.tr("Search")
2727
28 signal clicked28 signal clicked
2929
3030
=== modified file 'po/pl.po'
--- po/pl.po 2013-06-06 06:30:35 +0000
+++ po/pl.po 2013-06-08 13:49:25 +0000
@@ -6,16 +6,85 @@
6msgid ""6msgid ""
7msgstr ""7msgstr ""
8"Project-Id-Version: unity\n"8"Project-Id-Version: unity\n"
9"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"9"Report-Msgid-Bugs-To: \n"
10"POT-Creation-Date: 2013-05-30 21:08+0800\n"10"POT-Creation-Date: 2013-06-08 14:40+0200\n"
11"PO-Revision-Date: 2013-06-05 22:43+0000\n"11"PO-Revision-Date: 2013-06-08 14:43+0100\n"
12"Last-Translator: Piotr Merski <Unknown>\n"12"Last-Translator: Michał Sawicz <michal.sawicz@canonical.com>\n"
13"Language-Team: Polish <pl@li.org>\n"13"Language-Team: Polish <pl@li.org>\n"
14"Language: pl\n"
14"MIME-Version: 1.0\n"15"MIME-Version: 1.0\n"
15"Content-Type: text/plain; charset=UTF-8\n"16"Content-Type: text/plain; charset=UTF-8\n"
16"Content-Transfer-Encoding: 8bit\n"17"Content-Transfer-Encoding: 8bit\n"
17"X-Launchpad-Export-Date: 2013-06-06 06:30+0000\n"18"X-Launchpad-Export-Date: 2013-06-06 06:30+0000\n"
18"X-Generator: Launchpad (build 16667)\n"19"X-Generator: Poedit 1.5.4\n"
20
21#: Applications/applications.js:23
22msgid "Phone"
23msgstr "Telefon"
24
25#: Applications/applications.js:29
26msgid "Camera"
27msgstr "Aparat"
28
29#: Applications/applications.js:35
30msgid "Gallery"
31msgstr "Galeria"
32
33#: Applications/applications.js:40
34msgid "Facebook"
35msgstr "Facebook"
36
37#: Applications/applications.js:46
38msgid "Browser"
39msgstr "Internet"
40
41#: Applications/applications.js:51
42msgid "Twitter"
43msgstr "Twitter"
44
45#: Applications/applications.js:57
46msgid "GMail"
47msgstr "GMail"
48
49#: Applications/applications.js:62
50msgid "Weather"
51msgstr "Pogoda"
52
53#: Applications/applications.js:68
54msgid "Notepad"
55msgstr "Notatki"
56
57#: Applications/applications.js:74
58msgid "Calendar"
59msgstr "Kalendarz"
60
61#: Applications/applications.js:80
62msgid "Media Player"
63msgstr "Odtwarzacz mediów"
64
65#: Applications/applications.js:86
66msgid "Evernote"
67msgstr "Evernote"
68
69#: Applications/applications.js:91
70msgid "Map"
71msgstr "Mapa"
72
73#: Applications/applications.js:96
74msgid "Pinterest"
75msgstr "Pinterest"
76
77#: Applications/applications.js:101
78msgid "SoundCloud"
79msgstr "SoundCloud"
80
81#: Applications/applications.js:106
82msgid "Wikipedia"
83msgstr "Wikipedia"
84
85#: Applications/applications.js:111
86msgid "YouTube"
87msgstr "YouTube"
1988
20#: Components/PageHeader.qml:30089#: Components/PageHeader.qml:300
21msgid "Recent searches"90msgid "Recent searches"
@@ -65,18 +134,66 @@
65msgid "Home"134msgid "Home"
66msgstr "Dom"135msgstr "Dom"
67136
68#: Dash/DashMusic.qml:92137#: Dash/DashMusic.qml:27 Dash/DashVideos.qml:28
138msgid "Featured"
139msgstr "Polecane"
140
141#: Dash/DashMusic.qml:28 Dash/DashVideos.qml:29
142msgid "Recent"
143msgstr "Najnowsze"
144
145#: Dash/DashMusic.qml:29 Dash/DashVideos.qml:30
146msgid "New Releases"
147msgstr "Nowości"
148
149#: Dash/DashMusic.qml:30
150msgid "Top Charting"
151msgstr "Przeboje"
152
153#: Dash/DashMusic.qml:99
69msgid "Music"154msgid "Music"
70msgstr "Muzyka"155msgstr "Muzyka"
71156
72#: Dash/DashPeople.qml:116157#: Dash/DashPeople.qml:31
158msgid "Favourites"
159msgstr "Ulubione"
160
161#: Dash/DashPeople.qml:32
162msgid "Recently in touch"
163msgstr "Ostatnio w kontakcie"
164
165#: Dash/DashPeople.qml:33
166msgid "New Contacts"
167msgstr "Nowe kontakty"
168
169#: Dash/DashPeople.qml:34
170msgid "A-Z"
171msgstr "A-Z"
172
173#: Dash/DashPeople.qml:123
73msgid "People"174msgid "People"
74msgstr "Ludzie"175msgstr "Ludzie"
75176
76#: Dash/DashVideos.qml:148177#: Dash/DashVideos.qml:31
178msgid "Popular Online"
179msgstr "Popularne online"
180
181#: Dash/DashVideos.qml:155
77msgid "Videos"182msgid "Videos"
78msgstr "Filmy"183msgstr "Filmy"
79184
185#: Dash/Video/VideoPreview.qml:98
186msgid "Directed by:"
187msgstr "Reżyseria:"
188
189#: Dash/Video/VideoPreview.qml:121
190msgid "Starring:"
191msgstr "Obsada:"
192
193#: Dash/Video/VideoPreview.qml:144
194msgid "Author:"
195msgstr "Autor:"
196
80#: Hud/HudParametrizedActionsPage.qml:132197#: Hud/HudParametrizedActionsPage.qml:132
81msgid "Confirm"198msgid "Confirm"
82msgstr "Potwierdź"199msgstr "Potwierdź"
@@ -105,6 +222,10 @@
105msgid "Flight mode"222msgid "Flight mode"
106msgstr "Tryb samolotowy"223msgstr "Tryb samolotowy"
107224
225#: Panel/SearchIndicator.qml:26 plugins/Unity/lenses.cpp:40
226msgid "Search"
227msgstr "Szukaj"
228
108#: plugins/Unity/lens.cpp:333229#: plugins/Unity/lens.cpp:333
109msgid "Sorry, there is nothing that matches your search."230msgid "Sorry, there is nothing that matches your search."
110msgstr "Nie znaleziono pasujących wyników."231msgstr "Nie znaleziono pasujących wyników."
@@ -112,7 +233,3 @@
112#: plugins/Unity/lenses.cpp:39233#: plugins/Unity/lenses.cpp:39
113msgid "Home screen"234msgid "Home screen"
114msgstr "Ekran domowy"235msgstr "Ekran domowy"
115
116#: plugins/Unity/lenses.cpp:40
117msgid "Search"
118msgstr "Szukaj"
119236
=== modified file 'po/unity8.pot'
--- po/unity8.pot 2013-06-05 22:03:08 +0000
+++ po/unity8.pot 2013-06-08 13:49:25 +0000
@@ -8,7 +8,7 @@
8msgstr ""8msgstr ""
9"Project-Id-Version: unity8\n"9"Project-Id-Version: unity8\n"
10"Report-Msgid-Bugs-To: \n"10"Report-Msgid-Bugs-To: \n"
11"POT-Creation-Date: 2013-05-30 21:08+0800\n"11"POT-Creation-Date: 2013-06-08 14:40+0200\n"
12"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"12"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
13"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"13"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
14"Language-Team: LANGUAGE <LL@li.org>\n"14"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -17,6 +17,74 @@
17"Content-Type: text/plain; charset=CHARSET\n"17"Content-Type: text/plain; charset=CHARSET\n"
18"Content-Transfer-Encoding: 8bit\n"18"Content-Transfer-Encoding: 8bit\n"
1919
20#: Applications/applications.js:23
21msgid "Phone"
22msgstr ""
23
24#: Applications/applications.js:29
25msgid "Camera"
26msgstr ""
27
28#: Applications/applications.js:35
29msgid "Gallery"
30msgstr ""
31
32#: Applications/applications.js:40
33msgid "Facebook"
34msgstr ""
35
36#: Applications/applications.js:46
37msgid "Browser"
38msgstr ""
39
40#: Applications/applications.js:51
41msgid "Twitter"
42msgstr ""
43
44#: Applications/applications.js:57
45msgid "GMail"
46msgstr ""
47
48#: Applications/applications.js:62
49msgid "Weather"
50msgstr ""
51
52#: Applications/applications.js:68
53msgid "Notepad"
54msgstr ""
55
56#: Applications/applications.js:74
57msgid "Calendar"
58msgstr ""
59
60#: Applications/applications.js:80
61msgid "Media Player"
62msgstr ""
63
64#: Applications/applications.js:86
65msgid "Evernote"
66msgstr ""
67
68#: Applications/applications.js:91
69msgid "Map"
70msgstr ""
71
72#: Applications/applications.js:96
73msgid "Pinterest"
74msgstr ""
75
76#: Applications/applications.js:101
77msgid "SoundCloud"
78msgstr ""
79
80#: Applications/applications.js:106
81msgid "Wikipedia"
82msgstr ""
83
84#: Applications/applications.js:111
85msgid "YouTube"
86msgstr ""
87
20#: Components/PageHeader.qml:30088#: Components/PageHeader.qml:300
21msgid "Recent searches"89msgid "Recent searches"
22msgstr ""90msgstr ""
@@ -65,18 +133,66 @@
65msgid "Home"133msgid "Home"
66msgstr ""134msgstr ""
67135
68#: Dash/DashMusic.qml:92136#: Dash/DashMusic.qml:27 Dash/DashVideos.qml:28
137msgid "Featured"
138msgstr ""
139
140#: Dash/DashMusic.qml:28 Dash/DashVideos.qml:29
141msgid "Recent"
142msgstr ""
143
144#: Dash/DashMusic.qml:29 Dash/DashVideos.qml:30
145msgid "New Releases"
146msgstr ""
147
148#: Dash/DashMusic.qml:30
149msgid "Top Charting"
150msgstr ""
151
152#: Dash/DashMusic.qml:99
69msgid "Music"153msgid "Music"
70msgstr ""154msgstr ""
71155
72#: Dash/DashPeople.qml:116156#: Dash/DashPeople.qml:31
157msgid "Favourites"
158msgstr ""
159
160#: Dash/DashPeople.qml:32
161msgid "Recently in touch"
162msgstr ""
163
164#: Dash/DashPeople.qml:33
165msgid "New Contacts"
166msgstr ""
167
168#: Dash/DashPeople.qml:34
169msgid "A-Z"
170msgstr ""
171
172#: Dash/DashPeople.qml:123
73msgid "People"173msgid "People"
74msgstr ""174msgstr ""
75175
76#: Dash/DashVideos.qml:148176#: Dash/DashVideos.qml:31
177msgid "Popular Online"
178msgstr ""
179
180#: Dash/DashVideos.qml:155
77msgid "Videos"181msgid "Videos"
78msgstr ""182msgstr ""
79183
184#: Dash/Video/VideoPreview.qml:98
185msgid "Directed by:"
186msgstr ""
187
188#: Dash/Video/VideoPreview.qml:121
189msgid "Starring:"
190msgstr ""
191
192#: Dash/Video/VideoPreview.qml:144
193msgid "Author:"
194msgstr ""
195
80#: Hud/HudParametrizedActionsPage.qml:132196#: Hud/HudParametrizedActionsPage.qml:132
81msgid "Confirm"197msgid "Confirm"
82msgstr ""198msgstr ""
@@ -105,6 +221,10 @@
105msgid "Flight mode"221msgid "Flight mode"
106msgstr ""222msgstr ""
107223
224#: Panel/SearchIndicator.qml:26 plugins/Unity/lenses.cpp:40
225msgid "Search"
226msgstr ""
227
108#: plugins/Unity/lens.cpp:333228#: plugins/Unity/lens.cpp:333
109msgid "Sorry, there is nothing that matches your search."229msgid "Sorry, there is nothing that matches your search."
110msgstr ""230msgstr ""
@@ -112,7 +232,3 @@
112#: plugins/Unity/lenses.cpp:39232#: plugins/Unity/lenses.cpp:39
113msgid "Home screen"233msgid "Home screen"
114msgstr ""234msgstr ""
115
116#: plugins/Unity/lenses.cpp:40
117msgid "Search"
118msgstr ""
119235
=== modified file 'po/update-unity-pot'
--- po/update-unity-pot 2013-06-05 22:03:08 +0000
+++ po/update-unity-pot 2013-06-08 13:49:25 +0000
@@ -9,7 +9,7 @@
9GETTEXT_FILES=$(mktemp --tmpdir uitk-unity.lst.XXXXX)9GETTEXT_FILES=$(mktemp --tmpdir uitk-unity.lst.XXXXX)
10trap 'rm -f "$GETTEXT_FILES"' EXIT10trap 'rm -f "$GETTEXT_FILES"' EXIT
11cd ..11cd ..
12find \( -name '*.h' -o -name '*.cpp' -o -name '*.qml' \) \12find \( -name '*.h' -o -name '*.cpp' -o -name '*.qml' -o -name '*.js' \) \
13 -a ! \( -path './debian/*' -o -path './builddir/*' -o -path './build/*' -o -path './.bzr/*' \) | sort \13 -a ! \( -path './debian/*' -o -path './builddir/*' -o -path './build/*' -o -path './.bzr/*' \) | sort \
14> $GETTEXT_FILES14> $GETTEXT_FILES
1515

Subscribers

People subscribed via source and target branches

to all changes: