Skip to content

Commit

Permalink
chore: add beta tag to command label (#6065)
Browse files Browse the repository at this point in the history
  • Loading branch information
CristiCanizales authored Feb 7, 2025
1 parent 254305a commit 0817e16
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion packages/salesforcedx-vscode-apex/package.nls.ja.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
"configuration_title": "Salesforce Apex Configuration",
"collapse_tests_title": "SFDX: Apex テストを隠す",
"create_openapi_doc_method": "SFDX: Create OpenAPI Document from Selected Method",
"create_openapi_doc_class": "SFDX: Create OpenAPI Document from This Class",
"create_openapi_doc_class": "SFDX: Create OpenAPI Document from This Class (Beta)",
"enable-apex-ls-error-to-telemetry": "Allow the Apex Language Server to collect telemetry of errors",
"go_to_definition_title": "定義に移動",
"java_home_description": "Specifies the folder path to the Java 11, Java 17, or Java 21 runtime used to launch the Apex Language Server. Note on Windows the backslashes must be escaped.\n\nMac Example: `/Library/Java/JavaVirtualMachines/openjdk-11.jdk/Contents/Home`\n\nWindows Example: `C:\\\\Program Files\\\\Zulu\\\\zulu-17`\n\nLinux Example: `/usr/lib/jvm/java-21-openjdk-amd64`",
Expand Down
2 changes: 1 addition & 1 deletion packages/salesforcedx-vscode-apex/package.nls.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
"configuration_title": "Salesforce Apex Configuration",
"collapse_tests_title": "SFDX: Collapse All Apex Tests",
"create_openapi_doc_method": "SFDX: Create OpenAPI Document from Selected Method",
"create_openapi_doc_class": "SFDX: Create OpenAPI Document from This Class",
"create_openapi_doc_class": "SFDX: Create OpenAPI Document from This Class (Beta)",
"enable-apex-ls-error-to-telemetry": "Allow the Apex Language Server to collect telemetry of errors",
"go_to_definition_title": "Go to Definition",
"java_home_description": "Specifies the folder path to the Java 11, Java 17, or Java 21 runtime used to launch the Apex Language Server. Note on Windows the backslashes must be escaped.\n\nMac Example: `/Library/Java/JavaVirtualMachines/openjdk-11.jdk/Contents/Home`\n\nWindows Example: `C:\\\\Program Files\\\\Zulu\\\\zulu-17`\n\nLinux Example: `/usr/lib/jvm/java-21-openjdk-amd64`",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ export class ApexActionController {
public createApexAction = async (isClass: boolean, sourceUri: vscode.Uri | vscode.Uri[]): Promise<void> => {
const type = isClass ? 'Class' : 'Method';
const command = isClass
? 'SFDX: Create OpenAPI Document from This Class'
? 'SFDX: Create OpenAPI Document from This Class (Beta)'
: 'SFDX: Create OpenAPI Document from Selected Method';
let eligibilityResult;
let context;
Expand Down

0 comments on commit 0817e16

Please sign in to comment.