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

@@ -4,7 +4,7 @@ h3.mb-3(translate) Hotkeys
.input-group-prepend
.input-group-text
i.fas.fa-fw.fa-search
input.form-control(type='search', placeholder='Search hotkeys', [(ngModel)]='hotkeyFilter')
input.form-control(type='search', [placeholder]='"Search hotkeys"|translate', [(ngModel)]='hotkeyFilter')
.form-group.hotkeys-table
ng-container(*ngFor='let hotkey of hotkeyDescriptions')

View File

@@ -1,4 +1,5 @@
/* eslint-disable @typescript-eslint/explicit-module-boundary-types */
import { marker as _ } from '@biesbjerg/ngx-translate-extract-marker'
import { Component, NgZone } from '@angular/core'
import {
ConfigService,
@@ -7,6 +8,8 @@ import {
HostAppService,
} from 'tabby-core'
_('Search hotkeys')
/** @hidden */
@Component({
selector: 'hotkey-settings-tab',

View File

@@ -318,8 +318,8 @@ h3.mt-4(translate) Hacks
.form-line(*ngIf='hostApp.platform === Platform.Windows')
.header
.title Disable fluent background while dragging
.description Fluent background sometimes causes drag lag
.title(translate) Disable fluent background while dragging
.description(translate) Fluent background sometimes causes drag lag
toggle(
[(ngModel)]='config.store.hacks.disableVibrancyWhileDragging',