diff --git a/app/Filament/Pages/General/ThemeSettings.php b/app/Filament/Pages/General/ThemeSettings.php index a906a8f..b612ceb 100755 --- a/app/Filament/Pages/General/ThemeSettings.php +++ b/app/Filament/Pages/General/ThemeSettings.php @@ -36,7 +36,10 @@ final class ThemeSettings extends Page implements HasForms } #[\Override] - protected static ?string $title = 'Theme & Button Settings'; + public static function getTitle(): string + { + return __('Theme & Button Settings'); + } #[\Override] protected string $view = 'filament.pages.general.theme-settings'; diff --git a/app/Filament/Resources/Hotel/BadgeTextEditors/BadgeTextEditorResource.php b/app/Filament/Resources/Hotel/BadgeTextEditors/BadgeTextEditorResource.php index 152527b..b413af2 100755 --- a/app/Filament/Resources/Hotel/BadgeTextEditors/BadgeTextEditorResource.php +++ b/app/Filament/Resources/Hotel/BadgeTextEditors/BadgeTextEditorResource.php @@ -30,10 +30,16 @@ class BadgeTextEditorResource extends Resource protected static string|\BackedEnum|null $navigationIcon = 'heroicon-o-pencil-square'; #[\Override] - protected static ?string $navigationLabel = 'Badge Editor'; + public static function getNavigationLabel(): string + { + return __('Badge Editor'); + } #[\Override] - protected static ?string $modelLabel = 'Badge Text'; + public static function getModelLabel(): string + { + return __('Badge Text'); + } #[\Override] protected static ?string $slug = 'hotel/badge-text-editor'; @@ -45,16 +51,16 @@ class BadgeTextEditorResource extends Resource ->components([ TextInput::make('badge_key') ->required() - ->label('Badge Key - Expl. ATOM101') - ->placeholder('This is the badge code'), + ->label(__('Badge Key - Expl. ATOM101')) + ->placeholder(__('This is the badge code')), TextInput::make('badge_name') ->required() - ->label('Badge Name') - ->placeholder('This is the name of the badge: Expl. The ATOM Badge'), + ->label(__('Badge Name')) + ->placeholder(__('This is the name of the badge: Expl. The ATOM Badge')), Textarea::make('badge_description') ->required() - ->label('Badge Description') - ->placeholder('Please add a description for the badge.'), + ->label(__('Badge Description')) + ->placeholder(__('Please add a description for the badge.')), ]); } @@ -67,7 +73,7 @@ class BadgeTextEditorResource extends Resource return $table ->columns([ ImageColumn::make('badge_key') - ->label('Badge Image') + ->label(__('Badge Image')) ->getStateUsing(function ($record) use ($badgesPath) { $badgeName = str_replace('badge_desc_', '', $record->badge_key); @@ -76,7 +82,7 @@ class BadgeTextEditorResource extends Resource ->width(50) ->height(50), TextColumn::make('badge_name') - ->label('Badge Code & Name') + ->label(__('Badge Code & Name')) ->formatStateUsing(fn ($record) => $record->badge_key . ' : ' . $record->badge_name) ->searchable(query: function ($query, $search) { $query->where('badge_key', 'like', "%{$search}%") @@ -84,7 +90,7 @@ class BadgeTextEditorResource extends Resource }) ->sortable(), TextColumn::make('badge_description') - ->label('Badge Description') + ->label(__('Badge Description')) ->getStateUsing(fn ($record) => Str::limit($record->badge_description, 65)) ->searchable(), ]) diff --git a/app/Filament/Resources/Hotel/CatalogEditors/CatalogEditorResource.php b/app/Filament/Resources/Hotel/CatalogEditors/CatalogEditorResource.php index 9e6e213..3ab6986 100755 --- a/app/Filament/Resources/Hotel/CatalogEditors/CatalogEditorResource.php +++ b/app/Filament/Resources/Hotel/CatalogEditors/CatalogEditorResource.php @@ -26,19 +26,22 @@ class CatalogEditorResource extends Resource protected static string|\UnitEnum|null $navigationGroup = 'Hotel'; #[\Override] - protected static ?string $navigationLabel = 'Catalog Editor'; + public static function getNavigationLabel(): string + { + return __('Catalog Editor'); + } #[\Override] public static function table(Table $table): Table { return $table ->columns([ - TextColumn::make('id')->label('ID')->sortable(), - TextColumn::make('caption')->label('Page Name')->searchable(), - TextColumn::make('parent_id')->label('Parent ID'), - TextColumn::make('order_num')->label('Order'), - IconColumn::make('visible')->boolean()->label('Visible'), - IconColumn::make('enabled')->boolean()->label('Enabled'), + TextColumn::make('id')->label(__('ID'))->sortable(), + TextColumn::make('caption')->label(__('Page Name'))->searchable(), + TextColumn::make('parent_id')->label(__('Parent ID')), + TextColumn::make('order_num')->label(__('Order')), + IconColumn::make('visible')->boolean()->label(__('Visible')), + IconColumn::make('enabled')->boolean()->label(__('Enabled')), ]) ->recordActions([]) ->toolbarActions([]); @@ -50,53 +53,53 @@ class CatalogEditorResource extends Resource return $schema ->components([ TextInput::make('caption') - ->label('Page Name') + ->label(__('Page Name')) ->required() ->maxLength(128), TextInput::make('caption_save') - ->label('Name TAG') + ->label(__('Name TAG')) ->maxLength(25) - ->helperText('Lowercase letters only (a-z), no spaces.'), + ->helperText(__('Lowercase letters only (a-z), no spaces.')), Select::make('parent_id') - ->label('Parent Page') + ->label(__('Parent Page')) ->options(fn () => CatalogPage::pluck('caption', 'id')->toArray()) ->default(-1), TextInput::make('order_num') - ->label('Order') + ->label(__('Order')) ->numeric() ->default(1), TextInput::make('icon_image') - ->label('Icon Number') + ->label(__('Icon Number')) ->numeric() ->default(1), TextInput::make('page_layout') - ->label('Page Layout') + ->label(__('Page Layout')) ->default('default_3x3'), TextInput::make('min_rank') - ->label('Min Rank') + ->label(__('Min Rank')) ->numeric() ->default(1), Toggle::make('visible') - ->label('Visible') + ->label(__('Visible')) ->default(true), Toggle::make('enabled') - ->label('Enabled') + ->label(__('Enabled')) ->default(true), Toggle::make('club_only') - ->label('Club Only (HC)') + ->label(__('Club Only (HC)')) ->default(false), Toggle::make('vip_only') - ->label('VIP Only') + ->label(__('VIP Only')) ->default(false), ]); } diff --git a/app/Filament/Resources/Hotel/OpenPositions/OpenPositionResource.php b/app/Filament/Resources/Hotel/OpenPositions/OpenPositionResource.php index 0f072fc..e7576a1 100755 --- a/app/Filament/Resources/Hotel/OpenPositions/OpenPositionResource.php +++ b/app/Filament/Resources/Hotel/OpenPositions/OpenPositionResource.php @@ -37,7 +37,7 @@ class OpenPositionResource extends Resource return $schema ->components([ ToggleButtons::make('position_kind') - ->label('Type') + ->label(__('Type')) ->inline() ->options([ 'rank' => 'Ranks', diff --git a/app/Filament/Resources/Hotel/StaffApplications/StaffApplicationResource.php b/app/Filament/Resources/Hotel/StaffApplications/StaffApplicationResource.php index 7f446bd..31b2017 100755 --- a/app/Filament/Resources/Hotel/StaffApplications/StaffApplicationResource.php +++ b/app/Filament/Resources/Hotel/StaffApplications/StaffApplicationResource.php @@ -42,13 +42,13 @@ class StaffApplicationResource extends Resource ->searchable(), Select::make('rank_id') - ->label('Rank') + ->label(__('Rank')) ->relationship('rank', 'rank_name') ->searchable() ->nullable(), Select::make('team_id') - ->label('Team') + ->label(__('Team')) ->relationship('team', 'rank_name') ->searchable() ->nullable(), @@ -65,12 +65,12 @@ class StaffApplicationResource extends Resource return $table ->columns([ TextColumn::make('user.username') - ->label('User') + ->label(__('User')) ->sortable() ->searchable(), TextColumn::make('applied_for') - ->label('Applied For') + ->label(__('Applied For')) ->state(fn (WebsiteStaffApplications $record) => $record->team_id ? ($record->team->rank_name ?? '-') : ($record->rank->rank_name ?? '-')) @@ -82,7 +82,7 @@ class StaffApplicationResource extends Resource ->sortable(), TextColumn::make('status') - ->label('Status') + ->label(__('Status')) ->badge() ->formatStateUsing(fn (?string $state) => ucfirst($state ?? 'pending')) ->color(fn (?string $state) => [ @@ -98,22 +98,22 @@ class StaffApplicationResource extends Resource ]) ->recordActions([ Action::make('approveTeam') - ->label('Approve to Team') + ->label(__('Approve to Team')) ->icon('heroicon-o-check-circle') ->color('success') ->visible(fn (WebsiteStaffApplications $r) => filled($r->team_id) && ($r->status === 'pending' || is_null($r->status))) ->requiresConfirmation() - ->modalHeading('Approve to Team') + ->modalHeading(__('Approve to Team')) ->modalDescription(function (WebsiteStaffApplications $r): string { $user = $r->user; $targetTeam = optional($r->team)->rank_name ?? '—'; $currentTeam = optional($user?->team)->rank_name; if ($currentTeam && $user?->team_id !== $r->team_id) { - return "This user is currently in '{$currentTeam}'. Approving will move them to '{$targetTeam}'. Continue?"; + return __('This user is currently in :team. Approving will move them to :target. Continue?', ['team' => $currentTeam, 'target' => $targetTeam]); } - return "Approve this application and assign the user to '{$targetTeam}'?"; + return __('Approve this application and assign the user to :team?', ['team' => $targetTeam]); }) ->action(function (WebsiteStaffApplications $r) { $user = $r->user; @@ -121,8 +121,8 @@ class StaffApplicationResource extends Resource if (! $user || ! $team) { Notification::make() - ->danger()->title('Unable to approve') - ->body('Missing user or team on this application.') + ->danger()->title(__('Unable to approve')) + ->body(__('Missing user or team on this application.')) ->send(); return; @@ -141,27 +141,27 @@ class StaffApplicationResource extends Resource ]); Notification::make() - ->success()->title('Approved') - ->body("{$user->username} has been added to '{$team->rank_name}'.") + ->success()->title(__('Approved')) + ->body(__(':username has been added to :team.', ['username' => $user->username, 'team' => $team->rank_name])) ->send(); }), Action::make('rejectTeam') - ->label('Reject') + ->label(__('Reject')) ->icon('heroicon-o-x-circle') ->color('danger') ->visible(fn (WebsiteStaffApplications $r) => filled($r->team_id) && in_array($r->status, ['pending', 'approved', null], true)) ->requiresConfirmation() - ->modalHeading('Reject Application') + ->modalHeading(__('Reject Application')) ->modalDescription(function (WebsiteStaffApplications $r): string { $user = $r->user; $teamName = optional($r->team)->rank_name ?? '—'; if ($r->status === 'approved') { - return "This will mark the application as rejected and remove {$user->username} from '{$teamName}' (if still on it). Continue?"; + return __('This will mark the application as rejected and remove :username from :team. Continue?', ['username' => $user->username, 'team' => $teamName]); } - return 'This will mark the application as rejected. Continue?'; + return __('This will mark the application as rejected. Continue?'); }) ->action(function (WebsiteStaffApplications $r) { $user = $r->user; @@ -169,8 +169,8 @@ class StaffApplicationResource extends Resource if (! $user || ! $team) { Notification::make() - ->danger()->title('Unable to reject') - ->body('Missing user or team on this application.') + ->danger()->title(__('Unable to reject')) + ->body(__('Missing user or team on this application.')) ->send(); return; @@ -187,21 +187,21 @@ class StaffApplicationResource extends Resource ]); Notification::make() - ->success()->title('Rejected') + ->success()->title(__('Rejected')) ->body($r->status === 'approved' - ? "{$user->username} has been removed from '{$team->rank_name}' and the application marked as rejected." - : 'Application has been marked as rejected.') + ? __(':username has been removed from :team and the application marked as rejected.', ['username' => $user->username, 'team' => $team->rank_name]) + : __('Application has been marked as rejected.')) ->send(); }), Action::make('reopen') - ->label('Re-open') + ->label(__('Re-open')) ->icon('heroicon-o-arrow-path') ->color('warning') ->visible(fn (WebsiteStaffApplications $r) => $r->status === 'rejected') ->requiresConfirmation() - ->modalHeading('Re-open Application') - ->modalDescription('This will set the application status back to pending.') + ->modalHeading(__('Re-open Application')) + ->modalDescription(__('This will set the application status back to pending.')) ->action(function (WebsiteStaffApplications $r) { $r->update([ 'status' => 'pending', @@ -210,8 +210,8 @@ class StaffApplicationResource extends Resource ]); Notification::make() - ->success()->title('Re-opened') - ->body('Application status set to pending.') + ->success()->title(__('Re-opened')) + ->body(__('Application status set to pending.')) ->send(); }), diff --git a/lang/nl.json b/lang/nl.json index 553b1a6..bc7052a 100644 --- a/lang/nl.json +++ b/lang/nl.json @@ -1,310 +1,1709 @@ { - "commandocentrum.live_status": "Live Status", - "commandocentrum.live_status_desc": "Real-time hotel statistieken", - "commandocentrum.online": "Online", - "commandocentrum.emulator": "Emulator", - "commandocentrum.database": "Database", - "commandocentrum.load": "Load", - "commandocentrum.server_info": "Server Informatie", - "commandocentrum.server_info_desc": "Gedetailleerde server status", - "commandocentrum.php_laravel": "PHP & Laravel", - "commandocentrum.memory_disk": "Memory & Disk", - "commandocentrum.memory": "Memory", - "commandocentrum.disk": "Disk", - "commandocentrum.uptime": "Uptime", - "commandocentrum.system_health": "Systeem Gezondheid", - "commandocentrum.system_health_desc": "Automatische systeem diagnostiek", - "commandocentrum.refresh": "Vernieuwen", - "commandocentrum.healthy": "Gezond", - "commandocentrum.warnings": "Waarschuwingen", - "commandocentrum.errors": "Fouten", - "commandocentrum.system_status": "Systeem Status", - "commandocentrum.critical_issues": "Kritieke Problemen", - "commandocentrum.hotel_status": "Hotel Status", - "commandocentrum.hotel_status_desc": "Emulator en Nitro status", - "commandocentrum.hotel_alert": "Hotel Alert", - "commandocentrum.hotel_alert_desc": "Stuur een bericht naar alle online gebruikers", - "commandocentrum.send_alert": "Verstuur Alert", + "2-factor authentication adds an extra layer of security to your account, making it physical impossible to access it without having access to your mobile phone as only your phone will contain the 2-factor authentication code which will be re-generated every 30 seconds automatically": "Tweefactorauthenticatie voegt een extra beveiligingslaag toe aan je account, waardoor het fysiek onmogelijk is om er toegang toe te krijgen zonder toegang tot je mobiele telefoon, omdat alleen je telefoon de tweefactorauthenticatiecode bevat die elke 30 seconden automatisch opnieuw wordt gegenereerd", + "2FA": "2FA", + ":username has been added to :team.": ":username is toegevoegd aan :team.", + ":username has been removed from :team and the application marked as rejected.": ":username is verwijderd uit :team en de sollicitatie is gemarkeerd als afgewezen.", + "A new verification link has been sent to the email address you provided during registration.": "Er is een nieuwe verificatielink verzonden naar het e-mailadres dat je tijdens de registratie hebt opgegeven.", + "ADS Images": "ADS-afbeeldingen", + "About our team": "Over ons team", + "About you": "Over jou", + "Accent": "Accent", + "Account": "Account", + "Account age:": "Accountleeftijd:", + "Account settings": "Accountinstellingen", + "Account:": "Account:", + "Achievement score": "Prestatiescore", + "Actions": "Acties", + "Activate 2FA": "2FA activeren", + "Active Tasks": "Actieve taken", + "Add": "Toevoegen", + "Add Text": "Tekst toevoegen", + "Add an extra layer of security to your account by enabling two-factor authentication": "Voeg een extra beveiligingslaag toe aan je account door tweefactorauthenticatie in te schakelen", + "Add custom CSS and JavaScript to your site": "Voeg aangepaste CSS en JavaScript toe aan je site", + "Add custom HTML before ": "Aangepaste HTML toevoegen voor ", + "Add custom HTML before ": "Aangepaste HTML toevoegen voor ", + "Add custom HTML to header and footer": "Aangepaste HTML toevoegen aan header en footer", + "Add your own CSS styles here": "Voeg hier je eigen CSS-stijlen toe", + "Add your own JavaScript here": "Voeg hier je eigen JavaScript toe", + "Adjust the size of various elements": "Pas de grootte van verschillende elementen aan", + "Administration": "Beheer", + "Advanced Header & Footer": "Geavanceerde kop- en voettekst", + "Alert settings have been saved successfully.": "Alertinstellingen zijn succesvol opgeslagen.", + "Align center": "Centreren", + "Align left": "Links uitlijnen", + "Align right": "Rechts uitlijnen", + "All": "Alle", + "All Rares": "Alle zeldzaamheden", + "All tickets": "Alle tickets", + "Allow other users to invite you to rooms": "Toestaan dat andere gebruikers je uitnodigen voor kamers", + "Allow other users to send you friend requests": "Toestaan dat andere gebruikers je vriendschapsverzoeken sturen", + "Amount": "Bedrag", + "An error occurred while deleting the comment": "Er is een fout opgetreden bij het verwijderen van de reactie", + "An online virtual world where you can create your own avatar, make friends, chat, create rooms and much more!": "Een online virtuele wereld waar je je eigen avatar kunt maken, vrienden kunt maken, kunt chatten, kamers kunt maken en nog veel meer!", + "Animation effect": "Animatie-effect", + "Animation effects for different elements": "Animatie-effecten voor verschillende elementen", + "Animation for the icon during loading": "Animatie voor het pictogram tijdens het laden", + "Animations": "Animaties", + "App Name": "App-naam", + "Application End Date": "Einddatum sollicitatie", + "Application Start Date": "Startdatum sollicitatie", + "Application has been marked as rejected.": "Sollicitatie is gemarkeerd als afgewezen.", + "Application status set to pending.": "Sollicitatiestatus ingesteld op in behandeling.", + "Application submitted": "Sollicitatie ingediend", + "Applied For": "Gesolliciteerd voor", + "Apply From": "Solliciteer van", + "Apply To": "Solliciteer tot", + "Apply for staff": "Solliciteer voor personeel", + "Approve this application and assign the user to :team?": "Deze sollicitatie goedkeuren en de gebruiker toewijzen aan :team?", + "Approve to Team": "Goedkeuren voor team", + "Approved": "Goedgekeurd", + "Are you sure you want to cancel the scheduled maintenance?": "Weet je zeker dat je het geplande onderhoud wilt annuleren?", + "Are you sure you want to delete this?": "Weet je zeker dat je dit wilt verwijderen?", + "Are you sure you want to disable maintenance mode? Users will be able to access the site.": "Weet je zeker dat je de onderhoudsmodus wilt uitschakelen? Gebruikers hebben dan weer toegang tot de site.", + "Are you sure you want to enable maintenance mode? Users will not be able to access the site.": "Weet je zeker dat je de onderhoudsmodus wilt inschakelen? Gebruikers hebben dan geen toegang tot de site.", + "Articles": "Artikelen", + "As you dive into Atom CMS, we encourage you to explore the extensive range of features we have curated to help you bring your vision to life. From customizable templates to seamless integrations with clients like Nitro, we will have you set up in no time.": "Terwijl je Atom CMS verkent, moedigen we je aan om de uitgebreide reeks functies te ontdekken die we hebben samengesteld om je te helpen je visie tot leven te brengen. Van aanpasbare sjablonen tot naadloze integraties met clients zoals Nitro, we hebben je in een mum van tijd klaar.", + "Ascending": "Oplopend", + "Assistance": "Assistentie", + "Atom CMS is built with the community in mind, meaning we highly value community input, rather than only bringing our own ideas & vision to the CMS we try our very best to implement suggestions made by our beloved community. We want everyone to be able to contribute or customise Atom CMS to their needs without having a bachelor in programming.": "Atom CMS is gebouwd met de community in gedachten, wat betekent dat we community-input zeer waarderen. In plaats van alleen onze eigen ideeën en visie aan de CMS toe te voegen, doen we ons uiterste best om suggesties van onze geliefde community te implementeren. We willen dat iedereen kan bijdragen aan of Atom CMS kan aanpassen aan hun behoeften zonder een bachelor in programmeren te hebben.", + "Atom CMS sole purpose is to empower hotel owners like you. We want you to be able to run your hotel with ease. Our user-friendly interface, robust features, and helpful community are here to ensure that your experience with Atom CMS is nothing short of exceptional!": "Het enige doel van Atom CMS is om hoteleigenaren zoals jou te ondersteunen. We willen dat je je hotel gemakkelijk kunt runnen. Onze gebruiksvriendelijke interface, robuuste functies en behulpzame community zijn hier om ervoor te zorgen dat je ervaring met Atom CMS niets minder dan uitzonderlijk is!", + "Author": "Auteur", + "Auto-play radio": "Radio automatisch afspelen", + "Automatic dark theme for systems that prefer it": "Automatisch donker thema voor systemen die dit prefereren", + "Automatically start playing radio when you visit the site": "Radio automatisch starten wanneer je de site bezoekt", + "Avatar Border": "Avatarrand", + "Avatar Border Color": "Avatarrandkleur", + "Avatar Border Radius": "Avatarrandradius", + "Avatars & Images": "Avatars & afbeeldingen", + "Avg per Category": "Gem. per categorie", + "Back": "Terug", + "Back to home": "Terug naar home", + "Back to login": "Terug naar inloggen", + "Background": "Achtergrond", + "Background Color": "Achtergrondkleur", + "Background Image": "Achtergrondafbeelding", + "Background color": "Achtergrondkleur", + "Background color of dropdown menus": "Achtergrondkleur van vervolgkeuzemenu's", + "Background color of the navbar": "Achtergrondkleur van de navigatiebalk", + "Badge": "Badge", + "Badge Actions": "Badgeacties", + "Badge Background": "Badgeachtergrond", + "Badge Border Radius": "Badgerandradius", + "Badge Code & Name": "Badgecode & naam", + "Badge Description": "Badgebeschrijving", + "Badge Description:": "Badgebeschrijving:", + "Badge Drawer": "Badgelade", + "Badge Drawer Details": "Badgelade details", + "Badge Editor": "Badge-editor", + "Badge Generator": "Badgegenerator", + "Badge Image": "Badgeafbeelding", + "Badge Key - Expl. ATOM101": "Badgesleutel - Bijv. ATOM101", + "Badge Name": "Badgenaam", + "Badge Name:": "Badgenaam:", + "Badge Text": "Badgetekst", + "Badge Upload": "Badge-upload", + "Badge description": "Badgebeschrijving", + "Badge drawing area": "Badgetekengebied", + "Badge name and description cannot contain URLs.": "Badgenaam en -beschrijving mogen geen URL's bevatten.", + "Badge preview": "Badgevoorbeeld", + "Badge(s) included:": "Badge(s) inbegrepen:", + "Badges": "Badges", + "Badges & Tags": "Badges & tags", + "Ban expiration:": "Ban-verloop:", + "Ban reason:": "Ban-reden:", + "Ban type:": "Ban-type:", + "Banned": "Verbannen", + "Banner": "Banner", + "Become a staff member": "Word personeelslid", + "Below you will see all the comments, written on this article": "Hieronder zie je alle reacties op dit artikel", + "Beta code": "Beta-code", + "Black": "Zwart", + "Blink": "Knipperen", + "Blockquote": "Citaat", + "Blue": "Blauw", + "Blur": "Vervagen", + "Blur In": "Invervagen", + "Blur Out": "Uitvervagen", + "Body": "Body", + "Body text size (px)": "Body tekstgrootte (px)", + "Bold": "Vet", + "Bold & Modern": "Vet & Modern", + "Book": "Boek", + "Boosting referrals by making own accounts will lead to removal of all progress, currency, inventory and a potential ban": "Het opkrikken van verwijzingen door eigen accounts aan te maken leidt tot verwijdering van alle voortgang, valuta, inventaris en een mogelijke ban", + "Border color": "Randkleur", + "Border only (no background)": "Alleen rand (geen achtergrond)", + "Border radius (0-50)": "Randradius (0-50)", + "Border radius (px)": "Randradius (px)", + "Border width (px)": "Randbreedte (px)", + "Borders": "Randen", + "Bounce": "Stuiteren", + "Bouncing dots": "Stuiterende stippen", + "Brightness": "Helderheid", + "Brown": "Bruin", + "Browser": "Browser", + "Bubbly": "Bubbelig", + "Button Animations": "Knopanimaties", + "Button Border Color": "Knoprandkleur", + "Button Color": "Knopkleur", + "Button Settings": "Knopinstellingen", + "Button Text": "Knoptekst", + "Button URL": "Knop-URL", + "Button text size (px)": "Knoptekstgrootte (px)", + "Buttons effect": "Knopeffect", + "Buy Badge": "Badge kopen", + "By": "Door", + "Cancel": "Annuleren", + "Cancel Schedule": "Planning annuleren", + "Cancel Scheduled Maintenance?": "Gepland onderhoud annuleren?", + "Card": "Kaart", + "Card Background": "Kaartachtergrond", + "Card Border": "Kaartrand", + "Card Border Radius": "Kaartrandradius", + "Card Border Width": "Kaartrandbreedte", + "Card Padding": "Kaartopvulling", + "Card padding (px)": "Kaartopvulling (px)", + "Cards & Containers": "Kaarten & containers", + "Catalog Editor": "Cataloguseditor", + "Categories": "Categorieën", + "Category": "Categorie", + "Change your password by filling out the fields below": "Wijzig je wachtwoord door onderstaande velden in te vullen", + "Check back later for updates": "Kom later terug voor updates", + "Choose Color": "Kies kleur", + "Choose Your Style": "Kies je stijl", + "Choose a Style": "Kies een stijl", + "Choose a new password for your Account.": "Kies een nieuw wachtwoord voor je account.", + "Choose a preset style or customize yourself": "Kies een vooraf ingestelde stijl of pas zelf aan", + "Choose a secure password": "Kies een veilig wachtwoord", + "Choose avatar": "Kies avatar", + "Choose your avatar": "Kies je avatar", + "Circle": "Cirkel", + "Claim your referrals reward!": "Claim je verwijzingsbeloning!", + "Classic": "Klassiek", + "Classic Serif": "Klassiek schreeflettertype", + "Clear All": "Alles wissen", + "Clear Canvas": "Canvas wissen", + "Click the yellow Hotel button below, then click on run flash` when prompted to. See you in the Hotel!": "Klik op de gele Hotel-knop hieronder en klik op `run flash` wanneer daarom wordt gevraagd. Tot ziens in het hotel!", + "Click to change color": "Klik om kleur te wijzigen", + "Client": "Client", + "Client Login Effect": "Client-inlogeffect", + "Client Toolbar": "Clientwerkbalk", + "Close": "Sluiten", + "Close modal": "Modal sluiten", + "Club Only (HC)": "Alleen Club (HC)", + "Code": "Code", + "Color": "Kleur", + "Color Cycle": "Kleurcyclus", + "Color Palette": "Kleurenpalet", + "Color Themes": "Kleurenthema's", + "Color only": "Alleen kleur", + "Colors": "Kleuren", + "Comments": "Reacties", + "Community": "Community", + "Complete setup": "Installatie voltooien", + "Condensed": "Gecondenseerd", + "Configuration": "Configuratie", + "Confirm": "Bevestigen", + "Confirm new password": "Bevestig nieuw wachtwoord", + "Confirm password": "Bevestig wachtwoord", + "Confirm your password": "Bevestig je wachtwoord", + "Content": "Inhoud", + "Contests": "Contesten", + "Continue to step 2": "Doorgaan naar stap 2", + "Continue to step 3": "Doorgaan naar stap 3", + "Continue to step 4": "Doorgaan naar stap 4", + "Contrast": "Contrast", + "Cool": "Koel", + "Copy": "Kopiëren", + "Copy code": "Code kopiëren", + "Copy color:": "Kleur kopiëren:", + "Cozy": "Gezellig", + "Create": "Aanmaken", + "Create a free account, and be a part of a fun online world!": "Maak een gratis account aan en maak deel uit van een leuke online wereld!", + "Create a new account": "Nieuw account aanmaken", + "Create a ticket": "Een ticket aanmaken", + "Create account": "Account aanmaken", + "Create an account": "Account aanmaken", + "Create your account!": "Maak je account aan!", + "Created": "Aangemaakt", + "Created At": "Aangemaakt op", + "Credits": "Credits", + "Credits:": "Credits:", + "Currency": "Valuta", + "Current Color": "Huidige kleur", + "Current balance: Login required": "Huidig saldo: Inloggen vereist", + "Current password": "Huidig wachtwoord", + "Custom CSS": "Aangepaste CSS", + "Custom CSS & JavaScript": "Aangepaste CSS en JavaScript", + "Custom Footer HTML": "Aangepaste footer HTML", + "Custom Header HTML": "Aangepaste header HTML", + "Custom JavaScript": "Aangepaste JavaScript", + "Custom subtitle text": "Aangepaste subtekst", + "Customize the user profile page": "De gebruikersprofielpagina aanpassen", + "Customize your hotel buttons": "Pas je hotelknoppen aan", + "Cyberpunk": "Cyberpunk", + "DJ Rooster": "DJ Rooster", + "Danger": "Gevaar", + "Danger Button": "Gevaarknop", + "Dark": "Donker", + "Dark mode support": "Donkere modus ondersteuning", + "Dashboard": "Dashboard", + "Date": "Datum", + "Default": "Standaard", + "Default Border": "Standaardrand", + "Default Border Width": "Standaardrandbreedte", + "Default Tab": "Standaard tabblad", + "Delete": "Verwijderen", + "Descending": "Aflopend", + "Description": "Beschrijving", + "Description:": "Beschrijving:", + "Detail": "Detail", + "Details": "Details", + "Diameter of the icon circle in pixels": "Diameter van de pictogramcirkel in pixels", + "Diamonds": "Diamanten", + "Did you forget your password?": "Ben je je wachtwoord vergeten?", + "Disable 2FA": "2FA uitschakelen", + "Disable Maintenance": "Onderhoud uitschakelen", + "Disable Maintenance Mode?": "Onderhoudsmodus uitschakelen?", + "Discord": "Discord", + "Do do not have permission to delete this message": "Je hebt geen toestemming om dit bericht te verwijderen", + "Documents": "Documenten", + "Donate": "Doneren", + "Donations are important, as it will help to pay our monthly bills needed to keep the hotel up & running, as well as adding new and exciting features for you and others to enjoy!": "Donaties zijn belangrijk, omdat ze helpen om onze maandelijkse rekeningen te betalen die nodig zijn om het hotel draaiende te houden, en om nieuwe en opwindende functies toe te voegen waar jij en anderen van kunnen genieten!", + "Done": "Gereed", + "Dont have an account? Join now!": "Nog geen account? Word nu lid!", + "Double bar": "Dubbele balk", + "Download": "Downloaden", + "Download Badge": "Badge downloaden", + "Download badge": "Badge downloaden", + "Download logo": "Logo downloaden", + "Draw your very own badge": "Teken je eigen badge", + "Drawing Tools": "Tekengereedschap", + "Drop Shadow": "Slagschaduw", + "Dropdown": "Vervolgkeuzemenu", + "Dropdown style": "Vervolgkeuzemenu stijl", + "Dropdowns": "Vervolgkeuzemenu's", + "Duckets": "Duckets", + "Duration (minutes)": "Duur (minuten)", + "E-mail": "E-mail", + "Earth": "Aarde", + "Edit": "Bewerken", + "Edit Message": "Bericht bewerken", + "Edit your ticket": "Ticket bewerken", + "Effect for all buttons": "Effect voor alle knoppen", + "Effect for links": "Effect voor links", + "Effect for navigation items": "Effect voor navigatie-items", + "Effect speed": "Effectsnelheid", + "Elastic": "Elastisch", + "Element Sizes": "Elementgroottes", + "Email": "E-mail", + "Email Password Reset Link": "Wachtwoordresetlink e-mailen", + "Email notifications": "E-mailnotificaties", + "Enable Custom CSS": "Aangepaste CSS inschakelen", + "Enable Custom JavaScript": "Aangepaste JavaScript inschakelen", + "Enable Maintenance": "Onderhoud inschakelen", + "Enable Maintenance Mode?": "Onderhoudsmodus inschakelen?", + "Enable PWA": "PWA inschakelen", + "Enable animations and transitions": "Animaties en overgangen inschakelen", + "Enable client login effect": "Client-inlogeffect inschakelen", + "Enable danger button style": "Gevaarknopstijl inschakelen", + "Enable effects": "Effecten inschakelen", + "Enable or disable all button effects": "Alle knopeffecten in- of uitschakelen", + "Enable outline button style": "Omtrekknopstijl inschakelen", + "Enable secondary button style": "Secundaire knopstijl inschakelen", + "End Time": "Eindtijd", + "Enter a new secure password. Do not forget to save it somewhere safe": "Voer een nieuw veilig wachtwoord in. Vergeet niet het op een veilige plek te bewaren", + "Enter a title for your ticket": "Voer een titel in voor je ticket", + "Enter badge name": "Voer badgenaam in", + "Enter description": "Voer beschrijving in", + "Enter one of your recovery codes if you cannot access your authenticator app.": "Voer een van je herstelcodes in als je geen toegang hebt tot je authenticator-app.", + "Enter text": "Voer tekst in", + "Enter the beta code you have been provided with": "Voer de beta-code in die je hebt ontvangen", + "Enter the two-factor authentication code from your authenticator app.": "Voer de tweefactorauthenticatiecode uit je authenticator-app in.", + "Enter your beta code": "Voer je beta-code in", + "Enter your current password": "Voer je huidige wachtwoord in", + "Enter your email": "Voer je e-mail in", + "Enter your installation key": "Voer je installatiesleutel in", + "Enter your password": "Voer je wachtwoord in", + "Enter your username": "Voer je gebruikersnaam in", + "Erase": "Wissen", + "Erase mode:": "Wismodus:", + "Error": "Fout", + "Error logs": "Foutlogboeken", + "Estimated Completion": "Geschatte voltooiing", + "Estimated completion": "Geschatte voltooiing", + "Events": "Evenementen", + "Export": "Exporteren", + "Extra Large": "Extra groot", + "Extra Options": "Extra opties", + "FX": "FX", + "Fade In": "Invloeien", + "Fade Out": "Uitvloeien", + "Falling": "Vallend", + "Fast": "Snel", + "File Name": "Bestandsnaam", + "File Path": "Bestandspad", + "Files": "Bestanden", + "Fill": "Vullen", + "Filters": "Filters", + "Find rares quickly": "Vind snel zeldzaamheden", + "Fire": "Vuur", + "Flash": "Flash", + "Flash Texts": "Flash-teksten", + "Flash client": "Flash-client", + "Flip": "Omkeren", + "Flip X": "X omkeren", + "Flip Y": "Y omkeren", + "Float": "Zweven", + "Follow us on X": "Volg ons op X", + "Font Family": "Lettertype", + "Font size (px)": "Lettergrootte (px)", + "Font weight": "Lettergewicht", + "Footer": "Footer", + "Footer Background": "Voettekst achtergrond", + "Footer Links": "Voettekst links", + "Footer Text": "Voettekst tekst", + "For captions and placeholder text": "Voor bijschriften en placeholdertekst", + "For cards and containers": "Voor kaarten en containers", + "For success messages, links, etc.": "Voor succesberichten, links, enz.", + "Forgot password": "Wachtwoord vergeten", + "Forgot your password? No problem. Just let us know your email address and we will email you a password reset link that will allow you to choose a new one.": "Je wachtwoord vergeten? Geen probleem. Laat ons je e-mailadres weten en we sturen je een wachtwoordresetlink waarmee je een nieuwe kunt instellen.", + "Form Inputs": "Formulierinvoervelden", + "Friend requests": "Vriendschapsverzoeken", + "Friendly": "Vriendelijk", + "Friendly & Warm": "Vriendelijk & Warm", + "Friends": "Vrienden", + "Friends:": "Vrienden:", + "Full name of the app": "Volledige naam van de app", + "Fully customize the loading screen shown before the Nitro client loads": "Pas het laadscherm volledig aan dat wordt getoond voordat de Nitro-client laadt", + "Functional": "Functioneel", + "Furniture included:": "Meubels inbegrepen:", + "Futuristic": "Futuristisch", + "Generate your very own logo": "Genereer je eigen logo", + "Generator": "Generator", + "Get flash": "Flash gebruiken", + "Giveaways": "Giveaways", + "Glass Effect": "Glaseffect", + "Glitch": "Glitch", + "Glow": "Gloeien", + "Go back to values": "Terug naar waarden", + "Gray": "Grijs", + "Grayscale": "Grijswaarden", + "Green": "Groen", + "Grid": "Raster", + "Groups": "Groepen", + "Guestbook": "Gastenboek", + "Guilds:": "Gildes:", + "Hang": "Hangen", + "Have a look at some of the great moments captured by users around the hotel.": "Bekijk enkele van de geweldige momenten die door gebruikers in het hotel zijn vastgelegd.", + "Header": "Header", + "Header & Footer": "Koptekst & voettekst", + "Header Background": "Koptekst achtergrond", + "Header Links": "Koptekst links", + "Header Style": "Koptekst stijl", + "Header Text": "Koptekst tekst", + "Heading H1 size (px)": "Kop H1 grootte (px)", + "Heading H2 size (px)": "Kop H2 grootte (px)", + "Heading H3 size (px)": "Kop H3 grootte (px)", + "Heartbeat": "Hartslag", + "Heavy": "Zwaar", + "Hello there! We are truly grateful that you have chosen Atom CMS for your hotel.": "Hallo daar! We zijn enorm dankbaar dat je Atom CMS hebt gekozen voor je hotel.", + "Hello!": "Hallo!", + "Help Center": "Helpcentrum", + "Help center": "Helpcentrum", + "Herladen": "Herladen", + "Hide empty teams": "Verberg lege teams", + "Home": "Home", + "Homepage": "Homepage", + "Hours online": "Uren online", + "Housekeeping": "Huishouding", + "Hover background color": "Hover-achtergrondkleur", + "Hover color": "Hover-kleur", + "Hover scale (1.0 = none)": "Hover schaal (1.0 = geen)", + "How fast the animation plays": "Hoe snel de animatie afspeelt", + "How long should maintenance last?": "Hoe lang moet het onderhoud duren?", + "How round are the corners?": "Hoe rond zijn de hoeken?", + "Hue Rotate": "Tint draaien", + "ID": "ID", + "IP": "IP", + "IP Current Device": "IP huidig apparaat", + "Ice": "IJs", + "Icon": "Pictogram", + "Icon Number": "Pictogramnummer", + "Icon background color": "Pictogramachtergrondkleur", + "Icon size (px)": "Pictogramgrootte (px)", + "If you believe this is a mistake, please reach out to one of our staff members through our Discord server!": "Als je denkt dat dit een fout is, neem dan contact op met een van onze personeelsleden via onze Discord-server!", + "Image": "Afbeelding", + "Image URL": "Afbeeldings-URL", + "Images": "Afbeeldingen", + "Impact": "Impact", + "Import": "Importeren", + "Import Picture:": "Afbeelding importeren:", + "Import a picture for your badge": "Importeer een afbeelding voor je badge", + "Important Information": "Belangrijke informatie", + "In Progress": "In behandeling", + "Indent": "Inspringen", + "Info": "Info", + "Information": "Informatie", + "Input Background": "Invoerachtergrond", + "Input Border": "Invoerrand", + "Input Focus": "Invoerfocus", + "Input Placeholder": "Invoerplaceholder", + "Input Text": "Invoertekst", + "Insert Reaction": "Reactie invoegen", + "Installation key": "Installatiesleutel", + "Invalid Two Factor Authentication code": "Ongeldige tweefactorauthenticatiecode", + "Invert": "Omkeren", + "Is Desktop": "Is desktop", + "It is important to consider the consequences of our spending habits, especially when it comes to financial decisions. If you find yourself tempted to spend money you do not have, take a moment to reflect.": "Het is belangrijk om na te denken over de gevolgen van onze bestedingsgewoonten, vooral als het om financiële beslissingen gaat. Als je in de verleiding komt om geld uit te geven dat je niet hebt, neem dan even een moment om na te denken.", + "It seems like debug mode is enabled while being in production. It is heavily recommended too set APP_DEBUG in the .env file to false in production mode": "Het lijkt erop dat de foutopsporingsmodus is ingeschakeld terwijl de site in productie is. Het wordt ten zeerste aanbevolen om APP_DEBUG in het .env-bestand op false te zetten in productiemodus", + "It seems like there were no rares matching your search input": "Er zijn geen zeldzaamheden gevonden die overeenkomen met je zoekopdracht", + "Italic": "Cursief", + "Join discord": "Word lid van Discord", + "Join our Discord": "Word lid van onze Discord", + "Join server": "Word lid van server", + "Join the Team": "Word lid van het team", + "Justify": "Uitvullen", + "Keep an eye on all your active sessions": "Houd al je actieve sessies in de gaten", + "Keep up to date with the latest hotel gossip.": "Blijf op de hoogte van het laatste hotelnieuws.", + "Key": "Sleutel", + "Klik op een foto om deze te vergroten": "Klik op een foto om deze te vergroten", + "Label": "Label", + "Large": "Groot", + "Large icon size (px)": "Grote pictogramgrootte (px)", + "Last Activity": "Laatste activiteit", + "Last online:": "Laatst online:", + "Last updated": "Laatst bijgewerkt", + "Latest Photos": "Laatste foto's", + "Latest news": "Laatste nieuws", + "Leaderboard": "Leaderboard", + "Leaderboards": "Leaderboards", + "Leave empty to use default": "Leeg laten om standaard te gebruiken", + "Light": "Licht", + "Line": "Lijn", + "Line Through": "Doorgestreept", + "Link Color": "Linkkleur", + "Link Hover": "Link hover", + "Links": "Links", + "List": "Lijst", + "Literary": "Literair", + "Live Shouts": "Live shouts", + "Load more": "Laad meer", + "Loading": "Laden", + "Loading & Spinners": "Laden & spinners", + "Loading bar color": "Laadbalkkleur", + "Loading bar style": "Laadbalkstijl", + "Loading...": "Laden...", + "Log Out": "Uitloggen", + "Login": "Inloggen", + "Login to apply": "Log in om te solliciteren", + "Login with Discord": "Inloggen met Discord", + "Login with GitHub": "Inloggen met GitHub", + "Login with Google": "Inloggen met Google", + "Logo generator": "Logogenerator", + "Logo text": "Logotekst", + "Logout": "Uitloggen", + "Lowercase letters only (a-z), no spaces.": "Alleen kleine letters (a-z), geen spaties.", + "Main": "Hoofd", + "Maintenance": "Onderhoud", + "Maintenance Message": "Onderhoudsbericht", + "Maintenance Mode": "Onderhoudsmodus", + "Maintenance Progress": "Onderhoudsvoortgang", + "Maintenance break!": "Onderhoudspauze!", + "Maintenance message updated": "Onderhoudsbericht bijgewerkt", + "Maintenance mode disabled": "Onderhoudsmodus uitgeschakeld", + "Maintenance mode enabled": "Onderhoudsmodus ingeschakeld", + "Maintenance scheduled": "Onderhoud gepland", + "Make button text uppercase": "Knoptekst in hoofdletters", + "Make sure to use an email that you remember, if you ever lose your password, your email will be required.": "Zorg dat je een e-mail gebruikt die je onthoudt. Als je ooit je wachtwoord verliest, heb je je e-mail nodig.", + "Make your hotel installable as an app": "Maak je hotel installeerbaar als een app", + "Manage your account settings": "Beheer je accountinstellingen", + "Manage your preferences": "Beheer je voorkeuren", + "Mark as Completed": "Markeren als voltooid", + "Mark as In Progress": "Markeren als in behandeling", + "Max users:": "Max. gebruikers:", + "Media": "Media", + "Medium": "Medium", + "Medium icon size (px)": "Medium pictogramgrootte (px)", + "Menu": "Menu", + "Min Rank": "Minimale rang", + "Minimal": "Minimaal", + "Minimalist": "Minimalistisch", + "Missing icon": "Ontbrekend pictogram", + "Missing user or team on this application.": "Gebruiker of team ontbreekt bij deze sollicitatie.", + "Motto": "Motto", + "Muted Text": "Gedempte tekst", + "My Badge Details": "Mijn badgegegevens", + "My Profile": "Mijn profiel", + "My name is,": "Mijn naam is,", + "My profile": "Mijn profiel", + "Name": "Naam", + "Name TAG": "Naam TAG", + "Name shown on home screen": "Naam weergegeven op het startscherm", + "Navbar": "Navigatiebalk", + "Navbar Background": "Navigatiebalk achtergrond", + "Navbar Height": "Navigatiebalk hoogte", + "Navbar Shadow": "Navigatiebalk schaduw", + "Navbar Style": "Navigatiebalk stijl", + "Navbar Text": "Navigatiebalk tekst", + "Navigation": "Navigatie", + "Navigation effect": "Navigatie-effect", + "Navigation font size (px)": "Navigatielettergrootte (px)", + "Navigation height (px)": "Navigatiehoogte (px)", + "Navigation padding (px)": "Navigatieopvulling (px)", + "Neon": "Neon", + "Neon Pulse": "Neonpuls", + "New password": "Nieuw wachtwoord", + "News": "Nieuws", + "Next": "Volgende", + "Nitro Texts": "Nitro-teksten", + "Nitro client": "Nitro-client", + "No": "Nee", + "No active maintenance tasks": "Geen actieve onderhoudstaken", + "No active voucher with the given code was found": "Geen actieve voucher gevonden met de opgegeven code", + "No data": "Geen gegevens", + "No deadline set": "Geen deadline ingesteld", + "No items": "Geen items", + "No motto set": "Geen motto ingesteld", + "No positions open": "Geen open posities", + "No published articles": "Geen gepubliceerde artikelen", + "No records": "Geen records", + "No records found": "Geen records gevonden", + "No results": "Geen resultaten", + "No session logs found": "Geen sessielogs gevonden", + "No staff members in this position": "Geen personeelsleden in deze positie", + "No tags found.": "Geen tags gevonden.", + "No team positions open": "Geen teamposities open", + "No teams found": "Geen teams gevonden", + "No tickets available": "Geen tickets beschikbaar", + "None": "Geen", + "Normal": "Normaal", + "Note:": "Notitie:", + "Notice": "Melding", + "Notification Settings": "Notificatie-instellingen", + "Ocean": "Oceaan", + "Offline": "Offline", + "Once a donation has been made and received by us, it is non-refundable under any circumstances. The donated amount which is converted into website balance cannot be converted back into cash or other forms of money. By making a donation, you acknowledge and accept these terms and agree not to initiate a chargeback or dispute with your bank or card issuer.": "Zodra een donatie is gedaan en door ons is ontvangen, is deze onder geen enkele omstandigheid restitueerbaar. Het gedoneerde bedrag dat wordt omgezet in website-saldo kan niet worden teruggeconverteerd naar geld of andere vormen van geld. Door een donatie te doen, erken en accepteer je deze voorwaarden en ga je ermee akkoord geen chargeback of geschil met je bank of kaartuitgever te starten.", + "Once again, thank you for choosing Atom CMS, and we cannot wait to see the incredible project you will create.": "Nogmaals bedankt voor het kiezen van Atom CMS, en we kunnen niet wachten om te zien wat voor ongelooflijk project je gaat creëren.", + "Online": "Online", + "Online Friends": "Online vrienden", + "Online Since": "Online sinds", + "Only JPEG, PNG, JPG, and GIF images are allowed.": "Alleen JPEG-, PNG-, JPG- en GIF-afbeeldingen zijn toegestaan.", + "Only PNG and GIF files are allowed.": "Alleen PNG- en GIF-bestanden zijn toegestaan.", + "Only staff can login during maintenance!": "Alleen personeel kan inloggen tijdens onderhoud!", + "Open": "Openen", + "Open main menu": "Hoofdmenu openen", + "Open tickets": "Open tickets", + "Optional text shown below the hotel name": "Optionele tekst onder de hotelnaam", + "Options": "Opties", + "Or": "Of", + "Or login with": "Of log in met", + "Or register with": "Of registreer met", + "Orange": "Oranje", + "Order": "Volgorde", + "Ordered list": "Genummerde lijst", + "Other articles": "Andere artikelen", + "Other features:": "Andere functies:", + "Our most recent articles": "Onze meest recente artikelen", + "Our terms": "Onze voorwaarden", + "Outdent": "Uitspringen", + "Outline": "Omtrek", + "Outline Button": "Omtrekknop", + "Overline": "Bovenlijn", + "PWA - Progressive Web App": "PWA - Progressive Web App", + "Padding X (px)": "Opvulling X (px)", + "Padding Y (px)": "Opvulling Y (px)", + "Page Layout": "Paginaindeling", + "Page Name": "Paginanaam", + "Page Transitions": "Paginaovergangen", + "Palette": "Palet", + "Parent": "Ouder", + "Parent ID": "Bovenliggend ID", + "Parent Navigation": "Bovenliggende navigatie", + "Parent Page": "Bovenliggende pagina", + "Password": "Wachtwoord", + "Password settings": "Wachtwoordinstellingen", + "Pastel": "Pastel", + "Payment Method": "Betaalmethode", + "Permanent": "Permanent", + "Permissions": "Rechten", + "Photo Gallery": "Fotogalerij", + "Photos": "Foto's", + "Pick a preset style for your hotel": "Kies een vooraf ingestelde stijl voor je hotel", + "Pill (extra round)": "Pilvorm (extra rond)", + "Pink": "Roze", + "Platform": "Platform", + "Playful": "Speels", + "Please add a description for the badge.": "Voeg een beschrijving voor de badge toe.", + "Please check back later.": "Kom later terug.", + "Please come back later to check for new openings. Thank you!": "Kom later terug om te controleren op nieuwe openingsposities. Bedankt!", + "Please confirm your new password": "Bevestig je nieuwe wachtwoord", + "Please describe your request below": "Beschrijf je verzoek hieronder", + "Please enter your two-factor authentication code or one of your recovery codes.": "Voer je tweefactorauthenticatiecode of een van je herstelcodes in.", + "Please fill in all fields and draw something": "Vul alle velden in en teken iets", + "Please fill in the badge name, description, and draw something on the canvas.": "Vul de badgenaam, beschrijving in en teken iets op het canvas.", + "Please logout before purchasing a package": "Log uit voordat je een pakket koopt", + "Please make sure to read our shop": "Zorg dat je onze shop leest", + "Please save your recovery codes somewhere safe! If you lose access to your 2FA codes, those recovery codes will be needed to regain access your account.": "Bewaar je herstelcodes op een veilige plek! Als je toegang tot je 2FA-codes verliest, heb je deze herstelcodes nodig om weer toegang te krijgen tot je account.", + "Please scan the QR-code above with your phone to retrieve your two-factor authentication code.": "Scan de QR-code hierboven met je telefoon om je tweefactorauthenticatiecode op te halen.", + "Please setup the paypal credentials to allow for top ups": "Stel de PayPal-gegevens in om opwaarderingen mogelijk te maken", + "Please submit your reply below": "Dien je reactie hieronder in", + "Please upload an image.": "Upload een afbeelding.", + "Points System": "Puntensysteem", + "Pop": "Plop", + "Position": "Positie", + "Position Description": "Functiebeschrijving", + "Post a comment": "Reactie plaatsen", + "Post a comment on the article, to let us know what you think about it": "Plaats een reactie op het artikel om ons te laten weten wat je ervan vindt", + "Post comment": "Reactie plaatsen", + "Post message": "Bericht plaatsen", + "Preferences": "Voorkeuren", + "Preferences updated successfully": "Voorkeuren succesvol bijgewerkt", + "Preview": "Voorbeeld", + "Preview Page": "Pagina voorbeeld", + "Previous": "Vorige", + "Previous step": "Vorige stap", + "Price": "Prijs", + "Primary": "Primair", + "Primary Color": "Primaire kleur", + "Primary color (background)": "Primaire kleur (achtergrond)", + "Product": "Product", + "Professional": "Professioneel", + "Profile Page": "Profielpagina", + "Progress": "Voortgang", + "Properties": "Eigenschappen", + "Published": "Gepubliceerd", + "Pulse": "Pulseren", + "Pulsing circle": "Pulserende cirkel", + "Purple": "Paars", + "Quote": "Citaat", + "RCON is not enabled!": "RCON is niet ingeschakeld!", + "Radio": "Radio", + "Radio Home": "Radio Home", + "Radio Settings": "Radio-instellingen", + "Radio notifications": "Radionotificaties", + "Radio punten": "Radiotegoeden", + "Rainbow": "Regenboog", + "Rank": "Rang", + "Rare Statistics": "Zeldzaamheidsstatistieken", + "Rare values": "Zeldzame waarden", + "Re-open": "Heropenen", + "Re-open Application": "Sollicitatie heropenen", + "Re-opened": "Heropend", + "Reactions with": "Reacties met", + "Read before applying": "Lees voor het solliciteren", + "Read less": "Lees minder", + "Read more": "Lees meer", + "Readable": "Leesbaar", + "Receive email notifications for important updates": "E-mailnotificaties ontvangen voor belangrijke updates", + "Recent Colors": "Recente kleuren", + "Recent color": "Recente kleur", + "Recipient not found": "Ontvanger niet gevonden", + "Recovery Code": "Herstelcode", + "Recovery codes:": "Herstelcodes:", + "Rect": "Rechthoek", + "Red": "Rood", + "Redo": "Opnieuw", + "Referral new users and be rewarded by in-game goods": "Verwijs nieuwe gebruikers en word beloond met in-game items", + "Register": "Registreren", + "Register with Discord": "Registreren met Discord", + "Register with GitHub": "Registreren met GitHub", + "Register with Google": "Registreren met Google", + "Registration is currently disabled.": "Registratie is momenteel uitgeschakeld.", + "Registration is disabled.": "Registratie is uitgeschakeld.", + "Reject": "Afwijzen", + "Reject Application": "Sollicitatie afwijzen", + "Rejected": "Afgewezen", + "Remember, your financial well-being is crucial, and making responsible choices is key. If you are facing difficulties in controlling your spending habits, do not hesitate to seek friendly and professional guidance. There are resources available that can provide valuable advice and support.": "Onthoud dat je financiële welzijn cruciaal is en dat het maken van verantwoorde keuzes de sleutel is. Als je moeite hebt om je uitgavenpatroon onder controle te houden, aarzel dan niet om vriendelijke en professionele begeleiding te zoeken. Er zijn bronnen beschikbaar die waardevol advies en ondersteuning kunnen bieden.", + "Repeat Password": "Herhaal wachtwoord", + "Repeat your chosen password": "Herhaal je gekozen wachtwoord", + "Resend Verification Email": "Verificatiemail opnieuw verzenden", + "Reset": "Resetten", + "Reset Password": "Wachtwoord resetten", + "Respects received": "Ontvangen respect", + "Restart installation": "Installatie opnieuw starten", + "Retro/Gaming": "Retro/Gaming", + "Ripple": "Rimpel", + "Rising": "Stijgend", + "Roles": "Rollen", + "Room details": "Kamerdetails", + "Room invites": "Kameruitnodigingen", + "Rooms": "Kamers", + "Rotate": "Draaien", + "Round & Soft": "Rond & Zacht", + "Rounded": "Afgerond", + "Rubber Band": "Elastiek", + "Rules": "Regels", + "Saturate": "Verzadigen", + "Save": "Opslaan", + "Save Style & Continue": "Stijl opslaan & doorgaan", + "Save Theme & Buttons": "Thema & knoppen opslaan", + "Save preferences": "Voorkeuren opslaan", + "Saved": "Opgeslagen", + "Scale Pulse": "Schaalpuls", + "Schedule": "Planning", + "Schedule Maintenance": "Onderhoud plannen", + "Schedule when maintenance mode should automatically start.": "Plan wanneer de onderhoudsmodus automatisch moet starten.", + "Scheduled maintenance cancelled": "Gepland onderhoud geannuleerd", + "Sci-Fi": "Sci-Fi", + "Search": "Zoeken", + "Search Rares": "Zoek zeldzaamheden", + "Search Results": "Zoekresultaten", + "Search teams…": "Teams zoeken…", + "Secondary": "Secundair", + "Secondary Button": "Secundaire knop", + "See all": "Zie alles", + "See more": "Zie meer", + "Select a starting avatar for your character": "Selecteer een startavatar voor je personage", + "Select a team to get started": "Selecteer een team om te beginnen", + "Semi Bold": "Halfvet", + "Send notifications": "Notificaties verzenden", + "Sepia": "Sepia", + "Session logs": "Sessielogs", + "Sessions": "Sessies", + "Set your new password below.": "Stel hieronder je nieuwe wachtwoord in.", + "Settings": "Instellingen", + "Shadow": "Schaduw", + "Shadow Color": "Schaduwkleur", + "Shadow Move": "Schaduwverplaatsing", + "Shadow Opacity": "Schaduwdoorzichtigheid", + "Shadows": "Schaduwen", + "Shake": "Schudden", + "Shake Hard": "Hard schudden", + "Shine": "Schijnen", + "Shop": "Shop", + "Shop Terms & Conditions": "Winkelvoorwaarden", + "Short Name": "Korte naam", + "Show Badges": "Badges tonen", + "Show Copyright": "Copyright tonen", + "Show Footer Links": "Footerlinks tonen", + "Show Friends": "Vrienden tonen", + "Show Grid:": "Raster tonen:", + "Show Guestbook": "Gastenboek tonen", + "Show Guilds/Groups": "Gildes/groepen tonen", + "Show Less": "Toon minder", + "Show More": "Toon meer", + "Show Online Status": "Online status tonen", + "Show Photos": "Foto's tonen", + "Show Recent Activity": "Recente activiteit tonen", + "Show Statistics": "Statistieken tonen", + "Show a border around the dropdown": "Toon een rand om het vervolgkeuzemenu", + "Show a loading screen on the Nitro client page": "Een laadscherm tonen op de Nitro-clientpagina", + "Show all": "Toon alles", + "Show as small box on the right side": "Weergeven als klein vakje aan de rechterkant", + "Show border": "Rand tonen", + "Show hotel name": "Hotelpictogram tonen", + "Show live shouts panel on the radio player": "Live shouts-paneel tonen op de radiospeler", + "Show logo": "Logo tonen", + "Show notifications when a new song plays": "Notificaties tonen wanneer een nieuw nummer wordt afgespeeld", + "Show only the border without background color": "Toon alleen de rand zonder achtergrondkleur", + "Show radio shouts": "Radioshouts tonen", + "Show the generated logo from the logo generator": "Het gegenereerde logo tonen van de logogenerator", + "Show the hotel name below the icon": "De hotelnaam onder het pictogram tonen", + "Sidebar": "Zijbalk", + "Skeleton glow": "Skelet gloed", + "Skew": "Scheef trekken", + "Slam": "Smakken", + "Slide Down": "Omlaag schuiven", + "Slide Left": "Links schuiven", + "Slide Right": "Rechts schuiven", + "Slide Up": "Omhoog schuiven", + "Sliding bar": "Glijdende balk", + "Slow": "Langzaam", + "Small": "Klein", + "Small Box": "Klein vakje", + "Small icon size (px)": "Kleine pictogramgrootte (px)", + "Small text size (px)": "Kleine tekstgrootte (px)", + "Social Settings": "Sociale instellingen", + "Solid": "Massief", + "Something went wrong": "Er is iets misgegaan", + "Something went wrong, please check your paypal account to make sure nothing was deducted and try again": "Er is iets misgegaan, controleer je PayPal-account of er niets is afgeschreven en probeer het opnieuw", + "Something went wrong, please try again later": "Er is iets misgegaan, probeer het later opnieuw", + "Sort by": "Sorteren op", + "Sort by:": "Sorteren op:", + "Sparkle": "Fonkel", + "Spice up your profile with a nice motto": "Maak je profiel aantrekkelijk met een leuk motto", + "Spin": "Draaien", + "Spinner Color": "Spinnerkleur", + "Spinning circle": "Draaiende cirkel", + "Square": "Vierkant", + "Squeeze": "Knijpen", + "Staff": "Personeel", + "Staff Login": "Personeelslogin", + "Staff applications": "Personeelssollicitaties", + "Staff login": "Personeelslogin", + "Start Time": "Starttijd", + "Start the setup": "Start de installatie", + "Status": "Status", + "Status:": "Status:", + "Sticky Navbar": "Vaste navigatiebalk", + "Store": "Winkel", + "Stream Status": "Streamstatus", + "Stretch": "Uitrekken", + "Strike": "Doorhalen", + "Style": "Stijl", + "Style for danger/red buttons": "Stijl voor gevaar/rode knoppen", + "Style for outline buttons (transparent with border)": "Stijl voor omtrekknoppen (transparant met rand)", + "Style for secondary/green buttons": "Stijl voor secundaire/groene knoppen", + "Style of dropdown menus in the navigation": "Stijl van vervolgkeuzemenu's in de navigatie", + "Style of the loading indicator": "Stijl van de laadindicator", + "Stylish": "Stijlvol", + "Submit": "Verzenden", + "Submit reply": "Reactie indienen", + "Submit ticket": "Ticket indienen", + "Success": "Succes", + "Summary": "Samenvatting", + "Super Round": "Super rond", + "Surface": "Oppervlak", + "Swing": "Slingeren", + "System Online": "Systeem online", + "Table": "Tabel", + "Tada": "Tada", + "Tags": "Tags", + "Team": "Team", + "Team applications": "Teamsollicitaties", + "Teams": "Teams", + "Technical": "Technisch", + "Temporary": "Tijdelijk", + "Terms & Conditions": "Algemene voorwaarden", + "Terug": "Terug", + "Test Failed": "Test mislukt", + "Text": "Tekst", + "Text color": "Tekstkleur", + "Text color in the navbar": "Tekstkleur in de navigatiebalk", + "Thanks for signing up! Before getting started, could you verify your email address by clicking on the link we just emailed to you? If you did not receive the email, we will gladly send you another.": "Bedankt voor het registreren! Voordat je begint, kun je je e-mailadres verifiëren door op de link te klikken die we je hebben gemaild? Als je de e-mail niet hebt ontvangen, sturen we je graag een nieuwe.", + "The Cloudflare Turnstile response is required": "De Cloudflare Turnstile-respons is vereist", + "The Google reCAPTCHA must be completed": "De Google reCAPTCHA moet worden voltooid", + "The Google reCAPTCHA was submitted with an invalid type": "De Google reCAPTCHA is verzonden met een ongeldig type", + "The Google recaptcha must be completed": "De Google recaptcha moet worden voltooid", + "The Google recaptcha was not successful.": "De Google recaptcha was niet succesvol.", + "The beta code is invalid.": "De beta-code is ongeldig.", + "The entered category does not exist": "De opgegeven categorie bestaat niet", + "The file must be a valid image.": "Het bestand moet een geldige afbeelding zijn.", + "The google recaptcha was submitted with an invalid type": "De Google recaptcha is verzonden met een ongeldig type", + "The language selected is not supported": "De geselecteerde taal wordt niet ondersteund", + "The primary color of your website": "De primaire kleur van je website", + "The provided password does not match your current password.": "Het opgegeven wachtwoord komt niet overeen met je huidige wachtwoord.", + "The recipient is already this or a higher rank": "De ontvanger heeft al deze of een hogere rang", + "The reply has been deleted!": "De reactie is verwijderd!", + "The reply has been submitted!": "De reactie is ingediend!", + "The room guild": "De kamer Groep", + "The ticket has been deleted!": "Het ticket is verwijderd!", + "The ticket status has been changed!": "De ticketstatus is gewijzigd!", + "Theme & Buttons": "Thema & Knoppen", + "Theme Color": "Themakleur", + "There are currently no open team positions": "Er zijn momenteel geen open teamposities", + "There are no teams to display right now.": "Er zijn momenteel geen teams om weer te geven.", + "There is currently no other articles": "Er zijn momenteel geen andere artikelen", + "There is currently no positions open": "Er zijn momenteel geen open posities", + "There is currently no replies": "Er zijn momenteel geen reacties", + "Thin": "Dun", + "This article has been locked from receiving comments": "Dit artikel is gesloten voor reacties", + "This color is used for logo, buttons, etc.": "Deze kleur wordt gebruikt voor logo, knoppen, enz.", + "This is the badge code": "Dit is de badgecode", + "This is the name of the badge: Expl. The ATOM Badge": "Dit is de naam van de badge: Bijv. De ATOM Badge", + "This month": "Deze maand", + "This package is not giftable": "Dit pakket is niet cadeau te geven", + "This token has expired!": "Deze token is verlopen!", + "This user currently does not have any rooms": "Deze gebruiker heeft momenteel geen kamers", + "This user is currently in :team. Approving will move them to :target. Continue?": "Deze gebruiker zit momenteel in :team. Goedkeuren verplaatst ze naar :target. Doorgaan?", + "This week": "Deze week", + "This will mark the application as rejected and remove :username from :team. Continue?": "Dit markeert de sollicitatie als afgewezen en verwijdert :username uit :team. Doorgaan?", + "This will mark the application as rejected. Continue?": "Dit markeert de sollicitatie als afgewezen. Doorgaan?", + "This will set the application status back to pending.": "Dit zet de sollicitatiestatus terug naar in behandeling.", + "Ticket submitted!": "Ticket ingediend!", + "Ticket updated!": "Ticket bijgewerkt!", + "Time": "Tijd", + "Timeless": "Tijdloos", + "Tiny": "Zeer klein", + "Title": "Titel", + "To avoid any third-party party abuse, please provide the installation code, which can be found in your database inside the \"website_installation\" table under the column \"installation_key\".": "Om misbruik door derden te voorkomen, verstrek de installatiecode die je kunt vinden in je database in de tabel \"website_installation\" onder de kolom \"installation_key\".", + "Toggle copy color mode": "Kleurkopieermodus in-/uitschakelen", + "Toggle erase mode": "Wismodus in-/uitschakelen", + "Toggle grid visibility": "Rasterzichtbaarheid in-/uitschakelen", + "Toolbar border color": "Werkbalkrandkleur", + "Toolbar color (background)": "Werkbalkkleur (achtergrond)", + "Toolbar customization for client": "Werkbalkaanpassing voor client", + "Toolbar hover color": "Werkbalk hover-kleur", + "Toolbar icon/text color": "Werkbalk pictogram/tekstkleur", + "Top Category": "Topcategorie", + "Top credits": "Top credits", + "Top diamonds": "Top diamanten", + "Top duckets": "Top duckets", + "Top up account": "Account opwaarderen", + "Total Rares": "Totaal zeldzaamheden", + "Transaction ID": "Transactie-ID", + "Transaction already processed": "Transactie is al verwerkt", + "Transaction amount mismatch detected": "Transactiebedrag komt niet overeen", + "Transaction successful": "Transactie succesvol", + "Transform only": "Alleen transformeren", + "Transition duration (ms)": "Overgangsduur (ms)", + "Transition type": "Overgangstype", + "Transparent": "Transparant", + "Two factor": "Twee factor", + "Two factor authentication": "Tweefactorauthenticatie", + "Two-Factor Authentication": "Tweefactorauthenticatie", + "Two-factor authentication has been confirmed.": "Tweefactorauthenticatie is bevestigd.", + "Two-factor authentication has been disabled.": "Tweefactorauthenticatie is uitgeschakeld.", + "Two-factor authentication has been enabled. Please scan the QR code to continue.": "Tweefactorauthenticatie is ingeschakeld. Scan de QR-code om door te gaan.", + "Type": "Type", + "Typewriter": "Typemachine", + "Typography": "Typografie", + "URL": "URL", + "URL to the background image (leave empty for no image)": "URL naar de achtergrondafbeelding (leeg laten voor geen afbeelding)", + "Ultra Bold": "Extra vet", + "Unable to approve": "Kan niet goedkeuren", + "Unable to reject": "Kan niet afwijzen", + "Underline": "Onderstrepen", + "Underline Links": "Links onderstrepen", + "Undo": "Ongedaan maken", + "Unique": "Uniek", + "Unknown": "Onbekend", + "Unordered list": "Ongenummerde lijst", + "Update": "Bijwerken", + "Update password": "Wachtwoord bijwerken", + "Update settings": "Instellingen bijwerken", + "Update ticket": "Ticket bijwerken", + "Upload Badge": "Badge uploaden", + "Uppercase text": "Hoofdletters", + "Use :hotel for dynamic hotel name": "Gebruik :hotel voor dynamische hotelnaam", + "Use :hotel for dynamic hotel name. Use
for line breaks.": "Gebruik :hotel voor dynamische hotelnaam. Gebruik
voor regeleinden.", + "Use a voucher for free credit": "Gebruik een voucher voor gratis tegoed", + "Use logo": "Logo gebruiken", + "Use voucher": "Voucher gebruiken", + "User": "Gebruiker", + "User ID": "Gebruikers-ID", + "User Referrals (%s/%s)": "Gebruikersverwijzingen (%s/%s)", + "User settings": "Gebruikersinstellingen", + "Username": "Gebruikersnaam", + "Users": "Gebruikers", + "Users can install your site as an app on mobile": "Gebruikers kunnen je site installeren als een app op mobiel", + "VIP Only": "Alleen VIP", + "Validate your two-factor enabling by scanning the following QR-code and enter your auto-generated 2-factor code from your phone.": "Valideer je tweefactorauthenticatie door de volgende QR-code te scannen en voer je automatisch gegenereerde 2-factorcode van je telefoon in.", + "Value": "Waarde", + "Verbinding verbroken": "Verbinding verbroken", + "Verify": "Verifiëren", + "Verify 2FA": "2FA verifiëren", + "Versatile": "Veelzijdig", + "Vibrate": "Trillen", + "View": "Bekijken", + "View Open Positions": "Bekijk open posities", + "View all": "Bekijk alles", + "Views": "Weergaven", + "Visible": "Zichtbaar", + "Voucher": "Voucher", + "Warm": "Warm", + "Warning": "Waarschuwing", + "Wave": "Golf", + "We are delighted of having you trying Atom CMS": "We zijn verheugd dat je Atom CMS uitprobeert", + "We currently have no rares listed here": "We hebben momenteel geen zeldzaamheden hier vermeld", + "We currently have no staff in this position": "We hebben momenteel geen personeel in deze positie", + "We currently have no staff in this team": "We hebben momenteel geen personeel in dit team", + "We have e-mailed your password reset link!": "We hebben je wachtwoordresetlink gemaild!", + "We open team applications periodically. If you see a team you fit, do not hesitate to apply!": "We openen periodiek teamsollicitaties. Als je een team ziet dat bij je past, aarzel dan niet om te solliciteren!", + "Welcome to Atom CMS": "Welkom bij Atom CMS", + "Welcome to the best hotel on the web!": "Welkom bij het beste hotel op het web!", + "When should maintenance mode start?": "Wanneer moet de onderhoudsmodus starten?", + "White": "Wit", + "Why are donations important?": "Waarom zijn donaties belangrijk?", + "Wiggle": "Wiebelen", + "With everything being said we just want to wish you a warm welcome to the Atom CMS family!": "Na alles wat er is gezegd, willen we je een warm welkom heten bij de Atom CMS-familie!", + "Woah! You have successfully claimed your reward - Keep up the good work!": "Wow! Je hebt je beloning succesvol geclaimd - Ga zo door!", + "Wobble": "Wobbelen", + "Word DJ": "Word DJ", + "Word Filter": "Woordfilter", + "Yellow": "Geel", + "Yes": "Ja", + "You are already this or a higher rank": "Je hebt al deze of een hogere rang", + "You are nearly in Habbo!": "Je bent bijna in Habbo!", + "You can only comment :amount times per article": "Je kunt maximaal :amount keer reageren per artikel", + "You can only delete your own comments": "Je kunt alleen je eigen reacties verwijderen", + "You can only use each shop voucher once": "Je kunt elke shopvoucher maar één keer gebruiken", + "You cannot access this page": "Je hebt geen toegang tot deze pagina", + "You cannot delete others tickets.": "Je kunt tickets van anderen niet verwijderen.", + "You cannot edit this user!": "Je kunt deze gebruiker niet bewerken!", + "You cannot edit users because RCON is not enabled and the user is online.": "Je kunt gebruikers niet bewerken omdat RCON niet is ingeschakeld en de gebruiker online is.", + "You cannot edit users with a higher rank than yours.": "Je kunt geen gebruikers met een hogere rang dan jij bewerken.", + "You cannot manage others tickets.": "Je kunt tickets van anderen niet beheren.", + "You cannot post a message on your own profile.": "Je kunt geen bericht op je eigen profiel plaatsen.", + "You cannot reply to others tickets.": "Je kunt niet reageren op tickets van anderen.", + "You cannot reply to the ticket as it has been closed.": "Je kunt niet reageren op het ticket omdat het gesloten is.", + "You cannot view others tickets.": "Je kunt tickets van anderen niet inzien.", + "You comment has been deleted!": "Je reactie is verwijderd!", + "You comment has been posted!": "Je reactie is geplaatst!", + "You do not have enough referrals to claim your reward": "Je hebt niet genoeg verwijzingen om je beloning te claimen", + "You do not have permission to delete this reply.": "Je hebt geen toestemming om deze reactie te verwijderen.", + "You do not have permission to do this.": "Je hebt geen toestemming om dit te doen.", + "You have already applied for this position.": "Je hebt al gesolliciteerd voor deze positie.", + "You have already applied for this team.": "Je hebt al gesolliciteerd voor dit team.", + "You have already posted :count messages on this profile.": "Je hebt al :count berichten op dit profiel geplaatst.", + "You have been approved": "Je bent goedgekeurd", + "You have been disconnected because your rank has been changed. Please re-enter the hotel.": "Je bent verbonden omdat je rang is gewijzigd. Log opnieuw in in het hotel.", + "You have canceled the transaction": "Je hebt de transactie geannuleerd", + "You have reached the max amount of allowed account": "Je hebt het maximale aantal accounts bereikt", + "You have successfully purchased the package :name": "Je hebt het pakket :name succesvol gekocht", + "You have successfully purchased the package :name for :username": "Je hebt het pakket :name succesvol gekocht voor :username", + "You manage others tickets.": "Je beheert tickets van anderen.", + "You must accept the terms and conditions": "Je moet de algemene voorwaarden accepteren", + "You must confirm your current password before being able to toggle 2FA.": "Je moet je huidige wachtwoord bevestigen voordat je 2FA kunt in-/uitschakelen.", + "You must confirm your password to continue": "Je moet je wachtwoord bevestigen om door te gaan", + "You need to top-up your account with another $:amount to purchase this package": "Je moet je account opwaarderen met nog $:amount om dit pakket te kopen", + "You will need your email if you were to ever forget your password, so make sure it is something that you remember.": "Je hebt je e-mail nodig als je ooit je wachtwoord vergeet, dus zorg dat het iets is dat je onthoudt.", + "You will receive:": "Je ontvangt:", + "Your IP has been restricted - If you think this is a mistake, you can contact us on our Discord.": "Je IP is beperkt - Als je denkt dat dit een fout is, kun je ons contacteren via Discord.", + "Your account settings has been updated": "Je accountinstellingen zijn bijgewerkt", + "Your application has been submitted!": "Je sollicitatie is ingediend!", + "Your application is pending": "Je sollicitatie is in behandeling", + "Your application was rejected": "Je sollicitatie is afgewezen", + "Your balance has been increased by $:amount": "Je saldo is verhoogd met $:amount", + "Your current open tickets": "Je huidige open tickets", + "Your message has been deleted.": "Je bericht is verwijderd.", + "Your message has been posted.": "Je bericht is geplaatst.", + "Your motto has been changed by a staff member.": "Je motto is gewijzigd door een personeelslid.", + "Your password has been changed!": "Je wachtwoord is gewijzigd!", + "Your password has been successfully reset!": "Je wachtwoord is succesvol gereset!", + "Your password must contain atleast 8 characters. Make sure to use a unique & secure password.": "Je wachtwoord moet minimaal 8 tekens bevatten. Zorg dat je een uniek en veilig wachtwoord gebruikt.", + "Your referral code has been copied to your clipboard!": "Je verwijzingscode is naar je klembord gekopieerd!", + "Your referral code has been copied to your clipbord!": "Je verwijzingscode is naar je klembord gekopieerd!", + "Your username is what you and others will see in-game": "Je gebruikersnaam is wat jij en anderen in het spel zullen zien", + "Zoom In": "Inzoomen", + "Zoom Out": "Uitzoomen", + "back_to_home": "Terug naar home", + "badge_purchase_error_general": "Er is een fout opgetreden bij het kopen van de badge", + "before making a purchase": "voordat je een aankoop doet", + "commandocentrum.active": "Active", "commandocentrum.alert_message_placeholder": "Typ hier je alert bericht...", - "commandocentrum.emulator_logs": "Emulator Logs", - "commandocentrum.emulator_logs_desc": "Live emulator log viewer", - "commandocentrum.emulator_control": "Emulator Control", - "commandocentrum.emulator_control_desc": "Volledige emulator controle", - "commandocentrum.start": "Start", - "commandocentrum.stop": "Stop", - "commandocentrum.restart": "Restart", - "commandocentrum.check": "Check", - "commandocentrum.version": "Versie", - "commandocentrum.service": "Service", - "commandocentrum.status": "Status", - "commandocentrum.emulator_updates_desc": "Configureer en update de emulator", - "commandocentrum.build": "Bouwen", - "commandocentrum.save": "Opslaan", - "commandocentrum.github_url": "GitHub URL", - "commandocentrum.jar_direct_url": "JAR Direct URL", - "commandocentrum.jar_path": "JAR Pad", - "commandocentrum.source_repo": "Source Repo", - "commandocentrum.source_path": "Source Pad", + "commandocentrum.alerts_saved": "Meldingen opgeslagen!", "commandocentrum.branch": "Branch", - "commandocentrum.db_host": "DB Host", - "commandocentrum.db_name": "DB Naam", - "commandocentrum.service_name": "Service Naam", - "commandocentrum.emulator_backups_desc": "Bekijk en herstel emulator backups", - "commandocentrum.restore": "Herstellen", - "commandocentrum.nitro_client": "Nitro Client", + "commandocentrum.build": "Bouwen", + "commandocentrum.check": "Check", + "commandocentrum.client": "Client", + "commandocentrum.clothing_items": "Kleding Items", "commandocentrum.clothing_sync": "Kleding Sync", "commandocentrum.clothing_sync_desc": "Sync catalogus kleding uit FigureMap", - "commandocentrum.sync": "Sync", - "commandocentrum.clothing_items": "Kleding Items", - "commandocentrum.notifications": "Meldingen", - "commandocentrum.notifications_desc": "E-mail en Discord alerts", - "commandocentrum.test_discord": "Test Discord", - "commandocentrum.email_notifications": "E-mail Meldingen", - "commandocentrum.email_address": "E-mail Adres", - "commandocentrum.discord_notifications": "Discord Meldingen", - "commandocentrum.webhook_url": "Webhook URL", - "commandocentrum.discord_ranks": "Ranks die Discord notificatie krijgen", - "commandocentrum.discord_ranks_helper": "Laat leeg voor alleen staff (min_staff_rank)", - "commandocentrum.social_login": "Social Login (v1.4)", - "commandocentrum.social_login_desc": "Enable social login providers", - "commandocentrum.google_login": "Google Login", - "commandocentrum.google_login_helper": "Allow users to login with Google", - "commandocentrum.google_client_id": "Google Client ID", - "commandocentrum.google_client_id_helper": "From Google Cloud Console", - "commandocentrum.google_client_secret": "Google Client Secret", - "commandocentrum.discord_login": "Discord Login", - "commandocentrum.discord_login_helper": "Allow users to login with Discord", + "commandocentrum.critical_issues": "Kritieke Problemen", + "commandocentrum.database": "Database", + "commandocentrum.days_ago": "d ago", + "commandocentrum.db_host": "DB Host", + "commandocentrum.db_name": "DB Naam", + "commandocentrum.diagnostics_refreshed": "Diagnostiek vernieuwd", "commandocentrum.discord_client_id": "Discord Client ID", "commandocentrum.discord_client_id_helper": "From Discord Developer Portal", "commandocentrum.discord_client_secret": "Discord Client Secret", - "commandocentrum.github_login": "GitHub Login", - "commandocentrum.github_login_helper": "Allow users to login with GitHub", + "commandocentrum.discord_login": "Discord Login", + "commandocentrum.discord_login_helper": "Allow users to login with Discord", + "commandocentrum.discord_notifications": "Discord Meldingen", + "commandocentrum.discord_ranks": "Ranks die Discord notificatie krijgen", + "commandocentrum.discord_ranks_helper": "Laat leeg voor alleen staff (min_staff_rank)", + "commandocentrum.disk": "Disk", + "commandocentrum.email_address": "E-mail Adres", + "commandocentrum.email_notifications": "E-mail Meldingen", + "commandocentrum.emulator": "Emulator", + "commandocentrum.emulator_backups_desc": "Bekijk en herstel emulator backups", + "commandocentrum.emulator_control": "Emulator Control", + "commandocentrum.emulator_control_desc": "Volledige emulator controle", + "commandocentrum.emulator_logs": "Emulator Logs", + "commandocentrum.emulator_logs_desc": "Live emulator log viewer", + "commandocentrum.emulator_online": "Emulator is online en reageert!", + "commandocentrum.emulator_restart_failed": "Kon emulator niet herstarten", + "commandocentrum.emulator_restarted": "Emulator herstart!", + "commandocentrum.emulator_settings_saved": "Emulator instellingen opgeslagen!", + "commandocentrum.emulator_start_failed": "Kon emulator niet starten", + "commandocentrum.emulator_started": "Emulator gestart!", + "commandocentrum.emulator_stop_failed": "Kon emulator niet stoppen", + "commandocentrum.emulator_stopped": "Emulator gestopt!", + "commandocentrum.emulator_unreachable": "Emulator is niet bereikbaar via RCON", + "commandocentrum.emulator_updates_desc": "Configureer en update de emulator", + "commandocentrum.error": "Error", + "commandocentrum.error_loading_activities": "Error loading staff activities", + "commandocentrum.errors": "Fouten", "commandocentrum.github_client_id": "GitHub Client ID", "commandocentrum.github_client_id_helper": "From GitHub Developer Settings", "commandocentrum.github_client_secret": "GitHub Client Secret", + "commandocentrum.github_login": "GitHub Login", + "commandocentrum.github_login_helper": "Allow users to login with GitHub", + "commandocentrum.github_url": "GitHub URL", + "commandocentrum.google_client_id": "Google Client ID", + "commandocentrum.google_client_id_helper": "From Google Cloud Console", + "commandocentrum.google_client_secret": "Google Client Secret", + "commandocentrum.google_login": "Google Login", + "commandocentrum.google_login_helper": "Allow users to login with Google", + "commandocentrum.healthy": "Gezond", + "commandocentrum.hotel_alert": "Hotel Alert", + "commandocentrum.hotel_alert_desc": "Stuur een bericht naar alle online gebruikers", + "commandocentrum.hotel_status": "Hotel Status", + "commandocentrum.hotel_status_desc": "Emulator en Nitro status", + "commandocentrum.hours_ago": "h ago", + "commandocentrum.inactive": "Inactive", + "commandocentrum.info": "Info", + "commandocentrum.jar_direct_url": "JAR Direct URL", + "commandocentrum.jar_download_restart": "JAR Download & Herstart", + "commandocentrum.jar_path": "JAR Pad", + "commandocentrum.jars": "JARs", + "commandocentrum.just_now": "Just now", + "commandocentrum.last_20_actions": "Last 20 actions", + "commandocentrum.latest": "Latest", + "commandocentrum.live_status": "Live Status", + "commandocentrum.live_status_desc": "Real-time hotel statistieken", + "commandocentrum.load": "Load", + "commandocentrum.local": "Local", + "commandocentrum.manual_download": "Handmatig: Download JAR van GitHub", + "commandocentrum.maven_build_restart": "Maven Build & Herstart", + "commandocentrum.maven_pom": "Maven (pom.xml)", + "commandocentrum.memory": "Memory", + "commandocentrum.memory_disk": "Memory & Disk", + "commandocentrum.method": "Methode", + "commandocentrum.minutes_ago": "m ago", + "commandocentrum.missing": "Ontbreekt", + "commandocentrum.nitro_cli_only": "Dit script kan alleen via de command line worden uitgevoerd. Gebruik: bash update-Nitrov3.sh\n\nInstellingen worden geconfigureerd in het .env bestand in de project root.", + "commandocentrum.nitro_client": "Nitro Client", + "commandocentrum.nitro_db_name": "Nitro DB-naam", + "commandocentrum.nitro_emulator_path": "Nitro emulatorpad", + "commandocentrum.nitro_emulator_service": "Nitro emulatorservice", + "commandocentrum.nitro_sql_dir": "Nitro SQL-map", + "commandocentrum.nitro_update": "Nitro V3 Update", + "commandocentrum.nitro_update_desc": "Update alleen via command line — configureer instellingen in .env", + "commandocentrum.no_pom": "Geen pom.xml", + "commandocentrum.no_staff_activities": "No staff activities recorded yet.", + "commandocentrum.not_applicable": "N/B", + "commandocentrum.not_found": "Niet gevonden", + "commandocentrum.notifications": "Meldingen", + "commandocentrum.notifications_desc": "E-mail en Discord alerts", + "commandocentrum.offline": "Offline", + "commandocentrum.ok": "OK", + "commandocentrum.online": "Online", + "commandocentrum.php_laravel": "PHP & Laravel", + "commandocentrum.rank": "Rank", + "commandocentrum.rebuild": "Herbouwen", + "commandocentrum.recent_staff_activities": "Recent Staff Activities", + "commandocentrum.refresh": "Vernieuwen", + "commandocentrum.remote": "Remote", + "commandocentrum.renderer": "Renderer", + "commandocentrum.restart": "Restart", + "commandocentrum.restore": "Herstellen", + "commandocentrum.run_migrations": "Make sure to run: php artisan migrate", + "commandocentrum.save": "Opslaan", + "commandocentrum.send_alert": "Verstuur Alert", + "commandocentrum.server_info": "Server Informatie", + "commandocentrum.server_info_desc": "Gedetailleerde server status", + "commandocentrum.service": "Service", + "commandocentrum.service_name": "Service Naam", + "commandocentrum.social_login": "Social Login (v1.4)", + "commandocentrum.social_login_desc": "Enable social login providers", + "commandocentrum.source": "Source", + "commandocentrum.source_path": "Source Pad", + "commandocentrum.source_repo": "Source Repo", + "commandocentrum.staff_actions_auto": "Staff actions will appear here automatically.", "commandocentrum.staff_activity": "Staff Activity Log", "commandocentrum.staff_activity_desc": "Recent staff activities in the housekeeping (v1.2)", - "commandocentrum.recent_staff_activities": "Recent Staff Activities", - "commandocentrum.last_20_actions": "Last 20 actions", - "commandocentrum.no_staff_activities": "No staff activities recorded yet.", - "commandocentrum.staff_actions_auto": "Staff actions will appear here automatically.", - "commandocentrum.error_loading_activities": "Error loading staff activities", - "commandocentrum.run_migrations": "Make sure to run: php artisan migrate", - "commandocentrum.just_now": "Just now", - "commandocentrum.minutes_ago": "m ago", - "commandocentrum.hours_ago": "h ago", - "commandocentrum.days_ago": "d ago", + "commandocentrum.start": "Start", + "commandocentrum.status": "Status", + "commandocentrum.stop": "Stop", "commandocentrum.success": "Success", - "commandocentrum.error": "Error", - "commandocentrum.warning": "Warning", - "commandocentrum.info": "Info", - "commandocentrum.emulator_started": "Emulator gestart!", - "commandocentrum.emulator_start_failed": "Kon emulator niet starten", - "commandocentrum.emulator_stopped": "Emulator gestopt!", - "commandocentrum.emulator_stop_failed": "Kon emulator niet stoppen", - "commandocentrum.emulator_restarted": "Emulator herstart!", - "commandocentrum.emulator_restart_failed": "Kon emulator niet herstarten", - "commandocentrum.emulator_online": "Emulator is online en reageert!", - "commandocentrum.emulator_unreachable": "Emulator is niet bereikbaar via RCON", - "commandocentrum.emulator_settings_saved": "Emulator instellingen opgeslagen!", - "commandocentrum.alerts_saved": "Meldingen opgeslagen!", + "commandocentrum.sync": "Sync", + "commandocentrum.system_health": "Systeem Gezondheid", + "commandocentrum.system_health_desc": "Automatische systeem diagnostiek", + "commandocentrum.system_status": "Systeem Status", + "commandocentrum.test_discord": "Test Discord", "commandocentrum.test_sent": "Test bericht verzonden!", - "commandocentrum.webhook_empty": "Webhook URL is leeg", - "commandocentrum.diagnostics_refreshed": "Diagnostiek vernieuwd", "commandocentrum.unknown": "Unknown", - "commandocentrum.not_applicable": "N/B", - "commandocentrum.offline": "Offline", - "commandocentrum.active": "Active", - "commandocentrum.inactive": "Inactive", - "commandocentrum.not_found": "Niet gevonden", - "commandocentrum.ok": "OK", - "commandocentrum.missing": "Ontbreekt", - "commandocentrum.jars": "JARs", - "commandocentrum.source": "Source", - "commandocentrum.method": "Methode", - "commandocentrum.jar_download_restart": "JAR Download & Herstart", - "commandocentrum.maven_build_restart": "Maven Build & Herstart", - "commandocentrum.manual_download": "Handmatig: Download JAR van GitHub", - "commandocentrum.maven_pom": "Maven (pom.xml)", - "commandocentrum.no_pom": "Geen pom.xml", - "commandocentrum.update_available": "Update beschikbaar", "commandocentrum.up_to_date": "Up-to-date", "commandocentrum.update": "Updaten", - "commandocentrum.rebuild": "Herbouwen", - "commandocentrum.latest": "Latest", - "commandocentrum.remote": "Remote", - "commandocentrum.local": "Local", - "commandocentrum.client": "Client", - "commandocentrum.renderer": "Renderer", + "commandocentrum.update_available": "Update beschikbaar", + "commandocentrum.uptime": "Uptime", + "commandocentrum.users": "Gebruikers", + "commandocentrum.version": "Versie", + "commandocentrum.warning": "Warning", + "commandocentrum.warnings": "Waarschuwingen", + "commandocentrum.webhook_empty": "Webhook URL is leeg", + "commandocentrum.webhook_url": "Webhook URL", "commandocentrum.webroot_status": "Webroot", - "commandocentrum.rank": "Rank", - "radio.title": "Radio", - "radio.music": "Muziek", - "radio.loading": "Laden...", - "radio.navigation_label": "Radio", - "radio.setup_page_title": "Radio Setup", - "radio.setup_page_subtitle": "Configureer je radio systeem in één keer", - "radio.setup.success_title": "Radio Geïnstalleerd!", - "radio.setup.success_body": "Radio systeem is succesvol geïnstalleerd en geconfigureerd!", - "radio.setup.error_title": "Installatie Mislukt", - "radio.setup.error_body": "Er is een fout opgetreden: :message", - "radio.setup.button_label": "Alles Installeren", - "radio.setup.modal_heading": "Radio Installeren?", - "radio.setup.modal_description": "Dit zal alle radio instellingen configureren met standaard waarden.", - "radio.setup.modal_submit": "Ja, installeer!", - "radio.setup.tooltip": "Installeer het complete radio systeem", - "radio.setup_complete": "✅ Installatie Voltooid!", - "radio.what_gets_configured": "Wat wordt er geconfigureerd?", - "radio.radio_stream": "Radio Stream", - "radio.radio_stream_desc": "Stel je stream URL in met ondersteuning voor SHOUTcast, Icecast, AzureCast en andere streaming platforms.", - "radio.points_system": "Punten Systeem", - "radio.points_system_desc": "Laat gebruikers punten verdienen door te luisteren, nummers aan te vragen en deel te nemen aan contests.", + "completed": "voltooid", + "credits": "credits", + "download_appimage": "Download voor Linux", + "download_dmg": "Download voor macOS", + "download_exe": "Download voor Windows", + "download_options": "Downloadopties", + "filament-log-manager::translations.delete": "Verwijderen", + "filament-log-manager::translations.download": "Downloaden", + "filament-log-manager::translations.modal_delete_action_cancel": "Annuleren", + "filament-log-manager::translations.modal_delete_action_confirm": "Verwijderen", + "filament-log-manager::translations.modal_delete_heading": "Logbestand verwijderen", + "filament-log-manager::translations.modal_delete_subheading": "Weet je zeker dat je dit logbestand wilt verwijderen?", + "filament-log-manager::translations.no_logs": "Geen logbestanden gevonden", + "filament-panels::pages/auth/login.messages.failed": "Deze inloggegevens komen niet overeen met onze gegevens.", + "filament::login.fields.password.label": "Wachtwoord", + "filament::login.fields.remember.label": "Onthoud mij", + "filament::login.fields.username.label": "Gebruikersnaam", + "filament::resources.actions.send_notifications": "Notificaties verzenden", + "filament::resources.columns.achievement_score": "Prestatiescore", + "filament::resources.columns.allow_comments": "Reacties toestaan", + "filament::resources.columns.avatar": "Avatar", + "filament::resources.columns.background_color": "Achtergrondkleur", + "filament::resources.columns.badge": "Badge", + "filament::resources.columns.badge_code": "Badgecode", + "filament::resources.columns.banned_at": "Verbannen op", + "filament::resources.columns.by": "Door", + "filament::resources.columns.can_change_name": "Naam wijzigen", + "filament::resources.columns.can_trade": "Kan handelen", + "filament::resources.columns.category": "Categorie", + "filament::resources.columns.command": "Commando", + "filament::resources.columns.comment": "Reactie", + "filament::resources.columns.created_at": "Aangemaakt op", + "filament::resources.columns.description": "Beschrijving", + "filament::resources.columns.email": "E-mail", + "filament::resources.columns.equipped": "Uitgerust", + "filament::resources.columns.executed_at": "Uitgevoerd op", + "filament::resources.columns.expires_at": "Verloopt op", + "filament::resources.columns.hideable": "Verbergbaar", + "filament::resources.columns.id": "ID", + "filament::resources.columns.image": "Afbeelding", + "filament::resources.columns.is_hidden": "Is verborgen", + "filament::resources.columns.key": "Sleutel", + "filament::resources.columns.level": "Niveau", + "filament::resources.columns.message": "Bericht", + "filament::resources.columns.min_rank": "Minimale rang", + "filament::resources.columns.motto": "Motto", + "filament::resources.columns.mute_time": "Dempertijd", + "filament::resources.columns.name": "Naam", + "filament::resources.columns.new_tab": "Nieuw tabblad", + "filament::resources.columns.online": "Online", + "filament::resources.columns.online_time": "Online tijd", + "filament::resources.columns.order": "Volgorde", + "filament::resources.columns.permission": "Permissie", + "filament::resources.columns.prefix": "Voorvoegsel", + "filament::resources.columns.reason": "Reden", + "filament::resources.columns.receiver": "Ontvanger", + "filament::resources.columns.replacement": "Vervanging", + "filament::resources.columns.reportable": "Rapporteerbaar", + "filament::resources.columns.respects_received": "Ontvangen respect", + "filament::resources.columns.room": "Kamer", + "filament::resources.columns.room_id": "Kamer-ID", + "filament::resources.columns.sender": "Verzender", + "filament::resources.columns.slug": "Slug", + "filament::resources.columns.success": "Succes", + "filament::resources.columns.title": "Titel", + "filament::resources.columns.type": "Type", + "filament::resources.columns.user_id": "Gebruikers-ID", + "filament::resources.columns.username": "Gebruikersnaam", + "filament::resources.columns.value": "Waarde", + "filament::resources.columns.visible": "Zichtbaar", + "filament::resources.common.Account": "Account", + "filament::resources.common.All": "Alle", + "filament::resources.common.Create": "Aanmaken", + "filament::resources.common.Credits": "Credits", + "filament::resources.common.Diamonds": "Diamanten", + "filament::resources.common.Duckets": "Duckets", + "filament::resources.common.Female": "Vrouwelijk", + "filament::resources.common.IP": "IP", + "filament::resources.common.Machine": "Machine", + "filament::resources.common.Male": "Mannelijk", + "filament::resources.common.Never": "Nooit", + "filament::resources.common.No": "Nee", + "filament::resources.common.Open link": "Link openen", + "filament::resources.common.Points": "Punten", + "filament::resources.common.Sucessfull": "Succesvol", + "filament::resources.common.Super": "Super", + "filament::resources.common.Update": "Bijwerken", + "filament::resources.common.Yes": "Ja", + "filament::resources.filters.success": "Succes", + "filament::resources.helpers.achievement_points": "Prestatiepunten", + "filament::resources.helpers.achievement_progress_needed": "Benodigde voortgang", + "filament::resources.helpers.badge_code_helper": "Badgecode (bijv. ATOM101)", + "filament::resources.helpers.change_password_description": "Wijzig het wachtwoord van de gebruiker", + "filament::resources.helpers.change_username_description": "Wijzig de gebruikersnaam van de gebruiker", + "filament::resources.inputs.achievement_score": "Prestatiescore", + "filament::resources.inputs.allow_change_username": "Gebruikersnaam wijzigen toestaan", + "filament::resources.inputs.allow_comments": "Reacties toestaan", + "filament::resources.inputs.as_staff": "Als personeel", + "filament::resources.inputs.auto_credits_amount": "Automatisch credits bedrag", + "filament::resources.inputs.auto_gotw_amount": "Automatisch GOTW-bedrag", + "filament::resources.inputs.auto_pixels_amount": "Automatisch pixels bedrag", + "filament::resources.inputs.auto_points_amount": "Automatisch punten bedrag", + "filament::resources.inputs.background_color": "Achtergrondkleur", + "filament::resources.inputs.badge_code": "Badgecode", + "filament::resources.inputs.badge_description": "Badgebeschrijving", + "filament::resources.inputs.badge_image": "Badgeafbeelding", + "filament::resources.inputs.badge_title": "Badgetitel", + "filament::resources.inputs.block_camera_follow": "Camera volgen blokkeren", + "filament::resources.inputs.block_following": "Volgen blokkeren", + "filament::resources.inputs.block_friendrequests": "Vriendschapsverzoeken blokkeren", + "filament::resources.inputs.block_roominvites": "Kameruitnodigingen blokkeren", + "filament::resources.inputs.can_trade": "Kan handelen", + "filament::resources.inputs.category": "Categorie", + "filament::resources.inputs.comment": "Reactie", + "filament::resources.inputs.content": "Inhoud", + "filament::resources.inputs.created_at": "Aangemaakt op", + "filament::resources.inputs.description": "Beschrijving", + "filament::resources.inputs.email": "E-mail", + "filament::resources.inputs.expires_at": "Verloopt op", + "filament::resources.inputs.gender": "Geslacht", + "filament::resources.inputs.hideable": "Verbergbaar", + "filament::resources.inputs.ignore_bots": "Bots negeren", + "filament::resources.inputs.ignore_pets": "Huisdieren negeren", + "filament::resources.inputs.image": "Afbeelding", + "filament::resources.inputs.ip_current": "Huidig IP", + "filament::resources.inputs.ip_register": "Registratie-IP", + "filament::resources.inputs.is_hidden": "Is verborgen", + "filament::resources.inputs.key": "Sleutel", + "filament::resources.inputs.label": "Label", + "filament::resources.inputs.last_login": "Laatste login", + "filament::resources.inputs.last_online": "Laatst online", + "filament::resources.inputs.level": "Niveau", + "filament::resources.inputs.log_commands": "Commando's loggen", + "filament::resources.inputs.max_friends": "Max. vrienden", + "filament::resources.inputs.max_rooms": "Max. kamers", + "filament::resources.inputs.message": "Bericht", + "filament::resources.inputs.min_rank": "Minimale rang", + "filament::resources.inputs.motto": "Motto", + "filament::resources.inputs.mute_time": "Dempertijd", + "filament::resources.inputs.name": "Naam", + "filament::resources.inputs.new_password": "Nieuw wachtwoord", + "filament::resources.inputs.new_password_confirmation": "Bevestig nieuw wachtwoord", + "filament::resources.inputs.old_chat": "Oude chat", + "filament::resources.inputs.permission": "Permissie", + "filament::resources.inputs.points": "Punten", + "filament::resources.inputs.prefix": "Voorvoegsel", + "filament::resources.inputs.prefix_color": "Voorvoegselkleur", + "filament::resources.inputs.progress_needed": "Benodigde voortgang", + "filament::resources.inputs.rank": "Rang", + "filament::resources.inputs.reason": "Reden", + "filament::resources.inputs.receiver": "Ontvanger", + "filament::resources.inputs.referral_code": "Verwijzingscode", + "filament::resources.inputs.referrer_code": "Verwijzercode", + "filament::resources.inputs.replacement": "Vervanging", + "filament::resources.inputs.reportable": "Rapporteerbaar", + "filament::resources.inputs.respects_received": "Ontvangen respect", + "filament::resources.inputs.reward_amount": "Beloningsbedrag", + "filament::resources.inputs.reward_type": "Beloningstype", + "filament::resources.inputs.room": "Kamer", + "filament::resources.inputs.room_effect": "Kamereffect", + "filament::resources.inputs.sender": "Verzender", + "filament::resources.inputs.slug": "Slug", + "filament::resources.inputs.team_id": "Team-ID", + "filament::resources.inputs.title": "Titel", + "filament::resources.inputs.type": "Type", + "filament::resources.inputs.url": "URL", + "filament::resources.inputs.username": "Gebruikersnaam", + "filament::resources.inputs.users": "Gebruikers", + "filament::resources.inputs.value": "Waarde", + "filament::resources.inputs.visible": "Zichtbaar", + "filament::resources.notifications.badge_code_required": "Badgecode is vereist", + "filament::resources.notifications.badge_found": "Badge gevonden", + "filament::resources.notifications.badge_image_required": "Badgeafbeelding is vereist", + "filament::resources.notifications.badge_image_upload_failed": "Badgeafbeelding uploaden mislukt", + "filament::resources.notifications.badge_texts_required": "Badgeteksten zijn vereist", + "filament::resources.notifications.badge_update_failed": "Badge bijwerken mislukt", + "filament::resources.notifications.badge_updated": "Badge bijgewerkt", + "filament::resources.notifications.create_badge": "Badge aanmaken", + "filament::resources.options.no": "Nee", + "filament::resources.options.rights": "Rechten", + "filament::resources.options.yes": "Ja", + "filament::resources.sections.permissions.description": "In-game permissies voor deze gebruiker", + "filament::resources.sections.permissions.title": "Permissies", + "filament::resources.stats.articles_chart.description": "Aantal artikelen per maand", + "filament::resources.stats.articles_chart.label": "Artikelen", + "filament::resources.stats.articles_chart.title": "Artikeloverzicht", + "filament::resources.stats.badge_count.description": "Totaal aantal badges", + "filament::resources.stats.badge_count.title": "Badges", + "filament::resources.stats.furniture_count.description": "Totaal aantal meubels", + "filament::resources.stats.furniture_count.title": "Meubels", + "filament::resources.stats.orders_chart.cancelled": "Geannuleerd", + "filament::resources.stats.orders_chart.completed": "Voltooid", + "filament::resources.stats.orders_chart.description": "Bestellingen van de afgelopen 30 dagen", + "filament::resources.stats.orders_chart.pending": "In behandeling", + "filament::resources.stats.orders_chart.title": "Bestellingen", + "filament::resources.stats.photos_count.description": "Totaal aantal foto's", + "filament::resources.stats.photos_count.title": "Foto's", + "filament::resources.stats.rooms_count.description": "Totaal aantal kamers", + "filament::resources.stats.rooms_count.title": "Kamers", + "filament::resources.stats.users_count.description": "Totaal aantal gebruikers", + "filament::resources.stats.users_count.title": "Gebruikers", + "filament::resources.tabs.Account Data": "Accountgegevens", + "filament::resources.tabs.Change Email": "E-mail wijzigen", + "filament::resources.tabs.Change Password": "Wachtwoord wijzigen", + "filament::resources.tabs.Change Rank": "Rang wijzigen", + "filament::resources.tabs.Change Username": "Gebruikersnaam wijzigen", + "filament::resources.tabs.Configurations": "Configuraties", + "filament::resources.tabs.Currencies": "Valuta", + "filament::resources.tabs.Extra Settings": "Extra instellingen", + "filament::resources.tabs.General Information": "Algemene informatie", + "filament::resources.tabs.Home": "Home", + "filament::resources.tabs.In-game Permissions": "In-game permissies", + "filament::resources.tabs.Main": "Algemeen", + "filament::resources.tabs.Security": "Beveiliging", + "flash_client": "Flash-client", + "for_linux": "Voor Linux", + "for_macos": "Voor macOS", + "for_windows": "Voor Windows", + "linux": "Linux", + "macos": "macOS", + "member": "lid", + "members": "leden", + "nitro_client": "Nitro-client", + "overline": "bovenlijn", + "overlined": "bovenlijn", + "owned": "eigendom", + "radio.Live Shouts": "Live Shouts", + "radio.Points System": "Punten Systeem", + "radio.Radio Home": "Radio Home", + "radio.Radio Settings": "Radio Instellingen", + "radio.Radio punten": "Radio punten", + "radio.Search": "Zoeken", + "radio.Stream Status": "Stream Status", + "radio.System Online": "Systeem Online", + "radio.Word DJ": "Word DJ", + "radio.active_contests": "Actieve contesten", + "radio.active_giveaways": "Actieve giveaways", + "radio.active_listeners": "Actieve luisteraars", + "radio.age": "Leeftijd", + "radio.already_played": "Dit nummer is al gespeeld", + "radio.already_voted": "Je hebt al gestemd", + "radio.application_pending": "Je sollicitatie is in behandeling", + "radio.application_sent": "Sollicitatie verzonden", + "radio.applications_closed": "Sollicitaties zijn gesloten", + "radio.artist": "Artiest", + "radio.availability": "Beschikbaarheid", + "radio.back_overview": "Terug naar overzicht", + "radio.become_dj": "Word DJ", "radio.community_features": "Community Functies", "radio.community_features_desc": "Shouts, song requests, DJ aanmeldingen en meer community interacties.", - "radio.dj_management": "DJ Beheer", - "radio.dj_management_desc": "DJ ranks, schema, auto-detectie en Sambroadcaster/Virtual DJ integratie.", - "radio.monitoring": "Stream Monitoring", - "radio.monitoring_desc": "Houd je stream uptime in de gaten met real-time monitoring.", + "radio.contests": "Contesten", + "radio.contests_label": "Contesten", + "radio.current_leader": "Huidige leider", + "radio.current_period": "Huidige periode", + "radio.current_stand": "Huidige stand", + "radio.daily_limit": "Dagelijkse limiet", + "radio.default_settings": "Standaard Instellingen", + "radio.discord": "Discord", "radio.display_options": "Weergave Opties", "radio.display_options_desc": "Widget, player stijlen, kleuren en aanpasbare CSS/JS.", - "radio.default_settings": "Standaard Instellingen", - "radio.radio_label": "Radio", - "radio.enabled": "Ingeschakeld", - "radio.points_label": "Punten", - "radio.per_min": " per min", - "radio.daily_limit": "Dagelijkse limiet", - "radio.shouts_label": "Shouts", - "radio.on": "Aan", - "radio.widget": "Widget", - "radio.global": "Globaal", "radio.dj_apps": "DJ Aanmeldingen", - "radio.open": "Open", - "radio.monitoring_label": "Monitoring", - "radio.contests_label": "Contesten", - "radio.install_radio_system": "🚀 Radio Systeem Installeren", - "radio.reset_settings": "Instellingen Resetten", - "radio.reset_confirm": "Weet je zeker dat je alle radio instellingen wilt resetten?", + "radio.dj_management": "DJ Beheer", + "radio.dj_management_desc": "DJ ranks, schema, auto-detectie en Sambroadcaster/Virtual DJ integratie.", + "radio.enabled": "Ingeschakeld", + "radio.end_date": "Einddatum", + "radio.experience": "Ervaring", + "radio.giveaways": "Giveaways", + "radio.global": "Globaal", "radio.go_to_radio_settings": "Naar Radio Instellingen", + "radio.host": "Host", + "radio.how_it_works": "Hoe het werkt", + "radio.information": "Informatie", + "radio.install_radio_system": "🚀 Radio Systeem Installeren", + "radio.leaderboard_info": "Leaderboard-informatie", + "radio.leaderboard_updated": "Leaderboard bijgewerkt", + "radio.listen_to_earn": "Luister om te verdienen", + "radio.listeners": "Luisteraars", + "radio.live": "Live", + "radio.load_error": "Fout bij laden", + "radio.loading": "Laden...", + "radio.max_chars": "Max. tekens", + "radio.max_points_per_day": "Max. punten per dag", + "radio.message": "Bericht", + "radio.monitoring": "Stream Monitoring", + "radio.monitoring_desc": "Houd je stream uptime in de gaten met real-time monitoring.", + "radio.monitoring_label": "Monitoring", + "radio.motivation": "Motivatie", + "radio.music": "Muziek", + "radio.music_desc": "Muziekbeschrijving", + "radio.music_style": "Muziekstijl", + "radio.navigation_label": "Radio", + "radio.no_contests": "Geen contesten", + "radio.no_giveaways": "Geen giveaways", + "radio.no_history": "Geen geschiedenis", + "radio.no_listeners": "Geen luisteraars", + "radio.no_requests": "Geen verzoeken", + "radio.no_shouts": "Geen shouts", + "radio.no_shows": "Geen shows", + "radio.not_active": "Niet actief", + "radio.now_playing": "Nu afspelen", + "radio.offline": "Offline", + "radio.offline_message": "Offlinebericht", + "radio.on": "Aan", + "radio.open": "Open", "radio.open_wizard": "🎯 Open Radio Wizard", - "radio.wizard_desc": "Stap-voor-stap wizard met verbindingstest", - "radio.wizard.title": "Radio Installatie Wizard", - "radio.wizard.step_short": "Stap", - "radio.wizard.step_prefix": "Stap", - "radio.wizard.of": "van", - "radio.wizard.next_step": "Volgende Stap →", - "radio.wizard.previous_step": "← Vorige Stap", - "radio.wizard.back_to_setup": "Terug naar setup", - "radio.wizard.step1_label": "Platform", - "radio.wizard.step2_label": "Stream", - "radio.wizard.step3_label": "API", - "radio.wizard.step4_label": "Functies", - "radio.wizard.step5_label": "Testen", - "radio.wizard.step1_subtitle": "Kies je streaming platform", - "radio.wizard.step2_title": "Stream Configuratie", - "radio.wizard.step3_title": "API Configuratie", - "radio.wizard.step3_subtitle": "Now Playing & Luisteraars", - "radio.wizard.step4_title": "Functies Configureren", - "radio.wizard.step4_subtitle": "Kies welke radio functies je wilt inschakelen", - "radio.wizard.step5_title": "Test & Installeren", - "radio.wizard.step5_subtitle": "Controleer de verbinding en voltooi de installatie", - "radio.wizard.platform_shoutcast": "SHOUTcast", - "radio.wizard.platform_shoutcast_desc": "Geschikt voor SHOUTcast servers. Automatische detectie van nu afspelen en luisteraars via stats endpoint.", - "radio.wizard.platform_icecast": "Icecast", - "radio.wizard.platform_icecast_desc": "Geschikt voor Icecast servers. Gebruikt status-json.xsl voor automatische detectie.", - "radio.wizard.platform_azurecast": "AzureCast", - "radio.wizard.platform_azurecast_desc": "AzureCast hosting. Volledige API integratie met now-playing, listeners en auto-configuratie.", - "radio.wizard.platform_other": "Anders", - "radio.wizard.platform_other_desc": "Een andere stream provider. Handmatige configuratie van stream URL en API endpoints.", - "radio.wizard.shoutcast_info_title": "SHOUTcast", - "radio.wizard.shoutcast_info_desc": "Voer je SHOUTcast stream URL in. De wizard probeert automatisch de stats endpoint te vinden.", - "radio.wizard.icecast_info_title": "Icecast", - "radio.wizard.icecast_info_desc": "Voer je Icecast stream URL in. De wizard gebruikt status-json.xsl voor automatische detectie.", - "radio.wizard.azurecast_info_title": "AzureCast", - "radio.wizard.azurecast_info_desc": "AzureCast stream URL + server configuratie. De wizard configureert alles via de AzureCast API.", - "radio.wizard.other_info_title": "Andere Stream", - "radio.wizard.other_info_desc": "Voer je stream URL in. Je kunt later handmatig API endpoints configureren voor nu afspelen en luisteraars.", - "radio.wizard.stream_url_label": "Stream URL *", - "radio.wizard.stream_url_hint": "De directe URL naar je audiostreem (MP3, AAC, OGG, etc.)", - "radio.wizard.stream_name_label": "Stream Naam", - "radio.wizard.stream_name_placeholder": "Mijn Radio", - "radio.wizard.stream_name_hint": "Een naam voor je radiostream (optioneel)", - "radio.wizard.azurecast_section": "AzureCast Server Configuratie", - "radio.wizard.azurecast_base_url_label": "AzureCast Basis URL", + "radio.participants": "Deelnemers", + "radio.participate_button": "Deelnemen", + "radio.per_min": " per min", + "radio.points_auto": "Punten automatisch", + "radio.points_label": "Punten", + "radio.points_per_minute": "Punten per minuut", + "radio.points_system": "Punten Systeem", + "radio.points_system_desc": "Laat gebruikers punten verdienen door te luisteren, nummers aan te vragen en deel te nemen aan contests.", + "radio.prize_value": "Prijs waarde", + "radio.queue": "Wachtrij", + "radio.quick_stats": "Snelle statistieken", + "radio.radio_label": "Radio", + "radio.radio_stream": "Radio Stream", + "radio.radio_stream_desc": "Stel je stream URL in met ondersteuning voor SHOUTcast, Icecast, AzureCast en andere streaming platforms.", + "radio.real_name": "Echte naam", + "radio.request_cooldown": "Wacht even voordat je een nieuw verzoek kunt indienen", + "radio.request_submitted": "Verzoek ingediend", + "radio.requested_by": "Aangevraagd door", + "radio.requests": "Verzoeken", + "radio.requests_disabled": "Verzoeken zijn uitgeschakeld", + "radio.reset_confirm": "Weet je zeker dat je alle radio instellingen wilt resetten?", + "radio.reset_settings": "Instellingen Resetten", + "radio.send_application": "Sollicitatie verzenden", + "radio.send_shout": "Shout verzenden", + "radio.setup.button_label": "Alles Installeren", + "radio.setup.error_body": "Er is een fout opgetreden: :message", + "radio.setup.error_title": "Installatie Mislukt", + "radio.setup.modal_description": "Dit zal alle radio instellingen configureren met standaard waarden.", + "radio.setup.modal_heading": "Radio Installeren?", + "radio.setup.modal_submit": "Ja, installeer!", + "radio.setup.success_body": "Radio systeem is succesvol geïnstalleerd en geconfigureerd!", + "radio.setup.success_title": "Radio Geïnstalleerd!", + "radio.setup.tooltip": "Installeer het complete radio systeem", + "radio.setup_complete": "✅ Installatie Voltooid!", + "radio.setup_page_subtitle": "Configureer je radio systeem in één keer", + "radio.setup_page_title": "Radio Setup", + "radio.shout_message": "Shoutbericht", + "radio.shout_placeholder": "Schrijf een shout...", + "radio.shout_sent": "Shout verzonden", + "radio.shouts": "Shouts", + "radio.shouts_disabled": "Shouts zijn uitgeschakeld", + "radio.shouts_label": "Shouts", + "radio.start_date": "Startdatum", + "radio.start_listening": "Begin met luisteren", + "radio.submit_request": "Verzoek indienen", + "radio.this_month": "Deze maand", + "radio.this_week": "Deze week", + "radio.timetable": "Rooster", + "radio.title": "Radio", + "radio.top_100": "Top 100", + "radio.total": "Totaal", + "radio.unknown": "Onbekend", + "radio.view_participate": "Bekijk & doe mee", + "radio.vote": "Stemmen", + "radio.vote_submitted": "Stem verzonden", + "radio.votes": "Stemmen", + "radio.what_gets_configured": "Wat wordt er geconfigureerd?", + "radio.widget": "Widget", + "radio.wizard.api_url": "API URL", + "radio.wizard.artist": "Artiest", "radio.wizard.azurecast_base_url_hint": "De basis URL van je AzureCast server. Wordt automatisch gedetecteerd als leeg gelaten.", - "radio.wizard.azurecast_station_id_label": "Station ID", + "radio.wizard.azurecast_base_url_label": "AzureCast Basis URL", + "radio.wizard.azurecast_info_desc": "AzureCast stream URL + server configuratie. De wizard configureert alles via de AzureCast API.", + "radio.wizard.azurecast_info_title": "AzureCast", + "radio.wizard.azurecast_section": "AzureCast Server Configuratie", "radio.wizard.azurecast_station_id_hint": "Het station ID in AzureCast (standaard: 1)", - "radio.wizard.enable_now_playing": "Nu Afspelen inschakelen", - "radio.wizard.now_playing_api_label": "Now Playing API URL", - "radio.wizard.now_playing_api_hint": "API endpoint dat het huidige nummer teruggeeft. Meestal automatisch gedetecteerd.", - "radio.wizard.enable_listeners": "Luisteraars teller inschakelen", - "radio.wizard.listeners_api_label": "Listeners API URL", - "radio.wizard.listeners_api_hint": "API endpoint dat het aantal luisteraars teruggeeft.", - "radio.wizard.enable_current_dj": "Huidige DJ tonen", + "radio.wizard.azurecast_station_id_label": "Station ID", + "radio.wizard.back_to_setup": "Terug naar setup", + "radio.wizard.content_type": "Content-Type", "radio.wizard.detected": "gedetecteerd!", "radio.wizard.detected_desc": "API endpoints zijn automatisch gevonden en ingevuld.", - "radio.wizard.not_detected": "Geen automatische detectie", - "radio.wizard.not_detected_desc": "Vul de API URLs handmatig in of sla deze stap over.", - "radio.wizard.section_community": "Community Functies", - "radio.wizard.feature_shouts": "Shouts", - "radio.wizard.feature_shouts_desc": "Berichten achterlaten", + "radio.wizard.discord_webhook_hint": "Maak een webhook aan in je Discord server kanaal.", + "radio.wizard.discord_webhook_label": "Discord Webhook URL", + "radio.wizard.enable_current_dj": "Huidige DJ tonen", + "radio.wizard.enable_listeners": "Luisteraars teller inschakelen", + "radio.wizard.enable_now_playing": "Nu Afspelen inschakelen", + "radio.wizard.error": "Fout", "radio.wizard.feature_applications": "DJ Aanmeldingen", "radio.wizard.feature_applications_desc": "Solliciteren als DJ", + "radio.wizard.feature_contests": "Contesten", + "radio.wizard.feature_contests_desc": "Wedstrijden organiseren", + "radio.wizard.feature_discord": "Discord Notificaties", + "radio.wizard.feature_discord_desc": "Meldingen bij DJ live / nummer wijziging", + "radio.wizard.feature_giveaways": "Giveaways", + "radio.wizard.feature_giveaways_desc": "Cadeautjes weggeven", + "radio.wizard.feature_points": "Punten Systeem", + "radio.wizard.feature_points_desc": "Verdien punten door te luisteren", "radio.wizard.feature_requests": "Song Verzoeken", "radio.wizard.feature_requests_desc": "Nummers aanvragen", - "radio.wizard.section_display": "Weergave", + "radio.wizard.feature_shouts": "Shouts", + "radio.wizard.feature_shouts_desc": "Berichten achterlaten", "radio.wizard.feature_widget": "Radio Widget", "radio.wizard.feature_widget_desc": "Miniplayer op de site", "radio.wizard.feature_widget_global": "Widget Overal", "radio.wizard.feature_widget_global_desc": "Op alle pagina's tonen", - "radio.wizard.widget_position_label": "Widget Positie", - "radio.wizard.position_bottom_right": "Rechtsonder", + "radio.wizard.http_status": "HTTP Status", + "radio.wizard.icecast_info_desc": "Voer je Icecast stream URL in. De wizard gebruikt status-json.xsl voor automatische detectie.", + "radio.wizard.icecast_info_title": "Icecast", + "radio.wizard.install_button": "Radio Installeren", + "radio.wizard.install_confirm": "Weet je zeker dat je de radio wilt installeren met deze instellingen?", + "radio.wizard.listeners": "Luisteraars", + "radio.wizard.listeners_api_hint": "API endpoint dat het aantal luisteraars teruggeeft.", + "radio.wizard.listeners_api_label": "Listeners API URL", + "radio.wizard.next_step": "Volgende Stap →", + "radio.wizard.not_detected": "Geen automatische detectie", + "radio.wizard.not_detected_desc": "Vul de API URLs handmatig in of sla deze stap over.", + "radio.wizard.now_playing_api_hint": "API endpoint dat het huidige nummer teruggeeft. Meestal automatisch gedetecteerd.", + "radio.wizard.now_playing_api_label": "Now Playing API URL", + "radio.wizard.of": "van", + "radio.wizard.other_info_desc": "Voer je stream URL in. Je kunt later handmatig API endpoints configureren voor nu afspelen en luisteraars.", + "radio.wizard.other_info_title": "Andere Stream", + "radio.wizard.platform_azurecast": "AzureCast", + "radio.wizard.platform_azurecast_desc": "AzureCast hosting. Volledige API integratie met now-playing, listeners en auto-configuratie.", + "radio.wizard.platform_icecast": "Icecast", + "radio.wizard.platform_icecast_desc": "Geschikt voor Icecast servers. Gebruikt status-json.xsl voor automatische detectie.", + "radio.wizard.platform_other": "Anders", + "radio.wizard.platform_other_desc": "Een andere stream provider. Handmatige configuratie van stream URL en API endpoints.", + "radio.wizard.platform_shoutcast": "SHOUTcast", + "radio.wizard.platform_shoutcast_desc": "Geschikt voor SHOUTcast servers. Automatische detectie van nu afspelen en luisteraars via stats endpoint.", "radio.wizard.position_bottom_left": "Linksonder", - "radio.wizard.position_top_right": "Rechtsboven", + "radio.wizard.position_bottom_right": "Rechtsonder", "radio.wizard.position_top_left": "Linksboven", + "radio.wizard.position_top_right": "Rechtsboven", + "radio.wizard.previous_step": "← Vorige Stap", + "radio.wizard.section_community": "Community Functies", + "radio.wizard.section_display": "Weergave", "radio.wizard.section_gamification": "Gamification", - "radio.wizard.feature_points": "Punten Systeem", - "radio.wizard.feature_points_desc": "Verdien punten door te luisteren", - "radio.wizard.feature_contests": "Contesten", - "radio.wizard.feature_contests_desc": "Wedstrijden organiseren", - "radio.wizard.feature_giveaways": "Giveaways", - "radio.wizard.feature_giveaways_desc": "Cadeautjes weggeven", "radio.wizard.section_integrations": "Integraties", - "radio.wizard.feature_discord": "Discord Notificaties", - "radio.wizard.feature_discord_desc": "Meldingen bij DJ live / nummer wijziging", - "radio.wizard.discord_webhook_label": "Discord Webhook URL", - "radio.wizard.discord_webhook_hint": "Maak een webhook aan in je Discord server kanaal.", - "radio.wizard.test_title": "Verbinding Testen", - "radio.wizard.test_desc": "Klik op Test Verbinding om te controleren of je stream en APIs bereikbaar zijn.", - "radio.wizard.test_loading": "Bezig met testen van de verbinding...", - "radio.wizard.test_prompt": "Klik op de knop om de verbinding te testen.", - "radio.wizard.test_button": "Test Verbinding", - "radio.wizard.test_retry": "Opnieuw Testen", "radio.wizard.settings_overview": "Overzicht van Instellingen", "radio.wizard.settings_overview_desc": "Dit zijn de instellingen die worden opgeslagen:", - "radio.wizard.install_confirm": "Weet je zeker dat je de radio wilt installeren met deze instellingen?", - "radio.wizard.install_button": "Radio Installeren", - "radio.wizard.test_result_stream": "Stream Verbinding", - "radio.wizard.test_result_now_playing": "Now Playing", - "radio.wizard.test_result_listeners": "Luisteraars", - "radio.wizard.status_success": "Succes", - "radio.wizard.status_warning": "Waarschuwing", + "radio.wizard.shoutcast_info_desc": "Voer je SHOUTcast stream URL in. De wizard probeert automatisch de stats endpoint te vinden.", + "radio.wizard.shoutcast_info_title": "SHOUTcast", + "radio.wizard.song": "Nummer", "radio.wizard.status_error": "Fout", "radio.wizard.status_skipped": "Overgeslagen", + "radio.wizard.status_success": "Succes", "radio.wizard.status_untested": "Niet getest", - "radio.wizard.content_type": "Content-Type", - "radio.wizard.http_status": "HTTP Status", - "radio.wizard.song": "Nummer", - "radio.wizard.artist": "Artiest", - "radio.wizard.listeners": "Luisteraars", - "radio.wizard.api_url": "API URL", - "radio.wizard.test_stream_ok": "Stream is bereikbaar! Je kunt de radio installeren.", - "radio.wizard.test_stream_fail": "Stream is niet bereikbaar. Controleer de URL en probeer het opnieuw.", - "radio.wizard.test_not_run": "Nog niet getest.", + "radio.wizard.status_warning": "Waarschuwing", + "radio.wizard.step1_label": "Platform", + "radio.wizard.step1_subtitle": "Kies je streaming platform", + "radio.wizard.step2_label": "Stream", + "radio.wizard.step2_title": "Stream Configuratie", + "radio.wizard.step3_label": "API", + "radio.wizard.step3_subtitle": "Now Playing & Luisteraars", + "radio.wizard.step3_title": "API Configuratie", + "radio.wizard.step4_label": "Functies", + "radio.wizard.step4_subtitle": "Kies welke radio functies je wilt inschakelen", + "radio.wizard.step4_title": "Functies Configureren", + "radio.wizard.step5_label": "Testen", + "radio.wizard.step5_subtitle": "Controleer de verbinding en voltooi de installatie", + "radio.wizard.step5_title": "Test & Installeren", + "radio.wizard.step_prefix": "Stap", + "radio.wizard.step_short": "Stap", + "radio.wizard.stream_name_hint": "Een naam voor je radiostream (optioneel)", + "radio.wizard.stream_name_label": "Stream Naam", + "radio.wizard.stream_name_placeholder": "Mijn Radio", + "radio.wizard.stream_url_hint": "De directe URL naar je audiostreem (MP3, AAC, OGG, etc.)", + "radio.wizard.stream_url_label": "Stream URL *", + "radio.wizard.test_button": "Test Verbinding", "radio.wizard.test_connection_fail": "Kon de test niet uitvoeren: ", - "radio.wizard.error": "Fout", + "radio.wizard.test_desc": "Klik op Test Verbinding om te controleren of je stream en APIs bereikbaar zijn.", + "radio.wizard.test_loading": "Bezig met testen van de verbinding...", + "radio.wizard.test_not_run": "Nog niet getest.", + "radio.wizard.test_prompt": "Klik op de knop om de verbinding te testen.", + "radio.wizard.test_result_listeners": "Luisteraars", + "radio.wizard.test_result_now_playing": "Now Playing", + "radio.wizard.test_result_stream": "Stream Verbinding", + "radio.wizard.test_retry": "Opnieuw Testen", + "radio.wizard.test_stream_fail": "Stream is niet bereikbaar. Controleer de URL en probeer het opnieuw.", + "radio.wizard.test_stream_ok": "Stream is bereikbaar! Je kunt de radio installeren.", + "radio.wizard.test_title": "Verbinding Testen", + "radio.wizard.title": "Radio Installatie Wizard", "radio.wizard.unknown_error": "Onbekende fout", - "Homepage": "Homepage", - "commandocentrum.nitro_update": "Nitro V3 Update", - "commandocentrum.nitro_update_desc": "Update alleen via command line — configureer instellingen in .env", - "commandocentrum.nitro_cli_only": "Dit script kan alleen via de command line worden uitgevoerd. Gebruik: bash update-Nitrov3.sh\n\nInstellingen worden geconfigureerd in het .env bestand in de project root." + "radio.wizard.widget_position_label": "Widget Positie", + "radio.wizard_desc": "Stap-voor-stap wizard met verbindingstest", + "recommended_windows": "Aanbevolen voor Windows", + "sso_authentication": "SSO-authenticatie", + "sso_description": "Automatisch inloggen via SSO", + "sso_ticket": "SSO-ticket", + "total": "totaal", + "underline": "onderstrepen", + "welcome_flash": "Welkom bij Flash!", + "welcome_nitro": "Welkom bij Nitro!", + "windows": "Windows" }