add labels

This commit is contained in:
dunkeroni
2025-01-25 22:49:11 -05:00
committed by psychedelicious
parent f93571f7ef
commit 8c9fc45341
2 changed files with 25 additions and 1 deletions

View File

@@ -1994,6 +1994,30 @@
"salt_and_pepper_type": "Salt and Pepper",
"noise_color": "Colored Noise",
"size": "Noise Size"
},
"adjust_image": {
"label": "Adjust Image",
"description": "Adjusts the selected channel of an image.",
"channel": "Channel",
"value_setting": "Value",
"scale_values": "Scale Values",
"red": "Red (RGBA)",
"green": "Green (RGBA)",
"blue": "Blue (RGBA)",
"alpha": "Alpha (RGBA)",
"cyan": "Cyan (CMYK)",
"magenta": "Magenta (CMYK)",
"yellow": "Yellow (CMYK)",
"black": "Black (CMYK)",
"hue": "Hue (HSV)",
"saturation": "Saturation (HSV)",
"value": "Value (HSV)",
"luminosity": "Luminosity (LAB)",
"a": "A (LAB)",
"b": "B (LAB)",
"y": "Y (YCbCr)",
"cb": "Cb (YCbCr)",
"cr": "Cr (YCbCr)"
}
},
"transform": {

View File

@@ -69,7 +69,7 @@ export const FilterAdjustImage = memo(({ onChange, config }: Props) => {
<Combobox value={value} options={options} onChange={handleChannelChange} isSearchable={false} />
</FormControl>
<FormControl>
<FormLabel m={0}>{t('controlLayers.filter.adjust_image.value')}</FormLabel>
<FormLabel m={0}>{t('controlLayers.filter.adjust_image.value_setting')}</FormLabel>
<CompositeSlider
value={config.value}
defaultValue={DEFAULTS.value}