Files
nexusphp/resources/lang/nl/torrent.php

96 lines
4.2 KiB
PHP
Raw Normal View History

2025-04-21 02:53:56 +07:00
<?php
return [
'pos_state_normal' => 'normaal',
'pos_state_sticky' => 'Eerst plakken',
'pos_state_r_sticky' => 'Sticky seconde',
'index' => [
'page_title' => 'Torrent lijst',
],
'show' => [
'page_title' => 'Torrent details',
'basic_category' => 'categorie',
'basic_audio_codec' => 'Audio codec',
'basic_codec' => 'Video codec',
'basic_media' => 'Medium',
'basic_source' => 'Bron',
'basic_standard' => 'Standaard',
'basic_team' => 'Team',
'size' => 'Grootte',
'comments_label' => 'Opmerkingen',
'times_completed_label' => 'Opgepikt',
'peers_count_label' => 'Leechers',
'thank_users_count_label' => 'Bedankt',
'numfiles_label' => 'Bestanden',
'bookmark_yes_label' => 'Gemarkeerd',
'bookmark_no_label' => 'Toevoegen aan bladwijzer',
'reward_logs_label' => 'Beloning',
'reward_yes_label' => 'Beloond',
'reward_no_label' => 'Beloning',
'download_label' => 'downloaden',
'thanks_yes_label' => 'Bedankte',
'thanks_no_label' => 'Dank',
],
'pick_info' => [
'normal' => 'normaal',
'hot' => 'Populair',
'classic' => 'Klassiek',
'recommended' => 'Aanbevelen',
],
'claim_already' => 'Opgeëist al',
'no_snatch' => 'Download deze torrent nog nooit',
'can_no_be_claimed_yet' => 'Kan nog niet worden geclaimd',
'claim_number_reach_user_maximum' => 'Het maximum aantal gebruikers is bereikt',
'claim_number_reach_torrent_maximum' => 'Het maximum aantal torrent is bereikt',
'claim_disabled' => 'Opeisen is uitgeschakeld',
'operation_log' => [
\App\Models\TorrentOperationLog::ACTION_TYPE_APPROVAL_DENY => [
'type_text' => 'Toegestaan',
'notify_subject' => 'Torrent was toegestaan',
'notify_msg' => 'Je torrent[url=:detail_url]:torrent_name[/url] was toegestaan door :operator, Reden: :reason',
],
\App\Models\TorrentOperationLog::ACTION_TYPE_APPROVAL_ALLOW => [
'type_text' => 'Geweigerd',
'notify_subject' => 'Torrent is geweigerd',
'notify_msg' => 'Je torrent: [url=:detail_url]:torrent_name[/url] geweigerd door :operator',
],
\App\Models\TorrentOperationLog::ACTION_TYPE_APPROVAL_NONE => [
'type_text' => 'Niet beoordeeld',
'notify_subject' => 'Torrent was gemarkeerd als niet nagekeken',
'notify_msg' => 'Je torrent: [url=:detail_url]:torrent_name[/url] werd gemarkeerd als niet gereviewd door :operator',
],
\App\Models\TorrentOperationLog::ACTION_TYPE_EDIT => [
'type_text' => 'Bewerken',
'notify_subject' => 'Torrent is bewerkt',
'notify_msg' => 'Je torrent: [url=:detail_url]:torrent_name[/url] is bewerkt door :operator',
],
\App\Models\TorrentOperationLog::ACTION_TYPE_DELETE => [
'type_text' => 'Verwijderen',
'notify_subject' => 'Torrent is verwijderd',
'notify_msg' => 'Je torrent: :torrent_name is verwijderd door :operator',
]
],
'owner_update_torrent_subject' => 'Geweigerde torrent is bijgewerkt',
'owner_update_torrent_msg' => 'Torrent[url=:detail_url]:torrent_name[/url] is bijgewerkt door de eigenaar, u kunt controleren of het aan de eisen voldoet en toestaan',
'approval' => [
'modal_title' => 'Torrent goedkeuring',
'status_label' => 'Goedkeuring status',
'comment_label' => 'Commentaar(optioneel)',
'status_text' => [
\App\Models\Torrent::APPROVAL_STATUS_NONE => 'Niet beoordeeld',
\App\Models\Torrent::APPROVAL_STATUS_ALLOW => 'Toegestaan',
\App\Models\Torrent::APPROVAL_STATUS_DENY => 'Geweigerd',
],
'deny_comment_show' => 'Geweigerd, reden: :reason',
'logs_label' => 'Goedkeuringslogs'
],
'show_hide_media_info' => 'Toon/Verberg ruwe MediaInfo',
'promotion_time_types' => [
\App\Models\Torrent::PROMOTION_TIME_TYPE_GLOBAL => 'Wereldwijd',
\App\Models\Torrent::PROMOTION_TIME_TYPE_PERMANENT => 'Permanent',
\App\Models\Torrent::PROMOTION_TIME_TYPE_DEADLINE => 'Tot',
],
'paid_torrent' => 'Betaalde torrent',
];