Archived
1
0

Basic Import

This commit is contained in:
spelth
2015-05-02 11:30:06 +02:00
parent 5823772d4b
commit 64767af629
26 changed files with 846 additions and 0 deletions

View File

@@ -0,0 +1,56 @@
<?php
/*
Plugin Name: Ldap_Login
Version: 1.0.1
Description: Permet de se logger via une authentification ldap
Plugin URI: http://www.22decembre.eu
Author: 22decembre
Author URI:http://www.22decembre.eu
___________________________________
Language Name: Dansk [DK]
*/
$lang['All LDAP users can use their ldap password everywhere on piwigo if needed.'] = 'Alle LDAP-brugere kan om nødvendigt benytte deres LDAP-adgangskode over alt i Piwigo.';
$lang['New users when ldap auth is successfull'] = 'Nye bruger ved vellykket LDAP-autentifikation';
$lang['Ldap_Login Plugin'] = 'Ldap_Login Plugin';
$lang['Ldap_Login configuration'] = 'Opsætning af Ldap_Login';
$lang['Warning: LDAP Extension missing.'] = 'Advarsel: LDAP-udvidelse mangler.';
// ldap server connection
$lang['Ldap server host connection'] = 'LDAP-server';
$lang['If empty, standard protocol ports will be used by the software.'] = 'Hvis tomt benyttes standard-protokolporte af programmellet.';
$lang['If empty, localhost and standard protocol ports will be used in configuration.'] = 'Hvis tomt benyttes localhost og standard-protokolporte i opsætningen.';
$lang['Ldap server host'] = 'LDAP-værtsadresse';
$lang['Secure connexion'] = 'Sikker forbindelse (ldaps)';
$lang['Ldap port'] = 'LDAP-port';
// ldap attributes
$lang['Ldap attributes'] = 'LDAP-attributer';
$lang['Base DN'] = 'Base DN hvor LDAP-brugerne findes (f.eks.: ou=users,dc=example,dc=com):';
$lang['Attribute corresponding to the user name'] = 'Attribut der svarer til brugernavnet';
// ldap connection credentials
$lang['Ldap connection credentials'] = 'LDAP-loginoplysninger';
$lang['Let the fields blank if the ldap accept anonymous connections.'] = 'Hvis LDAP accepterer anonyme logins, skal felterne være tomme.';
$lang['Bind DN, field in full ldap style'] = 'Bind DN på LDAP-form (f.eks.: cn=admin,dc=example,dc=com).';
$lang['Bind password'] = 'Bind-adgangskode';
// test and save
$lang['Username'] = 'Dit LDAP-brugernavn';
$lang['Your password'] = 'Din LDAP-adgangskode.';
$lang['Ldap_Login Test'] = 'Test af Ldap_Login';
$lang['You must save the settings with the Save button just up there before testing here.'] = 'Du skal gemme indstillingerne med knappen Gem herover, før du kan afprøve dem.';
$lang['Save'] = 'Gem';
$lang['Test Settings'] = 'Afprøv indstillingerne';
// new piwigo users
$lang['Do you want to send mail to the new users, like casual piwigo users receive ?'] = 'Skal nye brugere modtage en mail på samme måde som tilfældige brugere?';
$lang['Do you allow new piwigo users to be created when users authenticate succesfully on the ldap ?'] = 'Må Piwigo oprette nye brugere, når de med succes autentificeres i LDAP?';
$lang['Do you want admins to be advertised by mail in case of new users creation upon ldap login ?'] = 'Skal administratorerne have besked pr. mail i tilfælde af at nye brugere oprettes ved login via LDAP?';
$lang['Ldap filter :'] = 'LDAP-filter';
?>

7
language/de_DE/index.php Normal file
View File

@@ -0,0 +1,7 @@
<?php
$url = '../';
header( 'Request-URI: '.$url );
header( 'Content-Location: '.$url );
header( 'Location: '.$url );
exit();
?>

View File

@@ -0,0 +1,51 @@
<?php
// +-----------------------------------------------------------------------+
// | Piwigo - a PHP based photo gallery |
// +-----------------------------------------------------------------------+
// | Copyright(C) 2008-2014 Piwigo Team http://piwigo.org |
// | Copyright(C) 2003-2008 PhpWebGallery Team http://phpwebgallery.net |
// | Copyright(C) 2002-2003 Pierrick LE GALL http://le-gall.net/pierrick |
// +-----------------------------------------------------------------------+
// | This program is free software; you can redistribute it and/or modify |
// | it under the terms of the GNU General Public License as published by |
// | the Free Software Foundation |
// | |
// | This program is distributed in the hope that it will be useful, but |
// | WITHOUT ANY WARRANTY; without even the implied warranty of |
// | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
// | General Public License for more details. |
// | |
// | You should have received a copy of the GNU General Public License |
// | along with this program; if not, write to the Free Software |
// | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, |
// | USA. |
// +-----------------------------------------------------------------------+
$lang['Attribute corresponding to the user name'] = 'Attribute entsprechend des Benutzernamens';
$lang['All LDAP users can use their ldap password everywhere on piwigo if needed.'] = 'Alle LDAP-Benutzer können ihr LDAP-Passwort falls es notwendig ist auch für Piwigo benutzen.';
$lang['Base DN'] = 'Base DN wo LDAP-Benutzer gefunden werden sollen (zB.: ou=users,dc=example,dc=com):';
$lang['Bind DN, field in full ldap style'] = 'Bind DN im LDAP-Style (z.B.: cn=admin,dc=example,dc=com).';
$lang['Do you want admins to be advertised by mail in case of new users creation upon ldap login ?'] = 'Möchtest du das die Admins per Mail benachrichtigt werden, wenn neue Nutzer über das LDAP Login angelegt werden.';
$lang['Do you want to send mail to the new users, like casual piwigo users receive ?'] = 'Möchtest du die Mails so an die neuen Nutzern senden, wie sie normale Piwigo Benutzer bekommen?';
$lang['Ldap connection credentials'] = 'LDAP-Verbindungsreferenzen';
$lang['Username'] = 'Bitte LDAP Benutzername';
$lang['New users when ldap auth is successfull'] = 'Neuer Benutzer, wenn LDAP Auth erfolgreich war';
$lang['Warning: LDAP Extension missing.'] = 'Warnung: LDAP Erweiterung fehlt.';
$lang['Ldap attributes'] = 'LDAP Attribute';
$lang['Secure connexion'] = 'Sichere Verbindung (ldaps)';
$lang['Ldap filter :'] = 'LDAP-Filter:';
$lang['Ldap port'] = 'LDAP-Port';
$lang['Ldap server host'] = 'LDAP-Server';
$lang['Bind password'] = 'Bind passwort';
$lang['Ldap server host connection'] = 'LDAP Serververbindung';
$lang['Ldap_Login Plugin'] = 'LDAP-Login Plugin';
$lang['Ldap_Login Test'] = 'LDAP-Login Test';
$lang['Ldap_Login configuration'] = 'LDAP-Login Konfiguration';
$lang['Save'] = 'Speichern';
$lang['Test Settings'] = 'Test-Einstellungen';
$lang['You must save the settings with the Save button just up there before testing here.'] = 'Du musst die Einstellungen erst speichern, bevor du sie testen kannst.';
$lang['Your password'] = 'Dein LDAP Passwort.';
$lang['Do you allow new piwigo users to be created when users authenticate succesfully on the ldap ?'] = 'Erlauben Sie, dass neue Piwigo-Benutzer angelegt werden, wenn sie erfolgreich bei LDAP authentifiziert wurden?';
$lang['If empty, standard protocol ports will be used by the software.'] = 'Wenn leer werden die Standard-Protokoll-Ports von der Software benutzt.';
$lang['If empty, localhost and standard protocol ports will be used in configuration.'] = 'Wenn leer werden localhost und die Standard-Protokoll-Ports in der Konfiguration benutzt.';
$lang['Let the fields blank if the ldap accept anonymous connections.'] = 'Das Feld leer lassen, wenn LDAP auch anonyme Verbindungen erlauben soll.';
?>

7
language/el_GR/index.php Normal file
View File

@@ -0,0 +1,7 @@
<?php
$url = '../';
header( 'Request-URI: '.$url );
header( 'Content-Location: '.$url );
header( 'Location: '.$url );
exit();
?>

View File

@@ -0,0 +1,51 @@
<?php
// +-----------------------------------------------------------------------+
// | Piwigo - a PHP based photo gallery |
// +-----------------------------------------------------------------------+
// | Copyright(C) 2008-2014 Piwigo Team http://piwigo.org |
// | Copyright(C) 2003-2008 PhpWebGallery Team http://phpwebgallery.net |
// | Copyright(C) 2002-2003 Pierrick LE GALL http://le-gall.net/pierrick |
// +-----------------------------------------------------------------------+
// | This program is free software; you can redistribute it and/or modify |
// | it under the terms of the GNU General Public License as published by |
// | the Free Software Foundation |
// | |
// | This program is distributed in the hope that it will be useful, but |
// | WITHOUT ANY WARRANTY; without even the implied warranty of |
// | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
// | General Public License for more details. |
// | |
// | You should have received a copy of the GNU General Public License |
// | along with this program; if not, write to the Free Software |
// | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, |
// | USA. |
// +-----------------------------------------------------------------------+
$lang['Base DN'] = 'Base DN, που θα πρέπει να βρίσκονται οι χρήστες ldap (ex : ou=users,dc=example,dc=com) :';
$lang['Attribute corresponding to the user name'] = 'Χαρακτηριστικό που αντιστοιχεί στο όνομα χρήστη';
$lang['All LDAP users can use their ldap password everywhere on piwigo if needed.'] = 'Όλοι οι χρήστες LDAP μπορούν να χρησιμοποιήσουν τον κωδικό ldap τους παντού στο piwigo αν χρειαστεί.';
$lang['You must save the settings with the Save button just up there before testing here.'] = 'Πρέπει να αποθηκεύσετε τις ρυθμίσεις χρησιμοποιώντας το κουμπί Αποθήκευση παραπάνω, πριν τις δοκιμάσετε.';
$lang['Your password'] = 'Ο κωδικός σας για το LDAP';
$lang['Warning: LDAP Extension missing.'] = 'Προειδοποίηση:Απουσία Πρόσθετου του LDAP';
$lang['Username'] = 'Το όνομά σας χρήστη LDAP';
$lang['Test Settings'] = 'Δοκιμή ρυθμίσεων';
$lang['If empty, standard protocol ports will be used by the software.'] = 'Εάν μείνει κενό, το λογισμικό θα χρησιμοποιεί τις συνήθεις θύρες πρωτοκόλλου.';
$lang['Ldap server host connection'] = 'Σύνδεση με εξυπηρετητή LDAP';
$lang['Ldap server host'] = 'LDAP server host';
$lang['Ldap attributes'] = 'Χαρακτηριστικά του LDAP';
$lang['If empty, localhost and standard protocol ports will be used in configuration.'] = 'Εάν μείνει κενό, θα χρησιμοποιηθούν στη ρύθμιση ο localhost και οι συνήθεις θύρες πρωτοκόλλου.';
$lang['Do you want to send mail to the new users, like casual piwigo users receive ?'] = 'Πρέπει να λαμβάνουν οι νέοι χρήστες μήνυματα όπως και οι κλασικοί χρήστες Piwigo;';
$lang['Do you want admins to be advertised by mail in case of new users creation upon ldap login ?'] = 'Θέλετε να ενημερώνονται οι διαχειριστές με ηλεκτρονικό μήνυμα σε περίπτωση δημιουργίας νέων χρηστών με σύνδεση ldap;';
$lang['Bind DN, field in full ldap style'] = 'Συνδεθείτε με DN σε μορφή LDAP (π.χ.:admin, dc=example,dc=com). ';
$lang['Bind password'] = 'Κωδικός σύνδεσης';
$lang['Do you allow new piwigo users to be created when users authenticate succesfully on the ldap ?'] = 'Μπορούν να δημιουργούνται νέοι χρήστες Piwigo όταν πιστοποιούνται επιτυχώς μέσω LDAP;';
$lang['Ldap connection credentials'] = 'Διαπιστευτήρια σύνδεσης LDAP';
$lang['Ldap filter :'] = 'Φίλτρο LDAP';
$lang['Ldap_Login Plugin'] = 'Ldap_Πρόσθετο σύνδεσης';
$lang['Ldap_Login configuration'] = 'Ldap_Ρύθμιση σύνδεσης';
$lang['Secure connexion'] = 'Ασφαλής σύνδεση(ldaps)';
$lang['Save'] = 'Αποθήκευση';
$lang['New users when ldap auth is successfull'] = 'Νέοι χρήστες όταν η πιστοποίηση LDAP είναι επιτυχής';
$lang['Let the fields blank if the ldap accept anonymous connections.'] = 'Αφήστε τα πεδία κενά εάν το LDAP αποδέχεται ανώνυμες συνδέσεις';
$lang['Ldap_Login Test'] = 'Ldap_Δοκιμή σύνδεσης';
$lang['Ldap port'] = 'θύρα LDAP';
?>

View File

@@ -0,0 +1 @@
allow to login piwigo users with their ldap credentials (login, mail, or another attribute specified by piwigo admins + ldap password).

View File

@@ -0,0 +1,59 @@
<?php
/*
Plugin Name: Ldap_Login
Version: 1.0.1
Description: Permet de se logger via une authentification ldap
Plugin URI: http://www.22decembre.eu
Author: 22decembre
Author URI:http://www.22decembre.eu
___________________________________
Language Name: English [UK]
*/
$lang['All LDAP users can use their ldap password everywhere on piwigo if needed.'] = 'All LDAP users can use their LDAP password everywhere in Piwigo if needed.';
$lang['New users when ldap auth is successfull'] = 'New users when LDAP auth is successful';
$lang['Ldap_Login Plugin'] = 'Ldap_Login Plugin';
$lang['Ldap_Login configuration'] = 'Ldap_Login configuration';
$lang['Warning: LDAP Extension missing.'] = 'Warning: LDAP Extension missing.';
// ldap server connection
$lang['Ldap server host connection'] = 'LDAP server connection';
$lang['If empty, standard protocol ports will be used by the software.'] = 'If empty, standard protocol ports will be used by the software.';
$lang['If empty, localhost and standard protocol ports will be used in configuration.'] = 'If empty, localhost and standard protocol ports will be used in configuration.';
$lang['Ldap server host'] = 'LDAP server host';
$lang['Secure connexion'] = 'Secure connection (ldaps)';
$lang['Ldap port'] = 'LDAP port';
// ldap attributes
$lang['Ldap attributes'] = 'LDAP attributes';
$lang['Base DN'] = 'Base DN where LDAP users should be found (e.g.: ou=users,dc=example,dc=com):';
$lang['Ldap filter :'] = 'LDAP filter';
$lang['Attribute corresponding to the user name'] = 'Attribute corresponding to the user name';
// ldap connection credentials
$lang['Ldap connection credentials'] = 'LDAP connection credentials';
$lang['Let the fields blank if the ldap accept anonymous connections.'] = 'Leave the fields empty if LDAP accepts anonymous connections.';
$lang['Bind DN, field in full ldap style'] = 'Bind DN in LDAP style (e.g.: cn=admin,dc=example,dc=com).';
$lang['Bind password'] = 'Bind password';
// test and save
$lang['Username'] = 'Your LDAP username';
$lang['Your password'] = 'Your LDAP password';
$lang['Ldap_Login Test'] = 'Ldap_Login Test';
$lang['You must save the settings with the Save button just up there before testing here.'] = 'You need to save settings using the Save button above, before testing them.';
$lang['Save'] = 'Save';
$lang['Test Settings'] = 'Test settings';
// new piwigo users
$lang['Do you want admins to be advertised by mail in case of new users creation upon ldap login ?'] = 'Should admins be notified by mail in case of creation of new users upon LDAP login?';
$lang['Do you want to send mail to the new users, like casual piwigo users receive ?'] = 'Should new users receive mail similar to casual Piwigo users?';
$lang['Do you allow new piwigo users to be created when users authenticate succesfully on the ldap ?'] = 'Should new Piwigo users be created when users authenticate succesfully via LDAP?';
$lang['Do you want admins to be advertised by mail in case of new users creation upon ldap login ?'] = 'Do you want admins to be advertised by mail in case of new users creation upon ldap login ?';
?>

7
language/es_ES/index.php Normal file
View File

@@ -0,0 +1,7 @@
<?php
$url = '../';
header( 'Request-URI: '.$url );
header( 'Content-Location: '.$url );
header( 'Location: '.$url );
exit();
?>

View File

@@ -0,0 +1,52 @@
<?php
// +-----------------------------------------------------------------------+
// | Piwigo - a PHP based photo gallery |
// +-----------------------------------------------------------------------+
// | Copyright(C) 2008-2014 Piwigo Team http://piwigo.org |
// | Copyright(C) 2003-2008 PhpWebGallery Team http://phpwebgallery.net |
// | Copyright(C) 2002-2003 Pierrick LE GALL http://le-gall.net/pierrick |
// +-----------------------------------------------------------------------+
// | This program is free software; you can redistribute it and/or modify |
// | it under the terms of the GNU General Public License as published by |
// | the Free Software Foundation |
// | |
// | This program is distributed in the hope that it will be useful, but |
// | WITHOUT ANY WARRANTY; without even the implied warranty of |
// | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
// | General Public License for more details. |
// | |
// | You should have received a copy of the GNU General Public License |
// | along with this program; if not, write to the Free Software |
// | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, |
// | USA. |
// +-----------------------------------------------------------------------+
$lang['New users when ldap auth is successfull'] = 'Nuevos usuarios cuando la autentificación LDAP es exitosa';
$lang['Save'] = 'Guardar';
$lang['Secure connexion'] = 'Conexión segura (ldap)';
$lang['Test Settings'] = 'Test de la configuración';
$lang['Username'] = 'Su nombre de usuario Ldap';
$lang['Warning: LDAP Extension missing.'] = 'Atención: falta la extensión LDAP';
$lang['You must save the settings with the Save button just up there before testing here.'] = 'Tiene que guardar la configuración usando en botón de arriba antes de iniciar un test';
$lang['Your password'] = 'Su contraseña LDAP';
$lang['All LDAP users can use their ldap password everywhere on piwigo if needed.'] = 'Todos los usuarios de LDAP pueden utilizar su contraseña en todas las partes de piwigo si es necesario.';
$lang['Attribute corresponding to the user name'] = 'Atributo que corresponde al nombre de usuario';
$lang['Base DN'] = 'La base DN es donde deben encontrarse los usuarios de LDAP (por ejemplo: ou = usuarios, dc = ejemplo, dc = com):';
$lang['Bind DN, field in full ldap style'] = 'Enlace DN en el estilo de LDAP (por ejemplo: cn = admin, dc = ejemplo, dc = com).';
$lang['Bind password'] = 'Contraseña Bind';
$lang['Do you allow new piwigo users to be created when users authenticate succesfully on the ldap ?'] = '¿Permite que los nuevos usuarios de Piwigo que se crean cuando los usuarios se autentican con éxito en el ldap?';
$lang['Do you want admins to be advertised by mail in case of new users creation upon ldap login ?'] = 'Desea ser advertido por mail en caso de creacion de una nueva cuenta ldap ?';
$lang['Do you want to send mail to the new users, like casual piwigo users receive ?'] = 'Desea mandar mail a los nuevos usuarios, como la mayoria de los usuarios de Piwigo ?';
$lang['If empty, localhost and standard protocol ports will be used in configuration.'] = 'En caso de estar libre. el localhost y los protocolos de los puertos se utilizaran para la configuracion. ';
$lang['If empty, standard protocol ports will be used by the software.'] = 'En caso de estar libre, los protocolos de los puertos se utilizaran para los programas.';
$lang['Ldap attributes'] = 'Atributos LDAP';
$lang['Ldap connection credentials'] = 'Credenciales de conexion ldap';
$lang['Ldap filter :'] = 'Filtros ldap';
$lang['Ldap port'] = 'Puerto ldap';
$lang['Ldap server host'] = 'Servidor host de ldap';
$lang['Ldap server host connection'] = 'Conexion del servidor ldap';
$lang['Ldap_Login Plugin'] = 'Plugin de autentificacion de ldap';
$lang['Ldap_Login Test'] = 'Test de autentificacion de ldap';
$lang['Ldap_Login configuration'] = 'Configuracion de autentificacion de ldap
';
$lang['Let the fields blank if the ldap accept anonymous connections.'] = 'Deje los campos en blanco si el ldap acepte a conexiones anónimas.';
?>

View File

@@ -0,0 +1,59 @@
<?php
/*
Plugin Name: Ldap_Login
Version: 1.0.1
Description: Permet de se logger via une authentification ldap
Plugin URI: http://www.22decembre.eu
Author: 22decembre
Author URI:http://www.22decembre.eu
___________________________________
Language Name: Français [FR]
*/
$lang['All LDAP users can use their ldap password everywhere on piwigo if needed.'] = 'Les utilisateurs ldap peuvent utiler leur mot de passe ldap partout où necessaire dans cette galerie piwigo.';
$lang['New users when ldap auth is successfull'] = 'Nouveaux utilisateurs piwigo en cas de connection LDAP';
$lang['Ldap_Login Plugin'] = 'Ldap_Login Plugin';
$lang['Ldap_Login Plugin configuration'] = 'Configuration du plugin Ldap_Login';
$lang['Warning: LDAP Extension missing.'] = 'Attention: Extension LDAP manquante.';
// ldap server connection
$lang['Ldap server host connection'] = 'Connection au serveur Ldap';
$lang['If empty, standard protocol ports will be used by the software.'] = 'Les ports standarts seront utilisés si ce champs est laissé vide.';
$lang['If empty, localhost and standard protocol ports will be used in configuration.'] = 'Localhost et les ports standard du protocol seront utilisés si ces champs sont laissés vides.';
$lang['Ldap server host'] = 'Hote du serveur Ldap';
$lang['Secure connexion'] = 'Connexion sécurisée (ldaps)';
$lang['Ldap port'] = 'Port a utiliser';
// ldap attributes
$lang['Ldap attributes'] = 'Attributs ldap';
$lang['Base DN'] = 'Arbre ldap à explorer où rechercher les utilisateurs (ex : ou=users,dc=exemple,dc=com)';
$lang['Ldap filter'] = 'Filtre de recherche';
$lang['Attribute corresponding to the user name'] = 'Attribut correspondant au nom d\'utilisateur';
// ldap connection credentials
$lang['Ldap connection credentials'] = 'Identifiants de connection LDAP';
$lang['Let the fields blank if the ldap accept anonymous connections.'] = 'Laissez les champs vides si le ldap accepte les connexions anonymes.';
$lang['Bind DN, field in full ldap style'] = 'Identifiant de connection, avec syntaxe LDAP complète (par ex : cn=admin,dc=example,dc=com).';
$lang['Bind password'] = 'Mot de passe de connection';
// test and save
$lang['Username'] = 'Votre nom d\'utilisateur LDAP';
$lang['Your password'] = 'Votre mot de passe LDAP.';
$lang['Ldap_Login Test'] = 'Test du plugin Ldap_Login';
$lang['You must save the settings with the Save button just up there before testing here.'] = 'Vous devez sauvegarder les paramètres avec le bouton Enregistrer juste au dessus avant de faire ce test.';
$lang['Test Settings'] = 'Tester les paramètres';
$lang['Save'] = 'Enregistrer';
// new piwigo users
$lang['If the LDAP doesn\'t furnish the mail address, users can set it up in the profile page.'] = 'Si le ldap ne fournit pas l\'adresse courriel, les utilisateurs peuvent l\'enregistrer dans la page de profil.';
$lang['Do you want to send mail to the new users, like casual piwigo users receive ?'] = 'Voulez-vous envoyer le courriel habituel aux nouveaux utilisateurs de Piwigo crées par le plugin ?';
$lang['Do you allow new piwigo users to be created when users authenticate succesfully on the ldap ?'] = 'Voulez-vous créer des utilisateurs piwigo lorsque quelqu\'un se connecte avec des identifiants ldap valides ?';
$lang['Do you want admins to be advertised by mail in case of new users creation upon ldap login ?'] = 'Voulez-vous que les administrateurs du site soient prévenus lors de ces créations d\'utilisateurs ?';
?>

View File

@@ -0,0 +1,59 @@
<?php
/*
Plugin Name: Ldap_Login
Version: 1.0.1
Description: Permet de se logger via une authentification ldap
Plugin URI: http://www.22decembre.eu
Author: 22decembre
Author URI:http://www.22decembre.eu
___________________________________
Language Name: Français [FR]
*/
$lang['All LDAP users can use their ldap password everywhere on piwigo if needed.'] = 'Les utilisateurs ldap peuvent utiler leur mot de passe ldap partout où necessaire dans cette galerie piwigo.';
$lang['New users when ldap auth is successfull'] = 'Nouveaux utilisateurs piwigo en cas de connection LDAP';
$lang['Ldap_Login Plugin'] = 'Ldap_Login Plugin';
$lang['Ldap_Login Plugin configuration'] = 'Configuration du plugin Ldap_Login';
$lang['Warning: LDAP Extension missing.'] = 'Attention: Extension LDAP manquante.';
// ldap server connection
$lang['Ldap server host connection'] = 'Connection au serveur Ldap';
$lang['If empty, standard protocol ports will be used by the software.'] = 'Les ports standarts seront utilisés si ce champs est laissé vide.';
$lang['If empty, localhost and standard protocol ports will be used in configuration.'] = 'Localhost et les ports standard du protocol seront utilisés si ces champs sont laissés vides.';
$lang['Ldap server host'] = 'Hote du serveur Ldap';
$lang['Secure connexion'] = 'Connexion sécurisée (ldaps)';
$lang['Ldap port'] = 'Port a utiliser';
// ldap attributes
$lang['Ldap attributes'] = 'Attributs ldap';
$lang['Base DN'] = 'Arbre ldap à explorer où rechercher les utilisateurs (ex : ou=users,dc=exemple,dc=com)';
$lang['Ldap filter'] = 'Filtre de recherche';
$lang['Attribute corresponding to the user name'] = 'Attribut correspondant au nom d\'utilisateur';
// ldap connection credentials
$lang['Ldap connection credentials'] = 'Identifiants de connection LDAP';
$lang['Let the fields blank if the ldap accept anonymous connections.'] = 'Laissez les champs vides si le ldap accepte les connexions anonymes.';
$lang['Bind DN, field in full ldap style'] = 'Identifiant de connection, avec syntaxe LDAP complète (par ex : cn=admin,dc=example,dc=com).';
$lang['Bind password'] = 'Mot de passe de connection';
// test and save
$lang['Username'] = 'Votre nom d\'utilisateur LDAP';
$lang['Your password'] = 'Votre mot de passe LDAP.';
$lang['Ldap_Login Test'] = 'Test du plugin Ldap_Login';
$lang['You must save the settings with the Save button just up there before testing here.'] = 'Vous devez sauvegarder les paramètres avec le bouton Enregistrer juste au dessus avant de faire ce test.';
$lang['Test Settings'] = 'Tester les paramètres';
$lang['Save'] = 'Enregistrer';
// new piwigo users
$lang['If the LDAP doesn\'t furnish the mail address, users can set it up in the profile page.'] = 'Si le ldap ne fournit pas l\'adresse courriel, les utilisateurs peuvent l\'enregistrer dans la page de profil.';
$lang['Do you want to send mail to the new users, like casual piwigo users receive ?'] = 'Voulez-vous envoyer le courriel habituel aux nouveaux utilisateurs de Piwigo crées par le plugin ?';
$lang['Do you allow new piwigo users to be created when users authenticate succesfully on the ldap ?'] = 'Voulez-vous créer des utilisateurs piwigo lorsque quelqu\'un se connecte avec des identifiants ldap valides ?';
$lang['Do you want admins to be advertised by mail in case of new users creation upon ldap login ?'] = 'Voulez-vous que les administrateurs du site soient prévenus lors de ces créations d\'utilisateurs ?';
?>

30
language/index.php Normal file
View File

@@ -0,0 +1,30 @@
<?php
// +-----------------------------------------------------------------------+
// | Piwigo - a PHP based photo gallery |
// +-----------------------------------------------------------------------+
// | Copyright(C) 2008-2013 Piwigo Team http://piwigo.org |
// | Copyright(C) 2003-2008 PhpWebGallery Team http://phpwebgallery.net |
// | Copyright(C) 2002-2003 Pierrick LE GALL http://le-gall.net/pierrick |
// +-----------------------------------------------------------------------+
// | This program is free software; you can redistribute it and/or modify |
// | it under the terms of the GNU General Public License as published by |
// | the Free Software Foundation |
// | |
// | This program is distributed in the hope that it will be useful, but |
// | WITHOUT ANY WARRANTY; without even the implied warranty of |
// | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
// | General Public License for more details. |
// | |
// | You should have received a copy of the GNU General Public License |
// | along with this program; if not, write to the Free Software |
// | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, |
// | USA. |
// +-----------------------------------------------------------------------+
// Recursive call
$url = '../';
header( 'Request-URI: '.$url );
header( 'Content-Location: '.$url );
header( 'Location: '.$url );
exit();
?>

7
language/it_IT/index.php Normal file
View File

@@ -0,0 +1,7 @@
<?php
$url = '../';
header( 'Request-URI: '.$url );
header( 'Content-Location: '.$url );
header( 'Location: '.$url );
exit();
?>

View File

@@ -0,0 +1,51 @@
<?php
// +-----------------------------------------------------------------------+
// | Piwigo - a PHP based photo gallery |
// +-----------------------------------------------------------------------+
// | Copyright(C) 2008-2014 Piwigo Team http://piwigo.org |
// | Copyright(C) 2003-2008 PhpWebGallery Team http://phpwebgallery.net |
// | Copyright(C) 2002-2003 Pierrick LE GALL http://le-gall.net/pierrick |
// +-----------------------------------------------------------------------+
// | This program is free software; you can redistribute it and/or modify |
// | it under the terms of the GNU General Public License as published by |
// | the Free Software Foundation |
// | |
// | This program is distributed in the hope that it will be useful, but |
// | WITHOUT ANY WARRANTY; without even the implied warranty of |
// | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
// | General Public License for more details. |
// | |
// | You should have received a copy of the GNU General Public License |
// | along with this program; if not, write to the Free Software |
// | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, |
// | USA. |
// +-----------------------------------------------------------------------+
$lang['Warning: LDAP Extension missing.'] = 'Attenzione: LDAP Extension mancante.';
$lang['Ldap connection credentials'] = 'Credenziali di connessione ldap';
$lang['Username'] = 'Vostro nome utente ldap';
$lang['Ldap server host'] = 'Server host ldap';
$lang['Attribute corresponding to the user name'] = 'Attributo corrispondente al nome utente';
$lang['Test Settings'] = 'Test impostazione';
$lang['Ldap filter :'] = 'Filtro ldap :';
$lang['Ldap port'] = 'Port ldap';
$lang['Ldap_Login configuration'] = 'Configurazione Ldap_Login';
$lang['Ldap_Login Test'] = 'Test del plugin Ldap_Login';
$lang['Ldap_Login Plugin'] = 'Ldap_Login Plugin';
$lang['Ldap attributes'] = 'Attributi ldap';
$lang['Your password'] = 'La tua password LDAP.';
$lang['Secure connexion'] = 'Connessione sicura (ldaps)';
$lang['Save'] = 'Salva';
$lang['Do you allow new piwigo users to be created when users authenticate succesfully on the ldap ?'] = 'Devono essere creati nuovi utenti Piwigo quando gli utenti si autenticano con successo tramite LDAP?';
$lang['Do you want admins to be advertised by mail in case of new users creation upon ldap login ?'] = 'Vuoi che gli amministratori siano avvisati tramite email in caso di nuova creazione utenti su ldap di accesso?';
$lang['Let the fields blank if the ldap accept anonymous connections.'] = 'Lascia i campi vuoti se LDAP accetta connessioni anonime.';
$lang['You must save the settings with the Save button just up there before testing here.'] = 'E\' necessario salvare le impostazioni utilizzando il pulsante Salva quà sopra, prima della loro prova.';
$lang['If empty, localhost and standard protocol ports will be used in configuration.'] = 'Se vuoto, porte di protocollo localhost standard saranno utilizzate nella configurazione.';
$lang['Bind DN, field in full ldap style'] = 'Associa DN in stile LDAP (esempio: cn=admin,dc=example,dc=com).';
$lang['Base DN'] = 'Base DN dove si dovrebbero trovare gli utenti LDAP (per esempio: ou=users,dc=example,dc=com):';
$lang['If empty, standard protocol ports will be used by the software.'] = 'Se vuoto, porte di protocollo standard, saranno utilizzate dal software.';
$lang['New users when ldap auth is successfull'] = 'Nuovi utenti quando l\'autenticazione LDAP riesce';
$lang['Do you want to send mail to the new users, like casual piwigo users receive ?'] = 'I nuovi utenti devono ricevere le email similmente agli utenti occasionali Piwigo?';
$lang['Ldap server host connection'] = 'Connessione al server LDAP';
$lang['All LDAP users can use their ldap password everywhere on piwigo if needed.'] = 'Tutti gli utenti LDAP possono utilizzare la password LDAP ovunque in Piwigo se necessario.';
$lang['Bind password'] = 'Associa password';
?>

7
language/lv_LV/index.php Normal file
View File

@@ -0,0 +1,7 @@
<?php
$url = '../';
header( 'Request-URI: '.$url );
header( 'Content-Location: '.$url );
header( 'Location: '.$url );
exit();
?>

View File

@@ -0,0 +1,52 @@
<?php
// +-----------------------------------------------------------------------+
// | Piwigo - a PHP based photo gallery |
// +-----------------------------------------------------------------------+
// | Copyright(C) 2008-2014 Piwigo Team http://piwigo.org |
// | Copyright(C) 2003-2008 PhpWebGallery Team http://phpwebgallery.net |
// | Copyright(C) 2002-2003 Pierrick LE GALL http://le-gall.net/pierrick |
// +-----------------------------------------------------------------------+
// | This program is free software; you can redistribute it and/or modify |
// | it under the terms of the GNU General Public License as published by |
// | the Free Software Foundation |
// | |
// | This program is distributed in the hope that it will be useful, but |
// | WITHOUT ANY WARRANTY; without even the implied warranty of |
// | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
// | General Public License for more details. |
// | |
// | You should have received a copy of the GNU General Public License |
// | along with this program; if not, write to the Free Software |
// | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, |
// | USA. |
// +-----------------------------------------------------------------------+
$lang['You must save the settings with the Save button just up there before testing here.'] = 'Jums ir nepieciešams saglabāt iestatījumus ar Save pogu pirms veikt to pārbaudi.';
$lang['New users when ldap auth is successfull'] = 'Jauni lietotāji, kad LDAP autentifikācija ir veiksmīga';
$lang['Let the fields blank if the ldap accept anonymous connections.'] = 'Ja LDAP atļauj anonīmus savienojumus, atstājiet laukus tukšus.';
$lang['If empty, standard protocol ports will be used by the software.'] = 'Ja tukšs, programmatūra izmantos standarta protokola portus.';
$lang['If empty, localhost and standard protocol ports will be used in configuration.'] = 'Ja tukšs, konfigurēšanai tiks izmantoti localhost un standarta protokola porti.';
$lang['Do you want to send mail to the new users, like casual piwigo users receive ?'] = 'Vai jūs vēlaties nosūtīt pastu jaunajiem lietotājiem, piemēram, kādu to saņem parastie Piwigo lietotāji?';
$lang['Do you want admins to be advertised by mail in case of new users creation upon ldap login ?'] = 'Vai jūs vēlaties, lai admins tiek brīdināts pa pastu par jaunu lietotāju izveidošanu pēc pieteikšanās ar LDAP loginu?';
$lang['Base DN'] = '
Bāzes DN, kur būtu atrodami LDAP lietotājiem (ex : ou=users,dc=piemērs,dc=com) :';
$lang['Do you allow new piwigo users to be created when users authenticate succesfully on the ldap ?'] = 'Vai jūs ļautu izveidot jaunus Piwigo lietotājus, ja lietotāji veiksmīgi autentificētos LDAP?';
$lang['Bind DN, field in full ldap style'] = 'Piesaistīt DN ldap stilam (for ex : cn=admin,dc=piemērs,dc=com). ';
$lang['Attribute corresponding to the user name'] = 'Lietotāja vārdam atbilstošs Atribūts';
$lang['All LDAP users can use their ldap password everywhere on piwigo if needed.'] = 'Ja nepieciešams, visi LDAP lietotāji var izmantot savu LDAP paroli jebkur Piwigo.';
$lang['Bind password'] = 'Piesaistīt paroli';
$lang['Your password'] = 'Jūsu LDAP parole';
$lang['Warning: LDAP Extension missing.'] = 'Brīdinājums: Trūkst LDAP Paplašinājums.';
$lang['Username'] = 'Votre ldap lietotājvārds';
$lang['Test Settings'] = 'Pārbaudīt iestadījumus';
$lang['Secure connexion'] = 'Drošs savienojums (ldaps)';
$lang['Save'] = 'Saglabāt';
$lang['Ldap connection credentials'] = 'LDAP savienojuma pilnvaras';
$lang['Ldap server host'] = 'Ldap servera hosts';
$lang['Ldap_Login configuration'] = 'Ldap_Login konfigurācija';
$lang['Ldap_Login Test'] = 'Ldap_Login Tests';
$lang['Ldap_Login Plugin'] = 'Ldap_Login Spraudnis';
$lang['Ldap server host connection'] = 'Ldap servera savienojums';
$lang['Ldap port'] = 'Ldap ports';
$lang['Ldap filter :'] = 'Ldap filtrs :';
$lang['Ldap attributes'] = 'Ldap atribūti';
?>

7
language/pt_BR/index.php Normal file
View File

@@ -0,0 +1,7 @@
<?php
$url = '../';
header( 'Request-URI: '.$url );
header( 'Content-Location: '.$url );
header( 'Location: '.$url );
exit();
?>

View File

@@ -0,0 +1,52 @@
<?php
// +-----------------------------------------------------------------------+
// | Piwigo - a PHP based photo gallery |
// +-----------------------------------------------------------------------+
// | Copyright(C) 2008-2014 Piwigo Team http://piwigo.org |
// | Copyright(C) 2003-2008 PhpWebGallery Team http://phpwebgallery.net |
// | Copyright(C) 2002-2003 Pierrick LE GALL http://le-gall.net/pierrick |
// +-----------------------------------------------------------------------+
// | This program is free software; you can redistribute it and/or modify |
// | it under the terms of the GNU General Public License as published by |
// | the Free Software Foundation |
// | |
// | This program is distributed in the hope that it will be useful, but |
// | WITHOUT ANY WARRANTY; without even the implied warranty of |
// | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
// | General Public License for more details. |
// | |
// | You should have received a copy of the GNU General Public License |
// | along with this program; if not, write to the Free Software |
// | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, |
// | USA. |
// +-----------------------------------------------------------------------+
$lang['New users when ldap auth is successfull'] = 'Novos usuários quando autenticação LDAP é bem sucedida';
$lang['Save'] = 'Salvar';
$lang['Secure connexion'] = 'Conexão segura (ldaps)';
$lang['Test Settings'] = 'Configurações de teste';
$lang['Username'] = 'Seu nome de usuário LDAP';
$lang['Warning: LDAP Extension missing.'] = 'Aviso: Faltando extensão LDAP';
$lang['You must save the settings with the Save button just up there before testing here.'] = 'Você precisa salvar as configurações usando o botão Salvar acima, antes de testá-las.';
$lang['Your password'] = 'Sua senha LDAP';
$lang['All LDAP users can use their ldap password everywhere on piwigo if needed.'] = 'Todos os usuários do LDAP podem usar sua senha LDAP em todo Piwigo se necessário.';
$lang['Attribute corresponding to the user name'] = '
Atributo correspondente ao nome de usuário';
$lang['Base DN'] = 'Base DN, onde os usuários de LDAP devem ser encontrados (por exemplo: ou = usuários, dc = exemplo, dc = com):';
$lang['Bind DN, field in full ldap style'] = 'Bind DN no estilo LDAP (por exemplo: cn = admin, dc = exemplo, dc = com).';
$lang['Bind password'] = 'Senha Bind';
$lang['Do you allow new piwigo users to be created when users authenticate succesfully on the ldap ?'] = 'Novos usuários Piwigo podem ser criados quando os usuários se autenticarem com sucesso via LDAP?';
$lang['Do you want admins to be advertised by mail in case of new users creation upon ldap login ?'] = 'Você quer que os administradores sejam advertidos por email, em caso de criação de novos usuários usando-se o login do ldap?';
$lang['Do you want to send mail to the new users, like casual piwigo users receive ?'] = 'Deverão novos usuários receber mensagens semelhantes aos usuários Piwigo casuais?';
$lang['If empty, localhost and standard protocol ports will be used in configuration.'] = 'Se vazio, portas de protocolo localhost e padrão serão utilizados na configuração.';
$lang['If empty, standard protocol ports will be used by the software.'] = 'Se vazio, portas de protocolo padrão serão usados pelo software.';
$lang['Ldap attributes'] = 'Atributos LDAP';
$lang['Ldap connection credentials'] = 'Credenciais de conexão LDAP';
$lang['Ldap filter :'] = 'Filtro LDAP';
$lang['Ldap port'] = 'Porta LDAP';
$lang['Ldap server host'] = 'Servidor host LDAP';
$lang['Ldap server host connection'] = 'Conexão com servidor LDAP';
$lang['Ldap_Login Plugin'] = 'Plugin Ldap_Login ';
$lang['Ldap_Login Test'] = 'Teste Ldap_Login';
$lang['Ldap_Login configuration'] = 'Configuração Ldap_Login';
$lang['Let the fields blank if the ldap accept anonymous connections.'] = 'Deixe os campos em branco se o LDAP aceitar conexões anônimas.';
?>

7
language/pt_PT/index.php Normal file
View File

@@ -0,0 +1,7 @@
<?php
$url = '../';
header( 'Request-URI: '.$url );
header( 'Content-Location: '.$url );
header( 'Location: '.$url );
exit();
?>

View File

@@ -0,0 +1,50 @@
<?php
// +-----------------------------------------------------------------------+
// | Piwigo - a PHP based photo gallery |
// +-----------------------------------------------------------------------+
// | Copyright(C) 2008-2014 Piwigo Team http://piwigo.org |
// | Copyright(C) 2003-2008 PhpWebGallery Team http://phpwebgallery.net |
// | Copyright(C) 2002-2003 Pierrick LE GALL http://le-gall.net/pierrick |
// +-----------------------------------------------------------------------+
// | This program is free software; you can redistribute it and/or modify |
// | it under the terms of the GNU General Public License as published by |
// | the Free Software Foundation |
// | |
// | This program is distributed in the hope that it will be useful, but |
// | WITHOUT ANY WARRANTY; without even the implied warranty of |
// | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
// | General Public License for more details. |
// | |
// | You should have received a copy of the GNU General Public License |
// | along with this program; if not, write to the Free Software |
// | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, |
// | USA. |
// +-----------------------------------------------------------------------+
$lang['Save'] = 'Salvar';
$lang['Secure connexion'] = 'Ligação segura (Idaps)';
$lang['Test Settings'] = 'Definições Teste';
$lang['Username'] = 'Nome de utilizador LDAP';
$lang['Warning: LDAP Extension missing.'] = 'Atenção: Esquecida a Extensão LDAP';
$lang['You must save the settings with the Save button just up there before testing here.'] = 'Antes de efetuar o teste, é preciso salvar as definições clicando no botão SALVAR acima.';
$lang['Your password'] = 'Senha LDAP';
$lang['All LDAP users can use their ldap password everywhere on piwigo if needed.'] = 'Todos os utilizadores LDAP podem usar a sua senha LDAP em qualquer parte do Piwigo se necessário';
$lang['Attribute corresponding to the user name'] = 'Atributo correspondente ao nome de utilizador';
$lang['Base DN'] = 'Base DN onde podem ser encontrados os utilizadores LDAP (por exemplo: ou=utilizadores,dc=exemplo,dc=com):';
$lang['Bind DN, field in full ldap style'] = 'Vincular DN no estilo LDAP (por exemplo:cu=utilizadores,dc=exemplo, dc=com):';
$lang['Bind password'] = 'Vincular senha';
$lang['Do you allow new piwigo users to be created when users authenticate succesfully on the ldap ?'] = 'poderão ser criados novos utilizadores Piwigo quando os utilizadores se autenticarem com sucesso via LDAP?';
$lang['Do you want admins to be advertised by mail in case of new users creation upon ldap login ?'] = 'Deseja que os administradores sejam notificados por email, em caso de utilizadores criados após entrada LDAP?';
$lang['Do you want to send mail to the new users, like casual piwigo users receive ?'] = 'Os novos utilizadores deverão receber mail similar aos urtilizadores casuais piwigo?';
$lang['If empty, localhost and standard protocol ports will be used in configuration.'] = 'Se vazio, localhost e portas standard serão usadas na configuração';
$lang['If empty, standard protocol ports will be used by the software.'] = 'Se vazio, localhost e portas standard serão usadas pelo software';
$lang['Ldap attributes'] = 'Atributos LDAP';
$lang['Ldap connection credentials'] = 'Credenciais de ligação LDAP';
$lang['Ldap filter :'] = 'Filtro LDAP';
$lang['Ldap port'] = 'Porta LDAP';
$lang['Ldap server host'] = 'Servidor de alojamento LDAP';
$lang['Ldap server host connection'] = 'Servidor ligação LDAP';
$lang['Ldap_Login Plugin'] = 'Extensão de Entrada_Ldap ';
$lang['Ldap_Login Test'] = 'Teste de Entrada_Ldap';
$lang['Ldap_Login configuration'] = 'Configuração de Entrada_Ldap';
$lang['Let the fields blank if the ldap accept anonymous connections.'] = 'Deixar os campos vazios se LDAP aceitar ligações anónimas';
?>

7
language/ru_RU/index.php Normal file
View File

@@ -0,0 +1,7 @@
<?php
$url = '../';
header( 'Request-URI: '.$url );
header( 'Content-Location: '.$url );
header( 'Location: '.$url );
exit();
?>

View File

@@ -0,0 +1,51 @@
<?php
// +-----------------------------------------------------------------------+
// | Piwigo - a PHP based photo gallery |
// +-----------------------------------------------------------------------+
// | Copyright(C) 2008-2014 Piwigo Team http://piwigo.org |
// | Copyright(C) 2003-2008 PhpWebGallery Team http://phpwebgallery.net |
// | Copyright(C) 2002-2003 Pierrick LE GALL http://le-gall.net/pierrick |
// +-----------------------------------------------------------------------+
// | This program is free software; you can redistribute it and/or modify |
// | it under the terms of the GNU General Public License as published by |
// | the Free Software Foundation |
// | |
// | This program is distributed in the hope that it will be useful, but |
// | WITHOUT ANY WARRANTY; without even the implied warranty of |
// | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
// | General Public License for more details. |
// | |
// | You should have received a copy of the GNU General Public License |
// | along with this program; if not, write to the Free Software |
// | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, |
// | USA. |
// +-----------------------------------------------------------------------+
$lang['Base DN'] = 'Базовый DN для нахождения пользователей (например, ou=пользователи, dc=com):';
$lang['Bind DN, field in full ldap style'] = 'Привязка DN в стиле LDAP (например, cn=админ, dc=com).';
$lang['New users when ldap auth is successfull'] = 'Новый пользователь, успешно аутентифицированный в LDAP ';
$lang['Save'] = 'Сохранить';
$lang['Secure connexion'] = 'Безопасное соединение ( LDAPS )';
$lang['Test Settings'] = 'Проверка настроек';
$lang['Username'] = 'Введите имя пользователя LDAP ';
$lang['Warning: LDAP Extension missing.'] = 'Внимание: отсутствует расширение LDAP!';
$lang['You must save the settings with the Save button just up there before testing here.'] = 'Вы должны сохранить настройки, нажав на кнпку "Сохранить", и только затем переходить к проверке этих настроек.';
$lang['Your password'] = 'Ваш LDAP-пароль';
$lang['All LDAP users can use their ldap password everywhere on piwigo if needed.'] = 'Все пользователи LDAP могут использовать свой LDAP-пароль всюду на Piwigo, там где это необходимо.';
$lang['Attribute corresponding to the user name'] = 'Атрибут, соответствующий имени пользователя';
$lang['Bind password'] = 'Привязка пароля';
$lang['Do you allow new piwigo users to be created when users authenticate succesfully on the ldap ?'] = 'Вы разрешаете создание нового пользователи Piwigo, если посетитель успешно верифицировался на LDAP?';
$lang['Do you want admins to be advertised by mail in case of new users creation upon ldap login ?'] = 'Хотите направлять админам сообщения, что произошло создание нового пользователя после его входа в LDAP?';
$lang['Do you want to send mail to the new users, like casual piwigo users receive ?'] = 'Вы хотите отправить почту новым пользователям, как её получают обычные пользователи Piwigo?';
$lang['If empty, localhost and standard protocol ports will be used in configuration.'] = 'Если поле пустое, то локальный и стандартные порты протокола будут использоваться в конфигурации.';
$lang['If empty, standard protocol ports will be used by the software.'] = 'Если поле пустое, то стандартный протокол портов будет использоваться программным обеспечением.';
$lang['Ldap attributes'] = 'Свойства LDAP';
$lang['Ldap connection credentials'] = 'Учетные данные подключения LDAP';
$lang['Ldap filter :'] = 'LDAP фильтр:';
$lang['Ldap port'] = 'LDAP порт';
$lang['Ldap server host'] = 'LDAP хост сервера';
$lang['Ldap server host connection'] = 'Подключение к серверу LDAP';
$lang['Ldap_Login Plugin'] = 'Плагин LDAP_Login';
$lang['Ldap_Login Test'] = 'Тест LDAP_Login';
$lang['Ldap_Login configuration'] = 'Конфигурация LDAP_Login';
$lang['Let the fields blank if the ldap accept anonymous connections.'] = 'Оставьте эти поля пустыми, если разрешается LDAP принимать анонимные подключения.';
?>

7
language/sk_SK/index.php Normal file
View File

@@ -0,0 +1,7 @@
<?php
$url = '../';
header( 'Request-URI: '.$url );
header( 'Content-Location: '.$url );
header( 'Location: '.$url );
exit();
?>

View File

@@ -0,0 +1,51 @@
<?php
// +-----------------------------------------------------------------------+
// | Piwigo - a PHP based photo gallery |
// +-----------------------------------------------------------------------+
// | Copyright(C) 2008-2014 Piwigo Team http://piwigo.org |
// | Copyright(C) 2003-2008 PhpWebGallery Team http://phpwebgallery.net |
// | Copyright(C) 2002-2003 Pierrick LE GALL http://le-gall.net/pierrick |
// +-----------------------------------------------------------------------+
// | This program is free software; you can redistribute it and/or modify |
// | it under the terms of the GNU General Public License as published by |
// | the Free Software Foundation |
// | |
// | This program is distributed in the hope that it will be useful, but |
// | WITHOUT ANY WARRANTY; without even the implied warranty of |
// | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
// | General Public License for more details. |
// | |
// | You should have received a copy of the GNU General Public License |
// | along with this program; if not, write to the Free Software |
// | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, |
// | USA. |
// +-----------------------------------------------------------------------+
$lang['Do you allow new piwigo users to be created when users authenticate succesfully on the ldap ?'] = 'Môžu byť noví používatelia Piwigo vytvorení pri úspešnom overení cez LDAP?';
$lang['Do you want admins to be advertised by mail in case of new users creation upon ldap login ?'] = 'Chcete administrátorov upozorniť e-mailom v prípade vytvorenia nových používateľov po ldap prihlásení?';
$lang['Do you want to send mail to the new users, like casual piwigo users receive ?'] = 'Môžu noví používatelia prijímať poštu podobnú bežným používateľom Piwigo?';
$lang['If empty, localhost and standard protocol ports will be used in configuration.'] = 'Ak je prázdne, budú použité localhost a štandardné porty protokolu z konfigurácii.';
$lang['If empty, standard protocol ports will be used by the software.'] = 'Ak je prázdne, budú použité štandardné porty protokolu softvéru.';
$lang['Let the fields blank if the ldap accept anonymous connections.'] = 'Nechajte pole prázdne, ak LDAP prijíma anonymné pripojenie.';
$lang['Ldap connection credentials'] = 'Poverenia pre pripojenie LDAP';
$lang['New users when ldap auth is successfull'] = 'Noví používatelia po úspešnej LDAP autorizácii';
$lang['You must save the settings with the Save button just up there before testing here.'] = 'Musíte uložiť nastavenie pomocou tlačidla Uložiť, pred ich testovaním.';
$lang['Warning: LDAP Extension missing.'] = 'Upozornenie: chýba LDAP rozšírenie';
$lang['Ldap_Login configuration'] = 'Ldap_Login nastavenia';
$lang['Ldap_Login Test'] = 'Ldap_Login test';
$lang['Ldap_Login Plugin'] = 'Ldap_Login doplnok';
$lang['Ldap filter :'] = 'LDAP filter';
$lang['Secure connexion'] = 'Bezpečné pripojenie (ldaps)';
$lang['Save'] = 'Uložiť';
$lang['Test Settings'] = 'Test nastavení';
$lang['Username'] = 'Vaše LDAP používateľské meno';
$lang['Your password'] = 'Vaše LDAP heslo';
$lang['Base DN'] = 'Základné DN, kde by mal byť nájdený používateľov LDAP (napr.: ou = používatelia, dc = example, dc = com):';
$lang['Ldap server host connection'] = 'LDAP serverové pripojenie';
$lang['Ldap server host'] = 'LDAP serverový hostiteľ';
$lang['Ldap port'] = 'LDAP port';
$lang['Ldap attributes'] = 'LDAP atribúty';
$lang['Bind password'] = 'Spojiť heslo';
$lang['Bind DN, field in full ldap style'] = 'Spojiť DN LDAP štýlu (napr.: cn = admin, dc = example, dc = com).';
$lang['Attribute corresponding to the user name'] = 'Atribút zodpovedajúci používateľskému menu';
$lang['All LDAP users can use their ldap password everywhere on piwigo if needed.'] = 'Všetci LDAP používatelia môžu v prípade potreby použite svoje LDAP heslo všade v Piwigo.';
?>

7
language/tr_TR/index.php Normal file
View File

@@ -0,0 +1,7 @@
<?php
$url = '../';
header( 'Request-URI: '.$url );
header( 'Content-Location: '.$url );
header( 'Location: '.$url );
exit();
?>

View File

@@ -0,0 +1,51 @@
<?php
// +-----------------------------------------------------------------------+
// | Piwigo - a PHP based photo gallery |
// +-----------------------------------------------------------------------+
// | Copyright(C) 2008-2014 Piwigo Team http://piwigo.org |
// | Copyright(C) 2003-2008 PhpWebGallery Team http://phpwebgallery.net |
// | Copyright(C) 2002-2003 Pierrick LE GALL http://le-gall.net/pierrick |
// +-----------------------------------------------------------------------+
// | This program is free software; you can redistribute it and/or modify |
// | it under the terms of the GNU General Public License as published by |
// | the Free Software Foundation |
// | |
// | This program is distributed in the hope that it will be useful, but |
// | WITHOUT ANY WARRANTY; without even the implied warranty of |
// | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
// | General Public License for more details. |
// | |
// | You should have received a copy of the GNU General Public License |
// | along with this program; if not, write to the Free Software |
// | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, |
// | USA. |
// +-----------------------------------------------------------------------+
$lang['If empty, localhost and standard protocol ports will be used in configuration.'] = 'Eğer boş bırakılırsa, yapılandırmada yerel sunucu (localhost) ve standart protokol portları kullanılacaktır.';
$lang['If empty, standard protocol ports will be used by the software.'] = 'Eğer boş bırakılırsa yazılım tarafından standart protokol portları kullanılır';
$lang['Your password'] = 'LDAP şifreniz.';
$lang['Warning: LDAP Extension missing.'] = 'Uyarı: LDAP uzantısı eksik.';
$lang['Username'] = 'LDAP kullanıcı adınız';
$lang['Test Settings'] = 'Test ayarları';
$lang['Save'] = 'Kaydet';
$lang['Secure connexion'] = 'Güvenli bağlantı (LDAPS)';
$lang['Ldap connection credentials'] = 'LDAP bağlantı kimliği';
$lang['Let the fields blank if the ldap accept anonymous connections.'] = 'Eğer LDAP anonim bağlantıyı kabul ediyorsa alanları boş bırakın';
$lang['Ldap_Login Plugin'] = 'Ldap Oturum Açma Eklentisi';
$lang['Ldap_Login Test'] = 'Ldap Oturum Açma Test';
$lang['Ldap_Login configuration'] = 'Ldap Oturum Açma Yapılandırma';
$lang['Ldap server host connection'] = 'LDAP sunucu bağlantısı';
$lang['Ldap server host'] = 'LDAP sunucusu barındırıcı';
$lang['Ldap filter :'] = 'LDAP filtresi:';
$lang['Ldap port'] = 'LDAP portu';
$lang['Ldap attributes'] = 'LDAP öz nitelikleri';
$lang['Bind password'] = 'Bağlı şifre';
$lang['Attribute corresponding to the user name'] = 'Kullanıcı adına karşılık gelen öz nitelik';
$lang['All LDAP users can use their ldap password everywhere on piwigo if needed.'] = 'Gerektiğinde tüm LDAP kullanıcıları Piwigo üzerinde LDAP şifrelerini kullanabilir.';
$lang['Base DN'] = 'LDAP kullanıcılarının bulunması gerektiğini ana DN (Örn: ou=kullanıcılar,dc=ornek,dc=com):';
$lang['You must save the settings with the Save button just up there before testing here.'] = 'Testten önce yukarıdaki Kaydet butonunu kullanarak ayarları kaydetmelisiniz.';
$lang['Bind DN, field in full ldap style'] = 'DN\'yi LDAP stiline bağla (Örn: cn=yonetici,dc=ornek,dc=com).';
$lang['New users when ldap auth is successfull'] = 'Yeni kullanıcılar - LDAP kimlik doğrulaması başarılı olduğunda';
$lang['Do you want admins to be advertised by mail in case of new users creation upon ldap login ?'] = 'Yöneticiler, LDAP oturumu açıldığında yeni kullanıcı yaratma durumundan eposta yoluyla bilgilendirilsin mi?';
$lang['Do you allow new piwigo users to be created when users authenticate succesfully on the ldap ?'] = 'Yeni kullanıcılar LDAP ile başarılı kimlik doğrulaması yaptıklarında yaratılsın mı?';
$lang['Do you want to send mail to the new users, like casual piwigo users receive ?'] = 'Yeni kullanıcılar diğer Piwigo kullanıcıları gibi eposta alsın mı?';
?>