Skip to content

Commit

Permalink
Fix broken key description
Browse files Browse the repository at this point in the history
Localized string exists, but was not referenced correctly.
  • Loading branch information
Bananeweizen authored and mickaelistria committed Nov 11, 2023
1 parent 9a7a6cb commit d342047
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion org.eclipse.lsp4e/plugin.properties
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ format.command.name=Format
commands.symbolsInFile.name=Go to Symbol in File
commands.symbolsInWorksapce.name=Go to Symbol in Workspace
openDeclarationHyperlink_name=Go to declaration
openDeclarationHyperlink_decription=Get to the location where this element is declared
openDeclarationHyperlink_description=Get to the location where this element is declared
refactorings.menu.label=Refactorings
codeactions.menu.label=Code Actions
languageservers.preference.page=Language Servers
Expand Down
10 changes: 5 additions & 5 deletions org.eclipse.lsp4e/plugin.xml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
<hyperlinkDetector
activate="true"
class="org.eclipse.lsp4e.operations.declaration.OpenDeclarationHyperlinkDetector"
description="%openDeclarationHyperlink_decription"
description="%openDeclarationHyperlink_description"
id="org.eclipse.lsp4e.hyperlinkDetector"
name="%openDeclarationHyperlink_name"
targetId="org.eclipse.ui.DefaultTextEditor">
Expand Down Expand Up @@ -92,19 +92,19 @@
</command>
<command
categoryId="org.eclipse.lsp4e.category"
description="%command.open.call.hierarchy.decription"
description="%command.open.call.hierarchy.description"
id="org.eclipse.lsp4e.openCallHierarchy"
name="%command.open.call.hierarchy.name">
</command>
<command
categoryId="org.eclipse.lsp4e.category"
description="%command.selection.range.up.decription"
description="%command.selection.range.up.description"
id="org.eclipse.lsp4e.selectionRange.up"
name="%command.selection.range.up.name">
</command>
<command
categoryId="org.eclipse.lsp4e.category"
description="%command.selection.range.down.decription"
description="%command.selection.range.down.description"
id="org.eclipse.lsp4e.selectionRange.down"
name="%command.selection.range.down.name">
</command>
Expand All @@ -116,7 +116,7 @@
</command>
<command
categoryId="org.eclipse.lsp4e.category"
description="%command.open.type.hierarchy.decription"
description="%command.open.type.hierarchy.description"
id="org.eclipse.lsp4e.openTypeHierarchy"
name="%command.open.type.hierarchy.name">
</command>
Expand Down

0 comments on commit d342047

Please sign in to comment.