Skip to content

Commit

Permalink
/#221 fix dots numbers
Browse files Browse the repository at this point in the history
  • Loading branch information
zuevval committed Jul 28, 2020
1 parent d0f3fe5 commit b76449d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -799,7 +799,7 @@ internal val golubinaIntroLessons by lessons {
Теперь рассмотрим букву 'Т'.
<br>
Буква 'Т' в алфавите Брайля - это точки 2, 3, 4 и 5.
Поскольку точками 2, 4 и 5 образована буква Х, то буква Т - это буква Х
Поскольку точками 2, 4 и 5 образована буква Ж, то буква Т - это буква Ж
и ещё точка номер 3.
"""
)
Expand Down Expand Up @@ -1409,7 +1409,7 @@ internal val golubinaIntroLessons by lessons {
"""
В этом уроке нам надо познакомиться с буквой Ю.
<br>
Буква 'Ю' обозначается четырьмя точками: 2, 3, 5 и 6. Иначе, она составлена из
Буква 'Ю' обозначается четырьмя точками: 1, 2, 5 и 6. Иначе, она составлена из
буквы Х и дополнительной точки 6.
"""
)
Expand Down Expand Up @@ -1477,7 +1477,7 @@ internal val golubinaIntroLessons by lessons {
"""
Давайте изучим букву 'Э'.
<br>
Буква 'Э' представлена комбинацией трёх точек: 2, 4 и 5. Она составлена из буквы
Буква 'Э' представлена комбинацией трёх точек: 2, 4 и 6. Она составлена из буквы
'И' плюс точка 6.
"""
)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ private val specialSymbols by symbols(SymbolType.special) {
symbol(char = ']', brailleDots = BrailleDots(E, E, F, F, F, F)) // Number sign
symbol(char = ',', brailleDots = BrailleDots(E, F, E, E, E, E)) // Comma
symbol(char = '-', brailleDots = BrailleDots(E, E, F, E, E, F)) // Hyphen
symbol(char = '.', brailleDots = BrailleDots(E, F, F, E, F, E)) // Dot
symbol(char = '.', brailleDots = BrailleDots(E, F, E, E, F, F)) // Dot
}

private val uebDigits by symbols(SymbolType.digit) {
Expand Down

0 comments on commit b76449d

Please sign in to comment.