From 2f30a058a45a559bc05947821b5000c0a314fc39 Mon Sep 17 00:00:00 2001 From: root Date: Tue, 19 May 2026 21:49:39 +0200 Subject: [PATCH] feat: add full i18n support to Commandocentrum - Replace all hardcoded Dutch/English strings with __() translation calls - Update 13 Blade components to use translation keys - Update Commandocentrum.php controller with translation calls - Add comprehensive Dutch (nl.json) and English (en.json) translations - 150+ translation keys for UI labels, messages, and notifications - Supports all 21 languages available in the lang/ directory --- .../Pages/Monitoring/Commandocentrum.php | 250 +-- lang/en.json | 1577 ++-------------- lang/nl.json | 1583 ++--------------- .../commandocentrum/alert-form.blade.php | 4 +- .../commandocentrum/backups-list.blade.php | 6 +- .../commandocentrum/clothing-status.blade.php | 2 +- .../commandocentrum/diagnostics.blade.php | 14 +- .../commandocentrum/emulator-info.blade.php | 6 +- .../emulator-settings.blade.php | 20 +- .../commandocentrum/emulator-status.blade.php | 34 +- .../commandocentrum/hotel-status.blade.php | 16 +- .../commandocentrum/nitro-settings.blade.php | 16 +- .../commandocentrum/nitro-status.blade.php | 26 +- .../commandocentrum/server-info.blade.php | 12 +- .../commandocentrum/staff-activity.blade.php | 20 +- .../commandocentrum/update-history.blade.php | 2 +- 16 files changed, 585 insertions(+), 3003 deletions(-) diff --git a/app/Filament/Pages/Monitoring/Commandocentrum.php b/app/Filament/Pages/Monitoring/Commandocentrum.php index 3c67c73..ec4e4fa 100755 --- a/app/Filament/Pages/Monitoring/Commandocentrum.php +++ b/app/Filament/Pages/Monitoring/Commandocentrum.php @@ -38,6 +38,8 @@ use Illuminate\Support\Facades\Process; use Illuminate\Support\HtmlString; use UnitEnum; +use function __; + final class Commandocentrum extends Page implements HasForms { use InteractsWithForms; @@ -126,27 +128,27 @@ final class Commandocentrum extends Page implements HasForms { return $schema ->components([ - Section::make('🎯 Live Status') - ->description('Real-time hotel statistieken') + Section::make(__('commandocentrum.live_status')) + ->description(__('commandocentrum.live_status_desc')) ->icon('heroicon-o-heart') ->columns(4) ->schema([ Placeholder::make('online_users') - ->label('Online') - ->content(fn (): HtmlString => $this->getCardHtml('Online', $this->getOnlineUsersCount(), '#22c55e', 'heroicon-o-users')), + ->label(__('commandocentrum.online')) + ->content(fn (): HtmlString => $this->getCardHtml(__('commandocentrum.online'), $this->getOnlineUsersCount(), '#22c55e', 'heroicon-o-users')), Placeholder::make('emulator_status') - ->label('Emulator') - ->content(fn (): HtmlString => $this->getCardHtml('Emulator', $this->getEmulatorStatusText(), $this->getEmulatorStatusColor(), 'heroicon-o-server')), + ->label(__('commandocentrum.emulator')) + ->content(fn (): HtmlString => $this->getCardHtml(__('commandocentrum.emulator'), $this->getEmulatorStatusText(), $this->getEmulatorStatusColor(), 'heroicon-o-server')), Placeholder::make('database_status') - ->label('Database') - ->content(fn (): HtmlString => $this->getCardHtml('Database', $this->isDatabaseOnline() ? 'Online' : 'Offline', $this->isDatabaseOnline() ? '#22c55e' : '#ef4444', 'heroicon-o-circle-stack')), + ->label(__('commandocentrum.database')) + ->content(fn (): HtmlString => $this->getCardHtml(__('commandocentrum.database'), $this->isDatabaseOnline() ? __('commandocentrum.online') : __('commandocentrum.offline'), $this->isDatabaseOnline() ? '#22c55e' : '#ef4444', 'heroicon-o-circle-stack')), Placeholder::make('server_load') - ->label('Load') - ->content(fn (): HtmlString => $this->getCardHtml('Load', $this->getServerLoad(), '#3b82f6', 'heroicon-o-cpu-chip')), + ->label(__('commandocentrum.load')) + ->content(fn (): HtmlString => $this->getCardHtml(__('commandocentrum.load'), $this->getServerLoad(), '#3b82f6', 'heroicon-o-cpu-chip')), ]), - Section::make('πŸ“Š Server Informatie') - ->description('Gedetailleerde server status') + Section::make(__('commandocentrum.server_info')) + ->description(__('commandocentrum.server_info_desc')) ->icon('heroicon-o-information-circle') ->schema([ Placeholder::make('server_info') @@ -154,12 +156,12 @@ final class Commandocentrum extends Page implements HasForms ->content(fn () => $this->renderServerInfoView()), ]), - Section::make('🩺 Systeem Gezondheid') - ->description('Automatische systeem diagnostiek') + Section::make(__('commandocentrum.system_health')) + ->description(__('commandocentrum.system_health_desc')) ->icon('heroicon-o-heart') ->afterHeader([ Action::make('refresh_diagnostics') - ->label('Vernieuwen') + ->label(__('commandocentrum.refresh')) ->icon('heroicon-o-arrow-path') ->color('info') ->action('refreshDiagnostics'), @@ -170,8 +172,8 @@ final class Commandocentrum extends Page implements HasForms ->content(fn (): HtmlString => $this->renderDiagnostics()), ]), - Section::make('🏨 Hotel Status') - ->description('Emulator en Nitro status') + Section::make(__('commandocentrum.hotel_status')) + ->description(__('commandocentrum.hotel_status_desc')) ->icon('heroicon-o-building-office') ->schema([ Placeholder::make('hotel_status') @@ -179,8 +181,8 @@ final class Commandocentrum extends Page implements HasForms ->content(fn () => $this->renderHotelStatusView()), ]), - Section::make('πŸ“’ Hotel Alert') - ->description('Stuur een bericht naar alle online gebruikers') + Section::make(__('commandocentrum.hotel_alert')) + ->description(__('commandocentrum.hotel_alert_desc')) ->icon('heroicon-o-megaphone') ->schema([ Placeholder::make('alert_form') @@ -188,8 +190,8 @@ final class Commandocentrum extends Page implements HasForms ->content(fn () => view('filament.components.commandocentrum.alert-form')), ]), - Section::make('πŸ“œ Emulator Logs') - ->description('Live emulator log viewer') + Section::make(__('commandocentrum.emulator_logs')) + ->description(__('commandocentrum.emulator_logs_desc')) ->icon('heroicon-o-document-text') ->columnSpanFull() ->schema([ @@ -198,28 +200,28 @@ final class Commandocentrum extends Page implements HasForms ->content(fn () => view('filament.components.emulator-log-viewer')), ]), - Section::make('πŸ–₯️ Emulator Control') - ->description('Volledige emulator controle') + Section::make(__('commandocentrum.emulator_control')) + ->description(__('commandocentrum.emulator_control_desc')) ->icon('heroicon-o-server') ->columns(3) ->afterHeader([ Action::make('start_emulator') - ->label('Start') + ->label(__('commandocentrum.start')) ->icon('heroicon-o-play') ->color('success') ->action('startEmulator'), Action::make('stop_emulator') - ->label('Stop') + ->label(__('commandocentrum.stop')) ->icon('heroicon-o-stop') ->color('danger') ->action('stopEmulator'), Action::make('restart_emulator') - ->label('Restart') + ->label(__('commandocentrum.restart')) ->icon('heroicon-o-arrow-path') ->color('warning') ->action('restartEmulator'), Action::make('check_emulator') - ->label('Check') + ->label(__('commandocentrum.check')) ->icon('heroicon-o-check-circle') ->color('info') ->action('checkEmulator'), @@ -230,24 +232,24 @@ final class Commandocentrum extends Page implements HasForms ->content(fn () => $this->renderEmulatorInfoView()), ]), - Section::make('πŸ”„ Emulator Updates') - ->description('Configureer en update de emulator') + Section::make(__('commandocentrum.emulator_updates')) + ->description(__('commandocentrum.emulator_updates_desc')) ->icon('heroicon-o-arrow-down-circle') ->afterHeader([ Action::make('check_updates') - ->label('Check Updates') + ->label(__('commandocentrum.check_updates')) ->color('info') ->action('checkEmulatorUpdates'), Action::make('build_emulator') - ->label('πŸ”¨ Build') + ->label('πŸ”¨ ' . __('commandocentrum.build')) ->color('success') ->action('buildEmulator'), Action::make('run_sql') - ->label('SQL Updates') + ->label(__('commandocentrum.sql_updates')) ->color('purple') ->action('runSqlUpdates'), Action::make('save_emulator') - ->label('Opslaan') + ->label(__('commandocentrum.save')) ->color('primary') ->action('saveEmulator'), ]) @@ -257,8 +259,8 @@ final class Commandocentrum extends Page implements HasForms ->content(fn () => $this->renderEmulatorSettingsView()), ]), - Section::make('πŸ’Ύ Emulator Backups') - ->description('Bekijk en herstel emulator backups') + Section::make(__('commandocentrum.emulator_backups')) + ->description(__('commandocentrum.emulator_backups_desc')) ->icon('heroicon-s-archive-box') ->schema([ Placeholder::make('backups_list') @@ -266,28 +268,28 @@ final class Commandocentrum extends Page implements HasForms ->content(fn () => $this->renderBackupsListView()), ]), - Section::make('πŸ“¦ Nitro Client') - ->description('Configureer en update Nitro') + Section::make(__('commandocentrum.nitro_client')) + ->description(__('commandocentrum.nitro_client_desc')) ->icon('heroicon-o-cloud-arrow-down') ->afterHeader([ Action::make('detect_paths') - ->label('πŸ” Auto Detect') + ->label('πŸ” ' . __('commandocentrum.auto_detect')) ->color('success') ->action('detectAndSavePaths'), Action::make('check_nitro') - ->label('Check') + ->label(__('commandocentrum.check')) ->color('info') ->action('checkNitroUpdates'), Action::make('build_nitro') - ->label('Build') + ->label(__('commandocentrum.build')) ->color('pink') ->action('buildNitro'), Action::make('generate_configs') - ->label('Genereer Configs') + ->label(__('commandocentrum.generate_configs')) ->color('indigo') ->action('generateNitroConfigs'), Action::make('save_nitro') - ->label('Opslaan') + ->label(__('commandocentrum.save')) ->color('primary') ->action('saveNitro'), ]) @@ -297,31 +299,31 @@ final class Commandocentrum extends Page implements HasForms ->content(fn () => $this->renderNitroSettingsView()), ]), - Section::make('βš™οΈ Automatische Updates') - ->description('Configureer automatische updates') + Section::make(__('commandocentrum.auto_updates')) + ->description(__('commandocentrum.auto_updates_desc')) ->icon('heroicon-o-clock') ->columns(2) ->afterHeader([ Action::make('save_auto') - ->label('Opslaan') + ->label(__('commandocentrum.save')) ->color('primary') ->action('saveAutoUpdate'), ]) ->schema([ Toggle::make('auto_update_enabled') - ->label('Automatische Updates Inschakelen'), + ->label(__('commandocentrum.enable_auto_updates')), TextInput::make('auto_update_schedule') - ->label('Schema (HH:MM)'), + ->label(__('commandocentrum.schedule')), TextInput::make('auto_update_days') - ->label('Dagen (0-6)'), + ->label(__('commandocentrum.days')), ]), - Section::make('πŸ‘” Kleding Sync') - ->description('Sync catalogus kleding uit FigureMap') + Section::make(__('commandocentrum.clothing_sync')) + ->description(__('commandocentrum.clothing_sync_desc')) ->icon('heroicon-o-user') ->afterHeader([ Action::make('sync_clothing') - ->label('πŸ”„ Sync') + ->label('πŸ”„ ' . __('commandocentrum.sync')) ->color('success') ->action('syncClothing'), ]) @@ -331,41 +333,41 @@ final class Commandocentrum extends Page implements HasForms ->content(fn () => $this->renderClothingStatusView()), ]), - Section::make('πŸ”” Meldingen') - ->description('E-mail en Discord alerts') + Section::make(__('commandocentrum.notifications')) + ->description(__('commandocentrum.notifications_desc')) ->icon('heroicon-o-bell') ->columns(2) ->afterHeader([ Action::make('save_alerts') - ->label('Opslaan') + ->label(__('commandocentrum.save')) ->color('primary') ->action('saveAlerts'), Action::make('test_discord') - ->label('Test Discord') + ->label(__('commandocentrum.test_discord')) ->color('info') ->action('testDiscord'), ]) ->schema([ Toggle::make('alert_email_enabled') - ->label('E-mail Meldingen'), + ->label(__('commandocentrum.email_notifications')), TextInput::make('alert_email_address') - ->label('E-mail Adres') + ->label(__('commandocentrum.email_address')) ->email() ->columnSpanFull(), Toggle::make('alert_discord_enabled') - ->label('Discord Meldingen'), + ->label(__('commandocentrum.discord_notifications')), TextInput::make('alert_discord_webhook_url') - ->label('Webhook URL') + ->label(__('commandocentrum.webhook_url')) ->columnSpanFull(), Select::make('discord_webhook_ranks') - ->label('Ranks die Discord notificatie krijgen') + ->label(__('commandocentrum.discord_ranks')) ->multiple() ->options(fn () => WebsitePermission::query()->pluck('permission', 'min_rank')->mapWithKeys(fn ($perm, $rank) => [$rank => "Rank {$rank} ({$perm})"])->toArray()) - ->helperText('Laat leeg voor alleen staff (min_staff_rank)'), + ->helperText(__('commandocentrum.discord_ranks_helper')), ]), - Section::make('πŸ“Š Update Geschiedenis') - ->description('Laatste systeem updates') + Section::make(__('commandocentrum.update_history')) + ->description(__('commandocentrum.update_history_desc')) ->icon('heroicon-o-clock') ->schema([ Placeholder::make('history') @@ -373,42 +375,42 @@ final class Commandocentrum extends Page implements HasForms ->content(fn () => $this->renderUpdateHistoryView()), ]), - Section::make('πŸ” Social Login (v1.4)') - ->description('Enable social login providers') + Section::make(__('commandocentrum.social_login')) + ->description(__('commandocentrum.social_login_desc')) ->icon('heroicon-o-user-circle') ->schema([ Toggle::make('social_login_google_enabled') - ->label('Google Login') - ->helperText('Allow users to login with Google'), + ->label(__('commandocentrum.google_login')) + ->helperText(__('commandocentrum.google_login_helper')), TextInput::make('social_login_google_client_id') - ->label('Google Client ID') - ->helperText('From Google Cloud Console'), + ->label(__('commandocentrum.google_client_id')) + ->helperText(__('commandocentrum.google_client_id_helper')), TextInput::make('social_login_google_client_secret') - ->label('Google Client Secret') + ->label(__('commandocentrum.google_client_secret')) ->type('password'), Toggle::make('social_login_discord_enabled') - ->label('Discord Login') - ->helperText('Allow users to login with Discord'), + ->label(__('commandocentrum.discord_login')) + ->helperText(__('commandocentrum.discord_login_helper')), TextInput::make('social_login_discord_client_id') - ->label('Discord Client ID') - ->helperText('From Discord Developer Portal'), + ->label(__('commandocentrum.discord_client_id')) + ->helperText(__('commandocentrum.discord_client_id_helper')), TextInput::make('social_login_discord_client_secret') - ->label('Discord Client Secret') + ->label(__('commandocentrum.discord_client_secret')) ->type('password'), Toggle::make('social_login_github_enabled') - ->label('GitHub Login') - ->helperText('Allow users to login with GitHub'), + ->label(__('commandocentrum.github_login')) + ->helperText(__('commandocentrum.github_login_helper')), TextInput::make('social_login_github_client_id') - ->label('GitHub Client ID') - ->helperText('From GitHub Developer Settings'), + ->label(__('commandocentrum.github_client_id')) + ->helperText(__('commandocentrum.github_client_id_helper')), TextInput::make('social_login_github_client_secret') - ->label('GitHub Client Secret') + ->label(__('commandocentrum.github_client_secret')) ->type('password'), ]) ->columns(2), - Section::make('πŸ‘” Staff Activity Log') - ->description('Recent staff activities in the housekeeping (v1.2)') + Section::make(__('commandocentrum.staff_activity')) + ->description(__('commandocentrum.staff_activity_desc')) ->icon('heroicon-o-user-group') ->schema([ Placeholder::make('staff_activity') @@ -453,9 +455,9 @@ final class Commandocentrum extends Page implements HasForms $clientColor = $clientExists ? '#22c55e' : '#ef4444'; $rendererColor = $rendererExists ? '#22c55e' : '#ef4444'; - $clientText = $clientExists ? 'βœ“ ' . substr($clientCommit, 0, 7) : 'βœ— Niet gevonden'; - $rendererText = $rendererExists ? 'βœ“ ' . substr($rendererCommit, 0, 7) : 'βœ— Niet gevonden'; - $webrootText = $rendererExists ? 'βœ“ ' . basename($nitroWebroot) : 'βœ— Niet gevonden'; + $clientText = $clientExists ? 'βœ“ ' . substr($clientCommit, 0, 7) : 'βœ— ' . __('commandocentrum.not_found'); + $rendererText = $rendererExists ? 'βœ“ ' . substr($rendererCommit, 0, 7) : 'βœ— ' . __('commandocentrum.not_found'); + $webrootText = $rendererExists ? 'βœ“ ' . basename($nitroWebroot) : 'βœ— ' . __('commandocentrum.not_found'); $webrootColor = $rendererExists ? '#22c55e' : '#ef4444'; return view('filament.components.commandocentrum.hotel-status', [ @@ -463,7 +465,7 @@ final class Commandocentrum extends Page implements HasForms 'serviceColor' => $serviceColor, 'onlineUsers' => $this->getOnlineUsersCount(), 'emulatorStatus' => $this->getEmulatorStatusText(), - 'dbStatus' => $this->isDatabaseOnline() ? 'Online' : 'Offline', + 'dbStatus' => $this->isDatabaseOnline() ? __('commandocentrum.online') : __('commandocentrum.offline'), 'dbColor' => $this->isDatabaseOnline() ? '#22c55e' : '#ef4444', 'clientExists' => $clientExists, 'clientColor' => $clientColor, @@ -835,7 +837,7 @@ final class Commandocentrum extends Page implements HasForms public function sendHotelAlert(): void { $result = app(EmulatorControlAction::class)->sendAlert($this->data['hotel_alert_message'] ?? ''); - $this->notify($result['success'] ? 'Success' : 'Error', $result['message'], $result['success'] ? 'success' : 'danger'); + $this->notify($result['success'] ? __('commandocentrum.success') : __('commandocentrum.error'), $result['message'], $result['success'] ? 'success' : 'danger'); if ($result['success']) { $this->data['hotel_alert_message'] = ''; } @@ -844,19 +846,19 @@ final class Commandocentrum extends Page implements HasForms public function startEmulator(): void { $result = app(EmulatorControlAction::class)->start(); - $this->notify($result['success'] ? 'Success' : 'Error', $result['message'], $result['success'] ? 'success' : 'danger'); + $this->notify($result['success'] ? __('commandocentrum.success') : __('commandocentrum.error'), $result['message'], $result['success'] ? 'success' : 'danger'); } public function stopEmulator(): void { $result = app(EmulatorControlAction::class)->stop(); - $this->notify($result['success'] ? 'Success' : 'Error', $result['message'], $result['success'] ? 'success' : 'danger'); + $this->notify($result['success'] ? __('commandocentrum.success') : __('commandocentrum.error'), $result['message'], $result['success'] ? 'success' : 'danger'); } public function restartEmulator(): void { $result = app(EmulatorControlAction::class)->restart(); - $this->notify($result['success'] ? 'Success' : 'Error', $result['message'], $result['success'] ? 'success' : 'danger'); + $this->notify($result['success'] ? __('commandocentrum.success') : __('commandocentrum.error'), $result['message'], $result['success'] ? 'success' : 'danger'); } public function checkEmulator(): void @@ -865,20 +867,20 @@ final class Commandocentrum extends Page implements HasForms Artisan::call('monitor:emulator', ['--notify-online' => true]); $rconService = new RconService; if ($rconService->isConnected()) { - $this->notify('Success', 'Emulator is online en reageert!', 'success'); + $this->notify(__('commandocentrum.success'), __('commandocentrum.emulator_online'), 'success'); } else { - $this->notify('Warning', 'Emulator is niet bereikbaar via RCON', 'warning'); + $this->notify(__('commandocentrum.warning'), __('commandocentrum.emulator_unreachable'), 'warning'); } $this->fillForm(); } catch (Exception $e) { - $this->notify('Error', $e->getMessage(), 'danger'); + $this->notify(__('commandocentrum.error'), $e->getMessage(), 'danger'); } } public function checkEmulatorUpdates(): void { $result = app(EmulatorControlAction::class)->update(); - $this->notify($result['success'] ?? false ? 'Success' : 'Error', $result['message'] ?? $result['error'] ?? 'Onbekende fout', ($result['success'] ?? false) ? 'success' : 'danger'); + $this->notify($result['success'] ?? false ? __('commandocentrum.success') : __('commandocentrum.error'), $result['message'] ?? $result['error'] ?? __('commandocentrum.unknown'), ($result['success'] ?? false) ? 'success' : 'danger'); Cache::forget('all_updates_check'); $this->fillForm(); } @@ -886,19 +888,19 @@ final class Commandocentrum extends Page implements HasForms public function buildEmulator(): void { $result = app(EmulatorControlAction::class)->build(); - $this->notify($result['success'] ?? false ? 'Success' : 'Error', $result['message'] ?? $result['error'] ?? 'Onbekende fout', ($result['success'] ?? false) ? 'success' : 'danger'); + $this->notify($result['success'] ?? false ? __('commandocentrum.success') : __('commandocentrum.error'), $result['message'] ?? $result['error'] ?? __('commandocentrum.unknown'), ($result['success'] ?? false) ? 'success' : 'danger'); } public function runSqlUpdates(): void { $result = app(EmulatorControlAction::class)->runSqlUpdates(); - $this->notify($result['success'] ?? false ? 'Success' : 'Error', $result['message'] ?? 'Onbekende fout', ($result['success'] ?? false) ? 'success' : 'danger'); + $this->notify($result['success'] ?? false ? __('commandocentrum.success') : __('commandocentrum.error'), $result['message'] ?? __('commandocentrum.unknown'), ($result['success'] ?? false) ? 'success' : 'danger'); } public function restoreBackup(string $backupName): void { $result = app(EmulatorControlAction::class)->restoreBackup($backupName); - $this->notify($result['success'] ? 'Success' : 'Error', $result['message'] ?? $result['error'] ?? 'Onbekende fout', $result['success'] ? 'success' : 'danger'); + $this->notify($result['success'] ? __('commandocentrum.success') : __('commandocentrum.error'), $result['message'] ?? $result['error'] ?? __('commandocentrum.unknown'), $result['success'] ? 'success' : 'danger'); $this->fillForm(); } @@ -915,9 +917,9 @@ final class Commandocentrum extends Page implements HasForms $settings->set('emulator_database_host', $this->data['emulator_database_host'] ?? '127.0.0.1'); $settings->set('emulator_database_name', $this->data['emulator_database_name'] ?? ''); $settings->set('emulator_service_name', $this->data['emulator_service_name'] ?? 'arcturus'); - $this->notify('Success', 'Emulator instellingen opgeslagen!', 'success'); + $this->notify(__('commandocentrum.success'), __('commandocentrum.emulator_settings_saved'), 'success'); } catch (Exception $e) { - $this->notify('Error', $e->getMessage(), 'danger'); + $this->notify(__('commandocentrum.error'), $e->getMessage(), 'danger'); } } @@ -928,7 +930,7 @@ final class Commandocentrum extends Page implements HasForms $branch = $this->getSetting('nitro_github_branch', 'main'); $result = app(NitroControlAction::class)->pullUpdates($clientPath, $rendererPath, $branch); - $this->notify('Success', $result['message'], 'success'); + $this->notify(__('commandocentrum.success'), $result['message'], 'success'); $this->fillForm(); } @@ -939,7 +941,7 @@ final class Commandocentrum extends Page implements HasForms $branch = $this->getSetting('nitro_github_branch', 'main'); $result = app(NitroControlAction::class)->build($clientPath, $rendererPath, $branch); - $this->notify($result['success'] ? 'Success' : 'Warning', $result['message'], $result['success'] ? 'success' : 'warning'); + $this->notify($result['success'] ? __('commandocentrum.success') : __('commandocentrum.warning'), $result['message'], $result['success'] ? 'success' : 'warning'); } public function generateNitroConfigs(): void @@ -949,7 +951,7 @@ final class Commandocentrum extends Page implements HasForms $gamedataPath = $this->getSetting('gamedata_path', '/var/www/Gamedata'); $result = app(NitroControlAction::class)->generateConfigs($siteUrl, $webroot, $gamedataPath); - $this->notify($result['success'] ? 'Success' : 'Error', $result['message'], $result['success'] ? 'success' : 'danger'); + $this->notify($result['success'] ? __('commandocentrum.success') : __('commandocentrum.error'), $result['message'], $result['success'] ? 'success' : 'danger'); $this->fillForm(); } @@ -959,13 +961,13 @@ final class Commandocentrum extends Page implements HasForms $catalogService = app(CatalogService::class); $result = $catalogService->syncCatalogClothing(); - $message = 'πŸ‘” Kleding Sync Resultaat:' . PHP_EOL; + $message = 'πŸ‘” ' . __('commandocentrum.clothing_items') . ':' . PHP_EOL; $message .= 'β€’ Toegevoegd: ' . $result['inserted'] . PHP_EOL; $message .= 'β€’ Totaal: ' . $result['total']; - $this->notify('Success', $message, 'success'); + $this->notify(__('commandocentrum.success'), $message, 'success'); } catch (Exception $e) { - $this->notify('Error', $e->getMessage(), 'danger'); + $this->notify(__('commandocentrum.error'), $e->getMessage(), 'danger'); } } @@ -984,9 +986,9 @@ final class Commandocentrum extends Page implements HasForms $settings->set('emulator_source_path', $paths['emulator_source_path']); $this->fillForm(); - $this->notify('Success', 'Paths gedetecteerd en opgeslagen!', 'success'); + $this->notify(__('commandocentrum.success'), __('commandocentrum.paths_detected'), 'success'); } catch (Exception $e) { - $this->notify('Error', $e->getMessage(), 'danger'); + $this->notify(__('commandocentrum.error'), $e->getMessage(), 'danger'); } } @@ -1002,9 +1004,9 @@ final class Commandocentrum extends Page implements HasForms $settings->set('nitro_github_url', $this->data['nitro_github_url'] ?? ''); $settings->set('nitro_github_branch', $this->data['nitro_github_branch'] ?? 'main'); $settings->set('nitro_site_url', $this->data['nitro_site_url'] ?? ''); - $this->notify('Success', 'Nitro instellingen opgeslagen!', 'success'); + $this->notify(__('commandocentrum.success'), __('commandocentrum.nitro_settings_saved'), 'success'); } catch (Exception $e) { - $this->notify('Error', $e->getMessage(), 'danger'); + $this->notify(__('commandocentrum.error'), $e->getMessage(), 'danger'); } } @@ -1015,9 +1017,9 @@ final class Commandocentrum extends Page implements HasForms $settings->set('auto_update_enabled', ($this->data['auto_update_enabled'] ?? false) ? '1' : '0'); $settings->set('auto_update_schedule', $this->data['auto_update_schedule'] ?? '03:00'); $settings->set('auto_update_days', $this->data['auto_update_days'] ?? '0,6'); - $this->notify('Success', 'Auto update instellingen opgeslagen!', 'success'); + $this->notify(__('commandocentrum.success'), __('commandocentrum.auto_update_saved'), 'success'); } catch (Exception $e) { - $this->notify('Error', $e->getMessage(), 'danger'); + $this->notify(__('commandocentrum.error'), $e->getMessage(), 'danger'); } } @@ -1030,9 +1032,9 @@ final class Commandocentrum extends Page implements HasForms $settings->set('alert_discord_enabled', ($this->data['alert_discord_enabled'] ?? false) ? '1' : '0'); $settings->set('alert_discord_webhook_url', $this->data['alert_discord_webhook_url'] ?? ''); $settings->set('discord_webhook_ranks', json_encode($this->data['discord_webhook_ranks'] ?? [])); - $this->notify('Success', 'Meldingen opgeslagen!', 'success'); + $this->notify(__('commandocentrum.success'), __('commandocentrum.alerts_saved'), 'success'); } catch (Exception $e) { - $this->notify('Error', $e->getMessage(), 'danger'); + $this->notify(__('commandocentrum.error'), $e->getMessage(), 'danger'); } } @@ -1041,14 +1043,14 @@ final class Commandocentrum extends Page implements HasForms try { $webhookUrl = $this->data['alert_discord_webhook_url'] ?? ''; if (empty($webhookUrl)) { - $this->notify('Error', 'Webhook URL is leeg', 'danger'); + $this->notify(__('commandocentrum.error'), __('commandocentrum.webhook_empty'), 'danger'); return; } Http::post($webhookUrl, ['content' => 'βœ… Test van Atom CMS Commandocentrum']); - $this->notify('Success', 'Test bericht verzonden!', 'success'); + $this->notify(__('commandocentrum.success'), __('commandocentrum.test_sent'), 'success'); } catch (Exception $e) { - $this->notify('Error', $e->getMessage(), 'danger'); + $this->notify(__('commandocentrum.error'), $e->getMessage(), 'danger'); } } @@ -1064,7 +1066,7 @@ final class Commandocentrum extends Page implements HasForms public function refreshDiagnostics(): void { $this->runDiagnostics(); - $this->notify('Success', 'Diagnostiek vernieuwd', 'success'); + $this->notify(__('commandocentrum.success'), __('commandocentrum.diagnostics_refreshed'), 'success'); } private function runDiagnostics(): void @@ -1094,24 +1096,24 @@ final class Commandocentrum extends Page implements HasForms default => '#22c55e', }; $overallLabel = match ($overallStatus) { - 'error' => 'Kritieke Problemen', - 'warning' => 'Waarschuwingen', - default => 'Gezond', + 'error' => __('commandocentrum.critical_issues'), + 'warning' => __('commandocentrum.warnings'), + default => __('commandocentrum.healthy'), }; $html = '
'; // Summary cards $html .= '
'; - $html .= $this->getSummaryCardHtml('Gezond', $okCount, '#22c55e', 'heroicon-o-check-circle'); - $html .= $this->getSummaryCardHtml('Waarschuwingen', $warningCount, '#f59e0b', 'heroicon-o-exclamation-triangle'); - $html .= $this->getSummaryCardHtml('Fouten', $errorCount, '#ef4444', 'heroicon-o-x-circle'); + $html .= $this->getSummaryCardHtml(__('commandocentrum.healthy'), $okCount, '#22c55e', 'heroicon-o-check-circle'); + $html .= $this->getSummaryCardHtml(__('commandocentrum.warnings'), $warningCount, '#f59e0b', 'heroicon-o-exclamation-triangle'); + $html .= $this->getSummaryCardHtml(__('commandocentrum.errors'), $errorCount, '#ef4444', 'heroicon-o-x-circle'); $html .= '
'; // Overall status banner $html .= '
'; $html .= '
'; - $html .= 'Systeem Status: {$overallLabel}'; + $html .= '' . __('commandocentrum.system_status') . ': {$overallLabel}'; $html .= '
'; // Detailed results diff --git a/lang/en.json b/lang/en.json index aab3fe5..d32e106 100755 --- a/lang/en.json +++ b/lang/en.json @@ -1,1393 +1,186 @@ { - "": "", - "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": "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", - "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.": "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.", - "2-factor authentication adds an extra layer of security to your account, making it physically 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.": "2-factor authentication adds an extra layer of security to your account, making it physically 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.", - ":achievement achievement score": ":achievement achievement score", - ":credits credits": ":credits credits", - ":diamonds diamonds": ":diamonds diamonds", - ":duckets duckets": ":duckets duckets", - ":hotel Shop": ":hotel Shop", - ":hotel is a not for profit educational project": ":hotel is a not for profit educational project", - ":hotel is driven by Atom CMS made by:": ":hotel is driven by Atom CMS made by:", - ":hotel rules & guidelines": ":hotel rules & guidelines", - ":hotel staff": ":hotel staff", - ":online :hotel online": ":online :hotel online", - ":online hours": ":online hours", - ":respect respects received": ":respect respects received", - "A new verification link has been sent to the email address you provided during registration.": "A new verification link has been sent to the email address you provided during registration.", - "A online virtual world where you can create your own avatar, make friends, chat, create rooms and much more!": "A online virtual world where you can create your own avatar, make friends, chat, create rooms and much more!", - "About": "About", - "About the :hotel staff": "About the :hotel staff", - "About you": "About you", - "Accent": "Accent", - "Account Rules": "Account Rules", - "Account settings": "Account settings", - "Accounts are limited to 2 per person. This means, only 1 Alt acc is acceptable. Anything more than this, will result in a full account wipe including credits, and rares.": "Accounts are limited to 2 per person. This means, only 1 Alt acc is acceptable. Anything more than this, will result in a full account wipe including credits, and rares.", - "Achievement score": "Achievement score", - "Actions": "Actions", - "Activate 2FA": "Activate 2FA", - "Add": "Add", - "Add Text": "Add Text", - "Add an extra layer of security to your account by enabling two-factor authentication": "Add an extra layer of security to your account by enabling two-factor authentication", - "Administration": "Administration", - "All": "All", - "All the :category rares": "All the :category rares", - "All values": "All values", - "Already have an account?": "Already have an account?", - "Amount": "Amount", - "An online virtual world where you can create your own avatar, make friends, chat, create rooms and much more!": "An online virtual world where you can create your own avatar, make friends, chat, create rooms and much more!", - "Animation effects for different elements": "Animation effects for different elements", - "Animations": "Animations", - "Application Deadline :date": "Application Deadline :date", - "Apply for": "Apply for", - "Apply for :hotel staff": "Apply for :hotel staff", - "Apply for :position": "Apply for :position", - "Apply for staff": "Apply for staff", - "Applying for :position": "Applying for :position", - "Are you sure you want to cancel the scheduled maintenance?": "Are you sure you want to cancel the scheduled maintenance?", - "Are you sure you want to disable maintenance mode? Users will be able to access the site.": "Are you sure you want to disable maintenance mode? Users will be able to access the site.", - "Are you sure you want to disable maintenance mode? Users will igen kunne fΓ₯ adgang til siden.": "Are you sure you want to disable maintenance mode? Users will igen kunne fΓ₯ adgang til siden.", - "Are you sure you want to enable maintenance mode? Users will not be able to access the site.": "Are you sure you want to enable maintenance mode? Users will not be able to access the site.", - "Articles": "Articles", - "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.": "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.", - "Assistance": "Assistance", - "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 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 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!": "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!", - "Auto Order Items": "Auto Order Items", - "Automatic dark theme for systems that prefer it": "Automatic dark theme for systems that prefer it", - "Back": "Back", - "Back to login": "Back to login", - "Background": "Background", - "Background Image": "Background Image", - "Background color of dropdown menus": "Background color of dropdown menus", - "Background color of the navbar": "Background color of the navbar", - "Badge Actions": "Badge Actions", - "Badge Drawer": "Badge Drawer", - "Badge Name": "Badge Name", - "Badges": "Badges", - "Ban expiration:": "Ban expiration:", - "Ban reason:": "Ban reason:", - "Ban type:": "Ban type:", - "Below you will see all the comments, written on this article": "Below you will see all the comments, written on this article", - "Blink": "Blink", - "Blur": "Blur", - "Blur In": "Blur In", - "Blur Out": "Blur Out", - "Bold & Modern": "Bold & Modern", - "Book": "Book", - "Boosting referrals by making own accounts will lead to removal of all progress, currency, inventory and a potential ban": "Boosting referrals by making own accounts will lead to removal of all progress, currency, inventory and a potential ban", - "Border Color": "Border Color", - "Border Only": "Border Only", - "Border Radius": "Border Radius", - "Border Radius (px)": "Border Radius (px)", - "Border Width (px)": "Border Width (px)", - "Border color": "Border color", - "Border only (no background)": "Border only (no background)", - "Border radius (0-50)": "Border radius (0-50)", - "Border radius (px)": "Border radius (px)", - "Border width (px)": "Border width (px)", - "Bounce": "Bounce", - "Brightness": "Brightness", - "Browser": "Browser", - "Bubbly": "Bubbly", - "Button Animations": "Button Animations", - "Button Settings": "Button Settings", - "Buttons Effect": "Buttons Effect", - "Buttons effect": "Buttons effect", - "Buy Badge": "Buy Badge", - "Buy for $:cost": "Buy for $:cost", - "By": "By", - "By: :user": "By: :user", - "Cancel": "Cancel", - "Cancel Schedule": "Cancel Schedule", - "Cancel Scheduled Maintenance?": "Cancel Scheduled Maintenance?", - "Catalog Editor": "Catalog Editor", - "Change your password by filling out the fields below": "Change your password by filling out the fields below", - "Choose Color": "Choose Color", - "Choose a Style": "Choose a Style", - "Choose a preset style or customize yourself": "Choose a preset style or customize yourself", - "Choose a secure password": "Choose a secure password", - "Circle": "Circle", - "Claim your referrals reward!": "Claim your referrals reward!", - "Classic": "Classic", - "Classic Serif": "Classic Serif", - "Clear All": "Clear All", - "Clear Canvas": "Clear Canvas", - "Click the yellow Hotel button below, then click on `run flash` when prompted to. See you in the Hotel!": "Click the yellow Hotel button below, then click on `run flash` when prompted to. See you in the Hotel!", - "Click to change color": "Click to change color", - "Client": "Client", - "Close modal": "Close modal", - "Club Only": "Club Only", - "Code": "Code", - "Color": "Color", - "Color Cycle": "Color Cycle", - "Color Palette": "Color Palette", - "Color Themes": "Color Themes", - "Color only": "Color only", - "Colors": "Colors", - "Comments": "Comments", - "Community": "Community", - "Condensed": "Condensed", - "Confirm 2FA": "Confirm 2FA", - "Confirm Password": "Confirm Password", - "Confirm new password": "Confirm new password", - "Confirm password": "Confirm password", - "Confirm your password": "Confirm your password", - "Congratulations on successfully completing the Atom CMS setup! You have now taken the first steps towards an exciting new journey. With Atom CMS, you can effortlessly manage various aspect of your hotel, while giving your new visitors an easy gateway into a world of joy.": "Congratulations on successfully completing the Atom CMS setup! You have now taken the first steps towards an exciting new journey. With Atom CMS, you can effortlessly manage various aspect of your hotel, while giving your new visitors an easy gateway into a world of joy.", - "Congratulations on successfully completing the Atom CMS setup! You have now taken the first steps towards an exciting new journey. With Atom CMS, you can effortlessly manage various aspects of your hotel, while giving your new visitors an easy gateway into a world of joy.": "Congratulations on successfully completing the Atom CMS setup! You have now taken the first steps towards an exciting new journey. With Atom CMS, you can effortlessly manage various aspects of your hotel, while giving your new visitors an easy gateway into a world of joy.", - "Contact": "Contact", - "Continue to step 2": "Continue to step 2", - "Continue to step 3": "Continue to step 3", - "Continue to step 4": "Continue to step 4", - "Continue to step 5": "Continue to step 5", - "Contrast": "Contrast", - "Cool": "Cool", - "Copy": "Copy", - "Copy code": "Copy code", - "Copy color:": "Copy color:", - "Cozy": "Cozy", - "Create a free account today!": "Create a free account today!", - "Create a free account, and be a part of a fun online world!": "Create a free account, and be a part of a fun online world!", - "Create account": "Create account", - "Create an account": "Create an account", - "Create your account!": "Create your account!", - "Credits": "Credits", - "Credits:": "Credits:", - "Current Color": "Current Color", - "Current balance: $:balance": "Current balance: $:balance", - "Current password": "Current password", - "Custom Button Style": "Custom Button Style", - "Cyberpunk": "Cyberpunk", - "DJ Rooster": "DJ Rooster", - "Dark Mode Support": "Dark Mode Support", - "Dark mode support": "Dark mode support", - "Date": "Date", - "Delete": "Delete", - "Description": "Description", - "Description:": "Description:", - "Diamonds": "Diamonds", - "Disable 2FA": "Disable 2FA", - "Disable Maintenance": "Disable Maintenance", - "Disable Maintenance Mode?": "Disable Maintenance Mode?", - "Discord": "Discord", - "Do not abuse the Call for Help (CFH) system; it should be used during emergency purposes only.": "Do not abuse the Call for Help (CFH) system; it should be used during emergency purposes only.", - "Do not advertise other Habbo Retros; hotel links or purposely mentioning the name of another hotel with the intentions of advertising is not permitted.": "Do not advertise other Habbo Retros; hotel links or purposely mentioning the name of another hotel with the intentions of advertising is not permitted.", - "Do not attempt to or exploit errors of": "Do not attempt to or exploit errors of", - "Do not attempt to or give away, buy, sell, or trade your": "Do not attempt to or give away, buy, sell, or trade your", - "Do not attempt to or refund your VIP Membership or donation to": "Do not attempt to or refund your VIP Membership or donation to", - "Do not attempt to or scam credits or furniture from other users through betting, gaming, or trading.": "Do not attempt to or scam credits or furniture from other users through betting, gaming, or trading.", - "Do not attempt to or successfully harm a user’s home internet connection.": "Do not attempt to or successfully harm a user’s home internet connection.", - "Do not bully, harass, or abuse other users; avoid violent or aggressive behavior.": "Do not bully, harass, or abuse other users; avoid violent or aggressive behavior.", - "Do not create a username with an offensive name that is insulting, racist, harassing, or generally objectionable.": "Do not create a username with an offensive name that is insulting, racist, harassing, or generally objectionable.", - "Do not create multiple accounts for the purpose of taking an advantage over gaining more in-game currency and/or rares of any kind.": "Do not create multiple accounts for the purpose of taking an advantage over gaining more in-game currency and/or rares of any kind.", - "Do not disclose any personal information of another user (e.g., address, IP Address, phone number, school, private images etc.) without their consent.": "Do not disclose any personal information of another user (e.g., address, IP Address, phone number, school, private images etc.) without their consent.", - "Do not disrupt events with explicit language or negative behavior.": "Do not disrupt events with explicit language or negative behavior.", - "Do not evade an IP Address ban.": "Do not evade an IP Address ban.", - "Do not excessively repeat identical or similar statements (spamming).": "Do not excessively repeat identical or similar statements (spamming).", - "Do not intentionally give wrong or misleading information to staff members in reports about rule violations, complaints, bug reports, or support requests.": "Do not intentionally give wrong or misleading information to staff members in reports about rule violations, complaints, bug reports, or support requests.", - "Do not make false statements against": "Do not make false statements against", - "Do not make rooms with inappropriate or abusive names.": "Do not make rooms with inappropriate or abusive names.", - "Do not pretend to be a representative of": "Do not pretend to be a representative of", - "Do not re-appeal your ban unless stated otherwise. This means if you re-appeal in 2 days after your first appeal was denied and you were told to re-appeal in 2-3 weeks, you will be banned from the forum as well as the hotel.": "Do not re-appeal your ban unless stated otherwise. This means if you re-appeal in 2 days after your first appeal was denied and you were told to re-appeal in 2-3 weeks, you will be banned from the forum as well as the hotel.", - "Do not share your account with other users.": "Do not share your account with other users.", - "Do not threaten to, attempt to, or hack other users accounts.": "Do not threaten to, attempt to, or hack other users accounts.", - "Do not threaten to, attempt to, or use any scripts or third party software to enter, disrupt, or modify": "Do not threaten to, attempt to, or use any scripts or third party software to enter, disrupt, or modify", - "Donate": "Donate", - "Donate to :hotel": "Donate to :hotel", - "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!": "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!", - "Dont have an account? Join now!": "Dont have an account? Join now!", - "Download Badge": "Download Badge", - "Download badge": "Download badge", - "Draw circle": "Draw circle", - "Draw line": "Draw line", - "Draw rectangle": "Draw rectangle", - "Draw your very own badge": "Draw your very own badge", - "Drawing Tools": "Drawing Tools", - "Drop Shadow": "Drop Shadow", - "Dropdown": "Dropdown", - "Dropdown style": "Dropdown style", - "Dropdowns": "Dropdowns", - "Duckets": "Duckets", - "Duration (minutes)": "Duration (minutes)", - "E-mail": "E-mail", - "Earth": "Earth", - "Edit": "Edit", - "Edit Message": "Edit Message", - "Edit Page": "Edit Page", - "Effect Speed": "Effect Speed", - "Effect for all buttons": "Effect for all buttons", - "Effect for links": "Effect for links", - "Effect for navigation items": "Effect for navigation items", - "Effect speed": "Effect speed", - "Effects": "Effects", - "Elastic": "Elastic", - "Email": "Email", - "Email Password Reset Link": "Email Password Reset Link", - "Enable Effects": "Enable Effects", - "Enable Maintenance": "Enable Maintenance", - "Enable Maintenance Mode?": "Enable Maintenance Mode?", - "Enable animations and transitions": "Enable animations and transitions", - "Enable custom button style": "Enable custom button style", - "Enable effects": "Enable effects", - "Enable or disable all button effects": "Enable or disable all button effects", - "Enable this to use the custom button style": "Enable this to use the custom button style", - "Enabled": "Enabled", - "Enter a new secure password. Do not forget to save it somewhere safe": "Enter a new secure password. Do not forget to save it somewhere safe", - "Enter badge name": "Enter badge name", - "Enter description": "Enter description", - "Enter text": "Enter text", - "Enter the beta code you have been provided with": "Enter the beta code you have been provided with", - "Enter the code from your authentication app": "Enter the code from your authentication app", - "Enter your 2-factor authentication code provided on your by the authentication app on your mobile phone.": "Enter your 2-factor authentication code provided on your by the authentication app on your mobile phone.", - "Enter your beta code": "Enter your beta code", - "Enter your current password": "Enter your current password", - "Enter your email": "Enter your email", - "Enter your password": "Enter your password", - "Enter your username": "Enter your username", - "Erase": "Erase", - "Erase mode:": "Erase mode:", - "Error": "Error", - "Error logs": "Error logs", - "Estimated completion": "Estimated completion", - "Every now and then staff applications may open up. Once they do we always make sure to post a news article explaining the process - So make sure you keep an eye out for those in you are interested in joining the :hotel staff team.": "Every now and then staff applications may open up. Once they do we always make sure to post a news article explaining the process - So make sure you keep an eye out for those in you are interested in joining the :hotel staff team.", - "Extended button styles and effects": "Extended button styles and effects", - "Extra Large": "Extra Large", - "Extra Options": "Extra Options", - "FX": "FX", - "Fade In": "Fade In", - "Fade Out": "Fade Out", - "Falling": "Falling", - "Fast": "Fast", - "Fill": "Fill", - "Fill:": "Fill:", - "Fire": "Fire", - "Flash": "Flash", - "Flash Texts": "Flash Texts", - "Flash client": "Flash client", - "Flip": "Flip", - "Flip X": "Flip X", - "Flip Y": "Flip Y", - "Float": "Float", - "Font Family": "Font Family", - "Font Size (px)": "Font Size (px)", - "Font size (px)": "Font size (px)", - "For captions and placeholder text": "For captions and placeholder text", - "For cards and containers": "For cards and containers", - "For success messages, links, etc.": "For success messages, links, etc.", - "Forgot password": "Forgot password", - "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.": "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.", - "Friendly": "Friendly", - "Friendly & Warm": "Friendly & Warm", - "Friends": "Friends", - "Functional": "Functional", - "Futuristic": "Futuristic", - "Geen": "None", - "General Rules": "General Rules", - "Get an overview of all of the rares on :hotel": "Get an overview of all of the rares on :hotel", - "Get flash": "Get flash", - "Glans": "Shine", - "Glitch": "Glitch", - "Gloed": "Glow", - "Glow": "Glow", - "Go back to values": "Go back to values", - "Go to :hotel": "Go to :hotel", - "Goodbye": "Goodbye", - "Grayscale": "Grayscale", - "Grid": "Grid", - "Groups": "Groups", - "Guide": "Guide", - "Hang": "Hang", - "Have a look at some of the great moments captured by users around the hotel.": "Have a look at some of the great moments captured by users around the hotel.", - "Heartbeat": "Heartbeat", - "Heavy": "Heavy", - "Hello": "Hello", - "Hello there! We are truly grateful that you have chosen Atom CMS for your hotel.": "Hello there! We are truly grateful that you have chosen Atom CMS for your hotel.", - "Hello!": "Hello!", - "Help": "Help", - "Help center": "Help center", - "Here at :hotel Hotel we are accepting donations to keep the hotel up & running and as a thank you, you will in return receive in-game goods.": "Here at :hotel Hotel we are accepting donations to keep the hotel up & running and as a thank you, you will in return receive in-game goods.", - "Here at :hotel we have added a referral system, allowing you to obtain a bonus for every :needed users that registers through your referral link will allow you to claim a reward of :amount diamonds!": "Here at :hotel we have added a referral system, allowing you to obtain a bonus for every :needed users that registers through your referral link will allow you to claim a reward of :amount diamonds!", - "Here at :hotel we open up for staff applications every now and then. Sometimes you will find this page empty other times it might be filled with positions, if you ever come across a position you feel you would fit perfectly into, then do not hesitate to apply for it.": "Here at :hotel we open up for staff applications every now and then. Sometimes you will find this page empty other times it might be filled with positions, if you ever come across a position you feel you would fit perfectly into, then do not hesitate to apply for it.", - "Here at :hotel we take security very serious and therefore we offer you as a user a way to secure your beloved account even further, by allowing you to enable Googles 2-factor authentication!": "Here at :hotel we take security very serious and therefore we offer you as a user a way to secure your beloved account even further, by allowing you to enable Googles 2-factor authentication!", - "Here at :hotel we take security very seriously and therefore we offer you as a user a way to secure your beloved account even further, by allowing you to enable Google's 2-factor authentication!": "Here at :hotel we take security very seriously and therefore we offer you as a user a way to secure your beloved account even further, by allowing you to enable Google's 2-factor authentication!", - "Here is a list of all the owned :value`s": "Here is a list of all the owned :value`s", - "Home": "Home", - "Hotel": "Hotel", - "Hours online": "Hours online", - "Housekeeping": "Housekeeping", - "Hover Color": "Hover Color", - "Hover Scale": "Hover Scale", - "Hover color": "Hover color", - "Hover scale (1.0 = none)": "Hover scale (1.0 = none)", - "How fast the animation plays": "How fast the animation plays", - "How long should maintenance last?": "How long should maintenance last?", - "How round are the corners?": "How round are the corners?", - "How to join the staff team": "How to join the staff team", - "Hue Rotate": "Hue Rotate", - "I accept the :hotel terms & rules.": "I accept the :hotel terms & rules.", - "IP": "IP", - "IP Current Device": "IP Current Device", - "Ice": "Ice", - "Icon number": "Icon number", - "If you believe this is a mistake, please reach out to one of our staff members through our Discord server!": "If you believe this is a mistake, please reach out to one of our staff members through our Discord server!", - "Impact": "Impact", - "Import": "Import", - "Import Picture:": "Import Picture:", - "In case you dont have access to your two-factor authentication code, you can use one of your recovery codes.": "In case you dont have access to your two-factor authentication code, you can use one of your recovery codes.", - "Indent": "Indent", - "Info": "Info", - "Insert Reaction": "Insert Reaction", - "Installation key": "Installation key", - "Invalid Two Factor Authentication code": "Invalid Two Factor Authentication code", - "Invert": "Invert", - "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.": "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.", - "It seems like :user got no rooms.": "It seems like :user got no rooms.", - "It seems like :user has no badges.": "It seems like :user has no badges.", - "It seems like :user has no friends.": "It seems like :user has no friends.", - "It seems like :user is not a member of any groups.": "It seems like :user is not a member of any groups.", - "It seems like you are banned off :hotel": "It seems like you are banned off :hotel", - "It seems like your current password is wrong.": "It seems like your current password is wrong.", - "Item updated": "Item updated", - "Items": "Items", - "Items moved": "Items moved", - "Jello": "Jello", - "Join discord": "Join discord", - "Join server": "Join server", - "Keep an eye on all your active sessions": "Keep an eye on all your active sessions", - "Keep up to date with the latest hotel gossip.": "Keep up to date with the latest hotel gossip.", - "Kies een effect voor buttons in het thema": "Choose an effect for buttons in the theme", - "Knop effecten": "Button Effects", - "Large": "Large", - "Last Activity": "Last Activity", - "Last online:": "Last online:", - "Lastly, we just want to show our gratitude by letting your know how delighted we are to be a part of your journey and we hope you will gain some amazing memories. So, here is to your new hotel, the boundless creativity it will inspire, and the endless possibilities that lie ahead.": "Lastly, we just want to show our gratitude by letting your know how delighted we are to be a part of your journey and we hope you will gain some amazing memories. So, here is to your new hotel, the boundless creativity it will inspire, and the endless possibilities that lie ahead.", - "Latest Photos": "Latest Photos", - "Latest news": "Latest news", - "Layout": "Layout", - "Leaderboard": "Leaderboard", - "Leaderboards": "Leaderboards", - "Limited": "Limited", - "Line": "Line", - "Line Through": "Line Through", - "Links Effect": "Links Effect", - "Links effect": "Links effect", - "Literary": "Literary", - "Live Shouts": "Live Shouts", - "Loading": "Loading", - "Log Out": "Log Out", - "Login": "Login", - "Login to :hotel": "Login to :hotel", - "Login to :hotel and take part in the most wonderful online world!": "Login to :hotel and take part in the most wonderful online world!", - "Logout": "Logout", - "Lost access to your 2FA codes? Click here to use a recovery code": "Lost access to your 2FA codes? Click here to use a recovery code", - "Made with": "Made with", - "Maintenance": "Maintenance", - "Maintenance Message": "Maintenance Message", - "Maintenance break!": "Maintenance break!", - "Maintenance message updated": "Maintenance message updated", - "Maintenance mode disabled": "Maintenance mode disabled", - "Maintenance mode enabled": "Maintenance mode enabled", - "Maintenance scheduled": "Maintenance scheduled", - "Maintenance will start at :time for :duration minutes": "Maintenance will start at :time for :duration minutes", - "Make sure to use an email that you remember, if you ever lose your password, your email will be required.": "Make sure to use an email that you remember, if you ever lose your password, your email will be required.", - "Manage your account settings": "Manage your account settings", - "Manual Order": "Manual Order", - "Mark as Completed": "Mark as Completed", - "Mark as In Progress": "Mark as In Progress", - "Mass edit selected": "Mass edit selected", - "Max users:": "Max users:", - "Medium": "Medium", - "Min Rank": "Min Rank", - "Minimalist": "Minimalist", - "Mission": "Mission", - "Most of our team usually consists of players that have been around :hotel for quite a while, but this does not mean we only recruit old & known players, we recruit those who shine out to us!": "Most of our team usually consists of players that have been around :hotel for quite a while, but this does not mean we only recruit old & known players, we recruit those who shine out to us!", - "Motto": "Motto", - "Muted Text": "Muted Text", - "My Profile": "My Profile", - "My name is,": "My name is,", - "Name TAG": "Name TAG", - "Navbar": "Navbar", - "Navbar Text": "Navbar Text", - "Navigation Effect": "Navigation Effect", - "Navigation effect": "Navigation effect", - "Neon": "Neon", - "Neon Pulse": "Neon Pulse", - "New Page": "New Page", - "New password": "New password", - "News": "News", - "Next": "Next", - "Nitro Texts": "Nitro Texts", - "Nitro client": "Nitro client", - "No": "No", - "No positions open": "No positions open", - "No published articles": "No published articles", - "No session logs found": "No session logs found", - "No team positions open": "No team positions open", - "Non-harmful auto-typing, auto-clicking and other programs can only be used if you are the room owner or with permission from the room owner.": "Non-harmful auto-typing, auto-clicking and other programs can only be used if you are the room owner or with permission from the room owner.", - "None": "None", - "Normal": "Normal", - "Notice": "Notice", - "Ocean": "Ocean", - "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.": "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.", - "Once again, congratulations and best of wishes for you & your hotel!": "Once again, congratulations and best of wishes for you & your hotel!", - "Once again, thank you for choosing Atom CMS, and we cannot wait to see the incredible project you will create.": "Once again, thank you for choosing Atom CMS, and we cannot wait to see the incredible project you will create.", - "Online Friends": "Online Friends", - "Online Since": "Online Since", - "Only staff can login during maintenance!": "Only staff can login during maintenance!", - "Open main menu": "Open main menu", - "Open tickets": "Open tickets", - "Or": "Or", - "Order": "Order", - "Other articles": "Other articles", - "Our most recent articles": "Our most recent articles", - "Outdent": "Outdent", - "Outline": "Outline", - "Overline": "Overline", - "Padding X (px)": "Padding X (px)", - "Padding Y (px)": "Padding Y (px)", - "Page Name": "Page Name", - "Page updated": "Page updated", - "Palette": "Palette", - "Parent ID": "Parent ID", - "Password": "Password", - "Password settings": "Password settings", - "Pastel": "Pastel", - "Photo": "Photo", - "Photos": "Photos", - "Pill (extra round)": "Pill (extra round)", - "Platform": "Platform", - "Play": "Play", - "Playful": "Playful", - "Please come back at a later time to check if we have any positions open by then! Thank you for your interest.": "Please come back at a later time to check if we have any positions open by then! Thank you for your interest.", - "Please come back later to check for new openings. Thank you!": "Please come back later to check for new openings. Thank you!", - "Please confirm your new password": "Please confirm your new password", - "Please field out all the fields to apply for :position. Remember when applying for a position here at :hotel you must be fully transparent and honest. If found out the information provided is false or incorrect you might risk losing your position if hired.": "Please field out all the fields to apply for :position. Remember when applying for a position here at :hotel you must be fully transparent and honest. If found out the information provided is false or incorrect you might risk losing your position if hired.", - "Please fill in all fields and draw something": "Please fill in all fields and draw something", - "Please logout to claim your reward": "Please logout to claim your reward", - "Please make sure to read our shop": "Please make sure to read our shop", - "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.": "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.", - "Please scan the QR-code above with your phone to retrieve your two-factor authentication code.": "Please scan the QR-code above with your phone to retrieve your two-factor authentication code.", - "Please setup the paypal credentials to allow for top ups.": "Please setup the paypal credentials to allow for top ups.", - "Please wait": "Please wait", - "Points": "Points", - "Pop": "Pop", - "Post a comment": "Post a comment", - "Post a comment on the article, to let us know what you think about it": "Post a comment on the article, to let us know what you think about it", - "Post comment": "Post comment", - "Preview": "Preview", - "Preview Page": "Preview Page", - "Previous": "Previous", - "Previous step": "Previous step", - "Primary Color": "Primary Color", - "Primary Color (background)": "Primary Color (background)", - "Primary color (background)": "Primary color (background)", - "Privacy": "Privacy", - "Professional": "Professional", - "Profile": "Profile", - "Puls": "Puls", - "Pulse": "Pulse", - "Purchase :hotel items": "Purchase :hotel items", - "Quote": "Quote", - "Radio": "Radio", - "Radio Home": "Radio Home", - "Radio punten": "Radio Points", - "Rainbow": "Rainbow", - "Rare categories": "Rare categories", - "Rare values": "Rare values", - "Reactions with": "Reactions with", - "Read before applying": "Read before applying", - "Readable": "Readable", - "Recent Colors": "Recent Colors", - "Recent color": "Recent color", - "Recovery code": "Recovery code", - "Recovery codes:": "Recovery codes:", - "Rect": "Rect", - "Redo": "Redo", - "Referral new users and be rewarded by in-game goods": "Referral new users and be rewarded by in-game goods", - "Regained access to your 2FA codes? Click here to use your authentication app": "Regained access to your 2FA codes? Click here to use your authentication app", - "Register": "Register", - "Reload client": "Reload client", - "Remember me": "Remember me", - "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.": "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.", - "Repeat Password": "Repeat Password", - "Repeat your chosen password": "Repeat your chosen password", - "Resend Verification Email": "Resend Verification Email", - "Reset": "Reset", - "Reset Password": "Reset Password", - "Respects received": "Respects received", - "Restart installation": "Restart installation", - "Retro/Gaming": "Retro/Gaming", - "Ripple": "Ripple", - "Rising": "Rising", - "Room details": "Room details", - "Rooms": "Rooms", - "Rotate": "Rotate", - "Round & Soft": "Round & Soft", - "Rounded": "Rounded", - "Rubber Band": "Rubber Band", - "Rules": "Rules", - "Rules and regulations are subject to change without notice. As a member of the :hotel community, you hereby agree to and understand the following terms and conditions above. Failure to comply with these rules and regulations will result in the necessary sanctions implemented upon your account. If you have any questions or concerns in regards to The :hotel Way, please do not hesitate to ask a member of the Hotel Staff.": "Rules and regulations are subject to change without notice. As a member of the :hotel community, you hereby agree to and understand the following terms and conditions above. Failure to comply with these rules and regulations will result in the necessary sanctions implemented upon your account. If you have any questions or concerns in regards to The :hotel Way, please do not hesitate to ask a member of the Hotel Staff.", - "Saturate": "Saturate", - "Save": "Save", - "Save Theme": "Save Theme", - "Save Theme & Buttons": "Save Theme & Buttons", - "Scale Pulse": "Scale Pulse", - "Schedule": "Schedule", - "Schedule Maintenance": "Schedule Maintenance", - "Schedule when maintenance mode should automatically start.": "Schedule when maintenance mode should automatically start.", - "Scheduled maintenance cancelled": "Scheduled maintenance cancelled", - "Sci-Fi": "Sci-Fi", - "Search": "Search", - "Search catalog pages or items": "Search catalog pages or items", - "Search for rares": "Search for rares", - "Search mode active": "Search mode active", - "Select a catalog page to view its items": "Select a catalog page to view its items", - "Select a category below": "Select a category below", - "Select a team to get started": "Select a team to get started", - "Select position to get started": "Select position to get started", - "Sepia": "Sepia", - "Session logs": "Session logs", - "Settings": "Settings", - "Shadow": "Shadow", - "Shadow Move": "Shadow Move", - "Shake": "Shake", - "Shake Hard": "Shake Hard", - "Shine": "Shine", - "Shop": "Shop", - "Shop Terms & Conditions": "Shop Terms & Conditions", - "Show Grid:": "Show Grid:", - "Show Name": "Show Name", - "Show a border around the dropdown": "Show a border around the dropdown", - "Show border": "Show border", - "Show only the border without background color": "Show only the border without background color", - "Skew": "Skew", - "Slam": "Slam", - "Slide Down": "Slide Down", - "Slide Left": "Slide Left", - "Slide Right": "Slide Right", - "Slide Up": "Slide Up", - "Slow": "Slow", - "Small": "Small", - "Sparkle": "Sparkle", - "Spice up your profile with a nice motto": "Spice up your profile with a nice motto", - "Spin": "Spin", - "Square": "Square", - "Squeeze": "Squeeze", - "Staff": "Staff", - "Staff applications": "Staff applications", - "Staff login": "Staff login", - "Start Time": "Start Time", - "Start the setup": "Start the setup", - "Status:": "Status:", - "Sterretjes": "Stars", - "Stretch": "Stretch", - "Strike": "Strike", - "Style": "Style", - "Style of dropdown menus in the navigation": "Style of dropdown menus in the navigation", - "Stylish": "Stylish", - "Success": "Success", - "Super Round": "Super Round", - "Surface": "Surface", - "Swing": "Swing", - "Tada": "Tada", - "Take me to :hotel": "Take me to :hotel", - "Team applications": "Team applications", - "Teams": "Teams", - "Technical": "Technical", - "Terms": "Terms", - "Terms & Conditions": "Terms & Conditions", - "Text": "Text", - "Text Color": "Text Color", - "Text color": "Text color", - "Text color in the navbar": "Text color in the navbar", - "Thank you for playing :hotel. We have put a lot of effort into making the hotel what it is, and we truly appreciate you being here.": "Thank you for playing :hotel. We have put a lot of effort into making the hotel what it is, and we truly appreciate you being here.", - "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.": "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.", - "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 didn\\'t receive the email, we will gladly send you another.": "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 didn\\'t receive the email, we will gladly send you another.", - "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 dit not receive the email, we will gladly send you another.": "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 dit not receive the email, we will gladly send you another.", - "The :hotel staff team is one big happy family, each staff member has a different role and duties to fulfill.": "The :hotel staff team is one big happy family, each staff member has a different role and duties to fulfill.", - "The Google recaptcha must be completed": "The Google recaptcha must be completed", - "The Google recaptcha was not successful.": "The Google recaptcha was not successful.", - "The beta code is invalid.": "The beta code is invalid.", - "The captcha failed, please try again.": "The captcha failed, please try again.", - "The general account rules on :hotel": "The general account rules on :hotel", - "The general rules of :hotel": "The general rules of :hotel", - "The google recaptcha was submitted with an invalid type": "The google recaptcha was submitted with an invalid type", - "The language selected is not supported": "The language selected is not supported", - "The primary color of your website": "The primary color of your website", - "The room guild": "The room guild", - "Theme & Button Settings": "Theme & Button Settings", - "Theme & Buttons": "Theme & Buttons", - "Theme Settings": "Theme Settings", - "There are currently no open team positions": "There are currently no open team positions", - "There is currently :online users online": "There is currently :online users online", - "There is currently no articles": "There is currently no articles", - "There is currently no other articles": "There is currently no other articles", - "There is currently no positions open": "There is currently no positions open", - "These credentials do not match our records.": "These credentials do not match our records.", - "This color is used for logo, buttons, etc.": "This color is used for logo, buttons, etc.", - "This includes mimicing, acting like them, and or claim to have staff powers.": "This includes mimicing, acting like them, and or claim to have staff powers.", - "This is a root menu entry. Select a subpage to order its items.": "This is a root menu entry. Select a subpage to order its items.", - "This user currently does not have any rooms": "This user currently does not have any rooms", - "Timeless": "Timeless", - "Tiny": "Tiny", - "To purchase items from the :hotel shop, please visit our Discord and contact the owner of :hotel Hotel to make your purchase": "To purchase items from the :hotel shop, please visit our Discord and contact the owner of :hotel Hotel to make your purchase", - "Top credits": "Top credits", - "Top diamonds": "Top diamonds", - "Top duckets": "Top duckets", - "Top up account": "Top up account", - "Transform only": "Transform only", - "Transition": "Transition", - "Transition Duration (ms)": "Transition Duration (ms)", - "Transition duration (ms)": "Transition duration (ms)", - "Transition type": "Transition type", - "Two factor": "Two factor", - "Two factor authentication": "Two factor authentication", - "Two factor challenge": "Two factor challenge", - "Two-factor verification": "Two-factor verification", - "Type": "Type", - "Typewriter": "Typewriter", - "Typography": "Typography", - "URL to the background image (leave empty for no image)": "URL to the background image (leave empty for no image)", - "Ultra Bold": "Ultra Bold", - "Underline": "Underline", - "Undo": "Undo", - "Unique": "Unique", - "Unknown": "Unknown", - "Update Order": "Update Order", - "Update password": "Update password", - "Update settings": "Update settings", - "Use a voucher for free credit": "Use a voucher for free credit", - "Use voucher": "Use voucher", - "User Referrals": "User Referrals", - "User Referrals (%s/%s)": "User Referrals (%s/%s)", - "User settings": "User settings", - "Username": "Username", - "Users are to not participate in any sexual, inappropriate, or generally objective acts towards other users without their prior consent.": "Users are to not participate in any sexual, inappropriate, or generally objective acts towards other users without their prior consent.", - "VIP Only": "VIP Only", - "Validate your two-factor enabling by scanning the following QR-code and enter your auto-generated 2-factor code from your phone.": "Validate your two-factor enabling by scanning the following QR-code and enter your auto-generated 2-factor code from your phone.", - "Verify 2FA": "Verify 2FA", - "Versatile": "Versatile", - "Vibrate": "Vibrate", - "View": "View", - "View reset": "View reset", - "Visible": "Visible", - "Voucher": "Voucher", - "Warm": "Warm", - "Warning": "Warning", - "Wave": "Wave", - "We are delighted of having you trying Atom CMS": "We are delighted of having you trying Atom CMS", - "We currently have no rares listed here": "We currently have no rares listed here", - "We currently have no staff in this position": "We currently have no staff in this position", - "We open team applications periodically. If you see a team you fit, do not hesitate to apply!": "We open team applications periodically. If you see a team you fit, do not hesitate to apply!", - "Website": "Website", - "Welcome": "Welcome", - "Welcome to Atom CMS": "Welcome to Atom CMS", - "Welcome to the best hotel on the web!": "Welcome to the best hotel on the web!", - "When should maintenance mode start?": "When should maintenance mode start?", - "Whoops! It seems like you have been disconnected...": "Whoops! It seems like you have been disconnected...", - "Why are donations important?": "Why are donations important?", - "Wiggle": "Wiggle", - "With everything being said we just want to wish you a warm welcome to the Atom CMS family!": "With everything being said we just want to wish you a warm welcome to the Atom CMS family!", - "Woah! You have successfully claimed your reward - Keep up the good work!": "Woah! You have successfully claimed your reward - Keep up the good work!", - "Wobble": "Wobble", - "Word DJ": "Become DJ", - "Yes": "Yes", - "You are nearly in Habbo!": "You are nearly in Habbo!", - "You can occasionally also look at the :startTag Staff application page :endTag which will show you all of our current open positions.": "You can occasionally also look at the :startTag Staff application page :endTag which will show you all of our current open positions.", - "You can only comment :amount times per article": "You can only comment :amount times per article", - "You can only delete your own comments": "You can only delete your own comments", - "You comment has been deleted!": "You comment has been deleted!", - "You comment has been posted!": "You comment has been posted!", - "You do not have enough referrals to claim your reward": "You do not have enough referrals to claim your reward", - "You entered something that is not allowed on :hotel": "You entered something that is not allowed on :hotel", - "You have already applied for :position": "You have already applied for :position", - "You have reached the limit of maximum allowed accounts": "You have reached the limit of maximum allowed accounts", - "You must confirm your current password before being able to toggle 2FA.": "You must confirm your current password before being able to toggle 2FA.", - "You must confirm your password to continue": "You must confirm your password to continue", - "You need to refer :needed more users, before being able to claim your reward": "You need to refer :needed more users, before being able to claim your reward", - "You will need your email if you were to ever forget your password, so make sure it is something that you remember.": "You will need your email if you were to ever forget your password, so make sure it is something that you remember.", - "You will receive:": "You will receive:", - "Your IP have been restricted - If you think this is a mistake, you can contact us on our Discord.": "Your IP have been restricted - If you think this is a mistake, you can contact us on our Discord.", - "Your account settings has been updated": "Your account settings has been updated", - "Your password has been changed!": "Your password has been changed!", - "Your password must contain atleast 8 characters. Make sure to use a unique & secure password.": "Your password must contain atleast 8 characters. Make sure to use a unique & secure password.", - "Your referral code has been copied to your clipbord!": "Your referral code has been copied to your clipbord!", - "Your username is what you and others will see in-game": "Your username is what you and others will see in-game", - "Your username is what you will have to use, when logging into :hotel. It is also what other users will know you as, so make sure you select a username that you like!": "Your username is what you will have to use, when logging into :hotel. It is also what other users will know you as, so make sure you select a username that you like!", - "Zoom": "Zoom", - "Zoom In": "Zoom In", - "Zoom Out": "Zoom Out", - "Zoom:": "Zoom:", - "Zweven": "Zweven", - "account and/or": "account and/or", - "at any given time; all payments are final.": "at any given time; all payments are final.", - "back_to_home": "back_to_home", - "badge_purchase_confirmation": "badge_purchase_confirmation", - "badge_purchase_error_general": "badge_purchase_error_general", - "badge_purchase_error_insufficient": "badge_purchase_error_insufficient", - "badge_purchase_success": "badge_purchase_success", - "before making a purchase.": "before making a purchase.", - "download_appimage": "download_appimage", - "download_dmg": "download_dmg", - "download_exe": "download_exe", - "download_options": "download_options", - "enter_hotel": "enter_hotel", - "flash_client": "flash_client", - "for_linux": "for_linux", - "for_macos": "for_macos", - "furniture/currency for Habbo furniture/currency or vice versa.": "furniture/currency for Habbo furniture/currency or vice versa.", - "issue_not_listed": "issue_not_listed", - "items for virtual items from another game, accounts from another game, cash, or vice versa without permission from an Administrator. This includes giving away, buying, selling or trading": "items for virtual items from another game, accounts from another game, cash, or vice versa without permission from an Administrator. This includes giving away, buying, selling or trading", - "linux": "linux", - "macos": "macos", - "nitro_client": "nitro_client", - "or any other part of its services.": "or any other part of its services.", - "owned": "owned", - "recommended_windows": "recommended_windows", - "report it to the Administration immediately.": "report it to the Administration immediately.", - "sso_authentication": "sso_authentication", - "sso_description": "sso_description", - "sso_ticket": "sso_ticket", - "troubleshooting": "troubleshooting", - "welcome_flash": "welcome_flash", - "welcome_nitro": "welcome_nitro", - "windows": "windows", - "Your motto has been changed by a staff member.": "Your motto has been changed by a staff member.", - "nitro.config_generated": "Configs Generated!", - "filament::resources.inputs.mute_time": "Mute time", - "filament::resources.resources.badges.plural": "Badges", - "Current balance: Login required": "Current balance: Login required", - "filament::resources.options.yes": "Yes", - "Login to apply": "Login to apply", - "nitro.emulator_unknown": "Unknown", - "Saved": "Saved", - "filament::resources.resources.tags.navigation_label": "Tags", - "filament::resources.common.No": "No", - "Navigation padding (px)": "Navigation padding (px)", - "filament::resources.resources.users.plural": "Users", - "Content": "Content", - "Join the Team": "Join the Team", - "filament::resources.columns.email": "E-mail", - "underline": "underline", - "filament::resources.common.Yes": "Yes", - "Search teams…": "Search teams…", - "filament::resources.resources.furniture.navigation_label": "Furniture", - "Update": "Update", - "filament::resources.resources.housekeeping-permissions.plural": "Housekeeping Permissions", - "Body text size (px)": "Body text size (px)", - "members": "members", - "nitro.never": "Never", - "filament::resources.resources.help-questions.label": "Help Question", - "filament::resources.columns.reason": "Reason", - "filament::resources.stats.photos_count.title": "Photos", - "nitro.auto_update_yes": "Yes", - "Emulator update settings have been saved.": "Emulator update settings have been saved.", - "Test Failed": "Test Failed", - "nitro.cancel": "Cancel", - "You have been disconnected because your rank has been changed. Please re-enter the hotel.": "You have been disconnected because your rank has been changed. Please re-enter the hotel.", - "filament::resources.resources.chatlog-rooms.label": "Room Chat", - "filament::resources.inputs.badge_description": "Badge description", - "Choose avatar": "Choose avatar", - "filament::resources.resources.article.plural": "Articles", - "radio.setup.success_title": "radio.setup.success_title", - "filament::resources.columns.online": "Online", - "filament::resources.tabs.Home": "Home", - "Alert System": "Alert System", - "Navigation font size (px)": "Navigation font size (px)", - "Downloading, installing and restarting emulator...": "Downloading, installing and restarting emulator...", - "nitro.updated_on": "Updated on", - "filament::resources.inputs.reason": "Reason", - "filament::resources.inputs.category": "Category", - "nitro.never_checked": "Never checked", - "filament::resources.inputs.reward_type": "Reward type", - "Borders": "Borders", - "filament::resources.inputs.last_login": "Last login", - "filament::resources.inputs.referrer_code": "Referrer code", - "nitro.client": "Client", - "You cannot edit users with a higher rank than yours.": "You cannot edit users with a higher rank than yours.", - "Input Focus": "Input Focus", - "filament::resources.resources.chatlog-private.plural": "Private Chats", - "filament::resources.resources.emulator-texts.plural": "Emulator Texts", - "filament::resources.inputs.points": "Points", - "nitro.remote": "Remote", - "filament::resources.resources.bots.plural": "Bots", - "nitro.success": "Success", - "filament::resources.inputs.as_staff": "As staff", - "Badges & Tags": "Badges & Tags", - "filament::resources.resources.bots.navigation_label": "Bots", - "filament::resources.inputs.badge_title": "Badge title", - "filament::resources.inputs.auto_gotw_amount": "Auto GOTW amount", - "filament::resources.navigations.Hotel": "Hotel", - "filament::resources.resources.chatlog-private.navigation_label": "Private Chats", - "filament::resources.columns.id": "ID", - "nitro.renderer": "Renderer", - "filament::resources.columns.visible": "Visible", - "filament::resources.columns.permission": "Permission", - "ID": "ID", - "radio.music": "radio.music", - "filament::resources.resources.cms_settings.navigation_label": "CMS Settings", - "filament::resources.actions.send_notifications": "Send notifications", - "radio.setup.button_label": "radio.setup.button_label", - "filament::resources.columns.receiver": "Receiver", - "filament::resources.inputs.ip_current": "Current IP", - "nitro.config_generated_body": "Config files have been updated", - "member": "member", - "filament::resources.inputs.gender": "Gender", - "Shadow Color": "Shadow Color", - "nitro.info": "Info", - "filament::resources.inputs.receiver": "Receiver", - "filament::resources.navigations.User Management": "User Management", - "filament::resources.resources.achievements.label": "Achievement", - "Small text size (px)": "Small text size (px)", - "Logo generator": "Logo generator", - "filament::resources.tabs.Main": "Main", - "filament::resources.resources.writeable-boxes.label": "Text Block", - "nitro.auto_update": "Auto-update", - "filament::resources.resources.cms-settings.label": "CMS Setting", - "filament::resources.resources.shop-orders.label": "Order", - "Page Transitions": "Page Transitions", - "nitro.error": "Error", - "Underline Links": "Underline Links", - "filament::resources.columns.room": "Room", - "radio.setup.modal_description": "radio.setup.modal_description", - "Heading H2 size (px)": "Heading H2 size (px)", - "filament::resources.stats.badge_count.description": "Total badges", - "Form Inputs": "Form Inputs", - "filament::resources.navigations.General": "General", - "Enter the two-factor authentication code from your authenticator app.": "Enter the two-factor authentication code from your authenticator app.", - "You cannot edit users because RCON is not enabled and the user is online.": "You cannot edit users because RCON is not enabled and the user is online.", - "Payment Method": "Payment Method", - "No staff members in this position": "No staff members in this position", - "filament::resources.columns.sender": "Sender", - "filament::resources.resources.tags.label": "Tag", - "Heading H1 size (px)": "Heading H1 size (px)", - "filament::resources.columns.equipped": "Equipped", - "nitro.delete": "Delete", - "filament::resources.resources.housekeeping-permissions.navigation_label": "Housekeeping Permissions", - "Hide empty teams": "Hide empty teams", - "filament::resources.resources.dashboard.navigation_label": "Dashboard", - "filament::resources.resources.teams.plural": "Teams", - "Disabled": "Disabled", - "filament::resources.inputs.key": "Key", - "filament::resources.inputs.room": "Room", - "filament::resources.inputs.motto": "Motto", - "filament::resources.resources.help-questions.navigation_label": "Help Questions", - "Online": "Online", - "filament::resources.resources.help-questions.plural": "Help Questions", - "filament::resources.resources.article.navigation_label": "Articles", - "nitro.healthy": "Healthy", - "Avatar Border": "Avatar Border", - "Shadow Opacity": "Shadow Opacity", - "nitro.update_failed": "Update Failed", - "nitro.update_success": "Update Success", - "filament::resources.inputs.name": "Name", - "filament::resources.columns.image": "Image", - "filament::resources.columns.updated_at": "Updated at", - "filament::resources.resources.help_question_categories.navigation_label": "Help Categories", - "filament::resources.inputs.slug": "Slug", - "nitro.site_url_not_set": "Not set", - "filament::resources.common.All": "All", - "nitro.dependencies": "Dependencies", - "filament::resources.inputs.respects_received": "Respects received", - "filament::resources.inputs.sender": "Sender", - "nitro.build": "Build", - "No deadline set": "No deadline set", - "filament::resources.resources.permissions.label": "Permission", - "filament::resources.common.Credits": "Credits", - "Two-Factor Authentication": "Two-Factor Authentication", - "filament::resources.resources.badges.navigation_label": "Badges", - "filament::resources.inputs.visible": "Visible", - "Status": "Status", - "filament::resources.tabs.Change Rank": "Change Rank", - "filament::resources.resources.bans.navigation_label": "Bans", - "filament::resources.resources.shop.label": "Shop Item", - "filament::resources.resources.articles.plural": "Articles", - "Refresh": "Refresh", - "filament::resources.columns.status": "Status", - "No results found": "No results found", - "filament::resources.navigations.Monitoring": "Monitoring", - "filament::resources.resources.badge-resource.navigation_label": "Badges", - "View Open Positions": "View Open Positions", - "Style for outline buttons (transparent with border)": "Style for outline buttons (transparent with border)", - "filament::resources.notifications.badge_image_required": "Badge image is required", - "Default Border Width": "Default Border Width", - "filament::resources.columns.can_change_name": "Can change name", - "Your application is pending": "Your application is pending", - "filament::resources.inputs.content": "Content", - "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": "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", - "filament::resources.resources.navigations.label": "Navigation", - "filament::resources.resources.writeable-boxes.navigation_label": "Text Blocks", - "filament::resources.inputs.value": "Value", - "filament::resources.resources.housekeeping_permissions.plural": "Permissions", - "filament::resources.resources.badges.label": "Badge", - "Navigation": "Navigation", - "Your application was rejected": "Your application was rejected", - "filament::resources.resources.dashboard.label": "Dashboard", - "Stream Status": "Stream Status", - "filament::resources.navigations.Help Center": "Help Center", - "filament::resources.resources.cms-settings.plural": "CMS Settings", - "filament::resources.resources.settings.navigation_label": "Settings", - "Not configured": "Not configured", - "filament::resources.columns.banned_at": "Banned at", - "filament::resources.navigations.Atom": "Atom", - "filament::resources.helpers.badge_code_helper": "Enter the badge code", - "Parent": "Parent", - "nitro.installed": "Installed", - "Link Color": "Link Color", - "filament::resources.resources.commands.label": "Command", - "filament::resources.resources.commands.plural": "Commands", - "Published": "Published", - "filament::resources.resources.command-logs.plural": "Command Logs", - "filament::resources.columns.online_time": "Online time", - "Glass Effect": "Glass Effect", - "Navigation height (px)": "Navigation height (px)", - "radio.setup.modal_submit": "radio.setup.modal_submit", - "filament::resources.inputs.prefix": "Prefix", - "filament::resources.inputs.level": "Level", - "filament::resources.resources.teams.label": "Team", - "filament::resources.stats.furniture_count.description": "Total furniture items", - "filament::resources.resources.help_questions.navigation_label": "Help Questions", - "filament::resources.columns.can_trade": "Can trade", - "Check back later for updates": "Check back later for updates", - "nitro.sql_update_failed": "SQL Update Failed", - "filament::resources.resources.emulator-settings.navigation_label": "Emulator Settings", - "Badge Border Radius": "Badge Border Radius", - "filament::resources.columns.room_id": "Room ID", - "Radio Settings": "Radio Settings", - "filament::resources.common.Never": "Never", - "filament::resources.common.Points": "Points", - "filament::resources.tabs.Configurations": "Configurations", - "Danger Button": "Danger Button", - "filament::resources.inputs.achievement_score": "Achievement score", - "radio.setup.error_title": "radio.setup.error_title", - "filament::resources.common.Update": "Update", - "filament::resources.resources.emulator-settings.plural": "Emulator Settings", - "Avatars & Images": "Avatars & Images", - "nitro.webroot": "Webroot", - "You cannot edit this user!": "You cannot edit this user!", - "Alert settings have been saved successfully.": "Alert settings have been saved successfully.", - "filament::resources.columns.min_rank": "Min rank", - "filament::resources.resources.furniture.label": "Furniture", - "filament::resources.columns.type": "Type", - "Saved successfully": "Saved successfully", - "filament::resources.stats.articles_chart.title": "Articles", - "Footer Links": "Footer Links", - "filament::resources.inputs.created_at": "Criado em", - "Created At": "Created At", - "Icon": "Icon", - "Click the yellow Hotel button below, then click on run flash` when prompted to. See you in the Hotel!": "Click the yellow Hotel button below, then click on run flash` when prompted to. See you in the Hotel!", - "filament::resources.tabs.In-game Permissions": "In-game Permissions", - "filament::resources.inputs.users": "Users", - "Card Border Width": "Card Border Width", - "filament::resources.resources.emulator-texts.navigation_label": "Emulator Texts", - "First": "First", - "filament::resources.inputs.ip_register": "Register IP", - "of": "of", - "filament::resources.common.Duckets": "Duckets", - "Small icon size (px)": "Small icon size (px)", - "filament::resources.helpers.achievement_progress_needed": "Progress needed to complete", - "filament::resources.columns.reportable": "Reportable", - "filament::resources.resources.help-categories.label": "Help Category", - "Herladen": "Reload", - "Input Placeholder": "Input Placeholder", - "filament::resources.stats.orders_chart.pending": "Pending", - "nitro.symlink": "Symlink", - "filament::login.fields.username.label": "filament::login.fields.username.label", - "Nitro Update Failed": "Nitro Update Failed", - "filament::resources.navigations.Logs": "Logs", - "filament::resources.tabs.Security": "Security", - "nitro.deployed": "Deployed", - "nitro.updates_available": "Updates Available!", - "filament::resources.columns.prefix": "Prefix", - "nitro.saved": "Saved", - "Header & Footer": "Header & Footer", - "filament::resources.columns.avatar": "Avatar", - "radio.title": "radio.title", - "nitro.config_invalid_url": "Invalid URL", - "Recovery Code": "Recovery Code", - "filament::resources.notifications.badge_texts_required": "Badge texts are required", - "filament::resources.resources.command-logs.label": "Command Log", - "filament::resources.resources.shop.plural": "Shop Items", - "filament::resources.common.Open link": "Open link", - "filament::resources.resources.word-filters.plural": "Word Filters", - "filament::resources.stats.rooms_count.title": "Rooms", - "nitro.settings": "Settings", - "filament::resources.resources.users.label": "User", - "filament::resources.resources.word_filter.plural": "Word Filters", - "filament::resources.inputs.prefix_color": "Prefix color", - "filament::resources.columns.slug": "Slug", - "filament::resources.options.no": "No", - "Card Padding": "Card Padding", - "filament::resources.columns.last_login": "Last login", - "Select a starting avatar for your character": "Select a starting avatar for your character", - "filament::resources.inputs.background_color": "Background color", - "Verbinding verbroken": "Connection lost", - "Outline Button": "Outline Button", - "nitro.friday": "Friday", - "Footer Text": "Footer Text", - "Contests": "Contests", - "Please setup the paypal credentials to allow for top ups": "Please setup the paypal credentials to allow for top ups", - "filament::resources.resources.housekeeping-permissions.label": "Housekeeping Permission", - "filament::resources.resources.badge-resource.label": "Badge", - "filament::resources.columns.category": "Category", - "filament::resources.resources.cms_settings.plural": "CMS Settings", - "Solid": "Solid", - "Are you sure?": "Are you sure?", - "filament::resources.inputs.auto_pixels_amount": "Auto pixels amount", - "nitro.system": "System", - "Post message": "Post message", - "filament::resources.inputs.reportable": "Reportable", - "Categories": "Categories", - "Inactive": "Inactive", - "filament::resources.inputs.can_trade": "Can trade", - "No teams found": "No teams found", - "nitro.last_generated": "Last generated", - "filament::resources.resources.settings.plural": "Settings", - "Navbar Shadow": "Navbar Shadow", - "filament::resources.tabs.Change Username": "Change Username", - "Avatar Border Radius": "Avatar Border Radius", - "filament::resources.inputs.max_friends": "Max friends", - "This action cannot be undone": "This action cannot be undone", - "filament::resources.sections.permissions.title": "Permissions", - "filament::resources.columns.order": "Order", - "nitro.config_invalid_url_body": "Please enter a valid URL", - "filament::resources.resources.bots.label": "Bot", - "filament::resources.resources.bans.plural": "Bans", - "filament::resources.inputs.title": "Title", - "filament::resources.columns.expires_at": "Expires at", - "nitro.site_url": "Site URL", - "Something went wrong": "Something went wrong", - "filament::resources.notifications.create_badge": "Badge created", - "filament::resources.tabs.General Information": "General Information", - "Please enter a GitHub URL and service name first.": "Please enter a GitHub URL and service name first.", - "Spinner Color": "Spinner Color", - "Button text size (px)": "Button text size (px)", - "filament::resources.stats.articles_chart.label": "Articles", - "nitro.refresh": "Refresh", - "Card padding (px)": "Card padding (px)", - "Background color": "Background color", - "filament::resources.inputs.comment": "Comment", - "nitro.test_failed": "Test Failed", - "Filter": "Filter", - "No tags found.": "No tags found.", - "nitro.auto": "Auto", - "filament::resources.common.Male": "Male", - "filament::resources.inputs.log_commands": "Log commands", - "Klik op een foto om deze te vergroten": "Click on a photo to enlarge it", - "filament::resources.resources.help_question_categories.plural": "Help Categories", - "nitro.view": "View", - "filament::resources.columns.is_hidden": "Is hidden", - "nitro.monday": "Monday", - "nitro.save": "Save", - "filament::resources.inputs.permission": "Permission", - "filament::resources.inputs.type": "Type", - "filament::resources.resources.teams.navigation_label": "Teams", - "filament::resources.resources.housekeeping_permissions.navigation_label": "Permissions", - "Large icon size (px)": "Large icon size (px)", - "About our team": "About our team", - "filament::resources.inputs.new_password": "New password", - "filament::resources.columns.mute_time": "Mute time", - "filament::resources.inputs.block_roominvites": "Block room invites", - "filament::resources.columns.new_tab": "New tab", - "nitro.version": "Version", - "Title": "Title", - "nitro.critical": "Critical", - "Style for secondary/green buttons": "Style for secondary/green buttons", - "filament::resources.notifications.badge_found": "Badge found", - "filament::resources.resources.help_questions.plural": "Help Questions", - "filament::resources.columns.background_color": "Background color", - "nitro.warning_msg": "Warning", - "filament::resources.resources.emulator-texts.label": "Emulator Text", - "filament::resources.columns.command": "Command", - "nitro.config_saved": "Config Saved", - "filament::resources.inputs.auto_points_amount": "Auto points amount", - "Navbar Style": "Navbar Style", - "Navbar Height": "Navbar Height", - "filament::resources.columns.last_online": "Last online", - "Please check back later.": "Please check back later.", - "nitro.available": "Available", - "filament::resources.resources.command-logs.navigation_label": "Command Logs", - "filament::resources.resources.ranks.navigation_label": "Ranks", - "filament::resources.columns.allow_comments": "Allow comments", - "filament::resources.navigations.Shop": "Shop", - "filament::resources.common.Machine": "Machine", - "filament::resources.resources.permissions.navigation_label": "Permissions", - "Open": "Open", - "Link Hover": "Link Hover", - "filament::resources.options.rights": "Rights", - "Default Border": "Default Border", - "There are no teams to display right now.": "There are no teams to display right now.", - "results": "results", - "filament::resources.columns.title": "TΓ­tulo", - "filament::resources.common.Create": "Create", - "Loading...": "Loading...", - "nitro.config_generate_failed_body": "An error occurred", - "Not set": "Not set", - "filament::resources.resources.word_filter.navigation_label": "Word Filters", - "filament::resources.resources.ranks.plural": "Ranks", - "filament::resources.inputs.badge_image": "Badge image", - "filament::resources.columns.comment": "Comment", - "nitro.title": "Nitro Status", - "filament::resources.common.Female": "Female", - "nitro.update": "Update", - "nitro.emulator_online": "Online", - "nitro.general": "General", - "filament::resources.stats.orders_chart.title": "Orders", - "filament::resources.tabs.Change Password": "Change Password", - "filament::resources.stats.users_count.title": "Users", - "filament::resources.resources.camera_webs.navigation_label": "Camera Webs", - "filament::resources.resources.shop-orders.navigation_label": "Orders", - "nitro.updates_disabled": "Auto-updates disabled", - "Choose your avatar": "Choose your avatar", - "Powered by": "Powered by", - "Dashboard": "Dashboard", - "overline": "overline", - "Our terms": "Our terms", - "filament::resources.resources.help_questions.label": "Help Question", - "filament::resources.inputs.referral_code": "Referral code", - "filament::resources.stats.orders_chart.cancelled": "Cancelled", - "Cards & Containers": "Cards & Containers", - "nitro.latest": "Latest", - "filament::resources.notifications.badge_code_required": "Badge code is required", - "filament::resources.navigations.Dashboard": "Dashboard", - "Style for danger/red buttons": "Style for danger/red buttons", - "nitro.warning": "Warning", - "filament::resources.columns.level": "Level", - "filament::resources.inputs.block_following": "Block following", - "Terug": "Back", - "nitro.tuesday": "Tuesday", - "filament::resources.resources.chatlog-private.label": "Private Chat", - "Heading H3 size (px)": "Heading H3 size (px)", - "filament::resources.resources.ranks.label": "Rank", - "Submit": "Submit", - "Badge Background": "Badge Background", - "filament::resources.stats.photos_count.description": "Total photos", - "filament::resources.resources.word_filter.label": "Word Filter", - "Offline": "Offline", - "radio.setup.modal_heading": "radio.setup.modal_heading", - "RCON is not enabled!": "RCON is not enabled!", - "filament::resources.columns.created_at": "Created at", - "Transparent": "Transparent", - "filament::resources.resources.dashboard.plural": "Dashboard", - "nitro.emulator_offline": "Offline", - "filament::resources.tabs.Currencies": "Currencies", - "filament::resources.stats.articles_chart.description": "Articles per month", - "filament::resources.inputs.min_rank": "Min rank", - "filament::resources.columns.user_id": "User ID", - "nitro.reset": "Reset", - "filament::resources.inputs.email": "E-mail", - "filament::resources.inputs.reward_amount": "Reward amount", - "filament::resources.resources.housekeeping_permissions.label": "Permission", - "Active": "Active", - "filament::resources.tabs.Account Data": "Account Data", - "filament::resources.resources.achievements.navigation_label": "Achievements", - "filament::resources.resources.help-categories.plural": "Help Categories", - "nitro.off": "Off", - "Header Text": "Header Text", - "filament::resources.resources.furniture.plural": "Furniture", - "filament::resources.columns.name": "Name", - "filament::resources.notifications.badge_updated": "Badge updated", - "Product": "Product", - "nitro.wednesday": "Wednesday", - "filament::resources.navigations.VPN": "VPN", - "filament::resources.columns.badge_code": "Badge code", - "Automatic update schedule has been saved.": "Automatic update schedule has been saved.", - "Send notifications": "Send notifications", - "filament::resources.inputs.description": "Description", - "Application submitted": "Application submitted", - "nitro.missing": "Missing", - "filament::resources.filters.success": "Success", - "filament::resources.stats.users_count.description": "Total registered users", - "filament::resources.notifications.badge_update_failed": "Badge update failed", - "filament::resources.inputs.message": "Message", - "filament::resources.helpers.change_username_description": "Change your username", - "You have been approved": "You have been approved", - "filament::resources.inputs.block_friendrequests": "Block friend requests", - "filament::resources.inputs.image": "Image", - "filament::resources.resources.help_question_categories.label": "Help Category", - "filament::resources.resources.chatlog-rooms.navigation_label": "Room Chats", - "Per page": "Per page", - "filament::resources.resources.users.navigation_label": "Users", - "nitro.discord": "Discord", - "filament::resources.resources.chatlog-rooms.plural": "Room Chats", - "Badge": "Badge", - "Enable secondary button style": "Enable secondary button style", - "filament::resources.inputs.team_id": "Team ID", - "Badge Description": "Badge Description", - "filament::resources.resources.shop.navigation_label": "Shop", - "nitro.emulator_status": "Emulator Status", - "filament::resources.resources.articles.navigation_label": "Articles", - "Required": "Required", - "Showing": "Showing", - "nitro.force_check": "Force Check", - "filament::resources.resources.navigations.plural": "Navigations", - "filament::resources.tabs.Change Email": "Change Email", - "filament::resources.inputs.is_hidden": "Is hidden", - "filament::resources.inputs.expires_at": "Expires at", - "Medium icon size (px)": "Medium icon size (px)", - "filament::resources.columns.message": "Message", - "Photo Gallery": "Photo Gallery", - "nitro.config_generate_failed": "Config Generation Failed", - "filament::resources.resources.cms_settings.label": "CMS Setting", - "Header Links": "Header Links", - "We currently have no staff in this team": "We currently have no staff in this team", - "Element Sizes": "Element Sizes", - "Links": "Links", - "Badge Text": "Badge Text", - "filament::resources.inputs.hideable": "Hideable", - "filament::resources.inputs.last_online": "Last online", - "filament::resources.stats.badge_count.title": "Badges", - "filament::resources.columns.key": "Key", - "radio.setup.tooltip": "radio.setup.tooltip", - "filament::resources.resources.settings.label": "Setting", - "nitro.yes": "Yes", - "Card Background": "Card Background", - "Giveaways": "Giveaways", - "filament::resources.columns.by": "By", - "filament::resources.inputs.replacement": "Replacement", - "filament::resources.common.IP": "IP", - "filament::resources.resources.word-filters.navigation_label": "Word Filters", - "Header Background": "Header Background", - "filament::resources.columns.achievement_score": "Achievement score", - "filament::resources.columns.hideable": "Hideable", - "filament::resources.resources.rooms.plural": "Rooms", - "Points System": "Points System", - "Deleted successfully": "Deleted successfully", - "Enable danger button style": "Enable danger button style", - "filament::resources.common.Account": "Account", - "filament::resources.inputs.room_effect": "Room effect", - "Card Border Radius": "Card Border Radius", - "Parent Navigation": "Parent Navigation", - "Input Border": "Input Border", - "filament::resources.inputs.label": "Label", - "Avatar Border Color": "Avatar Border Color", - "Verify": "Verify", - "filament::resources.columns.executed_at": "Executed at", - "filament::login.fields.password.label": "filament::login.fields.password.label", - "Shadows": "Shadows", - "filament::resources.tabs.Extra Settings": "Extra Settings", - "nitro.no_data": "No data", - "filament::resources.resources.permissions.plural": "Permissions", - "filament::resources.sections.permissions.description": "Manage permissions", - "SQL Update Failed": "SQL Update Failed", - "filament::resources.resources.shop-orders.plural": "Orders", - "filament::resources.resources.article.label": "Article", - "Name": "Name", - "filament::resources.columns.respects_received": "Respects received", - "Badge description": "Badge description", - "Hover background color": "Hover background color", - "filament::resources.inputs.allow_comments": "Allow comments", - "radio.loading": "radio.loading", - "filament::resources.resources.bans.label": "Ban", - "nitro.status": "Status", - "radio.navigation_label": "radio.navigation_label", - "Update date reset. The next check will detect a new update.": "Update date reset. The next check will detect a new update.", - "filament::resources.inputs.ignore_bots": "Ignore bots", - "nitro.sunday": "Sunday", - "filament::resources.resources.writeable-boxes.plural": "Text Blocks", - "filament::resources.notifications.badge_image_upload_failed": "Badge image upload failed", - "Sticky Navbar": "Sticky Navbar", - "filament::resources.stats.orders_chart.completed": "Completed", - "filament::resources.stats.rooms_count.description": "Total rooms", - "filament::resources.resources.word-filters.label": "Word Filter", - "Time": "Time", - "User": "User", - "filament::resources.inputs.allow_change_username": "Allow change username", - "Word Filter": "Word Filter", - "Footer Background": "Footer Background", - "filament::resources.resources.camera_webs.plural": "Camera Webs", - "to": "a", - "filament::resources.resources.articles.label": "Article", - "filament::resources.resources.help-categories.navigation_label": "Help Categories", - "nitro.loading": "Loading...", - "Input Background": "Input Background", - "nitro.emulator": "Emulator", - "Input Text": "Input Text", - "filament::resources.columns.success": "Success", - "Beta code": "Beta code", - "filament::resources.columns.description": "Description", - "filament::resources.inputs.max_rooms": "Max rooms", - "filament::resources.columns.username": "Username", - "filament::resources.resources.commands.navigation_label": "Commands", - "filament::resources.navigations.Radio": "Radio", - "filament::resources.stats.orders_chart.description": "Shop orders overview", - "filament::resources.helpers.achievement_points": "Achievement points", - "filament::resources.navigations.Website": "Website", - "Homepage": "Homepage", - "filament::resources.columns.rank": "Rank", - "nitro.not_installed": "Not installed", - "Become a staff member": "Become a staff member", - "Secondary Button": "Secondary Button", - "User ID": "User ID", - "filament::resources.inputs.progress_needed": "Progress needed", - "filament::resources.resources.badge-resource.plural": "Badges", - "filament::resources.common.Diamonds": "Diamonds", - "filament::login.fields.remember.label": "filament::login.fields.remember.label", - "filament::resources.resources.rooms.navigation_label": "Rooms", - "Created": "Created", - "URL": "URL", - "nitro.checked": "Checked", - "filament::resources.inputs.ignore_pets": "Ignore pets", - "filament::resources.columns.replacement": "Replacement", - "filament::resources.resources.emulator-settings.label": "Emulator Setting", - "nitro.edit": "Edit", - "filament::resources.stats.furniture_count.title": "Furniture", - "Optional": "Optional", - "Please enter your two-factor authentication code or one of your recovery codes.": "Please enter your two-factor authentication code or one of your recovery codes.", - "Category": "Category", - "filament::resources.common.Super": "Super", - "filament::resources.inputs.rank": "Rank", - "Card Border": "Card Border", - "Failed": "Failed", - "Adjust the size of various elements": "Adjust the size of various elements", - "filament::resources.inputs.old_chat": "Old chat", - "nitro.monitoring": "Monitoring", - "filament::resources.columns.value": "Value", - "filament::resources.helpers.change_password_description": "Change your password", - "filament::resources.inputs.auto_credits_amount": "Auto credits amount", - "filament::resources.inputs.new_password_confirmation": "Confirm password", - "filament::resources.resources.cms-settings.navigation_label": "CMS Settings", - "filament::resources.inputs.block_camera_follow": "Block camera follow", - "filament-panels::pages/auth/login.messages.failed": "filament-panels::pages/auth/login.messages.failed", - "Please enter a GitHub URL first and save.": "Please enter a GitHub URL first and save.", - "Guestbook": "Guestbook", - "nitro.saturday": "Saturday", - "filament::resources.resources.camera_webs.label": "Camera Web", - "Update Failed": "Update Failed", - "filament::resources.resources.tags.plural": "Tags", - "filament::resources.common.Sucessfull": "Successful", - "nitro.thursday": "Thursday", - "Create": "Create", - "Loading & Spinners": "Loading & Spinners", - "filament::resources.inputs.badge_code": "Badge code", - "nitro.no": "No", - "Create a new account": "Create a new account", - "Last": "Last", - "nitro.generate": "Generate", - "filament::resources.inputs.username": "Username", - "Updated successfully": "Updated successfully", - "filament::resources.resources.navigations.navigation_label": "Navigations", - "All rights reserved": "All rights reserved", - "before making a purchase": "before making a purchase", - "radio.setup.success_body": "radio.setup.success_body", - "filament::resources.inputs.url": "URL", - "filament::resources.resources.rooms.label": "Room", - "Created successfully": "Created successfully", - "filament::resources.columns.motto": "Motto", - "nitro.auto_update_no": "No", - "filament::resources.resources.achievements.plural": "Achievements", - "Enter one of your recovery codes if you cannot access your authenticator app.": "Enter one of your recovery codes if you cannot access your authenticator app.", - "filament::resources.columns.badge": "Badge", - "Enable outline button style": "Enable outline button style", - "Socket URL": "Socket URL", - "Asset URL": "Asset URL", - "Gamedata URL": "Gamedata URL", - "Images URL": "Images URL", - "Camera URL": "Camera URL", - "Thumbnails URL": "Thumbnails URL", - "Group Homepage": "Group Homepage", - "Habbopages URL": "Habbopages URL", - "URL Prefix": "URL Prefix" -} \ No newline at end of file + "commandocentrum.live_status": "Live Status", + "commandocentrum.live_status_desc": "Real-time hotel statistics", + "commandocentrum.online": "Online", + "commandocentrum.emulator": "Emulator", + "commandocentrum.database": "Database", + "commandocentrum.load": "Load", + "commandocentrum.server_info": "Server Information", + "commandocentrum.server_info_desc": "Detailed server status", + "commandocentrum.php_laravel": "PHP & Laravel", + "commandocentrum.memory_disk": "Memory & Disk", + "commandocentrum.memory": "Memory", + "commandocentrum.disk": "Disk", + "commandocentrum.uptime": "Uptime", + "commandocentrum.system_health": "System Health", + "commandocentrum.system_health_desc": "Automatic system diagnostics", + "commandocentrum.refresh": "Refresh", + "commandocentrum.healthy": "Healthy", + "commandocentrum.warnings": "Warnings", + "commandocentrum.errors": "Errors", + "commandocentrum.system_status": "System Status", + "commandocentrum.critical_issues": "Critical Issues", + "commandocentrum.hotel_status": "Hotel Status", + "commandocentrum.hotel_status_desc": "Emulator and Nitro status", + "commandocentrum.hotel_alert": "Hotel Alert", + "commandocentrum.hotel_alert_desc": "Send a message to all online users", + "commandocentrum.send_alert": "Send Alert", + "commandocentrum.alert_message_placeholder": "Type your alert message here...", + "commandocentrum.emulator_logs": "Emulator Logs", + "commandocentrum.emulator_logs_desc": "Live emulator log viewer", + "commandocentrum.emulator_control": "Emulator Control", + "commandocentrum.emulator_control_desc": "Full emulator control", + "commandocentrum.start": "Start", + "commandocentrum.stop": "Stop", + "commandocentrum.restart": "Restart", + "commandocentrum.check": "Check", + "commandocentrum.version": "Version", + "commandocentrum.service": "Service", + "commandocentrum.status": "Status", + "commandocentrum.emulator_updates": "Emulator Updates", + "commandocentrum.emulator_updates_desc": "Configure and update the emulator", + "commandocentrum.check_updates": "Check Updates", + "commandocentrum.build": "Build", + "commandocentrum.sql_updates": "SQL Updates", + "commandocentrum.save": "Save", + "commandocentrum.github_url": "GitHub URL", + "commandocentrum.jar_direct_url": "JAR Direct URL", + "commandocentrum.jar_path": "JAR Path", + "commandocentrum.source_repo": "Source Repo", + "commandocentrum.source_path": "Source Path", + "commandocentrum.branch": "Branch", + "commandocentrum.db_host": "DB Host", + "commandocentrum.db_name": "DB Name", + "commandocentrum.service_name": "Service Name", + "commandocentrum.emulator_backups": "Emulator Backups", + "commandocentrum.emulator_backups_desc": "View and restore emulator backups", + "commandocentrum.no_backups": "No backups available yet", + "commandocentrum.backups_auto": "Backups are automatically created on every emulator update", + "commandocentrum.restore": "Restore", + "commandocentrum.nitro_client": "Nitro Client", + "commandocentrum.nitro_client_desc": "Configure and update Nitro", + "commandocentrum.auto_detect": "Auto Detect", + "commandocentrum.generate_configs": "Generate Configs", + "commandocentrum.client_path": "Client Path", + "commandocentrum.renderer_path": "Renderer Path", + "commandocentrum.build_path": "Build Path", + "commandocentrum.webroot": "Webroot", + "commandocentrum.site_url": "Site URL", + "commandocentrum.auto_updates": "Automatic Updates", + "commandocentrum.auto_updates_desc": "Configure automatic updates", + "commandocentrum.enable_auto_updates": "Enable Automatic Updates", + "commandocentrum.schedule": "Schedule (HH:MM)", + "commandocentrum.days": "Days (0-6)", + "commandocentrum.clothing_sync": "Clothing Sync", + "commandocentrum.clothing_sync_desc": "Sync catalog clothing from FigureMap", + "commandocentrum.sync": "Sync", + "commandocentrum.clothing_items": "Clothing Items", + "commandocentrum.notifications": "Notifications", + "commandocentrum.notifications_desc": "Email and Discord alerts", + "commandocentrum.test_discord": "Test Discord", + "commandocentrum.email_notifications": "Email Notifications", + "commandocentrum.email_address": "Email Address", + "commandocentrum.discord_notifications": "Discord Notifications", + "commandocentrum.webhook_url": "Webhook URL", + "commandocentrum.discord_ranks": "Ranks that receive Discord notifications", + "commandocentrum.discord_ranks_helper": "Leave empty for staff only (min_staff_rank)", + "commandocentrum.update_history": "Update History", + "commandocentrum.update_history_desc": "Latest system updates", + "commandocentrum.no_updates_found": "No updates found", + "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.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.github_client_id": "GitHub Client ID", + "commandocentrum.github_client_id_helper": "From GitHub Developer Settings", + "commandocentrum.github_client_secret": "GitHub Client Secret", + "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.success": "Success", + "commandocentrum.error": "Error", + "commandocentrum.warning": "Warning", + "commandocentrum.info": "Info", + "commandocentrum.emulator_started": "Emulator started!", + "commandocentrum.emulator_start_failed": "Could not start emulator", + "commandocentrum.emulator_stopped": "Emulator stopped!", + "commandocentrum.emulator_stop_failed": "Could not stop emulator", + "commandocentrum.emulator_restarted": "Emulator restarted!", + "commandocentrum.emulator_restart_failed": "Could not restart emulator", + "commandocentrum.emulator_online": "Emulator is online and responding!", + "commandocentrum.emulator_unreachable": "Emulator is not reachable via RCON", + "commandocentrum.building_emulator": "Emulator is being built from source...", + "commandocentrum.emulator_built": "Emulator built!", + "commandocentrum.build_failed": "Build failed", + "commandocentrum.configure_github_url": "Please configure the Emulator GitHub URL first", + "commandocentrum.maven_not_installed": "Maven (mvn) is not installed - cannot build", + "commandocentrum.building_maven": "Building emulator with Maven...", + "commandocentrum.build_success_jar": "Build successful! JAR moved to :jar. Restart the emulator.", + "commandocentrum.build_success": "Build successful! Restart the emulator.", + "commandocentrum.build_failed_logs": "Build failed - check logs", + "commandocentrum.no_pom_xml": "No pom.xml found - cannot build from source", + "commandocentrum.sql_applied": "SQL updates applied!", + "commandocentrum.update_complete": "Update check completed", + "commandocentrum.emulator_settings_saved": "Emulator settings saved!", + "commandocentrum.nitro_updated": "Nitro updated! Build again with \"Build\" button.", + "commandocentrum.nitro_up_to_date": "Nitro is already up-to-date!", + "commandocentrum.building_nitro": "Building Nitro...", + "commandocentrum.nitro_build_success": "Nitro build successful!", + "commandocentrum.nitro_build_warning": "Build started - check manually", + "commandocentrum.valid_url_required": "Please enter a valid URL (e.g. https://epicnabbo.nl)", + "commandocentrum.configs_generated": "Configs generated & existing settings preserved!", + "commandocentrum.config_generated_warning": "Config generated (check manually)", + "commandocentrum.paths_detected": "Paths detected and saved!", + "commandocentrum.nitro_settings_saved": "Nitro settings saved!", + "commandocentrum.auto_update_saved": "Auto update settings saved!", + "commandocentrum.alerts_saved": "Notifications saved!", + "commandocentrum.test_sent": "Test message sent!", + "commandocentrum.webhook_empty": "Webhook URL is empty", + "commandocentrum.diagnostics_refreshed": "Diagnostics refreshed", + "commandocentrum.unknown": "Unknown", + "commandocentrum.not_applicable": "N/A", + "commandocentrum.offline": "Offline", + "commandocentrum.active": "Active", + "commandocentrum.inactive": "Inactive", + "commandocentrum.not_found": "Not found", + "commandocentrum.ok": "OK", + "commandocentrum.missing": "Missing", + "commandocentrum.jars": "JARs", + "commandocentrum.source": "Source", + "commandocentrum.method": "Method", + "commandocentrum.jar_download_restart": "JAR Download & Restart", + "commandocentrum.maven_build_restart": "Maven Build & Restart", + "commandocentrum.manual_download": "Manual: Download JAR from GitHub", + "commandocentrum.maven_pom": "Maven (pom.xml)", + "commandocentrum.no_pom": "No pom.xml", + "commandocentrum.update_available": "Update available", + "commandocentrum.up_to_date": "Up-to-date", + "commandocentrum.update": "Update", + "commandocentrum.rebuild": "Rebuild", + "commandocentrum.latest": "Latest", + "commandocentrum.remote": "Remote", + "commandocentrum.local": "Local", + "commandocentrum.client": "Client", + "commandocentrum.renderer": "Renderer", + "commandocentrum.webroot_status": "Webroot", + "commandocentrum.rank": "Rank" +} diff --git a/lang/nl.json b/lang/nl.json index 46c04e6..f35f3cd 100755 --- a/lang/nl.json +++ b/lang/nl.json @@ -1,1399 +1,186 @@ { - "": "", - "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": "2-factor authenticatie voegt een extra beveiligingslaag toe aan je account, waardoor het fysiek onmogelijk is om toegang te krijgen zonder toegang tot je mobiele telefoon, aangezien alleen je telefoon de 2-factor authenticatiecode zal bevatten die elke 30 seconden automatisch opnieuw wordt gegenereerd", - "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.": "2-factor authenticatie voegt een extra beveiligingslaag toe aan uw account, waardoor het fysiek onmogelijk is om toegang te krijgen zonder toegang tot uw mobiele telefoon, aangezien alleen uw telefoon de 2-factor authenticatiecode zal bevatten die elke 30 seconden automatisch opnieuw wordt gegenereerd.", - "2-factor authentication adds an extra layer of security to your account, making it physically 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.": "2-factor authenticatie voegt een extra beveiligingslaag toe aan je account, waardoor het fysiek onmogelijk is om toegang te krijgen zonder toegang tot je mobiele telefoon, aangezien alleen je telefoon de 2-factor authenticatiecode zal bevatten die elke 30 seconden automatisch opnieuw wordt gegenereerd.", - ":achievement achievement score": ":achievement prestatie score", - ":credits credits": ":credits credits", - ":diamonds diamonds": ":diamonds Diamanten", - ":duckets duckets": ":duckets Duckets", - ":hotel Shop": ":hotel Winkel", - ":hotel is a not for profit educational project": ":hotel is een educatief project zonder winstoogmerk", - ":hotel is driven by Atom CMS made by:": ":hotel wordt aangestuurd door Atom CMS gemaakt door:", - ":hotel rules & guidelines": ":hotel Regels & Richtlijnen", - ":hotel staff": ":hotel personeel", - ":online :hotel online": ":online :hotel online", - ":online hours": ":online Uur", - ":respect respects received": ":respect ontvangen respect", - "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 u tijdens de registratie heeft opgegeven.", - "A 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, chatten, kamers kunt maken en nog veel meer!", - "About": "Over", - "About the :hotel staff": "Over het :hotel personeel", - "About you": "Over jou", - "Accent": "Accent", - "Account Rules": "Account Regels", - "Account settings": "Profiel Instellingen", - "Accounts are limited to 2 per person. This means, only 1 Alt acc is acceptable. Anything more than this, will result in a full account wipe including credits, and rares.": "Accounts zijn beperkt tot 2 per persoon. Dit betekent dat slechts 1 Alt account aanvaardbaar is.", - "Achievement score": "Prestatie score", - "Actions": "Acties", - "Activate 2FA": "Activeer 2FA", - "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 uw account door twee staps verificatie in te schakelen", - "Administration": "Administratie", - "All": "Alle", - "All the :category rares": "Alle :category rares", - "All values": "Alle waarden", - "Already have an account?": "Heb je al een account?", - "Amount": "Aantal", - "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, chatten, kamers kunt maken en nog veel meer!", - "Animation effects for different elements": "Animatie-effecten voor verschillende elementen", - "Animations": "Animaties", - "Application Deadline :date": "Deadline voor :date", - "Apply for": "Solliciteer voor", - "Apply for :hotel staff": "Solliciteer voor :hotel personeel", - "Apply for :position": "Solliciteer voor :position", - "Apply for staff": "Solliciteer voor personeel", - "Applying for :position": "Solliciteren voor :position", - "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 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 disable maintenance mode? Users will igen kunne fΓ₯ adgang til siden.": "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": "Nieuws", - "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 duikt in Atom CMS, moedigen we je aan om het uitgebreide assortiment functies te verkennen dat we hebben samengesteld om je te helpen je visie tot leven te brengen. Van aanpasbare sjablonen tot naadloze integraties met clients zoals Nitro, we zorgen ervoor dat je snel bent ingesteld.", - "Assistance": "Hulp", - "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 gemeenschap in gedachten, wat betekent dat we de input van de gemeenschap zeer waarderen, in plaats van alleen onze eigen ideeΓ«n & visie naar de CMS te brengen, doen we ons uiterste best om suggesties te implementeren die door onze geliefde gemeenschap zijn gemaakt. We willen dat iedereen kan bijdragen of Atom CMS kan aanpassen aan hun behoeften zonder een bachelor in programmering 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 sole doel van Atom CMS is om hoteleigenaren zoals jij te ondersteunen. We willen dat je je hotel moeiteloos kunt runnen. Onze gebruiksvriendelijke interface, robuuste functies en behulpzame gemeenschap zijn er om ervoor te zorgen dat je ervaring met Atom CMS niets minder dan buitengewoon is!", - "Auto Order Items": "Automatisch Bestel Items", - "Automatic dark theme for systems that prefer it": "Automatisch donker thema voor systemen die dit verkiezen", - "Back": "Terug", - "Back to login": "Terug naar inloggen", - "Background": "Achtergrond", - "Background Image": "Achtergrondafbeelding", - "Background color of dropdown menus": "Achtergrondkleur van dropdownmenu's", - "Background color of the navbar": "Achtergrondkleur van de navigatiebalk", - "Badge Actions": "Badge Acties", - "Badge Drawer": "Badge maken", - "Badge Name": "Badge Naam", - "Badges": "Badges", - "Ban expiration:": "Ban vervalt:", - "Ban reason:": "Ban reden:", - "Ban type:": "Ban type:", - "Below you will see all the comments, written on this article": "Hieronder zie je alle reacties op dit artikel", - "Blink": "Knipperen", - "Blur": "Vervagen", - "Blur In": "Vervagen In", - "Blur Out": "Vervagen Uit", - "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": "Door verwijzingen te manipuleren door persoonlijke accounts aan te maken, worden alle voortgang, valuta, inventaris en mogelijke verbanning verwijderd.", - "Border Color": "Randkleur", - "Border Only": "Alleen rand", - "Border Radius": "Randradius", - "Border Radius (px)": "Randradius (px)", - "Border Width (px)": "Randdikte (px)", - "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)": "Randdikte (px)", - "Bounce": "Stuiteren", - "Brightness": "Helderheid", - "Browser": "Browser", - "Bubbly": "Bubbly", - "Button Animations": "Knopanimaties", - "Button Settings": "Knopinstellingen", - "Buttons Effect": "Knop Effecten", - "Buttons effect": "Knop effecten", - "Buy Badge": "Koop de badge", - "Buy for $:cost": "Koop voor $:cost", - "By": "Door", - "By: :user": "Door: :user", - "Cancel": "Annuleren", - "Cancel Schedule": "Planning Annuleren", - "Cancel Scheduled Maintenance?": "Gepland Onderhoud Annuleren?", - "Catalog Editor": "Catalogus Bewerker", - "Change your password by filling out the fields below": "Wijzig uw wachtwoord door onderstaande velden in te vullen", - "Choose Color": "Kies kleur", - "Choose a Style": "Kies een stijl", - "Choose a preset style or customize yourself": "Kies een voorgedefinieerde stijl of pas zelf aan", - "Choose a secure password": "Kies een veilig wachtwoord", - "Circle": "Cirkel", - "Claim your referrals reward!": "Claim je verwijs beloning!", - "Classic": "Klassiek", - "Classic Serif": "Klassiek Serif", - "Clear All": "Verwijder alles", - "Clear Canvas": "Canvas Wissen", - "Click the yellow Hotel button below, then click on `run flash` when prompted to. See you in the Hotel!": "Klik hieronder op de gele Hotel knop en klik vervolgens op `run flash` wanneer daarom gevraagd wordt. Zie je in het Hotel!", - "Click to change color": "Klik om kleur te wijzigen", - "Client": "Client", - "Close modal": "Modal sluiten", - "Club Only": "Alleen Club", - "Code": "Code", - "Color": "Kleur", - "Color Cycle": "Kleurcyclus", - "Color Palette": "Kleurenpalet", - "Color Themes": "Kleurthemas", - "Color only": "Alleen kleur", - "Colors": "Kleuren", - "Comments": "Reacties", - "Community": "Gemeenschap", - "Condensed": "Compact", - "Confirm 2FA": "Bevestig 2FA", - "Confirm Password": "Bevestig wachtwoord", - "Confirm new password": "Bevestig je nieuw wachtwoord", - "Confirm password": "Bevestig Wachtwoord", - "Confirm your password": "Bevestig uw wachtwoord", - "Congratulations on successfully completing the Atom CMS setup! You have now taken the first steps towards an exciting new journey. With Atom CMS, you can effortlessly manage various aspect of your hotel, while giving your new visitors an easy gateway into a world of joy.": "Gefeliciteerd met het succesvol voltooien van de Atom CMS installatie! Je hebt nu de eerste stappen gezet richting een spannende nieuwe reis. Met Atom CMS kun je moeiteloos verschillende aspecten van je hotel beheren, terwijl je je nieuwe bezoekers een gemakkelijke toegang geeft tot een wereld van plezier.", - "Congratulations on successfully completing the Atom CMS setup! You have now taken the first steps towards an exciting new journey. With Atom CMS, you can effortlessly manage various aspects of your hotel, while giving your new visitors an easy gateway into a world of joy.": "Gefeliciteerd met het succesvol voltooien van de Atom CMS installatie! Je hebt nu de eerste stappen gezet richting een spannende nieuwe reis. Met Atom CMS kun je moeiteloos verschillende aspecten van je hotel beheren, terwijl je je nieuwe bezoekers een gemakkelijke toegang geeft tot een wereld van plezier.", - "Contact": "Contact", - "Continue to step 2": "Ga naar stap 2", - "Continue to step 3": "Ga naar stap 3", - "Continue to step 4": "Ga naar stap 4", - "Continue to step 5": "Ga naar stap 5", - "Contrast": "Contrast", - "Cool": "Koel", - "Copy": "Kopieer", - "Copy code": "Kopieer code", - "Copy color:": "Kopieer kleur:", - "Cozy": "Knus", - "Create a free account today!": "Maak vandaag nog een gratis account aan!", - "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 account": "Account aanmaken", - "Create an account": "Maak profiel", - "Create your account!": "Maak een account aan!", - "Credits": "Credits", - "Credits:": "Credits:", - "Current Color": "Huidige Kleur", - "Current balance: $:balance": "Huidig saldo: $:balance", - "Current password": "Huidig wachtwoord", - "Custom Button Style": "Aangepaste knopstijl", - "Cyberpunk": "Cyberpunk", - "DJ Rooster": "DJ Rooster", - "Dark Mode Support": "Donkere modus ondersteuning", - "Dark mode support": "Donkere modus ondersteuning", - "Date": "Datum", - "Delete": "Verwijderen", - "Description": "Beschrijving", - "Description:": "Beschrijving:", - "Diamonds": "Diamanten", - "Disable 2FA": "2FA Uitschakelen", - "Disable Maintenance": "Onderhoud Uitschakelen", - "Disable Maintenance Mode?": "Onderhoudsmodus Uitschakelen?", - "Discord": "Discord", - "Do not abuse the Call for Help (CFH) system; it should be used during emergency purposes only.": "Maak geen misbruik van het help systeem; het dient alleen gebruikt te worden voor noodgevallen.", - "Do not advertise other Habbo Retros; hotel links or purposely mentioning the name of another hotel with the intentions of advertising is not permitted.": "Het adverteren van andere Habbo Retros is niet toegestaan. Hotel links of bewust namen noemen van een andere retro is strict verboden op Rain.", - "Do not attempt to or exploit errors of": "Probeer of misbruik geen fouten van", - "Do not attempt to or give away, buy, sell, or trade your": "Probeer of geef niet weg, koop, verkoop of ruil uw", - "Do not attempt to or refund your VIP Membership or donation to": "Probeer uw VIP-lidmaatschap of donatie niet terug te betalen aan:", - "Do not attempt to or scam credits or furniture from other users through betting, gaming, or trading.": "Het scammen van credits of meubi van andere gebruikers is verboden.", - "Do not attempt to or successfully harm a user’s home internet connection.": "Probeer de internetverbinding van een gebruiker thuis niet te beschadigen.", - "Do not bully, harass, or abuse other users; avoid violent or aggressive behavior.": "Het pesten en beledigen van andere gebruikers is niet gewenst. Voorkom agressief en geweldadig gedrag.", - "Do not create a username with an offensive name that is insulting, racist, harassing, or generally objectionable.": "Maak geen gebruikersnaam aan met een beledigende, racistische, intimiderende of algemeen verwerpelijke naam.", - "Do not create multiple accounts for the purpose of taking an advantage over gaining more in-game currency and/or rares of any kind.": "Maak geen meerdere accounts aan om voordeel te halen uit het verkrijgen van meer in-game valuta en/of rares van welke aard dan ook.", - "Do not disclose any personal information of another user (e.g., address, IP Address, phone number, school, private images etc.) without their consent.": "Maak geen persoonlijke informatie van een andere gebruiker (bijv. adres, IP-adres, telefoonnummer, school, privΓ©foto's etc.) openbaar zonder hun toestemming.", - "Do not disrupt events with explicit language or negative behavior.": "Verstoor evenementen niet met expliciet taalgebruik of negatief gedrag.", - "Do not evade an IP Address ban.": "Ontwijk een IP-adres verbod niet.", - "Do not excessively repeat identical or similar statements (spamming).": "Spammen is niet toegestaan.", - "Do not intentionally give wrong or misleading information to staff members in reports about rule violations, complaints, bug reports, or support requests.": "Geef niet opzettelijk verkeerde of misleidende informatie aan medewerkers in rapporten over regelovertredingen, klachten, bugrapporten of ondersteuningsverzoeken.", - "Do not make false statements against": "Leg geen valse verklaringen af tegen", - "Do not make rooms with inappropriate or abusive names.": "Maak geen kamers met ongepaste of beledigende namen.", - "Do not pretend to be a representative of": "Doe niet alsof u een vertegenwoordiger bent van", - "Do not re-appeal your ban unless stated otherwise. This means if you re-appeal in 2 days after your first appeal was denied and you were told to re-appeal in 2-3 weeks, you will be banned from the forum as well as the hotel.": "Ga niet opnieuw in beroep na een ban, tenzij anders vermeld. Dit betekent dat als je binnen 2 dagen opnieuw in beroep gaat nadat je eerste beroep is afgewezen en je te horen kreeg dat je binnen 2-3 weken opnieuw in beroep moest gaan, je zowel van het forum als van het hotel wordt verbannen.", - "Do not share your account with other users.": "Deel je account niet met andere gebruikers.", - "Do not threaten to, attempt to, or hack other users accounts.": "Bedreigen of hacken van accounts van andere gebruikers is verboden.", - "Do not threaten to, attempt to, or use any scripts or third party software to enter, disrupt, or modify": "Bedreig, probeer of gebruik geen scripts of software van derden om binnen te komen, te verstoren of te wijzigen", - "Donate": "Doneren", - "Donate to :hotel": "Doneer aan :hotel", - "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 ons helpen om de maandelijkse rekeningen te betalen die nodig zijn om het hotel draaiende te houden, en om spannende nieuwe functies voor jou en anderen toe te voegen!", - "Dont have an account? Join now!": "Geen account? Maak er één aan!", - "Download Badge": "Badge Downloaden", - "Download badge": "Badge downloaden", - "Draw circle": "Teken cirkel", - "Draw line": "Teken lijn", - "Draw rectangle": "Teken rechthoek", - "Draw your very own badge": "Teken hier je eigen badge", - "Drawing Tools": "Tekengereedschap", - "Drop Shadow": "Slagschaduw", - "Dropdown": "Dropdown", - "Dropdown style": "Dropdown stijl", - "Dropdowns": "Dropdowns", - "Duckets": "Duckets", - "Duration (minutes)": "Duur (minuten)", - "E-mail": "E-mail", - "Earth": "Natuur", - "Edit": "Bewerken", - "Edit Message": "Bericht Bewerken", - "Edit Page": "Pagina Bewerken", - "Effect Speed": "Effect snelheid", - "Effect for all buttons": "Effect voor alle knoppen", - "Effect for links": "Effect voor links", - "Effect for navigation items": "Effect voor navigatie-items", - "Effect speed": "Effect snelheid", - "Effects": "Effecten", - "Elastic": "Elastisch", - "Email": "E-mail", - "Email Password Reset Link": "E-mail Wachtwoord Reset Link", - "Enable Effects": "Effecten inschakelen", - "Enable Maintenance": "Onderhoud Inschakelen", - "Enable Maintenance Mode?": "Onderhoudsmodus Inschakelen?", - "Enable animations and transitions": "Animaties en overgangen inschakelen", - "Enable custom button style": "Aangepaste knopstijl inschakelen", - "Enable effects": "Effecten inschakelen", - "Enable or disable all button effects": "Alle knopeffecten in- of uitschakelen", - "Enable this to use the custom button style": "Schakel dit in om de aangepaste knopstijl te gebruiken", - "Enabled": "Ingeschakeld", - "Enter a new secure password. Do not forget to save it somewhere safe": "Voer een nieuw veilig wachtwoord in. Vergeet deze niet op een veilige plaats te bewaren.", - "Enter badge name": "Voer badge naam in", - "Enter description": "Voer beschrijving in", - "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 code from your authentication app": "Voer de code in van je authenticatie app", - "Enter your 2-factor authentication code provided on your by the authentication app on your mobile phone.": "Voer je 2-factor authenticatiecode in die wordt verstrekt door de authenticatie app op je mobiele telefoon.", - "Enter your beta code": "Voer je beta code in", - "Enter your current password": "Voer uw huidige wachtwoord in", - "Enter your email": "Vul je e-mailadres in", - "Enter your password": "Voer je wachtwoord in", - "Enter your username": "Voer je gebruikersnaam in", - "Erase": "Gum", - "Erase mode:": "Wissen:", - "Error": "Fout", - "Error logs": "Foutenlogboeken", - "Estimated completion": "Verwachte voltooiing", - "Every now and then staff applications may open up. Once they do we always make sure to post a news article explaining the process - So make sure you keep an eye out for those in you are interested in joining the :hotel staff team.": "Af en toe kunnen personeelsvacatures openen. Zodra dat het geval is, zorgen we er altijd voor dat we een nieuwsartikel plaatsen dat het proces uitlegt - Dus zorg ervoor dat je een oogje houdt op diegene die geΓ―nteresseerd zijn in het :hotel personeelsteam.", - "Extended button styles and effects": "Uitgebreide knopstijlen en effecten", - "Extra Large": "Extra Groot", - "Extra Options": "Extra Opties", - "FX": "FX", - "Fade In": "Vervagen In", - "Fade Out": "Vervagen Uit", - "Falling": "Vallend", - "Fast": "Snel", - "Fill": "Vul", - "Fill:": "Vullen:", - "Fire": "Vuur", - "Flash": "Flash", - "Flash Texts": "Flash Teksten", - "Flash client": "Flash client", - "Flip": "Spiegelen", - "Flip X": "Spiegel X", - "Flip Y": "Spiegel Y", - "Float": "Zweven", - "Font Family": "Lettertype", - "Font Size (px)": "Lettergrootte (px)", - "Font size (px)": "Lettergrootte (px)", - "For captions and placeholder text": "Voor bijschriften en placeholder tekst", - "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.": "Wachtwoord vergeten? Geen probleem. Laat ons je e-mailadres weten en we sturen je een wachtwoord reset link.", - "Friendly": "Vriendelijk", - "Friendly & Warm": "Vriendelijk & Warm", - "Friends": "Vrienden", - "Functional": "Functioneel", - "Futuristic": "Futuristisch", - "Geen": "Geen", - "General Rules": "Algemene regels", - "Get an overview of all of the rares on :hotel": "Krijg een overzicht van alle rares op :hotel", - "Get flash": "Flash downloaden", - "Glans": "Glans", - "Glitch": "Glitch", - "Gloed": "Gloed", - "Glow": "Gloed", - "Go back to values": "Ga terug naar waarden", - "Go to :hotel": "Ga naar :hotel", - "Goodbye": "Tot ziens", - "Grayscale": "Grijswaarden", - "Grid": "Raster", - "Groups": "Groep", - "Guide": "Gids", - "Hang": "Hangen", - "Have a look at some of the great moments captured by users around the hotel.": "Bekijk enkele van de geweldige momenten die zijn vastgelegd door gebruikers rond het hotel.", - "Heartbeat": "Hartslag", - "Heavy": "Zwaar", - "Hello": "Hallo", - "Hello there! We are truly grateful that you have chosen Atom CMS for your hotel.": "Hallo! We zijn zeer dankbaar dat je Atom CMS hebt gekozen voor je hotel.", - "Hello!": "Hallo!", - "Help": "Help", - "Help center": "Helpcentrum", - "Here at :hotel Hotel we are accepting donations to keep the hotel up & running and as a thank you, you will in return receive in-game goods.": "Hier in het hotel :hotel, accepteren we donaties om het hotel draaiende te houden en als dank ontvang je in-game goederen in ruil.", - "Here at :hotel we have added a referral system, allowing you to obtain a bonus for every :needed users that registers through your referral link will allow you to claim a reward of :amount diamonds!": "Bij :hotel, hebben we een verwijzingssysteem toegevoegd waarmee je een bonus kunt krijgen voor elke :needed gebruikers die zich aanmeldt via jouw verwijzingslink, waarmee je een beloning van :amount diamanten kunt claimen.", - "Here at :hotel we open up for staff applications every now and then. Sometimes you will find this page empty other times it might be filled with positions, if you ever come across a position you feel you would fit perfectly into, then do not hesitate to apply for it.": "Bij :hotel openen we af en toe personeelsvacatures. Soms vind je deze pagina leeg, andere tijden kan deze gevuld zijn met functies, als je ooit een functie tegenkomt waarvan je denkt dat je er perfect in past, aarzel dan niet om te solliciteren.", - "Here at :hotel we take security very serious and therefore we offer you as a user a way to secure your beloved account even further, by allowing you to enable Googles 2-factor authentication!": "Hier bij :hotel nemen we beveiliging zeer serieus en daarom bieden we jou als gebruiker een manier om je geliefde account nog beter te beveiligen, door je toe te staan Googles 2-factor authenticatie in te schakelen!", - "Here at :hotel we take security very seriously and therefore we offer you as a user a way to secure your beloved account even further, by allowing you to enable Google's 2-factor authentication!": "Bij :hotel nemen we beveiliging zeer serieus en daarom bieden we je als gebruiker een manier om je geliefde account nog beter te beveiligen, door je toe te staan om Google's 2-factor authenticatie in te schakelen!", - "Here is a list of all the owned :value`s": "Hier is een lijst van alle eigendom :value`s", - "Home": "Home Pagina", - "Hotel": "Hotel", - "Hours online": "Uur Online", - "Housekeeping": "Housekeeping", - "Hover Color": "Hover Kleur", - "Hover Scale": "Hover Schaal", - "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?", - "How to join the staff team": "Hoe solliciteer je voor het personeelsteam", - "Hue Rotate": "Tint Rotatie", - "I accept the :hotel terms & rules.": "Ik accepteer de :hotel voorwaarden & regels.", - "IP": "IP", - "IP Current Device": "IP Huidig Apparaat", - "Ice": "IJs", - "Icon number": "Icoon nummer", - "If you believe this is a mistake, please reach out to one of our staff members through our Discord server!": "Als je denkt dit een vergissing is, neem dan contact op met één van onze personeelsleden via onze Discord server!", - "Impact": "Impact", - "Import": "Importeer", - "Import Picture:": "Afbeelding importeren:", - "In case you dont have access to your two-factor authentication code, you can use one of your recovery codes.": "In het geval je geen toegang hebt tot je twee-factor authenticatiecode, kun je één van je herstelcodes gebruiken.", - "Indent": "Inspringen", - "Info": "Info", - "Insert Reaction": "Reactie toevoegen", - "Installation key": "Installatie sleutel", - "Invalid Two Factor Authentication code": "Ongeldige twee-factor authenticatie code", - "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 de gevolgen van onze uitgaven gewoonten te overwegen, vooral als het gaat om financiΓ«le beslissingen. Als je merkt dat je in de verleiding komt om geld uit te geven dat je niet hebt, neem dan even de tijd om na te denken.", - "It seems like :user got no rooms.": "Het lijkt erop dat :user geen kamer heeft.", - "It seems like :user has no badges.": "Het lijkt erop dat :user geen badges heeft.", - "It seems like :user has no friends.": "Het lijkt erop dat :user nog geen vrienden heeft.", - "It seems like :user is not a member of any groups.": "Het lijkt erop dat de gebruiker geen lid is van een groep.", - "It seems like you are banned off :hotel": "Het lijkt erop dat je verbannen bent van :hotel", - "It seems like your current password is wrong.": "Het lijkt erop dat je huidige wachtwoord verkeerd is.", - "Item updated": "Item bijgewerkt", - "Items": "Items", - "Items moved": "Items verplaatst", - "Jello": "Jello", - "Join discord": "Discord deelnemen", - "Join server": "Neem Deel", - "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 alle laatste updates", - "Kies een effect voor buttons in het thema": "Kies een effect voor knoppen in het thema", - "Knop effecten": "Knop Effecten", - "Large": "Groot", - "Last Activity": "Laatst Ingelogd", - "Last online:": "Laatst online:", - "Lastly, we just want to show our gratitude by letting your know how delighted we are to be a part of your journey and we hope you will gain some amazing memories. So, here is to your new hotel, the boundless creativity it will inspire, and the endless possibilities that lie ahead.": "Ten slotte willen we gewoon onze dankbaarheid tonen door je te laten weten hoe verheugd we zijn om deel uit te maken van je reis en we hopen dat je enkele geweldige herinneringen zult opdoen. Dus, hier is je nieuwe hotel, de grenzeloos kreativiteit die het zal inspireren, en de eindeloze mogelijkheden die voor ons liggen.", - "Latest Photos": "Laatste Foto's", - "Latest news": "Laatste Nieuws", - "Layout": "Lay-out", - "Leaderboard": "Klassement", - "Leaderboards": "Statistieken", - "Limited": "Beperkt", - "Line": "Lijn", - "Line Through": "Doorgestreept", - "Links Effect": "Link Effecten", - "Links effect": "Link effecten", - "Literary": "Literair", - "Live Shouts": "Live Berichten", - "Loading": "Laden", - "Log Out": "Uitloggen", - "Login": "Inloggen", - "Login to :hotel": "Inloggen op :hotel", - "Login to :hotel and take part in the most wonderful online world!": "Log in op :hotel en neem deel aan de mooiste online wereld!", - "Logout": "Uitloggen", - "Lost access to your 2FA codes? Click here to use a recovery code": "Geen toegang meer tot je 2FA codes? Klik hier om een herstelcode te gebruiken", - "Made with": "Gemaakt met", - "Maintenance": "Onderhoud", - "Maintenance Message": "Onderhoudsbericht", - "Maintenance break!": "Onderbreking voor onderhoud!", - "Maintenance message updated": "Onderhoudsbericht bijgewerkt", - "Maintenance mode disabled": "Onderhoudsmodus uitgeschakeld", - "Maintenance mode enabled": "Onderhoudsmodus ingeschakeld", - "Maintenance scheduled": "Onderhoud gepland", - "Maintenance will start at :time for :duration minutes": "Onderhoud start op :time voor :duration minuten", - "Make sure to use an email that you remember, if you ever lose your password, your email will be required.": "Zorg ervoor dat u een e-mailadres gebruikt dat u zich herinnert, want als u uw wachtwoord verliest, wordt u om uw e-mailadres gevraagd.", - "Manage your account settings": "Beheer je account instellingen", - "Manual Order": "Handmatige Volgorde", - "Mark as Completed": "Markeren als Voltooid", - "Mark as In Progress": "Markeren als In Progress", - "Mass edit selected": "Massa bewerking geselecteerd", - "Max users:": "Max gebruikers:", - "Medium": "Medium", - "Min Rank": "Min Rang", - "Minimalist": "Minimalistisch", - "Mission": "Status", - "Most of our team usually consists of players that have been around :hotel for quite a while, but this does not mean we only recruit old & known players, we recruit those who shine out to us!": "Meestal bestaat ons team uit spelers die al een tijdje bij :hotel zijn, maar dat betekent niet dat we alleen oude & bekende spelers werven, we werven degenen die voor ons uitblinken!", - "Motto": "Motto", - "Muted Text": "Gedempte Tekst", - "My Profile": "Mijn Profiel", - "My name is,": "Mijn naam is,", - "Name TAG": "Naam TAG", - "Navbar": "Navigatiebalk", - "Navbar Text": "Navigatiebalk Tekst", - "Navigation Effect": "Navigatie Effect", - "Navigation effect": "Navigatie effect", - "Neon": "Neon", - "Neon Pulse": "Neon Puls", - "New Page": "Nieuwe Pagina", - "New password": "Nieuw wachtwoord", - "News": "Nieuws", - "Next": "Volgende", - "Nitro Texts": "Nitro Teksten", - "Nitro client": "Nitro client", - "No": "Nee", - "No positions open": "Geen vacatures open", - "No published articles": "Geen gepubliceerde artikelen", - "No session logs found": "Geen sessie logboeken gevonden", - "No team positions open": "Geen team posities open", - "Non-harmful auto-typing, auto-clicking and other programs can only be used if you are the room owner or with permission from the room owner.": "Niet-schadelijke auto-typers, auto-klikkers en andere programma's kunnen alleen worden gebruikt als je de kamer eigenaar bent of met toestemming van de kamer eigenaar.", - "None": "Geen", - "Normal": "Normaal", - "Notice": "Kennisgeving", - "Ocean": "Oceaan", - "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 omgezet in contant geld of andere vormen van geld. Door een donatie te doen, erkent en accepteert u deze voorwaarden en gaat u ermee akkoord geen terugboeking of geschil met uw bank of kaartuitgever te starten.", - "Once again, congratulations and best of wishes for you & your hotel!": "Nogmaals gefeliciteerd en beste wensen voor jou & je hotel!", - "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 het ongelooflijke project te zien dat je zult maken.", - "Online Friends": "Online Vrienden", - "Online Since": "Online Sinds", - "Only staff can login during maintenance!": "Alleen personeel kan inloggen tijdens onderhoud!", - "Open main menu": "Hoofdmenu openen", - "Open tickets": "Openstaande tickets", - "Or": "Of", - "Order": "Volgorde", - "Other articles": "Ander nieuws", - "Our most recent articles": "Onze meest recente artikelen", - "Outdent": "Uitspringen", - "Outline": "Omlijning", - "Overline": "Overlijnd", - "Padding X (px)": "Opvulling X (px)", - "Padding Y (px)": "Opvulling Y (px)", - "Page Name": "Paginanaam", - "Page updated": "Pagina bijgewerkt", - "Palette": "Palet", - "Parent ID": "Bovenliggende ID", - "Password": "Wachtwoord", - "Password settings": "Wachtwoord instellingen", - "Pastel": "Pastel", - "Photo": "Foto", - "Photos": "Fotos", - "Pill (extra round)": "Pil (extra rond)", - "Platform": "Platform", - "Play": "Afspelen", - "Playful": "Speels", - "Please come back at a later time to check if we have any positions open by then! Thank you for your interest.": "Kom later terug om te controleren of we dan vacatures hebben! Bedankt voor uw interesse.", - "Please come back later to check for new openings. Thank you!": "Kom later terug om te controleren of er nieuwe vacatures zijn. Bedankt!", - "Please confirm your new password": "Bevestig je nieuw wachtwoord", - "Please field out all the fields to apply for :position. Remember when applying for a position here at :hotel you must be fully transparent and honest. If found out the information provided is false or incorrect you might risk losing your position if hired.": "Vul alle velden in om te solliciteren voor :position. Onthoud dat wanneer je solliciteert naar een functie hier bij :hotel, je volledig transparant en eerlijk moet zijn. Als blijkt dat de verstrekte informatie onwaar of onjuist is, loop je het risico je functie te verliezen als je wordt aangenomen.", - "Please fill in all fields and draw something": "Vul alle velden in en teken iets", - "Please logout to claim your reward": "Log uit om je beloning te claimen", - "Please make sure to read our shop": "Zorg ervoor dat je onze winkel 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 uw herstelcodes op een veilige plek! Als u de toegang tot uw 2FA-codes verliest, zijn die herstelcodes nodig om weer toegang te krijgen tot uw account.", - "Please scan the QR-code above with your phone to retrieve your two-factor authentication code.": "Scan de QR-code hierboven met uw telefoon om uw 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 wait": "Even geduld", - "Points": "Punten", - "Pop": "Pop", - "Post a comment": "Plaats een reactie", - "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 er van vindt", - "Post comment": "Reactie plaatsen", - "Preview": "Voorbeeld", - "Preview Page": "Pagina Voorbeeld", - "Previous": "Vorige", - "Previous step": "Vorige stap", - "Primary Color": "Primaire Kleur", - "Primary Color (background)": "Primaire Kleur (achtergrond)", - "Primary color (background)": "Primaire kleur (achtergrond)", - "Privacy": "Privacy", - "Professional": "Professioneel", - "Profile": "Profiel", - "Puls": "Puls", - "Pulse": "Puls", - "Purchase :hotel items": "Meubels kopen :hotel", - "Quote": "Citaat", - "Radio": "Radio", - "Radio Home": "Radio Home", - "Radio punten": "Radio punten", - "Rainbow": "Regenboog", - "Rare categories": "Rare categorieΓ«n", - "Rare values": "Rare waarden", - "Reactions with": "Reacties met", - "Read before applying": "Lees voordat je solliciteert", - "Readable": "Leesbaar", - "Recent Colors": "Recente Kleuren", - "Recent color": "Laatst gekozen kleur", - "Recovery code": "Herstelcode", - "Recovery codes:": "Herstelcodes:", - "Rect": "Rechthoek", - "Redo": "Opnieuw", - "Referral new users and be rewarded by in-game goods": "Verwijs nieuwe gebruikers en word beloond met in-game goederen.", - "Regained access to your 2FA codes? Click here to use your authentication app": "Weer toegang tot je 2FA codes? Klik hier om je authenticator app te gebruiken", - "Register": "Registreren", - "Reload client": "Client herladen", - "Remember me": "Onthoud mij", - "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, je financiΓ«le welzijn is cruciaal en verantwoordelijke keuzes maken is de sleutel. Als je moeite hebt om je uitgavenpatroon te beheersen, 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": "Verificatie E-mail Opnieuw Verzenden", - "Reset": "Reset", - "Reset Password": "Wachtwoord Resetten", - "Respects received": "Ontvangen Respect", - "Restart installation": "Herstart installatie", - "Retro/Gaming": "Retro/Gaming", - "Ripple": "Rimpeling", - "Rising": "Stijgend", - "Room details": "Kamer details", - "Rooms": "Kamers", - "Rotate": "Roteer", - "Round & Soft": "Rond & Zacht", - "Rounded": "Afgerond", - "Rubber Band": "Rubberband", - "Rules": "Regels", - "Rules and regulations are subject to change without notice. As a member of the :hotel community, you hereby agree to and understand the following terms and conditions above. Failure to comply with these rules and regulations will result in the necessary sanctions implemented upon your account. If you have any questions or concerns in regards to The :hotel Way, please do not hesitate to ask a member of the Hotel Staff.": "Regels en voorschriften kunnen zonder kennisgeving worden gewijzigd. Als lid van de :hotel gemeenschap, gaat u hierbij akkoord met de voorwaarden. Het niet naleven van deze regels en voorschriften zal resulteren in de nodige sancties op uw account. Als u vragen heeft met betrekking tot de :hotel regels, aarzel dan niet om een lid van het hotelpersoneel te vragen.", - "Saturate": "Verzadigen", - "Save": "Opslaan", - "Save Theme": "Thema Opslaan", - "Save Theme & Buttons": "Thema & Knoppen Opslaan", - "Scale Pulse": "Schaal Puls", - "Schedule": "Plannen", - "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 catalog pages or items": "Zoek cataloguspagina's of items", - "Search for rares": "Zoeken naar rares", - "Search mode active": "Zoekmodus actief", - "Select a catalog page to view its items": "Selecteer een cataloguspagina om de items te bekijken", - "Select a category below": "Selecteer hieronder een categorie", - "Select a team to get started": "Selecteer een team om te beginnen", - "Select position to get started": "Selecteer een functie om te beginnen", - "Sepia": "Sepia", - "Session logs": "Sessie Logboek", - "Settings": "Instellingen", - "Shadow": "Schaduw", - "Shadow Move": "Schaduw Beweging", - "Shake": "Schudden", - "Shake Hard": "Hard Schudden", - "Shine": "Schittering", - "Shop": "Winkel", - "Shop Terms & Conditions": "Winkel Voorwaarden", - "Show Grid:": "Raster tonen:", - "Show Name": "Show Naam", - "Show a border around the dropdown": "Toon een rand rond de dropdown", - "Show border": "Toon rand", - "Show only the border without background color": "Toon alleen de rand zonder achtergrondkleur", - "Skew": "Scheef", - "Slam": "Slam", - "Slide Down": "Naar Beneden", - "Slide Left": "Naar Links", - "Slide Right": "Naar Rechts", - "Slide Up": "Naar Boven", - "Slow": "Langzaam", - "Small": "Klein", - "Sparkle": "Vonk", - "Spice up your profile with a nice motto": "Geef je profiel wat pit met een geweldige biografie", - "Spin": "Draaien", - "Square": "Vierkant", - "Squeeze": "Knijpen", - "Staff": "Personeel", - "Staff applications": "Personeelsaanmeldingen", - "Staff login": "Personeel inloggen", - "Start Time": "Starttijd", - "Start the setup": "Start de installatie", - "Status:": "Status:", - "Sterretjes": "Sterretjes", - "Stretch": "Uitrekken", - "Strike": "Streep", - "Style": "Stijl", - "Style of dropdown menus in the navigation": "Stijl van dropdownmenu's in de navigatie", - "Stylish": "Stijlvol", - "Success": "Succes", - "Super Round": "Super Rond", - "Surface": "Oppervlak", - "Swing": "Zwaaien", - "Tada": "Tada", - "Take me to :hotel": "Breng me naar :hotel", - "Team applications": "Team aanmeldingen", - "Teams": "Teams", - "Technical": "Technisch", - "Terms": "Voorwaarden", - "Terms & Conditions": "Voorwaarden", - "Text": "Tekst", - "Text Color": "Tekstkleur", - "Text color": "Tekstkleur", - "Text color in the navbar": "Tekstkleur in de navigatiebalk", - "Thank you for playing :hotel. We have put a lot of effort into making the hotel what it is, and we truly appreciate you being here.": "Bedankt voor het spelen van :hotel. We hebben veel energie gestoken in het maken van het hotel tot wat het is, en we stellen het zeer op prijs dat u hier bent.", - "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 aanmelden! Voordat je begint, kun je je e-mailadres verifiΓ«ren door op de link te klikken die we je zojuist hebben gemaild? Als je de e-mail niet hebt ontvangen, sturen we je graag nog een.", - "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 didn\\'t receive the email, we will gladly send you another.": "Bedankt voor het aanmelden! Voordat je begint, kun je je e-mailadres verifiΓ«ren door op de link te klikken die we je net hebben gemaild? Als je de e-mail niet hebt ontvangen, sturen we je graag nog een.", - "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 dit not receive the email, we will gladly send you another.": "Bedankt voor het aanmelden! Voordat je begint, kun je je e-mailadres verifiΓ«ren door op de link te klikken die we je zojuist hebben gemaild? Als je de e-mail niet hebt ontvangen, sturen we je graag nog een.", - "The :hotel staff team is one big happy family, each staff member has a different role and duties to fulfill.": "Het :hotel personeelsteam is één grote gelukkige familie, elk personeelslid heeft een andere rol en plichten te vervullen.", - "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 captcha failed, please try again.": "De captcha is mislukt. Probeer het opnieuw.", - "The general account rules on :hotel": "De algemene account regels op :hotel", - "The general rules of :hotel": "De algemene regels van :hotel", - "The google recaptcha was submitted with an invalid type": "De google recaptcha is ingediend 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 room guild": "De kamer gilde", - "Theme & Button Settings": "Thema & Knop Instellingen", - "Theme & Buttons": "Thema & Knoppen", - "Theme Settings": "Thema Instellingen", - "There are currently no open team positions": "Er zijn momenteel geen open team posities", - "There is currently :online users online": "Er zijn momenteel :online leden online", - "There is currently no articles": "Er zijn momenteel geen artikelen", - "There is currently no other articles": "Er zijn momenteel geen andere artikelen", - "There is currently no positions open": "Er zijn momenteel geen vacatures open", - "These credentials do not match our records.": "Deze gegevens komen niet overeen met onze gegevens.", - "This color is used for logo, buttons, etc.": "Deze kleur wordt gebruikt voor logo, knoppen, enz.", - "This includes mimicing, acting like them, and or claim to have staff powers.": "Dit omvat het nabootsen, zich als hen gedragen en/of beweren stafbevoegdheden te hebben.", - "This is a root menu entry. Select a subpage to order its items.": "Dit is een hoofdmenu-item. Selecteer een subpagina om de items te ordenen.", - "This user currently does not have any rooms": "Deze gebruiker heeft momenteel geen kamers", - "Timeless": "Tijdloos", - "Tiny": "Minuscuul", - "To purchase items from the :hotel shop, please visit our Discord and contact the owner of :hotel Hotel to make your purchase": "Om VIP te kopen, Ga naar onze Discord en neem contact op met de :hotel staff om uw aankoop te doen.", - "Top credits": "Top Credits", - "Top diamonds": "Top Diamanten", - "Top duckets": "Top Duckets", - "Top up account": "Account opwaarderen", - "Transform only": "Alleen transformatie", - "Transition": "Overgang", - "Transition Duration (ms)": "Overgangsduur (ms)", - "Transition duration (ms)": "Overgangsduur (ms)", - "Transition type": "Overgangstype", - "Two factor": "Twee-factor", - "Two factor authentication": "Twee-factor authenticatie", - "Two factor challenge": "Twee-factor verificatie", - "Two-factor verification": "Twee-factor verificatie", - "Type": "Type", - "Typewriter": "Typemachine", - "Typography": "Typografie", - "URL to the background image (leave empty for no image)": "URL naar de achtergrondafbeelding (laat leeg voor geen afbeelding)", - "Ultra Bold": "Ultra Vet", - "Underline": "Onderstreept", - "Undo": "Ongedaan maken", - "Unique": "Uniek", - "Unknown": "Onbekend", - "Update Order": "Volgorde Bijwerken", - "Update password": "Wachtwoord vernieuwen", - "Update settings": "Voorkeuren vernieuwen", - "Use a voucher for free credit": "Gebruik een voucher voor gratis credits", - "Use voucher": "Gebruik voucher", - "User Referrals": "Gebruikers Referenties", - "User Referrals (%s/%s)": "Gebruikers Referenties (%s/%s)", - "User settings": "Instellingen", - "Username": "Gebruiksnaam", - "Users are to not participate in any sexual, inappropriate, or generally objective acts towards other users without their prior consent.": "Gebruikers mogen niet deelnemen aan seksuele, ongepaste of algemeen objectieve handelingen jegens andere gebruikers zonder hun voorafgaande toestemming.", - "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 twee-factor inschakeling door de volgende QR-code te scannen en voer je automatisch gegenereerde 2-factor code van je telefoon in.", - "Verify 2FA": "Verifieer 2FA", - "Versatile": "Veelzijdig", - "Vibrate": "Trillen", - "View": "Weergave", - "View reset": "Weergave reset", - "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 probeert", - "We currently have no rares listed here": "We hebben momenteel geen rares vermeld hier", - "We currently have no staff in this position": "We hebben momenteel geen personeel in deze functie", - "We open team applications periodically. If you see a team you fit, do not hesitate to apply!": "We open regelmatig team sollicitaties. Als je een team ziet waar je in past, aarzel dan niet om te solliciteren!", - "Website": "Website", - "Welcome": "Welkom", - "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?", - "Whoops! It seems like you have been disconnected...": "Whoops! Het lijkt erop dat je bent afgesloten...", - "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!": "Met alles wat gezegd is willen we je een warm welkom heten bij de Atom CMS familie!", - "Woah! You have successfully claimed your reward - Keep up the good work!": "Woah! Je hebt succesvol je beloning geclaimd - Ga zo door!", - "Wobble": "Wankelen", - "Word DJ": "Word DJ", - "Yes": "Ja", - "You are nearly in Habbo!": "Je bent bijna in Habbo!", - "You can occasionally also look at the :startTag Staff application page :endTag which will show you all of our current open positions.": "Je kunt ook af en toe kijken naar de :startTag Sollicitatiepagina voor personeel :endTag die al onze huidige open posities laat zien.", - "You can only comment :amount times per article": "Je kunt alleen :amount keer per artikel reageren", - "You can only delete your own comments": "Je kunt alleen je eigen reacties verwijderen", - "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 entered something that is not allowed on :hotel": "Je hebt iets ingevoerd dat niet is toegestaan op :hotel", - "You have already applied for :position": "Je hebt al gesolliciteerd voor :position", - "You have reached the limit of maximum allowed accounts": "Je hebt de limiet van maximaal toegestane accounts bereikt", - "You must confirm your current password before being able to toggle 2FA.": "U moet uw huidige wachtwoord bevestigen voordat u 2FA kunt inschakelen.", - "You must confirm your password to continue": "U moet uw wachtwoord bevestigen om door te gaan", - "You need to refer :needed more users, before being able to claim your reward": "U moet meer gebruikers doorverwijzen voordat u uw beloning kunt claimen.", - "You will need your email if you were to ever forget your password, so make sure it is something that you remember.": "U heeft uw e-mailadres nodig als u uw wachtwoord vergeet, dus zorg ervoor dat u het onthoudt.", - "You will receive:": "Je ontvangt:", - "Your IP have 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 vergissing is, kun je contact met ons opnemen via onze Discord.", - "Your account settings has been updated": "Je accountinstellingen zijn bijgewerkt", - "Your password has been changed!": "Je wachtwoord is gewijzigd!", - "Your password must contain atleast 8 characters. Make sure to use a unique & secure password.": "Uw wachtwoord moet minimaal 8 tekens bevatten. Zorg ervoor dat u een uniek en veilig wachtwoord gebruikt.", - "Your referral code has been copied to your clipbord!": "Je verwijzingscode is gekopieerd naar je klembord!", - "Your username is what you and others will see in-game": "Je gebruikersnaam is wat jij en anderen in de game zullen zien.", - "Your username is what you will have to use, when logging into :hotel. It is also what other users will know you as, so make sure you select a username that you like!": "Uw gebruikersnaam is degene die u moet gebruiken om in te loggen op :hotel. Dit is ook hoe andere gebruikers je zullen herkennen, dus zorg ervoor dat je een gebruikersnaam kiest die je leuk vindt!", - "Zoom": "Zoom", - "Zoom In": "Inzoomen", - "Zoom Out": "Uitzoomen", - "Zoom:": "Zoom:", - "Zweven": "Zweven", - "account and/or": "Account en/of", - "at any given time; all payments are final.": "op elk moment; alle betalingen zijn definitief.", - "back_to_home": "Terug naar Home", - "badge_purchase_confirmation": "Weet je zeker dat je deze badge wilt kopen voor :cost :currency?\nEr vindt geen restitutie plaats als de badge niet voldoet aan de hotelrichtlijnen.", - "badge_purchase_error_general": "Er is een fout opgetreden tijdens de aankoop. neem contact op met de beheerder!", - "badge_purchase_error_insufficient": "Error: Onvoldoende :currency of de aankoop is mislukt.", - "badge_purchase_success": "Badge succesvol gekocht en we hebben de :currency van je balans gehaald.\nDe badge is nu naar het personeel gestuurd ter inspectie.", - "before making a purchase.": "voordat je een aankoop doet.", - "download_appimage": "Downloaden (.AppImage)", - "download_dmg": "Downloaden (.dmg)", - "download_exe": "Downloaden (.exe)", - "download_options": "Download Opties", - "enter_hotel": "Betreed Hotel", - "flash_client": "Flash Client", - "for_linux": "Voor Linux gebruikers", - "for_macos": "Voor macOS gebruikers", - "furniture/currency for Habbo furniture/currency or vice versa.": "meubels/valuta voor Habbo meubels/valuta of vice versa.", - "issue_not_listed": "Als je probleem hierboven niet wordt vermeld, neem dan contact op met ondersteuning.", - "items for virtual items from another game, accounts from another game, cash, or vice versa without permission from an Administrator. This includes giving away, buying, selling or trading": "items voor virtuele items uit een ander spel, accounts uit een ander spel, contant geld of vice versa zonder toestemming van een beheerder. Dit omvat weggeven, kopen, verkopen of verhandelen", - "linux": "Linux", - "macos": "macOS", - "nitro_client": "Nitro Client", - "or any other part of its services.": "of enig ander onderdeel van haar diensten.", - "owned": "eigendom", - "recommended_windows": "Aanbevolen voor Windows gebruikers", - "report it to the Administration immediately.": "meld dit dan direct bij de administratie.", - "sso_authentication": "SSO Authenticatie", - "sso_description": "Je sessie is beveiligd met SSO. Je kunt nu het hotel betreden.", - "sso_ticket": "Je SSO ticket is gegenereerd voor veilige authenticatie.", - "troubleshooting": "Probleemoplossing", - "welcome_flash": "Welkom bij de Flash Client! Je kunt nu de Flash client downloaden en starten voor je hotel.", - "welcome_nitro": "Welkom bij de Nitro Client! Je kunt nu de Nitro client downloaden en starten voor je hotel.", - "windows": "Windows", - "Your motto has been changed by a staff member.": "Je motto is gewijzigd door een personeelslid.", - "nitro.config_generated": "Configs Generated!", - "filament::resources.inputs.mute_time": "Mute Tijd", - "filament::resources.resources.badges.plural": "Badges", - "Current balance: Login required": "Huidig saldo: Inloggen vereist", - "filament::resources.options.yes": "Ja", - "Login to apply": "Log in om te solliciteren", - "nitro.emulator_unknown": "Onbekend", - "Saved": "Opgeslagen", - "filament::resources.resources.tags.navigation_label": "Tags", - "filament::resources.common.No": "Nee", - "Navigation padding (px)": "Navigatie opvulling (px)", - "filament::resources.resources.users.plural": "Gebruikers", - "Content": "Inhoud", - "Join the Team": "Sluit je aan bij het team", - "filament::resources.columns.email": "E-mail", - "underline": "onderstreept", - "filament::resources.common.Yes": "Ja", - "Search teams…": "Zoek teams…", - "filament::resources.resources.furniture.navigation_label": "Furniture", - "Update": "Bijwerken", - "filament::resources.resources.housekeeping-permissions.plural": "Admin Permissies", - "Body text size (px)": "Tekstgrootte body (px)", - "members": "leden", - "nitro.never": "Nooit", - "filament::resources.resources.help-questions.label": "Help Vraag", - "filament::resources.columns.reason": "Reden", - "filament::resources.stats.photos_count.title": "Foto's", - "nitro.auto_update_yes": "Ja", - "Emulator update settings have been saved.": "Emulator update instellingen zijn opgeslagen.", - "Test Failed": "Test Mislukt", - "nitro.cancel": "Annuleren", - "You have been disconnected because your rank has been changed. Please re-enter the hotel.": "Je bent uitgelogd omdat je rang is gewijzigd. Log opnieuw in op het hotel.", - "filament::resources.resources.chatlog-rooms.label": "Kamer Chat", - "filament::resources.inputs.badge_description": "Badge Beschrijving", - "Choose avatar": "Kies avatar", - "filament::resources.resources.article.plural": "Artikelen", - "radio.setup.success_title": "Succes", - "filament::resources.columns.online": "Online", - "filament::resources.tabs.Home": "Home", - "Alert System": "Waarschuwingssysteem", - "Navigation font size (px)": "Navigatie lettergrootte (px)", - "Downloading, installing and restarting emulator...": "Emulator downloaden, installeren en herstarten...", - "nitro.updated_on": "Bijgewerkt op", - "filament::resources.inputs.reason": "Reden", - "filament::resources.inputs.category": "Categorie", - "nitro.never_checked": "Nooit gecontroleerd", - "filament::resources.inputs.reward_type": "Beloning Type", - "Borders": "Randen", - "filament::resources.inputs.last_login": "Laatst Ingelogd", - "filament::resources.inputs.referrer_code": "Referrer code", - "nitro.client": "Client", - "You cannot edit users with a higher rank than yours.": "Je kunt gebruikers met een hogere rang dan de jouwe niet bewerken.", - "Input Focus": "Invoer Focus", - "filament::resources.resources.chatlog-private.plural": "PrivΓ© Chats", - "filament::resources.resources.emulator-texts.plural": "Emulator Teksten", - "filament::resources.inputs.points": "Punten", - "nitro.remote": "Op afstand", - "filament::resources.resources.bots.plural": "Bots", - "nitro.success": "Succes", - "filament::resources.inputs.as_staff": "Als Staff", - "Badges & Tags": "Badges & Tags", - "filament::resources.resources.bots.navigation_label": "Bots", - "filament::resources.inputs.badge_title": "Badge Titel", - "filament::resources.inputs.auto_gotw_amount": "Auto GOTW Aantal", - "filament::resources.navigations.Hotel": "Hotel", - "filament::resources.resources.chatlog-private.navigation_label": "PrivΓ© Chats", - "filament::resources.columns.id": "ID", - "nitro.renderer": "Renderer", - "filament::resources.columns.visible": "Zichtbaar", - "filament::resources.columns.permission": "Permissie", - "ID": "ID", - "radio.music": "Muziek", - "filament::resources.resources.cms_settings.navigation_label": "CMS Settings", - "filament::resources.actions.send_notifications": "Notificaties Versturen", - "radio.setup.button_label": "Radio Instellen", - "filament::resources.columns.receiver": "Ontvanger", - "filament::resources.inputs.ip_current": "Huidige IP", - "nitro.config_generated_body": "Configuratiebestanden zijn bijgewerkt", - "member": "lid", - "filament::resources.inputs.gender": "Geslacht", - "Shadow Color": "Schaduw Kleur", - "nitro.info": "Info", - "filament::resources.inputs.receiver": "Ontvanger", - "filament::resources.navigations.User Management": "Gebruikersbeheer", - "filament::resources.resources.achievements.label": "Prestatie", - "Small text size (px)": "Kleine tekstgrootte (px)", - "Logo generator": "Logo generator", - "filament::resources.tabs.Main": "Hoofd", - "filament::resources.resources.writeable-boxes.label": "Schrijfbare Box", - "nitro.auto_update": "Automatisch bijwerken", - "filament::resources.resources.cms-settings.label": "CMS Instelling", - "filament::resources.resources.shop-orders.label": "Winkel Bestelling", - "Page Transitions": "Pagina Overgangen", - "nitro.error": "Fout", - "Underline Links": "Links Onderstrepen", - "filament::resources.columns.room": "Kamer", - "radio.setup.modal_description": "Stel je radio URL in om muziek af te spelen op je hotel.", - "Heading H2 size (px)": "Kop H2 grootte (px)", - "filament::resources.stats.badge_count.description": "Totaal badges", - "Form Inputs": "Formulier Invoervelden", - "filament::resources.navigations.General": "General", - "Enter the two-factor authentication code from your authenticator app.": "Voer de twee-factor authenticatiecode in van je authenticator app.", - "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.", - "Payment Method": "Betaalmethode", - "No staff members in this position": "Geen personeelsleden in deze functie", - "filament::resources.columns.sender": "Verzender", - "filament::resources.resources.tags.label": "Tag", - "Heading H1 size (px)": "Kop H1 grootte (px)", - "filament::resources.columns.equipped": "Gedragen", - "nitro.delete": "Verwijderen", - "filament::resources.resources.housekeeping-permissions.navigation_label": "Admin Permissies", - "Hide empty teams": "Verberg lege teams", - "filament::resources.resources.dashboard.navigation_label": "Dashboard", - "filament::resources.resources.teams.plural": "Teams", - "Disabled": "Uitgeschakeld", - "filament::resources.inputs.key": "Sleutel", - "filament::resources.inputs.room": "Kamer", - "filament::resources.inputs.motto": "Motto", - "filament::resources.resources.help-questions.navigation_label": "Help Vragen", - "Online": "Online", - "filament::resources.resources.help-questions.plural": "Help Vragen", - "filament::resources.resources.article.navigation_label": "Artikelen", - "nitro.healthy": "Gezond", - "Avatar Border": "Avatar Rand", - "Shadow Opacity": "Schaduw Doorzichtigheid", - "nitro.update_failed": "Update Mislukt", - "nitro.update_success": "Update Geslaagd", - "filament::resources.inputs.name": "Naam", - "filament::resources.columns.image": "Afbeelding", - "filament::resources.columns.updated_at": "Updated at", - "filament::resources.resources.help_question_categories.navigation_label": "Help Categories", - "filament::resources.inputs.slug": "Slug", - "nitro.site_url_not_set": "Niet ingesteld", - "filament::resources.common.All": "Alle", - "nitro.dependencies": "Afhankelijkheden", - "filament::resources.inputs.respects_received": "Respect Ontvangen", - "filament::resources.inputs.sender": "Verzender", - "nitro.build": "Build", - "No deadline set": "Geen deadline ingesteld", - "filament::resources.resources.permissions.label": "Permissie", - "filament::resources.common.Credits": "Credits", - "Two-Factor Authentication": "Twee-Factor Authenticatie", - "filament::resources.resources.badges.navigation_label": "Badges", - "filament::resources.inputs.visible": "Zichtbaar", - "Status": "Status", - "filament::resources.tabs.Change Rank": "Rang Wijzigen", - "filament::resources.resources.bans.navigation_label": "Verbanningen", - "filament::resources.resources.shop.label": "Shop Item", - "filament::resources.resources.articles.plural": "Artikelen", - "Refresh": "Vernieuwen", - "filament::resources.columns.status": "Status", - "No results found": "Geen resultaten gevonden", - "filament::resources.navigations.Monitoring": "Monitoring", - "filament::resources.resources.badge-resource.navigation_label": "Badges", - "View Open Positions": "Bekijk Open Posities", - "Style for outline buttons (transparent with border)": "Stijl voor omlijning knoppen (transparant met rand)", - "filament::resources.notifications.badge_image_required": "Badge afbeelding is verplicht", - "Default Border Width": "Standaard Randdikte", - "filament::resources.columns.can_change_name": "Naamswijziging", - "Your application is pending": "Je sollicitatie is in behandeling", - "filament::resources.inputs.content": "Inhoud", - "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 debug modus is ingeschakeld terwijl je in productie bent. Het wordt sterk aanbevolen om APP_DEBUG in het .env bestand op false te zetten in productiemodus", - "filament::resources.resources.navigations.label": "Navigatie", - "filament::resources.resources.writeable-boxes.navigation_label": "Schrijfbare Boxen", - "filament::resources.inputs.value": "Waarde", - "filament::resources.resources.housekeeping_permissions.plural": "Permissions", - "filament::resources.resources.badges.label": "Badge", - "Navigation": "Navigatie", - "Your application was rejected": "Je sollicitatie is afgewezen", - "filament::resources.resources.dashboard.label": "Dashboard", - "Stream Status": "Stream Status", - "filament::resources.navigations.Help Center": "Helpcentrum", - "filament::resources.resources.cms-settings.plural": "CMS Instellingen", - "filament::resources.resources.settings.navigation_label": "Instellingen", - "Not configured": "Niet geconfigureerd", - "filament::resources.columns.banned_at": "Verbannen", - "filament::resources.navigations.Atom": "Atom", - "filament::resources.helpers.badge_code_helper": "Voer de badge code in", - "Parent": "Ouder", - "nitro.installed": "GeΓ―nstalleerd", - "Link Color": "Link Kleur", - "filament::resources.resources.commands.label": "Command", - "filament::resources.resources.commands.plural": "Commands", - "Published": "Gepubliceerd", - "filament::resources.resources.command-logs.plural": "Commando Logs", - "filament::resources.columns.online_time": "Online Tijd", - "Glass Effect": "Glazen Effect", - "Navigation height (px)": "Navigatie hoogte (px)", - "radio.setup.modal_submit": "Opslaan", - "filament::resources.inputs.prefix": "Prefix", - "filament::resources.inputs.level": "Niveau", - "filament::resources.resources.teams.label": "Team", - "filament::resources.stats.furniture_count.description": "Totaal meubel items", - "filament::resources.resources.help_questions.navigation_label": "Help Questions", - "filament::resources.columns.can_trade": "Kan Ruilen", - "Check back later for updates": "Kom later terug voor updates", - "nitro.sql_update_failed": "SQL Update Mislukt", - "filament::resources.resources.emulator-settings.navigation_label": "Emulator Instellingen", - "Badge Border Radius": "Badge Rand Radius", - "filament::resources.columns.room_id": "Kamer ID", - "Radio Settings": "Radio Instellingen", - "filament::resources.common.Never": "Nooit", - "filament::resources.common.Points": "Punten", - "filament::resources.tabs.Configurations": "Configuraties", - "Danger Button": "Gevaar Knop", - "filament::resources.inputs.achievement_score": "Prestatie Score", - "radio.setup.error_title": "Fout", - "filament::resources.common.Update": "Bijwerken", - "filament::resources.resources.emulator-settings.plural": "Emulator Instellingen", - "Avatars & Images": "Avatar's & Afbeeldingen", - "nitro.webroot": "Webroot", - "You cannot edit this user!": "Je kunt deze gebruiker niet bewerken!", - "Alert settings have been saved successfully.": "Waarschuwingsinstellingen zijn succesvol opgeslagen.", - "filament::resources.columns.min_rank": "Min Rang", - "filament::resources.resources.furniture.label": "Furniture", - "filament::resources.columns.type": "Type", - "Saved successfully": "Succesvol opgeslagen", - "filament::resources.stats.articles_chart.title": "Artikelen", - "Footer Links": "Voettekst Links", - "filament::resources.inputs.created_at": "Aangemaakt", - "Created At": "Aangemaakt", - "Icon": "Icoon", - "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 vervolgens op 'run flash' wanneer daarom wordt gevraagd. Zie je in het Hotel!", - "filament::resources.tabs.In-game Permissions": "In-game Permissions", - "filament::resources.inputs.users": "Gebruikers", - "Card Border Width": "Kaart Randdikte", - "filament::resources.resources.emulator-texts.navigation_label": "Emulator Teksten", - "First": "Eerste", - "filament::resources.inputs.ip_register": "Registratie IP", - "of": "van", - "filament::resources.common.Duckets": "Duckets", - "Small icon size (px)": "Kleine icoongrootte (px)", - "filament::resources.helpers.achievement_progress_needed": "Voortgang nodig", - "filament::resources.columns.reportable": "Rapporteerbaar", - "filament::resources.resources.help-categories.label": "Help Categorie", - "Herladen": "Herladen", - "Input Placeholder": "Invoer Placeholder", - "filament::resources.stats.orders_chart.pending": "In afwachting", - "nitro.symlink": "Symlink", - "filament::login.fields.username.label": "Gebruikersnaam", - "Nitro Update Failed": "Nitro Update Mislukt", - "filament::resources.navigations.Logs": "Logs", - "filament::resources.tabs.Security": "Beveiliging", - "nitro.deployed": "Gedeployed", - "nitro.updates_available": "Updates Beschikbaar!", - "filament::resources.columns.prefix": "Prefix", - "nitro.saved": "Opgeslagen", - "Header & Footer": "Koptekst & Voettekst", - "filament::resources.columns.avatar": "Avatar", - "radio.title": "Radio", - "nitro.config_invalid_url": "Ongeldige URL", - "Recovery Code": "Herstelcode", - "filament::resources.notifications.badge_texts_required": "Badge teksten zijn verplicht", - "filament::resources.resources.command-logs.label": "Commando Log", - "filament::resources.resources.shop.plural": "Shop Items", - "filament::resources.common.Open link": "Open link", - "filament::resources.resources.word-filters.plural": "Woordfilters", - "filament::resources.stats.rooms_count.title": "Kamers", - "nitro.settings": "Instellingen", - "filament::resources.resources.users.label": "Gebruiker", - "filament::resources.resources.word_filter.plural": "Word Filters", - "filament::resources.inputs.prefix_color": "Prefix Kleur", - "filament::resources.columns.slug": "Slug", - "filament::resources.options.no": "Nee", - "Card Padding": "Kaart Opvulling", - "filament::resources.columns.last_login": "Último login", - "Select a starting avatar for your character": "Kies een beginavatar voor je personage", - "filament::resources.inputs.background_color": "Achtergrondkleur", - "Verbinding verbroken": "Verbinding verbroken", - "Outline Button": "Omlijning Knop", - "nitro.friday": "Vrijdag", - "Footer Text": "Voettekst", - "Contests": "Wedstrijden", - "Please setup the paypal credentials to allow for top ups": "Stel de PayPal gegevens in om opwaarderingen mogelijk te maken", - "filament::resources.resources.housekeeping-permissions.label": "Admin Permissie", - "filament::resources.resources.badge-resource.label": "Badge", - "filament::resources.columns.category": "Categorie", - "filament::resources.resources.cms_settings.plural": "CMS Settings", - "Solid": "Solide", - "Are you sure?": "Weet je het zeker?", - "filament::resources.inputs.auto_pixels_amount": "Auto Pixels Aantal", - "nitro.system": "Systeem", - "Post message": "Bericht plaatsen", - "filament::resources.inputs.reportable": "Rapporteerbaar", - "Categories": "CategorieΓ«n", - "Inactive": "Inactief", - "filament::resources.inputs.can_trade": "Kan Ruilen", - "No teams found": "Geen teams gevonden", - "nitro.last_generated": "Laatst gegenereerd", - "filament::resources.resources.settings.plural": "Instellingen", - "Navbar Shadow": "Navigatiebalk Schaduw", - "filament::resources.tabs.Change Username": "Gebruikersnaam Wijzigen", - "Avatar Border Radius": "Avatar Randradius", - "filament::resources.inputs.max_friends": "Max Vrienden", - "This action cannot be undone": "Deze actie kan niet ongedaan worden gemaakt", - "filament::resources.sections.permissions.title": "Permissies", - "filament::resources.columns.order": "Volgorde", - "nitro.config_invalid_url_body": "Voer een geldige URL in", - "filament::resources.resources.bots.label": "Bot", - "filament::resources.resources.bans.plural": "Verbanningen", - "filament::resources.inputs.title": "Titel", - "filament::resources.columns.expires_at": "Verloopt", - "nitro.site_url": "Site URL", - "Something went wrong": "Er is iets misgegaan", - "filament::resources.notifications.create_badge": "Badge Aanmaken", - "filament::resources.tabs.General Information": "Algemene Informatie", - "Please enter a GitHub URL and service name first.": "Voer eerst een GitHub URL en servicenaam in.", - "Spinner Color": "Spinner Kleur", - "Button text size (px)": "Knop tekstgrootte (px)", - "filament::resources.stats.articles_chart.label": "Artikelen", - "nitro.refresh": "Vernieuwen", - "Card padding (px)": "Kaart opvulling (px)", - "Background color": "Achtergrond kleur", - "filament::resources.inputs.comment": "Opmerking", - "nitro.test_failed": "Test Mislukt", - "Filter": "Filter", - "No tags found.": "Geen tags gevonden.", - "nitro.auto": "Automatisch", - "filament::resources.common.Male": "Man", - "filament::resources.inputs.log_commands": "Log Commando's", - "Klik op een foto om deze te vergroten": "Klik op een foto om deze te vergroten", - "filament::resources.resources.help_question_categories.plural": "Help Categories", - "nitro.view": "Bekijken", - "filament::resources.columns.is_hidden": "Verborgen", - "nitro.monday": "Maandag", - "nitro.save": "Opslaan", - "filament::resources.inputs.permission": "Permissie", - "filament::resources.inputs.type": "Type", - "filament::resources.resources.teams.navigation_label": "Teams", - "filament::resources.resources.housekeeping_permissions.navigation_label": "Permissions", - "Large icon size (px)": "Grote icoongrootte (px)", - "About our team": "Over ons team", - "filament::resources.inputs.new_password": "Nieuw Wachtwoord", - "filament::resources.columns.mute_time": "Mute Tijd", - "filament::resources.inputs.block_roominvites": "Blokkeer Kameruitnodigingen", - "filament::resources.columns.new_tab": "Nieuw Tabblad", - "nitro.version": "Versie", - "Title": "Titel", - "nitro.critical": "Kritiek", - "Style for secondary/green buttons": "Stijl voor secundaire/groene knoppen", - "filament::resources.notifications.badge_found": "Badge gevonden", - "filament::resources.resources.help_questions.plural": "Help Questions", - "filament::resources.columns.background_color": "Kleur", - "nitro.warning_msg": "Waarschuwing", - "filament::resources.resources.emulator-texts.label": "Emulator Tekst", - "filament::resources.columns.command": "Commando", - "nitro.config_saved": "Config Opgeslagen", - "filament::resources.inputs.auto_points_amount": "Auto Punten Aantal", - "Navbar Style": "Navigatiebalk Stijl", - "Navbar Height": "Navigatiebalk Hoogte", - "filament::resources.columns.last_online": "Last online", - "Please check back later.": "Kom later terug.", - "nitro.available": "Beschikbaar", - "filament::resources.resources.command-logs.navigation_label": "Commando Logs", - "filament::resources.resources.ranks.navigation_label": "Ranks", - "filament::resources.columns.allow_comments": "Reacties", - "filament::resources.navigations.Shop": "Winkel", - "filament::resources.common.Machine": "Machine", - "filament::resources.resources.permissions.navigation_label": "Permissies", - "Open": "Open", - "Link Hover": "Link Hover", - "filament::resources.options.rights": "Rechten", - "Default Border": "Standaard Rand", - "There are no teams to display right now.": "Er zijn momenteel geen teams om weer te geven.", - "results": "resultaten", - "filament::resources.columns.title": "Titel", - "filament::resources.common.Create": "Aanmaken", - "Loading...": "Laden...", - "nitro.config_generate_failed_body": "Er is een fout opgetreden", - "Not set": "Niet ingesteld", - "filament::resources.resources.word_filter.navigation_label": "Word Filters", - "filament::resources.resources.ranks.plural": "Ranks", - "filament::resources.inputs.badge_image": "Badge Afbeelding", - "filament::resources.columns.comment": "Opmerking", - "nitro.title": "Nitro Status", - "filament::resources.common.Female": "Vrouw", - "nitro.update": "Bijwerken", - "nitro.emulator_online": "Online", - "nitro.general": "Algemeen", - "filament::resources.stats.orders_chart.title": "Bestellingen", - "filament::resources.tabs.Change Password": "Wachtwoord Wijzigen", - "filament::resources.stats.users_count.title": "Gebruikers", - "filament::resources.resources.camera_webs.navigation_label": "Camera Webs", - "filament::resources.resources.shop-orders.navigation_label": "Winkel Bestellingen", - "nitro.updates_disabled": "Automatische updates uitgeschakeld", - "Choose your avatar": "Kies je avatar", - "Powered by": "Aangedreven door", - "Dashboard": "Dashboard", - "overline": "overlijnd", - "Our terms": "Onze voorwaarden", - "filament::resources.resources.help_questions.label": "Help Question", - "filament::resources.inputs.referral_code": "Referral code", - "filament::resources.stats.orders_chart.cancelled": "Geannuleerd", - "Cards & Containers": "Kaarten & Containers", - "nitro.latest": "Latest", - "filament::resources.notifications.badge_code_required": "Badge code is verplicht", - "filament::resources.navigations.Dashboard": "Dashboard", - "Style for danger/red buttons": "Stijl voor gevaar/rode knoppen", - "nitro.warning": "Waarschuwing", - "filament::resources.columns.level": "Niveau", - "filament::resources.inputs.block_following": "Blokkeer Volgen", - "Terug": "Terug", - "nitro.tuesday": "Dinsdag", - "filament::resources.resources.chatlog-private.label": "PrivΓ© Chat", - "Heading H3 size (px)": "Kop H3 grootte (px)", - "filament::resources.resources.ranks.label": "Rank", - "Submit": "Verzenden", - "Badge Background": "Badge Achtergrond", - "filament::resources.stats.photos_count.description": "Totaal foto's", - "filament::resources.resources.word_filter.label": "Word Filter", - "Offline": "Offline", - "radio.setup.modal_heading": "Radio Instellen", - "RCON is not enabled!": "RCON is niet ingeschakeld!", - "filament::resources.columns.created_at": "Aangemaakt", - "Transparent": "Transparant", - "filament::resources.resources.dashboard.plural": "Dashboard", - "nitro.emulator_offline": "Offline", - "filament::resources.tabs.Currencies": "Valuta", - "filament::resources.stats.articles_chart.description": "Artikelen per maand", - "filament::resources.inputs.min_rank": "Minimale Rang", - "filament::resources.columns.user_id": "Gebruiker ID", - "nitro.reset": "Resetten", - "filament::resources.inputs.email": "E-mail", - "filament::resources.inputs.reward_amount": "Beloning Aantal", - "filament::resources.resources.housekeeping_permissions.label": "Permission", - "Active": "Actief", - "filament::resources.tabs.Account Data": "Account Gegevens", - "filament::resources.resources.achievements.navigation_label": "Prestaties", - "filament::resources.resources.help-categories.plural": "Help CategorieΓ«n", - "nitro.off": "Uit", - "Header Text": "Header Tekst", - "filament::resources.resources.furniture.plural": "Furniture", - "filament::resources.columns.name": "Naam", - "filament::resources.notifications.badge_updated": "Badge bijgewerkt", - "Product": "Product", - "nitro.wednesday": "Woensdag", - "filament::resources.navigations.VPN": "VPN", - "filament::resources.columns.badge_code": "Badge code", - "Automatic update schedule has been saved.": "Automatisch updateschema is opgeslagen.", - "Send notifications": "Verstuur notificaties", - "filament::resources.inputs.description": "Beschrijving", - "Application submitted": "Sollicitatie ingediend", - "nitro.missing": "Ontbrekend", - "filament::resources.filters.success": "Succes", - "filament::resources.stats.users_count.description": "Totaal geregistreerde gebruikers", - "filament::resources.notifications.badge_update_failed": "Badge bijwerken mislukt", - "filament::resources.inputs.message": "Bericht", - "filament::resources.helpers.change_username_description": "Wijzig de gebruikersnaam", - "You have been approved": "Je bent goedgekeurd", - "filament::resources.inputs.block_friendrequests": "Blokkeer Vriendschapsverzoeken", - "filament::resources.inputs.image": "Afbeelding", - "filament::resources.resources.help_question_categories.label": "Help Category", - "filament::resources.resources.chatlog-rooms.navigation_label": "Kamer Chats", - "Per page": "Per pagina", - "filament::resources.resources.users.navigation_label": "Gebruikers", - "nitro.discord": "Discord", - "filament::resources.resources.chatlog-rooms.plural": "Kamer Chats", - "Badge": "Badge", - "Enable secondary button style": "Secundaire knop stijl inschakelen", - "filament::resources.inputs.team_id": "Team ID", - "Badge Description": "Badge Beschrijving", - "filament::resources.resources.shop.navigation_label": "Shop", - "nitro.emulator_status": "Emulator Status", - "filament::resources.resources.articles.navigation_label": "Artikelen", - "Required": "Verplicht", - "Showing": "Tonen", - "nitro.force_check": "Forceer Controle", - "filament::resources.resources.navigations.plural": "Navigatie", - "filament::resources.tabs.Change Email": "Email Wijzigen", - "filament::resources.inputs.is_hidden": "Verborgen", - "filament::resources.inputs.expires_at": "Verloopt", - "Medium icon size (px)": "Gemiddelde icoongrootte (px)", - "filament::resources.columns.message": "Bericht", - "Photo Gallery": "Fotogalerij", - "nitro.config_generate_failed": "Config Generatie Mislukt", - "filament::resources.resources.cms_settings.label": "CMS Setting", - "Header Links": "Koptekst Links", - "We currently have no staff in this team": "We hebben momenteel geen personeel in dit team", - "Element Sizes": "Element Groottes", - "Links": "Links", - "Badge Text": "Badge Tekst", - "filament::resources.inputs.hideable": "Verbergbaar", - "filament::resources.inputs.last_online": "Laatst Online", - "filament::resources.stats.badge_count.title": "Badges", - "filament::resources.columns.key": "Sleutel", - "radio.setup.tooltip": "Radio instellen", - "filament::resources.resources.settings.label": "Instelling", - "nitro.yes": "Ja", - "Card Background": "Kaart Achtergrond", - "Giveaways": "Winacties", - "filament::resources.columns.by": "Door", - "filament::resources.inputs.replacement": "Vervanging", - "filament::resources.common.IP": "IP", - "filament::resources.resources.word-filters.navigation_label": "Woordfilters", - "Header Background": "Header Achtergrond", - "filament::resources.columns.achievement_score": "Prestatie Score", - "filament::resources.columns.hideable": "Verbergbaar", - "filament::resources.resources.rooms.plural": "Rooms", - "Points System": "Puntensysteem", - "Deleted successfully": "Succesvol verwijderd", - "Enable danger button style": "Gevaar knop stijl inschakelen", - "filament::resources.common.Account": "Account", - "filament::resources.inputs.room_effect": "Kamer Effect", - "Card Border Radius": "Kaart Rand Radius", - "Parent Navigation": "Bovenliggende Navigatie", - "Input Border": "Invoer Rand", - "filament::resources.inputs.label": "Label", - "Avatar Border Color": "Avatar Rand Kleur", - "Verify": "VerifiΓ«ren", - "filament::resources.columns.executed_at": "Uitgevoerd", - "filament::login.fields.password.label": "Wachtwoord", - "Shadows": "Schaduwen", - "filament::resources.tabs.Extra Settings": "Extra Instellingen", - "nitro.no_data": "Geen gegevens", - "filament::resources.resources.permissions.plural": "Permissies", - "filament::resources.sections.permissions.description": "Configureer de permissies", - "SQL Update Failed": "SQL Update Mislukt", - "filament::resources.resources.shop-orders.plural": "Winkel Bestellingen", - "filament::resources.resources.article.label": "Artikel", - "Name": "Naam", - "filament::resources.columns.respects_received": "Respect", - "Badge description": "Badge beschrijving", - "Hover background color": "Hover achtergrond kleur", - "filament::resources.inputs.allow_comments": "Reacties Toestaan", - "radio.loading": "Laden...", - "filament::resources.resources.bans.label": "Verbanning", - "nitro.status": "Status", - "radio.navigation_label": "Radio", - "Update date reset. The next check will detect a new update.": "Update datum gereset. De volgende controle detecteert een nieuwe update.", - "filament::resources.inputs.ignore_bots": "Negeer Bots", - "nitro.sunday": "Zondag", - "filament::resources.resources.writeable-boxes.plural": "Schrijfbare Boxen", - "filament::resources.notifications.badge_image_upload_failed": "Badge upload mislukt", - "Sticky Navbar": "Vaste Navigatiebalk", - "filament::resources.stats.orders_chart.completed": "Voltooid", - "filament::resources.stats.rooms_count.description": "Totaal kamers", - "filament::resources.resources.word-filters.label": "Woordfilter", - "Time": "Tijd", - "User": "Gebruiker", - "filament::resources.inputs.allow_change_username": "Sta Naamswijziging Toe", - "Word Filter": "Woordfilter", - "Footer Background": "Footer Achtergrond", - "filament::resources.resources.camera_webs.plural": "Camera Webs", - "to": "a", - "filament::resources.resources.articles.label": "Artikel", - "filament::resources.resources.help-categories.navigation_label": "Help CategorieΓ«n", - "nitro.loading": "Laden...", - "Input Background": "Invoer Achtergrond", - "nitro.emulator": "Emulator", - "Input Text": "Invoer Tekst", - "filament::resources.columns.success": "Succes", - "Beta code": "Beta code", - "filament::resources.columns.description": "Beschrijving", - "filament::resources.inputs.max_rooms": "Max Kamers", - "filament::resources.columns.username": "Gebruikersnaam", - "filament::resources.resources.commands.navigation_label": "Commands", - "filament::resources.navigations.Radio": "Radio", - "filament::resources.stats.orders_chart.description": "Bestellingen per maand", - "filament::resources.helpers.achievement_points": "Prestatie punten", - "filament::resources.navigations.Website": "Website", - "Homepage": "Homepage", - "filament::resources.columns.rank": "Rank", - "nitro.not_installed": "Niet geΓ―nstalleerd", - "Become a staff member": "Word personeelslid", - "Secondary Button": "Secundaire Knop", - "User ID": "Gebruiker ID", - "filament::resources.inputs.progress_needed": "Voortgang Nodig", - "filament::resources.resources.badge-resource.plural": "Badges", - "filament::resources.common.Diamonds": "Diamanten", - "filament::login.fields.remember.label": "Onthoud mij", - "filament::resources.resources.rooms.navigation_label": "Rooms", - "Created": "Aangemaakt", - "URL": "URL", - "nitro.checked": "Gecontroleerd", - "filament::resources.inputs.ignore_pets": "Negeer Huisdieren", - "filament::resources.columns.replacement": "Vervanging", - "filament::resources.resources.emulator-settings.label": "Emulator Instelling", - "nitro.edit": "Bewerken", - "filament::resources.stats.furniture_count.title": "Meubels", - "Optional": "Optioneel", - "Please enter your two-factor authentication code or one of your recovery codes.": "Voer je twee-factor authenticatiecode in of een van je herstelcodes.", - "Category": "Categorie", - "filament::resources.common.Super": "Super", - "filament::resources.inputs.rank": "Rang", - "Card Border": "Kaart Rand", - "Failed": "Mislukt", - "Adjust the size of various elements": "Pas de grootte van verschillende elementen aan", - "filament::resources.inputs.old_chat": "Oude Chat", - "nitro.monitoring": "Monitoring", - "filament::resources.columns.value": "Waarde", - "filament::resources.helpers.change_password_description": "Wijzig het wachtwoord van de gebruiker", - "filament::resources.inputs.auto_credits_amount": "Auto Credits Aantal", - "filament::resources.inputs.new_password_confirmation": "Bevestig Wachtwoord", - "filament::resources.resources.cms-settings.navigation_label": "CMS Instellingen", - "filament::resources.inputs.block_camera_follow": "Blokkeer Camera Volgen", - "filament-panels::pages/auth/login.messages.failed": "De ingevoerde gegevens zijn onjuist.", - "Please enter a GitHub URL first and save.": "Voer eerst een GitHub URL in en sla op.", - "Guestbook": "Gastenboek", - "nitro.saturday": "Zaterdag", - "filament::resources.resources.camera_webs.label": "Camera Web", - "Update Failed": "Update Mislukt", - "filament::resources.resources.tags.plural": "Tags", - "filament::resources.common.Sucessfull": "Succesvol", - "nitro.thursday": "Donderdag", - "Create": "Aanmaken", - "Loading & Spinners": "Laden & Spinners", - "filament::resources.inputs.badge_code": "Badge code", - "nitro.no": "Nee", - "Create a new account": "Maak een nieuw account aan", - "Last": "Laatste", - "nitro.generate": "Genereren", - "filament::resources.inputs.username": "Gebruikersnaam", - "Updated successfully": "Succesvol bijgewerkt", - "filament::resources.resources.navigations.navigation_label": "Navigatie", - "All rights reserved": "Alle rechten voorbehouden", - "before making a purchase": "voordat je een aankoop doet", - "radio.setup.success_body": "Je radio URL is succesvol ingesteld.", - "filament::resources.inputs.url": "URL", - "filament::resources.resources.rooms.label": "Room", - "Created successfully": "Succesvol aangemaakt", - "filament::resources.columns.motto": "Motto", - "nitro.auto_update_no": "Nee", - "filament::resources.resources.achievements.plural": "Prestaties", - "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.", - "filament::resources.columns.badge": "Badge", - "Enable outline button style": "Omlijning knop stijl inschakelen", - "filament::resources.resources.paypal-transactions.plural": "PayPal Transacties", - "filament::resources.resources.paypal-transactions.navigation_label": "PayPal Transacties", - "filament::resources.resources.paypal-transactions.label": "PayPal Transactie", - "filament::resources.resources.help-question-categories.plural": "Vraag CategorieΓ«n", - "filament::resources.resources.help-question-categories.navigation_label": "Vraag CategorieΓ«n", - "filament::resources.resources.help-question-categories.label": "Vraag Categorie", - "Socket URL": "Socket URL", - "Asset URL": "Asset URL", - "Gamedata URL": "Gamedata URL", - "Images URL": "Afbeeldingen URL", - "Camera URL": "Camera URL", - "Thumbnails URL": "Thumbnails URL", - "Group Homepage": "Groep Homepage", - "Habbopages URL": "Habbopages URL", - "URL Prefix": "URL Voorvoegsel" -} \ No newline at end of file + "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", + "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": "Emulator Updates", + "commandocentrum.emulator_updates_desc": "Configureer en update de emulator", + "commandocentrum.check_updates": "Check Updates", + "commandocentrum.build": "Bouwen", + "commandocentrum.sql_updates": "SQL Updates", + "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.branch": "Branch", + "commandocentrum.db_host": "DB Host", + "commandocentrum.db_name": "DB Naam", + "commandocentrum.service_name": "Service Naam", + "commandocentrum.emulator_backups": "Emulator Backups", + "commandocentrum.emulator_backups_desc": "Bekijk en herstel emulator backups", + "commandocentrum.no_backups": "Nog geen backups beschikbaar", + "commandocentrum.backups_auto": "Backups worden automatisch aangemaakt bij elke emulator update", + "commandocentrum.restore": "Herstellen", + "commandocentrum.nitro_client": "Nitro Client", + "commandocentrum.nitro_client_desc": "Configureer en update Nitro", + "commandocentrum.auto_detect": "Auto Detect", + "commandocentrum.generate_configs": "Genereer Configs", + "commandocentrum.client_path": "Client Pad", + "commandocentrum.renderer_path": "Renderer Pad", + "commandocentrum.build_path": "Build Pad", + "commandocentrum.webroot": "Webroot", + "commandocentrum.site_url": "Site URL", + "commandocentrum.auto_updates": "Automatische Updates", + "commandocentrum.auto_updates_desc": "Configureer automatische updates", + "commandocentrum.enable_auto_updates": "Automatische Updates Inschakelen", + "commandocentrum.schedule": "Schema (HH:MM)", + "commandocentrum.days": "Dagen (0-6)", + "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.update_history": "Update Geschiedenis", + "commandocentrum.update_history_desc": "Laatste systeem updates", + "commandocentrum.no_updates_found": "Geen updates gevonden", + "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.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.github_client_id": "GitHub Client ID", + "commandocentrum.github_client_id_helper": "From GitHub Developer Settings", + "commandocentrum.github_client_secret": "GitHub Client Secret", + "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.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.building_emulator": "Emulator wordt gebouwd vanaf source...", + "commandocentrum.emulator_built": "Emulator gebouwd!", + "commandocentrum.build_failed": "Build mislukt", + "commandocentrum.configure_github_url": "Configureer eerst de Emulator GitHub URL", + "commandocentrum.maven_not_installed": "Maven (mvn) is niet geΓ―nstalleerd - kan niet bouwen", + "commandocentrum.building_maven": "Building emulator with Maven...", + "commandocentrum.build_success_jar": "Build succesvol! JAR verplaatst naar :jar. Herstart de emulator.", + "commandocentrum.build_success": "Build succesvol! Herstart de emulator.", + "commandocentrum.build_failed_logs": "Build mislukt - controleer logs", + "commandocentrum.no_pom_xml": "Geen pom.xml gevonden - kan niet bouwen vanaf source", + "commandocentrum.sql_applied": "SQL updates toegepast!", + "commandocentrum.update_complete": "Update controle voltooid", + "commandocentrum.emulator_settings_saved": "Emulator instellingen opgeslagen!", + "commandocentrum.nitro_updated": "Nitro bijgewerkt! Build opnieuw met \"Build\" knop.", + "commandocentrum.nitro_up_to_date": "Nitro is al up-to-date!", + "commandocentrum.building_nitro": "Building Nitro...", + "commandocentrum.nitro_build_success": "Nitro build succesvol!", + "commandocentrum.nitro_build_warning": "Build gestart - controleer handmatig", + "commandocentrum.valid_url_required": "Voer een geldige URL in (bijv. https://epicnabbo.nl)", + "commandocentrum.configs_generated": "Configs gegenereerd & bestaande instellingen behouden!", + "commandocentrum.config_generated_warning": "Config gegenereerd (controleer handmatig)", + "commandocentrum.paths_detected": "Paths gedetecteerd en opgeslagen!", + "commandocentrum.nitro_settings_saved": "Nitro instellingen opgeslagen!", + "commandocentrum.auto_update_saved": "Auto update instellingen opgeslagen!", + "commandocentrum.alerts_saved": "Meldingen opgeslagen!", + "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.webroot_status": "Webroot", + "commandocentrum.rank": "Rank" +} diff --git a/resources/views/filament/components/commandocentrum/alert-form.blade.php b/resources/views/filament/components/commandocentrum/alert-form.blade.php index 7942811..bb4253d 100755 --- a/resources/views/filament/components/commandocentrum/alert-form.blade.php +++ b/resources/views/filament/components/commandocentrum/alert-form.blade.php @@ -2,7 +2,7 @@ - πŸ“’ Verstuur Alert + πŸ“’ {{ __('commandocentrum.send_alert') }}
diff --git a/resources/views/filament/components/commandocentrum/backups-list.blade.php b/resources/views/filament/components/commandocentrum/backups-list.blade.php index 82f7bc7..2ecff71 100755 --- a/resources/views/filament/components/commandocentrum/backups-list.blade.php +++ b/resources/views/filament/components/commandocentrum/backups-list.blade.php @@ -5,8 +5,8 @@ -
Nog geen backups beschikbaar
-
Backups worden automatisch aangemaakt bij elke emulator update
+
{{ __('commandocentrum.no_backups') }}
+
{{ __('commandocentrum.backups_auto') }}
@else
@@ -30,7 +30,7 @@ onmouseover="this.style.transform='translateY(-1px)'" onmouseout="this.style.transform='translateY(0)'" > - πŸ”„ Herstellen + πŸ”„ {{ __('commandocentrum.restore') }}
@endforeach diff --git a/resources/views/filament/components/commandocentrum/clothing-status.blade.php b/resources/views/filament/components/commandocentrum/clothing-status.blade.php index dfa2b1c..cbaaab7 100755 --- a/resources/views/filament/components/commandocentrum/clothing-status.blade.php +++ b/resources/views/filament/components/commandocentrum/clothing-status.blade.php @@ -2,7 +2,7 @@
-
Kleding Items
+
{{ __('commandocentrum.clothing_items') }}
{{ number_format($clothingCount) }}
diff --git a/resources/views/filament/components/commandocentrum/diagnostics.blade.php b/resources/views/filament/components/commandocentrum/diagnostics.blade.php index 2d0912d..7d62534 100755 --- a/resources/views/filament/components/commandocentrum/diagnostics.blade.php +++ b/resources/views/filament/components/commandocentrum/diagnostics.blade.php @@ -16,22 +16,22 @@ default => '#22c55e', }; $overallLabel = match ($overallStatus) { - 'error' => 'Kritieke Problemen', - 'warning' => 'Waarschuwingen', - default => 'Gezond', + 'error' => __('commandocentrum.critical_issues'), + 'warning' => __('commandocentrum.warnings'), + default => __('commandocentrum.healthy'), }; @endphp
- - - + + +
- Systeem Status: {{ $overallLabel }} + {{ __('commandocentrum.system_status') }}: {{ $overallLabel }}
@if ($errorCount > 0 || $warningCount > 0) diff --git a/resources/views/filament/components/commandocentrum/emulator-info.blade.php b/resources/views/filament/components/commandocentrum/emulator-info.blade.php index f592703..a37a909 100755 --- a/resources/views/filament/components/commandocentrum/emulator-info.blade.php +++ b/resources/views/filament/components/commandocentrum/emulator-info.blade.php @@ -7,15 +7,15 @@
-
Versie
+
{{ __('commandocentrum.version') }}
{{ $version }}
-
Service
+
{{ __('commandocentrum.service') }}
{{ $serviceName }}
-
Status
+
{{ __('commandocentrum.status') }}
● {{ $status }}
diff --git a/resources/views/filament/components/commandocentrum/emulator-settings.blade.php b/resources/views/filament/components/commandocentrum/emulator-settings.blade.php index 70f0bc7..a8282a8 100755 --- a/resources/views/filament/components/commandocentrum/emulator-settings.blade.php +++ b/resources/views/filament/components/commandocentrum/emulator-settings.blade.php @@ -5,45 +5,45 @@
- +
- +
- +
- +
- +
- +
- +
- +
- +
- + {!! $emulatorStatusHtml !!}
diff --git a/resources/views/filament/components/commandocentrum/emulator-status.blade.php b/resources/views/filament/components/commandocentrum/emulator-status.blade.php index 63a9817..8e5e257 100755 --- a/resources/views/filament/components/commandocentrum/emulator-status.blade.php +++ b/resources/views/filament/components/commandocentrum/emulator-status.blade.php @@ -13,10 +13,10 @@ $sourceCommitShort = substr($sourceCommit, 0, 7); $hasUpdate = $sourceCommit !== 'N/A' && $remoteVersion !== 'N/A' && $sourceCommitShort !== $remoteVersion; $updateColor = $hasUpdate ? '#f59e0b' : '#22c55e'; - $updateText = $hasUpdate ? 'πŸ”„ Update beschikbaar' : 'βœ“ Up-to-date'; + $updateText = $hasUpdate ? 'πŸ”„ ' . __('commandocentrum.update_available') : 'βœ“ ' . __('commandocentrum.up_to_date'); $btnColor = $hasUpdate ? '#f59e0b' : '#3b82f6'; $btnGradient = $hasUpdate ? 'linear-gradient(135deg,#f59e0b,#d97706)' : 'linear-gradient(135deg,#3b82f6,#2563eb)'; - $btnText = $hasUpdate ? '⚑ Updaten' : 'πŸ”„ Herbouwen'; + $btnText = $hasUpdate ? '⚑ ' . __('commandocentrum.update') : 'πŸ”„ ' . __('commandocentrum.rebuild'); $jarFileName = ''; if ($jarExists) { @@ -33,19 +33,19 @@
@if ($emulatorOnline) - βœ“ Online + βœ“ {{ __('commandocentrum.online') }} @else - βœ— Offline + βœ— {{ __('commandocentrum.offline') }} @endif @if ($jarExists) - βœ“ JAR OK + βœ“ JAR {{ __('commandocentrum.ok') }} @else - βœ— JAR ontbreekt + βœ— JAR {{ __('commandocentrum.missing') }} @endif - Service: {{ e($serviceName) }} + {{ __('commandocentrum.service') }}: {{ e($serviceName) }}
-
GitHub Status:
+
GitHub {{ __('commandocentrum.status') }}:
@@ -61,24 +61,24 @@
-
Latest:βœ“ {{ e($remoteVersion) }}
-
Source:βœ“ {{ $sourceCommitShort }}
+
{{ __('commandocentrum.latest') }}:βœ“ {{ e($remoteVersion) }}
+
{{ __('commandocentrum.source') }}:βœ“ {{ $sourceCommitShort }}
@if ($jarFileName !== '') -
JAR:βœ“ {{ e($jarFileName) }}
+
{{ __('commandocentrum.jars') }}:βœ“ {{ e($jarFileName) }}
@endif @if ($canBuild) -
Bouwen:βœ“ Maven (pom.xml)
+
{{ __('commandocentrum.method') }}:βœ“ {{ __('commandocentrum.maven_pom') }}
@else -
Bouwen:⚠️ Geen pom.xml
+
{{ __('commandocentrum.method') }}:⚠️ {{ __('commandocentrum.no_pom') }}
@endif
-
METHODE:
+
{{ __('commandocentrum.method') }}:
@if ($jarExists) -
πŸ“¦ JAR Download & Herstart
+
πŸ“¦ {{ __('commandocentrum.jar_download_restart') }}
@elseif ($canBuild) -
πŸ”¨ Maven Build & Herstart
+
πŸ”¨ {{ __('commandocentrum.maven_build_restart') }}
@else -
Handmatig: Download JAR van GitHub
+
{{ __('commandocentrum.manual_download') }}
@endif
diff --git a/resources/views/filament/components/commandocentrum/hotel-status.blade.php b/resources/views/filament/components/commandocentrum/hotel-status.blade.php index a056c77..08cce1d 100755 --- a/resources/views/filament/components/commandocentrum/hotel-status.blade.php +++ b/resources/views/filament/components/commandocentrum/hotel-status.blade.php @@ -21,22 +21,22 @@
- Emulator + {{ __('commandocentrum.emulator') }}
- Status + {{ __('commandocentrum.status') }} {{ $serviceStatus }}
- Online + {{ __('commandocentrum.online') }} {{ $emulatorStatus }}
- Gebruikers + {{ __('commandocentrum.users') }} {{ $onlineUsers }}
- Database + {{ __('commandocentrum.database') }} {{ $dbStatus }}
@@ -48,15 +48,15 @@ Nitro
- Client + {{ __('commandocentrum.client') }} {{ $clientText }}
- Renderer + {{ __('commandocentrum.renderer') }} {{ $rendererText }}
- Webroot + {{ __('commandocentrum.webroot_status') }} {{ $webrootText }}
diff --git a/resources/views/filament/components/commandocentrum/nitro-settings.blade.php b/resources/views/filament/components/commandocentrum/nitro-settings.blade.php index beb081c..2f14f6f 100755 --- a/resources/views/filament/components/commandocentrum/nitro-settings.blade.php +++ b/resources/views/filament/components/commandocentrum/nitro-settings.blade.php @@ -5,37 +5,37 @@
- +
- +
- +
- +
- +
- +
- +
- + {!! $nitroStatusHtml !!}
diff --git a/resources/views/filament/components/commandocentrum/nitro-status.blade.php b/resources/views/filament/components/commandocentrum/nitro-status.blade.php index 1d27b90..e7c7ffb 100755 --- a/resources/views/filament/components/commandocentrum/nitro-status.blade.php +++ b/resources/views/filament/components/commandocentrum/nitro-status.blade.php @@ -15,7 +15,7 @@ $hasRendererUpdate = $rendererCommitShort !== 'N/A' && $rendererRemote !== 'N/A' && $rendererCommitShort !== $rendererRemote; $hasUpdate = $hasClientUpdate || $hasRendererUpdate; $updateColor = $hasUpdate ? '#f59e0b' : '#22c55e'; - $updateText = $hasUpdate ? 'πŸ”„ Update beschikbaar' : 'βœ“ Up-to-date'; + $updateText = $hasUpdate ? 'πŸ”„ ' . __('commandocentrum.update_available') : 'βœ“ ' . __('commandocentrum.up_to_date'); $clientColor = $hasClientUpdate ? '#f59e0b' : '#22c55e'; $clientIcon = $hasClientUpdate ? 'πŸ”„' : 'βœ“'; $rendererColor = $hasRendererUpdate ? '#f59e0b' : '#22c55e'; @@ -24,22 +24,22 @@
@if ($clientExists) - βœ“ Client OK + βœ“ {{ __('commandocentrum.client') }} {{ __('commandocentrum.ok') }} @else - βœ— Client ontbreekt + βœ— {{ __('commandocentrum.client') }} {{ __('commandocentrum.missing') }} @endif @if ($rendererExists) - βœ“ Renderer OK + βœ“ {{ __('commandocentrum.renderer') }} {{ __('commandocentrum.ok') }} @else - βœ— Renderer ontbreekt + βœ— {{ __('commandocentrum.renderer') }} {{ __('commandocentrum.missing') }} @endif @if ($webrootExists) - βœ“ Webroot OK + βœ“ {{ __('commandocentrum.webroot_status') }} {{ __('commandocentrum.ok') }} @else - βœ— Webroot ontbreekt + βœ— {{ __('commandocentrum.webroot_status') }} {{ __('commandocentrum.missing') }} @endif
-
GitHub Status:
+
GitHub {{ __('commandocentrum.status') }}:
@@ -52,14 +52,14 @@ onmouseover="this.style.transform='translateY(-1px)';this.style.boxShadow='0 4px 12px rgba(236,72,153,0.5)'" onmouseout="this.style.transform='translateY(0)';this.style.boxShadow='0 2px 8px rgba(236,72,153,0.4)'" > - ⚑ Updaten + ⚑ {{ __('commandocentrum.update') }} @endif
-
Client Remote:βœ“ {{ e($clientRemote) }}
-
Client Local:{{ $clientIcon }} {{ $clientCommitShort }}
-
Renderer Remote:βœ“ {{ e($rendererRemote) }}
-
Renderer Local:{{ $rendererIcon }} {{ $rendererCommitShort }}
+
{{ __('commandocentrum.client') }} {{ __('commandocentrum.remote') }}:βœ“ {{ e($clientRemote) }}
+
{{ __('commandocentrum.client') }} {{ __('commandocentrum.local') }}:{{ $clientIcon }} {{ $clientCommitShort }}
+
{{ __('commandocentrum.renderer') }} {{ __('commandocentrum.remote') }}:βœ“ {{ e($rendererRemote) }}
+
{{ __('commandocentrum.renderer') }} {{ __('commandocentrum.local') }}:{{ $rendererIcon }} {{ $rendererCommitShort }}
diff --git a/resources/views/filament/components/commandocentrum/server-info.blade.php b/resources/views/filament/components/commandocentrum/server-info.blade.php index fe729aa..5642e76 100755 --- a/resources/views/filament/components/commandocentrum/server-info.blade.php +++ b/resources/views/filament/components/commandocentrum/server-info.blade.php @@ -16,7 +16,7 @@
- PHP & Laravel + {{ __('commandocentrum.php_laravel') }}
PHP @@ -32,14 +32,14 @@
- Memory & Disk + {{ __('commandocentrum.memory_disk') }}
- Memory + {{ __('commandocentrum.memory') }} {{ $memoryUsage }}MB / {{ $memoryLimit }}
- Disk + {{ __('commandocentrum.disk') }} {{ $diskUsage }}
@@ -48,7 +48,7 @@
- Uptime + {{ __('commandocentrum.uptime') }}
{{ $uptime }}
@@ -57,7 +57,7 @@
- Load + {{ __('commandocentrum.load') }}
diff --git a/resources/views/filament/components/commandocentrum/staff-activity.blade.php b/resources/views/filament/components/commandocentrum/staff-activity.blade.php index 7fe4eb2..5fb33b4 100755 --- a/resources/views/filament/components/commandocentrum/staff-activity.blade.php +++ b/resources/views/filament/components/commandocentrum/staff-activity.blade.php @@ -9,14 +9,14 @@ -

No staff activities recorded yet.

-

Staff actions will appear here automatically.

+

{{ __('commandocentrum.no_staff_activities') }}

+

{{ __('commandocentrum.staff_actions_auto') }}

@else
- Recent Staff Activities - Last 20 actions + {{ __('commandocentrum.recent_staff_activities') }} + {{ __('commandocentrum.last_20_actions') }}
@foreach ($activities as $activity) @@ -28,18 +28,18 @@ $now = \Carbon\Carbon::now(); $diff = $now->diffInMinutes($carbon); if ($diff < 1) { - $timeAgo = 'Just now'; + $timeAgo = __('commandocentrum.just_now'); } elseif ($diff < 60) { - $timeAgo = $diff . 'm ago'; + $timeAgo = $diff . __('commandocentrum.minutes_ago'); } elseif ($diff < 1440) { - $timeAgo = floor($diff / 60) . 'h ago'; + $timeAgo = floor($diff / 60) . __('commandocentrum.hours_ago'); } else { - $timeAgo = floor($diff / 1440) . 'd ago'; + $timeAgo = floor($diff / 1440) . __('commandocentrum.days_ago'); } } catch (\Exception) { - $timeAgo = 'Unknown'; + $timeAgo = __('commandocentrum.unknown'); } - $username = $activity->user->username ?? 'Unknown'; + $username = $activity->user->username ?? __('commandocentrum.unknown'); @endphp
diff --git a/resources/views/filament/components/commandocentrum/update-history.blade.php b/resources/views/filament/components/commandocentrum/update-history.blade.php index 798c549..3db9456 100755 --- a/resources/views/filament/components/commandocentrum/update-history.blade.php +++ b/resources/views/filament/components/commandocentrum/update-history.blade.php @@ -1,7 +1,7 @@ @props(['history']) @if (empty($history)) -
Geen updates gevonden
+
{{ __('commandocentrum.no_updates_found') }}
@else
@foreach ($history as $update)