Skip to content

Commit b3e8d42

Browse files
authoredAug 29, 2023
nls: added localization of copy to the clipboard notification (#12873)
The commit adds a missing localization for the notification when successfully copying the download link to the clipboard.
1 parent 67e5eed commit b3e8d42

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎packages/filesystem/src/browser/download/file-download-service.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ export class FileDownloadService {
3939
if (downloadUrl && event.clipboardData) {
4040
event.clipboardData.setData('text/plain', downloadUrl);
4141
event.preventDefault();
42-
this.messageService.info('Copied the download link to the clipboard.');
42+
this.messageService.info(nls.localize('theia/filesystem/copiedToClipboard', 'Copied the download link to the clipboard.'));
4343
}
4444
}
4545

0 commit comments

Comments
 (0)
Please sign in to comment.