File: case.rhtml

package info (click to toggle)
ruby-gettext 3.4.9-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 6,084 kB
  • sloc: ruby: 10,461; makefile: 8
file content (16 lines) | stat: -rw-r--r-- 220 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<%
  require 'gettext'
  include GetText
  bindtextdomain("helloerb", :path => "locale")
%>
<html>
<head>
<title></title>
</head>
<body>
  <%= _('Hello') %>
  <% case 1 %>
  <% end %>
  <%= _('World') %>
</body>
</html>