Skip to content

Commit b3e20e4

Browse files
author
Akos Kitta
committed
align message.
Signed-off-by: Akos Kitta <[email protected]>
1 parent e00fa2b commit b3e20e4

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

arduino-ide-extension/src/browser/contributions/check-for-updates.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
import type { AbstractViewContribution } from '@theia/core/lib/browser/shell/view-contribution';
12
import { nls } from '@theia/core/lib/common/nls';
23
import { inject, injectable } from '@theia/core/shared/inversify';
34
import { InstallManually, Later } from '../../common/nls';
@@ -10,18 +11,17 @@ import {
1011
ResponseServiceClient,
1112
Searchable,
1213
} from '../../common/protocol';
13-
import { Contribution, CommandRegistry, Command } from './contribution';
1414
import { Installable } from '../../common/protocol/installable';
1515
import { ExecuteWithProgress } from '../../common/protocol/progressible';
16-
import { WindowServiceExt } from '../theia/core/window-service-ext';
1716
import { BoardsListWidgetFrontendContribution } from '../boards/boards-widget-frontend-contribution';
1817
import { LibraryListWidgetFrontendContribution } from '../library/library-widget-frontend-contribution';
19-
import { ListWidget } from '../widgets/component-list/list-widget';
20-
import { AbstractViewContribution } from '@theia/core/lib/browser';
18+
import { WindowServiceExt } from '../theia/core/window-service-ext';
19+
import type { ListWidget } from '../widgets/component-list/list-widget';
20+
import { Command, CommandRegistry, Contribution } from './contribution';
2121

2222
const NoUpdates = nls.localize(
2323
'arduino/checkForUpdates/noUpdates',
24-
'No updates were found.'
24+
'There are no recent updates available.'
2525
);
2626
const UpdatesBoards = nls.localize(
2727
'arduino/checkForUpdates/updatedBoth',

i18n/en.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@
6666
"checkForUpdates": {
6767
"checkForUpdates": "Check for Arduino Updates",
6868
"installAll": "Install All",
69-
"noUpdates": "No updates were found.",
69+
"noUpdates": "There are no recent updates available.",
7070
"updatedBoth": "Updates are available for some of your libraries.",
7171
"updating": "Updating"
7272
},

0 commit comments

Comments
 (0)