Remove debug line

This commit is contained in:
Eric Schultz 2019-11-21 13:44:01 -06:00 committed by Eric Schultz
parent 3c29df09dc
commit 8ebbda7819

View file

@ -2,7 +2,6 @@ const I18n = require('i18n-js');
I18n.translations = I18n.translations || {}; I18n.translations = I18n.translations || {};
<% I18n::JS::translations.each do |k,v| %> <% I18n::JS::translations.each do |k,v| %>
<% byebug %>
I18n.translations['<%= k %>'] = I18n.extend((I18n.translations['<%= k %>'] || {}),<%= JSON.generate(v) %>); I18n.translations['<%= k %>'] = I18n.extend((I18n.translations['<%= k %>'] || {}),<%= JSON.generate(v) %>);
<% end %> <% end %>
module.exports = I18n; module.exports = I18n;