Hi all I just looking in kcolordialog.cpp and I noticed that this const: ColorCollectionNameType have 2 items without follow the standard file names (to name pallete files)<br><br>//BEGIN<br>const ColorCollectionNameType colorCollectionName[] = {<br>
    { "Recent_Colors", I18N_NOOP2("palette name", "* Recent Colors *") },<br>    { "Custom_Colors", I18N_NOOP2("palette name", "* Custom Colors *") },<br>//END<br>
<br>This should be like this?<br><br>//BEGIN<br>const ColorCollectionNameType colorCollectionName[] = {<br>    { "Recent.colors", I18N_NOOP2("palette name", "* Recent Colors *") },<br>    { "Custom.colors", I18N_NOOP2("palette name", "* Custom Colors *") },<br>
//END<br><br>Percy<br><br>