Skip to content

Support RTL for i18n #51187

Closed
Closed
@eladkal

Description

@eladkal

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:

  1. Add RTL support
  2. Add boolean flag to indicate if a specific language is RTL that can be part of the supportedLanguages:
    export const 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.

Metadata

Metadata

Assignees

No one assigned

    Labels

    Type

    No type

    Projects

    No projects

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions