cleanup
This commit is contained in:
parent
02552f3f83
commit
c6c2a425cc
16 changed files with 224 additions and 73 deletions
|
|
@ -18,7 +18,10 @@ pandora.ui.appearanceDialog = function() {
|
|||
Ox.Select({
|
||||
id: 'theme',
|
||||
items: pandora.site.themes.map(function(theme) {
|
||||
return {id: theme, title: Ox.Theme.getThemeData(theme).themeName}
|
||||
return {
|
||||
id: theme,
|
||||
title: Ox.Theme.getThemeData(theme).themeName
|
||||
};
|
||||
}),
|
||||
label: Ox._('Theme'),
|
||||
labelWidth: 120,
|
||||
|
|
@ -34,7 +37,10 @@ pandora.ui.appearanceDialog = function() {
|
|||
Ox.Select({
|
||||
id: 'locale',
|
||||
items: pandora.site.languages.map(function(locale) {
|
||||
return {id: locale, title: Ox.LOCALE_NAMES[locale]}
|
||||
return {
|
||||
id: locale,
|
||||
title: Ox.LOCALE_NAMES[locale]
|
||||
};
|
||||
}),
|
||||
label: Ox._('Language'),
|
||||
labelWidth: 120,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue