Skip to content
Snippets Groups Projects
Unverified Commit 0f12eaa8 authored by Ahmad Farhat's avatar Ahmad Farhat Committed by GitHub
Browse files

Fixed public recording strings (#2789)

parent e54208f7
No related branches found
No related tags found
No related merge requests found
...@@ -77,7 +77,7 @@ ...@@ -77,7 +77,7 @@
<tbody id="recording-table"> <tbody id="recording-table">
<tr id="no_recordings_found" style="display: none;"> <tr id="no_recordings_found" style="display: none;">
<td colspan="7" class="text-center h4 p-6 font-weight-normal" > <td colspan="7" class="text-center h4 p-6 font-weight-normal" >
<%= t("recording.no_matched_recordings", inject: only_public ? t("recording.visibility.public").downcase + " " : "") %> <%= only_public ? t("recording.no_matched_pub_recordings") : t("recording.no_matched_recordings") %>
</td> </td>
</tr> </tr>
<% if recordings.empty? %> <% if recordings.empty? %>
...@@ -86,7 +86,7 @@ ...@@ -86,7 +86,7 @@
<% if user_recordings %> <% if user_recordings %>
<%= t("recording.no_user_recordings") %> <%= t("recording.no_user_recordings") %>
<% else %> <% else %>
<%= t("recording.no_recordings", inject: only_public ? t("recording.visibility.public").downcase + " " : "") %> <%= only_public ? t("recording.no_public_recordings") : t("recording.no_recordings") %>
<% end %> <% end %>
</td> </td>
</tr> </tr>
......
...@@ -498,9 +498,11 @@ en: ...@@ -498,9 +498,11 @@ en:
all_recordings: All Recordings all_recordings: All Recordings
email: Email Recording email: Email Recording
error: There was an error retrieving %{count} recording(s) error: There was an error retrieving %{count} recording(s)
no_recordings: This room has no %{inject}recordings. no_public_recordings: This room has no public recordings.
no_recordings: This room has no recordings.
no_user_recordings: You currently have no recordings. no_user_recordings: You currently have no recordings.
no_matched_recordings: No %{inject} recordings match your search. no_matched_pub_recordings: No public recordings match your search.
no_matched_recordings: No recordings match your search.
recorded_on: Recorded on %{date} recorded_on: Recorded on %{date}
table: table:
name: Name name: Name
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment