Remote Zugriff Anfrage

User
Remote in de
Assistant
Could you clarify what you mean by "Remote in de"? Are you asking about remote access, remote work, or something specific? Let me know so I can assist you better! 😊
User
$translations = [
"full-time" => [
"de" => "Vollzeit",
"en" => "Full-time"
],
"part-time" => [
"de" => "Teilzeit",
"en" => "Part-time"
],
"permanent" => [
"de" => "Festanstellung",
"en" => "Permanent employee"
],
"intern" => [
"de" => "Praktikum",
"en" => "Internship"
],
"trainee" => [
"de" => "Trainee Stelle",
"en" => "Trainee Stelle"
],
"freelance" => [
"de" => "Freelance Position",
"en" => "Freelance Position"
],
];
add translation for Remote
Assistant
Here’s the updated `$translations` array with the translation for "Remote":

$translations = [
    "full-time" => [
        "de" => "Vollzeit",
        "en" => "Full-time"
    ],
    "part-time" => [
        "de" => "Teilzeit",
        "en" => "Part-time"
    ],
    "permanent" => [
        "de" => "Festanstellung",
        "en" => "Permanent employee"
    ],
    "intern" => [
        "de" => "Praktikum",
        "en" => "Internship"
    ],
    "trainee" => [
        "de" => "Trainee Stelle",
        "en" => "Trainee Stelle"
    ],
    "freelance" => [
        "de" => "Freelance Position",
        "en" => "Freelance Position"
    ],
    "remote" => [
        "de" => "Remote",
        "en" => "Remote"
    ],
];

"Remote" is commonly used in German as well, so it remains the same. Let me know if you need any adjustments! 😊

Leave a Comment

Your email address will not be published. Required fields are marked *