forked from External/greenlight
add footer to Youtube prompt
This commit is contained in:
parent
034c5ba617
commit
704dab1e5c
|
@ -114,3 +114,9 @@
|
||||||
.tooltip-wrapper {
|
.tooltip-wrapper {
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#youtube-footer{
|
||||||
|
font-size: 10px;
|
||||||
|
text-align: center;
|
||||||
|
margin-top: 10px;
|
||||||
|
}
|
||||||
|
|
|
@ -43,7 +43,7 @@ class SessionsController < ApplicationController
|
||||||
|
|
||||||
def auth_failure
|
def auth_failure
|
||||||
if params[:message] == 'invalid_credentials'
|
if params[:message] == 'invalid_credentials'
|
||||||
redirect_to '/', flash: {danger: 'Invalid login credentials.' }
|
redirect_to '/', flash: {danger: t('invalid_login') }
|
||||||
else
|
else
|
||||||
redirect_to '/'
|
redirect_to '/'
|
||||||
end
|
end
|
||||||
|
|
|
@ -76,6 +76,7 @@
|
||||||
<%= t('upload') %>
|
<%= t('upload') %>
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
|
<p id = 'youtube-footer'><%= t('youtube_footer') %></p>
|
||||||
</form>
|
</form>
|
||||||
</div>
|
</div>
|
||||||
<div class='mail_youtube_popover'>
|
<div class='mail_youtube_popover'>
|
||||||
|
|
|
@ -92,6 +92,7 @@ en-US:
|
||||||
home_page: Home page
|
home_page: Home page
|
||||||
home_title: Welcome to BigBlueButton
|
home_title: Welcome to BigBlueButton
|
||||||
invalid_file: You may only upload an image file (jpg, gif, png).
|
invalid_file: You may only upload an image file (jpg, gif, png).
|
||||||
|
invalid_login: Invalid log in credentials.
|
||||||
invite: Invite
|
invite: Invite
|
||||||
invite_description: (share this link below to invite others to this meeting)
|
invite_description: (share this link below to invite others to this meeting)
|
||||||
join: Join
|
join: Join
|
||||||
|
@ -182,6 +183,7 @@ en-US:
|
||||||
watch: Watch
|
watch: Watch
|
||||||
'yes': 'Yes'
|
'yes': 'Yes'
|
||||||
youtube_description: This recording was recorded with BigBlueButton. For more information check out %{url}.
|
youtube_description: This recording was recorded with BigBlueButton. For more information check out %{url}.
|
||||||
|
youtube_footer: this will upload all webcam and audio data
|
||||||
youtube_privacy_options:
|
youtube_privacy_options:
|
||||||
public: Public
|
public: Public
|
||||||
private: Private
|
private: Private
|
||||||
|
|
Loading…
Reference in New Issue