debug: add custom theme to theme list

pull/21833/head
Bruno Windels 2019-09-26 12:08:42 +02:00
parent cad3858a3f
commit a4b905ef38
2 changed files with 2 additions and 0 deletions

View File

@ -263,6 +263,7 @@
"%(widgetName)s widget removed by %(senderName)s": "%(widgetName)s widget removed by %(senderName)s",
"Light theme": "Light theme",
"Dark theme": "Dark theme",
"Custom theme (light)": "Custom theme (light)",
"%(displayName)s is typing …": "%(displayName)s is typing …",
"%(names)s and %(count)s others are typing …|other": "%(names)s and %(count)s others are typing …",
"%(names)s and %(count)s others are typing …|one": "%(names)s and one other is typing …",

View File

@ -21,4 +21,5 @@ export const DEFAULT_THEME = "light";
export const THEMES = {
"light": _td("Light theme"),
"dark": _td("Dark theme"),
"light-custom": _td("Custom theme (light)"),
};