Skip to content

Commit

Permalink
Fix comments for translators position after formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
nvdaes committed Sep 27, 2024
1 parent 807a025 commit 8bbb65b
Showing 1 changed file with 14 additions and 13 deletions.
27 changes: 14 additions & 13 deletions source/brailleTables.py
Original file line number Diff line number Diff line change
Expand Up @@ -383,10 +383,10 @@ def listTables() -> list[BrailleTable]:
# Translators: The name of a braille table displayed in the
# braille settings dialog.
addTable("fil-g2.ctb", _("Filipino grade 2"), contracted=True)
# Translators: The name of a braille table displayed in the
# braille settings dialog.
addTable(
"fr-bfu-comp6.utb",
# Translators: The name of a braille table displayed in the
# braille settings dialog.
_("French (unified) 6 dot computer braille"),
inputForLangs={"fr"},
translationForLangs={"fr"},
Expand Down Expand Up @@ -448,21 +448,22 @@ def listTables() -> list[BrailleTable]:
# Translators: The name of a braille table displayed in the
# braille settings dialog.
addTable("IPA.utb", _("International Phonetic Alphabet"), input=False)
# Translators: The name of a braille table displayed in the
# braille settings dialog.
addTable(
"it-it-comp6.utb",
# Translators: The name of a braille table displayed in the
# braille settings dialog.
_("Italian 6 dot computer braille"),
inputForLangs={"it"},
translationForLangs={"it"},
)
# Translators: The name of a braille table displayed in the
# braille settings dialog.
addTable("it-it-comp8.utb", _("Italian 8 dot computer braille"))
# Translators: The name of a braille table displayed in the
# braille settings dialog.

addTable(
"ja-kantenji.utb",
# Translators: The name of a braille table displayed in the
# braille settings dialog.
_("Japanese (Kantenji) literary braille"),
input=False,
translationForLangs={"ja"},
Expand Down Expand Up @@ -755,12 +756,11 @@ def listTables() -> list[BrailleTable]:
# Translators: The name of a braille table displayed in the
# braille settings dialog.
addTable("yi.utb", _("Yiddish grade 1"))

# Translators: The name of a braille table displayed in the
# braille settings dialog.
# This should be translated to '中文中国汉语通用盲文' in Mandarin.
addTable(
"zhcn-cbs.ctb",
# Translators: The name of a braille table displayed in the
# braille settings dialog.
# This should be translated to '中文中国汉语通用盲文' in Mandarin.
_("Chinese common braille (simplified Chinese characters)"),
input=False,
translationForLangs={"zh_CN"},
Expand All @@ -769,11 +769,12 @@ def listTables() -> list[BrailleTable]:
# braille settings dialog.
# This should be translated to '中文中国汉语现行盲文(无声调)' in Mandarin.
addTable("zh-chn.ctb", _("Chinese (China, Mandarin) Current Braille System (no tones)"))
# Translators: The name of a braille table displayed in the
# braille settings dialog.
# This should be translated to '中文中国汉语现行盲文' in Mandarin.

addTable(
"zhcn-g1.ctb",
# Translators: The name of a braille table displayed in the
# braille settings dialog.
# This should be translated to '中文中国汉语现行盲文' in Mandarin.
_("Chinese (China, Mandarin) Current Braille System"),
inputForLangs={"zh_HK"},
translationForLangs={"zh_HK"},
Expand Down

0 comments on commit 8bbb65b

Please sign in to comment.