Skip to content

Commit

Permalink
Update tiles-generator.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
tzagim authored Feb 5, 2024
1 parent 7a4dbcd commit b5a2fd0
Showing 1 changed file with 13 additions and 2 deletions.
15 changes: 13 additions & 2 deletions src/model/generators/tiles-generator.ts
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,18 @@ export class TilesGenerator {
attribute: "fan_speed",
icon: "mdi:fan",
translations: TilesGenerator.generateTranslationKeys(
["silent", "standard", "medium", "turbo", "auto", "gentle"],
[
"silent",
"standard",
"medium",
"turbo",
"auto",
"gentle",
"quiet",
"balanced",
"max",
"custom",
],
"fan_speed",
language,
),
Expand Down Expand Up @@ -310,4 +321,4 @@ export function sortTiles(t1: TileConfig, t2: TileConfig): number {
if (t2.order === undefined)
return -1;
return t1.order - t2.order;
}
}

0 comments on commit b5a2fd0

Please sign in to comment.