diff options
author | Andrew Manning <tamanning@zoho.com> | 2016-07-10 07:21:52 -0400 |
---|---|---|
committer | Andrew Manning <tamanning@zoho.com> | 2016-07-10 07:21:52 -0400 |
commit | c5e534c0cb939b9730f289a844f24b1121e6e9cf (patch) | |
tree | 16efcc5ed982e1d22eca523b2ae1f7011791842d /include | |
parent | a338a97d5bb947f462483de8a9d87dd52fa3b2eb (diff) | |
download | volse-hubzilla-c5e534c0cb939b9730f289a844f24b1121e6e9cf.tar.gz volse-hubzilla-c5e534c0cb939b9730f289a844f24b1121e6e9cf.tar.bz2 volse-hubzilla-c5e534c0cb939b9730f289a844f24b1121e6e9cf.zip |
Clearer import control interface
Diffstat (limited to 'include')
-rw-r--r-- | include/text.php | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/include/text.php b/include/text.php index 57339e16d..096c8a5aa 100644 --- a/include/text.php +++ b/include/text.php @@ -2264,9 +2264,13 @@ function website_import_tools() { $who = $channel['channel_address']; - return replace_macros(get_markup_template('design_tools.tpl'), array( + return replace_macros(get_markup_template('website_import_tools.tpl'), array( '$title' => t('Import'), - '$who' => $who, + //'$who' => $who, + '$import_label' => t('Import website...'), + '$import_placeholder' => t('Select folder to import'), + '$file_upload_text' => t('Import from a zipped folder:'), + '$file_import_text' => t('Import from cloud files:') )); } |