-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathlocales.config.js
58 lines (57 loc) · 1.82 KB
/
locales.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
import LogoSvg_en from "@assets/images/logo_en.svg";
import LogoSvg_tr from "@assets/images/logo_tr.svg";
module.exports = [
{
locale: "tr",
domain: process.env.NEXT_PUBLIC_DOMAIN_LOCALE_TR,
manifest: "/locales/tr/manifest.json",
logo: {
component: LogoSvg_tr,
alt: "Açık Kuran",
height: "20px",
},
heroImages: {
dark: "/locales/tr/images/bg/d-bg.webp",
light: "https://audio.acikkuran.com/images/acbg.webp",
darkMobile: "/locales/tr/images/bg/d-bg-m.webp",
lightMobile: "https://audio.acikkuran.com/images/acmb.webp",
},
createPasswordEmailParams: {
site_title: "Açık Kuran",
description:
"Açık Kuran tek kullanımlık şifreniz aşağıda belirtilmiştir.",
greetings: "Selam,",
twitter_handle: "acikkuran",
logo_src:
"https://acikkuran.com/locales/tr/images/manifest/android-chrome-192x192.png",
subject: "Açık Kuran - Tek Kullanımlık Şifre",
from: "Açık Kuran",
},
},
{
locale: "en",
domain: process.env.NEXT_PUBLIC_DOMAIN_LOCALE_EN,
manifest: "/locales/en/manifest.json",
logo: {
component: LogoSvg_en,
alt: "Quran.so",
height: "14px",
},
heroImages: {
dark: "/locales/tr/images/bg/d-bg.webp",
light: "https://audio.acikkuran.com/images/acbg.webp",
darkMobile: "/locales/tr/images/bg/d-bg-m.webp",
lightMobile: "https://audio.acikkuran.com/images/acmb.webp",
},
createPasswordEmailParams: {
site_title: "Quran.so",
description: "Your single-use password is below.",
greetings: "Hello,",
twitter_handle: "qurandotso",
logo_src:
"https://quran.so/locales/en/images/manifest/android-chrome-192x192.png",
subject: "Quran.so - Single-use Password",
from: "Quran.so",
},
},
];