diff --git a/app/slider/README.md b/app/slider/README.md
deleted file mode 100644
index e69de29bb2d1d..0000000000000
diff --git a/app/slider/client/index.js b/app/slider/client/index.js
deleted file mode 100644
index 3e9e383b457f5..0000000000000
--- a/app/slider/client/index.js
+++ /dev/null
@@ -1,2 +0,0 @@
-import './rocketchat-slider.html';
-import './rocketchat-slider';
diff --git a/app/slider/client/rocketchat-slider.html b/app/slider/client/rocketchat-slider.html
deleted file mode 100644
index 067087ea23a8f..0000000000000
--- a/app/slider/client/rocketchat-slider.html
+++ /dev/null
@@ -1,6 +0,0 @@
-
-
-
-
-
-
diff --git a/app/slider/client/rocketchat-slider.js b/app/slider/client/rocketchat-slider.js
deleted file mode 100644
index ea7edb3000a24..0000000000000
--- a/app/slider/client/rocketchat-slider.js
+++ /dev/null
@@ -1,18 +0,0 @@
-import { Template } from 'meteor/templating';
-
-Template.slider.onRendered(function() {
- const params = this.data;
-
- const rangeSlider = function() {
- const range = $(`#${ params.id }`);
- const labelValue = $(`#${ params.id }_value`);
-
- labelValue.html(params.value);
-
- range.on('input', function() {
- labelValue.html(this.value);
- });
- };
-
- rangeSlider();
-});
diff --git a/app/slider/index.js b/app/slider/index.js
deleted file mode 100644
index 40a7340d38877..0000000000000
--- a/app/slider/index.js
+++ /dev/null
@@ -1 +0,0 @@
-export * from './client/index';
diff --git a/app/theme/client/imports/components/slider.css b/app/theme/client/imports/components/slider.css
deleted file mode 100644
index 6254726885f7e..0000000000000
--- a/app/theme/client/imports/components/slider.css
+++ /dev/null
@@ -1,88 +0,0 @@
-.range-slider {
- width: 100%;
- margin: 0;
-}
-
-.range-slider-range {
- width: calc(100% - 73px);
- height: 10px;
- margin: 0;
- padding: 0;
-
- border-radius: 5px;
- outline: none;
- appearance: none;
-}
-
-.range-slider-range::-webkit-slider-thumb {
- width: 20px;
- height: 20px;
-
- cursor: pointer;
- transition: background 0.15s ease-in-out;
-
- border-radius: 50%;
- appearance: none;
-}
-
-.range-slider-range::-moz-range-thumb {
- width: 20px;
- height: 20px;
-
- cursor: pointer;
- transition: background 0.15s ease-in-out;
-
- border: 0;
- border-radius: 50%;
-}
-
-.range-slider-value {
- position: relative;
-
- display: inline-block;
-
- width: 60px;
- margin-left: 8px;
- padding: 5px 10px;
-
- text-align: center;
-
- border-radius: 3px;
-
- line-height: 20px;
-}
-
-.rtl .range-slider-value {
- margin-right: 8px;
- margin-left: unset;
-}
-
-.range-slider-value::after {
- position: absolute;
- top: 8px;
- left: -7px;
-
- width: 0;
- height: 0;
-
- content: '';
-
- border-top: 7px solid;
- border-right: 7px solid;
- border-bottom: 7px solid;
-}
-
-.rtl .range-slider-value::after {
- right: -7px;
- left: unset;
-
- -ms-transform: rotate(180deg); /* IE 9 */
- -webkit-transform: rotate(180deg); /* Chrome, Safari, Opera */
- transform: rotate(180deg);
-}
-
-.range-slider-range::-moz-range-track,
-.range-slider-range::-moz-focus-inner,
-.range-slider-range::-moz-focus-outer {
- border: 0;
-}
diff --git a/app/theme/client/imports/general/theme_old.css b/app/theme/client/imports/general/theme_old.css
index 0f00d263728b5..9968e1ea86283 100644
--- a/app/theme/client/imports/general/theme_old.css
+++ b/app/theme/client/imports/general/theme_old.css
@@ -82,14 +82,6 @@
background-color: var(--attention-color);
}
-.tertiary-background-color {
- background-color: var(--tertiary-background-color);
-}
-
-.border-tertiary-background-color {
- border-color: var(--tertiary-background-color);
-}
-
.color-tertiary-font-color {
color: var(--tertiary-font-color);
}
@@ -512,42 +504,3 @@ label.required::after {
opacity: inherit;
}
}
-
-.range-slider-range::-webkit-slider-thumb {
- background-color: var(--button-primary-background);
-}
-
-.range-slider-range::-webkit-slider-thumb:hover {
- opacity: 0.6;
-}
-
-.range-slider-range:active::-webkit-slider-thumb {
- opacity: 0.9;
-}
-
-.range-slider-range::-moz-range-thumb {
- background-color: var(--button-primary-background);
-}
-
-.range-slider-range::-moz-range-thumb:hover {
- opacity: 0.6;
-}
-
-.range-slider-range:active::-moz-range-thumb {
- opacity: 0.9;
-}
-
-.range-slider-range::-moz-range-track {
- background-color: var(--tertiary-background-color);
-}
-
-.range-slider-value {
- color: var(--button-primary-text-color);
- background-color: var(--button-primary-background);
-}
-
-.range-slider-value::after {
- border-top-color: transparent;
- border-right-color: var(--rc-color-button-primary);
- border-bottom-color: transparent;
-}
diff --git a/app/theme/client/imports/general/variables.css b/app/theme/client/imports/general/variables.css
index c11d7895def1b..a8685f870700d 100644
--- a/app/theme/client/imports/general/variables.css
+++ b/app/theme/client/imports/general/variables.css
@@ -82,7 +82,6 @@
/* #endregion */
/* #region less-colors Old Colors (minor) */
- --tertiary-background-color: var(--component-color);
--tertiary-font-color: var(--transparent-lightest);
--link-font-color: var(--primary-action-color);
--info-font-color: var(--secondary-font-color);
diff --git a/app/theme/client/main.css b/app/theme/client/main.css
index 0cb5264836804..be46d0964eab0 100644
--- a/app/theme/client/main.css
+++ b/app/theme/client/main.css
@@ -40,7 +40,6 @@
@import 'imports/components/alerts.css';
@import 'imports/components/popout.css';
@import 'imports/components/modal.css';
-@import 'imports/components/slider.css';
@import 'imports/components/chip.css';
@import 'imports/components/messages.css';
@import 'imports/components/contextual-bar.css';
diff --git a/client/importPackages.js b/client/importPackages.js
index dd2237e465461..3735b587e6d8d 100644
--- a/client/importPackages.js
+++ b/client/importPackages.js
@@ -64,7 +64,6 @@ import '../app/slashcommands-kick/client';
import '../app/slashcommands-open';
import '../app/slashcommands-topic/client';
import '../app/slashcommands-unarchiveroom/client';
-import '../app/slider';
import '../app/spotify/client';
import '../app/tokenpass/client';
import '../app/ui';
diff --git a/packages/rocketchat-i18n/i18n/af.i18n.json b/packages/rocketchat-i18n/i18n/af.i18n.json
index 68933c9fd224f..3bb8ae769b2fe 100644
--- a/packages/rocketchat-i18n/i18n/af.i18n.json
+++ b/packages/rocketchat-i18n/i18n/af.i18n.json
@@ -2495,7 +2495,6 @@
"theme-color-status-offline": "Vanlyn Status Kleur",
"theme-color-status-online": "Aanlyn status kleur",
"theme-color-success-color": "Sukses Kleur",
- "theme-color-tertiary-background-color": "Tersiêre agtergrondkleur",
"theme-color-tertiary-font-color": "Tersiêre Font Kleur",
"theme-color-transparent-dark": "Deursigtige Donker",
"theme-color-transparent-darker": "Deursigtiger Donker",
@@ -2842,4 +2841,4 @@
"Your_push_was_sent_to_s_devices": "Jou druk is gestuur na%s toestelle",
"Your_server_link": "Jou bediener skakel",
"Your_workspace_is_ready": "Jou werkruimte is gereed om 🎉 te gebruik"
-}
\ No newline at end of file
+}
diff --git a/packages/rocketchat-i18n/i18n/ar.i18n.json b/packages/rocketchat-i18n/i18n/ar.i18n.json
index c37175caedc90..5a725f2991bac 100644
--- a/packages/rocketchat-i18n/i18n/ar.i18n.json
+++ b/packages/rocketchat-i18n/i18n/ar.i18n.json
@@ -2490,7 +2490,6 @@
"theme-color-status-offline": "حاليا وضع اللون",
"theme-color-status-online": "الحالة عبر الإنترنت اللون",
"theme-color-success-color": "لون النجاح",
- "theme-color-tertiary-background-color": "التعليم العالي لون الخلفية",
"theme-color-tertiary-font-color": "التعليم العالي لون الخط",
"theme-color-transparent-dark": "شفاف قاتم",
"theme-color-transparent-darker": "شفاف أكثر قتماً",
@@ -2837,4 +2836,4 @@
"Your_push_was_sent_to_s_devices": "وقد أرسلت دفعك إلى أجهزة٪ الصورة",
"Your_server_link": "رابط الخادم الخاص بك",
"Your_workspace_is_ready": "مساحة العمل الخاصة بك جاهزة لاستخدام 🎉"
-}
\ No newline at end of file
+}
diff --git a/packages/rocketchat-i18n/i18n/az.i18n.json b/packages/rocketchat-i18n/i18n/az.i18n.json
index f04b49b0e60b0..2d868608eb1ee 100644
--- a/packages/rocketchat-i18n/i18n/az.i18n.json
+++ b/packages/rocketchat-i18n/i18n/az.i18n.json
@@ -2495,7 +2495,6 @@
"theme-color-status-offline": "Offline Durumu Rəngi",
"theme-color-status-online": "Online Status Rəng",
"theme-color-success-color": "Müvəffəqiyyət Rəngi",
- "theme-color-tertiary-background-color": "Tersiyer Arka Plan Rəngi",
"theme-color-tertiary-font-color": "Tersiar Font Rəngi",
"theme-color-transparent-dark": "Şəffaf Qara",
"theme-color-transparent-darker": "Şəffaf Darker",
@@ -2842,4 +2841,4 @@
"Your_push_was_sent_to_s_devices": "Sizin itəniz%s cihazlarına göndərildi",
"Your_server_link": "Sizin server bağlantınız",
"Your_workspace_is_ready": "İş yeriniz 🎉 istifadə etməyə hazırdır"
-}
\ No newline at end of file
+}
diff --git a/packages/rocketchat-i18n/i18n/be-BY.i18n.json b/packages/rocketchat-i18n/i18n/be-BY.i18n.json
index ae91fcbb81979..1c489177b29e3 100644
--- a/packages/rocketchat-i18n/i18n/be-BY.i18n.json
+++ b/packages/rocketchat-i18n/i18n/be-BY.i18n.json
@@ -2510,7 +2510,6 @@
"theme-color-status-offline": "Offline Колер Статус",
"theme-color-status-online": "Інтэрнэт Колер Стан",
"theme-color-success-color": "поспех Колер",
- "theme-color-tertiary-background-color": "Троесны Колер фону",
"theme-color-tertiary-font-color": "Троесны колер шрыфта",
"theme-color-transparent-dark": "празрысты Цёмны",
"theme-color-transparent-darker": "празрысты Цямней",
@@ -2857,4 +2856,4 @@
"Your_push_was_sent_to_s_devices": "Ваш штуршок быў адпраўлены ў%s прылад",
"Your_server_link": "Ваша спасылка сервера",
"Your_workspace_is_ready": "Ваша працоўная вобласць гатова да выкарыстання 🎉"
-}
\ No newline at end of file
+}
diff --git a/packages/rocketchat-i18n/i18n/bg.i18n.json b/packages/rocketchat-i18n/i18n/bg.i18n.json
index 63903f9fc583f..a6a1d09f3618e 100644
--- a/packages/rocketchat-i18n/i18n/bg.i18n.json
+++ b/packages/rocketchat-i18n/i18n/bg.i18n.json
@@ -2494,7 +2494,6 @@
"theme-color-status-offline": "Офлайн статус цвят",
"theme-color-status-online": "Цвят на състоянието онлайн",
"theme-color-success-color": "Цвят на успеха",
- "theme-color-tertiary-background-color": "Териториален цвят на фона",
"theme-color-tertiary-font-color": "Териториален цвят на шрифта",
"theme-color-transparent-dark": "Прозрачно тъмно",
"theme-color-transparent-darker": "Прозрачно тъмно",
@@ -2840,4 +2839,4 @@
"Your_push_was_sent_to_s_devices": "Натискането ви бе изпратено на %s устройства",
"Your_server_link": "Вашата сървърна връзка",
"Your_workspace_is_ready": "Работното ви пространство е готово за използване 🎉"
-}
\ No newline at end of file
+}
diff --git a/packages/rocketchat-i18n/i18n/bs.i18n.json b/packages/rocketchat-i18n/i18n/bs.i18n.json
index b15e633384fc0..0e8167d0e9c99 100644
--- a/packages/rocketchat-i18n/i18n/bs.i18n.json
+++ b/packages/rocketchat-i18n/i18n/bs.i18n.json
@@ -2493,7 +2493,6 @@
"theme-color-status-offline": "Boja izvanmrežnog statusa",
"theme-color-status-online": "Boja umreženog statusa",
"theme-color-success-color": "Boja uspješnog",
- "theme-color-tertiary-background-color": "Tercijarna boja pozadine",
"theme-color-tertiary-font-color": "Tercijarna boja slova",
"theme-color-transparent-dark": "Prozirno tamno",
"theme-color-transparent-darker": "Transparentno tamnije",
@@ -2840,4 +2839,4 @@
"Your_push_was_sent_to_s_devices": "Push obavijest je poslana %s uređaje",
"Your_server_link": "Veza poslužitelja",
"Your_workspace_is_ready": "Radni je prostor spreman za upotrebu 🎉"
-}
\ No newline at end of file
+}
diff --git a/packages/rocketchat-i18n/i18n/ca.i18n.json b/packages/rocketchat-i18n/i18n/ca.i18n.json
index 8c83c3bbcb7a5..37dbc5d5a8af7 100644
--- a/packages/rocketchat-i18n/i18n/ca.i18n.json
+++ b/packages/rocketchat-i18n/i18n/ca.i18n.json
@@ -2666,7 +2666,6 @@
"theme-color-status-offline": "Color de l'estat desconnectat",
"theme-color-status-online": "Color de l'estat connectat",
"theme-color-success-color": "Color de 'Correcte'",
- "theme-color-tertiary-background-color": "Color terciari del fons",
"theme-color-tertiary-font-color": "Color terciari del text",
"theme-color-transparent-dark": "Transparent fosc",
"theme-color-transparent-darker": "Transparent més fosc",
@@ -3013,4 +3012,4 @@
"Your_push_was_sent_to_s_devices": "La notificació push s'ha enviat a %s dispositius",
"Your_server_link": "El vostre enllaç del servidor",
"Your_workspace_is_ready": "El vostre espai de treball està a punt per utilitzar 🎉"
-}
\ No newline at end of file
+}
diff --git a/packages/rocketchat-i18n/i18n/cs.i18n.json b/packages/rocketchat-i18n/i18n/cs.i18n.json
index 89262fa9684fe..5568414cffa57 100644
--- a/packages/rocketchat-i18n/i18n/cs.i18n.json
+++ b/packages/rocketchat-i18n/i18n/cs.i18n.json
@@ -3511,7 +3511,6 @@
"theme-color-status-offline": "Barva stavu Offline",
"theme-color-status-online": "Barva stavu Online",
"theme-color-success-color": "Barva zdařené akce",
- "theme-color-tertiary-background-color": "Terciární Barva pozadí",
"theme-color-tertiary-font-color": "Terciární Barva písma",
"theme-color-transparent-dark": "Průhledná tmavá",
"theme-color-transparent-darker": "Průhledná tmavší",
@@ -3990,4 +3989,4 @@
"Your_server_link": "Odkaz na Váš server",
"Your_temporary_password_is_password": "Vaše dočasné heslo je [password].",
"Your_workspace_is_ready": "Váš prostředí je připraveno k použití 🎉"
-}
\ No newline at end of file
+}
diff --git a/packages/rocketchat-i18n/i18n/cy.i18n.json b/packages/rocketchat-i18n/i18n/cy.i18n.json
index 73e2242554433..3cf6031ea550f 100644
--- a/packages/rocketchat-i18n/i18n/cy.i18n.json
+++ b/packages/rocketchat-i18n/i18n/cy.i18n.json
@@ -2492,7 +2492,6 @@
"theme-color-status-offline": "Lliw Statws Offline",
"theme-color-status-online": "Lliw Statws Ar-Lein",
"theme-color-success-color": "Lliw Llwyddiant",
- "theme-color-tertiary-background-color": "Lliw Cefndir Trydyddol",
"theme-color-tertiary-font-color": "Lliw Ffont Trydyddol",
"theme-color-transparent-dark": "Tywyll Trafod",
"theme-color-transparent-darker": "Tywyll Tywyll",
@@ -2839,4 +2838,4 @@
"Your_push_was_sent_to_s_devices": "Anfonwyd eich gwthio i ddyfeisiau %s",
"Your_server_link": "Dolen eich gweinydd",
"Your_workspace_is_ready": "Mae'ch gweithle yn barod i ddefnyddio 🎉"
-}
\ No newline at end of file
+}
diff --git a/packages/rocketchat-i18n/i18n/da.i18n.json b/packages/rocketchat-i18n/i18n/da.i18n.json
index 3fb70a939eb99..3995f640c6188 100644
--- a/packages/rocketchat-i18n/i18n/da.i18n.json
+++ b/packages/rocketchat-i18n/i18n/da.i18n.json
@@ -3522,7 +3522,6 @@
"theme-color-status-offline": "Offline Status Farve",
"theme-color-status-online": "Online Status Farve",
"theme-color-success-color": "Succesfarve",
- "theme-color-tertiary-background-color": "Tertiær baggrundsfarve",
"theme-color-tertiary-font-color": "Tertiær skriftfarve",
"theme-color-transparent-dark": "Gennemsigtig Mørke",
"theme-color-transparent-darker": "Gennemsigtig Mørkere",
@@ -4002,4 +4001,4 @@
"Your_server_link": "Din server link",
"Your_temporary_password_is_password": "Din midlertidige adgangskode er [password].",
"Your_workspace_is_ready": "Dit arbejdsområde er klar til brug 🎉"
-}
\ No newline at end of file
+}
diff --git a/packages/rocketchat-i18n/i18n/de-AT.i18n.json b/packages/rocketchat-i18n/i18n/de-AT.i18n.json
index b46f5a9709bcb..73db770b72b9a 100644
--- a/packages/rocketchat-i18n/i18n/de-AT.i18n.json
+++ b/packages/rocketchat-i18n/i18n/de-AT.i18n.json
@@ -2500,7 +2500,6 @@
"theme-color-status-offline": "Farbe des Status \"offline\"",
"theme-color-status-online": "Farbe des Status \"online\"",
"theme-color-success-color": "Erfolgsfarbe",
- "theme-color-tertiary-background-color": "Tertiäre Hintergrundfarbe ",
"theme-color-tertiary-font-color": "Tertiäre Schriftfarbe",
"theme-color-transparent-dark": "Transparente Dunkelheit",
"theme-color-transparent-darker": "Transparenter dunkler",
@@ -2848,4 +2847,4 @@
"Your_push_was_sent_to_s_devices": "Die Push-Nachricht wurde an %s Geräte gesendet.",
"Your_server_link": "Ihre Serververbindung",
"Your_workspace_is_ready": "Ihr Arbeitsbereich ist einsatzbereit 🎉"
-}
\ No newline at end of file
+}
diff --git a/packages/rocketchat-i18n/i18n/de-IN.i18n.json b/packages/rocketchat-i18n/i18n/de-IN.i18n.json
index 2387844537460..aa9365d822661 100644
--- a/packages/rocketchat-i18n/i18n/de-IN.i18n.json
+++ b/packages/rocketchat-i18n/i18n/de-IN.i18n.json
@@ -2848,7 +2848,6 @@
"theme-color-status-offline": "Farbe des Status \"offline\"",
"theme-color-status-online": "Farbe des Status \"online\"",
"theme-color-success-color": "Farbe für Erfolg",
- "theme-color-tertiary-background-color": "Tertiäre Hintergrundfarbe ",
"theme-color-tertiary-font-color": "Tertiäre Schriftfarbe",
"theme-color-transparent-dark": "Transparent dunkel",
"theme-color-transparent-darker": "Transparent dunkler",
@@ -3241,4 +3240,4 @@
"Your_question": "Deine Frage",
"Your_server_link": "Dein Server-Link",
"Your_workspace_is_ready": "Dein Arbeitsbereich ist einsatzbereit 🎉"
-}
\ No newline at end of file
+}
diff --git a/packages/rocketchat-i18n/i18n/de.i18n.json b/packages/rocketchat-i18n/i18n/de.i18n.json
index 191e2f4c6e27a..1dbb083bb79eb 100644
--- a/packages/rocketchat-i18n/i18n/de.i18n.json
+++ b/packages/rocketchat-i18n/i18n/de.i18n.json
@@ -3145,7 +3145,6 @@
"theme-color-status-offline": "Farbe des Status \"offline\"",
"theme-color-status-online": "Farbe des Status \"online\"",
"theme-color-success-color": "Farbe für Erfolg",
- "theme-color-tertiary-background-color": "Tertiäre Hintergrundfarbe ",
"theme-color-tertiary-font-color": "Tertiäre Schriftfarbe",
"theme-color-transparent-dark": "Transparent dunkel",
"theme-color-transparent-darker": "Transparent dunkler",
@@ -3564,4 +3563,4 @@
"Your_server_link": "Ihre Serververbindung",
"Your_temporary_password_is_password": "Ihr temporäres Passwort lautet [password].",
"Your_workspace_is_ready": "Ihr Arbeitsbereich ist einsatzbereit 🎉"
-}
\ No newline at end of file
+}
diff --git a/packages/rocketchat-i18n/i18n/el.i18n.json b/packages/rocketchat-i18n/i18n/el.i18n.json
index a4790edf3d852..06a8d4c7cb01b 100644
--- a/packages/rocketchat-i18n/i18n/el.i18n.json
+++ b/packages/rocketchat-i18n/i18n/el.i18n.json
@@ -2500,7 +2500,6 @@
"theme-color-status-offline": "Offline Χρώμα Κατάσταση",
"theme-color-status-online": "Σε απευθείας σύνδεση Χρώμα Κατάσταση",
"theme-color-success-color": "Χρώμα επιτυχίας",
- "theme-color-tertiary-background-color": "Τριτοβάθμια χρώμα φόντου",
"theme-color-tertiary-font-color": "Τριτοβάθμια χρώμα γραμματοσειράς",
"theme-color-transparent-dark": "Διαφανές Σκούρο",
"theme-color-transparent-darker": "Διαφανής σκοτεινότερη",
@@ -2847,4 +2846,4 @@
"Your_push_was_sent_to_s_devices": "ώθηση σας στάλθηκε σε συσκευές %s",
"Your_server_link": "Σύνδεσμος διακομιστή σας",
"Your_workspace_is_ready": "Ο χώρος εργασίας σας είναι έτοιμος για χρήση 🎉"
-}
\ No newline at end of file
+}
diff --git a/packages/rocketchat-i18n/i18n/en.i18n.json b/packages/rocketchat-i18n/i18n/en.i18n.json
index 07d71f8f214e7..96ba98256e5ec 100644
--- a/packages/rocketchat-i18n/i18n/en.i18n.json
+++ b/packages/rocketchat-i18n/i18n/en.i18n.json
@@ -3539,7 +3539,6 @@
"theme-color-status-offline": "Offline Status Color",
"theme-color-status-online": "Online Status Color",
"theme-color-success-color": "Success Color",
- "theme-color-tertiary-background-color": "Tertiary Background Color",
"theme-color-tertiary-font-color": "Tertiary Font Color",
"theme-color-transparent-dark": "Transparent Dark",
"theme-color-transparent-darker": "Transparent Darker",
@@ -4022,4 +4021,4 @@
"Your_server_link": "Your server link",
"Your_temporary_password_is_password": "Your temporary password is [password].",
"Your_workspace_is_ready": "Your workspace is ready to use 🎉"
-}
\ No newline at end of file
+}
diff --git a/packages/rocketchat-i18n/i18n/eo.i18n.json b/packages/rocketchat-i18n/i18n/eo.i18n.json
index 14f57327216aa..2b661877cc55a 100644
--- a/packages/rocketchat-i18n/i18n/eo.i18n.json
+++ b/packages/rocketchat-i18n/i18n/eo.i18n.json
@@ -2495,7 +2495,6 @@
"theme-color-status-offline": "Senkonekta Statusa Koloro",
"theme-color-status-online": "Enreta Statusa Koloro",
"theme-color-success-color": "Sukcesa Koloro",
- "theme-color-tertiary-background-color": "Tertiara Fona Koloro",
"theme-color-tertiary-font-color": "Tertiara Tipara Koloro",
"theme-color-transparent-dark": "Travidebla Malluma",
"theme-color-transparent-darker": "Travidebla malhela",
@@ -2842,4 +2841,4 @@
"Your_push_was_sent_to_s_devices": "Via push estis sendita al%s aparatoj",
"Your_server_link": "Via servilo-ligilo",
"Your_workspace_is_ready": "Via labora spaco pretas uzi 🎉"
-}
\ No newline at end of file
+}
diff --git a/packages/rocketchat-i18n/i18n/es.i18n.json b/packages/rocketchat-i18n/i18n/es.i18n.json
index da92597c6fd8b..c1d0320a12443 100644
--- a/packages/rocketchat-i18n/i18n/es.i18n.json
+++ b/packages/rocketchat-i18n/i18n/es.i18n.json
@@ -3042,7 +3042,6 @@
"theme-color-status-offline": "Color de Estado Desconectado",
"theme-color-status-online": "Color de Estado Conectado",
"theme-color-success-color": "Color de éxito",
- "theme-color-tertiary-background-color": "Color de Fondo Terciario",
"theme-color-tertiary-font-color": "Color de fuente Terciario",
"theme-color-transparent-dark": "Transparente oscuro",
"theme-color-transparent-darker": "Transparente más oscuro",
@@ -3396,4 +3395,4 @@
"Your_push_was_sent_to_s_devices": "Su push fue enviado a los dispositivos %s",
"Your_server_link": "Su enlace del servidor",
"Your_workspace_is_ready": "Su espacio de trabajo está listo para usar 🎉"
-}
\ No newline at end of file
+}
diff --git a/packages/rocketchat-i18n/i18n/fa.i18n.json b/packages/rocketchat-i18n/i18n/fa.i18n.json
index d7a180837caf6..f11f87ca94908 100644
--- a/packages/rocketchat-i18n/i18n/fa.i18n.json
+++ b/packages/rocketchat-i18n/i18n/fa.i18n.json
@@ -2721,7 +2721,6 @@
"theme-color-status-offline": "وضعیت: آفلاین رنگ",
"theme-color-status-online": "وضعیت رنگ",
"theme-color-success-color": "رنگ موفقیت",
- "theme-color-tertiary-background-color": "دوران سوم رنگ پس زمینه",
"theme-color-tertiary-font-color": "دوران سوم رنگ قلم",
"theme-color-transparent-dark": "تاریک شفاف",
"theme-color-transparent-darker": "تاریک تر شفاف",
@@ -3067,4 +3066,4 @@
"Your_push_was_sent_to_s_devices": "فشار خود را به دستگاه %s را ارسال شد",
"Your_server_link": "لینک سرور شما",
"Your_workspace_is_ready": "فضای کاری شما آماده استفاده است"
-}
\ No newline at end of file
+}
diff --git a/packages/rocketchat-i18n/i18n/fi.i18n.json b/packages/rocketchat-i18n/i18n/fi.i18n.json
index 33827fc404fab..37c2dab9cd4a1 100644
--- a/packages/rocketchat-i18n/i18n/fi.i18n.json
+++ b/packages/rocketchat-i18n/i18n/fi.i18n.json
@@ -2494,7 +2494,6 @@
"theme-color-status-offline": "Offline-tilan väri",
"theme-color-status-online": "Online-tilan väri",
"theme-color-success-color": "Menestysväri",
- "theme-color-tertiary-background-color": "Tertiäärinen (se kolmas) taustaväri",
"theme-color-tertiary-font-color": "Tertiäärinen (se kolmas) fontin väri",
"theme-color-transparent-dark": "Läpinäkyvä tumma",
"theme-color-transparent-darker": "Läpinäkyvä tummempi",
@@ -2841,4 +2840,4 @@
"Your_push_was_sent_to_s_devices": "Push-viestisi lähetettiin %s laitteeseen",
"Your_server_link": "Palvelimesi linkki",
"Your_workspace_is_ready": "Työtila on valmis käyttämään 🎉"
-}
\ No newline at end of file
+}
diff --git a/packages/rocketchat-i18n/i18n/fr.i18n.json b/packages/rocketchat-i18n/i18n/fr.i18n.json
index fb8f73d2126fd..707d3d085b552 100644
--- a/packages/rocketchat-i18n/i18n/fr.i18n.json
+++ b/packages/rocketchat-i18n/i18n/fr.i18n.json
@@ -2728,7 +2728,6 @@
"theme-color-status-offline": "Couleur du statut \"Hors-ligne\"",
"theme-color-status-online": "Couleur du statut \"Connecté\"",
"theme-color-success-color": "Couleur de succès",
- "theme-color-tertiary-background-color": "Couleur de fond tertiaire (contenu)",
"theme-color-tertiary-font-color": "Couleur de police tertiaire (contenu)",
"theme-color-transparent-dark": "Noir transparent",
"theme-color-transparent-darker": "Plus sombre",
@@ -3146,4 +3145,4 @@
"Your_server_link": "Le lien de votre serveur",
"Your_temporary_password_is_password": "Votre mot de passe temporaire est [password].",
"Your_workspace_is_ready": "Votre espace de travail est prêt à l'emploi 🎉"
-}
\ No newline at end of file
+}
diff --git a/packages/rocketchat-i18n/i18n/he.i18n.json b/packages/rocketchat-i18n/i18n/he.i18n.json
index 505d129afd312..200523fde3cdc 100644
--- a/packages/rocketchat-i18n/i18n/he.i18n.json
+++ b/packages/rocketchat-i18n/i18n/he.i18n.json
@@ -1331,7 +1331,6 @@
"theme-color-status-busy": "צבע סטטוס עסוק",
"theme-color-status-offline": "צבע סטטוס לא מחובר",
"theme-color-status-online": "צבע סטטוס זמין",
- "theme-color-tertiary-background-color": "צבע סטטוס ",
"theme-color-tertiary-font-color": "צבע פונט שלישי",
"theme-color-unread-notification-color": "צבע הודעות שלא נקראו",
"theme-custom-css": "CSS בהתאמה אישית",
@@ -1547,4 +1546,4 @@
"Your_password_is_wrong": "הסיסמה שלך שגויה!",
"Your_push_was_sent_to_s_devices": "הודעת ה-push נשלח בהצלחה ל-%s מכשירים",
"Your_question": "השאלה שלך"
-}
\ No newline at end of file
+}
diff --git a/packages/rocketchat-i18n/i18n/hr.i18n.json b/packages/rocketchat-i18n/i18n/hr.i18n.json
index 37c68bd871cbc..08fe24ac3f6ab 100644
--- a/packages/rocketchat-i18n/i18n/hr.i18n.json
+++ b/packages/rocketchat-i18n/i18n/hr.i18n.json
@@ -2628,7 +2628,6 @@
"theme-color-status-offline": "Boja izvanmrežnog statusa",
"theme-color-status-online": "Boja umreženog statusa",
"theme-color-success-color": "Boja uspješnog",
- "theme-color-tertiary-background-color": "Tercijarna boja pozadine",
"theme-color-tertiary-font-color": "Tercijarna boja slova",
"theme-color-transparent-dark": "Prozirno tamno",
"theme-color-transparent-darker": "Transparentno tamnije",
@@ -2975,4 +2974,4 @@
"Your_push_was_sent_to_s_devices": "Push obavijest je poslana %s uređaje",
"Your_server_link": "Veza poslužitelja",
"Your_workspace_is_ready": "Radni je prostor spreman za upotrebu 🎉"
-}
\ No newline at end of file
+}
diff --git a/packages/rocketchat-i18n/i18n/hu.i18n.json b/packages/rocketchat-i18n/i18n/hu.i18n.json
index 6eed30613518b..fe0df465bacbe 100644
--- a/packages/rocketchat-i18n/i18n/hu.i18n.json
+++ b/packages/rocketchat-i18n/i18n/hu.i18n.json
@@ -2945,7 +2945,6 @@
"theme-color-status-offline": "Offline állapot Színe",
"theme-color-status-online": "Online állapot színe",
"theme-color-success-color": "Siker színe",
- "theme-color-tertiary-background-color": "Harmadlagos háttérszín",
"theme-color-tertiary-font-color": "Harmadlagos betűszín",
"theme-color-transparent-dark": "Átlátszó sötét",
"theme-color-transparent-darker": "Átlátszó sötétebb",
@@ -3348,4 +3347,4 @@
"Your_question": "Kérdésed",
"Your_server_link": "A szerver linkje",
"Your_workspace_is_ready": "A munkaterület készen áll a 🎉 használatára"
-}
\ No newline at end of file
+}
diff --git a/packages/rocketchat-i18n/i18n/id.i18n.json b/packages/rocketchat-i18n/i18n/id.i18n.json
index ad87f29be18a4..0f622baa8d3da 100644
--- a/packages/rocketchat-i18n/i18n/id.i18n.json
+++ b/packages/rocketchat-i18n/i18n/id.i18n.json
@@ -2503,7 +2503,6 @@
"theme-color-status-offline": "Offline Warna Status",
"theme-color-status-online": "Secara online Color Status",
"theme-color-success-color": "Warna Sukses",
- "theme-color-tertiary-background-color": "Tersier Warna Background",
"theme-color-tertiary-font-color": "Tersier Font Color",
"theme-color-transparent-dark": "Transparan Gelap",
"theme-color-transparent-darker": "Transparan Darker",
@@ -2850,4 +2849,4 @@
"Your_push_was_sent_to_s_devices": "push dikirim ke%s perangkat",
"Your_server_link": "Tautan server Anda",
"Your_workspace_is_ready": "Ruang kerja Anda siap digunakan 🎉"
-}
\ No newline at end of file
+}
diff --git a/packages/rocketchat-i18n/i18n/it.i18n.json b/packages/rocketchat-i18n/i18n/it.i18n.json
index ddca075b6bf30..be037be086634 100644
--- a/packages/rocketchat-i18n/i18n/it.i18n.json
+++ b/packages/rocketchat-i18n/i18n/it.i18n.json
@@ -2532,7 +2532,6 @@
"theme-color-status-offline": "Colore dello Stato Offline ",
"theme-color-status-online": "Colore dello Stato Online ",
"theme-color-success-color": "Colore \"Successo\"",
- "theme-color-tertiary-background-color": "Colore di Sfondo Terziario",
"theme-color-tertiary-font-color": "Colore del Carattere Terzario",
"theme-color-transparent-dark": "Trasparente scuro",
"theme-color-transparent-darker": "Trasparente molto scuro",
@@ -2884,4 +2883,4 @@
"Your_push_was_sent_to_s_devices": "La tua richiesta è stata inviata ai %s dispositivi.",
"Your_server_link": "Il tuo collegamento al server",
"Your_workspace_is_ready": "Il tuo spazio di lavoro è pronto per l'uso 🎉"
-}
\ No newline at end of file
+}
diff --git a/packages/rocketchat-i18n/i18n/ja.i18n.json b/packages/rocketchat-i18n/i18n/ja.i18n.json
index d6609102b0dca..4a754cd199e80 100644
--- a/packages/rocketchat-i18n/i18n/ja.i18n.json
+++ b/packages/rocketchat-i18n/i18n/ja.i18n.json
@@ -3530,7 +3530,6 @@
"theme-color-status-offline": "状態を隠すステータスの色",
"theme-color-status-online": "オンライン中ステータスの色",
"theme-color-success-color": "成功の色",
- "theme-color-tertiary-background-color": "第三 背景色",
"theme-color-tertiary-font-color": "第三 文字色",
"theme-color-transparent-dark": "透過 暗い色",
"theme-color-transparent-darker": "透過 より暗い色",
@@ -4011,4 +4010,4 @@
"Your_server_link": "サーバーのURLはこちら",
"Your_temporary_password_is_password": "一時的なパスワードは[password]です。",
"Your_workspace_is_ready": "ワークスペースの準備ができました🎉"
-}
\ No newline at end of file
+}
diff --git a/packages/rocketchat-i18n/i18n/ka-GE.i18n.json b/packages/rocketchat-i18n/i18n/ka-GE.i18n.json
index 1c8872c94c3d0..c6982b779f075 100644
--- a/packages/rocketchat-i18n/i18n/ka-GE.i18n.json
+++ b/packages/rocketchat-i18n/i18n/ka-GE.i18n.json
@@ -3258,7 +3258,6 @@
"theme-color-status-offline": "\"არ არის შემოსული\" სტატუსის ფერი",
"theme-color-status-online": "\"შემოსულია\" სტატუსის ფერი",
"theme-color-success-color": "წარმატების ფერი",
- "theme-color-tertiary-background-color": "ფონის მესამედი ფერი",
"theme-color-tertiary-font-color": "შრიფტის მესამედი ფერი",
"theme-color-transparent-dark": "გამჭირვალე მუქი",
"theme-color-transparent-darker": "უფრო მუქი გამჭირვალე",
@@ -3687,4 +3686,4 @@
"Your_server_link": "თქვენი სერვერის მისამართი",
"Your_temporary_password_is_password": "თქვენი დროებითი პაროლია არის [password]",
"Your_workspace_is_ready": "თქვენი სამუშაო გარემო მზად არის სამუშაოდ 🎉"
-}
\ No newline at end of file
+}
diff --git a/packages/rocketchat-i18n/i18n/km.i18n.json b/packages/rocketchat-i18n/i18n/km.i18n.json
index 0856f534b736c..b9c53d4045917 100644
--- a/packages/rocketchat-i18n/i18n/km.i18n.json
+++ b/packages/rocketchat-i18n/i18n/km.i18n.json
@@ -2797,7 +2797,6 @@
"theme-color-status-offline": "ពណ៌ស្ថានភាពក្រៅបណ្តាញ",
"theme-color-status-online": "ពណ៌ស្ថានភាពលើបណ្តាញ",
"theme-color-success-color": "ពណ៌ជោគជ័យ",
- "theme-color-tertiary-background-color": "ផ្ទៃខាងក្រោយឧត្តមសិក្សា",
"theme-color-tertiary-font-color": "ឧត្តមសិក្សាល័ពុម្ពអក្សរ",
"theme-color-transparent-dark": "ថ្លាថ្លា",
"theme-color-transparent-darker": "ថ្លាថ្លា",
@@ -3168,4 +3167,4 @@
"Your_push_was_sent_to_s_devices": "ការជំរុញរបស់អ្នកត្រូវបានបញ្ជូនទៅកាន់ឧបករណ៍ %s បាន",
"Your_server_link": "តំណភ្ជាប់ម៉ាស៊ីនមេរបស់អ្នក",
"Your_workspace_is_ready": "កន្លែងធ្វើការរបស់អ្នករួចរាល់ដើម្បីប្រើ🎉"
-}
\ No newline at end of file
+}
diff --git a/packages/rocketchat-i18n/i18n/ko.i18n.json b/packages/rocketchat-i18n/i18n/ko.i18n.json
index 2dc6349a669d3..e188f0c8b5464 100644
--- a/packages/rocketchat-i18n/i18n/ko.i18n.json
+++ b/packages/rocketchat-i18n/i18n/ko.i18n.json
@@ -3522,7 +3522,6 @@
"theme-color-status-offline": "오프라인 상태 색상",
"theme-color-status-online": "온라인 상태 색상",
"theme-color-success-color": "성공 색상",
- "theme-color-tertiary-background-color": "하위 배경색",
"theme-color-tertiary-font-color": "하위 글꼴 색상",
"theme-color-transparent-dark": "투명배경 어두운 색상",
"theme-color-transparent-darker": "투명배경 더 어두운 색상",
@@ -4002,4 +4001,4 @@
"Your_server_link": "서버 링크",
"Your_temporary_password_is_password": "임시 비밀번호는 [password] 입니다.",
"Your_workspace_is_ready": " Workspace를 사용할 준비가 되었습니다."
-}
\ No newline at end of file
+}
diff --git a/packages/rocketchat-i18n/i18n/ku.i18n.json b/packages/rocketchat-i18n/i18n/ku.i18n.json
index 3f97660bc5bc1..22283f222f03e 100644
--- a/packages/rocketchat-i18n/i18n/ku.i18n.json
+++ b/packages/rocketchat-i18n/i18n/ku.i18n.json
@@ -2490,7 +2490,6 @@
"theme-color-status-offline": "Rewş is Color",
"theme-color-status-online": "Bike Status Color",
"theme-color-success-color": "Çareseriya Serkeftî",
- "theme-color-tertiary-background-color": "Kirmashan Color Background",
"theme-color-tertiary-font-color": "Kirmashan Font Color",
"theme-color-transparent-dark": "Dark Dark",
"theme-color-transparent-darker": "Dark Dark",
@@ -2837,4 +2836,4 @@
"Your_push_was_sent_to_s_devices": "push xwe ji bo cîhazên %s hate şandin",
"Your_server_link": "Girêdana serverê",
"Your_workspace_is_ready": "Karên te yên amadekar e amade ye"
-}
\ No newline at end of file
+}
diff --git a/packages/rocketchat-i18n/i18n/lo.i18n.json b/packages/rocketchat-i18n/i18n/lo.i18n.json
index bf8df0f5e6e28..cc1266e724f9d 100644
--- a/packages/rocketchat-i18n/i18n/lo.i18n.json
+++ b/packages/rocketchat-i18n/i18n/lo.i18n.json
@@ -2501,7 +2501,6 @@
"theme-color-status-offline": "ອອຟໄລສີສະຖານະ",
"theme-color-status-online": "ອອນໄລນ໌ສີສະຖານະ",
"theme-color-success-color": "ສີສົບຜົນສໍາເລັດ",
- "theme-color-tertiary-background-color": "ສາມສີຄວາມເປັນມາ",
"theme-color-tertiary-font-color": "ສາມສີຕົວອັກສອນ",
"theme-color-transparent-dark": "Transparent Dark",
"theme-color-transparent-darker": "Transparent Darker",
@@ -2848,4 +2847,4 @@
"Your_push_was_sent_to_s_devices": "ການຊຸກຍູ້ຂອງທ່ານໄດ້ຖືກສົ່ງໄປອຸປະກອນ %s",
"Your_server_link": "ເຊື່ອມຕໍ່ເຊີຟເວີຂອງທ່ານ",
"Your_workspace_is_ready": "ພື້ນທີ່ເຮັດວຽກຂອງທ່ານແມ່ນພ້ອມທີ່ຈະໃຊ້🎉"
-}
\ No newline at end of file
+}
diff --git a/packages/rocketchat-i18n/i18n/lt.i18n.json b/packages/rocketchat-i18n/i18n/lt.i18n.json
index 5694a0def602e..016a6e207163b 100644
--- a/packages/rocketchat-i18n/i18n/lt.i18n.json
+++ b/packages/rocketchat-i18n/i18n/lt.i18n.json
@@ -2495,7 +2495,6 @@
"theme-color-status-offline": "Nepriklausomo būklės spalva",
"theme-color-status-online": "Internetinė būklės spalva",
"theme-color-success-color": "Sėkmės spalva",
- "theme-color-tertiary-background-color": "Tretinio fono spalva",
"theme-color-tertiary-font-color": "Tretinio fono spalva",
"theme-color-transparent-dark": "Skaidrus tamsus",
"theme-color-transparent-darker": "Skaidrus tamsesnis",
@@ -2842,4 +2841,4 @@
"Your_push_was_sent_to_s_devices": "Jūsų paspaudimas buvo išsiųstas į%s įrenginius",
"Your_server_link": "Jūsų serverio nuoroda",
"Your_workspace_is_ready": "Jūsų darbo vieta yra paruošta naudoti 🎉"
-}
\ No newline at end of file
+}
diff --git a/packages/rocketchat-i18n/i18n/lv.i18n.json b/packages/rocketchat-i18n/i18n/lv.i18n.json
index 50314c4bf8827..c10258c1cb77c 100644
--- a/packages/rocketchat-i18n/i18n/lv.i18n.json
+++ b/packages/rocketchat-i18n/i18n/lv.i18n.json
@@ -2478,7 +2478,6 @@
"theme-color-status-offline": "Bezsaistē statusa krāsa",
"theme-color-status-online": "Tiešsaistē statusa krāsa",
"theme-color-success-color": "Izdevās krāsa",
- "theme-color-tertiary-background-color": "Terciārā fona krāsa",
"theme-color-tertiary-font-color": "Terciārā fonta krāsa",
"theme-color-transparent-dark": "Caurspīdīgs tumšs",
"theme-color-transparent-darker": "Caurspīdīgs tumšāks",
@@ -2808,4 +2807,4 @@
"Your_push_was_sent_to_s_devices": "Jūsu push tika nosūtīts uz %s ierīcēm",
"Your_server_link": "Jūsu servera saite",
"Your_workspace_is_ready": "Jūsu darbastacija ir gatava lietošanai 🎉"
-}
\ No newline at end of file
+}
diff --git a/packages/rocketchat-i18n/i18n/mn.i18n.json b/packages/rocketchat-i18n/i18n/mn.i18n.json
index 61c6a5da27cb2..ff879d0b3b57e 100644
--- a/packages/rocketchat-i18n/i18n/mn.i18n.json
+++ b/packages/rocketchat-i18n/i18n/mn.i18n.json
@@ -2488,7 +2488,6 @@
"theme-color-status-offline": "Оффлайн байдал өнгө",
"theme-color-status-online": "Онлайн байдлын өнгө",
"theme-color-success-color": "Амжилтын өнгө",
- "theme-color-tertiary-background-color": "Дээд боловсролын байдал",
"theme-color-tertiary-font-color": "Гурав дахь үсгийн өнгө",
"theme-color-transparent-dark": "Ил тод хар",
"theme-color-transparent-darker": "Ил тод харанхуй",
@@ -2828,4 +2827,4 @@
"Your_push_was_sent_to_s_devices": "Таны түлхэлт %s төхөөрөмж рүү илгээгдсэн",
"Your_server_link": "Таны серверийн холбоос",
"Your_workspace_is_ready": "Таны ажлын талбарыг ашиглахад бэлэн байна"
-}
\ No newline at end of file
+}
diff --git a/packages/rocketchat-i18n/i18n/ms-MY.i18n.json b/packages/rocketchat-i18n/i18n/ms-MY.i18n.json
index cc4e532376d22..48d7e69003bcb 100644
--- a/packages/rocketchat-i18n/i18n/ms-MY.i18n.json
+++ b/packages/rocketchat-i18n/i18n/ms-MY.i18n.json
@@ -2499,7 +2499,6 @@
"theme-color-status-offline": "Status Offline Warna",
"theme-color-status-online": "Online Status Warna",
"theme-color-success-color": "Warna Kejayaan",
- "theme-color-tertiary-background-color": "Warna Latar Belakang Tertiary",
"theme-color-tertiary-font-color": "Tertiary Font Warna",
"theme-color-transparent-dark": "Telus gelap",
"theme-color-transparent-darker": "Transparent Darker",
@@ -2840,4 +2839,4 @@
"Your_push_was_sent_to_s_devices": "push anda telah dihantar ke peranti %s",
"Your_server_link": "Pautan pelayan anda",
"Your_workspace_is_ready": "Ruang kerja anda sedia untuk menggunakan 🎉"
-}
\ No newline at end of file
+}
diff --git a/packages/rocketchat-i18n/i18n/nl.i18n.json b/packages/rocketchat-i18n/i18n/nl.i18n.json
index d43a2a1ebf5ac..b519fb8473707 100644
--- a/packages/rocketchat-i18n/i18n/nl.i18n.json
+++ b/packages/rocketchat-i18n/i18n/nl.i18n.json
@@ -2671,7 +2671,6 @@
"theme-color-status-offline": "Offline Statuskleur",
"theme-color-status-online": "Online Statuskleur",
"theme-color-success-color": "Succeskleur",
- "theme-color-tertiary-background-color": "Tertiaire Achtergronkleur",
"theme-color-tertiary-font-color": "Tertiaire Tekstkleur ",
"theme-color-transparent-dark": "Transparant donker",
"theme-color-transparent-darker": "Transparant donkerder",
@@ -3048,4 +3047,4 @@
"Your_push_was_sent_to_s_devices": "Je push werd verzonden naar %s apparaten",
"Your_server_link": "Uw serverlink",
"Your_workspace_is_ready": "Uw werkruimte is klaar voor gebruik 🎉"
-}
\ No newline at end of file
+}
diff --git a/packages/rocketchat-i18n/i18n/no.i18n.json b/packages/rocketchat-i18n/i18n/no.i18n.json
index b8837ecc0a74d..0323fbdb1a632 100644
--- a/packages/rocketchat-i18n/i18n/no.i18n.json
+++ b/packages/rocketchat-i18n/i18n/no.i18n.json
@@ -2570,7 +2570,6 @@
"theme-color-status-offline": "Frakoblet statusfarge",
"theme-color-status-online": "Online statusfarge",
"theme-color-success-color": "Suksessfarge",
- "theme-color-tertiary-background-color": "Tertiær bakgrunnsfarge",
"theme-color-tertiary-font-color": "Tertiær skriftfarge",
"theme-color-transparent-dark": "Gjennomsiktig Mørk",
"theme-color-transparent-darker": "Transparent mørkere",
@@ -2921,4 +2920,4 @@
"Your_push_was_sent_to_s_devices": "Din push ble sendt til%s-enheter",
"Your_server_link": "Din serverkobling",
"Your_workspace_is_ready": "Ditt arbeidsområde er klar til bruk 🎉"
-}
\ No newline at end of file
+}
diff --git a/packages/rocketchat-i18n/i18n/pl.i18n.json b/packages/rocketchat-i18n/i18n/pl.i18n.json
index e8f7680ab1539..ec8d25c0b336c 100644
--- a/packages/rocketchat-i18n/i18n/pl.i18n.json
+++ b/packages/rocketchat-i18n/i18n/pl.i18n.json
@@ -3414,7 +3414,6 @@
"theme-color-status-offline": "Kolor statusu Niedostępny",
"theme-color-status-online": "Kolor statusu Online",
"theme-color-success-color": "Kolor sukcesu",
- "theme-color-tertiary-background-color": "Trzeciorzędny kolor tła",
"theme-color-tertiary-font-color": "Trzeciorzędny kolor czcionki",
"theme-color-transparent-dark": "Przezroczysty ciemny",
"theme-color-transparent-darker": "Transparent Darker",
@@ -3882,4 +3881,4 @@
"Your_server_link": "Twój link do serwera",
"Your_temporary_password_is_password": "Twoje tymczasowe hasło to [hasło].",
"Your_workspace_is_ready": "Twój obszar roboczy jest gotowy do użycia 🎉"
-}
\ No newline at end of file
+}
diff --git a/packages/rocketchat-i18n/i18n/pt-BR.i18n.json b/packages/rocketchat-i18n/i18n/pt-BR.i18n.json
index 1d1124cda1436..f913ab2034434 100644
--- a/packages/rocketchat-i18n/i18n/pt-BR.i18n.json
+++ b/packages/rocketchat-i18n/i18n/pt-BR.i18n.json
@@ -3061,7 +3061,6 @@
"theme-color-status-offline": "Cor da situação offline",
"theme-color-status-online": "Cor da situação online",
"theme-color-success-color": "Cor de sucesso",
- "theme-color-tertiary-background-color": "Cor de fundo terciária",
"theme-color-tertiary-font-color": "Cor de fonte terciária",
"theme-color-transparent-dark": "Transparente Escuro",
"theme-color-transparent-darker": "Transparente mais escuro",
diff --git a/packages/rocketchat-i18n/i18n/pt.i18n.json b/packages/rocketchat-i18n/i18n/pt.i18n.json
index 27ee2ead38d9a..5de955f387696 100644
--- a/packages/rocketchat-i18n/i18n/pt.i18n.json
+++ b/packages/rocketchat-i18n/i18n/pt.i18n.json
@@ -2859,7 +2859,6 @@
"theme-color-status-offline": "Cor do estado desconectado",
"theme-color-status-online": "Cor do estado conectado",
"theme-color-success-color": "Cor de sucesso",
- "theme-color-tertiary-background-color": "Cor de fundo terciária",
"theme-color-tertiary-font-color": "Cor de fonte terciária",
"theme-color-transparent-dark": "Transparente escuro",
"theme-color-transparent-darker": "Transparente mais escuro",
diff --git a/packages/rocketchat-i18n/i18n/ro.i18n.json b/packages/rocketchat-i18n/i18n/ro.i18n.json
index c22e8d3b186cc..235089c0831f4 100644
--- a/packages/rocketchat-i18n/i18n/ro.i18n.json
+++ b/packages/rocketchat-i18n/i18n/ro.i18n.json
@@ -2492,7 +2492,6 @@
"theme-color-status-offline": "Culoare status 'Offline'",
"theme-color-status-online": "Culoare status 'Activ'",
"theme-color-success-color": "Culoare de succes",
- "theme-color-tertiary-background-color": "Culoare de fundal terțiară",
"theme-color-tertiary-font-color": "Culoare text terțiară",
"theme-color-transparent-dark": "Transparent Dark",
"theme-color-transparent-darker": "Transparent mai întunecat",
@@ -2837,4 +2836,4 @@
"Your_push_was_sent_to_s_devices": "Mesajul Push a fost trimis la %s dispozitive",
"Your_server_link": "Linkul dvs. de server",
"Your_workspace_is_ready": "Spațiul dvs. de lucru este gata de utilizare 🎉"
-}
\ No newline at end of file
+}
diff --git a/packages/rocketchat-i18n/i18n/ru.i18n.json b/packages/rocketchat-i18n/i18n/ru.i18n.json
index 5135c0bfee402..0a94a4e6ba301 100644
--- a/packages/rocketchat-i18n/i18n/ru.i18n.json
+++ b/packages/rocketchat-i18n/i18n/ru.i18n.json
@@ -3123,7 +3123,6 @@
"theme-color-status-offline": "Цвет статуса \"Не в сети\"",
"theme-color-status-online": "Цвет статуса \"В сети\"",
"theme-color-success-color": "Цвет успеха",
- "theme-color-tertiary-background-color": "Третий цвет фона",
"theme-color-tertiary-font-color": "Третий цвет шрифта",
"theme-color-transparent-dark": "Прозрачный темный",
"theme-color-transparent-darker": "Прозрачный еще темнее",
@@ -3547,4 +3546,4 @@
"Your_server_link": "Ссылка на ваш сервер",
"Your_temporary_password_is_password": "Ваш временный пароль [password].",
"Your_workspace_is_ready": "Ваше рабочее пространство готово к работе 🎉"
-}
\ No newline at end of file
+}
diff --git a/packages/rocketchat-i18n/i18n/sk-SK.i18n.json b/packages/rocketchat-i18n/i18n/sk-SK.i18n.json
index 7f639f02e48ab..56b0ce8975959 100644
--- a/packages/rocketchat-i18n/i18n/sk-SK.i18n.json
+++ b/packages/rocketchat-i18n/i18n/sk-SK.i18n.json
@@ -2495,7 +2495,6 @@
"theme-color-status-offline": "Farba stavu offline",
"theme-color-status-online": "Farba stavu online",
"theme-color-success-color": "Farba úspechu",
- "theme-color-tertiary-background-color": "Farba tretieho pozadia",
"theme-color-tertiary-font-color": "Terciárna farba písma",
"theme-color-transparent-dark": "Transparentné tmavé",
"theme-color-transparent-darker": "Transparentnejšie tmavšie",
@@ -2842,4 +2841,4 @@
"Your_push_was_sent_to_s_devices": "Posun bol odoslaný na zariadenia%s",
"Your_server_link": "Váš odkaz na server",
"Your_workspace_is_ready": "Váš pracovný priestor je pripravený na použitie 🎉"
-}
\ No newline at end of file
+}
diff --git a/packages/rocketchat-i18n/i18n/sl-SI.i18n.json b/packages/rocketchat-i18n/i18n/sl-SI.i18n.json
index f8669c39c01ec..5f40a64693e91 100644
--- a/packages/rocketchat-i18n/i18n/sl-SI.i18n.json
+++ b/packages/rocketchat-i18n/i18n/sl-SI.i18n.json
@@ -2486,7 +2486,6 @@
"theme-color-status-offline": "Barva stanja Nedosegljiv",
"theme-color-status-online": "Barva stanja Dosegljiv",
"theme-color-success-color": "Barva za 'uspeh'",
- "theme-color-tertiary-background-color": "Terciarna barva ozadja",
"theme-color-tertiary-font-color": "Terciarna barva pisave",
"theme-color-transparent-dark": "Prosojna temna",
"theme-color-transparent-darker": "Prosojna temnejša",
@@ -2833,4 +2832,4 @@
"Your_push_was_sent_to_s_devices": "Vaš potisk je bil poslan v naprave %s",
"Your_server_link": "Povezava strežnika",
"Your_workspace_is_ready": "Vaš delovni prostor je pripravljen za uporabo 🎉"
-}
\ No newline at end of file
+}
diff --git a/packages/rocketchat-i18n/i18n/sq.i18n.json b/packages/rocketchat-i18n/i18n/sq.i18n.json
index 0861336fd6799..bb4546b130cfb 100644
--- a/packages/rocketchat-i18n/i18n/sq.i18n.json
+++ b/packages/rocketchat-i18n/i18n/sq.i18n.json
@@ -2495,7 +2495,6 @@
"theme-color-status-offline": "Offline Status Color",
"theme-color-status-online": "Online Status Color",
"theme-color-success-color": "Ngjyra e suksesit",
- "theme-color-tertiary-background-color": "Terciar Background Color",
"theme-color-tertiary-font-color": "Terciar Font Color",
"theme-color-transparent-dark": "Errësira transparente",
"theme-color-transparent-darker": "Transparente errësirë",
@@ -2842,4 +2841,4 @@
"Your_push_was_sent_to_s_devices": "shtytje juaj u dërgua në pajisjet %s",
"Your_server_link": "Lidhjet e serverit tuaj",
"Your_workspace_is_ready": "Hapësira e punës tënde është e gatshme të përdorë 🎉"
-}
\ No newline at end of file
+}
diff --git a/packages/rocketchat-i18n/i18n/sr.i18n.json b/packages/rocketchat-i18n/i18n/sr.i18n.json
index eb63d96de90a8..fc169491e1415 100644
--- a/packages/rocketchat-i18n/i18n/sr.i18n.json
+++ b/packages/rocketchat-i18n/i18n/sr.i18n.json
@@ -2196,7 +2196,6 @@
"theme-color-status-offline": "Оффлине статус Боја",
"theme-color-status-online": "Онлине статус Боја",
"theme-color-success-color": "Суццесс Цолор",
- "theme-color-tertiary-background-color": "Терцијарни Боја позадине",
"theme-color-tertiary-font-color": "Терцијарни Боја фонта",
"theme-color-transparent-dark": "Транспарент Дарк",
"theme-color-transparent-darker": "Транспарент Даркер",
@@ -2527,4 +2526,4 @@
"Your_push_was_sent_to_s_devices": "Ваш притиском је послат на %s уређајима",
"Your_server_link": "Веза са сервером",
"Your_workspace_is_ready": "Ваш радни простор је спреман за кориштење 🎉"
-}
\ No newline at end of file
+}
diff --git a/packages/rocketchat-i18n/i18n/sv.i18n.json b/packages/rocketchat-i18n/i18n/sv.i18n.json
index 0b1867140412e..2a81861a5aca3 100644
--- a/packages/rocketchat-i18n/i18n/sv.i18n.json
+++ b/packages/rocketchat-i18n/i18n/sv.i18n.json
@@ -2581,7 +2581,6 @@
"theme-color-status-offline": "Statusfärg för Offline",
"theme-color-status-online": "Statusfärg för Online",
"theme-color-success-color": "Framgångsfärg",
- "theme-color-tertiary-background-color": "Tertiär bakgrundsfärg",
"theme-color-tertiary-font-color": "Tertiär teckenfärg",
"theme-color-transparent-dark": "Genomskinlig mörk",
"theme-color-transparent-darker": "Transparent mörkare",
@@ -2937,4 +2936,4 @@
"Your_push_was_sent_to_s_devices": "Din push skickades till %s enheter",
"Your_server_link": "Din serverlänk",
"Your_workspace_is_ready": "Din arbetsyta är redo att använda 🎉"
-}
\ No newline at end of file
+}
diff --git a/packages/rocketchat-i18n/i18n/ta-IN.i18n.json b/packages/rocketchat-i18n/i18n/ta-IN.i18n.json
index 3eb843ffe4c67..9fe7cd619b3f8 100644
--- a/packages/rocketchat-i18n/i18n/ta-IN.i18n.json
+++ b/packages/rocketchat-i18n/i18n/ta-IN.i18n.json
@@ -2492,7 +2492,6 @@
"theme-color-status-offline": "அந்தஸ்து கலர்",
"theme-color-status-online": "ஆன்லைன் அந்தஸ்து கலர்",
"theme-color-success-color": "வெற்றி வண்ணம்",
- "theme-color-tertiary-background-color": "மூன்றாம் நிலை பின்னணி வண்ணம்",
"theme-color-tertiary-font-color": "மூன்றாம் நிலை எழுத்துரு வண்ணம்",
"theme-color-transparent-dark": "வெளிப்படையான டார்க்",
"theme-color-transparent-darker": "வெளிப்படையான இருண்ட",
@@ -2836,4 +2835,4 @@
"Your_push_was_sent_to_s_devices": "உங்கள் மிகுதி% கள் சாதனங்கள் அனுப்பப்பட்டது",
"Your_server_link": "உங்கள் சர்வர் இணைப்பு",
"Your_workspace_is_ready": "உங்கள் பணியிடம் use பயன்படுத்த தயாராக உள்ளது"
-}
\ No newline at end of file
+}
diff --git a/packages/rocketchat-i18n/i18n/th-TH.i18n.json b/packages/rocketchat-i18n/i18n/th-TH.i18n.json
index 8c6c00a8e6a7a..2cd04488c3e2a 100644
--- a/packages/rocketchat-i18n/i18n/th-TH.i18n.json
+++ b/packages/rocketchat-i18n/i18n/th-TH.i18n.json
@@ -2489,7 +2489,6 @@
"theme-color-status-offline": "สีสถานะแบบออฟไลน์",
"theme-color-status-online": "สีสถานะออนไลน์",
"theme-color-success-color": "สีสำเร็จ",
- "theme-color-tertiary-background-color": "สีพื้นหลังตติยภูมิ",
"theme-color-tertiary-font-color": "สีตัวอักษรตติยภูมิ",
"theme-color-transparent-dark": "ความมืดที่โปร่งใส",
"theme-color-transparent-darker": "Transparent Darker",
@@ -2833,4 +2832,4 @@
"Your_push_was_sent_to_s_devices": "การกดของคุณถูกส่งไปยังอุปกรณ์%s",
"Your_server_link": "ลิงค์เซิร์ฟเวอร์ของคุณ",
"Your_workspace_is_ready": "พื้นที่ทำงานของคุณพร้อมใช้งานแล้ว🎉"
-}
\ No newline at end of file
+}
diff --git a/packages/rocketchat-i18n/i18n/tr.i18n.json b/packages/rocketchat-i18n/i18n/tr.i18n.json
index a2031e5b24785..a865c5e4cf140 100644
--- a/packages/rocketchat-i18n/i18n/tr.i18n.json
+++ b/packages/rocketchat-i18n/i18n/tr.i18n.json
@@ -2924,7 +2924,6 @@
"theme-color-status-offline": "Çevrimdışı Durumu Rengi",
"theme-color-status-online": "Çevrimiçi Durumu Rengi",
"theme-color-success-color": "Başarılı Rengi",
- "theme-color-tertiary-background-color": "Tersiyer Arka Plan Rengi",
"theme-color-tertiary-font-color": "Tersiyer Yazı Rengi",
"theme-color-transparent-dark": "Şeffaf Karanlık",
"theme-color-transparent-darker": "Şeffaf Daha Koyu",
@@ -3324,4 +3323,4 @@
"Your_question": "Sorunuz",
"Your_server_link": "Sunucu bağlantınız",
"Your_workspace_is_ready": "Çalışma alanınız kullanılmaya hazır 🎉"
-}
\ No newline at end of file
+}
diff --git a/packages/rocketchat-i18n/i18n/ug.i18n.json b/packages/rocketchat-i18n/i18n/ug.i18n.json
index d1bfccba227aa..9da2a07374b4b 100644
--- a/packages/rocketchat-i18n/i18n/ug.i18n.json
+++ b/packages/rocketchat-i18n/i18n/ug.i18n.json
@@ -1066,7 +1066,6 @@
"theme-color-status-busy": "ئالدىراش ھالەتتىكى رەڭگى",
"theme-color-status-offline": "تورسىز ھالەتتىكى رەڭگى",
"theme-color-status-online": "تور ھالىتىدىكى رەڭگى",
- "theme-color-tertiary-background-color": "ئۈچىنچى تەگلىك رەڭگى",
"theme-color-tertiary-font-color": "ئۈچىنچى گرافىكا رەڭگى",
"theme-color-unread-notification-color": "ئوقۇلمىغان ئۇچۇرنىڭ رەڭگى",
"theme-custom-css": "CSSئۆزى بېكىتكەن",
@@ -1238,4 +1237,4 @@
"Your_mail_was_sent_to_s": "يوللاندى %s سىزنىڭ ئىلخىتىڭىز ئاللىبۇرۇن",
"Your_password_is_wrong": "پارول خاتا !",
"Your_push_was_sent_to_s_devices": "ئۈسكىنىگە يوللاندى %s سىزنىڭ ئىتتىرگىنىڭىز"
-}
\ No newline at end of file
+}
diff --git a/packages/rocketchat-i18n/i18n/uk.i18n.json b/packages/rocketchat-i18n/i18n/uk.i18n.json
index c3b6c6470c81d..5d8b053a524e3 100644
--- a/packages/rocketchat-i18n/i18n/uk.i18n.json
+++ b/packages/rocketchat-i18n/i18n/uk.i18n.json
@@ -2996,7 +2996,6 @@
"theme-color-status-offline": "Offline Колір Статус",
"theme-color-status-online": "Інтернет Колір Статус",
"theme-color-success-color": "Колір успіху",
- "theme-color-tertiary-background-color": "Третинний Колір фону",
"theme-color-tertiary-font-color": "Третинний Колір шрифту",
"theme-color-transparent-dark": "Прозорий темний",
"theme-color-transparent-darker": "Прозорий темніший",
@@ -3386,4 +3385,4 @@
"Your_server_link": "Посилання на Ваш сервер",
"Your_temporary_password_is_password": "Ваш тимчасовий пароль [password].",
"Your_workspace_is_ready": "Ваш робочий простір готовий до використання 🎉"
-}
\ No newline at end of file
+}
diff --git a/packages/rocketchat-i18n/i18n/vi-VN.i18n.json b/packages/rocketchat-i18n/i18n/vi-VN.i18n.json
index 9907f4857307a..7d4b17c83f7b8 100644
--- a/packages/rocketchat-i18n/i18n/vi-VN.i18n.json
+++ b/packages/rocketchat-i18n/i18n/vi-VN.i18n.json
@@ -2493,7 +2493,6 @@
"theme-color-status-offline": "Màu trạng thái ngoại tuyến",
"theme-color-status-online": "Màu trạng thái trực tuyến",
"theme-color-success-color": "Màu thành công",
- "theme-color-tertiary-background-color": "Màu nền thứ ba",
"theme-color-tertiary-font-color": "Màu chữ thứ ba",
"theme-color-transparent-dark": "Trong suốt (màu tối)",
"theme-color-transparent-darker": "Trong suốt (màu tối hơn)",
@@ -2837,4 +2836,4 @@
"Your_push_was_sent_to_s_devices": "Đã được gửi tới % thiết bị",
"Your_server_link": "Đường dẫn máy chủ của bạn",
"Your_workspace_is_ready": "Workspace của bạn đã sẵn sàng"
-}
\ No newline at end of file
+}
diff --git a/packages/rocketchat-i18n/i18n/zh-HK.i18n.json b/packages/rocketchat-i18n/i18n/zh-HK.i18n.json
index 6a5f296e59f70..65f72d1c674c2 100644
--- a/packages/rocketchat-i18n/i18n/zh-HK.i18n.json
+++ b/packages/rocketchat-i18n/i18n/zh-HK.i18n.json
@@ -2520,7 +2520,6 @@
"theme-color-status-offline": "离线状态颜色",
"theme-color-status-online": "在线状态颜色",
"theme-color-success-color": "成功颜色",
- "theme-color-tertiary-background-color": "三级背景颜色",
"theme-color-tertiary-font-color": "第三字体颜色",
"theme-color-transparent-dark": "透明黑暗",
"theme-color-transparent-darker": "透明较暗",
@@ -2865,4 +2864,4 @@
"Your_push_was_sent_to_s_devices": "您的推送已发送到%s设备",
"Your_server_link": "您的服务器链接",
"Your_workspace_is_ready": "您的工作区已准备好使用🎉"
-}
\ No newline at end of file
+}
diff --git a/packages/rocketchat-i18n/i18n/zh-TW.i18n.json b/packages/rocketchat-i18n/i18n/zh-TW.i18n.json
index b6002532e5fff..3019b81ac4882 100644
--- a/packages/rocketchat-i18n/i18n/zh-TW.i18n.json
+++ b/packages/rocketchat-i18n/i18n/zh-TW.i18n.json
@@ -3520,7 +3520,6 @@
"theme-color-status-offline": "離線狀態顏色",
"theme-color-status-online": "在線狀態顏色",
"theme-color-success-color": "成功顏色",
- "theme-color-tertiary-background-color": "第三背景顏色",
"theme-color-tertiary-font-color": "第三字體顏色",
"theme-color-transparent-dark": "透明黑暗",
"theme-color-transparent-darker": "透明較暗",
@@ -3999,4 +3998,4 @@
"Your_server_link": "您的伺服器連接",
"Your_temporary_password_is_password": "您的暫時密碼是 [password]。",
"Your_workspace_is_ready": "您的工作區已準備好使用🎉"
-}
\ No newline at end of file
+}
diff --git a/packages/rocketchat-i18n/i18n/zh.i18n.json b/packages/rocketchat-i18n/i18n/zh.i18n.json
index e01e7e6a20314..589c3eeca3958 100644
--- a/packages/rocketchat-i18n/i18n/zh.i18n.json
+++ b/packages/rocketchat-i18n/i18n/zh.i18n.json
@@ -3123,7 +3123,6 @@
"theme-color-status-offline": "离线状态色",
"theme-color-status-online": "在线状态色",
"theme-color-success-color": "成功颜色",
- "theme-color-tertiary-background-color": "第三背景色",
"theme-color-tertiary-font-color": "第三字体色",
"theme-color-transparent-dark": "透明暗色",
"theme-color-transparent-darker": "透明较暗色",
@@ -3545,4 +3544,4 @@
"Your_server_link": "您的服务器链接",
"Your_temporary_password_is_password": "您的暂时密码为 [password]。",
"Your_workspace_is_ready": "您的工作区已准备好使用🎉"
-}
\ No newline at end of file
+}
diff --git a/server/startup/migrations/index.js b/server/startup/migrations/index.js
index 94ffb34521bbc..0ecf14c966cdb 100644
--- a/server/startup/migrations/index.js
+++ b/server/startup/migrations/index.js
@@ -203,4 +203,5 @@ import './v203';
import './v204';
import './v205';
import './v206';
+import './v207';
import './xrun';
diff --git a/server/startup/migrations/v207.js b/server/startup/migrations/v207.js
new file mode 100644
index 0000000000000..cd5536e6423ca
--- /dev/null
+++ b/server/startup/migrations/v207.js
@@ -0,0 +1,9 @@
+import { Migrations } from '../../../app/migrations';
+import { Settings } from '../../../app/models';
+
+Migrations.add({
+ version: 207,
+ up() {
+ Settings.removeById('theme-color-tertiary-background-color');
+ },
+});