Browse Source

Merge pull request #4091 from nextcloud/bugfix/noid/better-wording-for-promoted-view

Improve promoted view wording
pull/4095/head
Joas Schilling 5 years ago
committed by GitHub
parent
commit
07a5288f11
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 6
      src/components/TopBar/TopBar.vue

6
src/components/TopBar/TopBar.vue

@ -45,7 +45,7 @@
<button
class="primary"
@click="changeView">
{{ t('spreed', 'Use promoted view') }}
{{ t('spreed', 'Use speaker view') }}
</button>
</div>
</div>
@ -238,7 +238,7 @@ export default {
changeViewText() {
if (this.isGrid) {
return t('spreed', 'Promoted view')
return t('spreed', 'Speaker view')
} else {
return t('spreed', 'Grid view')
}
@ -252,7 +252,7 @@ export default {
},
layoutHintText() {
return t('Spreed', 'Too many videos to fit in the window. Maximize the window or switch to "promoted view" for a better experience.')
return t('Spreed', 'Too many videos to fit in the window. Maximize the window or switch to "speaker view" for a better experience.')
},
isFileConversation() {
return this.conversation.objectType === 'file' && this.conversation.objectId

Loading…
Cancel
Save