From c7cc4766235229649c3d04992277aa4392d28a6f Mon Sep 17 00:00:00 2001 From: JonnyWong16 Date: Fri, 16 Feb 2018 15:24:48 -0800 Subject: [PATCH] Change "Close" to "Dismiss" in update bar --- data/interfaces/default/base.html | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/data/interfaces/default/base.html b/data/interfaces/default/base.html index 8f804c8a..e3f7923b 100644 --- a/data/interfaces/default/base.html +++ b/data/interfaces/default/base.html @@ -45,14 +45,14 @@ % if plexpy.CONFIG.CHECK_GITHUB and not plexpy.CURRENT_VERSION: % elif plexpy.CONFIG.CHECK_GITHUB and plexpy.CURRENT_VERSION != plexpy.LATEST_VERSION and plexpy.COMMITS_BEHIND > 0 and plexpy.INSTALL_TYPE != 'win': % else: @@ -314,13 +314,13 @@ ${next.modalIncludes()} if (result.update === true) { msg = 'A newer version is available!
' + 'You are '+ result.commits_behind + ' commits behind.
' + - 'Update or Close.'; + 'Update or Dismiss'; $('#updatebar').html(msg).fadeIn(); } else if (result.update === false) { showMsg(' ' + result.message, false, true, 2000); } else if (result.update === null) { msg = 'You are running an unknown version of Tautulli.
' + - 'Update or Close.'; + 'Update or Dismiss'; $('#updatebar').html(msg).fadeIn(); }