Skip to content

Commit dfd13af

Browse files
committed
prefer ellipsis over three dots
1 parent 330e6cd commit dfd13af

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

admin.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -269,7 +269,7 @@ class="fas fa-flask-vial fa-2x text-black d-inline-block me-4"
269269
<div class="modal-body">
270270
<div class="form-group">
271271
<label for="unitTestComment" class="fw-bold"><?php echo _('Comment') ?></label>
272-
<textarea class="form-control" id="unitTestComment" rows=2 placeholder="This test is significant because..."></textarea>
272+
<textarea class="form-control" id="unitTestComment" rows=2 placeholder="<?php echo _('This test is significant because'); ?>"></textarea>
273273
</div>
274274
</div>
275275
<div class="modal-footer">

components/login-modal.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -300,7 +300,7 @@ function showLoginModal(onSuccess = null) {
300300
try {
301301
// Show loading state
302302
loginSubmitBtn.disabled = true;
303-
loginSubmitBtn.innerHTML = '<span class="spinner-border spinner-border-sm me-2"></span>' + <?php echo json_encode(_('Logging in...')); ?>;
303+
loginSubmitBtn.innerHTML = '<span class="spinner-border spinner-border-sm me-2"></span>' + <?php echo json_encode(_('Logging in')); ?>;
304304

305305
await Auth.login(username, password, rememberMe);
306306

index.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,7 @@ class="btn btn-primary w-100" disabled
193193

194194
<div class="bg-light position-absolute top-0 left-0 text-center page-loader" style="width:100vw;height:100vh;opacity:.5;">
195195
<div class="spinner-border text-dark m-auto position-relative" role="status" style="top:50%;">
196-
<span class="visually-hidden"><?php echo _("Loading..."); ?></span>
196+
<span class="visually-hidden"><?php echo _('Loading'); ?></span>
197197
</div>
198198
</div>
199199

resources.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ class="btn btn-primary w-100" disabled
148148

149149
<div class="bg-light position-absolute top-0 left-0 text-center page-loader" style="width:100vw;height:100vh;opacity:.5;">
150150
<div class="spinner-border text-dark m-auto position-relative" role="status" style="top:50%;">
151-
<span class="visually-hidden"><?php echo _("Loading..."); ?></span>
151+
<span class="visually-hidden"><?php echo _('Loading'); ?></span>
152152
</div>
153153
</div>
154154

0 commit comments

Comments
 (0)