kite-menu-lang
This commit is contained in:
@@ -0,0 +1,26 @@
|
||||
export const dictionaries = {
|
||||
tr: {
|
||||
hero: {
|
||||
location: "Akyaka · Muğla",
|
||||
subtitle: "Akyaka'nın en keyifli menüsü",
|
||||
},
|
||||
footer: {
|
||||
copyright: "© 2026 KiteBeach Akyaka. Tüm hakları saklıdır.",
|
||||
createdBy: "Created by ayris.tech",
|
||||
},
|
||||
},
|
||||
en: {
|
||||
hero: {
|
||||
location: "Akyaka · Mugla",
|
||||
subtitle: "The most delightful menu in Akyaka",
|
||||
},
|
||||
footer: {
|
||||
copyright: "© 2026 KiteBeach Akyaka. All rights reserved.",
|
||||
createdBy: "Created by ayris.tech",
|
||||
},
|
||||
},
|
||||
};
|
||||
|
||||
export const getDictionary = (lang: string) => {
|
||||
return dictionaries[lang as keyof typeof dictionaries] || dictionaries['tr'];
|
||||
};
|
||||
Reference in New Issue
Block a user