fix(i18n): correct German translations for video upload hints and descriptions

- Updated the German translations in socialnetwork.json for improved accuracy and clarity.
- Enhanced the text in EroticPicturesView.vue and EroticVideosView.vue to ensure proper spelling and grammar in user-facing messages.
This commit is contained in:
Torsten Schulz (local)
2026-03-27 16:29:18 +01:00
parent 9e8f8e8077
commit 39032570e3
3 changed files with 24 additions and 15 deletions

View File

@@ -274,7 +274,7 @@
"videosTitle": "Erotikvideos", "videosTitle": "Erotikvideos",
"videosIntro": "Eigene Videos werden getrennt vom normalen Social-Bereich verwaltet. Hier organisierst du Uploads, Sichtbarkeit und Moderationsstatus an einem Ort.", "videosIntro": "Eigene Videos werden getrennt vom normalen Social-Bereich verwaltet. Hier organisierst du Uploads, Sichtbarkeit und Moderationsstatus an einem Ort.",
"videoUploadTitle": "Erotikvideo hochladen", "videoUploadTitle": "Erotikvideo hochladen",
"videoUploadHint": "Lade hier Videos fuer deinen freigeschalteten Erotikbereich hoch und pflege Titel sowie Beschreibung direkt beim Upload.", "videoUploadHint": "Lade hier Videos für deinen freigeschalteten Erotikbereich hoch und pflege Titel sowie Beschreibung direkt beim Upload.",
"videoDescription": "Beschreibung", "videoDescription": "Beschreibung",
"videoFile": "Videodatei", "videoFile": "Videodatei",
"myVideos": "Meine Videos", "myVideos": "Meine Videos",

View File

@@ -311,14 +311,25 @@ export default {
} }
.erotic-gallery-hero { .erotic-gallery-hero {
background: padding: 1.4rem 1.5rem;
radial-gradient(circle at top right, rgba(204, 44, 94, 0.18), transparent 38%), }
linear-gradient(140deg, rgba(37, 25, 33, 0.98), rgba(83, 34, 51, 0.96));
color: #fff1f5; .gallery-kicker {
display: inline-flex;
margin-bottom: 0.5rem;
padding: 0.25rem 0.7rem;
border-radius: 999px;
background: rgba(120, 195, 138, 0.14);
color: #42634e;
font-size: 0.78rem;
font-weight: 700;
letter-spacing: 0.08em;
text-transform: uppercase;
} }
.erotic-gallery-hero p { .erotic-gallery-hero p {
color: rgba(255, 241, 245, 0.85); margin: 0;
color: var(--color-text-secondary);
} }
.erotic-image-card { .erotic-image-card {

View File

@@ -66,8 +66,8 @@
<ul class="erotic-videos-checklist"> <ul class="erotic-videos-checklist">
<li>{{ $t('socialnetwork.erotic.videoUploadHint') }}</li> <li>{{ $t('socialnetwork.erotic.videoUploadHint') }}</li>
<li>Nach dem Upload erscheint dein Video direkt in deiner Bibliothek und kann dort weiter gepflegt werden.</li> <li>Nach dem Upload erscheint dein Video direkt in deiner Bibliothek und kann dort weiter gepflegt werden.</li>
<li>Nutze {{ $t('socialnetwork.erotic.reportAction') }} direkt am jeweiligen Eintrag, wenn Inhalte geprueft werden sollen.</li> <li>Nutze {{ $t('socialnetwork.erotic.reportAction') }} direkt am jeweiligen Eintrag, wenn Inhalte geprüft werden sollen.</li>
<li>Praezise Titel und Beschreibungen erleichtern Einordnung, Verwaltung und Moderation.</li> <li>Präzise Titel und Beschreibungen erleichtern Einordnung, Verwaltung und Moderation.</li>
</ul> </ul>
</section> </section>
</aside> </aside>
@@ -253,11 +253,7 @@ export default {
} }
.erotic-videos-hero { .erotic-videos-hero {
background: padding: 1.4rem 1.5rem;
radial-gradient(circle at top right, rgba(204, 44, 94, 0.18), transparent 38%),
linear-gradient(140deg, rgba(37, 25, 33, 0.98), rgba(83, 34, 51, 0.96));
color: #fff1f5;
padding: 1.5rem;
} }
.erotic-videos-eyebrow { .erotic-videos-eyebrow {
@@ -265,7 +261,8 @@ export default {
margin-bottom: 0.5rem; margin-bottom: 0.5rem;
padding: 0.25rem 0.7rem; padding: 0.25rem 0.7rem;
border-radius: 999px; border-radius: 999px;
background: rgba(255, 241, 245, 0.12); background: rgba(120, 195, 138, 0.14);
color: #42634e;
font-size: 0.78rem; font-size: 0.78rem;
font-weight: 700; font-weight: 700;
letter-spacing: 0.08em; letter-spacing: 0.08em;
@@ -273,7 +270,8 @@ export default {
} }
.erotic-videos-hero p { .erotic-videos-hero p {
color: rgba(255, 241, 245, 0.84); margin: 0;
color: var(--color-text-secondary);
} }
.erotic-videos-workspace { .erotic-videos-workspace {