diff --git a/frontend/src/app/services/preset.service.ts b/frontend/src/app/services/preset.service.ts index 9e07a41..5caea3a 100644 --- a/frontend/src/app/services/preset.service.ts +++ b/frontend/src/app/services/preset.service.ts @@ -33,5 +33,9 @@ export class PresetService { this.singlePresets.push(presetMap.get(key)[0]); } } + + for (let presets of this.multiPresets.values()) { + presets = presets.sort((a, b) => a.value[0] > b.value[0] ? 1 : -1); + } } } diff --git a/frontend/src/assets/i18n/en.json b/frontend/src/assets/i18n/en.json index 32dbc4a..be8a150 100644 --- a/frontend/src/assets/i18n/en.json +++ b/frontend/src/assets/i18n/en.json @@ -13,9 +13,9 @@ "cheap_transportations": "Cheap pubic transport", "cheap_entertainment": "Cheap entertainment", "warm": "warm", - "chilly": "chilly", + "chilly": "cold", "mild:": "mild", - "cold": "cold", + "cold": "freezing", "sunny": "sunny", "dark": "dark", "almost_no_rain": "almost none",