Skip to content

Commit c3048d1

Browse files
yasmin-bbPrakash
andauthored
Replaced ... with ellipses unicode character in .ts files (jupyterlab#10208)
* Replaced ... with ellipses unicode character in .ts files * Replace the ... with … in the non ts and tsx files Co-authored-by: Prakash <vprakash18@bloomberg.com>
1 parent ac3ae4b commit c3048d1

11 files changed

Lines changed: 14 additions & 14 deletions

File tree

docs/source/user/extensions.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -466,7 +466,7 @@ all jupyterlab organization extensions.
466466
{
467467
"name": "@jupyterlab/*",
468468
"type": "jupyterlab",
469-
"reason": "All @jupyterlab org extensions are allowlisted, of course...",
469+
"reason": "All @jupyterlab org extensions are allowlisted, of course",
470470
"creation_date": "2020-03-11T03:28:56.782Z",
471471
"last_update_date": "2020-03-11T03:28:56.782Z"
472472
}

examples/chrome-example-test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ async function main() {
5151

5252
console.info('Navigating to page:', URL);
5353
await page.goto(URL);
54-
console.info('Waiting for page to load...');
54+
console.info('Waiting for page to load');
5555

5656
// Wait for the local file to redirect on notebook >= 6.0. Refs:
5757
// https://jupyter-notebook.readthedocs.io/en/stable/changelog.html?highlight=redirect

examples/notebook/src/commands.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ export const SetupCommands = (
8181

8282
let searchInstance: SearchInstance | undefined;
8383
commands.addCommand(cmdIds.startSearch, {
84-
label: 'Find...',
84+
label: 'Find',
8585
execute: () => {
8686
if (searchInstance) {
8787
searchInstance.focusInput();

packages/apputils-extension/src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -215,7 +215,7 @@ const splash: JupyterFrontEndPlugin<ISplashScreen> = {
215215
}
216216

217217
dialog = new Dialog({
218-
title: trans.__('Loading...'),
218+
title: trans.__('Loading'),
219219
body: trans.__(`The loading screen is taking a long time.
220220
Would you like to clear the workspace or keep waiting?`),
221221
buttons: [

packages/apputils-extension/src/workspacesplugin.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -285,7 +285,7 @@ namespace Private {
285285
const trans = translator.load('jupyterlab');
286286
const saveBtn = Dialog.okButton({ label: trans.__('Save') });
287287
const result = await showDialog({
288-
title: trans.__('Save Current Workspace As...'),
288+
title: trans.__('Save Current Workspace As'),
289289
body: new SaveWidget(defaultPath),
290290
buttons: [Dialog.cancelButton({ label: trans.__('Cancel') }), saveBtn]
291291
});

packages/apputils/test/commandpalette.spec.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ describe('@jupyterlab/apputils', () => {
6868
describe('#hideAndReset()', () => {
6969
it('should become hidden and clear the input when calling hideAndReset', () => {
7070
MessageLoop.sendMessage(modalPalette, Widget.Msg.ActivateRequest);
71-
palette.inputNode.value = 'Search string...';
71+
palette.inputNode.value = 'Search string';
7272
modalPalette.hideAndReset();
7373
expect(modalPalette.isVisible).toBe(false);
7474
expect(palette.inputNode.value).toEqual('');
@@ -78,7 +78,7 @@ describe('@jupyterlab/apputils', () => {
7878
describe('#focus()', () => {
7979
it('should hide and reset when focus is shifted', () => {
8080
MessageLoop.sendMessage(modalPalette, Widget.Msg.ActivateRequest);
81-
palette.inputNode.value = 'Search string...';
81+
palette.inputNode.value = 'Search string';
8282
simulate(document.body, 'focus');
8383
expect(modalPalette.isVisible).toBe(false);
8484
expect(palette.inputNode.value).toEqual('');
@@ -88,7 +88,7 @@ describe('@jupyterlab/apputils', () => {
8888
describe('#escape()', () => {
8989
it('should hide and reset when ESC is pressed', () => {
9090
MessageLoop.sendMessage(modalPalette, Widget.Msg.ActivateRequest);
91-
palette.inputNode.value = 'Search string...';
91+
palette.inputNode.value = 'Search string';
9292
simulate(modalPalette.node, 'keydown', { keyCode: 27 });
9393
expect(modalPalette.isVisible).toBe(false);
9494
expect(palette.inputNode.value).toEqual('');

packages/codemirror-extension/src/index.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -339,7 +339,7 @@ function activateEditorCommands(
339339
});
340340

341341
commands.addCommand(CommandIDs.find, {
342-
label: trans.__('Find...'),
342+
label: trans.__('Find'),
343343
execute: () => {
344344
const widget = tracker.currentWidget;
345345
if (!widget) {
@@ -352,7 +352,7 @@ function activateEditorCommands(
352352
});
353353

354354
commands.addCommand(CommandIDs.goToLine, {
355-
label: trans.__('Go to Line...'),
355+
label: trans.__('Go to Line'),
356356
execute: () => {
357357
const widget = tracker.currentWidget;
358358
if (!widget) {

packages/services/examples/browser-require/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ <h1>Run code!</h1>
2323
</p>
2424
<div>
2525
Kernel:
26-
<pre id="kernel-info">Starting...</pre>
26+
<pre id="kernel-info">Starting</pre>
2727
</div>
2828
<textarea id="cell" cols="100" rows="24"></textarea>
2929
<div>

packages/services/examples/node/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ const options = {
1818
};
1919

2020
/* eslint-disable no-console */
21-
console.log('Starting session...');
21+
console.log('Starting session');
2222
const kernelManager = new services.KernelManager();
2323
const sessionManager = new services.SessionManager({ kernelManager });
2424
let session;

packages/terminal/src/widget.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -319,7 +319,7 @@ export class Terminal extends Widget implements ITerminal.ITerminal {
319319
}
320320
break;
321321
case 'disconnect':
322-
this._term.write('\r\n\r\n[Finished... Term Session]\r\n');
322+
this._term.write('\r\n\r\n[Finished Term Session]\r\n');
323323
break;
324324
default:
325325
break;

0 commit comments

Comments
 (0)