albanian language switch

This commit is contained in:
Omindu Hirushka
2025-06-18 17:04:58 +05:30
parent ef299f1f4a
commit 99bec6c7f9
4 changed files with 13 additions and 0 deletions

View File

@@ -29,6 +29,12 @@ export const greetingString = (name: string): string => {
morning = 'manhã';
afternoon = 'tarde';
evening = 'noite';
} else if (language === 'alb') {
greetingPrefix = 'Përshëndetje';
greetingSuffix = 'të mbarë';
morning = 'mëngjesi';
afternoon = 'pasdite';
evening = 'mbrëmja';
}
return `${greetingPrefix} ${name}, ${greetingSuffix} ${greet}!`;