bigbluebutton_rails 2.3.0 → 3.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +20 -2
- data/Gemfile +0 -1
- data/Gemfile.lock +27 -27
- data/Rakefile +15 -14
- data/app/controllers/bigbluebutton/api/rooms_controller.rb +2 -2
- data/app/controllers/bigbluebutton/meetings_controller.rb +69 -0
- data/app/controllers/bigbluebutton/recordings_controller.rb +2 -8
- data/app/controllers/bigbluebutton/rooms_controller.rb +5 -4
- data/app/controllers/bigbluebutton/servers_controller.rb +2 -2
- data/app/models/bigbluebutton_meeting.rb +1 -1
- data/app/models/bigbluebutton_recording.rb +15 -3
- data/app/models/bigbluebutton_room.rb +28 -18
- data/app/models/bigbluebutton_server.rb +9 -9
- data/app/views/bigbluebutton/meetings/_form.html.erb +30 -0
- data/app/views/bigbluebutton/meetings/edit.html.erb +5 -0
- data/app/views/bigbluebutton/recordings/_form.html.erb +0 -4
- data/app/views/bigbluebutton/recordings/_recordings.html.erb +0 -1
- data/app/views/bigbluebutton/recordings/show.html.erb +0 -5
- data/app/views/bigbluebutton/rooms/_form.html.erb +2 -2
- data/app/views/bigbluebutton/rooms/_rooms.html.erb +1 -1
- data/app/views/bigbluebutton/rooms/show.html.erb +2 -2
- data/app/views/bigbluebutton/servers/_form.html.erb +2 -2
- data/app/views/bigbluebutton/servers/index.html.erb +1 -1
- data/app/views/bigbluebutton/servers/show.html.erb +2 -2
- data/app/workers/bigbluebutton_recordings_for_room_worker.rb +1 -1
- data/config/locales/en.yml +37 -24
- data/config/locales/pt-br.yml +37 -24
- data/lib/bigbluebutton_rails/configuration.rb +3 -0
- data/lib/bigbluebutton_rails/rails/routes.rb +6 -1
- data/lib/bigbluebutton_rails/version.rb +1 -1
- data/lib/generators/bigbluebutton_rails/templates/migration.rb +3 -3
- data/lib/generators/bigbluebutton_rails/templates/migration_2_4_0.rb +18 -0
- data/lib/generators/bigbluebutton_rails/templates/migration_2_5_0.rb +9 -0
- data/spec/controllers/bigbluebutton/api/rooms_controller_spec.rb +3 -3
- data/spec/controllers/bigbluebutton/meetings_controller_spec.rb +199 -0
- data/spec/controllers/bigbluebutton/recordings_controller_spec.rb +3 -3
- data/spec/controllers/bigbluebutton/rooms_controller_exception_handling_spec.rb +4 -2
- data/spec/controllers/bigbluebutton/rooms_controller_spec.rb +12 -6
- data/spec/controllers/bigbluebutton/servers_controller_spec.rb +8 -8
- data/spec/factories/bigbluebutton_meeting.rb +1 -0
- data/spec/factories/bigbluebutton_recording.rb +0 -1
- data/spec/factories/bigbluebutton_room.rb +1 -1
- data/spec/factories/bigbluebutton_server.rb +1 -1
- data/spec/models/bigbluebutton_meeting_db_spec.rb +2 -0
- data/spec/models/bigbluebutton_meeting_spec.rb +1 -1
- data/spec/models/bigbluebutton_recording_db_spec.rb +0 -1
- data/spec/models/bigbluebutton_recording_spec.rb +0 -4
- data/spec/models/bigbluebutton_room_db_spec.rb +1 -1
- data/spec/models/bigbluebutton_room_spec.rb +58 -69
- data/spec/models/bigbluebutton_server_db_spec.rb +1 -1
- data/spec/models/bigbluebutton_server_spec.rb +26 -26
- data/spec/rails_app/features/step_definitions/create_rooms_steps.rb +2 -2
- data/spec/rails_app/features/step_definitions/create_servers_steps.rb +2 -2
- data/spec/rails_app/features/step_definitions/destroy_rooms_steps.rb +1 -1
- data/spec/rails_app/features/step_definitions/destroy_servers_steps.rb +1 -1
- data/spec/rails_app/features/support/templates.rb +10 -10
- data/spec/rails_app/lib/tasks/db/populate.rake +0 -1
- data/spec/routing/bigbluebutton/meetings_routing_spec.rb +14 -0
- data/spec/support/controllers/bigbluebutton/rooms_controller.rb +6 -2
- data/spec/support/mocked_server.rb +2 -2
- metadata +8 -1
@@ -28,12 +28,12 @@ class BigbluebuttonServer < ActiveRecord::Base
|
|
28
28
|
:format => { :with => /http[s]?:\/\/.*\/bigbluebutton\/api/,
|
29
29
|
:message => I18n.t('bigbluebutton_rails.servers.errors.url_format') }
|
30
30
|
|
31
|
-
validates :
|
31
|
+
validates :slug,
|
32
32
|
:presence => true,
|
33
33
|
:uniqueness => true,
|
34
34
|
:length => { :minimum => 3 },
|
35
35
|
:format => { :with => /\A[a-zA-Z\d_]+[a-zA-Z\d_-]*[a-zA-Z\d_]+\z/,
|
36
|
-
:message => I18n.t('bigbluebutton_rails.servers.errors.
|
36
|
+
:message => I18n.t('bigbluebutton_rails.servers.errors.slug_format') }
|
37
37
|
|
38
38
|
validates :secret,
|
39
39
|
:presence => true,
|
@@ -47,7 +47,7 @@ class BigbluebuttonServer < ActiveRecord::Base
|
|
47
47
|
attr_reader :meetings
|
48
48
|
|
49
49
|
after_initialize :init
|
50
|
-
before_validation :
|
50
|
+
before_validation :set_slug
|
51
51
|
|
52
52
|
after_create :create_config
|
53
53
|
after_create :update_config
|
@@ -78,7 +78,7 @@ class BigbluebuttonServer < ActiveRecord::Base
|
|
78
78
|
|
79
79
|
version = self.version
|
80
80
|
version = set_api_version_from_server if version.blank?
|
81
|
-
@api = BigBlueButton::BigBlueButtonApi.new(self.url, self.secret, version.to_s,
|
81
|
+
@api = BigBlueButton::BigBlueButtonApi.new(self.url, self.secret, version.to_s, BigbluebuttonRails.configuration.debug)
|
82
82
|
end
|
83
83
|
|
84
84
|
# Fetches the meetings currently created in the server (running or not).
|
@@ -160,7 +160,7 @@ class BigbluebuttonServer < ActiveRecord::Base
|
|
160
160
|
end
|
161
161
|
|
162
162
|
def to_param
|
163
|
-
self.
|
163
|
+
self.slug
|
164
164
|
end
|
165
165
|
|
166
166
|
def set_api_version_from_server
|
@@ -189,10 +189,10 @@ class BigbluebuttonServer < ActiveRecord::Base
|
|
189
189
|
@meetings = []
|
190
190
|
end
|
191
191
|
|
192
|
-
# if :
|
193
|
-
def
|
194
|
-
if self.
|
195
|
-
self.
|
192
|
+
# if :slug wasn't set, sets it as :name downcase and parameterized
|
193
|
+
def set_slug
|
194
|
+
if self.slug.blank?
|
195
|
+
self.slug = self.name.parameterize.downcase unless self.name.nil?
|
196
196
|
end
|
197
197
|
end
|
198
198
|
|
@@ -0,0 +1,30 @@
|
|
1
|
+
<%= form_for @meeting, :url => bigbluebutton_meeting_path(@meeting) do |f| %>
|
2
|
+
<% if @meeting.errors.any? %>
|
3
|
+
<div id="error_explanation">
|
4
|
+
<h2><%= pluralize(@meeting.errors.count, "error") %>:</h2>
|
5
|
+
<ul>
|
6
|
+
<% @meeting.errors.full_messages.each do |msg| %>
|
7
|
+
<li><%= msg %></li>
|
8
|
+
<% end %>
|
9
|
+
</ul>
|
10
|
+
</div>
|
11
|
+
<% end %>
|
12
|
+
|
13
|
+
<div class="field">
|
14
|
+
<%= f.label :title %><br />
|
15
|
+
<%= f.text_field :title %>
|
16
|
+
</div>
|
17
|
+
<div class="field">
|
18
|
+
<%= f.label :id %><br />
|
19
|
+
<%= @meeting.id %>
|
20
|
+
</div>
|
21
|
+
<div class="field">
|
22
|
+
<%= f.label :meetingid %><br />
|
23
|
+
<%= f.text_field :meetingid, :disabled => true %>
|
24
|
+
</div>
|
25
|
+
|
26
|
+
|
27
|
+
<div class="actions">
|
28
|
+
<%= f.submit %>
|
29
|
+
</div>
|
30
|
+
<% end %>
|
@@ -22,7 +22,6 @@
|
|
22
22
|
<div class="field"><label><%= BigbluebuttonRecording.human_attribute_name(:available) %></label> <%= recording.available %></div>
|
23
23
|
<div class="field"><label><%= BigbluebuttonRecording.human_attribute_name(:start_time) %></label> <%= recording.start_time %></div>
|
24
24
|
<div class="field"><label><%= BigbluebuttonRecording.human_attribute_name(:end_time) %></label> <%= recording.end_time %></div>
|
25
|
-
<div class="field"><label><%= BigbluebuttonRecording.human_attribute_name(:description) %></label> <%= recording.description %></div>
|
26
25
|
<div class="field"><label><%= BigbluebuttonRecording.human_attribute_name(:size) %></label> <%= recording.size %></div>
|
27
26
|
<div class="field">
|
28
27
|
<label><%= BigbluebuttonRecording.human_attribute_name(:metadata) %></label>
|
@@ -52,11 +52,6 @@
|
|
52
52
|
<%= @recording.end_time %>
|
53
53
|
</p>
|
54
54
|
|
55
|
-
<p>
|
56
|
-
<b><%= BigbluebuttonRecording.human_attribute_name(:description) %>:</b>
|
57
|
-
<%= @recording.description %>
|
58
|
-
</p>
|
59
|
-
|
60
55
|
<p>
|
61
56
|
<b><%= BigbluebuttonRecording.human_attribute_name(:metadata) %>:</b>
|
62
57
|
<% @recording.metadata.each do |metadata| %>
|
@@ -65,8 +65,8 @@
|
|
65
65
|
<%= f.check_box :external %>
|
66
66
|
</div>
|
67
67
|
<div class="field">
|
68
|
-
<%= f.label :
|
69
|
-
<%= f.text_field :
|
68
|
+
<%= f.label :slug %><br />
|
69
|
+
<%= f.text_field :slug %>
|
70
70
|
</div>
|
71
71
|
<div class="field">
|
72
72
|
<%= f.label :record_meeting %><br />
|
@@ -19,7 +19,7 @@
|
|
19
19
|
<div class="field"><label><%= BigbluebuttonRoom.human_attribute_name(:voice_bridge) %></label> <%= room.voice_bridge %></div>
|
20
20
|
<div class="field"><label><%= BigbluebuttonRoom.human_attribute_name(:max_participants) %></label> <%= room.max_participants %></div>
|
21
21
|
<div class="field"><label><%= BigbluebuttonRoom.human_attribute_name(:external) %></label> <%= room.external %></div>
|
22
|
-
<div class="field"><label><%= BigbluebuttonRoom.human_attribute_name(:
|
22
|
+
<div class="field"><label><%= BigbluebuttonRoom.human_attribute_name(:slug) %></label> <%= room.slug %></div>
|
23
23
|
<div class="field"><label><%= BigbluebuttonRoom.human_attribute_name(:record_meeting) %></label> <%= room.record_meeting %></div>
|
24
24
|
<div class="field"><label><%= BigbluebuttonRoom.human_attribute_name(:duration) %></label> <%= room.duration %></div>
|
25
25
|
<div class="field"><label><%= BigbluebuttonRoom.human_attribute_name(:moderator_only_message) %></label> <%= room.moderator_only_message %></div>
|
@@ -49,8 +49,8 @@
|
|
49
49
|
<%= @room.external %>
|
50
50
|
</p>
|
51
51
|
<p>
|
52
|
-
<b><%= BigbluebuttonRoom.human_attribute_name(:
|
53
|
-
<%= @room.
|
52
|
+
<b><%= BigbluebuttonRoom.human_attribute_name(:slug) %>:</b>
|
53
|
+
<%= @room.slug %>
|
54
54
|
</p>
|
55
55
|
<p>
|
56
56
|
<b><%= BigbluebuttonRoom.human_attribute_name(:record_meeting) %>:</b>
|
@@ -31,8 +31,8 @@
|
|
31
31
|
<%= f.text_field :version, :disabled => true %>
|
32
32
|
</div>
|
33
33
|
<div class="field">
|
34
|
-
<%= f.label :
|
35
|
-
<%= f.text_field :
|
34
|
+
<%= f.label :slug %><br />
|
35
|
+
<%= f.text_field :slug %>
|
36
36
|
</div>
|
37
37
|
<div class="actions">
|
38
38
|
<%= f.submit %>
|
@@ -14,7 +14,7 @@
|
|
14
14
|
<div><label><%= BigbluebuttonServer.human_attribute_name(:url) %></label> <%= server.url %></div>
|
15
15
|
<div><label><%= BigbluebuttonServer.human_attribute_name(:secret) %></label> <%= server.secret %></div>
|
16
16
|
<div><label><%= BigbluebuttonServer.human_attribute_name(:version) %></label> <%= server.version %></div>
|
17
|
-
<div><label><%= BigbluebuttonServer.human_attribute_name(:
|
17
|
+
<div><label><%= BigbluebuttonServer.human_attribute_name(:slug) %></label> <%= server.slug %></div>
|
18
18
|
<div><label>Access</label>
|
19
19
|
<%= link_to 'Show', server %> |
|
20
20
|
<%= link_to 'View rooms', rooms_bigbluebutton_server_path(server) %> |
|
@@ -17,7 +17,7 @@ class BigbluebuttonRecordingsForRoomWorker
|
|
17
17
|
room = BigbluebuttonRoom.find(room_id)
|
18
18
|
if room.present?
|
19
19
|
Rails.logger.info "BigbluebuttonRecordingsForRoomWorker getting recordings for #{room.inspect}"
|
20
|
-
room.fetch_recordings
|
20
|
+
room.fetch_recordings( state: BigbluebuttonRecording::STATES.values)
|
21
21
|
|
22
22
|
if tries_left > 0
|
23
23
|
Resque.enqueue_in(5.minutes, ::BigbluebuttonRecordingsForRoomWorker, room_id, tries_left - 1)
|
data/config/locales/en.yml
CHANGED
@@ -2,6 +2,8 @@
|
|
2
2
|
en:
|
3
3
|
activerecord:
|
4
4
|
attributes:
|
5
|
+
bigbluebutton_meeting:
|
6
|
+
title: Title
|
5
7
|
bigbluebutton_metadata:
|
6
8
|
content: Content
|
7
9
|
name: Name
|
@@ -46,27 +48,27 @@ en:
|
|
46
48
|
moderator_key: "Key for moderators"
|
47
49
|
moderator_only_message: "Message to be shown to moderators only"
|
48
50
|
name: Name
|
49
|
-
param: "String ID"
|
50
51
|
private: Private
|
51
52
|
presenter_share_only: "Only presenter shares audio and video"
|
52
53
|
record: Record
|
54
|
+
slug: "String ID"
|
53
55
|
voice_bridge: "Voice Bridge"
|
54
56
|
welcome_msg: "Welcome Message"
|
55
57
|
bigbluebutton_server:
|
56
58
|
name: Name
|
57
|
-
param: "String ID"
|
58
59
|
secret: "Shared Secret"
|
60
|
+
slug: "String ID"
|
59
61
|
url: URL
|
60
62
|
version: Version
|
61
63
|
bigbluebutton_server_config:
|
62
64
|
available_layouts: "Available layouts"
|
63
65
|
models:
|
64
|
-
bigbluebutton_metadata: "
|
65
|
-
bigbluebutton_playback_format: "
|
66
|
-
bigbluebutton_recording: "
|
67
|
-
bigbluebutton_room: "
|
68
|
-
bigbluebutton_server: "
|
69
|
-
bigbluebutton_server_config: "
|
66
|
+
bigbluebutton_metadata: "Videoconference Recording Metadata"
|
67
|
+
bigbluebutton_playback_format: "Videoconference Recording Playback Format"
|
68
|
+
bigbluebutton_recording: "Videoconference Recording"
|
69
|
+
bigbluebutton_room: "Videoconference Room"
|
70
|
+
bigbluebutton_server: "Videoconference Server"
|
71
|
+
bigbluebutton_server_config: "Videoconference Server Configurations"
|
70
72
|
bigbluebutton_rails:
|
71
73
|
api:
|
72
74
|
errors:
|
@@ -89,6 +91,17 @@ en:
|
|
89
91
|
msg: "There's no meeting currently running in this room"
|
90
92
|
title: "Meeting not running"
|
91
93
|
bigbluebutton: BigBlueButton
|
94
|
+
meetings:
|
95
|
+
delete:
|
96
|
+
success: "The record was successfully deleted."
|
97
|
+
notice:
|
98
|
+
update:
|
99
|
+
success: "The record was successfully updated."
|
100
|
+
destroy:
|
101
|
+
success_with_bbb_error: "The record was successfully destroyed but it wasn't deleted from the videoconference server (\"%{error}\")"
|
102
|
+
error_destroy: "This record could not be deleted"
|
103
|
+
running:
|
104
|
+
not_ended: "This record can not be deleted because the meeting is still running"
|
92
105
|
metadata:
|
93
106
|
errors:
|
94
107
|
name_format: "can only use letters, numbers and the symbols \"-\" or \"_\", but only letters at the beginning"
|
@@ -98,13 +111,13 @@ en:
|
|
98
111
|
success: "The playback type was successfully updated."
|
99
112
|
presentation:
|
100
113
|
name: "Play"
|
101
|
-
tip: "
|
114
|
+
tip: "Play"
|
102
115
|
presentation_export:
|
103
116
|
name: "Download HTML"
|
104
|
-
tip: "
|
117
|
+
tip: "Download"
|
105
118
|
presentation_video:
|
106
119
|
name: "Download"
|
107
|
-
tip: "
|
120
|
+
tip: "Download"
|
108
121
|
recordings:
|
109
122
|
default:
|
110
123
|
description: "Meeting held on %{time} (UTC)"
|
@@ -116,14 +129,14 @@ en:
|
|
116
129
|
no_format: "There's no playback url specified for this recording."
|
117
130
|
notice:
|
118
131
|
destroy:
|
119
|
-
success: "
|
120
|
-
success_with_bbb_error: "The recording was successfully destroyed but it wasn't deleted from the
|
132
|
+
success: "Recording destroyed!"
|
133
|
+
success_with_bbb_error: "The recording was successfully destroyed but it wasn't deleted from the videoconference server (\"%{error}\")"
|
121
134
|
publish:
|
122
|
-
success: "
|
135
|
+
success: "Recording published!"
|
123
136
|
unpublish:
|
124
|
-
success: "
|
137
|
+
success: "Recording unpublished!"
|
125
138
|
update:
|
126
|
-
success: "
|
139
|
+
success: "Recording updated!"
|
127
140
|
rooms:
|
128
141
|
default_welcome_msg: "Welcome to <b>%%CONFNAME%%</b>!<br><br>To join the audio bridge click the headset icon (upper-left hand corner). Use a headset to avoid causing background noise for others.<br>"
|
129
142
|
default_welcome_msg_dial_number: "<br>You can call into this conference with a regular phone using the number \"%%DIALNUM%%\".<br>"
|
@@ -137,16 +150,16 @@ en:
|
|
137
150
|
wrong_params: "Wrong params in your request."
|
138
151
|
generate_dial_number:
|
139
152
|
not_unique: "We're sorry, but it wasn't possible to generate a unique dial number for this room. You can either try again or manually set a dial number."
|
140
|
-
param_format: "can only use letters, numbers and the symbols \"-\" or \"_\" (not at the begin or end)"
|
141
153
|
server:
|
142
154
|
nil: "Your room must be associated to a server to execute this operation."
|
155
|
+
slug_format: "can only use letters, numbers and the symbols \"-\" or \"_\" (not at the begin or end)"
|
143
156
|
notice:
|
144
157
|
create:
|
145
|
-
failure: "
|
146
|
-
success: "
|
158
|
+
failure: "Room could not be created."
|
159
|
+
success: "Room created!"
|
147
160
|
destroy:
|
148
|
-
success: "
|
149
|
-
success_with_bbb_error: "The room was successfully destroyed but the meeting wasn't ended in the
|
161
|
+
success: "Room destroyed."
|
162
|
+
success_with_bbb_error: "The room was successfully destroyed but the meeting wasn't ended in the videoconference server (\"%{error}\")"
|
150
163
|
end:
|
151
164
|
not_running: "The meeting could not be ended because it is not running."
|
152
165
|
success: "The meeting was successfully ended."
|
@@ -155,11 +168,11 @@ en:
|
|
155
168
|
generate_dial_number:
|
156
169
|
success: "A unique dial number was generated and saved."
|
157
170
|
update:
|
158
|
-
failure: "
|
159
|
-
success: "
|
171
|
+
failure: "Room not updated!"
|
172
|
+
success: "Room updated!"
|
160
173
|
servers:
|
161
174
|
errors:
|
162
|
-
|
175
|
+
slug_format: "you can only use letters, numbers and the symbols \"-\" or \"_\" (not at the begin or end)"
|
163
176
|
url_format: "should use the pattern http://<server>/bigbluebutton/api"
|
164
177
|
notice:
|
165
178
|
create:
|
data/config/locales/pt-br.yml
CHANGED
@@ -2,6 +2,8 @@
|
|
2
2
|
pt-br:
|
3
3
|
activerecord:
|
4
4
|
attributes:
|
5
|
+
bigbluebutton_meeting:
|
6
|
+
title: Título
|
5
7
|
bigbluebutton_metadata:
|
6
8
|
content: Conteúdo
|
7
9
|
name: Nome
|
@@ -46,29 +48,40 @@ pt-br:
|
|
46
48
|
moderator_key: "Chave para moderadores"
|
47
49
|
moderator_only_message: "Mensagem mostrada somente aos moderadores"
|
48
50
|
name: Nome
|
49
|
-
param: Identificador
|
50
51
|
private: Privada
|
51
52
|
presenter_share_only: "Somente apresentador compartilha áudio e vídeo"
|
52
53
|
record: Gravar
|
54
|
+
slug: Identificador
|
53
55
|
voice_bridge: "Voice Bridge"
|
54
56
|
welcome_msg: "Mensagem de boas-vindas"
|
55
57
|
bigbluebutton_server:
|
56
58
|
name: Nome
|
57
|
-
param: Identificador
|
58
59
|
secret: "Chave de segurança"
|
60
|
+
slug: Identificador
|
59
61
|
url: URL
|
60
62
|
version: Versão
|
61
63
|
bigbluebutton_server_config:
|
62
64
|
available_layouts: "Layouts disponíveis"
|
63
65
|
models:
|
64
|
-
bigbluebutton_metadata: "Metadado de Gravação da
|
65
|
-
bigbluebutton_playback_format: "Formato de Reprodução de
|
66
|
-
bigbluebutton_recording: "Gravação de
|
67
|
-
bigbluebutton_room: "Sala de
|
68
|
-
bigbluebutton_server: "Servidor de
|
69
|
-
bigbluebutton_server_config: "Configurações do Servidor de
|
66
|
+
bigbluebutton_metadata: "Metadado de Gravação da Videoconferência"
|
67
|
+
bigbluebutton_playback_format: "Formato de Reprodução de Videoconferência"
|
68
|
+
bigbluebutton_recording: "Gravação de Videoconferência"
|
69
|
+
bigbluebutton_room: "Sala de Videoconferência"
|
70
|
+
bigbluebutton_server: "Servidor de Videoconferência"
|
71
|
+
bigbluebutton_server_config: "Configurações do Servidor de Videoconferência"
|
70
72
|
bigbluebutton_rails:
|
71
73
|
bigbluebutton: BigBlueButton
|
74
|
+
meetings:
|
75
|
+
delete:
|
76
|
+
success: "Seu registro foi removido com sucesso."
|
77
|
+
notice:
|
78
|
+
update:
|
79
|
+
success: "Seu registro foi atualizado com sucesso."
|
80
|
+
destroy:
|
81
|
+
success_with_bbb_error: "O registro foi destruído com sucesso mas não foi removido do servidor de videoconferência (\"%{error}\")"
|
82
|
+
error_destroy: "Não foi possível deletar este registro."
|
83
|
+
running:
|
84
|
+
not_ended: "Este registro não pode ser deletado pois a reunião ainda está acontecendo."
|
72
85
|
metadata:
|
73
86
|
errors:
|
74
87
|
name_format: "pode utilizar apenas letras, números e os símbolos \"-\" ou \"_\", mas apenas letras no início"
|
@@ -78,13 +91,13 @@ pt-br:
|
|
78
91
|
success: "Formato de reprodução atualizado com sucesso."
|
79
92
|
presentation:
|
80
93
|
name: "Reproduzir"
|
81
|
-
tip: "
|
94
|
+
tip: "Reproduzir"
|
82
95
|
presentation_export:
|
83
96
|
name: "Download HTML"
|
84
|
-
tip: "
|
97
|
+
tip: "Download"
|
85
98
|
presentation_video:
|
86
99
|
name: "Download"
|
87
|
-
tip: "
|
100
|
+
tip: "Download"
|
88
101
|
recordings:
|
89
102
|
default:
|
90
103
|
description: "Reunião realizada em %{time} (UTC)"
|
@@ -96,14 +109,14 @@ pt-br:
|
|
96
109
|
no_format: "Não há URL de playback para esta gravação"
|
97
110
|
notice:
|
98
111
|
destroy:
|
99
|
-
success: "
|
100
|
-
success_with_bbb_error: "A gravação foi destruída com sucesso mas não foi removida do servidor de
|
112
|
+
success: "Gravação destruida!"
|
113
|
+
success_with_bbb_error: "A gravação foi destruída com sucesso mas não foi removida do servidor de videoconferência (\"%{error}\")"
|
101
114
|
publish:
|
102
|
-
success: "
|
115
|
+
success: "Gravação publicada!"
|
103
116
|
unpublish:
|
104
|
-
success: "
|
117
|
+
success: "Gravação ocultada!"
|
105
118
|
update:
|
106
|
-
success: "
|
119
|
+
success: "Gravação atualizada!"
|
107
120
|
rooms:
|
108
121
|
default_welcome_msg: "Bem-vindo(a) a <b>%%CONFNAME%%</b>!<br><br>Para compartilhar o seu microfone, clique no botão com um headset (à esquerda da barra superior). Use um headset para ter uma melhor experiência de áudio com menos ruídos.<br>"
|
109
122
|
default_welcome_msg_dial_number: "<br>Você pode discar para esta conferência através de um telefone usando o número \"%%DIALNUM%%\".<br>"
|
@@ -117,16 +130,16 @@ pt-br:
|
|
117
130
|
wrong_params: "Parâmetros errados na sua requisição."
|
118
131
|
generate_dial_number:
|
119
132
|
not_unique: "Desculpe, mas não foi possível gerar um número de discagem único. Você pode tentar novamente ou então atribuir um número manualmente."
|
120
|
-
param_format: "você pode usar apenas letras, números e os símbolos \"-\" ou \"_\" (não no começo ou fim)"
|
121
133
|
server:
|
122
134
|
nil: "Sua sala deve ser associada a um servidor para executar esta operação."
|
135
|
+
slug_format: "você pode usar apenas letras, números e os símbolos \"-\" ou \"_\" (não no começo ou fim)"
|
123
136
|
notice:
|
124
137
|
create:
|
125
|
-
failure: "
|
126
|
-
success: "
|
138
|
+
failure: "Sala não foi criada!"
|
139
|
+
success: "Sala criada!"
|
127
140
|
destroy:
|
128
|
-
success: "
|
129
|
-
success_with_bbb_error: "A sala foi destruída com sucesso mas a reunião não foi finalizada no servidor de
|
141
|
+
success: "Reunião destruída!"
|
142
|
+
success_with_bbb_error: "A sala foi destruída com sucesso mas a reunião não foi finalizada no servidor de videoconferência (\"%{error}\")"
|
130
143
|
end:
|
131
144
|
not_running: "A reunião não pôde ser finalizada pois não está em andamento."
|
132
145
|
success: "A reunião foi finalizada com sucesso."
|
@@ -135,11 +148,11 @@ pt-br:
|
|
135
148
|
generate_dial_number:
|
136
149
|
success: "Um número de discagem único foi gerado e gravado."
|
137
150
|
update:
|
138
|
-
failure: "
|
139
|
-
success: "
|
151
|
+
failure: "Sala não foi atualizada!"
|
152
|
+
success: "Sala atualizada!"
|
140
153
|
servers:
|
141
154
|
errors:
|
142
|
-
|
155
|
+
slug_format: "você pode usar apenas letras, números e os símbolos \"-\" ou \"_\" (não no começo ou fim)"
|
143
156
|
url_format: "deve utilizar o padrão http://<servidor>/bigbluebutton/api"
|
144
157
|
notice:
|
145
158
|
create:
|