Files
kite-qr/lib/dictionaries.ts
2026-06-11 14:05:36 +03:00

27 lines
671 B
TypeScript
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
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'];
};