diff --git a/src/component/Canvas/CanvasEditor/managers/brushes/types/LongfurBrush.js b/src/component/Canvas/CanvasEditor/managers/brushes/types/LongfurBrush.js index 1ac88ce5..470946e5 100644 --- a/src/component/Canvas/CanvasEditor/managers/brushes/types/LongfurBrush.js +++ b/src/component/Canvas/CanvasEditor/managers/brushes/types/LongfurBrush.js @@ -205,7 +205,7 @@ export class LongfurBrush extends BaseBrush { max: 100, step: 1, description: this.t('Canvas.FurLengthDescription'), - category: this.t('Canvas.LongfurSettings'), + category: this.t('Canvas.FurSettings'), order: 100, }, { @@ -217,7 +217,7 @@ export class LongfurBrush extends BaseBrush { max: 1, step: 0.05, description: this.t('Canvas.FurDensityDescription'), - category: this.t('Canvas.LongfurSettings'), + category: this.t('Canvas.FurSettings'), order: 110, }, { @@ -229,7 +229,7 @@ export class LongfurBrush extends BaseBrush { max: 1, step: 0.05, description: this.t('Canvas.FlowCoefficientDescription'), - category: this.t('Canvas.LongfurSettings'), + category: this.t('Canvas.FurSettings'), order: 120, }, { @@ -241,7 +241,7 @@ export class LongfurBrush extends BaseBrush { max: 1, step: 0.05, description: this.t('Canvas.furCurvatureDescription'), - category: this.t('Canvas.LongfurSettings'), + category: this.t('Canvas.FurSettings'), order: 130, }, { @@ -250,7 +250,7 @@ export class LongfurBrush extends BaseBrush { type: "checkbox", defaultValue: this.randomizeDirection, description: this.t('Canvas.randomizeDirectionDescription'), - category: this.t('Canvas.LongfurSettings'), + category: this.t('Canvas.FurSettings'), order: 140, }, ]; diff --git a/src/component/Canvas/CanvasEditor/managers/brushes/types/ShadedBrush.js b/src/component/Canvas/CanvasEditor/managers/brushes/types/ShadedBrush.js index b3ffdfb9..283d5acf 100644 --- a/src/component/Canvas/CanvasEditor/managers/brushes/types/ShadedBrush.js +++ b/src/component/Canvas/CanvasEditor/managers/brushes/types/ShadedBrush.js @@ -291,7 +291,7 @@ export class ShadedBrush extends BaseBrush { }, { id: "blendMode", - name: this.t('Canvas.ShadedBlendMode'), + name: this.t('Canvas.ShadedMixedModel'), type: "select", defaultValue: this.blendMode, options: [ @@ -308,7 +308,7 @@ export class ShadedBrush extends BaseBrush { { value: "difference", label: this.t('Canvas.ShadedMixedModelDifference') }, { value: "exclusion", label: this.t('Canvas.ShadedMixedModelExclusion') }, ], - description: this.t('Canvas.ShadedBlendModeDescription'), + description: this.t('Canvas.ShadedMixedModelDescription'), category: this.t('Canvas.ShadedSettings'), order: 140, },