-
-
Notifications
You must be signed in to change notification settings - Fork 4.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
l10n: Remove space from translation #27197
Conversation
Signed-off-by: Valdnet <47037905+Valdnet@users.noreply.github.com>
@@ -52,7 +52,7 @@ | |||
<p id="setDefaultInternalExpireDate" class="double-indent <?php if ($_['shareDefaultInternalExpireDateSet'] === 'no' || $_['shareAPIEnabled'] === 'no') { | |||
p('hidden'); | |||
}?>"> | |||
<?php p($l->t('Expire after ')); ?> | |||
<?php p($l->t('Expire after') . ' '); ?> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pretty sure this works only in english/latin based languages ...
@@ -52,7 +52,7 @@ | |||
<p id="setDefaultInternalExpireDate" class="double-indent <?php if ($_['shareDefaultInternalExpireDateSet'] === 'no' || $_['shareAPIEnabled'] === 'no') { | |||
p('hidden'); | |||
}?>"> | |||
<?php p($l->t('Expire after ')); ?> | |||
<?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')); ?> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Plural here can not adjust to the input value...
I guess we have to restructure this thing a bit
Signed-off-by: Valdnet 47037905+Valdnet@users.noreply.github.com