aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/gems/gettext-2.1.0/test/testlib/erb.rxml
blob: cb0f1a26975845b8fe7fadb4c79fe40380e5e4b6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<?xml version="1.0" standalone="no"?>
<%
  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>