Files
roundcube-ident_switch/localization/nl_NL.inc
Laurent Dinclaux 36b9b3e35f Replace TLS checkbox with security dropdown (None/STARTTLS/SSL)
Replace the single IMAP TLS checkbox with a per-protocol security
dropdown for IMAP, SMTP, and Sieve. The security scheme (ssl:// or
tls://) is now stored directly in the host field, unifying the approach
across all protocols.

Smart form behavior:
- Default ports update automatically when changing security type
- Fields clear on blur when value matches the placeholder
- Warning shown when selecting no encryption
- Defaults: IMAP SSL/993, SMTP STARTTLS/587, Sieve STARTTLS/4190

The DB_SECURE_IMAP_TLS flag is no longer written but still read for
backward compatibility with existing records.
2026-02-10 17:54:36 +11:00

141 lines
3.3 KiB
PHP

<?php
/*
* Localization file for ident_switch plugin
*/
$labels = array();
// Plugin ident_switch
$labels['form.common.caption'] = 'Plugin ident_switch';
// Enabled
$labels['form.common.enabled'] = 'Inschakelen';
// Label
$labels['form.common.label'] = 'Label';
// Value in \'Label\' field is too long (32 chars max).
$labels['err.label.long'] = 'De waarde in het veld \'Label\' is te lang (maximaal 32 karakter is toegestaan).';
// IMAP
$labels['form.imap.caption'] = 'IMAP';
// Server host name
$labels['form.imap.host'] = 'Servernaam';
// Security
$labels['form.imap.security'] = 'Beveiliging';
// Port
$labels['form.imap.port'] = 'Poortnummer';
// Folder hierarchy delimiter
$labels['form.imap.delimiter'] = 'Map hiërarchie scheidingsteken';
// Username
$labels['form.imap.username'] = 'Gebruikersnaam';
// Password
$labels['form.imap.password'] = 'Wachtwoord';
// Value in \'Username\' field is too long (64 chars max).
$labels['err.user.long'] = 'De waarde in het veld \'Gebruikersnaam\' is te lang (maximaal 64 karakter is toegestaan).';
// SMTP
$labels['form.smtp.caption'] = 'SMTP';
// Server host name
$labels['form.smtp.host'] = 'Servernaam';
// Security
$labels['form.smtp.security'] = 'Beveiliging';
// Port
$labels['form.smtp.port'] = 'Poortnummer';
// Authorization
$labels['form.smtp.auth'] = 'Autorisatie';
// As IMAP
$labels['form.smtp.auth.imap'] = 'Zoals IMAP';
// None
$labels['form.smtp.auth.none'] = 'Geen';
// Sieve
$labels['form.sieve.caption'] = 'Sieve';
// Server host name
$labels['form.sieve.host'] = 'Servernaam';
// Security
$labels['form.sieve.security'] = 'Beveiliging';
// Port
$labels['form.sieve.port'] = 'Poortnummer';
// Authorization
$labels['form.sieve.auth'] = 'Autorisatie';
// As IMAP
$labels['form.sieve.auth.imap'] = 'Zoals IMAP';
// None
$labels['form.sieve.auth.none'] = 'Geen';
// Notifications
$labels['form.notify.caption'] = 'Meldingen';
// Check for new mail
$labels['form.notify.check'] = 'Controleer op nieuwe berichten';
// Focus / favicon
$labels['form.notify.basic'] = 'Focus / favicon';
// Sound
$labels['form.notify.sound'] = 'Geluid';
// Desktop notification
$labels['form.notify.desktop'] = 'Bureaubladmelding';
// Use default
$labels['form.notify.default'] = 'standaard';
// On
$labels['form.notify.on'] = 'Aan';
// Off
$labels['form.notify.off'] = 'Uit';
// Requires newmail_notifier plugin
$labels['form.notify.requires_newmail_notifier'] = 'Meldingen vereisen de newmail_notifier-plug-in. Schakel deze in of neem contact op met uw beheerder.';
// Security options
// None
$labels['form.security.none'] = 'Geen';
// STARTTLS
$labels['form.security.starttls'] = 'STARTTLS';
// SSL/TLS
$labels['form.security.ssl'] = 'SSL/TLS';
// None warning
$labels['form.security.none_warning'] = 'Onversleutelde verbindingen zijn onveilig. Uw inloggegevens en e-mails kunnen worden onderschept. Gebruik waar mogelijk SSL/TLS of STARTTLS.';
// Errors
// Value in \'Server host name\' field is too long (64 chars max).
$labels['err.host.long'] = 'De waarde in het veld \'Servernaam\' is te lang (maximaal 64 karakter is toegestaan).';
// Value in \'Port\' field must be a number.
$labels['err.port.num'] = 'De waarde in het veld \'Poortnummer\' moet een nummer zijn.';
// Value in \'Port\' field must be between 1 and 65535.
$labels['err.port.range'] = 'De waarde in het veld \'Poortnummer\' moet tussen de 1 en 65535 zijn.';