summaryrefslogtreecommitdiffstats
path: root/src/main/resources/templates/groupField.html
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/resources/templates/groupField.html')
-rw-r--r--src/main/resources/templates/groupField.html7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/main/resources/templates/groupField.html b/src/main/resources/templates/groupField.html
index c2ea026..168d13b 100644
--- a/src/main/resources/templates/groupField.html
+++ b/src/main/resources/templates/groupField.html
@@ -1,3 +1,4 @@
+<div style="font-size: 0.9em; color: grey; margin: -5px 0 20px 0">{{ 'GROUP_SELECTION.RESOLUTION_INFO' | translate }}</div>
<table class="bwlp-group-container">
<tr ng-repeat="group in field.groups" class="bwlp-group"
ng-click="selectGroup($event, group.id)">
@@ -5,15 +6,15 @@
{{ group.name }}
</td>
<td class="bwlp-group-status">
- {{ group.freeCount }} available ({{ group.offlineCount }} offline)
+ {{ group.freeCount }} {{ 'GROUP_SELECTION.AVAILABLE' | translate }} ({{ group.offlineCount }} offline)
</td>
<td style="width: 200px">
<div ng-if="group.password" class="bwlp-password">
- <span ng-if="data.id !== group.id">Password protected</span>
+ <span ng-if="data.id !== group.id">{{ 'GROUP_SELECTION.PASSWORD_PROTECTED' | translate }}</span>
<input ng-if="data.id === group.id" ng-model="data.password"
type="password" placeholder="Password" class="bwlp-password-input" required>
</div>
</td>
</tr>
</table>
-<button type="button" class="logout-button" ng-click="logout()">Log out</button>
+<button type="button" class="logout-button" ng-click="logout()">{{ 'GROUP_SELECTION.LOG_OUT' | translate }}</button>