~mterry/podbird/ok

« back to all changes in this revision

Viewing changes to app/ui/SearchPage.qml

  • Committer: Nekhelesh Ramananthan
  • Date: 2016-03-29 11:06:29 UTC
  • mfrom: (145.1.5 sync-to-trunk)
  • Revision ID: krnekhelesh@gmail.com-20160329110629-2bfccvf6r4exvydq
Syncs the following patches from trunk,
- Removed hardcoded colors in Light and Dark theme
- Fixed database upgrade from "",1.0 -> 1.2
- Changed icon from system-log-out back to delete

Show diffs side-by-side

added added

removed removed

Lines of Context:
204
204
        id: emptyStateComponent
205
205
        EmptyState {
206
206
            icon.source: searchPage.header !== searchHeader ? Qt.resolvedUrl("../graphics/owlSearch.svg") : Qt.resolvedUrl("../graphics/notFound.svg")
207
 
            title: searchPage.header !== searchHeader ? i18n.tr("Looking to add a new Podcast?") : i18n.tr("No Podcasts found")
 
207
            title: searchPage.header !== searchHeader ? i18n.tr("Looking to add a new podcast?") : i18n.tr("No Podcasts Found")
208
208
            subTitle: searchPage.header !== searchHeader ? i18n.tr("Click the 'magnifier' at the top to search or the 'plus' button to add by URL")
209
209
                                                         : i18n.tr("No podcasts found matching the search term.")
210
210
        }