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

github.com/nextcloud/polls.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordartcafe <github@dartcafe.de>2017-11-07 21:51:20 +0300
committerdartcafe <github@dartcafe.de>2017-11-07 21:51:20 +0300
commita9bdf7d2fcebb5f818620d24bb1ac30ba036f97f (patch)
tree8b1b83a418e12bd90b2f5dda7e1b7d6ef278f10c /templates
parentdea743b43bfb44ae0ac3df184b627f3195a24b79 (diff)
parentb272a7f778a9b340870dc20f97ff21bffcb39ad5 (diff)
Revert "Merge branch 'develop' into votepage-design"
This reverts commit dea743b43bfb44ae0ac3df184b627f3195a24b79, reversing changes made to 3d5cdbee1f3de0b8e114c7eab199de229569822a.
Diffstat (limited to 'templates')
-rw-r--r--templates/main.tmpl.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/templates/main.tmpl.php b/templates/main.tmpl.php
index 0ebb67ca..938debec 100644
--- a/templates/main.tmpl.php
+++ b/templates/main.tmpl.php
@@ -98,12 +98,12 @@
$participated = $_['participations_text'];
}
$participated_class = 'partic_no';
- $participated_title = $l->t('You did not vote');
+ $participated_title = 'You did not vote';
$participated_count = count($participated);
$comments = $_['comments'];
$commented_class = 'commented_no';
- $commented_title = $l->t('You did not comment');
+ $commented_title = 'You did not comment';
$commented_count = count($comments);
if ($owner == $userId) {
@@ -126,7 +126,7 @@
for ($i = 0; $i < count($participated); $i++) {
if ($poll->getId() == intval($participated[$i]->getPollId())) {
$participated_class = 'partic_yes';
- $participated_title = $l->t('You voted');
+ $participated_title = 'You voted';
array_splice($participated, $i, 1);
break;
}
@@ -135,7 +135,7 @@
for ($i = 0; $i < count($comments); $i++) {
if ($poll->getId() == intval($comments[$i]->getPollId())) {
$commented_class = 'commented_yes';
- $commented_title = $l->t('You commented');
+ $commented_title = 'You commented';
array_splice($comments, $i, 1);
break;
}