Skip to content

Commit

Permalink
Cloud upload: improve update or clone message #1420
Browse files Browse the repository at this point in the history
implements #1420
  • Loading branch information
fwild authored Sep 21, 2023
1 parent 36c7e61 commit 23575d5
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ public void ShowCloneWarningPanel()
};

optionsDropDown.AddOptions(options);
ConfirmPanelText.text = "You are not the original author of this file! Please select an option:";
ConfirmPanelText.text = "You are not the original author of this activity. Please select an option:";
updateConfirmPanel.SetActive(true);
}

Expand All @@ -108,7 +108,7 @@ public void ShowUploadWarningPanel()
};

optionsDropDown.AddOptions(options);
ConfirmPanelText.text = "This file is exist! Please select an option:";
ConfirmPanelText.text = "The activity you are trying to upload already exists on the server. Please select an option:";
updateConfirmPanel.SetActive(true);
}

Expand Down

0 comments on commit 23575d5

Please sign in to comment.