summaryrefslogtreecommitdiff
path: root/caribou
diff options
context:
space:
mode:
authorClaude Paroz <claude@2xlibre.net>2011-09-03 23:04:50 +0200
committerClaude Paroz <claude@2xlibre.net>2011-09-03 23:06:14 +0200
commit2671efe1be608b8e332003177b082604b7b6af88 (patch)
treecad3f372dcb13a6efc4a00c317c8d501f5ac13b9 /caribou
parent4a43721644644e0d23413fb38c68e8e0ab3e6001 (diff)
downloadcaribou-2671efe1be608b8e332003177b082604b7b6af88.tar.gz
Fixed typo and translator comments added for keyboard types
Fixes bug #658053
Diffstat (limited to 'caribou')
-rw-r--r--caribou/antler/antler_settings.py7
1 files changed, 5 insertions, 2 deletions
diff --git a/caribou/antler/antler_settings.py b/caribou/antler/antler_settings.py
index 57318dc..12e54c9 100644
--- a/caribou/antler/antler_settings.py
+++ b/caribou/antler/antler_settings.py
@@ -7,13 +7,16 @@ AntlerSettings = SettingsTopGroup(
SettingsGroup("appearance", _("Appearance"), [
StringSetting(
"keyboard_type", _("Keyboard Type"), "touch",
- _("The keyboard geometery Caribou should use"),
- _("The keyboard geometery determines the shape "
+ _("The keyboard geometry Caribou should use"),
+ _("The keyboard geometry determines the shape "
"and complexity of the keyboard, it could range from "
"a 'natural' look and feel good for composing simple "
"text, to a fullscale keyboard."),
+ # Translators: Keyboard type (similar to touch/tactile device)
allowed=[(('touch'), _('Touch')),
+ # Translators: Keyboard type (conventional keyboard)
(('fullscale'), _('Full scale')),
+ # Translators: Keyboard type (scanned grid by rows/columns)
(('scan'), _('Scan'))]),
BooleanSetting("use_system", _("Use System Theme"),
True, _("Use System Theme")),