mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-22 01:25:38 -05:00
Add double quotes for localize hygiene check (#6492)
* Add localize single quote hygiene task * Update localize calls * Update comment * Fix build failures and remove test code
This commit is contained in:
@@ -37,7 +37,7 @@ const defaultOptions: ICheckboxSelectColumnOptions = {
|
||||
columnId: '_checkbox_selector',
|
||||
cssClass: undefined,
|
||||
headerCssClass: undefined,
|
||||
toolTip: nls.localize('selectDeselectAll', 'Select/Deselect All'),
|
||||
toolTip: nls.localize('selectDeselectAll', "Select/Deselect All"),
|
||||
width: 30
|
||||
};
|
||||
|
||||
|
||||
@@ -310,7 +310,7 @@ export class RowDetailView<T extends Slick.SlickData> {
|
||||
item._collapsed = true;
|
||||
item._isPadding = false;
|
||||
item._parent = parent;
|
||||
item.name = parent.message ? parent.message : nls.localize('rowDetailView.loadError', 'Loading Error...');
|
||||
item.name = parent.message ? parent.message : nls.localize('rowDetailView.loadError', "Loading Error...");
|
||||
parent._child = item;
|
||||
return item;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user