module TranslationHelpers

def have_no_i18n_content(field, upcase: false)

upcase - a boolean to indicate whether the string must be checked upcased or not.
field - the field that holds the translations

the HTML tags from the field (in case there are any).
Checks that the current page does not have some translated content. It strips
def have_no_i18n_content(field, upcase: false)
  have_no_content(i18n_content(field, upcase:))
end