summaryrefslogtreecommitdiff
path: root/web-ui/app/templates/compose
diff options
context:
space:
mode:
authorTulio Casagrande <tcasagra@thoughtworks.com>2016-06-28 17:04:45 -0300
committerTulio Casagrande <tcasagra@thoughtworks.com>2016-06-28 17:08:48 -0300
commit0e6217184eeeb69fa85fcf97d28be37e9042a71d (patch)
tree988f628b602d43685d2e26f68b3b28e6dc469671 /web-ui/app/templates/compose
parent1cf3d16637e0a128c3e12236614cc0cd4f40dfc7 (diff)
Added remaining translations strings
Diffstat (limited to 'web-ui/app/templates/compose')
-rw-r--r--web-ui/app/templates/compose/compose_box.hbs10
-rw-r--r--web-ui/app/templates/compose/fixed_recipient.hbs2
-rw-r--r--web-ui/app/templates/compose/inline_box.hbs4
-rw-r--r--web-ui/app/templates/compose/recipients.hbs2
4 files changed, 9 insertions, 9 deletions
diff --git a/web-ui/app/templates/compose/compose_box.hbs b/web-ui/app/templates/compose/compose_box.hbs
index f69cb542..a724f27b 100644
--- a/web-ui/app/templates/compose/compose_box.hbs
+++ b/web-ui/app/templates/compose/compose_box.hbs
@@ -6,18 +6,18 @@
{{> recipients }}
<div class="clearfix">
- <a id="to-trigger" class="hide">{{t 'To'}}</a>
+ <a id="to-trigger" class="hide">{{t 'to'}}</a>
<a id="ccs-trigger" class="hide">{{t 'CC'}}</a>
<a id="bccs-trigger" class="hide">{{t 'BCC'}}</a>
</div>
<div class="floatlabel">
- <label class="floatlabel" for="subject">Subject</label>
- <input class="floatlabel" name="subject" type="text" id="subject" value="{{subject}}" placeholder="{{t 'Subject'}}" tabindex="4"/>
+ <label class="floatlabel" for="subject">{{t 'subject'}}</label>
+ <input class="floatlabel" name="subject" type="text" id="subject" value="{{subject}}" placeholder="{{t 'subject'}}" tabindex="4"/>
</div>
<div class="floatlabel">
- <label class="floatlabel" for="body">Body</label>
- <textarea class="floatlabel" name="body" id="text-box" placeholder="{{t 'Body'}}" tabindex="5">{{body}}</textarea>
+ <label class="floatlabel" for="body">{{t 'body'}}</label>
+ <textarea class="floatlabel" name="body" id="text-box" placeholder="{{t 'body'}}" tabindex="5">{{body}}</textarea>
</div>
{{> attachments_list }}
diff --git a/web-ui/app/templates/compose/fixed_recipient.hbs b/web-ui/app/templates/compose/fixed_recipient.hbs
index cd6b0c26..8b01717c 100644
--- a/web-ui/app/templates/compose/fixed_recipient.hbs
+++ b/web-ui/app/templates/compose/fixed_recipient.hbs
@@ -1,7 +1,7 @@
<div class="fixed-recipient">
<span class="recipient-area">
<div class="recipient-value">
- <span>{{ address }}</span> <a class="recipient-del" href="#"/>
+ <span>{{ address }}</span> <a class="recipient-del" href="#" data-label="{{t 'click-to-remove'}}"/>
</div>
</span>
<input type="hidden" value="{{ address }}" name="{{ name }}" />
diff --git a/web-ui/app/templates/compose/inline_box.hbs b/web-ui/app/templates/compose/inline_box.hbs
index 543e69de..fbb62b0f 100644
--- a/web-ui/app/templates/compose/inline_box.hbs
+++ b/web-ui/app/templates/compose/inline_box.hbs
@@ -2,10 +2,10 @@
<h4 id="reply-subject">{{subject}}</h4>
<input type="text" value="{{subject}}" style="display: none"/>
</div>
-<textarea id="text-box" placeholder="{{t 'Body'}}" tabindex=1>{{body}}</textarea>
+<textarea id="text-box" placeholder="{{t 'body'}}" tabindex=1>{{body}}</textarea>
<a id="all-recipients" tabindex=2>
- <strong>{{t 'To'}}:</strong> {{formatRecipients recipients}}
+ <strong>{{t 'to'}}:</strong> {{formatRecipients recipients}}
</a>
{{> recipients }}
diff --git a/web-ui/app/templates/compose/recipients.hbs b/web-ui/app/templates/compose/recipients.hbs
index 31b51144..056cdab9 100644
--- a/web-ui/app/templates/compose/recipients.hbs
+++ b/web-ui/app/templates/compose/recipients.hbs
@@ -2,7 +2,7 @@
<div id='recipients-to-area' class="recipients-area input-container columns large-12 no-padding">
<input class="recipients-navigation-handler"/>
<div class='compose-column-label'>
- <label for="recipients-to-box" class="recipients-label column large-1">{{t 'TO'}}: </label>
+ <label for="recipients-to-box" class="recipients-label column large-1">{{t 'to'}}: </label>
</div>
<div class='recipients-list compose-column-recipients'>
<input id='recipients-to-box' class="recipients-input" type="text" tabindex="1"/></div>