192 |
- |
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-2018 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.com/
|
|
|
15 |
#
|
|
|
16 |
# This software is maintained by Dave Mielke <dave@mielke.cc>.
|
|
|
17 |
###############################################################################
|
|
|
18 |
|
|
|
19 |
# This BRLTTY text subtable implements the French scheme for representing the
|
|
|
20 |
# 10 Hindu-Arabic numerals in braille. The digit 0 is represented by dots 3456,
|
|
|
21 |
# and the digits 1-9 are represented by the letters a-i with dot 6 added.
|
|
|
22 |
|
|
|
23 |
char \x30 ( 3456 ) # ⠼ 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
|