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

Added missing question mark (#2234)

* Added missing question mark

* Made bigbluebutton name variable
parent 68716bc6
No related branches found
No related tags found
No related merge requests found
...@@ -74,7 +74,7 @@ class AdminsController < ApplicationController ...@@ -74,7 +74,7 @@ class AdminsController < ApplicationController
begin begin
meetings = all_running_meetings[:meetings] meetings = all_running_meetings[:meetings]
rescue rescue
flash[:alert] = I18n.t("administrator.rooms.timeout") flash[:alert] = I18n.t("administrator.rooms.timeout", server: I18n.t("bigbluebutton"))
meetings = [] meetings = []
end end
......
...@@ -271,7 +271,7 @@ class ApplicationController < ActionController::Base ...@@ -271,7 +271,7 @@ class ApplicationController < ActionController::Base
render "errors/greenlight_error", locals: { message: I18n.t("errors.not_found.user_missing.message"), render "errors/greenlight_error", locals: { message: I18n.t("errors.not_found.user_missing.message"),
help: I18n.t("errors.not_found.user_missing.help") } help: I18n.t("errors.not_found.user_missing.help") }
elsif e.message.eql? "That user has no configured provider." elsif e.message.eql? "That user has no configured provider."
if Setting.exists(provider: @user_domain) if Setting.exists?(provider: @user_domain)
# Keep the branding # Keep the branding
@settings = Setting.find_by(provider: @user_domain) @settings = Setting.find_by(provider: @user_domain)
else else
......
...@@ -173,7 +173,7 @@ en: ...@@ -173,7 +173,7 @@ en:
enabled: Always Enabled enabled: Always Enabled
optional: Optional optional: Optional
rooms: rooms:
timeout: Due to the BigBlueButton Server request timing out, the information for status and participants may not be accurate timeout: Due to the %{server} Server request timing out, the information for status and participants may not be accurate
title: Server Rooms title: Server Rooms
table: table:
ended: "Ended: %{session}" ended: "Ended: %{session}"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment