mirror of
https://github.com/Eugeny/tabby.git
synced 2025-08-19 15:51:53 +00:00
Compare commits
17 Commits
Author | SHA1 | Date | |
---|---|---|---|
![]() |
2b601c7470 | ||
![]() |
1a1381a64a | ||
![]() |
78cd2a0794 | ||
![]() |
7be921592a | ||
![]() |
53f3962640 | ||
![]() |
1c8de05065 | ||
![]() |
a24c1c489b | ||
![]() |
85d0b47511 | ||
![]() |
f469c91786 | ||
![]() |
485cd0ef53 | ||
![]() |
ce351117a5 | ||
![]() |
ef49aa213e | ||
![]() |
8d5dffcca1 | ||
![]() |
5087e7de25 | ||
![]() |
52dd0db5f6 | ||
![]() |
9ed6c138f8 | ||
![]() |
7437aaffcf |
6
.github/workflows/build.yml
vendored
6
.github/workflows/build.yml
vendored
@@ -84,8 +84,6 @@ jobs:
|
||||
APPSTORE_USERNAME: ${{ secrets.APPSTORE_USERNAME }}
|
||||
APPSTORE_PASSWORD: ${{ secrets.APPSTORE_PASSWORD }}
|
||||
USE_HARD_LINKS: false
|
||||
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
|
||||
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
|
||||
# DEBUG: electron-builder,electron-builder:*
|
||||
|
||||
- name: Build packages without signing
|
||||
@@ -156,8 +154,6 @@ jobs:
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
USE_HARD_LINKS: false
|
||||
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
|
||||
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
|
||||
# DEBUG: electron-builder,electron-builder:*
|
||||
|
||||
- name: Build web resources
|
||||
@@ -269,8 +265,6 @@ jobs:
|
||||
WIN_CSC_LINK: ${{ secrets.WIN_CSC_LINK }}
|
||||
WIN_CSC_KEY_PASSWORD: ${{ secrets.WIN_CSC_KEY_PASSWORD }}
|
||||
DEBUG: electron-builder,electron-builder:*
|
||||
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
|
||||
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
|
||||
|
||||
- name: Build packages without signing
|
||||
run: node scripts/build-windows.js
|
||||
|
@@ -1,47 +1,35 @@
|
||||
import * as fs from 'mz/fs'
|
||||
import * as path from 'path'
|
||||
import * as yaml from 'js-yaml'
|
||||
import { v4 as uuidv4 } from 'uuid'
|
||||
import * as gracefulFS from 'graceful-fs'
|
||||
import { app } from 'electron'
|
||||
import { promisify } from 'util'
|
||||
import { writeFile } from 'atomically'
|
||||
|
||||
export async function migrateConfig (): Promise<void> {
|
||||
|
||||
export function migrateConfig (): void {
|
||||
const configPath = path.join(app.getPath('userData'), 'config.yaml')
|
||||
const legacyConfigPath = path.join(app.getPath('userData'), '../terminus', 'config.yaml')
|
||||
if (await fs.exists(legacyConfigPath) && (
|
||||
!await fs.exists(configPath) ||
|
||||
(await fs.stat(configPath)).mtime < (await fs.stat(legacyConfigPath)).mtime
|
||||
if (fs.existsSync(legacyConfigPath) && (
|
||||
!fs.existsSync(configPath) ||
|
||||
fs.statSync(configPath).mtime < fs.statSync(legacyConfigPath).mtime
|
||||
)) {
|
||||
await fs.writeFile(configPath, await fs.readFile(legacyConfigPath))
|
||||
fs.writeFileSync(configPath, fs.readFileSync(legacyConfigPath))
|
||||
}
|
||||
}
|
||||
|
||||
export async function loadConfig (): Promise<any> {
|
||||
await migrateConfig()
|
||||
export function loadConfig (): any {
|
||||
migrateConfig()
|
||||
|
||||
const configPath = path.join(app.getPath('userData'), 'config.yaml')
|
||||
if (await fs.exists(configPath)) {
|
||||
return yaml.load(await fs.readFile(configPath, 'utf8'))
|
||||
if (fs.existsSync(configPath)) {
|
||||
return yaml.load(fs.readFileSync(configPath, 'utf8'))
|
||||
} else {
|
||||
return {}
|
||||
}
|
||||
}
|
||||
|
||||
const configPath = path.join(app.getPath('userData'), 'config.yaml')
|
||||
let _configSaveInProgress = Promise.resolve()
|
||||
|
||||
async function _saveConfigInternal (content: string): Promise<void> {
|
||||
const tempPath = configPath + '.new.' + uuidv4().toString()
|
||||
await fs.writeFile(tempPath, content, 'utf8')
|
||||
await fs.writeFile(configPath + '.backup', content, 'utf8')
|
||||
await promisify(gracefulFS.rename)(tempPath, configPath)
|
||||
}
|
||||
|
||||
export async function saveConfig (content: string): Promise<void> {
|
||||
try {
|
||||
await _configSaveInProgress
|
||||
} catch { }
|
||||
_configSaveInProgress = _saveConfigInternal(content)
|
||||
await _configSaveInProgress
|
||||
await writeFile(configPath, content, { encoding: 'utf8' })
|
||||
await writeFile(configPath + '.backup', content, { encoding: 'utf8' })
|
||||
}
|
||||
|
@@ -15,43 +15,45 @@ if (!process.env.TABBY_PLUGINS) {
|
||||
|
||||
const argv = parseArgs(process.argv, process.cwd())
|
||||
|
||||
const application = loadConfig().catch(err => {
|
||||
// eslint-disable-next-line @typescript-eslint/init-declarations
|
||||
let configStore: any
|
||||
|
||||
try {
|
||||
configStore = loadConfig()
|
||||
} catch (err) {
|
||||
dialog.showErrorBox('Could not read config', err.message)
|
||||
app.exit(1)
|
||||
}).then(configStore => {
|
||||
const _application = new Application(configStore)
|
||||
}
|
||||
|
||||
ipcMain.on('app:new-window', () => {
|
||||
_application.newWindow()
|
||||
})
|
||||
const application = new Application(configStore)
|
||||
|
||||
process.on('uncaughtException' as any, err => {
|
||||
console.log(err)
|
||||
_application.broadcast('uncaughtException', err)
|
||||
})
|
||||
|
||||
if (argv.d) {
|
||||
electronDebug({
|
||||
isEnabled: true,
|
||||
showDevTools: true,
|
||||
devToolsMode: 'undocked',
|
||||
})
|
||||
}
|
||||
|
||||
return _application
|
||||
ipcMain.on('app:new-window', () => {
|
||||
application.newWindow()
|
||||
})
|
||||
|
||||
process.on('uncaughtException' as any, err => {
|
||||
console.log(err)
|
||||
application.broadcast('uncaughtException', err)
|
||||
})
|
||||
|
||||
if (argv.d) {
|
||||
electronDebug({
|
||||
isEnabled: true,
|
||||
showDevTools: true,
|
||||
devToolsMode: 'undocked',
|
||||
})
|
||||
}
|
||||
|
||||
app.on('activate', async () => {
|
||||
if (!(await application).hasWindows()) {
|
||||
(await application).newWindow()
|
||||
if (!application.hasWindows()) {
|
||||
application.newWindow()
|
||||
} else {
|
||||
(await application).focus()
|
||||
application.focus()
|
||||
}
|
||||
})
|
||||
|
||||
app.on('second-instance', async (_event, newArgv, cwd) => {
|
||||
(await application).handleSecondInstance(newArgv, cwd)
|
||||
application.handleSecondInstance(newArgv, cwd)
|
||||
})
|
||||
|
||||
if (!app.requestSingleInstanceLock()) {
|
||||
@@ -71,9 +73,9 @@ app.on('ready', async () => {
|
||||
]))
|
||||
}
|
||||
|
||||
(await application).init()
|
||||
application.init()
|
||||
|
||||
const window = await (await application).newWindow({ hidden: argv.hidden })
|
||||
const window = await application.newWindow({ hidden: argv.hidden })
|
||||
await window.ready
|
||||
window.passCliArguments(process.argv, process.cwd(), false)
|
||||
window.focus()
|
||||
|
@@ -26,7 +26,7 @@ abstract class GlasstronWindow extends BrowserWindow {
|
||||
abstract setBlur (_: boolean)
|
||||
}
|
||||
|
||||
const macOSVibrancyType = process.platform === 'darwin' ? compareVersions(macOSRelease().version, '10.14', '>=') ? 'under-window' : 'dark' : null
|
||||
const macOSVibrancyType = process.platform === 'darwin' ? compareVersions(macOSRelease().version || '0.0', '10.14', '>=') ? 'under-window' : 'dark' : null
|
||||
|
||||
const activityIcon = nativeImage.createFromPath(`${app.getAppPath()}/assets/activity.png`)
|
||||
|
||||
|
@@ -8,7 +8,7 @@
|
||||
"email": "e@ajenti.org"
|
||||
},
|
||||
"main": "dist/main.js",
|
||||
"version": "1.0.0",
|
||||
"version": "1.0.0-alpha.1",
|
||||
"scripts": {
|
||||
"postinstall": "patch-package",
|
||||
"build": "webpack --progress --color --display-modules",
|
||||
@@ -45,6 +45,7 @@
|
||||
"devDependencies": {
|
||||
"@types/mz": "2.7.4",
|
||||
"@types/node": "16.0.1",
|
||||
"atomically": "^1.7.0",
|
||||
"ngx-filesize": "^2.0.16",
|
||||
"patch-package": "^6.4.7"
|
||||
},
|
||||
|
@@ -28,7 +28,11 @@ export function getRootModule (plugins: any[]) {
|
||||
@NgModule({
|
||||
imports,
|
||||
bootstrap,
|
||||
}) class RootModule { } // eslint-disable-line @typescript-eslint/no-extraneous-class
|
||||
}) class RootModule {
|
||||
ngDoBootstrap () {
|
||||
(window as any)['requestAnimationFrame'] = window[window['Zone'].__symbol__('requestAnimationFrame')]
|
||||
}
|
||||
}
|
||||
|
||||
return RootModule
|
||||
}
|
||||
|
@@ -310,6 +310,11 @@ asynckit@^0.4.0:
|
||||
resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz"
|
||||
integrity sha1-x57Zf380y48robyXkLzDZkdLS3k=
|
||||
|
||||
atomically@^1.7.0:
|
||||
version "1.7.0"
|
||||
resolved "https://registry.yarnpkg.com/atomically/-/atomically-1.7.0.tgz#c07a0458432ea6dbc9a3506fffa424b48bccaafe"
|
||||
integrity sha512-Xcz9l0z7y9yQ9rdDaxlmaI4uJHf/T8g9hOEzJcsEqX2SjCj4J20uK7+ldkDHMbpJDK76wF7xEIgxc/vSlsfw5w==
|
||||
|
||||
aws-sign2@~0.7.0:
|
||||
version "0.7.0"
|
||||
resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.7.0.tgz"
|
||||
|
@@ -35,9 +35,6 @@ extraResources:
|
||||
asarUnpack:
|
||||
- 'dist/*.map'
|
||||
publish:
|
||||
- provider: s3
|
||||
bucket: tabby-updates
|
||||
path: 'updates-${channel}-${env.ARCH}'
|
||||
- provider: github
|
||||
|
||||
win:
|
||||
|
190
locale/app.pot
190
locale/app.pot
@@ -7,7 +7,7 @@ msgid "\"{command}\" is still running. Close?"
|
||||
msgstr ""
|
||||
|
||||
#: tabby-settings/src/components/profilesSettingsTab.component.ts:78
|
||||
#: tabby-settings/src/components/profilesSettingsTab.component.ts:85
|
||||
#: tabby-settings/src/components/profilesSettingsTab.component.ts:89
|
||||
msgid "{name} copy"
|
||||
msgstr ""
|
||||
|
||||
@@ -79,7 +79,7 @@ msgstr ""
|
||||
msgid "Agent type"
|
||||
msgstr ""
|
||||
|
||||
#: locale/tmp-html/tabby-terminal/src/components/terminalSettingsTab.component.html:163
|
||||
#: locale/tmp-html/tabby-terminal/src/components/terminalSettingsTab.component.html:170
|
||||
msgid "Allows opening .bat files in tabs, but breaks some shells"
|
||||
msgstr ""
|
||||
|
||||
@@ -120,7 +120,7 @@ msgstr ""
|
||||
msgid "Ask before closing the browser tab"
|
||||
msgstr ""
|
||||
|
||||
#: locale/tmp-html/tabby-terminal/src/components/terminalSettingsTab.component.html:134
|
||||
#: locale/tmp-html/tabby-terminal/src/components/terminalSettingsTab.component.html:141
|
||||
msgid "Audible"
|
||||
msgstr ""
|
||||
|
||||
@@ -136,7 +136,7 @@ msgstr ""
|
||||
msgid "Auto"
|
||||
msgstr ""
|
||||
|
||||
#: locale/tmp-html/tabby-terminal/src/components/terminalSettingsTab.component.html:147
|
||||
#: locale/tmp-html/tabby-terminal/src/components/terminalSettingsTab.component.html:154
|
||||
msgid "Auto-open a terminal on app start"
|
||||
msgstr ""
|
||||
|
||||
@@ -193,12 +193,12 @@ msgstr ""
|
||||
msgid "Bottom"
|
||||
msgstr ""
|
||||
|
||||
#: locale/tmp-html/tabby-terminal/src/components/terminalSettingsTab.component.html:107
|
||||
#: locale/tmp-html/tabby-terminal/src/components/terminalSettingsTab.component.html:114
|
||||
msgid "Bracketed paste (requires shell support)"
|
||||
msgstr ""
|
||||
|
||||
#: locale/tmp-html/tabby-plugin-manager/src/components/pluginsSettingsTab.component.html:48
|
||||
#: tabby-settings/src/components/profilesSettingsTab.component.ts:166
|
||||
#: tabby-settings/src/components/profilesSettingsTab.component.ts:174
|
||||
msgid "Built-in"
|
||||
msgstr ""
|
||||
|
||||
@@ -208,13 +208,13 @@ msgstr ""
|
||||
#: locale/tmp-html/tabby-settings/src/components/setVaultPassphraseModal.component.html:14
|
||||
#: locale/tmp-html/tabby-ssh/src/components/sftpCreateDirectoryModal.component.html:10
|
||||
#: locale/tmp-html/tabby-ssh/src/components/sftpDeleteModal.component.html:7
|
||||
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsTab.component.html:30
|
||||
#: tabby-electron/src/services/updater.service.ts:143
|
||||
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsTab.component.html:32
|
||||
#: tabby-electron/src/services/updater.service.ts:140
|
||||
#: tabby-local/src/components/terminalTab.component.ts:118
|
||||
#: tabby-settings/src/components/configSyncSettingsTab.component.ts:79
|
||||
#: tabby-settings/src/components/configSyncSettingsTab.component.ts:99
|
||||
#: tabby-ssh/src/sftpContextMenu.ts:40
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:459
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:460
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
@@ -243,7 +243,7 @@ msgstr ""
|
||||
msgid "Clear terminal"
|
||||
msgstr ""
|
||||
|
||||
#: locale/tmp-html/tabby-terminal/src/components/terminalSettingsTab.component.html:92
|
||||
#: locale/tmp-html/tabby-terminal/src/components/terminalSettingsTab.component.html:99
|
||||
msgid "Clipboard"
|
||||
msgstr ""
|
||||
|
||||
@@ -256,7 +256,7 @@ msgstr ""
|
||||
msgid "Close and never show again"
|
||||
msgstr ""
|
||||
|
||||
#: tabby-core/src/hotkeys.ts:197
|
||||
#: tabby-core/src/hotkeys.ts:233
|
||||
msgid "Close focused pane"
|
||||
msgstr ""
|
||||
|
||||
@@ -355,14 +355,14 @@ msgstr ""
|
||||
msgid "Connection name will be used instead"
|
||||
msgstr ""
|
||||
|
||||
#: locale/tmp-html/tabby-terminal/src/components/terminalSettingsTab.component.html:57
|
||||
#: locale/tmp-html/tabby-terminal/src/components/terminalSettingsTab.component.html:64
|
||||
msgid "Context menu"
|
||||
msgstr ""
|
||||
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:202
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:210
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:550
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:754
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:203
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:211
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:551
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:755
|
||||
#: tabby-terminal/src/tabContextMenu.ts:29
|
||||
msgid "Copied"
|
||||
msgstr ""
|
||||
@@ -377,7 +377,7 @@ msgstr ""
|
||||
msgid "Copy current path"
|
||||
msgstr ""
|
||||
|
||||
#: locale/tmp-html/tabby-terminal/src/components/terminalSettingsTab.component.html:95
|
||||
#: locale/tmp-html/tabby-terminal/src/components/terminalSettingsTab.component.html:102
|
||||
msgid "Copy on select"
|
||||
msgstr ""
|
||||
|
||||
@@ -385,7 +385,7 @@ msgstr ""
|
||||
msgid "Copy to clipboard"
|
||||
msgstr ""
|
||||
|
||||
#: locale/tmp-html/tabby-terminal/src/components/terminalSettingsTab.component.html:101
|
||||
#: locale/tmp-html/tabby-terminal/src/components/terminalSettingsTab.component.html:108
|
||||
msgid "Copy with formatting"
|
||||
msgstr ""
|
||||
|
||||
@@ -422,7 +422,7 @@ msgstr ""
|
||||
msgid "Cursor shape"
|
||||
msgstr ""
|
||||
|
||||
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsTab.component.html:47
|
||||
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsTab.component.html:49
|
||||
msgid "Custom"
|
||||
msgstr ""
|
||||
|
||||
@@ -438,11 +438,11 @@ msgstr ""
|
||||
msgid "Debugging"
|
||||
msgstr ""
|
||||
|
||||
#: tabby-core/src/hotkeys.ts:213
|
||||
#: tabby-core/src/hotkeys.ts:249
|
||||
msgid "Decrease horizontal split size"
|
||||
msgstr ""
|
||||
|
||||
#: tabby-core/src/hotkeys.ts:205
|
||||
#: tabby-core/src/hotkeys.ts:241
|
||||
msgid "Decrease vertical split size"
|
||||
msgstr ""
|
||||
|
||||
@@ -464,9 +464,9 @@ msgstr ""
|
||||
|
||||
#: locale/tmp-html/tabby-settings/src/components/vaultSettingsTab.component.html:28
|
||||
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsTab.component.html:9
|
||||
#: tabby-settings/src/components/profilesSettingsTab.component.ts:130
|
||||
#: tabby-settings/src/components/profilesSettingsTab.component.ts:195
|
||||
#: tabby-settings/src/components/profilesSettingsTab.component.ts:208
|
||||
#: tabby-settings/src/components/profilesSettingsTab.component.ts:138
|
||||
#: tabby-settings/src/components/profilesSettingsTab.component.ts:203
|
||||
#: tabby-settings/src/components/profilesSettingsTab.component.ts:216
|
||||
#: tabby-settings/src/components/vaultSettingsTab.component.ts:49
|
||||
#: tabby-ssh/src/sftpContextMenu.ts:39
|
||||
#: tabby-ssh/src/sftpContextMenu.ts:47
|
||||
@@ -475,8 +475,8 @@ msgstr ""
|
||||
msgid "Delete"
|
||||
msgstr ""
|
||||
|
||||
#: tabby-settings/src/components/profilesSettingsTab.component.ts:128
|
||||
#: tabby-settings/src/components/profilesSettingsTab.component.ts:193
|
||||
#: tabby-settings/src/components/profilesSettingsTab.component.ts:136
|
||||
#: tabby-settings/src/components/profilesSettingsTab.component.ts:201
|
||||
#: tabby-terminal/src/components/colorSchemeSettingsTab.component.ts:87
|
||||
msgid "Delete \"{name}\"?"
|
||||
msgstr ""
|
||||
@@ -497,7 +497,7 @@ msgstr ""
|
||||
msgid "Delete previous word"
|
||||
msgstr ""
|
||||
|
||||
#: tabby-settings/src/components/profilesSettingsTab.component.ts:205
|
||||
#: tabby-settings/src/components/profilesSettingsTab.component.ts:213
|
||||
msgid "Delete the group's profiles?"
|
||||
msgstr ""
|
||||
|
||||
@@ -529,11 +529,11 @@ msgstr ""
|
||||
msgid "Disable dynamic tab title"
|
||||
msgstr ""
|
||||
|
||||
#: locale/tmp-html/tabby-settings/src/components/windowSettingsTab.component.html:197
|
||||
#: locale/tmp-html/tabby-settings/src/components/windowSettingsTab.component.html:204
|
||||
msgid "Disable fluent background while dragging"
|
||||
msgstr ""
|
||||
|
||||
#: locale/tmp-html/tabby-settings/src/components/windowSettingsTab.component.html:190
|
||||
#: locale/tmp-html/tabby-settings/src/components/windowSettingsTab.component.html:197
|
||||
msgid "Disable GPU acceleration"
|
||||
msgstr ""
|
||||
|
||||
@@ -552,6 +552,10 @@ msgstr ""
|
||||
msgid "Disconnect from {host}?"
|
||||
msgstr ""
|
||||
|
||||
#: locale/tmp-html/tabby-terminal/src/components/terminalSettingsTab.component.html:30
|
||||
msgid "Display images via Sixel escape sequences"
|
||||
msgstr ""
|
||||
|
||||
#: locale/tmp-html/tabby-settings/src/components/windowSettingsTab.component.html:88
|
||||
msgid "Display on"
|
||||
msgstr ""
|
||||
@@ -590,7 +594,7 @@ msgstr ""
|
||||
msgid "Docking"
|
||||
msgstr ""
|
||||
|
||||
#: locale/tmp-html/tabby-terminal/src/components/terminalSettingsTab.component.html:73
|
||||
#: locale/tmp-html/tabby-terminal/src/components/terminalSettingsTab.component.html:80
|
||||
msgid "Double-click selection will stop at these characters"
|
||||
msgstr ""
|
||||
|
||||
@@ -622,6 +626,10 @@ msgstr ""
|
||||
msgid "Edit"
|
||||
msgstr ""
|
||||
|
||||
#: tabby-electron/src/sftpContextMenu.ts:30
|
||||
msgid "Edit locally"
|
||||
msgstr ""
|
||||
|
||||
#: locale/tmp-html/tabby-plugin-manager/src/components/pluginsSettingsTab.component.html:56
|
||||
msgid "Enable"
|
||||
msgstr ""
|
||||
@@ -708,7 +716,7 @@ msgstr ""
|
||||
msgid "Fixed"
|
||||
msgstr ""
|
||||
|
||||
#: locale/tmp-html/tabby-settings/src/components/windowSettingsTab.component.html:198
|
||||
#: locale/tmp-html/tabby-settings/src/components/windowSettingsTab.component.html:205
|
||||
msgid "Fluent background sometimes causes drag lag"
|
||||
msgstr ""
|
||||
|
||||
@@ -720,10 +728,26 @@ msgstr ""
|
||||
msgid "Focus all panes at once (broadcast)"
|
||||
msgstr ""
|
||||
|
||||
#: locale/tmp-html/tabby-settings/src/components/windowSettingsTab.component.html:189
|
||||
msgid "Focus follows mouse"
|
||||
msgstr ""
|
||||
|
||||
#: tabby-core/src/hotkeys.ts:189
|
||||
msgid "Focus next pane"
|
||||
msgstr ""
|
||||
|
||||
#: tabby-core/src/hotkeys.ts:193
|
||||
#: tabby-core/src/hotkeys.ts:197
|
||||
#: tabby-core/src/hotkeys.ts:201
|
||||
#: tabby-core/src/hotkeys.ts:205
|
||||
#: tabby-core/src/hotkeys.ts:209
|
||||
#: tabby-core/src/hotkeys.ts:213
|
||||
#: tabby-core/src/hotkeys.ts:217
|
||||
#: tabby-core/src/hotkeys.ts:221
|
||||
#: tabby-core/src/hotkeys.ts:225
|
||||
msgid "Focus pane {number}"
|
||||
msgstr ""
|
||||
|
||||
#: tabby-core/src/hotkeys.ts:185
|
||||
msgid "Focus previous pane"
|
||||
msgstr ""
|
||||
@@ -830,7 +854,7 @@ msgstr ""
|
||||
msgid "Group"
|
||||
msgstr ""
|
||||
|
||||
#: locale/tmp-html/tabby-settings/src/components/windowSettingsTab.component.html:187
|
||||
#: locale/tmp-html/tabby-settings/src/components/windowSettingsTab.component.html:194
|
||||
msgid "Hacks"
|
||||
msgstr ""
|
||||
|
||||
@@ -913,11 +937,11 @@ msgstr ""
|
||||
msgid "Immediately echoes your input locally"
|
||||
msgstr ""
|
||||
|
||||
#: tabby-core/src/hotkeys.ts:209
|
||||
#: tabby-core/src/hotkeys.ts:245
|
||||
msgid "Increase horizontal split size"
|
||||
msgstr ""
|
||||
|
||||
#: tabby-core/src/hotkeys.ts:201
|
||||
#: tabby-core/src/hotkeys.ts:237
|
||||
msgid "Increase vertical split size"
|
||||
msgstr ""
|
||||
|
||||
@@ -937,7 +961,7 @@ msgstr ""
|
||||
msgid "Installed"
|
||||
msgstr ""
|
||||
|
||||
#: tabby-electron/src/services/updater.service.ts:140
|
||||
#: tabby-electron/src/services/updater.service.ts:137
|
||||
msgid "Installing the update will close all tabs and restart Tabby."
|
||||
msgstr ""
|
||||
|
||||
@@ -966,8 +990,8 @@ msgstr ""
|
||||
msgid "Jump to previous word"
|
||||
msgstr ""
|
||||
|
||||
#: tabby-settings/src/components/profilesSettingsTab.component.ts:131
|
||||
#: tabby-settings/src/components/profilesSettingsTab.component.ts:196
|
||||
#: tabby-settings/src/components/profilesSettingsTab.component.ts:139
|
||||
#: tabby-settings/src/components/profilesSettingsTab.component.ts:204
|
||||
#: tabby-settings/src/components/vaultSettingsTab.component.ts:50
|
||||
#: tabby-terminal/src/components/colorSchemeSettingsTab.component.ts:90
|
||||
#: tabby-terminal/src/components/loginScriptsSettings.component.ts:33
|
||||
@@ -991,7 +1015,7 @@ msgstr ""
|
||||
msgid "Key exchange"
|
||||
msgstr ""
|
||||
|
||||
#: locale/tmp-html/tabby-terminal/src/components/terminalSettingsTab.component.html:29
|
||||
#: locale/tmp-html/tabby-terminal/src/components/terminalSettingsTab.component.html:36
|
||||
msgid "Keyboard"
|
||||
msgstr ""
|
||||
|
||||
@@ -1031,7 +1055,7 @@ msgstr ""
|
||||
msgid "Left"
|
||||
msgstr ""
|
||||
|
||||
#: locale/tmp-html/tabby-terminal/src/components/terminalSettingsTab.component.html:33
|
||||
#: locale/tmp-html/tabby-terminal/src/components/terminalSettingsTab.component.html:40
|
||||
msgid "Lets the shell handle Meta key instead of OS"
|
||||
msgstr ""
|
||||
|
||||
@@ -1074,7 +1098,7 @@ msgstr ""
|
||||
msgid "Login scripts"
|
||||
msgstr ""
|
||||
|
||||
#: locale/tmp-html/tabby-terminal/src/components/terminalSettingsTab.component.html:50
|
||||
#: locale/tmp-html/tabby-terminal/src/components/terminalSettingsTab.component.html:57
|
||||
msgid "Long-click for context menu"
|
||||
msgstr ""
|
||||
|
||||
@@ -1094,7 +1118,7 @@ msgstr ""
|
||||
msgid "Modified on {date}"
|
||||
msgstr ""
|
||||
|
||||
#: locale/tmp-html/tabby-terminal/src/components/terminalSettingsTab.component.html:46
|
||||
#: locale/tmp-html/tabby-terminal/src/components/terminalSettingsTab.component.html:53
|
||||
msgid "Mouse"
|
||||
msgstr ""
|
||||
|
||||
@@ -1106,10 +1130,14 @@ msgstr ""
|
||||
msgid "Move tab to the right"
|
||||
msgstr ""
|
||||
|
||||
#: tabby-settings/src/components/profilesSettingsTab.component.ts:207
|
||||
#: tabby-settings/src/components/profilesSettingsTab.component.ts:215
|
||||
msgid "Move to \"Ungrouped\""
|
||||
msgstr ""
|
||||
|
||||
#: locale/tmp-html/tabby-settings/src/components/windowSettingsTab.component.html:190
|
||||
msgid "Moving the mouse over an inactive pane will cause it to activate"
|
||||
msgstr ""
|
||||
|
||||
#: locale/tmp-html/tabby-settings/src/components/editProfileModal.component.html:12
|
||||
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsTab.component.html:14
|
||||
msgid "Name"
|
||||
@@ -1139,7 +1167,7 @@ msgstr ""
|
||||
msgid "New item"
|
||||
msgstr ""
|
||||
|
||||
#: tabby-settings/src/components/profilesSettingsTab.component.ts:177
|
||||
#: tabby-settings/src/components/profilesSettingsTab.component.ts:185
|
||||
#: tabby-settings/src/components/vaultSettingsTab.component.ts:118
|
||||
msgid "New name"
|
||||
msgstr ""
|
||||
@@ -1156,7 +1184,7 @@ msgstr ""
|
||||
msgid "New tab"
|
||||
msgstr ""
|
||||
|
||||
#: tabby-core/src/hotkeys.ts:228
|
||||
#: tabby-core/src/hotkeys.ts:264
|
||||
msgid "New tab: {profile}"
|
||||
msgstr ""
|
||||
|
||||
@@ -1185,7 +1213,7 @@ msgstr ""
|
||||
msgid "No color"
|
||||
msgstr ""
|
||||
|
||||
#: locale/tmp-html/tabby-terminal/src/components/terminalSettingsTab.component.html:83
|
||||
#: locale/tmp-html/tabby-terminal/src/components/terminalSettingsTab.component.html:90
|
||||
msgid "No modifier"
|
||||
msgstr ""
|
||||
|
||||
@@ -1220,8 +1248,8 @@ msgid "Number of lines kept in the buffer"
|
||||
msgstr ""
|
||||
|
||||
#: locale/tmp-html/tabby-settings/src/components/windowSettingsTab.component.html:70
|
||||
#: locale/tmp-html/tabby-terminal/src/components/terminalSettingsTab.component.html:128
|
||||
#: locale/tmp-html/tabby-terminal/src/components/terminalSettingsTab.component.html:54
|
||||
#: locale/tmp-html/tabby-terminal/src/components/terminalSettingsTab.component.html:135
|
||||
#: locale/tmp-html/tabby-terminal/src/components/terminalSettingsTab.component.html:61
|
||||
msgid "Off"
|
||||
msgstr ""
|
||||
|
||||
@@ -1339,8 +1367,8 @@ msgstr ""
|
||||
msgid "Password"
|
||||
msgstr ""
|
||||
|
||||
#: locale/tmp-html/tabby-terminal/src/components/terminalSettingsTab.component.html:60
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:458
|
||||
#: locale/tmp-html/tabby-terminal/src/components/terminalSettingsTab.component.html:67
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:459
|
||||
#: tabby-terminal/src/tabContextMenu.ts:34
|
||||
msgid "Paste"
|
||||
msgstr ""
|
||||
@@ -1349,11 +1377,11 @@ msgstr ""
|
||||
msgid "Paste from clipboard"
|
||||
msgstr ""
|
||||
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:465
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:466
|
||||
msgid "Paste multiple lines?"
|
||||
msgstr ""
|
||||
|
||||
#: locale/tmp-html/tabby-terminal/src/components/terminalSettingsTab.component.html:66
|
||||
#: locale/tmp-html/tabby-terminal/src/components/terminalSettingsTab.component.html:73
|
||||
msgid "Paste on middle-click"
|
||||
msgstr ""
|
||||
|
||||
@@ -1401,7 +1429,7 @@ msgstr ""
|
||||
msgid "Prevents accidental closing"
|
||||
msgstr ""
|
||||
|
||||
#: locale/tmp-html/tabby-terminal/src/components/terminalSettingsTab.component.html:108
|
||||
#: locale/tmp-html/tabby-terminal/src/components/terminalSettingsTab.component.html:115
|
||||
msgid "Prevents accidental execution of pasted commands"
|
||||
msgstr ""
|
||||
|
||||
@@ -1526,7 +1554,7 @@ msgstr ""
|
||||
msgid "Report a problem"
|
||||
msgstr ""
|
||||
|
||||
#: locale/tmp-html/tabby-terminal/src/components/terminalSettingsTab.component.html:79
|
||||
#: locale/tmp-html/tabby-terminal/src/components/terminalSettingsTab.component.html:86
|
||||
msgid "Require a key to click links"
|
||||
msgstr ""
|
||||
|
||||
@@ -1550,7 +1578,7 @@ msgstr ""
|
||||
msgid "Restart the app to apply changes"
|
||||
msgstr ""
|
||||
|
||||
#: locale/tmp-html/tabby-terminal/src/components/terminalSettingsTab.component.html:153
|
||||
#: locale/tmp-html/tabby-terminal/src/components/terminalSettingsTab.component.html:160
|
||||
msgid "Restore terminal tabs on app start"
|
||||
msgstr ""
|
||||
|
||||
@@ -1564,7 +1592,7 @@ msgstr ""
|
||||
msgid "Right"
|
||||
msgstr ""
|
||||
|
||||
#: locale/tmp-html/tabby-terminal/src/components/terminalSettingsTab.component.html:49
|
||||
#: locale/tmp-html/tabby-terminal/src/components/terminalSettingsTab.component.html:56
|
||||
msgid "Right click"
|
||||
msgstr ""
|
||||
|
||||
@@ -1574,7 +1602,7 @@ msgstr ""
|
||||
|
||||
#: locale/tmp-html/tabby-core/src/components/renameTabModal.component.html:6
|
||||
#: locale/tmp-html/tabby-settings/src/components/editProfileModal.component.html:54
|
||||
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsTab.component.html:28
|
||||
#: locale/tmp-html/tabby-terminal/src/components/colorSchemeSettingsTab.component.html:30
|
||||
msgid "Save"
|
||||
msgstr ""
|
||||
|
||||
@@ -1602,7 +1630,7 @@ msgstr ""
|
||||
msgid "Saved layout"
|
||||
msgstr ""
|
||||
|
||||
#: locale/tmp-html/tabby-terminal/src/components/terminalSettingsTab.component.html:39
|
||||
#: locale/tmp-html/tabby-terminal/src/components/terminalSettingsTab.component.html:46
|
||||
msgid "Scroll on input"
|
||||
msgstr ""
|
||||
|
||||
@@ -1614,7 +1642,7 @@ msgstr ""
|
||||
msgid "Scrollback"
|
||||
msgstr ""
|
||||
|
||||
#: locale/tmp-html/tabby-terminal/src/components/terminalSettingsTab.component.html:40
|
||||
#: locale/tmp-html/tabby-terminal/src/components/terminalSettingsTab.component.html:47
|
||||
msgid "Scrolls the terminal to the bottom on user input"
|
||||
msgstr ""
|
||||
|
||||
@@ -1639,7 +1667,7 @@ msgid "Secret sync token"
|
||||
msgstr ""
|
||||
|
||||
#: locale/tmp-html/tabby-ssh/src/components/sshProfileSettings.component.html:45
|
||||
#: tabby-electron/src/services/platform.service.ts:209
|
||||
#: tabby-electron/src/services/platform.service.ts:195
|
||||
msgid "Select"
|
||||
msgstr ""
|
||||
|
||||
@@ -1694,7 +1722,7 @@ msgstr ""
|
||||
msgid "Set password"
|
||||
msgstr ""
|
||||
|
||||
#: locale/tmp-html/tabby-terminal/src/components/terminalSettingsTab.component.html:162
|
||||
#: locale/tmp-html/tabby-terminal/src/components/terminalSettingsTab.component.html:169
|
||||
msgid "Set Tabby as %COMSPEC%"
|
||||
msgstr ""
|
||||
|
||||
@@ -1715,7 +1743,7 @@ msgstr ""
|
||||
msgid "Shell"
|
||||
msgstr ""
|
||||
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:552
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:553
|
||||
msgid "Shell does not support current path detection"
|
||||
msgstr ""
|
||||
|
||||
@@ -1723,11 +1751,11 @@ msgstr ""
|
||||
msgid "Shell integration"
|
||||
msgstr ""
|
||||
|
||||
#: tabby-core/src/hotkeys.ts:232
|
||||
#: tabby-core/src/hotkeys.ts:268
|
||||
msgid "Show {type} profile selector"
|
||||
msgstr ""
|
||||
|
||||
#: locale/tmp-html/tabby-terminal/src/components/terminalSettingsTab.component.html:115
|
||||
#: locale/tmp-html/tabby-terminal/src/components/terminalSettingsTab.component.html:122
|
||||
msgid "Show a confirmation box when pasting multiple lines"
|
||||
msgstr ""
|
||||
|
||||
@@ -1743,7 +1771,7 @@ msgstr ""
|
||||
msgid "Show defaults"
|
||||
msgstr ""
|
||||
|
||||
#: locale/tmp-html/tabby-terminal/src/components/terminalSettingsTab.component.html:140
|
||||
#: locale/tmp-html/tabby-terminal/src/components/terminalSettingsTab.component.html:147
|
||||
msgid "Show Mixer"
|
||||
msgstr ""
|
||||
|
||||
@@ -1775,6 +1803,10 @@ msgstr ""
|
||||
msgid "Show vault contents"
|
||||
msgstr ""
|
||||
|
||||
#: locale/tmp-html/tabby-terminal/src/components/terminalSettingsTab.component.html:29
|
||||
msgid "Sixel graphics support (experimental)"
|
||||
msgstr ""
|
||||
|
||||
#: locale/tmp-html/tabby-ssh/src/components/sshProfileSettings.component.html:140
|
||||
msgid "Skip MoTD/banner"
|
||||
msgstr ""
|
||||
@@ -1802,7 +1834,7 @@ msgstr ""
|
||||
msgid "SOCKS proxy port"
|
||||
msgstr ""
|
||||
|
||||
#: locale/tmp-html/tabby-terminal/src/components/terminalSettingsTab.component.html:121
|
||||
#: locale/tmp-html/tabby-terminal/src/components/terminalSettingsTab.component.html:128
|
||||
msgid "Sound"
|
||||
msgstr ""
|
||||
|
||||
@@ -1846,7 +1878,7 @@ msgstr ""
|
||||
msgid "Standard"
|
||||
msgstr ""
|
||||
|
||||
#: locale/tmp-html/tabby-terminal/src/components/terminalSettingsTab.component.html:144
|
||||
#: locale/tmp-html/tabby-terminal/src/components/terminalSettingsTab.component.html:151
|
||||
msgid "Startup"
|
||||
msgstr ""
|
||||
|
||||
@@ -1870,7 +1902,7 @@ msgstr ""
|
||||
msgid "Switch profile"
|
||||
msgstr ""
|
||||
|
||||
#: tabby-core/src/hotkeys.ts:193
|
||||
#: tabby-core/src/hotkeys.ts:229
|
||||
msgid "Switch profile in the active pane"
|
||||
msgstr ""
|
||||
|
||||
@@ -1953,7 +1985,7 @@ msgstr ""
|
||||
msgid "Telnet session"
|
||||
msgstr ""
|
||||
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:191
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:192
|
||||
#: tabby-terminal/src/settings.ts:43
|
||||
msgid "Terminal"
|
||||
msgstr ""
|
||||
@@ -1962,7 +1994,7 @@ msgstr ""
|
||||
msgid "Terminal background"
|
||||
msgstr ""
|
||||
|
||||
#: locale/tmp-html/tabby-terminal/src/components/terminalSettingsTab.component.html:124
|
||||
#: locale/tmp-html/tabby-terminal/src/components/terminalSettingsTab.component.html:131
|
||||
msgid "Terminal bell"
|
||||
msgstr ""
|
||||
|
||||
@@ -1990,7 +2022,7 @@ msgstr ""
|
||||
msgid "Thin"
|
||||
msgstr ""
|
||||
|
||||
#: locale/tmp-html/tabby-settings/src/components/windowSettingsTab.component.html:191
|
||||
#: locale/tmp-html/tabby-settings/src/components/windowSettingsTab.component.html:198
|
||||
msgid "Tick this if you're experiencing aliasing, ghosting or other visual issues"
|
||||
msgstr ""
|
||||
|
||||
@@ -2035,7 +2067,7 @@ msgstr ""
|
||||
msgid "Uninstall"
|
||||
msgstr ""
|
||||
|
||||
#: tabby-settings/src/components/profilesSettingsTab.component.ts:241
|
||||
#: tabby-settings/src/components/profilesSettingsTab.component.ts:249
|
||||
msgid "Unknown"
|
||||
msgstr ""
|
||||
|
||||
@@ -2052,7 +2084,7 @@ msgid "Up"
|
||||
msgstr ""
|
||||
|
||||
#: locale/tmp-html/tabby-settings/src/components/settingsTab.component.html:14
|
||||
#: tabby-electron/src/services/updater.service.ts:142
|
||||
#: tabby-electron/src/services/updater.service.ts:139
|
||||
msgid "Update"
|
||||
msgstr ""
|
||||
|
||||
@@ -2069,7 +2101,7 @@ msgstr ""
|
||||
msgid "Upload as a new config"
|
||||
msgstr ""
|
||||
|
||||
#: locale/tmp-html/tabby-terminal/src/components/terminalSettingsTab.component.html:32
|
||||
#: locale/tmp-html/tabby-terminal/src/components/terminalSettingsTab.component.html:39
|
||||
msgid "Use {altKeyName} as the Meta key"
|
||||
msgstr ""
|
||||
|
||||
@@ -2135,11 +2167,11 @@ msgstr ""
|
||||
msgid "Vibrancy"
|
||||
msgstr ""
|
||||
|
||||
#: locale/tmp-html/tabby-terminal/src/components/terminalSettingsTab.component.html:131
|
||||
#: locale/tmp-html/tabby-terminal/src/components/terminalSettingsTab.component.html:138
|
||||
msgid "Visual"
|
||||
msgstr ""
|
||||
|
||||
#: locale/tmp-html/tabby-terminal/src/components/terminalSettingsTab.component.html:114
|
||||
#: locale/tmp-html/tabby-terminal/src/components/terminalSettingsTab.component.html:121
|
||||
msgid "Warn on multi-line paste"
|
||||
msgstr ""
|
||||
|
||||
@@ -2163,7 +2195,7 @@ msgstr ""
|
||||
msgid "What's new"
|
||||
msgstr ""
|
||||
|
||||
#: locale/tmp-html/tabby-terminal/src/components/terminalSettingsTab.component.html:80
|
||||
#: locale/tmp-html/tabby-terminal/src/components/terminalSettingsTab.component.html:87
|
||||
msgid "When enabled, links are only clickable while holding this key"
|
||||
msgstr ""
|
||||
|
||||
@@ -2192,7 +2224,7 @@ msgstr ""
|
||||
msgid "Window frame"
|
||||
msgstr ""
|
||||
|
||||
#: locale/tmp-html/tabby-terminal/src/components/terminalSettingsTab.component.html:159
|
||||
#: locale/tmp-html/tabby-terminal/src/components/terminalSettingsTab.component.html:166
|
||||
msgid "Windows"
|
||||
msgstr ""
|
||||
|
||||
@@ -2204,7 +2236,7 @@ msgstr ""
|
||||
msgid "WinSCP path"
|
||||
msgstr ""
|
||||
|
||||
#: locale/tmp-html/tabby-terminal/src/components/terminalSettingsTab.component.html:72
|
||||
#: locale/tmp-html/tabby-terminal/src/components/terminalSettingsTab.component.html:79
|
||||
msgid "Word separators"
|
||||
msgstr ""
|
||||
|
||||
@@ -2217,7 +2249,7 @@ msgstr ""
|
||||
msgid "Working directory detection"
|
||||
msgstr ""
|
||||
|
||||
#: locale/tmp-html/tabby-terminal/src/components/terminalSettingsTab.component.html:139
|
||||
#: locale/tmp-html/tabby-terminal/src/components/terminalSettingsTab.component.html:146
|
||||
msgid "WSL terminal bell can only be muted via Volume Mixer"
|
||||
msgstr ""
|
||||
|
||||
|
@@ -10,7 +10,7 @@ msgstr ""
|
||||
"Project-Id-Version: tabby\n"
|
||||
"Language-Team: Bulgarian\n"
|
||||
"Language: bg_BG\n"
|
||||
"PO-Revision-Date: 2022-04-30 18:35\n"
|
||||
"PO-Revision-Date: 2022-06-15 20:28\n"
|
||||
|
||||
#: tabby-local/src/components/terminalTab.component.ts:113
|
||||
msgid "\"{command}\" is still running. Close?"
|
||||
@@ -21,11 +21,6 @@ msgstr "\"{command}\" все още се изпълнява. Затваряне?
|
||||
msgid "{name} copy"
|
||||
msgstr "{name} копирай"
|
||||
|
||||
#: locale/tmp-html/tabby-ssh/src/components/sftpPanel.component.html:13
|
||||
msgid "<strong translate=\"\">Working directory detection</strong>\n"
|
||||
"<div translate=\"\">Learn how to allow Tabby to detect remote shell's working directory.</div>"
|
||||
msgstr ""
|
||||
|
||||
#: locale/tmp-html/tabby-terminal/src/components/appearanceSettingsTab.component.html:76
|
||||
msgid "A second font family used to display characters missing in the main font"
|
||||
msgstr "Шрифт, който да се използва в случай, че символ отсъства в основния шрифт"
|
||||
@@ -44,7 +39,7 @@ msgstr "Приеми самотози веднъж"
|
||||
|
||||
#: locale/tmp-html/tabby-settings/src/components/settingsTab.component.html:84
|
||||
msgid "Accessibility"
|
||||
msgstr ""
|
||||
msgstr "Достъпност"
|
||||
|
||||
#: locale/tmp-html/tabby-settings/src/components/windowSettingsTab.component.html:20
|
||||
msgid "Acrylic background"
|
||||
@@ -229,7 +224,7 @@ msgstr "Вградени"
|
||||
#: tabby-settings/src/components/configSyncSettingsTab.component.ts:79
|
||||
#: tabby-settings/src/components/configSyncSettingsTab.component.ts:99
|
||||
#: tabby-ssh/src/sftpContextMenu.ts:40
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:458
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:459
|
||||
msgid "Cancel"
|
||||
msgstr "Откажи"
|
||||
|
||||
@@ -374,10 +369,10 @@ msgstr "Името на свръзката ще се се използва вм
|
||||
msgid "Context menu"
|
||||
msgstr "Контекстно меню"
|
||||
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:201
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:209
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:549
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:753
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:202
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:210
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:550
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:754
|
||||
#: tabby-terminal/src/tabContextMenu.ts:29
|
||||
msgid "Copied"
|
||||
msgstr "Копирано"
|
||||
@@ -854,7 +849,7 @@ msgid "Help track the number of Tabby installs across the world!"
|
||||
msgstr "Помогнете за проследяване броя на инсталациите на Tabby по света!"
|
||||
|
||||
#: locale/tmp-html/tabby-settings/src/components/settingsTab.component.html:50
|
||||
msgid "Help translate Tabby<i class=\"fas fa-external-link-square-alt ml-1\"></i>"
|
||||
msgid "Help translate Tabby"
|
||||
msgstr ""
|
||||
|
||||
#: tabby-terminal/src/components/streamProcessingSettings.component.ts:32
|
||||
@@ -1355,7 +1350,7 @@ msgid "Password"
|
||||
msgstr "Парола"
|
||||
|
||||
#: locale/tmp-html/tabby-terminal/src/components/terminalSettingsTab.component.html:60
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:457
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:458
|
||||
#: tabby-terminal/src/tabContextMenu.ts:34
|
||||
msgid "Paste"
|
||||
msgstr "Вмъкни"
|
||||
@@ -1364,7 +1359,7 @@ msgstr "Вмъкни"
|
||||
msgid "Paste from clipboard"
|
||||
msgstr "Вмъкни от клипборда"
|
||||
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:464
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:465
|
||||
msgid "Paste multiple lines?"
|
||||
msgstr "Вмъкване на няколко реда?"
|
||||
|
||||
@@ -1730,7 +1725,7 @@ msgstr "Настройки"
|
||||
msgid "Shell"
|
||||
msgstr "Shell"
|
||||
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:551
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:552
|
||||
msgid "Shell does not support current path detection"
|
||||
msgstr "Shell не поддържа откриване на текущия път"
|
||||
|
||||
@@ -1968,7 +1963,7 @@ msgstr "Ширина на табовете"
|
||||
msgid "Telnet session"
|
||||
msgstr "Telnet сесия"
|
||||
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:190
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:191
|
||||
#: tabby-terminal/src/settings.ts:43
|
||||
msgid "Terminal"
|
||||
msgstr "Терминал"
|
||||
|
@@ -10,7 +10,7 @@ msgstr ""
|
||||
"Project-Id-Version: tabby\n"
|
||||
"Language-Team: Danish\n"
|
||||
"Language: da_DK\n"
|
||||
"PO-Revision-Date: 2022-04-30 18:35\n"
|
||||
"PO-Revision-Date: 2022-06-15 20:28\n"
|
||||
|
||||
#: tabby-local/src/components/terminalTab.component.ts:113
|
||||
msgid "\"{command}\" is still running. Close?"
|
||||
@@ -21,11 +21,6 @@ msgstr "\"{command}\" kører stadig. Luk?"
|
||||
msgid "{name} copy"
|
||||
msgstr "{name} kopi"
|
||||
|
||||
#: locale/tmp-html/tabby-ssh/src/components/sftpPanel.component.html:13
|
||||
msgid "<strong translate=\"\">Working directory detection</strong>\n"
|
||||
"<div translate=\"\">Learn how to allow Tabby to detect remote shell's working directory.</div>"
|
||||
msgstr ""
|
||||
|
||||
#: locale/tmp-html/tabby-terminal/src/components/appearanceSettingsTab.component.html:76
|
||||
msgid "A second font family used to display characters missing in the main font"
|
||||
msgstr "En anden skrifttypefamilie, der bruges til at vise tegn, der mangler i hovedskrifttypen"
|
||||
@@ -229,7 +224,7 @@ msgstr "Indbygget"
|
||||
#: tabby-settings/src/components/configSyncSettingsTab.component.ts:79
|
||||
#: tabby-settings/src/components/configSyncSettingsTab.component.ts:99
|
||||
#: tabby-ssh/src/sftpContextMenu.ts:40
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:458
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:459
|
||||
msgid "Cancel"
|
||||
msgstr "Annullér"
|
||||
|
||||
@@ -374,10 +369,10 @@ msgstr "Forbindelsens navn vil blive brugt i stedet"
|
||||
msgid "Context menu"
|
||||
msgstr "Kontekstmenu"
|
||||
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:201
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:209
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:549
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:753
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:202
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:210
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:550
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:754
|
||||
#: tabby-terminal/src/tabContextMenu.ts:29
|
||||
msgid "Copied"
|
||||
msgstr "Kopieret"
|
||||
@@ -854,7 +849,7 @@ msgid "Help track the number of Tabby installs across the world!"
|
||||
msgstr ""
|
||||
|
||||
#: locale/tmp-html/tabby-settings/src/components/settingsTab.component.html:50
|
||||
msgid "Help translate Tabby<i class=\"fas fa-external-link-square-alt ml-1\"></i>"
|
||||
msgid "Help translate Tabby"
|
||||
msgstr ""
|
||||
|
||||
#: tabby-terminal/src/components/streamProcessingSettings.component.ts:32
|
||||
@@ -1355,7 +1350,7 @@ msgid "Password"
|
||||
msgstr "Adgangskode"
|
||||
|
||||
#: locale/tmp-html/tabby-terminal/src/components/terminalSettingsTab.component.html:60
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:457
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:458
|
||||
#: tabby-terminal/src/tabContextMenu.ts:34
|
||||
msgid "Paste"
|
||||
msgstr "Indsæt"
|
||||
@@ -1364,7 +1359,7 @@ msgstr "Indsæt"
|
||||
msgid "Paste from clipboard"
|
||||
msgstr "Indsæt fra udklipsholder"
|
||||
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:464
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:465
|
||||
msgid "Paste multiple lines?"
|
||||
msgstr "Indsæt flere linjer?"
|
||||
|
||||
@@ -1730,7 +1725,7 @@ msgstr "Indstillinger"
|
||||
msgid "Shell"
|
||||
msgstr "Shell"
|
||||
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:551
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:552
|
||||
msgid "Shell does not support current path detection"
|
||||
msgstr "Shell understøtter ikke detektion af aktuel sti"
|
||||
|
||||
@@ -1968,7 +1963,7 @@ msgstr "Fanebredde"
|
||||
msgid "Telnet session"
|
||||
msgstr "Telnet session"
|
||||
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:190
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:191
|
||||
#: tabby-terminal/src/settings.ts:43
|
||||
msgid "Terminal"
|
||||
msgstr "Terminal"
|
||||
|
@@ -10,7 +10,7 @@ msgstr ""
|
||||
"Project-Id-Version: tabby\n"
|
||||
"Language-Team: German\n"
|
||||
"Language: de_DE\n"
|
||||
"PO-Revision-Date: 2022-05-17 06:35\n"
|
||||
"PO-Revision-Date: 2022-06-15 20:28\n"
|
||||
|
||||
#: tabby-local/src/components/terminalTab.component.ts:113
|
||||
msgid "\"{command}\" is still running. Close?"
|
||||
@@ -21,12 +21,6 @@ msgstr "\"{command}\" läuft noch. Schließen?"
|
||||
msgid "{name} copy"
|
||||
msgstr "{name} Kopie"
|
||||
|
||||
#: locale/tmp-html/tabby-ssh/src/components/sftpPanel.component.html:13
|
||||
msgid "<strong translate=\"\">Working directory detection</strong>\n"
|
||||
"<div translate=\"\">Learn how to allow Tabby to detect remote shell's working directory.</div>"
|
||||
msgstr "<strong translate=\"\">Erkennung von Arbeitsverzeichnissen</strong>\n"
|
||||
"<div translate=\"\">Erfahren Sie, wie Tabby das Arbeitsverzeichnis der Remote Shell erkennen kann.</div>"
|
||||
|
||||
#: locale/tmp-html/tabby-terminal/src/components/appearanceSettingsTab.component.html:76
|
||||
msgid "A second font family used to display characters missing in the main font"
|
||||
msgstr "Eine zweite Schriftart, die zur Darstellung von Zeichen verwendet wird, wenn in der Hauptschriftart Zeichen fehlen"
|
||||
@@ -230,7 +224,7 @@ msgstr "Integriert"
|
||||
#: tabby-settings/src/components/configSyncSettingsTab.component.ts:79
|
||||
#: tabby-settings/src/components/configSyncSettingsTab.component.ts:99
|
||||
#: tabby-ssh/src/sftpContextMenu.ts:40
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:458
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:459
|
||||
msgid "Cancel"
|
||||
msgstr "Abbrechen"
|
||||
|
||||
@@ -375,10 +369,10 @@ msgstr "Stattdessen wird der Verbindungsname verwendet"
|
||||
msgid "Context menu"
|
||||
msgstr "Kontextmenü"
|
||||
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:201
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:209
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:549
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:753
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:202
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:210
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:550
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:754
|
||||
#: tabby-terminal/src/tabContextMenu.ts:29
|
||||
msgid "Copied"
|
||||
msgstr "Kopiert"
|
||||
@@ -616,7 +610,7 @@ msgstr "Unten"
|
||||
|
||||
#: locale/tmp-html/tabby-settings/src/components/configSyncSettingsTab.component.html:47
|
||||
msgid "Download"
|
||||
msgstr "Download"
|
||||
msgstr "Herunterladen"
|
||||
|
||||
#: locale/tmp-html/tabby-terminal/src/components/terminalSettingsTab.component.html:23
|
||||
msgid "Draw bold text in bright colors"
|
||||
@@ -855,8 +849,8 @@ msgid "Help track the number of Tabby installs across the world!"
|
||||
msgstr "Hilf dabei, die Anzahl der Tabby-Installationen auf der ganzen Welt zu verfolgen!"
|
||||
|
||||
#: locale/tmp-html/tabby-settings/src/components/settingsTab.component.html:50
|
||||
msgid "Help translate Tabby<i class=\"fas fa-external-link-square-alt ml-1\"></i>"
|
||||
msgstr "Hilf Tabby zu übersetzen<i class=\"fas fa-external-link-square-alt ml-1\"></i>"
|
||||
msgid "Help translate Tabby"
|
||||
msgstr "Hilf Tabby zu übersetzen"
|
||||
|
||||
#: tabby-terminal/src/components/streamProcessingSettings.component.ts:32
|
||||
#: tabby-terminal/src/components/streamProcessingSettings.component.ts:44
|
||||
@@ -1356,7 +1350,7 @@ msgid "Password"
|
||||
msgstr "Passwort"
|
||||
|
||||
#: locale/tmp-html/tabby-terminal/src/components/terminalSettingsTab.component.html:60
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:457
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:458
|
||||
#: tabby-terminal/src/tabContextMenu.ts:34
|
||||
msgid "Paste"
|
||||
msgstr "Einfügen"
|
||||
@@ -1365,7 +1359,7 @@ msgstr "Einfügen"
|
||||
msgid "Paste from clipboard"
|
||||
msgstr "Aus Zwischenablage einfügen"
|
||||
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:464
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:465
|
||||
msgid "Paste multiple lines?"
|
||||
msgstr "Mehrere Zeilen einfügen?"
|
||||
|
||||
@@ -1731,7 +1725,7 @@ msgstr "Einstellungen"
|
||||
msgid "Shell"
|
||||
msgstr "Shell"
|
||||
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:551
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:552
|
||||
msgid "Shell does not support current path detection"
|
||||
msgstr "Shell unterstützt keine aktuelle Pfaderkennung"
|
||||
|
||||
@@ -1969,7 +1963,7 @@ msgstr "Tabs Breite"
|
||||
msgid "Telnet session"
|
||||
msgstr "Telnet-Sitzung"
|
||||
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:190
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:191
|
||||
#: tabby-terminal/src/settings.ts:43
|
||||
msgid "Terminal"
|
||||
msgstr "Terminal"
|
||||
|
2267
locale/en-GB.po
Normal file
2267
locale/en-GB.po
Normal file
File diff suppressed because it is too large
Load Diff
@@ -10,7 +10,7 @@ msgstr ""
|
||||
"Project-Id-Version: tabby\n"
|
||||
"Language-Team: Spanish\n"
|
||||
"Language: es_ES\n"
|
||||
"PO-Revision-Date: 2022-04-30 18:35\n"
|
||||
"PO-Revision-Date: 2022-06-15 20:28\n"
|
||||
|
||||
#: tabby-local/src/components/terminalTab.component.ts:113
|
||||
msgid "\"{command}\" is still running. Close?"
|
||||
@@ -19,12 +19,7 @@ msgstr "\"{command}\" se sigue ejecutando. ¿Cerrar?"
|
||||
#: tabby-settings/src/components/profilesSettingsTab.component.ts:78
|
||||
#: tabby-settings/src/components/profilesSettingsTab.component.ts:85
|
||||
msgid "{name} copy"
|
||||
msgstr "{name} copia"
|
||||
|
||||
#: locale/tmp-html/tabby-ssh/src/components/sftpPanel.component.html:13
|
||||
msgid "<strong translate=\"\">Working directory detection</strong>\n"
|
||||
"<div translate=\"\">Learn how to allow Tabby to detect remote shell's working directory.</div>"
|
||||
msgstr ""
|
||||
msgstr "{name} copiar"
|
||||
|
||||
#: locale/tmp-html/tabby-terminal/src/components/appearanceSettingsTab.component.html:76
|
||||
msgid "A second font family used to display characters missing in the main font"
|
||||
@@ -44,7 +39,7 @@ msgstr "Aceptar solo esta vez"
|
||||
|
||||
#: locale/tmp-html/tabby-settings/src/components/settingsTab.component.html:84
|
||||
msgid "Accessibility"
|
||||
msgstr ""
|
||||
msgstr "Accesibilidad"
|
||||
|
||||
#: locale/tmp-html/tabby-settings/src/components/windowSettingsTab.component.html:20
|
||||
msgid "Acrylic background"
|
||||
@@ -201,7 +196,7 @@ msgstr "Desenfoque"
|
||||
|
||||
#: locale/tmp-html/tabby-terminal/src/components/appearanceSettingsTab.component.html:28
|
||||
msgid "Bold font weight"
|
||||
msgstr ""
|
||||
msgstr "Peso de la fuente en negrita"
|
||||
|
||||
#: locale/tmp-html/tabby-settings/src/components/windowSettingsTab.component.html:138
|
||||
#: locale/tmp-html/tabby-settings/src/components/windowSettingsTab.component.html:82
|
||||
@@ -229,7 +224,7 @@ msgstr "Integrado"
|
||||
#: tabby-settings/src/components/configSyncSettingsTab.component.ts:79
|
||||
#: tabby-settings/src/components/configSyncSettingsTab.component.ts:99
|
||||
#: tabby-ssh/src/sftpContextMenu.ts:40
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:458
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:459
|
||||
msgid "Cancel"
|
||||
msgstr "Cancelar"
|
||||
|
||||
@@ -374,10 +369,10 @@ msgstr "El nombre de la conexión se utilizará en su lugar"
|
||||
msgid "Context menu"
|
||||
msgstr "Menú contextual"
|
||||
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:201
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:209
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:549
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:753
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:202
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:210
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:550
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:754
|
||||
#: tabby-terminal/src/tabContextMenu.ts:29
|
||||
msgid "Copied"
|
||||
msgstr "Copiado"
|
||||
@@ -402,7 +397,7 @@ msgstr "Copiar al portapapeles"
|
||||
|
||||
#: locale/tmp-html/tabby-terminal/src/components/terminalSettingsTab.component.html:101
|
||||
msgid "Copy with formatting"
|
||||
msgstr ""
|
||||
msgstr "Copiar con formato"
|
||||
|
||||
#: tabby-core/src/services/config.service.ts:365
|
||||
msgid "Could not decrypt config"
|
||||
@@ -455,11 +450,11 @@ msgstr "Depuración"
|
||||
|
||||
#: tabby-core/src/hotkeys.ts:213
|
||||
msgid "Decrease horizontal split size"
|
||||
msgstr ""
|
||||
msgstr "Reducir tamaño de división horizontal"
|
||||
|
||||
#: tabby-core/src/hotkeys.ts:205
|
||||
msgid "Decrease vertical split size"
|
||||
msgstr ""
|
||||
msgstr "Reducir tamaño de división vertical"
|
||||
|
||||
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:8
|
||||
msgid "Default profile for new tabs"
|
||||
@@ -502,7 +497,7 @@ msgstr "¿Eliminar la ruta {fullPath}?"
|
||||
|
||||
#: tabby-terminal/src/hotkeys.ts:38
|
||||
msgid "Delete entire line"
|
||||
msgstr ""
|
||||
msgstr "Borrar toda la línea"
|
||||
|
||||
#: tabby-terminal/src/hotkeys.ts:42
|
||||
msgid "Delete next word"
|
||||
@@ -546,7 +541,7 @@ msgstr "Deshabilitar el título de la pestaña dinámica"
|
||||
|
||||
#: locale/tmp-html/tabby-settings/src/components/windowSettingsTab.component.html:197
|
||||
msgid "Disable fluent background while dragging"
|
||||
msgstr ""
|
||||
msgstr "Desactivar el fondo de fluidez mientras arrastra"
|
||||
|
||||
#: locale/tmp-html/tabby-settings/src/components/windowSettingsTab.component.html:190
|
||||
msgid "Disable GPU acceleration"
|
||||
@@ -619,7 +614,7 @@ msgstr "Descargar"
|
||||
|
||||
#: locale/tmp-html/tabby-terminal/src/components/terminalSettingsTab.component.html:23
|
||||
msgid "Draw bold text in bright colors"
|
||||
msgstr ""
|
||||
msgstr "Mostrar texto en negrita en colores brillantes"
|
||||
|
||||
#: tabby-core/src/tabContextMenu.ts:120
|
||||
msgid "Duplicate"
|
||||
@@ -648,7 +643,7 @@ msgstr "Habilitar analíticas"
|
||||
|
||||
#: locale/tmp-html/tabby-settings/src/components/settingsTab.component.html:87
|
||||
msgid "Enable animations"
|
||||
msgstr ""
|
||||
msgstr "Activar animaciones"
|
||||
|
||||
#: locale/tmp-html/tabby-settings/src/components/settingsTab.component.html:74
|
||||
msgid "Enable automatic installation of updates when they become available."
|
||||
@@ -717,7 +712,7 @@ msgstr "Archivo: {description}"
|
||||
|
||||
#: tabby-settings/src/components/profilesSettingsTab.component.ts:17
|
||||
msgid "Filter"
|
||||
msgstr ""
|
||||
msgstr "Filtro"
|
||||
|
||||
#: locale/tmp-html/tabby-settings/src/components/windowSettingsTab.component.html:157
|
||||
msgid "Fixed"
|
||||
@@ -725,7 +720,7 @@ msgstr "Solucionado"
|
||||
|
||||
#: locale/tmp-html/tabby-settings/src/components/windowSettingsTab.component.html:198
|
||||
msgid "Fluent background sometimes causes drag lag"
|
||||
msgstr ""
|
||||
msgstr "Fondo fluido a veces causa retraso de arrastre"
|
||||
|
||||
#: tabby-local/src/tabContextMenu.ts:136
|
||||
msgid "Focus all panes"
|
||||
@@ -765,7 +760,7 @@ msgstr "Fuente"
|
||||
|
||||
#: locale/tmp-html/tabby-settings/src/components/windowSettingsTab.component.html:183
|
||||
msgid "For keyboard shortcuts"
|
||||
msgstr ""
|
||||
msgstr "Para atajos de teclado"
|
||||
|
||||
#: tabby-terminal/src/components/streamProcessingSettings.component.ts:51
|
||||
msgid "Force CR"
|
||||
@@ -854,8 +849,8 @@ msgid "Help track the number of Tabby installs across the world!"
|
||||
msgstr "¡Ayuda a rastrear la cantidad de instalaciones de Tabby en todo el mundo!"
|
||||
|
||||
#: locale/tmp-html/tabby-settings/src/components/settingsTab.component.html:50
|
||||
msgid "Help translate Tabby<i class=\"fas fa-external-link-square-alt ml-1\"></i>"
|
||||
msgstr ""
|
||||
msgid "Help translate Tabby"
|
||||
msgstr "Ayuda a traducir Tabby"
|
||||
|
||||
#: tabby-terminal/src/components/streamProcessingSettings.component.ts:32
|
||||
#: tabby-terminal/src/components/streamProcessingSettings.component.ts:44
|
||||
@@ -918,7 +913,7 @@ msgstr "Ícono"
|
||||
|
||||
#: locale/tmp-html/tabby-settings/src/components/windowSettingsTab.component.html:154
|
||||
msgid "id.tab-width.dynamic"
|
||||
msgstr ""
|
||||
msgstr "id.tab-width.dynamic"
|
||||
|
||||
#: locale/tmp-html/tabby-settings/src/components/profilesSettingsTab.component.html:64
|
||||
msgid "If disabled, only custom profiles will show up in the profile selector"
|
||||
@@ -930,11 +925,11 @@ msgstr "Inmediatamente hace echo de tu entrada localmente"
|
||||
|
||||
#: tabby-core/src/hotkeys.ts:209
|
||||
msgid "Increase horizontal split size"
|
||||
msgstr ""
|
||||
msgstr "Aumentar tamaño de división horizontal"
|
||||
|
||||
#: tabby-core/src/hotkeys.ts:201
|
||||
msgid "Increase vertical split size"
|
||||
msgstr ""
|
||||
msgstr "Aumentar tamaño de división vertical"
|
||||
|
||||
#: tabby-terminal/src/components/streamProcessingSettings.component.ts:18
|
||||
msgid "Input is sent as you type"
|
||||
@@ -1136,7 +1131,7 @@ msgstr "Nombre para la nueva configuración"
|
||||
|
||||
#: locale/tmp-html/tabby-ssh/src/components/sftpCreateDirectoryModal.component.html:3
|
||||
msgid "Name for the new directory"
|
||||
msgstr ""
|
||||
msgstr "Nombre para el nuevo directorio"
|
||||
|
||||
#: locale/tmp-html/tabby-settings/src/components/windowSettingsTab.component.html:52
|
||||
msgid "Native"
|
||||
@@ -1186,7 +1181,7 @@ msgstr "Nueva ventana"
|
||||
|
||||
#: tabby-local/src/services/dockMenu.service.ts:62
|
||||
msgid "New Window"
|
||||
msgstr ""
|
||||
msgstr "Nueva ventana"
|
||||
|
||||
#: tabby-local/src/tabContextMenu.ts:87
|
||||
msgid "New with profile"
|
||||
@@ -1215,7 +1210,7 @@ msgstr "Normal"
|
||||
|
||||
#: locale/tmp-html/tabby-terminal/src/components/appearanceSettingsTab.component.html:22
|
||||
msgid "Normal font weight"
|
||||
msgstr ""
|
||||
msgstr "Peso de fuente normal"
|
||||
|
||||
#: tabby-terminal/src/components/searchPanel.component.ts:47
|
||||
#: tabby-terminal/src/components/searchPanel.component.ts:57
|
||||
@@ -1331,11 +1326,11 @@ msgstr "¿Sobrescribir la configuración local y empezar a sincronizar?"
|
||||
|
||||
#: locale/tmp-html/tabby-settings/src/components/windowSettingsTab.component.html:182
|
||||
msgid "Pane resize step"
|
||||
msgstr ""
|
||||
msgstr "Paso de redimensionado del panel"
|
||||
|
||||
#: locale/tmp-html/tabby-settings/src/components/windowSettingsTab.component.html:179
|
||||
msgid "Panes"
|
||||
msgstr ""
|
||||
msgstr "Paneles"
|
||||
|
||||
#: locale/tmp-html/tabby-serial/src/components/serialProfileSettings.component.html:38
|
||||
msgid "Parity"
|
||||
@@ -1355,7 +1350,7 @@ msgid "Password"
|
||||
msgstr "Contraseña"
|
||||
|
||||
#: locale/tmp-html/tabby-terminal/src/components/terminalSettingsTab.component.html:60
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:457
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:458
|
||||
#: tabby-terminal/src/tabContextMenu.ts:34
|
||||
msgid "Paste"
|
||||
msgstr "Pegar"
|
||||
@@ -1364,7 +1359,7 @@ msgstr "Pegar"
|
||||
msgid "Paste from clipboard"
|
||||
msgstr "Pegar desde el portapapeles"
|
||||
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:464
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:465
|
||||
msgid "Paste multiple lines?"
|
||||
msgstr "¿Pegar múltiples líneas?"
|
||||
|
||||
@@ -1643,11 +1638,11 @@ msgstr "Buscar esquemas de color"
|
||||
|
||||
#: tabby-settings/src/components/hotkeySettingsTab.component.ts:11
|
||||
msgid "Search hotkeys"
|
||||
msgstr ""
|
||||
msgstr "Buscar atajos"
|
||||
|
||||
#: tabby-plugin-manager/src/components/pluginsSettingsTab.component.ts:14
|
||||
msgid "Search plugins"
|
||||
msgstr ""
|
||||
msgstr "Buscar plugins"
|
||||
|
||||
#: locale/tmp-html/tabby-settings/src/components/configSyncSettingsTab.component.html:19
|
||||
msgid "Secret sync token"
|
||||
@@ -1730,7 +1725,7 @@ msgstr "Ajustes"
|
||||
msgid "Shell"
|
||||
msgstr "Escudo"
|
||||
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:551
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:552
|
||||
msgid "Shell does not support current path detection"
|
||||
msgstr "Shell no soporta la detección actual de rutas"
|
||||
|
||||
@@ -1968,7 +1963,7 @@ msgstr "Ancho de pestañas"
|
||||
msgid "Telnet session"
|
||||
msgstr "Sesión de Telnet"
|
||||
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:190
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:191
|
||||
#: tabby-terminal/src/settings.ts:43
|
||||
msgid "Terminal"
|
||||
msgstr "Terminal"
|
||||
@@ -2268,5 +2263,5 @@ msgstr "Alejar vista"
|
||||
#: locale/tmp-html/tabby-ssh/src/components/sshPortForwardingConfig.component.html:55
|
||||
msgctxt "[Dynamic] port forwarding"
|
||||
msgid "id.port-forwarding.dynamic"
|
||||
msgstr ""
|
||||
msgstr "id.port-forwarding.dynamic"
|
||||
|
||||
|
@@ -10,7 +10,7 @@ msgstr ""
|
||||
"Project-Id-Version: tabby\n"
|
||||
"Language-Team: French\n"
|
||||
"Language: fr_FR\n"
|
||||
"PO-Revision-Date: 2022-05-17 06:35\n"
|
||||
"PO-Revision-Date: 2022-06-15 20:28\n"
|
||||
|
||||
#: tabby-local/src/components/terminalTab.component.ts:113
|
||||
msgid "\"{command}\" is still running. Close?"
|
||||
@@ -21,12 +21,6 @@ msgstr "\"{command}\" est toujours en cours d'exécution. Fermer ?"
|
||||
msgid "{name} copy"
|
||||
msgstr "{name} - Copie"
|
||||
|
||||
#: locale/tmp-html/tabby-ssh/src/components/sftpPanel.component.html:13
|
||||
msgid "<strong translate=\"\">Working directory detection</strong>\n"
|
||||
"<div translate=\"\">Learn how to allow Tabby to detect remote shell's working directory.</div>"
|
||||
msgstr "<strong translate=\"\">Détection du répertoire de travail</strong>\n"
|
||||
"<div translate=\"\">Apprenez comment permettre à Tabby de détecter le répertoire de travail distant.</div>"
|
||||
|
||||
#: locale/tmp-html/tabby-terminal/src/components/appearanceSettingsTab.component.html:76
|
||||
msgid "A second font family used to display characters missing in the main font"
|
||||
msgstr "Une seconde famille de polices utilisable pour afficher les caractères absents de la police principale"
|
||||
@@ -97,7 +91,7 @@ msgstr "Type d'agent"
|
||||
|
||||
#: locale/tmp-html/tabby-terminal/src/components/terminalSettingsTab.component.html:163
|
||||
msgid "Allows opening .bat files in tabs, but breaks some shells"
|
||||
msgstr "Permet l'ouverture des fichiers .bat dans les onglets, mais casse certains shells"
|
||||
msgstr "Permet l'ouverture des fichiers .bat dans les onglets, mais brise certains terminaux"
|
||||
|
||||
#: locale/tmp-html/tabby-settings/src/components/settingsTab.component.html:60
|
||||
msgid "Allows quickly opening a terminal in the selected folder"
|
||||
@@ -230,7 +224,7 @@ msgstr "Intégré"
|
||||
#: tabby-settings/src/components/configSyncSettingsTab.component.ts:79
|
||||
#: tabby-settings/src/components/configSyncSettingsTab.component.ts:99
|
||||
#: tabby-ssh/src/sftpContextMenu.ts:40
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:458
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:459
|
||||
msgid "Cancel"
|
||||
msgstr "Annuler"
|
||||
|
||||
@@ -375,10 +369,10 @@ msgstr "Le nom de connexion sera utilisé à la place"
|
||||
msgid "Context menu"
|
||||
msgstr "Menu contextuel"
|
||||
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:201
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:209
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:549
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:753
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:202
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:210
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:550
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:754
|
||||
#: tabby-terminal/src/tabContextMenu.ts:29
|
||||
msgid "Copied"
|
||||
msgstr "Copié"
|
||||
@@ -855,8 +849,8 @@ msgid "Help track the number of Tabby installs across the world!"
|
||||
msgstr "Aidez à suivre le nombre d'installations de Tabby à travers le monde !"
|
||||
|
||||
#: locale/tmp-html/tabby-settings/src/components/settingsTab.component.html:50
|
||||
msgid "Help translate Tabby<i class=\"fas fa-external-link-square-alt ml-1\"></i>"
|
||||
msgstr "Aidez à traduire Tabby<i class=\"fas fa-external-link-square-alt ml-1\"></i>"
|
||||
msgid "Help translate Tabby"
|
||||
msgstr "Aidez à traduire Tabby"
|
||||
|
||||
#: tabby-terminal/src/components/streamProcessingSettings.component.ts:32
|
||||
#: tabby-terminal/src/components/streamProcessingSettings.component.ts:44
|
||||
@@ -1356,7 +1350,7 @@ msgid "Password"
|
||||
msgstr "Mot de passe"
|
||||
|
||||
#: locale/tmp-html/tabby-terminal/src/components/terminalSettingsTab.component.html:60
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:457
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:458
|
||||
#: tabby-terminal/src/tabContextMenu.ts:34
|
||||
msgid "Paste"
|
||||
msgstr "Coller"
|
||||
@@ -1365,7 +1359,7 @@ msgstr "Coller"
|
||||
msgid "Paste from clipboard"
|
||||
msgstr "Coller depuis le presse-papier"
|
||||
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:464
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:465
|
||||
msgid "Paste multiple lines?"
|
||||
msgstr "Coller plusieurs lignes ?"
|
||||
|
||||
@@ -1731,7 +1725,7 @@ msgstr "Paramètres"
|
||||
msgid "Shell"
|
||||
msgstr "Shell"
|
||||
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:551
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:552
|
||||
msgid "Shell does not support current path detection"
|
||||
msgstr "L'interpréteur de commandes ne prend pas en charge la détection du chemin courant"
|
||||
|
||||
@@ -1969,7 +1963,7 @@ msgstr "Largeur des onglets"
|
||||
msgid "Telnet session"
|
||||
msgstr "Session Telnet"
|
||||
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:190
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:191
|
||||
#: tabby-terminal/src/settings.ts:43
|
||||
msgid "Terminal"
|
||||
msgstr "Terminal"
|
||||
|
@@ -10,7 +10,7 @@ msgstr ""
|
||||
"Project-Id-Version: tabby\n"
|
||||
"Language-Team: Croatian\n"
|
||||
"Language: hr_HR\n"
|
||||
"PO-Revision-Date: 2022-05-17 06:36\n"
|
||||
"PO-Revision-Date: 2022-06-15 20:28\n"
|
||||
|
||||
#: tabby-local/src/components/terminalTab.component.ts:113
|
||||
msgid "\"{command}\" is still running. Close?"
|
||||
@@ -21,12 +21,6 @@ msgstr "„{command}” se još uvijek u izvodi. Zatvoriti?"
|
||||
msgid "{name} copy"
|
||||
msgstr "kopija {name}"
|
||||
|
||||
#: locale/tmp-html/tabby-ssh/src/components/sftpPanel.component.html:13
|
||||
msgid "<strong translate=\"\">Working directory detection</strong>\n"
|
||||
"<div translate=\"\">Learn how to allow Tabby to detect remote shell's working directory.</div>"
|
||||
msgstr "<strong translate=\"\">Otkrivanje radne mape</strong>\n"
|
||||
"<div translate=\"\">Saznaj kako dopustiti Tabby da otkrije radnu mapu udaljene ljuske.</div>"
|
||||
|
||||
#: locale/tmp-html/tabby-terminal/src/components/appearanceSettingsTab.component.html:76
|
||||
msgid "A second font family used to display characters missing in the main font"
|
||||
msgstr "Obitelj fontova za prikaz nedostajućih znakova u glavnom fontu"
|
||||
@@ -230,7 +224,7 @@ msgstr "Ugrađeno"
|
||||
#: tabby-settings/src/components/configSyncSettingsTab.component.ts:79
|
||||
#: tabby-settings/src/components/configSyncSettingsTab.component.ts:99
|
||||
#: tabby-ssh/src/sftpContextMenu.ts:40
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:458
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:459
|
||||
msgid "Cancel"
|
||||
msgstr "Odustani"
|
||||
|
||||
@@ -375,10 +369,10 @@ msgstr "Umjesto toga će se koristiti ime veze"
|
||||
msgid "Context menu"
|
||||
msgstr "Kontekstni izbornik"
|
||||
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:201
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:209
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:549
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:753
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:202
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:210
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:550
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:754
|
||||
#: tabby-terminal/src/tabContextMenu.ts:29
|
||||
msgid "Copied"
|
||||
msgstr "Kopirano"
|
||||
@@ -855,8 +849,8 @@ msgid "Help track the number of Tabby installs across the world!"
|
||||
msgstr "Pomogni pratiti broj Tabby instalacija diljem svijeta!"
|
||||
|
||||
#: locale/tmp-html/tabby-settings/src/components/settingsTab.component.html:50
|
||||
msgid "Help translate Tabby<i class=\"fas fa-external-link-square-alt ml-1\"></i>"
|
||||
msgstr "Pomogni prevesti Tabby<i class=\"fas fa-external-link-square-alt ml-1\"></i>"
|
||||
msgid "Help translate Tabby"
|
||||
msgstr "Pomogni prevoditi Tabby"
|
||||
|
||||
#: tabby-terminal/src/components/streamProcessingSettings.component.ts:32
|
||||
#: tabby-terminal/src/components/streamProcessingSettings.component.ts:44
|
||||
@@ -1356,7 +1350,7 @@ msgid "Password"
|
||||
msgstr "Lozinka"
|
||||
|
||||
#: locale/tmp-html/tabby-terminal/src/components/terminalSettingsTab.component.html:60
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:457
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:458
|
||||
#: tabby-terminal/src/tabContextMenu.ts:34
|
||||
msgid "Paste"
|
||||
msgstr "Umetni"
|
||||
@@ -1365,7 +1359,7 @@ msgstr "Umetni"
|
||||
msgid "Paste from clipboard"
|
||||
msgstr "Umetni iz međuspremnika"
|
||||
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:464
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:465
|
||||
msgid "Paste multiple lines?"
|
||||
msgstr "Umetnuti višestruke retke?"
|
||||
|
||||
@@ -1731,7 +1725,7 @@ msgstr "Postavke"
|
||||
msgid "Shell"
|
||||
msgstr "Ljuska"
|
||||
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:551
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:552
|
||||
msgid "Shell does not support current path detection"
|
||||
msgstr "Ljuska ne podržava trenutačno otkrivanje staze"
|
||||
|
||||
@@ -1969,7 +1963,7 @@ msgstr "Širina kartica"
|
||||
msgid "Telnet session"
|
||||
msgstr "Telnet sesija"
|
||||
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:190
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:191
|
||||
#: tabby-terminal/src/settings.ts:43
|
||||
msgid "Terminal"
|
||||
msgstr "Terminal"
|
||||
|
2267
locale/id-ID.po
Normal file
2267
locale/id-ID.po
Normal file
File diff suppressed because it is too large
Load Diff
@@ -10,7 +10,7 @@ msgstr ""
|
||||
"Project-Id-Version: tabby\n"
|
||||
"Language-Team: Italian\n"
|
||||
"Language: it_IT\n"
|
||||
"PO-Revision-Date: 2022-05-17 06:35\n"
|
||||
"PO-Revision-Date: 2022-06-15 20:28\n"
|
||||
|
||||
#: tabby-local/src/components/terminalTab.component.ts:113
|
||||
msgid "\"{command}\" is still running. Close?"
|
||||
@@ -21,12 +21,6 @@ msgstr "\"{command}\" è ancora in esecuzione. Chiudere?"
|
||||
msgid "{name} copy"
|
||||
msgstr "{name} copia"
|
||||
|
||||
#: locale/tmp-html/tabby-ssh/src/components/sftpPanel.component.html:13
|
||||
msgid "<strong translate=\"\">Working directory detection</strong>\n"
|
||||
"<div translate=\"\">Learn how to allow Tabby to detect remote shell's working directory.</div>"
|
||||
msgstr "<strong translate=\"\">Rilevamento directory di lavoro</strong>\n"
|
||||
"<div translate=\"\">Scopri come consentire a Tabby di rilevare la directory di lavoro della shell remota.</div>"
|
||||
|
||||
#: locale/tmp-html/tabby-terminal/src/components/appearanceSettingsTab.component.html:76
|
||||
msgid "A second font family used to display characters missing in the main font"
|
||||
msgstr "Un set di caratteri secondario usato per mostrare quelli mancanti nel principale"
|
||||
@@ -230,7 +224,7 @@ msgstr "Integrato"
|
||||
#: tabby-settings/src/components/configSyncSettingsTab.component.ts:79
|
||||
#: tabby-settings/src/components/configSyncSettingsTab.component.ts:99
|
||||
#: tabby-ssh/src/sftpContextMenu.ts:40
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:458
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:459
|
||||
msgid "Cancel"
|
||||
msgstr "Annulla"
|
||||
|
||||
@@ -375,10 +369,10 @@ msgstr "Verrà usato il nome della connessione"
|
||||
msgid "Context menu"
|
||||
msgstr "Menu contestuale"
|
||||
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:201
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:209
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:549
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:753
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:202
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:210
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:550
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:754
|
||||
#: tabby-terminal/src/tabContextMenu.ts:29
|
||||
msgid "Copied"
|
||||
msgstr "Copiato"
|
||||
@@ -855,8 +849,8 @@ msgid "Help track the number of Tabby installs across the world!"
|
||||
msgstr "Aiuta a tenere traccia del numero di installazioni di Tabby nel mondo!"
|
||||
|
||||
#: locale/tmp-html/tabby-settings/src/components/settingsTab.component.html:50
|
||||
msgid "Help translate Tabby<i class=\"fas fa-external-link-square-alt ml-1\"></i>"
|
||||
msgstr "Aiuta a tradurre Tabby<i class=\"fas fa-external-link-square-alt ml-1\"></i>"
|
||||
msgid "Help translate Tabby"
|
||||
msgstr "Partecipa alla traduzione di Tabby"
|
||||
|
||||
#: tabby-terminal/src/components/streamProcessingSettings.component.ts:32
|
||||
#: tabby-terminal/src/components/streamProcessingSettings.component.ts:44
|
||||
@@ -1356,7 +1350,7 @@ msgid "Password"
|
||||
msgstr "Password"
|
||||
|
||||
#: locale/tmp-html/tabby-terminal/src/components/terminalSettingsTab.component.html:60
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:457
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:458
|
||||
#: tabby-terminal/src/tabContextMenu.ts:34
|
||||
msgid "Paste"
|
||||
msgstr "Incolla"
|
||||
@@ -1365,7 +1359,7 @@ msgstr "Incolla"
|
||||
msgid "Paste from clipboard"
|
||||
msgstr "Incolla dagli appunti"
|
||||
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:464
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:465
|
||||
msgid "Paste multiple lines?"
|
||||
msgstr "Incollare righe multiple?"
|
||||
|
||||
@@ -1731,7 +1725,7 @@ msgstr "Impostazioni"
|
||||
msgid "Shell"
|
||||
msgstr "Shell"
|
||||
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:551
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:552
|
||||
msgid "Shell does not support current path detection"
|
||||
msgstr "La shell non supporta il rilevamento del percorso corrente"
|
||||
|
||||
@@ -1969,7 +1963,7 @@ msgstr "Larghezza schede"
|
||||
msgid "Telnet session"
|
||||
msgstr "Sessione Telnet"
|
||||
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:190
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:191
|
||||
#: tabby-terminal/src/settings.ts:43
|
||||
msgid "Terminal"
|
||||
msgstr "Terminale"
|
||||
|
@@ -10,7 +10,7 @@ msgstr ""
|
||||
"Project-Id-Version: tabby\n"
|
||||
"Language-Team: Japanese\n"
|
||||
"Language: ja_JP\n"
|
||||
"PO-Revision-Date: 2022-05-17 06:35\n"
|
||||
"PO-Revision-Date: 2022-06-15 20:28\n"
|
||||
|
||||
#: tabby-local/src/components/terminalTab.component.ts:113
|
||||
msgid "\"{command}\" is still running. Close?"
|
||||
@@ -21,12 +21,6 @@ msgstr "\"{command}\"が実行中です。閉じますか?"
|
||||
msgid "{name} copy"
|
||||
msgstr "{name} コピー"
|
||||
|
||||
#: locale/tmp-html/tabby-ssh/src/components/sftpPanel.component.html:13
|
||||
msgid "<strong translate=\"\">Working directory detection</strong>\n"
|
||||
"<div translate=\"\">Learn how to allow Tabby to detect remote shell's working directory.</div>"
|
||||
msgstr "<strong translate=\"\">作業ディレクトリの検出</strong>\n"
|
||||
"<div translate=\"\">Tabbyにリモート側の作業ディレクトリを検出させる方法をご紹介します。</div>"
|
||||
|
||||
#: locale/tmp-html/tabby-terminal/src/components/appearanceSettingsTab.component.html:76
|
||||
msgid "A second font family used to display characters missing in the main font"
|
||||
msgstr "既定フォントに不足してる文字を補う代替フォント"
|
||||
@@ -230,7 +224,7 @@ msgstr "組込み"
|
||||
#: tabby-settings/src/components/configSyncSettingsTab.component.ts:79
|
||||
#: tabby-settings/src/components/configSyncSettingsTab.component.ts:99
|
||||
#: tabby-ssh/src/sftpContextMenu.ts:40
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:458
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:459
|
||||
msgid "Cancel"
|
||||
msgstr "キャンセル"
|
||||
|
||||
@@ -375,10 +369,10 @@ msgstr "代わりに接続名が使用されます"
|
||||
msgid "Context menu"
|
||||
msgstr "コンテキストメニュー"
|
||||
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:201
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:209
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:549
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:753
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:202
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:210
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:550
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:754
|
||||
#: tabby-terminal/src/tabContextMenu.ts:29
|
||||
msgid "Copied"
|
||||
msgstr "コピーしました"
|
||||
@@ -620,7 +614,7 @@ msgstr "ダウンロード"
|
||||
|
||||
#: locale/tmp-html/tabby-terminal/src/components/terminalSettingsTab.component.html:23
|
||||
msgid "Draw bold text in bright colors"
|
||||
msgstr "太字を明瞭な色で表示"
|
||||
msgstr "太字のテキストを明るい色で表示"
|
||||
|
||||
#: tabby-core/src/tabContextMenu.ts:120
|
||||
msgid "Duplicate"
|
||||
@@ -855,8 +849,8 @@ msgid "Help track the number of Tabby installs across the world!"
|
||||
msgstr "世界中でのTabbyのインストール数の調査にご協力ください!"
|
||||
|
||||
#: locale/tmp-html/tabby-settings/src/components/settingsTab.component.html:50
|
||||
msgid "Help translate Tabby<i class=\"fas fa-external-link-square-alt ml-1\"></i>"
|
||||
msgstr "Tabby<i class=\"fas fa-external-link-square-alt ml-1\"></i>の翻訳に協力する"
|
||||
msgid "Help translate Tabby"
|
||||
msgstr "Tabbyの翻訳に参加する"
|
||||
|
||||
#: tabby-terminal/src/components/streamProcessingSettings.component.ts:32
|
||||
#: tabby-terminal/src/components/streamProcessingSettings.component.ts:44
|
||||
@@ -939,7 +933,7 @@ msgstr "垂直方向の分割サイズを拡大"
|
||||
|
||||
#: tabby-terminal/src/components/streamProcessingSettings.component.ts:18
|
||||
msgid "Input is sent as you type"
|
||||
msgstr "入力データは入力中に送信されます"
|
||||
msgstr "入力する度に入力が送信されます"
|
||||
|
||||
#: locale/tmp-html/tabby-terminal/src/components/streamProcessingSettings.component.html:4
|
||||
msgid "Input mode"
|
||||
@@ -1356,7 +1350,7 @@ msgid "Password"
|
||||
msgstr "パスワード"
|
||||
|
||||
#: locale/tmp-html/tabby-terminal/src/components/terminalSettingsTab.component.html:60
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:457
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:458
|
||||
#: tabby-terminal/src/tabContextMenu.ts:34
|
||||
msgid "Paste"
|
||||
msgstr "貼り付け"
|
||||
@@ -1365,7 +1359,7 @@ msgstr "貼り付け"
|
||||
msgid "Paste from clipboard"
|
||||
msgstr "クリップボードから貼り付け"
|
||||
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:464
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:465
|
||||
msgid "Paste multiple lines?"
|
||||
msgstr "複数行の貼り付けを行いますか?"
|
||||
|
||||
@@ -1731,7 +1725,7 @@ msgstr "設定"
|
||||
msgid "Shell"
|
||||
msgstr "シェル"
|
||||
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:551
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:552
|
||||
msgid "Shell does not support current path detection"
|
||||
msgstr "シェルは現在のパス検出に対応していません"
|
||||
|
||||
@@ -1969,7 +1963,7 @@ msgstr "タブの幅"
|
||||
msgid "Telnet session"
|
||||
msgstr "Telnetセッション"
|
||||
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:190
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:191
|
||||
#: tabby-terminal/src/settings.ts:43
|
||||
msgid "Terminal"
|
||||
msgstr "端末"
|
||||
|
@@ -10,7 +10,7 @@ msgstr ""
|
||||
"Project-Id-Version: tabby\n"
|
||||
"Language-Team: Korean\n"
|
||||
"Language: ko_KR\n"
|
||||
"PO-Revision-Date: 2022-04-30 18:35\n"
|
||||
"PO-Revision-Date: 2022-06-15 20:28\n"
|
||||
|
||||
#: tabby-local/src/components/terminalTab.component.ts:113
|
||||
msgid "\"{command}\" is still running. Close?"
|
||||
@@ -21,11 +21,6 @@ msgstr "\"{command}\" 명령어가 여전히 동작중입니다. 닫을까요?"
|
||||
msgid "{name} copy"
|
||||
msgstr "{name} 복사"
|
||||
|
||||
#: locale/tmp-html/tabby-ssh/src/components/sftpPanel.component.html:13
|
||||
msgid "<strong translate=\"\">Working directory detection</strong>\n"
|
||||
"<div translate=\"\">Learn how to allow Tabby to detect remote shell's working directory.</div>"
|
||||
msgstr ""
|
||||
|
||||
#: locale/tmp-html/tabby-terminal/src/components/appearanceSettingsTab.component.html:76
|
||||
msgid "A second font family used to display characters missing in the main font"
|
||||
msgstr "메인 글꼴에서 누락된 문자를 표시하기 위해 사용하는 2번째 글꼴"
|
||||
@@ -229,7 +224,7 @@ msgstr "빌트인"
|
||||
#: tabby-settings/src/components/configSyncSettingsTab.component.ts:79
|
||||
#: tabby-settings/src/components/configSyncSettingsTab.component.ts:99
|
||||
#: tabby-ssh/src/sftpContextMenu.ts:40
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:458
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:459
|
||||
msgid "Cancel"
|
||||
msgstr "취소"
|
||||
|
||||
@@ -374,10 +369,10 @@ msgstr "연결 이름이 대신 사용됩니다."
|
||||
msgid "Context menu"
|
||||
msgstr "컨텍스트 메뉴"
|
||||
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:201
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:209
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:549
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:753
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:202
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:210
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:550
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:754
|
||||
#: tabby-terminal/src/tabContextMenu.ts:29
|
||||
msgid "Copied"
|
||||
msgstr "복사됨"
|
||||
@@ -854,7 +849,7 @@ msgid "Help track the number of Tabby installs across the world!"
|
||||
msgstr "전 세계적으로 Tabby 가 설치되어 어떻게 사용하는지 추적을 도와주세요!"
|
||||
|
||||
#: locale/tmp-html/tabby-settings/src/components/settingsTab.component.html:50
|
||||
msgid "Help translate Tabby<i class=\"fas fa-external-link-square-alt ml-1\"></i>"
|
||||
msgid "Help translate Tabby"
|
||||
msgstr ""
|
||||
|
||||
#: tabby-terminal/src/components/streamProcessingSettings.component.ts:32
|
||||
@@ -1355,7 +1350,7 @@ msgid "Password"
|
||||
msgstr "비밀번호"
|
||||
|
||||
#: locale/tmp-html/tabby-terminal/src/components/terminalSettingsTab.component.html:60
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:457
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:458
|
||||
#: tabby-terminal/src/tabContextMenu.ts:34
|
||||
msgid "Paste"
|
||||
msgstr "붙여넣기"
|
||||
@@ -1364,7 +1359,7 @@ msgstr "붙여넣기"
|
||||
msgid "Paste from clipboard"
|
||||
msgstr "클립보드에서 붙여넣기"
|
||||
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:464
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:465
|
||||
msgid "Paste multiple lines?"
|
||||
msgstr ""
|
||||
|
||||
@@ -1730,7 +1725,7 @@ msgstr "설정"
|
||||
msgid "Shell"
|
||||
msgstr "셸"
|
||||
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:551
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:552
|
||||
msgid "Shell does not support current path detection"
|
||||
msgstr ""
|
||||
|
||||
@@ -1968,7 +1963,7 @@ msgstr "탭 너비"
|
||||
msgid "Telnet session"
|
||||
msgstr "텔넷 세션"
|
||||
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:190
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:191
|
||||
#: tabby-terminal/src/settings.ts:43
|
||||
msgid "Terminal"
|
||||
msgstr "터미널"
|
||||
|
@@ -10,7 +10,7 @@ msgstr ""
|
||||
"Project-Id-Version: tabby\n"
|
||||
"Language-Team: Polish\n"
|
||||
"Language: pl_PL\n"
|
||||
"PO-Revision-Date: 2022-04-30 18:35\n"
|
||||
"PO-Revision-Date: 2022-06-15 20:28\n"
|
||||
|
||||
#: tabby-local/src/components/terminalTab.component.ts:113
|
||||
msgid "\"{command}\" is still running. Close?"
|
||||
@@ -21,11 +21,6 @@ msgstr "\"{command}\" jest nadal uruchomiony. Zamknąć?"
|
||||
msgid "{name} copy"
|
||||
msgstr "kopia {name}"
|
||||
|
||||
#: locale/tmp-html/tabby-ssh/src/components/sftpPanel.component.html:13
|
||||
msgid "<strong translate=\"\">Working directory detection</strong>\n"
|
||||
"<div translate=\"\">Learn how to allow Tabby to detect remote shell's working directory.</div>"
|
||||
msgstr ""
|
||||
|
||||
#: locale/tmp-html/tabby-terminal/src/components/appearanceSettingsTab.component.html:76
|
||||
msgid "A second font family used to display characters missing in the main font"
|
||||
msgstr "Druga rodzina czcionek używana do wyświetlania znaków, których brakuje w głównej czcionce"
|
||||
@@ -229,7 +224,7 @@ msgstr "Wbudowane"
|
||||
#: tabby-settings/src/components/configSyncSettingsTab.component.ts:79
|
||||
#: tabby-settings/src/components/configSyncSettingsTab.component.ts:99
|
||||
#: tabby-ssh/src/sftpContextMenu.ts:40
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:458
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:459
|
||||
msgid "Cancel"
|
||||
msgstr "Anuluj"
|
||||
|
||||
@@ -374,10 +369,10 @@ msgstr "Zamiast tego użyta zostanie nazwa połączenia"
|
||||
msgid "Context menu"
|
||||
msgstr "Menu kontekstowe"
|
||||
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:201
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:209
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:549
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:753
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:202
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:210
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:550
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:754
|
||||
#: tabby-terminal/src/tabContextMenu.ts:29
|
||||
msgid "Copied"
|
||||
msgstr "Skopiowano"
|
||||
@@ -854,7 +849,7 @@ msgid "Help track the number of Tabby installs across the world!"
|
||||
msgstr "Pomóż śledzić liczbę instalacji Tabby na całym świecie!"
|
||||
|
||||
#: locale/tmp-html/tabby-settings/src/components/settingsTab.component.html:50
|
||||
msgid "Help translate Tabby<i class=\"fas fa-external-link-square-alt ml-1\"></i>"
|
||||
msgid "Help translate Tabby"
|
||||
msgstr ""
|
||||
|
||||
#: tabby-terminal/src/components/streamProcessingSettings.component.ts:32
|
||||
@@ -1355,7 +1350,7 @@ msgid "Password"
|
||||
msgstr "Hasło"
|
||||
|
||||
#: locale/tmp-html/tabby-terminal/src/components/terminalSettingsTab.component.html:60
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:457
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:458
|
||||
#: tabby-terminal/src/tabContextMenu.ts:34
|
||||
msgid "Paste"
|
||||
msgstr "Wklej"
|
||||
@@ -1364,7 +1359,7 @@ msgstr "Wklej"
|
||||
msgid "Paste from clipboard"
|
||||
msgstr "Wklej ze schowka"
|
||||
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:464
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:465
|
||||
msgid "Paste multiple lines?"
|
||||
msgstr "Wkleić wiele linii?"
|
||||
|
||||
@@ -1730,7 +1725,7 @@ msgstr "Ustawienia"
|
||||
msgid "Shell"
|
||||
msgstr "Powłoka"
|
||||
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:551
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:552
|
||||
msgid "Shell does not support current path detection"
|
||||
msgstr "Powłoka nie obsługuje wykrywania bieżącej ścieżki"
|
||||
|
||||
@@ -1968,7 +1963,7 @@ msgstr "Szerokość karty"
|
||||
msgid "Telnet session"
|
||||
msgstr "Sesja Telnet"
|
||||
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:190
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:191
|
||||
#: tabby-terminal/src/settings.ts:43
|
||||
msgid "Terminal"
|
||||
msgstr "Terminal"
|
||||
|
@@ -10,7 +10,7 @@ msgstr ""
|
||||
"Project-Id-Version: tabby\n"
|
||||
"Language-Team: Portuguese, Brazilian\n"
|
||||
"Language: pt_BR\n"
|
||||
"PO-Revision-Date: 2022-05-17 06:35\n"
|
||||
"PO-Revision-Date: 2022-06-15 20:28\n"
|
||||
|
||||
#: tabby-local/src/components/terminalTab.component.ts:113
|
||||
msgid "\"{command}\" is still running. Close?"
|
||||
@@ -21,12 +21,6 @@ msgstr "\"{command}\" ainda está em execução. Fechar?"
|
||||
msgid "{name} copy"
|
||||
msgstr "{name} Copiar"
|
||||
|
||||
#: locale/tmp-html/tabby-ssh/src/components/sftpPanel.component.html:13
|
||||
msgid "<strong translate=\"\">Working directory detection</strong>\n"
|
||||
"<div translate=\"\">Learn how to allow Tabby to detect remote shell's working directory.</div>"
|
||||
msgstr "<strong translate=\"\">Detecção do diretório de trabalho</strong>\n"
|
||||
"<div translate=\"\">Aprenda como habilitar o Tabby a detectar shell's de diretórios de trabalho remoto.</div>"
|
||||
|
||||
#: locale/tmp-html/tabby-terminal/src/components/appearanceSettingsTab.component.html:76
|
||||
msgid "A second font family used to display characters missing in the main font"
|
||||
msgstr "Uma segunda família de fontes usada para exibir caracteres faltando na fonte principal"
|
||||
@@ -230,7 +224,7 @@ msgstr "Embutido"
|
||||
#: tabby-settings/src/components/configSyncSettingsTab.component.ts:79
|
||||
#: tabby-settings/src/components/configSyncSettingsTab.component.ts:99
|
||||
#: tabby-ssh/src/sftpContextMenu.ts:40
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:458
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:459
|
||||
msgid "Cancel"
|
||||
msgstr "Cancelar"
|
||||
|
||||
@@ -375,10 +369,10 @@ msgstr "O nome da conexão será usado no lugar"
|
||||
msgid "Context menu"
|
||||
msgstr "Menu de contexto"
|
||||
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:201
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:209
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:549
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:753
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:202
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:210
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:550
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:754
|
||||
#: tabby-terminal/src/tabContextMenu.ts:29
|
||||
msgid "Copied"
|
||||
msgstr "Copiado"
|
||||
@@ -855,8 +849,8 @@ msgid "Help track the number of Tabby installs across the world!"
|
||||
msgstr "Ajude a acompanhar o número de instalações do Tabby pelo mundo!"
|
||||
|
||||
#: locale/tmp-html/tabby-settings/src/components/settingsTab.component.html:50
|
||||
msgid "Help translate Tabby<i class=\"fas fa-external-link-square-alt ml-1\"></i>"
|
||||
msgstr "Ajude a traduzir o Tabby<i class=\"fas fa-external-link-square-alt ml-1\"></i>"
|
||||
msgid "Help translate Tabby"
|
||||
msgstr "Ajude a traduzir o tabby"
|
||||
|
||||
#: tabby-terminal/src/components/streamProcessingSettings.component.ts:32
|
||||
#: tabby-terminal/src/components/streamProcessingSettings.component.ts:44
|
||||
@@ -1356,7 +1350,7 @@ msgid "Password"
|
||||
msgstr "Senha"
|
||||
|
||||
#: locale/tmp-html/tabby-terminal/src/components/terminalSettingsTab.component.html:60
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:457
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:458
|
||||
#: tabby-terminal/src/tabContextMenu.ts:34
|
||||
msgid "Paste"
|
||||
msgstr "Colar"
|
||||
@@ -1365,7 +1359,7 @@ msgstr "Colar"
|
||||
msgid "Paste from clipboard"
|
||||
msgstr "Colar da área de transferência"
|
||||
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:464
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:465
|
||||
msgid "Paste multiple lines?"
|
||||
msgstr "Colar várias linhas?"
|
||||
|
||||
@@ -1731,7 +1725,7 @@ msgstr "Configurações"
|
||||
msgid "Shell"
|
||||
msgstr "Shell"
|
||||
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:551
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:552
|
||||
msgid "Shell does not support current path detection"
|
||||
msgstr "Shell não suporta a detecção de caminho atual"
|
||||
|
||||
@@ -1969,7 +1963,7 @@ msgstr "Largura da aba"
|
||||
msgid "Telnet session"
|
||||
msgstr "Sessão telefônica"
|
||||
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:190
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:191
|
||||
#: tabby-terminal/src/settings.ts:43
|
||||
msgid "Terminal"
|
||||
msgstr "Terminal"
|
||||
|
@@ -10,7 +10,7 @@ msgstr ""
|
||||
"Project-Id-Version: tabby\n"
|
||||
"Language-Team: Portuguese\n"
|
||||
"Language: pt_PT\n"
|
||||
"PO-Revision-Date: 2022-04-30 18:35\n"
|
||||
"PO-Revision-Date: 2022-06-15 20:28\n"
|
||||
|
||||
#: tabby-local/src/components/terminalTab.component.ts:113
|
||||
msgid "\"{command}\" is still running. Close?"
|
||||
@@ -21,11 +21,6 @@ msgstr "\"{command}\" ainda está em execução. Fechar?"
|
||||
msgid "{name} copy"
|
||||
msgstr "{name} cópia"
|
||||
|
||||
#: locale/tmp-html/tabby-ssh/src/components/sftpPanel.component.html:13
|
||||
msgid "<strong translate=\"\">Working directory detection</strong>\n"
|
||||
"<div translate=\"\">Learn how to allow Tabby to detect remote shell's working directory.</div>"
|
||||
msgstr ""
|
||||
|
||||
#: locale/tmp-html/tabby-terminal/src/components/appearanceSettingsTab.component.html:76
|
||||
msgid "A second font family used to display characters missing in the main font"
|
||||
msgstr ""
|
||||
@@ -229,7 +224,7 @@ msgstr "Embutido"
|
||||
#: tabby-settings/src/components/configSyncSettingsTab.component.ts:79
|
||||
#: tabby-settings/src/components/configSyncSettingsTab.component.ts:99
|
||||
#: tabby-ssh/src/sftpContextMenu.ts:40
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:458
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:459
|
||||
msgid "Cancel"
|
||||
msgstr "Cancelar"
|
||||
|
||||
@@ -374,10 +369,10 @@ msgstr ""
|
||||
msgid "Context menu"
|
||||
msgstr "Menu de contexto"
|
||||
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:201
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:209
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:549
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:753
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:202
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:210
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:550
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:754
|
||||
#: tabby-terminal/src/tabContextMenu.ts:29
|
||||
msgid "Copied"
|
||||
msgstr "Copiado"
|
||||
@@ -854,7 +849,7 @@ msgid "Help track the number of Tabby installs across the world!"
|
||||
msgstr "Ajude a seguir o número de instalações do Tabby pelo mundo!"
|
||||
|
||||
#: locale/tmp-html/tabby-settings/src/components/settingsTab.component.html:50
|
||||
msgid "Help translate Tabby<i class=\"fas fa-external-link-square-alt ml-1\"></i>"
|
||||
msgid "Help translate Tabby"
|
||||
msgstr ""
|
||||
|
||||
#: tabby-terminal/src/components/streamProcessingSettings.component.ts:32
|
||||
@@ -1355,7 +1350,7 @@ msgid "Password"
|
||||
msgstr "Palavra-Passe"
|
||||
|
||||
#: locale/tmp-html/tabby-terminal/src/components/terminalSettingsTab.component.html:60
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:457
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:458
|
||||
#: tabby-terminal/src/tabContextMenu.ts:34
|
||||
msgid "Paste"
|
||||
msgstr "Colar"
|
||||
@@ -1364,7 +1359,7 @@ msgstr "Colar"
|
||||
msgid "Paste from clipboard"
|
||||
msgstr "Colar da área de transferência"
|
||||
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:464
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:465
|
||||
msgid "Paste multiple lines?"
|
||||
msgstr "Colar várias linhas?"
|
||||
|
||||
@@ -1730,7 +1725,7 @@ msgstr "Configurações"
|
||||
msgid "Shell"
|
||||
msgstr "Linha de Comando"
|
||||
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:551
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:552
|
||||
msgid "Shell does not support current path detection"
|
||||
msgstr "A linha de comandos não suporta a deteção do caminho atual"
|
||||
|
||||
@@ -1968,7 +1963,7 @@ msgstr "Largura do separador"
|
||||
msgid "Telnet session"
|
||||
msgstr "Sessão telnet"
|
||||
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:190
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:191
|
||||
#: tabby-terminal/src/settings.ts:43
|
||||
msgid "Terminal"
|
||||
msgstr "Terminal"
|
||||
|
@@ -10,7 +10,7 @@ msgstr ""
|
||||
"Project-Id-Version: tabby\n"
|
||||
"Language-Team: Russian\n"
|
||||
"Language: ru_RU\n"
|
||||
"PO-Revision-Date: 2022-04-30 18:35\n"
|
||||
"PO-Revision-Date: 2022-06-15 20:28\n"
|
||||
|
||||
#: tabby-local/src/components/terminalTab.component.ts:113
|
||||
msgid "\"{command}\" is still running. Close?"
|
||||
@@ -21,11 +21,6 @@ msgstr "\"{command}\" всё ещё выполняется. Закрыть?"
|
||||
msgid "{name} copy"
|
||||
msgstr "Копия {name}"
|
||||
|
||||
#: locale/tmp-html/tabby-ssh/src/components/sftpPanel.component.html:13
|
||||
msgid "<strong translate=\"\">Working directory detection</strong>\n"
|
||||
"<div translate=\"\">Learn how to allow Tabby to detect remote shell's working directory.</div>"
|
||||
msgstr ""
|
||||
|
||||
#: locale/tmp-html/tabby-terminal/src/components/appearanceSettingsTab.component.html:76
|
||||
msgid "A second font family used to display characters missing in the main font"
|
||||
msgstr "Семейство шрифтов, используемое для отображения символов, отсутствующих в основном шрифте"
|
||||
@@ -44,7 +39,7 @@ msgstr "Принять только один раз"
|
||||
|
||||
#: locale/tmp-html/tabby-settings/src/components/settingsTab.component.html:84
|
||||
msgid "Accessibility"
|
||||
msgstr ""
|
||||
msgstr "Специальные возможности"
|
||||
|
||||
#: locale/tmp-html/tabby-settings/src/components/windowSettingsTab.component.html:20
|
||||
msgid "Acrylic background"
|
||||
@@ -201,7 +196,7 @@ msgstr "Размытие"
|
||||
|
||||
#: locale/tmp-html/tabby-terminal/src/components/appearanceSettingsTab.component.html:28
|
||||
msgid "Bold font weight"
|
||||
msgstr ""
|
||||
msgstr "Вес полужирного шрифта"
|
||||
|
||||
#: locale/tmp-html/tabby-settings/src/components/windowSettingsTab.component.html:138
|
||||
#: locale/tmp-html/tabby-settings/src/components/windowSettingsTab.component.html:82
|
||||
@@ -229,7 +224,7 @@ msgstr "Встроенные"
|
||||
#: tabby-settings/src/components/configSyncSettingsTab.component.ts:79
|
||||
#: tabby-settings/src/components/configSyncSettingsTab.component.ts:99
|
||||
#: tabby-ssh/src/sftpContextMenu.ts:40
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:458
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:459
|
||||
msgid "Cancel"
|
||||
msgstr "Отмена"
|
||||
|
||||
@@ -374,10 +369,10 @@ msgstr "Вместо этого будет использоваться имя
|
||||
msgid "Context menu"
|
||||
msgstr "Контекстное меню"
|
||||
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:201
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:209
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:549
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:753
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:202
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:210
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:550
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:754
|
||||
#: tabby-terminal/src/tabContextMenu.ts:29
|
||||
msgid "Copied"
|
||||
msgstr "Скопировано"
|
||||
@@ -502,7 +497,7 @@ msgstr "Удалить {fullPath}?"
|
||||
|
||||
#: tabby-terminal/src/hotkeys.ts:38
|
||||
msgid "Delete entire line"
|
||||
msgstr ""
|
||||
msgstr "Удалить всю строку"
|
||||
|
||||
#: tabby-terminal/src/hotkeys.ts:42
|
||||
msgid "Delete next word"
|
||||
@@ -619,7 +614,7 @@ msgstr "Скачать"
|
||||
|
||||
#: locale/tmp-html/tabby-terminal/src/components/terminalSettingsTab.component.html:23
|
||||
msgid "Draw bold text in bright colors"
|
||||
msgstr ""
|
||||
msgstr "Выделять полужирный текст ярким цветом"
|
||||
|
||||
#: tabby-core/src/tabContextMenu.ts:120
|
||||
msgid "Duplicate"
|
||||
@@ -648,7 +643,7 @@ msgstr "Включить аналитику"
|
||||
|
||||
#: locale/tmp-html/tabby-settings/src/components/settingsTab.component.html:87
|
||||
msgid "Enable animations"
|
||||
msgstr ""
|
||||
msgstr "Включить анимацию"
|
||||
|
||||
#: locale/tmp-html/tabby-settings/src/components/settingsTab.component.html:74
|
||||
msgid "Enable automatic installation of updates when they become available."
|
||||
@@ -717,7 +712,7 @@ msgstr "Файл: {description}"
|
||||
|
||||
#: tabby-settings/src/components/profilesSettingsTab.component.ts:17
|
||||
msgid "Filter"
|
||||
msgstr ""
|
||||
msgstr "Фильтр"
|
||||
|
||||
#: locale/tmp-html/tabby-settings/src/components/windowSettingsTab.component.html:157
|
||||
msgid "Fixed"
|
||||
@@ -854,8 +849,8 @@ msgid "Help track the number of Tabby installs across the world!"
|
||||
msgstr "Помогите отслеживать количество установок Tabby по всему миру!"
|
||||
|
||||
#: locale/tmp-html/tabby-settings/src/components/settingsTab.component.html:50
|
||||
msgid "Help translate Tabby<i class=\"fas fa-external-link-square-alt ml-1\"></i>"
|
||||
msgstr ""
|
||||
msgid "Help translate Tabby"
|
||||
msgstr "Помогите с переводом Tabby"
|
||||
|
||||
#: tabby-terminal/src/components/streamProcessingSettings.component.ts:32
|
||||
#: tabby-terminal/src/components/streamProcessingSettings.component.ts:44
|
||||
@@ -1186,7 +1181,7 @@ msgstr "Новое окно"
|
||||
|
||||
#: tabby-local/src/services/dockMenu.service.ts:62
|
||||
msgid "New Window"
|
||||
msgstr ""
|
||||
msgstr "Новое окно"
|
||||
|
||||
#: tabby-local/src/tabContextMenu.ts:87
|
||||
msgid "New with profile"
|
||||
@@ -1215,7 +1210,7 @@ msgstr "Нормальный"
|
||||
|
||||
#: locale/tmp-html/tabby-terminal/src/components/appearanceSettingsTab.component.html:22
|
||||
msgid "Normal font weight"
|
||||
msgstr ""
|
||||
msgstr "Вес обычного шрифта"
|
||||
|
||||
#: tabby-terminal/src/components/searchPanel.component.ts:47
|
||||
#: tabby-terminal/src/components/searchPanel.component.ts:57
|
||||
@@ -1355,7 +1350,7 @@ msgid "Password"
|
||||
msgstr "Пароль"
|
||||
|
||||
#: locale/tmp-html/tabby-terminal/src/components/terminalSettingsTab.component.html:60
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:457
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:458
|
||||
#: tabby-terminal/src/tabContextMenu.ts:34
|
||||
msgid "Paste"
|
||||
msgstr "Вставить"
|
||||
@@ -1364,7 +1359,7 @@ msgstr "Вставить"
|
||||
msgid "Paste from clipboard"
|
||||
msgstr "Вставить из буфера обмена"
|
||||
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:464
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:465
|
||||
msgid "Paste multiple lines?"
|
||||
msgstr "Вставить несколько строк?"
|
||||
|
||||
@@ -1730,7 +1725,7 @@ msgstr "Настройки"
|
||||
msgid "Shell"
|
||||
msgstr "Shell"
|
||||
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:551
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:552
|
||||
msgid "Shell does not support current path detection"
|
||||
msgstr "Shell не поддерживает обнаружение текущего пути"
|
||||
|
||||
@@ -1968,7 +1963,7 @@ msgstr "Ширина вкладки"
|
||||
msgid "Telnet session"
|
||||
msgstr "Telnet сессия"
|
||||
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:190
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:191
|
||||
#: tabby-terminal/src/settings.ts:43
|
||||
msgid "Terminal"
|
||||
msgstr "Терминал"
|
||||
|
@@ -10,7 +10,7 @@ msgstr ""
|
||||
"Project-Id-Version: tabby\n"
|
||||
"Language-Team: Ukrainian\n"
|
||||
"Language: uk_UA\n"
|
||||
"PO-Revision-Date: 2022-05-17 06:35\n"
|
||||
"PO-Revision-Date: 2022-06-15 20:28\n"
|
||||
|
||||
#: tabby-local/src/components/terminalTab.component.ts:113
|
||||
msgid "\"{command}\" is still running. Close?"
|
||||
@@ -21,12 +21,6 @@ msgstr "\"{command}\" все ще запущено. Закрити?"
|
||||
msgid "{name} copy"
|
||||
msgstr "{name} копія"
|
||||
|
||||
#: locale/tmp-html/tabby-ssh/src/components/sftpPanel.component.html:13
|
||||
msgid "<strong translate=\"\">Working directory detection</strong>\n"
|
||||
"<div translate=\"\">Learn how to allow Tabby to detect remote shell's working directory.</div>"
|
||||
msgstr "<strong translate=\"\">Робоча папка</strong>\n"
|
||||
"<div translate=\"\">Дізнайтеся, як дозволити Tabby виявити робочий каталог віддаленої оболонки</div>"
|
||||
|
||||
#: locale/tmp-html/tabby-terminal/src/components/appearanceSettingsTab.component.html:76
|
||||
msgid "A second font family used to display characters missing in the main font"
|
||||
msgstr "Друге сімейство шрифтів, для відображення символів, відсутніх в основному шрифті"
|
||||
@@ -230,7 +224,7 @@ msgstr "Вбудовані"
|
||||
#: tabby-settings/src/components/configSyncSettingsTab.component.ts:79
|
||||
#: tabby-settings/src/components/configSyncSettingsTab.component.ts:99
|
||||
#: tabby-ssh/src/sftpContextMenu.ts:40
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:458
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:459
|
||||
msgid "Cancel"
|
||||
msgstr "Скасувати"
|
||||
|
||||
@@ -375,10 +369,10 @@ msgstr "Замість цього буде використовуватися і
|
||||
msgid "Context menu"
|
||||
msgstr "Контекстне меню"
|
||||
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:201
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:209
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:549
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:753
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:202
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:210
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:550
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:754
|
||||
#: tabby-terminal/src/tabContextMenu.ts:29
|
||||
msgid "Copied"
|
||||
msgstr "Скопійовано"
|
||||
@@ -855,8 +849,8 @@ msgid "Help track the number of Tabby installs across the world!"
|
||||
msgstr "Допоможіть відстежувати скільки встановлено Tabby по всьому світу!"
|
||||
|
||||
#: locale/tmp-html/tabby-settings/src/components/settingsTab.component.html:50
|
||||
msgid "Help translate Tabby<i class=\"fas fa-external-link-square-alt ml-1\"></i>"
|
||||
msgstr "Допоможіть перекласти Tabby<i class=\"fas fa-external-link-square-alt ml-1\"></i>"
|
||||
msgid "Help translate Tabby"
|
||||
msgstr "Допоможіть перекласти Tabby"
|
||||
|
||||
#: tabby-terminal/src/components/streamProcessingSettings.component.ts:32
|
||||
#: tabby-terminal/src/components/streamProcessingSettings.component.ts:44
|
||||
@@ -1356,7 +1350,7 @@ msgid "Password"
|
||||
msgstr "Пароль"
|
||||
|
||||
#: locale/tmp-html/tabby-terminal/src/components/terminalSettingsTab.component.html:60
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:457
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:458
|
||||
#: tabby-terminal/src/tabContextMenu.ts:34
|
||||
msgid "Paste"
|
||||
msgstr "Вставити"
|
||||
@@ -1365,7 +1359,7 @@ msgstr "Вставити"
|
||||
msgid "Paste from clipboard"
|
||||
msgstr "Вставити з буферу обміну"
|
||||
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:464
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:465
|
||||
msgid "Paste multiple lines?"
|
||||
msgstr "Вставити кілька рядків?"
|
||||
|
||||
@@ -1731,7 +1725,7 @@ msgstr "Налаштування"
|
||||
msgid "Shell"
|
||||
msgstr "Shell"
|
||||
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:551
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:552
|
||||
msgid "Shell does not support current path detection"
|
||||
msgstr "Shell не підтримує виявлення поточного шляху"
|
||||
|
||||
@@ -1969,7 +1963,7 @@ msgstr "Ширина вкладки"
|
||||
msgid "Telnet session"
|
||||
msgstr "Telnet сесія"
|
||||
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:190
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:191
|
||||
#: tabby-terminal/src/settings.ts:43
|
||||
msgid "Terminal"
|
||||
msgstr "Термінал"
|
||||
|
@@ -10,7 +10,7 @@ msgstr ""
|
||||
"Project-Id-Version: tabby\n"
|
||||
"Language-Team: Chinese Simplified\n"
|
||||
"Language: zh_CN\n"
|
||||
"PO-Revision-Date: 2022-05-17 06:35\n"
|
||||
"PO-Revision-Date: 2022-06-15 20:28\n"
|
||||
|
||||
#: tabby-local/src/components/terminalTab.component.ts:113
|
||||
msgid "\"{command}\" is still running. Close?"
|
||||
@@ -21,12 +21,6 @@ msgstr "\"{command}\" 仍在运行。是否需要关闭?"
|
||||
msgid "{name} copy"
|
||||
msgstr "{name} 副本"
|
||||
|
||||
#: locale/tmp-html/tabby-ssh/src/components/sftpPanel.component.html:13
|
||||
msgid "<strong translate=\"\">Working directory detection</strong>\n"
|
||||
"<div translate=\"\">Learn how to allow Tabby to detect remote shell's working directory.</div>"
|
||||
msgstr "<strong translate=\"\">工作目录检测</strong>\n"
|
||||
"<div translate=\"\">了解如何允许 Tabby 检测远程 shell 的工作目录。</div>"
|
||||
|
||||
#: locale/tmp-html/tabby-terminal/src/components/appearanceSettingsTab.component.html:76
|
||||
msgid "A second font family used to display characters missing in the main font"
|
||||
msgstr "第二种字体,用于显示主字体中缺失的字符"
|
||||
@@ -230,7 +224,7 @@ msgstr "内置"
|
||||
#: tabby-settings/src/components/configSyncSettingsTab.component.ts:79
|
||||
#: tabby-settings/src/components/configSyncSettingsTab.component.ts:99
|
||||
#: tabby-ssh/src/sftpContextMenu.ts:40
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:458
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:459
|
||||
msgid "Cancel"
|
||||
msgstr "取消"
|
||||
|
||||
@@ -375,10 +369,10 @@ msgstr "将使用连接名称代替"
|
||||
msgid "Context menu"
|
||||
msgstr "右键菜单"
|
||||
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:201
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:209
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:549
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:753
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:202
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:210
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:550
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:754
|
||||
#: tabby-terminal/src/tabContextMenu.ts:29
|
||||
msgid "Copied"
|
||||
msgstr "已复制"
|
||||
@@ -855,8 +849,8 @@ msgid "Help track the number of Tabby installs across the world!"
|
||||
msgstr "帮助追踪 Tabby 在世界各地的安装次数!"
|
||||
|
||||
#: locale/tmp-html/tabby-settings/src/components/settingsTab.component.html:50
|
||||
msgid "Help translate Tabby<i class=\"fas fa-external-link-square-alt ml-1\"></i>"
|
||||
msgstr "帮助翻译 Tabby <i class=\"fas fa-external-link-square-alt ml-1\"></i>"
|
||||
msgid "Help translate Tabby"
|
||||
msgstr "帮助翻译Tabby"
|
||||
|
||||
#: tabby-terminal/src/components/streamProcessingSettings.component.ts:32
|
||||
#: tabby-terminal/src/components/streamProcessingSettings.component.ts:44
|
||||
@@ -1356,7 +1350,7 @@ msgid "Password"
|
||||
msgstr "密码"
|
||||
|
||||
#: locale/tmp-html/tabby-terminal/src/components/terminalSettingsTab.component.html:60
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:457
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:458
|
||||
#: tabby-terminal/src/tabContextMenu.ts:34
|
||||
msgid "Paste"
|
||||
msgstr "粘贴"
|
||||
@@ -1365,7 +1359,7 @@ msgstr "粘贴"
|
||||
msgid "Paste from clipboard"
|
||||
msgstr "从剪贴板中粘贴"
|
||||
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:464
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:465
|
||||
msgid "Paste multiple lines?"
|
||||
msgstr "粘贴多行?"
|
||||
|
||||
@@ -1731,7 +1725,7 @@ msgstr "设置"
|
||||
msgid "Shell"
|
||||
msgstr "Shell"
|
||||
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:551
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:552
|
||||
msgid "Shell does not support current path detection"
|
||||
msgstr "Shell 不支持当前路径检测"
|
||||
|
||||
@@ -1969,7 +1963,7 @@ msgstr "标签页宽度"
|
||||
msgid "Telnet session"
|
||||
msgstr "Telnet 会话"
|
||||
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:190
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:191
|
||||
#: tabby-terminal/src/settings.ts:43
|
||||
msgid "Terminal"
|
||||
msgstr "终端"
|
||||
|
@@ -10,7 +10,7 @@ msgstr ""
|
||||
"Project-Id-Version: tabby\n"
|
||||
"Language-Team: Chinese Traditional\n"
|
||||
"Language: zh_TW\n"
|
||||
"PO-Revision-Date: 2022-04-30 18:35\n"
|
||||
"PO-Revision-Date: 2022-06-15 20:28\n"
|
||||
|
||||
#: tabby-local/src/components/terminalTab.component.ts:113
|
||||
msgid "\"{command}\" is still running. Close?"
|
||||
@@ -21,11 +21,6 @@ msgstr ""
|
||||
msgid "{name} copy"
|
||||
msgstr "{name} 複製"
|
||||
|
||||
#: locale/tmp-html/tabby-ssh/src/components/sftpPanel.component.html:13
|
||||
msgid "<strong translate=\"\">Working directory detection</strong>\n"
|
||||
"<div translate=\"\">Learn how to allow Tabby to detect remote shell's working directory.</div>"
|
||||
msgstr ""
|
||||
|
||||
#: locale/tmp-html/tabby-terminal/src/components/appearanceSettingsTab.component.html:76
|
||||
msgid "A second font family used to display characters missing in the main font"
|
||||
msgstr "第二個字體系列,用於顯示主字體中缺少的字元"
|
||||
@@ -229,7 +224,7 @@ msgstr "內建"
|
||||
#: tabby-settings/src/components/configSyncSettingsTab.component.ts:79
|
||||
#: tabby-settings/src/components/configSyncSettingsTab.component.ts:99
|
||||
#: tabby-ssh/src/sftpContextMenu.ts:40
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:458
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:459
|
||||
msgid "Cancel"
|
||||
msgstr "取消"
|
||||
|
||||
@@ -374,10 +369,10 @@ msgstr "將改用連接名替换"
|
||||
msgid "Context menu"
|
||||
msgstr "快顯功能表"
|
||||
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:201
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:209
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:549
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:753
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:202
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:210
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:550
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:754
|
||||
#: tabby-terminal/src/tabContextMenu.ts:29
|
||||
msgid "Copied"
|
||||
msgstr "已複製"
|
||||
@@ -854,7 +849,7 @@ msgid "Help track the number of Tabby installs across the world!"
|
||||
msgstr ""
|
||||
|
||||
#: locale/tmp-html/tabby-settings/src/components/settingsTab.component.html:50
|
||||
msgid "Help translate Tabby<i class=\"fas fa-external-link-square-alt ml-1\"></i>"
|
||||
msgid "Help translate Tabby"
|
||||
msgstr ""
|
||||
|
||||
#: tabby-terminal/src/components/streamProcessingSettings.component.ts:32
|
||||
@@ -1355,7 +1350,7 @@ msgid "Password"
|
||||
msgstr "密碼"
|
||||
|
||||
#: locale/tmp-html/tabby-terminal/src/components/terminalSettingsTab.component.html:60
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:457
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:458
|
||||
#: tabby-terminal/src/tabContextMenu.ts:34
|
||||
msgid "Paste"
|
||||
msgstr "貼上"
|
||||
@@ -1364,7 +1359,7 @@ msgstr "貼上"
|
||||
msgid "Paste from clipboard"
|
||||
msgstr "從剪貼簿貼上"
|
||||
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:464
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:465
|
||||
msgid "Paste multiple lines?"
|
||||
msgstr "貼上多行?"
|
||||
|
||||
@@ -1730,7 +1725,7 @@ msgstr "設定"
|
||||
msgid "Shell"
|
||||
msgstr "Shell"
|
||||
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:551
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:552
|
||||
msgid "Shell does not support current path detection"
|
||||
msgstr "Shell 不支援目前路徑偵測"
|
||||
|
||||
@@ -1968,7 +1963,7 @@ msgstr "分頁寬度"
|
||||
msgid "Telnet session"
|
||||
msgstr "Telnet 階段"
|
||||
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:190
|
||||
#: tabby-terminal/src/api/baseTerminalTab.component.ts:191
|
||||
#: tabby-terminal/src/settings.ts:43
|
||||
msgid "Terminal"
|
||||
msgstr "終端機"
|
||||
|
@@ -47,7 +47,7 @@
|
||||
"html-loader": "3.1.0",
|
||||
"json-loader": "^0.5.7",
|
||||
"lru-cache": "^6.0.0",
|
||||
"macos-release": "^3.0.1",
|
||||
"macos-release": "^3.1.0",
|
||||
"ngx-sortablejs": "^11.1.0",
|
||||
"ngx-toastr": "^14.0.0",
|
||||
"node-abi": "^3.15.0",
|
||||
|
@@ -1,10 +1,11 @@
|
||||
#!/usr/bin/env node
|
||||
/* eslint-disable @typescript-eslint/prefer-nullish-coalescing */
|
||||
const builder = require('electron-builder').build
|
||||
const vars = require('./vars')
|
||||
|
||||
const isTag = (process.env.GITHUB_REF || '').startsWith('refs/tags/')
|
||||
|
||||
process.env.ARCH = ((process.env.ARCH || process.arch) === 'arm') ? 'armv7l' : process.env.ARCH || process.arch
|
||||
process.env.ARCH = (process.env.ARCH || process.arch) === 'arm' ? 'armv7l' : process.env.ARCH || process.arch
|
||||
|
||||
builder({
|
||||
dir: true,
|
||||
@@ -15,6 +16,10 @@ builder({
|
||||
extraMetadata: {
|
||||
version: vars.version,
|
||||
},
|
||||
publish: {
|
||||
provider: 'github',
|
||||
channel: `latest-${process.arch}`,
|
||||
},
|
||||
},
|
||||
publish: isTag ? 'always' : 'onTag',
|
||||
publish: isTag ? 'always' : 'onTagOrDraft',
|
||||
}).catch(() => process.exit(1))
|
||||
|
@@ -1,4 +1,5 @@
|
||||
#!/usr/bin/env node
|
||||
/* eslint-disable @typescript-eslint/prefer-nullish-coalescing */
|
||||
const builder = require('electron-builder').build
|
||||
const vars = require('./vars')
|
||||
|
||||
@@ -24,8 +25,12 @@ builder({
|
||||
identity: !process.env.CI || process.env.CSC_LINK ? undefined : null,
|
||||
},
|
||||
npmRebuild: process.env.ARCH !== 'arm64',
|
||||
publish: {
|
||||
provider: 'github',
|
||||
channel: `latest-${process.env.ARCH}`,
|
||||
},
|
||||
},
|
||||
publish: isTag ? 'always' : 'onTag',
|
||||
publish: isTag ? 'always' : 'onTagOrDraft',
|
||||
}).catch(e => {
|
||||
console.error(e)
|
||||
process.exit(1)
|
||||
|
@@ -1,9 +1,9 @@
|
||||
#!/usr/bin/env node
|
||||
/* eslint-disable @typescript-eslint/prefer-nullish-coalescing */
|
||||
const builder = require('electron-builder').build
|
||||
const vars = require('./vars')
|
||||
|
||||
const isTag = (process.env.GITHUB_REF || process.env.BUILD_SOURCEBRANCH || '').startsWith('refs/tags/')
|
||||
const isCI = !!process.env.GITHUB_REF
|
||||
|
||||
process.env.ARCH = process.env.ARCH || process.arch
|
||||
|
||||
@@ -15,6 +15,10 @@ builder({
|
||||
extraMetadata: {
|
||||
version: vars.version,
|
||||
},
|
||||
publish: {
|
||||
provider: 'github',
|
||||
channel: `latest-${process.arch}`,
|
||||
},
|
||||
},
|
||||
publish: isTag ? 'always' : 'onTag',
|
||||
publish: isTag ? 'always' : 'onTagOrDraft',
|
||||
}).catch(() => process.exit(1))
|
||||
|
@@ -18,7 +18,7 @@
|
||||
}
|
||||
|
||||
&.maximized {
|
||||
z-index: 2;
|
||||
z-index: 6;
|
||||
box-shadow: rgba(0, 0, 0, 0.25) 0px 0px 30px;
|
||||
backdrop-filter: blur(10px);
|
||||
border-radius: 10px;
|
||||
|
@@ -133,6 +133,12 @@ export class AppService {
|
||||
this.tabClosed.next(tab)
|
||||
})
|
||||
|
||||
tab.activity$.subscribe(() => {
|
||||
if (tab === this._activeTab) {
|
||||
tab.clearActivity()
|
||||
}
|
||||
})
|
||||
|
||||
if (tab instanceof SplitTabComponent) {
|
||||
tab.tabAdded$.subscribe(() => this.emitTabsChanged())
|
||||
tab.tabRemoved$.subscribe(() => this.emitTabsChanged())
|
||||
|
@@ -2,13 +2,15 @@ import { Injectable } from '@angular/core'
|
||||
import { registerLocaleData } from '@angular/common'
|
||||
import { TranslateService } from '@ngx-translate/core'
|
||||
|
||||
import localeEN from '@angular/common/locales/en'
|
||||
import localeENUS from '@angular/common/locales/en'
|
||||
import localeENGB from '@angular/common/locales/en-GB'
|
||||
import localeBG from '@angular/common/locales/bg'
|
||||
import localeDA from '@angular/common/locales/da'
|
||||
import localeDE from '@angular/common/locales/de'
|
||||
import localeES from '@angular/common/locales/es'
|
||||
import localeFR from '@angular/common/locales/fr'
|
||||
import localeHR from '@angular/common/locales/hr'
|
||||
import localeID from '@angular/common/locales/id'
|
||||
import localeIT from '@angular/common/locales/it'
|
||||
import localeJA from '@angular/common/locales/ja'
|
||||
import localeKO from '@angular/common/locales/ko'
|
||||
@@ -22,13 +24,15 @@ import { distinctUntilChanged } from 'rxjs/operators'
|
||||
import { ConfigService } from './config.service'
|
||||
import { LogService, Logger } from './log.service'
|
||||
|
||||
registerLocaleData(localeEN)
|
||||
registerLocaleData(localeENUS)
|
||||
registerLocaleData(localeENGB)
|
||||
registerLocaleData(localeBG)
|
||||
registerLocaleData(localeDA)
|
||||
registerLocaleData(localeDE)
|
||||
registerLocaleData(localeES)
|
||||
registerLocaleData(localeFR)
|
||||
registerLocaleData(localeHR)
|
||||
registerLocaleData(localeID)
|
||||
registerLocaleData(localeIT)
|
||||
registerLocaleData(localeJA)
|
||||
registerLocaleData(localeKO)
|
||||
@@ -70,6 +74,10 @@ export class LocaleService {
|
||||
private logger: Logger
|
||||
|
||||
static allLanguages = [
|
||||
{
|
||||
code: 'id-ID',
|
||||
name: 'Bahasa Indonesia',
|
||||
},
|
||||
{
|
||||
code: 'da-DK',
|
||||
name: 'Dansk',
|
||||
@@ -78,9 +86,13 @@ export class LocaleService {
|
||||
code: 'de-DE',
|
||||
name: 'Deutsch',
|
||||
},
|
||||
{
|
||||
code: 'en-GB',
|
||||
name: 'English (UK)',
|
||||
},
|
||||
{
|
||||
code: 'en-US',
|
||||
name: 'English',
|
||||
name: 'English (US)',
|
||||
},
|
||||
{
|
||||
code: 'es-ES',
|
||||
@@ -159,6 +171,12 @@ export class LocaleService {
|
||||
config.ready$.subscribe(() => {
|
||||
this.refresh()
|
||||
})
|
||||
|
||||
const d = new Date()
|
||||
if (d.getMonth() === 3 && d.getDate() === 1) {
|
||||
LocaleService.allLanguages.find(x => x.code === 'en-US')!.name = 'English (simplified)'
|
||||
LocaleService.allLanguages.find(x => x.code === 'en-GB')!.name = 'English (traditional)'
|
||||
}
|
||||
}
|
||||
|
||||
refresh (): void {
|
||||
|
@@ -1,5 +1,5 @@
|
||||
import deepEqual from 'deep-equal'
|
||||
import { Subject, distinctUntilChanged } from 'rxjs'
|
||||
import { Subject, distinctUntilChanged, map } from 'rxjs'
|
||||
import { ipcRenderer } from 'electron'
|
||||
import { Injectable, NgZone } from '@angular/core'
|
||||
import { AppService, HostAppService, Platform } from 'tabby-core'
|
||||
@@ -22,7 +22,10 @@ export class TouchbarService {
|
||||
|
||||
app.tabOpened$.subscribe(tab => {
|
||||
tab.titleChange$.subscribe(() => this.update())
|
||||
tab.activity$.subscribe(() => this.update())
|
||||
tab.activity$.pipe(
|
||||
map(x => !x || tab === app.activeTab),
|
||||
distinctUntilChanged(),
|
||||
).subscribe(() => this.update())
|
||||
})
|
||||
|
||||
ipcRenderer.on('touchbar-selection', (_event, index) => this.zone.run(() => {
|
||||
|
@@ -54,15 +54,12 @@ export class ElectronUpdaterService extends UpdaterService {
|
||||
config.ready$.toPromise().then(() => {
|
||||
if (config.store.enableAutomaticUpdates && this.electronUpdaterAvailable && !process.env.TABBY_DEV) {
|
||||
this.logger.debug('Checking for updates')
|
||||
let arch = process.arch
|
||||
if (process.platform === 'darwin' && process.arch === 'x64') {
|
||||
arch = 'x86_64'
|
||||
}
|
||||
try {
|
||||
this.autoUpdater.setFeedURL({
|
||||
provider: 's3',
|
||||
bucket: 'tabby-updates',
|
||||
path: `updates-latest-${arch}`,
|
||||
provider: 'github',
|
||||
repo: 'tabby',
|
||||
owner: 'eugeny',
|
||||
channel: `latest-${process.arch}`,
|
||||
})
|
||||
this.autoUpdater.checkForUpdates()
|
||||
} catch (e) {
|
||||
|
@@ -3,7 +3,7 @@ import * as path from 'path'
|
||||
import * as fs from 'fs'
|
||||
import { Subject, debounceTime, debounce } from 'rxjs'
|
||||
import { Injectable } from '@angular/core'
|
||||
import { MenuItemOptions } from 'tabby-core'
|
||||
import { MenuItemOptions, TranslateService } from 'tabby-core'
|
||||
import { SFTPFile, SFTPPanelComponent, SFTPContextMenuItemProvider, SFTPSession } from 'tabby-ssh'
|
||||
import { ElectronPlatformService } from './services/platform.service'
|
||||
|
||||
@@ -14,6 +14,7 @@ export class EditSFTPContextMenu extends SFTPContextMenuItemProvider {
|
||||
weight = 0
|
||||
|
||||
constructor (
|
||||
private translate: TranslateService,
|
||||
private platform: ElectronPlatformService,
|
||||
) {
|
||||
super()
|
||||
@@ -26,7 +27,7 @@ export class EditSFTPContextMenu extends SFTPContextMenuItemProvider {
|
||||
return [
|
||||
{
|
||||
click: () => this.edit(item, panel.sftp),
|
||||
label: 'Edit locally',
|
||||
label: this.translate.instant('Edit locally'),
|
||||
},
|
||||
]
|
||||
}
|
||||
|
@@ -462,7 +462,7 @@ export class BaseTerminalTabComponent extends BaseTabComponent implements OnInit
|
||||
const result = (await this.platform.showMessageBox(
|
||||
{
|
||||
type: 'warning',
|
||||
detail: data,
|
||||
detail: data.slice(0, 1000),
|
||||
message: this.translate.instant('Paste multiple lines?'),
|
||||
buttons,
|
||||
defaultId: 0,
|
||||
|
@@ -39,13 +39,14 @@ class FlowControl {
|
||||
this.bytesWritten += data.length
|
||||
if (this.bytesWritten > this.bytesThreshold) {
|
||||
this.pendingCallbacks++
|
||||
if (this.pendingCallbacks > this.highWatermark) {
|
||||
this.bytesWritten = 0
|
||||
if (!this.blocked && this.pendingCallbacks > this.highWatermark) {
|
||||
this.blocked = true
|
||||
this.blocked$.next(true)
|
||||
}
|
||||
this.xterm.write(data, () => {
|
||||
this.pendingCallbacks--
|
||||
if (this.pendingCallbacks < this.lowWatermark) {
|
||||
if (this.blocked && this.pendingCallbacks < this.lowWatermark) {
|
||||
this.blocked = false
|
||||
this.blocked$.next(false)
|
||||
}
|
||||
@@ -147,7 +148,21 @@ export class XTermFrontend extends Frontend {
|
||||
return true
|
||||
}
|
||||
}
|
||||
|
||||
// Ctrl-/
|
||||
if (event.type === 'keydown' && event.key === '/' && event.ctrlKey) {
|
||||
this.input.next(Buffer.from('\u001f', 'binary'))
|
||||
return false
|
||||
}
|
||||
|
||||
// Ctrl-@
|
||||
if (event.type === 'keydown' && event.key === '@' && event.ctrlKey) {
|
||||
this.input.next(Buffer.from('\u0000', 'binary'))
|
||||
return false
|
||||
}
|
||||
|
||||
this.hotkeysService.pushKeyEvent(name, event)
|
||||
|
||||
let ret = true
|
||||
if (this.hotkeysService.matchActiveHotkey(true) !== null) {
|
||||
event.stopPropagation()
|
||||
|
30
yarn.lock
30
yarn.lock
@@ -1039,10 +1039,10 @@ ansistyles@~0.1.3:
|
||||
resolved "https://registry.npmjs.org/ansistyles/-/ansistyles-0.1.3.tgz"
|
||||
integrity sha1-XeYEFb2gcbs3EnhUyGT0GyMlRTk=
|
||||
|
||||
app-builder-bin@4.0.0:
|
||||
version "4.0.0"
|
||||
resolved "https://registry.yarnpkg.com/app-builder-bin/-/app-builder-bin-4.0.0.tgz#1df8e654bd1395e4a319d82545c98667d7eed2f0"
|
||||
integrity sha512-xwdG0FJPQMe0M0UA4Tz0zEB8rBJTRA5a476ZawAqiBkMv16GRK5xpXThOjMaEOFnZ6zabejjG4J3da0SXG63KA==
|
||||
app-builder-bin@3.7.1:
|
||||
version "3.7.1"
|
||||
resolved "https://registry.yarnpkg.com/app-builder-bin/-/app-builder-bin-3.7.1.tgz#cb0825c5e12efc85b196ac3ed9c89f076c61040e"
|
||||
integrity sha512-ql93vEUq6WsstGXD+SBLSIQw6SNnhbDEM0swzgugytMxLp3rT24Ag/jcC80ZHxiPRTdew1niuR7P3/FCrDqIjw==
|
||||
|
||||
app-builder-lib@23.0.9:
|
||||
version "23.0.9"
|
||||
@@ -1164,7 +1164,7 @@ asap@~2.0.3:
|
||||
resolved "https://registry.npmjs.org/asap/-/asap-2.0.6.tgz"
|
||||
integrity sha1-5QNHYR1+aQlDIIu9r+vLwvuGbUY=
|
||||
|
||||
asar@^3.0.0:
|
||||
asar@^3.0.0, asar@^3.0.3:
|
||||
version "3.0.3"
|
||||
resolved "https://registry.npmjs.org/asar/-/asar-3.0.3.tgz"
|
||||
integrity sha512-k7zd+KoR+n8pl71PvgElcoKHrVNiSXtw7odKbyNpmgKe7EGRF9Pnu3uLOukD37EvavKwVFxOUpqXTIZC5B5Pmw==
|
||||
@@ -1176,18 +1176,6 @@ asar@^3.0.0:
|
||||
optionalDependencies:
|
||||
"@types/glob" "^7.1.1"
|
||||
|
||||
asar@^3.1.0:
|
||||
version "3.1.0"
|
||||
resolved "https://registry.yarnpkg.com/asar/-/asar-3.1.0.tgz#70b0509449fe3daccc63beb4d3c7d2e24d3c6473"
|
||||
integrity sha512-vyxPxP5arcAqN4F/ebHd/HhwnAiZtwhglvdmc7BR2f0ywbVNTOpSeyhLDbGXtE/y58hv1oC75TaNIXutnsOZsQ==
|
||||
dependencies:
|
||||
chromium-pickle-js "^0.2.0"
|
||||
commander "^5.0.0"
|
||||
glob "^7.1.6"
|
||||
minimatch "^3.0.4"
|
||||
optionalDependencies:
|
||||
"@types/glob" "^7.1.1"
|
||||
|
||||
asn1.js@^5.2.0:
|
||||
version "5.4.1"
|
||||
resolved "https://registry.yarnpkg.com/asn1.js/-/asn1.js-5.4.1.tgz#11a980b84ebb91781ce35b0fdc2ee294e3783f07"
|
||||
@@ -5135,10 +5123,10 @@ lzma-native@^8.0.0, lzma-native@^8.0.5:
|
||||
node-gyp-build "^4.2.1"
|
||||
readable-stream "^3.6.0"
|
||||
|
||||
macos-release@^3.0.1:
|
||||
version "3.0.1"
|
||||
resolved "https://registry.yarnpkg.com/macos-release/-/macos-release-3.0.1.tgz#7d2a1329a616297db4a57f3d3ba8fa07a7caadd6"
|
||||
integrity sha512-3l6OrhdDg2H2SigtuN3jBh+5dRJRWxNKuJTPBbGeNJTsmt/pj9PO25wYaNb05NuNmAsl435j4rDP6rgNXz7s7g==
|
||||
macos-release@^3.1.0:
|
||||
version "3.1.0"
|
||||
resolved "https://registry.yarnpkg.com/macos-release/-/macos-release-3.1.0.tgz#6165bb0736ae567ed6649e36ce6a24d87cbb7aca"
|
||||
integrity sha512-/M/R0gCDgM+Cv1IuBG1XGdfTFnMEG6PZeT+KGWHO/OG+imqmaD9CH5vHBTycEM3+Kc4uG2Il+tFAuUWLqQOeUA==
|
||||
|
||||
make-dir@^1.0.0:
|
||||
version "1.3.0"
|
||||
|
Reference in New Issue
Block a user