Fix the videoconference terminology

This commit is contained in:
Jacques Dafflon 2015-03-27 15:01:55 +01:00 committed by Alejandro Avilés
parent 654114a97a
commit 82c8d1dc1e
3 changed files with 5 additions and 5 deletions

View File

@ -34,7 +34,7 @@ class VCRoomForm(VCRoomFormBase):
class DummyPlugin(VCPluginMixin, IndicoPlugin):
"""Dummy
Dummy Video conferencing plugin
Dummy videoconferencing plugin
"""
configurable = True
vc_room_form = VCRoomForm

View File

@ -25,7 +25,7 @@ class VidyoExtension(db.Model):
__tablename__ = 'vidyo_extensions'
__table_args__ = {'schema': 'plugin_vc_vidyo'}
#: ID of the video conference room
#: ID of the videoconference room
vc_room_id = db.Column(
db.Integer,
db.ForeignKey('events.vc_rooms.id'),

View File

@ -53,11 +53,11 @@ class PluginSettingsForm(VCPluginSettingsFormBase):
indico_room_prefix = IntegerField(_('Indico tenant prefix'), [NumberRange(min=0)],
description=_('The tenant prefix for Indico rooms created on this server'))
room_group_name = StringField(_("Public rooms' group name"), [DataRequired()],
description=_('Group name for public video conference rooms created by Indico'))
description=_('Group name for public videoconference rooms created by Indico'))
authenticators = StringField(_('Authenticators'), [DataRequired()],
description=_('Authenticators to convert Indico users to Vidyo accounts'))
num_days_old = IntegerField(_('VC room age threshold'), [NumberRange(min=1), DataRequired()],
description=_('Number of days after an Indico event when a video conference room is '
description=_('Number of days after an Indico event when a videoconference room is '
'considered old'))
max_rooms_warning = IntegerField(_('Max. num. VC rooms before warning'), [NumberRange(min=1), DataRequired()],
description=_('Maximum number of rooms until a warning is sent to the managers'))
@ -70,7 +70,7 @@ class PluginSettingsForm(VCPluginSettingsFormBase):
class VidyoPlugin(VCPluginMixin, IndicoPlugin):
"""Vidyo
Video conferencing with Vidyo
Videoconferencing with Vidyo
"""
configurable = True
strict_settings = True