Merge remote-tracking branch 'lang/master' into release-1.1

This commit is contained in:
Alex Tselegidis 2016-01-21 19:56:26 +01:00
commit 728c740173
2 changed files with 8 additions and 2 deletions

View file

@ -82,7 +82,7 @@ $config['url_suffix'] = '';
| than english. | than english.
| |
*/ */
$config['language'] = 'english'; // default language $config['language'] = Config::DEFAULT_LANGUAGE; // default language
$config['available_languages'] = array( $config['available_languages'] = array(
'english', 'english',

View file

@ -27,6 +27,12 @@ class Config {
// ------------------------------------------------------------------------ // ------------------------------------------------------------------------
const BASE_URL = 'http://url-to-easyappointments-directory'; const BASE_URL = 'http://url-to-easyappointments-directory';
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
@ -46,4 +52,4 @@ class Config {
const GOOGLE_API_KEY = ''; const GOOGLE_API_KEY = '';
} }
/* End of file config.php */ /* End of file config.php */
/* Location: ./config.php */ /* Location: ./config.php */