File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
collaboration-extension/src Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ export const sharedLink: JupyterFrontEndPlugin<void> = {
3131 translator : ITranslator | null
3232 ) => {
3333 const { commands } = app ;
34- const trans = ( translator ?? nullTranslator ) . load ( 'collaboration ' ) ;
34+ const trans = ( translator ?? nullTranslator ) . load ( 'jupyter_collaboration ' ) ;
3535
3636 commands . addCommand ( CommandIDs . share , {
3737 label : trans . __ ( 'Generate a Shared Link' ) ,
Original file line number Diff line number Diff line change @@ -109,7 +109,7 @@ interface IShareData {
109109export async function showSharedLinkDialog ( {
110110 translator
111111} : ISharedLinkDialogOptions ) : Promise < Dialog . IResult < string > > {
112- const trans = ( translator ?? nullTranslator ) . load ( 'collaboration ' ) ;
112+ const trans = ( translator ?? nullTranslator ) . load ( 'jupyter_collaboration ' ) ;
113113
114114 const token = PageConfig . getToken ( ) ;
115115 const url = new URL (
You can’t perform that action at this time.
0 commit comments