summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/invidious.cr2
-rw-r--r--src/invidious/views/login.ecr2
-rw-r--r--src/invidious/views/preferences.ecr4
-rw-r--r--src/invidious/views/template.ecr2
-rw-r--r--src/invidious/views/watch.ecr4
5 files changed, 7 insertions, 7 deletions
diff --git a/src/invidious.cr b/src/invidious.cr
index ef4214d0..863e2a9a 100644
--- a/src/invidious.cr
+++ b/src/invidious.cr
@@ -37,7 +37,7 @@ video_threads = CONFIG.video_threads
Kemal.config.extra_options do |parser|
parser.banner = "Usage: invidious [arguments]"
- parser.on("-t THREADS", "--crawl-threads=THREADS", "Number of threads for crawling (default: #{crawl_threads})") do |number|
+ parser.on("-t THREADS", "--crawl-threads=THREADS", "Number of threads for crawling YouTube (default: #{crawl_threads})") do |number|
begin
crawl_threads = number.to_i
rescue ex
diff --git a/src/invidious/views/login.ecr b/src/invidious/views/login.ecr
index f9c5029c..55f4c848 100644
--- a/src/invidious/views/login.ecr
+++ b/src/invidious/views/login.ecr
@@ -65,7 +65,7 @@
<input required class="pure-input-1" name="tfa" type="text" placeholder="Google verification code">
<% end %>
- <button type="submit" class="pure-button pure-button-primary">Sign in</button>
+ <button type="submit" class="pure-button pure-button-primary">Sign In</button>
</fieldset>
</form>
<% end %>
diff --git a/src/invidious/views/preferences.ecr b/src/invidious/views/preferences.ecr
index 3557f31f..b55e4048 100644
--- a/src/invidious/views/preferences.ecr
+++ b/src/invidious/views/preferences.ecr
@@ -138,7 +138,7 @@ function update_value(element) {
</div>
<div class="pure-control-group">
- <label for="latest_only">Only show latest <% if user.preferences.unseen_only %>unseen<% end %> video from channel: </label>
+ <label for="latest_only">Only show latest <% if user.preferences.unseen_only %>unwatched<% end %> video from channel: </label>
<input name="latest_only" id="latest_only" type="checkbox" <% if user.preferences.latest_only %>checked<% end %>>
</div>
@@ -148,7 +148,7 @@ function update_value(element) {
</div>
<div class="pure-control-group">
- <label for="notifications_only">Only show notifications: </label>
+ <label for="notifications_only">Only show notifications (if there are any): </label>
<input name="notifications_only" id="notifications_only" type="checkbox" <% if user.preferences.notifications_only %>checked<% end %>>
</div>
diff --git a/src/invidious/views/template.ecr b/src/invidious/views/template.ecr
index 4cfb41df..0311f07f 100644
--- a/src/invidious/views/template.ecr
+++ b/src/invidious/views/template.ecr
@@ -77,7 +77,7 @@
</div>
<%= content %>
<div class="footer">
- Released under AGPLv3 by <a href="https://github.com/omarroth">Omar
+ Released under the AGPLv3 by <a href="https://github.com/omarroth">Omar
Roth</a>.
Source available <a
href="https://github.com/omarroth/invidious">here</a>.
diff --git a/src/invidious/views/watch.ecr b/src/invidious/views/watch.ecr
index 2f29b5b2..0d6d932b 100644
--- a/src/invidious/views/watch.ecr
+++ b/src/invidious/views/watch.ecr
@@ -66,8 +66,8 @@
<% if !video.license.empty? %>
<p id="License">License: <%= video.license %></p>
<% end %>
- <p id="FamilyFriendly">Family Friendly? <%= video.is_family_friendly %></p>
- <p id="Wilson">Wilson Score: <%= video.wilson_score.round(4) %></p>
+ <p id="FamilyFriendly">Family friendly? <%= video.is_family_friendly %></p>
+ <p id="Wilson">Wilson score: <%= video.wilson_score.round(4) %></p>
<p id="Rating">Rating: <%= rating.round(4) %> / 5</p>
<p id="Engagement">Engagement: <%= engagement.round(2) %>%</p>
<% if video.allowed_regions.size != REGIONS.size %>