'use client'; import { useTranslations, useLocale } from 'next-intl'; import { Link } from '@/lib/navigation'; export default function CuratorHelpClient() { const t = useTranslations('CuratorHelp'); const locale = useLocale(); return (

{t('title')}

{t('backToDashboard')}
{/* Einführung */}

{t('introductionTitle')}

{t('introductionText')}

{t('permissionsTitle')}

  • {t('permission1')}
  • {t('permission2')}
  • {t('permission3')}
  • {t('permission4')}

{t('note')}: {t('permissionNote')}

{/* Song-Upload */}

{t('uploadTitle')}

{t('uploadStepsTitle')}

  1. {t('uploadStep1')}
  2. {t('uploadStep2')}
  3. {t('uploadStep3')}
  4. {t('uploadStep4')}

{t('uploadBestPracticesTitle')}

  • {t('uploadBestPractice1')}
  • {t('uploadBestPractice2')}
  • {t('uploadBestPractice3')}

{t('tip')}: {t('uploadTip')}

{/* Song-Bearbeitung */}

{t('editingTitle')}

{t('singleEditTitle')}

{t('singleEditText')}

{t('batchEditTitle')}

{t('batchEditText')}

  • {t('batchEditFeature1')}
  • {t('batchEditFeature2')}
  • {t('batchEditFeature3')}
  • {t('batchEditFeature4')}

{t('genreSpecialAssignmentTitle')}

{t('genreSpecialAssignmentText')}

{/* Specials kuratieren */}

{t('curateSpecialsHelpTitle')}

{t('curateSpecialsHelpIntro')}

{t('curateSpecialsHelpStepsTitle')}

  1. {t('curateSpecialsHelpStep1')}
  2. {t('curateSpecialsHelpStep2')}
  3. {t('curateSpecialsHelpStep3')}
  4. {t('curateSpecialsHelpStep4')}

{t('note')}: {t('curateSpecialsPermissionsNote')}

{/* Kommentar-Verwaltung */}

{t('commentsTitle')}

{t('commentsText')}

{t('commentsActionsTitle')}

  • {t('markAsRead')}: {t('markAsReadText')}
  • {t('archive')}: {t('archiveText')}
{/* Best Practices */}

{t('bestPracticesTitle')}

  • {t('bestPractice1')}
  • {t('bestPractice2')}
  • {t('bestPractice3')}
  • {t('bestPractice4')}
  • {t('bestPractice5')}
{/* Troubleshooting */}

{t('troubleshootingTitle')}

{t('troubleshootingQ1')}

{t('troubleshootingA1')}

{t('troubleshootingQ2')}

{t('troubleshootingA2')}

{t('troubleshootingQ3')}

{t('troubleshootingA3')}

{t('troubleshootingQ4')}

{t('troubleshootingA4')}

); }