mirror of
https://github.com/shlinkio/shlink.git
synced 2024-11-28 09:03:07 +03:00
15 lines
257 B
PHP
15 lines
257 B
PHP
|
<?php
|
||
|
return [
|
||
|
|
||
|
'translator' => [
|
||
|
'translation_file_patterns' => [
|
||
|
[
|
||
|
'type' => 'gettext',
|
||
|
'base_dir' => __DIR__ . '/../lang',
|
||
|
'pattern' => '%s.mo',
|
||
|
],
|
||
|
],
|
||
|
],
|
||
|
|
||
|
];
|