I18nData::NoTranslationAvailable -- countries-DE-CH: Can't access Spree admin, general settings, edit

StackOverflow https://stackoverflow.com/questions/23643368

  •  22-07-2023
  •  | 
  •  

Question

Not sure what I changed to get this error when clicking on the Configuration tab in the Spree Admin panel. The spree_i18n gem contains the DE-CH.yml file and I wasn't getting any problems before. Nor is this happening on any other page.

codesi18n_data (0.4.1) lib/i18n_data/file_data_provider.rb

DATA_SEPARATOR = ";;"
extend self
def codes(type, language_code)
  unless data = read_from_file(cache_file_for(type, language_code))
    raise NoTranslationAvailable, "#{type}-#{language_code}"
  end
  data
end
def write_cache(provider)

Error is raised here: raise NoTranslationAvailable, "#{type}-#{language_code}"

I'm using spree 2-2-stable and spree_i18n 2-2-stable gems.

Thanks

Was it helpful?

Solution

Please see this issue. This is the exact problem you are encountering.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top