diff options
author | Marvin Thomas Rabe <m.rabe@echtzeitraum.de> | 2011-10-02 16:06:30 +0200 |
---|---|---|
committer | Marvin Thomas Rabe <m.rabe@echtzeitraum.de> | 2011-10-02 16:06:30 +0200 |
commit | bdcf31cc7335f280e04182bb356be98862dc7e55 (patch) | |
tree | c089f6d7d2cd72af869ebcb21d3772312b1e0c3f /apps/admin_export/templates | |
parent | 590b006d5c98fc805018350fdf0ec7ba9f641904 (diff) | |
download | nextcloud-server-bdcf31cc7335f280e04182bb356be98862dc7e55.tar.gz nextcloud-server-bdcf31cc7335f280e04182bb356be98862dc7e55.zip |
Added translatable text.
Diffstat (limited to 'apps/admin_export/templates')
-rw-r--r-- | apps/admin_export/templates/settings.php | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/apps/admin_export/templates/settings.php b/apps/admin_export/templates/settings.php index a65b17ce26f..47689facbbc 100644 --- a/apps/admin_export/templates/settings.php +++ b/apps/admin_export/templates/settings.php @@ -1,12 +1,12 @@ <form id="export" action="#" method="post"> <fieldset class="personalblock"> - <legend><strong>Export this ownCloud instance</strong></legend> - <p>This will create a compressed file that contains the data of this owncloud instance. - Please choose which components should be included: + <legend><strong><?php echo $l->t('Export this ownCloud instance');?></strong></legend> + <p><?php echo $l->t('This will create a compressed file that contains the data of this owncloud instance. + Please choose which components should be included:');?> </p> - <p><input type="checkbox" id="user_files" name="user_files" value="true"><label for="user_files">User files</label><br/> - <input type="checkbox" id="owncloud_system" name="owncloud_system" value="true"><label for="owncloud_system">ownCloud system files</label><br/> - <input type="checkbox" id="owncloud_config" name="owncloud_config" value="true"><label for="owncloud_config">ownCloud configuration</label> + <p><input type="checkbox" id="user_files" name="user_files" value="true"><label for="user_files"><?php echo $l->t('User files');?></label><br/> + <input type="checkbox" id="owncloud_system" name="owncloud_system" value="true"><label for="owncloud_system"><?php echo $l->t('ownCloud system files');?></label><br/> + <input type="checkbox" id="owncloud_config" name="owncloud_config" value="true"><label for="owncloud_config"><?php echo $l->t('ownCloud configuration');?></label> </p> <input type="submit" name="admin_export" value="Export" /> </fieldset> |