diff options
author | Julius Härtl <jus@bitgrid.net> | 2021-10-22 09:24:30 +0200 |
---|---|---|
committer | Julius Härtl <jus@bitgrid.net> | 2021-10-22 09:33:40 +0200 |
commit | b30f499597ad8f6fc0ce363ef2591c537cea428f (patch) | |
tree | a0b3eb5865236bfbefe9c10706eaf2612dab9237 /apps/dav | |
parent | fb18f291488c706abcc58f365fe71e7ece2fca39 (diff) | |
download | nextcloud-server-b30f499597ad8f6fc0ce363ef2591c537cea428f.tar.gz nextcloud-server-b30f499597ad8f6fc0ce363ef2591c537cea428f.zip |
Make calendar schedule options translatable
Signed-off-by: Julius Härtl <jus@bitgrid.net>
Diffstat (limited to 'apps/dav')
-rw-r--r-- | apps/dav/templates/schedule-response-options.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/dav/templates/schedule-response-options.php b/apps/dav/templates/schedule-response-options.php index 27c062d88be..f5ebb46cb26 100644 --- a/apps/dav/templates/schedule-response-options.php +++ b/apps/dav/templates/schedule-response-options.php @@ -24,8 +24,8 @@ style('dav', 'schedule-response'); </div> </fieldset> <fieldset id="more_options"> - <input type="number" min="0" name="guests" placeholder="Guests" /> - <input type="text" name="comment" placeholder="Comment" /> + <input type="number" min="0" name="guests" placeholder="<?php p($l->t('Number of guests')); ?>" /> + <input type="text" name="comment" placeholder="<?php p($l->t('Comment')); ?>" /> </fieldset> <fieldset> <input type="submit" value="<?php p($l->t('Save'));?>"> |