diff options
author | spag <spag@golwen.net> | 2013-01-21 15:43:28 +0100 |
---|---|---|
committer | spag <spag@golwen.net> | 2013-01-21 15:43:28 +0100 |
commit | 5fbbe9c7479a7dc615b8d5630b9e1b2a6ce11b15 (patch) | |
tree | 207fb39c48cb05955da6b2e02ca3b64474e4319d /app | |
parent | 7159618255c6911075723f6b11ba84b85e9e40cd (diff) |
umlauts added
Diffstat (limited to 'app')
-rw-r--r-- | app/controllers/config_snom_controller.rb | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/app/controllers/config_snom_controller.rb b/app/controllers/config_snom_controller.rb index 24f6e59..149e601 100644 --- a/app/controllers/config_snom_controller.rb +++ b/app/controllers/config_snom_controller.rb @@ -5,13 +5,13 @@ class ConfigSnomController < ApplicationController KEY_REGEXP = { '0' => "[ -.,_0]+", '1' => "[ -.,_1]+", - '2' => "[abc2]", - '3' => "[def3]", - '4' => "[ghi4]", + '2' => "[abc2\xC3\xA4]", + '3' => "[def3\xC3\xA9]", + '4' => "[ghi4\xC3\xAF]", '5' => "[jkl5]", - '6' => "[mno6]", - '7' => "[pqrs7]", - '8' => "[tuv8]", + '6' => "[mno6\xC3\xB6]", + '7' => "[pqrs7\xC3\x9F]", + '8' => "[tuv8\xC3\xBC]", '9' => "[wxyz9]", } |