Skip to content

Commit

Permalink
nls: added localization of copy to the clipboard notification (#12873)
Browse files Browse the repository at this point in the history
The commit adds a missing localization for the notification when successfully copying the download link to the clipboard.
  • Loading branch information
Zebsterpasha authored Aug 29, 2023
1 parent 67e5eed commit b3e8d42
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ export class FileDownloadService {
if (downloadUrl && event.clipboardData) {
event.clipboardData.setData('text/plain', downloadUrl);
event.preventDefault();
this.messageService.info('Copied the download link to the clipboard.');
this.messageService.info(nls.localize('theia/filesystem/copiedToClipboard', 'Copied the download link to the clipboard.'));
}
}

Expand Down

0 comments on commit b3e8d42

Please sign in to comment.