Skip to content

Commit

Permalink
Merge pull request #718 from nextcloud/l10n/suggestion_text
Browse files Browse the repository at this point in the history
 [I18N] Clarity suggestion for text and hotkey
  • Loading branch information
tacruc authored May 19, 2022
2 parents 54289a5 + bb7eb92 commit c56e6db
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/map/HistoryControl.vue
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@
<div id="history">
<button
v-if="lastActions.length"
v-tooltip="{ content: t('maps', 'Cancel {action} (Ctrl+z)', { action: lastActionLabel }) }"
v-tooltip="{ content: t('maps', 'Undo {action} (Ctrl+Z)', { action: lastActionLabel }) }"
@click="$emit('cancel')">
<span class="icon icon-history" />
</button>
<button
v-if="lastCanceledActions.length"
v-tooltip="{ content: t('maps', 'Redo {action} (Ctrl+Z)', { action: lastCanceledActionLabel }) }"
v-tooltip="{ content: t('maps', 'Redo {action} (Ctrl+Shift+Z)', { action: lastCanceledActionLabel }) }"
@click="$emit('redo')">
<span class="icon icon-redo" />
</button>
Expand Down

0 comments on commit c56e6db

Please sign in to comment.