diff options
author | Morris Jobke <morris.jobke@gmail.com> | 2013-10-31 12:21:42 +0100 |
---|---|---|
committer | Morris Jobke <morris.jobke@gmail.com> | 2013-10-31 12:21:42 +0100 |
commit | 680f4963dc13505e53a785bb7ee689fa4ffebe7d (patch) | |
tree | 8ff84ade86ff9462263dd84378fc7add3950202b | |
parent | 28fbc1b3ccf25b3297c139025443ab6391071015 (diff) | |
download | nextcloud-server-680f4963dc13505e53a785bb7ee689fa4ffebe7d.tar.gz nextcloud-server-680f4963dc13505e53a785bb7ee689fa4ffebe7d.zip |
fix translation strings
-rw-r--r-- | settings/templates/users.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/settings/templates/users.php b/settings/templates/users.php index 3c7bfd9f031..f9d4f6ada5e 100644 --- a/settings/templates/users.php +++ b/settings/templates/users.php @@ -41,7 +41,7 @@ $_['subadmingroups'] = array_flip($items); <div class="quota"> <span><?php p($l->t('Default Storage'));?></span> <?php if((bool) $_['isadmin']): ?> - <select class='quota' data-inputtitle="<?php p($l->t('Please enter storage quota (ex: "512 MB" or "12 GB"')) ?>"> + <select class='quota' data-inputtitle="<?php p($l->t('Please enter storage quota (ex: "512 MB" or "12 GB")')) ?>"> <option <?php if($_['default_quota'] === 'none') print_unescaped('selected="selected"');?> value='none'> @@ -136,7 +136,7 @@ $_['subadmingroups'] = array_flip($items); </td> <?php endif;?> <td class="quota"> - <select class='quota-user' data-inputtitle="<?php p($l->t('Please enter storage quota (ex: "512 MB" or "12 GB"')) ?>"> + <select class='quota-user' data-inputtitle="<?php p($l->t('Please enter storage quota (ex: "512 MB" or "12 GB")')) ?>"> <option <?php if($user['quota'] === 'default') print_unescaped('selected="selected"');?> value='default'> |