forked from broncowdd/BoZoN
-
Notifications
You must be signed in to change notification settings - Fork 0
/
lang.php
56 lines (51 loc) · 2.33 KB
/
lang.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<?php
/**
* BoZoN languahe file:
* sets all the messages in various languages
* to add one, simply copy paste the french one and change all the values: the array's keys must stay the same !
* @author: Bronco ([email protected])
**/
$lang=array();
# ENGLISH (by default)
$lang['en']=array();
# FRENCH
$lang['fr']=array(
'Drag, drop, share.'=>'Glisse, dépose, partage.',
'Search in the uploaded files'=>'Rechercher dans les fichiers uploadés',
'Filter'=>'Mot-clé',
'Drag the file you want to share to upload it on the server'=>'glisser le fichier à partager pour l\'envoyer sur ton serveur',
'Copy the file\'s link (right click on it)'=>'copier le lien du fichier (clic bouton droit, copier le lien)',
'Share the link with your buddies...'=>'partager le lien avec les autres...',
'tiny file sharing app, coded with love and php by '=>'mini app de partage de fichier, codée avec amour et php par ',
'Logout'=>'Deconnexion',
'Type to filter the list'=>'Filtrer la liste',
'Drop your files here'=>'Glisser les fichiers ici',
'Please, login'=>'Connectez-vous',
'Create your account'=>'Créez votre compte',
'Login'=>'Login',
'Password'=>'Passe',
'Stay connected'=>'Rester connecté',
'No file on the server'=>'Aucun fichier sur le serveur',
'Delete this file ?'=>'Supprimer ce fichier ?',
);
# ESPANOL
$lang['es']=array(
'Drag, drop, share.'=>'Arrastra, deposita, comparte.',
'Search in the uploaded files'=>'Buscar en los ficheros del servidor',
'Filter'=>'Filtrar',
'Drag the file you want to share to upload it on the server'=>'Deposita el fichero que quieras subir al servidor',
'Copy the file\'s link (right click on it)'=>'Copia el enlace del fichero (haz un clic con el botón derecho y copia el enlace)',
'Share the link with your buddies...'=>'Comparte la dirección con los demás...',
'tiny file sharing app, coded with love and php by '=>'Mini utilidad para compartir ficheros, creada con amor y php por ',
'Logout'=>'Salir',
'Type to filter the list'=>'Filtrar la lista',
'Drop your files here'=>'Deposita los ficheros aquí',
'Please, login'=>'Conéctate',
'Create your account'=>'Crea tu cuenta admin',
'Login'=>'Login',
'Password'=>'Contrasena',
'Stay connected'=>'Permanecer conectado',
'No file on the server'=>'Ningún fichero en el servidor',
'Delete this file ?'=>'¿ Borrar este fichero ?',
);
?>