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

github.com/nextcloud/twofactor_totp.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristoph Wurst <christoph@winzerhof-wurst.at>2017-03-09 20:43:47 +0300
committerChristoph Wurst <christoph@winzerhof-wurst.at>2017-03-14 12:03:54 +0300
commitee7fb3567f03b2730ddd3029dfefc5de87924e21 (patch)
treec76883f587dbcc007f2effda3a1d75321c367958
parentf9504889b170b8145c23641de8ccd41ae219d637 (diff)
Make the submit button translatable
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
-rw-r--r--templates/challenge.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/challenge.php b/templates/challenge.php
index 54a188c..f5c010e 100644
--- a/templates/challenge.php
+++ b/templates/challenge.php
@@ -5,7 +5,7 @@ style('twofactor_totp', 'style');
<form method="POST" class="totp-form">
<input type="tel" minlength="6" maxlength="6" name="challenge" required="required" autofocus autocomplete="off" autocapitalize="off" placeholder="<?php p($l->t('Authentication code')) ?>">
<button type="submit">
- <span>Submit</span>
+ <span><?php p($l->t('Submit')); ?></span>
</button>
<p><?php p($l->t('Get the authentication code from the two-factor authentication app on your device.')) ?></p>
</form>