Skip to content

Commit 4629189

Browse files
committed
testing string
1 parent 58a6932 commit 4629189

File tree

3 files changed

+3
-8
lines changed

3 files changed

+3
-8
lines changed

.github/workflows/pr-checks.yml

+1-7
Original file line numberDiff line numberDiff line change
@@ -189,12 +189,6 @@ jobs:
189189
-H "Accept: application/vnd.github.v3+json" \
190190
https://api.github.com/repos/${{ github.repository }}/issues/comments/${{ steps.loc-comment.outputs.comment-id }}
191191
192-
193192
- name: Fail if there are changes required in english xlf files
194193
if: ${{ env.loc_update_required == 'true' }}
195-
run: exit 1
196-
197-
198-
199-
200-
194+
run: exit 1

.gitignore

-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ coverage
1818
coverage-remapped
1919
test-reports
2020
.vscode-test
21-
localization/i18n/
2221
src/constants/localizedConstants.ts
2322
package.nls.*.json
2423
/test-results/

src/objectExplorer/addConnectionTreeNode.ts

+2
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ import * as LocalizedConstants from '../constants/locConstants';
1010
import { ObjectExplorerUtils } from './objectExplorerUtils';
1111

1212
export class AddConnectionTreeNode extends vscode.TreeItem {
13+
private test = vscode.l10n.t('test');
1314

1415
constructor() {
1516
super(LocalizedConstants.msgAddConnection, vscode.TreeItemCollapsibleState.None);
@@ -21,5 +22,6 @@ export class AddConnectionTreeNode extends vscode.TreeItem {
2122
light: path.join(ObjectExplorerUtils.rootPath, 'add_light.svg'),
2223
dark: path.join(ObjectExplorerUtils.rootPath, 'add_dark.svg')
2324
};
25+
console.log(test);
2426
}
2527
}

0 commit comments

Comments
 (0)