[web] Fix capitalization for the uk-UA lang (#3920)

https://github.com/ente-io/ente/issues/3634#issuecomment-2448388285
This commit is contained in:
Manav Rathi
2024-11-04 08:23:02 +05:30
committed by GitHub

View File

@@ -171,6 +171,6 @@ const localeName = (locale: SupportedLocale) => {
case "lt-LT":
return "Lietuvių kalba";
case "uk-UA":
return "українська";
return "Українська";
}
};