Closed
Description
Body
Extracting the adding RTL support from #51038 to a separated task
Some resources:
https://www.chakra-ui.com/guides/overview-rtl-support
https://leancode.co/blog/right-to-left-in-react
The Task:
- Add RTL support
- Add boolean flag to indicate if a specific language is RTL that can be part of the supportedLanguages:
For example:
export const supportedLanguages = [
{ code: "de", name: "Deutsch" , is_rtl: "No"},
{ code: "en", name: "English", is_rtl: "No" },
{ code: "he", name: "עברית", is_rtl: "Yes" },
{ code: "ko", name: "한국어", is_rtl: "No" },
{ code: "zh_TW", name: "繁體中文", is_rtl: "No" },
] as const;
Committer
- I acknowledge that I am a maintainer/committer of the Apache Airflow project.