Add message for when channel has no posts

ChunkyProgrammer 2024-02-15 19:50:59 -05:00
rodzic bce79ca2ee
commit eafaf4a82a
2 zmienionych plików z 6 dodań i 1 usunięć

Wyświetl plik

@ -496,5 +496,6 @@
"toggle_theme": "Toggle Theme", "toggle_theme": "Toggle Theme",
"carousel_slide": "Slide {{current}} of {{total}}", "carousel_slide": "Slide {{current}} of {{total}}",
"carousel_skip": "Skip the Carousel", "carousel_skip": "Skip the Carousel",
"carousel_go_to": "Go to slide `x`" "carousel_go_to": "Go to slide `x`",
"channel_has_no_posts": "This channel hasn't posted yet"
} }

Wyświetl plik

@ -25,6 +25,10 @@
<div class="h-box"> <div class="h-box">
<p><%= error_message %></p> <p><%= error_message %></p>
</div> </div>
<% elsif items.not_nil!["comments"].as_a.empty? %>
<div class="h-box">
<%= translate(locale, "channel_has_no_posts") %>
</div>
<% else %> <% else %>
<div class="h-box pure-g comments" id="comments"> <div class="h-box pure-g comments" id="comments">
<%= IV::Frontend::Comments.template_youtube(items.not_nil!, locale, thin_mode) %> <%= IV::Frontend::Comments.template_youtube(items.not_nil!, locale, thin_mode) %>