Test Failed
Branch master (fee893)
by René
03:21
created
lib/Controller/PageController.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -134,12 +134,12 @@
 block discarded – undo
134 134
         $polls = $this->eventMapper->findAllForUserWithInfo($this->userId);
135 135
         $comments = $this->commentMapper->findDistinctByUser($this->userId);
136 136
         $partic = $this->participationMapper->findDistinctByUser($this->userId);
137
-		$particText = $this->participationTextMapper->findDistinctByUser($this->userId);
137
+        $particText = $this->participationTextMapper->findDistinctByUser($this->userId);
138 138
         $response = new TemplateResponse('polls', 'main.tmpl', [
139 139
             'polls' => $polls,
140 140
             'comments' => $comments,
141 141
             'participations' => $partic,
142
-			'participations_text' => $particText,
142
+            'participations_text' => $particText,
143 143
             'userId' => $this->userId,
144 144
             'userMgr' => $this->manager,
145 145
             'urlGenerator' => $this->urlGenerator
Please login to merge, or discard this patch.
lib/Db/ParticipationTextMapper.php 1 patch
Indentation   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -47,16 +47,16 @@
 block discarded – undo
47 47
         return $this->findEntities($sql, [$pollId], $limit, $offset);
48 48
     }
49 49
 
50
-	/**
51
-	 * @param string $userId
52
-	 * @param int $limit
53
-	 * @param int $offset
54
-	 * @return ParticipationText[]
55
-	 */
56
-	public function findDistinctByUser($userId, $limit = null, $offset = null) {
57
-		$sql = 'SELECT DISTINCT * FROM ' . $this->getTableName() . ' WHERE user_id = ?';
58
-		return $this->findEntities($sql, [$userId], $limit, $offset);
59
-	}
50
+    /**
51
+     * @param string $userId
52
+     * @param int $limit
53
+     * @param int $offset
54
+     * @return ParticipationText[]
55
+     */
56
+    public function findDistinctByUser($userId, $limit = null, $offset = null) {
57
+        $sql = 'SELECT DISTINCT * FROM ' . $this->getTableName() . ' WHERE user_id = ?';
58
+        return $this->findEntities($sql, [$userId], $limit, $offset);
59
+    }
60 60
 
61 61
     /**
62 62
      * @param string $pollId
Please login to merge, or discard this patch.
templates/create.tmpl.php 1 patch
Braces   +68 added lines, -20 removed lines patch added patch discarded remove patch
@@ -78,8 +78,11 @@  discard block
 block discarded – undo
78 78
                         <span>
79 79
                         <?php if ($isUpdate): ?>
80 80
                             <?php p($l->t('Edit poll') . ' ' . $poll->getTitle()); ?>
81
-                        <?php else: ?>
82
-                          <?php p($l->t('Create new poll')); ?>
81
+                        <?php else {
82
+    : ?>
83
+                          <?php p($l->t('Create new poll'));
84
+}
85
+?>
83 86
                         <?php endif; ?>
84 87
                         </span>
85 88
                     </div>
@@ -89,11 +92,20 @@  discard block
 block discarded – undo
89 92
 <?php if ($isUpdate): ?>
90 93
 <form name="finish_poll" action="<?php p($urlGenerator->linkToRoute('polls.page.update_poll')); ?>" method="POST">
91 94
     <input type="hidden" name="pollId" value="<?php p($poll->getId()); ?>" />
92
-<?php else: ?>
93
-<form name="finish_poll" action="<?php p($urlGenerator->linkToRoute('polls.page.insert_poll')); ?>" method="POST">
95
+<?php else {
96
+    : ?>
97
+<form name="finish_poll" action="<?php p($urlGenerator->linkToRoute('polls.page.insert_poll'));
98
+}
99
+?>" method="POST">
94 100
 <?php endif; ?>
95
-    <input type="hidden" name="chosenDates" id="chosenDates" value="<?php if (isset($chosen)) p($chosen); ?>" />
96
-    <input type="hidden" name="expireTs" id="expireTs" value="<?php if (isset($expireTs)) p($expireTs); ?>" />
101
+    <input type="hidden" name="chosenDates" id="chosenDates" value="<?php if (isset($chosen)) {
102
+    p($chosen);
103
+}
104
+?>" />
105
+    <input type="hidden" name="expireTs" id="expireTs" value="<?php if (isset($expireTs)) {
106
+    p($expireTs);
107
+}
108
+?>" />
97 109
     <input type="hidden" name="userId" id="userId" value="<?php p($userId); ?>" />
98 110
 
99 111
     <header class="row">
@@ -102,22 +114,40 @@  discard block
 block discarded – undo
102 114
     <div class="new_poll row">
103 115
         <div class="col-50">
104 116
             <label for="pollTitle" class="input_title"><?php p($l->t('Title')); ?></label>
105
-            <input type="text" class="input_field" id="pollTitle" name="pollTitle" value="<?php if (isset($title)) p($title); ?>" />
117
+            <input type="text" class="input_field" id="pollTitle" name="pollTitle" value="<?php if (isset($title)) {
118
+    p($title);
119
+}
120
+?>" />
106 121
             <label for="pollDesc" class="input_title"><?php p($l->t('Description')); ?></label>
107
-            <textarea class="input_field" id="pollDesc" name="pollDesc"><?php if (isset($desc)) p($desc); ?></textarea>
122
+            <textarea class="input_field" id="pollDesc" name="pollDesc"><?php if (isset($desc)) {
123
+    p($desc);
124
+}
125
+?></textarea>
108 126
 
109 127
             <label class="input_title"><?php p($l->t('Access')); ?></label>
110 128
 
111
-            <input type="radio" name="accessType" id="private" value="registered" class="radio" <?php if (!$isUpdate || $access === 'registered') print_unescaped('checked'); ?> />
129
+            <input type="radio" name="accessType" id="private" value="registered" class="radio" <?php if (!$isUpdate || $access === 'registered') {
130
+    print_unescaped('checked');
131
+}
132
+?> />
112 133
             <label for="private"><?php p($l->t('Registered users only')); ?></label>
113 134
 
114
-            <input type="radio" name="accessType" id="hidden" value="hidden" class="radio" <?php if ($isUpdate && $access === 'hidden') print_unescaped('checked'); ?> />
135
+            <input type="radio" name="accessType" id="hidden" value="hidden" class="radio" <?php if ($isUpdate && $access === 'hidden') {
136
+    print_unescaped('checked');
137
+}
138
+?> />
115 139
             <label for="hidden"><?php p($l->t('hidden')); ?></label>
116 140
 
117
-            <input type="radio" name="accessType" id="public" value="public" class="radio" <?php if ($isUpdate && $access === 'public') print_unescaped('checked'); ?> />
141
+            <input type="radio" name="accessType" id="public" value="public" class="radio" <?php if ($isUpdate && $access === 'public') {
142
+    print_unescaped('checked');
143
+}
144
+?> />
118 145
             <label for="public"><?php p($l->t('Public access')); ?></label>
119 146
 
120
-            <input type="radio" name="accessType" id="select" value="select" class="radio" <?php if ($isUpdate && $access === 'select') print_unescaped('checked'); ?>>
147
+            <input type="radio" name="accessType" id="select" value="select" class="radio" <?php if ($isUpdate && $access === 'select') {
148
+    print_unescaped('checked');
149
+}
150
+?>>
121 151
             <label for="select"><?php p($l->t('Select')); ?></label>
122 152
             <span id="id_label_select">...</span>
123 153
 
@@ -133,9 +163,12 @@  discard block
 block discarded – undo
133 163
                 </div>
134 164
             </div>
135 165
 
136
-            <input type="hidden" name="accessValues" id="accessValues" value="<?php if ($isUpdate && $access === 'select') p($accessTypes) ?>" />
166
+            <input type="hidden" name="accessValues" id="accessValues" value="<?php if ($isUpdate && $access === 'select') {
167
+    p($accessTypes) ?>" />
137 168
 
138
-            <input id="isAnonymous" name="isAnonymous" type="checkbox" class="checkbox" <?php $isAnonymous ? print_unescaped('value="true" checked') : print_unescaped('value="false"'); ?> />
169
+            <input id="isAnonymous" name="isAnonymous" type="checkbox" class="checkbox" <?php $isAnonymous ? print_unescaped('value="true" checked') : print_unescaped('value="false"');
170
+}
171
+?> />
139 172
             <label for="isAnonymous" class="input_title"><?php p($l->t('Anonymous')) ?></label>
140 173
 
141 174
             <div id="anonOptions" style="display:none;">
@@ -151,20 +184,32 @@  discard block
 block discarded – undo
151 184
         </div>
152 185
         <div class="col-50">
153 186
 
154
-            <input type="radio" name="pollType" id="event" value="event" class="radio" <?php if (!$isUpdate || $poll->getType() == '0') print_unescaped('checked'); ?> />
187
+            <input type="radio" name="pollType" id="event" value="event" class="radio" <?php if (!$isUpdate || $poll->getType() == '0') {
188
+    print_unescaped('checked');
189
+}
190
+?> />
155 191
             <label for="event"><?php p($l->t('Event schedule')); ?></label>
156 192
 
157 193
             <!-- TODO texts to db -->
158
-            <input type="radio" name="pollType" id="text" value="text" class="radio" <?php if ($isUpdate && $poll->getType() == '1') print_unescaped('checked'); ?>>
194
+            <input type="radio" name="pollType" id="text" value="text" class="radio" <?php if ($isUpdate && $poll->getType() == '1') {
195
+    print_unescaped('checked');
196
+}
197
+?>>
159 198
             <label for="text"><?php p($l->t('Text based')); ?></label>
160 199
 
161
-            <div id="date-select-container" <?php if ($isUpdate && $poll->getType() == '1') print_unescaped('style="display:none;"'); ?> >
200
+            <div id="date-select-container" <?php if ($isUpdate && $poll->getType() == '1') {
201
+    print_unescaped('style="display:none;"');
202
+}
203
+?> >
162 204
                 <label for="datetimepicker" class="input_title"><?php p($l->t('Dates')); ?></label>
163 205
                 <input id="datetimepicker" type="text" />
164 206
                 <table id="selected-dates-table" class="choices">
165 207
                 </table>
166 208
             </div>
167
-            <div id="text-select-container" <?php if(!$isUpdate || $poll->getType() == '0') print_unescaped('style="display:none;"'); ?> >
209
+            <div id="text-select-container" <?php if(!$isUpdate || $poll->getType() == '0') {
210
+    print_unescaped('style="display:none;"');
211
+}
212
+?> >
168 213
                 <label for="text-title" class="input_title"><?php p($l->t('Text item')); ?></label>
169 214
                 <div class="input-group">
170 215
                     <input type="text" id="text-title" placeholder="<?php print_unescaped('Insert text...'); ?>" />
@@ -180,8 +225,11 @@  discard block
 block discarded – undo
180 225
     <div class="form-actions">
181 226
         <?php if ($isUpdate): ?>
182 227
             <input type="submit" id="submit_finish_poll" class="button btn primary" value="<?php p($l->t('Update poll')); ?>" />
183
-        <?php else: ?>
184
-            <input type="submit" id="submit_finish_poll" class="button btn primary" value="<?php p($l->t('Create poll')); ?>" />
228
+        <?php else {
229
+    : ?>
230
+            <input type="submit" id="submit_finish_poll" class="button btn primary" value="<?php p($l->t('Create poll'));
231
+}
232
+?>" />
185 233
         <?php endif; ?>
186 234
         <a href="<?php p($urlGenerator->linkToRoute('polls.page.index')); ?>" id="submit_cancel_poll" class="button"><?php p($l->t('Cancel')); ?></a>
187 235
     </div>
Please login to merge, or discard this patch.
templates/main.tmpl.php 1 patch
Braces   +15 added lines, -7 removed lines patch added patch discarded remove patch
@@ -53,14 +53,17 @@  discard block
 block discarded – undo
53 53
             <div class="icon-polls"></div>
54 54
             <h2><?php p($l->t('No existing polls.')); ?></h2>
55 55
         </div>
56
-    <?php else : ?>
56
+    <?php else {
57
+    : ?>
57 58
             <div class="table has-controls">
58 59
                 <div class ="row table-header">
59 60
 
60 61
                     <div class="wrapper group-master">
61 62
                         <div class="wrapper group-1">
62 63
                             <div class="wrapper group-1-1">
63
-                                <div class="column name">        <?php p($l->t('Title')); ?></div>
64
+                                <div class="column name">        <?php p($l->t('Title'));
65
+}
66
+?></div>
64 67
                                 <div class="column description"></div>
65 68
                             </div>
66 69
                             <div class="wrapper group-1-2">
@@ -83,7 +86,9 @@  discard block
 block discarded – undo
83 86
 
84 87
                 <?php foreach ($_['polls'] as $poll) : ?>
85 88
                     <?php
86
-                        if (!userHasAccess($poll, $userId)) continue;
89
+                        if (!userHasAccess($poll, $userId)) {
90
+                            continue;
91
+                        }
87 92
                         // direct url to poll
88 93
                         $pollUrl = $urlGenerator->linkToRouteAbsolute('polls.page.goto_poll', array('hash' => $poll->getHash()));
89 94
                         $owner = $poll->getOwner();
@@ -250,12 +255,15 @@  discard block
 block discarded – undo
250 255
         if (strpos($item, 'group_') === 0) {
251 256
             $grp = substr($item, 6);
252 257
             foreach ($user_groups as $user_group) {
253
-                if ($user_group === $grp) return true;
258
+                if ($user_group === $grp) {
259
+                    return true;
260
+                }
254 261
             }
255
-        }
256
-        else if (strpos($item, 'user_') === 0) {
262
+        } else if (strpos($item, 'user_') === 0) {
257 263
             $usr = substr($item, 5);
258
-            if ($usr === $userId) return true;
264
+            if ($usr === $userId) {
265
+                return true;
266
+            }
259 267
         }
260 268
     }
261 269
     return false;
Please login to merge, or discard this patch.
templates/goto.tmpl.php 1 patch
Braces   +14 added lines, -5 removed lines patch added patch discarded remove patch
@@ -319,7 +319,10 @@  discard block
 block discarded – undo
319 319
                         </form>
320 320
                         <?php if (User::isLoggedIn()) : ?>
321 321
                         <span class="notification">
322
-                            <input type="checkbox" id="check_notif" class="checkbox" <?php if ($notification !== null) print_unescaped(' checked'); ?> />
322
+                            <input type="checkbox" id="check_notif" class="checkbox" <?php if ($notification !== null) {
323
+    print_unescaped(' checked');
324
+}
325
+?> />
323 326
                             <label for="check_notif"><?php p($l->t('Receive notification email on activity')); ?></label>
324 327
                         </span>
325 328
                         <?php endif; ?>
@@ -351,8 +354,11 @@  discard block
 block discarded – undo
351 354
                                     <a href="<?php p($urlGenerator->linkToRouteAbsolute('core.login.showLoginForm')); ?>"><?php p($l->t('Login')); ?></a>
352 355
                                     <?php p($l->t('or')); ?>
353 356
                                     <?php print_unescaped('<th id="id_ac_detected" class="external current-user"><input type="text" name="user_name_comm" id="user_name_comm" placeholder="' . $l->t('Your name here') . '" /></th>'); ?>
354
-                                <?php else: ?>
355
-                                    <?php p($l->t('Logged in as') . ' ' . $userId); ?>
357
+                                <?php else {
358
+    : ?>
359
+                                    <?php p($l->t('Logged in as') . ' ' . $userId);
360
+}
361
+?>
356 362
                                 <?php endif; ?>
357 363
                                     <textarea id="commentBox" name="commentBox"></textarea>
358 364
                                     <p>
@@ -386,8 +392,11 @@  discard block
 block discarded – undo
386 392
                                     </div>
387 393
                                 </div>
388 394
                             <?php endforeach; ?>
389
-                        <?php else : ?>
390
-                            <?php p($l->t('No comments yet. Be the first.')); ?>
395
+                        <?php else {
396
+    : ?>
397
+                            <?php p($l->t('No comments yet. Be the first.'));
398
+}
399
+?>
391 400
                         <?php endif; ?>
392 401
                     </div>
393 402
                 </div>
Please login to merge, or discard this patch.
l10n/en.php 1 patch
Indentation   +83 added lines, -83 removed lines patch added patch discarded remove patch
@@ -1,96 +1,96 @@
 block discarded – undo
1 1
 <?php
2 2
 $TRANSLATIONS = array(
3
-	"Polls" => "Polls",
3
+    "Polls" => "Polls",
4 4
     "Poll" => "Poll",
5
-	"Summary" => "Summary",
6
-	"No existing polls." => "No existing polls.",
7
-	"Title" => "Title",
8
-	"Description" => "Description",
9
-	"Please select at least one user or group!" => "Please select at least one user or group!",
10
-	"Created" => "Created",
11
-	"Expires" => "Expires",
12
-	"Never" => "Never",
13
-	"By" => "By",
14
-	"Go to" => "Go to",
15
-	"Create new poll" => "Create new poll",
16
-	"Access (click for link)" => "Access (click for link)",
17
-	"Access" => "Access",
18
-	"Registered users only" => "Registered users only",
19
-	"Public access" => "Public access",
20
-	"hidden" => "hidden",
21
-	"public" => "public",
22
-	"registered" => "registered",
5
+    "Summary" => "Summary",
6
+    "No existing polls." => "No existing polls.",
7
+    "Title" => "Title",
8
+    "Description" => "Description",
9
+    "Please select at least one user or group!" => "Please select at least one user or group!",
10
+    "Created" => "Created",
11
+    "Expires" => "Expires",
12
+    "Never" => "Never",
13
+    "By" => "By",
14
+    "Go to" => "Go to",
15
+    "Create new poll" => "Create new poll",
16
+    "Access (click for link)" => "Access (click for link)",
17
+    "Access" => "Access",
18
+    "Registered users only" => "Registered users only",
19
+    "Public access" => "Public access",
20
+    "hidden" => "hidden",
21
+    "public" => "public",
22
+    "registered" => "registered",
23 23
     "expired" => "expired",
24
-	"delete" => "delete",
25
-	"Next" => "Next",
26
-	"Cancel" => "Cancel",
27
-	"User/Group search" => "Search for users and groups",
24
+    "delete" => "delete",
25
+    "Next" => "Next",
26
+    "Cancel" => "Cancel",
27
+    "User/Group search" => "Search for users and groups",
28 28
     "Options" => "Options",
29
-	"Edit poll" => "Edit poll",
30
-	"Click on days to add or remove" => "Click on days to add or remove",
31
-	"Select hour & minute, then click on time" => "Select hour & minute, then click on time",
32
-	"Mon" => "Mon",
33
-	"Tue" => "Tue",
34
-	"Wed" => "Wed",
35
-	"Thu" => "Thu",
36
-	"Fri" => "Fri",
37
-	"Sat" => "Sat",
38
-	"Sun" => "Sun",
39
-	"click to add" => "click to add",
40
-	"date\\time" => "date\\time",
41
-	"Poll URL" => "Poll URL",
42
-	"Link" => "Link",
43
-	"Total" => "Total",
44
-	"Best option" => "Best option",
45
-	"All" => "Alle",
46
-	"No description provided." => "No description provided.",
47
-	"Write new Comment" => "Write new Comment",
48
-	"Comments" => "Comments",
49
-	"No comments yet. Be the first." => "No comments yet. Be the first.",
50
-	"Send!" => "Send!",
51
-	"Vote!" => "Vote!",
52
-	"Polls summary" => "Polls summary",
53
-	"Home" => "Home",
54
-	"Update poll" => "Update poll",
55
-	"Create poll" => "Create poll",
56
-	"participated" => "participated",
57
-	"Yourself" => "Yourself",
29
+    "Edit poll" => "Edit poll",
30
+    "Click on days to add or remove" => "Click on days to add or remove",
31
+    "Select hour & minute, then click on time" => "Select hour & minute, then click on time",
32
+    "Mon" => "Mon",
33
+    "Tue" => "Tue",
34
+    "Wed" => "Wed",
35
+    "Thu" => "Thu",
36
+    "Fri" => "Fri",
37
+    "Sat" => "Sat",
38
+    "Sun" => "Sun",
39
+    "click to add" => "click to add",
40
+    "date\\time" => "date\\time",
41
+    "Poll URL" => "Poll URL",
42
+    "Link" => "Link",
43
+    "Total" => "Total",
44
+    "Best option" => "Best option",
45
+    "All" => "Alle",
46
+    "No description provided." => "No description provided.",
47
+    "Write new Comment" => "Write new Comment",
48
+    "Comments" => "Comments",
49
+    "No comments yet. Be the first." => "No comments yet. Be the first.",
50
+    "Send!" => "Send!",
51
+    "Vote!" => "Vote!",
52
+    "Polls summary" => "Polls summary",
53
+    "Home" => "Home",
54
+    "Update poll" => "Update poll",
55
+    "Create poll" => "Create poll",
56
+    "participated" => "participated",
57
+    "Yourself" => "Yourself",
58 58
     "You did not vote" => "You did not vote",
59 59
     "You voted" => "You voted",
60 60
     "You did not comment" => "You did not comment",
61 61
     "You commented" => "You commented",
62
-	"Select" => "Select",
63
-	"Close" => "Close",
64
-	"Users" => "Users",
65
-	"Groups" => "Groups",
62
+    "Select" => "Select",
63
+    "Close" => "Close",
64
+    "Users" => "Users",
65
+    "Groups" => "Groups",
66 66
     "Do you really want to delete that poll?" => "Do you really want to delete that poll?",
67
-	"You must enter at least a title for the new poll." => "You must enter at least a title for the new poll.",
68
-	"Copy to clipboard: Ctrl+C, Enter" => "Copy to clipboard: Ctrl+C, Enter",
69
-	"Thanks that you've voted. You can close the page now." => "Thanks that you've voted. You can close the page now.",
70
-	"Nothing selected!\nClick on cells to turn them green." => "Nothing selected!\nClick on cells to turn them green.",
71
-	"You are not registered.\nPlease enter your name to vote\n(at least 3 characters!)" => "You are not registered.\nPlease enter your name to vote\n(at least 3 characters!)",
72
-	"You already have an item with the same text" => "You already have an item with the same text",
73
-	"Please choose the groups or users you want to add to your poll." => "Please choose the groups or users you want to add to your poll.",
74
-	"Click to get link" => "Click to get link",
75
-	"Edit access" => "Edit access",
76
-	"Type" => "Type",
77
-	"Event schedule" => "Event schedule",
78
-	"Text based" => "Text based",
79
-	"Text item" => "Text item",
67
+    "You must enter at least a title for the new poll." => "You must enter at least a title for the new poll.",
68
+    "Copy to clipboard: Ctrl+C, Enter" => "Copy to clipboard: Ctrl+C, Enter",
69
+    "Thanks that you've voted. You can close the page now." => "Thanks that you've voted. You can close the page now.",
70
+    "Nothing selected!\nClick on cells to turn them green." => "Nothing selected!\nClick on cells to turn them green.",
71
+    "You are not registered.\nPlease enter your name to vote\n(at least 3 characters!)" => "You are not registered.\nPlease enter your name to vote\n(at least 3 characters!)",
72
+    "You already have an item with the same text" => "You already have an item with the same text",
73
+    "Please choose the groups or users you want to add to your poll." => "Please choose the groups or users you want to add to your poll.",
74
+    "Click to get link" => "Click to get link",
75
+    "Edit access" => "Edit access",
76
+    "Type" => "Type",
77
+    "Event schedule" => "Event schedule",
78
+    "Text based" => "Text based",
79
+    "Text item" => "Text item",
80 80
     "Dates" => "Dates",
81
-	"Description (will be shown as tooltip on the summary page)" => "Description (will be shown as tooltip on the summary page)",
82
-	"Poll expired" => "Poll expired",
83
-	"The poll expired on %s. Voting is disabled, but you can still comment." => "The poll expired on %s. Voting is disabled, but you can still comment.",
84
-	"Access denied" => "Access denied",
85
-	"You are not allowed to view this poll or the poll does not exist." => "You are not allowed to view this poll or the poll does not exist.",
86
-	"Error" => "Error",
87
-	"Hello %s,<br/><br/><strong>%s</strong> shared the poll '%s' with you. To go directly to the poll, you can use this link: <a href=\"%s\">%s</a>" => "Hello %s,<br/><br/><strong>%s</strong> shared the poll '%s' with you. To go directly to the poll, you can use this link: <a href=\"%s\">%s</a>",
88
-	"Hello %s,<br/><br/><strong>%s</strong> commented on the poll '%s'.<br/><br/><i>%s</i><br/><br/>To go directly to the poll, you can use this link: <a href=\"%s\">%s</a>" => "Hello %s,<br/><br/><strong>%s</strong> commented on the poll '%s'.<br/><br/><i>%s</i><br/><br/>To go directly to the poll, you can use this link: <a href=\"%s\">%s</a>",
89
-	"Hello %s,<br/><br/><strong>%s</strong> participated in the poll '%s'.<br/><br/>To go directly to the poll, you can use this link: <a href=\"%s\">%s</a>" => "Hello %s,<br/><br/><strong>%s</strong> participated in the poll '%s'.<br/><br/>To go directly to the poll, you can use this link: <a href=\"%s\">%s</a>",
90
-	"Polls App - New Comment" => "Polls App - New Comment",
91
-	"Polls App - New Participant" => "Polls App - New Participant",
92
-	"Polls App - New Poll" => "Polls App - New Poll",
93
-	"Polls App" => "Polls App",
94
-	"Receive notification email on activity" => "Receive notification email on activity"
81
+    "Description (will be shown as tooltip on the summary page)" => "Description (will be shown as tooltip on the summary page)",
82
+    "Poll expired" => "Poll expired",
83
+    "The poll expired on %s. Voting is disabled, but you can still comment." => "The poll expired on %s. Voting is disabled, but you can still comment.",
84
+    "Access denied" => "Access denied",
85
+    "You are not allowed to view this poll or the poll does not exist." => "You are not allowed to view this poll or the poll does not exist.",
86
+    "Error" => "Error",
87
+    "Hello %s,<br/><br/><strong>%s</strong> shared the poll '%s' with you. To go directly to the poll, you can use this link: <a href=\"%s\">%s</a>" => "Hello %s,<br/><br/><strong>%s</strong> shared the poll '%s' with you. To go directly to the poll, you can use this link: <a href=\"%s\">%s</a>",
88
+    "Hello %s,<br/><br/><strong>%s</strong> commented on the poll '%s'.<br/><br/><i>%s</i><br/><br/>To go directly to the poll, you can use this link: <a href=\"%s\">%s</a>" => "Hello %s,<br/><br/><strong>%s</strong> commented on the poll '%s'.<br/><br/><i>%s</i><br/><br/>To go directly to the poll, you can use this link: <a href=\"%s\">%s</a>",
89
+    "Hello %s,<br/><br/><strong>%s</strong> participated in the poll '%s'.<br/><br/>To go directly to the poll, you can use this link: <a href=\"%s\">%s</a>" => "Hello %s,<br/><br/><strong>%s</strong> participated in the poll '%s'.<br/><br/>To go directly to the poll, you can use this link: <a href=\"%s\">%s</a>",
90
+    "Polls App - New Comment" => "Polls App - New Comment",
91
+    "Polls App - New Participant" => "Polls App - New Participant",
92
+    "Polls App - New Poll" => "Polls App - New Poll",
93
+    "Polls App" => "Polls App",
94
+    "Receive notification email on activity" => "Receive notification email on activity"
95 95
 );
96 96
 $PLURAL_FORMS = "nplurals=2; plural=(n != 1);";
Please login to merge, or discard this patch.
l10n/fr.php 1 patch
Indentation   +82 added lines, -82 removed lines patch added patch discarded remove patch
@@ -1,96 +1,96 @@
 block discarded – undo
1 1
 <?php
2 2
 $TRANSLATIONS = array(
3
-	"Polls" => "Sondages",
3
+    "Polls" => "Sondages",
4 4
     "Poll" => "Sondage",
5
-	"Summary" => "Sommaire",
6
-	"No existing polls." => "Aucun sondages n'existent.",
7
-	"Title" => "Titre",
8
-	"Description" => "Description",
5
+    "Summary" => "Sommaire",
6
+    "No existing polls." => "Aucun sondages n'existent.",
7
+    "Title" => "Titre",
8
+    "Description" => "Description",
9 9
     "Please select at least one user or group!" => "S'il vous plaît, sélectionnez au moins un utilisateur ou un groupe!",
10
-	"Created" => "Créer",
11
-	"Expires" => "Expirer",
12
-	"Never" => "Jamais",
13
-	"By" => "Par",
14
-	"Go to" => "Allez à",
15
-	"Create new poll" => "Créer une nouveau sondage",
16
-	"Access (click for link)" => "Accès (Cliquer pour accèder au lien)",
17
-	"Access" => "Accès",
18
-	"Registered users only" => "Utilisateurs inscrits seulement",
19
-	"Public access" => "Accès publique",
20
-	"hidden" => "caché",
21
-	"public" => "public",
22
-	"registered" => "inscription",
10
+    "Created" => "Créer",
11
+    "Expires" => "Expirer",
12
+    "Never" => "Jamais",
13
+    "By" => "Par",
14
+    "Go to" => "Allez à",
15
+    "Create new poll" => "Créer une nouveau sondage",
16
+    "Access (click for link)" => "Accès (Cliquer pour accèder au lien)",
17
+    "Access" => "Accès",
18
+    "Registered users only" => "Utilisateurs inscrits seulement",
19
+    "Public access" => "Accès publique",
20
+    "hidden" => "caché",
21
+    "public" => "public",
22
+    "registered" => "inscription",
23 23
     "expired" => "expired",
24
-	"delete" => "effacer",
25
-	"Next" => "Suivant",
26
-	"Cancel" => "Annuler",
27
-	"User/Group search" => "Recherche utilisateur ou Groupe",
24
+    "delete" => "effacer",
25
+    "Next" => "Suivant",
26
+    "Cancel" => "Annuler",
27
+    "User/Group search" => "Recherche utilisateur ou Groupe",
28 28
     "Options" => "Options",
29
-	"Edit poll" => "Modifier sondage",
30
-	"Click on days to add or remove" => "Cliquez sur une journée à ajouter ou à supprimer",
31
-	"Select hour & minute, then click on time" => "Selectionnez l'heure et les minutes, et cliquez sur le temps",
32
-	"Mon" => "Lun",
33
-	"Tue" => "Mar",
34
-	"Wed" => "Mer",
35
-	"Thu" => "Jeu",
36
-	"Fri" => "Ven",
37
-	"Sat" => "Sam",
38
-	"Sun" => "Dim",
39
-	"click to add" => "Cliquez pour ajouter",
40
-	"date\\time" => "date\\temps",
41
-	"Poll URL" => "URL du sondage",
42
-	"Link" => "Lien",
43
-	"Total" => "Total",
44
-	"Best option" => "Meilleur option",
45
-	"All" => "Tout",
46
-	"No description provided." => "Pas de description fournis.",
47
-	"Write new Comment" => "Ecrivez un nouveau commentaire",
48
-	"Comments" => "Commentaires",
49
-	"No comments yet. Be the first." => "pas de commentaires maintenant. Soyez le premier.",
50
-	"Send!" => "Envoyez!",
51
-	"Vote!" => "Vote!",
52
-	"Polls summary" => "Résumé des sondages",
53
-	"Update poll" => "Mise à jour des sondages",
54
-	"Create poll" => "Créer un sondage",
55
-	"Home" => "Home",
56
-	"participated" => "participer",
57
-	"Yourself" => "Vous-même",
29
+    "Edit poll" => "Modifier sondage",
30
+    "Click on days to add or remove" => "Cliquez sur une journée à ajouter ou à supprimer",
31
+    "Select hour & minute, then click on time" => "Selectionnez l'heure et les minutes, et cliquez sur le temps",
32
+    "Mon" => "Lun",
33
+    "Tue" => "Mar",
34
+    "Wed" => "Mer",
35
+    "Thu" => "Jeu",
36
+    "Fri" => "Ven",
37
+    "Sat" => "Sam",
38
+    "Sun" => "Dim",
39
+    "click to add" => "Cliquez pour ajouter",
40
+    "date\\time" => "date\\temps",
41
+    "Poll URL" => "URL du sondage",
42
+    "Link" => "Lien",
43
+    "Total" => "Total",
44
+    "Best option" => "Meilleur option",
45
+    "All" => "Tout",
46
+    "No description provided." => "Pas de description fournis.",
47
+    "Write new Comment" => "Ecrivez un nouveau commentaire",
48
+    "Comments" => "Commentaires",
49
+    "No comments yet. Be the first." => "pas de commentaires maintenant. Soyez le premier.",
50
+    "Send!" => "Envoyez!",
51
+    "Vote!" => "Vote!",
52
+    "Polls summary" => "Résumé des sondages",
53
+    "Update poll" => "Mise à jour des sondages",
54
+    "Create poll" => "Créer un sondage",
55
+    "Home" => "Home",
56
+    "participated" => "participer",
57
+    "Yourself" => "Vous-même",
58 58
     "You did not vote" => "You did not vote",
59 59
     "You voted" => "You voted",
60 60
     "You did not comment" => "You did not comment",
61 61
     "You commented" => "You commented",
62
-	"Select" => "Selectionner",
63
-	"Close" => "Fermer",
64
-	"Users" => "Utilisateurs",
65
-	"Groups" => "Groupes",
62
+    "Select" => "Selectionner",
63
+    "Close" => "Fermer",
64
+    "Users" => "Utilisateurs",
65
+    "Groups" => "Groupes",
66 66
     "Do you really want to delete that poll?" => "Voulez vous réellement supprimer ce sondage?",
67
-	"You must enter at least a title for the new poll." => "Vous devez rentrer au moin un titre pour ce nouveau sondage.",
68
-	"Copy to clipboard: Ctrl+C, Enter" => "Copier dans le presse-papier: Ctrl+C, Entrer",
69
-	"Thanks that you've voted. You can close the page now." => "Merci d'avoir voté. Vous pouvez fermer la page maintenant.",
70
-	"Nothing selected!\nClick on cells to turn them green." => "Rien de sélectionner\ncliquez sur une cellule pour l'activer en vert.",
71
-	"You are not registered.\nPlease enter your name to vote\n(at least 3 characters!)" => "Vous n'n'êtes pas inscrits.\nS'il vous plaît entrer votre nom pour voter\n(Au moin trois caractères!)",
72
-	"You already have an item with the same text" => "Vous avez dêja un article avec le même texte",
73
-	"Please choose the groups or users you want to add to your poll." => "Si'l vous plaît, choisissez le groupe ou l'utilisateur a ajouter au sondage.",
74
-	"Click to get link" => "Cliquez pour avoir le lien",
75
-	"Edit access" => "Modifier les accès",
76
-	"Type" => "Type",
77
-	"Event schedule" => "Calendrier des événements",
78
-	"Text based" => "Texte basé",
79
-	"Text item" => "Article de texte",
67
+    "You must enter at least a title for the new poll." => "Vous devez rentrer au moin un titre pour ce nouveau sondage.",
68
+    "Copy to clipboard: Ctrl+C, Enter" => "Copier dans le presse-papier: Ctrl+C, Entrer",
69
+    "Thanks that you've voted. You can close the page now." => "Merci d'avoir voté. Vous pouvez fermer la page maintenant.",
70
+    "Nothing selected!\nClick on cells to turn them green." => "Rien de sélectionner\ncliquez sur une cellule pour l'activer en vert.",
71
+    "You are not registered.\nPlease enter your name to vote\n(at least 3 characters!)" => "Vous n'n'êtes pas inscrits.\nS'il vous plaît entrer votre nom pour voter\n(Au moin trois caractères!)",
72
+    "You already have an item with the same text" => "Vous avez dêja un article avec le même texte",
73
+    "Please choose the groups or users you want to add to your poll." => "Si'l vous plaît, choisissez le groupe ou l'utilisateur a ajouter au sondage.",
74
+    "Click to get link" => "Cliquez pour avoir le lien",
75
+    "Edit access" => "Modifier les accès",
76
+    "Type" => "Type",
77
+    "Event schedule" => "Calendrier des événements",
78
+    "Text based" => "Texte basé",
79
+    "Text item" => "Article de texte",
80 80
     "Dates" => "Dates",
81
-	"Description (will be shown as tooltip on the summary page)" => "Description (Sera affiché comme info-bulle sur la page de synthèse)",
82
-	"Poll expired" => "Sondage expiré",
83
-	"The poll expired on %s. Voting is disabled, but you can still comment." => "Le sondage a expiré sur %s. Le vote est désactivée, mais vous pouvez toujours commenter.",
84
-	"Access denied" => "Accès refuser",
85
-	"You are not allowed to view this poll or the poll does not exist." => "Vous n'êtes pas autorisé à afficher ce sondage ou le sondage n'existe pas.",
86
-	"Error" => "Erreur",
87
-	"Hello %s,<br/><br/><strong>%s</strong> shared the poll '%s' with you. To go directly to the poll, you can use this link: <a href=\"%s\">%s</a>" => "Bonjour %s,<br/><br/><strong>%s</strong> a partagé le sondage '%s' avec vous. Pour aller directement au sondage, vous pouvez utiliser ce lien <a href=\"%s\">%s</a>",
88
-	"Hello %s,<br/><br/><strong>%s</strong> commented on the poll '%s'.<br/><br/><i>%s</i><br/><br/>To go directly to the poll, you can use this link: <a href=\"%s\">%s</a>" => "Bonjour %s,<br/><br/><strong>%s</strong> a commenté le sondage'%s'.<br/><br/><i>%s</i><br/><br/>Pour aller directement au sondage, vous pouvez utiliser ce lien: <a href=\"%s\">%s</a>",
89
-	"Hello %s,<br/><br/><strong>%s</strong> participated in the poll '%s'.<br/><br/>To go directly to the poll, you can use this link: <a href=\"%s\">%s</a>" => "Bonjour %s,<br/><br/><strong>%s</strong> a participer au sondage'%s'.<br/><br/>To Pour aller directement au sondage, vous pouvez utiliser ce lien:<a href=\"%s\">%s</a>",
90
-	"Polls App - New Comment" => "Sondage App - Nouveau commentaire",
91
-	"Polls App - New Participant" => "Sondage App - Nouveau participant",
92
-	"Polls App - New Poll" => "Sondage App - Nouveau sondage",
93
-	"Polls App" => "Sondage App",
94
-	"Receive notification email on activity" => "Recevoir un e-mail de notification sur l'activité"
81
+    "Description (will be shown as tooltip on the summary page)" => "Description (Sera affiché comme info-bulle sur la page de synthèse)",
82
+    "Poll expired" => "Sondage expiré",
83
+    "The poll expired on %s. Voting is disabled, but you can still comment." => "Le sondage a expiré sur %s. Le vote est désactivée, mais vous pouvez toujours commenter.",
84
+    "Access denied" => "Accès refuser",
85
+    "You are not allowed to view this poll or the poll does not exist." => "Vous n'êtes pas autorisé à afficher ce sondage ou le sondage n'existe pas.",
86
+    "Error" => "Erreur",
87
+    "Hello %s,<br/><br/><strong>%s</strong> shared the poll '%s' with you. To go directly to the poll, you can use this link: <a href=\"%s\">%s</a>" => "Bonjour %s,<br/><br/><strong>%s</strong> a partagé le sondage '%s' avec vous. Pour aller directement au sondage, vous pouvez utiliser ce lien <a href=\"%s\">%s</a>",
88
+    "Hello %s,<br/><br/><strong>%s</strong> commented on the poll '%s'.<br/><br/><i>%s</i><br/><br/>To go directly to the poll, you can use this link: <a href=\"%s\">%s</a>" => "Bonjour %s,<br/><br/><strong>%s</strong> a commenté le sondage'%s'.<br/><br/><i>%s</i><br/><br/>Pour aller directement au sondage, vous pouvez utiliser ce lien: <a href=\"%s\">%s</a>",
89
+    "Hello %s,<br/><br/><strong>%s</strong> participated in the poll '%s'.<br/><br/>To go directly to the poll, you can use this link: <a href=\"%s\">%s</a>" => "Bonjour %s,<br/><br/><strong>%s</strong> a participer au sondage'%s'.<br/><br/>To Pour aller directement au sondage, vous pouvez utiliser ce lien:<a href=\"%s\">%s</a>",
90
+    "Polls App - New Comment" => "Sondage App - Nouveau commentaire",
91
+    "Polls App - New Participant" => "Sondage App - Nouveau participant",
92
+    "Polls App - New Poll" => "Sondage App - Nouveau sondage",
93
+    "Polls App" => "Sondage App",
94
+    "Receive notification email on activity" => "Recevoir un e-mail de notification sur l'activité"
95 95
 );
96 96
 $PLURAL_FORMS = "nplurals=2; plural=(n != 1);";
Please login to merge, or discard this patch.
l10n/de.php 1 patch
Indentation   +83 added lines, -83 removed lines patch added patch discarded remove patch
@@ -2,96 +2,96 @@
 block discarded – undo
2 2
 $TRANSLATIONS = array(
3 3
     "Polls" => "Umfragen",
4 4
     "Poll" => "Umfrage",
5
-	"Summary" => "Übersicht",
6
-	"No existing polls." => "Keine Umfragen vorhanden.",
7
-	"Title" => "Name",
8
-	"Description" => "Beschreibung",
5
+    "Summary" => "Übersicht",
6
+    "No existing polls." => "Keine Umfragen vorhanden.",
7
+    "Title" => "Name",
8
+    "Description" => "Beschreibung",
9 9
     "Please select at least one user or group!" => "Bitte wählen Sie mindestens einen Benutzer oder eine Gruppe aus!",
10
-	"Created" => "erstellt",
11
-	"Expires" => "Läuft ab",
12
-	"Never" => "Niemals",
13
-	"By" => "von",
14
-	"Go to" => "Gehe zu",
15
-	"Create new poll" => "Neue Umfrage erstellen",
16
-	"Access (click for link)" => "Zugriff (für Link klicken)",
17
-	"Access" => "Zugriff",
18
-	"Registered users only" => "Nur registrierte Benutzer",
19
-	"Public access" => "Öffentlicher Zugriff",
20
-	"hidden" => "versteckt",
21
-	"public" => "öffentlich",
22
-	"registered" => "für Registrierte",
23
-	"delete" => "löschen",
24
-	"Next" => "Weiter",
25
-	"Cancel" => "Abbrechen",
26
-	"User/Group search" => "Benutzer oder Gruppe suchen",
10
+    "Created" => "erstellt",
11
+    "Expires" => "Läuft ab",
12
+    "Never" => "Niemals",
13
+    "By" => "von",
14
+    "Go to" => "Gehe zu",
15
+    "Create new poll" => "Neue Umfrage erstellen",
16
+    "Access (click for link)" => "Zugriff (für Link klicken)",
17
+    "Access" => "Zugriff",
18
+    "Registered users only" => "Nur registrierte Benutzer",
19
+    "Public access" => "Öffentlicher Zugriff",
20
+    "hidden" => "versteckt",
21
+    "public" => "öffentlich",
22
+    "registered" => "für Registrierte",
23
+    "delete" => "löschen",
24
+    "Next" => "Weiter",
25
+    "Cancel" => "Abbrechen",
26
+    "User/Group search" => "Benutzer oder Gruppe suchen",
27 27
     "Options" => "Optionen",
28
-	"Edit poll" => "Umfrage bearbeiten",
29
-	"Click on days to add or remove" => "Klicke auf die Tage um sie hinzuzufügen oder zu löschen",
30
-	"Select hour & minute, then click on time" => "Wähle Stunden und Minuten, dann klicke auf die Zeit",
31
-	"Mon" => "Mo",
32
-	"Tue" => "Di",
33
-	"Wed" => "Mi",
34
-	"Thu" => "Do",
35
-	"Fri" => "Fr",
36
-	"Sat" => "Sa",
37
-	"Sun" => "So",
38
-	"click to add" => "Klicke zum Hinzufügen",
39
-	"date\\time" => "Datum/Zeit",
40
-	"poll URL" => "Umfrage-Link",
41
-	"Link" => "Link",
42
-	"Total" => "Gesamt",
43
-	"Best option" => "Bestes Ergebnis",
44
-	"All" => "Alle",
45
-	"No description provided." => "Keine Beschreibung angegeben.",
46
-	"Write new Comment" => "Neuer Kommentar",
47
-	"Comments" => "Kommentare",
48
-	"No comments yet. Be the first." => "Bisher keine Kommentare. Sei der Erste.",
49
-	"Send!" => "Abschicken!",
50
-	"Vote!" => "Abstimmen!",
51
-	"Polls summary" => "Umfrage-Übersicht",
52
-	"Home" => "Startseite",
53
-	"Update poll" => "Umfrage aktualisieren",
54
-	"Create poll" => "Umfrage erstellen",
55
-	"participated" => "abgestimmt",
56
-	"Yourself" => "Dir",
28
+    "Edit poll" => "Umfrage bearbeiten",
29
+    "Click on days to add or remove" => "Klicke auf die Tage um sie hinzuzufügen oder zu löschen",
30
+    "Select hour & minute, then click on time" => "Wähle Stunden und Minuten, dann klicke auf die Zeit",
31
+    "Mon" => "Mo",
32
+    "Tue" => "Di",
33
+    "Wed" => "Mi",
34
+    "Thu" => "Do",
35
+    "Fri" => "Fr",
36
+    "Sat" => "Sa",
37
+    "Sun" => "So",
38
+    "click to add" => "Klicke zum Hinzufügen",
39
+    "date\\time" => "Datum/Zeit",
40
+    "poll URL" => "Umfrage-Link",
41
+    "Link" => "Link",
42
+    "Total" => "Gesamt",
43
+    "Best option" => "Bestes Ergebnis",
44
+    "All" => "Alle",
45
+    "No description provided." => "Keine Beschreibung angegeben.",
46
+    "Write new Comment" => "Neuer Kommentar",
47
+    "Comments" => "Kommentare",
48
+    "No comments yet. Be the first." => "Bisher keine Kommentare. Sei der Erste.",
49
+    "Send!" => "Abschicken!",
50
+    "Vote!" => "Abstimmen!",
51
+    "Polls summary" => "Umfrage-Übersicht",
52
+    "Home" => "Startseite",
53
+    "Update poll" => "Umfrage aktualisieren",
54
+    "Create poll" => "Umfrage erstellen",
55
+    "participated" => "abgestimmt",
56
+    "Yourself" => "Dir",
57 57
     "You did not vote" => "Du hast nicht abgestimmt",
58 58
     "You voted" => "Du hast abgestimmt",
59 59
     "You did not comment" => "Du hast nicht kommentiert",
60 60
     "You commented" => "Du hast kommentiert",
61
-	"Select" => "Wählen",
62
-	"Close" => "Schließen",
63
-	"Users" => "Benutzer",
64
-	"Groups" => "Gruppen",
61
+    "Select" => "Wählen",
62
+    "Close" => "Schließen",
63
+    "Users" => "Benutzer",
64
+    "Groups" => "Gruppen",
65 65
     "Do you really want to delete that poll?" => "Sind Sie sicher, dass sie diese Umfrage löschen möchten?",
66
-	"You must enter at least a title for the new poll." => "Sie müssen zumindest einen Namen für die Umfrage angeben.",
67
-	"Copy to clipboard: Ctrl+C, Enter" => "In die Zwischenablage kopieren: Strg+C, Enter",
68
-	"Thanks that you've voted. You can close the page now." => "Danke, dass sie abgestimmt haben. Sie können die Seite jetzt schließen.",
69
-	"Nothing selected!\nClick on cells to turn them green." => "Nichts ausgewählt!\nKlicke auf die Elemente um sie auszuwählen (grün).",
70
-	"You are not registered.\nPlease enter your name to vote\n(at least 3 characters!)" => "Sie sind nicht registriert.\nBitte geben Sie ihren Namen ein um abzustimmen\n(mindestens 3 Zeichen!)",
71
-	"You already have an item with the same text" => "Sie haben bereits ein Element mit dem gleichen Text.",
72
-	"Please choose the groups or users you want to add to your poll." => "Bitte wählen Sie die Gruppen oder Benutzer aus, die Sie zu ihrer Umfrage hinzufügen möchten.",
73
-	"Click to get link" => "Klicken Sie um den Link zu erhalten",
74
-	"Edit access" => "Zugriff ändern",
75
-	"Type" => "Art",
76
-	"Event schedule" => "Datumsangabe",
77
-	"Text based" => "Eigene Texte",
78
-	"Text item" => "Text",
66
+    "You must enter at least a title for the new poll." => "Sie müssen zumindest einen Namen für die Umfrage angeben.",
67
+    "Copy to clipboard: Ctrl+C, Enter" => "In die Zwischenablage kopieren: Strg+C, Enter",
68
+    "Thanks that you've voted. You can close the page now." => "Danke, dass sie abgestimmt haben. Sie können die Seite jetzt schließen.",
69
+    "Nothing selected!\nClick on cells to turn them green." => "Nichts ausgewählt!\nKlicke auf die Elemente um sie auszuwählen (grün).",
70
+    "You are not registered.\nPlease enter your name to vote\n(at least 3 characters!)" => "Sie sind nicht registriert.\nBitte geben Sie ihren Namen ein um abzustimmen\n(mindestens 3 Zeichen!)",
71
+    "You already have an item with the same text" => "Sie haben bereits ein Element mit dem gleichen Text.",
72
+    "Please choose the groups or users you want to add to your poll." => "Bitte wählen Sie die Gruppen oder Benutzer aus, die Sie zu ihrer Umfrage hinzufügen möchten.",
73
+    "Click to get link" => "Klicken Sie um den Link zu erhalten",
74
+    "Edit access" => "Zugriff ändern",
75
+    "Type" => "Art",
76
+    "Event schedule" => "Datumsangabe",
77
+    "Text based" => "Eigene Texte",
78
+    "Text item" => "Text",
79 79
     "Dates" => "Termine",
80
-	"Description (will be shown as tooltip on the summary page)" => "Beschreibung (wird als Tooltip in der Übersicht angezeigt)",
81
-	"Poll expired" => "Umfrage abgelaufen",
82
-	"The poll expired on %s. Voting is disabled, but you can still comment." => "Die Umfrage lief am %s ab. Die Abstimmung ist geschlossen, aber es kann weiterhin kommentiert werden.",
83
-	"Access denied" => "Zugriff verweigert",
84
-	"You are not allowed to view this poll or the poll does not exist." => "Ihnen fehlt die Berechtigung zur Anzeige dieser Abstimmung oder diese Abstimmung existiert nicht.",
85
-	"Error" => "Fehler",
86
-	"d.m.Y H:i" => "d.m.Y H:i",
87
-	"d.m.Y" => "d.m.Y",
88
-	"Hello %s,<br/><br/><strong>%s</strong> shared the poll '%s' with you. To go directly to the poll, you can use this link: <a href=\"%s\">%s</a>" => "Hallo %s,<br/><br/><strong>%s</strong> hat die Umfrage '%s' mit dir geteilt. Um direkt zur Umfrage zu gelangen, kannst du diesen Link verwenden: <a href=\"%s\">%s</a>",
89
-	"Hello %s,<br/><br/><strong>%s</strong> commented on the poll '%s'.<br/><br/><i>%s</i><br/><br/>To go directly to the poll, you can use this link: <a href=\"%s\">%s</a>" => "Hallo %s,<br/><br/><strong>%s</strong> hat die Umfrage '%s' kommentiert.<br/><br/><i>%s</i><br/><br/>Um direkt zur Umfrage zu gelangen, kannst du diesen Link verwenden: <a href=\"%s\">%s</a>",
90
-	"Hello %s,<br/><br/><strong>%s</strong> participated in the poll '%s'.<br/><br/>To go directly to the poll, you can use this link: <a href=\"%s\">%s</a>" => "Hallo %s,<br/><br/><strong>%s</strong> hat an der Umfrage '%s' teilgenommen.<br/><br/>Um direkt zur Umfrage zu gelangen, kannst du diesen Link verwenden: <a href=\"%s\">%s</a>",
91
-	"Polls App - New Comment" => "Umfragen App - Neuer Kommentar",
92
-	"Polls App - New Participant" => "Umfragen App - Neuer Teilnehmer",
93
-	"Polls App - New Poll" => "Umfragen App - Neue Umfrage",
94
-	"Polls App" => "Umfragen App",
95
-	"Receive notification email on activity" => "Erhalte Emails bei Änderungen"
80
+    "Description (will be shown as tooltip on the summary page)" => "Beschreibung (wird als Tooltip in der Übersicht angezeigt)",
81
+    "Poll expired" => "Umfrage abgelaufen",
82
+    "The poll expired on %s. Voting is disabled, but you can still comment." => "Die Umfrage lief am %s ab. Die Abstimmung ist geschlossen, aber es kann weiterhin kommentiert werden.",
83
+    "Access denied" => "Zugriff verweigert",
84
+    "You are not allowed to view this poll or the poll does not exist." => "Ihnen fehlt die Berechtigung zur Anzeige dieser Abstimmung oder diese Abstimmung existiert nicht.",
85
+    "Error" => "Fehler",
86
+    "d.m.Y H:i" => "d.m.Y H:i",
87
+    "d.m.Y" => "d.m.Y",
88
+    "Hello %s,<br/><br/><strong>%s</strong> shared the poll '%s' with you. To go directly to the poll, you can use this link: <a href=\"%s\">%s</a>" => "Hallo %s,<br/><br/><strong>%s</strong> hat die Umfrage '%s' mit dir geteilt. Um direkt zur Umfrage zu gelangen, kannst du diesen Link verwenden: <a href=\"%s\">%s</a>",
89
+    "Hello %s,<br/><br/><strong>%s</strong> commented on the poll '%s'.<br/><br/><i>%s</i><br/><br/>To go directly to the poll, you can use this link: <a href=\"%s\">%s</a>" => "Hallo %s,<br/><br/><strong>%s</strong> hat die Umfrage '%s' kommentiert.<br/><br/><i>%s</i><br/><br/>Um direkt zur Umfrage zu gelangen, kannst du diesen Link verwenden: <a href=\"%s\">%s</a>",
90
+    "Hello %s,<br/><br/><strong>%s</strong> participated in the poll '%s'.<br/><br/>To go directly to the poll, you can use this link: <a href=\"%s\">%s</a>" => "Hallo %s,<br/><br/><strong>%s</strong> hat an der Umfrage '%s' teilgenommen.<br/><br/>Um direkt zur Umfrage zu gelangen, kannst du diesen Link verwenden: <a href=\"%s\">%s</a>",
91
+    "Polls App - New Comment" => "Umfragen App - Neuer Kommentar",
92
+    "Polls App - New Participant" => "Umfragen App - Neuer Teilnehmer",
93
+    "Polls App - New Poll" => "Umfragen App - Neue Umfrage",
94
+    "Polls App" => "Umfragen App",
95
+    "Receive notification email on activity" => "Erhalte Emails bei Änderungen"
96 96
 );
97 97
 $PLURAL_FORMS = "nplurals=2; plural=(n != 1);";
Please login to merge, or discard this patch.