8000 Layout improvements of the filter for boards and libs manager by francescospissu · Pull Request #1369 · arduino/arduino-ide · GitHub
[go: up one dir, main page]

Skip to content

Layout improvements of the filter for boards and libs manager #1369

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 22 commits into from
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
align message.
Signed-off-by: Akos Kitta <a.kitta@arduino.cc>
  • Loading branch information
Akos Kitta committed Aug 29, 2022
commit b3e20e4a84da1320c0fed7b34782ae1087802770
8000
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import type { AbstractViewContribution } from '@theia/core/lib/browser/shell/view-contribution';
import { nls } from '@theia/core/lib/common/nls';
import { inject, injectable } from '@theia/core/shared/inversify';
import { InstallManually, Later } from '../../common/nls';
Expand All @@ -10,18 +11,17 @@ import {
ResponseServiceClient,
Searchable,
} from '../../common/protocol';
import { Contribution, CommandRegistry, Command } from './contribution';
import { Installable } from '../../common/protocol/installable';
import { ExecuteWithProgress } from '../../common/protocol/progressible';
import { WindowServiceExt } from '../theia/core/window-service-ext';
import { BoardsListWidgetFrontendContribution } from '../boards/boards-widget-frontend-contribution';
import { LibraryListWidgetFrontendContribution } from '../library/library-widget-frontend-contribution';
import { ListWidget } from '../widgets/component-list/list-widget';
import { AbstractViewContribution } from '@theia/core/lib/browser';
import { WindowServiceExt } from '../theia/core/window-service-ext';
import type { ListWidget } from '../widgets/component-list/list-widget';
import { Command, CommandRegistry, Contribution } from './contribution';

const NoUpdates = nls.localize(
'arduino/checkForUpdates/noUpdates',
'No updates were found.'
'There are no recent updates available.'
);
const UpdatesBoards = nls.localize(
'arduino/checkForUpdates/updatedBoth',
Expand Down
2 changes: 1 addition & 1 deletion i18n/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@
"checkForUpdates": {
"checkForUpdates": "Check for Arduino Updates",
"installAll": "Install All",
"noUpdates": "No updates were found.",
"noUpdates": "There are no recent updates available.",
"updatedBoth": "Updates are available for some of your libraries.",
"updating": "Updating"
},
Expand Down
0