mirror of
https://github.com/nextcloud/server.git
synced 2026-03-03 05:51:07 -05:00
Merge pull request #27827 from nextcloud/enh/27292/singular-plural
This commit is contained in:
commit
5d7d70538b
1 changed files with 3 additions and 3 deletions
|
|
@ -55,7 +55,7 @@
|
|||
<?php p($l->t('Expire after') . ' '); ?>
|
||||
<input type="text" name='shareapi_internal_expire_after_n_days' id="shareapiInternalExpireAfterNDays" placeholder="<?php p('7')?>"
|
||||
value='<?php p($_['shareInternalExpireAfterNDays']) ?>' />
|
||||
<?php p($l->t('days')); ?>
|
||||
<?php p($l->t('day(s)')); ?>
|
||||
<input type="checkbox" name="shareapi_enforce_internal_expire_date" id="shareapiInternalEnforceExpireDate" class="checkbox"
|
||||
value="1" <?php if ($_['shareInternalEnforceExpireDate'] === 'yes') {
|
||||
print_unescaped('checked="checked"');
|
||||
|
|
@ -78,7 +78,7 @@
|
|||
<?php p($l->t('Expire after'). ' '); ?>
|
||||
<input type="text" name='shareapi_remote_expire_after_n_days' id="shareapiRemoteExpireAfterNDays" placeholder="<?php p('7')?>"
|
||||
value='<?php p($_['shareRemoteExpireAfterNDays']) ?>' />
|
||||
<?php p($l->t('days')); ?>
|
||||
<?php p($l->t('day(s)')); ?>
|
||||
<input type="checkbox" name="shareapi_enforce_remote_expire_date" id="shareapiRemoteEnforceExpireDate" class="checkbox"
|
||||
value="1" <?php if ($_['shareRemoteEnforceExpireDate'] === 'yes') {
|
||||
print_unescaped('checked="checked"');
|
||||
|
|
@ -128,7 +128,7 @@
|
|||
<?php p($l->t('Expire after'). ' '); ?>
|
||||
<input type="text" name='shareapi_expire_after_n_days' id="shareapiExpireAfterNDays" placeholder="<?php p('7')?>"
|
||||
value='<?php p($_['shareExpireAfterNDays']) ?>' />
|
||||
<?php p($l->t('days')); ?>
|
||||
<?php p($l->t('day(s)')); ?>
|
||||
<input type="checkbox" name="shareapi_enforce_expire_date" id="shareapiEnforceExpireDate" class="checkbox"
|
||||
value="1" <?php if ($_['shareEnforceExpireDate'] === 'yes') {
|
||||
print_unescaped('checked="checked"');
|
||||
|
|
|
|||
Loading…
Reference in a new issue