Compare commits

...

24 Commits

Author SHA1 Message Date
fdarcey ceba4a09c0
Merge a16cb0e782 into ec5ca2bb66 2024-04-26 12:07:38 +00:00
summoner001 ec5ca2bb66
Translated using Weblate (Hungarian)
Currently translated at 100.0% (830 of 830 strings)

Translation: FreeTube/Translations
Translate-URL: https://hosted.weblate.org/projects/free-tube/translations/hu/
2024-04-26 14:07:18 +02:00
gallegonovato b7e94669cb
Translated using Weblate (Spanish)
Currently translated at 100.0% (830 of 830 strings)

Translation: FreeTube/Translations
Translate-URL: https://hosted.weblate.org/projects/free-tube/translations/es/
2024-04-26 14:07:17 +02:00
Fjuro ce57393549
Translated using Weblate (Czech)
Currently translated at 100.0% (830 of 830 strings)

Translation: FreeTube/Translations
Translate-URL: https://hosted.weblate.org/projects/free-tube/translations/cs/
2024-04-26 12:07:09 +02:00
Oğuz Ersen f5c89f3f9f
Translated using Weblate (Turkish)
Currently translated at 100.0% (830 of 830 strings)

Translation: FreeTube/Translations
Translate-URL: https://hosted.weblate.org/projects/free-tube/translations/tr/
2024-04-26 09:07:16 +02:00
Massimo Pissarello a2d67523ab
Translated using Weblate (Italian)
Currently translated at 100.0% (830 of 830 strings)

Translation: FreeTube/Translations
Translate-URL: https://hosted.weblate.org/projects/free-tube/translations/it/
2024-04-26 09:07:14 +02:00
Jose Delvani fc123f3792
Translated using Weblate (Portuguese (Brazil))
Currently translated at 100.0% (830 of 830 strings)

Translation: FreeTube/Translations
Translate-URL: https://hosted.weblate.org/projects/free-tube/translations/pt_BR/
2024-04-26 09:07:13 +02:00
大王叫我来巡山 1bd3ee936a
Translated using Weblate (Chinese (Simplified))
Currently translated at 100.0% (830 of 830 strings)

Translation: FreeTube/Translations
Translate-URL: https://hosted.weblate.org/projects/free-tube/translations/zh_Hans/
2024-04-26 09:07:11 +02:00
fdarcey a16cb0e782 Removed the bottom sections. 2024-02-09 20:17:00 -07:00
fdarcey 7fddb9ea2c
Merge branch 'FreeTubeApp:development' into development 2024-02-09 20:02:05 -07:00
fdarcey 6c8730e5ec logo icon and text colors added to light and dark gray 2023-12-21 17:08:47 -07:00
fdarcey f4130fc52f
Merge branch 'FreeTubeApp:development' into development 2023-12-21 17:00:54 -07:00
fdarcey 0cdcbb3a88 Gave black text color to light grey background. 2023-11-30 12:32:59 -07:00
fdarcey 81f26c78b0
Merge branch 'FreeTubeApp:development' into development 2023-11-30 12:05:45 -07:00
fdarcey d72807a74b Relocated 'text-with' additions. 2023-11-28 13:03:18 -07:00
fdarcey 25f6830c9c gave dark grays text-with-main-color and text-with-accent-color at #FFFFFF 2023-11-28 12:43:13 -07:00
fdarcey ec17e93fcd
Merge branch 'FreeTubeApp:development' into development 2023-11-28 12:12:10 -07:00
fdarcey 72b8d18402
Merge branch 'FreeTubeApp:development' into development 2023-11-14 12:53:58 -07:00
fdarcey 407ace0bc3 changed all grey to gray in themes.css, colors.js, and en-US.yalm 2023-11-14 12:17:49 -07:00
fdarcey da4d8909a6 removed excess code and changed 'grey' in en-US.yelm it 'gray' 2023-11-09 13:42:28 -07:00
fdarcey 3cd953def8 added necessary spaces in colors.js 2023-11-07 13:08:37 -07:00
fdarcey a6633b6c32
Merge branch 'FreeTubeApp:development' into development 2023-11-07 12:13:43 -07:00
fdarcey ac43085ca4 Added light and dark grey to en-US.yalm. 2023-10-31 12:20:34 -06:00
vboxuser 637c7b7c23 added light grey and dark grey to themes.css and colors.js 2023-10-12 12:49:54 -06:00
10 changed files with 48 additions and 1 deletions

View File

@ -17,6 +17,8 @@ export const colors = [
{ name: 'Amber', value: '#FFAB00' },
{ name: 'Orange', value: '#FF6D00' },
{ name: 'DeepOrange', value: '#DD2C00' },
{ name: 'LightGray', value: '#B1B1B1' },
{ name: 'DarkGray', value: '#696969' },
{ name: 'DraculaCyan', value: '#8BE9FD' },
{ name: 'DraculaGreen', value: '#50FA7B' },
{ name: 'DraculaOrange', value: '#FFB86C' },

View File

@ -287,6 +287,22 @@ it can be safely elided. This looks quite pleasant on this theme. */
--logo-icon-bar-color: url("../../_icons/iconBlackSmall.svg");
--logo-text-bar-color: url("../../_icons/textBlackSmall.svg");
}
.mainLightGray {
--text-with-main-color: #000000;
--logo-icon-bar-color: url("../../_icons/iconBlackSmall.png");
--logo-text-bar-color: url("../../_icons/textBlackSmall.png");
--primary-color: #B1B1B1;
--primary-color-hover: #848482;
--primary-color-active: #7E7E7E;
}
.mainDarkGray {
--text-with-main-color: #FFFFFF;
--logo-icon-bar-color: url("../../_icons/iconWhiteSmall.png");
--logo-text-bar-color: url("../../_icons/textWhiteSmall.png");
--primary-color: #696969;
--primary-color-hover: #555555;
--primary-color-active: #4E4E4E;
}
.mainRed {
--primary-color: #f44336;
@ -567,6 +583,26 @@ it can be safely elided. This looks quite pleasant on this theme. */
.secDeepOrange {
--text-with-accent-color: #000;
}
.secLightGray {
--text-with-accent-color: #000000;
--logo-icon-bar-color: url("../../_icons/iconBlackSmall.png");
--logo-text-bar-color: url("../../_icons/textBlackSmall.png");
--accent-color: #B1B1B1;
--accent-color-hover: #848482;
--accent-color-active: #7E7E7E;
--accent-color-light: #cfcfcf;
--accent-color-visited: #797979;
}
.secDarkGray {
--text-with-accent-color: #FFFFFF;
--logo-icon-bar-color: url("../../_icons/iconWhiteSmall.png");
--logo-text-bar-color: url("../../_icons/textWhiteSmall.png");
--accent-color: #696969;
--accent-color-hover: #555555;
--accent-color-active: #4E4E4E;
--accent-color-light: #A5A5A5;
--accent-color-visited: #444444;
}
.secRed {
--accent-color: #f44336;

View File

@ -626,6 +626,7 @@ Settings:
Remove Password: Odebrat heslo
Set Password: Nastavit heslo
Expand All Settings Sections: Rozbalit všechny sekce nastavení
Sort Settings Sections (A-Z): Seřadit sekce nastavení (A-Z)
About:
#On About page
About: 'O aplikaci'

View File

@ -325,6 +325,8 @@ Settings:
Amber: Amber
Orange: Orange
Deep Orange: Deep Orange
Light Gray: Light Gray
Dark Gray: Dark Gray
Dracula Cyan: Dracula Cyan
Dracula Green: Dracula Green
Dracula Orange: Dracula Orange

View File

@ -639,6 +639,7 @@ Settings:
Password Incorrect: Contraseña incorrecta
Unlock: Desbloquear
Expand All Settings Sections: Expandir todas las secciones de los ajustes
Sort Settings Sections (A-Z): Ordenar secciones de configuración (A-Z)
About:
#On About page
About: 'Acerca de'

View File

@ -649,6 +649,7 @@ Settings:
Set Password: Jelszó megadása
Remove Password: Jelszó eltávolítása
Expand All Settings Sections: Beállítások kiterjesztése
Sort Settings Sections (A-Z): Beállítások rendezése (A-Z)
About:
#On About page
About: 'Névjegy'

View File

@ -646,6 +646,7 @@ Settings:
Impostazioni
Remove Password: Rimuovi password
Expand All Settings Sections: Espandi tutte le sezioni delle Impostazioni
Sort Settings Sections (A-Z): Ordina le sezioni delle Impostazioni (A-Z)
About:
#On About page
About: 'Informazioni'

View File

@ -641,6 +641,7 @@ Settings:
Password: Senha
Enter Password To Unlock: Digite a senha para desbloquear as configurações
Expand All Settings Sections: Expandir todas as seções de configurações
Sort Settings Sections (A-Z): Classificar seções de configurações (A-Z)
About:
#On About page
About: 'Sobre'
@ -1222,6 +1223,6 @@ Age Restricted:
checkmark:
Display Label: '{label}: {value}'
Feed:
Feed Last Updated: '{feedName} última atualização do feed: {date}'
Feed Last Updated: '{feedName} última atualização: {date}'
Refresh Feed: Atualizar {subscriptionName}
Moments Ago: momentos atrás

View File

@ -638,6 +638,7 @@ Settings:
Remove Password: Parolayı Kaldır
Set Password: Parola Ayarla
Expand All Settings Sections: Tüm Ayarlar Bölümlerini Genişlet
Sort Settings Sections (A-Z): Ayarlar Bölümlerini Sırala (A-Z)
About:
#On About page
About: 'Hakkında'

View File

@ -565,6 +565,7 @@ Settings:
Set Password: 设置密码
Remove Password: 删除密码
Expand All Settings Sections: 展开所有设置部分
Sort Settings Sections (A-Z): 对设置部分进行排序A-Z
About:
#On About page
About: '关于'