Skip to content

Commit af3638b

Browse files
Merge pull request #7 from JetBrains/update-localization-0.1.0
Update localization for 0.1.1
2 parents 971b33b + c724504 commit af3638b

File tree

2 files changed

+16
-16
lines changed

2 files changed

+16
-16
lines changed

src/dotnet/ReSharperPlugin.DotNetDisassembler/Resources/Strings.resx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<value>Show ASM Viewer</value>
55
</data>
66
<data name="ShowAsmViewerContextAction_Description">
7-
<value>Opens the ASM Viewer window to display assembly code for the selected method, property, constructor, or type declaration</value>
7+
<value>Opens the ASM Viewer window to display JIT or native assembly code for the selected method, property, constructor, or type declaration</value>
88
</data>
99
<data name="ShowAsmViewerContextAction_Text">
1010
<value>Show in ASM Viewer</value>

src/rider/main/resources/messages/AsmViewerBundle.properties

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# UI Messages
2-
state.initializing=Loading...
3-
state.waiting.for.input=Place the caret on a method, property, constructor, or type declaration to view JIT assembly code
2+
state.initializing=Loading\u2026
3+
state.waiting.for.input=Place the caret on a method, property, constructor, or type declaration to view JIT or native assembly code
44

55
# Tool Window
66
toolwindow.stripe.title=ASM
@@ -9,11 +9,11 @@ toolwindow.stripe.title=ASM
99
diff.title=ASM Comparison
1010
diff.left.title=Snapshot
1111
diff.right.title=Current
12-
diff.error=Failed to create diff view
12+
diff.error=Failed to create a diff view
1313

1414
# Actions
1515
action.create.snapshot.text=Create Snapshot
16-
action.create.snapshot.description=Save current ASM code as snapshot
16+
action.create.snapshot.description=Save current ASM code as a snapshot
1717
action.diffable.mode.enable.text=Enable Diff-Friendly Output
1818
action.diffable.mode.disable.text=Disable Diff-Friendly Output
1919
action.diffable.mode.description=Toggle diff-friendly output mode
@@ -34,7 +34,7 @@ section.build=Build
3434
section.runtime=Runtime
3535
general.show.asm.comments=Show Comments
3636
general.diffable.output=Diff-Friendly Output
37-
general.diffable.help=Enables JIT diffable disassembly for more deterministic output (reduces volatile details).
37+
general.diffable.help=Enables JIT diffable disassembly for more deterministic output (reduces volatile details)
3838
jit.use.tiered=Use Tiered Compilation
3939
jit.use.pgo=Use PGO (Profile-Guided Optimization)
4040
jit.compiler.label=Code Generator:
@@ -46,30 +46,30 @@ build.target.framework.placeholder=auto (newest)
4646
runtime.run.app.mode=Run Project
4747
runtime.run.project.help=Runs the entire application instead of analyzing a single method in isolation. <b>Warning:</b> may take a long time or hang if the application waits for input.
4848
runtime.timeout.label=Timeout (seconds):
49-
runtime.timeout.help=Maximum time to wait for disassembly process. Set to 0 to disable timeout.
49+
runtime.timeout.help=Maximum time to wait for the disassembly process. Set to 0 to disable the timeout.
5050

5151
# Error Messages
5252
error.show.details=Show details
5353
error.details.dialog.title=Error Details
54-
error.SourceFileNotFound=Source file not found in solution
55-
error.PsiSourceFileUnavailable=Unable to get PSI source file
54+
error.SourceFileNotFound=Source file is not found in the solution
55+
error.PsiSourceFileUnavailable=Unable to get the PSI source file
5656
error.UnsupportedLanguage=ASM Viewer only works with C# files
57-
error.InvalidCaretPosition=Place caret on a method, property, constructor, or type declaration to view ASM code
57+
error.InvalidCaretPosition=Place the caret on a method, property, constructor, or type declaration to view JIT/native assembly code
5858
error.PgoNotSupportedForAot=PGO has no effect on R2R'd/NativeAOT code
5959
error.RunModeNotSupportedForAot=Run mode is not supported for crossgen/NativeAOT
6060
error.TieredJitNotSupportedForAot=Tiered Compilation has no effect on R2R/NativeAOT code
6161
error.FlowgraphsNotSupportedForAot=Flowgraphs are not tested with crossgen2/NativeAOT yet (in plugin)
6262
error.FlowgraphsForClassNotSupported=Flowgraph for classes (all methods) is not supported yet
63-
error.UnsupportedTargetFramework=Only net6.0 (and newer) apps are supported.\nMake sure <TargetFramework>net6.0</TargetFramework> is set in your csproj.
64-
error.CustomRuntimeRequiresNet7=Only net7.0 (and newer) apps are supported with non-locally built dotnet/runtime.\nMake sure <TargetFramework>net7.0</TargetFramework> is set in your csproj.
65-
error.GenericMethodsRequireRunMode=Generic methods require Run Project mode to be enabled.\nEnable it in ASM Viewer settings.
66-
error.CompilationFailed=Failed to generate ASM code
63+
error.UnsupportedTargetFramework=Only apps targeting .NET 6.0 or later are supported.\nMake sure <TargetFramework>net6.0</TargetFramework> is set in your .csproj file.
64+
error.CustomRuntimeRequiresNet7=Only apps targeting .NET 7.0 or later are supported with non-locally built dotnet/runtime.\nMake sure <TargetFramework>net7.0</TargetFramework> is set in your .csproj file.
65+
error.GenericMethodsRequireRunMode=Generic methods require Run Project mode to be enabled.\nEnable it in the ASM Viewer settings.
66+
error.CompilationFailed=Failed to generate JIT/native assembly code
6767
error.ProjectPathNotFound=Project path not found
6868
error.DotnetBuildFailed=dotnet build failed
6969
error.DotnetPublishFailed=dotnet publish failed
70-
error.EmptyDisassembly=No disassembly produced. The method may be one of the following:\n\n\
70+
error.EmptyDisassembly=No disassembly was produced. The method may be one of the following:\n\n\
7171
- inlined (use [MethodImpl(MethodImplOptions.NoInlining)])\n\
72-
- unreachable and removed by optimizations (e.g. NativeAOT)
72+
- unreachable and removed by optimizations (for example, NativeAOT)
7373
error.DotNetCliNotFound=.NET CLI not found. Please configure .NET SDK in Rider settings.
7474
error.RuntimePackNotFound=Runtime pack not found
7575
error.CoreClrCheckedNotFound=CoreClr checked files not found

0 commit comments

Comments
 (0)