Skip to content

Instantly share code, notes, and snippets.

@3dd13
Created February 27, 2011 15:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save 3dd13/846255 to your computer and use it in GitHub Desktop.
Save 3dd13/846255 to your computer and use it in GitHub Desktop.
Sample string interpolation in en.yml with ruby I18n.t method
<html>
...
<body>
...
<div id="footer">
<%= I18n.t("layout.copyright_statement", :current_year => Date.today.year) %>
</div>
...
</body>
</html>
en:
layout:
copyright_statement: "© 2010 - %{current_year} RU05. All rights reserved."
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment