Files
web-site/Internal/package-database/DatabaseDefaultLanguage.php
T
2026-07-01 16:44:17 +03:00

50 lines
1.9 KiB
PHP
Raw 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 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ı.'
];
}