diff options
author | John Molakvoæ <skjnldsv@users.noreply.github.com> | 2021-07-07 08:23:39 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-07 08:23:39 +0200 |
commit | 5d7d70538b559677e4779dca56c6ff047d4523f9 (patch) | |
tree | 85dc45706310f88fac90ab1bde2c2cce2108613c | |
parent | 085f9d6ca9a03873bb663118d5cc582bc9e6991f (diff) | |
parent | addc825275d2c18281188ce14471c2db4519880a (diff) | |
download | nextcloud-server-5d7d70538b559677e4779dca56c6ff047d4523f9.tar.gz nextcloud-server-5d7d70538b559677e4779dca56c6ff047d4523f9.zip |
Merge pull request #27827 from nextcloud/enh/27292/singular-plural
-rw-r--r-- | apps/settings/templates/settings/admin/sharing.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/settings/templates/settings/admin/sharing.php b/apps/settings/templates/settings/admin/sharing.php index e85047b7037..75ad6f76d23 100644 --- a/apps/settings/templates/settings/admin/sharing.php +++ b/apps/settings/templates/settings/admin/sharing.php @@ -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"'); |