new pisilinux web sites

This commit is contained in:
Erkan IŞIK
2026-07-01 16:44:17 +03:00
commit b58488b586
21740 changed files with 2066209 additions and 0 deletions
@@ -0,0 +1,49 @@
<?php namespace ZN\Database;
/**
* ZN PHP Web Framework
*
* "Simplicity is the ultimate sophistication." ~ Da Vinci
*
* @package ZN
* @license MIT [http://opensource.org/licenses/MIT]
* @author Ozan UYKUN [ozan@znframework.com]
*/
/**
* Default Configuration
*
* Enabled when the language file can not be accessed.
*/
class DatabaseDefaultLanguage
{
/*
|--------------------------------------------------------------------------
| Database
|--------------------------------------------------------------------------
|
| The language of the Database library.
|
*/
public $en =
[
'tableNotExistsError' => '`%` table is not exists!',
'updateError' => 'Update not performed!',
'connectError' => 'ERROR: Database connection error! Please check your connection settings.',
'duplicateCheckError' => '`%` Column or Columns could not be added because it has the same value as before!',
'optimizeTablesSuccess' => 'The optimization process was completed successfully.',
'backupTablesSuccess' => 'The backup process was completed successfully.',
'repairTablesSuccess' => 'The repair process was completed successfully.'
];
public $tr =
[
'tableNotExistsError' => '`%` tablosu bulunamadı!',
'updateError' => 'Güncelleme işlemi gerçekleştirilemedi!',
'connectError' => 'HATA: Veritabanı bağlantısı sağlanamadı! Lütfen bağlantı ayarlarınızı kontrol edin.',
'duplicateCheckError' => '`%` sütun veya sütunları daha önce aynı değere sahip olduğu için eklenemedi!',
'optimizeTablesSuccess' => 'Optimizasyon işlemi başarı ile tamamlandı.',
'backupTablesSuccess' => 'Yedekleme işlemi başarı ile tamamlandı.',
'repairTablesSuccess' => 'Onarma işlemi başarı ile tamamlandı.'
];
}