mirror of
https://github.com/alextselegidis/easyappointments.git
synced 2024-11-13 03:23:18 +03:00
Install: html lang + language & timezone provider same as admin
This commit is contained in:
parent
556b77c08d
commit
174856f8e3
2 changed files with 3 additions and 1 deletions
|
@ -108,6 +108,8 @@ class Installation extends EA_Controller
|
||||||
'email' => 'jane@example.org',
|
'email' => 'jane@example.org',
|
||||||
'phone_number' => '+1 (000) 000-0000',
|
'phone_number' => '+1 (000) 000-0000',
|
||||||
'services' => [$service_id],
|
'services' => [$service_id],
|
||||||
|
'language' => $admin['language'],
|
||||||
|
'timezone' => $admin['timezone'],
|
||||||
'settings' => [
|
'settings' => [
|
||||||
'username' => 'janedoe',
|
'username' => 'janedoe',
|
||||||
'password' => random_string(),
|
'password' => random_string(),
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
<!doctype html>
|
<!doctype html>
|
||||||
<html lang="en">
|
<html lang="<?= config('language_code') ?>">
|
||||||
<head>
|
<head>
|
||||||
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
|
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue