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

github.com/nextcloud/ocsms.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorValdnet <47037905+Valdnet@users.noreply.github.com>2019-03-14 16:13:38 +0300
committerLoïc Blot <nerzhul@users.noreply.github.com>2019-03-14 16:13:38 +0300
commitca7423ad0aef8533279df32d975bf00967838888 (patch)
treec5d9be06a73b106f4684b72959cf217f946446f0 /templates
parent9d4c1dcc2616846d213b02911cb8e8575838b088 (diff)
Correction of the description buttons of the message removal request
Diffstat (limited to 'templates')
-rw-r--r--templates/main.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/main.php b/templates/main.php
index 823cd69..939216a 100644
--- a/templates/main.php
+++ b/templates/main.php
@@ -31,10 +31,10 @@ use \OCA\OcSms\Lib\CountryCodes;
<div class="modal-footer">
<slot name="footer">
<button class="modal-default-button" @click="show = false">
- <slot name="button-cancel">Cancel</slot>
+ <slot name="button-cancel"><?php p($l->t('Cancel'));?></slot>
</button>
<button class="modal-default-button modal-crit-button" @click="doYes">
- <slot name="button-ok">Confirm</slot>
+ <slot name="button-ok"><?php p($l->t('Confirm'));?></slot>
</button>
</slot>
</div>