Merge remote-tracking branch 'lang/master' into release-1.1
This commit is contained in:
commit
728c740173
2 changed files with 8 additions and 2 deletions
|
@ -82,7 +82,7 @@ $config['url_suffix'] = '';
|
|||
| than english.
|
||||
|
|
||||
*/
|
||||
$config['language'] = 'english'; // default language
|
||||
$config['language'] = Config::DEFAULT_LANGUAGE; // default language
|
||||
|
||||
$config['available_languages'] = array(
|
||||
'english',
|
||||
|
|
|
@ -27,6 +27,12 @@ class Config {
|
|||
// ------------------------------------------------------------------------
|
||||
const BASE_URL = 'http://url-to-easyappointments-directory';
|
||||
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
|
||||
|
@ -46,4 +52,4 @@ class Config {
|
|||
const GOOGLE_API_KEY = '';
|
||||
}
|
||||
/* End of file config.php */
|
||||
/* Location: ./config.php */
|
||||
/* Location: ./config.php */
|
||||
|
|
Loading…
Reference in a new issue