mirror of
https://github.com/filegator/filegator.git
synced 2025-07-31 10:00:11 +02:00
Ukrainian added, version bump
This commit is contained in:
@@ -2,6 +2,9 @@
|
|||||||
|
|
||||||
## Upcoming...
|
## Upcoming...
|
||||||
|
|
||||||
|
## 7.11.1 - 2024-11-27
|
||||||
|
* Ukrainian translations added, thanks @jekasumy @jaapmarcus
|
||||||
|
|
||||||
## 7.11.0 - 2024-10-28
|
## 7.11.0 - 2024-10-28
|
||||||
* Improved LDAP adapter, thanks @ahaenggli
|
* Improved LDAP adapter, thanks @ahaenggli
|
||||||
* Fix file permissions, thanks @yahesh
|
* Fix file permissions, thanks @yahesh
|
||||||
|
@@ -84,7 +84,6 @@ This is read-only demo with guest account enabled
|
|||||||
- Zip and bulk download support
|
- Zip and bulk download support
|
||||||
- Highly extensible, decoupled and tested code
|
- Highly extensible, decoupled and tested code
|
||||||
- No database required
|
- No database required
|
||||||
- Framework free [™](https://www.youtube.com/watch?v=L5jI9I03q8E)
|
|
||||||
|
|
||||||
## Limitations
|
## Limitations
|
||||||
- Symlinks are not supported by the underlying [Flysystem](https://flysystem.thephpleague.com/v1/docs/adapter/local/)
|
- Symlinks are not supported by the underlying [Flysystem](https://flysystem.thephpleague.com/v1/docs/adapter/local/)
|
||||||
|
2
dist/index.php
vendored
2
dist/index.php
vendored
@@ -36,7 +36,7 @@ if (! defined('APP_PUBLIC_PATH')) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
define('APP_PUBLIC_DIR', __DIR__);
|
define('APP_PUBLIC_DIR', __DIR__);
|
||||||
define('APP_VERSION', '7.11.0');
|
define('APP_VERSION', '7.11.1');
|
||||||
|
|
||||||
use Filegator\App;
|
use Filegator\App;
|
||||||
use Filegator\Config\Config;
|
use Filegator\Config\Config;
|
||||||
|
@@ -28,7 +28,6 @@ File upload supports drag&drop, progress bar, pause and resume. Upload is chunke
|
|||||||
- Zip and bulk download support
|
- Zip and bulk download support
|
||||||
- Highly extensible, decoupled and tested code
|
- Highly extensible, decoupled and tested code
|
||||||
- No database required
|
- No database required
|
||||||
- Framework free [™](https://www.youtube.com/watch?v=L5jI9I03q8E)
|
|
||||||
|
|
||||||
## Demo
|
## Demo
|
||||||
[https://demo.filegator.io](https://demo.filegator.io)
|
[https://demo.filegator.io](https://demo.filegator.io)
|
||||||
|
@@ -37,6 +37,7 @@ Available languages:
|
|||||||
- ```portuguese_br``` (brazilian portuguese pt-BR)
|
- ```portuguese_br``` (brazilian portuguese pt-BR)
|
||||||
- ```persian```
|
- ```persian```
|
||||||
- ```estonian```
|
- ```estonian```
|
||||||
|
- ```ukrainian```
|
||||||
|
|
||||||
Please help us translating FileGator to your language by submitting a Pull Request on GitHub.
|
Please help us translating FileGator to your language by submitting a Pull Request on GitHub.
|
||||||
|
|
||||||
|
@@ -34,6 +34,7 @@ import arabic from '../translations/arabic'
|
|||||||
import portuguese_br from '../translations/portuguese_br'
|
import portuguese_br from '../translations/portuguese_br'
|
||||||
import persian from '../translations/persian'
|
import persian from '../translations/persian'
|
||||||
import estonian from '../translations/estonian'
|
import estonian from '../translations/estonian'
|
||||||
|
import ukrainian from '../translations/ukrainian'
|
||||||
|
|
||||||
const funcs = {
|
const funcs = {
|
||||||
methods: {
|
methods: {
|
||||||
@@ -76,6 +77,7 @@ const funcs = {
|
|||||||
'portuguese_br': portuguese_br,
|
'portuguese_br': portuguese_br,
|
||||||
'persian': persian,
|
'persian': persian,
|
||||||
'estonian': estonian,
|
'estonian': estonian,
|
||||||
|
'ukrainian': ukrainian,
|
||||||
}
|
}
|
||||||
|
|
||||||
let language = store.state.config.language
|
let language = store.state.config.language
|
||||||
|
Reference in New Issue
Block a user