Move string for color map option to strings/en.ini file

This commit is contained in:
David Capello 2018-03-12 10:27:47 -03:00
parent 2f251c8a5a
commit b0f383c4da
2 changed files with 2 additions and 1 deletions

View File

@ -347,6 +347,7 @@ SetColorSelector_Spectrum = Color Spectrum
SetColorSelector_TintShadeTone = Color Tint/Shade/Tone
SetColorSelector_RGBWheel = RGB Color Wheel
SetColorSelector_RYBWheel = RYB Color Wheel
SetColorSelector_NormalMapWheel = Normal Map Color Wheel
SetInkType = Set Ink Type: {0}
SetLoopSection = Set Loop Section
SetPalette = Set Palette

View File

@ -88,7 +88,7 @@ std::string SetColorSelectorCommand::onGetFriendlyName() const
type = Strings::commands_SetColorSelector_RYBWheel();
break;
case ColorBar::ColorSelector::NORMAL_MAP_WHEEL:
type = "Normal Map Color Wheel";
type = Strings::commands_SetColorSelector_NormalMapWheel();
break;
}
return fmt::format(getBaseFriendlyName(), type);