diff options
author | Vincent Petry <pvince81@owncloud.com> | 2016-06-21 12:15:38 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-06-21 12:15:38 +0200 |
commit | af98e3e641220db4ddf38a9270f535603526f6c5 (patch) | |
tree | fc1e688de84e253193ce96aa698e4582c4a259c4 /settings/templates | |
parent | ca168265ef04c3ea1b5be468697fa4b55d1e6b38 (diff) | |
parent | a5a66f38f1cae2b623d95c739e8f8f6087c41af2 (diff) | |
download | nextcloud-server-af98e3e641220db4ddf38a9270f535603526f6c5.tar.gz nextcloud-server-af98e3e641220db4ddf38a9270f535603526f6c5.zip |
Merge pull request #25042 from owncloud/session-settings-ellipsis
add overflow ellipsis to session and device tokens list
Diffstat (limited to 'settings/templates')
-rw-r--r-- | settings/templates/personal.php | 56 |
1 files changed, 28 insertions, 28 deletions
diff --git a/settings/templates/personal.php b/settings/templates/personal.php index ced76fc3bf6..942944ffab7 100644 --- a/settings/templates/personal.php +++ b/settings/templates/personal.php @@ -139,6 +139,34 @@ if($_['passwordChangeSupported']) { } ?> +<form id="language" class="section"> + <h2> + <label for="languageinput"><?php p($l->t('Language'));?></label> + </h2> + <select id="languageinput" name="lang" data-placeholder="<?php p($l->t('Language'));?>"> + <option value="<?php p($_['activelanguage']['code']);?>"> + <?php p($_['activelanguage']['name']);?> + </option> + <?php foreach($_['commonlanguages'] as $language):?> + <option value="<?php p($language['code']);?>"> + <?php p($language['name']);?> + </option> + <?php endforeach;?> + <optgroup label="––––––––––"></optgroup> + <?php foreach($_['languages'] as $language):?> + <option value="<?php p($language['code']);?>"> + <?php p($language['name']);?> + </option> + <?php endforeach;?> + </select> + <?php if (OC_Util::getEditionString() === ''): ?> + <a href="https://www.transifex.com/projects/p/owncloud/" + target="_blank" rel="noreferrer"> + <em><?php p($l->t('Help translate'));?></em> + </a> + <?php endif; ?> +</form> + <div id="sessions" class="section"> <h2><?php p($l->t('Sessions'));?></h2> <span class="hidden-when-empty"><?php p($l->t('These are the web, desktop and mobile clients currently logged in to your ownCloud.'));?></span> @@ -180,34 +208,6 @@ if($_['passwordChangeSupported']) { </div> </div> -<form id="language" class="section"> - <h2> - <label for="languageinput"><?php p($l->t('Language'));?></label> - </h2> - <select id="languageinput" name="lang" data-placeholder="<?php p($l->t('Language'));?>"> - <option value="<?php p($_['activelanguage']['code']);?>"> - <?php p($_['activelanguage']['name']);?> - </option> - <?php foreach($_['commonlanguages'] as $language):?> - <option value="<?php p($language['code']);?>"> - <?php p($language['name']);?> - </option> - <?php endforeach;?> - <optgroup label="––––––––––"></optgroup> - <?php foreach($_['languages'] as $language):?> - <option value="<?php p($language['code']);?>"> - <?php p($language['name']);?> - </option> - <?php endforeach;?> - </select> - <?php if (OC_Util::getEditionString() === ''): ?> - <a href="https://www.transifex.com/projects/p/owncloud/" - target="_blank" rel="noreferrer"> - <em><?php p($l->t('Help translate'));?></em> - </a> - <?php endif; ?> -</form> - <div id="clientsbox" class="section clientsbox"> <h2><?php p($l->t('Get the apps to sync your files'));?></h2> <a href="<?php p($_['clients']['desktop']); ?>" rel="noreferrer" target="_blank"> |