mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2024-11-21 17:26:29 -05:00
fix(i18n): clarify where to find /features for new users
Signed-off-by: Lukas Mertens <git@lukas-mertens.de>
This commit is contained in:
parent
322b47817e
commit
9016116012
3 changed files with 6 additions and 2 deletions
|
@ -96,6 +96,7 @@ SPDX-License-Identifier: CC-BY-SA-4.0
|
||||||
- Note tags can be set as yaml-array in frontmatter.
|
- 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.
|
- 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.
|
- 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.
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|
|
@ -233,7 +233,7 @@
|
||||||
"failed": "Error while uploading {{fileName}}"
|
"failed": "Error while uploading {{fileName}}"
|
||||||
},
|
},
|
||||||
"untitledNote": "Untitled",
|
"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.",
|
"infoToc": "Structure your note with headings to see a table-of-contents here.",
|
||||||
"help": {
|
"help": {
|
||||||
"shortcuts": {
|
"shortcuts": {
|
||||||
|
|
|
@ -4,6 +4,7 @@
|
||||||
* SPDX-License-Identifier: AGPL-3.0-only
|
* SPDX-License-Identifier: AGPL-3.0-only
|
||||||
*/
|
*/
|
||||||
import { useApplicationState } from '../../../hooks/common/use-application-state'
|
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 { useDarkModeState } from '../../../hooks/common/use-dark-mode-state'
|
||||||
import { cypressAttribute, cypressId } from '../../../utils/cypress-attribute'
|
import { cypressAttribute, cypressId } from '../../../utils/cypress-attribute'
|
||||||
import { findLanguageByCodeBlockName } from '../../markdown-renderer/extensions/base/code-block-markdown-extension/find-language-by-code-block-name'
|
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 darkModeActivated = useDarkModeState()
|
||||||
|
|
||||||
|
const editorOrigin = useBaseUrl(ORIGIN.EDITOR)
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div
|
<div
|
||||||
className={`d-flex flex-column h-100 position-relative`}
|
className={`d-flex flex-column h-100 position-relative`}
|
||||||
|
@ -140,7 +143,7 @@ export const EditorPane: React.FC<ScrollProps> = ({ scrollState, onScroll, onMak
|
||||||
<ToolBar />
|
<ToolBar />
|
||||||
<ReactCodeMirror
|
<ReactCodeMirror
|
||||||
editable={firstUpdateHappened && connectionSynced}
|
editable={firstUpdateHappened && connectionSynced}
|
||||||
placeholder={t('editor.placeholder') ?? ''}
|
placeholder={t('editor.placeholder', { host: editorOrigin }) ?? ''}
|
||||||
extensions={extensions}
|
extensions={extensions}
|
||||||
width={'100%'}
|
width={'100%'}
|
||||||
height={'100%'}
|
height={'100%'}
|
||||||
|
|
Loading…
Reference in a new issue