UX: rename the word "Upgrade" to "Update" in the UI. (#26396)

In this PR, all references in the UI to the word "`upgrade`" are changed to "`update`". This is to differentiate the update process in self-hosted sites from the plan "upgrade" process in hosted sites.

Follow-up to the PR: https://github.com/discourse/docker_manager/pull/208
This commit is contained in:
Vinoth Kannan
2024-04-02 20:04:37 +05:30
committed by GitHub
parent c76b10ec22
commit cd43985de0
5 changed files with 10 additions and 10 deletions

View File

@ -39,7 +39,7 @@ module DiscourseUpdates
)
# Handle cases when version check data is old so we report something that makes sense
if version_info.updated_at.nil? || last_installed_version != Discourse::VERSION::STRING || # never performed a version check # upgraded since the last version check
if version_info.updated_at.nil? || last_installed_version != Discourse::VERSION::STRING || # never performed a version check # updated since the last version check
is_stale_data
Jobs.enqueue(:call_discourse_hub, all_sites: true)
version_info.version_check_pending = true