summaryrefslogtreecommitdiffstats
path: root/settings/templates
diff options
context:
space:
mode:
authorJan-Christoph Borchardt <hey@jancborchardt.net>2016-07-28 11:30:36 +0200
committerJan-Christoph Borchardt <hey@jancborchardt.net>2016-07-28 11:30:36 +0200
commitd705b936a9867986f124a7bf6219f86268fd7942 (patch)
treeb8da916d9207da8a0f0e2af74a0c77f4169ee759 /settings/templates
parent73311091bf27fc3f0bbc16652c73d1cf7dfb7586 (diff)
downloadnextcloud-server-d705b936a9867986f124a7bf6219f86268fd7942.tar.gz
nextcloud-server-d705b936a9867986f124a7bf6219f86268fd7942.zip
fix capitalization of text in users management
Diffstat (limited to 'settings/templates')
-rw-r--r--settings/templates/users/part.grouplist.php2
-rw-r--r--settings/templates/users/part.setquota.php4
-rw-r--r--settings/templates/users/part.userlist.php10
3 files changed, 8 insertions, 8 deletions
diff --git a/settings/templates/users/part.grouplist.php b/settings/templates/users/part.grouplist.php
index 64c602c364c..22a3d6e78de 100644
--- a/settings/templates/users/part.grouplist.php
+++ b/settings/templates/users/part.grouplist.php
@@ -2,7 +2,7 @@
<!-- Add new group -->
<li id="newgroup-init">
<a href="#">
- <span><?php p($l->t('Add Group'))?></span>
+ <span><?php p($l->t('Add group'))?></span>
</a>
</li>
<li id="newgroup-form" style="display: none">
diff --git a/settings/templates/users/part.setquota.php b/settings/templates/users/part.setquota.php
index 18ec3fa8cd7..a0231ddace2 100644
--- a/settings/templates/users/part.setquota.php
+++ b/settings/templates/users/part.setquota.php
@@ -1,6 +1,6 @@
<div class="quota">
<!-- Default storage -->
- <span><?php p($l->t('Default Quota'));?></span>
+ <span><?php p($l->t('Default quota'));?></span>
<?php if((bool) $_['isAdmin']): ?>
<select id='default_quota' data-inputtitle="<?php p($l->t('Please enter storage quota (ex: "512 MB" or "12 GB")')) ?>" data-tipsy-gravity="s">
<option <?php if($_['default_quota'] === 'none') print_unescaped('selected="selected"');?> value='none'>
@@ -25,7 +25,7 @@
</select>
<?php endif; ?>
<?php if((bool) !$_['isAdmin']): ?>
- :
+ :
<?php if( $_['default_quota'] === 'none'): ?>
<?php p($l->t('Unlimited'));?>
<?php else: ?>
diff --git a/settings/templates/users/part.userlist.php b/settings/templates/users/part.userlist.php
index c7b2ad58c15..2bdd0714a3c 100644
--- a/settings/templates/users/part.userlist.php
+++ b/settings/templates/users/part.userlist.php
@@ -5,17 +5,17 @@
<th id="headerAvatar" scope="col"></th>
<?php endif; ?>
<th id="headerName" scope="col"><?php p($l->t('Username'))?></th>
- <th id="headerDisplayName" scope="col"><?php p($l->t( 'Full Name' )); ?></th>
+ <th id="headerDisplayName" scope="col"><?php p($l->t( 'Full name' )); ?></th>
<th id="headerPassword" scope="col"><?php p($l->t( 'Password' )); ?></th>
<th class="mailAddress" scope="col"><?php p($l->t( 'Email' )); ?></th>
<th id="headerGroups" scope="col"><?php p($l->t( 'Groups' )); ?></th>
<?php if(is_array($_['subadmins']) || $_['subadmins']): ?>
- <th id="headerSubAdmins" scope="col"><?php p($l->t('Group Admin for')); ?></th>
+ <th id="headerSubAdmins" scope="col"><?php p($l->t('Group admin for')); ?></th>
<?php endif;?>
<th id="headerQuota" scope="col"><?php p($l->t('Quota')); ?></th>
- <th class="storageLocation" scope="col"><?php p($l->t('Storage Location')); ?></th>
- <th class="userBackend" scope="col"><?php p($l->t('User Backend')); ?></th>
- <th class="lastLogin" scope="col"><?php p($l->t('Last Login')); ?></th>
+ <th class="storageLocation" scope="col"><?php p($l->t('Storage location')); ?></th>
+ <th class="userBackend" scope="col"><?php p($l->t('User backend')); ?></th>
+ <th class="lastLogin" scope="col"><?php p($l->t('Last login')); ?></th>
<th id="headerRemove">&nbsp;</th>
</tr>
</thead>