source: extensions/Ldap_Login/language/da_DK/plugin.lang.php @ 27036

Last change on this file since 27036 was 27036, checked in by 22decembre, 10 years ago

version 1.0.1

add main function : ability to add new piwigo users when ldap is successful.
add danish language, must be reviewed

this version is not yet considered stable, as needed to be reviewed and commented by beta-testers

File size: 3.0 KB
Line 
1<?php
2/*
3Plugin Name: Ldap_Login
4Version: 1.0.1
5Description: Permet de se logger via une authentification ldap
6Plugin URI: http://www.22decembre.eu
7Author: 22decembre
8Author URI:http://www.22decembre.eu
9___________________________________
10
11Language Name: Dansk [DK]
12*/
13$lang['All LDAP users can use their ldap password everywhere on piwigo if needed.'] = 'Ldab bruger kan bruge ldap adgangskode overalt, de har brug.';
14$lang['New users when ldap auth is successfull'] = 'Nye bruger i tilfælde af en vellykket ldap';
15$lang['Ldap_Login Plugin'] = 'Ldap_Login Plugin';
16$lang['Ldap_Login configuration'] = 'Ldap_Login konfiguration';
17$lang['Warning: LDAP Extension missing.'] = 'Php-ldap udvidelse mangler.';
18
19// ldap server connection
20
21$lang['Ldap server host connection'] = 'Ldap server forbindelse';
22$lang['If empty, standard protocol ports will be used by the software.'] = 'Hvis dette felt er tomt, standart protokol ip-port vil blev brugt.';
23$lang['If empty, localhost and standard protocol ports will be used in configuration.'] = 'Hvis dette felterne er tomt, localhost og standart ip-port vil blev brugt.';
24$lang['Ldap server host'] = 'LDAP server adresse';
25$lang['Secure connexion'] = 'ssl forbindelse (ldaps)';
26$lang['Ldap port'] = 'Ip-port hvor LDAP lytter';
27
28// ldap attributes
29
30$lang['Ldap attributes'] = 'Attributer ldap';
31$lang['Base DN'] = 'Base DN hvor er brugerne (f.eks : ou=people,dc=example,dc=com)';
32$lang['Ldap filter'] = '';
33$lang['Attribute corresponding to the user name'] = 'Attribut der svarer til brugernavnet.';
34
35// ldap connection credentials
36$lang['Ldap connection credentials'] = 'Ldap forbindelse DN og adgangskode';
37$lang['Let the fields blank if the ldap accept anonymous connections.'] = 'Lade felterne tomt hvid LDAP acceptere anonym forbindelser.';
38$lang['Bind DN, field in full ldap style'] = 'Bind DN med den ldap stil (f.eks : cn=admin,dc=example,dc=com).';
39$lang['Bind password'] = 'Adgangskode';
40
41// test and save
42
43$lang['Username'] = 'Din LDAP brugernavn.';
44$lang['Your password'] = 'Din LDAP adgangskode.';
45$lang['Ldap_Login Test'] = 'Ldap_Login Test';
46$lang['You must save the settings with the Save button just up there before testing here.'] = 'Du skal gemme indstillingerne med knappen Gem lige deroppe før testning her';
47$lang['Save'] = 'Gem';
48$lang['Test Settings'] = 'Test instillingerne.';
49
50// new piwigo users
51
52$lang['If the LDAP doesn\'t furnish the mail address, users can set it up in the profile page.'] = 'Hvis LDAP ikke give mail addresse, brugerne kan give i profile side.';
53$lang['Do you want to send mail to the new users, like casual piwigo users receive ?'] = 'Vil du send beskeder til nye bruger, ligesom tilfældige brugere modtager?';
54$lang['Do you allow new piwigo users to be created when users authenticate succesfully on the ldap ?'] = 'Ønsker du at oprette nye brugere, når Ldap forbindelse er en succes?';
55$lang['Do you want admins to be advertised by mail in case of new users creation upon ldap login ?'] = 'Vil du send beskeder til administratorer da vi oprette nye bruger ?';
56
57?>
Note: See TracBrowser for help on using the repository browser.