Skip to content

Commit

Permalink
Merge branch 'release/v2.4.4'
Browse files Browse the repository at this point in the history
  • Loading branch information
alexusmai committed Sep 16, 2019
2 parents 821739d + 5fb7726 commit 6ba16dc
Show file tree
Hide file tree
Showing 7 changed files with 48 additions and 10 deletions.
7 changes: 7 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# Contributing

> Contributions are welcome, and are accepted via pull requests.
## Pull requests

Please ensure all pull requests are made against the `develop` branch on GitHub.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@
* Events (v2.2)
* Thumbnails lazy load
* Dynamic configuration (v2.4)
* Supported locales : ru, en, ar, sr, cs
* Supported locales : ru, en, ar, sr, cs, de

## Laravel 6

Expand Down Expand Up @@ -127,5 +127,6 @@ If you use the ACL, now you don't need to add the acl middleware to configuratio
* NeoSon [lkloon123](https://github.com/lkloon123)
* Aleksandar Stevanović [aleks989](https://github.com/aleks989)
* Aleš Nejdr [mige](https://github.com/mige)
* Tobias Matthaiou [TumTum](https://github.com/TumTum)


2 changes: 1 addition & 1 deletion docs/integration.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ tinymce.init({
width : x * 0.8,
height : y * 0.8,
onMessage: (api, message) => {
callback(message.content)
callback(message.content, { text: message.text })
}
})
}
Expand Down
12 changes: 6 additions & 6 deletions resources/assets/js/file-manager.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion resources/assets/js/file-manager.js.map

Large diffs are not rendered by default.

29 changes: 29 additions & 0 deletions resources/lang/de/response.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
<?php

return [
'noConfig' => 'Konfiguration nicht gefunden!',
'notFound' => 'Nicht gefunden!',
'diskNotFound' => 'Festplatte nicht gefunden!',
'pathNotFound' => 'Pfad nicht gefunden!',
'diskSelected' => 'Festplatte ausgewählt!',
// files
'fileExist' => 'Datei existiert bereits!',
'fileCreated' => 'Datei erstellt!',
'fileUpdated' => 'Datei wurde aktualisiert!',
'fileNotFound' => 'Datei nicht gefunden!',
// directories
'dirExist' => 'Ordner existiert bereits!',
'dirCreated' => 'Ordner angelegt!',
'dirNotFound' => 'Ordner nicht gefunden',
// actions
'uploaded' => 'Alle Dateien wurden hochgeladen!',
'notAllUploaded' => 'Einige Dateien wurden nicht hochgeladen!',
'delNotFound' => 'Einige Dateien wurden nicht gefunden!',
'deleted' => 'Gelöscht!',
'renamed' => 'Umbenannt!',
'copied' => 'Erfolgreich kopiert!',
// zip
'zipError' => 'Fehler bei der Erstellung des Archivs!',
// acl
'aclError' => 'Zugriff verweigert!',
];
3 changes: 2 additions & 1 deletion resources/views/tinymce5.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,8 @@
// pass selected file path to TinyMCE
parent.postMessage({
mceAction: 'insert',
content: URL
content: URL,
text: URL.split('/').pop()
})
// close popup window
parent.postMessage({ mceAction: 'close' });
Expand Down

0 comments on commit 6ba16dc

Please sign in to comment.