marhali / easy-i18n

This is a IntelliJ IDE based plugin for internationalization. Supports the most common translation file types.
MIT License
78 stars 24 forks source link

What does the colors mean in the tool window? #372

Open karimdn-dw opened 5 months ago

karimdn-dw commented 5 months ago

I know red means missing a translation. But what does orange/yellow and white mean?

image
dmgsoftware commented 4 months ago

I was wondering about this as well, so I went looking through the code and found:

if(missesValues(row, table)) {
    component.setForeground(JBColor.RED);
} else if(hasDuplicates(row, table)) {
    component.setForeground(JBColor.ORANGE);
}

So, orange means that the value is duplicated and white is just the standard, no problem color.

marhali commented 3 months ago

Possibly add configuration options to adjust the colour palette