i18n ContactView
Part of the MessageDetailView // FREEBIE
This commit is contained in:
parent
d502f1bdee
commit
3172c49436
3 changed files with 6 additions and 2 deletions
|
@ -1,4 +1,7 @@
|
||||||
{
|
{
|
||||||
|
"verify": {
|
||||||
|
"message": "Verify"
|
||||||
|
},
|
||||||
"outgoingKeyConflict": {
|
"outgoingKeyConflict": {
|
||||||
"message": "This contact's identity key has changed. Click to process and display."
|
"message": "This contact's identity key has changed. Click to process and display."
|
||||||
},
|
},
|
||||||
|
|
|
@ -282,7 +282,7 @@
|
||||||
{{> avatar }}
|
{{> avatar }}
|
||||||
<span class='name'>{{ name }}
|
<span class='name'>{{ name }}
|
||||||
{{ #conflict }}
|
{{ #conflict }}
|
||||||
<button class='conflict'><span>Verify</span></button>
|
<button class='conflict'><span>{{ verify }}</span></button>
|
||||||
{{ /conflict }}
|
{{ /conflict }}
|
||||||
</span>
|
</span>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -26,7 +26,8 @@
|
||||||
name : this.model.getTitle(),
|
name : this.model.getTitle(),
|
||||||
avatar : this.model.getAvatar(),
|
avatar : this.model.getAvatar(),
|
||||||
conflict : this.conflict,
|
conflict : this.conflict,
|
||||||
errors : this.errors
|
errors : this.errors,
|
||||||
|
verify : i18n('verify')
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in a new issue