delete settings1

This commit is contained in:
Erkan IŞIK
2026-07-01 16:46:02 +03:00
parent b58488b586
commit 7d5b3c6d04
8 changed files with 0 additions and 542 deletions
-114
View File
@@ -1,114 +0,0 @@
<?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']
]
]
];