# File lib/active_ldap/schema/syntaxes.rb, line 117
117: defvalidate_normalized_value(value, original_value)
118: if/\A#{PRINTABLE_CHARACTER}{2,2}\z/i=~value
119: nil
120: else
121: format = _("%s should be just 2 printable characters")
122: format%original_value.inspect
123: end
124: end