Skip to content

Commit

Permalink
Fix language path
Browse files Browse the repository at this point in the history
  • Loading branch information
jenky committed Apr 5, 2016
1 parent 495bcb4 commit 9a9744a
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 7 deletions.
12 changes: 12 additions & 0 deletions resources/lang/en/ui.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,18 @@
<?php

return [

/*
|--------------------------------------------------------------------------
| Upload Language Lines
|--------------------------------------------------------------------------
|
| The following language lines are used by plupload package for various
| messages and places that we need to display to the user.
|
*/

'browse' => 'Browse',
'upload' => 'Upload',

];
6 changes: 0 additions & 6 deletions resources/lang/zh-CN/ui.php

This file was deleted.

2 changes: 1 addition & 1 deletion src/PluploadServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ protected function setupConfig()
$this->publishes([
$viewsPath => base_path('resources/views/vendor/plupload'),
$assetsPath.'/js' => base_path('resources/assets/plupload'),
$translationsPath => base_path('resources/lang'),
$translationsPath => base_path('resources/lang/vendor/plupload'),
]);
}

Expand Down

0 comments on commit 9a9744a

Please sign in to comment.