diff options
| -rw-r--r-- | locales/en-US.json | 2 | ||||
| -rw-r--r-- | src/invidious/views/watch.ecr | 4 |
2 files changed, 4 insertions, 2 deletions
diff --git a/locales/en-US.json b/locales/en-US.json index a7dc3107..34a1861f 100644 --- a/locales/en-US.json +++ b/locales/en-US.json @@ -156,6 +156,8 @@ "Title": "Title", "Playlist privacy": "Playlist privacy", "Editing playlist `x`": "Editing playlist `x`", + "Show more": "Show more", + "Show less": "Show less", "Watch on YouTube": "Watch on YouTube", "Hide annotations": "Hide annotations", "Show annotations": "Show annotations", diff --git a/src/invidious/views/watch.ecr b/src/invidious/views/watch.ecr index 90a20335..f9df159e 100644 --- a/src/invidious/views/watch.ecr +++ b/src/invidious/views/watch.ecr @@ -31,11 +31,11 @@ we're going to need to do it here in order to allow for translations. --> <style> #readmorebutton + label > a::after { - content: "<%= translate(locale, "Read more") %>" + content: "<%= translate(locale, "Show more") %>" } #readmorebutton:checked + label > a::after { - content: "<%= translate(locale, "Read less") %>" + content: "<%= translate(locale, "Show less") %>" } </style> <% end %> |
