Sha256: 67bf2fa2a9303c3dd27a6fcea5641e49afeb1421398e723373d2c0630771c354

Contents?: true

Size: 620 Bytes

Versions: 47

Compression:

Stored size: 620 Bytes

Contents

module TranslationCenter
  module CenterHelper

    # returns a human readable view of the changes
    def format_change(attribute, value)
      # if value is an array then changed value
      if value.is_a? Array 
        "<span class=\"label label-info\">#{attribute}</span> changed from <span class=\"label label-important\">#{value[0]}</span> to <span class=\"label label-success\">#{value[1]}</span>".html_safe
      # else value is new
      else
        "<span class=\"label label-info\">#{attribute}</span> has new value <span class=\"label label-success\">#{value}</span>".html_safe
      end
    end
  end
end

Version data entries

47 entries across 47 versions & 1 rubygems

Version Path
translation_center-1.5.0 app/helpers/translation_center/center_helper.rb
translation_center-1.4.1 app/helpers/translation_center/center_helper.rb
translation_center-1.4.0 app/helpers/translation_center/center_helper.rb
translation_center-1.3.1 app/helpers/translation_center/center_helper.rb
translation_center-1.3.0 app/helpers/translation_center/center_helper.rb
translation_center-1.2.1 app/helpers/translation_center/center_helper.rb
translation_center-1.2.0 app/helpers/translation_center/center_helper.rb
translation_center-1.1.0 app/helpers/translation_center/center_helper.rb
translation_center-1.0.4 app/helpers/translation_center/center_helper.rb
translation_center-1.0.3 app/helpers/translation_center/center_helper.rb
translation_center-1.0.2 app/helpers/translation_center/center_helper.rb
translation_center-1.0.1 app/helpers/translation_center/center_helper.rb
translation_center-1.0.0 app/helpers/translation_center/center_helper.rb
translation_center-0.0.14 app/helpers/translation_center/center_helper.rb
translation_center-0.0.13 app/helpers/translation_center/center_helper.rb
translation_center-0.0.12 app/helpers/translation_center/center_helper.rb
translation_center-0.0.11 app/helpers/translation_center/center_helper.rb
translation_center-0.0.10 app/helpers/translation_center/center_helper.rb
translation_center-0.0.9 app/helpers/translation_center/center_helper.rb
translation_center-0.0.8 app/helpers/translation_center/center_helper.rb