<?xml version="1.0" standalone="no"?>
<%
  require 'gettext'
  include GetText
  bindtextdomain("helloerb", "locale")
%>
<html>
<head>
<title><%= _("aaa") %></title>
</head>
<body>
<h1><%= _("aaa\n") %></h1>
<p><%= N_("bbb") %></p>
<p><%= n_("ccc1", "ccc2", 1) %></p>
</body>
</html>