mirror of
https://github.com/shlinkio/shlink.git
synced 2024-11-29 12:04:13 -06:00
17 lines
283 B
PHP
17 lines
283 B
PHP
<?php
|
|
declare(strict_types=1);
|
|
|
|
return [
|
|
|
|
'translator' => [
|
|
'translation_file_patterns' => [
|
|
[
|
|
'type' => 'gettext',
|
|
'base_dir' => __DIR__ . '/../lang',
|
|
'pattern' => '%s.mo',
|
|
],
|
|
],
|
|
],
|
|
|
|
];
|