fix(i18n): clarify where to find /features for new users

Signed-off-by: Lukas Mertens <git@lukas-mertens.de>
This commit is contained in:
Lukas Mertens 2022-12-28 10:04:06 +01:00 committed by Tilman Vatteroth
parent 322b47817e
commit 9016116012
3 changed files with 6 additions and 2 deletions

View file

@ -96,6 +96,7 @@ SPDX-License-Identifier: CC-BY-SA-4.0
- Note tags can be set as yaml-array in frontmatter.
- If only one external login provider is configured, the sign-in button will directly link to it.
- Links in Gist-Frames work only if explicitly opened in new tabs.
- Changed default editor-placeholder to include the full url to the /features-page as new users might not find it otherwise.
---

View file

@ -233,7 +233,7 @@
"failed": "Error while uploading {{fileName}}"
},
"untitledNote": "Untitled",
"placeholder": "← Start by entering a title here\n===\nVisit the features page if you don't know what to do.\nHappy hacking :)",
"placeholder": "← Start by entering a title here\n===\nVisit {{host}}features if you don't know what to do.\nHappy hacking :)",
"infoToc": "Structure your note with headings to see a table-of-contents here.",
"help": {
"shortcuts": {

View file

@ -4,6 +4,7 @@
* SPDX-License-Identifier: AGPL-3.0-only
*/
import { useApplicationState } from '../../../hooks/common/use-application-state'
import { useBaseUrl, ORIGIN } from '../../../hooks/common/use-base-url'
import { useDarkModeState } from '../../../hooks/common/use-dark-mode-state'
import { cypressAttribute, cypressId } from '../../../utils/cypress-attribute'
import { findLanguageByCodeBlockName } from '../../markdown-renderer/extensions/base/code-block-markdown-extension/find-language-by-code-block-name'
@ -129,6 +130,8 @@ export const EditorPane: React.FC<ScrollProps> = ({ scrollState, onScroll, onMak
const darkModeActivated = useDarkModeState()
const editorOrigin = useBaseUrl(ORIGIN.EDITOR)
return (
<div
className={`d-flex flex-column h-100 position-relative`}
@ -140,7 +143,7 @@ export const EditorPane: React.FC<ScrollProps> = ({ scrollState, onScroll, onMak
<ToolBar />
<ReactCodeMirror
editable={firstUpdateHappened && connectionSynced}
placeholder={t('editor.placeholder') ?? ''}
placeholder={t('editor.placeholder', { host: editorOrigin }) ?? ''}
extensions={extensions}
width={'100%'}
height={'100%'}