Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/

package consulo.xstylesheet.codeInsight;

import consulo.annotation.access.RequiredReadAction;
Expand All @@ -24,6 +23,7 @@
import consulo.language.editor.rawHighlight.HighlightDisplayLevel;
import consulo.language.psi.PsiElement;
import consulo.language.psi.PsiElementVisitor;
import consulo.localize.LocalizeValue;
import consulo.xstylesheet.definition.XStyleSheetProperty;
import consulo.xstylesheet.psi.PsiXStyleSheetProperty;
import consulo.xstylesheet.psi.PsiXStyleSheetVariable;
Expand Down Expand Up @@ -67,14 +67,14 @@ public void visitElement(PsiElement element) {

@Nonnull
@Override
public String getGroupDisplayName() {
return "CSS";
public LocalizeValue getGroupDisplayName() {
return LocalizeValue.localizeTODO("CSS");
}

@Nonnull
@Override
public String getDisplayName() {
return "Invalid property name";
public LocalizeValue getDisplayName() {
return LocalizeValue.localizeTODO("Invalid property name");
}

@Nonnull
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
import consulo.language.editor.rawHighlight.HighlightDisplayLevel;
import consulo.language.psi.PsiElement;
import consulo.language.psi.PsiElementVisitor;
import consulo.localize.LocalizeValue;
import consulo.xstylesheet.definition.XStyleSheetProperty;
import consulo.xstylesheet.psi.PsiXStyleSheetProperty;
import consulo.xstylesheet.psi.PsiXStyleSheetPropertyValuePart;
Expand Down Expand Up @@ -70,14 +71,14 @@ public void visitElement(PsiElement element) {

@Nonnull
@Override
public String getGroupDisplayName() {
return "CSS";
public LocalizeValue getGroupDisplayName() {
return LocalizeValue.localizeTODO("CSS");
}

@Nonnull
@Override
public String getDisplayName() {
return "Invalid property value";
public LocalizeValue getDisplayName() {
return LocalizeValue.localizeTODO("Invalid property value");
}

@Nonnull
Expand Down
Loading