marhali / easy-i18n

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

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

Open karimdn-dw opened 9 months ago

karimdn-dw commented 9 months ago

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

image
dmgsoftware commented 8 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 7 months ago

Possibly add configuration options to adjust the colour palette

cptnricard commented 4 months ago

I think there are two issues here.

image