keyboard: describe empty key categories
authorMischa POSLAWSKY <perl@shiar.org>
Tue, 31 Oct 2023 19:17:34 +0000 (20:17 +0100)
committerMischa POSLAWSKY <perl@shiar.org>
Tue, 31 Oct 2023 23:39:00 +0000 (00:39 +0100)
Silence perl warning in Shiar_Sheet::Keyboard expecting <dd> values.

keyboard.plp

index eee5d9259f7ffc7b04a8b67514699abe809aec12..f4ede94171db59de4c6ee80f2cdfbb585af74cb3 100644 (file)
@@ -61,12 +61,12 @@ my $keys = Shiar_Sheet::Keyboard->new({
                } @usint
        },
        flag => {
-               g1 => ['unaltered'],
-               g2 => ['accented'],
-               g4 => ['latin'],
-               g5 => ['similar'],
-               g7 => ['other'],
-               g8 => ['combining'],
+               g1 => ['unaltered', "same results as without modifier"],
+               g2 => ['accented', "decomposes to the original letter with a combining accent"],
+               g4 => ['latin', "a different (accented) latin letter"],
+               g5 => ['similar', "transliterates (mostly) into the unmodified letter"],
+               g7 => ['other', "symbol not directly deducible from key"],
+               g8 => ['combining', "diacritical mark to be combined with a following character"],
        },
 });
 $keys->map($get{map}) or undef $get{map};