aboutsummaryrefslogtreecommitdiffstats
path: root/settings/templates
diff options
context:
space:
mode:
authorJan-Christoph Borchardt <JanCBorchardt@fsfe.org>2011-08-14 11:09:51 +0200
committerJan-Christoph Borchardt <JanCBorchardt@fsfe.org>2011-08-14 11:09:51 +0200
commitf2a21398d791beda3e1de0a5c4c12a141e70c795 (patch)
treeda3494f60f6243f94ec0668966c50523bf88a27c /settings/templates
parent4f43b0a72915967f54a3e14c772b3cee75c132d2 (diff)
downloadnextcloud-server-f2a21398d791beda3e1de0a5c4c12a141e70c795.tar.gz
nextcloud-server-f2a21398d791beda3e1de0a5c4c12a141e70c795.zip
more info in personal, WebDAV, OpenID
Diffstat (limited to 'settings/templates')
-rw-r--r--settings/templates/personal.php41
1 files changed, 24 insertions, 17 deletions
diff --git a/settings/templates/personal.php b/settings/templates/personal.php
index 6ea60e54c52..02f66c9a131 100644
--- a/settings/templates/personal.php
+++ b/settings/templates/personal.php
@@ -1,27 +1,34 @@
<div id="quota" class="personalblock"><div style="width:<?php echo $_['usage_relative'] ?>%;">
- <p><?php echo $l->t( 'You use' );?> <strong><?php echo $_['usage'] ?></strong> <?php echo $l->t( 'of the available' );?> <?php echo $_['total_space'] ?></p>
+ <p><?php echo $l->t('You use');?> <strong><?php echo $_['usage'] ?></strong> <?php echo $l->t('of the available');?> <?php echo $_['total_space'] ?></p>
</div></div>
<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 got changed');?></div>
<div id="passworderror"></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" />
- <input type="checkbox" id="show" name="show" /><label for="show"><?php echo $l->t( 'show' );?></label>
- <input id="passwordbutton" type="submit" value="<?php echo $l->t( 'Change password' );?>" />
+ <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" />
+ <input type="checkbox" id="show" name="show" /><label for="show"><?php echo $l->t('show');?></label>
+ <input id="passwordbutton" type="submit" value="<?php echo $l->t('Change password');?>" />
</fieldset>
</form>
-<div class="personalblock">
- <label for="languageinput"><?php echo $l->t( 'Language' );?></label>
- <select id="languageinput" name='lang'>
- <?php foreach($_['languages'] as $language):?>
- <option value='<?php echo $language;?>'><?php echo $language;?></option>
- <?php endforeach;?>
- </select>
+<form>
+ <fieldset class="personalblock">
+ <strong><label for="languageinput"><?php echo $l->t('Language');?></label></strong>
+ <select id="languageinput" name='lang'>
+ <?php foreach($_['languages'] as $language):?>
+ <option value="<?php echo $language;?>"><?php echo $language;?></option>
+ <?php endforeach;?>
+ </select>
+ <a href="https://www.transifex.net/projects/p/owncloud/"><?php echo $l->t('Help translating');?></a>
+ </fieldset>
+</form>
+
+<p class="personalblock">
+ <strong>WebDAV</strong> <?php echo ((isset($_SERVER["HTTPS"]) && $_SERVER["HTTPS"] == 'on') ? 'https' : 'http').'://'.$_SERVER['HTTP_HOST'].$WEBROOT.'/files/webdav.php'; ?>
+</p>
- <?php foreach($_['forms'] as $form){
- echo $form;
- };?>
-</div>
+<?php foreach($_['forms'] as $form){
+ echo $form;
+};?>