From f7810f7f95683207eb9d81f08c81a8d052dd6eb9 Mon Sep 17 00:00:00 2001 From: JonnyWong16 Date: Sat, 2 Jul 2016 16:05:37 -0700 Subject: [PATCH] Reword GeoLite2 install confirmation message --- data/interfaces/default/configuration_table.html | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/data/interfaces/default/configuration_table.html b/data/interfaces/default/configuration_table.html index b7da81a3..0d14f7c2 100644 --- a/data/interfaces/default/configuration_table.html +++ b/data/interfaces/default/configuration_table.html @@ -102,8 +102,9 @@ DOCUMENTATION :: END $(document).ready(function () { $("#install_geoip_db, #reinstall_geoip_db").click(function () { var msg = 'Are you sure you want to install the GeoLite2 database?

' + - 'The database is used to lookup IP address geolocation info.
' + - 'The database uses ~65MB in your PlexPy directory.'; + 'The database is used to lookup IP address geolocation info.
' + + 'The database will be downloaded from MaxMind,
' + + 'and requires 100MB of free space to install in your PlexPy directory.
' var url = 'install_geoip_db'; confirmAjaxCall(url, msg, 'Installing GeoLite2 database.', getConfigurationTable); });