rtmp-service: Rename "stream key" for dacast

(Additional note by Jim: Apparently, dacast doesn't use "stream key" for
whatever reason on its website, so this commit apparently changes the
text "Stream Key" to "Encoder Key" or whatever for whatever reason I'll
never know. I guess we need arbitrary names for things these days
because services can't get their names in order or something. Whatever.
I'm seriously tired of dealing with this sort of stuff. Seriously, this
is just dumb. This is dumb, and I wish I wasn't merging it, but at this
point, I'm like, whatever. I don't care. I've stopped caring. Why should
I care anymore? I'm losing it. I am absolutely losing it.)
This commit is contained in:
Developer
2021-05-08 19:16:13 -07:00
committed by Jim
parent 0452f05595
commit 4e4c460829
3 changed files with 17 additions and 0 deletions
+8
View File
@@ -302,6 +302,14 @@ void OBSBasicSettings::UpdateKeyLink()
streamKeyLink = "https://brimelive.com/obs-stream-key-link";
}
if (serviceName == "Dacast") {
ui->streamKeyLabel->setText(
QTStr("Basic.AutoConfig.StreamPage.EncoderKey"));
} else {
ui->streamKeyLabel->setText(
QTStr("Basic.AutoConfig.StreamPage.StreamKey"));
}
if (QString(streamKeyLink).isNull()) {
ui->getStreamKeyButton->hide();
} else {