Skip to content
This repository was archived by the owner on Oct 25, 2022. It is now read-only.

Commit 467355c

Browse files
feat(ui): Show glyphs for cycles
1 parent 09ec486 commit 467355c

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

packages/userscript/source/ui/components/CyclesList.ts

+10-10
Original file line numberDiff line numberDiff line change
@@ -34,43 +34,43 @@ export class CyclesList extends SettingsList {
3434
this.setting = setting;
3535

3636
this.charon = this._makeCycle(
37-
this._host.engine.i18n("$space.planet.charon.label"),
37+
`⍙ ${this._host.engine.i18n("$space.planet.charon.label")}`,
3838
this.setting.charon
3939
);
4040
this.umbra = this._makeCycle(
41-
this._host.engine.i18n("$space.planet.umbra.label"),
41+
`⍦ ${this._host.engine.i18n("$space.planet.umbra.label")}`,
4242
this.setting.umbra
4343
);
4444
this.yarn = this._makeCycle(
45-
this._host.engine.i18n("$space.planet.yarn.label"),
45+
`⍧ ${this._host.engine.i18n("$space.planet.yarn.label")}`,
4646
this.setting.yarn
4747
);
4848
this.helios = this._makeCycle(
49-
this._host.engine.i18n("$space.planet.helios.label"),
49+
`⌒ ${this._host.engine.i18n("$space.planet.helios.label")}`,
5050
this.setting.helios
5151
);
5252
this.cath = this._makeCycle(
53-
this._host.engine.i18n("$space.planet.cath.label"),
53+
`⌾ ${this._host.engine.i18n("$space.planet.cath.label")}`,
5454
this.setting.cath
5555
);
5656
this.redmoon = this._makeCycle(
57-
this._host.engine.i18n("$space.planet.moon.label"),
57+
`⍜ ${this._host.engine.i18n("$space.planet.moon.label")}`,
5858
this.setting.redmoon
5959
);
6060
this.dune = this._makeCycle(
61-
this._host.engine.i18n("$space.planet.dune.label"),
61+
`⍫ ${this._host.engine.i18n("$space.planet.dune.label")}`,
6262
this.setting.dune
6363
);
6464
this.piscine = this._makeCycle(
65-
this._host.engine.i18n("$space.planet.piscine.label"),
65+
`⎈ ${this._host.engine.i18n("$space.planet.piscine.label")}`,
6666
this.setting.piscine
6767
);
6868
this.terminus = this._makeCycle(
69-
this._host.engine.i18n("$space.planet.terminus.label"),
69+
`⍝ ${this._host.engine.i18n("$space.planet.terminus.label")}`,
7070
this.setting.terminus
7171
);
7272
this.kairo = this._makeCycle(
73-
this._host.engine.i18n("$space.planet.kairo.label"),
73+
`℣ ${this._host.engine.i18n("$space.planet.kairo.label")}`,
7474
this.setting.kairo
7575
);
7676

0 commit comments

Comments
 (0)