diff options
| -rw-r--r-- | README.md | 18 | ||||
| -rw-r--r-- | src/invidious/views/preferences.ecr | 6 |
2 files changed, 21 insertions, 3 deletions
@@ -148,7 +148,9 @@ $ ./sentry ``` ## Optional + Create a systemd service to run Invidious in background. Edit `invidious.service` to change your installation path and log location. Than copy and enable the systemd service. + ``` $ sudo cp invidious.service /etc/systemd/system/invidious.service $ sudo systemctl enable invidious.service @@ -177,6 +179,18 @@ $ sudo systemctl start invidious.service 4. Push to the branch (git push origin my-new-feature) 5. Create a new Pull Request -## Contributors +## Contact + +Feel free to send an email to omarroth@protonmail.com or join our [Matrix Server](https://riot.im/app/#/room/#invidious:matrix.org). + +You can also view release notes on the [releases](https://github.com/omarroth/invidious/releases) page or in the CHANGELOG.md included in the repository. + +## License + +[](http://www.gnu.org/licenses/agpl-3.0.en.html) -- [omarroth](https://github.com/omarroth) - creator, maintainer +Invidious is Free Software: You can use, study share and improve it at your +will. Specifically you can redistribute and/or modify it under the terms of the +[GNU Affero General Public License](https://www.gnu.org/licenses/agpl.html) as +published by the Free Software Foundation, either version 3 of the License, or +(at your option) any later version. diff --git a/src/invidious/views/preferences.ecr b/src/invidious/views/preferences.ecr index 7a01004b..cd752900 100644 --- a/src/invidious/views/preferences.ecr +++ b/src/invidious/views/preferences.ecr @@ -147,7 +147,11 @@ function update_value(element) { </div> <div class="pure-control-group"> - <label for="latest_only">Only show latest <% if user.preferences.unseen_only %>unwatched<% end %> video from channel: </label> + <% if user.preferences.unseen_only %> + <label for="latest_only"><%= translate(locale, "Only show latest unwatched video from channel: ") %></label> + <% else %> + <label for="latest_only"><%= translate(locale, "Only show latest video from channel: ") %></label> + <% end %> <input name="latest_only" id="latest_only" type="checkbox" <% if user.preferences.latest_only %>checked<% end %>> </div> |
