added missing strings

This commit is contained in:
Eugene Pankov
2022-04-01 12:51:53 +02:00
parent f7e51c298d
commit bc89774fbc
6 changed files with 36 additions and 14 deletions

View File

@@ -24,7 +24,7 @@ ul.nav-tabs.mb-2(ngbNav, #nav='ngbNav')
type='text',
[(ngModel)]='_1',
(ngModelChange)='searchAvailable(_1)',
placeholder='Search plugins'
[placeholder]='"Search plugins"|translate'
)
ngb-accordion.mb-4(*ngIf='availablePlugins$', [closeOthers]='true')

View File

@@ -1,4 +1,5 @@
/* eslint-disable @typescript-eslint/explicit-module-boundary-types */
import { marker as _ } from '@biesbjerg/ngx-translate-extract-marker'
import { BehaviorSubject, Observable, debounceTime, distinctUntilChanged, first, tap, flatMap, map } from 'rxjs'
import semverGt from 'semver/functions/gt'
@@ -10,6 +11,8 @@ enum BusyState { Installing = 'Installing', Uninstalling = 'Uninstalling' }
const FORCE_ENABLE = ['tabby-core', 'tabby-settings', 'tabby-electron', 'tabby-web', 'tabby-plugin-manager']
_('Search plugins')
/** @hidden */
@Component({
template: require('./pluginsSettingsTab.component.pug'),