diff --git a/spellchecker/resources/messages/SpellCheckerBundle.properties b/spellchecker/resources/messages/SpellCheckerBundle.properties index 9229f9e07f8d..b584f8261336 100644 --- a/spellchecker/resources/messages/SpellCheckerBundle.properties +++ b/spellchecker/resources/messages/SpellCheckerBundle.properties @@ -8,6 +8,7 @@ spellchecking.inspection.name=Spelling typo.in.word.ref=Typo: In word '#ref' add.0.to.dictionary=Typo: Save ''{0}'' to dictionary add.to.dictionary=Save to dictionary +save.to.dictionary.fix=Save to dictionary save.0.to.dictionary.fix=Save {0} to dictionary save.0.to.dictionary.action=Save {0} to Dictionary 0.in.quotes=''{0}'' diff --git a/spellchecker/src/com/intellij/spellchecker/quickfixes/SaveTo.java b/spellchecker/src/com/intellij/spellchecker/quickfixes/SaveTo.java index 84a30b92393a..79fc61008495 100644 --- a/spellchecker/src/com/intellij/spellchecker/quickfixes/SaveTo.java +++ b/spellchecker/src/com/intellij/spellchecker/quickfixes/SaveTo.java @@ -67,7 +67,7 @@ public final class SaveTo implements SpellCheckerQuickFix, LowPriorityAction, Du @Override public @NotNull String getFamilyName() { - return SpellCheckerBundle.message("save.0.to.dictionary.fix", ""); + return SpellCheckerBundle.message("save.to.dictionary.fix"); } @Override @@ -165,6 +165,6 @@ public final class SaveTo implements SpellCheckerQuickFix, LowPriorityAction, Du } public static String getFixName() { - return SpellCheckerBundle.message("save.0.to.dictionary.fix", ""); + return SpellCheckerBundle.message("save.to.dictionary.fix"); } }