aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/gems/gettext-2.1.0/test/testlib/erb.rhtml
blob: d19c75cf27b75e20b02794879204341b47ae8aa4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<%
  require 'gettext'
  include GetText
  bindtextdomain("helloerb", :path => "locale")
%>
<html>
<head>
<title><%= _("aaa") %></title>
</head>
<body>
<h1><%= _("aaa\n") %></h1>
<p><%= N_("bbb") %></p>
<p><%= n_("ccc1", "ccc2", 1) %></p>
</body>
</html>