Skip to content

Commit dc78f73

Browse files
committed
Merge branch 'master' of git://github.com/UniSharp/laravel-filemanager
2 parents 9bfe0c0 + b27af5d commit dc78f73

File tree

3 files changed

+23
-11
lines changed

3 files changed

+23
-11
lines changed

LICENSE

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
The MIT License (MIT)
22

3+
Copyright (c) 2015 Trevor Sawler <https://github.com/tsawler>
4+
Copyright (c) 2015 All contributors from GitHub
35
Copyright (c) 2015 UniSharp
46

57
Permission is hereby granted, free of charge, to any person obtaining a copy

README.md

Lines changed: 15 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,18 @@
11
# laravel-filemanager
22

3+
PR is welcome.
4+
35
## Overview
46

5-
* Fork from [tsawler/laravel-filemanager](http://packalyst.com/packages/package/tsawler/laravel-filemanager)
6-
* support public and private folders for multi users
7-
* customizable views, routes and middlewares
8-
* supported locales : en, fr, zh-TW, zh-CN
7+
* The project was forked from [tsawler/laravel-filemanager](http://packalyst.com/packages/package/tsawler/laravel-filemanager)
8+
* Support public and private folders for multi users
9+
* Customizable views, routes and middlewares
10+
* Supported locales : en, fr, zh-TW, zh-CN
911

1012
## Requirements
1113

1214
* php >= 5.5
13-
* Laravel 5 (working to support Laravel 4)
15+
* Laravel 5
1416
* requires [intervention/image](https://github.com/Intervention/image)(to make thumbs, crop and resize images).
1517

1618
## Installation
@@ -123,3 +125,11 @@ In `config/lfm.php` :
123125
```bash
124126
cp -rf vendor/unisharp/laravel-filemanager/src/views/ resources/views/vendor/laravel-filemanager/
125127
```
128+
129+
## Credits
130+
* All contibutors from GitHub. (issues / PR)
131+
* Special thanks to
132+
* [@taswler](https://github.com/tsawler) the author.
133+
* [@welcoMattic](https://github.com/welcoMattic) providing fr locale and lots of bugfixes.
134+
* [@olivervogel](https://github.com/olivervogel) for the awesome [image library](https://github.com/Intervention/image)
135+
* [@UniSharp members](https://github.com/UniSharp)

src/lang/fr/lfm.php

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -33,12 +33,12 @@
3333
'message-name' => 'Nom du dossier:',
3434
'message-rename' => 'Renommer le dossier:',
3535

36-
'error-rename' => 'File name already in use!',
37-
'error-file-empty' => 'You must choose a file!',
38-
'error-file-exist' => 'A file with this name already exists!',
39-
'error-delete' => 'You cannot delete this folder because it is not empty!',
40-
'error-folder-name' => 'Folder name cannot be empty!',
41-
'error-folder-exist'=> 'A folder with this name already exists!',
36+
'error-rename' => 'Ce nom est déjà pris !',
37+
'error-file-empty' => 'Veuillez choisir un fichier',
38+
'error-file-exist' => 'Un fichier avec ce nom existe déjà !',
39+
'error-delete' => 'Vous ne pouvez pas supprimer ce dossier car il n'est pas vide,
40+
'error-folder-name' => 'Le nom du dossier ne peut pas être vide',
41+
'error-folder-exist'=> 'Un dossier avec ce nom existe déjà !',
4242

4343
'btn-upload' => 'Envoyer le fichier',
4444
'btn-close' => 'Fermer',

0 commit comments

Comments
 (0)