diff options
| author | Emilien Devos <contact@emiliendevos.be> | 2022-09-02 20:20:43 +0200 |
|---|---|---|
| committer | Emilien Devos <contact@emiliendevos.be> | 2022-09-02 20:20:43 +0200 |
| commit | 260bab598e00fe769ff36ba2c171768a1fbc31bb (patch) | |
| tree | 20435e18116c2d0f92c3de2be664f3dfb89eb0f3 | |
| parent | ca4c2115eebd5b3eaeb7ebf9e4e704ad83e5b4bf (diff) | |
| download | invidious-260bab598e00fe769ff36ba2c171768a1fbc31bb.tar.gz invidious-260bab598e00fe769ff36ba2c171768a1fbc31bb.tar.bz2 invidious-260bab598e00fe769ff36ba2c171768a1fbc31bb.zip | |
reword error messages
| -rw-r--r-- | locales/en-US.json | 2 | ||||
| -rw-r--r-- | src/invidious/routes/embed.cr | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/locales/en-US.json b/locales/en-US.json index 5caa4bd1..5554b928 100644 --- a/locales/en-US.json +++ b/locales/en-US.json @@ -472,5 +472,5 @@ "crash_page_read_the_faq": "read the <a href=\"`x`\">Frequently Asked Questions (FAQ)</a>", "crash_page_search_issue": "searched for <a href=\"`x`\">existing issues on GitHub</a>", "crash_page_report_issue": "If none of the above helped, please <a href=\"`x`\">open a new issue on GitHub</a> (preferably in English) and include the following text in your message (do NOT translate that text):", - "video_not_exist_in_playlist": "The video requested doesn't exist in the playlist. Click <a href=\"`x`\">here</a> for the playlist home page." + "error_video_not_in_playlist": "The requested video doesn't exist in this playlist. <a href=\"`x`\">Click here for the playlist home page.</a>" } diff --git a/src/invidious/routes/embed.cr b/src/invidious/routes/embed.cr index 7860f8b9..e6486587 100644 --- a/src/invidious/routes/embed.cr +++ b/src/invidious/routes/embed.cr @@ -10,7 +10,7 @@ module Invidious::Routes::Embed videos = get_playlist_videos(playlist, offset: offset) if videos.empty? url = "/playlist?list=#{plid}" - raise NotFoundException.new(translate(locale, "video_not_exist_in_playlist", url)) + raise NotFoundException.new(translate(locale, "error_video_not_in_playlist", url)) end rescue ex : NotFoundException return error_template(404, ex) @@ -70,7 +70,7 @@ module Invidious::Routes::Embed videos = get_playlist_videos(playlist, offset: offset) if videos.empty? url = "/playlist?list=#{plid}" - raise NotFoundException.new(translate(locale, "video_not_exist_in_playlist", url)) + raise NotFoundException.new(translate(locale, "error_video_not_in_playlist", url)) end rescue ex : NotFoundException return error_template(404, ex) |
