aboutsummaryrefslogtreecommitdiffstats
path: root/mod
diff options
context:
space:
mode:
authorAndrew Manning <tamanning@zoho.com>2015-10-06 06:45:55 -0400
committerAndrew Manning <tamanning@zoho.com>2015-10-06 06:45:55 -0400
commite1fca2a1abd24d3509fc017b21f0631b30d74bc5 (patch)
tree3cef54cab83a5c039ad4ca425ef51e967c1f97d6 /mod
parent08813f1650cd2f896bd99a940b4ab141b262599b (diff)
downloadvolse-hubzilla-e1fca2a1abd24d3509fc017b21f0631b30d74bc5.tar.gz
volse-hubzilla-e1fca2a1abd24d3509fc017b21f0631b30d74bc5.tar.bz2
volse-hubzilla-e1fca2a1abd24d3509fc017b21f0631b30d74bc5.zip
Add message about exporting by year/month to uexport
Diffstat (limited to 'mod')
-rw-r--r--mod/uexport.php11
1 files changed, 9 insertions, 2 deletions
diff --git a/mod/uexport.php b/mod/uexport.php
index fbbe9953b..7dbe40d51 100644
--- a/mod/uexport.php
+++ b/mod/uexport.php
@@ -44,9 +44,16 @@ function uexport_content(&$a) {
$o = replace_macros(get_markup_template('uexport.tpl'), array(
'$title' => t('Export Channel'),
'$basictitle' => t('Export Channel'),
- '$basic' => t('Export your basic channel information to a small file. This acts as a backup of your connections, permissions, profile and basic data, which can be used to import your data to a new hub, but does not contain your content.'),
+ '$basic' => t('Export your basic channel information to a file. This acts as a backup of your connections, permissions, profile and basic data, which can be used to import your data to a new server hub, but does not contain your content.'),
'$fulltitle' => t('Export Content'),
- '$full' => t('Export your channel information and all the content to a JSON backup. This backs up all of your connections, permissions, profile data and all of your content, but is generally not suitable for importing a channel to a new hub as this file may be VERY large. Please be patient - it may take several minutes for this download to begin.')
+ '$full' => t('Export your channel information and recent content to a JSON backup that can be restored or imported to another server hub. This backs up all of your connections, permissions, profile data and several months of posts. This file may be VERY large. Please be patient - it may take several minutes for this download to begin.'),
+ '$by_year' => t('Export your posts from a given year.'),
+
+ '$extra' => t('You may also export your posts and conversations for a particular year or month. Adjust the date in your browser location bar to select other dates. If the export fails (possibly due to memory exhaustion on your server hub), please try again selecting a more limited date range.'),
+ '$extra2' => sprintf( t('To select all posts for a given year, such as this year, visit <a href="%1$s">%2$s</a>'),$yearurl,$yearurl),
+ '$extra3' => sprintf( t('To select all posts for a given month, such as January of this year, visit <a href="%1$s">%2$s</a>'),$janurl,$janurl),
+ '$extra4' => sprintf( t('These content files may be imported or restored by visiting <a href="%1$s">%2$s</a> on any site containing your channel. For best results please import or restore these in date order (oldest first).'),$impurl,$impurl)
+
));
return $o;
}