Ready for production deployment with Dockerfile and i18n support
This commit is contained in:
31
app/dictionaries/en.json
Normal file
31
app/dictionaries/en.json
Normal file
@@ -0,0 +1,31 @@
|
||||
{
|
||||
"nav": {
|
||||
"discover": "Discover"
|
||||
},
|
||||
"about": {
|
||||
"since": "Since 1980",
|
||||
"title": "THE SALMAKIS LEGEND",
|
||||
"p1": "In ancient times, in the bay known today as Bardakçı, there were a pristine lake and a beautiful nymph both named Salmakis. One day, while bathing, she saw Hermaphroditus, the son of Hermes and Aphrodite, and fell deeply in love with him.",
|
||||
"p2": "However, Hermaphroditus rejected her. Devastated, Salmakis prayed to the gods to unite them forever. Taking pity on her, the gods merged their bodies into one. From that day on, Salmakis and Hermaphroditus lived eternally in a single body possessing dual nature.",
|
||||
"company": "COMPANY INFORMATION"
|
||||
},
|
||||
"footer": {
|
||||
"tagline": "A Heritage of Excellence Since 1980.",
|
||||
"copyright": "Salmakis Group. All rights reserved.",
|
||||
"created_by": "CREATED BY"
|
||||
},
|
||||
"sections": {
|
||||
"resort": {
|
||||
"title": "Resort",
|
||||
"subtitle": "A Timeless Escape"
|
||||
},
|
||||
"villas": {
|
||||
"title": "Villas",
|
||||
"subtitle": "Private Luxury Reflections"
|
||||
},
|
||||
"yachting": {
|
||||
"title": "Yachting",
|
||||
"subtitle": "Aegean Elegance"
|
||||
}
|
||||
}
|
||||
}
|
||||
6
app/dictionaries/index.ts
Normal file
6
app/dictionaries/index.ts
Normal file
@@ -0,0 +1,6 @@
|
||||
export const getDictionary = async (locale: 'en' | 'tr') => {
|
||||
if (locale === 'en') {
|
||||
return import('./en.json').then((module) => module.default);
|
||||
}
|
||||
return import('./tr.json').then((module) => module.default);
|
||||
};
|
||||
31
app/dictionaries/tr.json
Normal file
31
app/dictionaries/tr.json
Normal file
@@ -0,0 +1,31 @@
|
||||
{
|
||||
"nav": {
|
||||
"discover": "Keşfet"
|
||||
},
|
||||
"about": {
|
||||
"since": "Since 1980",
|
||||
"title": "SALMAKİS EFSANESİ",
|
||||
"p1": "Eski zamanlarda, bugün Bardakçı olarak bilinen koyda, adı Salmakis olan bir göl varmış. Bu gölde kendisiyle aynı ismi taşıyan Salmakis adından güzel bir peri yaşarmış. Bir gün, Salmakis gölde yıkanırken Hermes ve Afrodit’in oğlu Hermafrodit’i görmüş ve ona aşık olmuş.",
|
||||
"p2": "Ne var ki, Hermafrodit onu reddetmiş. Salmakis çok üzülmüş ve onları birleştirmeleri için tanrılara yalvarmış. Salmakis’e acıyan tanrılar, onları tek bir vücutta birleştirmiş. O günden sonra Salmakis ve Hermafrodit çift cinsiyete sahip tek bir vücutta yaşayıp gitmişler.",
|
||||
"company": "ŞİRKET BİLGİLERİ"
|
||||
},
|
||||
"footer": {
|
||||
"tagline": "A Heritage of Excellence Since 1980.",
|
||||
"copyright": "Salmakis Group. Tüm hakları saklıdır.",
|
||||
"created_by": "CREATED BY"
|
||||
},
|
||||
"sections": {
|
||||
"resort": {
|
||||
"title": "Resort",
|
||||
"subtitle": "Zamansız Bir Kaçış"
|
||||
},
|
||||
"villas": {
|
||||
"title": "Villas",
|
||||
"subtitle": "Özel Lüks Yansımalar"
|
||||
},
|
||||
"yachting": {
|
||||
"title": "Yachting",
|
||||
"subtitle": "Ege Zarafeti"
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user