Chaos-Events und Voranmeldungen

This commit is contained in:
2026-03-28 02:16:58 +01:00
parent ba2dcb98e2
commit a99b8eb9c1
23 changed files with 485 additions and 33 deletions

View File

@@ -65,5 +65,21 @@ return [
'title' => 'Contact',
'content' => 'Write us over in the <a href="https://chaos.social/@c3gov">fediverse</a>
<br />or via email to: <a href="mailto:Dezernat7Zustaendigkeit@C3Gov.De">Dezernat7Zustaendigkeit@C3Gov.De</a>'
]
],
'preapplication' => [
'title' => 'Pre-application for Passport according to § 5 C3GovVerwV',
'content' => 'Please select a temporary district region to submit your pre-application for a passport.
<br />After you have submitted the pre-application, you will receive a confirmation by e-mail.',
'noevent' => 'There are currently no temporary district regions available.',
'passport_type' => 'Passport type',
'passport' => [
'standard' => 'Hacker Passport',
'kid' => 'Junghackerpass [German only]',
],
'mail' => 'E-mail address',
'firstname' => 'First name (Nickname)',
'lastname' => 'Last name (optional)',
'location' => 'Hackspace / Location (optional)',
'apply' => 'Submit pre-application'
]
];

View File

@@ -0,0 +1,27 @@
<?php
return [
'LoginController' => [
'not_permitted' => 'This action is not permitted.',
'email_in_use' => 'This email address is already in use.',
'invalid_token' => 'Invalid token.',
'wrong_credentials' => 'Wrong credentials.',
'unknown_error' => 'An unknown error occurred.',
'unknown_error_with_details' => 'An unknown error occurred: :error',
],
'PreApplicationController' => [
'success' => 'Preapplication submitted successfully. Please check your email inbox.',
'already_submitted' => 'You have already submitted a preapplication.',
'wrong_passport_type' => 'Wrong passport type',
'invalid_email_format' => 'Invalid email format',
'failed_to_process' => 'Failed to process preapplication: :error',
'invalid_characters' => 'Invalid characters in name or location',
'event_not_found' => 'Chaos event not found',
],
'BlogController' => [
'error_occurred' => 'An error occurred while processing the blog: :error',
],
'TickerController' => [
'error_occurred' => 'An error occurred while processing the ticker: :error',
],
];

11
lang/en/mail.php Normal file
View File

@@ -0,0 +1,11 @@
<?php
return [
'preapplication' => [
'subject' => 'Your pre-applicaction for issuing a hacker passport',
'body1' => "Hello,<br /><br />Your preliminary application has been successfully submitted.<br />Your reference number is:",
'body2' => "<br /><br />The following data has been submitted:<br />",
'body3' => "<br /><br />Please keep this email for your records. <br />If possible, print out form 5, which is attached to the email. Fill in your reference number and bring it with you when you pick up your hacker passport.",
'signature' => "Sincerely,<br /><br /><br />Your C3Gov Your office in the CCC district region"
]
];