# Sample localization file for English. Add more files in this directory for other locales.
# See https://github.com/svenfuchs/rails-i18n/tree/master/rails%2Flocale for starting points.
en:
hello: "Hello world"
en:
time:
formats:
w3c: "%Y-%m-%dT%H:%M:%S+00:00"
After killing myself, it turns out having two "en:" in that file was causing it to quietly break. Apparently .yml files are notorious for quietly breaking. Changing it to the following fixed it:
# Sample localization file for English. Add more files in this directory for other locales.
# See https://github.com/svenfuchs/rails-i18n/tree/master/rails%2Flocale for starting points.
en:
hello: "Hello world"
time:
formats:
w3c: "%Y-%m-%dT%H:%M:%S+00:00"
fml. Hopefully this helps.