Text für Dienstleistungen erstellt. Englisch und Deutsch. Begrifflichkeiten ersetzt

This commit is contained in:
2026-03-26 23:34:58 +01:00
parent 79414e3d4a
commit 75f934028b
3 changed files with 74 additions and 6 deletions

View File

@@ -20,11 +20,39 @@ return [
],
'about' => [
'subtitle' => 'Unbeschwertes Einreisen in die stationären sowie temporären CCC Bezirksregionen',
'text1' => 'Das C3Gov bietet Ihnen die Ausstellung unserer zertifizierten Reisedokumente an, mit denen Sie unbeschwert in die stationär sowie temporär bestehenden Bezirksregionen des CCC einreisen und Ihren Aufenthalt verifizieren lassen können.',
'text1' => 'Das C3Gov bietet Ihnen die Ausstellung unserer zertifizierten Reisepässe an, mit denen Sie unbeschwert in die Botschaften [Hackspaces] sowie temporär bestehenden Bezirksregionen des CCC einreisen und Ihren Aufenthalt verifizieren lassen können.',
'text2' => 'Unser Team setzt bei dem Ausstellen auf hochqualitative Stempel und neuste Technik. Ob Hacker*innen-Reisepass oder Junghackerpass - unser stets motiviertes Team hilft Ihnen gerne weiter.',
'text3' => 'Jetzt neu',
'text4' => 'Um unsere Internetpräsenz zu erweitern, können Sie uns jetzt auch im Fediversum besuchen.',
'text5' => 'Klicken Sie dafür auf diesen Verweis:',
'insertvideo' => '*Hier Werbefilm einfügen*'
]
],
'services' => [
'title' => 'Unsere Dienstleistungen im Überblick',
'topic1' => [
'title' => 'Ausstellung von Reisepässen',
'content' => 'Unser Team kümmert sich um die Ausstellung der Reisepässe.
<br />Die Pässe werden durch neuste Technik automatisch bedruckt und mit Ihren Angaben versehen.
<br />Um die Echtheit des Passes zu verifizieren, erhält jeder Pass eine Sicherheitsnummer und wird letztendlich abgestempelt.
<br />Folgende Formate stehen Ihnen zur Verfügung:
<ul><li>Hacker*innen-Reisepass</li>
<li>Junghackerpass</li></ul>'
],
'topic2' => [
'title' => 'Nachträgliche Verifizierung der Reisepässe',
'content' => 'Sie besitzen bereits ein Reisedokument, welches jedoch noch nicht verifiziert wurde?
<br />Wir gehen mit Ihnen die nötigen Schritte durch, um Ihren Pass zu legitimisieren.
<br />Völlig unkompliziert.'
],
'topic3' => [
'title' => 'Zweitausstellung bei Verlust oder maximaler Auslastung Ihres Reisepasses',
'content' => 'Sollten Sie Ihren Reisepass verlieren oder sollte der Reisepass seine maximle Kapazität ausgereizt haben,
<br />stellen wir Ihnen gerne ein Ersatzdomument aus.
<br />Leider können Stempel vorheriger Besuche der Botschaften [Hackspaces] des CCC nicht ersetzt werden.'
],
'topic4' => [
'title' => 'Anwesenheitsbestätigung',
'content' => 'Sollten Sie eine Bestätigung Ihres Besuchs benötigen, stellen wir Ihnen diese selbstverständlich in Papierform aus.'
]
]
];

View File

@@ -19,12 +19,40 @@ return [
'apply' => 'Apply now',
],
'about' => [
'subtitle' => 'Hassle-Free Entry into CCCs Permanent and Temporary District Regions',
'text1' => 'C3Gov offers you the issuance of our certified travel documents, which allow you to enter the CCCs permanent and temporary district regions hassle-free and have your stay verified.',
'subtitle' => 'Hassle-Free Entry into CCC\'s Permanent and Temporary District Regions',
'text1' => 'C3Gov offers you the issuance of our certified travel documents, which allow you to enter the CCC\'s permanent and temporary district regions hassle-free and have your stay verified.',
'text2' => 'Our team uses high-quality stamps and the latest technology when issuing these documents.',
'text3' => 'NEW!!!',
'text4' => 'To expand our online presence, you can now also visit us on the Fediverse.',
'text5' => 'To do so, click on this link:',
'insertvideo' => '*Insert promotional video here*'
]
],
'services' => [
'title' => 'Our Service Overview',
'topic1' => [
'title' => 'Issuance of Hacker Passports',
'content' => 'Our team handles the issuance of travel documents.
<br />The passports are automatically printed using the latest technology - personalised with your details.
<br />To verify the authenticity of the passport, each one is assigned a security number and finally stamped.
<br />The following formats are available:
<ul><li>Hacker Passport</li>
<li>Junghackerpass [German only]</li></ul>'
],
'topic2' => [
'title' => 'Retrospective Verification of Passports',
'content' => 'Do you already have a passport that has not yet been verified?
<br />We will guide you through the necessary steps to validate your passport.
<br />Simple and clean.'
],
'topic3' => [
'title' => 'Replacement Passport issued in the Event of Loss or when your Passport is full',
'content' => 'Should you lose your passport or should your passport have reached its maximum capacity,
<br />we will be happy to issue you with a replacement document.
<br />Unfortunately, stamps from previous visits to the CCC\'s embassies [hackspaces] cannot be replaced.'
],
'topic4' => [
'title' => 'Certification of Attendance',
'content' => 'Should you require certification of your visit, we will of course provide you with an official document.'
]
]
];

View File

@@ -3,5 +3,17 @@
@endsection
@section('content')
<h1>{{ __('app.services.title') }}</h1>
<br />
<h2>{{ __('app.services.topic1.title') }}</h2>
<p>{!! __('app.services.topic1.content') !!}</p>
<br />
<h2>{{ __('app.services.topic2.title') }}</h2>
<p>{!! __('app.services.topic2.content') !!}</p>
<br />
<h2>{{ __('app.services.topic3.title') }}</h2>
<p>{!! __('app.services.topic3.content') !!}</p>
<br />
<h2>{{ __('app.services.topic4.title') }}</h2>
<p>{!! __('app.services.topic4.content') !!}</p>
@endsection