Reword import help text

This commit is contained in:
JonnyWong16 2020-07-16 00:02:13 -07:00
parent 43a7758acd
commit d216d0f27f
No known key found for this signature in database
GPG key ID: B1F1F9807184697A
4 changed files with 17 additions and 12 deletions

View file

@ -32,7 +32,7 @@
</div> </div>
</div> </div>
</div> </div>
<p class="help-block">Upload the ${app} database you wish to import.</p> <p class="help-block">Upload the ${app} database file you wish to import.</p>
</div> </div>
<div class="form-group"> <div class="form-group">
<label for="import_database_path">Option 2: Browse for a Database File</label> <label for="import_database_path">Option 2: Browse for a Database File</label>
@ -46,7 +46,7 @@
</div> </div>
</div> </div>
</div> </div>
<p class="help-block">Browse for the ${app} database you wish to import.</p> <p class="help-block">Browse for the ${app} database file you wish to import.</p>
</div> </div>
% if app == 'Tautulli': % if app == 'Tautulli':
<div class="form-group"> <div class="form-group">
@ -73,7 +73,12 @@
</div> </div>
<div class="form-group"> <div class="form-group">
<label>Import Notes</label> <label>Import Notes</label>
<p class="help-block">Libraries, users, notification agents, newsletter agents, and registered mobile devices will also be imported</p> <p class="help-block">The following data will also be imported:</p>
<ul class="help-block" style="padding-inline-start: 15px;">
<li>Libraries and Users</li>
<li>Notification / Newsletter Agents</li>
<li>Registered Mobile Devices</li>
</ul>
</div> </div>
% else: % else:
<div class="form-group"> <div class="form-group">

View file

@ -7,7 +7,7 @@
<div class="modal-body" id="modal-text"> <div class="modal-body" id="modal-text">
<form id="import_config_form" enctype="multipart/form-data" method="post" name="import_config_form"> <form id="import_config_form" enctype="multipart/form-data" method="post" name="import_config_form">
<div class="form-group"> <div class="form-group">
<label for="import_config_file">Option 1: Upload a Config File</label> <label for="import_config_file">Option 1: Upload a Configuration File</label>
<div class="row"> <div class="row">
<div class="col-xs-12"> <div class="col-xs-12">
<div class="input-group"> <div class="input-group">
@ -19,10 +19,10 @@
</div> </div>
</div> </div>
</div> </div>
<p class="help-block">Upload the Tautulli config you wish to import.</p> <p class="help-block">Upload the Tautulli configuration file you wish to import.</p>
</div> </div>
<div class="form-group"> <div class="form-group">
<label for="import_config_path">Option 2: Browse for a Config File</label> <label for="import_config_path">Option 2: Browse for a Configuration File</label>
<div class="row"> <div class="row">
<div class="col-xs-12"> <div class="col-xs-12">
<div class="input-group"> <div class="input-group">
@ -33,13 +33,13 @@
</div> </div>
</div> </div>
</div> </div>
<p class="help-block">Browse for the Tautulli config you wish to import.</p> <p class="help-block">Browse for the Tautulli configuration file you wish to import.</p>
</div> </div>
<div class="checkbox"> <div class="checkbox">
<label> <label>
<input type="checkbox" name="import_backup_config" id="import_backup_config" value="1" checked> Backup Current Config <input type="checkbox" name="import_backup_config" id="import_backup_config" value="1" checked> Backup Current Configuration
</label> </label>
<p class="help-block">Automatically create a backup of the current config before importing.</p> <p class="help-block">Automatically create a backup of the current configuration before importing.</p>
</div> </div>
<div class="form-group"> <div class="form-group">
<label>Import Notes</label> <label>Import Notes</label>

View file

@ -1319,8 +1319,8 @@
</div> </div>
</div> </div>
<div class="form-group"> <div class="form-group">
<label for="config_import">Config Import</label> <label for="config_import">Configuration Import</label>
<p class="help-block">Click the button below to import a previous Tautulli config.</p> <p class="help-block">Click the button below to import a previous Tautulli configuration.</p>
<div class="row"> <div class="row">
<div class="col-md-9"> <div class="col-md-9">
<div class="btn-group"> <div class="btn-group">

View file

@ -3898,7 +3898,7 @@ class WebInterface(object):
@cherrypy.expose @cherrypy.expose
@requireAuth(member_of("admin")) @requireAuth(member_of("admin"))
def import_config_tool(self, **kwargs): 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.expose
@cherrypy.tools.json_out() @cherrypy.tools.json_out()