# File lib/i18n/backend/cache.rb, line 78
        def _fetch(cache_key, &block)
          result = I18n.cache_store.read(cache_key) and return result
          result = catch(:exception, &block)
          I18n.cache_store.write(cache_key, result) unless result.is_a?(Proc)
          result
        end