diff --git a/desktop/bar/barwindow.cpp b/desktop/bar/barwindow.cpp index b6474d39..2e99b59f 100644 --- a/desktop/bar/barwindow.cpp +++ b/desktop/bar/barwindow.cpp @@ -53,6 +53,9 @@ struct BarWindowPrivate { bool statusCenterShown = false; tSettings settings; + + bool translucencyEnabled = true; + int translucencyOpacity = 150; }; BarWindow::BarWindow(QWidget* parent) : @@ -140,9 +143,18 @@ BarWindow::BarWindow(QWidget* parent) : connect(&d->settings, &tSettings::settingChanged, this, [ = ](QString key, QVariant value) { if (key == "Appearance/translucent") { + d->translucencyEnabled = value.toBool(); + this->update(); + } + }); + connect(&d->settings, &tSettings::settingChanged, this, [ = ](QString key, QVariant value) { + if (key == "Appearance/opacity") { + d->translucencyOpacity = value.toInt(); this->update(); } }); + d->translucencyEnabled = d->settings.value("Appearance/translucent").toBool(); + d->translucencyOpacity = d->settings.value("Appearance/opacity").toInt(); KeyGrab* statusCenterGrab = new KeyGrab(QKeySequence(Qt::MetaModifier | Qt::Key_Tab)); connect(statusCenterGrab, &KeyGrab::activated, this, [ = ] { @@ -192,7 +204,7 @@ void BarWindow::leaveEvent(QEvent* event) { void BarWindow::paintEvent(QPaintEvent* event) { QColor bgCol = this->palette().color(QPalette::Window); - if (d->settings.value("Appearance/translucent").toBool()) bgCol.setAlpha(150); + if (d->translucencyEnabled) bgCol.setAlpha(d->translucencyOpacity); QPainter painter(this); painter.setPen(Qt::transparent); diff --git a/desktop/defaults.conf b/desktop/defaults.conf index 979e7238..e10e610a 100644 --- a/desktop/defaults.conf +++ b/desktop/defaults.conf @@ -23,3 +23,4 @@ blacklist= [Appearance] translucent=true +opacity=150 diff --git a/plugins/ThemePlugin/settings/themesettingspane.cpp b/plugins/ThemePlugin/settings/themesettingspane.cpp index f06a296e..2f7853a7 100644 --- a/plugins/ThemePlugin/settings/themesettingspane.cpp +++ b/plugins/ThemePlugin/settings/themesettingspane.cpp @@ -28,6 +28,7 @@ #include #include #include +#include struct ThemeSettingsPanePrivate { QSettings* kwinSettings; @@ -84,6 +85,24 @@ ThemeSettingsPane::ThemeSettingsPane() : } }); ui->transparencySwitch->setChecked(d->settings.value("Appearance/translucent").toBool()); + + connect(&d->settings, &tSettings::settingChanged, this, [ = ](QString key, QVariant value) { + if (key == "Appearance/opacity") { + ui->opacitySlider->setValue(value.toInt()); + ui->opacitySliderLabel->setText(value.toString()); + ui->opacitySliderLabel->setText(QString::number( + (value.toFloat())/255*100, + 'g',3)+"%"); + } + }); + ui->opacitySlider->setValue(d->settings.value("Appearance/opacity").toInt()); + + // for some reason the slider label doesn't update early + QTimer::singleShot(100, this, [this](){ + ui->opacitySliderLabel->setText(QString::number( + (d->settings.value("Appearance/opacity").toFloat())/255*100, + 'g',3)+"%"); + }); } ThemeSettingsPane::~ThemeSettingsPane() { @@ -248,3 +267,9 @@ void ThemeSettingsPane::on_setWindowBordersButton_clicked() { void ThemeSettingsPane::on_transparencySwitch_toggled(bool checked) { d->settings.setValue("Appearance/translucent", checked); } + + +void ThemeSettingsPane::on_opacitySlider_valueChanged(int value) +{ + d->settings.setValue("Appearance/opacity", value); +} diff --git a/plugins/ThemePlugin/settings/themesettingspane.h b/plugins/ThemePlugin/settings/themesettingspane.h index 1735a669..f08e137b 100644 --- a/plugins/ThemePlugin/settings/themesettingspane.h +++ b/plugins/ThemePlugin/settings/themesettingspane.h @@ -62,6 +62,7 @@ class ThemeSettingsPane : public StatusCenterPane { void on_widgetThemeBox_currentIndexChanged(int index); void on_setWindowBordersButton_clicked(); void on_transparencySwitch_toggled(bool checked); + void on_opacitySlider_valueChanged(int value); }; #endif // THEMESETTINGSPANE_H diff --git a/plugins/ThemePlugin/settings/themesettingspane.ui b/plugins/ThemePlugin/settings/themesettingspane.ui index 2aedce34..ac4071d1 100644 --- a/plugins/ThemePlugin/settings/themesettingspane.ui +++ b/plugins/ThemePlugin/settings/themesettingspane.ui @@ -48,9 +48,9 @@ 0 - -124 - 613 - 735 + -195 + 715 + 783 @@ -531,6 +531,35 @@ + + + + Bar Opacity + + + + + + + + 0 + 0 + + + + 255 + + + 150 + + + Qt::Horizontal + + + QSlider::NoTicks + + + @@ -544,13 +573,6 @@ - - - - TransparencySwitch - - - @@ -564,6 +586,38 @@ + + + + + 0 + 0 + + + + + 48 + 0 + + + + 100% + + + Qt::PlainText + + + Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter + + + + + + + TransparencySwitch + + + @@ -595,17 +649,17 @@ backButtonClicked() + + tSwitch + QPushButton +
tswitch.h
+
AccentColourPicker QWidget
settings/accentcolourpicker.h
1
- - tSwitch - QPushButton -
tswitch.h
-
tConditionalWidget QWidget diff --git a/plugins/ThemePlugin/translations/aa_DJ.ts b/plugins/ThemePlugin/translations/aa_DJ.ts index dfc2be9b..20d17a5e 100644 --- a/plugins/ThemePlugin/translations/aa_DJ.ts +++ b/plugins/ThemePlugin/translations/aa_DJ.ts @@ -44,7 +44,7 @@ ThemeSettingsPane - + Theme @@ -144,15 +144,25 @@ - + + Bar Opacity + + + + Transparency Effects - + EFFECTS + + + 100% + + Set the appearance of buttons, text boxes and other interface elements diff --git a/plugins/ThemePlugin/translations/aa_ER.ts b/plugins/ThemePlugin/translations/aa_ER.ts index dfc2be9b..20d17a5e 100644 --- a/plugins/ThemePlugin/translations/aa_ER.ts +++ b/plugins/ThemePlugin/translations/aa_ER.ts @@ -44,7 +44,7 @@ ThemeSettingsPane - + Theme @@ -144,15 +144,25 @@ - + + Bar Opacity + + + + Transparency Effects - + EFFECTS + + + 100% + + Set the appearance of buttons, text boxes and other interface elements diff --git a/plugins/ThemePlugin/translations/aa_ET.ts b/plugins/ThemePlugin/translations/aa_ET.ts index 67c56a2f..544f2828 100644 --- a/plugins/ThemePlugin/translations/aa_ET.ts +++ b/plugins/ThemePlugin/translations/aa_ET.ts @@ -44,7 +44,7 @@ ThemeSettingsPane - + Theme @@ -144,15 +144,25 @@ - + + Bar Opacity + + + + Transparency Effects - + EFFECTS + + + 100% + + Set the appearance of buttons, text boxes and other interface elements diff --git a/plugins/ThemePlugin/translations/ab_GE.ts b/plugins/ThemePlugin/translations/ab_GE.ts index dfc2be9b..20d17a5e 100644 --- a/plugins/ThemePlugin/translations/ab_GE.ts +++ b/plugins/ThemePlugin/translations/ab_GE.ts @@ -44,7 +44,7 @@ ThemeSettingsPane - + Theme @@ -144,15 +144,25 @@ - + + Bar Opacity + + + + Transparency Effects - + EFFECTS + + + 100% + + Set the appearance of buttons, text boxes and other interface elements diff --git a/plugins/ThemePlugin/translations/af_ZA.ts b/plugins/ThemePlugin/translations/af_ZA.ts index dfc2be9b..20d17a5e 100644 --- a/plugins/ThemePlugin/translations/af_ZA.ts +++ b/plugins/ThemePlugin/translations/af_ZA.ts @@ -44,7 +44,7 @@ ThemeSettingsPane - + Theme @@ -144,15 +144,25 @@ - + + Bar Opacity + + + + Transparency Effects - + EFFECTS + + + 100% + + Set the appearance of buttons, text boxes and other interface elements diff --git a/plugins/ThemePlugin/translations/am_ET.ts b/plugins/ThemePlugin/translations/am_ET.ts index 67c56a2f..544f2828 100644 --- a/plugins/ThemePlugin/translations/am_ET.ts +++ b/plugins/ThemePlugin/translations/am_ET.ts @@ -44,7 +44,7 @@ ThemeSettingsPane - + Theme @@ -144,15 +144,25 @@ - + + Bar Opacity + + + + Transparency Effects - + EFFECTS + + + 100% + + Set the appearance of buttons, text boxes and other interface elements diff --git a/plugins/ThemePlugin/translations/ar_AE.ts b/plugins/ThemePlugin/translations/ar_AE.ts index dfc2be9b..20d17a5e 100644 --- a/plugins/ThemePlugin/translations/ar_AE.ts +++ b/plugins/ThemePlugin/translations/ar_AE.ts @@ -44,7 +44,7 @@ ThemeSettingsPane - + Theme @@ -144,15 +144,25 @@ - + + Bar Opacity + + + + Transparency Effects - + EFFECTS + + + 100% + + Set the appearance of buttons, text boxes and other interface elements diff --git a/plugins/ThemePlugin/translations/ar_BH.ts b/plugins/ThemePlugin/translations/ar_BH.ts index dfc2be9b..20d17a5e 100644 --- a/plugins/ThemePlugin/translations/ar_BH.ts +++ b/plugins/ThemePlugin/translations/ar_BH.ts @@ -44,7 +44,7 @@ ThemeSettingsPane - + Theme @@ -144,15 +144,25 @@ - + + Bar Opacity + + + + Transparency Effects - + EFFECTS + + + 100% + + Set the appearance of buttons, text boxes and other interface elements diff --git a/plugins/ThemePlugin/translations/ar_DJ.ts b/plugins/ThemePlugin/translations/ar_DJ.ts index dfc2be9b..20d17a5e 100644 --- a/plugins/ThemePlugin/translations/ar_DJ.ts +++ b/plugins/ThemePlugin/translations/ar_DJ.ts @@ -44,7 +44,7 @@ ThemeSettingsPane - + Theme @@ -144,15 +144,25 @@ - + + Bar Opacity + + + + Transparency Effects - + EFFECTS + + + 100% + + Set the appearance of buttons, text boxes and other interface elements diff --git a/plugins/ThemePlugin/translations/ar_DZ.ts b/plugins/ThemePlugin/translations/ar_DZ.ts index 181f9ea3..2b4222e3 100644 --- a/plugins/ThemePlugin/translations/ar_DZ.ts +++ b/plugins/ThemePlugin/translations/ar_DZ.ts @@ -44,7 +44,7 @@ ThemeSettingsPane - + Theme @@ -144,15 +144,25 @@ - + + Bar Opacity + + + + Transparency Effects - + EFFECTS + + + 100% + + Set the appearance of buttons, text boxes and other interface elements diff --git a/plugins/ThemePlugin/translations/ar_EG.ts b/plugins/ThemePlugin/translations/ar_EG.ts index dfc2be9b..20d17a5e 100644 --- a/plugins/ThemePlugin/translations/ar_EG.ts +++ b/plugins/ThemePlugin/translations/ar_EG.ts @@ -44,7 +44,7 @@ ThemeSettingsPane - + Theme @@ -144,15 +144,25 @@ - + + Bar Opacity + + + + Transparency Effects - + EFFECTS + + + 100% + + Set the appearance of buttons, text boxes and other interface elements diff --git a/plugins/ThemePlugin/translations/ar_ER.ts b/plugins/ThemePlugin/translations/ar_ER.ts index dfc2be9b..20d17a5e 100644 --- a/plugins/ThemePlugin/translations/ar_ER.ts +++ b/plugins/ThemePlugin/translations/ar_ER.ts @@ -44,7 +44,7 @@ ThemeSettingsPane - + Theme @@ -144,15 +144,25 @@ - + + Bar Opacity + + + + Transparency Effects - + EFFECTS + + + 100% + + Set the appearance of buttons, text boxes and other interface elements diff --git a/plugins/ThemePlugin/translations/ar_IQ.ts b/plugins/ThemePlugin/translations/ar_IQ.ts index dfc2be9b..20d17a5e 100644 --- a/plugins/ThemePlugin/translations/ar_IQ.ts +++ b/plugins/ThemePlugin/translations/ar_IQ.ts @@ -44,7 +44,7 @@ ThemeSettingsPane - + Theme @@ -144,15 +144,25 @@ - + + Bar Opacity + + + + Transparency Effects - + EFFECTS + + + 100% + + Set the appearance of buttons, text boxes and other interface elements diff --git a/plugins/ThemePlugin/translations/ar_JO.ts b/plugins/ThemePlugin/translations/ar_JO.ts index dfc2be9b..20d17a5e 100644 --- a/plugins/ThemePlugin/translations/ar_JO.ts +++ b/plugins/ThemePlugin/translations/ar_JO.ts @@ -44,7 +44,7 @@ ThemeSettingsPane - + Theme @@ -144,15 +144,25 @@ - + + Bar Opacity + + + + Transparency Effects - + EFFECTS + + + 100% + + Set the appearance of buttons, text boxes and other interface elements diff --git a/plugins/ThemePlugin/translations/ar_KM.ts b/plugins/ThemePlugin/translations/ar_KM.ts index 3ec7042b..efffddb4 100644 --- a/plugins/ThemePlugin/translations/ar_KM.ts +++ b/plugins/ThemePlugin/translations/ar_KM.ts @@ -44,7 +44,7 @@ ThemeSettingsPane - + Theme @@ -144,15 +144,25 @@ - + + Bar Opacity + + + + Transparency Effects - + EFFECTS + + + 100% + + Set the appearance of buttons, text boxes and other interface elements diff --git a/plugins/ThemePlugin/translations/ar_KW.ts b/plugins/ThemePlugin/translations/ar_KW.ts index fbe65eda..994262e6 100644 --- a/plugins/ThemePlugin/translations/ar_KW.ts +++ b/plugins/ThemePlugin/translations/ar_KW.ts @@ -44,7 +44,7 @@ ThemeSettingsPane - + Theme @@ -144,15 +144,25 @@ - + + Bar Opacity + + + + Transparency Effects - + EFFECTS + + + 100% + + Set the appearance of buttons, text boxes and other interface elements diff --git a/plugins/ThemePlugin/translations/ar_LB.ts b/plugins/ThemePlugin/translations/ar_LB.ts index 6624c331..86d1e811 100644 --- a/plugins/ThemePlugin/translations/ar_LB.ts +++ b/plugins/ThemePlugin/translations/ar_LB.ts @@ -44,7 +44,7 @@ ThemeSettingsPane - + Theme @@ -144,15 +144,25 @@ - + + Bar Opacity + + + + Transparency Effects - + EFFECTS + + + 100% + + Set the appearance of buttons, text boxes and other interface elements diff --git a/plugins/ThemePlugin/translations/ar_LY.ts b/plugins/ThemePlugin/translations/ar_LY.ts index dfc2be9b..20d17a5e 100644 --- a/plugins/ThemePlugin/translations/ar_LY.ts +++ b/plugins/ThemePlugin/translations/ar_LY.ts @@ -44,7 +44,7 @@ ThemeSettingsPane - + Theme @@ -144,15 +144,25 @@ - + + Bar Opacity + + + + Transparency Effects - + EFFECTS + + + 100% + + Set the appearance of buttons, text boxes and other interface elements diff --git a/plugins/ThemePlugin/translations/ar_MA.ts b/plugins/ThemePlugin/translations/ar_MA.ts index dfc2be9b..20d17a5e 100644 --- a/plugins/ThemePlugin/translations/ar_MA.ts +++ b/plugins/ThemePlugin/translations/ar_MA.ts @@ -44,7 +44,7 @@ ThemeSettingsPane - + Theme @@ -144,15 +144,25 @@ - + + Bar Opacity + + + + Transparency Effects - + EFFECTS + + + 100% + + Set the appearance of buttons, text boxes and other interface elements diff --git a/plugins/ThemePlugin/translations/ar_MR.ts b/plugins/ThemePlugin/translations/ar_MR.ts index 3e1fae0d..aaa14068 100644 --- a/plugins/ThemePlugin/translations/ar_MR.ts +++ b/plugins/ThemePlugin/translations/ar_MR.ts @@ -44,7 +44,7 @@ ThemeSettingsPane - + Theme @@ -144,15 +144,25 @@ - + + Bar Opacity + + + + Transparency Effects - + EFFECTS + + + 100% + + Set the appearance of buttons, text boxes and other interface elements diff --git a/plugins/ThemePlugin/translations/ar_OM.ts b/plugins/ThemePlugin/translations/ar_OM.ts index 32932cbf..d4e3b960 100644 --- a/plugins/ThemePlugin/translations/ar_OM.ts +++ b/plugins/ThemePlugin/translations/ar_OM.ts @@ -44,7 +44,7 @@ ThemeSettingsPane - + Theme @@ -144,15 +144,25 @@ - + + Bar Opacity + + + + Transparency Effects - + EFFECTS + + + 100% + + Set the appearance of buttons, text boxes and other interface elements diff --git a/plugins/ThemePlugin/translations/ar_PS.ts b/plugins/ThemePlugin/translations/ar_PS.ts index 4c6e4750..d3860d44 100644 --- a/plugins/ThemePlugin/translations/ar_PS.ts +++ b/plugins/ThemePlugin/translations/ar_PS.ts @@ -44,7 +44,7 @@ ThemeSettingsPane - + Theme @@ -144,15 +144,25 @@ - + + Bar Opacity + + + + Transparency Effects - + EFFECTS + + + 100% + + Set the appearance of buttons, text boxes and other interface elements diff --git a/plugins/ThemePlugin/translations/ar_QA.ts b/plugins/ThemePlugin/translations/ar_QA.ts index dfc2be9b..20d17a5e 100644 --- a/plugins/ThemePlugin/translations/ar_QA.ts +++ b/plugins/ThemePlugin/translations/ar_QA.ts @@ -44,7 +44,7 @@ ThemeSettingsPane - + Theme @@ -144,15 +144,25 @@ - + + Bar Opacity + + + + Transparency Effects - + EFFECTS + + + 100% + + Set the appearance of buttons, text boxes and other interface elements diff --git a/plugins/ThemePlugin/translations/ar_SA.ts b/plugins/ThemePlugin/translations/ar_SA.ts index 235d43bd..77f071d0 100644 --- a/plugins/ThemePlugin/translations/ar_SA.ts +++ b/plugins/ThemePlugin/translations/ar_SA.ts @@ -44,7 +44,7 @@ ThemeSettingsPane - + Theme @@ -144,15 +144,25 @@ - + + Bar Opacity + + + + Transparency Effects - + EFFECTS + + + 100% + + Set the appearance of buttons, text boxes and other interface elements diff --git a/plugins/ThemePlugin/translations/ar_SD.ts b/plugins/ThemePlugin/translations/ar_SD.ts index ab7d4250..df15325f 100644 --- a/plugins/ThemePlugin/translations/ar_SD.ts +++ b/plugins/ThemePlugin/translations/ar_SD.ts @@ -44,7 +44,7 @@ ThemeSettingsPane - + Theme @@ -144,15 +144,25 @@ - + + Bar Opacity + + + + Transparency Effects - + EFFECTS + + + 100% + + Set the appearance of buttons, text boxes and other interface elements diff --git a/plugins/ThemePlugin/translations/ar_SO.ts b/plugins/ThemePlugin/translations/ar_SO.ts index 83c4f5f9..d2f9f704 100644 --- a/plugins/ThemePlugin/translations/ar_SO.ts +++ b/plugins/ThemePlugin/translations/ar_SO.ts @@ -44,7 +44,7 @@ ThemeSettingsPane - + Theme @@ -144,15 +144,25 @@ - + + Bar Opacity + + + + Transparency Effects - + EFFECTS + + + 100% + + Set the appearance of buttons, text boxes and other interface elements diff --git a/plugins/ThemePlugin/translations/ar_SY.ts b/plugins/ThemePlugin/translations/ar_SY.ts index dfc2be9b..20d17a5e 100644 --- a/plugins/ThemePlugin/translations/ar_SY.ts +++ b/plugins/ThemePlugin/translations/ar_SY.ts @@ -44,7 +44,7 @@ ThemeSettingsPane - + Theme @@ -144,15 +144,25 @@ - + + Bar Opacity + + + + Transparency Effects - + EFFECTS + + + 100% + + Set the appearance of buttons, text boxes and other interface elements diff --git a/plugins/ThemePlugin/translations/ar_TD.ts b/plugins/ThemePlugin/translations/ar_TD.ts index dfc2be9b..20d17a5e 100644 --- a/plugins/ThemePlugin/translations/ar_TD.ts +++ b/plugins/ThemePlugin/translations/ar_TD.ts @@ -44,7 +44,7 @@ ThemeSettingsPane - + Theme @@ -144,15 +144,25 @@ - + + Bar Opacity + + + + Transparency Effects - + EFFECTS + + + 100% + + Set the appearance of buttons, text boxes and other interface elements diff --git a/plugins/ThemePlugin/translations/ar_TN.ts b/plugins/ThemePlugin/translations/ar_TN.ts index d249ac70..099665c8 100644 --- a/plugins/ThemePlugin/translations/ar_TN.ts +++ b/plugins/ThemePlugin/translations/ar_TN.ts @@ -44,7 +44,7 @@ ThemeSettingsPane - + Theme @@ -144,15 +144,25 @@ - + + Bar Opacity + + + + Transparency Effects - + EFFECTS + + + 100% + + Set the appearance of buttons, text boxes and other interface elements diff --git a/plugins/ThemePlugin/translations/ar_TZ.ts b/plugins/ThemePlugin/translations/ar_TZ.ts index dfc2be9b..20d17a5e 100644 --- a/plugins/ThemePlugin/translations/ar_TZ.ts +++ b/plugins/ThemePlugin/translations/ar_TZ.ts @@ -44,7 +44,7 @@ ThemeSettingsPane - + Theme @@ -144,15 +144,25 @@ - + + Bar Opacity + + + + Transparency Effects - + EFFECTS + + + 100% + + Set the appearance of buttons, text boxes and other interface elements diff --git a/plugins/ThemePlugin/translations/ar_YE.ts b/plugins/ThemePlugin/translations/ar_YE.ts index dfc2be9b..20d17a5e 100644 --- a/plugins/ThemePlugin/translations/ar_YE.ts +++ b/plugins/ThemePlugin/translations/ar_YE.ts @@ -44,7 +44,7 @@ ThemeSettingsPane - + Theme @@ -144,15 +144,25 @@ - + + Bar Opacity + + + + Transparency Effects - + EFFECTS + + + 100% + + Set the appearance of buttons, text boxes and other interface elements diff --git a/plugins/ThemePlugin/translations/as_IN.ts b/plugins/ThemePlugin/translations/as_IN.ts index b21cccb8..332b08a5 100644 --- a/plugins/ThemePlugin/translations/as_IN.ts +++ b/plugins/ThemePlugin/translations/as_IN.ts @@ -44,7 +44,7 @@ ThemeSettingsPane - + Theme @@ -144,15 +144,25 @@ - + + Bar Opacity + + + + Transparency Effects - + EFFECTS + + + 100% + + Set the appearance of buttons, text boxes and other interface elements diff --git a/plugins/ThemePlugin/translations/au_AU.ts b/plugins/ThemePlugin/translations/au_AU.ts index dfc2be9b..20d17a5e 100644 --- a/plugins/ThemePlugin/translations/au_AU.ts +++ b/plugins/ThemePlugin/translations/au_AU.ts @@ -44,7 +44,7 @@ ThemeSettingsPane - + Theme @@ -144,15 +144,25 @@ - + + Bar Opacity + + + + Transparency Effects - + EFFECTS + + + 100% + + Set the appearance of buttons, text boxes and other interface elements diff --git a/plugins/ThemePlugin/translations/az_AZ.ts b/plugins/ThemePlugin/translations/az_AZ.ts index 798bf404..b455de69 100644 --- a/plugins/ThemePlugin/translations/az_AZ.ts +++ b/plugins/ThemePlugin/translations/az_AZ.ts @@ -44,7 +44,7 @@ ThemeSettingsPane - + Theme @@ -144,15 +144,25 @@ - + + Bar Opacity + + + + Transparency Effects - + EFFECTS + + + 100% + + Set the appearance of buttons, text boxes and other interface elements diff --git a/plugins/ThemePlugin/translations/be_BY.ts b/plugins/ThemePlugin/translations/be_BY.ts index dfc2be9b..20d17a5e 100644 --- a/plugins/ThemePlugin/translations/be_BY.ts +++ b/plugins/ThemePlugin/translations/be_BY.ts @@ -44,7 +44,7 @@ ThemeSettingsPane - + Theme @@ -144,15 +144,25 @@ - + + Bar Opacity + + + + Transparency Effects - + EFFECTS + + + 100% + + Set the appearance of buttons, text boxes and other interface elements diff --git a/plugins/ThemePlugin/translations/bg_BG.ts b/plugins/ThemePlugin/translations/bg_BG.ts index db4598b0..6aff6c51 100644 --- a/plugins/ThemePlugin/translations/bg_BG.ts +++ b/plugins/ThemePlugin/translations/bg_BG.ts @@ -44,7 +44,7 @@ ThemeSettingsPane - + Theme @@ -144,15 +144,25 @@ - + + Bar Opacity + + + + Transparency Effects - + EFFECTS + + + 100% + + Set the appearance of buttons, text boxes and other interface elements diff --git a/plugins/ThemePlugin/translations/bi_VU.ts b/plugins/ThemePlugin/translations/bi_VU.ts index dfc2be9b..20d17a5e 100644 --- a/plugins/ThemePlugin/translations/bi_VU.ts +++ b/plugins/ThemePlugin/translations/bi_VU.ts @@ -44,7 +44,7 @@ ThemeSettingsPane - + Theme @@ -144,15 +144,25 @@ - + + Bar Opacity + + + + Transparency Effects - + EFFECTS + + + 100% + + Set the appearance of buttons, text boxes and other interface elements diff --git a/plugins/ThemePlugin/translations/bn_BD.ts b/plugins/ThemePlugin/translations/bn_BD.ts index dfc2be9b..20d17a5e 100644 --- a/plugins/ThemePlugin/translations/bn_BD.ts +++ b/plugins/ThemePlugin/translations/bn_BD.ts @@ -44,7 +44,7 @@ ThemeSettingsPane - + Theme @@ -144,15 +144,25 @@ - + + Bar Opacity + + + + Transparency Effects - + EFFECTS + + + 100% + + Set the appearance of buttons, text boxes and other interface elements diff --git a/plugins/ThemePlugin/translations/bs_BA.ts b/plugins/ThemePlugin/translations/bs_BA.ts index ea4dea67..74d63b15 100644 --- a/plugins/ThemePlugin/translations/bs_BA.ts +++ b/plugins/ThemePlugin/translations/bs_BA.ts @@ -44,7 +44,7 @@ ThemeSettingsPane - + Theme @@ -144,15 +144,25 @@ - + + Bar Opacity + + + + Transparency Effects - + EFFECTS + + + 100% + + Set the appearance of buttons, text boxes and other interface elements diff --git a/plugins/ThemePlugin/translations/ca_AD.ts b/plugins/ThemePlugin/translations/ca_AD.ts index dfc2be9b..20d17a5e 100644 --- a/plugins/ThemePlugin/translations/ca_AD.ts +++ b/plugins/ThemePlugin/translations/ca_AD.ts @@ -44,7 +44,7 @@ ThemeSettingsPane - + Theme @@ -144,15 +144,25 @@ - + + Bar Opacity + + + + Transparency Effects - + EFFECTS + + + 100% + + Set the appearance of buttons, text boxes and other interface elements diff --git a/plugins/ThemePlugin/translations/cr_CA.ts b/plugins/ThemePlugin/translations/cr_CA.ts index 63501e72..b3329ace 100644 --- a/plugins/ThemePlugin/translations/cr_CA.ts +++ b/plugins/ThemePlugin/translations/cr_CA.ts @@ -44,7 +44,7 @@ ThemeSettingsPane - + Theme @@ -144,15 +144,25 @@ - + + Bar Opacity + + + + Transparency Effects - + EFFECTS + + + 100% + + Set the appearance of buttons, text boxes and other interface elements diff --git a/plugins/ThemePlugin/translations/cs_CZ.ts b/plugins/ThemePlugin/translations/cs_CZ.ts index dfc2be9b..20d17a5e 100644 --- a/plugins/ThemePlugin/translations/cs_CZ.ts +++ b/plugins/ThemePlugin/translations/cs_CZ.ts @@ -44,7 +44,7 @@ ThemeSettingsPane - + Theme @@ -144,15 +144,25 @@ - + + Bar Opacity + + + + Transparency Effects - + EFFECTS + + + 100% + + Set the appearance of buttons, text boxes and other interface elements diff --git a/plugins/ThemePlugin/translations/cy_GB.ts b/plugins/ThemePlugin/translations/cy_GB.ts index dfc2be9b..20d17a5e 100644 --- a/plugins/ThemePlugin/translations/cy_GB.ts +++ b/plugins/ThemePlugin/translations/cy_GB.ts @@ -44,7 +44,7 @@ ThemeSettingsPane - + Theme @@ -144,15 +144,25 @@ - + + Bar Opacity + + + + Transparency Effects - + EFFECTS + + + 100% + + Set the appearance of buttons, text boxes and other interface elements diff --git a/plugins/ThemePlugin/translations/da_DK.ts b/plugins/ThemePlugin/translations/da_DK.ts index dfc2be9b..20d17a5e 100644 --- a/plugins/ThemePlugin/translations/da_DK.ts +++ b/plugins/ThemePlugin/translations/da_DK.ts @@ -44,7 +44,7 @@ ThemeSettingsPane - + Theme @@ -144,15 +144,25 @@ - + + Bar Opacity + + + + Transparency Effects - + EFFECTS + + + 100% + + Set the appearance of buttons, text boxes and other interface elements diff --git a/plugins/ThemePlugin/translations/de_AT.ts b/plugins/ThemePlugin/translations/de_AT.ts index dfc2be9b..20d17a5e 100644 --- a/plugins/ThemePlugin/translations/de_AT.ts +++ b/plugins/ThemePlugin/translations/de_AT.ts @@ -44,7 +44,7 @@ ThemeSettingsPane - + Theme @@ -144,15 +144,25 @@ - + + Bar Opacity + + + + Transparency Effects - + EFFECTS + + + 100% + + Set the appearance of buttons, text boxes and other interface elements diff --git a/plugins/ThemePlugin/translations/de_CH.ts b/plugins/ThemePlugin/translations/de_CH.ts index dfc2be9b..20d17a5e 100644 --- a/plugins/ThemePlugin/translations/de_CH.ts +++ b/plugins/ThemePlugin/translations/de_CH.ts @@ -44,7 +44,7 @@ ThemeSettingsPane - + Theme @@ -144,15 +144,25 @@ - + + Bar Opacity + + + + Transparency Effects - + EFFECTS + + + 100% + + Set the appearance of buttons, text boxes and other interface elements diff --git a/plugins/ThemePlugin/translations/de_DE.ts b/plugins/ThemePlugin/translations/de_DE.ts index c01caed4..c8318c7c 100644 --- a/plugins/ThemePlugin/translations/de_DE.ts +++ b/plugins/ThemePlugin/translations/de_DE.ts @@ -44,7 +44,7 @@ ThemeSettingsPane - + Theme @@ -144,15 +144,25 @@ - + + Bar Opacity + + + + Transparency Effects - + EFFECTS + + + 100% + + Set the appearance of buttons, text boxes and other interface elements diff --git a/plugins/ThemePlugin/translations/dv_MV.ts b/plugins/ThemePlugin/translations/dv_MV.ts index dfc2be9b..20d17a5e 100644 --- a/plugins/ThemePlugin/translations/dv_MV.ts +++ b/plugins/ThemePlugin/translations/dv_MV.ts @@ -44,7 +44,7 @@ ThemeSettingsPane - + Theme @@ -144,15 +144,25 @@ - + + Bar Opacity + + + + Transparency Effects - + EFFECTS + + + 100% + + Set the appearance of buttons, text boxes and other interface elements diff --git a/plugins/ThemePlugin/translations/dz_BT.ts b/plugins/ThemePlugin/translations/dz_BT.ts index dfc2be9b..20d17a5e 100644 --- a/plugins/ThemePlugin/translations/dz_BT.ts +++ b/plugins/ThemePlugin/translations/dz_BT.ts @@ -44,7 +44,7 @@ ThemeSettingsPane - + Theme @@ -144,15 +144,25 @@ - + + Bar Opacity + + + + Transparency Effects - + EFFECTS + + + 100% + + Set the appearance of buttons, text boxes and other interface elements diff --git a/plugins/ThemePlugin/translations/el_GR.ts b/plugins/ThemePlugin/translations/el_GR.ts index dfc2be9b..20d17a5e 100644 --- a/plugins/ThemePlugin/translations/el_GR.ts +++ b/plugins/ThemePlugin/translations/el_GR.ts @@ -44,7 +44,7 @@ ThemeSettingsPane - + Theme @@ -144,15 +144,25 @@ - + + Bar Opacity + + + + Transparency Effects - + EFFECTS + + + 100% + + Set the appearance of buttons, text boxes and other interface elements diff --git a/plugins/ThemePlugin/translations/en_AU.ts b/plugins/ThemePlugin/translations/en_AU.ts index dfc2be9b..20d17a5e 100644 --- a/plugins/ThemePlugin/translations/en_AU.ts +++ b/plugins/ThemePlugin/translations/en_AU.ts @@ -44,7 +44,7 @@ ThemeSettingsPane - + Theme @@ -144,15 +144,25 @@ - + + Bar Opacity + + + + Transparency Effects - + EFFECTS + + + 100% + + Set the appearance of buttons, text boxes and other interface elements diff --git a/plugins/ThemePlugin/translations/en_CA.ts b/plugins/ThemePlugin/translations/en_CA.ts index 63501e72..b3329ace 100644 --- a/plugins/ThemePlugin/translations/en_CA.ts +++ b/plugins/ThemePlugin/translations/en_CA.ts @@ -44,7 +44,7 @@ ThemeSettingsPane - + Theme @@ -144,15 +144,25 @@ - + + Bar Opacity + + + + Transparency Effects - + EFFECTS + + + 100% + + Set the appearance of buttons, text boxes and other interface elements diff --git a/plugins/ThemePlugin/translations/en_GB.ts b/plugins/ThemePlugin/translations/en_GB.ts index dfc2be9b..20d17a5e 100644 --- a/plugins/ThemePlugin/translations/en_GB.ts +++ b/plugins/ThemePlugin/translations/en_GB.ts @@ -44,7 +44,7 @@ ThemeSettingsPane - + Theme @@ -144,15 +144,25 @@ - + + Bar Opacity + + + + Transparency Effects - + EFFECTS + + + 100% + + Set the appearance of buttons, text boxes and other interface elements diff --git a/plugins/ThemePlugin/translations/en_NZ.ts b/plugins/ThemePlugin/translations/en_NZ.ts index dfc2be9b..20d17a5e 100644 --- a/plugins/ThemePlugin/translations/en_NZ.ts +++ b/plugins/ThemePlugin/translations/en_NZ.ts @@ -44,7 +44,7 @@ ThemeSettingsPane - + Theme @@ -144,15 +144,25 @@ - + + Bar Opacity + + + + Transparency Effects - + EFFECTS + + + 100% + + Set the appearance of buttons, text boxes and other interface elements diff --git a/plugins/ThemePlugin/translations/en_US.ts b/plugins/ThemePlugin/translations/en_US.ts index dfc2be9b..20d17a5e 100644 --- a/plugins/ThemePlugin/translations/en_US.ts +++ b/plugins/ThemePlugin/translations/en_US.ts @@ -44,7 +44,7 @@ ThemeSettingsPane - + Theme @@ -144,15 +144,25 @@ - + + Bar Opacity + + + + Transparency Effects - + EFFECTS + + + 100% + + Set the appearance of buttons, text boxes and other interface elements diff --git a/plugins/ThemePlugin/translations/eo.ts b/plugins/ThemePlugin/translations/eo.ts index dfc2be9b..20d17a5e 100644 --- a/plugins/ThemePlugin/translations/eo.ts +++ b/plugins/ThemePlugin/translations/eo.ts @@ -44,7 +44,7 @@ ThemeSettingsPane - + Theme @@ -144,15 +144,25 @@ - + + Bar Opacity + + + + Transparency Effects - + EFFECTS + + + 100% + + Set the appearance of buttons, text boxes and other interface elements diff --git a/plugins/ThemePlugin/translations/es_AR.ts b/plugins/ThemePlugin/translations/es_AR.ts index 1ad46345..c316cedb 100644 --- a/plugins/ThemePlugin/translations/es_AR.ts +++ b/plugins/ThemePlugin/translations/es_AR.ts @@ -44,7 +44,7 @@ ThemeSettingsPane - + Theme @@ -144,15 +144,25 @@ - + + Bar Opacity + + + + Transparency Effects - + EFFECTS + + + 100% + + Set the appearance of buttons, text boxes and other interface elements diff --git a/plugins/ThemePlugin/translations/es_BO.ts b/plugins/ThemePlugin/translations/es_BO.ts index b1fb9312..845be40c 100644 --- a/plugins/ThemePlugin/translations/es_BO.ts +++ b/plugins/ThemePlugin/translations/es_BO.ts @@ -44,7 +44,7 @@ ThemeSettingsPane - + Theme @@ -144,15 +144,25 @@ - + + Bar Opacity + + + + Transparency Effects - + EFFECTS + + + 100% + + Set the appearance of buttons, text boxes and other interface elements diff --git a/plugins/ThemePlugin/translations/es_CL.ts b/plugins/ThemePlugin/translations/es_CL.ts index dfc2be9b..20d17a5e 100644 --- a/plugins/ThemePlugin/translations/es_CL.ts +++ b/plugins/ThemePlugin/translations/es_CL.ts @@ -44,7 +44,7 @@ ThemeSettingsPane - + Theme @@ -144,15 +144,25 @@ - + + Bar Opacity + + + + Transparency Effects - + EFFECTS + + + 100% + + Set the appearance of buttons, text boxes and other interface elements diff --git a/plugins/ThemePlugin/translations/es_CO.ts b/plugins/ThemePlugin/translations/es_CO.ts index 0f04dc52..c0cf9338 100644 --- a/plugins/ThemePlugin/translations/es_CO.ts +++ b/plugins/ThemePlugin/translations/es_CO.ts @@ -44,7 +44,7 @@ ThemeSettingsPane - + Theme @@ -144,15 +144,25 @@ - + + Bar Opacity + + + + Transparency Effects - + EFFECTS + + + 100% + + Set the appearance of buttons, text boxes and other interface elements diff --git a/plugins/ThemePlugin/translations/es_DO.ts b/plugins/ThemePlugin/translations/es_DO.ts index dfc2be9b..20d17a5e 100644 --- a/plugins/ThemePlugin/translations/es_DO.ts +++ b/plugins/ThemePlugin/translations/es_DO.ts @@ -44,7 +44,7 @@ ThemeSettingsPane - + Theme @@ -144,15 +144,25 @@ - + + Bar Opacity + + + + Transparency Effects - + EFFECTS + + + 100% + + Set the appearance of buttons, text boxes and other interface elements diff --git a/plugins/ThemePlugin/translations/es_EC.ts b/plugins/ThemePlugin/translations/es_EC.ts index dfc2be9b..20d17a5e 100644 --- a/plugins/ThemePlugin/translations/es_EC.ts +++ b/plugins/ThemePlugin/translations/es_EC.ts @@ -44,7 +44,7 @@ ThemeSettingsPane - + Theme @@ -144,15 +144,25 @@ - + + Bar Opacity + + + + Transparency Effects - + EFFECTS + + + 100% + + Set the appearance of buttons, text boxes and other interface elements diff --git a/plugins/ThemePlugin/translations/es_ES.ts b/plugins/ThemePlugin/translations/es_ES.ts index 47789525..ac6c2822 100644 --- a/plugins/ThemePlugin/translations/es_ES.ts +++ b/plugins/ThemePlugin/translations/es_ES.ts @@ -44,7 +44,7 @@ ThemeSettingsPane - + Theme @@ -144,15 +144,25 @@ - + + Bar Opacity + + + + Transparency Effects - + EFFECTS + + + 100% + + Set the appearance of buttons, text boxes and other interface elements diff --git a/plugins/ThemePlugin/translations/es_GT.ts b/plugins/ThemePlugin/translations/es_GT.ts index dfc2be9b..20d17a5e 100644 --- a/plugins/ThemePlugin/translations/es_GT.ts +++ b/plugins/ThemePlugin/translations/es_GT.ts @@ -44,7 +44,7 @@ ThemeSettingsPane - + Theme @@ -144,15 +144,25 @@ - + + Bar Opacity + + + + Transparency Effects - + EFFECTS + + + 100% + + Set the appearance of buttons, text boxes and other interface elements diff --git a/plugins/ThemePlugin/translations/es_HN.ts b/plugins/ThemePlugin/translations/es_HN.ts index dfc2be9b..20d17a5e 100644 --- a/plugins/ThemePlugin/translations/es_HN.ts +++ b/plugins/ThemePlugin/translations/es_HN.ts @@ -44,7 +44,7 @@ ThemeSettingsPane - + Theme @@ -144,15 +144,25 @@ - + + Bar Opacity + + + + Transparency Effects - + EFFECTS + + + 100% + + Set the appearance of buttons, text boxes and other interface elements diff --git a/plugins/ThemePlugin/translations/es_MX.ts b/plugins/ThemePlugin/translations/es_MX.ts index dfc2be9b..20d17a5e 100644 --- a/plugins/ThemePlugin/translations/es_MX.ts +++ b/plugins/ThemePlugin/translations/es_MX.ts @@ -44,7 +44,7 @@ ThemeSettingsPane - + Theme @@ -144,15 +144,25 @@ - + + Bar Opacity + + + + Transparency Effects - + EFFECTS + + + 100% + + Set the appearance of buttons, text boxes and other interface elements diff --git a/plugins/ThemePlugin/translations/es_NI.ts b/plugins/ThemePlugin/translations/es_NI.ts index dfc2be9b..20d17a5e 100644 --- a/plugins/ThemePlugin/translations/es_NI.ts +++ b/plugins/ThemePlugin/translations/es_NI.ts @@ -44,7 +44,7 @@ ThemeSettingsPane - + Theme @@ -144,15 +144,25 @@ - + + Bar Opacity + + + + Transparency Effects - + EFFECTS + + + 100% + + Set the appearance of buttons, text boxes and other interface elements diff --git a/plugins/ThemePlugin/translations/es_PA.ts b/plugins/ThemePlugin/translations/es_PA.ts index cd0320ea..49a4f0e9 100644 --- a/plugins/ThemePlugin/translations/es_PA.ts +++ b/plugins/ThemePlugin/translations/es_PA.ts @@ -44,7 +44,7 @@ ThemeSettingsPane - + Theme @@ -144,15 +144,25 @@ - + + Bar Opacity + + + + Transparency Effects - + EFFECTS + + + 100% + + Set the appearance of buttons, text boxes and other interface elements diff --git a/plugins/ThemePlugin/translations/es_PE.ts b/plugins/ThemePlugin/translations/es_PE.ts index dfc2be9b..20d17a5e 100644 --- a/plugins/ThemePlugin/translations/es_PE.ts +++ b/plugins/ThemePlugin/translations/es_PE.ts @@ -44,7 +44,7 @@ ThemeSettingsPane - + Theme @@ -144,15 +144,25 @@ - + + Bar Opacity + + + + Transparency Effects - + EFFECTS + + + 100% + + Set the appearance of buttons, text boxes and other interface elements diff --git a/plugins/ThemePlugin/translations/es_PY.ts b/plugins/ThemePlugin/translations/es_PY.ts index dfc2be9b..20d17a5e 100644 --- a/plugins/ThemePlugin/translations/es_PY.ts +++ b/plugins/ThemePlugin/translations/es_PY.ts @@ -44,7 +44,7 @@ ThemeSettingsPane - + Theme @@ -144,15 +144,25 @@ - + + Bar Opacity + + + + Transparency Effects - + EFFECTS + + + 100% + + Set the appearance of buttons, text boxes and other interface elements diff --git a/plugins/ThemePlugin/translations/es_SV.ts b/plugins/ThemePlugin/translations/es_SV.ts index bca2463e..d6f8d8d0 100644 --- a/plugins/ThemePlugin/translations/es_SV.ts +++ b/plugins/ThemePlugin/translations/es_SV.ts @@ -44,7 +44,7 @@ ThemeSettingsPane - + Theme @@ -144,15 +144,25 @@ - + + Bar Opacity + + + + Transparency Effects - + EFFECTS + + + 100% + + Set the appearance of buttons, text boxes and other interface elements diff --git a/plugins/ThemePlugin/translations/es_UY.ts b/plugins/ThemePlugin/translations/es_UY.ts index dfc2be9b..20d17a5e 100644 --- a/plugins/ThemePlugin/translations/es_UY.ts +++ b/plugins/ThemePlugin/translations/es_UY.ts @@ -44,7 +44,7 @@ ThemeSettingsPane - + Theme @@ -144,15 +144,25 @@ - + + Bar Opacity + + + + Transparency Effects - + EFFECTS + + + 100% + + Set the appearance of buttons, text boxes and other interface elements diff --git a/plugins/ThemePlugin/translations/es_VE.ts b/plugins/ThemePlugin/translations/es_VE.ts index c17173cb..fc75dfa1 100644 --- a/plugins/ThemePlugin/translations/es_VE.ts +++ b/plugins/ThemePlugin/translations/es_VE.ts @@ -44,7 +44,7 @@ ThemeSettingsPane - + Theme @@ -144,15 +144,25 @@ - + + Bar Opacity + + + + Transparency Effects - + EFFECTS + + + 100% + + Set the appearance of buttons, text boxes and other interface elements diff --git a/plugins/ThemePlugin/translations/et_EE.ts b/plugins/ThemePlugin/translations/et_EE.ts index ab3552c4..855aa5cf 100644 --- a/plugins/ThemePlugin/translations/et_EE.ts +++ b/plugins/ThemePlugin/translations/et_EE.ts @@ -44,7 +44,7 @@ ThemeSettingsPane - + Theme @@ -144,15 +144,25 @@ - + + Bar Opacity + + + + Transparency Effects - + EFFECTS + + + 100% + + Set the appearance of buttons, text boxes and other interface elements diff --git a/plugins/ThemePlugin/translations/fa_IR.ts b/plugins/ThemePlugin/translations/fa_IR.ts index dfc2be9b..20d17a5e 100644 --- a/plugins/ThemePlugin/translations/fa_IR.ts +++ b/plugins/ThemePlugin/translations/fa_IR.ts @@ -44,7 +44,7 @@ ThemeSettingsPane - + Theme @@ -144,15 +144,25 @@ - + + Bar Opacity + + + + Transparency Effects - + EFFECTS + + + 100% + + Set the appearance of buttons, text boxes and other interface elements diff --git a/plugins/ThemePlugin/translations/fi_FI.ts b/plugins/ThemePlugin/translations/fi_FI.ts index 1454665f..e6f518ee 100644 --- a/plugins/ThemePlugin/translations/fi_FI.ts +++ b/plugins/ThemePlugin/translations/fi_FI.ts @@ -44,7 +44,7 @@ ThemeSettingsPane - + Theme @@ -144,15 +144,25 @@ - + + Bar Opacity + + + + Transparency Effects - + EFFECTS + + + 100% + + Set the appearance of buttons, text boxes and other interface elements diff --git a/plugins/ThemePlugin/translations/fj_FJ.ts b/plugins/ThemePlugin/translations/fj_FJ.ts index dfc2be9b..20d17a5e 100644 --- a/plugins/ThemePlugin/translations/fj_FJ.ts +++ b/plugins/ThemePlugin/translations/fj_FJ.ts @@ -44,7 +44,7 @@ ThemeSettingsPane - + Theme @@ -144,15 +144,25 @@ - + + Bar Opacity + + + + Transparency Effects - + EFFECTS + + + 100% + + Set the appearance of buttons, text boxes and other interface elements diff --git a/plugins/ThemePlugin/translations/fr_CA.ts b/plugins/ThemePlugin/translations/fr_CA.ts index 63501e72..b3329ace 100644 --- a/plugins/ThemePlugin/translations/fr_CA.ts +++ b/plugins/ThemePlugin/translations/fr_CA.ts @@ -44,7 +44,7 @@ ThemeSettingsPane - + Theme @@ -144,15 +144,25 @@ - + + Bar Opacity + + + + Transparency Effects - + EFFECTS + + + 100% + + Set the appearance of buttons, text boxes and other interface elements diff --git a/plugins/ThemePlugin/translations/fr_FR.ts b/plugins/ThemePlugin/translations/fr_FR.ts index cb9d8b16..a20d6024 100644 --- a/plugins/ThemePlugin/translations/fr_FR.ts +++ b/plugins/ThemePlugin/translations/fr_FR.ts @@ -44,7 +44,7 @@ ThemeSettingsPane - + Theme @@ -144,15 +144,25 @@ - + + Bar Opacity + + + + Transparency Effects - + EFFECTS + + + 100% + + Set the appearance of buttons, text boxes and other interface elements diff --git a/plugins/ThemePlugin/translations/ga_IE.ts b/plugins/ThemePlugin/translations/ga_IE.ts index dfc2be9b..20d17a5e 100644 --- a/plugins/ThemePlugin/translations/ga_IE.ts +++ b/plugins/ThemePlugin/translations/ga_IE.ts @@ -44,7 +44,7 @@ ThemeSettingsPane - + Theme @@ -144,15 +144,25 @@ - + + Bar Opacity + + + + Transparency Effects - + EFFECTS + + + 100% + + Set the appearance of buttons, text boxes and other interface elements diff --git a/plugins/ThemePlugin/translations/gn_PY.ts b/plugins/ThemePlugin/translations/gn_PY.ts index dfc2be9b..20d17a5e 100644 --- a/plugins/ThemePlugin/translations/gn_PY.ts +++ b/plugins/ThemePlugin/translations/gn_PY.ts @@ -44,7 +44,7 @@ ThemeSettingsPane - + Theme @@ -144,15 +144,25 @@ - + + Bar Opacity + + + + Transparency Effects - + EFFECTS + + + 100% + + Set the appearance of buttons, text boxes and other interface elements diff --git a/plugins/ThemePlugin/translations/ha_NE.ts b/plugins/ThemePlugin/translations/ha_NE.ts index 5e9902bd..40bc8112 100644 --- a/plugins/ThemePlugin/translations/ha_NE.ts +++ b/plugins/ThemePlugin/translations/ha_NE.ts @@ -44,7 +44,7 @@ ThemeSettingsPane - + Theme @@ -144,15 +144,25 @@ - + + Bar Opacity + + + + Transparency Effects - + EFFECTS + + + 100% + + Set the appearance of buttons, text boxes and other interface elements diff --git a/plugins/ThemePlugin/translations/he_IL.ts b/plugins/ThemePlugin/translations/he_IL.ts index dfc2be9b..20d17a5e 100644 --- a/plugins/ThemePlugin/translations/he_IL.ts +++ b/plugins/ThemePlugin/translations/he_IL.ts @@ -44,7 +44,7 @@ ThemeSettingsPane - + Theme @@ -144,15 +144,25 @@ - + + Bar Opacity + + + + Transparency Effects - + EFFECTS + + + 100% + + Set the appearance of buttons, text boxes and other interface elements diff --git a/plugins/ThemePlugin/translations/hi_IN.ts b/plugins/ThemePlugin/translations/hi_IN.ts index b21cccb8..332b08a5 100644 --- a/plugins/ThemePlugin/translations/hi_IN.ts +++ b/plugins/ThemePlugin/translations/hi_IN.ts @@ -44,7 +44,7 @@ ThemeSettingsPane - + Theme @@ -144,15 +144,25 @@ - + + Bar Opacity + + + + Transparency Effects - + EFFECTS + + + 100% + + Set the appearance of buttons, text boxes and other interface elements diff --git a/plugins/ThemePlugin/translations/ho_PG.ts b/plugins/ThemePlugin/translations/ho_PG.ts index dfc2be9b..20d17a5e 100644 --- a/plugins/ThemePlugin/translations/ho_PG.ts +++ b/plugins/ThemePlugin/translations/ho_PG.ts @@ -44,7 +44,7 @@ ThemeSettingsPane - + Theme @@ -144,15 +144,25 @@ - + + Bar Opacity + + + + Transparency Effects - + EFFECTS + + + 100% + + Set the appearance of buttons, text boxes and other interface elements diff --git a/plugins/ThemePlugin/translations/hr_HR.ts b/plugins/ThemePlugin/translations/hr_HR.ts index b3413f13..2acea7c0 100644 --- a/plugins/ThemePlugin/translations/hr_HR.ts +++ b/plugins/ThemePlugin/translations/hr_HR.ts @@ -44,7 +44,7 @@ ThemeSettingsPane - + Theme @@ -144,15 +144,25 @@ - + + Bar Opacity + + + + Transparency Effects - + EFFECTS + + + 100% + + Set the appearance of buttons, text boxes and other interface elements diff --git a/plugins/ThemePlugin/translations/ht_HT.ts b/plugins/ThemePlugin/translations/ht_HT.ts index dfc2be9b..20d17a5e 100644 --- a/plugins/ThemePlugin/translations/ht_HT.ts +++ b/plugins/ThemePlugin/translations/ht_HT.ts @@ -44,7 +44,7 @@ ThemeSettingsPane - + Theme @@ -144,15 +144,25 @@ - + + Bar Opacity + + + + Transparency Effects - + EFFECTS + + + 100% + + Set the appearance of buttons, text boxes and other interface elements diff --git a/plugins/ThemePlugin/translations/hu_HU.ts b/plugins/ThemePlugin/translations/hu_HU.ts index c5b6abd0..7be77986 100644 --- a/plugins/ThemePlugin/translations/hu_HU.ts +++ b/plugins/ThemePlugin/translations/hu_HU.ts @@ -44,7 +44,7 @@ ThemeSettingsPane - + Theme @@ -144,15 +144,25 @@ - + + Bar Opacity + + + + Transparency Effects - + EFFECTS + + + 100% + + Set the appearance of buttons, text boxes and other interface elements diff --git a/plugins/ThemePlugin/translations/hy_AM.ts b/plugins/ThemePlugin/translations/hy_AM.ts index de33a12e..6266deb7 100644 --- a/plugins/ThemePlugin/translations/hy_AM.ts +++ b/plugins/ThemePlugin/translations/hy_AM.ts @@ -44,7 +44,7 @@ ThemeSettingsPane - + Theme @@ -144,15 +144,25 @@ - + + Bar Opacity + + + + Transparency Effects - + EFFECTS + + + 100% + + Set the appearance of buttons, text boxes and other interface elements diff --git a/plugins/ThemePlugin/translations/id_ID.ts b/plugins/ThemePlugin/translations/id_ID.ts index b21cccb8..332b08a5 100644 --- a/plugins/ThemePlugin/translations/id_ID.ts +++ b/plugins/ThemePlugin/translations/id_ID.ts @@ -44,7 +44,7 @@ ThemeSettingsPane - + Theme @@ -144,15 +144,25 @@ - + + Bar Opacity + + + + Transparency Effects - + EFFECTS + + + 100% + + Set the appearance of buttons, text boxes and other interface elements diff --git a/plugins/ThemePlugin/translations/ig_NG.ts b/plugins/ThemePlugin/translations/ig_NG.ts index dfc2be9b..20d17a5e 100644 --- a/plugins/ThemePlugin/translations/ig_NG.ts +++ b/plugins/ThemePlugin/translations/ig_NG.ts @@ -44,7 +44,7 @@ ThemeSettingsPane - + Theme @@ -144,15 +144,25 @@ - + + Bar Opacity + + + + Transparency Effects - + EFFECTS + + + 100% + + Set the appearance of buttons, text boxes and other interface elements diff --git a/plugins/ThemePlugin/translations/is_IS.ts b/plugins/ThemePlugin/translations/is_IS.ts index 620b7314..3a886d9f 100644 --- a/plugins/ThemePlugin/translations/is_IS.ts +++ b/plugins/ThemePlugin/translations/is_IS.ts @@ -44,7 +44,7 @@ ThemeSettingsPane - + Theme @@ -144,15 +144,25 @@ - + + Bar Opacity + + + + Transparency Effects - + EFFECTS + + + 100% + + Set the appearance of buttons, text boxes and other interface elements diff --git a/plugins/ThemePlugin/translations/it_IT.ts b/plugins/ThemePlugin/translations/it_IT.ts index b269ecbc..f3701e33 100644 --- a/plugins/ThemePlugin/translations/it_IT.ts +++ b/plugins/ThemePlugin/translations/it_IT.ts @@ -44,7 +44,7 @@ ThemeSettingsPane - + Theme @@ -144,15 +144,25 @@ - + + Bar Opacity + + + + Transparency Effects - + EFFECTS + + + 100% + + Set the appearance of buttons, text boxes and other interface elements diff --git a/plugins/ThemePlugin/translations/iu_CA.ts b/plugins/ThemePlugin/translations/iu_CA.ts index 63501e72..b3329ace 100644 --- a/plugins/ThemePlugin/translations/iu_CA.ts +++ b/plugins/ThemePlugin/translations/iu_CA.ts @@ -44,7 +44,7 @@ ThemeSettingsPane - + Theme @@ -144,15 +144,25 @@ - + + Bar Opacity + + + + Transparency Effects - + EFFECTS + + + 100% + + Set the appearance of buttons, text boxes and other interface elements diff --git a/plugins/ThemePlugin/translations/ja_JP.ts b/plugins/ThemePlugin/translations/ja_JP.ts index dfc2be9b..20d17a5e 100644 --- a/plugins/ThemePlugin/translations/ja_JP.ts +++ b/plugins/ThemePlugin/translations/ja_JP.ts @@ -44,7 +44,7 @@ ThemeSettingsPane - + Theme @@ -144,15 +144,25 @@ - + + Bar Opacity + + + + Transparency Effects - + EFFECTS + + + 100% + + Set the appearance of buttons, text boxes and other interface elements diff --git a/plugins/ThemePlugin/translations/jv_IN.ts b/plugins/ThemePlugin/translations/jv_IN.ts index b21cccb8..332b08a5 100644 --- a/plugins/ThemePlugin/translations/jv_IN.ts +++ b/plugins/ThemePlugin/translations/jv_IN.ts @@ -44,7 +44,7 @@ ThemeSettingsPane - + Theme @@ -144,15 +144,25 @@ - + + Bar Opacity + + + + Transparency Effects - + EFFECTS + + + 100% + + Set the appearance of buttons, text boxes and other interface elements diff --git a/plugins/ThemePlugin/translations/ka_GE.ts b/plugins/ThemePlugin/translations/ka_GE.ts index dfc2be9b..20d17a5e 100644 --- a/plugins/ThemePlugin/translations/ka_GE.ts +++ b/plugins/ThemePlugin/translations/ka_GE.ts @@ -44,7 +44,7 @@ ThemeSettingsPane - + Theme @@ -144,15 +144,25 @@ - + + Bar Opacity + + + + Transparency Effects - + EFFECTS + + + 100% + + Set the appearance of buttons, text boxes and other interface elements diff --git a/plugins/ThemePlugin/translations/ki_KE.ts b/plugins/ThemePlugin/translations/ki_KE.ts index dfc2be9b..20d17a5e 100644 --- a/plugins/ThemePlugin/translations/ki_KE.ts +++ b/plugins/ThemePlugin/translations/ki_KE.ts @@ -44,7 +44,7 @@ ThemeSettingsPane - + Theme @@ -144,15 +144,25 @@ - + + Bar Opacity + + + + Transparency Effects - + EFFECTS + + + 100% + + Set the appearance of buttons, text boxes and other interface elements diff --git a/plugins/ThemePlugin/translations/kj_AO.ts b/plugins/ThemePlugin/translations/kj_AO.ts index dfc2be9b..20d17a5e 100644 --- a/plugins/ThemePlugin/translations/kj_AO.ts +++ b/plugins/ThemePlugin/translations/kj_AO.ts @@ -44,7 +44,7 @@ ThemeSettingsPane - + Theme @@ -144,15 +144,25 @@ - + + Bar Opacity + + + + Transparency Effects - + EFFECTS + + + 100% + + Set the appearance of buttons, text boxes and other interface elements diff --git a/plugins/ThemePlugin/translations/kj_NA.ts b/plugins/ThemePlugin/translations/kj_NA.ts index dfc2be9b..20d17a5e 100644 --- a/plugins/ThemePlugin/translations/kj_NA.ts +++ b/plugins/ThemePlugin/translations/kj_NA.ts @@ -44,7 +44,7 @@ ThemeSettingsPane - + Theme @@ -144,15 +144,25 @@ - + + Bar Opacity + + + + Transparency Effects - + EFFECTS + + + 100% + + Set the appearance of buttons, text boxes and other interface elements diff --git a/plugins/ThemePlugin/translations/kk_KZ.ts b/plugins/ThemePlugin/translations/kk_KZ.ts index dfc2be9b..20d17a5e 100644 --- a/plugins/ThemePlugin/translations/kk_KZ.ts +++ b/plugins/ThemePlugin/translations/kk_KZ.ts @@ -44,7 +44,7 @@ ThemeSettingsPane - + Theme @@ -144,15 +144,25 @@ - + + Bar Opacity + + + + Transparency Effects - + EFFECTS + + + 100% + + Set the appearance of buttons, text boxes and other interface elements diff --git a/plugins/ThemePlugin/translations/km_KH.ts b/plugins/ThemePlugin/translations/km_KH.ts index dfc2be9b..20d17a5e 100644 --- a/plugins/ThemePlugin/translations/km_KH.ts +++ b/plugins/ThemePlugin/translations/km_KH.ts @@ -44,7 +44,7 @@ ThemeSettingsPane - + Theme @@ -144,15 +144,25 @@ - + + Bar Opacity + + + + Transparency Effects - + EFFECTS + + + 100% + + Set the appearance of buttons, text boxes and other interface elements diff --git a/plugins/ThemePlugin/translations/ko_KR.ts b/plugins/ThemePlugin/translations/ko_KR.ts index dfc2be9b..20d17a5e 100644 --- a/plugins/ThemePlugin/translations/ko_KR.ts +++ b/plugins/ThemePlugin/translations/ko_KR.ts @@ -44,7 +44,7 @@ ThemeSettingsPane - + Theme @@ -144,15 +144,25 @@ - + + Bar Opacity + + + + Transparency Effects - + EFFECTS + + + 100% + + Set the appearance of buttons, text boxes and other interface elements diff --git a/plugins/ThemePlugin/translations/ku_IR.ts b/plugins/ThemePlugin/translations/ku_IR.ts index dfc2be9b..20d17a5e 100644 --- a/plugins/ThemePlugin/translations/ku_IR.ts +++ b/plugins/ThemePlugin/translations/ku_IR.ts @@ -44,7 +44,7 @@ ThemeSettingsPane - + Theme @@ -144,15 +144,25 @@ - + + Bar Opacity + + + + Transparency Effects - + EFFECTS + + + 100% + + Set the appearance of buttons, text boxes and other interface elements diff --git a/plugins/ThemePlugin/translations/ky_KG.ts b/plugins/ThemePlugin/translations/ky_KG.ts index dfc2be9b..20d17a5e 100644 --- a/plugins/ThemePlugin/translations/ky_KG.ts +++ b/plugins/ThemePlugin/translations/ky_KG.ts @@ -44,7 +44,7 @@ ThemeSettingsPane - + Theme @@ -144,15 +144,25 @@ - + + Bar Opacity + + + + Transparency Effects - + EFFECTS + + + 100% + + Set the appearance of buttons, text boxes and other interface elements diff --git a/plugins/ThemePlugin/translations/lb_LU.ts b/plugins/ThemePlugin/translations/lb_LU.ts index f2739c42..a1eda0fb 100644 --- a/plugins/ThemePlugin/translations/lb_LU.ts +++ b/plugins/ThemePlugin/translations/lb_LU.ts @@ -44,7 +44,7 @@ ThemeSettingsPane - + Theme @@ -144,15 +144,25 @@ - + + Bar Opacity + + + + Transparency Effects - + EFFECTS + + + 100% + + Set the appearance of buttons, text boxes and other interface elements diff --git a/plugins/ThemePlugin/translations/lg_UG.ts b/plugins/ThemePlugin/translations/lg_UG.ts index e45d0483..4b9d3316 100644 --- a/plugins/ThemePlugin/translations/lg_UG.ts +++ b/plugins/ThemePlugin/translations/lg_UG.ts @@ -44,7 +44,7 @@ ThemeSettingsPane - + Theme @@ -144,15 +144,25 @@ - + + Bar Opacity + + + + Transparency Effects - + EFFECTS + + + 100% + + Set the appearance of buttons, text boxes and other interface elements diff --git a/plugins/ThemePlugin/translations/ln_CD.ts b/plugins/ThemePlugin/translations/ln_CD.ts index dfc2be9b..20d17a5e 100644 --- a/plugins/ThemePlugin/translations/ln_CD.ts +++ b/plugins/ThemePlugin/translations/ln_CD.ts @@ -44,7 +44,7 @@ ThemeSettingsPane - + Theme @@ -144,15 +144,25 @@ - + + Bar Opacity + + + + Transparency Effects - + EFFECTS + + + 100% + + Set the appearance of buttons, text boxes and other interface elements diff --git a/plugins/ThemePlugin/translations/lo_LA.ts b/plugins/ThemePlugin/translations/lo_LA.ts index dfc2be9b..20d17a5e 100644 --- a/plugins/ThemePlugin/translations/lo_LA.ts +++ b/plugins/ThemePlugin/translations/lo_LA.ts @@ -44,7 +44,7 @@ ThemeSettingsPane - + Theme @@ -144,15 +144,25 @@ - + + Bar Opacity + + + + Transparency Effects - + EFFECTS + + + 100% + + Set the appearance of buttons, text boxes and other interface elements diff --git a/plugins/ThemePlugin/translations/lt_LT.ts b/plugins/ThemePlugin/translations/lt_LT.ts index af5851c6..1e70d192 100644 --- a/plugins/ThemePlugin/translations/lt_LT.ts +++ b/plugins/ThemePlugin/translations/lt_LT.ts @@ -44,7 +44,7 @@ ThemeSettingsPane - + Theme @@ -144,15 +144,25 @@ - + + Bar Opacity + + + + Transparency Effects - + EFFECTS + + + 100% + + Set the appearance of buttons, text boxes and other interface elements diff --git a/plugins/ThemePlugin/translations/lv_LV.ts b/plugins/ThemePlugin/translations/lv_LV.ts index 837ebc2a..14f8ad08 100644 --- a/plugins/ThemePlugin/translations/lv_LV.ts +++ b/plugins/ThemePlugin/translations/lv_LV.ts @@ -44,7 +44,7 @@ ThemeSettingsPane - + Theme @@ -144,15 +144,25 @@ - + + Bar Opacity + + + + Transparency Effects - + EFFECTS + + + 100% + + Set the appearance of buttons, text boxes and other interface elements diff --git a/plugins/ThemePlugin/translations/mg_MG.ts b/plugins/ThemePlugin/translations/mg_MG.ts index a4ed26ba..81bee8e4 100644 --- a/plugins/ThemePlugin/translations/mg_MG.ts +++ b/plugins/ThemePlugin/translations/mg_MG.ts @@ -44,7 +44,7 @@ ThemeSettingsPane - + Theme @@ -144,15 +144,25 @@ - + + Bar Opacity + + + + Transparency Effects - + EFFECTS + + + 100% + + Set the appearance of buttons, text boxes and other interface elements diff --git a/plugins/ThemePlugin/translations/mi_NZ.ts b/plugins/ThemePlugin/translations/mi_NZ.ts index dfc2be9b..20d17a5e 100644 --- a/plugins/ThemePlugin/translations/mi_NZ.ts +++ b/plugins/ThemePlugin/translations/mi_NZ.ts @@ -44,7 +44,7 @@ ThemeSettingsPane - + Theme @@ -144,15 +144,25 @@ - + + Bar Opacity + + + + Transparency Effects - + EFFECTS + + + 100% + + Set the appearance of buttons, text boxes and other interface elements diff --git a/plugins/ThemePlugin/translations/mk_MK.ts b/plugins/ThemePlugin/translations/mk_MK.ts index 8b975e0d..60c84f7a 100644 --- a/plugins/ThemePlugin/translations/mk_MK.ts +++ b/plugins/ThemePlugin/translations/mk_MK.ts @@ -44,7 +44,7 @@ ThemeSettingsPane - + Theme @@ -144,15 +144,25 @@ - + + Bar Opacity + + + + Transparency Effects - + EFFECTS + + + 100% + + Set the appearance of buttons, text boxes and other interface elements diff --git a/plugins/ThemePlugin/translations/mn_MN.ts b/plugins/ThemePlugin/translations/mn_MN.ts index d5acacdb..d859aaea 100644 --- a/plugins/ThemePlugin/translations/mn_MN.ts +++ b/plugins/ThemePlugin/translations/mn_MN.ts @@ -44,7 +44,7 @@ ThemeSettingsPane - + Theme @@ -144,15 +144,25 @@ - + + Bar Opacity + + + + Transparency Effects - + EFFECTS + + + 100% + + Set the appearance of buttons, text boxes and other interface elements diff --git a/plugins/ThemePlugin/translations/ms_MY.ts b/plugins/ThemePlugin/translations/ms_MY.ts index 7a3c55a3..e8537ab2 100644 --- a/plugins/ThemePlugin/translations/ms_MY.ts +++ b/plugins/ThemePlugin/translations/ms_MY.ts @@ -44,7 +44,7 @@ ThemeSettingsPane - + Theme @@ -144,15 +144,25 @@ - + + Bar Opacity + + + + Transparency Effects - + EFFECTS + + + 100% + + Set the appearance of buttons, text boxes and other interface elements diff --git a/plugins/ThemePlugin/translations/ms_SG.ts b/plugins/ThemePlugin/translations/ms_SG.ts index 519c6d4f..6b6aa1c7 100644 --- a/plugins/ThemePlugin/translations/ms_SG.ts +++ b/plugins/ThemePlugin/translations/ms_SG.ts @@ -44,7 +44,7 @@ ThemeSettingsPane - + Theme @@ -144,15 +144,25 @@ - + + Bar Opacity + + + + Transparency Effects - + EFFECTS + + + 100% + + Set the appearance of buttons, text boxes and other interface elements diff --git a/plugins/ThemePlugin/translations/mt_MT.ts b/plugins/ThemePlugin/translations/mt_MT.ts index c725d9fd..3d72a731 100644 --- a/plugins/ThemePlugin/translations/mt_MT.ts +++ b/plugins/ThemePlugin/translations/mt_MT.ts @@ -44,7 +44,7 @@ ThemeSettingsPane - + Theme @@ -144,15 +144,25 @@ - + + Bar Opacity + + + + Transparency Effects - + EFFECTS + + + 100% + + Set the appearance of buttons, text boxes and other interface elements diff --git a/plugins/ThemePlugin/translations/my_MM.ts b/plugins/ThemePlugin/translations/my_MM.ts index dfc2be9b..20d17a5e 100644 --- a/plugins/ThemePlugin/translations/my_MM.ts +++ b/plugins/ThemePlugin/translations/my_MM.ts @@ -44,7 +44,7 @@ ThemeSettingsPane - + Theme @@ -144,15 +144,25 @@ - + + Bar Opacity + + + + Transparency Effects - + EFFECTS + + + 100% + + Set the appearance of buttons, text boxes and other interface elements diff --git a/plugins/ThemePlugin/translations/nb_NO.ts b/plugins/ThemePlugin/translations/nb_NO.ts index 629889a1..f01433fa 100644 --- a/plugins/ThemePlugin/translations/nb_NO.ts +++ b/plugins/ThemePlugin/translations/nb_NO.ts @@ -44,7 +44,7 @@ ThemeSettingsPane - + Theme @@ -144,15 +144,25 @@ - + + Bar Opacity + + + + Transparency Effects - + EFFECTS + + + 100% + + Set the appearance of buttons, text boxes and other interface elements diff --git a/plugins/ThemePlugin/translations/ne_NP.ts b/plugins/ThemePlugin/translations/ne_NP.ts index dfc2be9b..20d17a5e 100644 --- a/plugins/ThemePlugin/translations/ne_NP.ts +++ b/plugins/ThemePlugin/translations/ne_NP.ts @@ -44,7 +44,7 @@ ThemeSettingsPane - + Theme @@ -144,15 +144,25 @@ - + + Bar Opacity + + + + Transparency Effects - + EFFECTS + + + 100% + + Set the appearance of buttons, text boxes and other interface elements diff --git a/plugins/ThemePlugin/translations/nl_BE.ts b/plugins/ThemePlugin/translations/nl_BE.ts index dcb4877c..6f50d307 100644 --- a/plugins/ThemePlugin/translations/nl_BE.ts +++ b/plugins/ThemePlugin/translations/nl_BE.ts @@ -44,7 +44,7 @@ ThemeSettingsPane - + Theme @@ -144,15 +144,25 @@ - + + Bar Opacity + + + + Transparency Effects - + EFFECTS + + + 100% + + Set the appearance of buttons, text boxes and other interface elements diff --git a/plugins/ThemePlugin/translations/nl_NL.ts b/plugins/ThemePlugin/translations/nl_NL.ts index a3495e7f..0d67115f 100644 --- a/plugins/ThemePlugin/translations/nl_NL.ts +++ b/plugins/ThemePlugin/translations/nl_NL.ts @@ -44,7 +44,7 @@ ThemeSettingsPane - + Theme @@ -144,15 +144,25 @@ - + + Bar Opacity + + + + Transparency Effects - + EFFECTS + + + 100% + + Set the appearance of buttons, text boxes and other interface elements diff --git a/plugins/ThemePlugin/translations/nn_NO.ts b/plugins/ThemePlugin/translations/nn_NO.ts index 629889a1..f01433fa 100644 --- a/plugins/ThemePlugin/translations/nn_NO.ts +++ b/plugins/ThemePlugin/translations/nn_NO.ts @@ -44,7 +44,7 @@ ThemeSettingsPane - + Theme @@ -144,15 +144,25 @@ - + + Bar Opacity + + + + Transparency Effects - + EFFECTS + + + 100% + + Set the appearance of buttons, text boxes and other interface elements diff --git a/plugins/ThemePlugin/translations/pa_IN.ts b/plugins/ThemePlugin/translations/pa_IN.ts index b21cccb8..332b08a5 100644 --- a/plugins/ThemePlugin/translations/pa_IN.ts +++ b/plugins/ThemePlugin/translations/pa_IN.ts @@ -44,7 +44,7 @@ ThemeSettingsPane - + Theme @@ -144,15 +144,25 @@ - + + Bar Opacity + + + + Transparency Effects - + EFFECTS + + + 100% + + Set the appearance of buttons, text boxes and other interface elements diff --git a/plugins/ThemePlugin/translations/pa_PK.ts b/plugins/ThemePlugin/translations/pa_PK.ts index dfc2be9b..20d17a5e 100644 --- a/plugins/ThemePlugin/translations/pa_PK.ts +++ b/plugins/ThemePlugin/translations/pa_PK.ts @@ -44,7 +44,7 @@ ThemeSettingsPane - + Theme @@ -144,15 +144,25 @@ - + + Bar Opacity + + + + Transparency Effects - + EFFECTS + + + 100% + + Set the appearance of buttons, text boxes and other interface elements diff --git a/plugins/ThemePlugin/translations/pl_PL.ts b/plugins/ThemePlugin/translations/pl_PL.ts index 948abf21..6224c475 100644 --- a/plugins/ThemePlugin/translations/pl_PL.ts +++ b/plugins/ThemePlugin/translations/pl_PL.ts @@ -44,7 +44,7 @@ ThemeSettingsPane - + Theme @@ -144,15 +144,25 @@ - + + Bar Opacity + + + + Transparency Effects - + EFFECTS + + + 100% + + Set the appearance of buttons, text boxes and other interface elements diff --git a/plugins/ThemePlugin/translations/pt_AO.ts b/plugins/ThemePlugin/translations/pt_AO.ts index dfc2be9b..20d17a5e 100644 --- a/plugins/ThemePlugin/translations/pt_AO.ts +++ b/plugins/ThemePlugin/translations/pt_AO.ts @@ -44,7 +44,7 @@ ThemeSettingsPane - + Theme @@ -144,15 +144,25 @@ - + + Bar Opacity + + + + Transparency Effects - + EFFECTS + + + 100% + + Set the appearance of buttons, text boxes and other interface elements diff --git a/plugins/ThemePlugin/translations/pt_BR.ts b/plugins/ThemePlugin/translations/pt_BR.ts index fb6c82fb..3498aec8 100644 --- a/plugins/ThemePlugin/translations/pt_BR.ts +++ b/plugins/ThemePlugin/translations/pt_BR.ts @@ -44,7 +44,7 @@ ThemeSettingsPane - + Theme @@ -144,15 +144,25 @@ - + + Bar Opacity + + + + Transparency Effects - + EFFECTS + + + 100% + + Set the appearance of buttons, text boxes and other interface elements diff --git a/plugins/ThemePlugin/translations/pt_CV.ts b/plugins/ThemePlugin/translations/pt_CV.ts index daed4b72..18f9f1f0 100644 --- a/plugins/ThemePlugin/translations/pt_CV.ts +++ b/plugins/ThemePlugin/translations/pt_CV.ts @@ -44,7 +44,7 @@ ThemeSettingsPane - + Theme @@ -144,15 +144,25 @@ - + + Bar Opacity + + + + Transparency Effects - + EFFECTS + + + 100% + + Set the appearance of buttons, text boxes and other interface elements diff --git a/plugins/ThemePlugin/translations/pt_GQ.ts b/plugins/ThemePlugin/translations/pt_GQ.ts index dfc2be9b..20d17a5e 100644 --- a/plugins/ThemePlugin/translations/pt_GQ.ts +++ b/plugins/ThemePlugin/translations/pt_GQ.ts @@ -44,7 +44,7 @@ ThemeSettingsPane - + Theme @@ -144,15 +144,25 @@ - + + Bar Opacity + + + + Transparency Effects - + EFFECTS + + + 100% + + Set the appearance of buttons, text boxes and other interface elements diff --git a/plugins/ThemePlugin/translations/pt_GW.ts b/plugins/ThemePlugin/translations/pt_GW.ts index dfc2be9b..20d17a5e 100644 --- a/plugins/ThemePlugin/translations/pt_GW.ts +++ b/plugins/ThemePlugin/translations/pt_GW.ts @@ -44,7 +44,7 @@ ThemeSettingsPane - + Theme @@ -144,15 +144,25 @@ - + + Bar Opacity + + + + Transparency Effects - + EFFECTS + + + 100% + + Set the appearance of buttons, text boxes and other interface elements diff --git a/plugins/ThemePlugin/translations/pt_MZ.ts b/plugins/ThemePlugin/translations/pt_MZ.ts index dfc2be9b..20d17a5e 100644 --- a/plugins/ThemePlugin/translations/pt_MZ.ts +++ b/plugins/ThemePlugin/translations/pt_MZ.ts @@ -44,7 +44,7 @@ ThemeSettingsPane - + Theme @@ -144,15 +144,25 @@ - + + Bar Opacity + + + + Transparency Effects - + EFFECTS + + + 100% + + Set the appearance of buttons, text boxes and other interface elements diff --git a/plugins/ThemePlugin/translations/pt_PT.ts b/plugins/ThemePlugin/translations/pt_PT.ts index 4e96f4ce..ba8ea608 100644 --- a/plugins/ThemePlugin/translations/pt_PT.ts +++ b/plugins/ThemePlugin/translations/pt_PT.ts @@ -44,7 +44,7 @@ ThemeSettingsPane - + Theme @@ -144,15 +144,25 @@ - + + Bar Opacity + + + + Transparency Effects - + EFFECTS + + + 100% + + Set the appearance of buttons, text boxes and other interface elements diff --git a/plugins/ThemePlugin/translations/pt_ST.ts b/plugins/ThemePlugin/translations/pt_ST.ts index 98959f23..f11494b2 100644 --- a/plugins/ThemePlugin/translations/pt_ST.ts +++ b/plugins/ThemePlugin/translations/pt_ST.ts @@ -44,7 +44,7 @@ ThemeSettingsPane - + Theme @@ -144,15 +144,25 @@ - + + Bar Opacity + + + + Transparency Effects - + EFFECTS + + + 100% + + Set the appearance of buttons, text boxes and other interface elements diff --git a/plugins/ThemePlugin/translations/pt_TL.ts b/plugins/ThemePlugin/translations/pt_TL.ts index 45c01430..5a9efb4f 100644 --- a/plugins/ThemePlugin/translations/pt_TL.ts +++ b/plugins/ThemePlugin/translations/pt_TL.ts @@ -44,7 +44,7 @@ ThemeSettingsPane - + Theme @@ -144,15 +144,25 @@ - + + Bar Opacity + + + + Transparency Effects - + EFFECTS + + + 100% + + Set the appearance of buttons, text boxes and other interface elements diff --git a/plugins/ThemePlugin/translations/rn_BI.ts b/plugins/ThemePlugin/translations/rn_BI.ts index dfc2be9b..20d17a5e 100644 --- a/plugins/ThemePlugin/translations/rn_BI.ts +++ b/plugins/ThemePlugin/translations/rn_BI.ts @@ -44,7 +44,7 @@ ThemeSettingsPane - + Theme @@ -144,15 +144,25 @@ - + + Bar Opacity + + + + Transparency Effects - + EFFECTS + + + 100% + + Set the appearance of buttons, text boxes and other interface elements diff --git a/plugins/ThemePlugin/translations/ro_MD.ts b/plugins/ThemePlugin/translations/ro_MD.ts index dfc2be9b..20d17a5e 100644 --- a/plugins/ThemePlugin/translations/ro_MD.ts +++ b/plugins/ThemePlugin/translations/ro_MD.ts @@ -44,7 +44,7 @@ ThemeSettingsPane - + Theme @@ -144,15 +144,25 @@ - + + Bar Opacity + + + + Transparency Effects - + EFFECTS + + + 100% + + Set the appearance of buttons, text boxes and other interface elements diff --git a/plugins/ThemePlugin/translations/ro_RO.ts b/plugins/ThemePlugin/translations/ro_RO.ts index 09f69ed1..4da82f9a 100644 --- a/plugins/ThemePlugin/translations/ro_RO.ts +++ b/plugins/ThemePlugin/translations/ro_RO.ts @@ -44,7 +44,7 @@ ThemeSettingsPane - + Theme @@ -144,15 +144,25 @@ - + + Bar Opacity + + + + Transparency Effects - + EFFECTS + + + 100% + + Set the appearance of buttons, text boxes and other interface elements diff --git a/plugins/ThemePlugin/translations/ru_BY.ts b/plugins/ThemePlugin/translations/ru_BY.ts index dfc2be9b..20d17a5e 100644 --- a/plugins/ThemePlugin/translations/ru_BY.ts +++ b/plugins/ThemePlugin/translations/ru_BY.ts @@ -44,7 +44,7 @@ ThemeSettingsPane - + Theme @@ -144,15 +144,25 @@ - + + Bar Opacity + + + + Transparency Effects - + EFFECTS + + + 100% + + Set the appearance of buttons, text boxes and other interface elements diff --git a/plugins/ThemePlugin/translations/ru_KG.ts b/plugins/ThemePlugin/translations/ru_KG.ts index dfc2be9b..20d17a5e 100644 --- a/plugins/ThemePlugin/translations/ru_KG.ts +++ b/plugins/ThemePlugin/translations/ru_KG.ts @@ -44,7 +44,7 @@ ThemeSettingsPane - + Theme @@ -144,15 +144,25 @@ - + + Bar Opacity + + + + Transparency Effects - + EFFECTS + + + 100% + + Set the appearance of buttons, text boxes and other interface elements diff --git a/plugins/ThemePlugin/translations/ru_KZ.ts b/plugins/ThemePlugin/translations/ru_KZ.ts index dfc2be9b..20d17a5e 100644 --- a/plugins/ThemePlugin/translations/ru_KZ.ts +++ b/plugins/ThemePlugin/translations/ru_KZ.ts @@ -44,7 +44,7 @@ ThemeSettingsPane - + Theme @@ -144,15 +144,25 @@ - + + Bar Opacity + + + + Transparency Effects - + EFFECTS + + + 100% + + Set the appearance of buttons, text boxes and other interface elements diff --git a/plugins/ThemePlugin/translations/ru_RU.ts b/plugins/ThemePlugin/translations/ru_RU.ts index 9dfbef9a..cbe9bbf3 100644 --- a/plugins/ThemePlugin/translations/ru_RU.ts +++ b/plugins/ThemePlugin/translations/ru_RU.ts @@ -44,7 +44,7 @@ ThemeSettingsPane - + Theme @@ -144,15 +144,25 @@ - + + Bar Opacity + + + + Transparency Effects - + EFFECTS + + + 100% + + Set the appearance of buttons, text boxes and other interface elements diff --git a/plugins/ThemePlugin/translations/rw_RW.ts b/plugins/ThemePlugin/translations/rw_RW.ts index 7aef42bb..b21f1cbb 100644 --- a/plugins/ThemePlugin/translations/rw_RW.ts +++ b/plugins/ThemePlugin/translations/rw_RW.ts @@ -44,7 +44,7 @@ ThemeSettingsPane - + Theme @@ -144,15 +144,25 @@ - + + Bar Opacity + + + + Transparency Effects - + EFFECTS + + + 100% + + Set the appearance of buttons, text boxes and other interface elements diff --git a/plugins/ThemePlugin/translations/sg_CF.ts b/plugins/ThemePlugin/translations/sg_CF.ts index dfc2be9b..20d17a5e 100644 --- a/plugins/ThemePlugin/translations/sg_CF.ts +++ b/plugins/ThemePlugin/translations/sg_CF.ts @@ -44,7 +44,7 @@ ThemeSettingsPane - + Theme @@ -144,15 +144,25 @@ - + + Bar Opacity + + + + Transparency Effects - + EFFECTS + + + 100% + + Set the appearance of buttons, text boxes and other interface elements diff --git a/plugins/ThemePlugin/translations/si_LK.ts b/plugins/ThemePlugin/translations/si_LK.ts index dfc2be9b..20d17a5e 100644 --- a/plugins/ThemePlugin/translations/si_LK.ts +++ b/plugins/ThemePlugin/translations/si_LK.ts @@ -44,7 +44,7 @@ ThemeSettingsPane - + Theme @@ -144,15 +144,25 @@ - + + Bar Opacity + + + + Transparency Effects - + EFFECTS + + + 100% + + Set the appearance of buttons, text boxes and other interface elements diff --git a/plugins/ThemePlugin/translations/sk_SK.ts b/plugins/ThemePlugin/translations/sk_SK.ts index 6d1a3ef9..08cce458 100644 --- a/plugins/ThemePlugin/translations/sk_SK.ts +++ b/plugins/ThemePlugin/translations/sk_SK.ts @@ -44,7 +44,7 @@ ThemeSettingsPane - + Theme @@ -144,15 +144,25 @@ - + + Bar Opacity + + + + Transparency Effects - + EFFECTS + + + 100% + + Set the appearance of buttons, text boxes and other interface elements diff --git a/plugins/ThemePlugin/translations/sl_SI.ts b/plugins/ThemePlugin/translations/sl_SI.ts index cae7ed89..3c4f29d5 100644 --- a/plugins/ThemePlugin/translations/sl_SI.ts +++ b/plugins/ThemePlugin/translations/sl_SI.ts @@ -44,7 +44,7 @@ ThemeSettingsPane - + Theme @@ -144,15 +144,25 @@ - + + Bar Opacity + + + + Transparency Effects - + EFFECTS + + + 100% + + Set the appearance of buttons, text boxes and other interface elements diff --git a/plugins/ThemePlugin/translations/sm_WS.ts b/plugins/ThemePlugin/translations/sm_WS.ts index dfc2be9b..20d17a5e 100644 --- a/plugins/ThemePlugin/translations/sm_WS.ts +++ b/plugins/ThemePlugin/translations/sm_WS.ts @@ -44,7 +44,7 @@ ThemeSettingsPane - + Theme @@ -144,15 +144,25 @@ - + + Bar Opacity + + + + Transparency Effects - + EFFECTS + + + 100% + + Set the appearance of buttons, text boxes and other interface elements diff --git a/plugins/ThemePlugin/translations/so_SO.ts b/plugins/ThemePlugin/translations/so_SO.ts index 83c4f5f9..d2f9f704 100644 --- a/plugins/ThemePlugin/translations/so_SO.ts +++ b/plugins/ThemePlugin/translations/so_SO.ts @@ -44,7 +44,7 @@ ThemeSettingsPane - + Theme @@ -144,15 +144,25 @@ - + + Bar Opacity + + + + Transparency Effects - + EFFECTS + + + 100% + + Set the appearance of buttons, text boxes and other interface elements diff --git a/plugins/ThemePlugin/translations/sq_AL.ts b/plugins/ThemePlugin/translations/sq_AL.ts index dfc2be9b..20d17a5e 100644 --- a/plugins/ThemePlugin/translations/sq_AL.ts +++ b/plugins/ThemePlugin/translations/sq_AL.ts @@ -44,7 +44,7 @@ ThemeSettingsPane - + Theme @@ -144,15 +144,25 @@ - + + Bar Opacity + + + + Transparency Effects - + EFFECTS + + + 100% + + Set the appearance of buttons, text boxes and other interface elements diff --git a/plugins/ThemePlugin/translations/sr_BA.ts b/plugins/ThemePlugin/translations/sr_BA.ts index ea4dea67..74d63b15 100644 --- a/plugins/ThemePlugin/translations/sr_BA.ts +++ b/plugins/ThemePlugin/translations/sr_BA.ts @@ -44,7 +44,7 @@ ThemeSettingsPane - + Theme @@ -144,15 +144,25 @@ - + + Bar Opacity + + + + Transparency Effects - + EFFECTS + + + 100% + + Set the appearance of buttons, text boxes and other interface elements diff --git a/plugins/ThemePlugin/translations/sr_RS.ts b/plugins/ThemePlugin/translations/sr_RS.ts index dfc2be9b..20d17a5e 100644 --- a/plugins/ThemePlugin/translations/sr_RS.ts +++ b/plugins/ThemePlugin/translations/sr_RS.ts @@ -44,7 +44,7 @@ ThemeSettingsPane - + Theme @@ -144,15 +144,25 @@ - + + Bar Opacity + + + + Transparency Effects - + EFFECTS + + + 100% + + Set the appearance of buttons, text boxes and other interface elements diff --git a/plugins/ThemePlugin/translations/st_LS.ts b/plugins/ThemePlugin/translations/st_LS.ts index dfc2be9b..20d17a5e 100644 --- a/plugins/ThemePlugin/translations/st_LS.ts +++ b/plugins/ThemePlugin/translations/st_LS.ts @@ -44,7 +44,7 @@ ThemeSettingsPane - + Theme @@ -144,15 +144,25 @@ - + + Bar Opacity + + + + Transparency Effects - + EFFECTS + + + 100% + + Set the appearance of buttons, text boxes and other interface elements diff --git a/plugins/ThemePlugin/translations/su_SD.ts b/plugins/ThemePlugin/translations/su_SD.ts index ab7d4250..df15325f 100644 --- a/plugins/ThemePlugin/translations/su_SD.ts +++ b/plugins/ThemePlugin/translations/su_SD.ts @@ -44,7 +44,7 @@ ThemeSettingsPane - + Theme @@ -144,15 +144,25 @@ - + + Bar Opacity + + + + Transparency Effects - + EFFECTS + + + 100% + + Set the appearance of buttons, text boxes and other interface elements diff --git a/plugins/ThemePlugin/translations/sv_SE.ts b/plugins/ThemePlugin/translations/sv_SE.ts index 4a7fb47d..ae107380 100644 --- a/plugins/ThemePlugin/translations/sv_SE.ts +++ b/plugins/ThemePlugin/translations/sv_SE.ts @@ -44,7 +44,7 @@ ThemeSettingsPane - + Theme @@ -144,15 +144,25 @@ - + + Bar Opacity + + + + Transparency Effects - + EFFECTS + + + 100% + + Set the appearance of buttons, text boxes and other interface elements diff --git a/plugins/ThemePlugin/translations/th_TH.ts b/plugins/ThemePlugin/translations/th_TH.ts index 0b7d93a2..4aa3f8a3 100644 --- a/plugins/ThemePlugin/translations/th_TH.ts +++ b/plugins/ThemePlugin/translations/th_TH.ts @@ -44,7 +44,7 @@ ThemeSettingsPane - + Theme @@ -144,15 +144,25 @@ - + + Bar Opacity + + + + Transparency Effects - + EFFECTS + + + 100% + + Set the appearance of buttons, text boxes and other interface elements diff --git a/plugins/ThemePlugin/translations/tk_TM.ts b/plugins/ThemePlugin/translations/tk_TM.ts index dfc2be9b..20d17a5e 100644 --- a/plugins/ThemePlugin/translations/tk_TM.ts +++ b/plugins/ThemePlugin/translations/tk_TM.ts @@ -44,7 +44,7 @@ ThemeSettingsPane - + Theme @@ -144,15 +144,25 @@ - + + Bar Opacity + + + + Transparency Effects - + EFFECTS + + + 100% + + Set the appearance of buttons, text boxes and other interface elements diff --git a/plugins/ThemePlugin/translations/tl_PH.ts b/plugins/ThemePlugin/translations/tl_PH.ts index dfc2be9b..20d17a5e 100644 --- a/plugins/ThemePlugin/translations/tl_PH.ts +++ b/plugins/ThemePlugin/translations/tl_PH.ts @@ -44,7 +44,7 @@ ThemeSettingsPane - + Theme @@ -144,15 +144,25 @@ - + + Bar Opacity + + + + Transparency Effects - + EFFECTS + + + 100% + + Set the appearance of buttons, text boxes and other interface elements diff --git a/plugins/ThemePlugin/translations/to_TO.ts b/plugins/ThemePlugin/translations/to_TO.ts index d2b19098..588ffaee 100644 --- a/plugins/ThemePlugin/translations/to_TO.ts +++ b/plugins/ThemePlugin/translations/to_TO.ts @@ -44,7 +44,7 @@ ThemeSettingsPane - + Theme @@ -144,15 +144,25 @@ - + + Bar Opacity + + + + Transparency Effects - + EFFECTS + + + 100% + + Set the appearance of buttons, text boxes and other interface elements diff --git a/plugins/ThemePlugin/translations/tr_TR.ts b/plugins/ThemePlugin/translations/tr_TR.ts index eec5464a..26f6ef79 100644 --- a/plugins/ThemePlugin/translations/tr_TR.ts +++ b/plugins/ThemePlugin/translations/tr_TR.ts @@ -44,7 +44,7 @@ ThemeSettingsPane - + Theme @@ -144,15 +144,25 @@ - + + Bar Opacity + + + + Transparency Effects - + EFFECTS + + + 100% + + Set the appearance of buttons, text boxes and other interface elements diff --git a/plugins/ThemePlugin/translations/uk_UA.ts b/plugins/ThemePlugin/translations/uk_UA.ts index dfc2be9b..20d17a5e 100644 --- a/plugins/ThemePlugin/translations/uk_UA.ts +++ b/plugins/ThemePlugin/translations/uk_UA.ts @@ -44,7 +44,7 @@ ThemeSettingsPane - + Theme @@ -144,15 +144,25 @@ - + + Bar Opacity + + + + Transparency Effects - + EFFECTS + + + 100% + + Set the appearance of buttons, text boxes and other interface elements diff --git a/plugins/ThemePlugin/translations/ur_PK.ts b/plugins/ThemePlugin/translations/ur_PK.ts index dfc2be9b..20d17a5e 100644 --- a/plugins/ThemePlugin/translations/ur_PK.ts +++ b/plugins/ThemePlugin/translations/ur_PK.ts @@ -44,7 +44,7 @@ ThemeSettingsPane - + Theme @@ -144,15 +144,25 @@ - + + Bar Opacity + + + + Transparency Effects - + EFFECTS + + + 100% + + Set the appearance of buttons, text boxes and other interface elements diff --git a/plugins/ThemePlugin/translations/uz_UZ.ts b/plugins/ThemePlugin/translations/uz_UZ.ts index c0e02624..80b556be 100644 --- a/plugins/ThemePlugin/translations/uz_UZ.ts +++ b/plugins/ThemePlugin/translations/uz_UZ.ts @@ -44,7 +44,7 @@ ThemeSettingsPane - + Theme @@ -144,15 +144,25 @@ - + + Bar Opacity + + + + Transparency Effects - + EFFECTS + + + 100% + + Set the appearance of buttons, text boxes and other interface elements diff --git a/plugins/ThemePlugin/translations/ve_ZA.ts b/plugins/ThemePlugin/translations/ve_ZA.ts index dfc2be9b..20d17a5e 100644 --- a/plugins/ThemePlugin/translations/ve_ZA.ts +++ b/plugins/ThemePlugin/translations/ve_ZA.ts @@ -44,7 +44,7 @@ ThemeSettingsPane - + Theme @@ -144,15 +144,25 @@ - + + Bar Opacity + + + + Transparency Effects - + EFFECTS + + + 100% + + Set the appearance of buttons, text boxes and other interface elements diff --git a/plugins/ThemePlugin/translations/vi_VN.ts b/plugins/ThemePlugin/translations/vi_VN.ts index 8da31a9e..84172abd 100644 --- a/plugins/ThemePlugin/translations/vi_VN.ts +++ b/plugins/ThemePlugin/translations/vi_VN.ts @@ -44,7 +44,7 @@ ThemeSettingsPane - + Theme Giao diện @@ -144,15 +144,25 @@ Nhập ở đây! - + + Bar Opacity + + + + Transparency Effects - + EFFECTS + + + 100% + + Set the appearance of buttons, text boxes and other interface elements diff --git a/plugins/ThemePlugin/translations/zh_CN.ts b/plugins/ThemePlugin/translations/zh_CN.ts index dfc2be9b..20d17a5e 100644 --- a/plugins/ThemePlugin/translations/zh_CN.ts +++ b/plugins/ThemePlugin/translations/zh_CN.ts @@ -44,7 +44,7 @@ ThemeSettingsPane - + Theme @@ -144,15 +144,25 @@ - + + Bar Opacity + + + + Transparency Effects - + EFFECTS + + + 100% + + Set the appearance of buttons, text boxes and other interface elements diff --git a/plugins/ThemePlugin/translations/zh_SG.ts b/plugins/ThemePlugin/translations/zh_SG.ts index 519c6d4f..6b6aa1c7 100644 --- a/plugins/ThemePlugin/translations/zh_SG.ts +++ b/plugins/ThemePlugin/translations/zh_SG.ts @@ -44,7 +44,7 @@ ThemeSettingsPane - + Theme @@ -144,15 +144,25 @@ - + + Bar Opacity + + + + Transparency Effects - + EFFECTS + + + 100% + + Set the appearance of buttons, text boxes and other interface elements diff --git a/plugins/ThemePlugin/translations/zu_ZA.ts b/plugins/ThemePlugin/translations/zu_ZA.ts index dfc2be9b..20d17a5e 100644 --- a/plugins/ThemePlugin/translations/zu_ZA.ts +++ b/plugins/ThemePlugin/translations/zu_ZA.ts @@ -44,7 +44,7 @@ ThemeSettingsPane - + Theme @@ -144,15 +144,25 @@ - + + Bar Opacity + + + + Transparency Effects - + EFFECTS + + + 100% + + Set the appearance of buttons, text boxes and other interface elements