Skip to content

Commit

Permalink
Update:Collection & playlist Play button renamed to Play All #3320
Browse files Browse the repository at this point in the history
  • Loading branch information
advplyr committed Sep 14, 2024
1 parent 8493e56 commit b35fabb
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion client/pages/collection/_id.vue
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

<ui-btn v-if="showPlayButton" :disabled="streaming" color="success" :padding-x="4" small class="flex items-center h-9 mr-2" @click="clickPlay">
<span v-show="!streaming" class="material-symbols fill text-2xl -ml-2 pr-1 text-white">play_arrow</span>
{{ streaming ? $strings.ButtonPlaying : $strings.ButtonPlay }}
{{ streaming ? $strings.ButtonPlaying : $strings.ButtonPlayAll }}
</ui-btn>

<!-- RSS feed -->
Expand Down
2 changes: 1 addition & 1 deletion client/pages/playlist/_id.vue
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

<ui-btn v-if="showPlayButton" :disabled="streaming" color="success" :padding-x="4" small class="flex items-center h-9 mr-2" @click="clickPlay">
<span v-show="!streaming" class="material-symbols fill text-2xl -ml-2 pr-1 text-white">play_arrow</span>
{{ streaming ? $strings.ButtonPlaying : $strings.ButtonPlay }}
{{ streaming ? $strings.ButtonPlaying : $strings.ButtonPlayAll }}
</ui-btn>

<ui-icon-btn icon="edit" class="mx-0.5" @click="editClick" />
Expand Down
1 change: 1 addition & 0 deletions client/strings/en-us.json
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@
"ButtonOpenManager": "Open Manager",
"ButtonPause": "Pause",
"ButtonPlay": "Play",
"ButtonPlayAll": "Play All",
"ButtonPlaying": "Playing",
"ButtonPlaylists": "Playlists",
"ButtonPrevious": "Previous",
Expand Down

0 comments on commit b35fabb

Please sign in to comment.