diff --git a/src/components/Envelope.vue b/src/components/Envelope.vue index aad27d236a94583f720a929f641a944b1e0fbb1b..375b1f2ee497cc8b76c7601deddd602ab9e86ce5 100644 --- a/src/components/Envelope.vue +++ b/src/components/Envelope.vue @@ -45,14 +45,14 @@ <Moment :timestamp="data.dateInt" /> </div> <Actions class="app-content-list-item-menu" menu-align="right"> - <ActionButton icon="icon-starred" @click.prevent="onToggleFlagged"> + <ActionButton icon="icon-important" @click.prevent="onToggleImportant"> {{ - data.flags.flagged ? t('mail', 'Unfavorite') : t('mail', 'Favorite') + data.flags.important ? t('mail', 'Mark unimportant') : t('mail', 'Mark important') }} </ActionButton> - <ActionButton icon="icon-important" @click.prevent="onToggleImportant"> + <ActionButton icon="icon-starred" @click.prevent="onToggleFlagged"> {{ - data.flags.important ? t('mail', 'Mark unimportant') : t('mail', 'Mark important') + data.flags.flagged ? t('mail', 'Mark unfavorite') : t('mail', 'Mark favorite') }} </ActionButton> <ActionButton icon="icon-mail" @click.prevent="onToggleSeen"> diff --git a/src/components/Message.vue b/src/components/Message.vue index 209ee080d93255ee4a0d8ba09c3706735555c237..0c34639e8329c76a758b66a4b4b16e56ddfd3dac 100644 --- a/src/components/Message.vue +++ b/src/components/Message.vue @@ -38,14 +38,14 @@ <ActionButton icon="icon-forward" @click="forwardMessage"> {{ t('mail', 'Forward') }} </ActionButton> - <ActionButton icon="icon-starred" @click.prevent="onToggleFlagged"> + <ActionButton icon="icon-important" @click.prevent="onToggleImportant"> {{ - envelope.flags.flagged ? t('mail', 'Unfavorite') : t('mail', 'Favorite') + envelope.flags.important ? t('mail', 'Mark unimportant') : t('mail', 'Mark important') }} </ActionButton> - <ActionButton icon="icon-important" @click.prevent="onToggleImportant"> + <ActionButton icon="icon-starred" @click.prevent="onToggleFlagged"> {{ - envelope.flags.important ? t('mail', 'Mark unimportant') : t('mail', 'Mark important') + envelope.flags.flagged ? t('mail', 'Mark unfavorite') : t('mail', 'Mark favorite') }} </ActionButton> <ActionButton icon="icon-mail" @click="onToggleSeen"> diff --git a/src/components/NavigationAccount.vue b/src/components/NavigationAccount.vue index 463fb1bef87064bc1da608377b560cb5f9d9c463..67a0247ec6823efb4b42f132a2caad6deedcd90f 100644 --- a/src/components/NavigationAccount.vue +++ b/src/components/NavigationAccount.vue @@ -39,7 +39,7 @@ {{ quotaText }} </ActionText> <ActionRouter :to="settingsRoute" icon="icon-settings"> - {{ t('mail', 'Edit account') }} + {{ t('mail', 'Account settings') }} </ActionRouter> <ActionCheckbox :checked="account.showSubscribedOnly" @@ -55,7 +55,7 @@ {{ t('mail', 'Saving') }} </ActionText> <ActionButton v-if="!isFirst" icon="icon-triangle-n" @click="changeAccountOrderUp"> - {{ t('mail', 'Move Up') }} + {{ t('mail', 'Move up') }} </ActionButton> <ActionButton v-if="!isLast" icon="icon-triangle-s" @click="changeAccountOrderDown"> {{ t('mail', 'Move down') }} diff --git a/src/components/NavigationMailbox.vue b/src/components/NavigationMailbox.vue index e25945110f405bcd2832291752dfb3d4acf282e1..01bf3779f5aa271967fe8505794575a7a23d79cf 100644 --- a/src/components/NavigationMailbox.vue +++ b/src/components/NavigationMailbox.vue @@ -43,7 +43,7 @@ </ActionText> <ActionButton - v-if="mailbox.specialRole !== 'flagged'" + v-if="mailbox.specialRole !== 'flagged' && !account.isUnified" icon="icon-mail" :title="t('mail', 'Mark all as read')" :disabled="loadingMarkAsRead"