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> = {
31
31
translator : ITranslator | null
32
32
) => {
33
33
const { commands } = app ;
34
- const trans = ( translator ?? nullTranslator ) . load ( 'collaboration ' ) ;
34
+ const trans = ( translator ?? nullTranslator ) . load ( 'jupyter_collaboration ' ) ;
35
35
36
36
commands . addCommand ( CommandIDs . share , {
37
37
label : trans . __ ( 'Generate a Shared Link' ) ,
Original file line number Diff line number Diff line change @@ -109,7 +109,7 @@ interface IShareData {
109
109
export async function showSharedLinkDialog ( {
110
110
translator
111
111
} : ISharedLinkDialogOptions ) : Promise < Dialog . IResult < string > > {
112
- const trans = ( translator ?? nullTranslator ) . load ( 'collaboration ' ) ;
112
+ const trans = ( translator ?? nullTranslator ) . load ( 'jupyter_collaboration ' ) ;
113
113
114
114
const token = PageConfig . getToken ( ) ;
115
115
const url = new URL (
You can’t perform that action at this time.
0 commit comments