diff --git a/data/interfaces/default/app_import.html b/data/interfaces/default/app_import.html index b03e253f..5f256bd6 100644 --- a/data/interfaces/default/app_import.html +++ b/data/interfaces/default/app_import.html @@ -32,7 +32,7 @@ -

Upload the ${app} database you wish to import.

+

Upload the ${app} database file you wish to import.

@@ -46,7 +46,7 @@
-

Browse for the ${app} database you wish to import.

+

Browse for the ${app} database file you wish to import.

% if app == 'Tautulli':
@@ -73,7 +73,12 @@
-

Libraries, users, notification agents, newsletter agents, and registered mobile devices will also be imported

+

The following data will also be imported:

+
% else:
diff --git a/data/interfaces/default/config_import.html b/data/interfaces/default/config_import.html index 8c83a809..e41e1b40 100644 --- a/data/interfaces/default/config_import.html +++ b/data/interfaces/default/config_import.html @@ -7,7 +7,7 @@
- -

Click the button below to import a previous Tautulli config.

+ +

Click the button below to import a previous Tautulli configuration.

diff --git a/plexpy/webserve.py b/plexpy/webserve.py index a9480a7a..d5ddc943 100644 --- a/plexpy/webserve.py +++ b/plexpy/webserve.py @@ -3898,7 +3898,7 @@ class WebInterface(object): @cherrypy.expose @requireAuth(member_of("admin")) def import_config_tool(self, **kwargs): - return serve_template(templatename="config_import.html", title="Import Tautulli Config") + return serve_template(templatename="config_import.html", title="Import Tautulli Configuration") @cherrypy.expose @cherrypy.tools.json_out()