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

github.com/nextcloud/notes.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFelix Nüsse <felix.nuesse@t-online.de>2022-10-03 13:32:19 +0300
committerFelix Nüsse <felix.nuesse@t-online.de>2022-10-03 13:32:19 +0300
commite9e47d2deb42595e61571cec85461ed138da44ff (patch)
treecf9d65b2781e01044f960a1e1d1bcecdf37481ba
parent6c726c42713956fe54392a7c02c35b05c10f1dc1 (diff)
remove duplicate new-note-buttonfeature/noid/help
Update Text Signed-off-by: Felix Nüsse <felix.nuesse@t-online.de>
-rw-r--r--src/components/AppHelp.vue7
1 files changed, 2 insertions, 5 deletions
diff --git a/src/components/AppHelp.vue b/src/components/AppHelp.vue
index 759e68de..c3df0c66 100644
--- a/src/components/AppHelp.vue
+++ b/src/components/AppHelp.vue
@@ -21,9 +21,6 @@
<div class="feature icon-toggle-filelist">
{{ t('notes', 'Use Markdown markups to style your text.') }}
</div>
- <button class="button-icon-add icon-add" @click="onNewNote">
- {{ t('notes', 'Create a new Note with markdown samples') }}
- </button>
<table>
<tr>
<th>
@@ -142,8 +139,8 @@ export default {
{ shortcut: t('notes', 'CTRL+H'), action: t('notes', 'Toggle heading for current line') },
{ shortcut: t('notes', 'CTRL+ALT+C'), action: t('notes', 'The selection will be turned into monospace') },
{ shortcut: t('notes', 'CTRL+ALT+I'), action: t('notes', 'Insert image at the cursor') },
- { shortcut: t('notes', 'CTRL+ALT+L'), action: t('notes', 'kes the current line a list element with a number') },
- { shortcut: t('notes', 'SHIFT+CTRL+H'), action: t('notes', 'toggleHeadingBigger') },
+ { shortcut: t('notes', 'CTRL+ALT+L'), action: t('notes', 'Makes the current line a list element with a number') },
+ { shortcut: t('notes', 'SHIFT+CTRL+H'), action: t('notes', 'Set the current line as a big Heading') },
{ shortcut: t('notes', 'CTRL+I'), action: t('notes', 'Make the selection italic') },
{ shortcut: t('notes', 'CTRL+K'), action: t('notes', 'Insert link at cursor') },
{ shortcut: t('notes', 'CTRL+L'), action: t('notes', 'Makes the current line a list element') },