Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/deck.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJulius Härtl <jus@bitgrid.net>2018-12-08 13:51:44 +0300
committerJulius Härtl <jus@bitgrid.net>2018-12-08 15:01:28 +0300
commit073eb0e41707b2f22426219cf71e07e67a90f840 (patch)
treea55e2eaca2e3c399a8ee20b4326faf160369aabb /templates
parent96dffbfedda3d7a6a7eb973575814e32f8adf077 (diff)
Make new comment string translatable
Signed-off-by: Julius Härtl <jus@bitgrid.net>
Diffstat (limited to 'templates')
-rw-r--r--templates/part.card.activity.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/part.card.activity.html b/templates/part.card.activity.html
index be0163b1..b1f85b18 100644
--- a/templates/part.card.activity.html
+++ b/templates/part.card.activity.html
@@ -5,7 +5,7 @@
<div class="author currentUser">{{ $ctrl.currentUser.displayName }}</div>
</div>
<form class="newCommentForm" ng-submit="$ctrl.postComment()">
- <div ng-contenteditable contenteditable="true" class="message" ng-submit="$ctrl.postComment()" data-placeholder="{{ $ctrl.t('New comment …') }}" ng-model="$ctrl.$scope.newComment" ng-disabled="$ctrl.status.commentCreateLoading"></div>
+ <div ng-contenteditable contenteditable="true" class="message" ng-submit="$ctrl.postComment()" data-placeholder="{{ newCommentString }}" ng-model="$ctrl.$scope.newComment" ng-disabled="$ctrl.status.commentCreateLoading"></div>
<input class="submit icon-confirm has-tooltip" type="submit"
value="" title="" data-original-title="Post" ng-if="!$ctrl.status.commentCreateLoading">
<div class="submitLoading icon-loading-small" ng-if="$ctrl.status.commentCreateLoading"></div>