From 6739c6b2a53db352d5efeb8a9d7c5b13b83b1d29 Mon Sep 17 00:00:00 2001 From: Justin Barabander Date: Wed, 24 Aug 2016 19:49:05 -0400 Subject: [PATCH] Changed button title to Audio Track and modified en.json to reflect this --- lang/en.json | 1 + src/js/control-bar/audio-track-controls/audio-track-button.js | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/lang/en.json b/lang/en.json index afc2f7f9d5..15d95783bf 100644 --- a/lang/en.json +++ b/lang/en.json @@ -21,6 +21,7 @@ "Close Modal Dialog": "Close Modal Dialog", "Descriptions": "Descriptions", "descriptions off": "descriptions off", + "Audio Track": "Audio Track", "You aborted the media playback": "You aborted the media playback", "A network error caused the media download to fail part-way.": "A network error caused the media download to fail part-way.", "The media could not be loaded, either because the server or network failed or because the format is not supported.": "The media could not be loaded, either because the server or network failed or because the format is not supported.", diff --git a/src/js/control-bar/audio-track-controls/audio-track-button.js b/src/js/control-bar/audio-track-controls/audio-track-button.js index af1bb2a835..eaf9d20229 100644 --- a/src/js/control-bar/audio-track-controls/audio-track-button.js +++ b/src/js/control-bar/audio-track-controls/audio-track-button.js @@ -59,6 +59,6 @@ class AudioTrackButton extends TrackButton { return items; } } -AudioTrackButton.prototype.controlText_ = 'Audio'; +AudioTrackButton.prototype.controlText_ = 'Audio Track'; Component.registerComponent('AudioTrackButton', AudioTrackButton); export default AudioTrackButton;