Navigation Menu

Skip to content

Commit

Permalink
Replaced ... with ellipses unicode character in .ts files (#10208)
Browse files Browse the repository at this point in the history
* 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>
  • Loading branch information
yasmin-bb and Prakash committed Jun 2, 2021
1 parent ac3ae4b commit c3048d1
Show file tree
Hide file tree
Showing 11 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion docs/source/user/extensions.rst
Expand Up @@ -466,7 +466,7 @@ all jupyterlab organization extensions.
{
"name": "@jupyterlab/*",
"type": "jupyterlab",
"reason": "All @jupyterlab org extensions are allowlisted, of course...",
"reason": "All @jupyterlab org extensions are allowlisted, of course",
"creation_date": "2020-03-11T03:28:56.782Z",
"last_update_date": "2020-03-11T03:28:56.782Z"
}
Expand Down
2 changes: 1 addition & 1 deletion examples/chrome-example-test.js
Expand Up @@ -51,7 +51,7 @@ async function main() {

console.info('Navigating to page:', URL);
await page.goto(URL);
console.info('Waiting for page to load...');
console.info('Waiting for page to load');

// Wait for the local file to redirect on notebook >= 6.0. Refs:
// https://jupyter-notebook.readthedocs.io/en/stable/changelog.html?highlight=redirect
Expand Down
2 changes: 1 addition & 1 deletion examples/notebook/src/commands.ts
Expand Up @@ -81,7 +81,7 @@ export const SetupCommands = (

let searchInstance: SearchInstance | undefined;
commands.addCommand(cmdIds.startSearch, {
label: 'Find...',
label: 'Find',
execute: () => {
if (searchInstance) {
searchInstance.focusInput();
Expand Down
2 changes: 1 addition & 1 deletion packages/apputils-extension/src/index.ts
Expand Up @@ -215,7 +215,7 @@ const splash: JupyterFrontEndPlugin<ISplashScreen> = {
}

dialog = new Dialog({
title: trans.__('Loading...'),
title: trans.__('Loading'),
body: trans.__(`The loading screen is taking a long time.
Would you like to clear the workspace or keep waiting?`),
buttons: [
Expand Down
2 changes: 1 addition & 1 deletion packages/apputils-extension/src/workspacesplugin.ts
Expand Up @@ -285,7 +285,7 @@ namespace Private {
const trans = translator.load('jupyterlab');
const saveBtn = Dialog.okButton({ label: trans.__('Save') });
const result = await showDialog({
title: trans.__('Save Current Workspace As...'),
title: trans.__('Save Current Workspace As'),
body: new SaveWidget(defaultPath),
buttons: [Dialog.cancelButton({ label: trans.__('Cancel') }), saveBtn]
});
Expand Down
6 changes: 3 additions & 3 deletions packages/apputils/test/commandpalette.spec.ts
Expand Up @@ -68,7 +68,7 @@ describe('@jupyterlab/apputils', () => {
describe('#hideAndReset()', () => {
it('should become hidden and clear the input when calling hideAndReset', () => {
MessageLoop.sendMessage(modalPalette, Widget.Msg.ActivateRequest);
palette.inputNode.value = 'Search string...';
palette.inputNode.value = 'Search string';
modalPalette.hideAndReset();
expect(modalPalette.isVisible).toBe(false);
expect(palette.inputNode.value).toEqual('');
Expand All @@ -78,7 +78,7 @@ describe('@jupyterlab/apputils', () => {
describe('#focus()', () => {
it('should hide and reset when focus is shifted', () => {
MessageLoop.sendMessage(modalPalette, Widget.Msg.ActivateRequest);
palette.inputNode.value = 'Search string...';
palette.inputNode.value = 'Search string';
simulate(document.body, 'focus');
expect(modalPalette.isVisible).toBe(false);
expect(palette.inputNode.value).toEqual('');
Expand All @@ -88,7 +88,7 @@ describe('@jupyterlab/apputils', () => {
describe('#escape()', () => {
it('should hide and reset when ESC is pressed', () => {
MessageLoop.sendMessage(modalPalette, Widget.Msg.ActivateRequest);
palette.inputNode.value = 'Search string...';
palette.inputNode.value = 'Search string';
simulate(modalPalette.node, 'keydown', { keyCode: 27 });
expect(modalPalette.isVisible).toBe(false);
expect(palette.inputNode.value).toEqual('');
Expand Down
4 changes: 2 additions & 2 deletions packages/codemirror-extension/src/index.ts
Expand Up @@ -339,7 +339,7 @@ function activateEditorCommands(
});

commands.addCommand(CommandIDs.find, {
label: trans.__('Find...'),
label: trans.__('Find'),
execute: () => {
const widget = tracker.currentWidget;
if (!widget) {
Expand All @@ -352,7 +352,7 @@ function activateEditorCommands(
});

commands.addCommand(CommandIDs.goToLine, {
label: trans.__('Go to Line...'),
label: trans.__('Go to Line'),
execute: () => {
const widget = tracker.currentWidget;
if (!widget) {
Expand Down
2 changes: 1 addition & 1 deletion packages/services/examples/browser-require/index.html
Expand Up @@ -23,7 +23,7 @@ <h1>Run code!</h1>
</p>
<div>
Kernel:
<pre id="kernel-info">Starting...</pre>
<pre id="kernel-info">Starting</pre>
</div>
<textarea id="cell" cols="100" rows="24"></textarea>
<div>
Expand Down
2 changes: 1 addition & 1 deletion packages/services/examples/node/index.js
Expand Up @@ -18,7 +18,7 @@ const options = {
};

/* eslint-disable no-console */
console.log('Starting session...');
console.log('Starting session');
const kernelManager = new services.KernelManager();
const sessionManager = new services.SessionManager({ kernelManager });
let session;
Expand Down
2 changes: 1 addition & 1 deletion packages/terminal/src/widget.ts
Expand Up @@ -319,7 +319,7 @@ export class Terminal extends Widget implements ITerminal.ITerminal {
}
break;
case 'disconnect':
this._term.write('\r\n\r\n[Finished... Term Session]\r\n');
this._term.write('\r\n\r\n[Finished Term Session]\r\n');
break;
default:
break;
Expand Down
2 changes: 1 addition & 1 deletion typedoc-theme/partials/header.hbs
Expand Up @@ -9,7 +9,7 @@
</div>

<ul class="results">
<li class="state loading">Preparing search index...</li>
<li class="state loading">Preparing search index</li>
<li class="state failure">The search index is not available</li>
</ul>

Expand Down

0 comments on commit c3048d1

Please sign in to comment.