erlydtl_i18n.erl 330 B

1234567891011121314151617
  1. %% Author: dave
  2. %% Created: Feb 25, 2010
  3. %% Description: Bridge between erlydtl compiler and gettext server
  4. -module(erlydtl_i18n).
  5. %%
  6. %% Include files
  7. %%
  8. %% Exported Functions
  9. %%
  10. -export([translate/2]).
  11. %%
  12. %% API Functions
  13. %%
  14. %% Makes i18n conversion using gettext
  15. translate(String, Locale) -> gettext:key2str(String, Locale).