Skip to content
Snippets Groups Projects
Commit 42f92355 authored by Diego Sampaio's avatar Diego Sampaio
Browse files

translate sentence

parent b344316f
No related branches found
No related tags found
No related merge requests found
...@@ -43,7 +43,7 @@ ...@@ -43,7 +43,7 @@
<label><input type="radio" name="emailNotifications" value="mentions" checked="{{$eq emailNotifications 'mentions'}}" /> {{_ "Mentions"}}</label> <label><input type="radio" name="emailNotifications" value="mentions" checked="{{$eq emailNotifications 'mentions'}}" /> {{_ "Mentions"}}</label>
{{/if}} {{/if}}
<label><input type="radio" name="emailNotifications" value="nothing" checked="{{$eq emailNotifications 'nothing'}}" /> {{_ "Nothing"}}</label> <label><input type="radio" name="emailNotifications" value="nothing" checked="{{$eq emailNotifications 'nothing'}}" /> {{_ "Nothing"}}</label>
<label><input type="radio" name="emailNotifications" value="default" checked="{{$eq emailNotifications 'default'}}" /> {{_ "Respect_account_preference"}}</label> <label><input type="radio" name="emailNotifications" value="default" checked="{{$eq emailNotifications 'default'}}" /> {{_ "Use_account_preference"}}</label>
<button type="button" class="button secondary cancel">{{_ "Cancel"}}</button> <button type="button" class="button secondary cancel">{{_ "Cancel"}}</button>
<button type="button" class="button primary save">{{_ "Save"}}</button> <button type="button" class="button primary save">{{_ "Save"}}</button>
{{else}} {{else}}
......
...@@ -55,12 +55,12 @@ Template.pushNotificationsFlexTab.helpers({ ...@@ -55,12 +55,12 @@ Template.pushNotificationsFlexTab.helpers({
case 'nothing': case 'nothing':
return t('Nothing'); return t('Nothing');
case 'default': case 'default':
return t('Respect_account_preference'); return t('Use_account_preference');
case 'mentions': case 'mentions':
return t('Mentions'); return t('Mentions');
default: default:
if (field === 'emailNotifications') { if (field === 'emailNotifications') {
return t('Respect_account_preference'); return t('Use_account_preference');
} else { } else {
return t('Mentions'); return t('Mentions');
} }
......
...@@ -6,5 +6,6 @@ ...@@ -6,5 +6,6 @@
"Mentions_default" : "Mentions (default)", "Mentions_default" : "Mentions (default)",
"Mobile_push_notifications" : "Mobile push notifications", "Mobile_push_notifications" : "Mobile push notifications",
"Nothing" : "Nothing", "Nothing" : "Nothing",
"Push_notifications" : "Push notifications" "Push_notifications" : "Push notifications",
} "Use_account_preference": "Use account preference"
\ No newline at end of file }
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment