69 lines
1.9 KiB
Perl
69 lines
1.9 KiB
Perl
package WebGUI::i18n::Dutch::AssetAspect_Subscriber;
|
|
|
|
use strict;
|
|
|
|
our $I18N = {
|
|
'Subscription group' => {
|
|
message => 'Abonnee groep',
|
|
},
|
|
'Enable subscription' => {
|
|
message => 'Abonneren toestaan?',
|
|
},
|
|
'require confirmation' => {
|
|
message => 'In/uitschrijving altijd verifieren?',
|
|
},
|
|
'allow anonymous' => {
|
|
message => 'Anonieme inschrijvingen toestaan?',
|
|
},
|
|
'confirmation required template' => {
|
|
message => 'Verificatie verplicht sjabloon',
|
|
},
|
|
'confirmation email subject' => {
|
|
message => 'Verificatie email: onderwerp',
|
|
},
|
|
'confirmation email template' => {
|
|
message => 'Verificatie email: sjabloon',
|
|
},
|
|
'no mutation subject' => {
|
|
message => 'Geen wijziging email: onderwerp',
|
|
},
|
|
'no mutation template' => {
|
|
message => 'Geen wijzigin email: sjabloon',
|
|
},
|
|
'tab name' => {
|
|
message => 'Abonnement',
|
|
},
|
|
|
|
|
|
'subscribe' => {
|
|
message => 'Inschrijven',
|
|
},
|
|
'unsubscribe' => {
|
|
message => 'Uitschrijven',
|
|
},
|
|
|
|
'click to confirm fallback' => {
|
|
message => 'Klik hier om uw in/uitschrijving te bevestigen: %s',
|
|
},
|
|
'already subscribed fallback' => {
|
|
message => 'Dit email adres is al in/uitgeschreven voor %s',
|
|
},
|
|
|
|
'anonnymous not allowed' => {
|
|
message => 'Anonieme inschrijvingen zijn niet toegestaan. Log in om in- of uit te schrijven.',
|
|
},
|
|
|
|
'subscription successful' => {
|
|
message => 'Uw inschrijving is geslaagd. <a href="%s">Terug naar de site</a>',
|
|
},
|
|
'unsubscription successful' => {
|
|
message => 'Uw uitschrijving is geslaagd. <a href="%s">Terug naar de site</a>',
|
|
},
|
|
'wrong code' => {
|
|
message => 'De verificatiecode in de link is onbekend, al gebruikt of verlopen. Als u zich wilt in- of uitschrijven probeer dit dan opnieuw of neem contact op met de websitebeheerders.',
|
|
},
|
|
};
|
|
|
|
1;
|
|
|
|
|