Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/text.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVinicius Reis <vinicius.reis@nextcloud.com>2022-07-29 18:53:22 +0300
committerVinicius Reis (Rebase PR Action) <luiz.vinicius73@gmail.com>2022-08-01 14:56:13 +0300
commite264032329f5673bc93a3031ef52cc42ac1fe2f1 (patch)
tree15152f4d3129198a9d97f0389d7c5da9651c86bc
parent2d73c6a6e9c68efd2081e18a40d0150dd9bbfecf (diff)
✏️ (#2735): typofix
Signed-off-by: Vinicius Reis <vinicius.reis@nextcloud.com>
-rw-r--r--src/components/Menu/keys.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/Menu/keys.js b/src/components/Menu/keys.js
index 768c08609..947450edd 100644
--- a/src/components/Menu/keys.js
+++ b/src/components/Menu/keys.js
@@ -14,7 +14,7 @@ const MODIFIERS = {
const TRANSLATIONS = {
[MODIFIERS.Mod]: t('text', isMac ? 'Command' : 'Control'),
[MODIFIERS.Control]: t('text', 'Ctrl'),
- [MODIFIERS.Alt]: t('text', isMac ? 'Option' : 'Command'),
+ [MODIFIERS.Alt]: t('text', isMac ? 'Option' : 'Alt'),
[MODIFIERS.Shift]: t('text', 'Shift'),
}