<p>
- Move the marker to the correct position and<br/>
- describe the problem in the box below:
+ <%- I18n.t('javascripts.notes.new.intro_1') %><br/>
+ <%- I18n.t('javascripts.notes.new.intro_2') %>
</p>
<form action="#">
<input type="hidden" name="lon">
<input type="hidden" name="lat">
<textarea name="comment" cols="40" rows="10"></textarea>
<br/>
- <input type="submit" name="add" value="Add Note" id="note-add">
+ <input type="submit" name="add" value="<%- I18n.t('javascripts.notes.new.add') %>" id="note-add">
</form>
-<h2>Note <%- note.id %></h2>
+<h2><%- I18n.t('javascripts.notes.show.title', { id: note.id }) %></h2>
<% note.comments.forEach(function (comment) { %>
<p>
<small class="deemphasize">
- <%- comment.action %> by <%- comment.user %> at <%- comment.date %>
+ <%- I18n.t('javascripts.notes.show.comment', {
+ action: comment.action, user: comment.user, time: comment.date
+ }) %>
</small>
<br/>
<%- comment.text %>
create_help2: and descripe it as accurate as possible
report: Report Problem
edityourself: You can also edit the map directly your self
+ notes:
+ new:
+ intro_1: Move the marker to the correct position and
+ intro_2: "add your comment in the box below:"
+ add: Add Note
+ show:
+ title: Note %{id}
+ comment: "%{action} by %{user} at %{time}"
redaction:
edit:
description: "Description"