download_widget: Add missing translation key

This commit is contained in:
Jarek Baran 2023-03-30 12:52:03 +02:00
parent 8a44bd11d2
commit 0fe1b1ec19
3 changed files with 3 additions and 1 deletions

View file

@ -20,7 +20,7 @@ module Invidious::Frontend::WatchPage
def download_widget(locale : String, video : Video, video_assets : VideoAssets) : String
if CONFIG.disabled?("downloads")
return "<p id=\"download\">#{translate(locale, "Download is disabled.")}</p>"
return "<p id=\"download\">#{translate(locale, "Download is disabled")}</p>"
end
return String.build(4000) do |str|