Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8572431
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 11, 20262026-06-11T19:00:33+00:00 2026-06-11T19:00:33+00:00

Is there a way to prevent .translation_missing class from appearing in views if the

  • 0

Is there a way to prevent .translation_missing class from appearing in views if the language is english? Since the english text is correct I don’t need to translate it.

Right now I added styles to mask span.translation_missing if the locale is default span, but I’d rather want it to not appear at all if the locale is :en

Update: Just to be clear, I do translations in .erb files, so say <%= t "Menu item" %> becomes <span class="translation_missing">Menu item<span> which is overkill. I just need it to leave the original string alone for :en locale

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-11T19:00:34+00:00Added an answer on June 11, 2026 at 7:00 pm

    I don’t think there is a way to do this through the standard methods, but you could just add a patch like this:

    module I18n::MissingTranslation::Base
    
      def html_message_with_en_fix
        (locale == :en) ? key : html_message_without_en_fix
      end
      alias_method_chain :html_message, :en_fix
    
      def message_with_en_fix
        (locale == :en) ? key : message_without_en_fix
      end
      alias_method_chain :message, :en_fix
    
    end
    

    Alternatively, if you don’t want to use a patch, you can also define your own method and catch the exception yourself:

    def my_translate(key)
      begin
        I18n.t(key, :raise => I18n::MissingTranslationData)
      rescue I18n::MissingTranslationData
        (I18n.locale == :en) ? key.to_s : I18n.t(key)
      end
    end
    

    See also this answer.

    (I’ve updated both answers to return the translation string rather thank blank/nil.)

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Is there a way to prevent users from getting into SQL Server Management Studio
Is there a way to prevent Castle Windsor from automatically injecting dependencies into properties
Is there a way to prevent a NSDrawer from being resized? I've tried setting
Is there a way to prevent a component from rendering in Flex (to save
Is there a way to prevent developers from committing code when certain unsafe or
Is there a way to prevent a specific file from being opcode cached with
Is there a way prevent an ASP gridview from always relying on javascript for
Is there a way to prevent empty elements of the form <myElement/> being used
Is there a way to prevent a user viewing an file but still use
Is there any way to prevent or detect a man-in-the-middle attack over plain HTTP?

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.