Class: YNRDK
- Inherits:
-
CommonLib::TranslationTable
- Object
- CommonLib::TranslationTable
- YNRDK
- Defined in:
- lib/common_lib/translation_table.rb
Class Method Summary collapse
Methods inherited from CommonLib::TranslationTable
[], selector_options, valid_values
Class Method Details
.table ⇒ Object
83 84 85 86 87 88 89 90 |
# File 'lib/common_lib/translation_table.rb', line 83 def self.table @@table ||= [ { :value => 1, :short => 'yes', :long => "Yes" }, { :value => 2, :short => 'no', :long => "No" }, { :value => 999, :short => 'dk', :long => "Don't Know" }, { :value => 888, :short => 'refused', :long => "Refused" } ] end |