From 390ba59bc2ef321373d95932a183ebc899a378c0 Mon Sep 17 00:00:00 2001 From: Alexey Belkov Date: Wed, 7 Dec 2022 14:19:44 +0400 Subject: [PATCH] Fix spelling of "quick-fix" phrase in messages It should be hyphenated: https://www.jetbrains.com/help/idea/resolving-problems.html GitOrigin-RevId: a3cc01babc32c3edfbe59594fa3756a415cc169b --- .../resources/messages/JavaLessonsBundle.properties | 2 +- java/openapi/resources/messages/JavaBundle.properties | 4 ++-- .../resources/messages/InspectionsBundle.properties | 8 ++++---- .../resources/messages/CodeInsightBundle.properties | 2 +- .../lang-api/resources/messages/DaemonBundle.properties | 2 +- .../platform-api/resources/messages/IdeBundle.properties | 2 +- .../src/messages/ActionsBundle.properties | 8 ++++---- .../resources/messages/InspectionGadgetsBundle.properties | 2 +- .../resources/messages/DevKitBundle.properties | 2 +- .../inspections/statefulEp/CapturedFromOuterClass.java | 4 ++-- .../testData/inspections/statefulEp/Collection.java | 6 +++--- .../testData/inspections/statefulEp/Fix.java | 4 ++-- .../testData/inspections/statefulEp/Map.java | 2 +- .../testData/inspections/statefulEp/Ref.java | 6 +++--- .../groovy-psi/resources/messages/GroovyBundle.properties | 2 +- .../messages/KotlinIdeaGradleBundle.properties | 2 +- .../messages/ResourceBundleEditorBundle.properties | 2 +- python/pluginResources/messages/PyBundle.properties | 2 +- .../resources/messages/PythonLessonsBundle.properties | 4 ++-- .../resources/messages/PyPsiBundle.properties | 4 ++-- python/rest/resources/messages/RestBundle.properties | 2 +- 21 files changed, 36 insertions(+), 36 deletions(-) diff --git a/java/java-features-trainer/resources/messages/JavaLessonsBundle.properties b/java/java-features-trainer/resources/messages/JavaLessonsBundle.properties index d2d2aea7d12d..e30e95c1874e 100644 --- a/java/java-features-trainer/resources/messages/JavaLessonsBundle.properties +++ b/java/java-features-trainer/resources/messages/JavaLessonsBundle.properties @@ -46,7 +46,7 @@ java.onboarding.invoke.completion.tip=Tip: shows complet Also, you can press {0} to show completion items in any place of the code. java.onboarding.invoke.intention.for.warning.1=You have just fixed a bug, but you can make this code look even better. \ IDEA highlights and adds a yellow bulb to the code lines that can be improved. -java.onboarding.invoke.intention.for.warning.2=Press {0} to preview the warnings and apply a quick fix. +java.onboarding.invoke.intention.for.warning.2=Press {0} to preview the warnings and apply a quick-fix. java.onboarding.select.fix=Apply the first item: {0}. In this case, the for-each loop will make code easier to understand. java.onboarding.invoke.intention.for.code=Intentions also save your time and make coding easier. Let''s use an intention to reformat string concatenation. \ Press {0} to show possible options. diff --git a/java/openapi/resources/messages/JavaBundle.properties b/java/openapi/resources/messages/JavaBundle.properties index a4b1a33373f6..ad0a299f8095 100644 --- a/java/openapi/resources/messages/JavaBundle.properties +++ b/java/openapi/resources/messages/JavaBundle.properties @@ -580,8 +580,8 @@ inspection.overwritten.key.set.message=Duplicate Set element inspection.overwritten.key.array.message=Overwritten array element inspection.parameter.can.be.local.display.name=Value passed as parameter never read inspection.parameter.can.be.local.problem.descriptor=Parameter can be converted to a local variable -inspection.pseudo.functional.style.add.methods.after.quick.fix=After quick fix: -inspection.pseudo.functional.style.add.methods.before.quick.fix=Before quick fix: +inspection.pseudo.functional.style.add.methods.after.quick.fix=After quick-fix: +inspection.pseudo.functional.style.add.methods.before.quick.fix=Before quick-fix: inspection.pseudo.functional.style.add.methods.fully.qualified.class.name=Fully qualified class name: inspection.pseudo.functional.style.add.methods.method.name=Method name: inspection.pseudo.functional.style.add.methods.stream.api.replacement=Stream API replacement: diff --git a/platform/analysis-api/resources/messages/InspectionsBundle.properties b/platform/analysis-api/resources/messages/InspectionsBundle.properties index 6fce439235eb..fec7acd78a14 100644 --- a/platform/analysis-api/resources/messages/InspectionsBundle.properties +++ b/platform/analysis-api/resources/messages/InspectionsBundle.properties @@ -286,11 +286,11 @@ enable.inspection.btn.text=Enable inspection disable.inspection.btn.text=Disable inspection inspection.node.text={0} inspection inspection.node.disabled.state=Disabled -apply.quick.fixes.action.text=Apply quick fixes -apply.quick.fixes.to.all.action.text=Apply quick fixes to all the problems +apply.quick.fixes.action.text=Apply quick-fixes +apply.quick.fixes.to.all.action.text=Apply quick-fixes to all the problems nothing.found.to.fix.title=Nothing Found to Fix -there.are.no.applicable.quick.fixes.message=There are no applicable quick fixes -inspections.view.applying.quick.label=Applying quick fix for ''{0}''\u2026 +there.are.no.applicable.quick.fixes.message=There are no applicable quick-fixes +inspections.view.applying.quick.label=Applying quick-fix for ''{0}''\u2026 inspections.view.no.preview.label=Can''t open preview for ''{0}'' inspections.view.invalid.label=''{0}'' is no longer valid. inspections.view.nothing.message=Select inspection to see problems. diff --git a/platform/lang-api/resources/messages/CodeInsightBundle.properties b/platform/lang-api/resources/messages/CodeInsightBundle.properties index edb70111a460..119c1e502135 100644 --- a/platform/lang-api/resources/messages/CodeInsightBundle.properties +++ b/platform/lang-api/resources/messages/CodeInsightBundle.properties @@ -378,7 +378,7 @@ documentation.tool.window.title=Documentation popup.title.auto.update.from.source=Auto-update from Source action.description.refresh.documentation.on.selection.change.automatically=Refresh documentation on selection change automatically action.description.restore.popup.view.mode=Restore popup view mode -progress.text.searching.for.additional.intention.actions.quick.fixes=Searching for additional intention actions \\& quick fixes +progress.text.searching.for.additional.intention.actions.quick.fixes=Searching for additional intention actions \\& quick-fixes error.hint.can.t.expand.postfix.template=Can't expand postfix template popup.title.next.error.action.0.goes.through=''Next Error'' Action{0} Goes Through progress.title.searching.for.context.actions=Searching for context actions... diff --git a/platform/lang-api/resources/messages/DaemonBundle.properties b/platform/lang-api/resources/messages/DaemonBundle.properties index 99cc0d124be0..de3205789a26 100644 --- a/platform/lang-api/resources/messages/DaemonBundle.properties +++ b/platform/lang-api/resources/messages/DaemonBundle.properties @@ -52,5 +52,5 @@ process.title.no.file=No file popup.action.configure.inspections=Configure Inspections... popup.title.configure.highlighting.level=Highlighting Level for {0} daemon.tooltip.more.actions.link.label=More actions... -daemon.tooltip.show.quick.fixes.action.text=Show Quick Fixes +daemon.tooltip.show.quick.fixes.action.text=Show Quick-Fixes daemon.tooltip.show.inspection.description.action.text=Show Inspection Description diff --git a/platform/platform-api/resources/messages/IdeBundle.properties b/platform/platform-api/resources/messages/IdeBundle.properties index 5d16c5fd1605..455259da86c5 100644 --- a/platform/platform-api/resources/messages/IdeBundle.properties +++ b/platform/platform-api/resources/messages/IdeBundle.properties @@ -2335,7 +2335,7 @@ shortcut.in.group.text=in {0} tooltip.text.add.shortcut.with.special.keys=Set shortcuts with {0} keys label.text.code.completion.saved=Code completion has saved you from typing at least {0} since {1} (~{2} per working day) label.text.character.count={0} characters -label.text.quick.fixes.saved=Quick fixes have saved you from {0} possible bugs since {1} (~{2} per working day) +label.text.quick.fixes.saved=Quick-fixes have saved you from {0} possible bugs since {1} (~{2} per working day) option.hide.tool.window.bars=Hide tool window bars notification.title.unknown.macros.error=Load error: undefined path variables diff --git a/platform/platform-resources-en/src/messages/ActionsBundle.properties b/platform/platform-resources-en/src/messages/ActionsBundle.properties index d8bdbdb3cd07..dfb67e931f20 100644 --- a/platform/platform-resources-en/src/messages/ActionsBundle.properties +++ b/platform/platform-resources-en/src/messages/ActionsBundle.properties @@ -749,9 +749,9 @@ action.MoveLineUp.text=Move Line _Up action.MoveLineUp.description=Move selected lines one line up group.AnalyzeMenu.text=Analy_ze action.CodeCleanup.text=_Code Cleanup... -action.CodeCleanup.description=Run cleanup inspections and apply quick fixes +action.CodeCleanup.description=Run cleanup inspections and apply quick-fixes action.SilentCodeCleanup.text=Silent Code Cleanup -action.SilentCodeCleanup.description=Run cleanup inspections and apply quick fixes with current inspection profile +action.SilentCodeCleanup.description=Run cleanup inspections and apply quick-fixes with current inspection profile action.InspectCode.text=_Inspect Code... action.InspectCode.description=Inspect code action.InferNullity.text=Infer _Nullity... @@ -2577,8 +2577,8 @@ action.ProblemsView.SortBySeverity.text=Severity action.ProblemsView.SortBySeverity.description=Allows to sort problems by severity action.ProblemsView.SortByName.text=Name action.ProblemsView.SortByName.description=Allows to sort problems by name -action.ProblemsView.QuickFixes.text=Show Quick Fixes -action.ProblemsView.QuickFixes.description=Show available quick fixes for a selected problem +action.ProblemsView.QuickFixes.text=Show Quick-Fixes +action.ProblemsView.QuickFixes.description=Show available quick-fixes for a selected problem action.ProblemsView.CopyProblemDescription.text=Copy Problem Description action.ProblemsView.CopyProblemDescription.description=Copy problem description to clipboard diff --git a/plugins/InspectionGadgets/InspectionGadgetsAnalysis/resources/messages/InspectionGadgetsBundle.properties b/plugins/InspectionGadgets/InspectionGadgetsAnalysis/resources/messages/InspectionGadgetsBundle.properties index f0dfc15875e0..42e013ed96e3 100644 --- a/plugins/InspectionGadgets/InspectionGadgetsAnalysis/resources/messages/InspectionGadgetsBundle.properties +++ b/plugins/InspectionGadgets/InspectionGadgetsAnalysis/resources/messages/InspectionGadgetsBundle.properties @@ -2382,7 +2382,7 @@ use.isblank.to.check.if.string.is.whitespace.or.empty=Use 'isBlank()' to check i make.class.final.fix.family.name=Make class final side.effects.method.ref.to.lambda.fix.family.name={0} (side effects) encapsulate.variable.fix.family.name=Encapsulate field -method.may.be.static.replaces.qualifiers.with.class.references.option=Quick fix replaces instance qualifiers with class references +method.may.be.static.replaces.qualifiers.with.class.references.option=Quick-fix replaces instance qualifiers with class references method.may.be.static.ignore.default.methods.option=Ignore 'default' methods convert.empty.anonymous.to.new.fix.family.name=Remove '{}' replace.method.ref.with.qualifier.fix.family.name=Replace with qualifier diff --git a/plugins/devkit/devkit-core/resources/messages/DevKitBundle.properties b/plugins/devkit/devkit-core/resources/messages/DevKitBundle.properties index 9566c868efd7..fa3f44a81415 100644 --- a/plugins/devkit/devkit-core/resources/messages/DevKitBundle.properties +++ b/plugins/devkit/devkit-core/resources/messages/DevKitBundle.properties @@ -302,7 +302,7 @@ inspections.plugin.xml.dynamic.plugin.analyze.extension.point={0} for ''{1}'' inspections.stateful.extension.point.leak.psi.element=Potential memory leak: don't hold PsiElement, use SmartPsiElementPointer instead inspections.stateful.extension.point.leak.psi.element.quick.fix=See also LocalQuickFixOnPsiElement -inspections.stateful.extension.point.do.not.use.in.quick.fix=Do not use {0} as a field in quick fix +inspections.stateful.extension.point.do.not.use.in.quick.fix=Do not use {0} as a field in quick-fix inspections.stateful.extension.point.do.not.use.in.extension=Do not use {0} as a field in extension inspections.file.equals.method=Do not use File.equals/hashCode/compareTo as they don't honor case-sensitivity on macOS. Please use FileUtil.filesEquals/fileHashCode/compareFiles instead. diff --git a/plugins/devkit/devkit-java-tests/testData/inspections/statefulEp/CapturedFromOuterClass.java b/plugins/devkit/devkit-java-tests/testData/inspections/statefulEp/CapturedFromOuterClass.java index 74ab2072d0b7..f47c6b584f45 100644 --- a/plugins/devkit/devkit-java-tests/testData/inspections/statefulEp/CapturedFromOuterClass.java +++ b/plugins/devkit/devkit-java-tests/testData/inspections/statefulEp/CapturedFromOuterClass.java @@ -1,7 +1,7 @@ public class CapturedFromOuterClass extends com.intellij.codeInspection.LocalQuickFix { final com.intellij.psi.PsiElement pe; - final com.intellij.psi.PsiReference r; - com.intellij.openapi.project.Project p; + final com.intellij.psi.PsiReference r; + com.intellij.openapi.project.Project p; final com.intellij.openapi.project.Project pf; public CapturedFromOuterClass(com.intellij.psi.PsiElement a, String b) { super(); diff --git a/plugins/devkit/devkit-java-tests/testData/inspections/statefulEp/Collection.java b/plugins/devkit/devkit-java-tests/testData/inspections/statefulEp/Collection.java index 635ac81a9fbd..3189194976bd 100644 --- a/plugins/devkit/devkit-java-tests/testData/inspections/statefulEp/Collection.java +++ b/plugins/devkit/devkit-java-tests/testData/inspections/statefulEp/Collection.java @@ -1,9 +1,9 @@ public class Collection extends com.intellij.codeInspection.LocalQuickFix { java.util.Collection pe; - java.util.Collection r; - java.util.Collection> r1; + java.util.Collection r; + java.util.Collection> r1; java.util.Collection r2; java.util.Collection r3; java.util.Collection> r4; - com.intellij.openapi.project.Project p; + com.intellij.openapi.project.Project p; } \ No newline at end of file diff --git a/plugins/devkit/devkit-java-tests/testData/inspections/statefulEp/Fix.java b/plugins/devkit/devkit-java-tests/testData/inspections/statefulEp/Fix.java index a7e525d2e3e9..7cf71980ee93 100644 --- a/plugins/devkit/devkit-java-tests/testData/inspections/statefulEp/Fix.java +++ b/plugins/devkit/devkit-java-tests/testData/inspections/statefulEp/Fix.java @@ -1,7 +1,7 @@ public class Fix extends com.intellij.codeInspection.LocalQuickFix { final com.intellij.psi.PsiElement pe; - final com.intellij.psi.PsiReference r; - com.intellij.openapi.project.Project p; + final com.intellij.psi.PsiReference r; + com.intellij.openapi.project.Project p; final com.intellij.openapi.project.Project pf; public Fix() { super(); diff --git a/plugins/devkit/devkit-java-tests/testData/inspections/statefulEp/Map.java b/plugins/devkit/devkit-java-tests/testData/inspections/statefulEp/Map.java index 39f3077ee02a..dd26500b2def 100644 --- a/plugins/devkit/devkit-java-tests/testData/inspections/statefulEp/Map.java +++ b/plugins/devkit/devkit-java-tests/testData/inspections/statefulEp/Map.java @@ -1,7 +1,7 @@ public class Map extends com.intellij.codeInspection.LocalQuickFix { java.util.Map pe; java.util.Map r; - java.util.Map, com.intellij.psi.PsiReference> r1; + java.util.Map, com.intellij.psi.PsiReference> r1; java.util.Map r2; java.util.Map r3; java.util.Collection> r4; diff --git a/plugins/devkit/devkit-java-tests/testData/inspections/statefulEp/Ref.java b/plugins/devkit/devkit-java-tests/testData/inspections/statefulEp/Ref.java index eb525fe5a752..5fab974884c0 100644 --- a/plugins/devkit/devkit-java-tests/testData/inspections/statefulEp/Ref.java +++ b/plugins/devkit/devkit-java-tests/testData/inspections/statefulEp/Ref.java @@ -1,9 +1,9 @@ public class Ref extends com.intellij.codeInspection.LocalQuickFix { com.intellij.openapi.util.Ref pe; - com.intellij.openapi.util.Ref r; - com.intellij.openapi.util.Ref> r1; + com.intellij.openapi.util.Ref r; + com.intellij.openapi.util.Ref> r1; com.intellij.openapi.util.Ref r2; com.intellij.openapi.util.Ref r3; com.intellij.openapi.util.Ref> r4; - com.intellij.openapi.project.Project p; + com.intellij.openapi.project.Project p; } \ No newline at end of file diff --git a/plugins/groovy/groovy-psi/resources/messages/GroovyBundle.properties b/plugins/groovy/groovy-psi/resources/messages/GroovyBundle.properties index 2dbd20b73b33..9f13ede2f0f4 100644 --- a/plugins/groovy/groovy-psi/resources/messages/GroovyBundle.properties +++ b/plugins/groovy/groovy-psi/resources/messages/GroovyBundle.properties @@ -355,7 +355,7 @@ recursive.constructor.invocation=Recursive constructor invocation the.usage.of.a.map.entry.expression.to.initialize.an.enum.is.currently.not.supported=The usage of a map entry expression to initialize an Enum is currently not supported class.definition.is.not.expected.here=Class definition is not expected here move.class.0.from.method=Move ''{0}'' to correct place -move.class.from.method.family.name=Move to correct place quick fix +move.class.from.method.family.name=Move to correct place quick-fix cannot.infer.argument.types=Cannot infer argument types Equals=Equals default.initializers.are.not.allowed.in.abstract.method=Default initializers are not allowed in abstract methods diff --git a/plugins/kotlin/gradle/gradle/resources-en/messages/KotlinIdeaGradleBundle.properties b/plugins/kotlin/gradle/gradle/resources-en/messages/KotlinIdeaGradleBundle.properties index 9f20716c01f0..714490047d27 100644 --- a/plugins/kotlin/gradle/gradle/resources-en/messages/KotlinIdeaGradleBundle.properties +++ b/plugins/kotlin/gradle/gradle/resources-en/messages/KotlinIdeaGradleBundle.properties @@ -74,7 +74,7 @@ error.text.this.language.feature.requires.version=This language feature requires error.text.unable.to.get.gradle.home.directory=Unable to get Gradle home directory notification.title.plugin.suggestion=Plugin suggestion notification.text.native.debug.provides.debugger.for.kotlin.native=Native Debug provides debugger for Kotlin/Native -notification.text.kotlin.js.inspections.pack.provides.inspections.and.quick.fixes.for.kotlin.js=Kotlin/JS inspections pack provides inspections and quick fixes for Kotlin/JS +notification.text.kotlin.js.inspections.pack.provides.inspections.and.quick.fixes.for.kotlin.js=Kotlin/JS inspections pack provides inspections and quick-fixes for Kotlin/JS notification.text.kotlin.js.compiler.gradle.notification.group.name=Kotlin/JS compiler Gradle notification group presentable.text.java.with.gradle=Java with Gradle presentable.text.javascript.with.gradle=JavaScript with Gradle diff --git a/plugins/properties/properties-resource-bundle-editor/resources/messages/ResourceBundleEditorBundle.properties b/plugins/properties/properties-resource-bundle-editor/resources/messages/ResourceBundleEditorBundle.properties index cd1e6af925fa..b041b05b1eac 100644 --- a/plugins/properties/properties-resource-bundle-editor/resources/messages/ResourceBundleEditorBundle.properties +++ b/plugins/properties/properties-resource-bundle-editor/resources/messages/ResourceBundleEditorBundle.properties @@ -3,7 +3,7 @@ properties.files.inspection.group.display.name=Properties files new.property.dialog.title=New Property Key new.property.dialog.name.prompt.text=Enter new property key name: new.property.dialog.checkbox.text=Insert after selected property -resource.bundle.editor.show.quick.fixes.action.text=Show Quick Fixes in Resource Bundle Editor +resource.bundle.editor.show.quick.fixes.action.text=Show Quick-Fixes in Resource Bundle Editor resource.bundle.editor.settings.action.title=Resource Bundle Editor Settings incomplete.property.quick.fix.name=Ignore untranslated locales diff --git a/python/pluginResources/messages/PyBundle.properties b/python/pluginResources/messages/PyBundle.properties index 1cb3cf7baaa8..79118ac4143d 100644 --- a/python/pluginResources/messages/PyBundle.properties +++ b/python/pluginResources/messages/PyBundle.properties @@ -1,4 +1,4 @@ -### Quick fixes ### +### Quick-fixes ### QFIX.add.import.add.import=Add "''{0}''" #PyImplementMethodsQuickFix diff --git a/python/python-features-trainer/resources/messages/PythonLessonsBundle.properties b/python/python-features-trainer/resources/messages/PythonLessonsBundle.properties index d8fabc2acc45..c2eeee2a6160 100644 --- a/python/python-features-trainer/resources/messages/PythonLessonsBundle.properties +++ b/python/python-features-trainer/resources/messages/PythonLessonsBundle.properties @@ -47,7 +47,7 @@ python.onboarding.invoke.completion=Now let''s start typing {0} inside the paren python.onboarding.choose.values.item=Select {0} and press {1}. python.onboarding.invoke.intention.for.warning.1=You have just fixed a bug, but you can make this code look even better.\ PyCharm highlights and adds a yellow bulb to the code lines that can be improved. -python.onboarding.invoke.intention.for.warning.2=Press {0} to preview the warnings and apply a quick fix. +python.onboarding.invoke.intention.for.warning.2=Press {0} to preview the warnings and apply a quick-fix. python.onboarding.select.fix=Apply the first item: {0}. With this fix, your code looks neat. python.onboarding.invoke.intention.for.code=Intentions also save your time and make coding easier. Let''s use an intention to quickly add a return type for {0}. Press {1}. python.onboarding.apply.intention=Select {0} and press {1}. @@ -124,7 +124,7 @@ python.quick.fix.refactoring.type.new.argument=Some refactorings can be performe Suppose we want to add a parameter to the method {0} and pass the variable {1} to it. Let''s type {2} after the first argument. python.quick.fix.refactoring.close.completion.list=For now, we don''t want to apply any completion. Close the list ({0}). python.quick.fix.refactoring.invoke.intentions=As you might have noticed, is showing you a warning here. Let''s invoke intentions by pressing {0}. -python.quick.fix.refactoring.choose.change.signature=Choose the {0} quick fix. +python.quick.fix.refactoring.choose.change.signature=Choose the {0} quick-fix. python.quick.fix.refactoring.select.new.parameter=Let''s set the default value for the new parameter. Click the new parameter line. \ Alternatively, you can switch focus to the parameter by pressing {0} and then {1}. python.quick.fix.refactoring.set.default.value=You may navigate through the fields and the checkbox by using {0}. \ diff --git a/python/python-psi-impl/resources/messages/PyPsiBundle.properties b/python/python-psi-impl/resources/messages/PyPsiBundle.properties index 493f20340367..641aa59ba27e 100644 --- a/python/python-psi-impl/resources/messages/PyPsiBundle.properties +++ b/python/python-psi-impl/resources/messages/PyPsiBundle.properties @@ -387,7 +387,7 @@ INTN.convert.absolute.to.relative=Convert absolute import to relative #PyInvertIfConditionIntention INTN.invert.if.condition=Invert 'if' condition -### Quick fixes ### +### Quick-fixes ### QFIX.add.qualifier=Add qualifier QFIX.NAME.auto.import=Import @@ -509,7 +509,7 @@ QFIX.remove.decorator=Remove decorator QFIX.NAME.make.function.return.type=Make function return inferred type QFIX.make.function.return.type=Make ''{0}'' return ''{1}'' -# Add method quick fix +# Add method quick-fix QFIX.NAME.add.method.to.class=Add method to class QFIX.add.method.to.class=Add method {0}() to class {1} QFIX.failed.to.add.method=
Failed to add a method!

diff --git a/python/rest/resources/messages/RestBundle.properties b/python/rest/resources/messages/RestBundle.properties index 0a639401d916..bb9f4ca71e61 100644 --- a/python/rest/resources/messages/RestBundle.properties +++ b/python/rest/resources/messages/RestBundle.properties @@ -3,7 +3,7 @@ INSP.GROUP.rest=ReST INSP.role.not.defined=Role is not defined -### Quick fixes ### +### Quick-fixes ### QFIX.ignore.role.0=Ignore undefined role ''{0}'' QFIX.ignore.role=Ignore an undefined role