From 2bcf35fe8f2816157dd1b8e4ac8ff8499cafd6f3 Mon Sep 17 00:00:00 2001 From: Botho <1258870+elbotho@users.noreply.github.com> Date: Thu, 15 Feb 2024 14:38:42 +0100 Subject: [PATCH] add extra info to niedersachsen explanation --- .../components/content/license/exercise-license-notice.tsx | 7 ++++--- apps/web/src/data/de/license-data-short.ts | 2 +- .../solution-serlo-static-renderer.tsx | 2 +- 3 files changed, 6 insertions(+), 5 deletions(-) diff --git a/apps/web/src/components/content/license/exercise-license-notice.tsx b/apps/web/src/components/content/license/exercise-license-notice.tsx index 56bcb507c2..409e9eda1d 100644 --- a/apps/web/src/components/content/license/exercise-license-notice.tsx +++ b/apps/web/src/components/content/license/exercise-license-notice.tsx @@ -55,9 +55,10 @@ export function ExerciseLicenseNotice({ strings.license.appliesTo }: ${typeString})` - const tooltipExplanation = isCreativeCommons - ? explanation - : `${explanation} –– ${strings.license.nonFree}` + const tooltipExplanation = + isCreativeCommons || explanation.includes('---') + ? explanation + : `${explanation} --- ${strings.license.nonFree}` return ( <> diff --git a/apps/web/src/data/de/license-data-short.ts b/apps/web/src/data/de/license-data-short.ts index 902189f634..efe3448c19 100644 --- a/apps/web/src/data/de/license-data-short.ts +++ b/apps/web/src/data/de/license-data-short.ts @@ -87,7 +87,7 @@ export const licenses: LicenseData[] = [ { id: 26, title: - 'Dieses Werk wurde vom Kultusministerium Niedersachsen zur Verfügung gestellt', + 'Dieses Werk wurde vom Kultusministerium Niedersachsen zur Verfügung gestellt --- Die Lösungsvorschläge dagegen sind NICHT vom Land Niedersachsen.', shortTitle: 'Niedersächsisches Kultusministerium', url: 'https://aba-aufgaben.nibis.de', agreement: `Mit dem Speichern dieser Seite versicherst du, dass du in deinem Beitrag (damit sind auch Änderungen gemeint) die Aufgabenstellung vom Land Niedersachsen nicht inhaltlich verändert hast, keine Rechte Dritter verletzt und dich an die Nutzungsbedingungen gehalten hast.`, diff --git a/apps/web/src/serlo-editor-integration/serlo-plugin-wrappers/solution-serlo-static-renderer.tsx b/apps/web/src/serlo-editor-integration/serlo-plugin-wrappers/solution-serlo-static-renderer.tsx index 105ef726c0..ed8f67c581 100644 --- a/apps/web/src/serlo-editor-integration/serlo-plugin-wrappers/solution-serlo-static-renderer.tsx +++ b/apps/web/src/serlo-editor-integration/serlo-plugin-wrappers/solution-serlo-static-renderer.tsx @@ -18,7 +18,7 @@ const CommentAreaEntity = dynamic(() => ) ) -// Special version for serlo.org with author tools, comments and license +// Special version for serlo.org with author tools and comments export function SolutionSerloStaticRenderer(props: EditorSolutionDocument) { const { asPath } = useRouter() const ab = useAB()