jbox-web/ssh-tunnel

View on GitHub
lib/ssh-tunnel/ui/helpers/common/translation_helper.rb

Summary

Maintainability
A
0 mins
Test Coverage
B
87%
# frozen_string_literal: true

module SSHTunnel
  module UI
    module Helpers
      module Common
        module TranslationHelper
          extend ActiveSupport::Concern

          ruby2_keywords def t(*args)
            I18n.t(*args)
          end

        end
      end
    end
  end
end