Translation popup "Reshare author's post?" /stream
This commit is contained in:
parent
52efb3710c
commit
57e6c3861e
2 changed files with 2 additions and 1 deletions
|
|
@ -26,7 +26,7 @@ app.views.Feedback = app.views.Base.extend({
|
||||||
|
|
||||||
resharePost : function(evt) {
|
resharePost : function(evt) {
|
||||||
if(evt) { evt.preventDefault(); }
|
if(evt) { evt.preventDefault(); }
|
||||||
if(!window.confirm("Reshare " + this.model.reshareAuthor().name + "'s post?")) { return }
|
if(!window.confirm(Diaspora.I18n.t("reshares.post", {name: this.model.reshareAuthor().name}))) { return }
|
||||||
var reshare = this.model.reshare()
|
var reshare = this.model.reshare()
|
||||||
var model = this.model
|
var model = this.model
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -61,6 +61,7 @@ en:
|
||||||
reshares:
|
reshares:
|
||||||
duplicate: "That good, huh? You've already reshared that post!"
|
duplicate: "That good, huh? You've already reshared that post!"
|
||||||
successful: "The post was successfully reshared!"
|
successful: "The post was successfully reshared!"
|
||||||
|
post: "Reshare <%= name %>'s post?"
|
||||||
aspect_navigation:
|
aspect_navigation:
|
||||||
select_all: "Select all"
|
select_all: "Select all"
|
||||||
deselect_all: "Deselect all"
|
deselect_all: "Deselect all"
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue