I'm using Rails i18n to localize my website.
In the translation yml file, I see
time:
am: am
formats:
default: ! '%a, %d %b %Y %H:%M:%S %z'
long: ! '%d %B, %Y %H:%M'
short: ! '%d %b %H:%M'
pm: pm
(taken from https://github.com/svenfuchs/rails-i18n/blob/master/rails/locale/en-GB.yml)
What does the exclamation mark mean? How is it different if you take away the exclamation mark?
Thanks