From 17e3ff6d10bdd5ebc88cb9636f6c02c108f1594e Mon Sep 17 00:00:00 2001 From: Tarik Brown Date: Tue, 22 Aug 2023 13:30:40 -0700 Subject: [PATCH 1/6] update localized intellisense crash string --- Extension/src/nativeStrings.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Extension/src/nativeStrings.json b/Extension/src/nativeStrings.json index 209bdd6350..856ea55e3c 100644 --- a/Extension/src/nativeStrings.json +++ b/Extension/src/nativeStrings.json @@ -248,7 +248,7 @@ "memory_limit_shutting_down_intellisense": "Shutting down IntelliSense server: {0}. Memory usage is {1} MB and has exceeded the {2} MB limit.", "failed_to_query_for_standard_version": "Failed to query compiler at path \"{0}\" for default standard versions. Compiler querying is disabled for this compiler.", "unrecognized_language_standard_version": "Compiler query returned an unrecognized language standard version. The latest supported version will be used instead.", - "intellisense_process_crash_detected": "IntelliSense process crash detected.", + "intellisense_process_crash_detected": "IntelliSense process crash detected. {0}", "return_values_label": { "text": "Return values:", "hint": "This label is for the return values description for a function. Usage example: 'Return values: 1 if key is found. 2 if input can't be read. 3 if input is empty.'" @@ -448,4 +448,4 @@ "text": "Copying Declaration / Definition to clipboard failed: %s", "hint": "The operation 'Copy Declaration / Definition' on a function was not successful. %s is the error info that has a period at the end of the string." } -} \ No newline at end of file +} From 2d81bdcbc18d8192ce1b530e2aeeb9544925b1b0 Mon Sep 17 00:00:00 2001 From: Tarik Brown Date: Thu, 24 Aug 2023 14:40:42 -0700 Subject: [PATCH 2/6] resolve string --- Extension/src/nativeStrings.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Extension/src/nativeStrings.json b/Extension/src/nativeStrings.json index 856ea55e3c..4b5cdd6b04 100644 --- a/Extension/src/nativeStrings.json +++ b/Extension/src/nativeStrings.json @@ -248,7 +248,7 @@ "memory_limit_shutting_down_intellisense": "Shutting down IntelliSense server: {0}. Memory usage is {1} MB and has exceeded the {2} MB limit.", "failed_to_query_for_standard_version": "Failed to query compiler at path \"{0}\" for default standard versions. Compiler querying is disabled for this compiler.", "unrecognized_language_standard_version": "Compiler query returned an unrecognized language standard version. The latest supported version will be used instead.", - "intellisense_process_crash_detected": "IntelliSense process crash detected. {0}", + "intellisense_process_crash_detected": "IntelliSense process crash detected{0}", "return_values_label": { "text": "Return values:", "hint": "This label is for the return values description for a function. Usage example: 'Return values: 1 if key is found. 2 if input can't be read. 3 if input is empty.'" From b91bd22465e9d5cbae9ce2ab8de6909fb2b6ec28 Mon Sep 17 00:00:00 2001 From: Tarik Brown Date: Thu, 24 Aug 2023 14:59:28 -0700 Subject: [PATCH 3/6] update hint --- Extension/src/nativeStrings.json | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Extension/src/nativeStrings.json b/Extension/src/nativeStrings.json index 4b5cdd6b04..839faf3de9 100644 --- a/Extension/src/nativeStrings.json +++ b/Extension/src/nativeStrings.json @@ -248,7 +248,10 @@ "memory_limit_shutting_down_intellisense": "Shutting down IntelliSense server: {0}. Memory usage is {1} MB and has exceeded the {2} MB limit.", "failed_to_query_for_standard_version": "Failed to query compiler at path \"{0}\" for default standard versions. Compiler querying is disabled for this compiler.", "unrecognized_language_standard_version": "Compiler query returned an unrecognized language standard version. The latest supported version will be used instead.", - "intellisense_process_crash_detected": "IntelliSense process crash detected{0}", + "intellisense_process_crash_detected": { + "text": "IntelliSense process crash detected{0}", + "hint": "This is an error message to be reported when the IntelliSense process crashes. The string will either end with a period `detected.` or with a colon detailing the feature that caused the crash `dectected: ." + }, "return_values_label": { "text": "Return values:", "hint": "This label is for the return values description for a function. Usage example: 'Return values: 1 if key is found. 2 if input can't be read. 3 if input is empty.'" From 399dd445f0af0d026a37acccea1c66089c6919d9 Mon Sep 17 00:00:00 2001 From: Tarik Brown Date: Wed, 30 Aug 2023 09:34:59 -0700 Subject: [PATCH 4/6] resolve loc string --- Extension/src/nativeStrings.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Extension/src/nativeStrings.json b/Extension/src/nativeStrings.json index 839faf3de9..c6dc0fa4bb 100644 --- a/Extension/src/nativeStrings.json +++ b/Extension/src/nativeStrings.json @@ -249,9 +249,13 @@ "failed_to_query_for_standard_version": "Failed to query compiler at path \"{0}\" for default standard versions. Compiler querying is disabled for this compiler.", "unrecognized_language_standard_version": "Compiler query returned an unrecognized language standard version. The latest supported version will be used instead.", "intellisense_process_crash_detected": { - "text": "IntelliSense process crash detected{0}", + "text": "IntelliSense process crash detected.", "hint": "This is an error message to be reported when the IntelliSense process crashes. The string will either end with a period `detected.` or with a colon detailing the feature that caused the crash `dectected: ." }, + "intellisense_feature_crash_detected": { + "text": "IntelliSense process crash detected: {0}", + "hint": "This is an error message to be reported when the IntelliSense process crashes due to an IntelliSense feature.`{0}` will be substitued with ``." + }, "return_values_label": { "text": "Return values:", "hint": "This label is for the return values description for a function. Usage example: 'Return values: 1 if key is found. 2 if input can't be read. 3 if input is empty.'" From d1a3b563d4862564ad51245c1b4a472cce9700e0 Mon Sep 17 00:00:00 2001 From: Tarik Brown Date: Thu, 7 Sep 2023 11:20:45 -0700 Subject: [PATCH 5/6] resolve string locs --- Extension/src/nativeStrings.json | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/Extension/src/nativeStrings.json b/Extension/src/nativeStrings.json index c6dc0fa4bb..bac924b5a2 100644 --- a/Extension/src/nativeStrings.json +++ b/Extension/src/nativeStrings.json @@ -248,13 +248,10 @@ "memory_limit_shutting_down_intellisense": "Shutting down IntelliSense server: {0}. Memory usage is {1} MB and has exceeded the {2} MB limit.", "failed_to_query_for_standard_version": "Failed to query compiler at path \"{0}\" for default standard versions. Compiler querying is disabled for this compiler.", "unrecognized_language_standard_version": "Compiler query returned an unrecognized language standard version. The latest supported version will be used instead.", - "intellisense_process_crash_detected": { - "text": "IntelliSense process crash detected.", - "hint": "This is an error message to be reported when the IntelliSense process crashes. The string will either end with a period `detected.` or with a colon detailing the feature that caused the crash `dectected: ." - }, + "intellisense_process_crash_detected": "IntelliSense process crash detected.", "intellisense_feature_crash_detected": { "text": "IntelliSense process crash detected: {0}", - "hint": "This is an error message to be reported when the IntelliSense process crashes due to an IntelliSense feature.`{0}` will be substitued with ``." + "hint": "`{0}` will be substitued with ``." }, "return_values_label": { "text": "Return values:", From e680c2cfc71e6b39cc9ec32a9380f7be446df3ed Mon Sep 17 00:00:00 2001 From: Tarik Brown Date: Fri, 8 Sep 2023 11:59:03 -0700 Subject: [PATCH 6/6] resolve spelling error --- Extension/src/nativeStrings.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Extension/src/nativeStrings.json b/Extension/src/nativeStrings.json index bac924b5a2..734a3514f5 100644 --- a/Extension/src/nativeStrings.json +++ b/Extension/src/nativeStrings.json @@ -251,7 +251,7 @@ "intellisense_process_crash_detected": "IntelliSense process crash detected.", "intellisense_feature_crash_detected": { "text": "IntelliSense process crash detected: {0}", - "hint": "`{0}` will be substitued with ``." + "hint": "`{0}` will be substituted with ``." }, "return_values_label": { "text": "Return values:",