Files
2026-07-01 16:44:17 +03:00

115 lines
3.5 KiB
PHP
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<?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' => '&#8721;', // ∑
'empty' => '&#8709;' // ∅
],
/*
|--------------------------------------------------------------------------
| 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']
]
]
];