Refactored the language config setting.

This commit is contained in:
Alex Tselegidis 2016-01-21 20:04:55 +01:00
parent 728c740173
commit b69ad58853
2 changed files with 65 additions and 56 deletions

View file

@ -82,8 +82,19 @@ $config['url_suffix'] = '';
| than english. | than english.
| |
*/ */
$config['language'] = Config::DEFAULT_LANGUAGE; // default language $config['language'] = Config::LANGUAGE; // Default Language
/*
|--------------------------------------------------------------------------
| Available Languages
|--------------------------------------------------------------------------
|
| Each item of this array must be a directory with the translation files in
| the /application/language directory. The users will be able to select one
| of these languages.
|
*/
$config['available_languages'] = array( $config['available_languages'] = array(
'english', 'english',
'german', 'german',

View file

@ -17,6 +17,9 @@
* credentials in order to connect to the database. You can enable the DEBUG_MODE * credentials in order to connect to the database. You can enable the DEBUG_MODE
* while developing the application. * while developing the application.
* *
* Set the default language by changing the LANGUAGE constant. For a full list of
* available languages look at the /application/config/config.php file.
*
* IMPORTANT: * IMPORTANT:
* If you are updating from version 1.0 you will have to create a new "config.php" * If you are updating from version 1.0 you will have to create a new "config.php"
* file because the old "configuration.php" is not used anymore. * file because the old "configuration.php" is not used anymore.
@ -26,14 +29,9 @@ class Config {
// General Settings // General Settings
// ------------------------------------------------------------------------ // ------------------------------------------------------------------------
const BASE_URL = 'http://url-to-easyappointments-directory'; const BASE_URL = 'http://url-to-easyappointments-directory';
const LANGUAGE = 'english';
const DEBUG_MODE = FALSE; const DEBUG_MODE = FALSE;
// options: 'english','german','greek','hungarian','portuguese',
// 'chinese','dutch','french','japanese','polish','spanish','italian',
// 'danish','luxembourgish','slovak','finnish','russian','romanian',
// 'turkish','hindi'
const DEFAULT_LANGUAGE = english;
// ------------------------------------------------------------------------ // ------------------------------------------------------------------------
// Database Settings // Database Settings
// ------------------------------------------------------------------------ // ------------------------------------------------------------------------