Finalize the finalize the finalize the finalize the finalize the finalize the finalize the finalize
This commit is contained in:
parent
946c235a58
commit
d682abb635
10 changed files with 20 additions and 7 deletions
|
@ -98,6 +98,9 @@
|
|||
// Errors
|
||||
"error.appleMusicSubRequired": "Apple Music requires a subscription.",
|
||||
"error.connectionError": "There was a problem connecting to Apple Music.",
|
||||
"error.noResults": "No Results.",
|
||||
"error.noResults.description": "Try a new search.",
|
||||
|
||||
// Actions
|
||||
"action.addToLibrary": "Add to Library",
|
||||
"action.addToLibrary.success": "Added to Library",
|
||||
|
|
|
@ -100,6 +100,8 @@
|
|||
// Errors
|
||||
"error.appleMusicSubRequired": "Apple Musicのサブスクリプションが必要です。",
|
||||
"error.connectionError": "Apple Musicに接続できません。",
|
||||
"error.noResults": "見つかりませんでした",
|
||||
"error.noResults.description": "もう一度お試しください。",
|
||||
|
||||
// Actions
|
||||
"action.addToLibrary": "ライブラリに追加",
|
||||
|
|
|
@ -101,6 +101,8 @@
|
|||
// Errors
|
||||
"error.appleMusicSubRequired": "需要订阅 Apple Music 以使用 Cider",
|
||||
"error.connectionError": "无法连接到 Apple Music。",
|
||||
"error.noResults": "没有结果",
|
||||
"error.noResults.description": "尝试更改搜索条件。",
|
||||
|
||||
// Actions
|
||||
"action.addToLibrary": "加入资料库",
|
||||
|
|
|
@ -98,6 +98,9 @@
|
|||
"home.followedArtists": "追蹤的藝人",
|
||||
// Errors
|
||||
"error.appleMusicSubRequired": "需要訂閱Apple Music以使用Cider",
|
||||
"error.connectionError": "There was a problem connecting to Apple Music.",
|
||||
"error.noResults": "No Results.",
|
||||
"error.noResults.description": "Try a new search.",
|
||||
// Actions
|
||||
"action.addToLibrary": "加入資料庫",
|
||||
"action.addToLibrary.success": "成功加入資料庫",
|
||||
|
|
|
@ -98,6 +98,9 @@
|
|||
// Errors
|
||||
"error.appleMusicSubRequired": "需要訂閱Apple Music以使用Cider",
|
||||
"error.connectionError": "無法連接到 Apple Music。",
|
||||
"error.noResults": "沒有結果",
|
||||
"error.noResults.description": "嘗試新的搜尋項目。",
|
||||
|
||||
// Actions
|
||||
"action.addToLibrary": "加入資料庫",
|
||||
"action.addToLibrary.success": "成功加入資料庫",
|
||||
|
|
|
@ -229,7 +229,7 @@
|
|||
}
|
||||
},
|
||||
{
|
||||
"name": "Share",
|
||||
"name": this.$root.getLz('term.share'),
|
||||
"action": function () {
|
||||
self.app.copyToClipboard(self.item.attributes.url)
|
||||
}
|
||||
|
|
|
@ -388,7 +388,7 @@
|
|||
app.showMenuPanel({
|
||||
items: {
|
||||
"share": {
|
||||
name: "Share",
|
||||
name: app.getLz('term.share'),
|
||||
icon: "./assets/feather/share.svg",
|
||||
action: () => {
|
||||
let route = ""
|
||||
|
|
|
@ -59,8 +59,8 @@
|
|||
<h3>Episodes</h3>
|
||||
</div>
|
||||
<div v-if="this.search.results.length == 0 && podcastSelected.id == -1" class="podcast-no-search-results">
|
||||
<h3>No Results</h3>
|
||||
<p>Try a new search.</p>
|
||||
<h3>{{app.getLz('error.noResults')}}</h3>
|
||||
<p>{{app.getLz('error.noResults.description')}}</p>
|
||||
</div>
|
||||
<podcast-episode :isselected="selected.id == episode.id" @dblclick.native="playEpisode(episode)" @click.native="selectEpisode(episode)" :item="episode"
|
||||
v-for="episode in episodes"></podcast-episode>
|
||||
|
|
|
@ -9,8 +9,8 @@
|
|||
</template>
|
||||
</div>
|
||||
<div v-else style="text-align: center">
|
||||
<h3>No Results</h3>
|
||||
<p>Try a new search.</p>
|
||||
<h3>{{app.getLz('error.noResults')}}</h3>
|
||||
<p>{{app.getLz('error.noResults.description')}}</p>
|
||||
</div>
|
||||
<div class="col" v-if="search.results.song">
|
||||
<div class="row">
|
||||
|
|
|
@ -30,7 +30,7 @@
|
|||
<div class="md-option-segment">
|
||||
{{$root.getLz('settings.option.audio.enableAdvancedFunctionality')}}
|
||||
<br>
|
||||
<small>{{$root.getLz('settings.header.audio.enableAdvancedFunctionality.description')}}</small>
|
||||
<small>{{$root.getLz('settings.option.audio.enableAdvancedFunctionality.description')}}</small>
|
||||
</div>
|
||||
<div class="md-option-segment md-option-segment_auto">
|
||||
<input type="checkbox" v-model="app.cfg.advanced.AudioContext" v-on:change="toggleAudioContext" switch/>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue