diff options
author | Robin Appelman <icewind1991@gmail.com> | 2011-06-20 14:51:33 +0200 |
---|---|---|
committer | Robin Appelman <icewind1991@gmail.com> | 2011-06-20 14:51:33 +0200 |
commit | 4c1d3155a3ee4ddb48a0bb4281fe74391db1f016 (patch) | |
tree | 67630ddb4253bc68f819d648be34b5c84484c13d /settings/templates | |
parent | 76b12c4ae0ea9941b030f0a13786d0ac3fc32f76 (diff) | |
download | nextcloud-server-4c1d3155a3ee4ddb48a0bb4281fe74391db1f016.tar.gz nextcloud-server-4c1d3155a3ee4ddb48a0bb4281fe74391db1f016.zip |
make personal settings translatable
Diffstat (limited to 'settings/templates')
-rw-r--r-- | settings/templates/index.php | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/settings/templates/index.php b/settings/templates/index.php index f8ef9faf1d7..761289acefa 100644 --- a/settings/templates/index.php +++ b/settings/templates/index.php @@ -1,27 +1,27 @@ <form id="quota"> <fieldset> - <legend>Account information</legend> + <legend><?php echo $l->t( 'Account information' );?></legend> <div id="quota_indicator"><div style="width:<?php echo $_['usage_relative'] ?>%;"> </div></div> - <p>You're currently using <?php echo $_['usage_relative'] ?>% (<?php echo $_['usage'] ?>) of your <?php echo $_['total_space'] ?> space.</p> + <p><?php echo $l->t( 'You\'re currently using' );?> <?php echo $_['usage_relative'] ?>% (<?php echo $_['usage'] ?>) <?php echo $l->t( 'of your' );?> <?php echo $_['total_space'] ?> <?php echo $l->t( 'space' );?>.</p> </fieldset> </form> <form id="passwordform"> <fieldset> - <legend>Change Password</legend> - <div id="passwordchanged">You're password got changed</div> + <legend><?php echo $l->t( 'Change Password' );?></legend> + <div id="passwordchanged"><?php echo $l->t( 'Your password got changed');?></div> <div id="passworderror"></div> <p> - <label for="pass1">Old password:</label> + <label for="pass1"><?php echo $l->t( 'Old password:' );?></label> <input type="password" id="pass1" name="oldpassword" /> </p> <p> - <label for="pass2">New password :</label> + <label for="pass2"><?php echo $l->t( 'New password' );?></label> <input type="password" id="pass2" name="password" /> </p> <p> <input type="checkbox" id="show" name="show" /> - <label for="show">Show new password</label> + <label for="show"><?php echo $l->t( 'Show new password' );?></label> </p> <p class="form_footer"> <input id="passwordbutton" class="prettybutton" type="submit" value="Save" /> @@ -31,7 +31,7 @@ <form id="languageform"> <fieldset> - <legend>Language</legend> + <legend><?php echo $l->t( 'Language' );?></legend> <label for=''></label> <select id="languageinput" name='lang'> <?php foreach($_['languages'] as $language):?> |