Sha256: 83f99eb0f42ee606c1bd6d40fee44b45db2bed3e2af1106553c49231c26ebf75
Contents?: true
Size: 1.28 KB
Versions: 2
Compression:
Stored size: 1.28 KB
Contents
# -*- encoding: utf-8 -*- # Context-based month name and day name switching for Russian # # Названия месяцев и дней недели в зависимости от контекста ("1 декабря", но "Декабрь 1985") { :ru => { :date => { :abbr_day_names => lambda { |key, options| if options[:format] && options[:format] =~ Russian::LOCALIZE_STANDALONE_ABBR_DAY_NAMES_MATCH :'date.common_abbr_day_names' else :'date.standalone_abbr_day_names' end }, :day_names => lambda { |key, options| if options[:format] && options[:format] =~ Russian::LOCALIZE_STANDALONE_DAY_NAMES_MATCH :'date.standalone_day_names' else :'date.common_day_names' end }, :abbr_month_names => lambda { |key, options| if options[:format] && options[:format] =~ Russian::LOCALIZE_ABBR_MONTH_NAMES_MATCH :'date.common_abbr_month_names' else :'date.standalone_abbr_month_names' end }, :month_names => lambda { |key, options| if options[:format] && options[:format] =~ Russian::LOCALIZE_MONTH_NAMES_MATCH :'date.common_month_names' else :'date.standalone_month_names' end } } } }
Version data entries
2 entries across 2 versions & 2 rubygems
Version | Path |
---|---|
rs_russian-0.7.0 | lib/russian/locale/datetime.rb |
russian-0.6.0 | lib/russian/locale/datetime.rb |