summaryrefslogtreecommitdiffstats
path: root/admin/templates
diff options
context:
space:
mode:
authorRobin Appelman <icewind1991@gmail.com>2011-08-09 17:54:02 +0200
committerRobin Appelman <icewind1991@gmail.com>2011-08-10 14:03:54 +0200
commit9059b559791b9f5333c24815c4bfd77cc6201c5e (patch)
treef0b0ca5d7f60707650d81dac2c2a61091d7c2709 /admin/templates
parent32be4746f8514e06e838b4aa0ee45cb832df1b2c (diff)
downloadnextcloud-server-9059b559791b9f5333c24815c4bfd77cc6201c5e.tar.gz
nextcloud-server-9059b559791b9f5333c24815c4bfd77cc6201c5e.zip
make more strings translatable
Diffstat (limited to 'admin/templates')
-rw-r--r--admin/templates/users.php17
1 files changed, 10 insertions, 7 deletions
diff --git a/admin/templates/users.php b/admin/templates/users.php
index 8e34c908fcd..00daf4c5263 100644
--- a/admin/templates/users.php
+++ b/admin/templates/users.php
@@ -1,17 +1,17 @@
<div id="controls">
<form id="newgroup">
- <input id="newgroupname" placeholder="name"></input>
- <input type="submit" value="create"></input>
+ <input id="newgroupname" placeholder="<?php echo $l->t('Name')?>"></input>
+ <input type="submit" value="<?php echo $l->t('Create')?>"></input>
</form>
<form id="newuser">
- <input id="newusername" placeholder="username"></input>
- <input type="password" id="newuserpassword" placeholder="password"></input>
- <select id="newusergroups" data-placeholder="groups" title="groups" multiple="multiple">
+ <input id="newusername" placeholder="<?php echo $l->t('Name')?>"></input>
+ <input type="password" id="newuserpassword" placeholder="<?php echo $l->t('Password')?>"></input>
+ <select id="newusergroups" data-placeholder="groups" title="<?php echo $l->t('Groups')?>" multiple="multiple">
<?php foreach($_["groups"] as $group): ?>
<option value="<?php echo $group['name'];?>"><?php echo $group['name'];?></option>
<?php endforeach;?>
</select>
- <input type="submit" value="Create"></input>
+ <input type="submit" value="<?php echo $l->t('Create')?>"></input>
</form>
</div>
<ul id="leftcontent">
@@ -30,10 +30,13 @@
<td class="groups"><?php if( $user["groups"] ){ echo $user["groups"]; }else{echo "&nbsp";} ?></td>
<td class="remove">
<?php if($user['name']!=OC_User::getUser()):?>
- <img alt="Remove" title="Remove" class='svg' src='<?php echo image_path('core','actions/delete.svg') ?>'/>
+ <img alt="Remove" title="<?php echo $l->t('Remove')?>" class='svg' src='<?php echo image_path('core','actions/delete.svg') ?>'/>
<?php endif;?>
</td>
</tr>
<?php endforeach; ?>
</table>
</div>
+<div id="#selecteduser">
+
+</div>