OSDN Git Service

t#30102:update i18n op rp au ar gc gp pc
[pettanr/pettanr.git] / app / views / pictures / browse.html.erb
1 <h1><%= t '.title' -%></h1>
2 <p id="notice"><%= notice %></p>
3
4 <%= link_to tag(:img, @picture.opt_img_tag), @picture.url %>
5 <%= render @picture.credit_template, :picture => @picture %>
6 <p>
7   <b><%= t_m 'Picture.id' -%>:</b>
8   <%= @picture.id %>
9 </p>
10
11 <p>
12   <b><%= t_m 'Picture.original_picture_id' -%>:</b>
13   <%= link_to @picture.original_picture_id, browse_original_picture_path(@picture.original_picture) %>
14 </p>
15
16 <p>
17   <b><%= t_m 'Picture.revision' -%>:</b>
18   <%= @picture.revision %>
19 </p>
20
21 <p>
22   <b><%= t_m 'Picture.ext' -%>:</b>
23   <%= @picture.ext %>
24 </p>
25
26 <p>
27   <b><%= t_m 'Picture.width' -%>:</b>
28   <%= @picture.width %>
29 </p>
30
31 <p>
32   <b><%= t_m 'Picture.height' -%>:</b>
33   <%= @picture.height %>
34 </p>
35
36 <p>
37   <b><%= t_m 'Picture.filesize' -%>:</b>
38   <%= @picture.filesize %>
39 </p>
40
41 <p>
42   <b><%= t_m 'Picture.md5' -%>:</b>
43   <%= @picture.md5 %>
44 </p>
45
46 <p>
47   <b><%= t_m 'Picture.license_id' -%>:</b>
48   <%= link_to @picture.license_id, browse_license_path(@picture.license) %>
49 </p>
50
51 <p>
52   <b><%= t_m 'Picture.artist_id' -%>:</b>
53   <%= link_to @picture.artist_id, browse_artist_path(@picture.artist) %>
54 </p>
55
56 <p>
57   <b><%= t_m 'Picture.artist_name' -%>:</b>
58   <%= h @picture.artist_name %>
59 </p>
60
61 <p>
62   <b><%= t_m 'Picture.classname' -%>:</b>
63   <%= h @picture.classname %>
64 </p>
65
66 <p>
67   <b><%= t_m 'Picture.credit' -%>:</b>
68   <%= h @picture.credit %>
69 </p>
70
71 <p>
72   <b><%= t_m 'Picture.settings' -%>:</b>
73   <%= h @picture.settings %>
74 </p>
75
76 <p>
77   <b><%= t_m 'Picture.created_at' -%>:</b>
78   <%= l @picture.created_at %>
79 </p>
80
81 <p>
82   <b><%= t_m 'Picture.updated_at' -%>:</b>
83   <%= l @picture.updated_at %>
84 </p>
85
86 <%= link_to t('link.back'), :action => :list %>