diff --git a/bigbluebutton-html5/imports/ui/components/actions-bar/component.jsx b/bigbluebutton-html5/imports/ui/components/actions-bar/component.jsx
index 30719a87caccbae8fae8e67a6dc7718f5d061fad..afc3e1a142cd0ff5c0bbbd75973894862677b88b 100755
--- a/bigbluebutton-html5/imports/ui/components/actions-bar/component.jsx
+++ b/bigbluebutton-html5/imports/ui/components/actions-bar/component.jsx
@@ -19,7 +19,7 @@ import Service from './service';
 import Auth from '/imports/ui/services/auth';
 
 const TRANSLATION_SETTINGS = Meteor.settings.public.media.translation;
-const ORIGIN_TRANSLATION_VOLUME = TRANSLATION_SETTINGS.origineVolume;
+const FLOOR_TRANSLATION_VOLUME = TRANSLATION_SETTINGS.floorVolume;
 const TRANSLATOR_SPEAKING_DELAY = TRANSLATION_SETTINGS.translator.speakDetection.delay;
 const TRANSLATOR_SPEAKING_TIMEOUT = TRANSLATION_SETTINGS.translator.speakDetection.timeout;
 const TRANSLATOR_SPEAKING_ENABLED = TRANSLATION_SETTINGS.translator.speakDetection.enabled;
@@ -88,7 +88,7 @@ class ActionsBar extends PureComponent {
             }
           }
           if (result) {
-            mainaudio.volume = ORIGIN_TRANSLATION_VOLUME;
+            mainaudio.volume = FLOOR_TRANSLATION_VOLUME;
             transaudio.volume = 1
           } else {
             mainaudio.volume = 1.0
@@ -157,7 +157,7 @@ class ActionsBar extends PureComponent {
           if (languageExtension === -1) {
             AudioManager.setOrigineOutputVolume(1.0);
           } else {
-            AudioManager.setOrigineOutputVolume(ORIGIN_TRANSLATION_VOLUME);
+            AudioManager.setOrigineOutputVolume(FLOOR_TRANSLATION_VOLUME);
           }
         }
       });
diff --git a/bigbluebutton-html5/private/config/settings.yml b/bigbluebutton-html5/private/config/settings.yml
index 1ea15313d28a40f1d951e8d12531a0da80dded88..297447cb636276a850f439a267d6ec3bda8b6680 100755
--- a/bigbluebutton-html5/private/config/settings.yml
+++ b/bigbluebutton-html5/private/config/settings.yml
@@ -305,7 +305,7 @@ public:
     #Trace sip/audio messages in browser. If not set, default value is false.
     traceSip: false
     translation:
-      origineVolume: 0.2
+      floorVolume: 0.2
       translator:
         speakDetection:
           enabled: true