Move "Custom font missing" message to ApplicationBundle.properties

GitOrigin-RevId: 2a55b5468cf7003149c1248e539b752dc5604e7d
This commit is contained in:
Rustam Vishnyakov
2021-03-29 15:13:36 +03:00
committed by intellij-monorepo-bot
parent 37d970bc75
commit 566b26ba00
2 changed files with 2 additions and 1 deletions

View File

@@ -444,6 +444,7 @@ settings.editor.font.bold.weight=Bold weight:
settings.editor.font.recommended=Recommended
settings.editor.font.bold.weight.hint=<html>Used for the bold settings<br>in color scheme
settings.editor.font.preview.hint=Enter any text to preview
settings.editor.font.missing.custom.font=<Custom font missing>
checkbox.show.only.monospaced.fonts=Show only monospaced fonts
primary.font=Font:
secondary.font=Fallback font:

View File

@@ -108,7 +108,7 @@ class FontFamilyCombo extends AbstractFontCombo<FontFamilyCombo.MyFontItem> {
final static MyWarningItem INSTANCE = new MyWarningItem();
private MyWarningItem() {
super("<Custom font missing>", false);
super(ApplicationBundle.message("settings.editor.font.missing.custom.font"), false);
}
}