first commit

This commit is contained in:
2026-01-26 10:14:10 +03:30
commit 9a995d5109
160 changed files with 34879 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
export function getFaProvince(province: string): string {
switch (province) {
case "hamedan":
return "همدان";
case "markazi":
return "مركزی";
case "lorestan":
return "لرستان";
default:
return "نامشخص";
}
}