Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/components/CreateSampleButton.vue
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<template>
<NcButton type="secondary" @click="onNewNote">
<PlusIcon slot="icon" :size="20" />
{{ t('notes', 'Create a sample note with markdown') }}
{{ t('notes', 'Create a sample note with Markdown') }}
</NcButton>
</template>
<script>
Expand Down
4 changes: 2 additions & 2 deletions src/components/Modal/EditorHint.vue
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@
<div class="editor-hint-modal">
<h2>{{ t('notes', 'Rich text editor') }}</h2>

<p>{{ t('notes', 'You can now switch to use the easy to use and distraction free rich text editor. It allows you to edit notes without seeing any markdown marks.') }}</p>
<p>{{ t('notes', 'You can now switch to use the easy to use and distraction free rich text editor. It allows you to edit notes without seeing any Markdown marks.') }}</p>

<p>{{ t('notes', 'This option can also be changed later on in the Notes app settings.') }}</p>

<div class="submit-buttons">
<NcButton type="secondary" :disabled="loading" @click="useOld">
{{ t('notes', 'Keep plain markdown editor') }}
{{ t('notes', 'Keep plain Markdown editor') }}
</NcButton>
<NcButton type="primary" :disabled="loading" @click="useNew">
{{ t('notes', 'Use rich editor') }}
Expand Down