Skip to content

Commit

Permalink
update message
Browse files Browse the repository at this point in the history
Signed-off-by: zFernand0 <[email protected]>
  • Loading branch information
zFernand0 committed Feb 28, 2023
1 parent a8dd2fe commit 035b7dc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@
"paste.dataSet": "Invalid paste. Copy dataset(s) first",
"paste.dataSet.InPrg": "Copying File(s)",
"download.invalidNode": "downloadDataset() called with invalid node. ",
"copyDataSet.error.notSupported": "This operation is not supported at this time.",
"copyDataSet.error.notSupported": "Copying datasets is not supported.",
"copyDataSet.replace.option1": "Replace",
"copyDataSet.replace.option2": "Cancel",
"copyDataSet.replace.mem.question": "The dataset member already exists.\nDo you want to replace it?",
Expand Down
2 changes: 1 addition & 1 deletion packages/zowe-explorer/src/dataset/actions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1564,7 +1564,7 @@ export async function copySequentialDatasets(nodes: ZoweDatasetNode[]) {
const lbl = node.getLabel().toString();
const mvsApi = ZoweExplorerApiRegister.getMvsApi(node.getProfile());
if (mvsApi?.copyDataSet == null) {
await api.Gui.errorMessage(localize("copyDataSet.error.notSupported", "This operation is not supported at this time."));
await api.Gui.errorMessage(localize("copyDataSet.error.notSupported", "Copying datasets is not supported."));
} else {
await api.Gui.withProgress(
{
Expand Down

0 comments on commit 035b7dc

Please sign in to comment.