jacquelinecchuang | 617fd26 | 2024-04-19 03:11:14 +0800 | [diff] [blame^] | 1 | ############################################################################### |
| 2 | # BRLTTY - A background process providing access to the console screen (when in |
| 3 | # text mode) for a blind person using a refreshable braille display. |
| 4 | # |
| 5 | # Copyright (C) 1995-2023 by The BRLTTY Developers. |
| 6 | # |
| 7 | # BRLTTY comes with ABSOLUTELY NO WARRANTY. |
| 8 | # |
| 9 | # This is free software, placed under the terms of the |
| 10 | # GNU Lesser General Public License, as published by the Free Software |
| 11 | # Foundation; either version 2.1 of the License, or (at your option) any |
| 12 | # later version. Please see the file LICENSE-LGPL for details. |
| 13 | # |
| 14 | # Web Page: http://brltty.app/ |
| 15 | # |
| 16 | # This software is maintained by Dave Mielke <dave@mielke.cc>. |
| 17 | ############################################################################### |
| 18 | |
| 19 | # This BRLTTY text subtable implements a common scheme for representing the 10 |
| 20 | # Hindu-Arabic numerals in braille. The digit 0 is represented by dots 346, and |
| 21 | # the digits 1-9 are represented by the letters a-i with dot 6 added. |
| 22 | |
| 23 | char \x30 ( 34 6 ) # ⠬ 0 [DIGIT ZERO] |
| 24 | char \x31 (1 6 ) # ⠡ 1 [DIGIT ONE] |
| 25 | char \x32 (12 6 ) # ⠣ 2 [DIGIT TWO] |
| 26 | char \x33 (1 4 6 ) # ⠩ 3 [DIGIT THREE] |
| 27 | char \x34 (1 456 ) # ⠹ 4 [DIGIT FOUR] |
| 28 | char \x35 (1 56 ) # ⠱ 5 [DIGIT FIVE] |
| 29 | char \x36 (12 4 6 ) # ⠫ 6 [DIGIT SIX] |
| 30 | char \x37 (12 456 ) # ⠻ 7 [DIGIT SEVEN] |
| 31 | char \x38 (12 56 ) # ⠳ 8 [DIGIT EIGHT] |
| 32 | char \x39 ( 2 4 6 ) # ⠪ 9 [DIGIT NINE] |
| 33 | |
| 34 | include num-alias.tti |