115 lines
3.5 KiB
PHP
115 lines
3.5 KiB
PHP
<?php return
|
||
[
|
||
/*
|
||
|--------------------------------------------------------------------------
|
||
| Regex
|
||
|--------------------------------------------------------------------------
|
||
|
|
||
| You can specify your custom regular expressions that
|
||
| you want to use for the route.
|
||
|
|
||
*/
|
||
|
||
'regex' =>
|
||
[
|
||
'{id}' => '[0-9]+'
|
||
],
|
||
|
||
/*
|
||
|--------------------------------------------------------------------------
|
||
| Symbols
|
||
|--------------------------------------------------------------------------
|
||
|
|
||
| You can create usable expressions with the Symbol library.
|
||
|
|
||
| Example: Symbol::sum()
|
||
|
|
||
*/
|
||
|
||
'symbols' =>
|
||
[
|
||
'sum' => '∑', // ∑
|
||
'empty' => '∅' // ∅
|
||
],
|
||
|
||
/*
|
||
|--------------------------------------------------------------------------
|
||
| Mimem Types
|
||
|--------------------------------------------------------------------------
|
||
|
|
||
| You can create new types of mime that are available with Mime library.
|
||
|
|
||
| Example: Mime::xlsxx()
|
||
|
|
||
*/
|
||
|
||
'mimeTypes' => [],
|
||
|
||
/*
|
||
|--------------------------------------------------------------------------
|
||
| Accent Chars
|
||
|--------------------------------------------------------------------------
|
||
|
|
||
| You can specify the characters you want to be converted with the
|
||
| Converter::accent() method.
|
||
|
|
||
*/
|
||
|
||
'accentChars' =>
|
||
[
|
||
'œ' => 'oe',
|
||
'ü' => 'u'
|
||
],
|
||
|
||
/*
|
||
|--------------------------------------------------------------------------
|
||
| Different Font Extensions
|
||
|--------------------------------------------------------------------------
|
||
|
|
||
| Default fonts SVG, WOFF, EOT, OTF, TTF. You can also specify types that
|
||
| can be called with the Import::font() method.
|
||
|
|
||
*/
|
||
|
||
'differentFontExtensions' => [],
|
||
|
||
/*
|
||
|--------------------------------------------------------------------------
|
||
| Document Types
|
||
|--------------------------------------------------------------------------
|
||
|
|
||
| Apart from the built-in document type, you can add the document type
|
||
| yourself. You can use these definitions with Masterpage.
|
||
|
|
||
*/
|
||
|
||
'doctypes' => [],
|
||
|
||
/*
|
||
|--------------------------------------------------------------------------
|
||
| Date Languages
|
||
|--------------------------------------------------------------------------
|
||
|
|
||
| Language equivalents for the Date class, depending on the language.
|
||
|
|
||
*/
|
||
|
||
'date' =>
|
||
[
|
||
'tr' =>
|
||
[
|
||
'months' => ['Ocak', 'Şubat', 'Mart', 'Nisan', 'Mayıs', 'Haziran', 'Temmuz', 'Ağustos', 'Eylül', 'Ekim', 'Kasım', 'Aralık'],
|
||
'shortMonths' => ['Oca', 'Şub', 'Mar', 'Nis', 'May', 'Haz', 'Tem', 'Ağu', 'Eyl', 'Eki', 'Kas', 'Ara'],
|
||
'weekdays' => ['Pazar', 'Pazartesi', 'Salı', 'Çarşamba', 'Perşembe', 'Cuma', 'Cumartesi'],
|
||
'shortWeekdays' => ['Paz', 'Pts', 'Sal', 'Çar', 'Per', 'Cum', 'Cts']
|
||
],
|
||
'en' =>
|
||
[
|
||
'months' => ['January', 'February', 'March', 'April', 'May', 'June', 'July', 'August', 'September', 'October', 'November', 'December'],
|
||
'shortMonths' => ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'],
|
||
'weekdays' => ['Sunday', 'Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday', 'Saturday'],
|
||
'shortWeekdays' => ['Sun', 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat']
|
||
]
|
||
]
|
||
];
|