@@ -72,24 +72,28 @@ function Customize() {
7272 < CustomizeGroup >
7373 < CustomizeOption
7474 label = { t ( 'CUSTOMIZE_WIRELESS_APPLE' ) }
75+ description = { t ( 'CUSTOMIZE_DESC_APPLE_WIRELESS' ) }
7576 icon = { config . wirelessAdapterType === WirelessAdapterType . Apple ? < AppleIcon /> : < AppleBlackIcon /> }
7677 active = { config . wirelessAdapterType === WirelessAdapterType . Apple }
7778 onChange = { ( ) => config . setWirelessAdapterType ( WirelessAdapterType . Apple ) }
7879 />
7980 < CustomizeOption
8081 label = { t ( 'CUSTOMIZE_WIRELESS_BROADCOM' ) }
82+ description = { t ( 'CUSTOMIZE_DESC_BROADCOM_WIRELESS' ) }
8183 icon = { < BroadcomIcon /> }
8284 active = { config . wirelessAdapterType === WirelessAdapterType . Broadcom }
8385 onChange = { ( ) => config . setWirelessAdapterType ( WirelessAdapterType . Broadcom ) }
8486 />
8587 < CustomizeOption
8688 label = { t ( 'CUSTOMIZE_WIRELESS_INTEL' ) }
89+ description = { t ( 'CUSTOMIZE_DESC_INTEL_WIRELESS' ) }
8790 icon = { config . wirelessAdapterType === WirelessAdapterType . Intel ? < IntelWhiteIcon /> : < IntelIcon /> }
8891 active = { config . wirelessAdapterType === WirelessAdapterType . Intel }
8992 onChange = { ( ) => config . setWirelessAdapterType ( WirelessAdapterType . Intel ) }
9093 />
9194 < CustomizeOption
9295 label = { t ( 'CUSTOMIZE_ANDROID_TETHERING' ) }
96+ description = { t ( 'CUSTOMIZE_DESC_ANDROID_HORNDIS' ) }
9397 icon = { config . usbTetheringSupport ? < USBIcon /> : < USBBlackIcon /> }
9498 active = { config . usbTetheringSupport }
9599 onChange = { ( ) => config . toggleUSBTetheringSupport ( ) }
@@ -100,26 +104,30 @@ function Customize() {
100104 < CustomizeGroup >
101105 < CustomizeOption
102106 label = "1920 × 1080 (60Hz)"
107+ description = { t ( 'CUSTOMIZE_DESC_1080P' ) }
103108 icon = { < FHDIcon /> }
104109 active = { config . internalMonitorType === InternalMonitorType . FHD }
105110 onChange = { ( ) => config . setInternalMonitorType ( InternalMonitorType . FHD ) }
106111 />
107112 < CustomizeOption
108113 label = "1920 × 1080 (144Hz)"
114+ description = { t ( 'CUSTOMIZE_DESC_1080P144' ) }
109115 icon = { < FHDHighRefreshIcon /> }
110116 active = { config . internalMonitorType === InternalMonitorType . FHDHighRefresh }
111117 onChange = { ( ) => config . setInternalMonitorType ( InternalMonitorType . FHDHighRefresh ) }
112118 />
113- { config . product === 'Z2 Air-G' && (
119+ { ( config . product === 'Z2 Air-G' || config . product ?. includes ( 'Z2-G' ) ) && (
114120 < CustomizeOption
115121 label = { `1920 × 1080 (144Hz, ${ t ( 'CUSTOMIZE_SCHEME_2' ) } )` }
122+ description = { t ( 'CUSTOMIZE_DESC_1080P144_SCHEME2' ) }
116123 icon = { < UHDIcon /> }
117124 active = { config . internalMonitorType === InternalMonitorType . FHDHighRefreshSolution2 }
118125 onChange = { ( ) => config . setInternalMonitorType ( InternalMonitorType . FHDHighRefreshSolution2 ) }
119126 />
120127 ) }
121128 < CustomizeOption
122129 label = "3840 × 2160 (UHD)"
130+ description = { t ( 'CUSTOMIZE_DESC_4K' ) }
123131 icon = { < UHDIcon /> }
124132 active = { config . internalMonitorType === InternalMonitorType . UHD }
125133 onChange = { ( ) => config . setInternalMonitorType ( InternalMonitorType . UHD ) }
@@ -130,24 +138,28 @@ function Customize() {
130138 < CustomizeGroup >
131139 < CustomizeOption
132140 label = { t ( 'CUSTOMIZE_DISABLE_NVME' ) }
141+ description = { t ( 'CUSTOMIZE_DESC_DISABLE_NVME' ) }
133142 icon = { < DisableSSDIcon /> }
134143 active = { config . disableIncompatibleNVMe > 0 }
135144 onChange = { ( ) => config . setDisableIncompatibleNVMe ( config . disableIncompatibleNVMe ? 0 : 1 ) }
136145 />
137146 < CustomizeOption
138147 label = { t ( 'CUSTOMIZE_ENABLE_NVMEFIX' ) }
148+ description = { t ( 'CUSTOMIZE_DESC_ENABLE_NVMEFIX' ) }
139149 icon = { < SSDIcon /> }
140150 active = { config . enableNVMeFix }
141151 onChange = { ( ) => config . toggleNVMeFix ( ) }
142152 />
143153 < CustomizeOption
144154 label = { t ( 'CUSTOMIZE_LOAD_APPLEGUC' ) }
155+ description = { t ( 'CUSTOMIZE_DESC_ENABLE_APPLEGUC' ) }
145156 icon = { < GPUIcon /> }
146157 active = { config . enableAppleGuC }
147158 onChange = { ( ) => config . toggleAppleGuC ( ) }
148159 />
149160 < CustomizeOption
150161 label = { t ( 'CUSTOMIZE_CPU_BEST_PERFORMANCE' ) }
162+ description = { t ( 'CUSTOMIZE_DESC_CPU_BEST_PERFORMACE' ) }
151163 icon = { < CPUIcon /> }
152164 active = { config . cpuPerformanceMode }
153165 onChange = { ( ) => config . toggleCPUPerformaceMode ( ) }
@@ -164,6 +176,7 @@ function Customize() {
164176 />
165177 < CustomizeOption
166178 label = { t ( 'CUSTOMIZE_SIMPLIFY_CONFIG' ) }
179+ description = { t ( 'CUSTOMIZE_DESC_SIMPLIFY' ) }
167180 icon = { < ScissorIcon /> }
168181 active = { config . simplifyConfig }
169182 onChange = { ( ) => config . toggleSimplifyConfig ( ) }
0 commit comments