Merge lp:~cibersheep/podbird/podbird into lp:podbird

Proposed by Joan CiberSheep
Status: Merged
Merged at revision: 194
Proposed branch: lp:~cibersheep/podbird/podbird
Merge into: lp:podbird
Diff against target: 1097 lines (+240/-41)
10 files modified
app/components/Walkthrough.qml (+5/-6)
app/podbird.qml (+11/-4)
app/themes/Dark.qml (+1/-1)
app/themes/Light.qml (+1/-1)
app/ui/EpisodesPage.qml (+0/-1)
app/welcomewizard/Slide1.qml (+21/-11)
app/welcomewizard/Slide7.qml (+2/-3)
clickable.json (+2/-1)
manifest.json.in (+2/-2)
po/com.mikeasoft.podbird.pot (+195/-11)
To merge this branch: bzr merge lp:~cibersheep/podbird/podbird
Reviewer Review Type Date Requested Status
Michael Sheldon Approve
Review via email: mp+374356@code.launchpad.net

Commit message

Tweaked Colors

Description of the change

I have:
- tweaked some colors of the app to match current style
- tweaked welcome walkthrough
  - Cropped text in Catalan in some titles
  - changed green to turquoise (more according to app look)
  - changed Finish button size (matches current style, added max width for tablets)

To post a comment you must log in.
Revision history for this message
Joan CiberSheep (cibersheep) wrote :
Revision history for this message
Michael Sheldon (michael-sheldon) wrote :

Looks good overall, one small thing to look at (commented inline)

Thanks!

review: Needs Fixing
Revision history for this message
Joan CiberSheep (cibersheep) wrote :

> Looks good overall, one small thing to look at (commented inline)
>
> Thanks!

You are absolutely right. Sorry. I'll clean it up

lp:~cibersheep/podbird/podbird updated
195. By Joan CiberSheep

Removed commented property

Revision history for this message
Michael Sheldon (michael-sheldon) wrote :

Great, thanks; approved :)

review: Approve

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
=== modified file 'app/components/Walkthrough.qml'
--- app/components/Walkthrough.qml 2016-02-25 11:09:44 +0000
+++ app/components/Walkthrough.qml 2019-12-22 14:23:11 +0000
@@ -32,13 +32,13 @@
32 property list<Component> model32 property list<Component> model
3333
34 // Property to set the color of bottom cirle to indicate the user's progress34 // Property to set the color of bottom cirle to indicate the user's progress
35 property color completeColor: "green"35 property color completeColor: "#299ABF"
3636
37 // Property to set the color of the bottom circle to indicate the slide still left to cover37 // Property to set the color of the bottom circle to indicate the slide still left to cover
38 property color inCompleteColor: "lightgrey"38 property color inCompleteColor: theme.palette.normal.base
3939
40 // Property to set the color of the skip welcome wizard text40 // Property to set the color of the skip welcome wizard text
41 property color skipTextColor: "grey"41 property color skipTextColor: theme.palette.normal.baseText
4242
43 // Property to signal walkthrough completion43 // Property to signal walkthrough completion
44 signal finished44 signal finished
@@ -145,7 +145,7 @@
145 right: parent.right145 right: parent.right
146 }146 }
147147
148 iconName: "chevron"148 iconName: "go-next"
149 visible: enabled149 visible: enabled
150 enabled: listView.currentIndex !== listView.count-1150 enabled: listView.currentIndex !== listView.count-1
151 onClicked: listView.currentIndex++151 onClicked: listView.currentIndex++
@@ -162,8 +162,7 @@
162 left: parent.left162 left: parent.left
163 }163 }
164164
165 iconName: "chevron"165 iconName: "go-previous"
166 rotation: 180
167 visible: enabled166 visible: enabled
168 enabled: listView.currentIndex !== 0167 enabled: listView.currentIndex !== 0
169 onClicked: listView.currentIndex--168 onClicked: listView.currentIndex--
170169
=== modified file 'app/podbird.qml'
--- app/podbird.qml 2017-01-03 00:02:16 +0000
+++ app/podbird.qml 2019-12-22 14:23:11 +0000
@@ -16,9 +16,9 @@
16 * along with this program. If not, see <http://www.gnu.org/licenses/>.16 * along with this program. If not, see <http://www.gnu.org/licenses/>.
17 */17 */
1818
19import QtQuick 2.419import QtQuick 2.9
20import Podbird 1.020import Podbird 1.0
21import QtMultimedia 5.621import QtMultimedia 5.9
22import Ubuntu.Connectivity 1.022import Ubuntu.Connectivity 1.0
23import Qt.labs.settings 1.023import Qt.labs.settings 1.0
24import Ubuntu.Components 1.324import Ubuntu.Components 1.3
@@ -221,7 +221,7 @@
221 }221 }
222 }222 }
223223
224 // This reduces incidences of media-hub getting confused and 224 // This reduces incidences of media-hub getting confused and
225 // continuing to play the previous file when clearing a playlist225 // continuing to play the previous file when clearing a playlist
226 // and starting a new episode226 // and starting a new episode
227 Timer {227 Timer {
@@ -239,6 +239,8 @@
239 MediaPlayer {239 MediaPlayer {
240 id: player240 id: player
241241
242 onPositionChanged: console.log("DEBUG: player position changed to: ", position)
243
242 // Wrapper function around decodeURIComponent() to prevent exceptions244 // Wrapper function around decodeURIComponent() to prevent exceptions
243 // from bubbling up to the app.245 // from bubbling up to the app.
244 function decodeFileURI(filename)246 function decodeFileURI(filename)
@@ -317,7 +319,7 @@
317 // Add episode to queue319 // Add episode to queue
318 Podcasts.addItemToQueue(guid, image, name, artist, url, position)320 Podcasts.addItemToQueue(guid, image, name, artist, url, position)
319 player.playlist.addItem(url)321 player.playlist.addItem(url)
320 322
321 // Play episode323 // Play episode
322 pendingSeek = position324 pendingSeek = position
323 playStarter.restart()325 playStarter.restart()
@@ -358,10 +360,12 @@
358 currentImage = meta.image360 currentImage = meta.image
359 currentGuid = meta.guid361 currentGuid = meta.guid
360 player.pendingSeek = meta.position362 player.pendingSeek = meta.position
363 console.log("DEBUG: player.pendingSeek: ", player.pendingSeek, " meta.position ", meta.position)
361 }364 }
362 }365 }
363366
364 onPlaybackStateChanged: {367 onPlaybackStateChanged: {
368 console.log("DEBUG: Restoring Position to: ", player.position)
365 restorePosition()369 restorePosition()
366 }370 }
367371
@@ -371,6 +375,9 @@
371 endOfMedia = true375 endOfMedia = true
372 stop()376 stop()
373 }377 }
378
379 player.playbackRate = 3.0
380 console.log("playBackRate is ", playbackRate)
374 }381 }
375382
376 onStopped: {383 onStopped: {
377384
=== modified file 'app/themes/Dark.qml'
--- app/themes/Dark.qml 2016-03-28 22:41:53 +0000
+++ app/themes/Dark.qml 2019-12-22 14:23:11 +0000
@@ -26,7 +26,7 @@
26 // Main Text Colors26 // Main Text Colors
27 property color baseText: "White"27 property color baseText: "White"
28 property color baseSubText: "#999999"28 property color baseSubText: "#999999"
29 property color focusText: "#35AF44"29 property color focusText: UbuntuColors.blue
30 property color linkText: "Cyan"30 property color linkText: "Cyan"
3131
32 // Icon Colors32 // Icon Colors
3333
=== modified file 'app/themes/Light.qml'
--- app/themes/Light.qml 2016-03-28 22:41:53 +0000
+++ app/themes/Light.qml 2019-12-22 14:23:11 +0000
@@ -26,7 +26,7 @@
26 // Main Text Colors26 // Main Text Colors
27 property color baseText: UbuntuColors.darkGrey27 property color baseText: UbuntuColors.darkGrey
28 property color baseSubText: "#999999"28 property color baseSubText: "#999999"
29 property color focusText: "#35AF44"29 property color focusText: UbuntuColors.blue
30 property color linkText: "Blue"30 property color linkText: "Blue"
3131
32 // Icon Colors32 // Icon Colors
3333
=== modified file 'app/ui/EpisodesPage.qml'
--- app/ui/EpisodesPage.qml 2017-01-03 00:02:16 +0000
+++ app/ui/EpisodesPage.qml 2019-12-22 14:23:11 +0000
@@ -721,7 +721,6 @@
721 Scrollbar {721 Scrollbar {
722 flickableItem: episodeList722 flickableItem: episodeList
723 align: Qt.AlignTrailing723 align: Qt.AlignTrailing
724 StyleHints { sliderColor: podbird.appTheme.focusText }
725 }724 }
726 }725 }
727726
728727
=== modified file 'app/welcomewizard/Slide1.qml'
--- app/welcomewizard/Slide1.qml 2016-02-25 10:53:42 +0000
+++ app/welcomewizard/Slide1.qml 2019-12-22 14:23:11 +0000
@@ -41,31 +41,41 @@
41 id: introductionText41 id: introductionText
42 text: i18n.tr("Welcome to Podbird")42 text: i18n.tr("Welcome to Podbird")
43 textSize: Label.XLarge43 textSize: Label.XLarge
44 width: parent.width
44 height: contentHeight45 height: contentHeight
45 anchors.centerIn: parent46 anchors.centerIn: parent
47 wrapMode: Text.WordWrap
48 horizontalAlignment: Text.AlignHCenter
46 }49 }
4750
48 Label {51 Label {
49 id: bodyText52 id: bodyText
50 text: i18n.tr("Enjoy your favourite shows with Podbird, the chirpiest podcast \53 text: i18n.tr("Enjoy your favourite shows with Podbird, the chirpiest podcast \
51manager for Ubuntu.\n\nChirp Chirp...")54manager for Ubuntu.\n\nChirp Chirp...")
52 anchors.left: parent.left55
53 anchors.right: parent.right56 anchors {
54 anchors.margins: units.gu(1)57 left: parent.left
55 anchors.top: introductionText.bottom58 right: parent.right
56 anchors.topMargin: units.gu(4)59 margins: units.gu(1)
57 anchors.bottom: swipeText.top60 top: introductionText.bottom
61 topMargin: units.gu(4)
62 bottom: swipeText.top
63 }
64
58 wrapMode: Text.WordWrap65 wrapMode: Text.WordWrap
59 horizontalAlignment: Text.AlignHCenter66 horizontalAlignment: Text.AlignHCenter
60 }67 }
6168
62 Label {69 Label {
63 id: swipeText70 id: swipeText
64 anchors.left: parent.left71 anchors {
65 anchors.right: parent.right72 left: parent.left
66 anchors.margins: units.gu(1)73 right: parent.right
67 anchors.bottom: parent.bottom74 margins: units.gu(1)
68 color: "grey"75 bottom: parent.bottom
76 }
77
78 color: theme.palette.normal.baseText
69 textSize: Label.Small79 textSize: Label.Small
70 wrapMode: Text.WordWrap80 wrapMode: Text.WordWrap
71 horizontalAlignment: Text.AlignHCenter81 horizontalAlignment: Text.AlignHCenter
7282
=== modified file 'app/welcomewizard/Slide7.qml'
--- app/welcomewizard/Slide7.qml 2016-03-19 13:54:27 +0000
+++ app/welcomewizard/Slide7.qml 2019-12-22 14:23:11 +0000
@@ -70,9 +70,8 @@
70 bottomMargin: units.gu(3)70 bottomMargin: units.gu(3)
71 horizontalCenter: parent.horizontalCenter71 horizontalCenter: parent.horizontalCenter
72 }72 }
73 height: units.gu(6)73 width: Math.min(parent.width/1.3, units.gu(40))
74 width: parent.width/1.374 color: theme.palette.normal.positive
75 color: UbuntuColors.green
76 text: i18n.tr("Finish")75 text: i18n.tr("Finish")
77 onClicked: finished()76 onClicked: finished()
78 }77 }
7978
=== modified file 'clickable.json'
--- clickable.json 2019-03-26 10:17:39 +0000
+++ clickable.json 2019-12-22 14:23:11 +0000
@@ -1,3 +1,4 @@
1{1{
2 "template": "cmake"2 "template": "cmake",
3 "kill": "qmlscene"
3}4}
45
=== modified file 'manifest.json.in'
--- manifest.json.in 2019-03-26 10:46:31 +0000
+++ manifest.json.in 2019-12-22 14:23:11 +0000
@@ -9,7 +9,7 @@
9 "desktop": "Podbird.desktop"9 "desktop": "Podbird.desktop"
10 }10 }
11 },11 },
12 "version": "0.8.2",12 "version": "0.8.3",
13 "maintainer": "Michael Sheldon <mike@mikeasoft.com>",13 "maintainer": "Michael Sheldon <mike@mikeasoft.com>",
14 "framework": "ubuntu-sdk-16.04"14 "framework": "ubuntu-sdk-16.04.2"
15}15}
1616
=== modified file 'po/com.mikeasoft.podbird.pot'
--- po/com.mikeasoft.podbird.pot 2017-01-01 14:39:56 +0000
+++ po/com.mikeasoft.podbird.pot 2019-12-22 14:23:11 +0000
@@ -1,6 +1,6 @@
1# SOME DESCRIPTIVE TITLE.1# SOME DESCRIPTIVE TITLE.
2# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER2# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
3# This file is distributed under the same license as the PACKAGE package.3# This file is distributed under the same license as the package.
4# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.4# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
5#5#
6#, fuzzy6#, fuzzy
@@ -8,7 +8,7 @@
8msgstr ""8msgstr ""
9"Project-Id-Version: \n"9"Project-Id-Version: \n"
10"Report-Msgid-Bugs-To: \n"10"Report-Msgid-Bugs-To: \n"
11"POT-Creation-Date: 2017-01-01 14:37+0000\n"11"POT-Creation-Date: 2019-10-18 15:12+0000\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"
@@ -19,36 +19,48 @@
19"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"19"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
2020
21#: ../app/components/TabsList.qml:28 ../app/ui/EpisodesTab.qml:4821#: ../app/components/TabsList.qml:28 ../app/ui/EpisodesTab.qml:48
22#: ../build/x86_64-linux-gnu/app/install/share/qml/podbird/components/TabsList.qml:28
23#: ../build/x86_64-linux-gnu/app/install/share/qml/podbird/ui/EpisodesTab.qml:48
22msgid "Episodes"24msgid "Episodes"
23msgstr ""25msgstr ""
2426
25#: ../app/components/TabsList.qml:37 ../app/ui/SearchPage.qml:4127#: ../app/components/TabsList.qml:37 ../app/ui/SearchPage.qml:41
28#: ../build/x86_64-linux-gnu/app/install/share/qml/podbird/components/TabsList.qml:37
29#: ../build/x86_64-linux-gnu/app/install/share/qml/podbird/ui/SearchPage.qml:41
26msgid "Add New Podcasts"30msgid "Add New Podcasts"
27msgstr ""31msgstr ""
2832
29#: ../app/components/TabsList.qml:46 ../app/ui/PodcastsTab.qml:4233#: ../app/components/TabsList.qml:46 ../app/ui/PodcastsTab.qml:42
34#: ../build/x86_64-linux-gnu/app/install/share/qml/podbird/components/TabsList.qml:46
35#: ../build/x86_64-linux-gnu/app/install/share/qml/podbird/ui/PodcastsTab.qml:42
30msgid "Podcasts"36msgid "Podcasts"
31msgstr ""37msgstr ""
3238
33#: ../app/components/TabsList.qml:55 ../app/ui/SettingsPage.qml:3439#: ../app/components/TabsList.qml:55 ../app/ui/SettingsPage.qml:34
40#: ../build/x86_64-linux-gnu/app/install/share/qml/podbird/components/TabsList.qml:55
41#: ../build/x86_64-linux-gnu/app/install/share/qml/podbird/ui/SettingsPage.qml:34
34msgid "Settings"42msgid "Settings"
35msgstr ""43msgstr ""
3644
37#: ../app/components/Walkthrough.qml:8945#: ../app/components/Walkthrough.qml:89
46#: ../build/x86_64-linux-gnu/app/install/share/qml/podbird/components/Walkthrough.qml:89
38msgid "Skip"47msgid "Skip"
39msgstr ""48msgstr ""
4049
41#: ../app/podcasts.js:31050#: ../app/podcasts.js:307
51#: ../build/x86_64-linux-gnu/app/install/share/qml/podbird/podcasts.js:307
42#, no-c-format, qt-format52#, no-c-format, qt-format
43msgid "%1 hr %2 min"53msgid "%1 hr %2 min"
44msgstr ""54msgstr ""
4555
46#: ../app/podcasts.js:31956#: ../app/podcasts.js:316
57#: ../build/x86_64-linux-gnu/app/install/share/qml/podbird/podcasts.js:316
47#, no-c-format, qt-format58#, no-c-format, qt-format
48msgid "%1 hr"59msgid "%1 hr"
49msgstr ""60msgstr ""
5061
51#: ../app/podcasts.js:32762#: ../app/podcasts.js:324
63#: ../build/x86_64-linux-gnu/app/install/share/qml/podbird/podcasts.js:324
52#, no-c-format, qt-format64#, no-c-format, qt-format
53msgid "%1 min"65msgid "%1 min"
54msgstr ""66msgstr ""
@@ -56,37 +68,48 @@
56#. TRANSLATORS: About as in information about the app68#. TRANSLATORS: About as in information about the app
57#: ../app/settings/About.qml:28 ../app/settings/About.qml:4669#: ../app/settings/About.qml:28 ../app/settings/About.qml:46
58#: ../app/ui/SettingsPage.qml:33870#: ../app/ui/SettingsPage.qml:338
71#: ../build/x86_64-linux-gnu/app/install/share/qml/podbird/settings/About.qml:28
72#: ../build/x86_64-linux-gnu/app/install/share/qml/podbird/settings/About.qml:46
73#: ../build/x86_64-linux-gnu/app/install/share/qml/podbird/ui/SettingsPage.qml:338
59msgid "About"74msgid "About"
60msgstr ""75msgstr ""
6176
62#: ../app/settings/About.qml:4677#: ../app/settings/About.qml:46
78#: ../build/x86_64-linux-gnu/app/install/share/qml/podbird/settings/About.qml:46
63msgid "Credits"79msgid "Credits"
64msgstr ""80msgstr ""
6581
66#. TRANSLATORS: Podbird version number e.g Version 0.882#. TRANSLATORS: Podbird version number e.g Version 0.8
67#: ../app/settings/About.qml:9283#: ../app/settings/About.qml:92
84#: ../build/x86_64-linux-gnu/app/install/share/qml/podbird/settings/About.qml:92
68#, qt-format85#, qt-format
69msgid "Version %1"86msgid "Version %1"
70msgstr ""87msgstr ""
7188
72#: ../app/settings/About.qml:11389#: ../app/settings/About.qml:113
90#: ../build/x86_64-linux-gnu/app/install/share/qml/podbird/settings/About.qml:113
73msgid "Released under the terms of the GNU GPL v3"91msgid "Released under the terms of the GNU GPL v3"
74msgstr ""92msgstr ""
7593
76#: ../app/settings/About.qml:12394#: ../app/settings/About.qml:123
95#: ../build/x86_64-linux-gnu/app/install/share/qml/podbird/settings/About.qml:123
77#, qt-format96#, qt-format
78msgid "Source code available on %1"97msgid "Source code available on %1"
79msgstr ""98msgstr ""
8099
81#: ../app/settings/CleanSetting.qml:29100#: ../app/settings/CleanSetting.qml:29
101#: ../build/x86_64-linux-gnu/app/install/share/qml/podbird/settings/CleanSetting.qml:29
82msgid "Delete older than"102msgid "Delete older than"
83msgstr ""103msgstr ""
84104
85#: ../app/settings/CleanSetting.qml:40 ../app/settings/DownloadSetting.qml:40105#: ../app/settings/CleanSetting.qml:40 ../app/settings/DownloadSetting.qml:40
106#: ../build/x86_64-linux-gnu/app/install/share/qml/podbird/settings/CleanSetting.qml:40
107#: ../build/x86_64-linux-gnu/app/install/share/qml/podbird/settings/DownloadSetting.qml:40
86msgid "Never"108msgid "Never"
87msgstr ""109msgstr ""
88110
89#: ../app/settings/CleanSetting.qml:41111#: ../app/settings/CleanSetting.qml:41
112#: ../build/x86_64-linux-gnu/app/install/share/qml/podbird/settings/CleanSetting.qml:41
90#, qt-format113#, qt-format
91msgid "%1 day"114msgid "%1 day"
92msgid_plural "%1 days"115msgid_plural "%1 days"
@@ -95,6 +118,9 @@
95118
96#: ../app/settings/CleanSetting.qml:42 ../app/settings/CleanSetting.qml:43119#: ../app/settings/CleanSetting.qml:42 ../app/settings/CleanSetting.qml:43
97#: ../app/settings/CleanSetting.qml:44120#: ../app/settings/CleanSetting.qml:44
121#: ../build/x86_64-linux-gnu/app/install/share/qml/podbird/settings/CleanSetting.qml:42
122#: ../build/x86_64-linux-gnu/app/install/share/qml/podbird/settings/CleanSetting.qml:43
123#: ../build/x86_64-linux-gnu/app/install/share/qml/podbird/settings/CleanSetting.qml:44
98#, qt-format124#, qt-format
99msgid "%1 month"125msgid "%1 month"
100msgid_plural "%1 months"126msgid_plural "%1 months"
@@ -102,6 +128,7 @@
102msgstr[1] ""128msgstr[1] ""
103129
104#: ../app/settings/CleanSetting.qml:45130#: ../app/settings/CleanSetting.qml:45
131#: ../build/x86_64-linux-gnu/app/install/share/qml/podbird/settings/CleanSetting.qml:45
105#, qt-format132#, qt-format
106msgid "%1 year"133msgid "%1 year"
107msgid_plural "%1 years"134msgid_plural "%1 years"
@@ -110,23 +137,29 @@
110137
111#. TRANSLATORS: The first argument is the name of creator of Podbird (Michael Sheldon)138#. TRANSLATORS: The first argument is the name of creator of Podbird (Michael Sheldon)
112#: ../app/settings/Credits.qml:31139#: ../app/settings/Credits.qml:31
140#: ../build/x86_64-linux-gnu/app/install/share/qml/podbird/settings/Credits.qml:31
113#, qt-format141#, qt-format
114msgid "%1 (Creator)"142msgid "%1 (Creator)"
115msgstr ""143msgstr ""
116144
117#: ../app/settings/Credits.qml:31 ../app/settings/Credits.qml:32145#: ../app/settings/Credits.qml:31 ../app/settings/Credits.qml:32
146#: ../build/x86_64-linux-gnu/app/install/share/qml/podbird/settings/Credits.qml:31
147#: ../build/x86_64-linux-gnu/app/install/share/qml/podbird/settings/Credits.qml:32
118msgid "Developers"148msgid "Developers"
119msgstr ""149msgstr ""
120150
121#: ../app/settings/Credits.qml:33151#: ../app/settings/Credits.qml:33
152#: ../build/x86_64-linux-gnu/app/install/share/qml/podbird/settings/Credits.qml:33
122msgid "Designer"153msgid "Designer"
123msgstr ""154msgstr ""
124155
125#: ../app/settings/Credits.qml:34156#: ../app/settings/Credits.qml:34
157#: ../build/x86_64-linux-gnu/app/install/share/qml/podbird/settings/Credits.qml:34
126msgid "Translators"158msgid "Translators"
127msgstr ""159msgstr ""
128160
129#: ../app/settings/DownloadSetting.qml:29161#: ../app/settings/DownloadSetting.qml:29
162#: ../build/x86_64-linux-gnu/app/install/share/qml/podbird/settings/DownloadSetting.qml:29
130msgid "Download at most"163msgid "Download at most"
131msgstr ""164msgstr ""
132165
@@ -134,6 +167,10 @@
134#: ../app/settings/DownloadSetting.qml:42167#: ../app/settings/DownloadSetting.qml:42
135#: ../app/settings/DownloadSetting.qml:43168#: ../app/settings/DownloadSetting.qml:43
136#: ../app/settings/DownloadSetting.qml:44169#: ../app/settings/DownloadSetting.qml:44
170#: ../build/x86_64-linux-gnu/app/install/share/qml/podbird/settings/DownloadSetting.qml:41
171#: ../build/x86_64-linux-gnu/app/install/share/qml/podbird/settings/DownloadSetting.qml:42
172#: ../build/x86_64-linux-gnu/app/install/share/qml/podbird/settings/DownloadSetting.qml:43
173#: ../build/x86_64-linux-gnu/app/install/share/qml/podbird/settings/DownloadSetting.qml:44
137#, qt-format174#, qt-format
138msgid "%1 episode"175msgid "%1 episode"
139msgid_plural "%1 episodes"176msgid_plural "%1 episodes"
@@ -141,34 +178,48 @@
141msgstr[1] ""178msgstr[1] ""
142179
143#: ../app/settings/ThemeSetting.qml:29 ../app/ui/SettingsPage.qml:146180#: ../app/settings/ThemeSetting.qml:29 ../app/ui/SettingsPage.qml:146
181#: ../build/x86_64-linux-gnu/app/install/share/qml/podbird/settings/ThemeSetting.qml:29
182#: ../build/x86_64-linux-gnu/app/install/share/qml/podbird/ui/SettingsPage.qml:146
144msgid "Theme"183msgid "Theme"
145msgstr ""184msgstr ""
146185
147#. TRANSLATORS: Light Theme186#. TRANSLATORS: Light Theme
148#: ../app/settings/ThemeSetting.qml:41 ../app/ui/SettingsPage.qml:147187#: ../app/settings/ThemeSetting.qml:41 ../app/ui/SettingsPage.qml:147
188#: ../build/x86_64-linux-gnu/app/install/share/qml/podbird/settings/ThemeSetting.qml:41
189#: ../build/x86_64-linux-gnu/app/install/share/qml/podbird/ui/SettingsPage.qml:147
149msgid "Light"190msgid "Light"
150msgstr ""191msgstr ""
151192
152#. TRANSLATORS: Dark Theme193#. TRANSLATORS: Dark Theme
153#: ../app/settings/ThemeSetting.qml:43 ../app/ui/SettingsPage.qml:147194#: ../app/settings/ThemeSetting.qml:43 ../app/ui/SettingsPage.qml:147
195#: ../build/x86_64-linux-gnu/app/install/share/qml/podbird/settings/ThemeSetting.qml:43
196#: ../build/x86_64-linux-gnu/app/install/share/qml/podbird/ui/SettingsPage.qml:147
154msgid "Dark"197msgid "Dark"
155msgstr ""198msgstr ""
156199
157#: ../app/ui/EpisodesPage.qml:52200#: ../app/ui/EpisodesPage.qml:52
201#: ../build/x86_64-linux-gnu/app/install/share/qml/podbird/ui/EpisodesPage.qml:52
158msgid "Podcast"202msgid "Podcast"
159msgstr ""203msgstr ""
160204
161#: ../app/ui/EpisodesPage.qml:62 ../app/ui/EpisodesTab.qml:62205#: ../app/ui/EpisodesPage.qml:62 ../app/ui/EpisodesTab.qml:62
206#: ../build/x86_64-linux-gnu/app/install/share/qml/podbird/ui/EpisodesPage.qml:62
207#: ../build/x86_64-linux-gnu/app/install/share/qml/podbird/ui/EpisodesTab.qml:62
162msgid "Search Episode"208msgid "Search Episode"
163msgstr ""209msgstr ""
164210
165#: ../app/ui/EpisodesPage.qml:70 ../app/ui/EpisodesPage.qml:306211#: ../app/ui/EpisodesPage.qml:70 ../app/ui/EpisodesPage.qml:306
166#: ../app/ui/SearchPage.qml:275212#: ../app/ui/SearchPage.qml:275
213#: ../build/x86_64-linux-gnu/app/install/share/qml/podbird/ui/EpisodesPage.qml:70
214#: ../build/x86_64-linux-gnu/app/install/share/qml/podbird/ui/EpisodesPage.qml:306
215#: ../build/x86_64-linux-gnu/app/install/share/qml/podbird/ui/SearchPage.qml:275
167msgid "Unsubscribe"216msgid "Unsubscribe"
168msgstr ""217msgstr ""
169218
170#. TRANSLATORS: This is the page title. Keep it short. Otherwise it will just be elided.219#. TRANSLATORS: This is the page title. Keep it short. Otherwise it will just be elided.
171#: ../app/ui/EpisodesPage.qml:110 ../app/ui/EpisodesTab.qml:128220#: ../app/ui/EpisodesPage.qml:110 ../app/ui/EpisodesTab.qml:128
221#: ../build/x86_64-linux-gnu/app/install/share/qml/podbird/ui/EpisodesPage.qml:110
222#: ../build/x86_64-linux-gnu/app/install/share/qml/podbird/ui/EpisodesTab.qml:128
172#, qt-format223#, qt-format
173msgid "%1 item selected"224msgid "%1 item selected"
174msgid_plural "%1 items selected"225msgid_plural "%1 items selected"
@@ -177,232 +228,306 @@
177228
178#: ../app/ui/EpisodesPage.qml:125 ../app/ui/EpisodesTab.qml:143229#: ../app/ui/EpisodesPage.qml:125 ../app/ui/EpisodesTab.qml:143
179#: ../app/ui/NowPlayingPage.qml:42230#: ../app/ui/NowPlayingPage.qml:42
231#: ../build/x86_64-linux-gnu/app/install/share/qml/podbird/ui/EpisodesPage.qml:125
232#: ../build/x86_64-linux-gnu/app/install/share/qml/podbird/ui/EpisodesTab.qml:143
233#: ../build/x86_64-linux-gnu/app/install/share/qml/podbird/ui/NowPlayingPage.qml:42
180msgid "Back"234msgid "Back"
181msgstr ""235msgstr ""
182236
183#: ../app/ui/EpisodesPage.qml:137 ../app/ui/EpisodesTab.qml:155237#: ../app/ui/EpisodesPage.qml:137 ../app/ui/EpisodesTab.qml:155
238#: ../build/x86_64-linux-gnu/app/install/share/qml/podbird/ui/EpisodesPage.qml:137
239#: ../build/x86_64-linux-gnu/app/install/share/qml/podbird/ui/EpisodesTab.qml:155
184msgid "Mark Listened"240msgid "Mark Listened"
185msgstr ""241msgstr ""
186242
187#: ../app/ui/EpisodesPage.qml:156 ../app/ui/EpisodesTab.qml:173243#: ../app/ui/EpisodesPage.qml:156 ../app/ui/EpisodesTab.qml:173
244#: ../build/x86_64-linux-gnu/app/install/share/qml/podbird/ui/EpisodesPage.qml:156
245#: ../build/x86_64-linux-gnu/app/install/share/qml/podbird/ui/EpisodesTab.qml:173
188msgid "Download episode(s)"246msgid "Download episode(s)"
189msgstr ""247msgstr ""
190248
191#: ../app/ui/EpisodesPage.qml:184 ../app/ui/EpisodesTab.qml:201249#: ../app/ui/EpisodesPage.qml:184 ../app/ui/EpisodesTab.qml:201
250#: ../build/x86_64-linux-gnu/app/install/share/qml/podbird/ui/EpisodesPage.qml:184
251#: ../build/x86_64-linux-gnu/app/install/share/qml/podbird/ui/EpisodesTab.qml:201
192msgid "Delete episode(s)"252msgid "Delete episode(s)"
193msgstr ""253msgstr ""
194254
195#: ../app/ui/EpisodesPage.qml:207 ../app/ui/EpisodesTab.qml:224255#: ../app/ui/EpisodesPage.qml:207 ../app/ui/EpisodesTab.qml:224
256#: ../build/x86_64-linux-gnu/app/install/share/qml/podbird/ui/EpisodesPage.qml:207
257#: ../build/x86_64-linux-gnu/app/install/share/qml/podbird/ui/EpisodesTab.qml:224
196msgid "Favourite episode(s)"258msgid "Favourite episode(s)"
197msgstr ""259msgstr ""
198260
199#: ../app/ui/EpisodesPage.qml:229 ../app/ui/EpisodesTab.qml:270261#: ../app/ui/EpisodesPage.qml:229 ../app/ui/EpisodesTab.qml:270
262#: ../build/x86_64-linux-gnu/app/install/share/qml/podbird/ui/EpisodesPage.qml:229
263#: ../build/x86_64-linux-gnu/app/install/share/qml/podbird/ui/EpisodesTab.qml:270
200msgid "Add to queue"264msgid "Add to queue"
201msgstr ""265msgstr ""
202266
203#: ../app/ui/EpisodesPage.qml:258 ../app/ui/EpisodesTab.qml:120267#: ../app/ui/EpisodesPage.qml:258 ../app/ui/EpisodesTab.qml:120
268#: ../build/x86_64-linux-gnu/app/install/share/qml/podbird/ui/EpisodesPage.qml:258
269#: ../build/x86_64-linux-gnu/app/install/share/qml/podbird/ui/EpisodesTab.qml:120
204msgid "Search episode"270msgid "Search episode"
205msgstr ""271msgstr ""
206272
207#: ../app/ui/EpisodesPage.qml:303273#: ../app/ui/EpisodesPage.qml:303
274#: ../build/x86_64-linux-gnu/app/install/share/qml/podbird/ui/EpisodesPage.qml:303
208msgid "Unsubscribe Confirmation"275msgid "Unsubscribe Confirmation"
209msgstr ""276msgstr ""
210277
211#: ../app/ui/EpisodesPage.qml:304278#: ../app/ui/EpisodesPage.qml:304
279#: ../build/x86_64-linux-gnu/app/install/share/qml/podbird/ui/EpisodesPage.qml:304
212#, qt-format280#, qt-format
213msgid "Are you sure you want to unsubscribe from <b>%1</b>?"281msgid "Are you sure you want to unsubscribe from <b>%1</b>?"
214msgstr ""282msgstr ""
215283
216#: ../app/ui/EpisodesPage.qml:323 ../app/ui/SearchPage.qml:130284#: ../app/ui/EpisodesPage.qml:323 ../app/ui/SearchPage.qml:130
217#: ../app/ui/SettingsPage.qml:85 ../app/ui/SettingsPage.qml:120285#: ../app/ui/SettingsPage.qml:85 ../app/ui/SettingsPage.qml:120
286#: ../build/x86_64-linux-gnu/app/install/share/qml/podbird/ui/EpisodesPage.qml:323
287#: ../build/x86_64-linux-gnu/app/install/share/qml/podbird/ui/SearchPage.qml:130
288#: ../build/x86_64-linux-gnu/app/install/share/qml/podbird/ui/SettingsPage.qml:85
289#: ../build/x86_64-linux-gnu/app/install/share/qml/podbird/ui/SettingsPage.qml:120
218msgid "Cancel"290msgid "Cancel"
219msgstr ""291msgstr ""
220292
221#: ../app/ui/EpisodesPage.qml:345 ../app/ui/EpisodesTab.qml:407293#: ../app/ui/EpisodesPage.qml:345 ../app/ui/EpisodesTab.qml:407
294#: ../build/x86_64-linux-gnu/app/install/share/qml/podbird/ui/EpisodesPage.qml:345
295#: ../build/x86_64-linux-gnu/app/install/share/qml/podbird/ui/EpisodesTab.qml:407
222msgid "Episode Description"296msgid "Episode Description"
223msgstr ""297msgstr ""
224298
225#: ../app/ui/EpisodesPage.qml:356 ../app/ui/EpisodesTab.qml:418299#: ../app/ui/EpisodesPage.qml:356 ../app/ui/EpisodesTab.qml:418
226#: ../app/ui/SearchPage.qml:179 ../app/ui/SettingsPage.qml:320300#: ../app/ui/SearchPage.qml:179 ../app/ui/SettingsPage.qml:320
301#: ../build/x86_64-linux-gnu/app/install/share/qml/podbird/ui/EpisodesPage.qml:356
302#: ../build/x86_64-linux-gnu/app/install/share/qml/podbird/ui/EpisodesTab.qml:418
303#: ../build/x86_64-linux-gnu/app/install/share/qml/podbird/ui/SearchPage.qml:179
304#: ../build/x86_64-linux-gnu/app/install/share/qml/podbird/ui/SettingsPage.qml:320
227msgid "Close"305msgid "Close"
228msgstr ""306msgstr ""
229307
230#: ../app/ui/EpisodesPage.qml:384308#: ../app/ui/EpisodesPage.qml:384
309#: ../build/x86_64-linux-gnu/app/install/share/qml/podbird/ui/EpisodesPage.qml:384
231msgid "No episodes found"310msgid "No episodes found"
232msgstr ""311msgstr ""
233312
234#: ../app/ui/EpisodesPage.qml:385313#: ../app/ui/EpisodesPage.qml:385
314#: ../build/x86_64-linux-gnu/app/install/share/qml/podbird/ui/EpisodesPage.qml:385
235msgid "No episodes found matching the search term."315msgid "No episodes found matching the search term."
236msgstr ""316msgstr ""
237317
238#: ../app/ui/EpisodesPage.qml:502318#: ../app/ui/EpisodesPage.qml:502
319#: ../build/x86_64-linux-gnu/app/install/share/qml/podbird/ui/EpisodesPage.qml:502
239msgid "Unheard"320msgid "Unheard"
240msgstr ""321msgstr ""
241322
242#: ../app/ui/EpisodesPage.qml:519323#: ../app/ui/EpisodesPage.qml:519
324#: ../build/x86_64-linux-gnu/app/install/share/qml/podbird/ui/EpisodesPage.qml:519
243msgid "Listened"325msgid "Listened"
244msgstr ""326msgstr ""
245327
246#: ../app/ui/EpisodesPage.qml:538328#: ../app/ui/EpisodesPage.qml:538
329#: ../build/x86_64-linux-gnu/app/install/share/qml/podbird/ui/EpisodesPage.qml:538
247msgid "Downloaded"330msgid "Downloaded"
248msgstr ""331msgstr ""
249332
250#: ../app/ui/EpisodesPage.qml:605333#: ../app/ui/EpisodesPage.qml:605
334#: ../build/x86_64-linux-gnu/app/install/share/qml/podbird/ui/EpisodesPage.qml:605
251msgid "Mark as unheard"335msgid "Mark as unheard"
252msgstr ""336msgstr ""
253337
254#: ../app/ui/EpisodesPage.qml:605338#: ../app/ui/EpisodesPage.qml:605
339#: ../build/x86_64-linux-gnu/app/install/share/qml/podbird/ui/EpisodesPage.qml:605
255msgid "Mark as listened"340msgid "Mark as listened"
256msgstr ""341msgstr ""
257342
258#: ../app/ui/EpisodesPage.qml:621343#: ../app/ui/EpisodesPage.qml:621
344#: ../build/x86_64-linux-gnu/app/install/share/qml/podbird/ui/EpisodesPage.qml:621
259msgid "Delete downloaded file"345msgid "Delete downloaded file"
260msgstr ""346msgstr ""
261347
262#: ../app/ui/EpisodesPage.qml:621348#: ../app/ui/EpisodesPage.qml:621
349#: ../build/x86_64-linux-gnu/app/install/share/qml/podbird/ui/EpisodesPage.qml:621
263msgid "Queued"350msgid "Queued"
264msgstr ""351msgstr ""
265352
266#: ../app/ui/EpisodesPage.qml:621353#: ../app/ui/EpisodesPage.qml:621
354#: ../build/x86_64-linux-gnu/app/install/share/qml/podbird/ui/EpisodesPage.qml:621
267msgid "Download"355msgid "Download"
268msgstr ""356msgstr ""
269357
270#: ../app/ui/EpisodesPage.qml:646358#: ../app/ui/EpisodesPage.qml:646
359#: ../build/x86_64-linux-gnu/app/install/share/qml/podbird/ui/EpisodesPage.qml:646
271msgid "Add to playlist"360msgid "Add to playlist"
272msgstr ""361msgstr ""
273362
274#: ../app/ui/EpisodesPage.qml:655363#: ../app/ui/EpisodesPage.qml:655
364#: ../build/x86_64-linux-gnu/app/install/share/qml/podbird/ui/EpisodesPage.qml:655
275msgid "Unfavourite"365msgid "Unfavourite"
276msgstr ""366msgstr ""
277367
278#: ../app/ui/EpisodesPage.qml:655368#: ../app/ui/EpisodesPage.qml:655
369#: ../build/x86_64-linux-gnu/app/install/share/qml/podbird/ui/EpisodesPage.qml:655
279msgid "Favourite"370msgid "Favourite"
280msgstr ""371msgstr ""
281372
282#: ../app/ui/EpisodesPage.qml:670373#: ../app/ui/EpisodesPage.qml:670
374#: ../build/x86_64-linux-gnu/app/install/share/qml/podbird/ui/EpisodesPage.qml:670
283msgid "Show episode description"375msgid "Show episode description"
284msgstr ""376msgstr ""
285377
286#: ../app/ui/EpisodesTab.qml:82378#: ../app/ui/EpisodesTab.qml:82
379#: ../build/x86_64-linux-gnu/app/install/share/qml/podbird/ui/EpisodesTab.qml:82
287msgid "Recent"380msgid "Recent"
288msgstr ""381msgstr ""
289382
290#: ../app/ui/EpisodesTab.qml:82383#: ../app/ui/EpisodesTab.qml:82
384#: ../build/x86_64-linux-gnu/app/install/share/qml/podbird/ui/EpisodesTab.qml:82
291msgid "Downloads"385msgid "Downloads"
292msgstr ""386msgstr ""
293387
294#: ../app/ui/EpisodesTab.qml:82388#: ../app/ui/EpisodesTab.qml:82
389#: ../build/x86_64-linux-gnu/app/install/share/qml/podbird/ui/EpisodesTab.qml:82
295msgid "Favourites"390msgid "Favourites"
296msgstr ""391msgstr ""
297392
298#: ../app/ui/EpisodesTab.qml:247393#: ../app/ui/EpisodesTab.qml:247
394#: ../build/x86_64-linux-gnu/app/install/share/qml/podbird/ui/EpisodesTab.qml:247
299msgid "Unfavourite episode(s)"395msgid "Unfavourite episode(s)"
300msgstr ""396msgstr ""
301397
302#: ../app/ui/EpisodesTab.qml:310398#: ../app/ui/EpisodesTab.qml:310
399#: ../build/x86_64-linux-gnu/app/install/share/qml/podbird/ui/EpisodesTab.qml:310
303msgid "No New Episodes"400msgid "No New Episodes"
304msgstr ""401msgstr ""
305402
306#: ../app/ui/EpisodesTab.qml:312403#: ../app/ui/EpisodesTab.qml:312
404#: ../build/x86_64-linux-gnu/app/install/share/qml/podbird/ui/EpisodesTab.qml:312
307msgid "No Downloaded Episodes"405msgid "No Downloaded Episodes"
308msgstr ""406msgstr ""
309407
310#: ../app/ui/EpisodesTab.qml:314408#: ../app/ui/EpisodesTab.qml:314
409#: ../build/x86_64-linux-gnu/app/install/share/qml/podbird/ui/EpisodesTab.qml:314
311msgid "No Favourited Episodes"410msgid "No Favourited Episodes"
312msgstr ""411msgstr ""
313412
314#: ../app/ui/EpisodesTab.qml:316413#: ../app/ui/EpisodesTab.qml:316
414#: ../build/x86_64-linux-gnu/app/install/share/qml/podbird/ui/EpisodesTab.qml:316
315msgid "No Episodes Found"415msgid "No Episodes Found"
316msgstr ""416msgstr ""
317417
318#: ../app/ui/EpisodesTab.qml:322418#: ../app/ui/EpisodesTab.qml:322
419#: ../build/x86_64-linux-gnu/app/install/share/qml/podbird/ui/EpisodesTab.qml:322
319msgid "No more episodes to listen to!"420msgid "No more episodes to listen to!"
320msgstr ""421msgstr ""
321422
322#: ../app/ui/EpisodesTab.qml:324423#: ../app/ui/EpisodesTab.qml:324
424#: ../build/x86_64-linux-gnu/app/install/share/qml/podbird/ui/EpisodesTab.qml:324
323msgid "No episodes have been downloaded for offline listening"425msgid "No episodes have been downloaded for offline listening"
324msgstr ""426msgstr ""
325427
326#: ../app/ui/EpisodesTab.qml:326428#: ../app/ui/EpisodesTab.qml:326
429#: ../build/x86_64-linux-gnu/app/install/share/qml/podbird/ui/EpisodesTab.qml:326
327msgid "No episodes have been favourited."430msgid "No episodes have been favourited."
328msgstr ""431msgstr ""
329432
330#: ../app/ui/EpisodesTab.qml:328433#: ../app/ui/EpisodesTab.qml:328
434#: ../build/x86_64-linux-gnu/app/install/share/qml/podbird/ui/EpisodesTab.qml:328
331msgid "No Episodes found matching the search term."435msgid "No Episodes found matching the search term."
332msgstr ""436msgstr ""
333437
334#: ../app/ui/EpisodesTab.qml:457438#: ../app/ui/EpisodesTab.qml:457
439#: ../build/x86_64-linux-gnu/app/install/share/qml/podbird/ui/EpisodesTab.qml:457
335msgid "Downloads in progress"440msgid "Downloads in progress"
336msgstr ""441msgstr ""
337442
338#: ../app/ui/EpisodesTab.qml:497443#: ../app/ui/EpisodesTab.qml:497
444#: ../build/x86_64-linux-gnu/app/install/share/qml/podbird/ui/EpisodesTab.qml:497
339msgid "Downloaded episodes"445msgid "Downloaded episodes"
340msgstr ""446msgstr ""
341447
342#: ../app/ui/EpisodesTab.qml:507448#: ../app/ui/EpisodesTab.qml:507
449#: ../build/x86_64-linux-gnu/app/install/share/qml/podbird/ui/EpisodesTab.qml:507
343msgid "Today"450msgid "Today"
344msgstr ""451msgstr ""
345452
346#: ../app/ui/EpisodesTab.qml:511453#: ../app/ui/EpisodesTab.qml:511
454#: ../build/x86_64-linux-gnu/app/install/share/qml/podbird/ui/EpisodesTab.qml:511
347msgid "Yesterday"455msgid "Yesterday"
348msgstr ""456msgstr ""
349457
350#: ../app/ui/EpisodesTab.qml:515458#: ../app/ui/EpisodesTab.qml:515
459#: ../build/x86_64-linux-gnu/app/install/share/qml/podbird/ui/EpisodesTab.qml:515
351msgid "Older"460msgid "Older"
352msgstr ""461msgstr ""
353462
354#. TRANSLATORS: The string shown in the UI is -15s to denote the number of seconds that the podcast playback will skip backward.463#. TRANSLATORS: The string shown in the UI is -15s to denote the number of seconds that the podcast playback will skip backward.
355#: ../app/ui/FullPlayingView.qml:218464#: ../app/ui/FullPlayingView.qml:218
465#: ../build/x86_64-linux-gnu/app/install/share/qml/podbird/ui/FullPlayingView.qml:218
356#, no-c-format, qt-format466#, no-c-format, qt-format
357msgid "-%1s"467msgid "-%1s"
358msgstr ""468msgstr ""
359469
360#. TRANSLATORS: The string shown in the UI is +15s to denote the number of seconds that the podcast playback will skip forward.470#. TRANSLATORS: The string shown in the UI is +15s to denote the number of seconds that the podcast playback will skip forward.
361#: ../app/ui/FullPlayingView.qml:279471#: ../app/ui/FullPlayingView.qml:279
472#: ../build/x86_64-linux-gnu/app/install/share/qml/podbird/ui/FullPlayingView.qml:279
362#, no-c-format, qt-format473#, no-c-format, qt-format
363msgid "+%1s"474msgid "+%1s"
364msgstr ""475msgstr ""
365476
366#: ../app/ui/NowPlayingPage.qml:34477#: ../app/ui/NowPlayingPage.qml:34
478#: ../build/x86_64-linux-gnu/app/install/share/qml/podbird/ui/NowPlayingPage.qml:34
367msgid "Now Playing"479msgid "Now Playing"
368msgstr ""480msgstr ""
369481
370#: ../app/ui/NowPlayingPage.qml:73482#: ../app/ui/NowPlayingPage.qml:73
483#: ../build/x86_64-linux-gnu/app/install/share/qml/podbird/ui/NowPlayingPage.qml:73
371msgid "Full view"484msgid "Full view"
372msgstr ""485msgstr ""
373486
374#: ../app/ui/NowPlayingPage.qml:73487#: ../app/ui/NowPlayingPage.qml:73
488#: ../build/x86_64-linux-gnu/app/install/share/qml/podbird/ui/NowPlayingPage.qml:73
375msgid "Queue"489msgid "Queue"
376msgstr ""490msgstr ""
377491
378#: ../app/ui/PodcastsTab.qml:57 ../app/ui/SearchPage.qml:55492#: ../app/ui/PodcastsTab.qml:57 ../app/ui/SearchPage.qml:55
379#: ../app/ui/SearchPage.qml:161493#: ../app/ui/SearchPage.qml:161
494#: ../build/x86_64-linux-gnu/app/install/share/qml/podbird/ui/PodcastsTab.qml:57
495#: ../build/x86_64-linux-gnu/app/install/share/qml/podbird/ui/SearchPage.qml:55
496#: ../build/x86_64-linux-gnu/app/install/share/qml/podbird/ui/SearchPage.qml:161
380msgid "Search Podcast"497msgid "Search Podcast"
381msgstr ""498msgstr ""
382499
383#: ../app/ui/PodcastsTab.qml:97500#: ../app/ui/PodcastsTab.qml:97
501#: ../build/x86_64-linux-gnu/app/install/share/qml/podbird/ui/PodcastsTab.qml:97
384msgid "Search podcast"502msgid "Search podcast"
385msgstr ""503msgstr ""
386504
387#: ../app/ui/PodcastsTab.qml:127505#: ../app/ui/PodcastsTab.qml:127
506#: ../build/x86_64-linux-gnu/app/install/share/qml/podbird/ui/PodcastsTab.qml:127
388msgid "No Podcast Subscriptions"507msgid "No Podcast Subscriptions"
389msgstr ""508msgstr ""
390509
391#: ../app/ui/PodcastsTab.qml:127 ../app/ui/SearchPage.qml:207510#: ../app/ui/PodcastsTab.qml:127 ../app/ui/SearchPage.qml:207
511#: ../build/x86_64-linux-gnu/app/install/share/qml/podbird/ui/PodcastsTab.qml:127
512#: ../build/x86_64-linux-gnu/app/install/share/qml/podbird/ui/SearchPage.qml:207
392msgid "No Podcasts Found"513msgid "No Podcasts Found"
393msgstr ""514msgstr ""
394515
395#: ../app/ui/PodcastsTab.qml:128516#: ../app/ui/PodcastsTab.qml:128
517#: ../build/x86_64-linux-gnu/app/install/share/qml/podbird/ui/PodcastsTab.qml:128
396msgid ""518msgid ""
397"You haven't subscribed to any podcasts yet, visit the 'Add New Podcasts' "519"You haven't subscribed to any podcasts yet, visit the 'Add New Podcasts' "
398"page to add some."520"page to add some."
399msgstr ""521msgstr ""
400522
401#: ../app/ui/PodcastsTab.qml:129 ../app/ui/SearchPage.qml:209523#: ../app/ui/PodcastsTab.qml:129 ../app/ui/SearchPage.qml:209
524#: ../build/x86_64-linux-gnu/app/install/share/qml/podbird/ui/PodcastsTab.qml:129
525#: ../build/x86_64-linux-gnu/app/install/share/qml/podbird/ui/SearchPage.qml:209
402msgid "No podcasts found matching the search term."526msgid "No podcasts found matching the search term."
403msgstr ""527msgstr ""
404528
405#: ../app/ui/PodcastsTab.qml:215529#: ../app/ui/PodcastsTab.qml:215
530#: ../build/x86_64-linux-gnu/app/install/share/qml/podbird/ui/PodcastsTab.qml:215
406#, qt-format531#, qt-format
407msgid "%1 unheard episode"532msgid "%1 unheard episode"
408msgid_plural "%1 unheard episodes"533msgid_plural "%1 unheard episodes"
@@ -410,41 +535,50 @@
410msgstr[1] ""535msgstr[1] ""
411536
412#: ../app/ui/SearchPage.qml:63537#: ../app/ui/SearchPage.qml:63
538#: ../build/x86_64-linux-gnu/app/install/share/qml/podbird/ui/SearchPage.qml:63
413msgid "Add Podcast"539msgid "Add Podcast"
414msgstr ""540msgstr ""
415541
416#: ../app/ui/SearchPage.qml:122542#: ../app/ui/SearchPage.qml:122
543#: ../build/x86_64-linux-gnu/app/install/share/qml/podbird/ui/SearchPage.qml:122
417msgid "Save Podcast"544msgid "Save Podcast"
418msgstr ""545msgstr ""
419546
420#: ../app/ui/SearchPage.qml:149547#: ../app/ui/SearchPage.qml:149
548#: ../build/x86_64-linux-gnu/app/install/share/qml/podbird/ui/SearchPage.qml:149
421msgid "Feed URL"549msgid "Feed URL"
422msgstr ""550msgstr ""
423551
424#: ../app/ui/SearchPage.qml:176552#: ../app/ui/SearchPage.qml:176
553#: ../build/x86_64-linux-gnu/app/install/share/qml/podbird/ui/SearchPage.qml:176
425msgid "Unable to subscribe"554msgid "Unable to subscribe"
426msgstr ""555msgstr ""
427556
428#: ../app/ui/SearchPage.qml:177557#: ../app/ui/SearchPage.qml:177
558#: ../build/x86_64-linux-gnu/app/install/share/qml/podbird/ui/SearchPage.qml:177
429msgid "Please check the URL and try again"559msgid "Please check the URL and try again"
430msgstr ""560msgstr ""
431561
432#: ../app/ui/SearchPage.qml:207562#: ../app/ui/SearchPage.qml:207
563#: ../build/x86_64-linux-gnu/app/install/share/qml/podbird/ui/SearchPage.qml:207
433msgid "Looking to add a new podcast?"564msgid "Looking to add a new podcast?"
434msgstr ""565msgstr ""
435566
436#: ../app/ui/SearchPage.qml:208567#: ../app/ui/SearchPage.qml:208
568#: ../build/x86_64-linux-gnu/app/install/share/qml/podbird/ui/SearchPage.qml:208
437msgid ""569msgid ""
438"Click the 'magnifier' at the top to search or the 'plus' button to add by URL"570"Click the 'magnifier' at the top to search or the 'plus' button to add by URL"
439msgstr ""571msgstr ""
440572
441#: ../app/ui/SearchPage.qml:275573#: ../app/ui/SearchPage.qml:275
574#: ../build/x86_64-linux-gnu/app/install/share/qml/podbird/ui/SearchPage.qml:275
442msgid "Subscribe"575msgid "Subscribe"
443msgstr ""576msgstr ""
444577
445#. TRANSLATORS: The first argument here is the date of when the podcast was last updated followed by578#. TRANSLATORS: The first argument here is the date of when the podcast was last updated followed by
446#. the podcast description.579#. the podcast description.
447#: ../app/ui/SearchPage.qml:313580#: ../app/ui/SearchPage.qml:313
581#: ../build/x86_64-linux-gnu/app/install/share/qml/podbird/ui/SearchPage.qml:313
448#, qt-format582#, qt-format
449msgid ""583msgid ""
450"Last Updated: %1\n"584"Last Updated: %1\n"
@@ -452,109 +586,139 @@
452msgstr ""586msgstr ""
453587
454#: ../app/ui/SearchPage.qml:370588#: ../app/ui/SearchPage.qml:370
589#: ../build/x86_64-linux-gnu/app/install/share/qml/podbird/ui/SearchPage.qml:370
455msgid "Not Available"590msgid "Not Available"
456msgstr ""591msgstr ""
457592
458#. TRANSLATORS: This strings refers to the seeking of the episode playback. Users can set how far they593#. TRANSLATORS: This strings refers to the seeking of the episode playback. Users can set how far they
459#. want to seek forward when pressing on this button.594#. want to seek forward when pressing on this button.
460#: ../app/ui/SettingsPage.qml:65 ../app/ui/SettingsPage.qml:171595#: ../app/ui/SettingsPage.qml:65 ../app/ui/SettingsPage.qml:171
596#: ../build/x86_64-linux-gnu/app/install/share/qml/podbird/ui/SettingsPage.qml:65
597#: ../build/x86_64-linux-gnu/app/install/share/qml/podbird/ui/SettingsPage.qml:171
461msgid "Skip forward"598msgid "Skip forward"
462msgstr ""599msgstr ""
463600
464#: ../app/ui/SettingsPage.qml:72 ../app/ui/SettingsPage.qml:107601#: ../app/ui/SettingsPage.qml:72 ../app/ui/SettingsPage.qml:107
465#: ../app/ui/SettingsPage.qml:172 ../app/ui/SettingsPage.qml:179602#: ../app/ui/SettingsPage.qml:172 ../app/ui/SettingsPage.qml:179
603#: ../build/x86_64-linux-gnu/app/install/share/qml/podbird/ui/SettingsPage.qml:72
604#: ../build/x86_64-linux-gnu/app/install/share/qml/podbird/ui/SettingsPage.qml:107
605#: ../build/x86_64-linux-gnu/app/install/share/qml/podbird/ui/SettingsPage.qml:172
606#: ../build/x86_64-linux-gnu/app/install/share/qml/podbird/ui/SettingsPage.qml:179
466#, qt-format607#, qt-format
467msgid "%1 seconds"608msgid "%1 seconds"
468msgstr ""609msgstr ""
469610
470#: ../app/ui/SettingsPage.qml:77 ../app/ui/SettingsPage.qml:112611#: ../app/ui/SettingsPage.qml:77 ../app/ui/SettingsPage.qml:112
612#: ../build/x86_64-linux-gnu/app/install/share/qml/podbird/ui/SettingsPage.qml:77
613#: ../build/x86_64-linux-gnu/app/install/share/qml/podbird/ui/SettingsPage.qml:112
471msgid "OK"614msgid "OK"
472msgstr ""615msgstr ""
473616
474#. TRANSLATORS: This strings refers to the seeking of the episode playback. Users can set how far they617#. TRANSLATORS: This strings refers to the seeking of the episode playback. Users can set how far they
475#. want to seek backward when pressing on this button.618#. want to seek backward when pressing on this button.
476#: ../app/ui/SettingsPage.qml:100 ../app/ui/SettingsPage.qml:178619#: ../app/ui/SettingsPage.qml:100 ../app/ui/SettingsPage.qml:178
620#: ../build/x86_64-linux-gnu/app/install/share/qml/podbird/ui/SettingsPage.qml:100
621#: ../build/x86_64-linux-gnu/app/install/share/qml/podbird/ui/SettingsPage.qml:178
477msgid "Skip back"622msgid "Skip back"
478msgstr ""623msgstr ""
479624
480#. TRANSLATORS: Shortened form of "Miscellaneous" which is shown to denote other setting options625#. TRANSLATORS: Shortened form of "Miscellaneous" which is shown to denote other setting options
481#. that doesn't fit into any other category.626#. that doesn't fit into any other category.
482#: ../app/ui/SettingsPage.qml:141627#: ../app/ui/SettingsPage.qml:141
628#: ../build/x86_64-linux-gnu/app/install/share/qml/podbird/ui/SettingsPage.qml:141
483msgid "General Settings"629msgid "General Settings"
484msgstr ""630msgstr ""
485631
486#: ../app/ui/SettingsPage.qml:154632#: ../app/ui/SettingsPage.qml:154
633#: ../build/x86_64-linux-gnu/app/install/share/qml/podbird/ui/SettingsPage.qml:154
487msgid "Displays podcasts in a list view"634msgid "Displays podcasts in a list view"
488msgstr ""635msgstr ""
489636
490#: ../app/ui/SettingsPage.qml:166637#: ../app/ui/SettingsPage.qml:166
638#: ../build/x86_64-linux-gnu/app/install/share/qml/podbird/ui/SettingsPage.qml:166
491msgid "Playback Settings"639msgid "Playback Settings"
492msgstr ""640msgstr ""
493641
494#: ../app/ui/SettingsPage.qml:184642#: ../app/ui/SettingsPage.qml:184
643#: ../build/x86_64-linux-gnu/app/install/share/qml/podbird/ui/SettingsPage.qml:184
495msgid "Podcast Episode Settings"644msgid "Podcast Episode Settings"
496msgstr ""645msgstr ""
497646
498#: ../app/ui/SettingsPage.qml:190647#: ../app/ui/SettingsPage.qml:190
648#: ../build/x86_64-linux-gnu/app/install/share/qml/podbird/ui/SettingsPage.qml:190
499msgid "Automatically delete old episodes"649msgid "Automatically delete old episodes"
500msgstr ""650msgstr ""
501651
502#: ../app/ui/SettingsPage.qml:192652#: ../app/ui/SettingsPage.qml:192
653#: ../build/x86_64-linux-gnu/app/install/share/qml/podbird/ui/SettingsPage.qml:192
503msgid ""654msgid ""
504"Delete episodes that are older than a given number of days for each podcast"655"Delete episodes that are older than a given number of days for each podcast"
505msgstr ""656msgstr ""
506657
507#: ../app/ui/SettingsPage.qml:204658#: ../app/ui/SettingsPage.qml:204
659#: ../build/x86_64-linux-gnu/app/install/share/qml/podbird/ui/SettingsPage.qml:204
508msgid "Automatically download new episodes"660msgid "Automatically download new episodes"
509msgstr ""661msgstr ""
510662
511#: ../app/ui/SettingsPage.qml:206663#: ../app/ui/SettingsPage.qml:206
664#: ../build/x86_64-linux-gnu/app/install/share/qml/podbird/ui/SettingsPage.qml:206
512msgid "Default number of new episodes to download for each podcast"665msgid "Default number of new episodes to download for each podcast"
513msgstr ""666msgstr ""
514667
515#: ../app/ui/SettingsPage.qml:218668#: ../app/ui/SettingsPage.qml:218
669#: ../build/x86_64-linux-gnu/app/install/share/qml/podbird/ui/SettingsPage.qml:218
516msgid "Only download over WiFi"670msgid "Only download over WiFi"
517msgstr ""671msgstr ""
518672
519#: ../app/ui/SettingsPage.qml:220673#: ../app/ui/SettingsPage.qml:220
674#: ../build/x86_64-linux-gnu/app/install/share/qml/podbird/ui/SettingsPage.qml:220
520msgid "Download episodes only when the device is using WiFi"675msgid "Download episodes only when the device is using WiFi"
521msgstr ""676msgstr ""
522677
523#: ../app/ui/SettingsPage.qml:240678#: ../app/ui/SettingsPage.qml:240
679#: ../build/x86_64-linux-gnu/app/install/share/qml/podbird/ui/SettingsPage.qml:240
524msgid "Refresh podcast artwork"680msgid "Refresh podcast artwork"
525msgstr ""681msgstr ""
526682
527#: ../app/ui/SettingsPage.qml:242683#: ../app/ui/SettingsPage.qml:242
684#: ../build/x86_64-linux-gnu/app/install/share/qml/podbird/ui/SettingsPage.qml:242
528msgid "Update all podcasts artwork and fix missing ones"685msgid "Update all podcasts artwork and fix missing ones"
529msgstr ""686msgstr ""
530687
531#: ../app/ui/SettingsPage.qml:271688#: ../app/ui/SettingsPage.qml:271
689#: ../build/x86_64-linux-gnu/app/install/share/qml/podbird/ui/SettingsPage.qml:271
532msgid "Storage Settings"690msgid "Storage Settings"
533msgstr ""691msgstr ""
534692
535#: ../app/ui/SettingsPage.qml:282693#: ../app/ui/SettingsPage.qml:282
694#: ../build/x86_64-linux-gnu/app/install/share/qml/podbird/ui/SettingsPage.qml:282
536msgid "Delete orphaned files and links"695msgid "Delete orphaned files and links"
537msgstr ""696msgstr ""
538697
539#: ../app/ui/SettingsPage.qml:284698#: ../app/ui/SettingsPage.qml:284
699#: ../build/x86_64-linux-gnu/app/install/share/qml/podbird/ui/SettingsPage.qml:284
540msgid "Free space by removing orphaned downloaded files and links"700msgid "Free space by removing orphaned downloaded files and links"
541msgstr ""701msgstr ""
542702
543#: ../app/ui/SettingsPage.qml:314703#: ../app/ui/SettingsPage.qml:314
704#: ../build/x86_64-linux-gnu/app/install/share/qml/podbird/ui/SettingsPage.qml:314
544msgid "Removed orphaned files and links"705msgid "Removed orphaned files and links"
545msgstr ""706msgstr ""
546707
547#: ../app/ui/SettingsPage.qml:314708#: ../app/ui/SettingsPage.qml:314
709#: ../build/x86_64-linux-gnu/app/install/share/qml/podbird/ui/SettingsPage.qml:314
548msgid "No orphans found!"710msgid "No orphans found!"
549msgstr ""711msgstr ""
550712
551#: ../app/ui/SettingsPage.qml:315713#: ../app/ui/SettingsPage.qml:315
714#: ../build/x86_64-linux-gnu/app/install/share/qml/podbird/ui/SettingsPage.qml:315
552msgid ""715msgid ""
553"All orphaned files have been deleted to recover disk space. Orphaned links "716"All orphaned files have been deleted to recover disk space. Orphaned links "
554"pointing at invalid files have also been cleaned up."717"pointing at invalid files have also been cleaned up."
555msgstr ""718msgstr ""
556719
557#: ../app/ui/SettingsPage.qml:317720#: ../app/ui/SettingsPage.qml:317
721#: ../build/x86_64-linux-gnu/app/install/share/qml/podbird/ui/SettingsPage.qml:317
558msgid ""722msgid ""
559"No orphaned files have been found to recover disk space. Podbird database is "723"No orphaned files have been found to recover disk space. Podbird database is "
560"clean."724"clean."
@@ -563,18 +727,22 @@
563#. TRANSLATORS: Shortened form of "Miscellaneous" which is shown to denote other setting options727#. TRANSLATORS: Shortened form of "Miscellaneous" which is shown to denote other setting options
564#. that doesn't fit into any other category.728#. that doesn't fit into any other category.
565#: ../app/ui/SettingsPage.qml:332729#: ../app/ui/SettingsPage.qml:332
730#: ../build/x86_64-linux-gnu/app/install/share/qml/podbird/ui/SettingsPage.qml:332
566msgid "Misc."731msgid "Misc."
567msgstr ""732msgstr ""
568733
569#: ../app/ui/SettingsPage.qml:348734#: ../app/ui/SettingsPage.qml:348
735#: ../build/x86_64-linux-gnu/app/install/share/qml/podbird/ui/SettingsPage.qml:348
570msgid "Report Bug"736msgid "Report Bug"
571msgstr ""737msgstr ""
572738
573#: ../app/welcomewizard/Slide1.qml:42739#: ../app/welcomewizard/Slide1.qml:42
740#: ../build/x86_64-linux-gnu/app/install/share/qml/podbird/welcomewizard/Slide1.qml:42
574msgid "Welcome to Podbird"741msgid "Welcome to Podbird"
575msgstr ""742msgstr ""
576743
577#: ../app/welcomewizard/Slide1.qml:50744#: ../app/welcomewizard/Slide1.qml:53
745#: ../build/x86_64-linux-gnu/app/install/share/qml/podbird/welcomewizard/Slide1.qml:53
578msgid ""746msgid ""
579"Enjoy your favourite shows with Podbird, the chirpiest podcast manager for "747"Enjoy your favourite shows with Podbird, the chirpiest podcast manager for "
580"Ubuntu.\n"748"Ubuntu.\n"
@@ -582,25 +750,30 @@
582"Chirp Chirp..."750"Chirp Chirp..."
583msgstr ""751msgstr ""
584752
585#: ../app/welcomewizard/Slide1.qml:72753#: ../app/welcomewizard/Slide1.qml:82
754#: ../build/x86_64-linux-gnu/app/install/share/qml/podbird/welcomewizard/Slide1.qml:82
586msgid "Swipe to move between pages"755msgid "Swipe to move between pages"
587msgstr ""756msgstr ""
588757
589#: ../app/welcomewizard/Slide2.qml:45758#: ../app/welcomewizard/Slide2.qml:45
759#: ../build/x86_64-linux-gnu/app/install/share/qml/podbird/welcomewizard/Slide2.qml:45
590msgid "Discover New Podcasts"760msgid "Discover New Podcasts"
591msgstr ""761msgstr ""
592762
593#: ../app/welcomewizard/Slide2.qml:62763#: ../app/welcomewizard/Slide2.qml:62
764#: ../build/x86_64-linux-gnu/app/install/share/qml/podbird/welcomewizard/Slide2.qml:62
594msgid ""765msgid ""
595"Podbird uses the iTunesĀ® database to provide access to a huge collection of "766"Podbird uses the iTunesĀ® database to provide access to a huge collection of "
596"podcasts. You can also add podcasts by their URL."767"podcasts. You can also add podcasts by their URL."
597msgstr ""768msgstr ""
598769
599#: ../app/welcomewizard/Slide3.qml:45770#: ../app/welcomewizard/Slide3.qml:45
771#: ../build/x86_64-linux-gnu/app/install/share/qml/podbird/welcomewizard/Slide3.qml:45
600msgid "Smart Settings"772msgid "Smart Settings"
601msgstr ""773msgstr ""
602774
603#: ../app/welcomewizard/Slide3.qml:62775#: ../app/welcomewizard/Slide3.qml:62
776#: ../build/x86_64-linux-gnu/app/install/share/qml/podbird/welcomewizard/Slide3.qml:62
604msgid ""777msgid ""
605"Podbird can optionally download new episodes and clean up old episodes "778"Podbird can optionally download new episodes and clean up old episodes "
606"automatically, this can be enabled from the settings page."779"automatically, this can be enabled from the settings page."
@@ -610,10 +783,12 @@
610#. For instance, if the app was in english, then it is appropriate to set this string as783#. For instance, if the app was in english, then it is appropriate to set this string as
611#. Hallo or Bonjour etc to symbolize the internationalization feature in podbird.784#. Hallo or Bonjour etc to symbolize the internationalization feature in podbird.
612#: ../app/welcomewizard/Slide4.qml:48785#: ../app/welcomewizard/Slide4.qml:48
786#: ../build/x86_64-linux-gnu/app/install/share/qml/podbird/welcomewizard/Slide4.qml:48
613msgid "Hallo! Bonjour!"787msgid "Hallo! Bonjour!"
614msgstr ""788msgstr ""
615789
616#: ../app/welcomewizard/Slide4.qml:67790#: ../app/welcomewizard/Slide4.qml:67
791#: ../build/x86_64-linux-gnu/app/install/share/qml/podbird/welcomewizard/Slide4.qml:67
617#, qt-format792#, qt-format
618msgid ""793msgid ""
619"Podbird is available in over 15 languages and is translated by the %1 "794"Podbird is available in over 15 languages and is translated by the %1 "
@@ -621,10 +796,12 @@
621msgstr ""796msgstr ""
622797
623#: ../app/welcomewizard/Slide5.qml:45798#: ../app/welcomewizard/Slide5.qml:45
799#: ../build/x86_64-linux-gnu/app/install/share/qml/podbird/welcomewizard/Slide5.qml:45
624msgid "Touch Gestures"800msgid "Touch Gestures"
625msgstr ""801msgstr ""
626802
627#: ../app/welcomewizard/Slide5.qml:64803#: ../app/welcomewizard/Slide5.qml:64
804#: ../build/x86_64-linux-gnu/app/install/share/qml/podbird/welcomewizard/Slide5.qml:64
628msgid ""805msgid ""
629"Episodes can be swiped left to reveal more actions (or right click if you're "806"Episodes can be swiped left to reveal more actions (or right click if you're "
630"using a mouse). You can also multi-select them by long-pressing on an "807"using a mouse). You can also multi-select them by long-pressing on an "
@@ -632,11 +809,13 @@
632msgstr ""809msgstr ""
633810
634#: ../app/welcomewizard/Slide6.qml:45811#: ../app/welcomewizard/Slide6.qml:45
812#: ../build/x86_64-linux-gnu/app/install/share/qml/podbird/welcomewizard/Slide6.qml:45
635msgid "Support"813msgid "Support"
636msgstr ""814msgstr ""
637815
638#. TRANSLATORS: The %1 points to a url defined in html format <a href=\link\>Link</a>.816#. TRANSLATORS: The %1 points to a url defined in html format <a href=\link\>Link</a>.
639#: ../app/welcomewizard/Slide6.qml:65817#: ../app/welcomewizard/Slide6.qml:65
818#: ../build/x86_64-linux-gnu/app/install/share/qml/podbird/welcomewizard/Slide6.qml:65
640#, qt-format819#, qt-format
641msgid ""820msgid ""
642"If you find any bugs or have any feature requests, let us know on our "821"If you find any bugs or have any feature requests, let us know on our "
@@ -644,23 +823,28 @@
644msgstr ""823msgstr ""
645824
646#: ../app/welcomewizard/Slide7.qml:45825#: ../app/welcomewizard/Slide7.qml:45
826#: ../build/x86_64-linux-gnu/app/install/share/qml/podbird/welcomewizard/Slide7.qml:45
647msgid "Enjoy"827msgid "Enjoy"
648msgstr ""828msgstr ""
649829
650#: ../app/welcomewizard/Slide7.qml:62830#: ../app/welcomewizard/Slide7.qml:62
831#: ../build/x86_64-linux-gnu/app/install/share/qml/podbird/welcomewizard/Slide7.qml:62
651msgid "We hope you enjoy using Podbird!"832msgid "We hope you enjoy using Podbird!"
652msgstr ""833msgstr ""
653834
654#: ../app/welcomewizard/Slide7.qml:76835#: ../app/welcomewizard/Slide7.qml:76
836#: ../build/x86_64-linux-gnu/app/install/share/qml/podbird/welcomewizard/Slide7.qml:76
655msgid "Finish"837msgid "Finish"
656msgstr ""838msgstr ""
657839
658#: /home/mike/src/podbird/build-podbird-Ubuntu_Device2_GCC_armhf_ubuntu_sdk_15_04_builder_armhf-Default/po/Podbird.desktop.in.h:1840#: ../build/arm-linux-gnueabihf/app/po/Podbird.desktop.in.h:1
659#: Podbird.desktop.in.h:1841#: ../build/x86_64-linux-gnu/app/po/Podbird.desktop.in.h:1
842#: /home/cibersheep/Ubuntu_Touch_Projects/podbird/build/arm-linux-gnueabihf/app/po/Podbird.desktop.in.h:1
660msgid "The chirpiest podcast manager for Ubuntu"843msgid "The chirpiest podcast manager for Ubuntu"
661msgstr ""844msgstr ""
662845
663#: /home/mike/src/podbird/build-podbird-Ubuntu_Device2_GCC_armhf_ubuntu_sdk_15_04_builder_armhf-Default/po/Podbird.desktop.in.h:2846#: ../build/arm-linux-gnueabihf/app/po/Podbird.desktop.in.h:2
664#: Podbird.desktop.in.h:2847#: ../build/x86_64-linux-gnu/app/po/Podbird.desktop.in.h:2
848#: /home/cibersheep/Ubuntu_Touch_Projects/podbird/build/arm-linux-gnueabihf/app/po/Podbird.desktop.in.h:2
665msgid "podcast;audio;itunes;broadcast;digital;stream;podcatcher;video;vodcast;"849msgid "podcast;audio;itunes;broadcast;digital;stream;podcatcher;video;vodcast;"
666msgstr ""850msgstr ""

Subscribers

People subscribed via source and target branches

to status/vote changes: