diff options
author | Tom Needham <needham.thomas@gmail.com> | 2012-09-18 21:31:03 +0000 |
---|---|---|
committer | Tom Needham <needham.thomas@gmail.com> | 2012-09-18 21:31:03 +0000 |
commit | 729b36e495dd753d304f5ad17c1b831bb27c4315 (patch) | |
tree | 509ac7fcb5ad2903a477dbb4cbc70892e4613b2e | |
parent | 703aff6c3508624c22f88a07599c81fec6f7c11e (diff) | |
download | nextcloud-server-729b36e495dd753d304f5ad17c1b831bb27c4315.tar.gz nextcloud-server-729b36e495dd753d304f5ad17c1b831bb27c4315.zip |
Fix grammer and dont split translatable string
-rw-r--r-- | settings/templates/personal.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/settings/templates/personal.php b/settings/templates/personal.php index 4503f3d50b4..55ff24b4223 100644 --- a/settings/templates/personal.php +++ b/settings/templates/personal.php @@ -5,7 +5,7 @@ */?> <div id="quota" class="personalblock"><div style="width:<?php echo $_['usage_relative'];?>%;"> - <p id="quotatext"><?php echo $l->t('You use');?> <strong><?php echo $_['usage'];?></strong> <?php echo $l->t('of the available');?> <strong><?php echo $_['total_space'];?></strong></p> + <p id="quotatext"><?php echo $l->t('You have used <strong>%s</strong> of the available <strong>%s<strong>', array($_['usage'], $_['total_space']));?></p> </div></div> <div class="personalblock"> @@ -16,7 +16,7 @@ <form id="passwordform"> <fieldset class="personalblock"> - <div id="passwordchanged"><?php echo $l->t('Your password got changed');?></div> + <div id="passwordchanged"><?php echo $l->t('Your password was changed');?></div> <div id="passworderror"><?php echo $l->t('Unable to change your password');?></div> <input type="password" id="pass1" name="oldpassword" placeholder="<?php echo $l->t('Current password');?>" /> <input type="password" id="pass2" name="password" placeholder="<?php echo $l->t('New password');?>" data-typetoggle="#show" /> |